From a3a47f2d5e88486fd954c5f0464dea4bdecd0b95 Mon Sep 17 00:00:00 2001 From: azcomputerguru Date: Sat, 21 Mar 2026 23:12:06 -0700 Subject: [PATCH] Add batch transcription scripts and 8 episode transcripts Created Mac M4 batch transcription using mlx-whisper with Apple Silicon GPU acceleration. Transcribed 8 remaining episodes (17,555 total segments). Scripts: - batch_transcribe_mac.py: Full batch processor with mlx-whisper - test_mac_transcribe.py: Quick test script for faster-whisper Transcripts (JSON, SRT, TXT formats): - 2011-06-04-hr1: 1,503 segments - 2011-09-10-hr1: 1,378 segments - 2014-s6e05: 1,340 segments - 2015-s7e30: 1,053 segments - 2016-s8e42: 2,205 segments - 2017-s9e26: 2,366 segments - 2018-s10e17: 4,683 segments - 2018-s10e21: 2,493 segments All 9 episodes now transcribed (8 on Mac + 1 from Linux). Ready for Stages 3-6 on Linux PC. Co-Authored-By: Claude Opus 4.5 --- .../audio-processor/batch_transcribe_mac.py | 171 + .../audio-processor/test_mac_transcribe.py | 75 + .../2011-06-04-hr1/transcript.json | 63400 +++++++ .../transcripts/2011-06-04-hr1/transcript.srt | 6012 + .../transcripts/2011-06-04-hr1/transcript.txt | 1503 + .../2011-09-10-hr1/transcript.json | 62844 +++++++ .../transcripts/2011-09-10-hr1/transcript.srt | 5512 + .../transcripts/2011-09-10-hr1/transcript.txt | 1378 + .../transcripts/2014-s6e05/transcript.json | 62243 +++++++ .../transcripts/2014-s6e05/transcript.srt | 5360 + .../transcripts/2014-s6e05/transcript.txt | 1340 + .../transcripts/2015-s7e30/transcript.json | 55512 ++++++ .../transcripts/2015-s7e30/transcript.srt | 4212 + .../transcripts/2015-s7e30/transcript.txt | 1053 + .../transcripts/2016-s8e42/transcript.json | 113075 +++++++++++++ .../transcripts/2016-s8e42/transcript.srt | 8820 + .../transcripts/2016-s8e42/transcript.txt | 2205 + .../transcripts/2017-s9e26/transcript.json | 118077 +++++++++++++ .../transcripts/2017-s9e26/transcript.srt | 9464 ++ .../transcripts/2017-s9e26/transcript.txt | 2366 + .../transcripts/2018-s10e17/transcript.json | 130830 +++++++++++++++ .../transcripts/2018-s10e17/transcript.srt | 18732 +++ .../transcripts/2018-s10e17/transcript.txt | 4683 + .../transcripts/2018-s10e21/transcript.json | 110644 ++++++++++++ .../transcripts/2018-s10e21/transcript.srt | 9972 ++ .../transcripts/2018-s10e21/transcript.txt | 2493 + 26 files changed, 801976 insertions(+) create mode 100644 projects/radio-show/audio-processor/batch_transcribe_mac.py create mode 100644 projects/radio-show/audio-processor/test_mac_transcribe.py create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.txt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.json create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.srt create mode 100644 projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.txt diff --git a/projects/radio-show/audio-processor/batch_transcribe_mac.py b/projects/radio-show/audio-processor/batch_transcribe_mac.py new file mode 100644 index 0000000..0d1516b --- /dev/null +++ b/projects/radio-show/audio-processor/batch_transcribe_mac.py @@ -0,0 +1,171 @@ +#!/usr/bin/env python3 +""" +Batch transcription script for Mac M4 using mlx-whisper. +Transcribes all pending episodes using Apple Silicon GPU acceleration. +""" + +import json +import time +from pathlib import Path +from datetime import timedelta + +import mlx_whisper +from pydub import AudioSegment + + +# Configuration +EPISODES_DIR = Path("training-data/episodes") +TRANSCRIPTS_DIR = Path("training-data/transcripts") +MODEL = "mlx-community/whisper-large-v3-mlx" + +# Episodes to transcribe (skip already completed ones) +COMPLETED = {"2010-10-02-hr1"} # Already transcribed on Linux + + +def format_timestamp(seconds: float) -> str: + """Format seconds as SRT timestamp (HH:MM:SS,mmm).""" + td = timedelta(seconds=seconds) + hours, remainder = divmod(td.seconds, 3600) + minutes, seconds = divmod(remainder, 60) + ms = td.microseconds // 1000 + return f"{hours:02d}:{minutes:02d}:{seconds:02d},{ms:03d}" + + +def transcribe_episode(episode_path: Path) -> dict: + """Transcribe a single episode and return results.""" + print(f"[INFO] Transcribing {episode_path.name}...") + start_time = time.time() + + # Get audio duration + audio = AudioSegment.from_mp3(str(episode_path)) + duration_seconds = len(audio) / 1000.0 + + # Transcribe with word timestamps + result = mlx_whisper.transcribe( + str(episode_path), + path_or_hf_repo=MODEL, + language="en", + word_timestamps=True, + ) + + elapsed = time.time() - start_time + speed = duration_seconds / elapsed + + print(f"[OK] Done in {elapsed:.1f}s ({speed:.1f}x realtime)") + print(f"[INFO] Segments: {len(result.get('segments', []))}") + + return result, duration_seconds + + +def save_transcript(result: dict, duration: float, output_dir: Path): + """Save transcript in JSON, SRT, and TXT formats.""" + output_dir.mkdir(parents=True, exist_ok=True) + + segments = result.get("segments", []) + + # Build output structure matching existing format + output = { + "language": result.get("language", "en"), + "language_probability": 1.0, + "duration": duration, + "segments": [] + } + + for i, seg in enumerate(segments): + segment_data = { + "id": i, + "text": seg.get("text", "").strip(), + "start": seg.get("start", 0), + "end": seg.get("end", 0), + "words": [] + } + + # Add word-level data if available + words = seg.get("words", []) + for word_info in words: + segment_data["words"].append({ + "word": word_info.get("word", ""), + "start": word_info.get("start", 0), + "end": word_info.get("end", 0), + "probability": word_info.get("probability", 0) + }) + + output["segments"].append(segment_data) + + # Save JSON + json_path = output_dir / "transcript.json" + with open(json_path, "w") as f: + json.dump(output, f, indent=2) + print(f"[OK] Saved {json_path}") + + # Save SRT + srt_path = output_dir / "transcript.srt" + with open(srt_path, "w") as f: + for i, seg in enumerate(segments, 1): + start_ts = format_timestamp(seg.get("start", 0)) + end_ts = format_timestamp(seg.get("end", 0)) + text = seg.get("text", "").strip() + f.write(f"{i}\n{start_ts} --> {end_ts}\n{text}\n\n") + print(f"[OK] Saved {srt_path}") + + # Save TXT + txt_path = output_dir / "transcript.txt" + with open(txt_path, "w") as f: + for seg in segments: + f.write(seg.get("text", "").strip() + "\n") + print(f"[OK] Saved {txt_path}") + + +def main(): + print("=" * 60) + print("Radio Show Batch Transcription - Mac M4 + mlx-whisper") + print("=" * 60) + print() + + # Find episodes to process + episodes = sorted(EPISODES_DIR.glob("*.mp3")) + pending = [ep for ep in episodes if ep.stem not in COMPLETED] + + print(f"[INFO] Found {len(episodes)} episodes, {len(pending)} pending") + print(f"[INFO] Model: {MODEL}") + print() + + if not pending: + print("[OK] All episodes already transcribed!") + return + + total_start = time.time() + completed = 0 + failed = [] + + for i, episode in enumerate(pending, 1): + print(f"\n[{i}/{len(pending)}] {episode.name}") + print("-" * 40) + + try: + result, duration = transcribe_episode(episode) + output_dir = TRANSCRIPTS_DIR / episode.stem + save_transcript(result, duration, output_dir) + completed += 1 + except Exception as e: + print(f"[ERROR] Failed: {e}") + failed.append(episode.name) + + # Summary + total_elapsed = time.time() - total_start + print() + print("=" * 60) + print("SUMMARY") + print("=" * 60) + print(f"[OK] Completed: {completed}/{len(pending)}") + print(f"[INFO] Total time: {total_elapsed/60:.1f} minutes") + + if failed: + print(f"[WARNING] Failed: {', '.join(failed)}") + + print() + print("[SUCCESS] Batch transcription complete!") + + +if __name__ == "__main__": + main() diff --git a/projects/radio-show/audio-processor/test_mac_transcribe.py b/projects/radio-show/audio-processor/test_mac_transcribe.py new file mode 100644 index 0000000..5565e74 --- /dev/null +++ b/projects/radio-show/audio-processor/test_mac_transcribe.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python3 +""" +Quick test script to verify faster-whisper works on Mac M4. +Transcribes first 60 seconds of an episode. +""" + +import time +from pathlib import Path + +from faster_whisper import WhisperModel +from pydub import AudioSegment + +# Config +EPISODE = Path("training-data/episodes/2011-06-04-hr1.mp3") +TEST_DURATION_MS = 60_000 # 60 seconds +MODEL_SIZE = "base" # Start small for testing, switch to large-v3 for production + +def main(): + print(f"[INFO] Loading {MODEL_SIZE} model on CPU...") + start = time.time() + + # Use CPU - faster-whisper/ctranslate2 doesn't support MPS + model = WhisperModel(MODEL_SIZE, device="cpu", compute_type="int8") + print(f"[OK] Model loaded in {time.time() - start:.1f}s") + + # Extract first 60 seconds + print(f"[INFO] Extracting first {TEST_DURATION_MS // 1000}s from {EPISODE.name}...") + audio = AudioSegment.from_mp3(str(EPISODE)) + test_clip = audio[:TEST_DURATION_MS] + + # Export to temp file + temp_file = Path("/tmp/test_clip.wav") + test_clip.export(str(temp_file), format="wav") + print(f"[OK] Test clip exported ({temp_file.stat().st_size // 1024}KB)") + + # Transcribe + print("[INFO] Transcribing...") + start = time.time() + + segments, info = model.transcribe( + str(temp_file), + language="en", + beam_size=5, + vad_filter=True, + ) + + # Collect segments + results = [] + for seg in segments: + results.append({ + "start": seg.start, + "end": seg.end, + "text": seg.text.strip() + }) + + elapsed = time.time() - start + + print(f"[OK] Transcription complete in {elapsed:.1f}s") + print(f"[INFO] Speed: {TEST_DURATION_MS / 1000 / elapsed:.2f}x realtime") + print(f"[INFO] Segments: {len(results)}") + print() + print("=" * 60) + print("TRANSCRIPT:") + print("=" * 60) + + for seg in results: + print(f"[{seg['start']:.1f}s - {seg['end']:.1f}s] {seg['text']}") + + # Cleanup + temp_file.unlink() + print() + print("[SUCCESS] Test complete!") + +if __name__ == "__main__": + main() diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.json new file mode 100644 index 0000000..ead710a --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.json @@ -0,0 +1,63400 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 2562.09, + "segments": [ + { + "id": 0, + "text": "From my heart and from my hand, why don't people understand my intentions?", + "start": 0.0, + "end": 4.56, + "words": [ + { + "word": " From", + "start": 0.0, + "end": 0.28, + "probability": 0.73828125 + }, + { + "word": " my", + "start": 0.28, + "end": 0.58, + "probability": 0.98046875 + }, + { + "word": " heart", + "start": 0.58, + "end": 0.9, + "probability": 0.98876953125 + }, + { + "word": " and", + "start": 0.9, + "end": 1.08, + "probability": 0.96630859375 + }, + { + "word": " from", + "start": 1.08, + "end": 1.32, + "probability": 0.99609375 + }, + { + "word": " my", + "start": 1.32, + "end": 1.56, + "probability": 0.9970703125 + }, + { + "word": " hand,", + "start": 1.56, + "end": 1.9, + "probability": 0.9765625 + }, + { + "word": " why", + "start": 1.98, + "end": 2.2, + "probability": 0.96728515625 + }, + { + "word": " don't", + "start": 2.2, + "end": 2.52, + "probability": 0.9912109375 + }, + { + "word": " people", + "start": 2.52, + "end": 2.86, + "probability": 0.9990234375 + }, + { + "word": " understand", + "start": 2.86, + "end": 3.38, + "probability": 0.998046875 + }, + { + "word": " my", + "start": 3.38, + "end": 4.08, + "probability": 0.99755859375 + }, + { + "word": " intentions?", + "start": 4.08, + "end": 4.56, + "probability": 0.740234375 + } + ] + }, + { + "id": 1, + "text": "Computer running slow?", + "start": 5.14, + "end": 6.38, + "words": [ + { + "word": " Computer", + "start": 5.14, + "end": 5.78, + "probability": 0.95751953125 + }, + { + "word": " running", + "start": 5.78, + "end": 6.0, + "probability": 0.998046875 + }, + { + "word": " slow?", + "start": 6.0, + "end": 6.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2, + "text": "Avoiding.", + "start": 6.56, + "end": 6.88, + "words": [ + { + "word": " Avoiding.", + "start": 6.56, + "end": 6.88, + "probability": 0.66259765625 + } + ] + }, + { + "id": 3, + "text": "Caught a virus?", + "start": 7.06, + "end": 7.82, + "words": [ + { + "word": " Caught", + "start": 7.06, + "end": 7.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 7.48, + "end": 7.5, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 7.5, + "end": 7.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4, + "text": "Yes!", + "start": 8.0, + "end": 8.42, + "words": [ + { + "word": " Yes!", + "start": 8.0, + "end": 8.42, + "probability": 0.11798095703125 + } + ] + }, + { + "id": 5, + "text": "When?", + "start": 8.92, + "end": 9.5, + "words": [ + { + "word": " When?", + "start": 8.92, + "end": 9.5, + "probability": 0.406494140625 + } + ] + }, + { + "id": 6, + "text": "When?", + "start": 9.58, + "end": 10.0, + "words": [ + { + "word": " When?", + "start": 9.58, + "end": 10.0, + "probability": 0.0751953125 + } + ] + }, + { + "id": 7, + "text": "Does your computer seem to have a life of its own?", + "start": 10.0, + "end": 13.32, + "words": [ + { + "word": " Does", + "start": 10.0, + "end": 10.6, + "probability": 0.96435546875 + }, + { + "word": " your", + "start": 10.6, + "end": 10.92, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 10.92, + "end": 11.42, + "probability": 1.0 + }, + { + "word": " seem", + "start": 11.42, + "end": 11.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 11.84, + "end": 12.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 12.02, + "end": 12.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 12.24, + "end": 12.4, + "probability": 0.99951171875 + }, + { + "word": " life", + "start": 12.4, + "end": 12.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 12.74, + "end": 12.9, + "probability": 0.99951171875 + }, + { + "word": " its", + "start": 12.9, + "end": 13.06, + "probability": 0.9892578125 + }, + { + "word": " own?", + "start": 13.06, + "end": 13.32, + "probability": 1.0 + } + ] + }, + { + "id": 8, + "text": "Malfunction.", + "start": 13.64, + "end": 14.28, + "words": [ + { + "word": " Malfunction.", + "start": 13.64, + "end": 14.28, + "probability": 0.92724609375 + } + ] + }, + { + "id": 9, + "text": "Need input.", + "start": 14.56, + "end": 15.8, + "words": [ + { + "word": " Need", + "start": 14.56, + "end": 15.2, + "probability": 0.38134765625 + }, + { + "word": " input.", + "start": 15.2, + "end": 15.8, + "probability": 0.9970703125 + } + ] + }, + { + "id": 10, + "text": "The computer guru is here.", + "start": 16.08, + "end": 17.78, + "words": [ + { + "word": " The", + "start": 16.08, + "end": 16.28, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 16.28, + "end": 16.64, + "probability": 0.75537109375 + }, + { + "word": " guru", + "start": 16.64, + "end": 17.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 17.02, + "end": 17.44, + "probability": 1.0 + }, + { + "word": " here.", + "start": 17.44, + "end": 17.78, + "probability": 1.0 + } + ] + }, + { + "id": 11, + "text": "My God, you're here!", + "start": 17.94, + "end": 18.84, + "words": [ + { + "word": " My", + "start": 17.94, + "end": 18.1, + "probability": 0.6123046875 + }, + { + "word": " God,", + "start": 18.1, + "end": 18.32, + "probability": 0.74609375 + }, + { + "word": " you're", + "start": 18.42, + "end": 18.68, + "probability": 0.9990234375 + }, + { + "word": " here!", + "start": 18.68, + "end": 18.84, + "probability": 0.83740234375 + } + ] + }, + { + "id": 12, + "text": "Call in now.", + "start": 19.22, + "end": 20.06, + "words": [ + { + "word": " Call", + "start": 19.22, + "end": 19.48, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 19.48, + "end": 19.76, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 19.76, + "end": 20.06, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "751-1041.", + "start": 20.56, + "end": 21.88, + "words": [ + { + "word": " 751", + "start": 20.56, + "end": 21.2, + "probability": 0.99951171875 + }, + { + "word": "-1041.", + "start": 21.2, + "end": 21.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 14, + "text": "That's 751-1041.", + "start": 22.12, + "end": 24.06, + "words": [ + { + "word": " That's", + "start": 22.12, + "end": 22.52, + "probability": 1.0 + }, + { + "word": " 751", + "start": 22.52, + "end": 23.38, + "probability": 1.0 + }, + { + "word": "-1041.", + "start": 23.38, + "end": 24.06, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "Now, it's Mike Swanson.", + "start": 24.54, + "end": 25.86, + "words": [ + { + "word": " Now,", + "start": 24.54, + "end": 24.88, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 24.88, + "end": 25.26, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 25.26, + "end": 25.48, + "probability": 0.9990234375 + }, + { + "word": " Swanson.", + "start": 25.48, + "end": 25.86, + "probability": 0.99560546875 + } + ] + }, + { + "id": 16, + "text": "Your computer guru.", + "start": 26.08, + "end": 27.38, + "words": [ + { + "word": " Your", + "start": 26.08, + "end": 26.34, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 26.34, + "end": 26.9, + "probability": 1.0 + }, + { + "word": " guru.", + "start": 26.9, + "end": 27.38, + "probability": 1.0 + } + ] + }, + { + "id": 17, + "text": "On 104.1 The Truth.", + "start": 27.68, + "end": 29.12, + "words": [ + { + "word": " On", + "start": 27.68, + "end": 27.86, + "probability": 0.96044921875 + }, + { + "word": " 104", + "start": 27.86, + "end": 28.26, + "probability": 0.8125 + }, + { + "word": ".1", + "start": 28.26, + "end": 28.76, + "probability": 0.990234375 + }, + { + "word": " The", + "start": 28.76, + "end": 28.9, + "probability": 0.94677734375 + }, + { + "word": " Truth.", + "start": 28.9, + "end": 29.12, + "probability": 0.98388671875 + } + ] + }, + { + "id": 18, + "text": "Here you go.", + "start": 30.0, + "end": 30.56, + "words": [ + { + "word": " Here", + "start": 30.0, + "end": 30.26, + "probability": 0.0870361328125 + }, + { + "word": " you", + "start": 30.26, + "end": 30.38, + "probability": 0.22900390625 + }, + { + "word": " go.", + "start": 30.38, + "end": 30.56, + "probability": 0.4345703125 + } + ] + }, + { + "id": 19, + "text": "Two sides to News Talk FM.", + "start": 30.68, + "end": 32.72, + "words": [ + { + "word": " Two", + "start": 30.68, + "end": 30.98, + "probability": 0.04638671875 + }, + { + "word": " sides", + "start": 30.98, + "end": 31.34, + "probability": 0.44384765625 + }, + { + "word": " to", + "start": 31.34, + "end": 31.58, + "probability": 0.5693359375 + }, + { + "word": " News", + "start": 31.58, + "end": 31.86, + "probability": 0.66650390625 + }, + { + "word": " Talk", + "start": 31.86, + "end": 32.2, + "probability": 0.98828125 + }, + { + "word": " FM.", + "start": 32.2, + "end": 32.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 20, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 37.08, + "end": 38.76, + "words": [ + { + "word": " Hello", + "start": 37.08, + "end": 37.44, + "probability": 0.97802734375 + }, + { + "word": " and", + "start": 37.44, + "end": 37.62, + "probability": 0.81982421875 + }, + { + "word": " welcome", + "start": 37.62, + "end": 37.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 37.82, + "end": 37.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 37.96, + "end": 38.04, + "probability": 0.94091796875 + }, + { + "word": " Computer", + "start": 38.04, + "end": 38.24, + "probability": 0.99365234375 + }, + { + "word": " Guru", + "start": 38.24, + "end": 38.52, + "probability": 0.99169921875 + }, + { + "word": " Show.", + "start": 38.52, + "end": 38.76, + "probability": 0.9609375 + } + ] + }, + { + "id": 21, + "text": "My name's Mike.", + "start": 38.84, + "end": 39.3, + "words": [ + { + "word": " My", + "start": 38.84, + "end": 38.94, + "probability": 0.99951171875 + }, + { + "word": " name's", + "start": 38.94, + "end": 39.08, + "probability": 0.734375 + }, + { + "word": " Mike.", + "start": 39.08, + "end": 39.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 22, + "text": "Here to deal with your technology needs and treat you like a real person in the process.", + "start": 39.3, + "end": 42.4, + "words": [ + { + "word": " Here", + "start": 39.3, + "end": 39.42, + "probability": 0.5517578125 + }, + { + "word": " to", + "start": 39.42, + "end": 39.52, + "probability": 0.9990234375 + }, + { + "word": " deal", + "start": 39.52, + "end": 39.66, + "probability": 0.8408203125 + }, + { + "word": " with", + "start": 39.66, + "end": 39.72, + "probability": 1.0 + }, + { + "word": " your", + "start": 39.72, + "end": 39.84, + "probability": 1.0 + }, + { + "word": " technology", + "start": 39.84, + "end": 40.18, + "probability": 1.0 + }, + { + "word": " needs", + "start": 40.18, + "end": 40.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 40.58, + "end": 40.84, + "probability": 0.998046875 + }, + { + "word": " treat", + "start": 40.84, + "end": 41.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 41.06, + "end": 41.24, + "probability": 1.0 + }, + { + "word": " like", + "start": 41.24, + "end": 41.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 41.36, + "end": 41.48, + "probability": 1.0 + }, + { + "word": " real", + "start": 41.48, + "end": 41.62, + "probability": 1.0 + }, + { + "word": " person", + "start": 41.62, + "end": 41.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 41.9, + "end": 42.06, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 42.06, + "end": 42.08, + "probability": 1.0 + }, + { + "word": " process.", + "start": 42.08, + "end": 42.4, + "probability": 1.0 + } + ] + }, + { + "id": 23, + "text": "Give us a call.", + "start": 42.46, + "end": 43.08, + "words": [ + { + "word": " Give", + "start": 42.46, + "end": 42.7, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 42.7, + "end": 42.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 42.86, + "end": 42.9, + "probability": 1.0 + }, + { + "word": " call.", + "start": 42.9, + "end": 43.08, + "probability": 1.0 + } + ] + }, + { + "id": 24, + "text": "751-1041 if you'd like to be part of the show.", + "start": 43.660000000000004, + "end": 45.44, + "words": [ + { + "word": " 751", + "start": 43.660000000000004, + "end": 44.02, + "probability": 0.99365234375 + }, + { + "word": "-1041", + "start": 44.02, + "end": 44.38, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 44.38, + "end": 44.64, + "probability": 0.88916015625 + }, + { + "word": " you'd", + "start": 44.64, + "end": 44.76, + "probability": 1.0 + }, + { + "word": " like", + "start": 44.76, + "end": 44.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 44.88, + "end": 44.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 44.98, + "end": 45.04, + "probability": 1.0 + }, + { + "word": " part", + "start": 45.04, + "end": 45.18, + "probability": 0.99462890625 + }, + { + "word": " of", + "start": 45.18, + "end": 45.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 45.28, + "end": 45.32, + "probability": 1.0 + }, + { + "word": " show.", + "start": 45.32, + "end": 45.44, + "probability": 1.0 + } + ] + }, + { + "id": 25, + "text": "Once again, 751-1041.", + "start": 45.5, + "end": 47.58, + "words": [ + { + "word": " Once", + "start": 45.5, + "end": 45.6, + "probability": 0.994140625 + }, + { + "word": " again,", + "start": 45.6, + "end": 45.76, + "probability": 1.0 + }, + { + "word": " 751", + "start": 45.86, + "end": 46.76, + "probability": 1.0 + }, + { + "word": "-1041.", + "start": 46.76, + "end": 47.58, + "probability": 1.0 + } + ] + }, + { + "id": 26, + "text": "See what we can do to help you out with whatever technology issues are plaguing you today.", + "start": 48.160000000000004, + "end": 51.44, + "words": [ + { + "word": " See", + "start": 48.160000000000004, + "end": 48.52, + "probability": 0.70556640625 + }, + { + "word": " what", + "start": 48.52, + "end": 48.64, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 48.64, + "end": 48.72, + "probability": 1.0 + }, + { + "word": " can", + "start": 48.72, + "end": 48.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 48.76, + "end": 48.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 48.84, + "end": 48.94, + "probability": 1.0 + }, + { + "word": " help", + "start": 48.94, + "end": 49.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 49.04, + "end": 49.16, + "probability": 1.0 + }, + { + "word": " out", + "start": 49.16, + "end": 49.24, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 49.24, + "end": 49.34, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 49.34, + "end": 49.52, + "probability": 1.0 + }, + { + "word": " technology", + "start": 49.52, + "end": 49.84, + "probability": 1.0 + }, + { + "word": " issues", + "start": 49.84, + "end": 50.28, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 50.28, + "end": 50.56, + "probability": 0.99951171875 + }, + { + "word": " plaguing", + "start": 50.56, + "end": 50.96, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 50.96, + "end": 51.14, + "probability": 1.0 + }, + { + "word": " today.", + "start": 51.14, + "end": 51.44, + "probability": 1.0 + } + ] + }, + { + "id": 27, + "text": "You were today.", + "start": 52.0, + "end": 52.72, + "words": [ + { + "word": " You", + "start": 52.0, + "end": 52.36, + "probability": 0.89990234375 + }, + { + "word": " were", + "start": 52.36, + "end": 52.48, + "probability": 0.9658203125 + }, + { + "word": " today.", + "start": 52.48, + "end": 52.72, + "probability": 1.0 + } + ] + }, + { + "id": 28, + "text": "It's not ailing or plaguing.", + "start": 53.28, + "end": 55.3, + "words": [ + { + "word": " It's", + "start": 53.28, + "end": 53.64, + "probability": 0.89990234375 + }, + { + "word": " not", + "start": 53.64, + "end": 53.72, + "probability": 1.0 + }, + { + "word": " ailing", + "start": 53.72, + "end": 54.12, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 54.12, + "end": 54.54, + "probability": 0.9033203125 + }, + { + "word": " plaguing.", + "start": 54.54, + "end": 55.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 29, + "text": "Plaguing.", + "start": 55.32, + "end": 55.68, + "words": [ + { + "word": " Plaguing.", + "start": 55.32, + "end": 55.68, + "probability": 0.8017578125 + } + ] + }, + { + "id": 30, + "text": "Plaguing.", + "start": 55.82, + "end": 56.18, + "words": [ + { + "word": " Plaguing.", + "start": 55.82, + "end": 56.18, + "probability": 0.7646484375 + } + ] + }, + { + "id": 31, + "text": "Today it's the plague.", + "start": 56.18, + "end": 57.08, + "words": [ + { + "word": " Today", + "start": 56.18, + "end": 56.32, + "probability": 0.71044921875 + }, + { + "word": " it's", + "start": 56.32, + "end": 56.54, + "probability": 0.9814453125 + }, + { + "word": " the", + "start": 56.54, + "end": 56.62, + "probability": 0.91552734375 + }, + { + "word": " plague.", + "start": 56.62, + "end": 57.08, + "probability": 1.0 + } + ] + }, + { + "id": 32, + "text": "You're going to have the plague today.", + "start": 57.32, + "end": 58.68, + "words": [ + { + "word": " You're", + "start": 57.32, + "end": 57.68, + "probability": 0.615234375 + }, + { + "word": " going", + "start": 57.68, + "end": 57.78, + "probability": 0.978515625 + }, + { + "word": " to", + "start": 57.78, + "end": 57.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 57.86, + "end": 57.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 57.94, + "end": 58.06, + "probability": 0.99658203125 + }, + { + "word": " plague", + "start": 58.06, + "end": 58.4, + "probability": 1.0 + }, + { + "word": " today.", + "start": 58.4, + "end": 58.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 33, + "text": "That's nice.", + "start": 58.78, + "end": 59.28, + "words": [ + { + "word": " That's", + "start": 58.78, + "end": 59.04, + "probability": 0.9990234375 + }, + { + "word": " nice.", + "start": 59.04, + "end": 59.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 34, + "text": "Well, you know, I heard a plague hit Mac pretty hard, so.", + "start": 60.86, + "end": 62.98, + "words": [ + { + "word": " Well,", + "start": 60.86, + "end": 61.18, + "probability": 0.818359375 + }, + { + "word": " you", + "start": 61.3, + "end": 61.4, + "probability": 0.97021484375 + }, + { + "word": " know,", + "start": 61.4, + "end": 61.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 61.48, + "end": 61.58, + "probability": 1.0 + }, + { + "word": " heard", + "start": 61.58, + "end": 61.66, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 61.66, + "end": 61.74, + "probability": 1.0 + }, + { + "word": " plague", + "start": 61.74, + "end": 61.98, + "probability": 0.986328125 + }, + { + "word": " hit", + "start": 61.98, + "end": 62.1, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 62.1, + "end": 62.26, + "probability": 0.97119140625 + }, + { + "word": " pretty", + "start": 62.26, + "end": 62.5, + "probability": 0.99951171875 + }, + { + "word": " hard,", + "start": 62.5, + "end": 62.76, + "probability": 1.0 + }, + { + "word": " so.", + "start": 62.84, + "end": 62.98, + "probability": 1.0 + } + ] + }, + { + "id": 35, + "text": "Well, we're going to get to that.", + "start": 63.14, + "end": 64.34, + "words": [ + { + "word": " Well,", + "start": 63.14, + "end": 63.44, + "probability": 0.81201171875 + }, + { + "word": " we're", + "start": 63.44, + "end": 63.84, + "probability": 1.0 + }, + { + "word": " going", + "start": 63.84, + "end": 63.9, + "probability": 0.9814453125 + }, + { + "word": " to", + "start": 63.9, + "end": 64.0, + "probability": 1.0 + }, + { + "word": " get", + "start": 64.0, + "end": 64.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 64.12, + "end": 64.22, + "probability": 1.0 + }, + { + "word": " that.", + "start": 64.22, + "end": 64.34, + "probability": 1.0 + } + ] + }, + { + "id": 36, + "text": "You want to talk about that?", + "start": 64.38, + "end": 64.9, + "words": [ + { + "word": " You", + "start": 64.38, + "end": 64.46, + "probability": 0.7138671875 + }, + { + "word": " want", + "start": 64.46, + "end": 64.46, + "probability": 0.9453125 + }, + { + "word": " to", + "start": 64.46, + "end": 64.5, + "probability": 1.0 + }, + { + "word": " talk", + "start": 64.5, + "end": 64.64, + "probability": 1.0 + }, + { + "word": " about", + "start": 64.64, + "end": 64.72, + "probability": 1.0 + }, + { + "word": " that?", + "start": 64.72, + "end": 64.9, + "probability": 1.0 + } + ] + }, + { + "id": 37, + "text": "All right.", + "start": 64.98, + "end": 65.3, + "words": [ + { + "word": " All", + "start": 64.98, + "end": 65.16, + "probability": 0.4033203125 + }, + { + "word": " right.", + "start": 65.16, + "end": 65.3, + "probability": 1.0 + } + ] + }, + { + "id": 38, + "text": "Do it.", + "start": 65.3, + "end": 65.54, + "words": [ + { + "word": " Do", + "start": 65.3, + "end": 65.52, + "probability": 0.394287109375 + }, + { + "word": " it.", + "start": 65.52, + "end": 65.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 39, + "text": "So, Mac is getting their little plague stuff, and that's for a little bit later in the show today.", + "start": 65.64, + "end": 70.74, + "words": [ + { + "word": " So,", + "start": 65.64, + "end": 65.92, + "probability": 0.9951171875 + }, + { + "word": " Mac", + "start": 66.06, + "end": 66.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 66.7, + "end": 67.0, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 67.0, + "end": 67.34, + "probability": 1.0 + }, + { + "word": " their", + "start": 67.34, + "end": 67.56, + "probability": 0.998046875 + }, + { + "word": " little", + "start": 67.56, + "end": 67.72, + "probability": 1.0 + }, + { + "word": " plague", + "start": 67.72, + "end": 68.04, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 68.04, + "end": 68.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 68.5, + "end": 68.66, + "probability": 1.0 + }, + { + "word": " that's", + "start": 68.66, + "end": 69.56, + "probability": 0.9951171875 + }, + { + "word": " for", + "start": 69.56, + "end": 69.62, + "probability": 0.88232421875 + }, + { + "word": " a", + "start": 69.62, + "end": 69.72, + "probability": 1.0 + }, + { + "word": " little", + "start": 69.72, + "end": 69.8, + "probability": 1.0 + }, + { + "word": " bit", + "start": 69.8, + "end": 69.94, + "probability": 1.0 + }, + { + "word": " later", + "start": 69.94, + "end": 70.18, + "probability": 1.0 + }, + { + "word": " in", + "start": 70.18, + "end": 70.3, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 70.3, + "end": 70.36, + "probability": 1.0 + }, + { + "word": " show", + "start": 70.36, + "end": 70.54, + "probability": 0.9990234375 + }, + { + "word": " today.", + "start": 70.54, + "end": 70.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 40, + "text": "All right.", + "start": 70.9, + "end": 71.16, + "words": [ + { + "word": " All", + "start": 70.9, + "end": 71.08, + "probability": 0.998046875 + }, + { + "word": " right.", + "start": 71.08, + "end": 71.16, + "probability": 1.0 + } + ] + }, + { + "id": 41, + "text": "But, I think we're going to start out with the UK hacking all kinds of websites.", + "start": 71.34, + "end": 76.04, + "words": [ + { + "word": " But,", + "start": 71.34, + "end": 71.66, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 71.86, + "end": 72.66, + "probability": 0.99462890625 + }, + { + "word": " think", + "start": 72.66, + "end": 72.88, + "probability": 1.0 + }, + { + "word": " we're", + "start": 72.88, + "end": 73.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 73.0, + "end": 73.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 73.1, + "end": 73.14, + "probability": 1.0 + }, + { + "word": " start", + "start": 73.14, + "end": 73.28, + "probability": 1.0 + }, + { + "word": " out", + "start": 73.28, + "end": 73.5, + "probability": 1.0 + }, + { + "word": " with", + "start": 73.5, + "end": 73.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 73.82, + "end": 74.32, + "probability": 1.0 + }, + { + "word": " UK", + "start": 74.32, + "end": 74.78, + "probability": 0.488037109375 + }, + { + "word": " hacking", + "start": 74.78, + "end": 75.3, + "probability": 0.9970703125 + }, + { + "word": " all", + "start": 75.3, + "end": 75.5, + "probability": 0.7373046875 + }, + { + "word": " kinds", + "start": 75.5, + "end": 75.64, + "probability": 0.685546875 + }, + { + "word": " of", + "start": 75.64, + "end": 75.8, + "probability": 1.0 + }, + { + "word": " websites.", + "start": 75.8, + "end": 76.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 42, + "text": "The UK?", + "start": 76.32, + "end": 76.88, + "words": [ + { + "word": " The", + "start": 76.32, + "end": 76.62, + "probability": 0.99951171875 + }, + { + "word": " UK?", + "start": 76.62, + "end": 76.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 43, + "text": "It means all the UKs?", + "start": 77.18, + "end": 78.5, + "words": [ + { + "word": " It", + "start": 77.18, + "end": 77.34, + "probability": 0.76904296875 + }, + { + "word": " means", + "start": 77.34, + "end": 77.5, + "probability": 1.0 + }, + { + "word": " all", + "start": 77.5, + "end": 77.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 77.78, + "end": 77.98, + "probability": 0.9326171875 + }, + { + "word": " UKs?", + "start": 77.98, + "end": 78.5, + "probability": 0.8818359375 + } + ] + }, + { + "id": 44, + "text": "Like, hacking websites?", + "start": 78.5, + "end": 79.0, + "words": [ + { + "word": " Like,", + "start": 78.5, + "end": 78.6, + "probability": 0.59814453125 + }, + { + "word": " hacking", + "start": 78.6, + "end": 78.82, + "probability": 0.98193359375 + }, + { + "word": " websites?", + "start": 78.82, + "end": 79.0, + "probability": 0.7451171875 + } + ] + }, + { + "id": 45, + "text": "Well, you know, MI6.", + "start": 79.0, + "end": 79.88, + "words": [ + { + "word": " Well,", + "start": 79.0, + "end": 79.02, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 79.02, + "end": 79.14, + "probability": 1.0 + }, + { + "word": " know,", + "start": 79.14, + "end": 79.28, + "probability": 1.0 + }, + { + "word": " MI6.", + "start": 79.4, + "end": 79.88, + "probability": 0.99755859375 + } + ] + }, + { + "id": 46, + "text": "MI6?", + "start": 80.46000000000001, + "end": 80.78, + "words": [ + { + "word": " MI6?", + "start": 80.46000000000001, + "end": 80.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 47, + "text": "MI6 is hacking websites now.", + "start": 81.06, + "end": 82.4, + "words": [ + { + "word": " MI6", + "start": 81.06, + "end": 81.38, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 81.38, + "end": 81.52, + "probability": 0.9912109375 + }, + { + "word": " hacking", + "start": 81.52, + "end": 81.74, + "probability": 1.0 + }, + { + "word": " websites", + "start": 81.74, + "end": 82.0, + "probability": 1.0 + }, + { + "word": " now.", + "start": 82.0, + "end": 82.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 48, + "text": "So, you got...", + "start": 82.52, + "end": 83.48, + "words": [ + { + "word": " So,", + "start": 82.52, + "end": 82.8, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 82.86, + "end": 82.98, + "probability": 1.0 + }, + { + "word": " got...", + "start": 82.98, + "end": 83.48, + "probability": 0.669921875 + } + ] + }, + { + "id": 49, + "text": "You got...", + "start": 84.63999999999999, + "end": 85.26, + "words": [ + { + "word": " You", + "start": 84.63999999999999, + "end": 84.96, + "probability": 0.9072265625 + }, + { + "word": " got...", + "start": 84.96, + "end": 85.26, + "probability": 0.9873046875 + } + ] + }, + { + "id": 50, + "text": "MI6, really?", + "start": 86.08000000000001, + "end": 86.64, + "words": [ + { + "word": " MI6,", + "start": 86.08000000000001, + "end": 86.4, + "probability": 0.9990234375 + }, + { + "word": " really?", + "start": 86.4, + "end": 86.64, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "Yeah.", + "start": 86.78, + "end": 86.98, + "words": [ + { + "word": " Yeah.", + "start": 86.78, + "end": 86.98, + "probability": 0.884765625 + } + ] + }, + { + "id": 52, + "text": "Wow.", + "start": 87.06, + "end": 87.38, + "words": [ + { + "word": " Wow.", + "start": 87.06, + "end": 87.38, + "probability": 0.87548828125 + } + ] + }, + { + "id": 53, + "text": "So, apparently the CIA was going to do it.", + "start": 87.4, + "end": 88.94, + "words": [ + { + "word": " So,", + "start": 87.4, + "end": 87.66, + "probability": 0.53955078125 + }, + { + "word": " apparently", + "start": 87.72, + "end": 87.98, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 87.98, + "end": 88.26, + "probability": 0.94091796875 + }, + { + "word": " CIA", + "start": 88.26, + "end": 88.5, + "probability": 1.0 + }, + { + "word": " was", + "start": 88.5, + "end": 88.74, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 88.74, + "end": 88.88, + "probability": 0.84619140625 + }, + { + "word": " to", + "start": 88.88, + "end": 88.92, + "probability": 0.99609375 + }, + { + "word": " do", + "start": 88.92, + "end": 88.94, + "probability": 0.876953125 + }, + { + "word": " it.", + "start": 88.94, + "end": 88.94, + "probability": 0.99658203125 + } + ] + }, + { + "id": 54, + "text": "So, Tom Cruise is hacking websites?", + "start": 88.94, + "end": 89.92, + "words": [ + { + "word": " So,", + "start": 88.94, + "end": 88.96, + "probability": 0.74462890625 + }, + { + "word": " Tom", + "start": 88.98, + "end": 89.1, + "probability": 0.99853515625 + }, + { + "word": " Cruise", + "start": 89.1, + "end": 89.34, + "probability": 0.99462890625 + }, + { + "word": " is", + "start": 89.34, + "end": 89.54, + "probability": 0.99560546875 + }, + { + "word": " hacking", + "start": 89.54, + "end": 89.7, + "probability": 1.0 + }, + { + "word": " websites?", + "start": 89.7, + "end": 89.92, + "probability": 0.97802734375 + } + ] + }, + { + "id": 55, + "text": "Oh, no.", + "start": 90.0, + "end": 90.66, + "words": [ + { + "word": " Oh,", + "start": 90.0, + "end": 90.48, + "probability": 0.95166015625 + }, + { + "word": " no.", + "start": 90.58, + "end": 90.66, + "probability": 0.71337890625 + } + ] + }, + { + "id": 56, + "text": "That's...", + "start": 90.72, + "end": 90.88, + "words": [ + { + "word": " That's...", + "start": 90.72, + "end": 90.88, + "probability": 0.63525390625 + } + ] + }, + { + "id": 57, + "text": "Oh, my bad.", + "start": 90.88, + "end": 91.66, + "words": [ + { + "word": " Oh,", + "start": 90.88, + "end": 91.34, + "probability": 0.99658203125 + }, + { + "word": " my", + "start": 91.4, + "end": 91.48, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 91.48, + "end": 91.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 58, + "text": "I think I missed an impossible.", + "start": 91.76, + "end": 92.74, + "words": [ + { + "word": " I", + "start": 91.76, + "end": 91.98, + "probability": 0.68359375 + }, + { + "word": " think", + "start": 91.98, + "end": 92.12, + "probability": 0.42626953125 + }, + { + "word": " I", + "start": 92.12, + "end": 92.12, + "probability": 0.7587890625 + }, + { + "word": " missed", + "start": 92.12, + "end": 92.3, + "probability": 0.85107421875 + }, + { + "word": " an", + "start": 92.3, + "end": 92.42, + "probability": 0.80078125 + }, + { + "word": " impossible.", + "start": 92.42, + "end": 92.74, + "probability": 0.9951171875 + } + ] + }, + { + "id": 59, + "text": "Sorry.", + "start": 93.2, + "end": 93.56, + "words": [ + { + "word": " Sorry.", + "start": 93.2, + "end": 93.56, + "probability": 0.986328125 + } + ] + }, + { + "id": 60, + "text": "How many times do we have to tell you not to try?", + "start": 94.82000000000001, + "end": 97.32, + "words": [ + { + "word": " How", + "start": 94.82000000000001, + "end": 95.18, + "probability": 0.94775390625 + }, + { + "word": " many", + "start": 95.18, + "end": 95.54, + "probability": 1.0 + }, + { + "word": " times", + "start": 95.54, + "end": 95.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 95.8, + "end": 96.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 96.08, + "end": 96.2, + "probability": 1.0 + }, + { + "word": " have", + "start": 96.2, + "end": 96.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 96.32, + "end": 96.44, + "probability": 1.0 + }, + { + "word": " tell", + "start": 96.44, + "end": 96.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 96.62, + "end": 96.78, + "probability": 1.0 + }, + { + "word": " not", + "start": 96.78, + "end": 96.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 96.96, + "end": 97.1, + "probability": 1.0 + }, + { + "word": " try?", + "start": 97.1, + "end": 97.32, + "probability": 0.99560546875 + } + ] + }, + { + "id": 61, + "text": "Why is she talking?", + "start": 97.32, + "end": 98.88, + "words": [ + { + "word": " Why", + "start": 97.32, + "end": 97.66, + "probability": 0.97314453125 + }, + { + "word": " is", + "start": 97.66, + "end": 97.72, + "probability": 0.9599609375 + }, + { + "word": " she", + "start": 97.72, + "end": 98.44, + "probability": 0.98876953125 + }, + { + "word": " talking?", + "start": 98.44, + "end": 98.88, + "probability": 1.0 + } + ] + }, + { + "id": 62, + "text": "Because she's learning what I tell you every week to leave the comedy to the professionals.", + "start": 100.14, + "end": 104.72, + "words": [ + { + "word": " Because", + "start": 100.14, + "end": 100.5, + "probability": 0.99853515625 + }, + { + "word": " she's", + "start": 100.5, + "end": 100.86, + "probability": 1.0 + }, + { + "word": " learning", + "start": 100.86, + "end": 101.14, + "probability": 1.0 + }, + { + "word": " what", + "start": 101.14, + "end": 101.64, + "probability": 0.603515625 + }, + { + "word": " I", + "start": 101.64, + "end": 102.1, + "probability": 0.9677734375 + }, + { + "word": " tell", + "start": 102.1, + "end": 102.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 102.76, + "end": 102.92, + "probability": 1.0 + }, + { + "word": " every", + "start": 102.92, + "end": 103.14, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 103.14, + "end": 103.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 103.42, + "end": 103.58, + "probability": 0.962890625 + }, + { + "word": " leave", + "start": 103.58, + "end": 103.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 103.7, + "end": 103.82, + "probability": 1.0 + }, + { + "word": " comedy", + "start": 103.82, + "end": 104.06, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 104.06, + "end": 104.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 104.26, + "end": 104.4, + "probability": 1.0 + }, + { + "word": " professionals.", + "start": 104.4, + "end": 104.72, + "probability": 0.9931640625 + } + ] + }, + { + "id": 63, + "text": "I see.", + "start": 104.74, + "end": 105.34, + "words": [ + { + "word": " I", + "start": 104.74, + "end": 105.08, + "probability": 0.77392578125 + }, + { + "word": " see.", + "start": 105.08, + "end": 105.34, + "probability": 1.0 + } + ] + }, + { + "id": 64, + "text": "So, MI6 decided to go out and hack an Al-Qaeda website.", + "start": 106.68, + "end": 109.12, + "words": [ + { + "word": " So,", + "start": 106.68, + "end": 107.04, + "probability": 0.9912109375 + }, + { + "word": " MI6", + "start": 107.04, + "end": 107.4, + "probability": 0.9970703125 + }, + { + "word": " decided", + "start": 107.4, + "end": 107.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 107.78, + "end": 108.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 108.02, + "end": 108.12, + "probability": 1.0 + }, + { + "word": " out", + "start": 108.12, + "end": 108.2, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 108.2, + "end": 108.3, + "probability": 1.0 + }, + { + "word": " hack", + "start": 108.3, + "end": 108.48, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 108.48, + "end": 108.62, + "probability": 0.9990234375 + }, + { + "word": " Al", + "start": 108.62, + "end": 108.74, + "probability": 0.796875 + }, + { + "word": "-Qaeda", + "start": 108.74, + "end": 108.88, + "probability": 0.8466796875 + }, + { + "word": " website.", + "start": 108.88, + "end": 109.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 65, + "text": "All right.", + "start": 109.5, + "end": 109.82, + "words": [ + { + "word": " All", + "start": 109.5, + "end": 109.68, + "probability": 0.79296875 + }, + { + "word": " right.", + "start": 109.68, + "end": 109.82, + "probability": 1.0 + } + ] + }, + { + "id": 66, + "text": "An Al-Qaeda website.", + "start": 109.94, + "end": 110.94, + "words": [ + { + "word": " An", + "start": 109.94, + "end": 110.2, + "probability": 0.85693359375 + }, + { + "word": " Al", + "start": 110.2, + "end": 110.38, + "probability": 1.0 + }, + { + "word": "-Qaeda", + "start": 110.38, + "end": 110.62, + "probability": 0.99951171875 + }, + { + "word": " website.", + "start": 110.62, + "end": 110.94, + "probability": 1.0 + } + ] + }, + { + "id": 67, + "text": "Right.", + "start": 111.12, + "end": 111.3, + "words": [ + { + "word": " Right.", + "start": 111.12, + "end": 111.3, + "probability": 0.7109375 + } + ] + }, + { + "id": 68, + "text": "Now, we were going to do it.", + "start": 111.36, + "end": 113.7, + "words": [ + { + "word": " Now,", + "start": 111.36, + "end": 111.58, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 111.68, + "end": 113.08, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 113.08, + "end": 113.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 113.26, + "end": 113.34, + "probability": 0.9921875 + }, + { + "word": " to", + "start": 113.34, + "end": 113.44, + "probability": 1.0 + }, + { + "word": " do", + "start": 113.44, + "end": 113.56, + "probability": 1.0 + }, + { + "word": " it.", + "start": 113.56, + "end": 113.7, + "probability": 1.0 + } + ] + }, + { + "id": 69, + "text": "Me and you?", + "start": 114.54, + "end": 115.34, + "words": [ + { + "word": " Me", + "start": 114.54, + "end": 114.9, + "probability": 0.9091796875 + }, + { + "word": " and", + "start": 114.9, + "end": 115.2, + "probability": 1.0 + }, + { + "word": " you?", + "start": 115.2, + "end": 115.34, + "probability": 1.0 + } + ] + }, + { + "id": 70, + "text": "No.", + "start": 115.48, + "end": 115.68, + "words": [ + { + "word": " No.", + "start": 115.48, + "end": 115.68, + "probability": 0.9970703125 + } + ] + }, + { + "id": 71, + "text": "We, as in the US, was going to do it.", + "start": 115.82, + "end": 117.94, + "words": [ + { + "word": " We,", + "start": 115.82, + "end": 116.18, + "probability": 0.7548828125 + }, + { + "word": " as", + "start": 116.2, + "end": 116.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 116.38, + "end": 116.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 116.5, + "end": 116.62, + "probability": 0.99951171875 + }, + { + "word": " US,", + "start": 116.62, + "end": 116.84, + "probability": 0.039031982421875 + }, + { + "word": " was", + "start": 116.92, + "end": 117.44, + "probability": 0.9814453125 + }, + { + "word": " going", + "start": 117.44, + "end": 117.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 117.54, + "end": 117.66, + "probability": 1.0 + }, + { + "word": " do", + "start": 117.66, + "end": 117.82, + "probability": 1.0 + }, + { + "word": " it.", + "start": 117.82, + "end": 117.94, + "probability": 1.0 + } + ] + }, + { + "id": 72, + "text": "But, the CIA said,", + "start": 118.0, + "end": 119.82, + "words": [ + { + "word": " But,", + "start": 118.0, + "end": 118.36, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 118.36, + "end": 119.18, + "probability": 0.9990234375 + }, + { + "word": " CIA", + "start": 119.18, + "end": 119.5, + "probability": 1.0 + }, + { + "word": " said,", + "start": 119.5, + "end": 119.82, + "probability": 1.0 + } + ] + }, + { + "id": 73, + "text": "we shouldn't do that because it's a valuable source of information.", + "start": 120.0, + "end": 122.5, + "words": [ + { + "word": " we", + "start": 120.0, + "end": 120.08, + "probability": 0.070556640625 + }, + { + "word": " shouldn't", + "start": 120.08, + "end": 120.46, + "probability": 0.990234375 + }, + { + "word": " do", + "start": 120.46, + "end": 120.54, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 120.54, + "end": 120.7, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 120.7, + "end": 121.0, + "probability": 0.84619140625 + }, + { + "word": " it's", + "start": 121.0, + "end": 121.38, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 121.38, + "end": 121.42, + "probability": 0.99658203125 + }, + { + "word": " valuable", + "start": 121.42, + "end": 121.7, + "probability": 0.9990234375 + }, + { + "word": " source", + "start": 121.7, + "end": 122.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 122.0, + "end": 122.16, + "probability": 0.99853515625 + }, + { + "word": " information.", + "start": 122.16, + "end": 122.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 74, + "text": "This web magazine that they have that teaches you how to build dangerous things.", + "start": 122.62, + "end": 126.36, + "words": [ + { + "word": " This", + "start": 122.62, + "end": 122.82, + "probability": 0.99560546875 + }, + { + "word": " web", + "start": 122.82, + "end": 123.06, + "probability": 0.96533203125 + }, + { + "word": " magazine", + "start": 123.06, + "end": 123.54, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 123.54, + "end": 123.92, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 123.92, + "end": 124.06, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 124.06, + "end": 124.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 124.32, + "end": 124.46, + "probability": 0.79931640625 + }, + { + "word": " teaches", + "start": 124.46, + "end": 124.72, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 124.72, + "end": 124.88, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 124.88, + "end": 125.0, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 125.0, + "end": 125.12, + "probability": 1.0 + }, + { + "word": " build", + "start": 125.12, + "end": 125.36, + "probability": 0.99951171875 + }, + { + "word": " dangerous", + "start": 125.36, + "end": 125.92, + "probability": 0.99951171875 + }, + { + "word": " things.", + "start": 125.92, + "end": 126.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 75, + "text": "It's valuable.", + "start": 126.58, + "end": 127.34, + "words": [ + { + "word": " It's", + "start": 126.58, + "end": 127.02, + "probability": 0.93408203125 + }, + { + "word": " valuable.", + "start": 127.02, + "end": 127.34, + "probability": 1.0 + } + ] + }, + { + "id": 76, + "text": "Oh, it's valuable for chatter, I assume.", + "start": 127.52, + "end": 129.18, + "words": [ + { + "word": " Oh,", + "start": 127.52, + "end": 127.8, + "probability": 0.64404296875 + }, + { + "word": " it's", + "start": 127.88, + "end": 128.08, + "probability": 0.69921875 + }, + { + "word": " valuable", + "start": 128.08, + "end": 128.28, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 128.28, + "end": 128.52, + "probability": 0.99951171875 + }, + { + "word": " chatter,", + "start": 128.52, + "end": 128.82, + "probability": 0.9794921875 + }, + { + "word": " I", + "start": 128.9, + "end": 129.0, + "probability": 0.9990234375 + }, + { + "word": " assume.", + "start": 129.0, + "end": 129.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 77, + "text": "Well, yeah.", + "start": 129.32, + "end": 129.56, + "words": [ + { + "word": " Well,", + "start": 129.32, + "end": 129.44, + "probability": 0.92333984375 + }, + { + "word": " yeah.", + "start": 129.48, + "end": 129.56, + "probability": 0.98095703125 + } + ] + }, + { + "id": 78, + "text": "To pick up, you know, intelligence and such.", + "start": 129.58, + "end": 131.88, + "words": [ + { + "word": " To", + "start": 129.58, + "end": 129.72, + "probability": 0.9833984375 + }, + { + "word": " pick", + "start": 129.72, + "end": 129.96, + "probability": 0.99951171875 + }, + { + "word": " up,", + "start": 129.96, + "end": 130.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 130.18, + "end": 130.3, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 130.3, + "end": 130.46, + "probability": 1.0 + }, + { + "word": " intelligence", + "start": 130.46, + "end": 130.96, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 130.96, + "end": 131.38, + "probability": 0.99853515625 + }, + { + "word": " such.", + "start": 131.38, + "end": 131.88, + "probability": 0.75927734375 + } + ] + }, + { + "id": 79, + "text": "Well, MI6 apparently disagreed.", + "start": 133.16, + "end": 135.46, + "words": [ + { + "word": " Well,", + "start": 133.16, + "end": 133.72, + "probability": 0.52783203125 + }, + { + "word": " MI6", + "start": 133.72, + "end": 134.28, + "probability": 0.96875 + }, + { + "word": " apparently", + "start": 134.28, + "end": 134.62, + "probability": 0.91064453125 + }, + { + "word": " disagreed.", + "start": 134.62, + "end": 135.46, + "probability": 0.9970703125 + } + ] + }, + { + "id": 80, + "text": "And they thought that the readers of this magazine would be much happier making cupcakes than building...", + "start": 135.46, + "end": 144.94, + "words": [ + { + "word": " And", + "start": 135.46, + "end": 135.9, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 135.9, + "end": 136.12, + "probability": 0.99755859375 + }, + { + "word": " thought", + "start": 136.12, + "end": 136.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 136.38, + "end": 136.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 136.76, + "end": 138.34, + "probability": 0.994140625 + }, + { + "word": " readers", + "start": 138.34, + "end": 138.88, + "probability": 0.82568359375 + }, + { + "word": " of", + "start": 138.88, + "end": 139.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 139.14, + "end": 139.28, + "probability": 1.0 + }, + { + "word": " magazine", + "start": 139.28, + "end": 139.6, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 139.6, + "end": 140.48, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 140.48, + "end": 140.76, + "probability": 1.0 + }, + { + "word": " much", + "start": 140.76, + "end": 141.64, + "probability": 1.0 + }, + { + "word": " happier", + "start": 141.64, + "end": 141.98, + "probability": 1.0 + }, + { + "word": " making", + "start": 141.98, + "end": 143.32, + "probability": 0.9970703125 + }, + { + "word": " cupcakes", + "start": 143.32, + "end": 143.74, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 143.74, + "end": 144.42, + "probability": 0.99853515625 + }, + { + "word": " building...", + "start": 144.42, + "end": 144.94, + "probability": 0.517578125 + } + ] + }, + { + "id": 81, + "text": "Making cupcakes.", + "start": 144.94, + "end": 146.26, + "words": [ + { + "word": " Making", + "start": 144.94, + "end": 145.56, + "probability": 0.99658203125 + }, + { + "word": " cupcakes.", + "start": 145.56, + "end": 146.26, + "probability": 1.0 + } + ] + }, + { + "id": 82, + "text": "Dangerous, dangerous items.", + "start": 146.54, + "end": 147.88, + "words": [ + { + "word": " Dangerous,", + "start": 146.54, + "end": 147.1, + "probability": 0.7548828125 + }, + { + "word": " dangerous", + "start": 147.1, + "end": 147.42, + "probability": 1.0 + }, + { + "word": " items.", + "start": 147.42, + "end": 147.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 83, + "text": "Right.", + "start": 147.98, + "end": 148.32, + "words": [ + { + "word": " Right.", + "start": 147.98, + "end": 148.32, + "probability": 0.97998046875 + } + ] + }, + { + "id": 84, + "text": "So, they replaced...", + "start": 148.66, + "end": 149.98, + "words": [ + { + "word": " So,", + "start": 148.66, + "end": 149.22, + "probability": 0.98193359375 + }, + { + "word": " they", + "start": 149.28, + "end": 149.54, + "probability": 0.99853515625 + }, + { + "word": " replaced...", + "start": 149.54, + "end": 149.98, + "probability": 0.9248046875 + } + ] + }, + { + "id": 85, + "text": "They replaced all of the bad stuff on there with an encrypted version of Ellen DeGeneres'", + "start": 150.0, + "end": 155.54, + "words": [ + { + "word": " They", + "start": 150.0, + "end": 150.16, + "probability": 0.135009765625 + }, + { + "word": " replaced", + "start": 150.16, + "end": 150.16, + "probability": 0.58642578125 + }, + { + "word": " all", + "start": 150.16, + "end": 150.32, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 150.32, + "end": 150.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 150.48, + "end": 150.66, + "probability": 1.0 + }, + { + "word": " bad", + "start": 150.66, + "end": 151.72, + "probability": 0.99462890625 + }, + { + "word": " stuff", + "start": 151.72, + "end": 152.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 152.08, + "end": 152.32, + "probability": 1.0 + }, + { + "word": " there", + "start": 152.32, + "end": 152.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 152.48, + "end": 152.7, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 152.7, + "end": 152.82, + "probability": 1.0 + }, + { + "word": " encrypted", + "start": 152.82, + "end": 153.12, + "probability": 1.0 + }, + { + "word": " version", + "start": 153.12, + "end": 153.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 153.58, + "end": 154.54, + "probability": 0.99951171875 + }, + { + "word": " Ellen", + "start": 154.54, + "end": 155.0, + "probability": 0.99853515625 + }, + { + "word": " DeGeneres'", + "start": 155.0, + "end": 155.54, + "probability": 0.9951171875 + } + ] + }, + { + "id": 86, + "text": "best cupcakes in America.", + "start": 156.24, + "end": 157.58, + "words": [ + { + "word": " best", + "start": 156.24, + "end": 156.66000000000003, + "probability": 0.337890625 + }, + { + "word": " cupcakes", + "start": 156.66000000000003, + "end": 157.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 157.08, + "end": 157.32, + "probability": 1.0 + }, + { + "word": " America.", + "start": 157.32, + "end": 157.58, + "probability": 1.0 + } + ] + }, + { + "id": 87, + "text": "It's awesome.", + "start": 160.06, + "end": 160.76, + "words": [ + { + "word": " It's", + "start": 160.06, + "end": 160.48, + "probability": 0.658203125 + }, + { + "word": " awesome.", + "start": 160.48, + "end": 160.76, + "probability": 1.0 + } + ] + }, + { + "id": 88, + "text": "I didn't even know Ellen DeGeneres cooked.", + "start": 161.22, + "end": 162.74, + "words": [ + { + "word": " I", + "start": 161.22, + "end": 161.64, + "probability": 0.99853515625 + }, + { + "word": " didn't", + "start": 161.64, + "end": 161.82, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 161.82, + "end": 161.9, + "probability": 0.98095703125 + }, + { + "word": " know", + "start": 161.9, + "end": 161.9, + "probability": 1.0 + }, + { + "word": " Ellen", + "start": 161.9, + "end": 162.1, + "probability": 0.99853515625 + }, + { + "word": " DeGeneres", + "start": 162.1, + "end": 162.46, + "probability": 1.0 + }, + { + "word": " cooked.", + "start": 162.46, + "end": 162.74, + "probability": 0.99658203125 + } + ] + }, + { + "id": 89, + "text": "So, that's awesome.", + "start": 162.98, + "end": 163.72, + "words": [ + { + "word": " So,", + "start": 162.98, + "end": 163.24, + "probability": 0.93310546875 + }, + { + "word": " that's", + "start": 163.24, + "end": 163.48, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 163.48, + "end": 163.72, + "probability": 1.0 + } + ] + }, + { + "id": 90, + "text": "Well, you know, somebody's got to replace Oprah.", + "start": 164.06, + "end": 165.72, + "words": [ + { + "word": " Well,", + "start": 164.06, + "end": 164.48, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 164.5, + "end": 164.62, + "probability": 0.99658203125 + }, + { + "word": " know,", + "start": 164.62, + "end": 164.72, + "probability": 1.0 + }, + { + "word": " somebody's", + "start": 164.74, + "end": 165.04, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 165.04, + "end": 165.14, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 165.14, + "end": 165.2, + "probability": 1.0 + }, + { + "word": " replace", + "start": 165.2, + "end": 165.44, + "probability": 1.0 + }, + { + "word": " Oprah.", + "start": 165.44, + "end": 165.72, + "probability": 1.0 + } + ] + }, + { + "id": 91, + "text": "So, she's got books about everything now.", + "start": 165.84, + "end": 167.26, + "words": [ + { + "word": " So,", + "start": 165.84, + "end": 165.96, + "probability": 0.99609375 + }, + { + "word": " she's", + "start": 166.0, + "end": 166.12, + "probability": 1.0 + }, + { + "word": " got", + "start": 166.12, + "end": 166.26, + "probability": 1.0 + }, + { + "word": " books", + "start": 166.26, + "end": 166.5, + "probability": 1.0 + }, + { + "word": " about", + "start": 166.5, + "end": 166.68, + "probability": 1.0 + }, + { + "word": " everything", + "start": 166.68, + "end": 167.04, + "probability": 1.0 + }, + { + "word": " now.", + "start": 167.04, + "end": 167.26, + "probability": 0.55029296875 + } + ] + }, + { + "id": 92, + "text": "Wow.", + "start": 167.32, + "end": 167.74, + "words": [ + { + "word": " Wow.", + "start": 167.32, + "end": 167.74, + "probability": 0.99609375 + } + ] + }, + { + "id": 93, + "text": "Wow.", + "start": 167.84, + "end": 168.26, + "words": [ + { + "word": " Wow.", + "start": 167.84, + "end": 168.26, + "probability": 0.93017578125 + } + ] + }, + { + "id": 94, + "text": "That is funny.", + "start": 168.42, + "end": 169.6, + "words": [ + { + "word": " That", + "start": 168.42, + "end": 168.64, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 168.64, + "end": 168.8, + "probability": 1.0 + }, + { + "word": " funny.", + "start": 168.8, + "end": 169.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 95, + "text": "So, am I...", + "start": 169.78, + "end": 170.52, + "words": [ + { + "word": " So,", + "start": 169.78, + "end": 170.0, + "probability": 0.5107421875 + }, + { + "word": " am", + "start": 170.08, + "end": 170.28, + "probability": 0.90771484375 + }, + { + "word": " I...", + "start": 170.28, + "end": 170.52, + "probability": 0.67041015625 + } + ] + }, + { + "id": 96, + "text": "I'm just waiting...", + "start": 170.52, + "end": 171.36, + "words": [ + { + "word": " I'm", + "start": 170.52, + "end": 170.98, + "probability": 0.98876953125 + }, + { + "word": " just", + "start": 170.98, + "end": 171.12, + "probability": 1.0 + }, + { + "word": " waiting...", + "start": 171.12, + "end": 171.36, + "probability": 0.58154296875 + } + ] + }, + { + "id": 97, + "text": "At least I have a good sense of humor.", + "start": 171.36, + "end": 172.42, + "words": [ + { + "word": " At", + "start": 171.36, + "end": 171.48, + "probability": 0.99072265625 + }, + { + "word": " least", + "start": 171.48, + "end": 171.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 171.58, + "end": 171.66, + "probability": 0.72119140625 + }, + { + "word": " have", + "start": 171.66, + "end": 171.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 171.78, + "end": 171.86, + "probability": 1.0 + }, + { + "word": " good", + "start": 171.86, + "end": 171.96, + "probability": 1.0 + }, + { + "word": " sense", + "start": 171.96, + "end": 172.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 172.08, + "end": 172.18, + "probability": 1.0 + }, + { + "word": " humor.", + "start": 172.18, + "end": 172.42, + "probability": 1.0 + } + ] + }, + { + "id": 98, + "text": "I'm just waiting for Ellen to put on 200 pounds and give away cars.", + "start": 172.54, + "end": 175.26, + "words": [ + { + "word": " I'm", + "start": 172.54, + "end": 172.62, + "probability": 0.84814453125 + }, + { + "word": " just", + "start": 172.62, + "end": 172.84, + "probability": 0.99560546875 + }, + { + "word": " waiting", + "start": 172.84, + "end": 173.08, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 173.08, + "end": 173.34, + "probability": 1.0 + }, + { + "word": " Ellen", + "start": 173.34, + "end": 173.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 173.5, + "end": 173.66, + "probability": 1.0 + }, + { + "word": " put", + "start": 173.66, + "end": 173.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 173.78, + "end": 173.9, + "probability": 1.0 + }, + { + "word": " 200", + "start": 173.9, + "end": 174.1, + "probability": 0.9990234375 + }, + { + "word": " pounds", + "start": 174.1, + "end": 174.48, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 174.48, + "end": 174.68, + "probability": 0.99853515625 + }, + { + "word": " give", + "start": 174.68, + "end": 174.8, + "probability": 0.99853515625 + }, + { + "word": " away", + "start": 174.8, + "end": 174.94, + "probability": 1.0 + }, + { + "word": " cars.", + "start": 174.94, + "end": 175.26, + "probability": 0.9716796875 + } + ] + }, + { + "id": 99, + "text": "No.", + "start": 175.4, + "end": 175.76, + "words": [ + { + "word": " No.", + "start": 175.4, + "end": 175.76, + "probability": 0.99072265625 + } + ] + }, + { + "id": 100, + "text": "Oh, that was just very wrong.", + "start": 176.0, + "end": 177.46, + "words": [ + { + "word": " Oh,", + "start": 176.0, + "end": 176.42, + "probability": 0.91796875 + }, + { + "word": " that", + "start": 176.5, + "end": 176.68, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 176.68, + "end": 176.86, + "probability": 1.0 + }, + { + "word": " just", + "start": 176.86, + "end": 177.02, + "probability": 1.0 + }, + { + "word": " very", + "start": 177.02, + "end": 177.2, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 177.2, + "end": 177.46, + "probability": 1.0 + } + ] + }, + { + "id": 101, + "text": "It's very, very wrong.", + "start": 177.48, + "end": 178.94, + "words": [ + { + "word": " It's", + "start": 177.48, + "end": 177.86, + "probability": 0.5478515625 + }, + { + "word": " very,", + "start": 177.86, + "end": 178.12, + "probability": 0.9873046875 + }, + { + "word": " very", + "start": 178.32, + "end": 178.58, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 178.58, + "end": 178.94, + "probability": 1.0 + } + ] + }, + { + "id": 102, + "text": "And I apologize.", + "start": 178.98, + "end": 179.7, + "words": [ + { + "word": " And", + "start": 178.98, + "end": 179.22, + "probability": 0.978515625 + }, + { + "word": " I", + "start": 179.22, + "end": 179.28, + "probability": 0.9990234375 + }, + { + "word": " apologize.", + "start": 179.28, + "end": 179.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 103, + "text": "That's funny, man.", + "start": 181.28, + "end": 182.32, + "words": [ + { + "word": " That's", + "start": 181.28, + "end": 181.68, + "probability": 0.9736328125 + }, + { + "word": " funny,", + "start": 181.68, + "end": 182.0, + "probability": 0.99951171875 + }, + { + "word": " man.", + "start": 182.12, + "end": 182.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 104, + "text": "It's just terrible.", + "start": 182.38, + "end": 183.08, + "words": [ + { + "word": " It's", + "start": 182.38, + "end": 182.58, + "probability": 0.65966796875 + }, + { + "word": " just", + "start": 182.58, + "end": 182.72, + "probability": 0.98388671875 + }, + { + "word": " terrible.", + "start": 182.72, + "end": 183.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 105, + "text": "Let's talk to Frank.", + "start": 183.26, + "end": 183.72, + "words": [ + { + "word": " Let's", + "start": 183.26, + "end": 183.4, + "probability": 0.94873046875 + }, + { + "word": " talk", + "start": 183.4, + "end": 183.46, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 183.46, + "end": 183.52, + "probability": 1.0 + }, + { + "word": " Frank.", + "start": 183.52, + "end": 183.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 106, + "text": "Hey, Frank.", + "start": 183.78, + "end": 184.16, + "words": [ + { + "word": " Hey,", + "start": 183.78, + "end": 183.98, + "probability": 0.9853515625 + }, + { + "word": " Frank.", + "start": 184.02, + "end": 184.16, + "probability": 1.0 + } + ] + }, + { + "id": 107, + "text": "How you doing?", + "start": 184.2, + "end": 184.54, + "words": [ + { + "word": " How", + "start": 184.2, + "end": 184.34, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 184.34, + "end": 184.38, + "probability": 0.52685546875 + }, + { + "word": " doing?", + "start": 184.38, + "end": 184.54, + "probability": 1.0 + } + ] + }, + { + "id": 108, + "text": "Hi.", + "start": 185.82, + "end": 186.22, + "words": [ + { + "word": " Hi.", + "start": 185.82, + "end": 186.22, + "probability": 0.994140625 + } + ] + }, + { + "id": 109, + "text": "Hi.", + "start": 186.36, + "end": 186.66, + "words": [ + { + "word": " Hi.", + "start": 186.36, + "end": 186.66, + "probability": 0.982421875 + } + ] + }, + { + "id": 110, + "text": "How can I help you?", + "start": 187.16, + "end": 187.9, + "words": [ + { + "word": " How", + "start": 187.16, + "end": 187.56, + "probability": 0.9853515625 + }, + { + "word": " can", + "start": 187.56, + "end": 187.64, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 187.64, + "end": 187.7, + "probability": 1.0 + }, + { + "word": " help", + "start": 187.7, + "end": 187.86, + "probability": 1.0 + }, + { + "word": " you?", + "start": 187.86, + "end": 187.9, + "probability": 1.0 + } + ] + }, + { + "id": 111, + "text": "Well, I have a virus on my computer.", + "start": 189.79999999999998, + "end": 192.62, + "words": [ + { + "word": " Well,", + "start": 189.79999999999998, + "end": 190.2, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 190.2, + "end": 190.6, + "probability": 0.9736328125 + }, + { + "word": " have", + "start": 190.6, + "end": 191.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 191.24, + "end": 191.36, + "probability": 1.0 + }, + { + "word": " virus", + "start": 191.36, + "end": 191.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 191.74, + "end": 191.96, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 191.96, + "end": 192.12, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 192.12, + "end": 192.62, + "probability": 1.0 + } + ] + }, + { + "id": 112, + "text": "Okay.", + "start": 193.28, + "end": 193.68, + "words": [ + { + "word": " Okay.", + "start": 193.28, + "end": 193.68, + "probability": 0.96044921875 + } + ] + }, + { + "id": 113, + "text": "Essentially, I restarted my computer in safe mode.", + "start": 197.06, + "end": 201.56, + "words": [ + { + "word": " Essentially,", + "start": 197.06, + "end": 197.46, + "probability": 0.6689453125 + }, + { + "word": " I", + "start": 197.82, + "end": 198.04, + "probability": 0.9990234375 + }, + { + "word": " restarted", + "start": 198.04, + "end": 200.32, + "probability": 0.99609375 + }, + { + "word": " my", + "start": 200.32, + "end": 200.4, + "probability": 1.0 + }, + { + "word": " computer", + "start": 200.4, + "end": 200.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 200.84, + "end": 201.0, + "probability": 0.99755859375 + }, + { + "word": " safe", + "start": 201.0, + "end": 201.26, + "probability": 0.998046875 + }, + { + "word": " mode.", + "start": 201.26, + "end": 201.56, + "probability": 1.0 + } + ] + }, + { + "id": 114, + "text": "And I ran all of my Spybot Search and Destroy malware bytes.", + "start": 201.82, + "end": 207.88, + "words": [ + { + "word": " And", + "start": 201.82, + "end": 202.22, + "probability": 0.82861328125 + }, + { + "word": " I", + "start": 202.22, + "end": 202.62, + "probability": 0.99658203125 + }, + { + "word": " ran", + "start": 202.62, + "end": 203.78, + "probability": 1.0 + }, + { + "word": " all", + "start": 203.78, + "end": 204.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 204.0, + "end": 204.18, + "probability": 1.0 + }, + { + "word": " my", + "start": 204.18, + "end": 204.44, + "probability": 1.0 + }, + { + "word": " Spybot", + "start": 204.44, + "end": 205.32, + "probability": 0.5947265625 + }, + { + "word": " Search", + "start": 205.32, + "end": 205.62, + "probability": 0.33056640625 + }, + { + "word": " and", + "start": 205.62, + "end": 205.76, + "probability": 0.99609375 + }, + { + "word": " Destroy", + "start": 205.76, + "end": 206.08, + "probability": 0.99951171875 + }, + { + "word": " malware", + "start": 206.08, + "end": 207.32, + "probability": 0.394287109375 + }, + { + "word": " bytes.", + "start": 207.32, + "end": 207.88, + "probability": 0.83251953125 + } + ] + }, + { + "id": 115, + "text": "And I had a lot of viruses and Trojans and other malware.", + "start": 211.4, + "end": 219.46, + "words": [ + { + "word": " And", + "start": 211.4, + "end": 211.9, + "probability": 0.00774383544921875 + }, + { + "word": " I", + "start": 211.9, + "end": 212.4, + "probability": 0.023773193359375 + }, + { + "word": " had", + "start": 212.4, + "end": 215.1, + "probability": 0.463623046875 + }, + { + "word": " a", + "start": 215.1, + "end": 215.1, + "probability": 0.437744140625 + }, + { + "word": " lot", + "start": 215.1, + "end": 215.1, + "probability": 0.0168304443359375 + }, + { + "word": " of", + "start": 215.1, + "end": 215.94, + "probability": 0.9873046875 + }, + { + "word": " viruses", + "start": 215.94, + "end": 216.7, + "probability": 0.3525390625 + }, + { + "word": " and", + "start": 216.7, + "end": 217.74, + "probability": 0.64599609375 + }, + { + "word": " Trojans", + "start": 217.74, + "end": 218.28, + "probability": 0.74658203125 + }, + { + "word": " and", + "start": 218.28, + "end": 218.52, + "probability": 0.96435546875 + }, + { + "word": " other", + "start": 218.52, + "end": 218.96, + "probability": 0.99072265625 + }, + { + "word": " malware.", + "start": 218.96, + "end": 219.46, + "probability": 0.98828125 + } + ] + }, + { + "id": 116, + "text": "But when I restarted my computer...", + "start": 219.66, + "end": 223.28, + "words": [ + { + "word": " But", + "start": 219.66, + "end": 219.82, + "probability": 0.98046875 + }, + { + "word": " when", + "start": 219.82, + "end": 220.62, + "probability": 0.984375 + }, + { + "word": " I", + "start": 220.62, + "end": 220.86, + "probability": 0.99951171875 + }, + { + "word": " restarted", + "start": 220.86, + "end": 222.04, + "probability": 0.99658203125 + }, + { + "word": " my", + "start": 222.04, + "end": 222.1, + "probability": 0.99951171875 + }, + { + "word": " computer...", + "start": 222.1, + "end": 223.28, + "probability": 0.60888671875 + } + ] + }, + { + "id": 117, + "text": "It all came back.", + "start": 223.28, + "end": 224.2, + "words": [ + { + "word": " It", + "start": 223.28, + "end": 223.64, + "probability": 0.99072265625 + }, + { + "word": " all", + "start": 223.64, + "end": 223.74, + "probability": 0.99853515625 + }, + { + "word": " came", + "start": 223.74, + "end": 223.92, + "probability": 1.0 + }, + { + "word": " back.", + "start": 223.92, + "end": 224.2, + "probability": 1.0 + } + ] + }, + { + "id": 118, + "text": "It still was kind of not functioning correctly.", + "start": 225.56, + "end": 229.08, + "words": [ + { + "word": " It", + "start": 225.56, + "end": 226.06, + "probability": 0.896484375 + }, + { + "word": " still", + "start": 226.06, + "end": 226.32, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 226.32, + "end": 226.76, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 226.76, + "end": 227.32, + "probability": 0.9912109375 + }, + { + "word": " of", + "start": 227.32, + "end": 227.46, + "probability": 1.0 + }, + { + "word": " not", + "start": 227.46, + "end": 227.7, + "probability": 1.0 + }, + { + "word": " functioning", + "start": 227.7, + "end": 228.6, + "probability": 0.99951171875 + }, + { + "word": " correctly.", + "start": 228.6, + "end": 229.08, + "probability": 1.0 + } + ] + }, + { + "id": 119, + "text": "One of the things that it did was it made all of my files hidden.", + "start": 231.22, + "end": 234.78, + "words": [ + { + "word": " One", + "start": 231.22, + "end": 231.72, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 231.72, + "end": 231.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 231.96, + "end": 232.04, + "probability": 1.0 + }, + { + "word": " things", + "start": 232.04, + "end": 232.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 232.32, + "end": 232.5, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 232.5, + "end": 232.62, + "probability": 1.0 + }, + { + "word": " did", + "start": 232.62, + "end": 232.84, + "probability": 1.0 + }, + { + "word": " was", + "start": 232.84, + "end": 233.04, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 233.04, + "end": 233.24, + "probability": 0.9990234375 + }, + { + "word": " made", + "start": 233.24, + "end": 233.44, + "probability": 0.9921875 + }, + { + "word": " all", + "start": 233.44, + "end": 233.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 233.68, + "end": 233.92, + "probability": 1.0 + }, + { + "word": " my", + "start": 233.92, + "end": 234.08, + "probability": 1.0 + }, + { + "word": " files", + "start": 234.08, + "end": 234.48, + "probability": 1.0 + }, + { + "word": " hidden.", + "start": 234.48, + "end": 234.78, + "probability": 1.0 + } + ] + }, + { + "id": 120, + "text": "So, I had to go into a folder and unhide them.", + "start": 236.32, + "end": 239.56, + "words": [ + { + "word": " So,", + "start": 236.32, + "end": 236.82, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 236.92, + "end": 237.0, + "probability": 1.0 + }, + { + "word": " had", + "start": 237.0, + "end": 237.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 237.2, + "end": 237.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 237.36, + "end": 237.52, + "probability": 1.0 + }, + { + "word": " into", + "start": 237.52, + "end": 237.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 237.74, + "end": 237.92, + "probability": 0.79296875 + }, + { + "word": " folder", + "start": 237.92, + "end": 238.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 238.24, + "end": 238.54, + "probability": 0.99951171875 + }, + { + "word": " unhide", + "start": 238.54, + "end": 239.34, + "probability": 0.998046875 + }, + { + "word": " them.", + "start": 239.34, + "end": 239.56, + "probability": 1.0 + } + ] + }, + { + "id": 121, + "text": "And I had to go to the master folder to see them.", + "start": 240.52, + "end": 241.12, + "words": [ + { + "word": " And", + "start": 240.52, + "end": 240.86, + "probability": 0.0011987686157226562 + }, + { + "word": " I", + "start": 240.86, + "end": 240.86, + "probability": 0.10247802734375 + }, + { + "word": " had", + "start": 240.86, + "end": 240.86, + "probability": 0.01149749755859375 + }, + { + "word": " to", + "start": 240.86, + "end": 240.86, + "probability": 0.52099609375 + }, + { + "word": " go", + "start": 240.86, + "end": 240.86, + "probability": 0.6962890625 + }, + { + "word": " to", + "start": 240.86, + "end": 240.86, + "probability": 0.23291015625 + }, + { + "word": " the", + "start": 240.86, + "end": 240.86, + "probability": 0.72607421875 + }, + { + "word": " master", + "start": 240.86, + "end": 240.86, + "probability": 0.52490234375 + }, + { + "word": " folder", + "start": 240.86, + "end": 240.86, + "probability": 0.966796875 + }, + { + "word": " to", + "start": 240.86, + "end": 240.86, + "probability": 0.0287628173828125 + }, + { + "word": " see", + "start": 240.86, + "end": 240.86, + "probability": 0.6298828125 + }, + { + "word": " them.", + "start": 240.86, + "end": 241.12, + "probability": 0.8037109375 + } + ] + }, + { + "id": 122, + "text": "But they're still kind of that...", + "start": 241.18, + "end": 243.36, + "words": [ + { + "word": " But", + "start": 241.18, + "end": 241.22, + "probability": 0.8154296875 + }, + { + "word": " they're", + "start": 241.22, + "end": 241.4, + "probability": 0.923828125 + }, + { + "word": " still", + "start": 241.4, + "end": 241.74, + "probability": 0.9970703125 + }, + { + "word": " kind", + "start": 241.74, + "end": 242.82, + "probability": 0.97705078125 + }, + { + "word": " of", + "start": 242.82, + "end": 242.98, + "probability": 0.99951171875 + }, + { + "word": " that...", + "start": 242.98, + "end": 243.36, + "probability": 0.6396484375 + } + ] + }, + { + "id": 123, + "text": "Grayed out?", + "start": 243.74, + "end": 244.2, + "words": [ + { + "word": " Grayed", + "start": 243.74, + "end": 244.08, + "probability": 0.6845703125 + }, + { + "word": " out?", + "start": 244.08, + "end": 244.2, + "probability": 0.99755859375 + } + ] + }, + { + "id": 124, + "text": "Yeah, yeah.", + "start": 244.86, + "end": 245.34, + "words": [ + { + "word": " Yeah,", + "start": 244.86, + "end": 245.2, + "probability": 0.9912109375 + }, + { + "word": " yeah.", + "start": 245.2, + "end": 245.34, + "probability": 0.9365234375 + } + ] + }, + { + "id": 125, + "text": "Faded out.", + "start": 245.4, + "end": 246.04, + "words": [ + { + "word": " Faded", + "start": 245.4, + "end": 245.74, + "probability": 0.99755859375 + }, + { + "word": " out.", + "start": 245.74, + "end": 246.04, + "probability": 1.0 + } + ] + }, + { + "id": 126, + "text": "Right.", + "start": 246.24, + "end": 246.4, + "words": [ + { + "word": " Right.", + "start": 246.24, + "end": 246.4, + "probability": 0.978515625 + } + ] + }, + { + "id": 127, + "text": "That's because you had to go into the master folder that those folders are in and right-click", + "start": 246.9, + "end": 250.86, + "words": [ + { + "word": " That's", + "start": 246.9, + "end": 247.24, + "probability": 0.998046875 + }, + { + "word": " because", + "start": 247.24, + "end": 247.38, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 247.38, + "end": 247.54, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 247.54, + "end": 247.62, + "probability": 0.337890625 + }, + { + "word": " to", + "start": 247.62, + "end": 247.7, + "probability": 1.0 + }, + { + "word": " go", + "start": 247.7, + "end": 247.82, + "probability": 1.0 + }, + { + "word": " into", + "start": 247.82, + "end": 247.98, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 247.98, + "end": 248.2, + "probability": 0.99951171875 + }, + { + "word": " master", + "start": 248.2, + "end": 248.5, + "probability": 0.998046875 + }, + { + "word": " folder", + "start": 248.5, + "end": 248.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 248.78, + "end": 248.94, + "probability": 0.8857421875 + }, + { + "word": " those", + "start": 248.94, + "end": 249.08, + "probability": 0.99951171875 + }, + { + "word": " folders", + "start": 249.08, + "end": 249.32, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 249.32, + "end": 249.46, + "probability": 0.953125 + }, + { + "word": " in", + "start": 249.46, + "end": 249.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 249.68, + "end": 250.04, + "probability": 0.828125 + }, + { + "word": " right", + "start": 250.04, + "end": 250.58, + "probability": 0.9970703125 + }, + { + "word": "-click", + "start": 250.58, + "end": 250.86, + "probability": 0.919921875 + } + ] + }, + { + "id": 128, + "text": "and go to the properties and say, uncheck the box that says hidden.", + "start": 250.86, + "end": 254.3, + "words": [ + { + "word": " and", + "start": 250.86, + "end": 250.98, + "probability": 0.96337890625 + }, + { + "word": " go", + "start": 250.98, + "end": 251.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 251.08, + "end": 251.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 251.18, + "end": 251.2, + "probability": 0.8671875 + }, + { + "word": " properties", + "start": 251.2, + "end": 251.5, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 251.5, + "end": 251.68, + "probability": 0.9990234375 + }, + { + "word": " say,", + "start": 251.68, + "end": 251.86, + "probability": 0.80078125 + }, + { + "word": " uncheck", + "start": 252.02, + "end": 253.04, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 253.04, + "end": 253.62, + "probability": 0.9970703125 + }, + { + "word": " box", + "start": 253.62, + "end": 253.8, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 253.8, + "end": 253.9, + "probability": 1.0 + }, + { + "word": " says", + "start": 253.9, + "end": 254.02, + "probability": 1.0 + }, + { + "word": " hidden.", + "start": 254.02, + "end": 254.3, + "probability": 0.95556640625 + } + ] + }, + { + "id": 129, + "text": "Yeah, I did that.", + "start": 255.34, + "end": 256.22, + "words": [ + { + "word": " Yeah,", + "start": 255.34, + "end": 255.68, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 255.72, + "end": 255.86, + "probability": 1.0 + }, + { + "word": " did", + "start": 255.86, + "end": 256.04, + "probability": 1.0 + }, + { + "word": " that.", + "start": 256.04, + "end": 256.22, + "probability": 1.0 + } + ] + }, + { + "id": 130, + "text": "Okay.", + "start": 256.46, + "end": 256.68, + "words": [ + { + "word": " Okay.", + "start": 256.46, + "end": 256.68, + "probability": 0.97705078125 + } + ] + }, + { + "id": 131, + "text": "And then they will pop back up.", + "start": 256.7, + "end": 257.74, + "words": [ + { + "word": " And", + "start": 256.7, + "end": 256.8, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 256.8, + "end": 256.9, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 256.9, + "end": 257.0, + "probability": 0.9912109375 + }, + { + "word": " will", + "start": 257.0, + "end": 257.08, + "probability": 0.88525390625 + }, + { + "word": " pop", + "start": 257.08, + "end": 257.26, + "probability": 1.0 + }, + { + "word": " back", + "start": 257.26, + "end": 257.48, + "probability": 1.0 + }, + { + "word": " up.", + "start": 257.48, + "end": 257.74, + "probability": 1.0 + } + ] + }, + { + "id": 132, + "text": "And they won't be grayed out anymore.", + "start": 257.84, + "end": 258.98, + "words": [ + { + "word": " And", + "start": 257.84, + "end": 257.98, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 257.98, + "end": 258.12, + "probability": 0.8427734375 + }, + { + "word": " won't", + "start": 258.12, + "end": 258.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 258.3, + "end": 258.4, + "probability": 1.0 + }, + { + "word": " grayed", + "start": 258.4, + "end": 258.66, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 258.66, + "end": 258.76, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 258.76, + "end": 258.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 133, + "text": "But the bigger issue that you have is you restarted and your virus is still technically there.", + "start": 259.12, + "end": 263.68, + "words": [ + { + "word": " But", + "start": 259.12, + "end": 259.3, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 259.3, + "end": 259.88, + "probability": 0.98876953125 + }, + { + "word": " bigger", + "start": 259.88, + "end": 260.1, + "probability": 0.99951171875 + }, + { + "word": " issue", + "start": 260.1, + "end": 260.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 260.3, + "end": 260.42, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 260.42, + "end": 260.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 260.54, + "end": 260.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 260.72, + "end": 260.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 260.84, + "end": 260.96, + "probability": 0.483154296875 + }, + { + "word": " restarted", + "start": 260.96, + "end": 261.68, + "probability": 0.98046875 + }, + { + "word": " and", + "start": 261.68, + "end": 261.78, + "probability": 0.99267578125 + }, + { + "word": " your", + "start": 261.78, + "end": 261.94, + "probability": 0.99951171875 + }, + { + "word": " virus", + "start": 261.94, + "end": 262.58, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 262.58, + "end": 262.74, + "probability": 0.56982421875 + }, + { + "word": " still", + "start": 262.74, + "end": 262.98, + "probability": 1.0 + }, + { + "word": " technically", + "start": 262.98, + "end": 263.28, + "probability": 1.0 + }, + { + "word": " there.", + "start": 263.28, + "end": 263.68, + "probability": 1.0 + } + ] + }, + { + "id": 134, + "text": "And you had some residual stuff in there.", + "start": 263.76, + "end": 265.42, + "words": [ + { + "word": " And", + "start": 263.76, + "end": 263.9, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 263.9, + "end": 264.0, + "probability": 1.0 + }, + { + "word": " had", + "start": 264.0, + "end": 264.06, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 264.06, + "end": 264.2, + "probability": 1.0 + }, + { + "word": " residual", + "start": 264.2, + "end": 264.64, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 264.64, + "end": 265.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 265.06, + "end": 265.26, + "probability": 1.0 + }, + { + "word": " there.", + "start": 265.26, + "end": 265.42, + "probability": 1.0 + } + ] + }, + { + "id": 135, + "text": "You probably didn't turn off system restore, first of all.", + "start": 265.66, + "end": 267.92, + "words": [ + { + "word": " You", + "start": 265.66, + "end": 266.0, + "probability": 0.998046875 + }, + { + "word": " probably", + "start": 266.0, + "end": 266.24, + "probability": 0.99365234375 + }, + { + "word": " didn't", + "start": 266.24, + "end": 266.46, + "probability": 0.99853515625 + }, + { + "word": " turn", + "start": 266.46, + "end": 266.56, + "probability": 0.9931640625 + }, + { + "word": " off", + "start": 266.56, + "end": 266.7, + "probability": 0.9765625 + }, + { + "word": " system", + "start": 266.7, + "end": 266.94, + "probability": 0.96484375 + }, + { + "word": " restore,", + "start": 266.94, + "end": 267.3, + "probability": 0.99560546875 + }, + { + "word": " first", + "start": 267.4, + "end": 267.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 267.62, + "end": 267.76, + "probability": 1.0 + }, + { + "word": " all.", + "start": 267.76, + "end": 267.92, + "probability": 1.0 + } + ] + }, + { + "id": 136, + "text": "Any time you do a virus, it's still there.", + "start": 268.94000000000005, + "end": 269.98, + "words": [ + { + "word": " Any", + "start": 268.94000000000005, + "end": 269.28000000000003, + "probability": 0.1767578125 + }, + { + "word": " time", + "start": 269.28000000000003, + "end": 269.62, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 269.62, + "end": 269.72, + "probability": 1.0 + }, + { + "word": " do", + "start": 269.72, + "end": 269.82, + "probability": 0.97900390625 + }, + { + "word": " a", + "start": 269.82, + "end": 269.88, + "probability": 0.155029296875 + }, + { + "word": " virus,", + "start": 269.88, + "end": 269.98, + "probability": 0.0237884521484375 + }, + { + "word": " it's", + "start": 269.98, + "end": 269.98, + "probability": 0.5048828125 + }, + { + "word": " still", + "start": 269.98, + "end": 269.98, + "probability": 0.83154296875 + }, + { + "word": " there.", + "start": 269.98, + "end": 269.98, + "probability": 0.56787109375 + } + ] + }, + { + "id": 137, + "text": "", + "start": 269.98, + "end": 269.98, + "words": [] + }, + { + "id": 138, + "text": "So, if you want to do a virus removal, you always want to make sure you turn off system", + "start": 269.98, + "end": 271.92, + "words": [ + { + "word": " So,", + "start": 269.98, + "end": 270.06, + "probability": 0.006168365478515625 + }, + { + "word": " if", + "start": 270.06, + "end": 270.06, + "probability": 0.06427001953125 + }, + { + "word": " you", + "start": 270.06, + "end": 270.06, + "probability": 0.9345703125 + }, + { + "word": " want", + "start": 270.06, + "end": 270.06, + "probability": 0.309326171875 + }, + { + "word": " to", + "start": 270.06, + "end": 270.06, + "probability": 0.92333984375 + }, + { + "word": " do", + "start": 270.06, + "end": 270.06, + "probability": 0.146484375 + }, + { + "word": " a", + "start": 270.06, + "end": 270.06, + "probability": 0.134033203125 + }, + { + "word": " virus", + "start": 270.06, + "end": 270.06, + "probability": 0.80810546875 + }, + { + "word": " removal,", + "start": 270.06, + "end": 270.32, + "probability": 0.97314453125 + }, + { + "word": " you", + "start": 270.42, + "end": 270.68, + "probability": 0.92919921875 + }, + { + "word": " always", + "start": 270.68, + "end": 270.68, + "probability": 0.8486328125 + }, + { + "word": " want", + "start": 270.68, + "end": 270.82, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 270.82, + "end": 270.94, + "probability": 1.0 + }, + { + "word": " make", + "start": 270.94, + "end": 271.0, + "probability": 0.9931640625 + }, + { + "word": " sure", + "start": 271.0, + "end": 271.1, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 271.1, + "end": 271.16, + "probability": 0.99072265625 + }, + { + "word": " turn", + "start": 271.16, + "end": 271.26, + "probability": 0.9833984375 + }, + { + "word": " off", + "start": 271.26, + "end": 271.66, + "probability": 0.9912109375 + }, + { + "word": " system", + "start": 271.66, + "end": 271.92, + "probability": 0.8876953125 + } + ] + }, + { + "id": 139, + "text": "restore.", + "start": 271.92, + "end": 272.16, + "words": [ + { + "word": " restore.", + "start": 271.92, + "end": 272.16, + "probability": 0.9921875 + } + ] + }, + { + "id": 140, + "text": "Otherwise, Windows is going to try to put it right back.", + "start": 272.34, + "end": 274.22, + "words": [ + { + "word": " Otherwise,", + "start": 272.34, + "end": 272.54, + "probability": 0.9970703125 + }, + { + "word": " Windows", + "start": 272.7, + "end": 272.96, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 272.96, + "end": 273.22, + "probability": 1.0 + }, + { + "word": " going", + "start": 273.22, + "end": 273.3, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 273.3, + "end": 273.38, + "probability": 1.0 + }, + { + "word": " try", + "start": 273.38, + "end": 273.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 273.52, + "end": 273.56, + "probability": 0.99658203125 + }, + { + "word": " put", + "start": 273.56, + "end": 273.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 273.72, + "end": 273.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 273.84, + "end": 273.98, + "probability": 0.99951171875 + }, + { + "word": " back.", + "start": 273.98, + "end": 274.22, + "probability": 1.0 + } + ] + }, + { + "id": 141, + "text": "All right.", + "start": 275.24, + "end": 275.76, + "words": [ + { + "word": " All", + "start": 275.24, + "end": 275.6, + "probability": 0.91357421875 + }, + { + "word": " right.", + "start": 275.6, + "end": 275.76, + "probability": 1.0 + } + ] + }, + { + "id": 142, + "text": "So, turn off system restore?", + "start": 275.78, + "end": 277.2, + "words": [ + { + "word": " So,", + "start": 275.78, + "end": 275.96, + "probability": 0.99951171875 + }, + { + "word": " turn", + "start": 275.98, + "end": 276.2, + "probability": 1.0 + }, + { + "word": " off", + "start": 276.2, + "end": 276.44, + "probability": 1.0 + }, + { + "word": " system", + "start": 276.44, + "end": 276.76, + "probability": 1.0 + }, + { + "word": " restore?", + "start": 276.76, + "end": 277.2, + "probability": 1.0 + } + ] + }, + { + "id": 143, + "text": "Yeah.", + "start": 277.48, + "end": 277.7, + "words": [ + { + "word": " Yeah.", + "start": 277.48, + "end": 277.7, + "probability": 0.97900390625 + } + ] + }, + { + "id": 144, + "text": "You should disable system restore.", + "start": 277.7, + "end": 278.84, + "words": [ + { + "word": " You", + "start": 277.7, + "end": 277.84, + "probability": 0.99658203125 + }, + { + "word": " should", + "start": 277.84, + "end": 277.92, + "probability": 1.0 + }, + { + "word": " disable", + "start": 277.92, + "end": 278.24, + "probability": 0.99951171875 + }, + { + "word": " system", + "start": 278.24, + "end": 278.58, + "probability": 1.0 + }, + { + "word": " restore.", + "start": 278.58, + "end": 278.84, + "probability": 1.0 + } + ] + }, + { + "id": 145, + "text": "Not only is it worthless, it can also reinfect your machine after cleanup.", + "start": 278.92, + "end": 283.06, + "words": [ + { + "word": " Not", + "start": 278.92, + "end": 279.1, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 279.1, + "end": 279.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 279.34, + "end": 279.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 279.52, + "end": 279.6, + "probability": 1.0 + }, + { + "word": " worthless,", + "start": 279.6, + "end": 279.86, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 280.12, + "end": 280.5, + "probability": 0.99609375 + }, + { + "word": " can", + "start": 280.5, + "end": 280.86, + "probability": 1.0 + }, + { + "word": " also", + "start": 280.86, + "end": 281.22, + "probability": 1.0 + }, + { + "word": " reinfect", + "start": 281.22, + "end": 281.98, + "probability": 0.98828125 + }, + { + "word": " your", + "start": 281.98, + "end": 282.16, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 282.16, + "end": 282.42, + "probability": 1.0 + }, + { + "word": " after", + "start": 282.42, + "end": 282.72, + "probability": 0.99951171875 + }, + { + "word": " cleanup.", + "start": 282.72, + "end": 283.06, + "probability": 0.9443359375 + } + ] + }, + { + "id": 146, + "text": "Right.", + "start": 283.22, + "end": 283.44, + "words": [ + { + "word": " Right.", + "start": 283.22, + "end": 283.44, + "probability": 0.966796875 + } + ] + }, + { + "id": 147, + "text": "So, you want to make sure you turn that off.", + "start": 283.54, + "end": 284.88, + "words": [ + { + "word": " So,", + "start": 283.54, + "end": 283.82, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 283.86, + "end": 283.92, + "probability": 1.0 + }, + { + "word": " want", + "start": 283.92, + "end": 283.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 283.96, + "end": 284.04, + "probability": 1.0 + }, + { + "word": " make", + "start": 284.04, + "end": 284.12, + "probability": 1.0 + }, + { + "word": " sure", + "start": 284.12, + "end": 284.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 284.22, + "end": 284.34, + "probability": 1.0 + }, + { + "word": " turn", + "start": 284.34, + "end": 284.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 284.5, + "end": 284.66, + "probability": 1.0 + }, + { + "word": " off.", + "start": 284.66, + "end": 284.88, + "probability": 1.0 + } + ] + }, + { + "id": 148, + "text": "Now, what antivirus are you using?", + "start": 285.18, + "end": 286.88, + "words": [ + { + "word": " Now,", + "start": 285.18, + "end": 285.54, + "probability": 0.99853515625 + }, + { + "word": " what", + "start": 285.66, + "end": 285.94, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 285.94, + "end": 286.4, + "probability": 0.99755859375 + }, + { + "word": " are", + "start": 286.4, + "end": 286.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 286.52, + "end": 286.62, + "probability": 1.0 + }, + { + "word": " using?", + "start": 286.62, + "end": 286.88, + "probability": 1.0 + } + ] + }, + { + "id": 149, + "text": "Because I thought I heard you list two of them.", + "start": 286.94, + "end": 288.22, + "words": [ + { + "word": " Because", + "start": 286.94, + "end": 287.06, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 287.06, + "end": 287.14, + "probability": 0.99853515625 + }, + { + "word": " thought", + "start": 287.14, + "end": 287.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 287.3, + "end": 287.38, + "probability": 1.0 + }, + { + "word": " heard", + "start": 287.38, + "end": 287.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 287.5, + "end": 287.62, + "probability": 1.0 + }, + { + "word": " list", + "start": 287.62, + "end": 287.74, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 287.74, + "end": 287.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 287.96, + "end": 288.08, + "probability": 1.0 + }, + { + "word": " them.", + "start": 288.08, + "end": 288.22, + "probability": 1.0 + } + ] + }, + { + "id": 150, + "text": "I'm using Spybot Search and Destroy, Malwarebytes, Vypr, and Advir.", + "start": 290.78, + "end": 299.32, + "words": [ + { + "word": " I'm", + "start": 290.78, + "end": 291.14, + "probability": 0.99365234375 + }, + { + "word": " using", + "start": 291.14, + "end": 291.5, + "probability": 1.0 + }, + { + "word": " Spybot", + "start": 291.5, + "end": 294.72, + "probability": 0.75634765625 + }, + { + "word": " Search", + "start": 294.72, + "end": 295.0, + "probability": 0.61767578125 + }, + { + "word": " and", + "start": 295.0, + "end": 295.18, + "probability": 0.99365234375 + }, + { + "word": " Destroy,", + "start": 295.18, + "end": 295.46, + "probability": 0.99951171875 + }, + { + "word": " Malwarebytes,", + "start": 295.9, + "end": 297.2, + "probability": 0.98291015625 + }, + { + "word": " Vypr,", + "start": 297.3, + "end": 297.96, + "probability": 0.59423828125 + }, + { + "word": " and", + "start": 298.26, + "end": 298.68, + "probability": 1.0 + }, + { + "word": " Advir.", + "start": 298.68, + "end": 299.32, + "probability": 0.517578125 + } + ] + }, + { + "id": 151, + "text": "Wow.", + "start": 300.02000000000004, + "end": 300.36, + "words": [ + { + "word": " Wow.", + "start": 300.02000000000004, + "end": 300.36, + "probability": 0.005092620849609375 + } + ] + }, + { + "id": 152, + "text": "Okay.", + "start": 302.32000000000005, + "end": 302.66, + "words": [ + { + "word": " Okay.", + "start": 302.32000000000005, + "end": 302.66, + "probability": 0.9375 + } + ] + }, + { + "id": 153, + "text": "So, all right.", + "start": 302.82, + "end": 304.88, + "words": [ + { + "word": " So,", + "start": 302.82, + "end": 303.16, + "probability": 0.85888671875 + }, + { + "word": " all", + "start": 303.16, + "end": 304.68, + "probability": 0.91845703125 + }, + { + "word": " right.", + "start": 304.68, + "end": 304.88, + "probability": 1.0 + } + ] + }, + { + "id": 154, + "text": "Have you heard me give the explanation of why you can't have two antiviruses on a machine?", + "start": 304.9, + "end": 310.12, + "words": [ + { + "word": " Have", + "start": 304.9, + "end": 305.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 305.04, + "end": 305.16, + "probability": 1.0 + }, + { + "word": " heard", + "start": 305.16, + "end": 305.36, + "probability": 1.0 + }, + { + "word": " me", + "start": 305.36, + "end": 305.52, + "probability": 1.0 + }, + { + "word": " give", + "start": 305.52, + "end": 305.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 305.96, + "end": 306.26, + "probability": 1.0 + }, + { + "word": " explanation", + "start": 306.26, + "end": 307.98, + "probability": 0.9873046875 + }, + { + "word": " of", + "start": 307.98, + "end": 308.42, + "probability": 1.0 + }, + { + "word": " why", + "start": 308.42, + "end": 308.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 308.5, + "end": 308.68, + "probability": 1.0 + }, + { + "word": " can't", + "start": 308.68, + "end": 308.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 308.88, + "end": 308.98, + "probability": 1.0 + }, + { + "word": " two", + "start": 308.98, + "end": 309.12, + "probability": 0.99951171875 + }, + { + "word": " antiviruses", + "start": 309.12, + "end": 309.66, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 309.66, + "end": 309.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 309.84, + "end": 309.92, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 309.92, + "end": 310.12, + "probability": 1.0 + } + ] + }, + { + "id": 155, + "text": "No, I don't think I have.", + "start": 311.46000000000004, + "end": 312.7, + "words": [ + { + "word": " No,", + "start": 311.46000000000004, + "end": 311.8, + "probability": 0.775390625 + }, + { + "word": " I", + "start": 311.9, + "end": 311.96, + "probability": 1.0 + }, + { + "word": " don't", + "start": 311.96, + "end": 312.16, + "probability": 1.0 + }, + { + "word": " think", + "start": 312.16, + "end": 312.32, + "probability": 1.0 + }, + { + "word": " I", + "start": 312.32, + "end": 312.48, + "probability": 1.0 + }, + { + "word": " have.", + "start": 312.48, + "end": 312.7, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "All right.", + "start": 312.8, + "end": 313.0, + "words": [ + { + "word": " All", + "start": 312.8, + "end": 312.92, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 312.92, + "end": 313.0, + "probability": 1.0 + } + ] + }, + { + "id": 157, + "text": "So, here's the way it works.", + "start": 313.02, + "end": 314.06, + "words": [ + { + "word": " So,", + "start": 313.02, + "end": 313.18, + "probability": 0.99951171875 + }, + { + "word": " here's", + "start": 313.22, + "end": 313.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 313.44, + "end": 313.44, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 313.44, + "end": 313.78, + "probability": 1.0 + }, + { + "word": " it", + "start": 313.78, + "end": 313.88, + "probability": 1.0 + }, + { + "word": " works.", + "start": 313.88, + "end": 314.06, + "probability": 1.0 + } + ] + }, + { + "id": 158, + "text": "All right.", + "start": 314.16, + "end": 314.38, + "words": [ + { + "word": " All", + "start": 314.16, + "end": 314.32, + "probability": 0.77978515625 + }, + { + "word": " right.", + "start": 314.32, + "end": 314.38, + "probability": 1.0 + } + ] + }, + { + "id": 159, + "text": "You got Vypr on there and Advira, right?", + "start": 314.4, + "end": 317.54, + "words": [ + { + "word": " You", + "start": 314.4, + "end": 314.48, + "probability": 0.9951171875 + }, + { + "word": " got", + "start": 314.48, + "end": 314.62, + "probability": 0.51123046875 + }, + { + "word": " Vypr", + "start": 314.62, + "end": 315.26, + "probability": 0.290283203125 + }, + { + "word": " on", + "start": 315.26, + "end": 315.48, + "probability": 0.87353515625 + }, + { + "word": " there", + "start": 315.48, + "end": 315.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 315.72, + "end": 316.42, + "probability": 0.99462890625 + }, + { + "word": " Advira,", + "start": 316.42, + "end": 316.76, + "probability": 0.50048828125 + }, + { + "word": " right?", + "start": 316.86, + "end": 317.54, + "probability": 0.990234375 + } + ] + }, + { + "id": 160, + "text": "Yeah.", + "start": 317.62, + "end": 317.74, + "words": [ + { + "word": " Yeah.", + "start": 317.62, + "end": 317.74, + "probability": 0.2105712890625 + } + ] + }, + { + "id": 161, + "text": "And those are both real antiviruses.", + "start": 317.74, + "end": 319.98, + "words": [ + { + "word": " And", + "start": 317.74, + "end": 317.76, + "probability": 0.978515625 + }, + { + "word": " those", + "start": 317.76, + "end": 317.82, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 317.82, + "end": 317.98, + "probability": 1.0 + }, + { + "word": " both", + "start": 317.98, + "end": 318.3, + "probability": 1.0 + }, + { + "word": " real", + "start": 318.3, + "end": 319.08, + "probability": 1.0 + }, + { + "word": " antiviruses.", + "start": 319.08, + "end": 319.98, + "probability": 1.0 + } + ] + }, + { + "id": 162, + "text": "The other two are just sort of anti-malware, so you can have as many of those as you like.", + "start": 320.26, + "end": 324.42, + "words": [ + { + "word": " The", + "start": 320.26, + "end": 320.6, + "probability": 1.0 + }, + { + "word": " other", + "start": 320.6, + "end": 320.82, + "probability": 1.0 + }, + { + "word": " two", + "start": 320.82, + "end": 321.02, + "probability": 1.0 + }, + { + "word": " are", + "start": 321.02, + "end": 321.38, + "probability": 1.0 + }, + { + "word": " just", + "start": 321.38, + "end": 321.78, + "probability": 1.0 + }, + { + "word": " sort", + "start": 321.78, + "end": 322.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 322.04, + "end": 322.18, + "probability": 1.0 + }, + { + "word": " anti", + "start": 322.18, + "end": 322.38, + "probability": 0.99169921875 + }, + { + "word": "-malware,", + "start": 322.38, + "end": 322.76, + "probability": 0.9970703125 + }, + { + "word": " so", + "start": 322.88, + "end": 323.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 323.02, + "end": 323.18, + "probability": 1.0 + }, + { + "word": " can", + "start": 323.18, + "end": 323.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 323.28, + "end": 323.4, + "probability": 1.0 + }, + { + "word": " as", + "start": 323.4, + "end": 323.52, + "probability": 1.0 + }, + { + "word": " many", + "start": 323.52, + "end": 323.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 323.66, + "end": 323.78, + "probability": 1.0 + }, + { + "word": " those", + "start": 323.78, + "end": 323.94, + "probability": 1.0 + }, + { + "word": " as", + "start": 323.94, + "end": 324.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 324.1, + "end": 324.22, + "probability": 1.0 + }, + { + "word": " like.", + "start": 324.22, + "end": 324.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 163, + "text": "However, you cannot have two antiviruses running at the same time.", + "start": 325.1, + "end": 328.02, + "words": [ + { + "word": " However,", + "start": 325.1, + "end": 325.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 325.64, + "end": 325.86, + "probability": 1.0 + }, + { + "word": " cannot", + "start": 325.86, + "end": 326.1, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 326.1, + "end": 326.32, + "probability": 1.0 + }, + { + "word": " two", + "start": 326.32, + "end": 326.52, + "probability": 1.0 + }, + { + "word": " antiviruses", + "start": 326.52, + "end": 327.1, + "probability": 1.0 + }, + { + "word": " running", + "start": 327.1, + "end": 327.32, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 327.32, + "end": 327.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 327.5, + "end": 327.58, + "probability": 1.0 + }, + { + "word": " same", + "start": 327.58, + "end": 327.76, + "probability": 1.0 + }, + { + "word": " time.", + "start": 327.76, + "end": 328.02, + "probability": 1.0 + } + ] + }, + { + "id": 164, + "text": "And I'll tell you why.", + "start": 328.04, + "end": 328.78, + "words": [ + { + "word": " And", + "start": 328.04, + "end": 328.24, + "probability": 0.9990234375 + }, + { + "word": " I'll", + "start": 328.24, + "end": 328.36, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 328.36, + "end": 328.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 328.5, + "end": 328.62, + "probability": 1.0 + }, + { + "word": " why.", + "start": 328.62, + "end": 328.78, + "probability": 1.0 + } + ] + }, + { + "id": 165, + "text": "There's a half-life of the antivirus running on the machine.", + "start": 329.52000000000004, + "end": 329.96, + "words": [ + { + "word": " There's", + "start": 329.52000000000004, + "end": 329.86, + "probability": 0.810546875 + }, + { + "word": " a", + "start": 329.86, + "end": 329.86, + "probability": 0.9189453125 + }, + { + "word": " half", + "start": 329.86, + "end": 329.96, + "probability": 0.056243896484375 + }, + { + "word": "-life", + "start": 329.96, + "end": 329.96, + "probability": 0.237548828125 + }, + { + "word": " of", + "start": 329.96, + "end": 329.96, + "probability": 0.08843994140625 + }, + { + "word": " the", + "start": 329.96, + "end": 329.96, + "probability": 0.10333251953125 + }, + { + "word": " antivirus", + "start": 329.96, + "end": 329.96, + "probability": 0.73876953125 + }, + { + "word": " running", + "start": 329.96, + "end": 329.96, + "probability": 0.142333984375 + }, + { + "word": " on", + "start": 329.96, + "end": 329.96, + "probability": 0.42431640625 + }, + { + "word": " the", + "start": 329.96, + "end": 329.96, + "probability": 0.53759765625 + }, + { + "word": " machine.", + "start": 329.96, + "end": 329.96, + "probability": 0.399658203125 + } + ] + }, + { + "id": 166, + "text": "", + "start": 329.96, + "end": 329.96, + "words": [] + }, + { + "id": 167, + "text": "", + "start": 329.96, + "end": 329.96, + "words": [] + }, + { + "id": 168, + "text": "", + "start": 329.96, + "end": 329.96, + "words": [] + }, + { + "id": 169, + "text": "There's a very special place in Windows that antivirus has to reside if it's able to oversee", + "start": 329.96, + "end": 334.94, + "words": [ + { + "word": " There's", + "start": 329.96, + "end": 329.96, + "probability": 0.63720703125 + }, + { + "word": " a", + "start": 329.96, + "end": 329.96, + "probability": 0.994140625 + }, + { + "word": " very", + "start": 329.96, + "end": 330.04, + "probability": 0.99853515625 + }, + { + "word": " special", + "start": 330.04, + "end": 330.46, + "probability": 0.99951171875 + }, + { + "word": " place", + "start": 330.46, + "end": 330.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 330.78, + "end": 331.26, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 331.26, + "end": 331.6, + "probability": 0.931640625 + }, + { + "word": " that", + "start": 331.6, + "end": 332.34, + "probability": 0.998046875 + }, + { + "word": " antivirus", + "start": 332.34, + "end": 333.02, + "probability": 0.9912109375 + }, + { + "word": " has", + "start": 333.02, + "end": 333.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 333.32, + "end": 333.52, + "probability": 1.0 + }, + { + "word": " reside", + "start": 333.52, + "end": 333.8, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 333.8, + "end": 334.12, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 334.12, + "end": 334.32, + "probability": 1.0 + }, + { + "word": " able", + "start": 334.32, + "end": 334.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 334.46, + "end": 334.64, + "probability": 1.0 + }, + { + "word": " oversee", + "start": 334.64, + "end": 334.94, + "probability": 1.0 + } + ] + }, + { + "id": 170, + "text": "everything that the machine is doing.", + "start": 334.94, + "end": 336.32, + "words": [ + { + "word": " everything", + "start": 334.94, + "end": 335.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 335.38, + "end": 335.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 335.64, + "end": 335.74, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 335.74, + "end": 335.92, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 335.92, + "end": 336.08, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 336.08, + "end": 336.32, + "probability": 1.0 + } + ] + }, + { + "id": 171, + "text": "Okay.", + "start": 336.98, + "end": 337.42, + "words": [ + { + "word": " Okay.", + "start": 336.98, + "end": 337.42, + "probability": 0.7001953125 + } + ] + }, + { + "id": 172, + "text": "And the antivirus itself is trained to kill anything else that's in that spot.", + "start": 337.42, + "end": 341.04, + "words": [ + { + "word": " And", + "start": 337.42, + "end": 337.74, + "probability": 0.91455078125 + }, + { + "word": " the", + "start": 337.74, + "end": 337.74, + "probability": 0.9990234375 + }, + { + "word": " antivirus", + "start": 337.74, + "end": 338.24, + "probability": 1.0 + }, + { + "word": " itself", + "start": 338.24, + "end": 338.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 338.52, + "end": 338.86, + "probability": 1.0 + }, + { + "word": " trained", + "start": 338.86, + "end": 339.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 339.08, + "end": 339.26, + "probability": 1.0 + }, + { + "word": " kill", + "start": 339.26, + "end": 339.52, + "probability": 1.0 + }, + { + "word": " anything", + "start": 339.52, + "end": 339.84, + "probability": 1.0 + }, + { + "word": " else", + "start": 339.84, + "end": 340.24, + "probability": 1.0 + }, + { + "word": " that's", + "start": 340.24, + "end": 340.44, + "probability": 1.0 + }, + { + "word": " in", + "start": 340.44, + "end": 340.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 340.54, + "end": 340.76, + "probability": 1.0 + }, + { + "word": " spot.", + "start": 340.76, + "end": 341.04, + "probability": 1.0 + } + ] + }, + { + "id": 173, + "text": "So, you have two antiviruses that are trying to vie for the same area within Windows.", + "start": 341.4, + "end": 346.08, + "words": [ + { + "word": " So,", + "start": 341.4, + "end": 341.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 341.9, + "end": 341.94, + "probability": 1.0 + }, + { + "word": " have", + "start": 341.94, + "end": 342.06, + "probability": 1.0 + }, + { + "word": " two", + "start": 342.06, + "end": 342.2, + "probability": 0.9990234375 + }, + { + "word": " antiviruses", + "start": 342.2, + "end": 343.06, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 343.06, + "end": 343.3, + "probability": 1.0 + }, + { + "word": " are", + "start": 343.3, + "end": 343.42, + "probability": 1.0 + }, + { + "word": " trying", + "start": 343.42, + "end": 343.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 343.66, + "end": 343.88, + "probability": 1.0 + }, + { + "word": " vie", + "start": 343.88, + "end": 344.24, + "probability": 0.99609375 + }, + { + "word": " for", + "start": 344.24, + "end": 344.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 344.6, + "end": 344.7, + "probability": 1.0 + }, + { + "word": " same", + "start": 344.7, + "end": 344.98, + "probability": 1.0 + }, + { + "word": " area", + "start": 344.98, + "end": 345.36, + "probability": 1.0 + }, + { + "word": " within", + "start": 345.36, + "end": 345.68, + "probability": 1.0 + }, + { + "word": " Windows.", + "start": 345.68, + "end": 346.08, + "probability": 1.0 + } + ] + }, + { + "id": 174, + "text": "So, they spend all their time trying to kill each other rather than trying to keep you", + "start": 346.68, + "end": 351.14, + "words": [ + { + "word": " So,", + "start": 346.68, + "end": 347.12, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 347.16, + "end": 347.24, + "probability": 1.0 + }, + { + "word": " spend", + "start": 347.24, + "end": 347.4, + "probability": 1.0 + }, + { + "word": " all", + "start": 347.4, + "end": 347.58, + "probability": 1.0 + }, + { + "word": " their", + "start": 347.58, + "end": 347.68, + "probability": 1.0 + }, + { + "word": " time", + "start": 347.68, + "end": 347.86, + "probability": 1.0 + }, + { + "word": " trying", + "start": 347.86, + "end": 348.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 348.06, + "end": 348.18, + "probability": 1.0 + }, + { + "word": " kill", + "start": 348.18, + "end": 348.38, + "probability": 1.0 + }, + { + "word": " each", + "start": 348.38, + "end": 348.52, + "probability": 1.0 + }, + { + "word": " other", + "start": 348.52, + "end": 348.8, + "probability": 1.0 + }, + { + "word": " rather", + "start": 348.8, + "end": 349.52, + "probability": 0.9248046875 + }, + { + "word": " than", + "start": 349.52, + "end": 349.8, + "probability": 1.0 + }, + { + "word": " trying", + "start": 349.8, + "end": 350.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 350.06, + "end": 350.38, + "probability": 1.0 + }, + { + "word": " keep", + "start": 350.38, + "end": 350.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 350.94, + "end": 351.14, + "probability": 1.0 + } + ] + }, + { + "id": 175, + "text": "safe.", + "start": 351.14, + "end": 351.46, + "words": [ + { + "word": " safe.", + "start": 351.14, + "end": 351.46, + "probability": 1.0 + } + ] + }, + { + "id": 176, + "text": "Okay.", + "start": 352.42, + "end": 352.86, + "words": [ + { + "word": " Okay.", + "start": 352.42, + "end": 352.86, + "probability": 0.98876953125 + } + ] + }, + { + "id": 177, + "text": "So, you need to make sure that you only have one antivirus on the machine.", + "start": 353.04, + "end": 356.0, + "words": [ + { + "word": " So,", + "start": 353.04, + "end": 353.48, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 353.7, + "end": 354.02, + "probability": 1.0 + }, + { + "word": " need", + "start": 354.02, + "end": 354.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 354.18, + "end": 354.26, + "probability": 1.0 + }, + { + "word": " make", + "start": 354.26, + "end": 354.38, + "probability": 1.0 + }, + { + "word": " sure", + "start": 354.38, + "end": 354.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 354.52, + "end": 354.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 354.66, + "end": 354.72, + "probability": 1.0 + }, + { + "word": " only", + "start": 354.72, + "end": 354.84, + "probability": 1.0 + }, + { + "word": " have", + "start": 354.84, + "end": 354.96, + "probability": 1.0 + }, + { + "word": " one", + "start": 354.96, + "end": 355.18, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 355.18, + "end": 355.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 355.58, + "end": 355.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 355.74, + "end": 355.78, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 355.78, + "end": 356.0, + "probability": 1.0 + } + ] + }, + { + "id": 178, + "text": "In your particular case, you know, we recommend Avast on the show.", + "start": 356.18, + "end": 359.68, + "words": [ + { + "word": " In", + "start": 356.18, + "end": 356.62, + "probability": 0.9814453125 + }, + { + "word": " your", + "start": 356.62, + "end": 356.8, + "probability": 1.0 + }, + { + "word": " particular", + "start": 356.8, + "end": 357.1, + "probability": 1.0 + }, + { + "word": " case,", + "start": 357.1, + "end": 357.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 357.72, + "end": 357.9, + "probability": 0.7021484375 + }, + { + "word": " know,", + "start": 357.9, + "end": 358.06, + "probability": 1.0 + }, + { + "word": " we", + "start": 358.06, + "end": 358.26, + "probability": 1.0 + }, + { + "word": " recommend", + "start": 358.26, + "end": 358.7, + "probability": 0.99755859375 + }, + { + "word": " Avast", + "start": 358.7, + "end": 359.24, + "probability": 0.9951171875 + }, + { + "word": " on", + "start": 359.24, + "end": 359.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 359.42, + "end": 359.48, + "probability": 0.89892578125 + }, + { + "word": " show.", + "start": 359.48, + "end": 359.68, + "probability": 1.0 + } + ] + }, + { + "id": 179, + "text": "And the reason why is that you can do a boot time scan.", + "start": 359.96, + "end": 361.86, + "words": [ + { + "word": " And", + "start": 359.96, + "end": 359.96, + "probability": 0.70068359375 + }, + { + "word": " the", + "start": 359.96, + "end": 359.96, + "probability": 0.9990234375 + }, + { + "word": " reason", + "start": 359.96, + "end": 360.22, + "probability": 1.0 + }, + { + "word": " why", + "start": 360.22, + "end": 360.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 360.46, + "end": 360.74, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 360.74, + "end": 360.86, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 360.86, + "end": 361.0, + "probability": 1.0 + }, + { + "word": " can", + "start": 361.0, + "end": 361.08, + "probability": 1.0 + }, + { + "word": " do", + "start": 361.08, + "end": 361.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 361.2, + "end": 361.28, + "probability": 1.0 + }, + { + "word": " boot", + "start": 361.28, + "end": 361.42, + "probability": 0.98779296875 + }, + { + "word": " time", + "start": 361.42, + "end": 361.58, + "probability": 0.943359375 + }, + { + "word": " scan.", + "start": 361.58, + "end": 361.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 180, + "text": "A lot of the reason that a virus scan won't remove an infection is because Windows deems", + "start": 362.54, + "end": 368.62, + "words": [ + { + "word": " A", + "start": 362.54, + "end": 362.98, + "probability": 0.9833984375 + }, + { + "word": " lot", + "start": 362.98, + "end": 363.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 363.18, + "end": 363.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 363.32, + "end": 363.4, + "probability": 1.0 + }, + { + "word": " reason", + "start": 363.4, + "end": 363.7, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 363.7, + "end": 364.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 364.06, + "end": 364.76, + "probability": 0.953125 + }, + { + "word": " virus", + "start": 364.76, + "end": 365.48, + "probability": 0.99951171875 + }, + { + "word": " scan", + "start": 365.48, + "end": 365.72, + "probability": 0.99951171875 + }, + { + "word": " won't", + "start": 365.72, + "end": 366.08, + "probability": 1.0 + }, + { + "word": " remove", + "start": 366.08, + "end": 366.4, + "probability": 1.0 + }, + { + "word": " an", + "start": 366.4, + "end": 366.58, + "probability": 1.0 + }, + { + "word": " infection", + "start": 366.58, + "end": 366.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 366.86, + "end": 367.16, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 367.16, + "end": 367.4, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 367.4, + "end": 367.76, + "probability": 0.99951171875 + }, + { + "word": " deems", + "start": 367.76, + "end": 368.62, + "probability": 1.0 + } + ] + }, + { + "id": 181, + "text": "that file as in use and locks it and prevents the antivirus from deleting it or modifying", + "start": 368.62, + "end": 372.88, + "words": [ + { + "word": " that", + "start": 368.62, + "end": 368.72, + "probability": 1.0 + }, + { + "word": " file", + "start": 368.72, + "end": 369.04, + "probability": 1.0 + }, + { + "word": " as", + "start": 369.04, + "end": 369.28, + "probability": 0.9921875 + }, + { + "word": " in", + "start": 369.28, + "end": 369.5, + "probability": 1.0 + }, + { + "word": " use", + "start": 369.5, + "end": 369.8, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 369.8, + "end": 370.1, + "probability": 0.99560546875 + }, + { + "word": " locks", + "start": 370.1, + "end": 370.42, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 370.42, + "end": 370.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 370.68, + "end": 370.82, + "probability": 0.9150390625 + }, + { + "word": " prevents", + "start": 370.82, + "end": 371.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 371.18, + "end": 371.4, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 371.4, + "end": 371.78, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 371.78, + "end": 371.94, + "probability": 1.0 + }, + { + "word": " deleting", + "start": 371.94, + "end": 372.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 372.2, + "end": 372.42, + "probability": 1.0 + }, + { + "word": " or", + "start": 372.42, + "end": 372.52, + "probability": 1.0 + }, + { + "word": " modifying", + "start": 372.52, + "end": 372.88, + "probability": 1.0 + } + ] + }, + { + "id": 182, + "text": "it.", + "start": 372.88, + "end": 373.14, + "words": [ + { + "word": " it.", + "start": 372.88, + "end": 373.14, + "probability": 1.0 + } + ] + }, + { + "id": 183, + "text": "Yeah.", + "start": 374.12, + "end": 374.56, + "words": [ + { + "word": " Yeah.", + "start": 374.12, + "end": 374.56, + "probability": 0.873046875 + } + ] + }, + { + "id": 184, + "text": "So, take your other antiviruses off, put Avast on there, do a boot time scan.", + "start": 374.66, + "end": 378.68, + "words": [ + { + "word": " So,", + "start": 374.66, + "end": 375.1, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 375.1, + "end": 375.76, + "probability": 1.0 + }, + { + "word": " your", + "start": 375.76, + "end": 375.9, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 375.9, + "end": 376.04, + "probability": 1.0 + }, + { + "word": " antiviruses", + "start": 376.04, + "end": 376.56, + "probability": 0.99755859375 + }, + { + "word": " off,", + "start": 376.56, + "end": 376.76, + "probability": 1.0 + }, + { + "word": " put", + "start": 376.92, + "end": 377.16, + "probability": 1.0 + }, + { + "word": " Avast", + "start": 377.16, + "end": 377.46, + "probability": 0.50048828125 + }, + { + "word": " on", + "start": 377.46, + "end": 377.58, + "probability": 1.0 + }, + { + "word": " there,", + "start": 377.58, + "end": 377.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 377.8, + "end": 377.92, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 377.92, + "end": 378.02, + "probability": 1.0 + }, + { + "word": " boot", + "start": 378.02, + "end": 378.18, + "probability": 1.0 + }, + { + "word": " time", + "start": 378.18, + "end": 378.34, + "probability": 1.0 + }, + { + "word": " scan.", + "start": 378.34, + "end": 378.68, + "probability": 1.0 + } + ] + }, + { + "id": 185, + "text": "And that's going to help out a lot towards getting you clean.", + "start": 378.96, + "end": 381.38, + "words": [ + { + "word": " And", + "start": 378.96, + "end": 379.4, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 379.4, + "end": 379.54, + "probability": 1.0 + }, + { + "word": " going", + "start": 379.54, + "end": 379.62, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 379.62, + "end": 379.7, + "probability": 1.0 + }, + { + "word": " help", + "start": 379.7, + "end": 379.88, + "probability": 1.0 + }, + { + "word": " out", + "start": 379.88, + "end": 380.06, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 380.06, + "end": 380.26, + "probability": 1.0 + }, + { + "word": " lot", + "start": 380.26, + "end": 380.5, + "probability": 1.0 + }, + { + "word": " towards", + "start": 380.5, + "end": 380.74, + "probability": 1.0 + }, + { + "word": " getting", + "start": 380.74, + "end": 380.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 380.96, + "end": 381.16, + "probability": 1.0 + }, + { + "word": " clean.", + "start": 381.16, + "end": 381.38, + "probability": 0.904296875 + } + ] + }, + { + "id": 186, + "text": "Make sure System Restore is turned off, and that'll probably get you at least cleaned", + "start": 381.5, + "end": 385.98, + "words": [ + { + "word": " Make", + "start": 381.5, + "end": 381.68, + "probability": 0.9931640625 + }, + { + "word": " sure", + "start": 381.68, + "end": 381.86, + "probability": 1.0 + }, + { + "word": " System", + "start": 381.86, + "end": 382.08, + "probability": 0.4892578125 + }, + { + "word": " Restore", + "start": 382.08, + "end": 382.44, + "probability": 0.99267578125 + }, + { + "word": " is", + "start": 382.44, + "end": 382.56, + "probability": 1.0 + }, + { + "word": " turned", + "start": 382.56, + "end": 382.7, + "probability": 1.0 + }, + { + "word": " off,", + "start": 382.7, + "end": 383.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 383.14, + "end": 383.84, + "probability": 1.0 + }, + { + "word": " that'll", + "start": 383.84, + "end": 384.38, + "probability": 0.63134765625 + }, + { + "word": " probably", + "start": 384.38, + "end": 384.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 384.68, + "end": 385.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 385.34, + "end": 385.48, + "probability": 1.0 + }, + { + "word": " at", + "start": 385.48, + "end": 385.56, + "probability": 1.0 + }, + { + "word": " least", + "start": 385.56, + "end": 385.74, + "probability": 1.0 + }, + { + "word": " cleaned", + "start": 385.74, + "end": 385.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 187, + "text": "up to the point where you can move on to other steps.", + "start": 385.98, + "end": 387.46, + "words": [ + { + "word": " up", + "start": 385.98, + "end": 386.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 386.12, + "end": 386.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 386.22, + "end": 386.28, + "probability": 1.0 + }, + { + "word": " point", + "start": 386.28, + "end": 386.44, + "probability": 1.0 + }, + { + "word": " where", + "start": 386.44, + "end": 386.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 386.54, + "end": 386.62, + "probability": 1.0 + }, + { + "word": " can", + "start": 386.62, + "end": 386.7, + "probability": 1.0 + }, + { + "word": " move", + "start": 386.7, + "end": 386.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 386.84, + "end": 386.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 386.98, + "end": 387.06, + "probability": 1.0 + }, + { + "word": " other", + "start": 387.06, + "end": 387.2, + "probability": 1.0 + }, + { + "word": " steps.", + "start": 387.2, + "end": 387.46, + "probability": 0.9912109375 + } + ] + }, + { + "id": 188, + "text": "Okay.", + "start": 388.76, + "end": 389.2, + "words": [ + { + "word": " Okay.", + "start": 388.76, + "end": 389.2, + "probability": 0.9873046875 + } + ] + }, + { + "id": 189, + "text": "How do I put Avast on there?", + "start": 389.2, + "end": 391.46, + "words": [ + { + "word": " How", + "start": 389.2, + "end": 389.54, + "probability": 0.5380859375 + }, + { + "word": " do", + "start": 389.54, + "end": 389.78, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 389.78, + "end": 389.92, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 389.92, + "end": 390.24, + "probability": 0.99951171875 + }, + { + "word": " Avast", + "start": 390.24, + "end": 390.86, + "probability": 0.955078125 + }, + { + "word": " on", + "start": 390.86, + "end": 391.14, + "probability": 0.99951171875 + }, + { + "word": " there?", + "start": 391.14, + "end": 391.46, + "probability": 1.0 + } + ] + }, + { + "id": 190, + "text": "Because it's basically not really letting me...", + "start": 391.58, + "end": 397.08, + "words": [ + { + "word": " Because", + "start": 391.58, + "end": 391.86, + "probability": 0.79248046875 + }, + { + "word": " it's", + "start": 391.86, + "end": 394.18, + "probability": 0.982421875 + }, + { + "word": " basically", + "start": 394.18, + "end": 394.64, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 394.64, + "end": 395.06, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 395.06, + "end": 395.56, + "probability": 0.9990234375 + }, + { + "word": " letting", + "start": 395.56, + "end": 396.48, + "probability": 0.99951171875 + }, + { + "word": " me...", + "start": 396.48, + "end": 397.08, + "probability": 0.7314453125 + } + ] + }, + { + "id": 191, + "text": "Do you have another machine?", + "start": 397.08, + "end": 398.3, + "words": [ + { + "word": " Do", + "start": 397.08, + "end": 397.8, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 397.8, + "end": 397.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 397.86, + "end": 397.92, + "probability": 1.0 + }, + { + "word": " another", + "start": 397.92, + "end": 398.04, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 398.04, + "end": 398.3, + "probability": 1.0 + } + ] + }, + { + "id": 192, + "text": "I do, yeah.", + "start": 399.4, + "end": 400.58, + "words": [ + { + "word": " I", + "start": 399.4, + "end": 399.82, + "probability": 0.9990234375 + }, + { + "word": " do,", + "start": 399.82, + "end": 400.24, + "probability": 0.99951171875 + }, + { + "word": " yeah.", + "start": 400.38, + "end": 400.58, + "probability": 0.98974609375 + } + ] + }, + { + "id": 193, + "text": "Okay.", + "start": 400.76, + "end": 400.98, + "words": [ + { + "word": " Okay.", + "start": 400.76, + "end": 400.98, + "probability": 0.88720703125 + } + ] + }, + { + "id": 194, + "text": "So, go download Avast, put it on a memory stick or something, and then move it over.", + "start": 400.98, + "end": 404.72, + "words": [ + { + "word": " So,", + "start": 400.98, + "end": 401.3, + "probability": 0.9892578125 + }, + { + "word": " go", + "start": 401.3, + "end": 401.74, + "probability": 0.99951171875 + }, + { + "word": " download", + "start": 401.74, + "end": 402.06, + "probability": 1.0 + }, + { + "word": " Avast,", + "start": 402.06, + "end": 402.54, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 402.54, + "end": 402.82, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 402.82, + "end": 402.96, + "probability": 1.0 + }, + { + "word": " on", + "start": 402.96, + "end": 402.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 402.98, + "end": 403.1, + "probability": 1.0 + }, + { + "word": " memory", + "start": 403.1, + "end": 403.3, + "probability": 1.0 + }, + { + "word": " stick", + "start": 403.3, + "end": 403.52, + "probability": 1.0 + }, + { + "word": " or", + "start": 403.52, + "end": 403.7, + "probability": 0.99951171875 + }, + { + "word": " something,", + "start": 403.7, + "end": 403.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 404.0, + "end": 404.18, + "probability": 1.0 + }, + { + "word": " then", + "start": 404.18, + "end": 404.26, + "probability": 1.0 + }, + { + "word": " move", + "start": 404.26, + "end": 404.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 404.42, + "end": 404.52, + "probability": 1.0 + }, + { + "word": " over.", + "start": 404.52, + "end": 404.72, + "probability": 1.0 + } + ] + }, + { + "id": 195, + "text": "Put it on a CD if you want to be extra safe.", + "start": 404.82, + "end": 406.86, + "words": [ + { + "word": " Put", + "start": 404.82, + "end": 405.22, + "probability": 0.98876953125 + }, + { + "word": " it", + "start": 405.22, + "end": 405.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 405.34, + "end": 405.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 405.42, + "end": 405.54, + "probability": 1.0 + }, + { + "word": " CD", + "start": 405.54, + "end": 405.78, + "probability": 1.0 + }, + { + "word": " if", + "start": 405.78, + "end": 406.04, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 406.04, + "end": 406.12, + "probability": 1.0 + }, + { + "word": " want", + "start": 406.12, + "end": 406.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 406.22, + "end": 406.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 406.3, + "end": 406.34, + "probability": 1.0 + }, + { + "word": " extra", + "start": 406.34, + "end": 406.52, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 406.52, + "end": 406.86, + "probability": 1.0 + } + ] + }, + { + "id": 196, + "text": "Okay.", + "start": 407.64, + "end": 408.06, + "words": [ + { + "word": " Okay.", + "start": 407.64, + "end": 408.06, + "probability": 1.0 + } + ] + }, + { + "id": 197, + "text": "Okay?", + "start": 408.52, + "end": 408.94, + "words": [ + { + "word": " Okay?", + "start": 408.52, + "end": 408.94, + "probability": 0.98681640625 + } + ] + }, + { + "id": 198, + "text": "Okay.", + "start": 409.56, + "end": 409.98, + "words": [ + { + "word": " Okay.", + "start": 409.56, + "end": 409.98, + "probability": 0.970703125 + } + ] + }, + { + "id": 199, + "text": "Now, if that doesn't work for you, all right, or if you're unable to get any resolution", + "start": 411.36, + "end": 414.9, + "words": [ + { + "word": " Now,", + "start": 411.36, + "end": 411.78, + "probability": 0.990234375 + }, + { + "word": " if", + "start": 411.84, + "end": 411.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 411.92, + "end": 411.98, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 411.98, + "end": 412.2, + "probability": 1.0 + }, + { + "word": " work", + "start": 412.2, + "end": 412.34, + "probability": 1.0 + }, + { + "word": " for", + "start": 412.34, + "end": 412.52, + "probability": 1.0 + }, + { + "word": " you,", + "start": 412.52, + "end": 412.7, + "probability": 1.0 + }, + { + "word": " all", + "start": 412.72, + "end": 413.16, + "probability": 0.04949951171875 + }, + { + "word": " right,", + "start": 413.16, + "end": 413.28, + "probability": 1.0 + }, + { + "word": " or", + "start": 413.32, + "end": 413.48, + "probability": 0.986328125 + }, + { + "word": " if", + "start": 413.48, + "end": 413.64, + "probability": 0.98193359375 + }, + { + "word": " you're", + "start": 413.64, + "end": 413.8, + "probability": 1.0 + }, + { + "word": " unable", + "start": 413.8, + "end": 414.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 414.04, + "end": 414.32, + "probability": 1.0 + }, + { + "word": " get", + "start": 414.32, + "end": 414.48, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 414.48, + "end": 414.6, + "probability": 0.99560546875 + }, + { + "word": " resolution", + "start": 414.6, + "end": 414.9, + "probability": 0.99609375 + } + ] + }, + { + "id": 200, + "text": "that way...", + "start": 414.9, + "end": 415.9, + "words": [ + { + "word": " that", + "start": 414.9, + "end": 415.36, + "probability": 1.0 + }, + { + "word": " way...", + "start": 415.36, + "end": 415.9, + "probability": 0.9970703125 + } + ] + }, + { + "id": 201, + "text": "Do another week?", + "start": 415.9, + "end": 416.52, + "words": [ + { + "word": " Do", + "start": 415.9, + "end": 415.98, + "probability": 0.49951171875 + }, + { + "word": " another", + "start": 415.98, + "end": 416.22, + "probability": 0.93359375 + }, + { + "word": " week?", + "start": 416.22, + "end": 416.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 202, + "text": "Yeah.", + "start": 416.68, + "end": 416.92, + "words": [ + { + "word": " Yeah.", + "start": 416.68, + "end": 416.92, + "probability": 0.99658203125 + } + ] + }, + { + "id": 203, + "text": "We'll do one more week.", + "start": 416.92, + "end": 417.78, + "words": [ + { + "word": " We'll", + "start": 416.92, + "end": 417.1, + "probability": 0.591796875 + }, + { + "word": " do", + "start": 417.1, + "end": 417.14, + "probability": 0.9931640625 + }, + { + "word": " one", + "start": 417.14, + "end": 417.28, + "probability": 0.75830078125 + }, + { + "word": " more", + "start": 417.28, + "end": 417.48, + "probability": 0.998046875 + }, + { + "word": " week.", + "start": 417.48, + "end": 417.78, + "probability": 0.9951171875 + } + ] + }, + { + "id": 204, + "text": "I think another week.", + "start": 417.9, + "end": 418.78, + "words": [ + { + "word": " I", + "start": 417.9, + "end": 418.12, + "probability": 0.81591796875 + }, + { + "word": " think", + "start": 418.12, + "end": 418.4, + "probability": 0.99951171875 + }, + { + "word": " another", + "start": 418.4, + "end": 418.56, + "probability": 0.99755859375 + }, + { + "word": " week.", + "start": 418.56, + "end": 418.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 205, + "text": "We'll do one more week.", + "start": 418.84, + "end": 419.36, + "words": [ + { + "word": " We'll", + "start": 418.84, + "end": 418.96, + "probability": 0.9794921875 + }, + { + "word": " do", + "start": 418.96, + "end": 419.02, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 419.02, + "end": 419.16, + "probability": 0.66064453125 + }, + { + "word": " more", + "start": 419.16, + "end": 419.28, + "probability": 0.90234375 + }, + { + "word": " week.", + "start": 419.28, + "end": 419.36, + "probability": 0.60546875 + } + ] + }, + { + "id": 206, + "text": "We'll do it for the summer.", + "start": 419.36, + "end": 419.46, + "words": [ + { + "word": " We'll", + "start": 419.36, + "end": 419.46, + "probability": 0.74609375 + }, + { + "word": " do", + "start": 419.46, + "end": 419.46, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 419.46, + "end": 419.46, + "probability": 0.94775390625 + }, + { + "word": " for", + "start": 419.46, + "end": 419.46, + "probability": 0.962890625 + }, + { + "word": " the", + "start": 419.46, + "end": 419.46, + "probability": 0.99658203125 + }, + { + "word": " summer.", + "start": 419.46, + "end": 419.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 207, + "text": "Wow, the summer?", + "start": 419.82, + "end": 420.74, + "words": [ + { + "word": " Wow,", + "start": 419.82, + "end": 420.14, + "probability": 0.72314453125 + }, + { + "word": " the", + "start": 420.32, + "end": 420.42, + "probability": 0.9990234375 + }, + { + "word": " summer?", + "start": 420.42, + "end": 420.74, + "probability": 1.0 + } + ] + }, + { + "id": 208, + "text": "Okay, you need to reel it back in a little bit.", + "start": 420.82, + "end": 422.5, + "words": [ + { + "word": " Okay,", + "start": 420.82, + "end": 421.06, + "probability": 0.8525390625 + }, + { + "word": " you", + "start": 421.18, + "end": 421.34, + "probability": 0.998046875 + }, + { + "word": " need", + "start": 421.34, + "end": 421.44, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 421.44, + "end": 421.5, + "probability": 0.99853515625 + }, + { + "word": " reel", + "start": 421.5, + "end": 421.7, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 421.7, + "end": 421.76, + "probability": 0.98681640625 + }, + { + "word": " back", + "start": 421.76, + "end": 421.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 421.98, + "end": 422.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 422.18, + "end": 422.26, + "probability": 1.0 + }, + { + "word": " little", + "start": 422.26, + "end": 422.34, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 422.34, + "end": 422.5, + "probability": 1.0 + } + ] + }, + { + "id": 209, + "text": "All right, we'll do it for the summer.", + "start": 422.6, + "end": 423.3, + "words": [ + { + "word": " All", + "start": 422.6, + "end": 422.7, + "probability": 0.218994140625 + }, + { + "word": " right,", + "start": 422.7, + "end": 422.72, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 422.72, + "end": 422.84, + "probability": 1.0 + }, + { + "word": " do", + "start": 422.84, + "end": 422.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 422.92, + "end": 422.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 422.96, + "end": 423.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 423.06, + "end": 423.1, + "probability": 1.0 + }, + { + "word": " summer.", + "start": 423.1, + "end": 423.3, + "probability": 1.0 + } + ] + }, + { + "id": 210, + "text": "We're doing $65 virus removals.", + "start": 423.34, + "end": 425.12, + "words": [ + { + "word": " We're", + "start": 423.34, + "end": 423.5, + "probability": 0.99755859375 + }, + { + "word": " doing", + "start": 423.5, + "end": 423.68, + "probability": 1.0 + }, + { + "word": " $65", + "start": 423.68, + "end": 424.32, + "probability": 0.9990234375 + }, + { + "word": " virus", + "start": 424.32, + "end": 424.68, + "probability": 0.99609375 + }, + { + "word": " removals.", + "start": 424.68, + "end": 425.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 211, + "text": "All right?", + "start": 425.68, + "end": 426.16, + "words": [ + { + "word": " All", + "start": 425.68, + "end": 426.0, + "probability": 0.880859375 + }, + { + "word": " right?", + "start": 426.0, + "end": 426.16, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "So, normally, the $95 ones, we're taking down to $65.", + "start": 426.16, + "end": 430.32, + "words": [ + { + "word": " So,", + "start": 426.16, + "end": 426.44, + "probability": 0.94287109375 + }, + { + "word": " normally,", + "start": 426.54, + "end": 427.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 427.22, + "end": 427.48, + "probability": 0.85791015625 + }, + { + "word": " $95", + "start": 427.48, + "end": 428.94, + "probability": 0.96875 + }, + { + "word": " ones,", + "start": 428.94, + "end": 429.34, + "probability": 1.0 + }, + { + "word": " we're", + "start": 429.42, + "end": 429.54, + "probability": 0.9990234375 + }, + { + "word": " taking", + "start": 429.54, + "end": 429.64, + "probability": 1.0 + }, + { + "word": " down", + "start": 429.64, + "end": 429.84, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 429.84, + "end": 429.92, + "probability": 0.9970703125 + }, + { + "word": " $65.", + "start": 429.92, + "end": 430.32, + "probability": 0.994140625 + } + ] + }, + { + "id": 213, + "text": "So, we can remove it for you if it comes down to it.", + "start": 430.84000000000003, + "end": 432.98, + "words": [ + { + "word": " So,", + "start": 430.84000000000003, + "end": 431.16, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 431.2, + "end": 431.4, + "probability": 1.0 + }, + { + "word": " can", + "start": 431.4, + "end": 431.56, + "probability": 1.0 + }, + { + "word": " remove", + "start": 431.56, + "end": 431.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 431.8, + "end": 431.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 431.96, + "end": 432.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 432.08, + "end": 432.24, + "probability": 1.0 + }, + { + "word": " if", + "start": 432.24, + "end": 432.36, + "probability": 0.99169921875 + }, + { + "word": " it", + "start": 432.36, + "end": 432.42, + "probability": 1.0 + }, + { + "word": " comes", + "start": 432.42, + "end": 432.58, + "probability": 1.0 + }, + { + "word": " down", + "start": 432.58, + "end": 432.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 432.74, + "end": 432.86, + "probability": 1.0 + }, + { + "word": " it.", + "start": 432.86, + "end": 432.98, + "probability": 1.0 + } + ] + }, + { + "id": 214, + "text": "Okay.", + "start": 434.04, + "end": 434.36, + "words": [ + { + "word": " Okay.", + "start": 434.04, + "end": 434.36, + "probability": 0.99755859375 + } + ] + }, + { + "id": 215, + "text": "All right?", + "start": 434.52, + "end": 434.96, + "words": [ + { + "word": " All", + "start": 434.52, + "end": 434.8, + "probability": 0.99853515625 + }, + { + "word": " right?", + "start": 434.8, + "end": 434.96, + "probability": 1.0 + } + ] + }, + { + "id": 216, + "text": "You have to mention the special, though, if you want to bring it in and get it at that", + "start": 435.3, + "end": 438.52, + "words": [ + { + "word": " You", + "start": 435.3, + "end": 435.62, + "probability": 0.91796875 + }, + { + "word": " have", + "start": 435.62, + "end": 435.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 435.74, + "end": 435.9, + "probability": 1.0 + }, + { + "word": " mention", + "start": 435.9, + "end": 436.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 436.12, + "end": 436.3, + "probability": 1.0 + }, + { + "word": " special,", + "start": 436.3, + "end": 436.52, + "probability": 0.994140625 + }, + { + "word": " though,", + "start": 436.64, + "end": 436.76, + "probability": 1.0 + }, + { + "word": " if", + "start": 436.78, + "end": 436.86, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 436.86, + "end": 436.92, + "probability": 1.0 + }, + { + "word": " want", + "start": 436.92, + "end": 437.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 437.02, + "end": 437.1, + "probability": 1.0 + }, + { + "word": " bring", + "start": 437.1, + "end": 437.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 437.22, + "end": 437.32, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 437.32, + "end": 437.5, + "probability": 0.96240234375 + }, + { + "word": " and", + "start": 437.5, + "end": 437.66, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 437.66, + "end": 437.9, + "probability": 1.0 + }, + { + "word": " it", + "start": 437.9, + "end": 438.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 438.02, + "end": 438.38, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 438.38, + "end": 438.52, + "probability": 1.0 + } + ] + }, + { + "id": 217, + "text": "price.", + "start": 438.52, + "end": 438.78, + "words": [ + { + "word": " price.", + "start": 438.52, + "end": 438.78, + "probability": 1.0 + } + ] + }, + { + "id": 218, + "text": "Yeah, because otherwise, it's full price.", + "start": 438.92, + "end": 440.06, + "words": [ + { + "word": " Yeah,", + "start": 438.92, + "end": 439.06, + "probability": 0.9921875 + }, + { + "word": " because", + "start": 439.1, + "end": 439.22, + "probability": 1.0 + }, + { + "word": " otherwise,", + "start": 439.22, + "end": 439.44, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 439.62, + "end": 439.78, + "probability": 1.0 + }, + { + "word": " full", + "start": 439.78, + "end": 439.84, + "probability": 0.99951171875 + }, + { + "word": " price.", + "start": 439.84, + "end": 440.06, + "probability": 0.9921875 + } + ] + }, + { + "id": 219, + "text": "Summer special?", + "start": 441.06, + "end": 441.7, + "words": [ + { + "word": " Summer", + "start": 441.06, + "end": 441.38, + "probability": 0.99267578125 + }, + { + "word": " special?", + "start": 441.38, + "end": 441.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 220, + "text": "Yeah.", + "start": 442.02, + "end": 442.28, + "words": [ + { + "word": " Yeah.", + "start": 442.02, + "end": 442.28, + "probability": 0.9052734375 + } + ] + }, + { + "id": 221, + "text": "Yeah.", + "start": 442.28, + "end": 442.42, + "words": [ + { + "word": " Yeah.", + "start": 442.28, + "end": 442.42, + "probability": 0.017578125 + } + ] + }, + { + "id": 222, + "text": "Antivirus special.", + "start": 443.32, + "end": 443.9, + "words": [ + { + "word": " Antivirus", + "start": 443.32, + "end": 443.64, + "probability": 0.84765625 + }, + { + "word": " special.", + "start": 443.64, + "end": 443.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 223, + "text": "All right?", + "start": 444.06, + "end": 444.52, + "words": [ + { + "word": " All", + "start": 444.06, + "end": 444.38, + "probability": 0.98681640625 + }, + { + "word": " right?", + "start": 444.38, + "end": 444.52, + "probability": 1.0 + } + ] + }, + { + "id": 224, + "text": "All right.", + "start": 445.04, + "end": 445.5, + "words": [ + { + "word": " All", + "start": 445.04, + "end": 445.36, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 445.36, + "end": 445.5, + "probability": 1.0 + } + ] + }, + { + "id": 225, + "text": "So, hopefully, that works for you.", + "start": 445.5, + "end": 447.32, + "words": [ + { + "word": " So,", + "start": 445.5, + "end": 445.92, + "probability": 0.7421875 + }, + { + "word": " hopefully,", + "start": 446.08, + "end": 446.6, + "probability": 0.9296875 + }, + { + "word": " that", + "start": 446.82, + "end": 446.92, + "probability": 0.99951171875 + }, + { + "word": " works", + "start": 446.92, + "end": 447.06, + "probability": 0.962890625 + }, + { + "word": " for", + "start": 447.06, + "end": 447.2, + "probability": 1.0 + }, + { + "word": " you.", + "start": 447.2, + "end": 447.32, + "probability": 1.0 + } + ] + }, + { + "id": 226, + "text": "All right, I'll do that now and see how it works out.", + "start": 448.04, + "end": 452.04, + "words": [ + { + "word": " All", + "start": 448.04, + "end": 448.36, + "probability": 0.94873046875 + }, + { + "word": " right,", + "start": 448.36, + "end": 448.54, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 448.58, + "end": 448.72, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 448.72, + "end": 448.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 448.82, + "end": 448.98, + "probability": 1.0 + }, + { + "word": " now", + "start": 448.98, + "end": 449.28, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 449.28, + "end": 449.54, + "probability": 0.7861328125 + }, + { + "word": " see", + "start": 449.54, + "end": 451.38, + "probability": 0.99853515625 + }, + { + "word": " how", + "start": 451.38, + "end": 451.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 451.58, + "end": 451.7, + "probability": 0.99609375 + }, + { + "word": " works", + "start": 451.7, + "end": 451.88, + "probability": 0.998046875 + }, + { + "word": " out.", + "start": 451.88, + "end": 452.04, + "probability": 0.97705078125 + } + ] + }, + { + "id": 227, + "text": "I appreciate it.", + "start": 452.14, + "end": 452.78, + "words": [ + { + "word": " I", + "start": 452.14, + "end": 452.24, + "probability": 0.99072265625 + }, + { + "word": " appreciate", + "start": 452.24, + "end": 452.48, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 452.48, + "end": 452.78, + "probability": 1.0 + } + ] + }, + { + "id": 228, + "text": "All right, I appreciate the call.", + "start": 452.84, + "end": 453.68, + "words": [ + { + "word": " All", + "start": 452.84, + "end": 452.9, + "probability": 0.99658203125 + }, + { + "word": " right,", + "start": 452.9, + "end": 453.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 453.04, + "end": 453.08, + "probability": 0.771484375 + }, + { + "word": " appreciate", + "start": 453.08, + "end": 453.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 453.32, + "end": 453.5, + "probability": 1.0 + }, + { + "word": " call.", + "start": 453.5, + "end": 453.68, + "probability": 1.0 + } + ] + }, + { + "id": 229, + "text": "Thank you.", + "start": 453.72, + "end": 454.02, + "words": [ + { + "word": " Thank", + "start": 453.72, + "end": 453.84, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 453.84, + "end": 454.02, + "probability": 1.0 + } + ] + }, + { + "id": 230, + "text": "If you'd like to be part of the show, 751-1041.", + "start": 454.1, + "end": 456.52, + "words": [ + { + "word": " If", + "start": 454.1, + "end": 454.42, + "probability": 0.9921875 + }, + { + "word": " you'd", + "start": 454.42, + "end": 454.56, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 454.56, + "end": 454.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 454.62, + "end": 454.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 454.72, + "end": 454.76, + "probability": 1.0 + }, + { + "word": " part", + "start": 454.76, + "end": 454.9, + "probability": 0.98388671875 + }, + { + "word": " of", + "start": 454.9, + "end": 455.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 455.02, + "end": 455.04, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 455.04, + "end": 455.2, + "probability": 1.0 + }, + { + "word": " 751", + "start": 455.26, + "end": 455.88, + "probability": 0.994140625 + }, + { + "word": "-1041.", + "start": 455.88, + "end": 456.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 231, + "text": "We'll see what we can do to help you out with your issues, whatever happens to be plaguing", + "start": 456.72, + "end": 460.46, + "words": [ + { + "word": " We'll", + "start": 456.72, + "end": 456.9, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 456.9, + "end": 456.94, + "probability": 0.99609375 + }, + { + "word": " what", + "start": 456.94, + "end": 457.02, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 457.02, + "end": 457.12, + "probability": 1.0 + }, + { + "word": " can", + "start": 457.12, + "end": 457.18, + "probability": 1.0 + }, + { + "word": " do", + "start": 457.18, + "end": 457.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 457.22, + "end": 457.34, + "probability": 1.0 + }, + { + "word": " help", + "start": 457.34, + "end": 457.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 457.46, + "end": 457.58, + "probability": 1.0 + }, + { + "word": " out", + "start": 457.58, + "end": 457.72, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 457.72, + "end": 457.88, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 457.88, + "end": 458.02, + "probability": 1.0 + }, + { + "word": " issues,", + "start": 458.02, + "end": 458.4, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 458.66, + "end": 459.66, + "probability": 1.0 + }, + { + "word": " happens", + "start": 459.66, + "end": 459.94, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 459.94, + "end": 460.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 460.08, + "end": 460.12, + "probability": 0.99951171875 + }, + { + "word": " plaguing", + "start": 460.12, + "end": 460.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 232, + "text": "you.", + "start": 460.46, + "end": 460.5, + "words": [ + { + "word": " you.", + "start": 460.46, + "end": 460.5, + "probability": 0.97412109375 + } + ] + }, + { + "id": 233, + "text": "Technology issues.", + "start": 460.56, + "end": 461.16, + "words": [ + { + "word": " Technology", + "start": 460.56, + "end": 460.86, + "probability": 0.71923828125 + }, + { + "word": " issues.", + "start": 460.86, + "end": 461.16, + "probability": 1.0 + } + ] + }, + { + "id": 234, + "text": "Because I don't want you people calling up here like I'm Dr. Drew or something, because", + "start": 461.84000000000003, + "end": 465.1, + "words": [ + { + "word": " Because", + "start": 461.84000000000003, + "end": 462.16, + "probability": 0.75048828125 + }, + { + "word": " I", + "start": 462.16, + "end": 462.24, + "probability": 1.0 + }, + { + "word": " don't", + "start": 462.24, + "end": 462.32, + "probability": 1.0 + }, + { + "word": " want", + "start": 462.32, + "end": 462.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 462.42, + "end": 462.54, + "probability": 0.98974609375 + }, + { + "word": " people", + "start": 462.54, + "end": 462.68, + "probability": 1.0 + }, + { + "word": " calling", + "start": 462.68, + "end": 463.0, + "probability": 0.8935546875 + }, + { + "word": " up", + "start": 463.0, + "end": 463.48, + "probability": 0.99755859375 + }, + { + "word": " here", + "start": 463.48, + "end": 463.64, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 463.64, + "end": 463.76, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 463.76, + "end": 463.94, + "probability": 0.9990234375 + }, + { + "word": " Dr.", + "start": 463.94, + "end": 464.12, + "probability": 0.99951171875 + }, + { + "word": " Drew", + "start": 464.22, + "end": 464.46, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 464.46, + "end": 464.62, + "probability": 0.99951171875 + }, + { + "word": " something,", + "start": 464.62, + "end": 464.86, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 464.98, + "end": 465.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 235, + "text": "I am going to help you.", + "start": 465.1, + "end": 465.88, + "words": [ + { + "word": " I", + "start": 465.1, + "end": 465.16, + "probability": 1.0 + }, + { + "word": " am", + "start": 465.16, + "end": 465.28, + "probability": 0.318115234375 + }, + { + "word": " going", + "start": 465.28, + "end": 465.38, + "probability": 0.982421875 + }, + { + "word": " to", + "start": 465.38, + "end": 465.52, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 465.52, + "end": 465.7, + "probability": 0.98974609375 + }, + { + "word": " you.", + "start": 465.7, + "end": 465.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 236, + "text": "No, please do that.", + "start": 465.9, + "end": 466.62, + "words": [ + { + "word": " No,", + "start": 465.9, + "end": 465.96, + "probability": 0.97216796875 + }, + { + "word": " please", + "start": 465.96, + "end": 466.18, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 466.18, + "end": 466.44, + "probability": 1.0 + }, + { + "word": " that.", + "start": 466.44, + "end": 466.62, + "probability": 1.0 + } + ] + }, + { + "id": 237, + "text": "I want to see how Randall responds to people saying that they're depressed.", + "start": 466.7, + "end": 470.8, + "words": [ + { + "word": " I", + "start": 466.7, + "end": 466.82, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 466.82, + "end": 466.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 466.92, + "end": 466.98, + "probability": 1.0 + }, + { + "word": " see", + "start": 466.98, + "end": 467.16, + "probability": 1.0 + }, + { + "word": " how", + "start": 467.16, + "end": 467.36, + "probability": 1.0 + }, + { + "word": " Randall", + "start": 467.36, + "end": 468.62, + "probability": 0.9990234375 + }, + { + "word": " responds", + "start": 468.62, + "end": 468.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 468.96, + "end": 469.6, + "probability": 1.0 + }, + { + "word": " people", + "start": 469.6, + "end": 469.82, + "probability": 1.0 + }, + { + "word": " saying", + "start": 469.82, + "end": 470.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 470.12, + "end": 470.34, + "probability": 1.0 + }, + { + "word": " they're", + "start": 470.34, + "end": 470.54, + "probability": 1.0 + }, + { + "word": " depressed.", + "start": 470.54, + "end": 470.8, + "probability": 1.0 + } + ] + }, + { + "id": 238, + "text": "No, Dr. Drew, isn't he like the love doctor?", + "start": 471.06, + "end": 472.58, + "words": [ + { + "word": " No,", + "start": 471.06, + "end": 471.24, + "probability": 0.9921875 + }, + { + "word": " Dr.", + "start": 471.28, + "end": 471.48, + "probability": 0.99609375 + }, + { + "word": " Drew,", + "start": 471.56, + "end": 471.72, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 471.76, + "end": 471.92, + "probability": 0.99560546875 + }, + { + "word": " he", + "start": 471.92, + "end": 471.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 471.98, + "end": 472.1, + "probability": 0.9677734375 + }, + { + "word": " the", + "start": 472.1, + "end": 472.18, + "probability": 0.96533203125 + }, + { + "word": " love", + "start": 472.18, + "end": 472.34, + "probability": 0.9267578125 + }, + { + "word": " doctor?", + "start": 472.34, + "end": 472.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 239, + "text": "Yeah, Dr. Drew is a love life.", + "start": 472.7, + "end": 474.1, + "words": [ + { + "word": " Yeah,", + "start": 472.7, + "end": 472.86, + "probability": 0.99560546875 + }, + { + "word": " Dr.", + "start": 472.9, + "end": 473.2, + "probability": 1.0 + }, + { + "word": " Drew", + "start": 473.28, + "end": 473.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 473.5, + "end": 473.68, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 473.68, + "end": 473.7, + "probability": 0.92041015625 + }, + { + "word": " love", + "start": 473.7, + "end": 473.9, + "probability": 0.99462890625 + }, + { + "word": " life.", + "start": 473.9, + "end": 474.1, + "probability": 0.149658203125 + } + ] + }, + { + "id": 240, + "text": "Yeah, yeah.", + "start": 474.1, + "end": 474.48, + "words": [ + { + "word": " Yeah,", + "start": 474.1, + "end": 474.32, + "probability": 0.9951171875 + }, + { + "word": " yeah.", + "start": 474.32, + "end": 474.48, + "probability": 1.0 + } + ] + }, + { + "id": 241, + "text": "The depressed guy is, what's his name?", + "start": 474.48, + "end": 477.48, + "words": [ + { + "word": " The", + "start": 474.48, + "end": 474.98, + "probability": 0.443603515625 + }, + { + "word": " depressed", + "start": 474.98, + "end": 475.28, + "probability": 0.6845703125 + }, + { + "word": " guy", + "start": 475.28, + "end": 475.7, + "probability": 0.9990234375 + }, + { + "word": " is,", + "start": 475.7, + "end": 476.46, + "probability": 0.9931640625 + }, + { + "word": " what's", + "start": 476.76, + "end": 477.1, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 477.1, + "end": 477.22, + "probability": 1.0 + }, + { + "word": " name?", + "start": 477.22, + "end": 477.48, + "probability": 1.0 + } + ] + }, + { + "id": 242, + "text": "I don't know.", + "start": 477.54, + "end": 477.96, + "words": [ + { + "word": " I", + "start": 477.54, + "end": 477.66, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 477.66, + "end": 477.84, + "probability": 1.0 + }, + { + "word": " know.", + "start": 477.84, + "end": 477.96, + "probability": 1.0 + } + ] + }, + { + "id": 243, + "text": "He's on Oprah all the time.", + "start": 478.0, + "end": 478.8, + "words": [ + { + "word": " He's", + "start": 478.0, + "end": 478.1, + "probability": 0.98046875 + }, + { + "word": " on", + "start": 478.1, + "end": 478.16, + "probability": 0.9990234375 + }, + { + "word": " Oprah", + "start": 478.16, + "end": 478.38, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 478.38, + "end": 478.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 478.56, + "end": 478.64, + "probability": 1.0 + }, + { + "word": " time.", + "start": 478.64, + "end": 478.8, + "probability": 1.0 + } + ] + }, + { + "id": 244, + "text": "Is that Dr. Phil?", + "start": 478.92, + "end": 479.44, + "words": [ + { + "word": " Is", + "start": 478.92, + "end": 479.0, + "probability": 0.278076171875 + }, + { + "word": " that", + "start": 479.0, + "end": 479.0, + "probability": 0.459716796875 + }, + { + "word": " Dr.", + "start": 479.0, + "end": 479.24, + "probability": 0.99853515625 + }, + { + "word": " Phil?", + "start": 479.26, + "end": 479.44, + "probability": 0.96728515625 + } + ] + }, + { + "id": 245, + "text": "Yeah, Dr. Phil.", + "start": 479.52, + "end": 480.38, + "words": [ + { + "word": " Yeah,", + "start": 479.52, + "end": 479.88, + "probability": 0.9765625 + }, + { + "word": " Dr.", + "start": 479.9, + "end": 480.12, + "probability": 1.0 + }, + { + "word": " Phil.", + "start": 480.16, + "end": 480.38, + "probability": 1.0 + } + ] + }, + { + "id": 246, + "text": "No, no, no.", + "start": 480.46, + "end": 480.9, + "words": [ + { + "word": " No,", + "start": 480.46, + "end": 480.66, + "probability": 0.99658203125 + }, + { + "word": " no,", + "start": 480.68, + "end": 480.78, + "probability": 0.99951171875 + }, + { + "word": " no.", + "start": 480.84, + "end": 480.9, + "probability": 1.0 + } + ] + }, + { + "id": 247, + "text": "The guy that you call when you're depressed on the radio.", + "start": 480.98, + "end": 483.88, + "words": [ + { + "word": " The", + "start": 480.98, + "end": 481.2, + "probability": 0.9990234375 + }, + { + "word": " guy", + "start": 481.2, + "end": 481.56, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 481.56, + "end": 482.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 482.28, + "end": 482.42, + "probability": 1.0 + }, + { + "word": " call", + "start": 482.42, + "end": 482.6, + "probability": 1.0 + }, + { + "word": " when", + "start": 482.6, + "end": 482.76, + "probability": 1.0 + }, + { + "word": " you're", + "start": 482.76, + "end": 482.9, + "probability": 1.0 + }, + { + "word": " depressed", + "start": 482.9, + "end": 483.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 483.14, + "end": 483.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 483.48, + "end": 483.58, + "probability": 1.0 + }, + { + "word": " radio.", + "start": 483.58, + "end": 483.88, + "probability": 1.0 + } + ] + }, + { + "id": 248, + "text": "Oh, I've heard his show in the middle of the night.", + "start": 484.22, + "end": 486.18, + "words": [ + { + "word": " Oh,", + "start": 484.22, + "end": 484.58, + "probability": 0.89208984375 + }, + { + "word": " I've", + "start": 484.6, + "end": 484.78, + "probability": 0.7626953125 + }, + { + "word": " heard", + "start": 484.78, + "end": 484.96, + "probability": 0.99755859375 + }, + { + "word": " his", + "start": 484.96, + "end": 485.2, + "probability": 0.98046875 + }, + { + "word": " show", + "start": 485.2, + "end": 485.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 485.48, + "end": 485.62, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 485.62, + "end": 485.66, + "probability": 1.0 + }, + { + "word": " middle", + "start": 485.66, + "end": 485.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 485.84, + "end": 485.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 485.92, + "end": 486.0, + "probability": 1.0 + }, + { + "word": " night.", + "start": 486.0, + "end": 486.18, + "probability": 1.0 + } + ] + }, + { + "id": 249, + "text": "It's on like really late at night, Sunday nights.", + "start": 486.26, + "end": 488.26, + "words": [ + { + "word": " It's", + "start": 486.26, + "end": 486.62, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 486.62, + "end": 486.72, + "probability": 0.9873046875 + }, + { + "word": " like", + "start": 486.72, + "end": 486.88, + "probability": 0.56396484375 + }, + { + "word": " really", + "start": 486.88, + "end": 487.12, + "probability": 0.97021484375 + }, + { + "word": " late", + "start": 487.12, + "end": 487.4, + "probability": 1.0 + }, + { + "word": " at", + "start": 487.4, + "end": 487.5, + "probability": 0.99365234375 + }, + { + "word": " night,", + "start": 487.5, + "end": 487.68, + "probability": 0.998046875 + }, + { + "word": " Sunday", + "start": 487.7, + "end": 487.92, + "probability": 0.99609375 + }, + { + "word": " nights.", + "start": 487.92, + "end": 488.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 250, + "text": "It's not very good.", + "start": 488.38, + "end": 489.26, + "words": [ + { + "word": " It's", + "start": 488.38, + "end": 488.74, + "probability": 1.0 + }, + { + "word": " not", + "start": 488.74, + "end": 488.88, + "probability": 1.0 + }, + { + "word": " very", + "start": 488.88, + "end": 489.04, + "probability": 1.0 + }, + { + "word": " good.", + "start": 489.04, + "end": 489.26, + "probability": 1.0 + } + ] + }, + { + "id": 251, + "text": "Oh, God.", + "start": 490.16, + "end": 490.76, + "words": [ + { + "word": " Oh,", + "start": 490.16, + "end": 490.52, + "probability": 0.202392578125 + }, + { + "word": " God.", + "start": 490.52, + "end": 490.76, + "probability": 0.340087890625 + } + ] + }, + { + "id": 252, + "text": "But the moral of the story is, call him when you're technology-prone.", + "start": 490.82, + "end": 493.38, + "words": [ + { + "word": " But", + "start": 490.82, + "end": 491.18, + "probability": 0.98291015625 + }, + { + "word": " the", + "start": 491.18, + "end": 491.28, + "probability": 0.99951171875 + }, + { + "word": " moral", + "start": 491.28, + "end": 491.44, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 491.44, + "end": 491.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 491.5, + "end": 491.54, + "probability": 1.0 + }, + { + "word": " story", + "start": 491.54, + "end": 491.82, + "probability": 1.0 + }, + { + "word": " is,", + "start": 491.82, + "end": 492.06, + "probability": 1.0 + }, + { + "word": " call", + "start": 492.1, + "end": 492.26, + "probability": 0.65234375 + }, + { + "word": " him", + "start": 492.26, + "end": 492.42, + "probability": 0.9091796875 + }, + { + "word": " when", + "start": 492.42, + "end": 492.52, + "probability": 0.86865234375 + }, + { + "word": " you're", + "start": 492.52, + "end": 492.6, + "probability": 0.9345703125 + }, + { + "word": " technology", + "start": 492.6, + "end": 492.88, + "probability": 0.7734375 + }, + { + "word": "-prone.", + "start": 492.88, + "end": 493.38, + "probability": 0.59912109375 + } + ] + }, + { + "id": 253, + "text": "It's not on this station, so I can say that.", + "start": 493.5, + "end": 494.12, + "words": [ + { + "word": " It's", + "start": 493.5, + "end": 493.5, + "probability": 0.869140625 + }, + { + "word": " not", + "start": 493.5, + "end": 493.5, + "probability": 0.97509765625 + }, + { + "word": " on", + "start": 493.5, + "end": 493.5, + "probability": 0.7412109375 + }, + { + "word": " this", + "start": 493.5, + "end": 493.5, + "probability": 0.4267578125 + }, + { + "word": " station,", + "start": 493.5, + "end": 493.5, + "probability": 0.67333984375 + }, + { + "word": " so", + "start": 493.5, + "end": 493.5, + "probability": 0.98486328125 + }, + { + "word": " I", + "start": 493.5, + "end": 493.5, + "probability": 1.0 + }, + { + "word": " can", + "start": 493.5, + "end": 493.72, + "probability": 0.99609375 + }, + { + "word": " say", + "start": 493.72, + "end": 493.94, + "probability": 0.99853515625 + }, + { + "word": " that.", + "start": 493.94, + "end": 494.12, + "probability": 1.0 + } + ] + }, + { + "id": 254, + "text": "I'm telling you, it's not like the Computer Guru show.", + "start": 494.18, + "end": 496.7, + "words": [ + { + "word": " I'm", + "start": 494.18, + "end": 494.34, + "probability": 0.9990234375 + }, + { + "word": " telling", + "start": 494.34, + "end": 494.6, + "probability": 1.0 + }, + { + "word": " you,", + "start": 494.6, + "end": 494.9, + "probability": 1.0 + }, + { + "word": " it's", + "start": 494.94, + "end": 495.16, + "probability": 1.0 + }, + { + "word": " not", + "start": 495.16, + "end": 495.5, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 495.5, + "end": 495.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 495.86, + "end": 496.0, + "probability": 0.8310546875 + }, + { + "word": " Computer", + "start": 496.0, + "end": 496.2, + "probability": 0.9296875 + }, + { + "word": " Guru", + "start": 496.2, + "end": 496.42, + "probability": 0.99169921875 + }, + { + "word": " show.", + "start": 496.42, + "end": 496.7, + "probability": 0.77685546875 + } + ] + }, + { + "id": 255, + "text": "Because our show is awesome.", + "start": 498.28, + "end": 499.72, + "words": [ + { + "word": " Because", + "start": 498.28, + "end": 498.64, + "probability": 0.250732421875 + }, + { + "word": " our", + "start": 498.64, + "end": 499.0, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 499.0, + "end": 499.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 499.26, + "end": 499.38, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 499.38, + "end": 499.72, + "probability": 1.0 + } + ] + }, + { + "id": 256, + "text": "If you have computer depression, we will be happy to take care of you.", + "start": 499.94, + "end": 503.1, + "words": [ + { + "word": " If", + "start": 499.94, + "end": 500.1, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 500.1, + "end": 500.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 500.22, + "end": 500.3, + "probability": 1.0 + }, + { + "word": " computer", + "start": 500.3, + "end": 500.7, + "probability": 1.0 + }, + { + "word": " depression,", + "start": 500.7, + "end": 501.54, + "probability": 1.0 + }, + { + "word": " we", + "start": 501.86, + "end": 501.96, + "probability": 1.0 + }, + { + "word": " will", + "start": 501.96, + "end": 502.1, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 502.1, + "end": 502.36, + "probability": 1.0 + }, + { + "word": " happy", + "start": 502.36, + "end": 502.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 502.58, + "end": 502.7, + "probability": 1.0 + }, + { + "word": " take", + "start": 502.7, + "end": 502.82, + "probability": 1.0 + }, + { + "word": " care", + "start": 502.82, + "end": 502.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 502.94, + "end": 503.04, + "probability": 1.0 + }, + { + "word": " you.", + "start": 503.04, + "end": 503.1, + "probability": 1.0 + } + ] + }, + { + "id": 257, + "text": "Computer depression.", + "start": 503.22, + "end": 503.88, + "words": [ + { + "word": " Computer", + "start": 503.22, + "end": 503.58, + "probability": 0.9892578125 + }, + { + "word": " depression.", + "start": 503.58, + "end": 503.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 258, + "text": "Your computer is like, aww.", + "start": 503.88, + "end": 504.84, + "words": [ + { + "word": " Your", + "start": 503.88, + "end": 504.06, + "probability": 0.8056640625 + }, + { + "word": " computer", + "start": 504.06, + "end": 504.28, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 504.28, + "end": 504.38, + "probability": 0.159423828125 + }, + { + "word": " like,", + "start": 504.38, + "end": 504.5, + "probability": 0.99609375 + }, + { + "word": " aww.", + "start": 504.5, + "end": 504.84, + "probability": 0.52099609375 + } + ] + }, + { + "id": 259, + "text": "That's right.", + "start": 504.86, + "end": 505.1, + "words": [ + { + "word": " That's", + "start": 504.86, + "end": 505.08, + "probability": 0.9912109375 + }, + { + "word": " right.", + "start": 505.08, + "end": 505.1, + "probability": 0.99755859375 + } + ] + }, + { + "id": 260, + "text": "We'll be the shrink for your computer.", + "start": 505.2, + "end": 506.76, + "words": [ + { + "word": " We'll", + "start": 505.2, + "end": 505.36, + "probability": 0.9306640625 + }, + { + "word": " be", + "start": 505.36, + "end": 505.4, + "probability": 0.5654296875 + }, + { + "word": " the", + "start": 505.4, + "end": 505.54, + "probability": 0.99951171875 + }, + { + "word": " shrink", + "start": 505.54, + "end": 505.86, + "probability": 0.99609375 + }, + { + "word": " for", + "start": 505.86, + "end": 506.2, + "probability": 1.0 + }, + { + "word": " your", + "start": 506.2, + "end": 506.38, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 506.38, + "end": 506.76, + "probability": 1.0 + } + ] + }, + { + "id": 261, + "text": "Your computer whisperer, is that what you say?", + "start": 507.02, + "end": 508.5, + "words": [ + { + "word": " Your", + "start": 507.02, + "end": 507.2, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 507.2, + "end": 507.44, + "probability": 0.99951171875 + }, + { + "word": " whisperer,", + "start": 507.44, + "end": 507.96, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 507.98, + "end": 508.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 508.1, + "end": 508.18, + "probability": 1.0 + }, + { + "word": " what", + "start": 508.18, + "end": 508.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 508.3, + "end": 508.36, + "probability": 1.0 + }, + { + "word": " say?", + "start": 508.36, + "end": 508.5, + "probability": 0.6923828125 + } + ] + }, + { + "id": 262, + "text": "All right, so this kid wanted an iPad.", + "start": 508.68, + "end": 510.78, + "words": [ + { + "word": " All", + "start": 508.68, + "end": 508.94, + "probability": 0.841796875 + }, + { + "word": " right,", + "start": 508.94, + "end": 509.04, + "probability": 1.0 + }, + { + "word": " so", + "start": 509.04, + "end": 509.16, + "probability": 1.0 + }, + { + "word": " this", + "start": 509.16, + "end": 509.3, + "probability": 0.99951171875 + }, + { + "word": " kid", + "start": 509.3, + "end": 509.52, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 509.52, + "end": 510.28, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 510.28, + "end": 510.52, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 510.52, + "end": 510.78, + "probability": 1.0 + } + ] + }, + { + "id": 263, + "text": "All right.", + "start": 511.5, + "end": 512.22, + "words": [ + { + "word": " All", + "start": 511.5, + "end": 511.86, + "probability": 0.95654296875 + }, + { + "word": " right.", + "start": 511.86, + "end": 512.22, + "probability": 1.0 + } + ] + }, + { + "id": 264, + "text": "I got another story to go with this one.", + "start": 512.4, + "end": 513.92, + "words": [ + { + "word": " I", + "start": 512.4, + "end": 512.76, + "probability": 0.99365234375 + }, + { + "word": " got", + "start": 512.76, + "end": 512.92, + "probability": 0.5771484375 + }, + { + "word": " another", + "start": 512.92, + "end": 513.06, + "probability": 0.98486328125 + }, + { + "word": " story", + "start": 513.06, + "end": 513.36, + "probability": 0.9853515625 + }, + { + "word": " to", + "start": 513.36, + "end": 513.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 513.48, + "end": 513.52, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 513.52, + "end": 513.62, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 513.62, + "end": 513.84, + "probability": 0.998046875 + }, + { + "word": " one.", + "start": 513.84, + "end": 513.92, + "probability": 0.96923828125 + } + ] + }, + { + "id": 265, + "text": "I'm changing the subject here.", + "start": 514.02, + "end": 514.84, + "words": [ + { + "word": " I'm", + "start": 514.02, + "end": 514.08, + "probability": 0.99853515625 + }, + { + "word": " changing", + "start": 514.08, + "end": 514.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 514.38, + "end": 514.56, + "probability": 1.0 + }, + { + "word": " subject", + "start": 514.56, + "end": 514.76, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 514.76, + "end": 514.84, + "probability": 0.8056640625 + } + ] + }, + { + "id": 266, + "text": "All right, go ahead.", + "start": 514.84, + "end": 515.22, + "words": [ + { + "word": " All", + "start": 514.84, + "end": 514.84, + "probability": 0.9814453125 + }, + { + "word": " right,", + "start": 514.84, + "end": 515.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 515.02, + "end": 515.1, + "probability": 0.99951171875 + }, + { + "word": " ahead.", + "start": 515.1, + "end": 515.22, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "Continue.", + "start": 515.28, + "end": 515.58, + "words": [ + { + "word": " Continue.", + "start": 515.28, + "end": 515.58, + "probability": 0.9951171875 + } + ] + }, + { + "id": 268, + "text": "There's this kid who really wanted an iPad.", + "start": 516.02, + "end": 517.6, + "words": [ + { + "word": " There's", + "start": 516.02, + "end": 516.38, + "probability": 0.826171875 + }, + { + "word": " this", + "start": 516.38, + "end": 516.42, + "probability": 1.0 + }, + { + "word": " kid", + "start": 516.42, + "end": 516.62, + "probability": 1.0 + }, + { + "word": " who", + "start": 516.62, + "end": 516.72, + "probability": 1.0 + }, + { + "word": " really", + "start": 516.72, + "end": 516.92, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 516.92, + "end": 517.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 517.16, + "end": 517.32, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 517.32, + "end": 517.6, + "probability": 1.0 + } + ] + }, + { + "id": 269, + "text": "All right.", + "start": 517.82, + "end": 518.12, + "words": [ + { + "word": " All", + "start": 517.82, + "end": 518.02, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 518.02, + "end": 518.12, + "probability": 1.0 + } + ] + }, + { + "id": 270, + "text": "A lot.", + "start": 518.2, + "end": 518.8, + "words": [ + { + "word": " A", + "start": 518.2, + "end": 518.56, + "probability": 0.99853515625 + }, + { + "word": " lot.", + "start": 518.56, + "end": 518.8, + "probability": 1.0 + } + ] + }, + { + "id": 271, + "text": "Okay.", + "start": 518.92, + "end": 519.28, + "words": [ + { + "word": " Okay.", + "start": 518.92, + "end": 519.28, + "probability": 0.92724609375 + } + ] + }, + { + "id": 272, + "text": "All right.", + "start": 519.44, + "end": 519.78, + "words": [ + { + "word": " All", + "start": 519.44, + "end": 519.64, + "probability": 0.896484375 + }, + { + "word": " right.", + "start": 519.64, + "end": 519.78, + "probability": 1.0 + } + ] + }, + { + "id": 273, + "text": "But he didn't have enough money.", + "start": 519.96, + "end": 521.08, + "words": [ + { + "word": " But", + "start": 519.96, + "end": 520.32, + "probability": 0.99609375 + }, + { + "word": " he", + "start": 520.32, + "end": 520.46, + "probability": 0.9990234375 + }, + { + "word": " didn't", + "start": 520.46, + "end": 520.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 520.64, + "end": 520.72, + "probability": 1.0 + }, + { + "word": " enough", + "start": 520.72, + "end": 520.86, + "probability": 1.0 + }, + { + "word": " money.", + "start": 520.86, + "end": 521.08, + "probability": 1.0 + } + ] + }, + { + "id": 274, + "text": "By the way, he lives in China.", + "start": 521.16, + "end": 522.26, + "words": [ + { + "word": " By", + "start": 521.16, + "end": 521.52, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 521.52, + "end": 521.64, + "probability": 1.0 + }, + { + "word": " way,", + "start": 521.64, + "end": 521.72, + "probability": 1.0 + }, + { + "word": " he", + "start": 521.74, + "end": 521.76, + "probability": 1.0 + }, + { + "word": " lives", + "start": 521.76, + "end": 521.9, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 521.9, + "end": 522.02, + "probability": 1.0 + }, + { + "word": " China.", + "start": 522.02, + "end": 522.26, + "probability": 1.0 + } + ] + }, + { + "id": 275, + "text": "He didn't have enough money for the iPad.", + "start": 523.64, + "end": 525.8, + "words": [ + { + "word": " He", + "start": 523.64, + "end": 524.0, + "probability": 0.9775390625 + }, + { + "word": " didn't", + "start": 524.0, + "end": 524.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 524.26, + "end": 524.36, + "probability": 1.0 + }, + { + "word": " enough", + "start": 524.36, + "end": 524.56, + "probability": 1.0 + }, + { + "word": " money", + "start": 524.56, + "end": 524.88, + "probability": 1.0 + }, + { + "word": " for", + "start": 524.88, + "end": 525.16, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 525.16, + "end": 525.44, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 525.44, + "end": 525.8, + "probability": 1.0 + } + ] + }, + { + "id": 276, + "text": "Okay.", + "start": 526.44, + "end": 526.8, + "words": [ + { + "word": " Okay.", + "start": 526.44, + "end": 526.8, + "probability": 0.9716796875 + } + ] + }, + { + "id": 277, + "text": "So.", + "start": 527.28, + "end": 527.64, + "words": [ + { + "word": " So.", + "start": 527.28, + "end": 527.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 278, + "text": "So he went to work for Foxconn and sold one?", + "start": 527.64, + "end": 529.66, + "words": [ + { + "word": " So", + "start": 527.64, + "end": 528.0, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 528.0, + "end": 528.06, + "probability": 0.50048828125 + }, + { + "word": " went", + "start": 528.06, + "end": 528.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 528.32, + "end": 528.4, + "probability": 1.0 + }, + { + "word": " work", + "start": 528.4, + "end": 528.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 528.52, + "end": 528.64, + "probability": 1.0 + }, + { + "word": " Foxconn", + "start": 528.64, + "end": 529.1, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 529.1, + "end": 529.24, + "probability": 0.99951171875 + }, + { + "word": " sold", + "start": 529.24, + "end": 529.46, + "probability": 0.95849609375 + }, + { + "word": " one?", + "start": 529.46, + "end": 529.66, + "probability": 0.98046875 + } + ] + }, + { + "id": 279, + "text": "No.", + "start": 529.92, + "end": 530.28, + "words": [ + { + "word": " No.", + "start": 529.92, + "end": 530.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 280, + "text": "Oh.", + "start": 530.4, + "end": 530.56, + "words": [ + { + "word": " Oh.", + "start": 530.4, + "end": 530.56, + "probability": 0.86572265625 + } + ] + }, + { + "id": 281, + "text": "He sold one of his kidneys.", + "start": 530.88, + "end": 532.78, + "words": [ + { + "word": " He", + "start": 530.88, + "end": 531.24, + "probability": 0.98779296875 + }, + { + "word": " sold", + "start": 531.24, + "end": 531.78, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 531.78, + "end": 532.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 532.06, + "end": 532.22, + "probability": 1.0 + }, + { + "word": " his", + "start": 532.22, + "end": 532.4, + "probability": 1.0 + }, + { + "word": " kidneys.", + "start": 532.4, + "end": 532.78, + "probability": 1.0 + } + ] + }, + { + "id": 282, + "text": "All right.", + "start": 534.22, + "end": 534.68, + "words": [ + { + "word": " All", + "start": 534.22, + "end": 534.62, + "probability": 0.498291015625 + }, + { + "word": " right.", + "start": 534.62, + "end": 534.68, + "probability": 1.0 + } + ] + }, + { + "id": 283, + "text": "Sold it.", + "start": 534.72, + "end": 535.16, + "words": [ + { + "word": " Sold", + "start": 534.72, + "end": 534.9, + "probability": 0.9658203125 + }, + { + "word": " it.", + "start": 534.9, + "end": 535.16, + "probability": 1.0 + } + ] + }, + { + "id": 284, + "text": "Didn't donate it.", + "start": 535.22, + "end": 536.2, + "words": [ + { + "word": " Didn't", + "start": 535.22, + "end": 535.62, + "probability": 1.0 + }, + { + "word": " donate", + "start": 535.62, + "end": 535.9, + "probability": 1.0 + }, + { + "word": " it.", + "start": 535.9, + "end": 536.2, + "probability": 1.0 + } + ] + }, + { + "id": 285, + "text": "In China?", + "start": 536.6800000000001, + "end": 537.4, + "words": [ + { + "word": " In", + "start": 536.6800000000001, + "end": 537.08, + "probability": 0.99951171875 + }, + { + "word": " China?", + "start": 537.08, + "end": 537.4, + "probability": 1.0 + } + ] + }, + { + "id": 286, + "text": "In China.", + "start": 537.54, + "end": 538.1, + "words": [ + { + "word": " In", + "start": 537.54, + "end": 537.78, + "probability": 0.9990234375 + }, + { + "word": " China.", + "start": 537.78, + "end": 538.1, + "probability": 1.0 + } + ] + }, + { + "id": 287, + "text": "Okay.", + "start": 539.0, + "end": 539.4, + "words": [ + { + "word": " Okay.", + "start": 539.0, + "end": 539.4, + "probability": 0.93603515625 + } + ] + }, + { + "id": 288, + "text": "All right.", + "start": 539.68, + "end": 540.02, + "words": [ + { + "word": " All", + "start": 539.68, + "end": 539.96, + "probability": 0.99755859375 + }, + { + "word": " right.", + "start": 539.96, + "end": 540.02, + "probability": 1.0 + } + ] + }, + { + "id": 289, + "text": "So you got about $4,300 for the iPad.", + "start": 540.04, + "end": 542.96, + "words": [ + { + "word": " So", + "start": 540.04, + "end": 540.12, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 540.12, + "end": 540.18, + "probability": 0.75927734375 + }, + { + "word": " got", + "start": 540.18, + "end": 540.26, + "probability": 0.9091796875 + }, + { + "word": " about", + "start": 540.26, + "end": 540.42, + "probability": 1.0 + }, + { + "word": " $4", + "start": 540.42, + "end": 540.56, + "probability": 0.998046875 + }, + { + "word": ",300", + "start": 540.56, + "end": 540.96, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 540.96, + "end": 541.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 541.58, + "end": 542.68, + "probability": 0.99951171875 + }, + { + "word": " iPad.", + "start": 542.68, + "end": 542.96, + "probability": 0.96435546875 + } + ] + }, + { + "id": 290, + "text": "For a U.S. equivalent.", + "start": 543.1, + "end": 544.3, + "words": [ + { + "word": " For", + "start": 543.1, + "end": 543.28, + "probability": 0.1580810546875 + }, + { + "word": " a", + "start": 543.28, + "end": 543.34, + "probability": 0.76904296875 + }, + { + "word": " U", + "start": 543.34, + "end": 543.9, + "probability": 0.296875 + }, + { + "word": ".S.", + "start": 543.9, + "end": 544.08, + "probability": 0.998046875 + }, + { + "word": " equivalent.", + "start": 544.08, + "end": 544.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 291, + "text": "A kidney.", + "start": 544.58, + "end": 545.1, + "words": [ + { + "word": " A", + "start": 544.58, + "end": 544.66, + "probability": 0.98388671875 + }, + { + "word": " kidney.", + "start": 544.66, + "end": 545.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 292, + "text": "For a kidney.", + "start": 545.34, + "end": 546.06, + "words": [ + { + "word": " For", + "start": 545.34, + "end": 545.6, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 545.6, + "end": 545.76, + "probability": 1.0 + }, + { + "word": " kidney.", + "start": 545.76, + "end": 546.06, + "probability": 1.0 + } + ] + }, + { + "id": 293, + "text": "Right.", + "start": 546.24, + "end": 546.42, + "words": [ + { + "word": " Right.", + "start": 546.24, + "end": 546.42, + "probability": 0.99462890625 + } + ] + }, + { + "id": 294, + "text": "A single kidney.", + "start": 546.54, + "end": 547.54, + "words": [ + { + "word": " A", + "start": 546.54, + "end": 546.94, + "probability": 0.99951171875 + }, + { + "word": " single", + "start": 546.94, + "end": 547.28, + "probability": 1.0 + }, + { + "word": " kidney.", + "start": 547.28, + "end": 547.54, + "probability": 1.0 + } + ] + }, + { + "id": 295, + "text": "Okay.", + "start": 547.74, + "end": 548.0, + "words": [ + { + "word": " Okay.", + "start": 547.74, + "end": 548.0, + "probability": 0.9921875 + } + ] + }, + { + "id": 296, + "text": "Well, I can't sell both of them.", + "start": 548.16, + "end": 549.5, + "words": [ + { + "word": " Well,", + "start": 548.16, + "end": 548.56, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 548.62, + "end": 548.7, + "probability": 1.0 + }, + { + "word": " can't", + "start": 548.7, + "end": 548.9, + "probability": 0.96484375 + }, + { + "word": " sell", + "start": 548.9, + "end": 549.0, + "probability": 0.9990234375 + }, + { + "word": " both", + "start": 549.0, + "end": 549.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 549.24, + "end": 549.36, + "probability": 1.0 + }, + { + "word": " them.", + "start": 549.36, + "end": 549.5, + "probability": 1.0 + } + ] + }, + { + "id": 297, + "text": "All right.", + "start": 549.58, + "end": 549.86, + "words": [ + { + "word": " All", + "start": 549.58, + "end": 549.78, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 549.78, + "end": 549.86, + "probability": 1.0 + } + ] + }, + { + "id": 298, + "text": "He's kind of regretting the move now.", + "start": 550.26, + "end": 552.48, + "words": [ + { + "word": " He's", + "start": 550.26, + "end": 550.66, + "probability": 0.99755859375 + }, + { + "word": " kind", + "start": 550.66, + "end": 550.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 550.84, + "end": 550.96, + "probability": 1.0 + }, + { + "word": " regretting", + "start": 550.96, + "end": 551.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 551.32, + "end": 551.46, + "probability": 1.0 + }, + { + "word": " move", + "start": 551.46, + "end": 551.96, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 551.96, + "end": 552.48, + "probability": 1.0 + } + ] + }, + { + "id": 299, + "text": "He does have an iPad and some extra spending cash.", + "start": 552.62, + "end": 555.92, + "words": [ + { + "word": " He", + "start": 552.62, + "end": 552.8, + "probability": 0.9990234375 + }, + { + "word": " does", + "start": 552.8, + "end": 553.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 553.0, + "end": 553.24, + "probability": 1.0 + }, + { + "word": " an", + "start": 553.24, + "end": 553.42, + "probability": 1.0 + }, + { + "word": " iPad", + "start": 553.42, + "end": 553.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 553.62, + "end": 554.76, + "probability": 0.64111328125 + }, + { + "word": " some", + "start": 554.76, + "end": 555.06, + "probability": 1.0 + }, + { + "word": " extra", + "start": 555.06, + "end": 555.28, + "probability": 1.0 + }, + { + "word": " spending", + "start": 555.28, + "end": 555.6, + "probability": 1.0 + }, + { + "word": " cash.", + "start": 555.6, + "end": 555.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 300, + "text": "Some walking around cash.", + "start": 556.02, + "end": 556.78, + "words": [ + { + "word": " Some", + "start": 556.02, + "end": 556.14, + "probability": 0.00649261474609375 + }, + { + "word": " walking", + "start": 556.14, + "end": 556.32, + "probability": 0.9970703125 + }, + { + "word": " around", + "start": 556.32, + "end": 556.5, + "probability": 0.9873046875 + }, + { + "word": " cash.", + "start": 556.5, + "end": 556.78, + "probability": 1.0 + } + ] + }, + { + "id": 301, + "text": "Okay.", + "start": 557.64, + "end": 558.04, + "words": [ + { + "word": " Okay.", + "start": 557.64, + "end": 558.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 302, + "text": "However, it turns out that the place that he went to go get his kidney removed at wasn't", + "start": 558.9200000000001, + "end": 563.86, + "words": [ + { + "word": " However,", + "start": 558.9200000000001, + "end": 559.32, + "probability": 0.986328125 + }, + { + "word": " it", + "start": 559.32, + "end": 559.72, + "probability": 0.99951171875 + }, + { + "word": " turns", + "start": 559.72, + "end": 559.94, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 559.94, + "end": 560.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 560.28, + "end": 560.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 560.44, + "end": 560.6, + "probability": 0.99951171875 + }, + { + "word": " place", + "start": 560.6, + "end": 561.34, + "probability": 0.9912109375 + }, + { + "word": " that", + "start": 561.34, + "end": 561.56, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 561.56, + "end": 561.62, + "probability": 0.99951171875 + }, + { + "word": " went", + "start": 561.62, + "end": 561.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 561.76, + "end": 561.84, + "probability": 1.0 + }, + { + "word": " go", + "start": 561.84, + "end": 561.92, + "probability": 0.994140625 + }, + { + "word": " get", + "start": 561.92, + "end": 562.04, + "probability": 1.0 + }, + { + "word": " his", + "start": 562.04, + "end": 562.18, + "probability": 1.0 + }, + { + "word": " kidney", + "start": 562.18, + "end": 562.34, + "probability": 0.99951171875 + }, + { + "word": " removed", + "start": 562.34, + "end": 562.64, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 562.64, + "end": 562.96, + "probability": 0.99951171875 + }, + { + "word": " wasn't", + "start": 562.96, + "end": 563.86, + "probability": 0.97119140625 + } + ] + }, + { + "id": 303, + "text": "equipped to deal with that type of surgery.", + "start": 563.88, + "end": 565.22, + "words": [ + { + "word": " equipped", + "start": 563.88, + "end": 564.0, + "probability": 0.352294921875 + }, + { + "word": " to", + "start": 564.0, + "end": 564.26, + "probability": 0.998046875 + }, + { + "word": " deal", + "start": 564.26, + "end": 564.4, + "probability": 0.99462890625 + }, + { + "word": " with", + "start": 564.4, + "end": 564.5, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 564.5, + "end": 564.64, + "probability": 0.9970703125 + }, + { + "word": " type", + "start": 564.64, + "end": 564.82, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 564.82, + "end": 564.92, + "probability": 0.9990234375 + }, + { + "word": " surgery.", + "start": 564.92, + "end": 565.22, + "probability": 0.9970703125 + } + ] + }, + { + "id": 304, + "text": "Wait.", + "start": 565.5, + "end": 565.9, + "words": [ + { + "word": " Wait.", + "start": 565.5, + "end": 565.9, + "probability": 0.9560546875 + } + ] + }, + { + "id": 305, + "text": "So you're actually telling me that such a place exists where you go and sell a human", + "start": 565.96, + "end": 570.18, + "words": [ + { + "word": " So", + "start": 565.96, + "end": 566.16, + "probability": 0.958984375 + }, + { + "word": " you're", + "start": 566.16, + "end": 566.62, + "probability": 0.83154296875 + }, + { + "word": " actually", + "start": 566.62, + "end": 566.86, + "probability": 0.97802734375 + }, + { + "word": " telling", + "start": 566.86, + "end": 567.06, + "probability": 0.99755859375 + }, + { + "word": " me", + "start": 567.06, + "end": 567.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 567.2, + "end": 567.32, + "probability": 0.55517578125 + }, + { + "word": " such", + "start": 567.32, + "end": 567.58, + "probability": 0.978515625 + }, + { + "word": " a", + "start": 567.58, + "end": 567.7, + "probability": 0.99853515625 + }, + { + "word": " place", + "start": 567.7, + "end": 567.84, + "probability": 0.998046875 + }, + { + "word": " exists", + "start": 567.84, + "end": 568.12, + "probability": 0.9833984375 + }, + { + "word": " where", + "start": 568.12, + "end": 568.38, + "probability": 0.58203125 + }, + { + "word": " you", + "start": 568.38, + "end": 568.56, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 568.56, + "end": 568.78, + "probability": 0.6318359375 + }, + { + "word": " and", + "start": 568.78, + "end": 568.94, + "probability": 0.99267578125 + }, + { + "word": " sell", + "start": 568.94, + "end": 569.2, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 569.2, + "end": 569.84, + "probability": 0.9013671875 + }, + { + "word": " human", + "start": 569.84, + "end": 570.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 306, + "text": "body part?", + "start": 570.18, + "end": 570.72, + "words": [ + { + "word": " body", + "start": 570.18, + "end": 570.5, + "probability": 0.99951171875 + }, + { + "word": " part?", + "start": 570.5, + "end": 570.72, + "probability": 0.9541015625 + } + ] + }, + { + "id": 307, + "text": "There's a market for body parts in China.", + "start": 570.74, + "end": 572.54, + "words": [ + { + "word": " There's", + "start": 570.74, + "end": 570.8, + "probability": 0.98974609375 + }, + { + "word": " a", + "start": 570.8, + "end": 570.8, + "probability": 0.998046875 + }, + { + "word": " market", + "start": 570.8, + "end": 571.24, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 571.24, + "end": 571.5, + "probability": 0.99951171875 + }, + { + "word": " body", + "start": 571.5, + "end": 571.74, + "probability": 0.9951171875 + }, + { + "word": " parts", + "start": 571.74, + "end": 572.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 572.06, + "end": 572.24, + "probability": 0.9990234375 + }, + { + "word": " China.", + "start": 572.24, + "end": 572.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 308, + "text": "It wasn't a good enough place?", + "start": 572.62, + "end": 574.1, + "words": [ + { + "word": " It", + "start": 572.62, + "end": 572.9, + "probability": 0.9833984375 + }, + { + "word": " wasn't", + "start": 572.9, + "end": 573.32, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 573.32, + "end": 573.38, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 573.38, + "end": 573.58, + "probability": 0.99951171875 + }, + { + "word": " enough", + "start": 573.58, + "end": 573.78, + "probability": 0.9990234375 + }, + { + "word": " place?", + "start": 573.78, + "end": 574.1, + "probability": 1.0 + } + ] + }, + { + "id": 309, + "text": "Apparently, it was on like China's version of Craigslist.", + "start": 574.74, + "end": 577.52, + "words": [ + { + "word": " Apparently,", + "start": 574.74, + "end": 575.14, + "probability": 0.99169921875 + }, + { + "word": " it", + "start": 575.3, + "end": 575.58, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 575.58, + "end": 575.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 575.72, + "end": 575.92, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 575.92, + "end": 576.14, + "probability": 0.34814453125 + }, + { + "word": " China's", + "start": 576.14, + "end": 576.8, + "probability": 0.607421875 + }, + { + "word": " version", + "start": 576.8, + "end": 576.96, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 576.96, + "end": 577.14, + "probability": 0.99951171875 + }, + { + "word": " Craigslist.", + "start": 577.14, + "end": 577.52, + "probability": 0.99365234375 + } + ] + }, + { + "id": 310, + "text": "What do you do?", + "start": 577.6, + "end": 578.12, + "words": [ + { + "word": " What", + "start": 577.6, + "end": 577.8, + "probability": 0.7919921875 + }, + { + "word": " do", + "start": 577.8, + "end": 577.94, + "probability": 0.79736328125 + }, + { + "word": " you", + "start": 577.94, + "end": 578.02, + "probability": 0.99951171875 + }, + { + "word": " do?", + "start": 578.02, + "end": 578.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 311, + "text": "Wake up in a tub of ice?", + "start": 578.18, + "end": 579.26, + "words": [ + { + "word": " Wake", + "start": 578.18, + "end": 578.36, + "probability": 0.9912109375 + }, + { + "word": " up", + "start": 578.36, + "end": 578.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 578.5, + "end": 578.62, + "probability": 0.9853515625 + }, + { + "word": " a", + "start": 578.62, + "end": 578.66, + "probability": 0.99951171875 + }, + { + "word": " tub", + "start": 578.66, + "end": 578.86, + "probability": 0.4111328125 + }, + { + "word": " of", + "start": 578.86, + "end": 578.98, + "probability": 0.99951171875 + }, + { + "word": " ice?", + "start": 578.98, + "end": 579.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 312, + "text": "No, no, no, no.", + "start": 579.52, + "end": 580.0, + "words": [ + { + "word": " No,", + "start": 579.52, + "end": 579.66, + "probability": 0.99365234375 + }, + { + "word": " no,", + "start": 579.66, + "end": 579.82, + "probability": 0.99951171875 + }, + { + "word": " no,", + "start": 579.82, + "end": 579.96, + "probability": 0.99951171875 + }, + { + "word": " no.", + "start": 580.0, + "end": 580.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 313, + "text": "They actually perform the procedure.", + "start": 580.5, + "end": 581.82, + "words": [ + { + "word": " They", + "start": 580.5, + "end": 580.9, + "probability": 0.8779296875 + }, + { + "word": " actually", + "start": 580.9, + "end": 581.3, + "probability": 0.99951171875 + }, + { + "word": " perform", + "start": 581.3, + "end": 581.6, + "probability": 0.8583984375 + }, + { + "word": " the", + "start": 581.6, + "end": 581.82, + "probability": 0.82470703125 + }, + { + "word": " procedure.", + "start": 581.82, + "end": 581.82, + "probability": 0.99462890625 + } + ] + }, + { + "id": 314, + "text": "Is this like, is this the guy that went to China to have the kidney removed?", + "start": 581.82, + "end": 584.48, + "words": [ + { + "word": " Is", + "start": 581.82, + "end": 582.16, + "probability": 0.99560546875 + }, + { + "word": " this", + "start": 582.16, + "end": 582.16, + "probability": 0.99853515625 + }, + { + "word": " like,", + "start": 582.16, + "end": 582.2, + "probability": 0.1607666015625 + }, + { + "word": " is", + "start": 582.3, + "end": 582.68, + "probability": 0.99365234375 + }, + { + "word": " this", + "start": 582.68, + "end": 582.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 582.84, + "end": 582.92, + "probability": 0.33544921875 + }, + { + "word": " guy", + "start": 582.92, + "end": 583.06, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 583.06, + "end": 583.16, + "probability": 0.9990234375 + }, + { + "word": " went", + "start": 583.16, + "end": 583.38, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 583.38, + "end": 583.6, + "probability": 1.0 + }, + { + "word": " China", + "start": 583.6, + "end": 583.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 583.84, + "end": 584.04, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 584.04, + "end": 584.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 584.42, + "end": 584.48, + "probability": 0.375 + }, + { + "word": " kidney", + "start": 584.48, + "end": 584.48, + "probability": 0.00017762184143066406 + }, + { + "word": " removed?", + "start": 584.48, + "end": 584.48, + "probability": 0.005985260009765625 + } + ] + }, + { + "id": 315, + "text": "No, no, no.", + "start": 584.48, + "end": 584.84, + "words": [ + { + "word": " No,", + "start": 584.48, + "end": 584.62, + "probability": 0.97607421875 + }, + { + "word": " no,", + "start": 584.66, + "end": 584.7, + "probability": 0.99560546875 + }, + { + "word": " no.", + "start": 584.7, + "end": 584.84, + "probability": 0.9912109375 + } + ] + }, + { + "id": 316, + "text": "He's from China.", + "start": 585.02, + "end": 585.56, + "words": [ + { + "word": " He's", + "start": 585.02, + "end": 585.3, + "probability": 0.90625 + }, + { + "word": " from", + "start": 585.3, + "end": 585.3, + "probability": 0.75341796875 + }, + { + "word": " China.", + "start": 585.3, + "end": 585.56, + "probability": 0.994140625 + } + ] + }, + { + "id": 317, + "text": "Oh, okay.", + "start": 585.78, + "end": 586.48, + "words": [ + { + "word": " Oh,", + "start": 585.78, + "end": 586.16, + "probability": 0.94482421875 + }, + { + "word": " okay.", + "start": 586.26, + "end": 586.48, + "probability": 0.96337890625 + } + ] + }, + { + "id": 318, + "text": "His mom's really mad now because he's dying.", + "start": 586.62, + "end": 590.24, + "words": [ + { + "word": " His", + "start": 586.62, + "end": 586.98, + "probability": 0.99853515625 + }, + { + "word": " mom's", + "start": 586.98, + "end": 587.32, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 587.32, + "end": 587.48, + "probability": 1.0 + }, + { + "word": " mad", + "start": 587.48, + "end": 587.78, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 587.78, + "end": 588.02, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 588.02, + "end": 588.62, + "probability": 0.7451171875 + }, + { + "word": " he's", + "start": 588.62, + "end": 589.94, + "probability": 1.0 + }, + { + "word": " dying.", + "start": 589.94, + "end": 590.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 319, + "text": "Really?", + "start": 591.38, + "end": 591.78, + "words": [ + { + "word": " Really?", + "start": 591.38, + "end": 591.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 320, + "text": "I mean, he's like, wow.", + "start": 591.86, + "end": 593.0, + "words": [ + { + "word": " I", + "start": 591.86, + "end": 592.18, + "probability": 0.9189453125 + }, + { + "word": " mean,", + "start": 592.18, + "end": 592.24, + "probability": 0.9990234375 + }, + { + "word": " he's", + "start": 592.3, + "end": 592.38, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 592.38, + "end": 592.5, + "probability": 0.99951171875 + }, + { + "word": " wow.", + "start": 592.56, + "end": 593.0, + "probability": 0.9951171875 + } + ] + }, + { + "id": 321, + "text": "His health is deteriorating?", + "start": 593.0, + "end": 594.36, + "words": [ + { + "word": " His", + "start": 593.0, + "end": 593.24, + "probability": 0.10821533203125 + }, + { + "word": " health", + "start": 593.24, + "end": 593.66, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 593.66, + "end": 593.8, + "probability": 0.99560546875 + }, + { + "word": " deteriorating?", + "start": 593.8, + "end": 594.36, + "probability": 1.0 + } + ] + }, + { + "id": 322, + "text": "His health is deteriorating at a rapid clip.", + "start": 594.36, + "end": 596.22, + "words": [ + { + "word": " His", + "start": 594.36, + "end": 594.52, + "probability": 0.97412109375 + }, + { + "word": " health", + "start": 594.52, + "end": 594.7, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 594.7, + "end": 594.9, + "probability": 0.99951171875 + }, + { + "word": " deteriorating", + "start": 594.9, + "end": 595.56, + "probability": 1.0 + }, + { + "word": " at", + "start": 595.56, + "end": 595.68, + "probability": 0.98583984375 + }, + { + "word": " a", + "start": 595.68, + "end": 595.76, + "probability": 0.99853515625 + }, + { + "word": " rapid", + "start": 595.76, + "end": 596.0, + "probability": 0.9990234375 + }, + { + "word": " clip.", + "start": 596.0, + "end": 596.22, + "probability": 0.96044921875 + } + ] + }, + { + "id": 323, + "text": "Wow.", + "start": 596.4, + "end": 596.68, + "words": [ + { + "word": " Wow.", + "start": 596.4, + "end": 596.68, + "probability": 0.615234375 + } + ] + }, + { + "id": 324, + "text": "All right.", + "start": 596.96, + "end": 597.24, + "words": [ + { + "word": " All", + "start": 596.96, + "end": 597.22, + "probability": 0.42578125 + }, + { + "word": " right.", + "start": 597.22, + "end": 597.24, + "probability": 1.0 + } + ] + }, + { + "id": 325, + "text": "So it turns out that they didn't have the right equipment to remove.", + "start": 597.32, + "end": 601.1, + "words": [ + { + "word": " So", + "start": 597.32, + "end": 597.58, + "probability": 0.9482421875 + }, + { + "word": " it", + "start": 597.58, + "end": 597.94, + "probability": 0.74609375 + }, + { + "word": " turns", + "start": 597.94, + "end": 598.2, + "probability": 1.0 + }, + { + "word": " out", + "start": 598.2, + "end": 598.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 598.48, + "end": 598.64, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 598.64, + "end": 598.98, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 598.98, + "end": 599.42, + "probability": 1.0 + }, + { + "word": " have", + "start": 599.42, + "end": 599.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 599.58, + "end": 599.8, + "probability": 1.0 + }, + { + "word": " right", + "start": 599.8, + "end": 599.94, + "probability": 1.0 + }, + { + "word": " equipment", + "start": 599.94, + "end": 600.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 600.3, + "end": 600.7, + "probability": 1.0 + }, + { + "word": " remove.", + "start": 600.7, + "end": 601.1, + "probability": 1.0 + } + ] + }, + { + "id": 326, + "text": "Can't be done with this equipment.", + "start": 602.1, + "end": 603.6, + "words": [ + { + "word": " Can't", + "start": 602.1, + "end": 602.54, + "probability": 0.9853515625 + }, + { + "word": " be", + "start": 602.54, + "end": 602.72, + "probability": 1.0 + }, + { + "word": " done", + "start": 602.72, + "end": 602.92, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 602.92, + "end": 603.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 603.14, + "end": 603.3, + "probability": 1.0 + }, + { + "word": " equipment.", + "start": 603.3, + "end": 603.6, + "probability": 1.0 + } + ] + }, + { + "id": 327, + "text": "That's right.", + "start": 603.76, + "end": 604.16, + "words": [ + { + "word": " That's", + "start": 603.76, + "end": 604.08, + "probability": 0.99267578125 + }, + { + "word": " right.", + "start": 604.08, + "end": 604.16, + "probability": 1.0 + } + ] + }, + { + "id": 328, + "text": "So it turns out that X-Acto knives and duct tape, not the way to go when getting a kidney", + "start": 604.8199999999999, + "end": 609.66, + "words": [ + { + "word": " So", + "start": 604.8199999999999, + "end": 605.26, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 605.26, + "end": 605.7, + "probability": 0.99951171875 + }, + { + "word": " turns", + "start": 605.7, + "end": 606.16, + "probability": 1.0 + }, + { + "word": " out", + "start": 606.16, + "end": 606.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 606.52, + "end": 606.66, + "probability": 1.0 + }, + { + "word": " X", + "start": 606.66, + "end": 606.78, + "probability": 0.64111328125 + }, + { + "word": "-Acto", + "start": 606.78, + "end": 607.04, + "probability": 0.9775390625 + }, + { + "word": " knives", + "start": 607.04, + "end": 607.18, + "probability": 0.974609375 + }, + { + "word": " and", + "start": 607.18, + "end": 607.38, + "probability": 0.9970703125 + }, + { + "word": " duct", + "start": 607.38, + "end": 607.58, + "probability": 0.9990234375 + }, + { + "word": " tape,", + "start": 607.58, + "end": 607.8, + "probability": 1.0 + }, + { + "word": " not", + "start": 607.9, + "end": 608.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 608.18, + "end": 608.42, + "probability": 1.0 + }, + { + "word": " way", + "start": 608.42, + "end": 608.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 608.6, + "end": 608.7, + "probability": 1.0 + }, + { + "word": " go", + "start": 608.7, + "end": 608.92, + "probability": 1.0 + }, + { + "word": " when", + "start": 608.92, + "end": 609.12, + "probability": 0.990234375 + }, + { + "word": " getting", + "start": 609.12, + "end": 609.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 609.3, + "end": 609.48, + "probability": 1.0 + }, + { + "word": " kidney", + "start": 609.48, + "end": 609.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 329, + "text": "removed.", + "start": 609.66, + "end": 609.94, + "words": [ + { + "word": " removed.", + "start": 609.66, + "end": 609.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 330, + "text": "Just totally not cool.", + "start": 610.34, + "end": 612.68, + "words": [ + { + "word": " Just", + "start": 610.34, + "end": 610.78, + "probability": 0.89794921875 + }, + { + "word": " totally", + "start": 610.78, + "end": 612.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 612.12, + "end": 612.42, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 612.42, + "end": 612.68, + "probability": 1.0 + } + ] + }, + { + "id": 331, + "text": "Oh, wow.", + "start": 613.36, + "end": 614.1, + "words": [ + { + "word": " Oh,", + "start": 613.36, + "end": 613.8, + "probability": 0.99951171875 + }, + { + "word": " wow.", + "start": 613.8, + "end": 614.1, + "probability": 0.99072265625 + } + ] + }, + { + "id": 332, + "text": "I mean, you know, I've never been to China, but I've seen lots of documentaries about", + "start": 614.26, + "end": 618.32, + "words": [ + { + "word": " I", + "start": 614.26, + "end": 614.44, + "probability": 0.9697265625 + }, + { + "word": " mean,", + "start": 614.44, + "end": 614.58, + "probability": 0.974609375 + }, + { + "word": " you", + "start": 614.64, + "end": 614.8, + "probability": 0.96044921875 + }, + { + "word": " know,", + "start": 614.8, + "end": 614.88, + "probability": 1.0 + }, + { + "word": " I've", + "start": 614.92, + "end": 615.14, + "probability": 1.0 + }, + { + "word": " never", + "start": 615.14, + "end": 615.48, + "probability": 1.0 + }, + { + "word": " been", + "start": 615.48, + "end": 615.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 615.78, + "end": 615.9, + "probability": 1.0 + }, + { + "word": " China,", + "start": 615.9, + "end": 616.14, + "probability": 1.0 + }, + { + "word": " but", + "start": 616.24, + "end": 616.84, + "probability": 1.0 + }, + { + "word": " I've", + "start": 616.84, + "end": 617.04, + "probability": 1.0 + }, + { + "word": " seen", + "start": 617.04, + "end": 617.24, + "probability": 1.0 + }, + { + "word": " lots", + "start": 617.24, + "end": 617.46, + "probability": 0.9912109375 + }, + { + "word": " of", + "start": 617.46, + "end": 617.56, + "probability": 1.0 + }, + { + "word": " documentaries", + "start": 617.56, + "end": 617.88, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 617.88, + "end": 618.32, + "probability": 1.0 + } + ] + }, + { + "id": 333, + "text": "China, and I can only imagine how bad it would be.", + "start": 618.32, + "end": 621.24, + "words": [ + { + "word": " China,", + "start": 618.32, + "end": 618.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 618.76, + "end": 619.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 619.18, + "end": 619.28, + "probability": 1.0 + }, + { + "word": " can", + "start": 619.28, + "end": 619.38, + "probability": 0.9990234375 + }, + { + "word": " only", + "start": 619.38, + "end": 619.56, + "probability": 1.0 + }, + { + "word": " imagine", + "start": 619.56, + "end": 620.0, + "probability": 1.0 + }, + { + "word": " how", + "start": 620.0, + "end": 620.46, + "probability": 1.0 + }, + { + "word": " bad", + "start": 620.46, + "end": 620.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 620.74, + "end": 620.92, + "probability": 1.0 + }, + { + "word": " would", + "start": 620.92, + "end": 621.02, + "probability": 1.0 + }, + { + "word": " be.", + "start": 621.02, + "end": 621.24, + "probability": 1.0 + } + ] + }, + { + "id": 334, + "text": "I mean, how, oh, I don't know.", + "start": 621.42, + "end": 622.98, + "words": [ + { + "word": " I", + "start": 621.42, + "end": 621.86, + "probability": 0.99755859375 + }, + { + "word": " mean,", + "start": 621.86, + "end": 622.08, + "probability": 0.99951171875 + }, + { + "word": " how,", + "start": 622.14, + "end": 622.32, + "probability": 0.482177734375 + }, + { + "word": " oh,", + "start": 622.42, + "end": 622.88, + "probability": 0.9580078125 + }, + { + "word": " I", + "start": 622.88, + "end": 622.98, + "probability": 0.1953125 + }, + { + "word": " don't", + "start": 622.98, + "end": 622.98, + "probability": 0.7021484375 + }, + { + "word": " know.", + "start": 622.98, + "end": 622.98, + "probability": 0.9521484375 + } + ] + }, + { + "id": 335, + "text": "", + "start": 622.98, + "end": 622.98, + "words": [] + }, + { + "id": 336, + "text": "How sterile the conditions would have to be.", + "start": 623.0, + "end": 624.66, + "words": [ + { + "word": " How", + "start": 623.0, + "end": 623.06, + "probability": 0.32275390625 + }, + { + "word": " sterile", + "start": 623.06, + "end": 623.68, + "probability": 0.7783203125 + }, + { + "word": " the", + "start": 623.68, + "end": 623.8, + "probability": 0.99609375 + }, + { + "word": " conditions", + "start": 623.8, + "end": 624.12, + "probability": 0.7177734375 + }, + { + "word": " would", + "start": 624.12, + "end": 624.36, + "probability": 0.79443359375 + }, + { + "word": " have", + "start": 624.36, + "end": 624.42, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 624.42, + "end": 624.66, + "probability": 0.99072265625 + }, + { + "word": " be.", + "start": 624.66, + "end": 624.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 337, + "text": "I'm just saying the kid's got some impulse issues.", + "start": 624.66, + "end": 626.28, + "words": [ + { + "word": " I'm", + "start": 624.66, + "end": 624.66, + "probability": 0.99609375 + }, + { + "word": " just", + "start": 624.66, + "end": 624.68, + "probability": 0.99951171875 + }, + { + "word": " saying", + "start": 624.68, + "end": 624.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 624.94, + "end": 625.1, + "probability": 0.9990234375 + }, + { + "word": " kid's", + "start": 625.1, + "end": 625.3, + "probability": 0.99560546875 + }, + { + "word": " got", + "start": 625.3, + "end": 625.42, + "probability": 1.0 + }, + { + "word": " some", + "start": 625.42, + "end": 625.6, + "probability": 1.0 + }, + { + "word": " impulse", + "start": 625.6, + "end": 625.88, + "probability": 1.0 + }, + { + "word": " issues.", + "start": 625.88, + "end": 626.28, + "probability": 1.0 + } + ] + }, + { + "id": 338, + "text": "Well, he, all right.", + "start": 626.38, + "end": 627.44, + "words": [ + { + "word": " Well,", + "start": 626.38, + "end": 626.6, + "probability": 0.215576171875 + }, + { + "word": " he,", + "start": 626.6, + "end": 626.8, + "probability": 0.5673828125 + }, + { + "word": " all", + "start": 626.94, + "end": 627.28, + "probability": 0.740234375 + }, + { + "word": " right.", + "start": 627.28, + "end": 627.44, + "probability": 1.0 + } + ] + }, + { + "id": 339, + "text": "Yeah.", + "start": 628.2, + "end": 628.6, + "words": [ + { + "word": " Yeah.", + "start": 628.2, + "end": 628.6, + "probability": 0.52587890625 + } + ] + }, + { + "id": 340, + "text": "Wait, so he didn't actually need a kidney?", + "start": 628.6, + "end": 630.24, + "words": [ + { + "word": " Wait,", + "start": 628.6, + "end": 628.82, + "probability": 0.966796875 + }, + { + "word": " so", + "start": 628.82, + "end": 628.9, + "probability": 1.0 + }, + { + "word": " he", + "start": 628.9, + "end": 629.04, + "probability": 0.99755859375 + }, + { + "word": " didn't", + "start": 629.04, + "end": 629.22, + "probability": 1.0 + }, + { + "word": " actually", + "start": 629.22, + "end": 629.46, + "probability": 1.0 + }, + { + "word": " need", + "start": 629.46, + "end": 629.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 629.82, + "end": 630.02, + "probability": 1.0 + }, + { + "word": " kidney?", + "start": 630.02, + "end": 630.24, + "probability": 1.0 + } + ] + }, + { + "id": 341, + "text": "He just went and got one?", + "start": 630.34, + "end": 631.28, + "words": [ + { + "word": " He", + "start": 630.34, + "end": 630.52, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 630.52, + "end": 630.72, + "probability": 1.0 + }, + { + "word": " went", + "start": 630.72, + "end": 631.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 631.02, + "end": 631.18, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 631.18, + "end": 631.28, + "probability": 0.94189453125 + }, + { + "word": " one?", + "start": 631.28, + "end": 631.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 342, + "text": "Well, no, he didn't.", + "start": 631.28, + "end": 632.54, + "words": [ + { + "word": " Well,", + "start": 631.28, + "end": 631.28, + "probability": 0.60205078125 + }, + { + "word": " no,", + "start": 631.44, + "end": 631.88, + "probability": 0.6923828125 + }, + { + "word": " he", + "start": 631.92, + "end": 632.28, + "probability": 0.97021484375 + }, + { + "word": " didn't.", + "start": 632.28, + "end": 632.54, + "probability": 0.99755859375 + } + ] + }, + { + "id": 343, + "text": "No, no, he got one removed.", + "start": 632.54, + "end": 633.66, + "words": [ + { + "word": " No,", + "start": 632.54, + "end": 632.78, + "probability": 0.97607421875 + }, + { + "word": " no,", + "start": 632.82, + "end": 632.9, + "probability": 0.8349609375 + }, + { + "word": " he", + "start": 632.9, + "end": 633.04, + "probability": 0.98876953125 + }, + { + "word": " got", + "start": 633.04, + "end": 633.16, + "probability": 1.0 + }, + { + "word": " one", + "start": 633.16, + "end": 633.3, + "probability": 1.0 + }, + { + "word": " removed.", + "start": 633.3, + "end": 633.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 344, + "text": "I mean, I think he's got the story.", + "start": 633.96, + "end": 634.18, + "words": [ + { + "word": " I", + "start": 633.96, + "end": 634.18, + "probability": 0.059783935546875 + }, + { + "word": " mean,", + "start": 634.18, + "end": 634.18, + "probability": 0.1175537109375 + }, + { + "word": " I", + "start": 634.18, + "end": 634.18, + "probability": 0.52099609375 + }, + { + "word": " think", + "start": 634.18, + "end": 634.18, + "probability": 0.845703125 + }, + { + "word": " he's", + "start": 634.18, + "end": 634.18, + "probability": 0.7763671875 + }, + { + "word": " got", + "start": 634.18, + "end": 634.18, + "probability": 0.285400390625 + }, + { + "word": " the", + "start": 634.18, + "end": 634.18, + "probability": 0.390625 + }, + { + "word": " story.", + "start": 634.18, + "end": 634.18, + "probability": 0.95703125 + } + ] + }, + { + "id": 345, + "text": "He got a kidney removed.", + "start": 634.18, + "end": 634.92, + "words": [ + { + "word": " He", + "start": 634.18, + "end": 634.18, + "probability": 0.99169921875 + }, + { + "word": " got", + "start": 634.18, + "end": 634.32, + "probability": 0.904296875 + }, + { + "word": " a", + "start": 634.32, + "end": 634.36, + "probability": 0.9765625 + }, + { + "word": " kidney", + "start": 634.36, + "end": 634.64, + "probability": 0.99853515625 + }, + { + "word": " removed.", + "start": 634.64, + "end": 634.92, + "probability": 0.98193359375 + } + ] + }, + { + "id": 346, + "text": "He sold one.", + "start": 635.1, + "end": 635.22, + "words": [ + { + "word": " He", + "start": 635.1, + "end": 635.16, + "probability": 0.63818359375 + }, + { + "word": " sold", + "start": 635.16, + "end": 635.16, + "probability": 0.9677734375 + }, + { + "word": " one.", + "start": 635.16, + "end": 635.22, + "probability": 0.85205078125 + } + ] + }, + { + "id": 347, + "text": "Yes.", + "start": 635.34, + "end": 635.66, + "words": [ + { + "word": " Yes.", + "start": 635.34, + "end": 635.66, + "probability": 0.9091796875 + } + ] + }, + { + "id": 348, + "text": "Oh, he sold it.", + "start": 635.84, + "end": 637.22, + "words": [ + { + "word": " Oh,", + "start": 635.84, + "end": 636.16, + "probability": 0.998046875 + }, + { + "word": " he", + "start": 636.18, + "end": 636.3, + "probability": 1.0 + }, + { + "word": " sold", + "start": 636.3, + "end": 636.88, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 636.88, + "end": 637.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 349, + "text": "Right, right.", + "start": 637.22, + "end": 637.68, + "words": [ + { + "word": " Right,", + "start": 637.22, + "end": 637.6, + "probability": 0.984375 + }, + { + "word": " right.", + "start": 637.6, + "end": 637.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 350, + "text": "Try to keep up here.", + "start": 637.7, + "end": 638.28, + "words": [ + { + "word": " Try", + "start": 637.7, + "end": 637.86, + "probability": 0.469970703125 + }, + { + "word": " to", + "start": 637.86, + "end": 637.88, + "probability": 1.0 + }, + { + "word": " keep", + "start": 637.88, + "end": 638.0, + "probability": 1.0 + }, + { + "word": " up", + "start": 638.0, + "end": 638.16, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 638.16, + "end": 638.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 351, + "text": "Keep answering phone calls.", + "start": 638.98, + "end": 640.12, + "words": [ + { + "word": " Keep", + "start": 638.98, + "end": 639.38, + "probability": 0.26220703125 + }, + { + "word": " answering", + "start": 639.38, + "end": 639.64, + "probability": 0.99560546875 + }, + { + "word": " phone", + "start": 639.64, + "end": 639.9, + "probability": 0.99951171875 + }, + { + "word": " calls.", + "start": 639.9, + "end": 640.12, + "probability": 1.0 + } + ] + }, + { + "id": 352, + "text": "You know, I have phone calls to answer.", + "start": 640.14, + "end": 640.86, + "words": [ + { + "word": " You", + "start": 640.14, + "end": 640.14, + "probability": 0.541015625 + }, + { + "word": " know,", + "start": 640.14, + "end": 640.14, + "probability": 0.77978515625 + }, + { + "word": " I", + "start": 640.14, + "end": 640.14, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 640.14, + "end": 640.14, + "probability": 0.958984375 + }, + { + "word": " phone", + "start": 640.14, + "end": 640.14, + "probability": 0.99951171875 + }, + { + "word": " calls", + "start": 640.14, + "end": 640.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 640.26, + "end": 640.46, + "probability": 0.99951171875 + }, + { + "word": " answer.", + "start": 640.46, + "end": 640.86, + "probability": 1.0 + } + ] + }, + { + "id": 353, + "text": "All right, so he had two kidneys.", + "start": 641.14, + "end": 643.48, + "words": [ + { + "word": " All", + "start": 641.14, + "end": 641.54, + "probability": 0.99853515625 + }, + { + "word": " right,", + "start": 641.54, + "end": 641.58, + "probability": 1.0 + }, + { + "word": " so", + "start": 641.62, + "end": 641.8, + "probability": 1.0 + }, + { + "word": " he", + "start": 641.8, + "end": 642.34, + "probability": 0.95947265625 + }, + { + "word": " had", + "start": 642.34, + "end": 642.88, + "probability": 1.0 + }, + { + "word": " two", + "start": 642.88, + "end": 643.08, + "probability": 0.99951171875 + }, + { + "word": " kidneys.", + "start": 643.08, + "end": 643.48, + "probability": 1.0 + } + ] + }, + { + "id": 354, + "text": "Right.", + "start": 643.6, + "end": 644.0, + "words": [ + { + "word": " Right.", + "start": 643.6, + "end": 644.0, + "probability": 0.99658203125 + } + ] + }, + { + "id": 355, + "text": "But he had no iPad.", + "start": 644.04, + "end": 645.0, + "words": [ + { + "word": " But", + "start": 644.04, + "end": 644.14, + "probability": 0.994140625 + }, + { + "word": " he", + "start": 644.14, + "end": 644.22, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 644.22, + "end": 644.44, + "probability": 1.0 + }, + { + "word": " no", + "start": 644.44, + "end": 644.62, + "probability": 0.99951171875 + }, + { + "word": " iPad.", + "start": 644.62, + "end": 645.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 356, + "text": "Right.", + "start": 645.24, + "end": 645.58, + "words": [ + { + "word": " Right.", + "start": 645.24, + "end": 645.58, + "probability": 0.99658203125 + } + ] + }, + { + "id": 357, + "text": "He figured, I can get an iPad and have one kidney.", + "start": 645.62, + "end": 648.0, + "words": [ + { + "word": " He", + "start": 645.62, + "end": 645.64, + "probability": 0.68994140625 + }, + { + "word": " figured,", + "start": 645.64, + "end": 646.0, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 646.04, + "end": 646.26, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 646.26, + "end": 646.42, + "probability": 1.0 + }, + { + "word": " get", + "start": 646.42, + "end": 646.58, + "probability": 1.0 + }, + { + "word": " an", + "start": 646.58, + "end": 646.68, + "probability": 1.0 + }, + { + "word": " iPad", + "start": 646.68, + "end": 646.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 646.92, + "end": 647.32, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 647.32, + "end": 647.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 647.46, + "end": 647.7, + "probability": 0.99951171875 + }, + { + "word": " kidney.", + "start": 647.7, + "end": 648.0, + "probability": 1.0 + } + ] + }, + { + "id": 358, + "text": "So he sold his kidney for an iPad, and now he's dying.", + "start": 648.22, + "end": 650.5, + "words": [ + { + "word": " So", + "start": 648.22, + "end": 648.58, + "probability": 0.99267578125 + }, + { + "word": " he", + "start": 648.58, + "end": 648.68, + "probability": 0.96875 + }, + { + "word": " sold", + "start": 648.68, + "end": 648.84, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 648.84, + "end": 648.98, + "probability": 0.9970703125 + }, + { + "word": " kidney", + "start": 648.98, + "end": 649.1, + "probability": 0.9462890625 + }, + { + "word": " for", + "start": 649.1, + "end": 649.38, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 649.38, + "end": 649.52, + "probability": 1.0 + }, + { + "word": " iPad,", + "start": 649.52, + "end": 649.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 649.74, + "end": 649.96, + "probability": 1.0 + }, + { + "word": " now", + "start": 649.96, + "end": 650.02, + "probability": 1.0 + }, + { + "word": " he's", + "start": 650.02, + "end": 650.24, + "probability": 1.0 + }, + { + "word": " dying.", + "start": 650.24, + "end": 650.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 359, + "text": "Yes.", + "start": 650.64, + "end": 650.9, + "words": [ + { + "word": " Yes.", + "start": 650.64, + "end": 650.9, + "probability": 0.931640625 + } + ] + }, + { + "id": 360, + "text": "Right.", + "start": 650.9, + "end": 651.06, + "words": [ + { + "word": " Right.", + "start": 650.9, + "end": 651.06, + "probability": 0.873046875 + } + ] + }, + { + "id": 361, + "text": "Got it.", + "start": 651.6999999999999, + "end": 652.02, + "words": [ + { + "word": " Got", + "start": 651.6999999999999, + "end": 652.02, + "probability": 0.6103515625 + }, + { + "word": " it.", + "start": 652.02, + "end": 652.02, + "probability": 1.0 + } + ] + }, + { + "id": 362, + "text": "Apple kills another person.", + "start": 652.3, + "end": 653.56, + "words": [ + { + "word": " Apple", + "start": 652.3, + "end": 652.62, + "probability": 0.9951171875 + }, + { + "word": " kills", + "start": 652.62, + "end": 652.9, + "probability": 0.99560546875 + }, + { + "word": " another", + "start": 652.9, + "end": 653.14, + "probability": 1.0 + }, + { + "word": " person.", + "start": 653.14, + "end": 653.56, + "probability": 1.0 + } + ] + }, + { + "id": 363, + "text": "Wow.", + "start": 653.6, + "end": 653.86, + "words": [ + { + "word": " Wow.", + "start": 653.6, + "end": 653.86, + "probability": 0.98974609375 + } + ] + }, + { + "id": 364, + "text": "Wow.", + "start": 654.84, + "end": 655.16, + "words": [ + { + "word": " Wow.", + "start": 654.84, + "end": 655.16, + "probability": 0.9169921875 + } + ] + }, + { + "id": 365, + "text": "Well, on that same token, though, I have a story here about somebody who also wanted", + "start": 656.1, + "end": 660.08, + "words": [ + { + "word": " Well,", + "start": 656.1, + "end": 656.42, + "probability": 0.9423828125 + }, + { + "word": " on", + "start": 656.5, + "end": 656.58, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 656.58, + "end": 656.66, + "probability": 0.89013671875 + }, + { + "word": " same", + "start": 656.66, + "end": 656.9, + "probability": 1.0 + }, + { + "word": " token,", + "start": 656.9, + "end": 657.24, + "probability": 1.0 + }, + { + "word": " though,", + "start": 657.3, + "end": 657.4, + "probability": 0.9033203125 + }, + { + "word": " I", + "start": 657.42, + "end": 657.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 657.48, + "end": 657.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 657.62, + "end": 657.68, + "probability": 1.0 + }, + { + "word": " story", + "start": 657.68, + "end": 657.92, + "probability": 1.0 + }, + { + "word": " here", + "start": 657.92, + "end": 658.12, + "probability": 1.0 + }, + { + "word": " about", + "start": 658.12, + "end": 658.4, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 658.4, + "end": 658.84, + "probability": 0.99853515625 + }, + { + "word": " who", + "start": 658.84, + "end": 658.96, + "probability": 0.9453125 + }, + { + "word": " also", + "start": 658.96, + "end": 659.18, + "probability": 0.9931640625 + }, + { + "word": " wanted", + "start": 659.18, + "end": 660.08, + "probability": 0.9736328125 + } + ] + }, + { + "id": 366, + "text": "an Apple product.", + "start": 660.08, + "end": 660.76, + "words": [ + { + "word": " an", + "start": 660.08, + "end": 660.24, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 660.24, + "end": 660.46, + "probability": 0.9990234375 + }, + { + "word": " product.", + "start": 660.46, + "end": 660.76, + "probability": 1.0 + } + ] + }, + { + "id": 367, + "text": "He drove his car through an Apple window at like 5 o'clock in the morning, but he came", + "start": 660.98, + "end": 666.08, + "words": [ + { + "word": " He", + "start": 660.98, + "end": 661.3, + "probability": 1.0 + }, + { + "word": " drove", + "start": 661.3, + "end": 661.56, + "probability": 1.0 + }, + { + "word": " his", + "start": 661.56, + "end": 661.8, + "probability": 1.0 + }, + { + "word": " car", + "start": 661.8, + "end": 662.12, + "probability": 1.0 + }, + { + "word": " through", + "start": 662.12, + "end": 662.5, + "probability": 1.0 + }, + { + "word": " an", + "start": 662.5, + "end": 662.64, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 662.64, + "end": 662.92, + "probability": 1.0 + }, + { + "word": " window", + "start": 662.92, + "end": 663.3, + "probability": 1.0 + }, + { + "word": " at", + "start": 663.3, + "end": 664.46, + "probability": 0.99658203125 + }, + { + "word": " like", + "start": 664.46, + "end": 664.98, + "probability": 0.70556640625 + }, + { + "word": " 5", + "start": 664.98, + "end": 665.16, + "probability": 0.9521484375 + }, + { + "word": " o", + "start": 665.16, + "end": 665.26, + "probability": 0.99951171875 + }, + { + "word": "'clock", + "start": 665.26, + "end": 665.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 665.34, + "end": 665.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 665.38, + "end": 665.46, + "probability": 1.0 + }, + { + "word": " morning,", + "start": 665.46, + "end": 665.64, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 665.66, + "end": 665.76, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 665.76, + "end": 665.86, + "probability": 1.0 + }, + { + "word": " came", + "start": 665.86, + "end": 666.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 368, + "text": "out of his car dressed as a ninja.", + "start": 666.08, + "end": 667.64, + "words": [ + { + "word": " out", + "start": 666.08, + "end": 666.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 666.34, + "end": 666.38, + "probability": 1.0 + }, + { + "word": " his", + "start": 666.38, + "end": 666.46, + "probability": 1.0 + }, + { + "word": " car", + "start": 666.46, + "end": 666.58, + "probability": 1.0 + }, + { + "word": " dressed", + "start": 666.58, + "end": 666.74, + "probability": 1.0 + }, + { + "word": " as", + "start": 666.74, + "end": 667.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 667.08, + "end": 667.22, + "probability": 1.0 + }, + { + "word": " ninja.", + "start": 667.22, + "end": 667.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 369, + "text": "I'm not kidding.", + "start": 668.04, + "end": 668.84, + "words": [ + { + "word": " I'm", + "start": 668.04, + "end": 668.36, + "probability": 0.86572265625 + }, + { + "word": " not", + "start": 668.36, + "end": 668.5, + "probability": 0.99853515625 + }, + { + "word": " kidding.", + "start": 668.5, + "end": 668.84, + "probability": 1.0 + } + ] + }, + { + "id": 370, + "text": "There's pictures of it.", + "start": 669.04, + "end": 669.74, + "words": [ + { + "word": " There's", + "start": 669.04, + "end": 669.26, + "probability": 0.99951171875 + }, + { + "word": " pictures", + "start": 669.26, + "end": 669.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 669.52, + "end": 669.68, + "probability": 1.0 + }, + { + "word": " it.", + "start": 669.68, + "end": 669.74, + "probability": 0.99072265625 + } + ] + }, + { + "id": 371, + "text": "It's awesome.", + "start": 669.8, + "end": 670.08, + "words": [ + { + "word": " It's", + "start": 669.8, + "end": 669.88, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 669.88, + "end": 670.08, + "probability": 1.0 + } + ] + }, + { + "id": 372, + "text": "He's dressed as a ninja, but by the time he got in there, I guess the alarms and everything", + "start": 670.26, + "end": 673.52, + "words": [ + { + "word": " He's", + "start": 670.26, + "end": 670.58, + "probability": 0.9951171875 + }, + { + "word": " dressed", + "start": 670.58, + "end": 670.74, + "probability": 1.0 + }, + { + "word": " as", + "start": 670.74, + "end": 670.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 670.9, + "end": 671.0, + "probability": 1.0 + }, + { + "word": " ninja,", + "start": 671.0, + "end": 671.16, + "probability": 1.0 + }, + { + "word": " but", + "start": 671.26, + "end": 671.34, + "probability": 1.0 + }, + { + "word": " by", + "start": 671.34, + "end": 671.76, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 671.76, + "end": 671.94, + "probability": 1.0 + }, + { + "word": " time", + "start": 671.94, + "end": 672.1, + "probability": 1.0 + }, + { + "word": " he", + "start": 672.1, + "end": 672.2, + "probability": 1.0 + }, + { + "word": " got", + "start": 672.2, + "end": 672.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 672.32, + "end": 672.46, + "probability": 1.0 + }, + { + "word": " there,", + "start": 672.46, + "end": 672.62, + "probability": 1.0 + }, + { + "word": " I", + "start": 672.66, + "end": 672.74, + "probability": 0.99951171875 + }, + { + "word": " guess", + "start": 672.74, + "end": 672.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 672.84, + "end": 672.94, + "probability": 1.0 + }, + { + "word": " alarms", + "start": 672.94, + "end": 673.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 673.24, + "end": 673.4, + "probability": 0.8388671875 + }, + { + "word": " everything", + "start": 673.4, + "end": 673.52, + "probability": 1.0 + } + ] + }, + { + "id": 373, + "text": "was so crazy, he got freaked out and took off.", + "start": 673.52, + "end": 675.88, + "words": [ + { + "word": " was", + "start": 673.52, + "end": 673.66, + "probability": 0.33056640625 + }, + { + "word": " so", + "start": 673.66, + "end": 673.76, + "probability": 0.99169921875 + }, + { + "word": " crazy,", + "start": 673.76, + "end": 674.12, + "probability": 1.0 + }, + { + "word": " he", + "start": 674.22, + "end": 674.52, + "probability": 1.0 + }, + { + "word": " got", + "start": 674.52, + "end": 674.76, + "probability": 0.9462890625 + }, + { + "word": " freaked", + "start": 674.76, + "end": 675.0, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 675.0, + "end": 675.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 675.3, + "end": 675.42, + "probability": 1.0 + }, + { + "word": " took", + "start": 675.42, + "end": 675.56, + "probability": 1.0 + }, + { + "word": " off.", + "start": 675.56, + "end": 675.88, + "probability": 1.0 + } + ] + }, + { + "id": 374, + "text": "He didn't even steal one thing.", + "start": 676.06, + "end": 677.04, + "words": [ + { + "word": " He", + "start": 676.06, + "end": 676.18, + "probability": 0.99853515625 + }, + { + "word": " didn't", + "start": 676.18, + "end": 676.3, + "probability": 0.99462890625 + }, + { + "word": " even", + "start": 676.3, + "end": 676.36, + "probability": 0.962890625 + }, + { + "word": " steal", + "start": 676.36, + "end": 676.56, + "probability": 0.9345703125 + }, + { + "word": " one", + "start": 676.56, + "end": 676.78, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 676.78, + "end": 677.04, + "probability": 1.0 + } + ] + }, + { + "id": 375, + "text": "It's crazy, because this picture here, there's a car.", + "start": 678.94, + "end": 681.04, + "words": [ + { + "word": " It's", + "start": 678.94, + "end": 679.26, + "probability": 0.98046875 + }, + { + "word": " crazy,", + "start": 679.26, + "end": 679.48, + "probability": 0.998046875 + }, + { + "word": " because", + "start": 679.56, + "end": 679.72, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 679.72, + "end": 679.86, + "probability": 0.420654296875 + }, + { + "word": " picture", + "start": 679.86, + "end": 680.16, + "probability": 1.0 + }, + { + "word": " here,", + "start": 680.16, + "end": 680.34, + "probability": 1.0 + }, + { + "word": " there's", + "start": 680.46, + "end": 680.92, + "probability": 0.990234375 + }, + { + "word": " a", + "start": 680.92, + "end": 680.94, + "probability": 0.68115234375 + }, + { + "word": " car.", + "start": 680.94, + "end": 681.04, + "probability": 0.62060546875 + } + ] + }, + { + "id": 376, + "text": "", + "start": 681.04, + "end": 681.04, + "words": [] + }, + { + "id": 377, + "text": "", + "start": 681.04, + "end": 681.04, + "words": [] + }, + { + "id": 378, + "text": "", + "start": 681.04, + "end": 681.04, + "words": [] + }, + { + "id": 379, + "text": "He's driving through the window, and a ninja in the background was pulling a sword out.", + "start": 681.06, + "end": 685.0, + "words": [ + { + "word": " He's", + "start": 681.06, + "end": 681.26, + "probability": 0.1885986328125 + }, + { + "word": " driving", + "start": 681.26, + "end": 681.26, + "probability": 0.05126953125 + }, + { + "word": " through", + "start": 681.26, + "end": 681.58, + "probability": 0.04888916015625 + }, + { + "word": " the", + "start": 681.58, + "end": 681.68, + "probability": 0.76220703125 + }, + { + "word": " window,", + "start": 681.68, + "end": 681.98, + "probability": 0.54248046875 + }, + { + "word": " and", + "start": 682.12, + "end": 682.46, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 682.46, + "end": 682.62, + "probability": 0.994140625 + }, + { + "word": " ninja", + "start": 682.62, + "end": 682.94, + "probability": 0.97119140625 + }, + { + "word": " in", + "start": 682.94, + "end": 683.18, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 683.18, + "end": 683.28, + "probability": 1.0 + }, + { + "word": " background", + "start": 683.28, + "end": 683.64, + "probability": 0.99609375 + }, + { + "word": " was", + "start": 683.64, + "end": 683.9, + "probability": 0.1134033203125 + }, + { + "word": " pulling", + "start": 683.9, + "end": 684.3, + "probability": 0.91748046875 + }, + { + "word": " a", + "start": 684.3, + "end": 684.52, + "probability": 0.87841796875 + }, + { + "word": " sword", + "start": 684.52, + "end": 684.74, + "probability": 0.99951171875 + }, + { + "word": " out.", + "start": 684.74, + "end": 685.0, + "probability": 1.0 + } + ] + }, + { + "id": 380, + "text": "It's hilarious.", + "start": 686.8, + "end": 687.42, + "words": [ + { + "word": " It's", + "start": 686.8, + "end": 687.16, + "probability": 0.8310546875 + }, + { + "word": " hilarious.", + "start": 687.16, + "end": 687.42, + "probability": 0.99169921875 + } + ] + }, + { + "id": 381, + "text": "I'll post it on the website.", + "start": 687.58, + "end": 688.36, + "words": [ + { + "word": " I'll", + "start": 687.58, + "end": 687.7, + "probability": 0.955078125 + }, + { + "word": " post", + "start": 687.7, + "end": 687.8, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 687.8, + "end": 687.96, + "probability": 0.974609375 + }, + { + "word": " on", + "start": 687.96, + "end": 688.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 688.06, + "end": 688.14, + "probability": 1.0 + }, + { + "word": " website.", + "start": 688.14, + "end": 688.36, + "probability": 0.962890625 + } + ] + }, + { + "id": 382, + "text": "All he really wanted was applesauce.", + "start": 688.36, + "end": 691.06, + "words": [ + { + "word": " All", + "start": 688.36, + "end": 688.58, + "probability": 0.529296875 + }, + { + "word": " he", + "start": 688.58, + "end": 688.72, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 688.72, + "end": 688.96, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 688.96, + "end": 689.36, + "probability": 1.0 + }, + { + "word": " was", + "start": 689.36, + "end": 690.5, + "probability": 0.9453125 + }, + { + "word": " applesauce.", + "start": 690.5, + "end": 691.06, + "probability": 0.994140625 + } + ] + }, + { + "id": 383, + "text": "That's what I'm saying.", + "start": 692.12, + "end": 693.32, + "words": [ + { + "word": " That's", + "start": 692.12, + "end": 692.48, + "probability": 1.0 + }, + { + "word": " what", + "start": 692.48, + "end": 692.84, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 692.84, + "end": 693.1, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 693.1, + "end": 693.32, + "probability": 1.0 + } + ] + }, + { + "id": 384, + "text": "You can't go running over apples.", + "start": 694.92, + "end": 696.74, + "words": [ + { + "word": " You", + "start": 694.92, + "end": 695.28, + "probability": 0.81982421875 + }, + { + "word": " can't", + "start": 695.28, + "end": 695.54, + "probability": 1.0 + }, + { + "word": " go", + "start": 695.54, + "end": 695.64, + "probability": 1.0 + }, + { + "word": " running", + "start": 695.64, + "end": 696.0, + "probability": 1.0 + }, + { + "word": " over", + "start": 696.0, + "end": 696.3, + "probability": 1.0 + }, + { + "word": " apples.", + "start": 696.3, + "end": 696.74, + "probability": 1.0 + } + ] + }, + { + "id": 385, + "text": "Oh, man.", + "start": 696.94, + "end": 697.64, + "words": [ + { + "word": " Oh,", + "start": 696.94, + "end": 697.3, + "probability": 0.9970703125 + }, + { + "word": " man.", + "start": 697.3, + "end": 697.64, + "probability": 1.0 + } + ] + }, + { + "id": 386, + "text": "Hilarious.", + "start": 698.52, + "end": 698.88, + "words": [ + { + "word": " Hilarious.", + "start": 698.52, + "end": 698.88, + "probability": 0.99365234375 + } + ] + }, + { + "id": 387, + "text": "Some people, ninjas.", + "start": 699.8, + "end": 701.2, + "words": [ + { + "word": " Some", + "start": 699.8, + "end": 700.16, + "probability": 0.9990234375 + }, + { + "word": " people,", + "start": 700.16, + "end": 700.52, + "probability": 0.99951171875 + }, + { + "word": " ninjas.", + "start": 700.68, + "end": 701.2, + "probability": 0.99609375 + } + ] + }, + { + "id": 388, + "text": "All right.", + "start": 701.3, + "end": 702.1, + "words": [ + { + "word": " All", + "start": 701.3, + "end": 701.6, + "probability": 0.46337890625 + }, + { + "word": " right.", + "start": 701.6, + "end": 702.1, + "probability": 1.0 + } + ] + }, + { + "id": 389, + "text": "Let's go ahead and take a break.", + "start": 702.44, + "end": 703.48, + "words": [ + { + "word": " Let's", + "start": 702.44, + "end": 702.8, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 702.8, + "end": 702.82, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 702.82, + "end": 702.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 702.96, + "end": 703.02, + "probability": 1.0 + }, + { + "word": " take", + "start": 703.02, + "end": 703.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 703.2, + "end": 703.3, + "probability": 1.0 + }, + { + "word": " break.", + "start": 703.3, + "end": 703.48, + "probability": 1.0 + } + ] + }, + { + "id": 390, + "text": "When we get back from the break, we've got some phone calls.", + "start": 703.58, + "end": 705.02, + "words": [ + { + "word": " When", + "start": 703.58, + "end": 703.66, + "probability": 0.9931640625 + }, + { + "word": " we", + "start": 703.66, + "end": 703.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 703.68, + "end": 703.78, + "probability": 1.0 + }, + { + "word": " back", + "start": 703.78, + "end": 703.96, + "probability": 1.0 + }, + { + "word": " from", + "start": 703.96, + "end": 704.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 704.08, + "end": 704.14, + "probability": 1.0 + }, + { + "word": " break,", + "start": 704.14, + "end": 704.32, + "probability": 1.0 + }, + { + "word": " we've", + "start": 704.34, + "end": 704.48, + "probability": 0.984375 + }, + { + "word": " got", + "start": 704.48, + "end": 704.5, + "probability": 1.0 + }, + { + "word": " some", + "start": 704.5, + "end": 704.62, + "probability": 1.0 + }, + { + "word": " phone", + "start": 704.62, + "end": 704.78, + "probability": 1.0 + }, + { + "word": " calls.", + "start": 704.78, + "end": 705.02, + "probability": 1.0 + } + ] + }, + { + "id": 391, + "text": "We'll see what we can do to help you out with whatever technology issues happen to be plaguing", + "start": 705.12, + "end": 708.28, + "words": [ + { + "word": " We'll", + "start": 705.12, + "end": 705.24, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 705.24, + "end": 705.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 705.34, + "end": 705.44, + "probability": 1.0 + }, + { + "word": " we", + "start": 705.44, + "end": 705.52, + "probability": 1.0 + }, + { + "word": " can", + "start": 705.52, + "end": 705.6, + "probability": 1.0 + }, + { + "word": " do", + "start": 705.6, + "end": 705.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 705.64, + "end": 705.74, + "probability": 1.0 + }, + { + "word": " help", + "start": 705.74, + "end": 705.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 705.86, + "end": 705.98, + "probability": 1.0 + }, + { + "word": " out", + "start": 705.98, + "end": 706.04, + "probability": 1.0 + }, + { + "word": " with", + "start": 706.04, + "end": 706.18, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 706.18, + "end": 706.36, + "probability": 1.0 + }, + { + "word": " technology", + "start": 706.36, + "end": 706.74, + "probability": 1.0 + }, + { + "word": " issues", + "start": 706.74, + "end": 707.28, + "probability": 0.99951171875 + }, + { + "word": " happen", + "start": 707.28, + "end": 707.66, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 707.66, + "end": 707.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 707.82, + "end": 707.94, + "probability": 1.0 + }, + { + "word": " plaguing", + "start": 707.94, + "end": 708.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 392, + "text": "you this week.", + "start": 708.28, + "end": 708.88, + "words": [ + { + "word": " you", + "start": 708.28, + "end": 708.42, + "probability": 1.0 + }, + { + "word": " this", + "start": 708.42, + "end": 708.6, + "probability": 0.99951171875 + }, + { + "word": " week.", + "start": 708.6, + "end": 708.88, + "probability": 1.0 + } + ] + }, + { + "id": 393, + "text": "This is the Computer Guru Show on 104.9 FM.", + "start": 709.14, + "end": 711.04, + "words": [ + { + "word": " This", + "start": 709.14, + "end": 709.5, + "probability": 0.99560546875 + }, + { + "word": " is", + "start": 709.5, + "end": 709.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 709.7, + "end": 709.82, + "probability": 0.771484375 + }, + { + "word": " Computer", + "start": 709.82, + "end": 710.04, + "probability": 0.9990234375 + }, + { + "word": " Guru", + "start": 710.04, + "end": 710.3, + "probability": 0.99365234375 + }, + { + "word": " Show", + "start": 710.3, + "end": 710.56, + "probability": 0.99560546875 + }, + { + "word": " on", + "start": 710.56, + "end": 710.72, + "probability": 0.91943359375 + }, + { + "word": " 104", + "start": 710.72, + "end": 710.94, + "probability": 0.9482421875 + }, + { + "word": ".9", + "start": 710.94, + "end": 711.04, + "probability": 0.5537109375 + }, + { + "word": " FM.", + "start": 711.04, + "end": 711.04, + "probability": 0.2296142578125 + } + ] + }, + { + "id": 394, + "text": "", + "start": 711.04, + "end": 711.04, + "words": [] + }, + { + "id": 395, + "text": "", + "start": 711.04, + "end": 711.04, + "words": [] + }, + { + "id": 396, + "text": "", + "start": 711.04, + "end": 711.04, + "words": [] + }, + { + "id": 397, + "text": "", + "start": 711.04, + "end": 711.04, + "words": [] + }, + { + "id": 398, + "text": "", + "start": 711.04, + "end": 711.04, + "words": [] + }, + { + "id": 399, + "text": "", + "start": 711.04, + "end": 711.04, + "words": [] + }, + { + "id": 400, + "text": "I'm Mike Pearson.", + "start": 711.06, + "end": 711.14, + "words": [ + { + "word": " I'm", + "start": 711.06, + "end": 711.14, + "probability": 0.0457763671875 + }, + { + "word": " Mike", + "start": 711.14, + "end": 711.14, + "probability": 0.39599609375 + }, + { + "word": " Pearson.", + "start": 711.14, + "end": 711.14, + "probability": 0.048828125 + } + ] + }, + { + "id": 401, + "text": "You're listening to the Computer Guru Show on the Truth, Tucson's News Talk FM.", + "start": 711.14, + "end": 712.78, + "words": [ + { + "word": " You're", + "start": 711.14, + "end": 711.14, + "probability": 0.413330078125 + }, + { + "word": " listening", + "start": 711.14, + "end": 711.14, + "probability": 0.85888671875 + }, + { + "word": " to", + "start": 711.14, + "end": 711.14, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 711.14, + "end": 711.14, + "probability": 0.38134765625 + }, + { + "word": " Computer", + "start": 711.14, + "end": 711.14, + "probability": 0.03741455078125 + }, + { + "word": " Guru", + "start": 711.14, + "end": 711.14, + "probability": 0.024383544921875 + }, + { + "word": " Show", + "start": 711.14, + "end": 711.14, + "probability": 0.8662109375 + }, + { + "word": " on", + "start": 711.14, + "end": 711.14, + "probability": 0.2186279296875 + }, + { + "word": " the", + "start": 711.14, + "end": 711.18, + "probability": 0.82763671875 + }, + { + "word": " Truth,", + "start": 711.18, + "end": 711.34, + "probability": 0.8759765625 + }, + { + "word": " Tucson's", + "start": 711.56, + "end": 712.14, + "probability": 0.994140625 + }, + { + "word": " News", + "start": 712.14, + "end": 712.28, + "probability": 0.67138671875 + }, + { + "word": " Talk", + "start": 712.28, + "end": 712.48, + "probability": 0.98388671875 + }, + { + "word": " FM.", + "start": 712.48, + "end": 712.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 402, + "text": "Geez, man.", + "start": 721.16, + "end": 724.56, + "words": [ + { + "word": " Geez,", + "start": 721.16, + "end": 721.56, + "probability": 0.11297607421875 + }, + { + "word": " man.", + "start": 724.3, + "end": 724.56, + "probability": 0.30126953125 + } + ] + }, + { + "id": 403, + "text": "What do you want to do tonight?", + "start": 724.66, + "end": 725.88, + "words": [ + { + "word": " What", + "start": 724.66, + "end": 725.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 725.04, + "end": 725.16, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 725.16, + "end": 725.2, + "probability": 1.0 + }, + { + "word": " want", + "start": 725.2, + "end": 725.34, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 725.34, + "end": 725.44, + "probability": 1.0 + }, + { + "word": " do", + "start": 725.44, + "end": 725.56, + "probability": 1.0 + }, + { + "word": " tonight?", + "start": 725.56, + "end": 725.88, + "probability": 0.99755859375 + } + ] + }, + { + "id": 404, + "text": "The same thing we do every night, Pinky.", + "start": 726.36, + "end": 728.8, + "words": [ + { + "word": " The", + "start": 726.36, + "end": 726.76, + "probability": 0.99365234375 + }, + { + "word": " same", + "start": 726.76, + "end": 727.06, + "probability": 1.0 + }, + { + "word": " thing", + "start": 727.06, + "end": 727.38, + "probability": 1.0 + }, + { + "word": " we", + "start": 727.38, + "end": 727.58, + "probability": 1.0 + }, + { + "word": " do", + "start": 727.58, + "end": 727.78, + "probability": 1.0 + }, + { + "word": " every", + "start": 727.78, + "end": 728.08, + "probability": 1.0 + }, + { + "word": " night,", + "start": 728.08, + "end": 728.38, + "probability": 1.0 + }, + { + "word": " Pinky.", + "start": 728.46, + "end": 728.8, + "probability": 0.974609375 + } + ] + }, + { + "id": 405, + "text": "Try to take over the world.", + "start": 728.9, + "end": 730.68, + "words": [ + { + "word": " Try", + "start": 728.9, + "end": 729.22, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 729.22, + "end": 729.5, + "probability": 1.0 + }, + { + "word": " take", + "start": 729.5, + "end": 729.76, + "probability": 1.0 + }, + { + "word": " over", + "start": 729.76, + "end": 730.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 730.06, + "end": 730.24, + "probability": 1.0 + }, + { + "word": " world.", + "start": 730.24, + "end": 730.68, + "probability": 1.0 + } + ] + }, + { + "id": 406, + "text": "The Pinky and the Brains.", + "start": 730.98, + "end": 732.66, + "words": [ + { + "word": " The", + "start": 730.98, + "end": 731.06, + "probability": 0.5419921875 + }, + { + "word": " Pinky", + "start": 731.06, + "end": 731.64, + "probability": 0.81640625 + }, + { + "word": " and", + "start": 731.64, + "end": 731.78, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 731.78, + "end": 732.1, + "probability": 1.0 + }, + { + "word": " Brains.", + "start": 732.1, + "end": 732.66, + "probability": 0.677734375 + } + ] + }, + { + "id": 407, + "text": "It's Pinky and the Brains.", + "start": 732.76, + "end": 734.42, + "words": [ + { + "word": " It's", + "start": 732.76, + "end": 733.16, + "probability": 0.78564453125 + }, + { + "word": " Pinky", + "start": 733.16, + "end": 733.64, + "probability": 0.97119140625 + }, + { + "word": " and", + "start": 733.64, + "end": 733.72, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 733.72, + "end": 734.04, + "probability": 1.0 + }, + { + "word": " Brains.", + "start": 734.04, + "end": 734.42, + "probability": 1.0 + } + ] + }, + { + "id": 408, + "text": "Welcome back to the Computer Guru Show.", + "start": 734.5, + "end": 736.1, + "words": [ + { + "word": " Welcome", + "start": 734.5, + "end": 734.7, + "probability": 0.9970703125 + }, + { + "word": " back", + "start": 734.7, + "end": 735.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 735.08, + "end": 735.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 735.2, + "end": 735.32, + "probability": 0.99755859375 + }, + { + "word": " Computer", + "start": 735.32, + "end": 735.62, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 735.62, + "end": 735.84, + "probability": 0.998046875 + }, + { + "word": " Show.", + "start": 735.84, + "end": 736.1, + "probability": 1.0 + } + ] + }, + { + "id": 409, + "text": "My name is Mike, here to deal with your technology needs and treat you like a real person in the", + "start": 736.14, + "end": 738.96, + "words": [ + { + "word": " My", + "start": 736.14, + "end": 736.26, + "probability": 0.99853515625 + }, + { + "word": " name", + "start": 736.26, + "end": 736.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 736.36, + "end": 736.4, + "probability": 0.9990234375 + }, + { + "word": " Mike,", + "start": 736.4, + "end": 736.64, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 736.64, + "end": 736.76, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 736.76, + "end": 736.84, + "probability": 1.0 + }, + { + "word": " deal", + "start": 736.84, + "end": 736.98, + "probability": 0.98876953125 + }, + { + "word": " with", + "start": 736.98, + "end": 737.04, + "probability": 1.0 + }, + { + "word": " your", + "start": 737.04, + "end": 737.1, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 737.1, + "end": 737.4, + "probability": 0.97998046875 + }, + { + "word": " needs", + "start": 737.4, + "end": 737.78, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 737.78, + "end": 737.9, + "probability": 0.93505859375 + }, + { + "word": " treat", + "start": 737.9, + "end": 738.12, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 738.12, + "end": 738.28, + "probability": 1.0 + }, + { + "word": " like", + "start": 738.28, + "end": 738.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 738.38, + "end": 738.48, + "probability": 1.0 + }, + { + "word": " real", + "start": 738.48, + "end": 738.6, + "probability": 1.0 + }, + { + "word": " person", + "start": 738.6, + "end": 738.82, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 738.82, + "end": 738.92, + "probability": 0.76220703125 + }, + { + "word": " the", + "start": 738.92, + "end": 738.96, + "probability": 1.0 + } + ] + }, + { + "id": 410, + "text": "process.", + "start": 738.96, + "end": 739.18, + "words": [ + { + "word": " process.", + "start": 738.96, + "end": 739.18, + "probability": 0.994140625 + } + ] + }, + { + "id": 411, + "text": "Got Randall over here doing his thing.", + "start": 739.24, + "end": 740.78, + "words": [ + { + "word": " Got", + "start": 739.24, + "end": 739.44, + "probability": 0.68505859375 + }, + { + "word": " Randall", + "start": 739.44, + "end": 739.88, + "probability": 0.99755859375 + }, + { + "word": " over", + "start": 739.88, + "end": 740.02, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 740.02, + "end": 740.22, + "probability": 1.0 + }, + { + "word": " doing", + "start": 740.22, + "end": 740.42, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 740.42, + "end": 740.56, + "probability": 0.98388671875 + }, + { + "word": " thing.", + "start": 740.56, + "end": 740.78, + "probability": 1.0 + } + ] + }, + { + "id": 412, + "text": "OK.", + "start": 741.06, + "end": 741.84, + "words": [ + { + "word": " OK.", + "start": 741.06, + "end": 741.84, + "probability": 0.00017833709716796875 + } + ] + }, + { + "id": 413, + "text": "OK.", + "start": 764.2, + "end": 764.38, + "words": [ + { + "word": " OK.", + "start": 764.2, + "end": 764.38, + "probability": 0.1456298828125 + } + ] + }, + { + "id": 414, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 415, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 416, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 417, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 418, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 419, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 420, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 421, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 422, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 423, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 424, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 425, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 426, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 427, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 428, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 429, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 430, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 431, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 432, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 433, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 434, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 435, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 436, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 437, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 438, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 439, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 440, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 441, + "text": "", + "start": 771.04, + "end": 771.04, + "words": [] + }, + { + "id": 442, + "text": "Call 751-1041 if you want to be a part of the show, just like Brian.", + "start": 771.06, + "end": 774.0, + "words": [ + { + "word": " Call", + "start": 771.06, + "end": 771.16, + "probability": 0.7841796875 + }, + { + "word": " 751", + "start": 771.16, + "end": 771.8, + "probability": 0.9912109375 + }, + { + "word": "-1041", + "start": 771.8, + "end": 772.16, + "probability": 0.99609375 + }, + { + "word": " if", + "start": 772.16, + "end": 772.38, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 772.38, + "end": 772.48, + "probability": 1.0 + }, + { + "word": " want", + "start": 772.48, + "end": 772.56, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 772.56, + "end": 772.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 772.64, + "end": 772.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 772.7, + "end": 772.74, + "probability": 0.546875 + }, + { + "word": " part", + "start": 772.74, + "end": 772.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 772.82, + "end": 772.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 772.88, + "end": 772.94, + "probability": 1.0 + }, + { + "word": " show,", + "start": 772.94, + "end": 773.08, + "probability": 1.0 + }, + { + "word": " just", + "start": 773.18, + "end": 773.36, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 773.36, + "end": 773.58, + "probability": 1.0 + }, + { + "word": " Brian.", + "start": 773.58, + "end": 774.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 443, + "text": "Hey, little Brian.", + "start": 774.14, + "end": 774.62, + "words": [ + { + "word": " Hey,", + "start": 774.14, + "end": 774.3, + "probability": 0.71630859375 + }, + { + "word": " little", + "start": 774.3, + "end": 774.38, + "probability": 0.51123046875 + }, + { + "word": " Brian.", + "start": 774.38, + "end": 774.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 444, + "text": "How you doing?", + "start": 774.78, + "end": 775.2, + "words": [ + { + "word": " How", + "start": 774.78, + "end": 774.94, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 774.94, + "end": 775.02, + "probability": 0.90576171875 + }, + { + "word": " doing?", + "start": 775.02, + "end": 775.2, + "probability": 1.0 + } + ] + }, + { + "id": 445, + "text": "Uh-oh.", + "start": 776.52, + "end": 776.96, + "words": [ + { + "word": " Uh", + "start": 776.52, + "end": 776.84, + "probability": 0.921875 + }, + { + "word": "-oh.", + "start": 776.84, + "end": 776.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 446, + "text": "I think I shocked Brian into not answering.", + "start": 776.98, + "end": 778.54, + "words": [ + { + "word": " I", + "start": 776.98, + "end": 777.26, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 777.26, + "end": 777.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 777.42, + "end": 777.48, + "probability": 1.0 + }, + { + "word": " shocked", + "start": 777.48, + "end": 777.7, + "probability": 0.99951171875 + }, + { + "word": " Brian", + "start": 777.7, + "end": 777.92, + "probability": 1.0 + }, + { + "word": " into", + "start": 777.92, + "end": 778.12, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 778.12, + "end": 778.28, + "probability": 1.0 + }, + { + "word": " answering.", + "start": 778.28, + "end": 778.54, + "probability": 1.0 + } + ] + }, + { + "id": 447, + "text": "Anybody?", + "start": 779.66, + "end": 779.98, + "words": [ + { + "word": " Anybody?", + "start": 779.66, + "end": 779.98, + "probability": 0.9404296875 + } + ] + }, + { + "id": 448, + "text": "Anyone?", + "start": 780.22, + "end": 780.54, + "words": [ + { + "word": " Anyone?", + "start": 780.22, + "end": 780.54, + "probability": 0.98974609375 + } + ] + }, + { + "id": 449, + "text": "Or maybe the name's not right.", + "start": 780.7, + "end": 781.64, + "words": [ + { + "word": " Or", + "start": 780.7, + "end": 780.84, + "probability": 0.873046875 + }, + { + "word": " maybe", + "start": 780.84, + "end": 780.94, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 780.94, + "end": 781.08, + "probability": 0.99951171875 + }, + { + "word": " name's", + "start": 781.08, + "end": 781.32, + "probability": 1.0 + }, + { + "word": " not", + "start": 781.32, + "end": 781.42, + "probability": 1.0 + }, + { + "word": " right.", + "start": 781.42, + "end": 781.64, + "probability": 1.0 + } + ] + }, + { + "id": 450, + "text": "Bueller?", + "start": 781.74, + "end": 781.9, + "words": [ + { + "word": " Bueller?", + "start": 781.74, + "end": 781.9, + "probability": 0.83544921875 + } + ] + }, + { + "id": 451, + "text": "Bueller?", + "start": 782.32, + "end": 782.64, + "words": [ + { + "word": " Bueller?", + "start": 782.32, + "end": 782.64, + "probability": 0.9580078125 + } + ] + }, + { + "id": 452, + "text": "Anyone there on line one?", + "start": 782.88, + "end": 784.02, + "words": [ + { + "word": " Anyone", + "start": 782.88, + "end": 783.2, + "probability": 0.99560546875 + }, + { + "word": " there", + "start": 783.2, + "end": 783.46, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 783.46, + "end": 783.64, + "probability": 0.9931640625 + }, + { + "word": " line", + "start": 783.64, + "end": 783.86, + "probability": 0.96142578125 + }, + { + "word": " one?", + "start": 783.86, + "end": 784.02, + "probability": 0.97216796875 + } + ] + }, + { + "id": 453, + "text": "Okay, I guess not.", + "start": 784.48, + "end": 785.36, + "words": [ + { + "word": " Okay,", + "start": 784.48, + "end": 784.8, + "probability": 0.97119140625 + }, + { + "word": " I", + "start": 784.92, + "end": 785.02, + "probability": 1.0 + }, + { + "word": " guess", + "start": 785.02, + "end": 785.18, + "probability": 1.0 + }, + { + "word": " not.", + "start": 785.18, + "end": 785.36, + "probability": 1.0 + } + ] + }, + { + "id": 454, + "text": "Okay, so we're going to put him back on hold.", + "start": 785.56, + "end": 786.92, + "words": [ + { + "word": " Okay,", + "start": 785.56, + "end": 785.74, + "probability": 0.9482421875 + }, + { + "word": " so", + "start": 785.8, + "end": 785.96, + "probability": 1.0 + }, + { + "word": " we're", + "start": 785.96, + "end": 786.14, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 786.14, + "end": 786.2, + "probability": 0.98388671875 + }, + { + "word": " to", + "start": 786.2, + "end": 786.26, + "probability": 1.0 + }, + { + "word": " put", + "start": 786.26, + "end": 786.36, + "probability": 1.0 + }, + { + "word": " him", + "start": 786.36, + "end": 786.4, + "probability": 0.9931640625 + }, + { + "word": " back", + "start": 786.4, + "end": 786.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 786.56, + "end": 786.7, + "probability": 1.0 + }, + { + "word": " hold.", + "start": 786.7, + "end": 786.92, + "probability": 1.0 + } + ] + }, + { + "id": 455, + "text": "All right.", + "start": 786.96, + "end": 787.24, + "words": [ + { + "word": " All", + "start": 786.96, + "end": 787.24, + "probability": 0.76025390625 + }, + { + "word": " right.", + "start": 787.24, + "end": 787.24, + "probability": 1.0 + } + ] + }, + { + "id": 456, + "text": "Maybe he'll come back later.", + "start": 787.28, + "end": 788.28, + "words": [ + { + "word": " Maybe", + "start": 787.28, + "end": 787.6, + "probability": 0.98974609375 + }, + { + "word": " he'll", + "start": 787.6, + "end": 787.76, + "probability": 0.943359375 + }, + { + "word": " come", + "start": 787.76, + "end": 787.88, + "probability": 1.0 + }, + { + "word": " back", + "start": 787.88, + "end": 788.04, + "probability": 1.0 + }, + { + "word": " later.", + "start": 788.04, + "end": 788.28, + "probability": 1.0 + } + ] + }, + { + "id": 457, + "text": "He apparently thought it was going to take longer for me to answer.", + "start": 788.42, + "end": 790.66, + "words": [ + { + "word": " He", + "start": 788.42, + "end": 788.66, + "probability": 0.99951171875 + }, + { + "word": " apparently", + "start": 788.66, + "end": 788.92, + "probability": 1.0 + }, + { + "word": " thought", + "start": 788.92, + "end": 789.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 789.2, + "end": 789.28, + "probability": 1.0 + }, + { + "word": " was", + "start": 789.28, + "end": 789.38, + "probability": 1.0 + }, + { + "word": " going", + "start": 789.38, + "end": 789.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 789.44, + "end": 789.5, + "probability": 1.0 + }, + { + "word": " take", + "start": 789.5, + "end": 789.7, + "probability": 1.0 + }, + { + "word": " longer", + "start": 789.7, + "end": 789.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 789.94, + "end": 790.18, + "probability": 1.0 + }, + { + "word": " me", + "start": 790.18, + "end": 790.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 790.28, + "end": 790.42, + "probability": 1.0 + }, + { + "word": " answer.", + "start": 790.42, + "end": 790.66, + "probability": 1.0 + } + ] + }, + { + "id": 458, + "text": "You know?", + "start": 791.18, + "end": 791.62, + "words": [ + { + "word": " You", + "start": 791.18, + "end": 791.5, + "probability": 0.712890625 + }, + { + "word": " know?", + "start": 791.5, + "end": 791.62, + "probability": 1.0 + } + ] + }, + { + "id": 459, + "text": "Did you tell him that I was going to answer his call?", + "start": 792.48, + "end": 793.96, + "words": [ + { + "word": " Did", + "start": 792.48, + "end": 792.8, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 792.8, + "end": 792.96, + "probability": 1.0 + }, + { + "word": " tell", + "start": 792.96, + "end": 793.12, + "probability": 1.0 + }, + { + "word": " him", + "start": 793.12, + "end": 793.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 793.2, + "end": 793.32, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 793.32, + "end": 793.4, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 793.4, + "end": 793.46, + "probability": 0.99267578125 + }, + { + "word": " going", + "start": 793.46, + "end": 793.48, + "probability": 0.91015625 + }, + { + "word": " to", + "start": 793.48, + "end": 793.54, + "probability": 1.0 + }, + { + "word": " answer", + "start": 793.54, + "end": 793.72, + "probability": 1.0 + }, + { + "word": " his", + "start": 793.72, + "end": 793.82, + "probability": 1.0 + }, + { + "word": " call?", + "start": 793.82, + "end": 793.96, + "probability": 1.0 + } + ] + }, + { + "id": 460, + "text": "Yeah.", + "start": 794.78, + "end": 795.1, + "words": [ + { + "word": " Yeah.", + "start": 794.78, + "end": 795.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 461, + "text": "Yeah?", + "start": 795.3, + "end": 795.54, + "words": [ + { + "word": " Yeah?", + "start": 795.3, + "end": 795.54, + "probability": 0.98388671875 + } + ] + }, + { + "id": 462, + "text": "Maybe he's just calling up to sit on hold.", + "start": 796.04, + "end": 798.14, + "words": [ + { + "word": " Maybe", + "start": 796.04, + "end": 796.36, + "probability": 0.9912109375 + }, + { + "word": " he's", + "start": 796.36, + "end": 796.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 796.56, + "end": 796.66, + "probability": 1.0 + }, + { + "word": " calling", + "start": 796.66, + "end": 796.84, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 796.84, + "end": 797.0, + "probability": 0.9384765625 + }, + { + "word": " to", + "start": 797.0, + "end": 797.14, + "probability": 0.982421875 + }, + { + "word": " sit", + "start": 797.14, + "end": 797.7, + "probability": 0.96875 + }, + { + "word": " on", + "start": 797.7, + "end": 797.92, + "probability": 1.0 + }, + { + "word": " hold.", + "start": 797.92, + "end": 798.14, + "probability": 1.0 + } + ] + }, + { + "id": 463, + "text": "Maybe.", + "start": 798.44, + "end": 798.76, + "words": [ + { + "word": " Maybe.", + "start": 798.44, + "end": 798.76, + "probability": 0.7138671875 + } + ] + }, + { + "id": 464, + "text": "All right, so I'm going to do something real fast.", + "start": 798.94, + "end": 800.4, + "words": [ + { + "word": " All", + "start": 798.94, + "end": 799.16, + "probability": 0.99365234375 + }, + { + "word": " right,", + "start": 799.16, + "end": 799.26, + "probability": 1.0 + }, + { + "word": " so", + "start": 799.28, + "end": 799.36, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 799.36, + "end": 799.62, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 799.62, + "end": 799.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 799.64, + "end": 799.68, + "probability": 1.0 + }, + { + "word": " do", + "start": 799.68, + "end": 799.8, + "probability": 1.0 + }, + { + "word": " something", + "start": 799.8, + "end": 799.94, + "probability": 0.99951171875 + }, + { + "word": " real", + "start": 799.94, + "end": 800.14, + "probability": 1.0 + }, + { + "word": " fast.", + "start": 800.14, + "end": 800.4, + "probability": 1.0 + } + ] + }, + { + "id": 465, + "text": "Before our caller the last two weeks calls in and starts asking about Sandy Bridge.", + "start": 800.4, + "end": 805.0, + "words": [ + { + "word": " Before", + "start": 800.4, + "end": 800.66, + "probability": 0.11724853515625 + }, + { + "word": " our", + "start": 800.66, + "end": 801.42, + "probability": 0.9931640625 + }, + { + "word": " caller", + "start": 801.42, + "end": 802.02, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 802.02, + "end": 802.16, + "probability": 0.77685546875 + }, + { + "word": " last", + "start": 802.16, + "end": 802.32, + "probability": 1.0 + }, + { + "word": " two", + "start": 802.32, + "end": 802.5, + "probability": 0.994140625 + }, + { + "word": " weeks", + "start": 802.5, + "end": 802.74, + "probability": 0.99951171875 + }, + { + "word": " calls", + "start": 802.74, + "end": 802.96, + "probability": 0.9853515625 + }, + { + "word": " in", + "start": 802.96, + "end": 803.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 803.22, + "end": 803.8, + "probability": 0.94189453125 + }, + { + "word": " starts", + "start": 803.8, + "end": 803.98, + "probability": 1.0 + }, + { + "word": " asking", + "start": 803.98, + "end": 804.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 804.28, + "end": 804.48, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 804.48, + "end": 804.76, + "probability": 0.99267578125 + }, + { + "word": " Bridge.", + "start": 804.76, + "end": 805.0, + "probability": 0.98974609375 + } + ] + }, + { + "id": 466, + "text": "Okay.", + "start": 805.22, + "end": 805.44, + "words": [ + { + "word": " Okay.", + "start": 805.22, + "end": 805.44, + "probability": 0.681640625 + } + ] + }, + { + "id": 467, + "text": "So, the last two weeks, the caller asked about Sandy Bridge versus the AMD version of Sandy Bridge.", + "start": 806.16, + "end": 811.16, + "words": [ + { + "word": " So,", + "start": 806.16, + "end": 806.6, + "probability": 0.98388671875 + }, + { + "word": " the", + "start": 806.74, + "end": 807.14, + "probability": 0.7275390625 + }, + { + "word": " last", + "start": 807.14, + "end": 807.38, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 807.38, + "end": 807.56, + "probability": 1.0 + }, + { + "word": " weeks,", + "start": 807.56, + "end": 807.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 807.8, + "end": 807.88, + "probability": 0.3369140625 + }, + { + "word": " caller", + "start": 807.88, + "end": 808.16, + "probability": 0.99951171875 + }, + { + "word": " asked", + "start": 808.16, + "end": 808.36, + "probability": 0.953125 + }, + { + "word": " about", + "start": 808.36, + "end": 808.56, + "probability": 0.93408203125 + }, + { + "word": " Sandy", + "start": 808.56, + "end": 808.82, + "probability": 0.9990234375 + }, + { + "word": " Bridge", + "start": 808.82, + "end": 809.0, + "probability": 1.0 + }, + { + "word": " versus", + "start": 809.0, + "end": 809.3, + "probability": 0.9775390625 + }, + { + "word": " the", + "start": 809.3, + "end": 809.62, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 809.62, + "end": 809.92, + "probability": 0.99951171875 + }, + { + "word": " version", + "start": 809.92, + "end": 810.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 810.3, + "end": 810.62, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 810.62, + "end": 810.9, + "probability": 0.99951171875 + }, + { + "word": " Bridge.", + "start": 810.9, + "end": 811.16, + "probability": 1.0 + } + ] + }, + { + "id": 468, + "text": "And you failed.", + "start": 811.3, + "end": 811.94, + "words": [ + { + "word": " And", + "start": 811.3, + "end": 811.48, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 811.48, + "end": 811.6, + "probability": 0.99853515625 + }, + { + "word": " failed.", + "start": 811.6, + "end": 811.94, + "probability": 1.0 + } + ] + }, + { + "id": 469, + "text": "No.", + "start": 812.16, + "end": 812.54, + "words": [ + { + "word": " No.", + "start": 812.16, + "end": 812.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 470, + "text": "No, this week I've done it.", + "start": 813.14, + "end": 814.48, + "words": [ + { + "word": " No,", + "start": 813.14, + "end": 813.58, + "probability": 0.9033203125 + }, + { + "word": " this", + "start": 813.62, + "end": 813.8, + "probability": 1.0 + }, + { + "word": " week", + "start": 813.8, + "end": 813.98, + "probability": 1.0 + }, + { + "word": " I've", + "start": 813.98, + "end": 814.18, + "probability": 0.9638671875 + }, + { + "word": " done", + "start": 814.18, + "end": 814.3, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 814.3, + "end": 814.48, + "probability": 1.0 + } + ] + }, + { + "id": 471, + "text": "I've done it.", + "start": 814.5, + "end": 815.06, + "words": [ + { + "word": " I've", + "start": 814.5, + "end": 814.7, + "probability": 0.990234375 + }, + { + "word": " done", + "start": 814.7, + "end": 814.86, + "probability": 0.93603515625 + }, + { + "word": " it.", + "start": 814.86, + "end": 815.06, + "probability": 1.0 + } + ] + }, + { + "id": 472, + "text": "But the AMD version of it is called Fusion.", + "start": 815.18, + "end": 818.02, + "words": [ + { + "word": " But", + "start": 815.18, + "end": 815.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 815.62, + "end": 815.8, + "probability": 0.99267578125 + }, + { + "word": " AMD", + "start": 815.8, + "end": 816.24, + "probability": 1.0 + }, + { + "word": " version", + "start": 816.24, + "end": 816.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 816.56, + "end": 816.76, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 816.76, + "end": 817.04, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 817.04, + "end": 817.62, + "probability": 1.0 + }, + { + "word": " called", + "start": 817.62, + "end": 817.72, + "probability": 1.0 + }, + { + "word": " Fusion.", + "start": 817.72, + "end": 818.02, + "probability": 1.0 + } + ] + }, + { + "id": 473, + "text": "And I'd say if you're looking apples to apples or PC to PC, maybe.", + "start": 819.3599999999999, + "end": 823.82, + "words": [ + { + "word": " And", + "start": 819.3599999999999, + "end": 819.8, + "probability": 0.9990234375 + }, + { + "word": " I'd", + "start": 819.8, + "end": 820.24, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 820.24, + "end": 820.4, + "probability": 1.0 + }, + { + "word": " if", + "start": 820.4, + "end": 820.66, + "probability": 0.99169921875 + }, + { + "word": " you're", + "start": 820.66, + "end": 820.74, + "probability": 0.8955078125 + }, + { + "word": " looking", + "start": 820.74, + "end": 820.96, + "probability": 1.0 + }, + { + "word": " apples", + "start": 820.96, + "end": 821.3, + "probability": 0.8701171875 + }, + { + "word": " to", + "start": 821.3, + "end": 821.58, + "probability": 0.95703125 + }, + { + "word": " apples", + "start": 821.58, + "end": 821.92, + "probability": 1.0 + }, + { + "word": " or", + "start": 821.92, + "end": 822.54, + "probability": 0.87060546875 + }, + { + "word": " PC", + "start": 822.54, + "end": 823.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 823.06, + "end": 823.24, + "probability": 1.0 + }, + { + "word": " PC,", + "start": 823.24, + "end": 823.48, + "probability": 1.0 + }, + { + "word": " maybe.", + "start": 823.58, + "end": 823.82, + "probability": 1.0 + } + ] + }, + { + "id": 474, + "text": "You fail.", + "start": 823.98, + "end": 824.32, + "words": [ + { + "word": " You", + "start": 823.98, + "end": 824.12, + "probability": 1.0 + }, + { + "word": " fail.", + "start": 824.12, + "end": 824.32, + "probability": 0.78173828125 + } + ] + }, + { + "id": 475, + "text": "Yeah.", + "start": 824.42, + "end": 824.64, + "words": [ + { + "word": " Yeah.", + "start": 824.42, + "end": 824.64, + "probability": 0.96044921875 + } + ] + }, + { + "id": 476, + "text": "Anyways, if you're comparing the same ones, then yes, the AMD one is a better.", + "start": 824.8, + "end": 830.32, + "words": [ + { + "word": " Anyways,", + "start": 824.8, + "end": 825.24, + "probability": 0.96923828125 + }, + { + "word": " if", + "start": 825.36, + "end": 825.76, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 825.76, + "end": 825.94, + "probability": 0.998046875 + }, + { + "word": " comparing", + "start": 825.94, + "end": 826.1, + "probability": 0.72021484375 + }, + { + "word": " the", + "start": 826.1, + "end": 826.86, + "probability": 1.0 + }, + { + "word": " same", + "start": 826.86, + "end": 827.28, + "probability": 1.0 + }, + { + "word": " ones,", + "start": 827.28, + "end": 827.66, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 827.74, + "end": 827.92, + "probability": 0.99951171875 + }, + { + "word": " yes,", + "start": 827.92, + "end": 828.12, + "probability": 0.73388671875 + }, + { + "word": " the", + "start": 828.18, + "end": 828.28, + "probability": 0.99951171875 + }, + { + "word": " AMD", + "start": 828.28, + "end": 828.6, + "probability": 1.0 + }, + { + "word": " one", + "start": 828.6, + "end": 828.98, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 828.98, + "end": 829.68, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 829.68, + "end": 829.94, + "probability": 0.998046875 + }, + { + "word": " better.", + "start": 829.94, + "end": 830.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 477, + "text": "choice in theory.", + "start": 830.4, + "end": 832.08, + "words": [ + { + "word": " choice", + "start": 830.4, + "end": 830.9, + "probability": 0.91552734375 + }, + { + "word": " in", + "start": 830.9, + "end": 831.56, + "probability": 0.63525390625 + }, + { + "word": " theory.", + "start": 831.56, + "end": 832.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 478, + "text": "However, you know, the Fusion is like a comparison for an i3 of the Sandy Bridge.", + "start": 833.2199999999999, + "end": 840.76, + "words": [ + { + "word": " However,", + "start": 833.2199999999999, + "end": 833.66, + "probability": 0.96728515625 + }, + { + "word": " you", + "start": 833.66, + "end": 834.1, + "probability": 0.306396484375 + }, + { + "word": " know,", + "start": 834.1, + "end": 834.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 834.26, + "end": 834.38, + "probability": 0.99169921875 + }, + { + "word": " Fusion", + "start": 834.38, + "end": 835.5, + "probability": 0.70166015625 + }, + { + "word": " is", + "start": 835.5, + "end": 836.84, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 836.84, + "end": 836.94, + "probability": 0.98388671875 + }, + { + "word": " a", + "start": 836.94, + "end": 837.02, + "probability": 0.62890625 + }, + { + "word": " comparison", + "start": 837.02, + "end": 837.36, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 837.36, + "end": 837.54, + "probability": 0.99658203125 + }, + { + "word": " an", + "start": 837.54, + "end": 837.68, + "probability": 0.99755859375 + }, + { + "word": " i3", + "start": 837.68, + "end": 838.14, + "probability": 0.99365234375 + }, + { + "word": " of", + "start": 838.14, + "end": 838.76, + "probability": 0.82275390625 + }, + { + "word": " the", + "start": 838.76, + "end": 840.04, + "probability": 0.5341796875 + }, + { + "word": " Sandy", + "start": 840.04, + "end": 840.54, + "probability": 0.99462890625 + }, + { + "word": " Bridge.", + "start": 840.54, + "end": 840.76, + "probability": 0.9794921875 + } + ] + }, + { + "id": 479, + "text": "So, and I'm not a big fan of the Sandy Bridge to begin with.", + "start": 841.1, + "end": 844.2, + "words": [ + { + "word": " So,", + "start": 841.1, + "end": 841.52, + "probability": 0.68896484375 + }, + { + "word": " and", + "start": 841.64, + "end": 842.52, + "probability": 0.8662109375 + }, + { + "word": " I'm", + "start": 842.52, + "end": 842.72, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 842.72, + "end": 842.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 842.8, + "end": 842.9, + "probability": 1.0 + }, + { + "word": " big", + "start": 842.9, + "end": 843.04, + "probability": 1.0 + }, + { + "word": " fan", + "start": 843.04, + "end": 843.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 843.2, + "end": 843.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 843.28, + "end": 843.3, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 843.3, + "end": 843.46, + "probability": 0.9970703125 + }, + { + "word": " Bridge", + "start": 843.46, + "end": 843.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 843.62, + "end": 843.74, + "probability": 1.0 + }, + { + "word": " begin", + "start": 843.74, + "end": 843.94, + "probability": 1.0 + }, + { + "word": " with.", + "start": 843.94, + "end": 844.2, + "probability": 1.0 + } + ] + }, + { + "id": 480, + "text": "So, if you compare the Fusion compared to the i3 or even the i5 Intel, it is a little bit better.", + "start": 844.56, + "end": 850.76, + "words": [ + { + "word": " So,", + "start": 844.56, + "end": 845.0, + "probability": 0.8779296875 + }, + { + "word": " if", + "start": 845.0, + "end": 845.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 845.44, + "end": 845.54, + "probability": 1.0 + }, + { + "word": " compare", + "start": 845.54, + "end": 845.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 845.76, + "end": 846.06, + "probability": 1.0 + }, + { + "word": " Fusion", + "start": 846.06, + "end": 846.54, + "probability": 0.994140625 + }, + { + "word": " compared", + "start": 846.54, + "end": 846.88, + "probability": 0.99072265625 + }, + { + "word": " to", + "start": 846.88, + "end": 847.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 847.08, + "end": 847.16, + "probability": 1.0 + }, + { + "word": " i3", + "start": 847.16, + "end": 847.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 847.58, + "end": 847.94, + "probability": 0.92822265625 + }, + { + "word": " even", + "start": 847.94, + "end": 848.12, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 848.12, + "end": 848.34, + "probability": 1.0 + }, + { + "word": " i5", + "start": 848.34, + "end": 848.74, + "probability": 1.0 + }, + { + "word": " Intel,", + "start": 848.74, + "end": 849.28, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 849.5, + "end": 849.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 849.86, + "end": 850.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 850.04, + "end": 850.18, + "probability": 1.0 + }, + { + "word": " little", + "start": 850.18, + "end": 850.3, + "probability": 0.99951171875 + }, + { + "word": " bit", + "start": 850.3, + "end": 850.46, + "probability": 1.0 + }, + { + "word": " better.", + "start": 850.46, + "end": 850.76, + "probability": 1.0 + } + ] + }, + { + "id": 481, + "text": "However, there is no real high-ends available.", + "start": 850.98, + "end": 854.06, + "words": [ + { + "word": " However,", + "start": 850.98, + "end": 851.42, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 851.78, + "end": 852.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 852.48, + "end": 852.68, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 852.68, + "end": 852.84, + "probability": 1.0 + }, + { + "word": " real", + "start": 852.84, + "end": 853.12, + "probability": 0.99951171875 + }, + { + "word": " high", + "start": 853.12, + "end": 853.48, + "probability": 0.99951171875 + }, + { + "word": "-ends", + "start": 853.48, + "end": 853.84, + "probability": 0.8916015625 + }, + { + "word": " available.", + "start": 853.84, + "end": 854.06, + "probability": 1.0 + } + ] + }, + { + "id": 482, + "text": "You still fail.", + "start": 854.48, + "end": 854.94, + "words": [ + { + "word": " You", + "start": 854.48, + "end": 854.56, + "probability": 0.259765625 + }, + { + "word": " still", + "start": 854.56, + "end": 854.72, + "probability": 0.95654296875 + }, + { + "word": " fail.", + "start": 854.72, + "end": 854.94, + "probability": 0.94921875 + } + ] + }, + { + "id": 483, + "text": "There's really no high-end Fusions available.", + "start": 855.16, + "end": 857.54, + "words": [ + { + "word": " There's", + "start": 855.16, + "end": 855.38, + "probability": 0.99609375 + }, + { + "word": " really", + "start": 855.38, + "end": 856.34, + "probability": 0.9990234375 + }, + { + "word": " no", + "start": 856.34, + "end": 856.46, + "probability": 1.0 + }, + { + "word": " high", + "start": 856.46, + "end": 856.7, + "probability": 0.99951171875 + }, + { + "word": "-end", + "start": 856.7, + "end": 856.88, + "probability": 0.99755859375 + }, + { + "word": " Fusions", + "start": 856.88, + "end": 857.24, + "probability": 0.9208984375 + }, + { + "word": " available.", + "start": 857.24, + "end": 857.54, + "probability": 1.0 + } + ] + }, + { + "id": 484, + "text": "And by the time they are available,", + "start": 857.92, + "end": 859.44, + "words": [ + { + "word": " And", + "start": 857.92, + "end": 858.34, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 858.34, + "end": 858.48, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 858.48, + "end": 858.54, + "probability": 1.0 + }, + { + "word": " time", + "start": 858.54, + "end": 858.72, + "probability": 1.0 + }, + { + "word": " they", + "start": 858.72, + "end": 858.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 858.86, + "end": 859.02, + "probability": 1.0 + }, + { + "word": " available,", + "start": 859.02, + "end": 859.44, + "probability": 1.0 + } + ] + }, + { + "id": 485, + "text": "the next version of the Intel's is going to be out, which is going to be the Ivory Bridge.", + "start": 860.4, + "end": 863.62, + "words": [ + { + "word": " the", + "start": 860.4, + "end": 860.4, + "probability": 0.007343292236328125 + }, + { + "word": " next", + "start": 860.4, + "end": 860.4, + "probability": 0.85205078125 + }, + { + "word": " version", + "start": 860.4, + "end": 860.7, + "probability": 0.9921875 + }, + { + "word": " of", + "start": 860.7, + "end": 861.22, + "probability": 0.98681640625 + }, + { + "word": " the", + "start": 861.22, + "end": 861.36, + "probability": 0.9306640625 + }, + { + "word": " Intel's", + "start": 861.36, + "end": 861.92, + "probability": 0.60546875 + }, + { + "word": " is", + "start": 861.92, + "end": 862.04, + "probability": 0.9150390625 + }, + { + "word": " going", + "start": 862.04, + "end": 862.18, + "probability": 0.80078125 + }, + { + "word": " to", + "start": 862.18, + "end": 862.24, + "probability": 0.99658203125 + }, + { + "word": " be", + "start": 862.24, + "end": 862.34, + "probability": 0.9970703125 + }, + { + "word": " out,", + "start": 862.34, + "end": 862.54, + "probability": 0.9716796875 + }, + { + "word": " which", + "start": 862.64, + "end": 862.68, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 862.68, + "end": 862.78, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 862.78, + "end": 862.88, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 862.88, + "end": 862.94, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 862.94, + "end": 862.96, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 862.96, + "end": 863.04, + "probability": 0.998046875 + }, + { + "word": " Ivory", + "start": 863.04, + "end": 863.38, + "probability": 0.84619140625 + }, + { + "word": " Bridge.", + "start": 863.38, + "end": 863.62, + "probability": 0.94677734375 + } + ] + }, + { + "id": 486, + "text": "So, once again, AMD is just one step behind Intel.", + "start": 864.28, + "end": 868.62, + "words": [ + { + "word": " So,", + "start": 864.28, + "end": 864.66, + "probability": 0.9287109375 + }, + { + "word": " once", + "start": 864.76, + "end": 865.06, + "probability": 0.99951171875 + }, + { + "word": " again,", + "start": 865.06, + "end": 865.36, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 865.66, + "end": 866.52, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 866.52, + "end": 867.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 867.02, + "end": 867.18, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 867.18, + "end": 867.4, + "probability": 0.99951171875 + }, + { + "word": " step", + "start": 867.4, + "end": 867.7, + "probability": 1.0 + }, + { + "word": " behind", + "start": 867.7, + "end": 868.14, + "probability": 1.0 + }, + { + "word": " Intel.", + "start": 868.14, + "end": 868.62, + "probability": 1.0 + } + ] + }, + { + "id": 487, + "text": "They just cannot catch up.", + "start": 868.72, + "end": 870.04, + "words": [ + { + "word": " They", + "start": 868.72, + "end": 868.86, + "probability": 1.0 + }, + { + "word": " just", + "start": 868.86, + "end": 869.02, + "probability": 1.0 + }, + { + "word": " cannot", + "start": 869.02, + "end": 869.34, + "probability": 0.99951171875 + }, + { + "word": " catch", + "start": 869.34, + "end": 869.64, + "probability": 1.0 + }, + { + "word": " up.", + "start": 869.64, + "end": 870.04, + "probability": 1.0 + } + ] + }, + { + "id": 488, + "text": "I mean, they're trying to, but they're just not there yet.", + "start": 870.16, + "end": 872.26, + "words": [ + { + "word": " I", + "start": 870.16, + "end": 870.2, + "probability": 0.814453125 + }, + { + "word": " mean,", + "start": 870.2, + "end": 870.26, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 870.28, + "end": 870.38, + "probability": 0.9990234375 + }, + { + "word": " trying", + "start": 870.38, + "end": 870.76, + "probability": 0.9970703125 + }, + { + "word": " to,", + "start": 870.76, + "end": 871.06, + "probability": 1.0 + }, + { + "word": " but", + "start": 871.1, + "end": 871.28, + "probability": 1.0 + }, + { + "word": " they're", + "start": 871.28, + "end": 871.42, + "probability": 0.99609375 + }, + { + "word": " just", + "start": 871.42, + "end": 871.44, + "probability": 1.0 + }, + { + "word": " not", + "start": 871.44, + "end": 871.72, + "probability": 1.0 + }, + { + "word": " there", + "start": 871.72, + "end": 872.02, + "probability": 1.0 + }, + { + "word": " yet.", + "start": 872.02, + "end": 872.26, + "probability": 1.0 + } + ] + }, + { + "id": 489, + "text": "And like I said in previous calls, you know, previous weeks, I'm not a big fan of the Sandy Bridge.", + "start": 872.6, + "end": 877.9, + "words": [ + { + "word": " And", + "start": 872.6, + "end": 872.98, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 872.98, + "end": 873.3, + "probability": 0.5390625 + }, + { + "word": " I", + "start": 873.3, + "end": 873.4, + "probability": 1.0 + }, + { + "word": " said", + "start": 873.4, + "end": 873.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 873.58, + "end": 873.74, + "probability": 0.998046875 + }, + { + "word": " previous", + "start": 873.74, + "end": 874.26, + "probability": 1.0 + }, + { + "word": " calls,", + "start": 874.26, + "end": 874.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 874.76, + "end": 874.86, + "probability": 0.9755859375 + }, + { + "word": " know,", + "start": 874.86, + "end": 875.0, + "probability": 1.0 + }, + { + "word": " previous", + "start": 875.02, + "end": 875.52, + "probability": 0.98779296875 + }, + { + "word": " weeks,", + "start": 875.52, + "end": 875.94, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 876.24, + "end": 876.9, + "probability": 1.0 + }, + { + "word": " not", + "start": 876.9, + "end": 876.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 876.98, + "end": 877.08, + "probability": 1.0 + }, + { + "word": " big", + "start": 877.08, + "end": 877.2, + "probability": 1.0 + }, + { + "word": " fan", + "start": 877.2, + "end": 877.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 877.4, + "end": 877.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 877.54, + "end": 877.6, + "probability": 0.294189453125 + }, + { + "word": " Sandy", + "start": 877.6, + "end": 877.74, + "probability": 0.97216796875 + }, + { + "word": " Bridge.", + "start": 877.74, + "end": 877.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 490, + "text": "It's like those other computer repair places in town.", + "start": 878.16, + "end": 880.72, + "words": [ + { + "word": " It's", + "start": 878.16, + "end": 878.42, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 878.42, + "end": 878.52, + "probability": 1.0 + }, + { + "word": " those", + "start": 878.52, + "end": 878.66, + "probability": 0.974609375 + }, + { + "word": " other", + "start": 878.66, + "end": 878.84, + "probability": 1.0 + }, + { + "word": " computer", + "start": 878.84, + "end": 879.08, + "probability": 0.99951171875 + }, + { + "word": " repair", + "start": 879.08, + "end": 879.46, + "probability": 0.9931640625 + }, + { + "word": " places", + "start": 879.46, + "end": 880.38, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 880.38, + "end": 880.58, + "probability": 0.994140625 + }, + { + "word": " town.", + "start": 880.58, + "end": 880.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 491, + "text": "What?", + "start": 880.98, + "end": 881.22, + "words": [ + { + "word": " What?", + "start": 880.98, + "end": 881.22, + "probability": 0.9951171875 + } + ] + }, + { + "id": 492, + "text": "The i Intel.", + "start": 882.14, + "end": 883.18, + "words": [ + { + "word": " The", + "start": 882.14, + "end": 882.52, + "probability": 0.23974609375 + }, + { + "word": " i", + "start": 882.52, + "end": 882.82, + "probability": 0.04498291015625 + }, + { + "word": " Intel.", + "start": 882.82, + "end": 883.18, + "probability": 0.07891845703125 + } + ] + }, + { + "id": 493, + "text": "Oh.", + "start": 883.42, + "end": 883.8, + "words": [ + { + "word": " Oh.", + "start": 883.42, + "end": 883.8, + "probability": 0.9677734375 + } + ] + }, + { + "id": 494, + "text": "Well, the long story short is, you know, I think Sandy Bridge is going to work great for,", + "start": 886.08, + "end": 890.12, + "words": [ + { + "word": " Well,", + "start": 886.08, + "end": 886.46, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 886.58, + "end": 886.72, + "probability": 0.9423828125 + }, + { + "word": " long", + "start": 886.72, + "end": 886.88, + "probability": 1.0 + }, + { + "word": " story", + "start": 886.88, + "end": 887.08, + "probability": 1.0 + }, + { + "word": " short", + "start": 887.08, + "end": 887.34, + "probability": 1.0 + }, + { + "word": " is,", + "start": 887.34, + "end": 887.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 887.68, + "end": 888.38, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 888.38, + "end": 888.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 888.52, + "end": 888.6, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 888.6, + "end": 888.8, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 888.8, + "end": 888.96, + "probability": 0.9375 + }, + { + "word": " Bridge", + "start": 888.96, + "end": 889.14, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 889.14, + "end": 889.28, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 889.28, + "end": 889.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 889.28, + "end": 889.34, + "probability": 1.0 + }, + { + "word": " work", + "start": 889.34, + "end": 889.5, + "probability": 0.998046875 + }, + { + "word": " great", + "start": 889.5, + "end": 889.78, + "probability": 1.0 + }, + { + "word": " for,", + "start": 889.78, + "end": 890.12, + "probability": 0.9912109375 + } + ] + }, + { + "id": 495, + "text": "for, like, the miniature PCs, for the, you know, the laptops, for these little small form factor PCs.", + "start": 890.4, + "end": 897.4, + "words": [ + { + "word": " for,", + "start": 890.4, + "end": 890.5, + "probability": 0.84619140625 + }, + { + "word": " like,", + "start": 890.5, + "end": 891.14, + "probability": 0.94873046875 + }, + { + "word": " the", + "start": 891.26, + "end": 891.3, + "probability": 0.388427734375 + }, + { + "word": " miniature", + "start": 891.3, + "end": 891.52, + "probability": 0.98974609375 + }, + { + "word": " PCs,", + "start": 891.52, + "end": 892.06, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 892.34, + "end": 892.6, + "probability": 1.0 + }, + { + "word": " the,", + "start": 892.6, + "end": 892.86, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 892.86, + "end": 893.78, + "probability": 0.9892578125 + }, + { + "word": " know,", + "start": 893.78, + "end": 894.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 894.12, + "end": 894.2, + "probability": 0.9970703125 + }, + { + "word": " laptops,", + "start": 894.2, + "end": 894.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 894.78, + "end": 895.2, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 895.2, + "end": 895.36, + "probability": 1.0 + }, + { + "word": " little", + "start": 895.36, + "end": 895.58, + "probability": 1.0 + }, + { + "word": " small", + "start": 895.58, + "end": 896.22, + "probability": 0.99951171875 + }, + { + "word": " form", + "start": 896.22, + "end": 896.62, + "probability": 0.99951171875 + }, + { + "word": " factor", + "start": 896.62, + "end": 896.92, + "probability": 0.841796875 + }, + { + "word": " PCs.", + "start": 896.92, + "end": 897.4, + "probability": 1.0 + } + ] + }, + { + "id": 496, + "text": "When it comes to gaming and the gaming world and high-end graphics,", + "start": 897.84, + "end": 901.66, + "words": [ + { + "word": " When", + "start": 897.84, + "end": 898.14, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 898.14, + "end": 898.26, + "probability": 1.0 + }, + { + "word": " comes", + "start": 898.26, + "end": 898.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 898.46, + "end": 898.56, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 898.56, + "end": 898.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 898.86, + "end": 899.18, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 899.18, + "end": 899.3, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 899.3, + "end": 899.44, + "probability": 1.0 + }, + { + "word": " world", + "start": 899.44, + "end": 899.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 899.8, + "end": 900.38, + "probability": 0.9990234375 + }, + { + "word": " high", + "start": 900.38, + "end": 901.08, + "probability": 0.9990234375 + }, + { + "word": "-end", + "start": 901.08, + "end": 901.24, + "probability": 0.998046875 + }, + { + "word": " graphics,", + "start": 901.24, + "end": 901.66, + "probability": 1.0 + } + ] + }, + { + "id": 497, + "text": "I don't see Sandy Bridge taking over anytime soon.", + "start": 901.86, + "end": 904.7, + "words": [ + { + "word": " I", + "start": 901.86, + "end": 902.18, + "probability": 1.0 + }, + { + "word": " don't", + "start": 902.18, + "end": 902.38, + "probability": 1.0 + }, + { + "word": " see", + "start": 902.38, + "end": 902.56, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 902.56, + "end": 902.84, + "probability": 0.97705078125 + }, + { + "word": " Bridge", + "start": 902.84, + "end": 903.06, + "probability": 0.98388671875 + }, + { + "word": " taking", + "start": 903.06, + "end": 903.36, + "probability": 1.0 + }, + { + "word": " over", + "start": 903.36, + "end": 903.72, + "probability": 1.0 + }, + { + "word": " anytime", + "start": 903.72, + "end": 904.22, + "probability": 0.79541015625 + }, + { + "word": " soon.", + "start": 904.22, + "end": 904.7, + "probability": 1.0 + } + ] + }, + { + "id": 498, + "text": "It may be in the next two, three years maybe, but not in the next year by no means.", + "start": 904.84, + "end": 909.4, + "words": [ + { + "word": " It", + "start": 904.84, + "end": 905.08, + "probability": 0.99755859375 + }, + { + "word": " may", + "start": 905.08, + "end": 905.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 905.38, + "end": 905.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 905.58, + "end": 905.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 905.8, + "end": 905.92, + "probability": 1.0 + }, + { + "word": " next", + "start": 905.92, + "end": 906.06, + "probability": 1.0 + }, + { + "word": " two,", + "start": 906.06, + "end": 906.3, + "probability": 0.99560546875 + }, + { + "word": " three", + "start": 906.38, + "end": 906.52, + "probability": 1.0 + }, + { + "word": " years", + "start": 906.52, + "end": 906.84, + "probability": 1.0 + }, + { + "word": " maybe,", + "start": 906.84, + "end": 907.18, + "probability": 0.57373046875 + }, + { + "word": " but", + "start": 907.26, + "end": 907.4, + "probability": 1.0 + }, + { + "word": " not", + "start": 907.4, + "end": 907.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 907.58, + "end": 907.74, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 907.74, + "end": 907.86, + "probability": 1.0 + }, + { + "word": " next", + "start": 907.86, + "end": 908.1, + "probability": 1.0 + }, + { + "word": " year", + "start": 908.1, + "end": 908.34, + "probability": 1.0 + }, + { + "word": " by", + "start": 908.34, + "end": 908.92, + "probability": 0.990234375 + }, + { + "word": " no", + "start": 908.92, + "end": 909.14, + "probability": 1.0 + }, + { + "word": " means.", + "start": 909.14, + "end": 909.4, + "probability": 0.99462890625 + } + ] + }, + { + "id": 499, + "text": "So, myself, if I was looking at buying a new machine and I didn't care about the size of the machine,", + "start": 909.5, + "end": 913.6, + "words": [ + { + "word": " So,", + "start": 909.5, + "end": 909.66, + "probability": 0.9921875 + }, + { + "word": " myself,", + "start": 909.72, + "end": 910.24, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 910.56, + "end": 910.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 910.94, + "end": 911.06, + "probability": 1.0 + }, + { + "word": " was", + "start": 911.06, + "end": 911.2, + "probability": 1.0 + }, + { + "word": " looking", + "start": 911.2, + "end": 911.34, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 911.34, + "end": 911.46, + "probability": 0.99755859375 + }, + { + "word": " buying", + "start": 911.46, + "end": 911.64, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 911.64, + "end": 911.74, + "probability": 1.0 + }, + { + "word": " new", + "start": 911.74, + "end": 911.8, + "probability": 0.9990234375 + }, + { + "word": " machine", + "start": 911.8, + "end": 912.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 912.02, + "end": 912.3, + "probability": 0.98046875 + }, + { + "word": " I", + "start": 912.3, + "end": 912.4, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 912.4, + "end": 912.56, + "probability": 1.0 + }, + { + "word": " care", + "start": 912.56, + "end": 912.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 912.7, + "end": 912.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 912.86, + "end": 912.96, + "probability": 1.0 + }, + { + "word": " size", + "start": 912.96, + "end": 913.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 913.22, + "end": 913.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 913.36, + "end": 913.4, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 913.4, + "end": 913.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 500, + "text": "I would not do Sandy Bridge, you know.", + "start": 913.74, + "end": 915.42, + "words": [ + { + "word": " I", + "start": 913.74, + "end": 914.08, + "probability": 1.0 + }, + { + "word": " would", + "start": 914.08, + "end": 914.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 914.24, + "end": 914.4, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 914.4, + "end": 914.58, + "probability": 0.99951171875 + }, + { + "word": " Sandy", + "start": 914.58, + "end": 914.8, + "probability": 0.9990234375 + }, + { + "word": " Bridge,", + "start": 914.8, + "end": 915.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 915.06, + "end": 915.3, + "probability": 0.9990234375 + }, + { + "word": " know.", + "start": 915.3, + "end": 915.42, + "probability": 1.0 + } + ] + }, + { + "id": 501, + "text": "I would go ahead and get an actual traditional GPU and CPU, personally.", + "start": 915.46, + "end": 919.88, + "words": [ + { + "word": " I", + "start": 915.46, + "end": 915.64, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 915.64, + "end": 915.8, + "probability": 1.0 + }, + { + "word": " go", + "start": 915.8, + "end": 915.94, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 915.94, + "end": 916.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 916.08, + "end": 916.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 916.18, + "end": 916.32, + "probability": 1.0 + }, + { + "word": " an", + "start": 916.32, + "end": 916.44, + "probability": 1.0 + }, + { + "word": " actual", + "start": 916.44, + "end": 916.72, + "probability": 0.99951171875 + }, + { + "word": " traditional", + "start": 916.72, + "end": 917.02, + "probability": 0.99169921875 + }, + { + "word": " GPU", + "start": 917.02, + "end": 917.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 917.9, + "end": 918.42, + "probability": 0.95751953125 + }, + { + "word": " CPU,", + "start": 918.42, + "end": 918.78, + "probability": 1.0 + }, + { + "word": " personally.", + "start": 919.04, + "end": 919.88, + "probability": 0.998046875 + } + ] + }, + { + "id": 502, + "text": "Now, what are your thoughts on it, Mike?", + "start": 920.4, + "end": 921.46, + "words": [ + { + "word": " Now,", + "start": 920.4, + "end": 920.54, + "probability": 0.0621337890625 + }, + { + "word": " what", + "start": 920.54, + "end": 920.7, + "probability": 1.0 + }, + { + "word": " are", + "start": 920.7, + "end": 920.78, + "probability": 1.0 + }, + { + "word": " your", + "start": 920.78, + "end": 920.9, + "probability": 1.0 + }, + { + "word": " thoughts", + "start": 920.9, + "end": 921.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 921.12, + "end": 921.24, + "probability": 1.0 + }, + { + "word": " it,", + "start": 921.24, + "end": 921.32, + "probability": 0.509765625 + }, + { + "word": " Mike?", + "start": 921.36, + "end": 921.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 503, + "text": "Do you have any thoughts on it?", + "start": 921.48, + "end": 922.46, + "words": [ + { + "word": " Do", + "start": 921.48, + "end": 921.58, + "probability": 0.98486328125 + }, + { + "word": " you", + "start": 921.58, + "end": 921.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 921.6, + "end": 921.66, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 921.66, + "end": 921.72, + "probability": 1.0 + }, + { + "word": " thoughts", + "start": 921.72, + "end": 921.96, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 921.96, + "end": 922.38, + "probability": 0.95458984375 + }, + { + "word": " it?", + "start": 922.38, + "end": 922.46, + "probability": 0.98583984375 + } + ] + }, + { + "id": 504, + "text": "It's a theme of this particular segment.", + "start": 924.76, + "end": 926.46, + "words": [ + { + "word": " It's", + "start": 924.76, + "end": 925.12, + "probability": 0.7373046875 + }, + { + "word": " a", + "start": 925.12, + "end": 925.12, + "probability": 0.92724609375 + }, + { + "word": " theme", + "start": 925.12, + "end": 925.4, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 925.4, + "end": 925.56, + "probability": 1.0 + }, + { + "word": " this", + "start": 925.56, + "end": 925.74, + "probability": 1.0 + }, + { + "word": " particular", + "start": 925.74, + "end": 926.12, + "probability": 1.0 + }, + { + "word": " segment.", + "start": 926.12, + "end": 926.46, + "probability": 0.9853515625 + } + ] + }, + { + "id": 505, + "text": "You know, I don't like you.", + "start": 926.74, + "end": 927.32, + "words": [ + { + "word": " You", + "start": 926.74, + "end": 926.84, + "probability": 0.9375 + }, + { + "word": " know,", + "start": 926.84, + "end": 926.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 926.84, + "end": 926.84, + "probability": 1.0 + }, + { + "word": " don't", + "start": 926.84, + "end": 926.92, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 926.92, + "end": 927.04, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 927.04, + "end": 927.32, + "probability": 1.0 + } + ] + }, + { + "id": 506, + "text": "You're really upsetting me.", + "start": 927.8, + "end": 928.98, + "words": [ + { + "word": " You're", + "start": 927.8, + "end": 928.16, + "probability": 1.0 + }, + { + "word": " really", + "start": 928.16, + "end": 928.44, + "probability": 1.0 + }, + { + "word": " upsetting", + "start": 928.44, + "end": 928.78, + "probability": 0.9990234375 + }, + { + "word": " me.", + "start": 928.78, + "end": 928.98, + "probability": 1.0 + } + ] + }, + { + "id": 507, + "text": "No.", + "start": 929.04, + "end": 929.2, + "words": [ + { + "word": " No.", + "start": 929.04, + "end": 929.2, + "probability": 0.984375 + } + ] + }, + { + "id": 508, + "text": "No, seriously, what do you think?", + "start": 929.32, + "end": 930.38, + "words": [ + { + "word": " No,", + "start": 929.32, + "end": 929.68, + "probability": 0.95166015625 + }, + { + "word": " seriously,", + "start": 929.74, + "end": 929.9, + "probability": 1.0 + }, + { + "word": " what", + "start": 930.02, + "end": 930.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 930.1, + "end": 930.2, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 930.2, + "end": 930.22, + "probability": 1.0 + }, + { + "word": " think?", + "start": 930.22, + "end": 930.38, + "probability": 0.99755859375 + } + ] + }, + { + "id": 509, + "text": "I mean, about the CPU, GPU versus Sandy Bridge.", + "start": 930.52, + "end": 932.9, + "words": [ + { + "word": " I", + "start": 930.52, + "end": 930.62, + "probability": 0.99609375 + }, + { + "word": " mean,", + "start": 930.62, + "end": 930.82, + "probability": 1.0 + }, + { + "word": " about", + "start": 930.82, + "end": 931.38, + "probability": 0.97705078125 + }, + { + "word": " the", + "start": 931.38, + "end": 931.5, + "probability": 1.0 + }, + { + "word": " CPU,", + "start": 931.5, + "end": 931.7, + "probability": 0.93212890625 + }, + { + "word": " GPU", + "start": 931.82, + "end": 932.1, + "probability": 0.99853515625 + }, + { + "word": " versus", + "start": 932.1, + "end": 932.46, + "probability": 0.97265625 + }, + { + "word": " Sandy", + "start": 932.46, + "end": 932.7, + "probability": 0.94677734375 + }, + { + "word": " Bridge.", + "start": 932.7, + "end": 932.9, + "probability": 0.95263671875 + } + ] + }, + { + "id": 510, + "text": "I mean, if you're concerned about the graphics portion of it.", + "start": 933.1, + "end": 935.3, + "words": [ + { + "word": " I", + "start": 933.1, + "end": 933.46, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 933.46, + "end": 933.6, + "probability": 1.0 + }, + { + "word": " if", + "start": 933.6, + "end": 933.72, + "probability": 1.0 + }, + { + "word": " you're", + "start": 933.72, + "end": 933.82, + "probability": 1.0 + }, + { + "word": " concerned", + "start": 933.82, + "end": 934.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 934.0, + "end": 934.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 934.2, + "end": 934.36, + "probability": 1.0 + }, + { + "word": " graphics", + "start": 934.36, + "end": 934.64, + "probability": 1.0 + }, + { + "word": " portion", + "start": 934.64, + "end": 934.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 934.94, + "end": 935.16, + "probability": 1.0 + }, + { + "word": " it.", + "start": 935.16, + "end": 935.3, + "probability": 1.0 + } + ] + }, + { + "id": 511, + "text": "Right.", + "start": 935.38, + "end": 935.58, + "words": [ + { + "word": " Right.", + "start": 935.38, + "end": 935.58, + "probability": 0.99755859375 + } + ] + }, + { + "id": 512, + "text": "Right.", + "start": 935.66, + "end": 935.86, + "words": [ + { + "word": " Right.", + "start": 935.66, + "end": 935.86, + "probability": 0.85302734375 + } + ] + }, + { + "id": 513, + "text": "If you really want high-end graphics.", + "start": 935.9, + "end": 937.26, + "words": [ + { + "word": " If", + "start": 935.9, + "end": 936.02, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 936.02, + "end": 936.14, + "probability": 1.0 + }, + { + "word": " really", + "start": 936.14, + "end": 936.38, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 936.38, + "end": 936.62, + "probability": 1.0 + }, + { + "word": " high", + "start": 936.62, + "end": 936.8, + "probability": 0.99951171875 + }, + { + "word": "-end", + "start": 936.8, + "end": 936.92, + "probability": 0.984375 + }, + { + "word": " graphics.", + "start": 936.92, + "end": 937.26, + "probability": 1.0 + } + ] + }, + { + "id": 514, + "text": "Right.", + "start": 937.4, + "end": 937.58, + "words": [ + { + "word": " Right.", + "start": 937.4, + "end": 937.58, + "probability": 0.828125 + } + ] + }, + { + "id": 515, + "text": "Well, here's my thing, though, is that I'm torn between two different things.", + "start": 938.9, + "end": 941.7, + "words": [ + { + "word": " Well,", + "start": 938.9, + "end": 939.26, + "probability": 0.99560546875 + }, + { + "word": " here's", + "start": 939.26, + "end": 939.62, + "probability": 1.0 + }, + { + "word": " my", + "start": 939.62, + "end": 939.74, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 939.74, + "end": 939.98, + "probability": 1.0 + }, + { + "word": " though,", + "start": 940.0, + "end": 940.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 940.12, + "end": 940.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 940.2, + "end": 940.28, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 940.28, + "end": 940.52, + "probability": 1.0 + }, + { + "word": " torn", + "start": 940.52, + "end": 940.7, + "probability": 1.0 + }, + { + "word": " between", + "start": 940.7, + "end": 940.9, + "probability": 1.0 + }, + { + "word": " two", + "start": 940.9, + "end": 941.2, + "probability": 1.0 + }, + { + "word": " different", + "start": 941.2, + "end": 941.42, + "probability": 1.0 + }, + { + "word": " things.", + "start": 941.42, + "end": 941.7, + "probability": 1.0 + } + ] + }, + { + "id": 516, + "text": "One, you get better performance out of a standalone graphics card and a regular GPU.", + "start": 942.28, + "end": 946.4, + "words": [ + { + "word": " One,", + "start": 942.28, + "end": 942.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 942.82, + "end": 942.98, + "probability": 1.0 + }, + { + "word": " get", + "start": 942.98, + "end": 943.14, + "probability": 1.0 + }, + { + "word": " better", + "start": 943.14, + "end": 943.36, + "probability": 1.0 + }, + { + "word": " performance", + "start": 943.36, + "end": 943.68, + "probability": 1.0 + }, + { + "word": " out", + "start": 943.68, + "end": 943.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 943.92, + "end": 944.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 944.02, + "end": 944.2, + "probability": 0.9951171875 + }, + { + "word": " standalone", + "start": 944.2, + "end": 944.9, + "probability": 0.654296875 + }, + { + "word": " graphics", + "start": 944.9, + "end": 945.28, + "probability": 1.0 + }, + { + "word": " card", + "start": 945.28, + "end": 945.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 945.7, + "end": 945.86, + "probability": 0.8544921875 + }, + { + "word": " a", + "start": 945.86, + "end": 945.88, + "probability": 0.9912109375 + }, + { + "word": " regular", + "start": 945.88, + "end": 946.1, + "probability": 1.0 + }, + { + "word": " GPU.", + "start": 946.1, + "end": 946.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 517, + "text": "That's correct.", + "start": 946.56, + "end": 947.02, + "words": [ + { + "word": " That's", + "start": 946.56, + "end": 946.92, + "probability": 0.99853515625 + }, + { + "word": " correct.", + "start": 946.92, + "end": 947.02, + "probability": 0.93798828125 + } + ] + }, + { + "id": 518, + "text": "Or CPU.", + "start": 947.1, + "end": 947.28, + "words": [ + { + "word": " Or", + "start": 947.1, + "end": 947.28, + "probability": 0.306884765625 + }, + { + "word": " CPU.", + "start": 947.28, + "end": 947.28, + "probability": 0.8525390625 + } + ] + }, + { + "id": 519, + "text": "However, the way the Sandy Bridge is connected to the CPU and GPU.", + "start": 947.32, + "end": 950.24, + "words": [ + { + "word": " However,", + "start": 947.32, + "end": 947.66, + "probability": 0.98876953125 + }, + { + "word": " the", + "start": 947.88, + "end": 948.0, + "probability": 1.0 + }, + { + "word": " way", + "start": 948.0, + "end": 948.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 948.16, + "end": 948.3, + "probability": 0.99951171875 + }, + { + "word": " Sandy", + "start": 948.3, + "end": 948.5, + "probability": 0.99853515625 + }, + { + "word": " Bridge", + "start": 948.5, + "end": 948.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 948.74, + "end": 948.9, + "probability": 1.0 + }, + { + "word": " connected", + "start": 948.9, + "end": 949.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 949.14, + "end": 949.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 949.36, + "end": 949.42, + "probability": 0.99951171875 + }, + { + "word": " CPU", + "start": 949.42, + "end": 949.76, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 949.76, + "end": 950.0, + "probability": 0.99951171875 + }, + { + "word": " GPU.", + "start": 950.0, + "end": 950.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 520, + "text": "Because they're one and the same, in essence.", + "start": 950.4, + "end": 951.74, + "words": [ + { + "word": " Because", + "start": 950.4, + "end": 950.64, + "probability": 0.046234130859375 + }, + { + "word": " they're", + "start": 950.64, + "end": 950.82, + "probability": 0.9765625 + }, + { + "word": " one", + "start": 950.82, + "end": 950.98, + "probability": 0.9443359375 + }, + { + "word": " and", + "start": 950.98, + "end": 951.1, + "probability": 0.962890625 + }, + { + "word": " the", + "start": 951.1, + "end": 951.16, + "probability": 1.0 + }, + { + "word": " same,", + "start": 951.16, + "end": 951.38, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 951.44, + "end": 951.58, + "probability": 0.99951171875 + }, + { + "word": " essence.", + "start": 951.58, + "end": 951.74, + "probability": 1.0 + } + ] + }, + { + "id": 521, + "text": "Right.", + "start": 951.94, + "end": 952.16, + "words": [ + { + "word": " Right.", + "start": 951.94, + "end": 952.16, + "probability": 0.76220703125 + } + ] + }, + { + "id": 522, + "text": "You're going to get better performance that way.", + "start": 952.3, + "end": 953.56, + "words": [ + { + "word": " You're", + "start": 952.3, + "end": 952.5, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 952.5, + "end": 952.58, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 952.58, + "end": 952.6, + "probability": 1.0 + }, + { + "word": " get", + "start": 952.6, + "end": 952.72, + "probability": 1.0 + }, + { + "word": " better", + "start": 952.72, + "end": 952.86, + "probability": 0.98095703125 + }, + { + "word": " performance", + "start": 952.86, + "end": 953.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 953.14, + "end": 953.34, + "probability": 1.0 + }, + { + "word": " way.", + "start": 953.34, + "end": 953.56, + "probability": 1.0 + } + ] + }, + { + "id": 523, + "text": "Here's what I'm thinking, though, is that if you're looking to build that machine.", + "start": 955.08, + "end": 958.32, + "words": [ + { + "word": " Here's", + "start": 955.08, + "end": 955.4, + "probability": 0.8564453125 + }, + { + "word": " what", + "start": 955.4, + "end": 955.46, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 955.46, + "end": 955.6, + "probability": 1.0 + }, + { + "word": " thinking,", + "start": 955.6, + "end": 955.78, + "probability": 1.0 + }, + { + "word": " though,", + "start": 955.84, + "end": 955.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 956.0, + "end": 956.1, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 956.1, + "end": 956.16, + "probability": 1.0 + }, + { + "word": " if", + "start": 956.16, + "end": 956.44, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 956.44, + "end": 956.62, + "probability": 1.0 + }, + { + "word": " looking", + "start": 956.62, + "end": 957.56, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 957.56, + "end": 957.76, + "probability": 1.0 + }, + { + "word": " build", + "start": 957.76, + "end": 957.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 957.92, + "end": 958.06, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 958.06, + "end": 958.32, + "probability": 1.0 + } + ] + }, + { + "id": 524, + "text": "Right.", + "start": 958.54, + "end": 958.78, + "words": [ + { + "word": " Right.", + "start": 958.54, + "end": 958.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 525, + "text": "Right.", + "start": 958.86, + "end": 959.0, + "words": [ + { + "word": " Right.", + "start": 958.86, + "end": 959.0, + "probability": 0.273193359375 + } + ] + }, + { + "id": 526, + "text": "Moving forward.", + "start": 959.04, + "end": 959.62, + "words": [ + { + "word": " Moving", + "start": 959.04, + "end": 959.2, + "probability": 0.99462890625 + }, + { + "word": " forward.", + "start": 959.2, + "end": 959.62, + "probability": 1.0 + } + ] + }, + { + "id": 527, + "text": "Right.", + "start": 959.7, + "end": 960.0, + "words": [ + { + "word": " Right.", + "start": 959.7, + "end": 960.0, + "probability": 0.99267578125 + } + ] + }, + { + "id": 528, + "text": "You might as well get the Sandy Bridge.", + "start": 960.26, + "end": 961.76, + "words": [ + { + "word": " You", + "start": 960.26, + "end": 960.58, + "probability": 0.9970703125 + }, + { + "word": " might", + "start": 960.58, + "end": 960.78, + "probability": 1.0 + }, + { + "word": " as", + "start": 960.78, + "end": 960.92, + "probability": 1.0 + }, + { + "word": " well", + "start": 960.92, + "end": 961.06, + "probability": 1.0 + }, + { + "word": " get", + "start": 961.06, + "end": 961.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 961.2, + "end": 961.34, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 961.34, + "end": 961.52, + "probability": 0.982421875 + }, + { + "word": " Bridge.", + "start": 961.52, + "end": 961.76, + "probability": 0.94970703125 + } + ] + }, + { + "id": 529, + "text": "Right.", + "start": 962.3, + "end": 962.62, + "words": [ + { + "word": " Right.", + "start": 962.3, + "end": 962.62, + "probability": 0.99658203125 + } + ] + }, + { + "id": 530, + "text": "So that you are in the right processor slot, right?", + "start": 962.68, + "end": 965.12, + "words": [ + { + "word": " So", + "start": 962.68, + "end": 962.82, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 962.82, + "end": 962.94, + "probability": 0.9755859375 + }, + { + "word": " you", + "start": 962.94, + "end": 963.14, + "probability": 1.0 + }, + { + "word": " are", + "start": 963.14, + "end": 963.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 963.28, + "end": 963.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 963.52, + "end": 963.68, + "probability": 1.0 + }, + { + "word": " right", + "start": 963.68, + "end": 963.9, + "probability": 1.0 + }, + { + "word": " processor", + "start": 963.9, + "end": 964.44, + "probability": 1.0 + }, + { + "word": " slot,", + "start": 964.44, + "end": 964.78, + "probability": 1.0 + }, + { + "word": " right?", + "start": 964.94, + "end": 965.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 531, + "text": "Board type to be moving forward.", + "start": 965.18, + "end": 966.9, + "words": [ + { + "word": " Board", + "start": 965.18, + "end": 965.38, + "probability": 0.9326171875 + }, + { + "word": " type", + "start": 965.38, + "end": 965.76, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 965.76, + "end": 966.0, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 966.0, + "end": 966.16, + "probability": 1.0 + }, + { + "word": " moving", + "start": 966.16, + "end": 966.4, + "probability": 1.0 + }, + { + "word": " forward.", + "start": 966.4, + "end": 966.9, + "probability": 1.0 + } + ] + }, + { + "id": 532, + "text": "Right.", + "start": 967.24, + "end": 967.56, + "words": [ + { + "word": " Right.", + "start": 967.24, + "end": 967.56, + "probability": 0.990234375 + } + ] + }, + { + "id": 533, + "text": "Right.", + "start": 967.68, + "end": 967.92, + "words": [ + { + "word": " Right.", + "start": 967.68, + "end": 967.92, + "probability": 0.96337890625 + } + ] + }, + { + "id": 534, + "text": "Because if you buy, let's just say, a regular, like, iCore.", + "start": 967.94, + "end": 972.28, + "words": [ + { + "word": " Because", + "start": 967.94, + "end": 968.16, + "probability": 0.9970703125 + }, + { + "word": " if", + "start": 968.16, + "end": 968.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 968.28, + "end": 968.42, + "probability": 1.0 + }, + { + "word": " buy,", + "start": 968.42, + "end": 968.72, + "probability": 1.0 + }, + { + "word": " let's", + "start": 968.84, + "end": 969.64, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 969.64, + "end": 969.76, + "probability": 1.0 + }, + { + "word": " say,", + "start": 969.76, + "end": 969.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 969.98, + "end": 970.06, + "probability": 1.0 + }, + { + "word": " regular,", + "start": 970.06, + "end": 970.36, + "probability": 1.0 + }, + { + "word": " like,", + "start": 970.44, + "end": 970.9, + "probability": 1.0 + }, + { + "word": " iCore.", + "start": 970.92, + "end": 972.28, + "probability": 0.71484375 + } + ] + }, + { + "id": 535, + "text": "Mm-hmm.", + "start": 972.42, + "end": 972.72, + "words": [ + { + "word": " Mm", + "start": 972.42, + "end": 972.66, + "probability": 0.51513671875 + }, + { + "word": "-hmm.", + "start": 972.66, + "end": 972.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 536, + "text": "Right.", + "start": 972.84, + "end": 973.16, + "words": [ + { + "word": " Right.", + "start": 972.84, + "end": 973.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 537, + "text": "You're not going to be able to go anywhere with that in, let's say, a year and a half.", + "start": 974.4999999999999, + "end": 978.26, + "words": [ + { + "word": " You're", + "start": 974.4999999999999, + "end": 974.8199999999999, + "probability": 0.83984375 + }, + { + "word": " not", + "start": 974.8199999999999, + "end": 975.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 975.14, + "end": 975.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 975.24, + "end": 975.36, + "probability": 1.0 + }, + { + "word": " be", + "start": 975.36, + "end": 975.42, + "probability": 1.0 + }, + { + "word": " able", + "start": 975.42, + "end": 975.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 975.58, + "end": 975.8, + "probability": 1.0 + }, + { + "word": " go", + "start": 975.8, + "end": 976.24, + "probability": 1.0 + }, + { + "word": " anywhere", + "start": 976.24, + "end": 976.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 976.54, + "end": 976.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 976.78, + "end": 977.0, + "probability": 1.0 + }, + { + "word": " in,", + "start": 977.0, + "end": 977.38, + "probability": 0.99951171875 + }, + { + "word": " let's", + "start": 977.38, + "end": 977.62, + "probability": 1.0 + }, + { + "word": " say,", + "start": 977.62, + "end": 977.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 977.78, + "end": 977.86, + "probability": 1.0 + }, + { + "word": " year", + "start": 977.86, + "end": 977.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 977.94, + "end": 978.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 978.04, + "end": 978.08, + "probability": 1.0 + }, + { + "word": " half.", + "start": 978.08, + "end": 978.26, + "probability": 1.0 + } + ] + }, + { + "id": 538, + "text": "Right.", + "start": 978.96, + "end": 979.28, + "words": [ + { + "word": " Right.", + "start": 978.96, + "end": 979.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 539, + "text": "Right.", + "start": 979.32, + "end": 979.4, + "words": [ + { + "word": " Right.", + "start": 979.32, + "end": 979.4, + "probability": 0.0157318115234375 + } + ] + }, + { + "id": 540, + "text": "Because those boards are going to be gone.", + "start": 979.4, + "end": 980.38, + "words": [ + { + "word": " Because", + "start": 979.4, + "end": 979.48, + "probability": 0.97412109375 + }, + { + "word": " those", + "start": 979.48, + "end": 979.64, + "probability": 0.99853515625 + }, + { + "word": " boards", + "start": 979.64, + "end": 979.84, + "probability": 1.0 + }, + { + "word": " are", + "start": 979.84, + "end": 980.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 980.0, + "end": 980.06, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 980.06, + "end": 980.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 980.1, + "end": 980.16, + "probability": 1.0 + }, + { + "word": " gone.", + "start": 980.16, + "end": 980.38, + "probability": 0.99755859375 + } + ] + }, + { + "id": 541, + "text": "Right.", + "start": 981.42, + "end": 981.74, + "words": [ + { + "word": " Right.", + "start": 981.42, + "end": 981.74, + "probability": 0.00885009765625 + } + ] + }, + { + "id": 542, + "text": "", + "start": 981.74, + "end": 981.74, + "words": [] + }, + { + "id": 543, + "text": "All right.", + "start": 981.9, + "end": 982.38, + "words": [ + { + "word": " All", + "start": 981.9, + "end": 982.22, + "probability": 0.91455078125 + }, + { + "word": " right.", + "start": 982.22, + "end": 982.38, + "probability": 1.0 + } + ] + }, + { + "id": 544, + "text": "All right.", + "start": 982.46, + "end": 982.58, + "words": [ + { + "word": " All", + "start": 982.46, + "end": 982.54, + "probability": 0.3017578125 + }, + { + "word": " right.", + "start": 982.54, + "end": 982.58, + "probability": 1.0 + } + ] + }, + { + "id": 545, + "text": "So I don't want to see somebody go out and buy, like, an i7 right now.", + "start": 982.58, + "end": 986.0, + "words": [ + { + "word": " So", + "start": 982.58, + "end": 982.7, + "probability": 0.9873046875 + }, + { + "word": " I", + "start": 982.7, + "end": 982.84, + "probability": 0.7578125 + }, + { + "word": " don't", + "start": 982.84, + "end": 983.2, + "probability": 0.994140625 + }, + { + "word": " want", + "start": 983.2, + "end": 983.26, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 983.26, + "end": 983.36, + "probability": 1.0 + }, + { + "word": " see", + "start": 983.36, + "end": 983.48, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 983.48, + "end": 983.72, + "probability": 1.0 + }, + { + "word": " go", + "start": 983.72, + "end": 983.88, + "probability": 1.0 + }, + { + "word": " out", + "start": 983.88, + "end": 984.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 984.04, + "end": 984.16, + "probability": 0.99951171875 + }, + { + "word": " buy,", + "start": 984.16, + "end": 984.42, + "probability": 1.0 + }, + { + "word": " like,", + "start": 984.5, + "end": 984.8, + "probability": 1.0 + }, + { + "word": " an", + "start": 984.8, + "end": 984.9, + "probability": 1.0 + }, + { + "word": " i7", + "start": 984.9, + "end": 985.24, + "probability": 0.99169921875 + }, + { + "word": " right", + "start": 985.24, + "end": 985.7, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 985.7, + "end": 986.0, + "probability": 1.0 + } + ] + }, + { + "id": 546, + "text": "Mm-hmm.", + "start": 986.12, + "end": 986.44, + "words": [ + { + "word": " Mm", + "start": 986.12, + "end": 986.36, + "probability": 0.8857421875 + }, + { + "word": "-hmm.", + "start": 986.36, + "end": 986.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 547, + "text": "And then buy a really nice video card.", + "start": 986.5, + "end": 988.02, + "words": [ + { + "word": " And", + "start": 986.5, + "end": 986.76, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 986.76, + "end": 986.9, + "probability": 1.0 + }, + { + "word": " buy", + "start": 986.9, + "end": 987.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 987.06, + "end": 987.18, + "probability": 1.0 + }, + { + "word": " really", + "start": 987.18, + "end": 987.34, + "probability": 1.0 + }, + { + "word": " nice", + "start": 987.34, + "end": 987.54, + "probability": 1.0 + }, + { + "word": " video", + "start": 987.54, + "end": 987.74, + "probability": 0.998046875 + }, + { + "word": " card.", + "start": 987.74, + "end": 988.02, + "probability": 1.0 + } + ] + }, + { + "id": 548, + "text": "Right.", + "start": 988.24, + "end": 988.54, + "words": [ + { + "word": " Right.", + "start": 988.24, + "end": 988.54, + "probability": 0.9931640625 + } + ] + }, + { + "id": 549, + "text": "And then a year and a half from now, they won't be able to upgrade the processor.", + "start": 988.78, + "end": 991.58, + "words": [ + { + "word": " And", + "start": 988.78, + "end": 989.1, + "probability": 0.998046875 + }, + { + "word": " then", + "start": 989.1, + "end": 989.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 989.32, + "end": 989.44, + "probability": 0.9990234375 + }, + { + "word": " year", + "start": 989.44, + "end": 989.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 989.64, + "end": 989.74, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 989.74, + "end": 989.84, + "probability": 1.0 + }, + { + "word": " half", + "start": 989.84, + "end": 989.98, + "probability": 1.0 + }, + { + "word": " from", + "start": 989.98, + "end": 990.12, + "probability": 1.0 + }, + { + "word": " now,", + "start": 990.12, + "end": 990.3, + "probability": 1.0 + }, + { + "word": " they", + "start": 990.36, + "end": 990.44, + "probability": 0.99853515625 + }, + { + "word": " won't", + "start": 990.44, + "end": 990.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 990.62, + "end": 990.72, + "probability": 1.0 + }, + { + "word": " able", + "start": 990.72, + "end": 990.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 990.78, + "end": 990.84, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 990.84, + "end": 991.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 991.06, + "end": 991.2, + "probability": 1.0 + }, + { + "word": " processor.", + "start": 991.2, + "end": 991.58, + "probability": 1.0 + } + ] + }, + { + "id": 550, + "text": "Right.", + "start": 992.38, + "end": 992.7, + "words": [ + { + "word": " Right.", + "start": 992.38, + "end": 992.7, + "probability": 0.88232421875 + } + ] + }, + { + "id": 551, + "text": "Without replacing it.", + "start": 992.7, + "end": 993.34, + "words": [ + { + "word": " Without", + "start": 992.7, + "end": 992.98, + "probability": 0.763671875 + }, + { + "word": " replacing", + "start": 992.98, + "end": 993.32, + "probability": 0.70263671875 + }, + { + "word": " it.", + "start": 993.32, + "end": 993.34, + "probability": 0.681640625 + } + ] + }, + { + "id": 552, + "text": "You think the pin sets are going to be different or anything?", + "start": 993.34, + "end": 994.64, + "words": [ + { + "word": " You", + "start": 993.34, + "end": 993.38, + "probability": 0.470947265625 + }, + { + "word": " think", + "start": 993.38, + "end": 993.38, + "probability": 0.90625 + }, + { + "word": " the", + "start": 993.38, + "end": 993.48, + "probability": 0.99365234375 + }, + { + "word": " pin", + "start": 993.48, + "end": 993.66, + "probability": 0.77685546875 + }, + { + "word": " sets", + "start": 993.66, + "end": 993.86, + "probability": 0.6640625 + }, + { + "word": " are", + "start": 993.86, + "end": 993.96, + "probability": 0.5302734375 + }, + { + "word": " going", + "start": 993.96, + "end": 994.1, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 994.1, + "end": 994.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 994.1, + "end": 994.12, + "probability": 1.0 + }, + { + "word": " different", + "start": 994.12, + "end": 994.34, + "probability": 1.0 + }, + { + "word": " or", + "start": 994.34, + "end": 994.46, + "probability": 0.37890625 + }, + { + "word": " anything?", + "start": 994.46, + "end": 994.64, + "probability": 0.92724609375 + } + ] + }, + { + "id": 553, + "text": "The pin set is different.", + "start": 994.76, + "end": 995.2, + "words": [ + { + "word": " The", + "start": 994.76, + "end": 994.78, + "probability": 0.9755859375 + }, + { + "word": " pin", + "start": 994.78, + "end": 994.78, + "probability": 0.9990234375 + }, + { + "word": " set", + "start": 994.78, + "end": 994.78, + "probability": 0.89599609375 + }, + { + "word": " is", + "start": 994.78, + "end": 994.88, + "probability": 1.0 + }, + { + "word": " different.", + "start": 994.88, + "end": 995.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 554, + "text": "Yeah.", + "start": 995.24, + "end": 995.34, + "words": [ + { + "word": " Yeah.", + "start": 995.24, + "end": 995.34, + "probability": 0.88232421875 + } + ] + }, + { + "id": 555, + "text": "Between the 55 and the 57.", + "start": 995.46, + "end": 997.44, + "words": [ + { + "word": " Between", + "start": 995.46, + "end": 995.78, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 995.78, + "end": 996.0, + "probability": 0.9921875 + }, + { + "word": " 55", + "start": 996.0, + "end": 996.68, + "probability": 0.91796875 + }, + { + "word": " and", + "start": 996.68, + "end": 997.18, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 997.18, + "end": 997.3, + "probability": 1.0 + }, + { + "word": " 57.", + "start": 997.3, + "end": 997.44, + "probability": 0.76611328125 + } + ] + }, + { + "id": 556, + "text": "That's assuming Sandy Bridge takes over.", + "start": 997.44, + "end": 999.16, + "words": [ + { + "word": " That's", + "start": 997.44, + "end": 997.76, + "probability": 0.96630859375 + }, + { + "word": " assuming", + "start": 997.76, + "end": 998.08, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 998.08, + "end": 998.4, + "probability": 0.98095703125 + }, + { + "word": " Bridge", + "start": 998.4, + "end": 998.62, + "probability": 0.9951171875 + }, + { + "word": " takes", + "start": 998.62, + "end": 998.84, + "probability": 1.0 + }, + { + "word": " over.", + "start": 998.84, + "end": 999.16, + "probability": 1.0 + } + ] + }, + { + "id": 557, + "text": "I think it will.", + "start": 999.96, + "end": 1000.74, + "words": [ + { + "word": " I", + "start": 999.96, + "end": 1000.28, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1000.28, + "end": 1000.5, + "probability": 1.0 + }, + { + "word": " it", + "start": 1000.5, + "end": 1000.64, + "probability": 1.0 + }, + { + "word": " will.", + "start": 1000.64, + "end": 1000.74, + "probability": 1.0 + } + ] + }, + { + "id": 558, + "text": "You think so?", + "start": 1000.84, + "end": 1001.3, + "words": [ + { + "word": " You", + "start": 1000.84, + "end": 1000.9, + "probability": 0.91455078125 + }, + { + "word": " think", + "start": 1000.9, + "end": 1001.08, + "probability": 1.0 + }, + { + "word": " so?", + "start": 1001.08, + "end": 1001.3, + "probability": 1.0 + } + ] + }, + { + "id": 559, + "text": "Yeah.", + "start": 1001.44, + "end": 1001.6, + "words": [ + { + "word": " Yeah.", + "start": 1001.44, + "end": 1001.6, + "probability": 0.98779296875 + } + ] + }, + { + "id": 560, + "text": "Because they're going to move.", + "start": 1001.74, + "end": 1002.76, + "words": [ + { + "word": " Because", + "start": 1001.74, + "end": 1002.06, + "probability": 0.98583984375 + }, + { + "word": " they're", + "start": 1002.06, + "end": 1002.28, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 1002.28, + "end": 1002.5, + "probability": 0.91015625 + }, + { + "word": " to", + "start": 1002.5, + "end": 1002.62, + "probability": 1.0 + }, + { + "word": " move.", + "start": 1002.62, + "end": 1002.76, + "probability": 1.0 + } + ] + }, + { + "id": 561, + "text": "Basically, they're going to move the i7 into the Sandy Bridge.", + "start": 1002.86, + "end": 1005.6, + "words": [ + { + "word": " Basically,", + "start": 1002.86, + "end": 1003.18, + "probability": 0.80712890625 + }, + { + "word": " they're", + "start": 1003.3, + "end": 1003.54, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1003.54, + "end": 1003.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 1003.58, + "end": 1003.66, + "probability": 1.0 + }, + { + "word": " move", + "start": 1003.66, + "end": 1003.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1003.84, + "end": 1004.0, + "probability": 1.0 + }, + { + "word": " i7", + "start": 1004.0, + "end": 1004.5, + "probability": 1.0 + }, + { + "word": " into", + "start": 1004.5, + "end": 1005.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1005.02, + "end": 1005.16, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 1005.16, + "end": 1005.34, + "probability": 1.0 + }, + { + "word": " Bridge.", + "start": 1005.34, + "end": 1005.6, + "probability": 1.0 + } + ] + }, + { + "id": 562, + "text": "Right.", + "start": 1006.12, + "end": 1006.44, + "words": [ + { + "word": " Right.", + "start": 1006.12, + "end": 1006.44, + "probability": 0.8935546875 + } + ] + }, + { + "id": 563, + "text": "So I think that it's going to move in that direction.", + "start": 1006.5, + "end": 1008.88, + "words": [ + { + "word": " So", + "start": 1006.5, + "end": 1006.7, + "probability": 0.94189453125 + }, + { + "word": " I", + "start": 1006.7, + "end": 1007.02, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 1007.02, + "end": 1007.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 1007.5, + "end": 1007.66, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1007.66, + "end": 1007.84, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1007.84, + "end": 1007.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1007.88, + "end": 1007.98, + "probability": 1.0 + }, + { + "word": " move", + "start": 1007.98, + "end": 1008.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 1008.2, + "end": 1008.32, + "probability": 0.85302734375 + }, + { + "word": " that", + "start": 1008.32, + "end": 1008.48, + "probability": 1.0 + }, + { + "word": " direction.", + "start": 1008.48, + "end": 1008.88, + "probability": 1.0 + } + ] + }, + { + "id": 564, + "text": "There's no reason for them.", + "start": 1008.96, + "end": 1010.38, + "words": [ + { + "word": " There's", + "start": 1008.96, + "end": 1009.18, + "probability": 0.9794921875 + }, + { + "word": " no", + "start": 1009.18, + "end": 1009.34, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1009.34, + "end": 1009.92, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1009.92, + "end": 1010.2, + "probability": 0.9990234375 + }, + { + "word": " them.", + "start": 1010.2, + "end": 1010.38, + "probability": 0.9970703125 + } + ] + }, + { + "id": 565, + "text": "They're going to have two separate product lines like that.", + "start": 1010.4, + "end": 1012.64, + "words": [ + { + "word": " They're", + "start": 1010.4, + "end": 1010.4, + "probability": 0.0330810546875 + }, + { + "word": " going", + "start": 1010.4, + "end": 1010.4, + "probability": 0.90771484375 + }, + { + "word": " to", + "start": 1010.4, + "end": 1010.4, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1010.4, + "end": 1010.48, + "probability": 0.998046875 + }, + { + "word": " two", + "start": 1010.48, + "end": 1010.66, + "probability": 0.9873046875 + }, + { + "word": " separate", + "start": 1010.66, + "end": 1011.04, + "probability": 0.99951171875 + }, + { + "word": " product", + "start": 1011.04, + "end": 1011.3, + "probability": 0.99951171875 + }, + { + "word": " lines", + "start": 1011.3, + "end": 1012.06, + "probability": 0.9921875 + }, + { + "word": " like", + "start": 1012.06, + "end": 1012.4, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 1012.4, + "end": 1012.64, + "probability": 1.0 + } + ] + }, + { + "id": 566, + "text": "The current Sandy Bridge is, I think, just the beta test for moving the Sandy Bridge", + "start": 1013.2599999999999, + "end": 1018.84, + "words": [ + { + "word": " The", + "start": 1013.2599999999999, + "end": 1013.6999999999999, + "probability": 0.99853515625 + }, + { + "word": " current", + "start": 1013.6999999999999, + "end": 1014.14, + "probability": 0.99755859375 + }, + { + "word": " Sandy", + "start": 1014.14, + "end": 1014.44, + "probability": 0.9951171875 + }, + { + "word": " Bridge", + "start": 1014.44, + "end": 1014.66, + "probability": 0.89013671875 + }, + { + "word": " is,", + "start": 1014.66, + "end": 1015.14, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1015.24, + "end": 1015.36, + "probability": 1.0 + }, + { + "word": " think,", + "start": 1015.36, + "end": 1015.6, + "probability": 1.0 + }, + { + "word": " just", + "start": 1015.6, + "end": 1015.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1015.84, + "end": 1015.94, + "probability": 0.99951171875 + }, + { + "word": " beta", + "start": 1015.94, + "end": 1016.1, + "probability": 0.998046875 + }, + { + "word": " test", + "start": 1016.1, + "end": 1016.34, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1016.34, + "end": 1016.6, + "probability": 0.9990234375 + }, + { + "word": " moving", + "start": 1016.6, + "end": 1017.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1017.12, + "end": 1017.38, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 1017.38, + "end": 1018.48, + "probability": 0.998046875 + }, + { + "word": " Bridge", + "start": 1018.48, + "end": 1018.84, + "probability": 1.0 + } + ] + }, + { + "id": 567, + "text": "graphics processor, the Ivy Bridge, into the i7.", + "start": 1018.84, + "end": 1022.0, + "words": [ + { + "word": " graphics", + "start": 1018.84, + "end": 1019.4, + "probability": 0.99951171875 + }, + { + "word": " processor,", + "start": 1019.4, + "end": 1020.0, + "probability": 0.98291015625 + }, + { + "word": " the", + "start": 1020.04, + "end": 1020.28, + "probability": 0.99951171875 + }, + { + "word": " Ivy", + "start": 1020.28, + "end": 1020.44, + "probability": 0.76416015625 + }, + { + "word": " Bridge,", + "start": 1020.44, + "end": 1020.74, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1020.96, + "end": 1021.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 1021.44, + "end": 1021.62, + "probability": 1.0 + }, + { + "word": " i7.", + "start": 1021.62, + "end": 1022.0, + "probability": 0.953125 + } + ] + }, + { + "id": 568, + "text": "Okay.", + "start": 1022.14, + "end": 1022.36, + "words": [ + { + "word": " Okay.", + "start": 1022.14, + "end": 1022.36, + "probability": 0.51123046875 + } + ] + }, + { + "id": 569, + "text": "All right.", + "start": 1022.54, + "end": 1022.8, + "words": [ + { + "word": " All", + "start": 1022.54, + "end": 1022.76, + "probability": 0.448486328125 + }, + { + "word": " right.", + "start": 1022.76, + "end": 1022.8, + "probability": 1.0 + } + ] + }, + { + "id": 570, + "text": "So I don't think that there's any real benefit to splitting off those two product lines.", + "start": 1022.84, + "end": 1029.4, + "words": [ + { + "word": " So", + "start": 1022.84, + "end": 1022.92, + "probability": 0.98583984375 + }, + { + "word": " I", + "start": 1022.92, + "end": 1022.98, + "probability": 0.73388671875 + }, + { + "word": " don't", + "start": 1022.98, + "end": 1023.16, + "probability": 1.0 + }, + { + "word": " think", + "start": 1023.16, + "end": 1023.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1023.26, + "end": 1023.38, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 1023.38, + "end": 1023.54, + "probability": 1.0 + }, + { + "word": " any", + "start": 1023.54, + "end": 1023.68, + "probability": 1.0 + }, + { + "word": " real", + "start": 1023.68, + "end": 1024.04, + "probability": 1.0 + }, + { + "word": " benefit", + "start": 1024.04, + "end": 1025.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1025.02, + "end": 1025.76, + "probability": 1.0 + }, + { + "word": " splitting", + "start": 1025.76, + "end": 1026.44, + "probability": 0.79296875 + }, + { + "word": " off", + "start": 1026.44, + "end": 1026.98, + "probability": 0.98046875 + }, + { + "word": " those", + "start": 1026.98, + "end": 1028.4, + "probability": 1.0 + }, + { + "word": " two", + "start": 1028.4, + "end": 1028.66, + "probability": 1.0 + }, + { + "word": " product", + "start": 1028.66, + "end": 1029.02, + "probability": 1.0 + }, + { + "word": " lines.", + "start": 1029.02, + "end": 1029.4, + "probability": 1.0 + } + ] + }, + { + "id": 571, + "text": "Oh, okay.", + "start": 1029.58, + "end": 1030.0, + "words": [ + { + "word": " Oh,", + "start": 1029.58, + "end": 1029.82, + "probability": 0.81884765625 + }, + { + "word": " okay.", + "start": 1029.82, + "end": 1030.0, + "probability": 1.0 + } + ] + }, + { + "id": 572, + "text": "So if you end up buying an i7 now.", + "start": 1030.04, + "end": 1032.16, + "words": [ + { + "word": " So", + "start": 1030.04, + "end": 1030.12, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1030.12, + "end": 1030.34, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1030.34, + "end": 1030.62, + "probability": 1.0 + }, + { + "word": " end", + "start": 1030.62, + "end": 1031.04, + "probability": 1.0 + }, + { + "word": " up", + "start": 1031.04, + "end": 1031.2, + "probability": 1.0 + }, + { + "word": " buying", + "start": 1031.2, + "end": 1031.38, + "probability": 1.0 + }, + { + "word": " an", + "start": 1031.38, + "end": 1031.56, + "probability": 1.0 + }, + { + "word": " i7", + "start": 1031.56, + "end": 1031.88, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1031.88, + "end": 1032.16, + "probability": 1.0 + } + ] + }, + { + "id": 573, + "text": "Right.", + "start": 1032.42, + "end": 1032.64, + "words": [ + { + "word": " Right.", + "start": 1032.42, + "end": 1032.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 574, + "text": "Right.", + "start": 1032.84, + "end": 1033.1, + "words": [ + { + "word": " Right.", + "start": 1032.84, + "end": 1033.1, + "probability": 0.791015625 + } + ] + }, + { + "id": 575, + "text": "You can get the Sandy Bridge, the i7 equivalent of the Sandy Bridge now.", + "start": 1033.14, + "end": 1036.86, + "words": [ + { + "word": " You", + "start": 1033.14, + "end": 1033.48, + "probability": 0.99755859375 + }, + { + "word": " can", + "start": 1033.48, + "end": 1033.72, + "probability": 1.0 + }, + { + "word": " get", + "start": 1033.72, + "end": 1034.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1034.0, + "end": 1034.2, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 1034.2, + "end": 1034.42, + "probability": 0.9951171875 + }, + { + "word": " Bridge,", + "start": 1034.42, + "end": 1034.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1034.82, + "end": 1034.98, + "probability": 1.0 + }, + { + "word": " i7", + "start": 1034.98, + "end": 1035.46, + "probability": 1.0 + }, + { + "word": " equivalent", + "start": 1035.46, + "end": 1035.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 1035.84, + "end": 1036.1, + "probability": 0.66552734375 + }, + { + "word": " the", + "start": 1036.1, + "end": 1036.2, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 1036.2, + "end": 1036.38, + "probability": 1.0 + }, + { + "word": " Bridge", + "start": 1036.38, + "end": 1036.6, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1036.6, + "end": 1036.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 576, + "text": "Right.", + "start": 1037.08, + "end": 1037.26, + "words": [ + { + "word": " Right.", + "start": 1037.08, + "end": 1037.26, + "probability": 0.98876953125 + } + ] + }, + { + "id": 577, + "text": "Which is a little bit slower.", + "start": 1037.3, + "end": 1038.46, + "words": [ + { + "word": " Which", + "start": 1037.3, + "end": 1037.62, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 1037.62, + "end": 1037.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1037.78, + "end": 1037.92, + "probability": 1.0 + }, + { + "word": " little", + "start": 1037.92, + "end": 1038.08, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1038.08, + "end": 1038.2, + "probability": 1.0 + }, + { + "word": " slower.", + "start": 1038.2, + "end": 1038.46, + "probability": 1.0 + } + ] + }, + { + "id": 578, + "text": "Right.", + "start": 1038.62, + "end": 1038.88, + "words": [ + { + "word": " Right.", + "start": 1038.62, + "end": 1038.88, + "probability": 0.98193359375 + } + ] + }, + { + "id": 579, + "text": "Right.", + "start": 1039.1, + "end": 1039.54, + "words": [ + { + "word": " Right.", + "start": 1039.1, + "end": 1039.54, + "probability": 0.32470703125 + } + ] + }, + { + "id": 580, + "text": "Right.", + "start": 1039.54, + "end": 1039.58, + "words": [ + { + "word": " Right.", + "start": 1039.54, + "end": 1039.58, + "probability": 0.41064453125 + } + ] + }, + { + "id": 581, + "text": "Right.", + "start": 1039.58, + "end": 1039.74, + "words": [ + { + "word": " Right.", + "start": 1039.58, + "end": 1039.74, + "probability": 0.669921875 + } + ] + }, + { + "id": 582, + "text": "Right.", + "start": 1039.74, + "end": 1039.82, + "words": [ + { + "word": " Right.", + "start": 1039.74, + "end": 1039.82, + "probability": 0.77587890625 + } + ] + }, + { + "id": 583, + "text": "Right.", + "start": 1039.94, + "end": 1040.38, + "words": [ + { + "word": " Right.", + "start": 1039.94, + "end": 1040.38, + "probability": 0.81005859375 + } + ] + }, + { + "id": 584, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 585, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 586, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 587, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 588, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 589, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 590, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 591, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 592, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 593, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 594, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 595, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 596, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 597, + "text": "", + "start": 1040.38, + "end": 1040.38, + "words": [] + }, + { + "id": 598, + "text": "Right.", + "start": 1040.4, + "end": 1040.84, + "words": [ + { + "word": " Right.", + "start": 1040.4, + "end": 1040.84, + "probability": 0.0009393692016601562 + } + ] + }, + { + "id": 599, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 600, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 601, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 602, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 603, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 604, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 605, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 606, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 607, + "text": "", + "start": 1040.84, + "end": 1040.84, + "words": [] + }, + { + "id": 608, + "text": "That'll at least allow you to move forward upgrade-wise.", + "start": 1040.84, + "end": 1043.14, + "words": [ + { + "word": " That'll", + "start": 1040.84, + "end": 1041.02, + "probability": 0.431640625 + }, + { + "word": " at", + "start": 1041.02, + "end": 1041.14, + "probability": 0.99169921875 + }, + { + "word": " least", + "start": 1041.14, + "end": 1041.4, + "probability": 0.99951171875 + }, + { + "word": " allow", + "start": 1041.4, + "end": 1041.54, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1041.54, + "end": 1041.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1041.68, + "end": 1041.74, + "probability": 0.99951171875 + }, + { + "word": " move", + "start": 1041.74, + "end": 1041.92, + "probability": 0.99951171875 + }, + { + "word": " forward", + "start": 1041.92, + "end": 1042.32, + "probability": 0.99951171875 + }, + { + "word": " upgrade", + "start": 1042.32, + "end": 1042.84, + "probability": 0.91796875 + }, + { + "word": "-wise.", + "start": 1042.84, + "end": 1043.14, + "probability": 0.9189453125 + } + ] + }, + { + "id": 609, + "text": "All right.", + "start": 1043.44, + "end": 1043.84, + "words": [ + { + "word": " All", + "start": 1043.44, + "end": 1043.78, + "probability": 0.47998046875 + }, + { + "word": " right.", + "start": 1043.78, + "end": 1043.84, + "probability": 1.0 + } + ] + }, + { + "id": 610, + "text": "So in a year, let's say you decide that, well, I want to get a faster processor.", + "start": 1043.88, + "end": 1047.16, + "words": [ + { + "word": " So", + "start": 1043.88, + "end": 1044.02, + "probability": 0.97314453125 + }, + { + "word": " in", + "start": 1044.02, + "end": 1044.26, + "probability": 0.62939453125 + }, + { + "word": " a", + "start": 1044.26, + "end": 1044.4, + "probability": 1.0 + }, + { + "word": " year,", + "start": 1044.4, + "end": 1044.68, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1044.74, + "end": 1045.12, + "probability": 1.0 + }, + { + "word": " say", + "start": 1045.12, + "end": 1045.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1045.16, + "end": 1045.3, + "probability": 1.0 + }, + { + "word": " decide", + "start": 1045.3, + "end": 1045.5, + "probability": 0.99072265625 + }, + { + "word": " that,", + "start": 1045.5, + "end": 1045.68, + "probability": 0.9736328125 + }, + { + "word": " well,", + "start": 1045.72, + "end": 1045.84, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1045.86, + "end": 1045.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 1045.96, + "end": 1046.12, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1046.12, + "end": 1046.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 1046.18, + "end": 1046.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1046.32, + "end": 1046.42, + "probability": 1.0 + }, + { + "word": " faster", + "start": 1046.42, + "end": 1046.64, + "probability": 1.0 + }, + { + "word": " processor.", + "start": 1046.64, + "end": 1047.16, + "probability": 1.0 + } + ] + }, + { + "id": 611, + "text": "All right.", + "start": 1047.8000000000002, + "end": 1048.22, + "words": [ + { + "word": " All", + "start": 1047.8000000000002, + "end": 1048.14, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 1048.14, + "end": 1048.22, + "probability": 1.0 + } + ] + }, + { + "id": 612, + "text": "Or I want DDR4.", + "start": 1048.26, + "end": 1049.28, + "words": [ + { + "word": " Or", + "start": 1048.26, + "end": 1048.38, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 1048.38, + "end": 1048.56, + "probability": 1.0 + }, + { + "word": " want", + "start": 1048.56, + "end": 1048.74, + "probability": 1.0 + }, + { + "word": " DDR4.", + "start": 1048.74, + "end": 1049.28, + "probability": 0.99462890625 + } + ] + }, + { + "id": 613, + "text": "Right.", + "start": 1049.44, + "end": 1049.78, + "words": [ + { + "word": " Right.", + "start": 1049.44, + "end": 1049.78, + "probability": 0.9765625 + } + ] + }, + { + "id": 614, + "text": "All right.", + "start": 1049.88, + "end": 1050.24, + "words": [ + { + "word": " All", + "start": 1049.88, + "end": 1050.14, + "probability": 0.861328125 + }, + { + "word": " right.", + "start": 1050.14, + "end": 1050.24, + "probability": 1.0 + } + ] + }, + { + "id": 615, + "text": "Then, yeah, you're going to want to move.", + "start": 1050.24, + "end": 1052.56, + "words": [ + { + "word": " Then,", + "start": 1050.24, + "end": 1050.44, + "probability": 0.99755859375 + }, + { + "word": " yeah,", + "start": 1050.58, + "end": 1051.32, + "probability": 0.95556640625 + }, + { + "word": " you're", + "start": 1051.5, + "end": 1051.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 1051.92, + "end": 1052.04, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1052.04, + "end": 1052.16, + "probability": 1.0 + }, + { + "word": " want", + "start": 1052.16, + "end": 1052.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 1052.24, + "end": 1052.32, + "probability": 1.0 + }, + { + "word": " move.", + "start": 1052.32, + "end": 1052.56, + "probability": 1.0 + } + ] + }, + { + "id": 616, + "text": "No, I see what you're saying.", + "start": 1053.48, + "end": 1055.02, + "words": [ + { + "word": " No,", + "start": 1053.48, + "end": 1053.82, + "probability": 0.8017578125 + }, + { + "word": " I", + "start": 1053.88, + "end": 1054.1, + "probability": 1.0 + }, + { + "word": " see", + "start": 1054.1, + "end": 1054.56, + "probability": 0.9921875 + }, + { + "word": " what", + "start": 1054.56, + "end": 1054.74, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1054.74, + "end": 1054.82, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 1054.82, + "end": 1055.02, + "probability": 1.0 + } + ] + }, + { + "id": 617, + "text": "No, I absolutely see what you're saying.", + "start": 1055.14, + "end": 1056.34, + "words": [ + { + "word": " No,", + "start": 1055.14, + "end": 1055.16, + "probability": 0.8291015625 + }, + { + "word": " I", + "start": 1055.22, + "end": 1055.28, + "probability": 1.0 + }, + { + "word": " absolutely", + "start": 1055.28, + "end": 1055.7, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 1055.7, + "end": 1055.94, + "probability": 1.0 + }, + { + "word": " what", + "start": 1055.94, + "end": 1056.08, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1056.08, + "end": 1056.18, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 1056.18, + "end": 1056.34, + "probability": 1.0 + } + ] + }, + { + "id": 618, + "text": "It's just, to me, I don't see, you know, like you said, it's beta, you know, in essence.", + "start": 1056.42, + "end": 1060.74, + "words": [ + { + "word": " It's", + "start": 1056.42, + "end": 1056.58, + "probability": 0.54443359375 + }, + { + "word": " just,", + "start": 1056.58, + "end": 1056.66, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 1056.72, + "end": 1057.42, + "probability": 0.9951171875 + }, + { + "word": " me,", + "start": 1057.42, + "end": 1057.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 1057.8, + "end": 1057.92, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1057.92, + "end": 1058.06, + "probability": 1.0 + }, + { + "word": " see,", + "start": 1058.06, + "end": 1058.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 1058.44, + "end": 1058.48, + "probability": 0.8056640625 + }, + { + "word": " know,", + "start": 1058.48, + "end": 1058.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 1058.6, + "end": 1058.74, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1058.74, + "end": 1058.82, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1058.82, + "end": 1059.0, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1059.08, + "end": 1059.44, + "probability": 1.0 + }, + { + "word": " beta,", + "start": 1059.44, + "end": 1059.54, + "probability": 0.7109375 + }, + { + "word": " you", + "start": 1059.82, + "end": 1060.2, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1060.2, + "end": 1060.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 1060.38, + "end": 1060.5, + "probability": 0.99951171875 + }, + { + "word": " essence.", + "start": 1060.5, + "end": 1060.74, + "probability": 1.0 + } + ] + }, + { + "id": 619, + "text": "You know, and they've already had one recall on it.", + "start": 1061.18, + "end": 1063.66, + "words": [ + { + "word": " You", + "start": 1061.18, + "end": 1061.52, + "probability": 0.9892578125 + }, + { + "word": " know,", + "start": 1061.52, + "end": 1061.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1061.76, + "end": 1061.96, + "probability": 0.9970703125 + }, + { + "word": " they've", + "start": 1061.96, + "end": 1062.34, + "probability": 0.99609375 + }, + { + "word": " already", + "start": 1062.34, + "end": 1062.48, + "probability": 1.0 + }, + { + "word": " had", + "start": 1062.48, + "end": 1062.68, + "probability": 1.0 + }, + { + "word": " one", + "start": 1062.68, + "end": 1062.88, + "probability": 1.0 + }, + { + "word": " recall", + "start": 1062.88, + "end": 1063.3, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1063.3, + "end": 1063.54, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1063.54, + "end": 1063.66, + "probability": 1.0 + } + ] + }, + { + "id": 620, + "text": "I'm not saying that it's a bad setup.", + "start": 1064.24, + "end": 1066.16, + "words": [ + { + "word": " I'm", + "start": 1064.24, + "end": 1064.58, + "probability": 1.0 + }, + { + "word": " not", + "start": 1064.58, + "end": 1064.7, + "probability": 1.0 + }, + { + "word": " saying", + "start": 1064.7, + "end": 1064.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 1064.94, + "end": 1065.08, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1065.08, + "end": 1065.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 1065.24, + "end": 1065.28, + "probability": 1.0 + }, + { + "word": " bad", + "start": 1065.28, + "end": 1065.48, + "probability": 1.0 + }, + { + "word": " setup.", + "start": 1065.48, + "end": 1066.16, + "probability": 0.9609375 + } + ] + }, + { + "id": 621, + "text": "I just, I don't know.", + "start": 1066.44, + "end": 1067.96, + "words": [ + { + "word": " I", + "start": 1066.44, + "end": 1066.64, + "probability": 0.99951171875 + }, + { + "word": " just,", + "start": 1066.64, + "end": 1066.86, + "probability": 0.990234375 + }, + { + "word": " I", + "start": 1066.92, + "end": 1067.22, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1067.22, + "end": 1067.82, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1067.82, + "end": 1067.96, + "probability": 1.0 + } + ] + }, + { + "id": 622, + "text": "I'm just not quite convinced yet.", + "start": 1068.04, + "end": 1069.62, + "words": [ + { + "word": " I'm", + "start": 1068.04, + "end": 1068.22, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1068.22, + "end": 1068.3, + "probability": 1.0 + }, + { + "word": " not", + "start": 1068.3, + "end": 1068.62, + "probability": 0.900390625 + }, + { + "word": " quite", + "start": 1068.62, + "end": 1068.88, + "probability": 1.0 + }, + { + "word": " convinced", + "start": 1068.88, + "end": 1069.26, + "probability": 0.91845703125 + }, + { + "word": " yet.", + "start": 1069.26, + "end": 1069.62, + "probability": 0.990234375 + } + ] + }, + { + "id": 623, + "text": "You know, and here's maybe my problem with this.", + "start": 1070.4, + "end": 1072.26, + "words": [ + { + "word": " You", + "start": 1070.4, + "end": 1070.54, + "probability": 0.09906005859375 + }, + { + "word": " know,", + "start": 1070.54, + "end": 1070.8, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1070.8, + "end": 1070.94, + "probability": 0.99951171875 + }, + { + "word": " here's", + "start": 1070.94, + "end": 1071.22, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 1071.22, + "end": 1071.38, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1071.38, + "end": 1071.6, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1071.6, + "end": 1071.86, + "probability": 1.0 + }, + { + "word": " with", + "start": 1071.86, + "end": 1072.04, + "probability": 1.0 + }, + { + "word": " this.", + "start": 1072.04, + "end": 1072.26, + "probability": 1.0 + } + ] + }, + { + "id": 624, + "text": "Right.", + "start": 1072.3, + "end": 1072.48, + "words": [ + { + "word": " Right.", + "start": 1072.3, + "end": 1072.48, + "probability": 0.93701171875 + } + ] + }, + { + "id": 625, + "text": "And why my, this whole segment for me has just been a sort of, you know, an epic fail for you.", + "start": 1072.52, + "end": 1076.28, + "words": [ + { + "word": " And", + "start": 1072.52, + "end": 1072.78, + "probability": 0.99755859375 + }, + { + "word": " why", + "start": 1072.78, + "end": 1072.96, + "probability": 0.9990234375 + }, + { + "word": " my,", + "start": 1072.96, + "end": 1073.2, + "probability": 0.365478515625 + }, + { + "word": " this", + "start": 1073.32, + "end": 1073.56, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1073.56, + "end": 1073.76, + "probability": 1.0 + }, + { + "word": " segment", + "start": 1073.76, + "end": 1074.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 1074.08, + "end": 1074.26, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 1074.26, + "end": 1074.4, + "probability": 1.0 + }, + { + "word": " has", + "start": 1074.4, + "end": 1074.54, + "probability": 0.76318359375 + }, + { + "word": " just", + "start": 1074.54, + "end": 1074.68, + "probability": 1.0 + }, + { + "word": " been", + "start": 1074.68, + "end": 1074.86, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1074.86, + "end": 1074.98, + "probability": 0.8154296875 + }, + { + "word": " sort", + "start": 1074.98, + "end": 1075.14, + "probability": 0.99951171875 + }, + { + "word": " of,", + "start": 1075.14, + "end": 1075.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1075.3, + "end": 1075.38, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1075.38, + "end": 1075.5, + "probability": 1.0 + }, + { + "word": " an", + "start": 1075.52, + "end": 1075.6, + "probability": 0.99951171875 + }, + { + "word": " epic", + "start": 1075.6, + "end": 1075.7, + "probability": 0.998046875 + }, + { + "word": " fail", + "start": 1075.7, + "end": 1075.92, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1075.92, + "end": 1076.1, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1076.1, + "end": 1076.28, + "probability": 1.0 + } + ] + }, + { + "id": 626, + "text": "Is that, is that I don't really care.", + "start": 1076.8200000000002, + "end": 1080.02, + "words": [ + { + "word": " Is", + "start": 1076.8200000000002, + "end": 1077.18, + "probability": 0.994140625 + }, + { + "word": " that,", + "start": 1077.18, + "end": 1077.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 1077.54, + "end": 1078.82, + "probability": 0.98291015625 + }, + { + "word": " that", + "start": 1078.82, + "end": 1079.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 1079.0, + "end": 1079.5, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 1079.5, + "end": 1079.66, + "probability": 1.0 + }, + { + "word": " really", + "start": 1079.66, + "end": 1079.78, + "probability": 1.0 + }, + { + "word": " care.", + "start": 1079.78, + "end": 1080.02, + "probability": 1.0 + } + ] + }, + { + "id": 627, + "text": "And here's the reason why.", + "start": 1080.2, + "end": 1081.6, + "words": [ + { + "word": " And", + "start": 1080.2, + "end": 1080.56, + "probability": 0.8564453125 + }, + { + "word": " here's", + "start": 1080.56, + "end": 1081.08, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1081.08, + "end": 1081.1, + "probability": 0.99951171875 + }, + { + "word": " reason", + "start": 1081.1, + "end": 1081.34, + "probability": 1.0 + }, + { + "word": " why.", + "start": 1081.34, + "end": 1081.6, + "probability": 1.0 + } + ] + }, + { + "id": 628, + "text": "Is that, you know, the processor debate for me is really boring.", + "start": 1081.68, + "end": 1085.46, + "words": [ + { + "word": " Is", + "start": 1081.68, + "end": 1082.02, + "probability": 0.98486328125 + }, + { + "word": " that,", + "start": 1082.02, + "end": 1082.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 1082.4, + "end": 1082.68, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1082.68, + "end": 1082.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1082.84, + "end": 1083.18, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1083.18, + "end": 1083.82, + "probability": 0.873046875 + }, + { + "word": " debate", + "start": 1083.82, + "end": 1084.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 1084.16, + "end": 1084.5, + "probability": 1.0 + }, + { + "word": " me", + "start": 1084.5, + "end": 1084.66, + "probability": 1.0 + }, + { + "word": " is", + "start": 1084.66, + "end": 1084.8, + "probability": 1.0 + }, + { + "word": " really", + "start": 1084.8, + "end": 1085.06, + "probability": 1.0 + }, + { + "word": " boring.", + "start": 1085.06, + "end": 1085.46, + "probability": 1.0 + } + ] + }, + { + "id": 629, + "text": "Mm-hmm.", + "start": 1085.6, + "end": 1085.94, + "words": [ + { + "word": " Mm", + "start": 1085.6, + "end": 1085.82, + "probability": 0.20361328125 + }, + { + "word": "-hmm.", + "start": 1085.82, + "end": 1085.94, + "probability": 0.994140625 + } + ] + }, + { + "id": 630, + "text": "Right.", + "start": 1086.0, + "end": 1086.2, + "words": [ + { + "word": " Right.", + "start": 1086.0, + "end": 1086.2, + "probability": 0.9951171875 + } + ] + }, + { + "id": 631, + "text": "I find the processor debate to be like, you know, what if.", + "start": 1086.28, + "end": 1089.44, + "words": [ + { + "word": " I", + "start": 1086.28, + "end": 1086.54, + "probability": 0.9951171875 + }, + { + "word": " find", + "start": 1086.54, + "end": 1086.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1086.98, + "end": 1087.12, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1087.12, + "end": 1087.5, + "probability": 1.0 + }, + { + "word": " debate", + "start": 1087.5, + "end": 1087.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1087.8, + "end": 1088.04, + "probability": 1.0 + }, + { + "word": " be", + "start": 1088.04, + "end": 1088.14, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1088.14, + "end": 1088.54, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 1088.62, + "end": 1088.82, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1088.82, + "end": 1088.98, + "probability": 1.0 + }, + { + "word": " what", + "start": 1089.02, + "end": 1089.26, + "probability": 0.951171875 + }, + { + "word": " if.", + "start": 1089.26, + "end": 1089.44, + "probability": 0.765625 + } + ] + }, + { + "id": 632, + "text": "Right.", + "start": 1089.62, + "end": 1089.98, + "words": [ + { + "word": " Right.", + "start": 1089.62, + "end": 1089.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 633, + "text": "Right.", + "start": 1090.06, + "end": 1090.3, + "words": [ + { + "word": " Right.", + "start": 1090.06, + "end": 1090.3, + "probability": 0.9892578125 + } + ] + }, + { + "id": 634, + "text": "It's, it's like when you go out and you buy the car.", + "start": 1090.36, + "end": 1093.92, + "words": [ + { + "word": " It's,", + "start": 1090.36, + "end": 1090.72, + "probability": 0.994140625 + }, + { + "word": " it's", + "start": 1090.72, + "end": 1091.92, + "probability": 0.8701171875 + }, + { + "word": " like", + "start": 1091.92, + "end": 1092.92, + "probability": 0.966796875 + }, + { + "word": " when", + "start": 1092.92, + "end": 1093.1, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1093.1, + "end": 1093.2, + "probability": 1.0 + }, + { + "word": " go", + "start": 1093.2, + "end": 1093.3, + "probability": 1.0 + }, + { + "word": " out", + "start": 1093.3, + "end": 1093.38, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1093.38, + "end": 1093.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 1093.4, + "end": 1093.48, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1093.48, + "end": 1093.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1093.6, + "end": 1093.72, + "probability": 1.0 + }, + { + "word": " car.", + "start": 1093.72, + "end": 1093.92, + "probability": 1.0 + } + ] + }, + { + "id": 635, + "text": "Right.", + "start": 1094.16, + "end": 1094.52, + "words": [ + { + "word": " Right.", + "start": 1094.16, + "end": 1094.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 636, + "text": "You know, you get an option.", + "start": 1094.62, + "end": 1096.12, + "words": [ + { + "word": " You", + "start": 1094.62, + "end": 1094.9, + "probability": 0.98583984375 + }, + { + "word": " know,", + "start": 1094.9, + "end": 1095.12, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1095.12, + "end": 1095.34, + "probability": 1.0 + }, + { + "word": " get", + "start": 1095.34, + "end": 1095.68, + "probability": 0.99365234375 + }, + { + "word": " an", + "start": 1095.68, + "end": 1095.84, + "probability": 1.0 + }, + { + "word": " option.", + "start": 1095.84, + "end": 1096.12, + "probability": 1.0 + } + ] + }, + { + "id": 637, + "text": "Right.", + "start": 1096.28, + "end": 1096.6, + "words": [ + { + "word": " Right.", + "start": 1096.28, + "end": 1096.6, + "probability": 0.98779296875 + } + ] + }, + { + "id": 638, + "text": "Do you want it with this many cylinders or that many liters or whatever?", + "start": 1096.68, + "end": 1099.72, + "words": [ + { + "word": " Do", + "start": 1096.68, + "end": 1096.82, + "probability": 0.87158203125 + }, + { + "word": " you", + "start": 1096.82, + "end": 1096.9, + "probability": 1.0 + }, + { + "word": " want", + "start": 1096.9, + "end": 1097.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 1097.04, + "end": 1097.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 1097.14, + "end": 1097.26, + "probability": 1.0 + }, + { + "word": " this", + "start": 1097.26, + "end": 1097.54, + "probability": 0.998046875 + }, + { + "word": " many", + "start": 1097.54, + "end": 1097.88, + "probability": 1.0 + }, + { + "word": " cylinders", + "start": 1097.88, + "end": 1098.28, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1098.28, + "end": 1098.54, + "probability": 0.99169921875 + }, + { + "word": " that", + "start": 1098.54, + "end": 1098.64, + "probability": 1.0 + }, + { + "word": " many", + "start": 1098.64, + "end": 1098.84, + "probability": 1.0 + }, + { + "word": " liters", + "start": 1098.84, + "end": 1099.16, + "probability": 0.9970703125 + }, + { + "word": " or", + "start": 1099.16, + "end": 1099.48, + "probability": 1.0 + }, + { + "word": " whatever?", + "start": 1099.48, + "end": 1099.72, + "probability": 1.0 + } + ] + }, + { + "id": 639, + "text": "Right.", + "start": 1099.9, + "end": 1100.12, + "words": [ + { + "word": " Right.", + "start": 1099.9, + "end": 1100.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 640, + "text": "I just want something that works.", + "start": 1100.4, + "end": 1101.5, + "words": [ + { + "word": " I", + "start": 1100.4, + "end": 1100.6, + "probability": 0.97607421875 + }, + { + "word": " just", + "start": 1100.6, + "end": 1100.84, + "probability": 0.99658203125 + }, + { + "word": " want", + "start": 1100.84, + "end": 1101.0, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1101.0, + "end": 1101.18, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1101.18, + "end": 1101.3, + "probability": 0.9697265625 + }, + { + "word": " works.", + "start": 1101.3, + "end": 1101.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 641, + "text": "I don't really care.", + "start": 1101.7, + "end": 1102.46, + "words": [ + { + "word": " I", + "start": 1101.7, + "end": 1101.98, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1101.98, + "end": 1102.06, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 1102.06, + "end": 1102.18, + "probability": 1.0 + }, + { + "word": " care.", + "start": 1102.18, + "end": 1102.46, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "Well, I'm going to get into the nitty gritty of this thing.", + "start": 1102.66, + "end": 1104.42, + "words": [ + { + "word": " Well,", + "start": 1102.66, + "end": 1102.84, + "probability": 0.93896484375 + }, + { + "word": " I'm", + "start": 1102.86, + "end": 1102.96, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1102.96, + "end": 1103.02, + "probability": 0.98681640625 + }, + { + "word": " to", + "start": 1103.02, + "end": 1103.1, + "probability": 1.0 + }, + { + "word": " get", + "start": 1103.1, + "end": 1103.18, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1103.18, + "end": 1103.34, + "probability": 0.625 + }, + { + "word": " the", + "start": 1103.34, + "end": 1103.48, + "probability": 0.994140625 + }, + { + "word": " nitty", + "start": 1103.48, + "end": 1103.62, + "probability": 0.9990234375 + }, + { + "word": " gritty", + "start": 1103.62, + "end": 1103.9, + "probability": 0.568359375 + }, + { + "word": " of", + "start": 1103.9, + "end": 1104.06, + "probability": 1.0 + }, + { + "word": " this", + "start": 1104.06, + "end": 1104.22, + "probability": 0.99951171875 + }, + { + "word": " thing.", + "start": 1104.22, + "end": 1104.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 643, + "text": "I'm going to E3 next week.", + "start": 1104.56, + "end": 1106.32, + "words": [ + { + "word": " I'm", + "start": 1104.56, + "end": 1104.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 1104.74, + "end": 1104.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1104.86, + "end": 1105.0, + "probability": 0.99853515625 + }, + { + "word": " E3", + "start": 1105.0, + "end": 1105.76, + "probability": 0.99951171875 + }, + { + "word": " next", + "start": 1105.76, + "end": 1106.02, + "probability": 1.0 + }, + { + "word": " week.", + "start": 1106.02, + "end": 1106.32, + "probability": 1.0 + } + ] + }, + { + "id": 644, + "text": "There's going to be a lot of gamers down there.", + "start": 1106.58, + "end": 1108.14, + "words": [ + { + "word": " There's", + "start": 1106.58, + "end": 1106.86, + "probability": 1.0 + }, + { + "word": " going", + "start": 1106.86, + "end": 1106.94, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1106.94, + "end": 1106.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 1106.98, + "end": 1107.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 1107.08, + "end": 1107.14, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1107.14, + "end": 1107.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1107.22, + "end": 1107.32, + "probability": 1.0 + }, + { + "word": " gamers", + "start": 1107.32, + "end": 1107.6, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 1107.6, + "end": 1107.88, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 1107.88, + "end": 1108.14, + "probability": 1.0 + } + ] + }, + { + "id": 645, + "text": "A lot of, you know, media coverage down there.", + "start": 1108.36, + "end": 1110.76, + "words": [ + { + "word": " A", + "start": 1108.36, + "end": 1108.64, + "probability": 0.99462890625 + }, + { + "word": " lot", + "start": 1108.64, + "end": 1108.94, + "probability": 1.0 + }, + { + "word": " of,", + "start": 1108.94, + "end": 1109.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 1109.1, + "end": 1109.28, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1109.28, + "end": 1109.44, + "probability": 1.0 + }, + { + "word": " media", + "start": 1109.44, + "end": 1109.92, + "probability": 0.9990234375 + }, + { + "word": " coverage", + "start": 1109.92, + "end": 1110.3, + "probability": 1.0 + }, + { + "word": " down", + "start": 1110.3, + "end": 1110.6, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1110.6, + "end": 1110.76, + "probability": 1.0 + } + ] + }, + { + "id": 646, + "text": "You know, fellow gamers.", + "start": 1110.84, + "end": 1112.28, + "words": [ + { + "word": " You", + "start": 1110.84, + "end": 1110.88, + "probability": 0.79248046875 + }, + { + "word": " know,", + "start": 1110.88, + "end": 1110.98, + "probability": 1.0 + }, + { + "word": " fellow", + "start": 1110.98, + "end": 1111.22, + "probability": 0.990234375 + }, + { + "word": " gamers.", + "start": 1111.22, + "end": 1112.28, + "probability": 1.0 + } + ] + }, + { + "id": 647, + "text": "I'm going to talk to them.", + "start": 1112.48, + "end": 1113.14, + "words": [ + { + "word": " I'm", + "start": 1112.48, + "end": 1112.72, + "probability": 0.9541015625 + }, + { + "word": " going", + "start": 1112.72, + "end": 1112.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1112.78, + "end": 1112.78, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1112.78, + "end": 1112.96, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 1112.96, + "end": 1113.04, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1113.04, + "end": 1113.14, + "probability": 1.0 + } + ] + }, + { + "id": 648, + "text": "I'm going to try to get their opinions on this kind of stuff.", + "start": 1113.18, + "end": 1114.84, + "words": [ + { + "word": " I'm", + "start": 1113.18, + "end": 1113.26, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1113.26, + "end": 1113.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1113.32, + "end": 1113.32, + "probability": 1.0 + }, + { + "word": " try", + "start": 1113.32, + "end": 1113.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 1113.44, + "end": 1113.5, + "probability": 0.99365234375 + }, + { + "word": " get", + "start": 1113.5, + "end": 1113.64, + "probability": 1.0 + }, + { + "word": " their", + "start": 1113.64, + "end": 1113.78, + "probability": 1.0 + }, + { + "word": " opinions", + "start": 1113.78, + "end": 1114.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1114.1, + "end": 1114.28, + "probability": 1.0 + }, + { + "word": " this", + "start": 1114.28, + "end": 1114.42, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1114.42, + "end": 1114.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 1114.56, + "end": 1114.64, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 1114.64, + "end": 1114.84, + "probability": 1.0 + } + ] + }, + { + "id": 649, + "text": "I'm going to actually go, I have interviews with NVIDIA.", + "start": 1115.14, + "end": 1117.62, + "words": [ + { + "word": " I'm", + "start": 1115.14, + "end": 1115.42, + "probability": 0.9697265625 + }, + { + "word": " going", + "start": 1115.42, + "end": 1115.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1115.48, + "end": 1115.56, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1115.56, + "end": 1115.8, + "probability": 0.9990234375 + }, + { + "word": " go,", + "start": 1115.8, + "end": 1115.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 1116.04, + "end": 1116.2, + "probability": 1.0 + }, + { + "word": " have", + "start": 1116.2, + "end": 1116.42, + "probability": 1.0 + }, + { + "word": " interviews", + "start": 1116.42, + "end": 1117.0, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1117.0, + "end": 1117.22, + "probability": 0.99267578125 + }, + { + "word": " NVIDIA.", + "start": 1117.22, + "end": 1117.62, + "probability": 0.8193359375 + } + ] + }, + { + "id": 650, + "text": "I have interviews with some big wigs down there.", + "start": 1117.82, + "end": 1120.38, + "words": [ + { + "word": " I", + "start": 1117.82, + "end": 1118.02, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1118.02, + "end": 1118.1, + "probability": 0.99853515625 + }, + { + "word": " interviews", + "start": 1118.1, + "end": 1118.36, + "probability": 0.9951171875 + }, + { + "word": " with", + "start": 1118.36, + "end": 1118.56, + "probability": 0.986328125 + }, + { + "word": " some", + "start": 1118.56, + "end": 1119.24, + "probability": 0.94970703125 + }, + { + "word": " big", + "start": 1119.24, + "end": 1119.92, + "probability": 0.9990234375 + }, + { + "word": " wigs", + "start": 1119.92, + "end": 1120.12, + "probability": 0.728515625 + }, + { + "word": " down", + "start": 1120.12, + "end": 1120.3, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1120.3, + "end": 1120.38, + "probability": 1.0 + } + ] + }, + { + "id": 651, + "text": "So I'm going to find out, get down to the nitty gritty of this whole thing and see if I can get any more good details out of it.", + "start": 1120.42, + "end": 1124.34, + "words": [ + { + "word": " So", + "start": 1120.42, + "end": 1120.52, + "probability": 0.96435546875 + }, + { + "word": " I'm", + "start": 1120.52, + "end": 1120.6, + "probability": 0.8828125 + }, + { + "word": " going", + "start": 1120.6, + "end": 1120.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1120.64, + "end": 1120.68, + "probability": 1.0 + }, + { + "word": " find", + "start": 1120.68, + "end": 1120.88, + "probability": 0.99609375 + }, + { + "word": " out,", + "start": 1120.88, + "end": 1121.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 1121.06, + "end": 1121.22, + "probability": 1.0 + }, + { + "word": " down", + "start": 1121.22, + "end": 1121.38, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1121.38, + "end": 1121.52, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 1121.52, + "end": 1121.54, + "probability": 1.0 + }, + { + "word": " nitty", + "start": 1121.54, + "end": 1121.68, + "probability": 1.0 + }, + { + "word": " gritty", + "start": 1121.68, + "end": 1121.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 1121.88, + "end": 1122.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 1122.0, + "end": 1122.08, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1122.08, + "end": 1122.22, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1122.22, + "end": 1122.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 1122.44, + "end": 1122.54, + "probability": 0.73974609375 + }, + { + "word": " see", + "start": 1122.54, + "end": 1122.68, + "probability": 1.0 + }, + { + "word": " if", + "start": 1122.68, + "end": 1122.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 1122.78, + "end": 1122.86, + "probability": 1.0 + }, + { + "word": " can", + "start": 1122.86, + "end": 1122.9, + "probability": 1.0 + }, + { + "word": " get", + "start": 1122.9, + "end": 1123.0, + "probability": 1.0 + }, + { + "word": " any", + "start": 1123.0, + "end": 1123.1, + "probability": 1.0 + }, + { + "word": " more", + "start": 1123.1, + "end": 1123.32, + "probability": 1.0 + }, + { + "word": " good", + "start": 1123.32, + "end": 1123.52, + "probability": 1.0 + }, + { + "word": " details", + "start": 1123.52, + "end": 1123.92, + "probability": 1.0 + }, + { + "word": " out", + "start": 1123.92, + "end": 1124.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 1124.16, + "end": 1124.28, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1124.28, + "end": 1124.34, + "probability": 1.0 + } + ] + }, + { + "id": 652, + "text": "Well, and here's the reason I don't really care.", + "start": 1124.4, + "end": 1125.64, + "words": [ + { + "word": " Well,", + "start": 1124.4, + "end": 1124.46, + "probability": 0.9482421875 + }, + { + "word": " and", + "start": 1124.46, + "end": 1124.5, + "probability": 0.9755859375 + }, + { + "word": " here's", + "start": 1124.5, + "end": 1124.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1124.68, + "end": 1124.74, + "probability": 0.99951171875 + }, + { + "word": " reason", + "start": 1124.74, + "end": 1124.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 1124.92, + "end": 1125.04, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1125.04, + "end": 1125.14, + "probability": 1.0 + }, + { + "word": " really", + "start": 1125.14, + "end": 1125.3, + "probability": 1.0 + }, + { + "word": " care.", + "start": 1125.3, + "end": 1125.64, + "probability": 1.0 + } + ] + }, + { + "id": 653, + "text": "Let me get back to that.", + "start": 1126.48, + "end": 1127.32, + "words": [ + { + "word": " Let", + "start": 1126.48, + "end": 1126.76, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 1126.76, + "end": 1126.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 1126.88, + "end": 1126.94, + "probability": 1.0 + }, + { + "word": " back", + "start": 1126.94, + "end": 1127.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 1127.12, + "end": 1127.24, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1127.24, + "end": 1127.32, + "probability": 1.0 + } + ] + }, + { + "id": 654, + "text": "Okay, go ahead.", + "start": 1127.34, + "end": 1127.84, + "words": [ + { + "word": " Okay,", + "start": 1127.34, + "end": 1127.58, + "probability": 0.98583984375 + }, + { + "word": " go", + "start": 1127.62, + "end": 1127.74, + "probability": 0.9970703125 + }, + { + "word": " ahead.", + "start": 1127.74, + "end": 1127.84, + "probability": 0.8232421875 + } + ] + }, + { + "id": 655, + "text": "I'm sorry.", + "start": 1127.9, + "end": 1128.06, + "words": [ + { + "word": " I'm", + "start": 1127.9, + "end": 1128.02, + "probability": 0.8291015625 + }, + { + "word": " sorry.", + "start": 1128.02, + "end": 1128.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 656, + "text": "I want to make sure that people understand why I don't care.", + "start": 1128.06, + "end": 1132.08, + "words": [ + { + "word": " I", + "start": 1128.06, + "end": 1128.3, + "probability": 0.52734375 + }, + { + "word": " want", + "start": 1128.3, + "end": 1128.48, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1128.48, + "end": 1129.04, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 1129.04, + "end": 1129.22, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1129.22, + "end": 1129.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 1129.44, + "end": 1129.74, + "probability": 1.0 + }, + { + "word": " people", + "start": 1129.74, + "end": 1130.62, + "probability": 0.98828125 + }, + { + "word": " understand", + "start": 1130.62, + "end": 1131.06, + "probability": 1.0 + }, + { + "word": " why", + "start": 1131.06, + "end": 1131.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 1131.52, + "end": 1131.72, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1131.72, + "end": 1131.94, + "probability": 1.0 + }, + { + "word": " care.", + "start": 1131.94, + "end": 1132.08, + "probability": 1.0 + } + ] + }, + { + "id": 657, + "text": "Okay.", + "start": 1132.32, + "end": 1132.64, + "words": [ + { + "word": " Okay.", + "start": 1132.32, + "end": 1132.64, + "probability": 0.44970703125 + } + ] + }, + { + "id": 658, + "text": "All right, five years ago, and you're looking at processors, you could see 100% increase from going from one processor to another.", + "start": 1132.7, + "end": 1139.38, + "words": [ + { + "word": " All", + "start": 1132.7, + "end": 1132.9, + "probability": 0.455810546875 + }, + { + "word": " right,", + "start": 1132.9, + "end": 1132.96, + "probability": 1.0 + }, + { + "word": " five", + "start": 1132.96, + "end": 1133.12, + "probability": 0.99853515625 + }, + { + "word": " years", + "start": 1133.12, + "end": 1133.4, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 1133.4, + "end": 1133.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 1133.82, + "end": 1134.12, + "probability": 0.9951171875 + }, + { + "word": " you're", + "start": 1134.12, + "end": 1134.36, + "probability": 0.837890625 + }, + { + "word": " looking", + "start": 1134.36, + "end": 1134.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 1134.58, + "end": 1134.78, + "probability": 1.0 + }, + { + "word": " processors,", + "start": 1134.78, + "end": 1135.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 1135.56, + "end": 1136.04, + "probability": 1.0 + }, + { + "word": " could", + "start": 1136.04, + "end": 1136.2, + "probability": 0.974609375 + }, + { + "word": " see", + "start": 1136.2, + "end": 1136.4, + "probability": 1.0 + }, + { + "word": " 100", + "start": 1136.4, + "end": 1136.62, + "probability": 0.49609375 + }, + { + "word": "%", + "start": 1136.62, + "end": 1137.04, + "probability": 0.9814453125 + }, + { + "word": " increase", + "start": 1137.04, + "end": 1137.3, + "probability": 1.0 + }, + { + "word": " from", + "start": 1137.3, + "end": 1137.6, + "probability": 1.0 + }, + { + "word": " going", + "start": 1137.6, + "end": 1137.76, + "probability": 1.0 + }, + { + "word": " from", + "start": 1137.76, + "end": 1137.98, + "probability": 1.0 + }, + { + "word": " one", + "start": 1137.98, + "end": 1138.2, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1138.2, + "end": 1138.5, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1138.5, + "end": 1139.12, + "probability": 1.0 + }, + { + "word": " another.", + "start": 1139.12, + "end": 1139.38, + "probability": 1.0 + } + ] + }, + { + "id": 659, + "text": "Right.", + "start": 1139.58, + "end": 1139.84, + "words": [ + { + "word": " Right.", + "start": 1139.58, + "end": 1139.84, + "probability": 0.96630859375 + } + ] + }, + { + "id": 660, + "text": "Right.", + "start": 1139.96, + "end": 1140.16, + "words": [ + { + "word": " Right.", + "start": 1139.96, + "end": 1140.16, + "probability": 0.6494140625 + } + ] + }, + { + "id": 661, + "text": "And now you're what?", + "start": 1140.2, + "end": 1141.22, + "words": [ + { + "word": " And", + "start": 1140.2, + "end": 1140.36, + "probability": 0.98828125 + }, + { + "word": " now", + "start": 1140.36, + "end": 1140.58, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 1140.58, + "end": 1140.8, + "probability": 0.99853515625 + }, + { + "word": " what?", + "start": 1140.8, + "end": 1141.22, + "probability": 0.9345703125 + } + ] + }, + { + "id": 662, + "text": "You're going to see 5%, right?", + "start": 1141.26, + "end": 1143.02, + "words": [ + { + "word": " You're", + "start": 1141.26, + "end": 1141.4, + "probability": 1.0 + }, + { + "word": " going", + "start": 1141.4, + "end": 1141.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1141.5, + "end": 1141.5, + "probability": 1.0 + }, + { + "word": " see", + "start": 1141.5, + "end": 1141.64, + "probability": 1.0 + }, + { + "word": " 5%,", + "start": 1141.64, + "end": 1142.22, + "probability": 0.869140625 + }, + { + "word": " right?", + "start": 1142.22, + "end": 1143.02, + "probability": 1.0 + } + ] + }, + { + "id": 663, + "text": "Right.", + "start": 1143.04, + "end": 1143.2, + "words": [ + { + "word": " Right.", + "start": 1143.04, + "end": 1143.2, + "probability": 0.92626953125 + } + ] + }, + { + "id": 664, + "text": "You're going to see some really small change, right?", + "start": 1143.32, + "end": 1146.7, + "words": [ + { + "word": " You're", + "start": 1143.32, + "end": 1143.76, + "probability": 0.9794921875 + }, + { + "word": " going", + "start": 1143.76, + "end": 1143.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1143.86, + "end": 1143.96, + "probability": 1.0 + }, + { + "word": " see", + "start": 1143.96, + "end": 1144.14, + "probability": 1.0 + }, + { + "word": " some", + "start": 1144.14, + "end": 1144.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 1144.62, + "end": 1144.96, + "probability": 1.0 + }, + { + "word": " small", + "start": 1144.96, + "end": 1145.42, + "probability": 1.0 + }, + { + "word": " change,", + "start": 1145.42, + "end": 1145.96, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1146.24, + "end": 1146.7, + "probability": 0.99658203125 + } + ] + }, + { + "id": 665, + "text": "The performance benefit is going to be so small, it doesn't matter.", + "start": 1146.76, + "end": 1150.72, + "words": [ + { + "word": " The", + "start": 1146.76, + "end": 1146.88, + "probability": 0.99609375 + }, + { + "word": " performance", + "start": 1146.88, + "end": 1147.24, + "probability": 1.0 + }, + { + "word": " benefit", + "start": 1147.24, + "end": 1147.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 1147.82, + "end": 1148.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 1148.26, + "end": 1148.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1148.38, + "end": 1148.46, + "probability": 1.0 + }, + { + "word": " be", + "start": 1148.46, + "end": 1148.56, + "probability": 1.0 + }, + { + "word": " so", + "start": 1148.56, + "end": 1148.8, + "probability": 1.0 + }, + { + "word": " small,", + "start": 1148.8, + "end": 1149.2, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1149.34, + "end": 1149.72, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 1149.72, + "end": 1150.32, + "probability": 1.0 + }, + { + "word": " matter.", + "start": 1150.32, + "end": 1150.72, + "probability": 1.0 + } + ] + }, + { + "id": 666, + "text": "Right.", + "start": 1150.94, + "end": 1151.16, + "words": [ + { + "word": " Right.", + "start": 1150.94, + "end": 1151.16, + "probability": 0.81005859375 + } + ] + }, + { + "id": 667, + "text": "It's a lot like when people say, well, which brand of computer should I get?", + "start": 1151.6, + "end": 1155.24, + "words": [ + { + "word": " It's", + "start": 1151.6, + "end": 1152.04, + "probability": 0.62841796875 + }, + { + "word": " a", + "start": 1152.04, + "end": 1152.06, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 1152.06, + "end": 1152.22, + "probability": 1.0 + }, + { + "word": " like", + "start": 1152.22, + "end": 1152.44, + "probability": 1.0 + }, + { + "word": " when", + "start": 1152.44, + "end": 1152.62, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1152.62, + "end": 1153.02, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1153.02, + "end": 1153.24, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1153.32, + "end": 1153.42, + "probability": 0.9970703125 + }, + { + "word": " which", + "start": 1153.42, + "end": 1153.62, + "probability": 1.0 + }, + { + "word": " brand", + "start": 1153.62, + "end": 1154.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1154.24, + "end": 1154.48, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1154.48, + "end": 1154.74, + "probability": 1.0 + }, + { + "word": " should", + "start": 1154.74, + "end": 1154.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 1154.98, + "end": 1155.08, + "probability": 1.0 + }, + { + "word": " get?", + "start": 1155.08, + "end": 1155.24, + "probability": 1.0 + } + ] + }, + { + "id": 668, + "text": "I say, how much money are you going to spend?", + "start": 1155.34, + "end": 1156.62, + "words": [ + { + "word": " I", + "start": 1155.34, + "end": 1155.56, + "probability": 0.99951171875 + }, + { + "word": " say,", + "start": 1155.56, + "end": 1155.7, + "probability": 1.0 + }, + { + "word": " how", + "start": 1155.74, + "end": 1155.82, + "probability": 1.0 + }, + { + "word": " much", + "start": 1155.82, + "end": 1155.94, + "probability": 1.0 + }, + { + "word": " money", + "start": 1155.94, + "end": 1156.12, + "probability": 1.0 + }, + { + "word": " are", + "start": 1156.12, + "end": 1156.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1156.22, + "end": 1156.3, + "probability": 1.0 + }, + { + "word": " going", + "start": 1156.3, + "end": 1156.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1156.38, + "end": 1156.42, + "probability": 1.0 + }, + { + "word": " spend?", + "start": 1156.42, + "end": 1156.62, + "probability": 1.0 + } + ] + }, + { + "id": 669, + "text": "They say, $500.", + "start": 1156.7, + "end": 1157.5, + "words": [ + { + "word": " They", + "start": 1156.7, + "end": 1156.84, + "probability": 0.9951171875 + }, + { + "word": " say,", + "start": 1156.84, + "end": 1156.98, + "probability": 1.0 + }, + { + "word": " $500.", + "start": 1157.06, + "end": 1157.5, + "probability": 1.0 + } + ] + }, + { + "id": 670, + "text": "$500.", + "start": 1157.5, + "end": 1157.78, + "words": [ + { + "word": " $500.", + "start": 1157.5, + "end": 1157.78, + "probability": 0.1527099609375 + } + ] + }, + { + "id": 671, + "text": "It doesn't matter what you get.", + "start": 1157.98, + "end": 1159.26, + "words": [ + { + "word": " It", + "start": 1157.98, + "end": 1158.34, + "probability": 0.9931640625 + }, + { + "word": " doesn't", + "start": 1158.34, + "end": 1158.64, + "probability": 0.99951171875 + }, + { + "word": " matter", + "start": 1158.64, + "end": 1158.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 1158.82, + "end": 1158.98, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1158.98, + "end": 1159.1, + "probability": 1.0 + }, + { + "word": " get.", + "start": 1159.1, + "end": 1159.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 672, + "text": "Right.", + "start": 1159.38, + "end": 1159.52, + "words": [ + { + "word": " Right.", + "start": 1159.38, + "end": 1159.52, + "probability": 0.4677734375 + } + ] + }, + { + "id": 673, + "text": "They're all going to be the same at that price point.", + "start": 1159.7, + "end": 1161.32, + "words": [ + { + "word": " They're", + "start": 1159.7, + "end": 1159.88, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 1159.88, + "end": 1160.04, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1160.04, + "end": 1160.16, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 1160.16, + "end": 1160.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 1160.26, + "end": 1160.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1160.34, + "end": 1160.46, + "probability": 1.0 + }, + { + "word": " same", + "start": 1160.46, + "end": 1160.68, + "probability": 1.0 + }, + { + "word": " at", + "start": 1160.68, + "end": 1160.8, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1160.8, + "end": 1160.9, + "probability": 1.0 + }, + { + "word": " price", + "start": 1160.9, + "end": 1161.14, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1161.14, + "end": 1161.32, + "probability": 1.0 + } + ] + }, + { + "id": 674, + "text": "And the same thing is true in the processors.", + "start": 1161.42, + "end": 1163.48, + "words": [ + { + "word": " And", + "start": 1161.42, + "end": 1161.52, + "probability": 0.91552734375 + }, + { + "word": " the", + "start": 1161.52, + "end": 1161.68, + "probability": 0.99365234375 + }, + { + "word": " same", + "start": 1161.68, + "end": 1162.1, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1162.1, + "end": 1162.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1162.3, + "end": 1162.54, + "probability": 1.0 + }, + { + "word": " true", + "start": 1162.54, + "end": 1162.76, + "probability": 1.0 + }, + { + "word": " in", + "start": 1162.76, + "end": 1162.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1162.98, + "end": 1163.06, + "probability": 1.0 + }, + { + "word": " processors.", + "start": 1163.06, + "end": 1163.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 675, + "text": "Now, if you're looking to spend $2,000 on a processor, right, then yes, there's a huge difference between different processors.", + "start": 1163.78, + "end": 1171.04, + "words": [ + { + "word": " Now,", + "start": 1163.78, + "end": 1164.14, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1164.16, + "end": 1164.24, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1164.24, + "end": 1164.32, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1164.32, + "end": 1164.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1164.48, + "end": 1164.62, + "probability": 1.0 + }, + { + "word": " spend", + "start": 1164.62, + "end": 1164.8, + "probability": 1.0 + }, + { + "word": " $2", + "start": 1164.8, + "end": 1164.96, + "probability": 0.9970703125 + }, + { + "word": ",000", + "start": 1164.96, + "end": 1165.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 1165.5, + "end": 1165.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1165.84, + "end": 1165.94, + "probability": 1.0 + }, + { + "word": " processor,", + "start": 1165.94, + "end": 1166.36, + "probability": 1.0 + }, + { + "word": " right,", + "start": 1166.56, + "end": 1167.3, + "probability": 0.826171875 + }, + { + "word": " then", + "start": 1167.38, + "end": 1167.64, + "probability": 1.0 + }, + { + "word": " yes,", + "start": 1167.64, + "end": 1168.48, + "probability": 0.6474609375 + }, + { + "word": " there's", + "start": 1168.7, + "end": 1168.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 1168.98, + "end": 1169.1, + "probability": 1.0 + }, + { + "word": " huge", + "start": 1169.1, + "end": 1169.44, + "probability": 1.0 + }, + { + "word": " difference", + "start": 1169.44, + "end": 1169.82, + "probability": 1.0 + }, + { + "word": " between", + "start": 1169.82, + "end": 1170.2, + "probability": 0.99755859375 + }, + { + "word": " different", + "start": 1170.2, + "end": 1170.46, + "probability": 0.99755859375 + }, + { + "word": " processors.", + "start": 1170.46, + "end": 1171.04, + "probability": 0.97412109375 + } + ] + }, + { + "id": 676, + "text": "So how many of us want to spend $2,000 on a processor?", + "start": 1171.06, + "end": 1173.26, + "words": [ + { + "word": " So", + "start": 1171.06, + "end": 1171.16, + "probability": 0.603515625 + }, + { + "word": " how", + "start": 1171.16, + "end": 1171.22, + "probability": 0.87744140625 + }, + { + "word": " many", + "start": 1171.22, + "end": 1171.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 1171.42, + "end": 1171.52, + "probability": 1.0 + }, + { + "word": " us", + "start": 1171.52, + "end": 1171.74, + "probability": 1.0 + }, + { + "word": " want", + "start": 1171.74, + "end": 1171.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1171.9, + "end": 1171.98, + "probability": 1.0 + }, + { + "word": " spend", + "start": 1171.98, + "end": 1172.1, + "probability": 1.0 + }, + { + "word": " $2", + "start": 1172.1, + "end": 1172.24, + "probability": 1.0 + }, + { + "word": ",000", + "start": 1172.24, + "end": 1172.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 1172.58, + "end": 1172.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 1172.84, + "end": 1172.88, + "probability": 0.85595703125 + }, + { + "word": " processor?", + "start": 1172.88, + "end": 1173.26, + "probability": 1.0 + } + ] + }, + { + "id": 677, + "text": "Next to nobody.", + "start": 1173.54, + "end": 1174.12, + "words": [ + { + "word": " Next", + "start": 1173.54, + "end": 1173.78, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1173.78, + "end": 1173.88, + "probability": 1.0 + }, + { + "word": " nobody.", + "start": 1173.88, + "end": 1174.12, + "probability": 0.9921875 + } + ] + }, + { + "id": 678, + "text": "Exactly.", + "start": 1174.24, + "end": 1174.5, + "words": [ + { + "word": " Exactly.", + "start": 1174.24, + "end": 1174.5, + "probability": 0.82275390625 + } + ] + }, + { + "id": 679, + "text": "And that's why I find the whole processor debate to be so boring.", + "start": 1174.52, + "end": 1177.02, + "words": [ + { + "word": " And", + "start": 1174.52, + "end": 1174.58, + "probability": 0.365966796875 + }, + { + "word": " that's", + "start": 1174.58, + "end": 1174.7, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 1174.7, + "end": 1174.84, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1174.84, + "end": 1174.98, + "probability": 1.0 + }, + { + "word": " find", + "start": 1174.98, + "end": 1175.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1175.18, + "end": 1175.3, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1175.3, + "end": 1175.44, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1175.44, + "end": 1175.94, + "probability": 0.998046875 + }, + { + "word": " debate", + "start": 1175.94, + "end": 1176.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 1176.22, + "end": 1176.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 1176.5, + "end": 1176.58, + "probability": 1.0 + }, + { + "word": " so", + "start": 1176.58, + "end": 1176.74, + "probability": 1.0 + }, + { + "word": " boring.", + "start": 1176.74, + "end": 1177.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 680, + "text": "Right, right.", + "start": 1177.16, + "end": 1177.56, + "words": [ + { + "word": " Right,", + "start": 1177.16, + "end": 1177.38, + "probability": 0.9951171875 + }, + { + "word": " right.", + "start": 1177.38, + "end": 1177.56, + "probability": 1.0 + } + ] + }, + { + "id": 681, + "text": "And I don't mean to be overly apathetic about it, but there's not enough real consequence to spend time worrying about it.", + "start": 1177.84, + "end": 1187.4, + "words": [ + { + "word": " And", + "start": 1177.84, + "end": 1178.1, + "probability": 0.60595703125 + }, + { + "word": " I", + "start": 1178.1, + "end": 1178.64, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1178.64, + "end": 1178.82, + "probability": 1.0 + }, + { + "word": " mean", + "start": 1178.82, + "end": 1178.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1178.96, + "end": 1179.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 1179.1, + "end": 1179.22, + "probability": 1.0 + }, + { + "word": " overly", + "start": 1179.22, + "end": 1179.48, + "probability": 1.0 + }, + { + "word": " apathetic", + "start": 1179.48, + "end": 1180.1, + "probability": 0.96044921875 + }, + { + "word": " about", + "start": 1180.1, + "end": 1180.32, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1180.32, + "end": 1180.48, + "probability": 1.0 + }, + { + "word": " but", + "start": 1180.54, + "end": 1181.08, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1181.08, + "end": 1182.6, + "probability": 0.66943359375 + }, + { + "word": " not", + "start": 1182.6, + "end": 1182.82, + "probability": 1.0 + }, + { + "word": " enough", + "start": 1182.82, + "end": 1183.1, + "probability": 1.0 + }, + { + "word": " real", + "start": 1183.1, + "end": 1184.68, + "probability": 0.99951171875 + }, + { + "word": " consequence", + "start": 1184.68, + "end": 1185.22, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1185.22, + "end": 1185.74, + "probability": 0.99462890625 + }, + { + "word": " spend", + "start": 1185.74, + "end": 1186.3, + "probability": 1.0 + }, + { + "word": " time", + "start": 1186.3, + "end": 1186.56, + "probability": 1.0 + }, + { + "word": " worrying", + "start": 1186.56, + "end": 1186.94, + "probability": 1.0 + }, + { + "word": " about", + "start": 1186.94, + "end": 1187.2, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1187.2, + "end": 1187.4, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "No, I agree.", + "start": 1187.5, + "end": 1187.84, + "words": [ + { + "word": " No,", + "start": 1187.5, + "end": 1187.58, + "probability": 0.88232421875 + }, + { + "word": " I", + "start": 1187.58, + "end": 1187.64, + "probability": 1.0 + }, + { + "word": " agree.", + "start": 1187.64, + "end": 1187.84, + "probability": 1.0 + } + ] + }, + { + "id": 683, + "text": "I agree.", + "start": 1187.94, + "end": 1188.24, + "words": [ + { + "word": " I", + "start": 1187.94, + "end": 1188.08, + "probability": 1.0 + }, + { + "word": " agree.", + "start": 1188.08, + "end": 1188.24, + "probability": 0.93115234375 + } + ] + }, + { + "id": 684, + "text": "I see what you're saying.", + "start": 1188.3, + "end": 1188.82, + "words": [ + { + "word": " I", + "start": 1188.3, + "end": 1188.38, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 1188.38, + "end": 1188.5, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1188.5, + "end": 1188.6, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1188.6, + "end": 1188.7, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 1188.7, + "end": 1188.82, + "probability": 1.0 + } + ] + }, + { + "id": 685, + "text": "Yeah, absolutely.", + "start": 1188.92, + "end": 1189.32, + "words": [ + { + "word": " Yeah,", + "start": 1188.92, + "end": 1189.08, + "probability": 0.98876953125 + }, + { + "word": " absolutely.", + "start": 1189.1, + "end": 1189.32, + "probability": 1.0 + } + ] + }, + { + "id": 686, + "text": "And even a year ago, you were dealing with the AMD Intel stuff.", + "start": 1189.52, + "end": 1193.22, + "words": [ + { + "word": " And", + "start": 1189.52, + "end": 1189.78, + "probability": 0.78271484375 + }, + { + "word": " even", + "start": 1189.78, + "end": 1190.16, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1190.16, + "end": 1190.28, + "probability": 1.0 + }, + { + "word": " year", + "start": 1190.28, + "end": 1190.46, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 1190.46, + "end": 1190.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 1190.82, + "end": 1191.22, + "probability": 1.0 + }, + { + "word": " were", + "start": 1191.22, + "end": 1191.32, + "probability": 0.80078125 + }, + { + "word": " dealing", + "start": 1191.32, + "end": 1191.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 1191.48, + "end": 1191.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1191.7, + "end": 1191.82, + "probability": 0.99853515625 + }, + { + "word": " AMD", + "start": 1191.82, + "end": 1192.08, + "probability": 0.99951171875 + }, + { + "word": " Intel", + "start": 1192.08, + "end": 1192.44, + "probability": 0.98388671875 + }, + { + "word": " stuff.", + "start": 1192.44, + "end": 1193.22, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "Right.", + "start": 1193.52, + "end": 1193.82, + "words": [ + { + "word": " Right.", + "start": 1193.52, + "end": 1193.82, + "probability": 0.87841796875 + } + ] + }, + { + "id": 688, + "text": "Right.", + "start": 1193.82, + "end": 1194.02, + "words": [ + { + "word": " Right.", + "start": 1193.82, + "end": 1194.02, + "probability": 0.274658203125 + } + ] + }, + { + "id": 689, + "text": "And then AMD was having massive overheating problems, and they were considerably slower than the Intels.", + "start": 1194.02, + "end": 1199.4, + "words": [ + { + "word": " And", + "start": 1194.02, + "end": 1194.2, + "probability": 0.99658203125 + }, + { + "word": " then", + "start": 1194.2, + "end": 1194.4, + "probability": 0.99951171875 + }, + { + "word": " AMD", + "start": 1194.4, + "end": 1194.78, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 1194.78, + "end": 1194.92, + "probability": 1.0 + }, + { + "word": " having", + "start": 1194.92, + "end": 1195.08, + "probability": 1.0 + }, + { + "word": " massive", + "start": 1195.08, + "end": 1195.38, + "probability": 1.0 + }, + { + "word": " overheating", + "start": 1195.38, + "end": 1195.96, + "probability": 1.0 + }, + { + "word": " problems,", + "start": 1195.96, + "end": 1196.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 1196.48, + "end": 1196.64, + "probability": 1.0 + }, + { + "word": " they", + "start": 1196.64, + "end": 1196.78, + "probability": 1.0 + }, + { + "word": " were", + "start": 1196.78, + "end": 1196.94, + "probability": 1.0 + }, + { + "word": " considerably", + "start": 1196.94, + "end": 1197.9, + "probability": 0.99658203125 + }, + { + "word": " slower", + "start": 1197.9, + "end": 1198.56, + "probability": 1.0 + }, + { + "word": " than", + "start": 1198.56, + "end": 1198.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1198.8, + "end": 1198.92, + "probability": 1.0 + }, + { + "word": " Intels.", + "start": 1198.92, + "end": 1199.4, + "probability": 0.78955078125 + } + ] + }, + { + "id": 690, + "text": "Mm-hmm.", + "start": 1199.46, + "end": 1199.72, + "words": [ + { + "word": " Mm", + "start": 1199.46, + "end": 1199.62, + "probability": 0.0665283203125 + }, + { + "word": "-hmm.", + "start": 1199.62, + "end": 1199.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 691, + "text": "All right.", + "start": 1199.74, + "end": 1200.0, + "words": [ + { + "word": " All", + "start": 1199.74, + "end": 1199.94, + "probability": 0.52978515625 + }, + { + "word": " right.", + "start": 1199.94, + "end": 1200.0, + "probability": 1.0 + } + ] + }, + { + "id": 692, + "text": "But this next generation of AMDs is going to at least bring them so that they're current.", + "start": 1200.06, + "end": 1203.6, + "words": [ + { + "word": " But", + "start": 1200.06, + "end": 1200.16, + "probability": 0.98388671875 + }, + { + "word": " this", + "start": 1200.16, + "end": 1200.5, + "probability": 0.99951171875 + }, + { + "word": " next", + "start": 1200.5, + "end": 1200.72, + "probability": 1.0 + }, + { + "word": " generation", + "start": 1200.72, + "end": 1201.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1201.06, + "end": 1201.38, + "probability": 1.0 + }, + { + "word": " AMDs", + "start": 1201.38, + "end": 1201.84, + "probability": 0.99169921875 + }, + { + "word": " is", + "start": 1201.84, + "end": 1201.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 1201.88, + "end": 1202.02, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1202.02, + "end": 1202.1, + "probability": 1.0 + }, + { + "word": " at", + "start": 1202.1, + "end": 1202.2, + "probability": 1.0 + }, + { + "word": " least", + "start": 1202.2, + "end": 1202.36, + "probability": 1.0 + }, + { + "word": " bring", + "start": 1202.36, + "end": 1202.54, + "probability": 1.0 + }, + { + "word": " them", + "start": 1202.54, + "end": 1202.68, + "probability": 1.0 + }, + { + "word": " so", + "start": 1202.68, + "end": 1202.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 1202.82, + "end": 1202.94, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1202.94, + "end": 1203.14, + "probability": 1.0 + }, + { + "word": " current.", + "start": 1203.14, + "end": 1203.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 693, + "text": "Right.", + "start": 1204.2, + "end": 1204.5, + "words": [ + { + "word": " Right.", + "start": 1204.2, + "end": 1204.5, + "probability": 0.52880859375 + } + ] + }, + { + "id": 694, + "text": "So that they are at least sort of nearby.", + "start": 1204.56, + "end": 1207.6, + "words": [ + { + "word": " So", + "start": 1204.56, + "end": 1204.7, + "probability": 0.9912109375 + }, + { + "word": " that", + "start": 1204.7, + "end": 1204.82, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 1204.82, + "end": 1205.04, + "probability": 1.0 + }, + { + "word": " are", + "start": 1205.04, + "end": 1205.24, + "probability": 1.0 + }, + { + "word": " at", + "start": 1205.24, + "end": 1205.82, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 1205.82, + "end": 1206.2, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1206.2, + "end": 1206.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 1206.94, + "end": 1207.12, + "probability": 1.0 + }, + { + "word": " nearby.", + "start": 1207.12, + "end": 1207.6, + "probability": 1.0 + } + ] + }, + { + "id": 695, + "text": "Right.", + "start": 1207.92, + "end": 1208.22, + "words": [ + { + "word": " Right.", + "start": 1207.92, + "end": 1208.22, + "probability": 0.98388671875 + } + ] + }, + { + "id": 696, + "text": "As far as the...", + "start": 1208.3, + "end": 1209.04, + "words": [ + { + "word": " As", + "start": 1208.3, + "end": 1208.42, + "probability": 0.935546875 + }, + { + "word": " far", + "start": 1208.42, + "end": 1208.48, + "probability": 1.0 + }, + { + "word": " as", + "start": 1208.48, + "end": 1208.7, + "probability": 1.0 + }, + { + "word": " the...", + "start": 1208.7, + "end": 1209.04, + "probability": 0.7333984375 + } + ] + }, + { + "id": 697, + "text": "They're catching up.", + "start": 1209.38, + "end": 1210.1, + "words": [ + { + "word": " They're", + "start": 1209.38, + "end": 1209.68, + "probability": 0.958984375 + }, + { + "word": " catching", + "start": 1209.68, + "end": 1209.8, + "probability": 0.7119140625 + }, + { + "word": " up.", + "start": 1209.8, + "end": 1210.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 698, + "text": "As far as the speed is concerned, they are going to be a bit cheaper.", + "start": 1210.12, + "end": 1212.48, + "words": [ + { + "word": " As", + "start": 1210.12, + "end": 1210.22, + "probability": 0.9609375 + }, + { + "word": " far", + "start": 1210.22, + "end": 1210.32, + "probability": 1.0 + }, + { + "word": " as", + "start": 1210.32, + "end": 1210.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1210.4, + "end": 1210.56, + "probability": 1.0 + }, + { + "word": " speed", + "start": 1210.56, + "end": 1210.76, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 1210.76, + "end": 1210.86, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 1210.86, + "end": 1211.14, + "probability": 1.0 + }, + { + "word": " they", + "start": 1211.28, + "end": 1211.46, + "probability": 1.0 + }, + { + "word": " are", + "start": 1211.46, + "end": 1211.6, + "probability": 1.0 + }, + { + "word": " going", + "start": 1211.6, + "end": 1211.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1211.74, + "end": 1211.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 1211.82, + "end": 1211.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 1211.9, + "end": 1211.96, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1211.96, + "end": 1212.14, + "probability": 1.0 + }, + { + "word": " cheaper.", + "start": 1212.14, + "end": 1212.48, + "probability": 1.0 + } + ] + }, + { + "id": 699, + "text": "So it's really going to come down to, do you want a budget machine, or do you want to spend a little bit more for the processor?", + "start": 1212.54, + "end": 1217.38, + "words": [ + { + "word": " So", + "start": 1212.54, + "end": 1212.72, + "probability": 0.9970703125 + }, + { + "word": " it's", + "start": 1212.72, + "end": 1212.88, + "probability": 0.986328125 + }, + { + "word": " really", + "start": 1212.88, + "end": 1213.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 1213.0, + "end": 1213.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 1213.12, + "end": 1213.2, + "probability": 1.0 + }, + { + "word": " come", + "start": 1213.2, + "end": 1213.34, + "probability": 1.0 + }, + { + "word": " down", + "start": 1213.34, + "end": 1213.54, + "probability": 1.0 + }, + { + "word": " to,", + "start": 1213.54, + "end": 1213.68, + "probability": 1.0 + }, + { + "word": " do", + "start": 1213.72, + "end": 1213.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 1213.82, + "end": 1213.9, + "probability": 1.0 + }, + { + "word": " want", + "start": 1213.9, + "end": 1213.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 1213.98, + "end": 1214.08, + "probability": 0.99951171875 + }, + { + "word": " budget", + "start": 1214.08, + "end": 1214.26, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 1214.26, + "end": 1214.54, + "probability": 1.0 + }, + { + "word": " or", + "start": 1214.68, + "end": 1215.02, + "probability": 1.0 + }, + { + "word": " do", + "start": 1215.02, + "end": 1215.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 1215.2, + "end": 1215.28, + "probability": 1.0 + }, + { + "word": " want", + "start": 1215.28, + "end": 1215.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1215.4, + "end": 1215.48, + "probability": 1.0 + }, + { + "word": " spend", + "start": 1215.48, + "end": 1215.6, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1215.6, + "end": 1215.72, + "probability": 1.0 + }, + { + "word": " little", + "start": 1215.72, + "end": 1215.78, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1215.78, + "end": 1215.9, + "probability": 1.0 + }, + { + "word": " more", + "start": 1215.9, + "end": 1216.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 1216.14, + "end": 1216.86, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 1216.86, + "end": 1216.98, + "probability": 0.9990234375 + }, + { + "word": " processor?", + "start": 1216.98, + "end": 1217.38, + "probability": 0.8623046875 + } + ] + }, + { + "id": 700, + "text": "It's a little bit faster.", + "start": 1217.5, + "end": 1218.28, + "words": [ + { + "word": " It's", + "start": 1217.5, + "end": 1217.6, + "probability": 0.498291015625 + }, + { + "word": " a", + "start": 1217.6, + "end": 1217.66, + "probability": 0.9384765625 + }, + { + "word": " little", + "start": 1217.66, + "end": 1217.88, + "probability": 0.99951171875 + }, + { + "word": " bit", + "start": 1217.88, + "end": 1218.02, + "probability": 0.99755859375 + }, + { + "word": " faster.", + "start": 1218.02, + "end": 1218.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 701, + "text": "Mm-hmm.", + "start": 1218.48, + "end": 1218.74, + "words": [ + { + "word": " Mm", + "start": 1218.48, + "end": 1218.56, + "probability": 0.035186767578125 + }, + { + "word": "-hmm.", + "start": 1218.56, + "end": 1218.74, + "probability": 0.98046875 + } + ] + }, + { + "id": 702, + "text": "So for me, spending all the time on that, it's kind of like, meh, whatever.", + "start": 1218.8, + "end": 1222.8, + "words": [ + { + "word": " So", + "start": 1218.8, + "end": 1219.08, + "probability": 0.96630859375 + }, + { + "word": " for", + "start": 1219.08, + "end": 1219.86, + "probability": 0.5888671875 + }, + { + "word": " me,", + "start": 1219.86, + "end": 1220.12, + "probability": 1.0 + }, + { + "word": " spending", + "start": 1220.18, + "end": 1220.5, + "probability": 0.281005859375 + }, + { + "word": " all", + "start": 1220.5, + "end": 1220.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1220.82, + "end": 1220.9, + "probability": 1.0 + }, + { + "word": " time", + "start": 1220.9, + "end": 1221.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 1221.08, + "end": 1221.22, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1221.22, + "end": 1221.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1221.44, + "end": 1221.6, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1221.6, + "end": 1221.94, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1221.94, + "end": 1222.04, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1222.04, + "end": 1222.24, + "probability": 0.99951171875 + }, + { + "word": " meh,", + "start": 1222.24, + "end": 1222.5, + "probability": 0.78564453125 + }, + { + "word": " whatever.", + "start": 1222.5, + "end": 1222.8, + "probability": 0.9833984375 + } + ] + }, + { + "id": 703, + "text": "Whatever's...", + "start": 1223.76, + "end": 1224.16, + "words": [ + { + "word": " Whatever's...", + "start": 1223.76, + "end": 1224.16, + "probability": 0.271484375 + } + ] + }, + { + "id": 704, + "text": "We'll stop talking about it.", + "start": 1224.16, + "end": 1224.94, + "words": [ + { + "word": " We'll", + "start": 1224.16, + "end": 1224.32, + "probability": 0.986328125 + }, + { + "word": " stop", + "start": 1224.32, + "end": 1224.4, + "probability": 0.98291015625 + }, + { + "word": " talking", + "start": 1224.4, + "end": 1224.76, + "probability": 1.0 + }, + { + "word": " about", + "start": 1224.76, + "end": 1224.88, + "probability": 0.9921875 + }, + { + "word": " it.", + "start": 1224.88, + "end": 1224.94, + "probability": 0.99658203125 + } + ] + }, + { + "id": 705, + "text": "All right.", + "start": 1225.04, + "end": 1225.16, + "words": [ + { + "word": " All", + "start": 1225.04, + "end": 1225.12, + "probability": 0.9375 + }, + { + "word": " right.", + "start": 1225.12, + "end": 1225.16, + "probability": 1.0 + } + ] + }, + { + "id": 706, + "text": "Let's talk to Frank.", + "start": 1225.3, + "end": 1225.88, + "words": [ + { + "word": " Let's", + "start": 1225.3, + "end": 1225.52, + "probability": 0.8974609375 + }, + { + "word": " talk", + "start": 1225.52, + "end": 1225.62, + "probability": 0.9794921875 + }, + { + "word": " to", + "start": 1225.62, + "end": 1225.7, + "probability": 0.99853515625 + }, + { + "word": " Frank.", + "start": 1225.7, + "end": 1225.88, + "probability": 1.0 + } + ] + }, + { + "id": 707, + "text": "Hey, Frank, how you doing?", + "start": 1225.98, + "end": 1226.68, + "words": [ + { + "word": " Hey,", + "start": 1225.98, + "end": 1226.12, + "probability": 0.994140625 + }, + { + "word": " Frank,", + "start": 1226.12, + "end": 1226.28, + "probability": 1.0 + }, + { + "word": " how", + "start": 1226.34, + "end": 1226.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 1226.44, + "end": 1226.5, + "probability": 0.71826171875 + }, + { + "word": " doing?", + "start": 1226.5, + "end": 1226.68, + "probability": 1.0 + } + ] + }, + { + "id": 708, + "text": "Yeah, I'm good.", + "start": 1227.36, + "end": 1228.08, + "words": [ + { + "word": " Yeah,", + "start": 1227.36, + "end": 1227.76, + "probability": 0.99755859375 + }, + { + "word": " I'm", + "start": 1227.78, + "end": 1227.88, + "probability": 1.0 + }, + { + "word": " good.", + "start": 1227.88, + "end": 1228.08, + "probability": 1.0 + } + ] + }, + { + "id": 709, + "text": "How can I help you?", + "start": 1228.26, + "end": 1229.02, + "words": [ + { + "word": " How", + "start": 1228.26, + "end": 1228.58, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 1228.58, + "end": 1228.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 1228.7, + "end": 1228.78, + "probability": 1.0 + }, + { + "word": " help", + "start": 1228.78, + "end": 1228.92, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1228.92, + "end": 1229.02, + "probability": 1.0 + } + ] + }, + { + "id": 710, + "text": "Well, I was the last guy that just talked to you.", + "start": 1229.6599999999999, + "end": 1232.58, + "words": [ + { + "word": " Well,", + "start": 1229.6599999999999, + "end": 1230.06, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1230.18, + "end": 1230.56, + "probability": 1.0 + }, + { + "word": " was", + "start": 1230.56, + "end": 1231.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1231.06, + "end": 1231.22, + "probability": 1.0 + }, + { + "word": " last", + "start": 1231.22, + "end": 1231.44, + "probability": 1.0 + }, + { + "word": " guy", + "start": 1231.44, + "end": 1231.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 1231.68, + "end": 1231.82, + "probability": 0.7216796875 + }, + { + "word": " just", + "start": 1231.82, + "end": 1232.02, + "probability": 1.0 + }, + { + "word": " talked", + "start": 1232.02, + "end": 1232.3, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1232.3, + "end": 1232.46, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1232.46, + "end": 1232.58, + "probability": 1.0 + } + ] + }, + { + "id": 711, + "text": "But basically, I tried turning my computer on, and it won't even actually go to Windows.", + "start": 1233.9199999999998, + "end": 1240.76, + "words": [ + { + "word": " But", + "start": 1233.9199999999998, + "end": 1234.32, + "probability": 0.982421875 + }, + { + "word": " basically,", + "start": 1234.32, + "end": 1234.72, + "probability": 0.98974609375 + }, + { + "word": " I", + "start": 1234.86, + "end": 1235.26, + "probability": 1.0 + }, + { + "word": " tried", + "start": 1235.26, + "end": 1235.54, + "probability": 0.94091796875 + }, + { + "word": " turning", + "start": 1235.54, + "end": 1235.82, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1235.82, + "end": 1235.98, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1235.98, + "end": 1236.34, + "probability": 1.0 + }, + { + "word": " on,", + "start": 1236.34, + "end": 1236.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1236.84, + "end": 1237.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 1237.08, + "end": 1238.38, + "probability": 1.0 + }, + { + "word": " won't", + "start": 1238.38, + "end": 1238.86, + "probability": 1.0 + }, + { + "word": " even", + "start": 1238.86, + "end": 1239.0, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1239.0, + "end": 1239.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 1239.32, + "end": 1239.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1239.66, + "end": 1239.9, + "probability": 1.0 + }, + { + "word": " Windows.", + "start": 1239.9, + "end": 1240.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 712, + "text": "It takes me...", + "start": 1240.98, + "end": 1242.14, + "words": [ + { + "word": " It", + "start": 1240.98, + "end": 1241.38, + "probability": 0.99755859375 + }, + { + "word": " takes", + "start": 1241.38, + "end": 1241.76, + "probability": 0.4326171875 + }, + { + "word": " me...", + "start": 1241.76, + "end": 1242.14, + "probability": 0.98388671875 + } + ] + }, + { + "id": 713, + "text": "It automatically opens up the option to go into, like, safe mode.", + "start": 1242.14, + "end": 1247.48, + "words": [ + { + "word": " It", + "start": 1242.14, + "end": 1242.6, + "probability": 0.98779296875 + }, + { + "word": " automatically", + "start": 1242.6, + "end": 1243.04, + "probability": 1.0 + }, + { + "word": " opens", + "start": 1243.04, + "end": 1243.8, + "probability": 1.0 + }, + { + "word": " up", + "start": 1243.8, + "end": 1244.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1244.3, + "end": 1245.22, + "probability": 0.99951171875 + }, + { + "word": " option", + "start": 1245.22, + "end": 1245.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1245.86, + "end": 1246.2, + "probability": 1.0 + }, + { + "word": " go", + "start": 1246.2, + "end": 1246.38, + "probability": 1.0 + }, + { + "word": " into,", + "start": 1246.38, + "end": 1246.6, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1246.64, + "end": 1246.9, + "probability": 0.99951171875 + }, + { + "word": " safe", + "start": 1246.92, + "end": 1247.26, + "probability": 0.445068359375 + }, + { + "word": " mode.", + "start": 1247.26, + "end": 1247.48, + "probability": 0.61328125 + } + ] + }, + { + "id": 714, + "text": "You know, left working mode, or just normal Windows mode.", + "start": 1247.5, + "end": 1252.44, + "words": [ + { + "word": " You", + "start": 1247.5, + "end": 1247.84, + "probability": 0.10577392578125 + }, + { + "word": " know,", + "start": 1247.84, + "end": 1248.88, + "probability": 0.98779296875 + }, + { + "word": " left", + "start": 1249.02, + "end": 1249.66, + "probability": 0.6962890625 + }, + { + "word": " working", + "start": 1249.66, + "end": 1250.22, + "probability": 0.9677734375 + }, + { + "word": " mode,", + "start": 1250.22, + "end": 1250.5, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 1250.62, + "end": 1250.78, + "probability": 0.99560546875 + }, + { + "word": " just", + "start": 1250.78, + "end": 1250.96, + "probability": 0.998046875 + }, + { + "word": " normal", + "start": 1250.96, + "end": 1251.66, + "probability": 0.99658203125 + }, + { + "word": " Windows", + "start": 1251.66, + "end": 1252.04, + "probability": 0.88525390625 + }, + { + "word": " mode.", + "start": 1252.04, + "end": 1252.44, + "probability": 0.99462890625 + } + ] + }, + { + "id": 715, + "text": "Okay.", + "start": 1252.74, + "end": 1253.14, + "words": [ + { + "word": " Okay.", + "start": 1252.74, + "end": 1253.14, + "probability": 0.626953125 + } + ] + }, + { + "id": 716, + "text": "And whichever one I pick, it just reboots itself.", + "start": 1253.16, + "end": 1259.06, + "words": [ + { + "word": " And", + "start": 1253.16, + "end": 1253.42, + "probability": 0.892578125 + }, + { + "word": " whichever", + "start": 1253.42, + "end": 1254.22, + "probability": 0.92431640625 + }, + { + "word": " one", + "start": 1254.22, + "end": 1255.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 1255.66, + "end": 1255.88, + "probability": 1.0 + }, + { + "word": " pick,", + "start": 1255.88, + "end": 1256.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 1256.46, + "end": 1257.32, + "probability": 1.0 + }, + { + "word": " just", + "start": 1257.32, + "end": 1257.6, + "probability": 1.0 + }, + { + "word": " reboots", + "start": 1257.6, + "end": 1258.78, + "probability": 1.0 + }, + { + "word": " itself.", + "start": 1258.78, + "end": 1259.06, + "probability": 1.0 + } + ] + }, + { + "id": 717, + "text": "Okay, so it's getting a blue screen.", + "start": 1259.34, + "end": 1260.46, + "words": [ + { + "word": " Okay,", + "start": 1259.34, + "end": 1259.6, + "probability": 0.99462890625 + }, + { + "word": " so", + "start": 1259.64, + "end": 1259.74, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1259.74, + "end": 1259.94, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1259.94, + "end": 1260.0, + "probability": 0.98681640625 + }, + { + "word": " a", + "start": 1260.0, + "end": 1260.08, + "probability": 0.99951171875 + }, + { + "word": " blue", + "start": 1260.08, + "end": 1260.22, + "probability": 0.99853515625 + }, + { + "word": " screen.", + "start": 1260.22, + "end": 1260.46, + "probability": 1.0 + } + ] + }, + { + "id": 718, + "text": "Yeah, I'm getting a blue screen that pops up really quick, and then it goes away, and then I go right back.", + "start": 1261.14, + "end": 1265.76, + "words": [ + { + "word": " Yeah,", + "start": 1261.14, + "end": 1261.54, + "probability": 0.982421875 + }, + { + "word": " I'm", + "start": 1261.72, + "end": 1261.92, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1261.92, + "end": 1262.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1262.0, + "end": 1262.14, + "probability": 1.0 + }, + { + "word": " blue", + "start": 1262.14, + "end": 1262.34, + "probability": 1.0 + }, + { + "word": " screen", + "start": 1262.34, + "end": 1262.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 1262.62, + "end": 1262.82, + "probability": 0.98876953125 + }, + { + "word": " pops", + "start": 1262.82, + "end": 1263.06, + "probability": 1.0 + }, + { + "word": " up", + "start": 1263.06, + "end": 1263.32, + "probability": 1.0 + }, + { + "word": " really", + "start": 1263.32, + "end": 1263.56, + "probability": 1.0 + }, + { + "word": " quick,", + "start": 1263.56, + "end": 1263.88, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1263.98, + "end": 1264.14, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1264.14, + "end": 1264.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 1264.22, + "end": 1264.34, + "probability": 1.0 + }, + { + "word": " goes", + "start": 1264.34, + "end": 1264.48, + "probability": 1.0 + }, + { + "word": " away,", + "start": 1264.48, + "end": 1264.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1264.84, + "end": 1264.96, + "probability": 1.0 + }, + { + "word": " then", + "start": 1264.96, + "end": 1265.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 1265.04, + "end": 1265.12, + "probability": 1.0 + }, + { + "word": " go", + "start": 1265.12, + "end": 1265.26, + "probability": 1.0 + }, + { + "word": " right", + "start": 1265.26, + "end": 1265.44, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1265.44, + "end": 1265.76, + "probability": 1.0 + } + ] + }, + { + "id": 719, + "text": "How old is the machine?", + "start": 1265.84, + "end": 1266.62, + "words": [ + { + "word": " How", + "start": 1265.84, + "end": 1266.02, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 1266.02, + "end": 1266.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1266.18, + "end": 1266.32, + "probability": 0.97998046875 + }, + { + "word": " the", + "start": 1266.32, + "end": 1266.4, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 1266.4, + "end": 1266.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 720, + "text": "About eight years old, nine.", + "start": 1268.9199999999998, + "end": 1270.72, + "words": [ + { + "word": " About", + "start": 1268.9199999999998, + "end": 1269.32, + "probability": 0.99560546875 + }, + { + "word": " eight", + "start": 1269.32, + "end": 1269.72, + "probability": 0.8857421875 + }, + { + "word": " years", + "start": 1269.72, + "end": 1270.16, + "probability": 1.0 + }, + { + "word": " old,", + "start": 1270.16, + "end": 1270.46, + "probability": 1.0 + }, + { + "word": " nine.", + "start": 1270.54, + "end": 1270.72, + "probability": 1.0 + } + ] + }, + { + "id": 721, + "text": "All right.", + "start": 1271.04, + "end": 1271.4, + "words": [ + { + "word": " All", + "start": 1271.04, + "end": 1271.32, + "probability": 0.5712890625 + }, + { + "word": " right.", + "start": 1271.32, + "end": 1271.4, + "probability": 1.0 + } + ] + }, + { + "id": 722, + "text": "I bet you have bad hard drives.", + "start": 1271.44, + "end": 1272.82, + "words": [ + { + "word": " I", + "start": 1271.44, + "end": 1271.54, + "probability": 0.9990234375 + }, + { + "word": " bet", + "start": 1271.54, + "end": 1271.7, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1271.7, + "end": 1271.84, + "probability": 1.0 + }, + { + "word": " have", + "start": 1271.84, + "end": 1271.92, + "probability": 0.99658203125 + }, + { + "word": " bad", + "start": 1271.92, + "end": 1272.32, + "probability": 0.78271484375 + }, + { + "word": " hard", + "start": 1272.32, + "end": 1272.62, + "probability": 0.994140625 + }, + { + "word": " drives.", + "start": 1272.62, + "end": 1272.82, + "probability": 0.6064453125 + } + ] + }, + { + "id": 723, + "text": "Well, it could be.", + "start": 1272.88, + "end": 1274.12, + "words": [ + { + "word": " Well,", + "start": 1272.88, + "end": 1273.04, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1273.24, + "end": 1273.66, + "probability": 1.0 + }, + { + "word": " could", + "start": 1273.66, + "end": 1273.86, + "probability": 1.0 + }, + { + "word": " be.", + "start": 1273.86, + "end": 1274.12, + "probability": 1.0 + } + ] + }, + { + "id": 724, + "text": "It could be the infection's correct.", + "start": 1274.14, + "end": 1275.4, + "words": [ + { + "word": " It", + "start": 1274.14, + "end": 1274.3, + "probability": 0.990234375 + }, + { + "word": " could", + "start": 1274.3, + "end": 1274.44, + "probability": 1.0 + }, + { + "word": " be", + "start": 1274.44, + "end": 1274.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 1274.56, + "end": 1274.66, + "probability": 0.99755859375 + }, + { + "word": " infection's", + "start": 1274.66, + "end": 1275.24, + "probability": 0.7548828125 + }, + { + "word": " correct.", + "start": 1275.24, + "end": 1275.4, + "probability": 0.533203125 + } + ] + }, + { + "id": 725, + "text": "This is the guy who called it the virus infection.", + "start": 1275.62, + "end": 1277.2, + "words": [ + { + "word": " This", + "start": 1275.62, + "end": 1276.02, + "probability": 0.826171875 + }, + { + "word": " is", + "start": 1276.02, + "end": 1276.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1276.18, + "end": 1276.18, + "probability": 0.99951171875 + }, + { + "word": " guy", + "start": 1276.18, + "end": 1276.32, + "probability": 1.0 + }, + { + "word": " who", + "start": 1276.32, + "end": 1276.42, + "probability": 0.79931640625 + }, + { + "word": " called", + "start": 1276.42, + "end": 1276.56, + "probability": 0.95361328125 + }, + { + "word": " it", + "start": 1276.56, + "end": 1276.66, + "probability": 0.931640625 + }, + { + "word": " the", + "start": 1276.66, + "end": 1276.74, + "probability": 0.9990234375 + }, + { + "word": " virus", + "start": 1276.74, + "end": 1276.94, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 1276.94, + "end": 1277.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 726, + "text": "Yeah.", + "start": 1277.2, + "end": 1277.4, + "words": [ + { + "word": " Yeah.", + "start": 1277.2, + "end": 1277.4, + "probability": 0.99658203125 + } + ] + }, + { + "id": 727, + "text": "And infections kill hard drives, like, all day long.", + "start": 1277.5, + "end": 1279.54, + "words": [ + { + "word": " And", + "start": 1277.5, + "end": 1277.5, + "probability": 0.234619140625 + }, + { + "word": " infections", + "start": 1277.5, + "end": 1277.74, + "probability": 0.998046875 + }, + { + "word": " kill", + "start": 1277.74, + "end": 1278.1, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1278.1, + "end": 1278.34, + "probability": 0.73046875 + }, + { + "word": " drives,", + "start": 1278.34, + "end": 1278.54, + "probability": 0.96484375 + }, + { + "word": " like,", + "start": 1278.6, + "end": 1278.74, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1278.8, + "end": 1279.2, + "probability": 1.0 + }, + { + "word": " day", + "start": 1279.2, + "end": 1279.36, + "probability": 1.0 + }, + { + "word": " long.", + "start": 1279.36, + "end": 1279.54, + "probability": 1.0 + } + ] + }, + { + "id": 728, + "text": "Either way, though, this is going to be beyond your repair, I'm thinking.", + "start": 1279.76, + "end": 1282.5, + "words": [ + { + "word": " Either", + "start": 1279.76, + "end": 1280.04, + "probability": 0.9970703125 + }, + { + "word": " way,", + "start": 1280.04, + "end": 1280.3, + "probability": 1.0 + }, + { + "word": " though,", + "start": 1280.4, + "end": 1280.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 1280.62, + "end": 1280.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 1280.78, + "end": 1280.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 1280.88, + "end": 1281.04, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1281.04, + "end": 1281.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 1281.18, + "end": 1281.28, + "probability": 1.0 + }, + { + "word": " beyond", + "start": 1281.28, + "end": 1281.54, + "probability": 0.99658203125 + }, + { + "word": " your", + "start": 1281.54, + "end": 1281.68, + "probability": 0.9990234375 + }, + { + "word": " repair,", + "start": 1281.68, + "end": 1281.88, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 1281.98, + "end": 1282.14, + "probability": 1.0 + }, + { + "word": " thinking.", + "start": 1282.14, + "end": 1282.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 729, + "text": "Either way, you're going to need to bring it down to a shop.", + "start": 1283.1000000000001, + "end": 1284.72, + "words": [ + { + "word": " Either", + "start": 1283.1000000000001, + "end": 1283.38, + "probability": 0.99951171875 + }, + { + "word": " way,", + "start": 1283.38, + "end": 1283.56, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1283.62, + "end": 1283.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 1283.74, + "end": 1283.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1283.82, + "end": 1283.86, + "probability": 1.0 + }, + { + "word": " need", + "start": 1283.86, + "end": 1283.98, + "probability": 0.9873046875 + }, + { + "word": " to", + "start": 1283.98, + "end": 1284.06, + "probability": 1.0 + }, + { + "word": " bring", + "start": 1284.06, + "end": 1284.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 1284.2, + "end": 1284.3, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 1284.3, + "end": 1284.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1284.38, + "end": 1284.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 1284.46, + "end": 1284.54, + "probability": 0.9931640625 + }, + { + "word": " shop.", + "start": 1284.54, + "end": 1284.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 730, + "text": "Bring it down to us.", + "start": 1284.74, + "end": 1285.34, + "words": [ + { + "word": " Bring", + "start": 1284.74, + "end": 1284.86, + "probability": 0.98876953125 + }, + { + "word": " it", + "start": 1284.86, + "end": 1284.94, + "probability": 1.0 + }, + { + "word": " down", + "start": 1284.94, + "end": 1285.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1285.02, + "end": 1285.1, + "probability": 1.0 + }, + { + "word": " us.", + "start": 1285.1, + "end": 1285.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 731, + "text": "We can do a diagnostic and find out exactly what's going on for you.", + "start": 1285.34, + "end": 1288.02, + "words": [ + { + "word": " We", + "start": 1285.34, + "end": 1285.44, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1285.44, + "end": 1285.52, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1285.52, + "end": 1285.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 1285.62, + "end": 1285.72, + "probability": 1.0 + }, + { + "word": " diagnostic", + "start": 1285.72, + "end": 1286.1, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1286.1, + "end": 1286.56, + "probability": 0.9990234375 + }, + { + "word": " find", + "start": 1286.56, + "end": 1287.0, + "probability": 1.0 + }, + { + "word": " out", + "start": 1287.0, + "end": 1287.1, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 1287.1, + "end": 1287.26, + "probability": 0.8701171875 + }, + { + "word": " what's", + "start": 1287.26, + "end": 1287.58, + "probability": 1.0 + }, + { + "word": " going", + "start": 1287.58, + "end": 1287.66, + "probability": 1.0 + }, + { + "word": " on", + "start": 1287.66, + "end": 1287.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 1287.8, + "end": 1287.94, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1287.94, + "end": 1288.02, + "probability": 1.0 + } + ] + }, + { + "id": 732, + "text": "Okay.", + "start": 1289.2, + "end": 1289.48, + "words": [ + { + "word": " Okay.", + "start": 1289.2, + "end": 1289.48, + "probability": 0.9638671875 + } + ] + }, + { + "id": 733, + "text": "All right.", + "start": 1289.64, + "end": 1290.02, + "words": [ + { + "word": " All", + "start": 1289.64, + "end": 1289.9, + "probability": 0.87451171875 + }, + { + "word": " right.", + "start": 1289.9, + "end": 1290.02, + "probability": 1.0 + } + ] + }, + { + "id": 734, + "text": "We're looking at 2700 North Campbell, just south of Glynn.", + "start": 1290.08, + "end": 1292.42, + "words": [ + { + "word": " We're", + "start": 1290.08, + "end": 1290.28, + "probability": 0.9990234375 + }, + { + "word": " looking", + "start": 1290.28, + "end": 1290.44, + "probability": 0.67626953125 + }, + { + "word": " at", + "start": 1290.44, + "end": 1290.58, + "probability": 1.0 + }, + { + "word": " 2700", + "start": 1290.58, + "end": 1291.04, + "probability": 0.97705078125 + }, + { + "word": " North", + "start": 1291.04, + "end": 1291.32, + "probability": 1.0 + }, + { + "word": " Campbell,", + "start": 1291.32, + "end": 1291.7, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1291.84, + "end": 1291.96, + "probability": 0.99951171875 + }, + { + "word": " south", + "start": 1291.96, + "end": 1292.16, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 1292.16, + "end": 1292.24, + "probability": 1.0 + }, + { + "word": " Glynn.", + "start": 1292.24, + "end": 1292.42, + "probability": 0.8330078125 + } + ] + }, + { + "id": 735, + "text": "Okay.", + "start": 1293.18, + "end": 1293.46, + "words": [ + { + "word": " Okay.", + "start": 1293.18, + "end": 1293.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 736, + "text": "Thanks for the call, Frank.", + "start": 1293.52, + "end": 1294.4, + "words": [ + { + "word": " Thanks", + "start": 1293.52, + "end": 1293.8, + "probability": 0.96142578125 + }, + { + "word": " for", + "start": 1293.8, + "end": 1293.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1293.88, + "end": 1294.0, + "probability": 1.0 + }, + { + "word": " call,", + "start": 1294.0, + "end": 1294.16, + "probability": 1.0 + }, + { + "word": " Frank.", + "start": 1294.22, + "end": 1294.4, + "probability": 1.0 + } + ] + }, + { + "id": 737, + "text": "Appreciate it.", + "start": 1294.46, + "end": 1294.9, + "words": [ + { + "word": " Appreciate", + "start": 1294.46, + "end": 1294.74, + "probability": 0.94873046875 + }, + { + "word": " it.", + "start": 1294.74, + "end": 1294.9, + "probability": 1.0 + } + ] + }, + { + "id": 738, + "text": "We've got to do some news.", + "start": 1294.94, + "end": 1295.66, + "words": [ + { + "word": " We've", + "start": 1294.94, + "end": 1295.0, + "probability": 0.99462890625 + }, + { + "word": " got", + "start": 1295.0, + "end": 1295.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 1295.06, + "end": 1295.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 1295.1, + "end": 1295.24, + "probability": 1.0 + }, + { + "word": " some", + "start": 1295.24, + "end": 1295.38, + "probability": 1.0 + }, + { + "word": " news.", + "start": 1295.38, + "end": 1295.66, + "probability": 1.0 + } + ] + }, + { + "id": 739, + "text": "If you'd like to be part of the show, 751-1041.", + "start": 1295.74, + "end": 1298.08, + "words": [ + { + "word": " If", + "start": 1295.74, + "end": 1295.9, + "probability": 0.99951171875 + }, + { + "word": " you'd", + "start": 1295.9, + "end": 1296.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 1296.02, + "end": 1296.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 1296.12, + "end": 1296.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 1296.22, + "end": 1296.26, + "probability": 1.0 + }, + { + "word": " part", + "start": 1296.26, + "end": 1296.44, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1296.44, + "end": 1296.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1296.52, + "end": 1296.56, + "probability": 1.0 + }, + { + "word": " show,", + "start": 1296.56, + "end": 1296.74, + "probability": 1.0 + }, + { + "word": " 751", + "start": 1296.82, + "end": 1297.42, + "probability": 0.99658203125 + }, + { + "word": "-1041.", + "start": 1297.42, + "end": 1298.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 740, + "text": "We'd love to help you out with whatever technology issues are plaguing you today.", + "start": 1298.6200000000001, + "end": 1301.78, + "words": [ + { + "word": " We'd", + "start": 1298.6200000000001, + "end": 1298.9, + "probability": 1.0 + }, + { + "word": " love", + "start": 1298.9, + "end": 1299.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 1299.0, + "end": 1299.12, + "probability": 1.0 + }, + { + "word": " help", + "start": 1299.12, + "end": 1299.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 1299.24, + "end": 1299.36, + "probability": 1.0 + }, + { + "word": " out", + "start": 1299.36, + "end": 1299.46, + "probability": 1.0 + }, + { + "word": " with", + "start": 1299.46, + "end": 1299.58, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 1299.58, + "end": 1299.72, + "probability": 1.0 + }, + { + "word": " technology", + "start": 1299.72, + "end": 1300.04, + "probability": 1.0 + }, + { + "word": " issues", + "start": 1300.04, + "end": 1300.44, + "probability": 1.0 + }, + { + "word": " are", + "start": 1300.44, + "end": 1300.86, + "probability": 1.0 + }, + { + "word": " plaguing", + "start": 1300.86, + "end": 1301.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 1301.34, + "end": 1301.5, + "probability": 1.0 + }, + { + "word": " today.", + "start": 1301.5, + "end": 1301.78, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "This is the Computer Guru Show.", + "start": 1302.26, + "end": 1303.44, + "words": [ + { + "word": " This", + "start": 1302.26, + "end": 1302.54, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1302.54, + "end": 1302.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1302.7, + "end": 1302.76, + "probability": 0.67626953125 + }, + { + "word": " Computer", + "start": 1302.76, + "end": 1302.98, + "probability": 0.99853515625 + }, + { + "word": " Guru", + "start": 1302.98, + "end": 1303.22, + "probability": 0.66455078125 + }, + { + "word": " Show.", + "start": 1303.22, + "end": 1303.44, + "probability": 0.9970703125 + } + ] + }, + { + "id": 742, + "text": "We'll be right back after the news.", + "start": 1303.54, + "end": 1304.76, + "words": [ + { + "word": " We'll", + "start": 1303.54, + "end": 1303.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 1303.8, + "end": 1303.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 1303.84, + "end": 1304.0, + "probability": 1.0 + }, + { + "word": " back", + "start": 1304.0, + "end": 1304.22, + "probability": 1.0 + }, + { + "word": " after", + "start": 1304.22, + "end": 1304.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1304.48, + "end": 1304.6, + "probability": 1.0 + }, + { + "word": " news.", + "start": 1304.6, + "end": 1304.76, + "probability": 1.0 + } + ] + }, + { + "id": 743, + "text": "We'll be right back.", + "start": 1318.4999999999998, + "end": 1321.68, + "words": [ + { + "word": " We'll", + "start": 1318.4999999999998, + "end": 1319.8999999999999, + "probability": 0.474365234375 + }, + { + "word": " be", + "start": 1319.8999999999999, + "end": 1321.3, + "probability": 0.76953125 + }, + { + "word": " right", + "start": 1321.3, + "end": 1321.42, + "probability": 0.9814453125 + }, + { + "word": " back.", + "start": 1321.42, + "end": 1321.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 744, + "text": "We'll be right back.", + "start": 1326.7, + "end": 1335.54, + "words": [ + { + "word": " We'll", + "start": 1326.7, + "end": 1328.1, + "probability": 0.495361328125 + }, + { + "word": " be", + "start": 1328.1, + "end": 1328.12, + "probability": 0.9970703125 + }, + { + "word": " right", + "start": 1328.12, + "end": 1328.4, + "probability": 0.99853515625 + }, + { + "word": " back.", + "start": 1328.4, + "end": 1335.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 745, + "text": "Oh, please stop.", + "start": 1338.06, + "end": 1338.98, + "words": [ + { + "word": " Oh,", + "start": 1338.06, + "end": 1338.46, + "probability": 0.79736328125 + }, + { + "word": " please", + "start": 1338.56, + "end": 1338.78, + "probability": 0.9990234375 + }, + { + "word": " stop.", + "start": 1338.78, + "end": 1338.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 746, + "text": "Yeah, I watched all five seasons of The Wire on HBO Go on the iPad.", + "start": 1339.8, + "end": 1345.2, + "words": [ + { + "word": " Yeah,", + "start": 1339.8, + "end": 1340.2, + "probability": 0.61181640625 + }, + { + "word": " I", + "start": 1340.26, + "end": 1340.4, + "probability": 1.0 + }, + { + "word": " watched", + "start": 1340.4, + "end": 1340.8, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1340.8, + "end": 1341.2, + "probability": 0.99853515625 + }, + { + "word": " five", + "start": 1341.2, + "end": 1341.6, + "probability": 0.9990234375 + }, + { + "word": " seasons", + "start": 1341.6, + "end": 1342.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1342.06, + "end": 1342.28, + "probability": 1.0 + }, + { + "word": " The", + "start": 1342.28, + "end": 1342.34, + "probability": 0.998046875 + }, + { + "word": " Wire", + "start": 1342.34, + "end": 1342.6, + "probability": 1.0 + }, + { + "word": " on", + "start": 1342.6, + "end": 1343.68, + "probability": 0.99560546875 + }, + { + "word": " HBO", + "start": 1343.68, + "end": 1344.38, + "probability": 1.0 + }, + { + "word": " Go", + "start": 1344.38, + "end": 1344.62, + "probability": 0.99267578125 + }, + { + "word": " on", + "start": 1344.62, + "end": 1344.88, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 1344.88, + "end": 1345.0, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 1345.0, + "end": 1345.2, + "probability": 1.0 + } + ] + }, + { + "id": 747, + "text": "Really?", + "start": 1345.46, + "end": 1345.72, + "words": [ + { + "word": " Really?", + "start": 1345.46, + "end": 1345.72, + "probability": 0.98046875 + } + ] + }, + { + "id": 748, + "text": "Yeah.", + "start": 1345.82, + "end": 1346.04, + "words": [ + { + "word": " Yeah.", + "start": 1345.82, + "end": 1346.04, + "probability": 0.982421875 + } + ] + }, + { + "id": 749, + "text": "I've never seen one episode of The Wire.", + "start": 1346.7, + "end": 1348.22, + "words": [ + { + "word": " I've", + "start": 1346.7, + "end": 1347.1, + "probability": 0.9951171875 + }, + { + "word": " never", + "start": 1347.1, + "end": 1347.18, + "probability": 0.9775390625 + }, + { + "word": " seen", + "start": 1347.18, + "end": 1347.36, + "probability": 0.97900390625 + }, + { + "word": " one", + "start": 1347.36, + "end": 1347.52, + "probability": 1.0 + }, + { + "word": " episode", + "start": 1347.52, + "end": 1347.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 1347.76, + "end": 1347.96, + "probability": 1.0 + }, + { + "word": " The", + "start": 1347.96, + "end": 1348.04, + "probability": 1.0 + }, + { + "word": " Wire.", + "start": 1348.04, + "end": 1348.22, + "probability": 1.0 + } + ] + }, + { + "id": 750, + "text": "It turns out it's a really great show.", + "start": 1348.46, + "end": 1349.84, + "words": [ + { + "word": " It", + "start": 1348.46, + "end": 1348.72, + "probability": 0.99951171875 + }, + { + "word": " turns", + "start": 1348.72, + "end": 1348.88, + "probability": 1.0 + }, + { + "word": " out", + "start": 1348.88, + "end": 1349.02, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1349.02, + "end": 1349.22, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1349.22, + "end": 1349.22, + "probability": 1.0 + }, + { + "word": " really", + "start": 1349.22, + "end": 1349.38, + "probability": 1.0 + }, + { + "word": " great", + "start": 1349.38, + "end": 1349.56, + "probability": 1.0 + }, + { + "word": " show.", + "start": 1349.56, + "end": 1349.84, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "It took you five seasons to figure that out?", + "start": 1350.1, + "end": 1351.74, + "words": [ + { + "word": " It", + "start": 1350.1, + "end": 1350.28, + "probability": 0.99951171875 + }, + { + "word": " took", + "start": 1350.28, + "end": 1350.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 1350.4, + "end": 1350.52, + "probability": 1.0 + }, + { + "word": " five", + "start": 1350.52, + "end": 1350.66, + "probability": 1.0 + }, + { + "word": " seasons", + "start": 1350.66, + "end": 1350.98, + "probability": 0.798828125 + }, + { + "word": " to", + "start": 1350.98, + "end": 1351.38, + "probability": 1.0 + }, + { + "word": " figure", + "start": 1351.38, + "end": 1351.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 1351.5, + "end": 1351.64, + "probability": 0.99951171875 + }, + { + "word": " out?", + "start": 1351.64, + "end": 1351.74, + "probability": 1.0 + } + ] + }, + { + "id": 752, + "text": "Well, it's over now.", + "start": 1351.9, + "end": 1352.64, + "words": [ + { + "word": " Well,", + "start": 1351.9, + "end": 1352.1, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1352.12, + "end": 1352.26, + "probability": 1.0 + }, + { + "word": " over", + "start": 1352.26, + "end": 1352.42, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1352.42, + "end": 1352.64, + "probability": 1.0 + } + ] + }, + { + "id": 753, + "text": "It was all five seasons.", + "start": 1352.74, + "end": 1353.8, + "words": [ + { + "word": " It", + "start": 1352.74, + "end": 1352.96, + "probability": 0.88916015625 + }, + { + "word": " was", + "start": 1352.96, + "end": 1353.14, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1353.14, + "end": 1353.24, + "probability": 1.0 + }, + { + "word": " five", + "start": 1353.24, + "end": 1353.44, + "probability": 1.0 + }, + { + "word": " seasons.", + "start": 1353.44, + "end": 1353.8, + "probability": 1.0 + } + ] + }, + { + "id": 754, + "text": "Oh, okay.", + "start": 1353.86, + "end": 1354.32, + "words": [ + { + "word": " Oh,", + "start": 1353.86, + "end": 1354.12, + "probability": 0.94482421875 + }, + { + "word": " okay.", + "start": 1354.12, + "end": 1354.32, + "probability": 0.96484375 + } + ] + }, + { + "id": 755, + "text": "They ended the series.", + "start": 1354.46, + "end": 1355.78, + "words": [ + { + "word": " They", + "start": 1354.46, + "end": 1354.76, + "probability": 0.9990234375 + }, + { + "word": " ended", + "start": 1354.76, + "end": 1355.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1355.24, + "end": 1355.46, + "probability": 1.0 + }, + { + "word": " series.", + "start": 1355.46, + "end": 1355.78, + "probability": 1.0 + } + ] + }, + { + "id": 756, + "text": "Yeah.", + "start": 1355.98, + "end": 1356.22, + "words": [ + { + "word": " Yeah.", + "start": 1355.98, + "end": 1356.22, + "probability": 0.900390625 + } + ] + }, + { + "id": 757, + "text": "And it turns out that it will dramatically affect the way that you speak to people around you.", + "start": 1356.38, + "end": 1360.56, + "words": [ + { + "word": " And", + "start": 1356.38, + "end": 1356.78, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 1356.78, + "end": 1356.92, + "probability": 1.0 + }, + { + "word": " turns", + "start": 1356.92, + "end": 1357.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 1357.1, + "end": 1357.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 1357.42, + "end": 1357.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 1357.6, + "end": 1357.72, + "probability": 1.0 + }, + { + "word": " will", + "start": 1357.72, + "end": 1357.88, + "probability": 1.0 + }, + { + "word": " dramatically", + "start": 1357.88, + "end": 1358.3, + "probability": 1.0 + }, + { + "word": " affect", + "start": 1358.3, + "end": 1358.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1358.78, + "end": 1359.0, + "probability": 1.0 + }, + { + "word": " way", + "start": 1359.0, + "end": 1359.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1359.12, + "end": 1359.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 1359.26, + "end": 1359.36, + "probability": 1.0 + }, + { + "word": " speak", + "start": 1359.36, + "end": 1359.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1359.66, + "end": 1359.82, + "probability": 1.0 + }, + { + "word": " people", + "start": 1359.82, + "end": 1360.0, + "probability": 1.0 + }, + { + "word": " around", + "start": 1360.0, + "end": 1360.26, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1360.26, + "end": 1360.56, + "probability": 1.0 + } + ] + }, + { + "id": 758, + "text": "What is the show about?", + "start": 1361.64, + "end": 1362.72, + "words": [ + { + "word": " What", + "start": 1361.64, + "end": 1362.04, + "probability": 0.99462890625 + }, + { + "word": " is", + "start": 1362.04, + "end": 1362.22, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1362.22, + "end": 1362.36, + "probability": 0.6005859375 + }, + { + "word": " show", + "start": 1362.36, + "end": 1362.52, + "probability": 1.0 + }, + { + "word": " about?", + "start": 1362.52, + "end": 1362.72, + "probability": 1.0 + } + ] + }, + { + "id": 759, + "text": "I've never even heard of it.", + "start": 1362.84, + "end": 1363.44, + "words": [ + { + "word": " I've", + "start": 1362.84, + "end": 1362.96, + "probability": 0.9833984375 + }, + { + "word": " never", + "start": 1362.96, + "end": 1362.98, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 1362.98, + "end": 1363.12, + "probability": 0.9306640625 + }, + { + "word": " heard", + "start": 1363.12, + "end": 1363.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1363.24, + "end": 1363.32, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1363.32, + "end": 1363.44, + "probability": 1.0 + } + ] + }, + { + "id": 760, + "text": "It's about a detective in Boston.", + "start": 1363.58, + "end": 1366.14, + "words": [ + { + "word": " It's", + "start": 1363.58, + "end": 1363.88, + "probability": 1.0 + }, + { + "word": " about", + "start": 1363.88, + "end": 1364.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1364.04, + "end": 1364.36, + "probability": 1.0 + }, + { + "word": " detective", + "start": 1364.36, + "end": 1365.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 1365.38, + "end": 1365.72, + "probability": 1.0 + }, + { + "word": " Boston.", + "start": 1365.72, + "end": 1366.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 761, + "text": "He's working on drug-related cases and stuff.", + "start": 1366.14, + "end": 1369.74, + "words": [ + { + "word": " He's", + "start": 1366.14, + "end": 1366.74, + "probability": 0.260009765625 + }, + { + "word": " working", + "start": 1366.74, + "end": 1367.58, + "probability": 0.865234375 + }, + { + "word": " on", + "start": 1367.58, + "end": 1367.88, + "probability": 0.99951171875 + }, + { + "word": " drug", + "start": 1367.88, + "end": 1368.6, + "probability": 0.99609375 + }, + { + "word": "-related", + "start": 1368.6, + "end": 1368.88, + "probability": 0.9814453125 + }, + { + "word": " cases", + "start": 1368.88, + "end": 1369.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 1369.3, + "end": 1369.52, + "probability": 0.99755859375 + }, + { + "word": " stuff.", + "start": 1369.52, + "end": 1369.74, + "probability": 1.0 + } + ] + }, + { + "id": 762, + "text": "So it's like CSI Miami or something?", + "start": 1369.94, + "end": 1371.28, + "words": [ + { + "word": " So", + "start": 1369.94, + "end": 1370.02, + "probability": 0.88232421875 + }, + { + "word": " it's", + "start": 1370.02, + "end": 1370.18, + "probability": 0.8671875 + }, + { + "word": " like", + "start": 1370.18, + "end": 1370.32, + "probability": 1.0 + }, + { + "word": " CSI", + "start": 1370.32, + "end": 1370.68, + "probability": 0.9716796875 + }, + { + "word": " Miami", + "start": 1370.68, + "end": 1370.84, + "probability": 0.99560546875 + }, + { + "word": " or", + "start": 1370.84, + "end": 1371.12, + "probability": 0.94677734375 + }, + { + "word": " something?", + "start": 1371.12, + "end": 1371.28, + "probability": 0.9833984375 + } + ] + }, + { + "id": 763, + "text": "It's like one of those CSI shows.", + "start": 1372.0, + "end": 1373.26, + "words": [ + { + "word": " It's", + "start": 1372.0, + "end": 1372.36, + "probability": 0.994140625 + }, + { + "word": " like", + "start": 1372.36, + "end": 1372.4, + "probability": 1.0 + }, + { + "word": " one", + "start": 1372.4, + "end": 1372.52, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 1372.52, + "end": 1372.6, + "probability": 1.0 + }, + { + "word": " those", + "start": 1372.6, + "end": 1372.68, + "probability": 0.99951171875 + }, + { + "word": " CSI", + "start": 1372.68, + "end": 1373.1, + "probability": 0.978515625 + }, + { + "word": " shows.", + "start": 1373.1, + "end": 1373.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 764, + "text": "Except for he doesn't pull his glasses off all the time and music screams in the back.", + "start": 1373.94, + "end": 1378.48, + "words": [ + { + "word": " Except", + "start": 1373.94, + "end": 1374.3, + "probability": 0.98681640625 + }, + { + "word": " for", + "start": 1374.3, + "end": 1374.48, + "probability": 0.94970703125 + }, + { + "word": " he", + "start": 1374.48, + "end": 1374.6, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 1374.6, + "end": 1374.84, + "probability": 1.0 + }, + { + "word": " pull", + "start": 1374.84, + "end": 1375.08, + "probability": 1.0 + }, + { + "word": " his", + "start": 1375.08, + "end": 1375.24, + "probability": 1.0 + }, + { + "word": " glasses", + "start": 1375.24, + "end": 1375.56, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 1375.56, + "end": 1375.82, + "probability": 1.0 + }, + { + "word": " all", + "start": 1375.82, + "end": 1375.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1375.98, + "end": 1376.1, + "probability": 1.0 + }, + { + "word": " time", + "start": 1376.1, + "end": 1376.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 1376.36, + "end": 1376.52, + "probability": 0.90283203125 + }, + { + "word": " music", + "start": 1376.52, + "end": 1376.84, + "probability": 0.9970703125 + }, + { + "word": " screams", + "start": 1376.84, + "end": 1377.14, + "probability": 0.6328125 + }, + { + "word": " in", + "start": 1377.14, + "end": 1377.92, + "probability": 0.85498046875 + }, + { + "word": " the", + "start": 1377.92, + "end": 1378.22, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1378.22, + "end": 1378.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 765, + "text": "Yeah.", + "start": 1380.0800000000002, + "end": 1380.44, + "words": [ + { + "word": " Yeah.", + "start": 1380.0800000000002, + "end": 1380.44, + "probability": 0.74951171875 + } + ] + }, + { + "id": 766, + "text": "Yeah.", + "start": 1380.52, + "end": 1380.82, + "words": [ + { + "word": " Yeah.", + "start": 1380.52, + "end": 1380.82, + "probability": 0.0814208984375 + } + ] + }, + { + "id": 767, + "text": "Well, let's talk to Clayton.", + "start": 1380.94, + "end": 1381.98, + "words": [ + { + "word": " Well,", + "start": 1380.94, + "end": 1381.3, + "probability": 0.650390625 + }, + { + "word": " let's", + "start": 1381.32, + "end": 1381.48, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1381.48, + "end": 1381.6, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1381.6, + "end": 1381.7, + "probability": 1.0 + }, + { + "word": " Clayton.", + "start": 1381.7, + "end": 1381.98, + "probability": 1.0 + } + ] + }, + { + "id": 768, + "text": "If you'd like to be part of the show, 751-1041.", + "start": 1381.98, + "end": 1383.9, + "words": [ + { + "word": " If", + "start": 1381.98, + "end": 1382.06, + "probability": 0.9990234375 + }, + { + "word": " you'd", + "start": 1382.06, + "end": 1382.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 1382.2, + "end": 1382.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1382.26, + "end": 1382.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 1382.34, + "end": 1382.4, + "probability": 1.0 + }, + { + "word": " part", + "start": 1382.4, + "end": 1382.56, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1382.56, + "end": 1382.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1382.66, + "end": 1382.7, + "probability": 1.0 + }, + { + "word": " show,", + "start": 1382.7, + "end": 1382.82, + "probability": 1.0 + }, + { + "word": " 751", + "start": 1382.9, + "end": 1383.42, + "probability": 0.9462890625 + }, + { + "word": "-1041.", + "start": 1383.42, + "end": 1383.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 769, + "text": "Hello, Clayton.", + "start": 1384.26, + "end": 1385.0, + "words": [ + { + "word": " Hello,", + "start": 1384.26, + "end": 1384.62, + "probability": 1.0 + }, + { + "word": " Clayton.", + "start": 1384.7, + "end": 1385.0, + "probability": 1.0 + } + ] + }, + { + "id": 770, + "text": "How are you?", + "start": 1385.0, + "end": 1385.3, + "words": [ + { + "word": " How", + "start": 1385.0, + "end": 1385.1, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1385.1, + "end": 1385.18, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1385.18, + "end": 1385.3, + "probability": 1.0 + } + ] + }, + { + "id": 771, + "text": "Hey, Mike.", + "start": 1385.54, + "end": 1386.06, + "words": [ + { + "word": " Hey,", + "start": 1385.54, + "end": 1385.9, + "probability": 0.9990234375 + }, + { + "word": " Mike.", + "start": 1385.9, + "end": 1386.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 772, + "text": "How are you doing today?", + "start": 1386.1, + "end": 1386.62, + "words": [ + { + "word": " How", + "start": 1386.1, + "end": 1386.24, + "probability": 1.0 + }, + { + "word": " are", + "start": 1386.24, + "end": 1386.3, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1386.3, + "end": 1386.32, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1386.32, + "end": 1386.48, + "probability": 1.0 + }, + { + "word": " today?", + "start": 1386.48, + "end": 1386.62, + "probability": 1.0 + } + ] + }, + { + "id": 773, + "text": "Getting there, man.", + "start": 1386.76, + "end": 1387.48, + "words": [ + { + "word": " Getting", + "start": 1386.76, + "end": 1387.04, + "probability": 0.6484375 + }, + { + "word": " there,", + "start": 1387.04, + "end": 1387.24, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1387.34, + "end": 1387.48, + "probability": 1.0 + } + ] + }, + { + "id": 774, + "text": "Just had a quick question for you.", + "start": 1388.3400000000001, + "end": 1389.8, + "words": [ + { + "word": " Just", + "start": 1388.3400000000001, + "end": 1388.7, + "probability": 0.79736328125 + }, + { + "word": " had", + "start": 1388.7, + "end": 1388.86, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 1388.86, + "end": 1388.96, + "probability": 1.0 + }, + { + "word": " quick", + "start": 1388.96, + "end": 1389.12, + "probability": 1.0 + }, + { + "word": " question", + "start": 1389.12, + "end": 1389.48, + "probability": 1.0 + }, + { + "word": " for", + "start": 1389.48, + "end": 1389.66, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1389.66, + "end": 1389.8, + "probability": 1.0 + } + ] + }, + { + "id": 775, + "text": "I just finished doing a gaming rig build yesterday.", + "start": 1389.84, + "end": 1391.88, + "words": [ + { + "word": " I", + "start": 1389.84, + "end": 1389.92, + "probability": 0.9833984375 + }, + { + "word": " just", + "start": 1389.92, + "end": 1390.08, + "probability": 0.99951171875 + }, + { + "word": " finished", + "start": 1390.08, + "end": 1390.32, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1390.32, + "end": 1390.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1390.58, + "end": 1390.76, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 1390.76, + "end": 1391.04, + "probability": 0.97802734375 + }, + { + "word": " rig", + "start": 1391.04, + "end": 1391.28, + "probability": 1.0 + }, + { + "word": " build", + "start": 1391.28, + "end": 1391.54, + "probability": 0.99951171875 + }, + { + "word": " yesterday.", + "start": 1391.54, + "end": 1391.88, + "probability": 1.0 + } + ] + }, + { + "id": 776, + "text": "Okay.", + "start": 1392.22, + "end": 1392.56, + "words": [ + { + "word": " Okay.", + "start": 1392.22, + "end": 1392.56, + "probability": 0.95849609375 + } + ] + }, + { + "id": 777, + "text": "And I bought an AMD Phenom II.", + "start": 1392.88, + "end": 1396.04, + "words": [ + { + "word": " And", + "start": 1392.88, + "end": 1393.24, + "probability": 0.93896484375 + }, + { + "word": " I", + "start": 1393.24, + "end": 1394.0, + "probability": 0.99853515625 + }, + { + "word": " bought", + "start": 1394.0, + "end": 1394.32, + "probability": 0.97265625 + }, + { + "word": " an", + "start": 1394.32, + "end": 1394.54, + "probability": 0.916015625 + }, + { + "word": " AMD", + "start": 1394.54, + "end": 1395.14, + "probability": 0.9990234375 + }, + { + "word": " Phenom", + "start": 1395.14, + "end": 1395.74, + "probability": 0.994140625 + }, + { + "word": " II.", + "start": 1395.74, + "end": 1396.04, + "probability": 0.84375 + } + ] + }, + { + "id": 778, + "text": "1100T processor.", + "start": 1396.48, + "end": 1397.36, + "words": [ + { + "word": " 1100T", + "start": 1396.48, + "end": 1396.92, + "probability": 0.7822265625 + }, + { + "word": " processor.", + "start": 1396.92, + "end": 1397.36, + "probability": 0.9736328125 + } + ] + }, + { + "id": 779, + "text": "Okay.", + "start": 1397.74, + "end": 1398.06, + "words": [ + { + "word": " Okay.", + "start": 1397.74, + "end": 1398.06, + "probability": 0.65478515625 + } + ] + }, + { + "id": 780, + "text": "And I'm just wondering, do I need to use the core unlocker feature on my motherboard", + "start": 1398.26, + "end": 1402.22, + "words": [ + { + "word": " And", + "start": 1398.26, + "end": 1398.7, + "probability": 0.9521484375 + }, + { + "word": " I'm", + "start": 1398.7, + "end": 1399.16, + "probability": 0.9951171875 + }, + { + "word": " just", + "start": 1399.16, + "end": 1399.34, + "probability": 0.99951171875 + }, + { + "word": " wondering,", + "start": 1399.34, + "end": 1399.62, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1399.72, + "end": 1399.84, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1399.84, + "end": 1399.98, + "probability": 1.0 + }, + { + "word": " need", + "start": 1399.98, + "end": 1400.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1400.14, + "end": 1400.28, + "probability": 1.0 + }, + { + "word": " use", + "start": 1400.28, + "end": 1400.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1400.5, + "end": 1400.68, + "probability": 0.99951171875 + }, + { + "word": " core", + "start": 1400.68, + "end": 1400.9, + "probability": 0.96240234375 + }, + { + "word": " unlocker", + "start": 1400.9, + "end": 1401.44, + "probability": 0.9521484375 + }, + { + "word": " feature", + "start": 1401.44, + "end": 1401.6, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 1401.6, + "end": 1401.84, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1401.84, + "end": 1401.96, + "probability": 0.99951171875 + }, + { + "word": " motherboard", + "start": 1401.96, + "end": 1402.22, + "probability": 0.9951171875 + } + ] + }, + { + "id": 781, + "text": "or are all six cores already unlocked with this processor?", + "start": 1402.22, + "end": 1404.66, + "words": [ + { + "word": " or", + "start": 1402.22, + "end": 1402.54, + "probability": 0.49365234375 + }, + { + "word": " are", + "start": 1402.54, + "end": 1402.7, + "probability": 0.97998046875 + }, + { + "word": " all", + "start": 1402.7, + "end": 1402.88, + "probability": 0.99951171875 + }, + { + "word": " six", + "start": 1402.88, + "end": 1403.1, + "probability": 0.96875 + }, + { + "word": " cores", + "start": 1403.1, + "end": 1403.4, + "probability": 0.99951171875 + }, + { + "word": " already", + "start": 1403.4, + "end": 1403.66, + "probability": 0.99951171875 + }, + { + "word": " unlocked", + "start": 1403.66, + "end": 1403.98, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1403.98, + "end": 1404.18, + "probability": 0.9775390625 + }, + { + "word": " this", + "start": 1404.18, + "end": 1404.32, + "probability": 1.0 + }, + { + "word": " processor?", + "start": 1404.32, + "end": 1404.66, + "probability": 1.0 + } + ] + }, + { + "id": 782, + "text": "What version of operating system is it?", + "start": 1405.0, + "end": 1406.6, + "words": [ + { + "word": " What", + "start": 1405.0, + "end": 1405.38, + "probability": 0.9990234375 + }, + { + "word": " version", + "start": 1405.38, + "end": 1405.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 1405.64, + "end": 1405.76, + "probability": 0.99609375 + }, + { + "word": " operating", + "start": 1405.76, + "end": 1406.0, + "probability": 0.91064453125 + }, + { + "word": " system", + "start": 1406.0, + "end": 1406.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 1406.34, + "end": 1406.5, + "probability": 1.0 + }, + { + "word": " it?", + "start": 1406.5, + "end": 1406.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 783, + "text": "XP7 Professional 64-bit.", + "start": 1407.26, + "end": 1408.96, + "words": [ + { + "word": " XP7", + "start": 1407.26, + "end": 1407.7, + "probability": 0.974609375 + }, + { + "word": " Professional", + "start": 1407.7, + "end": 1408.02, + "probability": 0.9208984375 + }, + { + "word": " 64", + "start": 1408.02, + "end": 1408.62, + "probability": 0.99609375 + }, + { + "word": "-bit.", + "start": 1408.62, + "end": 1408.96, + "probability": 0.9873046875 + } + ] + }, + { + "id": 784, + "text": "Hold on.", + "start": 1409.18, + "end": 1409.64, + "words": [ + { + "word": " Hold", + "start": 1409.18, + "end": 1409.54, + "probability": 0.9912109375 + }, + { + "word": " on.", + "start": 1409.54, + "end": 1409.64, + "probability": 1.0 + } + ] + }, + { + "id": 785, + "text": "You just listed two of them.", + "start": 1409.8, + "end": 1411.3, + "words": [ + { + "word": " You", + "start": 1409.8, + "end": 1410.24, + "probability": 0.99267578125 + }, + { + "word": " just", + "start": 1410.24, + "end": 1410.54, + "probability": 1.0 + }, + { + "word": " listed", + "start": 1410.54, + "end": 1410.9, + "probability": 1.0 + }, + { + "word": " two", + "start": 1410.9, + "end": 1411.06, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1411.06, + "end": 1411.2, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1411.2, + "end": 1411.3, + "probability": 1.0 + } + ] + }, + { + "id": 786, + "text": "Which one is it?", + "start": 1411.34, + "end": 1411.76, + "words": [ + { + "word": " Which", + "start": 1411.34, + "end": 1411.48, + "probability": 0.99609375 + }, + { + "word": " one", + "start": 1411.48, + "end": 1411.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 1411.58, + "end": 1411.74, + "probability": 1.0 + }, + { + "word": " it?", + "start": 1411.74, + "end": 1411.76, + "probability": 1.0 + } + ] + }, + { + "id": 787, + "text": "I'm sorry.", + "start": 1411.8, + "end": 1412.24, + "words": [ + { + "word": " I'm", + "start": 1411.8, + "end": 1412.04, + "probability": 0.86572265625 + }, + { + "word": " sorry.", + "start": 1412.04, + "end": 1412.24, + "probability": 1.0 + } + ] + }, + { + "id": 788, + "text": "Windows 7 64.", + "start": 1412.34, + "end": 1413.28, + "words": [ + { + "word": " Windows", + "start": 1412.34, + "end": 1412.5, + "probability": 0.953125 + }, + { + "word": " 7", + "start": 1412.5, + "end": 1412.76, + "probability": 0.9990234375 + }, + { + "word": " 64.", + "start": 1412.76, + "end": 1413.28, + "probability": 0.9619140625 + } + ] + }, + { + "id": 789, + "text": "You're fine.", + "start": 1414.22, + "end": 1414.82, + "words": [ + { + "word": " You're", + "start": 1414.22, + "end": 1414.66, + "probability": 0.97998046875 + }, + { + "word": " fine.", + "start": 1414.66, + "end": 1414.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 790, + "text": "All right.", + "start": 1415.0, + "end": 1415.56, + "words": [ + { + "word": " All", + "start": 1415.0, + "end": 1415.42, + "probability": 0.72509765625 + }, + { + "word": " right.", + "start": 1415.42, + "end": 1415.56, + "probability": 1.0 + } + ] + }, + { + "id": 791, + "text": "As long as your processors actually show up in the device manager.", + "start": 1415.82, + "end": 1420.54, + "words": [ + { + "word": " As", + "start": 1415.82, + "end": 1416.26, + "probability": 0.99560546875 + }, + { + "word": " long", + "start": 1416.26, + "end": 1416.7, + "probability": 1.0 + }, + { + "word": " as", + "start": 1416.7, + "end": 1416.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 1416.88, + "end": 1417.08, + "probability": 0.9990234375 + }, + { + "word": " processors", + "start": 1417.08, + "end": 1417.86, + "probability": 0.9990234375 + }, + { + "word": " actually", + "start": 1417.86, + "end": 1418.34, + "probability": 1.0 + }, + { + "word": " show", + "start": 1418.34, + "end": 1418.7, + "probability": 1.0 + }, + { + "word": " up", + "start": 1418.7, + "end": 1419.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 1419.04, + "end": 1419.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1419.38, + "end": 1419.68, + "probability": 1.0 + }, + { + "word": " device", + "start": 1419.68, + "end": 1420.12, + "probability": 0.99560546875 + }, + { + "word": " manager.", + "start": 1420.12, + "end": 1420.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 792, + "text": "Yeah, it did.", + "start": 1420.84, + "end": 1421.48, + "words": [ + { + "word": " Yeah,", + "start": 1420.84, + "end": 1421.14, + "probability": 0.99365234375 + }, + { + "word": " it", + "start": 1421.14, + "end": 1421.3, + "probability": 1.0 + }, + { + "word": " did.", + "start": 1421.3, + "end": 1421.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 793, + "text": "It said it was a six core.", + "start": 1421.54, + "end": 1422.44, + "words": [ + { + "word": " It", + "start": 1421.54, + "end": 1421.64, + "probability": 0.998046875 + }, + { + "word": " said", + "start": 1421.64, + "end": 1421.78, + "probability": 1.0 + }, + { + "word": " it", + "start": 1421.78, + "end": 1421.88, + "probability": 1.0 + }, + { + "word": " was", + "start": 1421.88, + "end": 1421.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 1421.98, + "end": 1422.08, + "probability": 0.99951171875 + }, + { + "word": " six", + "start": 1422.08, + "end": 1422.22, + "probability": 0.935546875 + }, + { + "word": " core.", + "start": 1422.22, + "end": 1422.44, + "probability": 0.67822265625 + } + ] + }, + { + "id": 794, + "text": "You're fine.", + "start": 1422.82, + "end": 1423.44, + "words": [ + { + "word": " You're", + "start": 1422.82, + "end": 1423.26, + "probability": 0.771484375 + }, + { + "word": " fine.", + "start": 1423.26, + "end": 1423.44, + "probability": 1.0 + } + ] + }, + { + "id": 795, + "text": "Then you're fine.", + "start": 1423.56, + "end": 1424.0, + "words": [ + { + "word": " Then", + "start": 1423.56, + "end": 1423.66, + "probability": 0.87353515625 + }, + { + "word": " you're", + "start": 1423.66, + "end": 1423.82, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 1423.82, + "end": 1424.0, + "probability": 1.0 + } + ] + }, + { + "id": 796, + "text": "Perfect.", + "start": 1424.54, + "end": 1424.98, + "words": [ + { + "word": " Perfect.", + "start": 1424.54, + "end": 1424.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 797, + "text": "Perfect.", + "start": 1425.44, + "end": 1425.74, + "words": [ + { + "word": " Perfect.", + "start": 1425.44, + "end": 1425.74, + "probability": 0.177001953125 + } + ] + }, + { + "id": 798, + "text": "You'll have to worry about that.", + "start": 1426.14, + "end": 1426.82, + "words": [ + { + "word": " You'll", + "start": 1426.14, + "end": 1426.28, + "probability": 0.7822265625 + }, + { + "word": " have", + "start": 1426.28, + "end": 1426.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1426.4, + "end": 1426.42, + "probability": 0.99951171875 + }, + { + "word": " worry", + "start": 1426.42, + "end": 1426.6, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 1426.6, + "end": 1426.8, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 1426.8, + "end": 1426.82, + "probability": 0.96875 + } + ] + }, + { + "id": 799, + "text": "I think you need to know the answer.", + "start": 1426.82, + "end": 1427.24, + "words": [ + { + "word": " I", + "start": 1426.82, + "end": 1426.84, + "probability": 0.56005859375 + }, + { + "word": " think", + "start": 1426.84, + "end": 1426.84, + "probability": 0.296142578125 + }, + { + "word": " you", + "start": 1426.84, + "end": 1426.84, + "probability": 0.179931640625 + }, + { + "word": " need", + "start": 1426.84, + "end": 1426.84, + "probability": 0.87109375 + }, + { + "word": " to", + "start": 1426.84, + "end": 1426.84, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 1426.84, + "end": 1426.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1426.84, + "end": 1426.96, + "probability": 0.99951171875 + }, + { + "word": " answer.", + "start": 1426.96, + "end": 1427.24, + "probability": 1.0 + } + ] + }, + { + "id": 800, + "text": "I was just kind of worried about it.", + "start": 1427.4, + "end": 1428.78, + "words": [ + { + "word": " I", + "start": 1427.4, + "end": 1427.52, + "probability": 0.1998291015625 + }, + { + "word": " was", + "start": 1427.52, + "end": 1427.88, + "probability": 0.8857421875 + }, + { + "word": " just", + "start": 1427.88, + "end": 1427.98, + "probability": 0.9951171875 + }, + { + "word": " kind", + "start": 1427.98, + "end": 1428.14, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1428.14, + "end": 1428.24, + "probability": 1.0 + }, + { + "word": " worried", + "start": 1428.24, + "end": 1428.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 1428.4, + "end": 1428.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1428.6, + "end": 1428.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 801, + "text": "Well, it's six cores.", + "start": 1429.52, + "end": 1430.6, + "words": [ + { + "word": " Well,", + "start": 1429.52, + "end": 1429.8, + "probability": 0.53955078125 + }, + { + "word": " it's", + "start": 1429.8, + "end": 1430.18, + "probability": 0.7041015625 + }, + { + "word": " six", + "start": 1430.18, + "end": 1430.34, + "probability": 0.83984375 + }, + { + "word": " cores.", + "start": 1430.34, + "end": 1430.6, + "probability": 0.92919921875 + } + ] + }, + { + "id": 802, + "text": "You got to make sure they're all going.", + "start": 1430.68, + "end": 1431.64, + "words": [ + { + "word": " You", + "start": 1430.68, + "end": 1430.78, + "probability": 1.0 + }, + { + "word": " got", + "start": 1430.78, + "end": 1430.88, + "probability": 0.09637451171875 + }, + { + "word": " to", + "start": 1430.88, + "end": 1430.94, + "probability": 1.0 + }, + { + "word": " make", + "start": 1430.94, + "end": 1431.04, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1431.04, + "end": 1431.18, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1431.18, + "end": 1431.34, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1431.34, + "end": 1431.42, + "probability": 1.0 + }, + { + "word": " going.", + "start": 1431.42, + "end": 1431.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 803, + "text": "Absolutely.", + "start": 1431.8, + "end": 1432.12, + "words": [ + { + "word": " Absolutely.", + "start": 1431.8, + "end": 1432.12, + "probability": 0.4208984375 + } + ] + }, + { + "id": 804, + "text": "Yeah, exactly.", + "start": 1432.24, + "end": 1432.64, + "words": [ + { + "word": " Yeah,", + "start": 1432.24, + "end": 1432.64, + "probability": 0.78759765625 + }, + { + "word": " exactly.", + "start": 1432.64, + "end": 1432.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 805, + "text": "Why get it if I can't use them?", + "start": 1432.76, + "end": 1433.88, + "words": [ + { + "word": " Why", + "start": 1432.76, + "end": 1432.86, + "probability": 0.9716796875 + }, + { + "word": " get", + "start": 1432.86, + "end": 1433.02, + "probability": 0.96142578125 + }, + { + "word": " it", + "start": 1433.02, + "end": 1433.18, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1433.18, + "end": 1433.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 1433.28, + "end": 1433.38, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1433.38, + "end": 1433.56, + "probability": 1.0 + }, + { + "word": " use", + "start": 1433.56, + "end": 1433.7, + "probability": 0.9765625 + }, + { + "word": " them?", + "start": 1433.7, + "end": 1433.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 806, + "text": "Exactly.", + "start": 1433.92, + "end": 1434.32, + "words": [ + { + "word": " Exactly.", + "start": 1433.92, + "end": 1434.32, + "probability": 0.98876953125 + } + ] + }, + { + "id": 807, + "text": "That's right.", + "start": 1434.54, + "end": 1435.06, + "words": [ + { + "word": " That's", + "start": 1434.54, + "end": 1434.94, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 1434.94, + "end": 1435.06, + "probability": 1.0 + } + ] + }, + { + "id": 808, + "text": "So what made you choose the AMD just because we were having this processor debate earlier?", + "start": 1435.14, + "end": 1440.66, + "words": [ + { + "word": " So", + "start": 1435.14, + "end": 1435.26, + "probability": 0.93896484375 + }, + { + "word": " what", + "start": 1435.26, + "end": 1435.96, + "probability": 0.70703125 + }, + { + "word": " made", + "start": 1435.96, + "end": 1436.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 1436.94, + "end": 1437.16, + "probability": 1.0 + }, + { + "word": " choose", + "start": 1437.16, + "end": 1437.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 1437.44, + "end": 1437.56, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1437.56, + "end": 1437.84, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1437.84, + "end": 1438.22, + "probability": 0.461669921875 + }, + { + "word": " because", + "start": 1438.22, + "end": 1438.4, + "probability": 1.0 + }, + { + "word": " we", + "start": 1438.4, + "end": 1438.7, + "probability": 1.0 + }, + { + "word": " were", + "start": 1438.7, + "end": 1438.8, + "probability": 1.0 + }, + { + "word": " having", + "start": 1438.8, + "end": 1438.98, + "probability": 1.0 + }, + { + "word": " this", + "start": 1438.98, + "end": 1439.3, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1439.3, + "end": 1440.06, + "probability": 1.0 + }, + { + "word": " debate", + "start": 1440.06, + "end": 1440.38, + "probability": 1.0 + }, + { + "word": " earlier?", + "start": 1440.38, + "end": 1440.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 809, + "text": "It's more the price point, really.", + "start": 1441.64, + "end": 1443.44, + "words": [ + { + "word": " It's", + "start": 1441.64, + "end": 1442.04, + "probability": 1.0 + }, + { + "word": " more", + "start": 1442.04, + "end": 1442.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1442.18, + "end": 1442.38, + "probability": 0.99658203125 + }, + { + "word": " price", + "start": 1442.38, + "end": 1442.68, + "probability": 1.0 + }, + { + "word": " point,", + "start": 1442.68, + "end": 1442.94, + "probability": 1.0 + }, + { + "word": " really.", + "start": 1443.12, + "end": 1443.44, + "probability": 1.0 + } + ] + }, + { + "id": 810, + "text": "The six core intels right now, I mean, I really like the Sandy Bridge stuff, but it's just", + "start": 1443.84, + "end": 1449.8, + "words": [ + { + "word": " The", + "start": 1443.84, + "end": 1444.24, + "probability": 0.9970703125 + }, + { + "word": " six", + "start": 1444.24, + "end": 1444.58, + "probability": 0.99609375 + }, + { + "word": " core", + "start": 1444.58, + "end": 1444.86, + "probability": 0.32421875 + }, + { + "word": " intels", + "start": 1444.86, + "end": 1445.32, + "probability": 0.7724609375 + }, + { + "word": " right", + "start": 1445.32, + "end": 1445.58, + "probability": 1.0 + }, + { + "word": " now,", + "start": 1445.58, + "end": 1445.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 1446.02, + "end": 1446.16, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1446.16, + "end": 1446.36, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1446.38, + "end": 1446.58, + "probability": 1.0 + }, + { + "word": " really", + "start": 1446.58, + "end": 1446.8, + "probability": 1.0 + }, + { + "word": " like", + "start": 1446.8, + "end": 1447.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 1447.04, + "end": 1447.14, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 1447.14, + "end": 1447.4, + "probability": 0.9814453125 + }, + { + "word": " Bridge", + "start": 1447.4, + "end": 1447.58, + "probability": 0.9736328125 + }, + { + "word": " stuff,", + "start": 1447.58, + "end": 1447.94, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 1448.14, + "end": 1448.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1448.64, + "end": 1449.56, + "probability": 0.9921875 + }, + { + "word": " just", + "start": 1449.56, + "end": 1449.8, + "probability": 0.99853515625 + } + ] + }, + { + "id": 811, + "text": "I can get a 3.3 gigahertz six core for 200 bucks.", + "start": 1449.8, + "end": 1454.14, + "words": [ + { + "word": " I", + "start": 1449.8, + "end": 1450.38, + "probability": 0.802734375 + }, + { + "word": " can", + "start": 1450.38, + "end": 1450.62, + "probability": 1.0 + }, + { + "word": " get", + "start": 1450.62, + "end": 1450.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 1450.96, + "end": 1451.1, + "probability": 0.80810546875 + }, + { + "word": " 3", + "start": 1451.1, + "end": 1451.86, + "probability": 0.9560546875 + }, + { + "word": ".3", + "start": 1451.86, + "end": 1452.32, + "probability": 1.0 + }, + { + "word": " gigahertz", + "start": 1452.32, + "end": 1452.72, + "probability": 0.9912109375 + }, + { + "word": " six", + "start": 1452.72, + "end": 1453.0, + "probability": 0.9970703125 + }, + { + "word": " core", + "start": 1453.0, + "end": 1453.24, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1453.24, + "end": 1453.42, + "probability": 1.0 + }, + { + "word": " 200", + "start": 1453.42, + "end": 1453.68, + "probability": 0.307373046875 + }, + { + "word": " bucks.", + "start": 1453.68, + "end": 1454.14, + "probability": 1.0 + } + ] + }, + { + "id": 812, + "text": "Right.", + "start": 1454.26, + "end": 1454.48, + "words": [ + { + "word": " Right.", + "start": 1454.26, + "end": 1454.48, + "probability": 0.9775390625 + } + ] + }, + { + "id": 813, + "text": "Yeah.", + "start": 1454.52, + "end": 1454.7, + "words": [ + { + "word": " Yeah.", + "start": 1454.52, + "end": 1454.7, + "probability": 0.8818359375 + } + ] + }, + { + "id": 814, + "text": "The intels are much more expensive.", + "start": 1454.7, + "end": 1456.24, + "words": [ + { + "word": " The", + "start": 1454.7, + "end": 1454.78, + "probability": 0.024688720703125 + }, + { + "word": " intels", + "start": 1454.78, + "end": 1455.14, + "probability": 0.53564453125 + }, + { + "word": " are", + "start": 1455.14, + "end": 1455.3, + "probability": 0.994140625 + }, + { + "word": " much", + "start": 1455.3, + "end": 1455.66, + "probability": 0.98681640625 + }, + { + "word": " more", + "start": 1455.66, + "end": 1455.88, + "probability": 0.9990234375 + }, + { + "word": " expensive.", + "start": 1455.88, + "end": 1456.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 815, + "text": "Yeah, but the boards are more expensive on the AMD side.", + "start": 1456.42, + "end": 1458.34, + "words": [ + { + "word": " Yeah,", + "start": 1456.42, + "end": 1456.64, + "probability": 0.56103515625 + }, + { + "word": " but", + "start": 1456.7, + "end": 1456.76, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1456.76, + "end": 1456.88, + "probability": 0.99951171875 + }, + { + "word": " boards", + "start": 1456.88, + "end": 1457.08, + "probability": 0.9892578125 + }, + { + "word": " are", + "start": 1457.08, + "end": 1457.18, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 1457.18, + "end": 1457.3, + "probability": 0.994140625 + }, + { + "word": " expensive", + "start": 1457.3, + "end": 1457.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 1457.56, + "end": 1457.76, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1457.76, + "end": 1457.86, + "probability": 0.99951171875 + }, + { + "word": " AMD", + "start": 1457.86, + "end": 1458.08, + "probability": 0.9990234375 + }, + { + "word": " side.", + "start": 1458.08, + "end": 1458.34, + "probability": 0.986328125 + } + ] + }, + { + "id": 816, + "text": "This is true.", + "start": 1458.38, + "end": 1458.66, + "words": [ + { + "word": " This", + "start": 1458.38, + "end": 1458.46, + "probability": 0.97900390625 + }, + { + "word": " is", + "start": 1458.46, + "end": 1458.46, + "probability": 1.0 + }, + { + "word": " true.", + "start": 1458.46, + "end": 1458.66, + "probability": 1.0 + } + ] + }, + { + "id": 817, + "text": "Yeah, but I mean, it's not that much more expensive.", + "start": 1459.3000000000002, + "end": 1461.58, + "words": [ + { + "word": " Yeah,", + "start": 1459.3000000000002, + "end": 1459.66, + "probability": 0.98828125 + }, + { + "word": " but", + "start": 1459.72, + "end": 1459.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1459.86, + "end": 1460.02, + "probability": 0.486083984375 + }, + { + "word": " mean,", + "start": 1460.02, + "end": 1460.16, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1460.18, + "end": 1460.36, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 1460.36, + "end": 1460.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 1460.52, + "end": 1460.84, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 1460.84, + "end": 1461.12, + "probability": 1.0 + }, + { + "word": " more", + "start": 1461.12, + "end": 1461.32, + "probability": 1.0 + }, + { + "word": " expensive.", + "start": 1461.32, + "end": 1461.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 818, + "text": "It's not the difference between the AMD processor and the intel as compared to the boards.", + "start": 1461.58, + "end": 1466.12, + "words": [ + { + "word": " It's", + "start": 1461.58, + "end": 1461.82, + "probability": 0.990234375 + }, + { + "word": " not", + "start": 1461.82, + "end": 1461.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1461.9, + "end": 1462.06, + "probability": 0.99462890625 + }, + { + "word": " difference", + "start": 1462.06, + "end": 1462.42, + "probability": 1.0 + }, + { + "word": " between", + "start": 1462.42, + "end": 1462.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1462.8, + "end": 1463.02, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1463.02, + "end": 1463.32, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1463.32, + "end": 1463.78, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1463.78, + "end": 1464.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1464.26, + "end": 1464.36, + "probability": 1.0 + }, + { + "word": " intel", + "start": 1464.36, + "end": 1464.72, + "probability": 0.418212890625 + }, + { + "word": " as", + "start": 1464.72, + "end": 1465.2, + "probability": 0.90673828125 + }, + { + "word": " compared", + "start": 1465.2, + "end": 1465.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1465.56, + "end": 1465.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1465.74, + "end": 1465.82, + "probability": 1.0 + }, + { + "word": " boards.", + "start": 1465.82, + "end": 1466.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 819, + "text": "And being a college student, I can't exactly be going out and getting top of the line all", + "start": 1466.16, + "end": 1470.28, + "words": [ + { + "word": " And", + "start": 1466.16, + "end": 1466.36, + "probability": 0.85107421875 + }, + { + "word": " being", + "start": 1466.36, + "end": 1467.02, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1467.02, + "end": 1467.16, + "probability": 1.0 + }, + { + "word": " college", + "start": 1467.16, + "end": 1467.38, + "probability": 1.0 + }, + { + "word": " student,", + "start": 1467.38, + "end": 1467.62, + "probability": 1.0 + }, + { + "word": " I", + "start": 1467.7, + "end": 1467.8, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 1467.8, + "end": 1467.98, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 1467.98, + "end": 1468.36, + "probability": 1.0 + }, + { + "word": " be", + "start": 1468.36, + "end": 1468.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 1468.92, + "end": 1469.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 1469.1, + "end": 1469.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 1469.3, + "end": 1469.38, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1469.38, + "end": 1469.52, + "probability": 0.99658203125 + }, + { + "word": " top", + "start": 1469.52, + "end": 1469.74, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1469.74, + "end": 1469.88, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 1469.88, + "end": 1469.92, + "probability": 1.0 + }, + { + "word": " line", + "start": 1469.92, + "end": 1470.16, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1470.16, + "end": 1470.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 820, + "text": "the time.", + "start": 1470.28, + "end": 1470.58, + "words": [ + { + "word": " the", + "start": 1470.28, + "end": 1470.4, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1470.4, + "end": 1470.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 821, + "text": "Right.", + "start": 1471.2800000000002, + "end": 1471.64, + "words": [ + { + "word": " Right.", + "start": 1471.2800000000002, + "end": 1471.64, + "probability": 0.98974609375 + } + ] + }, + { + "id": 822, + "text": "No bleeding edge for you?", + "start": 1471.68, + "end": 1472.56, + "words": [ + { + "word": " No", + "start": 1471.68, + "end": 1471.8, + "probability": 0.99658203125 + }, + { + "word": " bleeding", + "start": 1471.8, + "end": 1472.06, + "probability": 0.9990234375 + }, + { + "word": " edge", + "start": 1472.06, + "end": 1472.3, + "probability": 0.9814453125 + }, + { + "word": " for", + "start": 1472.3, + "end": 1472.44, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1472.44, + "end": 1472.56, + "probability": 1.0 + } + ] + }, + { + "id": 823, + "text": "Yeah.", + "start": 1472.84, + "end": 1473.2, + "words": [ + { + "word": " Yeah.", + "start": 1472.84, + "end": 1473.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 824, + "text": "Okay.", + "start": 1473.5800000000002, + "end": 1473.94, + "words": [ + { + "word": " Okay.", + "start": 1473.5800000000002, + "end": 1473.94, + "probability": 0.94189453125 + } + ] + }, + { + "id": 825, + "text": "All right.", + "start": 1474.3000000000002, + "end": 1474.82, + "words": [ + { + "word": " All", + "start": 1474.3000000000002, + "end": 1474.66, + "probability": 0.9814453125 + }, + { + "word": " right.", + "start": 1474.66, + "end": 1474.82, + "probability": 1.0 + } + ] + }, + { + "id": 826, + "text": "Well, great.", + "start": 1474.84, + "end": 1475.18, + "words": [ + { + "word": " Well,", + "start": 1474.84, + "end": 1474.94, + "probability": 0.9990234375 + }, + { + "word": " great.", + "start": 1475.0, + "end": 1475.18, + "probability": 1.0 + } + ] + }, + { + "id": 827, + "text": "I'm glad we answered your question.", + "start": 1475.36, + "end": 1476.76, + "words": [ + { + "word": " I'm", + "start": 1475.36, + "end": 1475.72, + "probability": 0.99853515625 + }, + { + "word": " glad", + "start": 1475.72, + "end": 1476.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 1476.08, + "end": 1476.22, + "probability": 1.0 + }, + { + "word": " answered", + "start": 1476.22, + "end": 1476.38, + "probability": 1.0 + }, + { + "word": " your", + "start": 1476.38, + "end": 1476.52, + "probability": 1.0 + }, + { + "word": " question.", + "start": 1476.52, + "end": 1476.76, + "probability": 1.0 + } + ] + }, + { + "id": 828, + "text": "Yeah, I appreciate it.", + "start": 1476.92, + "end": 1477.92, + "words": [ + { + "word": " Yeah,", + "start": 1476.92, + "end": 1477.22, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1477.26, + "end": 1477.32, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 1477.32, + "end": 1477.64, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1477.64, + "end": 1477.92, + "probability": 1.0 + } + ] + }, + { + "id": 829, + "text": "Have a nice day.", + "start": 1477.96, + "end": 1478.36, + "words": [ + { + "word": " Have", + "start": 1477.96, + "end": 1478.14, + "probability": 0.468017578125 + }, + { + "word": " a", + "start": 1478.14, + "end": 1478.18, + "probability": 0.95556640625 + }, + { + "word": " nice", + "start": 1478.18, + "end": 1478.34, + "probability": 0.99755859375 + }, + { + "word": " day.", + "start": 1478.34, + "end": 1478.36, + "probability": 0.99365234375 + } + ] + }, + { + "id": 830, + "text": "That's a perfect example of what you were just saying, though.", + "start": 1478.5, + "end": 1480.68, + "words": [ + { + "word": " That's", + "start": 1478.5, + "end": 1478.86, + "probability": 0.8115234375 + }, + { + "word": " a", + "start": 1478.86, + "end": 1478.9, + "probability": 1.0 + }, + { + "word": " perfect", + "start": 1478.9, + "end": 1479.08, + "probability": 0.9990234375 + }, + { + "word": " example", + "start": 1479.08, + "end": 1479.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 1479.58, + "end": 1479.76, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1479.76, + "end": 1479.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 1479.96, + "end": 1480.06, + "probability": 1.0 + }, + { + "word": " were", + "start": 1480.06, + "end": 1480.14, + "probability": 0.994140625 + }, + { + "word": " just", + "start": 1480.14, + "end": 1480.24, + "probability": 0.984375 + }, + { + "word": " saying,", + "start": 1480.24, + "end": 1480.48, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1480.5, + "end": 1480.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 831, + "text": "You know, why this whole Sandy Bridge fusion thing was not really going to matter.", + "start": 1480.78, + "end": 1484.68, + "words": [ + { + "word": " You", + "start": 1480.78, + "end": 1480.96, + "probability": 0.463134765625 + }, + { + "word": " know,", + "start": 1480.96, + "end": 1481.1, + "probability": 1.0 + }, + { + "word": " why", + "start": 1481.1, + "end": 1481.3, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1481.3, + "end": 1481.92, + "probability": 0.9990234375 + }, + { + "word": " whole", + "start": 1481.92, + "end": 1482.1, + "probability": 1.0 + }, + { + "word": " Sandy", + "start": 1482.1, + "end": 1482.38, + "probability": 0.91064453125 + }, + { + "word": " Bridge", + "start": 1482.38, + "end": 1482.68, + "probability": 0.4287109375 + }, + { + "word": " fusion", + "start": 1482.68, + "end": 1483.28, + "probability": 0.84375 + }, + { + "word": " thing", + "start": 1483.28, + "end": 1483.64, + "probability": 1.0 + }, + { + "word": " was", + "start": 1483.64, + "end": 1483.88, + "probability": 0.67041015625 + }, + { + "word": " not", + "start": 1483.88, + "end": 1484.02, + "probability": 1.0 + }, + { + "word": " really", + "start": 1484.02, + "end": 1484.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 1484.26, + "end": 1484.4, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 1484.4, + "end": 1484.5, + "probability": 0.99951171875 + }, + { + "word": " matter.", + "start": 1484.5, + "end": 1484.68, + "probability": 0.76416015625 + } + ] + }, + { + "id": 832, + "text": "Because it is really, the bottom line, it's about price point.", + "start": 1484.7, + "end": 1487.84, + "words": [ + { + "word": " Because", + "start": 1484.7, + "end": 1484.9, + "probability": 0.3818359375 + }, + { + "word": " it", + "start": 1484.9, + "end": 1485.1, + "probability": 0.7607421875 + }, + { + "word": " is", + "start": 1485.1, + "end": 1485.3, + "probability": 0.94677734375 + }, + { + "word": " really,", + "start": 1485.3, + "end": 1486.16, + "probability": 0.57421875 + }, + { + "word": " the", + "start": 1486.4, + "end": 1486.52, + "probability": 0.841796875 + }, + { + "word": " bottom", + "start": 1486.52, + "end": 1486.72, + "probability": 1.0 + }, + { + "word": " line,", + "start": 1486.72, + "end": 1486.9, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1487.0, + "end": 1487.06, + "probability": 0.96923828125 + }, + { + "word": " about", + "start": 1487.06, + "end": 1487.14, + "probability": 0.99951171875 + }, + { + "word": " price", + "start": 1487.14, + "end": 1487.6, + "probability": 0.984375 + }, + { + "word": " point.", + "start": 1487.6, + "end": 1487.84, + "probability": 0.95556640625 + } + ] + }, + { + "id": 833, + "text": "Well, you know what they say.", + "start": 1488.04, + "end": 1488.74, + "words": [ + { + "word": " Well,", + "start": 1488.04, + "end": 1488.2, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1488.22, + "end": 1488.32, + "probability": 1.0 + }, + { + "word": " know", + "start": 1488.32, + "end": 1488.4, + "probability": 1.0 + }, + { + "word": " what", + "start": 1488.4, + "end": 1488.48, + "probability": 1.0 + }, + { + "word": " they", + "start": 1488.48, + "end": 1488.6, + "probability": 1.0 + }, + { + "word": " say.", + "start": 1488.6, + "end": 1488.74, + "probability": 1.0 + } + ] + }, + { + "id": 834, + "text": "It's all about money.", + "start": 1488.9, + "end": 1489.7, + "words": [ + { + "word": " It's", + "start": 1488.9, + "end": 1489.22, + "probability": 0.96484375 + }, + { + "word": " all", + "start": 1489.22, + "end": 1489.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 1489.26, + "end": 1489.46, + "probability": 1.0 + }, + { + "word": " money.", + "start": 1489.46, + "end": 1489.7, + "probability": 1.0 + } + ] + }, + { + "id": 835, + "text": "Right.", + "start": 1489.84, + "end": 1490.04, + "words": [ + { + "word": " Right.", + "start": 1489.84, + "end": 1490.04, + "probability": 0.54443359375 + } + ] + }, + { + "id": 836, + "text": "Everything that you do in America is about money.", + "start": 1490.32, + "end": 1493.9, + "words": [ + { + "word": " Everything", + "start": 1490.32, + "end": 1490.64, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1490.64, + "end": 1490.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 1490.78, + "end": 1491.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 1491.8, + "end": 1492.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 1492.06, + "end": 1492.42, + "probability": 1.0 + }, + { + "word": " America", + "start": 1492.42, + "end": 1493.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 1493.16, + "end": 1493.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 1493.4, + "end": 1493.56, + "probability": 1.0 + }, + { + "word": " money.", + "start": 1493.56, + "end": 1493.9, + "probability": 1.0 + } + ] + }, + { + "id": 837, + "text": "Yeah.", + "start": 1494.06, + "end": 1494.22, + "words": [ + { + "word": " Yeah.", + "start": 1494.06, + "end": 1494.22, + "probability": 0.587890625 + } + ] + }, + { + "id": 838, + "text": "All right.", + "start": 1494.34, + "end": 1494.74, + "words": [ + { + "word": " All", + "start": 1494.34, + "end": 1494.66, + "probability": 0.916015625 + }, + { + "word": " right.", + "start": 1494.66, + "end": 1494.74, + "probability": 1.0 + } + ] + }, + { + "id": 839, + "text": "So it's even those guys that are attacking the apples, which we're still going to get", + "start": 1494.78, + "end": 1499.78, + "words": [ + { + "word": " So", + "start": 1494.78, + "end": 1494.96, + "probability": 0.9931640625 + }, + { + "word": " it's", + "start": 1494.96, + "end": 1495.48, + "probability": 0.89306640625 + }, + { + "word": " even", + "start": 1495.48, + "end": 1495.96, + "probability": 0.99853515625 + }, + { + "word": " those", + "start": 1495.96, + "end": 1496.18, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1496.18, + "end": 1496.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 1496.52, + "end": 1496.72, + "probability": 1.0 + }, + { + "word": " are", + "start": 1496.72, + "end": 1496.8, + "probability": 1.0 + }, + { + "word": " attacking", + "start": 1496.8, + "end": 1497.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1497.12, + "end": 1497.26, + "probability": 0.99755859375 + }, + { + "word": " apples,", + "start": 1497.26, + "end": 1497.52, + "probability": 0.95361328125 + }, + { + "word": " which", + "start": 1497.7, + "end": 1498.94, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1498.94, + "end": 1499.3, + "probability": 1.0 + }, + { + "word": " still", + "start": 1499.3, + "end": 1499.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 1499.36, + "end": 1499.54, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1499.54, + "end": 1499.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 1499.68, + "end": 1499.78, + "probability": 1.0 + } + ] + }, + { + "id": 840, + "text": "to.", + "start": 1499.78, + "end": 1499.92, + "words": [ + { + "word": " to.", + "start": 1499.78, + "end": 1499.92, + "probability": 1.0 + } + ] + }, + { + "id": 841, + "text": "We're going to grab one more call here.", + "start": 1499.94, + "end": 1501.32, + "words": [ + { + "word": " We're", + "start": 1499.94, + "end": 1500.1, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 1500.1, + "end": 1500.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1500.14, + "end": 1500.24, + "probability": 1.0 + }, + { + "word": " grab", + "start": 1500.24, + "end": 1500.38, + "probability": 1.0 + }, + { + "word": " one", + "start": 1500.38, + "end": 1500.52, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 1500.52, + "end": 1500.66, + "probability": 1.0 + }, + { + "word": " call", + "start": 1500.66, + "end": 1501.16, + "probability": 0.98583984375 + }, + { + "word": " here.", + "start": 1501.16, + "end": 1501.32, + "probability": 1.0 + } + ] + }, + { + "id": 842, + "text": "Let's talk to Eric.", + "start": 1501.34, + "end": 1501.84, + "words": [ + { + "word": " Let's", + "start": 1501.34, + "end": 1501.48, + "probability": 0.99853515625 + }, + { + "word": " talk", + "start": 1501.48, + "end": 1501.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1501.56, + "end": 1501.68, + "probability": 1.0 + }, + { + "word": " Eric.", + "start": 1501.68, + "end": 1501.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 843, + "text": "Hey, Eric.", + "start": 1501.9, + "end": 1502.24, + "words": [ + { + "word": " Hey,", + "start": 1501.9, + "end": 1502.04, + "probability": 0.99609375 + }, + { + "word": " Eric.", + "start": 1502.06, + "end": 1502.24, + "probability": 1.0 + } + ] + }, + { + "id": 844, + "text": "How you doing?", + "start": 1502.26, + "end": 1502.56, + "words": [ + { + "word": " How", + "start": 1502.26, + "end": 1502.4, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1502.4, + "end": 1502.44, + "probability": 0.50390625 + }, + { + "word": " doing?", + "start": 1502.44, + "end": 1502.56, + "probability": 1.0 + } + ] + }, + { + "id": 845, + "text": "Hey, doing good.", + "start": 1503.02, + "end": 1503.78, + "words": [ + { + "word": " Hey,", + "start": 1503.02, + "end": 1503.34, + "probability": 0.99853515625 + }, + { + "word": " doing", + "start": 1503.34, + "end": 1503.48, + "probability": 0.9931640625 + }, + { + "word": " good.", + "start": 1503.48, + "end": 1503.78, + "probability": 1.0 + } + ] + }, + { + "id": 846, + "text": "How you doing, man?", + "start": 1503.86, + "end": 1504.46, + "words": [ + { + "word": " How", + "start": 1503.86, + "end": 1504.0, + "probability": 0.8125 + }, + { + "word": " you", + "start": 1504.0, + "end": 1504.12, + "probability": 0.921875 + }, + { + "word": " doing,", + "start": 1504.12, + "end": 1504.28, + "probability": 1.0 + }, + { + "word": " man?", + "start": 1504.36, + "end": 1504.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 847, + "text": "Good.", + "start": 1504.56, + "end": 1504.88, + "words": [ + { + "word": " Good.", + "start": 1504.56, + "end": 1504.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 848, + "text": "Hey, you said about the wire?", + "start": 1505.8200000000002, + "end": 1507.48, + "words": [ + { + "word": " Hey,", + "start": 1505.8200000000002, + "end": 1506.14, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1506.14, + "end": 1506.46, + "probability": 0.99951171875 + }, + { + "word": " said", + "start": 1506.46, + "end": 1506.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 1506.7, + "end": 1507.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1507.02, + "end": 1507.28, + "probability": 0.81494140625 + }, + { + "word": " wire?", + "start": 1507.28, + "end": 1507.48, + "probability": 0.87890625 + } + ] + }, + { + "id": 849, + "text": "Yeah.", + "start": 1507.66, + "end": 1507.94, + "words": [ + { + "word": " Yeah.", + "start": 1507.66, + "end": 1507.94, + "probability": 0.9951171875 + } + ] + }, + { + "id": 850, + "text": "It's Baltimore.", + "start": 1508.0, + "end": 1508.94, + "words": [ + { + "word": " It's", + "start": 1508.0, + "end": 1508.32, + "probability": 0.9990234375 + }, + { + "word": " Baltimore.", + "start": 1508.32, + "end": 1508.94, + "probability": 0.986328125 + } + ] + }, + { + "id": 851, + "text": "Oh, it's Baltimore.", + "start": 1509.48, + "end": 1510.02, + "words": [ + { + "word": " Oh,", + "start": 1509.48, + "end": 1509.8, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 1509.8, + "end": 1509.9, + "probability": 0.9853515625 + }, + { + "word": " Baltimore.", + "start": 1509.9, + "end": 1510.02, + "probability": 0.787109375 + } + ] + }, + { + "id": 852, + "text": "Yeah.", + "start": 1510.32, + "end": 1510.54, + "words": [ + { + "word": " Yeah.", + "start": 1510.32, + "end": 1510.54, + "probability": 0.9951171875 + } + ] + }, + { + "id": 853, + "text": "Okay.", + "start": 1510.6, + "end": 1510.78, + "words": [ + { + "word": " Okay.", + "start": 1510.6, + "end": 1510.78, + "probability": 0.9560546875 + } + ] + }, + { + "id": 854, + "text": "I'm sorry.", + "start": 1510.84, + "end": 1511.14, + "words": [ + { + "word": " I'm", + "start": 1510.84, + "end": 1511.0, + "probability": 0.99609375 + }, + { + "word": " sorry.", + "start": 1511.0, + "end": 1511.14, + "probability": 1.0 + } + ] + }, + { + "id": 855, + "text": "Yeah.", + "start": 1511.28, + "end": 1511.42, + "words": [ + { + "word": " Yeah.", + "start": 1511.28, + "end": 1511.42, + "probability": 0.83740234375 + } + ] + }, + { + "id": 856, + "text": "Yeah.", + "start": 1511.44, + "end": 1511.68, + "words": [ + { + "word": " Yeah.", + "start": 1511.44, + "end": 1511.68, + "probability": 0.276611328125 + } + ] + }, + { + "id": 857, + "text": "Greatest show ever, by the way.", + "start": 1511.86, + "end": 1513.22, + "words": [ + { + "word": " Greatest", + "start": 1511.86, + "end": 1512.18, + "probability": 0.97705078125 + }, + { + "word": " show", + "start": 1512.18, + "end": 1512.32, + "probability": 0.9990234375 + }, + { + "word": " ever,", + "start": 1512.32, + "end": 1512.64, + "probability": 1.0 + }, + { + "word": " by", + "start": 1512.76, + "end": 1512.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1512.92, + "end": 1513.08, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1513.08, + "end": 1513.22, + "probability": 1.0 + } + ] + }, + { + "id": 858, + "text": "Really?", + "start": 1513.36, + "end": 1513.68, + "words": [ + { + "word": " Really?", + "start": 1513.36, + "end": 1513.68, + "probability": 0.9970703125 + } + ] + }, + { + "id": 859, + "text": "Why?", + "start": 1514.3, + "end": 1514.62, + "words": [ + { + "word": " Why?", + "start": 1514.3, + "end": 1514.62, + "probability": 0.2376708984375 + } + ] + }, + { + "id": 860, + "text": "Very good.", + "start": 1514.7, + "end": 1514.96, + "words": [ + { + "word": " Very", + "start": 1514.7, + "end": 1514.7, + "probability": 0.1551513671875 + }, + { + "word": " good.", + "start": 1514.7, + "end": 1514.96, + "probability": 0.9892578125 + } + ] + }, + { + "id": 861, + "text": "I liked it.", + "start": 1515.06, + "end": 1515.66, + "words": [ + { + "word": " I", + "start": 1515.06, + "end": 1515.2, + "probability": 0.99755859375 + }, + { + "word": " liked", + "start": 1515.2, + "end": 1515.5, + "probability": 0.99755859375 + }, + { + "word": " it.", + "start": 1515.5, + "end": 1515.66, + "probability": 1.0 + } + ] + }, + { + "id": 862, + "text": "I have to admit.", + "start": 1515.74, + "end": 1516.38, + "words": [ + { + "word": " I", + "start": 1515.74, + "end": 1516.02, + "probability": 0.9873046875 + }, + { + "word": " have", + "start": 1516.02, + "end": 1516.18, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 1516.18, + "end": 1516.26, + "probability": 1.0 + }, + { + "word": " admit.", + "start": 1516.26, + "end": 1516.38, + "probability": 1.0 + } + ] + }, + { + "id": 863, + "text": "Yeah.", + "start": 1517.08, + "end": 1517.36, + "words": [ + { + "word": " Yeah.", + "start": 1517.08, + "end": 1517.36, + "probability": 0.861328125 + } + ] + }, + { + "id": 864, + "text": "I'll check it out.", + "start": 1517.38, + "end": 1517.94, + "words": [ + { + "word": " I'll", + "start": 1517.38, + "end": 1517.62, + "probability": 0.845703125 + }, + { + "word": " check", + "start": 1517.62, + "end": 1517.68, + "probability": 0.97314453125 + }, + { + "word": " it", + "start": 1517.68, + "end": 1517.82, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1517.82, + "end": 1517.94, + "probability": 1.0 + } + ] + }, + { + "id": 865, + "text": "Homicide.", + "start": 1518.48, + "end": 1518.76, + "words": [ + { + "word": " Homicide.", + "start": 1518.48, + "end": 1518.76, + "probability": 0.982421875 + } + ] + }, + { + "id": 866, + "text": "Yeah.", + "start": 1519.5, + "end": 1519.78, + "words": [ + { + "word": " Yeah.", + "start": 1519.5, + "end": 1519.78, + "probability": 0.98876953125 + } + ] + }, + { + "id": 867, + "text": "Homicide detective.", + "start": 1519.88, + "end": 1520.4, + "words": [ + { + "word": " Homicide", + "start": 1519.88, + "end": 1520.16, + "probability": 0.9990234375 + }, + { + "word": " detective.", + "start": 1520.16, + "end": 1520.4, + "probability": 0.62548828125 + } + ] + }, + { + "id": 868, + "text": "Yeah.", + "start": 1520.98, + "end": 1521.26, + "words": [ + { + "word": " Yeah.", + "start": 1520.98, + "end": 1521.26, + "probability": 0.99072265625 + } + ] + }, + { + "id": 869, + "text": "Well, Homicide Life on the Street, that series.", + "start": 1521.68, + "end": 1523.46, + "words": [ + { + "word": " Well,", + "start": 1521.68, + "end": 1521.96, + "probability": 0.9755859375 + }, + { + "word": " Homicide", + "start": 1521.96, + "end": 1522.24, + "probability": 0.974609375 + }, + { + "word": " Life", + "start": 1522.24, + "end": 1522.48, + "probability": 0.5478515625 + }, + { + "word": " on", + "start": 1522.48, + "end": 1522.62, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1522.62, + "end": 1522.7, + "probability": 0.99951171875 + }, + { + "word": " Street,", + "start": 1522.7, + "end": 1522.96, + "probability": 0.58740234375 + }, + { + "word": " that", + "start": 1522.96, + "end": 1523.12, + "probability": 0.87939453125 + }, + { + "word": " series.", + "start": 1523.12, + "end": 1523.46, + "probability": 0.9931640625 + } + ] + }, + { + "id": 870, + "text": "Hey, guys.", + "start": 1524.06, + "end": 1524.52, + "words": [ + { + "word": " Hey,", + "start": 1524.06, + "end": 1524.34, + "probability": 0.07513427734375 + }, + { + "word": " guys.", + "start": 1524.36, + "end": 1524.52, + "probability": 0.9580078125 + } + ] + }, + { + "id": 871, + "text": "Excellent.", + "start": 1525.44, + "end": 1525.72, + "words": [ + { + "word": " Excellent.", + "start": 1525.44, + "end": 1525.72, + "probability": 0.97998046875 + } + ] + }, + { + "id": 872, + "text": "Yeah.", + "start": 1526.4, + "end": 1526.68, + "words": [ + { + "word": " Yeah.", + "start": 1526.4, + "end": 1526.68, + "probability": 0.456787109375 + } + ] + }, + { + "id": 873, + "text": "I'll have to check it out.", + "start": 1526.74, + "end": 1527.54, + "words": [ + { + "word": " I'll", + "start": 1526.74, + "end": 1526.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 1526.96, + "end": 1527.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1527.02, + "end": 1527.12, + "probability": 0.99951171875 + }, + { + "word": " check", + "start": 1527.12, + "end": 1527.32, + "probability": 1.0 + }, + { + "word": " it", + "start": 1527.32, + "end": 1527.42, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1527.42, + "end": 1527.54, + "probability": 1.0 + } + ] + }, + { + "id": 874, + "text": "I haven't looked at it at all, but I'll have to check it out.", + "start": 1527.6, + "end": 1530.02, + "words": [ + { + "word": " I", + "start": 1527.6, + "end": 1527.74, + "probability": 0.9951171875 + }, + { + "word": " haven't", + "start": 1527.74, + "end": 1527.98, + "probability": 1.0 + }, + { + "word": " looked", + "start": 1527.98, + "end": 1528.44, + "probability": 0.9462890625 + }, + { + "word": " at", + "start": 1528.44, + "end": 1528.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 1528.68, + "end": 1528.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 1528.84, + "end": 1528.94, + "probability": 0.99951171875 + }, + { + "word": " all,", + "start": 1528.94, + "end": 1529.16, + "probability": 1.0 + }, + { + "word": " but", + "start": 1529.18, + "end": 1529.28, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 1529.28, + "end": 1529.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 1529.48, + "end": 1529.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1529.5, + "end": 1529.58, + "probability": 1.0 + }, + { + "word": " check", + "start": 1529.58, + "end": 1529.76, + "probability": 1.0 + }, + { + "word": " it", + "start": 1529.76, + "end": 1529.86, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1529.86, + "end": 1530.02, + "probability": 1.0 + } + ] + }, + { + "id": 875, + "text": "Thanks for the call, Eric.", + "start": 1530.14, + "end": 1530.9, + "words": [ + { + "word": " Thanks", + "start": 1530.14, + "end": 1530.36, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 1530.36, + "end": 1530.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1530.44, + "end": 1530.56, + "probability": 1.0 + }, + { + "word": " call,", + "start": 1530.56, + "end": 1530.7, + "probability": 1.0 + }, + { + "word": " Eric.", + "start": 1530.76, + "end": 1530.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 876, + "text": "Hey, no problem.", + "start": 1531.14, + "end": 1531.64, + "words": [ + { + "word": " Hey,", + "start": 1531.14, + "end": 1531.42, + "probability": 0.92724609375 + }, + { + "word": " no", + "start": 1531.42, + "end": 1531.5, + "probability": 0.99951171875 + }, + { + "word": " problem.", + "start": 1531.5, + "end": 1531.64, + "probability": 1.0 + } + ] + }, + { + "id": 877, + "text": "Have a good day.", + "start": 1531.72, + "end": 1531.98, + "words": [ + { + "word": " Have", + "start": 1531.72, + "end": 1531.8, + "probability": 0.9580078125 + }, + { + "word": " a", + "start": 1531.8, + "end": 1531.86, + "probability": 1.0 + }, + { + "word": " good", + "start": 1531.86, + "end": 1531.92, + "probability": 0.9990234375 + }, + { + "word": " day.", + "start": 1531.92, + "end": 1531.98, + "probability": 0.9912109375 + } + ] + }, + { + "id": 878, + "text": "Right now, you know what episodes, seasons I'm watching right now?", + "start": 1532.94, + "end": 1535.64, + "words": [ + { + "word": " Right", + "start": 1532.94, + "end": 1533.22, + "probability": 0.85888671875 + }, + { + "word": " now,", + "start": 1533.22, + "end": 1533.42, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1533.52, + "end": 1533.62, + "probability": 0.96533203125 + }, + { + "word": " know", + "start": 1533.62, + "end": 1533.72, + "probability": 1.0 + }, + { + "word": " what", + "start": 1533.72, + "end": 1533.88, + "probability": 0.998046875 + }, + { + "word": " episodes,", + "start": 1533.88, + "end": 1534.4, + "probability": 0.7861328125 + }, + { + "word": " seasons", + "start": 1534.54, + "end": 1534.9, + "probability": 0.9697265625 + }, + { + "word": " I'm", + "start": 1534.9, + "end": 1535.16, + "probability": 0.99951171875 + }, + { + "word": " watching", + "start": 1535.16, + "end": 1535.32, + "probability": 1.0 + }, + { + "word": " right", + "start": 1535.32, + "end": 1535.48, + "probability": 1.0 + }, + { + "word": " now?", + "start": 1535.48, + "end": 1535.64, + "probability": 1.0 + } + ] + }, + { + "id": 879, + "text": "What?", + "start": 1535.7, + "end": 1535.88, + "words": [ + { + "word": " What?", + "start": 1535.7, + "end": 1535.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 880, + "text": "Buffy.", + "start": 1536.02, + "end": 1536.3, + "words": [ + { + "word": " Buffy.", + "start": 1536.02, + "end": 1536.3, + "probability": 0.99609375 + } + ] + }, + { + "id": 881, + "text": "You're watching Buffy the Vampire Slayer?", + "start": 1536.9, + "end": 1538.32, + "words": [ + { + "word": " You're", + "start": 1536.9, + "end": 1537.18, + "probability": 0.994140625 + }, + { + "word": " watching", + "start": 1537.18, + "end": 1537.36, + "probability": 1.0 + }, + { + "word": " Buffy", + "start": 1537.36, + "end": 1537.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1537.7, + "end": 1537.82, + "probability": 0.77587890625 + }, + { + "word": " Vampire", + "start": 1537.82, + "end": 1538.18, + "probability": 0.9912109375 + }, + { + "word": " Slayer?", + "start": 1538.18, + "end": 1538.32, + "probability": 0.98291015625 + } + ] + }, + { + "id": 882, + "text": "I've never seen it in the original.", + "start": 1538.44, + "end": 1539.38, + "words": [ + { + "word": " I've", + "start": 1538.44, + "end": 1538.46, + "probability": 0.947265625 + }, + { + "word": " never", + "start": 1538.46, + "end": 1538.52, + "probability": 1.0 + }, + { + "word": " seen", + "start": 1538.52, + "end": 1538.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 1538.84, + "end": 1538.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 1538.98, + "end": 1539.04, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 1539.04, + "end": 1539.16, + "probability": 0.99560546875 + }, + { + "word": " original.", + "start": 1539.16, + "end": 1539.38, + "probability": 1.0 + } + ] + }, + { + "id": 883, + "text": "My wife's like, oh, it's such a good show.", + "start": 1539.62, + "end": 1541.08, + "words": [ + { + "word": " My", + "start": 1539.62, + "end": 1539.9, + "probability": 0.99072265625 + }, + { + "word": " wife's", + "start": 1539.9, + "end": 1540.16, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 1540.16, + "end": 1540.22, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 1540.32, + "end": 1540.46, + "probability": 0.98046875 + }, + { + "word": " it's", + "start": 1540.46, + "end": 1540.62, + "probability": 1.0 + }, + { + "word": " such", + "start": 1540.62, + "end": 1540.7, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1540.7, + "end": 1540.78, + "probability": 1.0 + }, + { + "word": " good", + "start": 1540.78, + "end": 1540.9, + "probability": 0.9990234375 + }, + { + "word": " show.", + "start": 1540.9, + "end": 1541.08, + "probability": 1.0 + } + ] + }, + { + "id": 884, + "text": "You've got to watch it.", + "start": 1541.14, + "end": 1541.64, + "words": [ + { + "word": " You've", + "start": 1541.14, + "end": 1541.28, + "probability": 0.91162109375 + }, + { + "word": " got", + "start": 1541.28, + "end": 1541.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1541.32, + "end": 1541.38, + "probability": 1.0 + }, + { + "word": " watch", + "start": 1541.38, + "end": 1541.54, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1541.54, + "end": 1541.64, + "probability": 1.0 + } + ] + }, + { + "id": 885, + "text": "I'm like, all right.", + "start": 1541.66, + "end": 1542.26, + "words": [ + { + "word": " I'm", + "start": 1541.66, + "end": 1541.72, + "probability": 0.998046875 + }, + { + "word": " like,", + "start": 1541.72, + "end": 1541.72, + "probability": 1.0 + }, + { + "word": " all", + "start": 1541.78, + "end": 1541.98, + "probability": 0.93017578125 + }, + { + "word": " right.", + "start": 1541.98, + "end": 1542.26, + "probability": 1.0 + } + ] + }, + { + "id": 886, + "text": "All right.", + "start": 1542.26, + "end": 1542.44, + "words": [ + { + "word": " All", + "start": 1542.26, + "end": 1542.44, + "probability": 0.10693359375 + }, + { + "word": " right.", + "start": 1542.44, + "end": 1542.44, + "probability": 0.962890625 + } + ] + }, + { + "id": 887, + "text": "I'll give it a shot.", + "start": 1542.44, + "end": 1543.14, + "words": [ + { + "word": " I'll", + "start": 1542.44, + "end": 1542.62, + "probability": 0.9921875 + }, + { + "word": " give", + "start": 1542.62, + "end": 1542.78, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1542.78, + "end": 1542.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 1542.88, + "end": 1542.96, + "probability": 1.0 + }, + { + "word": " shot.", + "start": 1542.96, + "end": 1543.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 888, + "text": "I know.", + "start": 1543.46, + "end": 1543.88, + "words": [ + { + "word": " I", + "start": 1543.46, + "end": 1543.76, + "probability": 0.395263671875 + }, + { + "word": " know.", + "start": 1543.76, + "end": 1543.88, + "probability": 0.9541015625 + } + ] + }, + { + "id": 889, + "text": "How can I be called a nerd?", + "start": 1543.96, + "end": 1545.24, + "words": [ + { + "word": " How", + "start": 1543.96, + "end": 1544.28, + "probability": 0.65087890625 + }, + { + "word": " can", + "start": 1544.28, + "end": 1544.74, + "probability": 0.97119140625 + }, + { + "word": " I", + "start": 1544.74, + "end": 1544.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 1544.82, + "end": 1544.92, + "probability": 0.998046875 + }, + { + "word": " called", + "start": 1544.92, + "end": 1545.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1545.04, + "end": 1545.12, + "probability": 1.0 + }, + { + "word": " nerd?", + "start": 1545.12, + "end": 1545.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 890, + "text": "I've never seen an episode of Buffy before.", + "start": 1545.32, + "end": 1546.56, + "words": [ + { + "word": " I've", + "start": 1545.32, + "end": 1545.42, + "probability": 1.0 + }, + { + "word": " never", + "start": 1545.42, + "end": 1545.48, + "probability": 1.0 + }, + { + "word": " seen", + "start": 1545.48, + "end": 1545.72, + "probability": 1.0 + }, + { + "word": " an", + "start": 1545.72, + "end": 1545.82, + "probability": 0.82568359375 + }, + { + "word": " episode", + "start": 1545.82, + "end": 1546.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 1546.02, + "end": 1546.16, + "probability": 1.0 + }, + { + "word": " Buffy", + "start": 1546.16, + "end": 1546.36, + "probability": 0.998046875 + }, + { + "word": " before.", + "start": 1546.36, + "end": 1546.56, + "probability": 1.0 + } + ] + }, + { + "id": 891, + "text": "I know, but I'm watching him now.", + "start": 1546.68, + "end": 1547.66, + "words": [ + { + "word": " I", + "start": 1546.68, + "end": 1546.78, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1546.78, + "end": 1546.9, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 1546.92, + "end": 1547.02, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1547.02, + "end": 1547.14, + "probability": 1.0 + }, + { + "word": " watching", + "start": 1547.14, + "end": 1547.38, + "probability": 1.0 + }, + { + "word": " him", + "start": 1547.38, + "end": 1547.52, + "probability": 0.94140625 + }, + { + "word": " now.", + "start": 1547.52, + "end": 1547.66, + "probability": 1.0 + } + ] + }, + { + "id": 892, + "text": "I've never seen one either.", + "start": 1548.24, + "end": 1549.18, + "words": [ + { + "word": " I've", + "start": 1548.24, + "end": 1548.56, + "probability": 0.9990234375 + }, + { + "word": " never", + "start": 1548.56, + "end": 1548.72, + "probability": 1.0 + }, + { + "word": " seen", + "start": 1548.72, + "end": 1548.94, + "probability": 1.0 + }, + { + "word": " one", + "start": 1548.94, + "end": 1549.02, + "probability": 1.0 + }, + { + "word": " either.", + "start": 1549.02, + "end": 1549.18, + "probability": 0.84130859375 + } + ] + }, + { + "id": 893, + "text": "Really?", + "start": 1549.34, + "end": 1549.48, + "words": [ + { + "word": " Really?", + "start": 1549.34, + "end": 1549.48, + "probability": 0.72119140625 + } + ] + }, + { + "id": 894, + "text": "I just refuse to.", + "start": 1549.48, + "end": 1549.98, + "words": [ + { + "word": " I", + "start": 1549.48, + "end": 1549.48, + "probability": 0.98779296875 + }, + { + "word": " just", + "start": 1549.48, + "end": 1549.54, + "probability": 0.9658203125 + }, + { + "word": " refuse", + "start": 1549.54, + "end": 1549.74, + "probability": 0.9892578125 + }, + { + "word": " to.", + "start": 1549.74, + "end": 1549.98, + "probability": 1.0 + } + ] + }, + { + "id": 895, + "text": "Oh, all the freaking nerds all say, Buffy's so great.", + "start": 1550.12, + "end": 1552.88, + "words": [ + { + "word": " Oh,", + "start": 1550.12, + "end": 1550.34, + "probability": 0.256591796875 + }, + { + "word": " all", + "start": 1550.34, + "end": 1550.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1550.46, + "end": 1550.6, + "probability": 0.998046875 + }, + { + "word": " freaking", + "start": 1550.6, + "end": 1551.3, + "probability": 0.41259765625 + }, + { + "word": " nerds", + "start": 1551.3, + "end": 1551.74, + "probability": 1.0 + }, + { + "word": " all", + "start": 1551.74, + "end": 1551.8, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1551.8, + "end": 1552.0, + "probability": 1.0 + }, + { + "word": " Buffy's", + "start": 1552.1, + "end": 1552.46, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 1552.46, + "end": 1552.58, + "probability": 1.0 + }, + { + "word": " great.", + "start": 1552.58, + "end": 1552.88, + "probability": 1.0 + } + ] + }, + { + "id": 896, + "text": "So I'm watching him now.", + "start": 1553.24, + "end": 1554.9, + "words": [ + { + "word": " So", + "start": 1553.24, + "end": 1553.56, + "probability": 0.9873046875 + }, + { + "word": " I'm", + "start": 1553.56, + "end": 1553.86, + "probability": 0.8994140625 + }, + { + "word": " watching", + "start": 1553.86, + "end": 1554.54, + "probability": 0.984375 + }, + { + "word": " him", + "start": 1554.54, + "end": 1554.78, + "probability": 0.99755859375 + }, + { + "word": " now.", + "start": 1554.78, + "end": 1554.9, + "probability": 1.0 + } + ] + }, + { + "id": 897, + "text": "Yeah, I know, right?", + "start": 1555.64, + "end": 1556.34, + "words": [ + { + "word": " Yeah,", + "start": 1555.64, + "end": 1555.96, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1556.0, + "end": 1556.02, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1556.02, + "end": 1556.18, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1556.2, + "end": 1556.34, + "probability": 1.0 + } + ] + }, + { + "id": 898, + "text": "Terrible.", + "start": 1556.74, + "end": 1557.06, + "words": [ + { + "word": " Terrible.", + "start": 1556.74, + "end": 1557.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 899, + "text": "I am in stunned silence over it.", + "start": 1557.2, + "end": 1558.9, + "words": [ + { + "word": " I", + "start": 1557.2, + "end": 1557.52, + "probability": 0.96435546875 + }, + { + "word": " am", + "start": 1557.52, + "end": 1557.66, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1557.66, + "end": 1557.78, + "probability": 1.0 + }, + { + "word": " stunned", + "start": 1557.78, + "end": 1558.1, + "probability": 0.99853515625 + }, + { + "word": " silence", + "start": 1558.1, + "end": 1558.58, + "probability": 1.0 + }, + { + "word": " over", + "start": 1558.58, + "end": 1558.82, + "probability": 0.91455078125 + }, + { + "word": " it.", + "start": 1558.82, + "end": 1558.9, + "probability": 0.403076171875 + } + ] + }, + { + "id": 900, + "text": "Can't hardly believe it.", + "start": 1560.72, + "end": 1561.6, + "words": [ + { + "word": " Can't", + "start": 1560.72, + "end": 1561.04, + "probability": 0.56005859375 + }, + { + "word": " hardly", + "start": 1561.04, + "end": 1561.18, + "probability": 0.94970703125 + }, + { + "word": " believe", + "start": 1561.18, + "end": 1561.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1561.44, + "end": 1561.6, + "probability": 1.0 + } + ] + }, + { + "id": 901, + "text": "I don't know.", + "start": 1561.76, + "end": 1562.36, + "words": [ + { + "word": " I", + "start": 1561.76, + "end": 1562.08, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1562.08, + "end": 1562.26, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1562.26, + "end": 1562.36, + "probability": 1.0 + } + ] + }, + { + "id": 902, + "text": "If you're going to watch something that's all about vampires and stuff, my personal", + "start": 1562.38, + "end": 1565.32, + "words": [ + { + "word": " If", + "start": 1562.38, + "end": 1562.52, + "probability": 0.99755859375 + }, + { + "word": " you're", + "start": 1562.52, + "end": 1562.66, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1562.66, + "end": 1562.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1562.76, + "end": 1562.9, + "probability": 1.0 + }, + { + "word": " watch", + "start": 1562.9, + "end": 1563.1, + "probability": 1.0 + }, + { + "word": " something", + "start": 1563.1, + "end": 1563.36, + "probability": 0.99365234375 + }, + { + "word": " that's", + "start": 1563.36, + "end": 1563.66, + "probability": 0.99560546875 + }, + { + "word": " all", + "start": 1563.66, + "end": 1563.78, + "probability": 1.0 + }, + { + "word": " about", + "start": 1563.78, + "end": 1563.96, + "probability": 1.0 + }, + { + "word": " vampires", + "start": 1563.96, + "end": 1564.2, + "probability": 0.99169921875 + }, + { + "word": " and", + "start": 1564.2, + "end": 1564.56, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 1564.56, + "end": 1564.78, + "probability": 1.0 + }, + { + "word": " my", + "start": 1564.86, + "end": 1565.02, + "probability": 0.9970703125 + }, + { + "word": " personal", + "start": 1565.02, + "end": 1565.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 903, + "text": "choice is Supernatural.", + "start": 1565.32, + "end": 1566.36, + "words": [ + { + "word": " choice", + "start": 1565.32, + "end": 1565.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 1565.6, + "end": 1565.8, + "probability": 1.0 + }, + { + "word": " Supernatural.", + "start": 1565.8, + "end": 1566.36, + "probability": 0.98828125 + } + ] + }, + { + "id": 904, + "text": "You know, next thing I hear, you're going to be like replaying.", + "start": 1567.1000000000001, + "end": 1571.64, + "words": [ + { + "word": " You", + "start": 1567.1000000000001, + "end": 1567.42, + "probability": 0.548828125 + }, + { + "word": " know,", + "start": 1567.42, + "end": 1567.74, + "probability": 0.9990234375 + }, + { + "word": " next", + "start": 1567.78, + "end": 1568.0, + "probability": 0.9970703125 + }, + { + "word": " thing", + "start": 1568.0, + "end": 1568.18, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1568.18, + "end": 1568.28, + "probability": 0.99462890625 + }, + { + "word": " hear,", + "start": 1568.28, + "end": 1568.48, + "probability": 0.904296875 + }, + { + "word": " you're", + "start": 1568.72, + "end": 1568.86, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1568.86, + "end": 1569.0, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1569.0, + "end": 1569.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 1569.1, + "end": 1569.16, + "probability": 1.0 + }, + { + "word": " like", + "start": 1569.16, + "end": 1569.4, + "probability": 0.6728515625 + }, + { + "word": " replaying.", + "start": 1569.4, + "end": 1571.64, + "probability": 0.85546875 + } + ] + }, + { + "id": 905, + "text": "Like New Moon or whatever.", + "start": 1572.26, + "end": 1573.5, + "words": [ + { + "word": " Like", + "start": 1572.26, + "end": 1572.66, + "probability": 0.00603485107421875 + }, + { + "word": " New", + "start": 1572.66, + "end": 1572.66, + "probability": 0.5478515625 + }, + { + "word": " Moon", + "start": 1572.66, + "end": 1573.0, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 1573.0, + "end": 1573.2, + "probability": 0.96484375 + }, + { + "word": " whatever.", + "start": 1573.2, + "end": 1573.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 906, + "text": "Oh, yeah.", + "start": 1573.86, + "end": 1574.1, + "words": [ + { + "word": " Oh,", + "start": 1573.86, + "end": 1573.9, + "probability": 0.97021484375 + }, + { + "word": " yeah.", + "start": 1573.9, + "end": 1574.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 907, + "text": "My wife loves the Twilight stuff, man.", + "start": 1574.16, + "end": 1575.88, + "words": [ + { + "word": " My", + "start": 1574.16, + "end": 1574.3, + "probability": 0.99658203125 + }, + { + "word": " wife", + "start": 1574.3, + "end": 1574.54, + "probability": 0.9775390625 + }, + { + "word": " loves", + "start": 1574.54, + "end": 1574.76, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 1574.76, + "end": 1574.94, + "probability": 0.90869140625 + }, + { + "word": " Twilight", + "start": 1574.94, + "end": 1575.24, + "probability": 0.99560546875 + }, + { + "word": " stuff,", + "start": 1575.24, + "end": 1575.5, + "probability": 0.97509765625 + }, + { + "word": " man.", + "start": 1575.66, + "end": 1575.88, + "probability": 1.0 + } + ] + }, + { + "id": 908, + "text": "Let me tell you.", + "start": 1575.9, + "end": 1576.46, + "words": [ + { + "word": " Let", + "start": 1575.9, + "end": 1576.04, + "probability": 0.9990234375 + }, + { + "word": " me", + "start": 1576.04, + "end": 1576.16, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1576.16, + "end": 1576.34, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1576.34, + "end": 1576.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 909, + "text": "God.", + "start": 1576.6, + "end": 1576.98, + "words": [ + { + "word": " God.", + "start": 1576.6, + "end": 1576.98, + "probability": 0.77197265625 + } + ] + }, + { + "id": 910, + "text": "I've seen each one of those movies once.", + "start": 1577.16, + "end": 1580.32, + "words": [ + { + "word": " I've", + "start": 1577.16, + "end": 1577.6, + "probability": 0.9990234375 + }, + { + "word": " seen", + "start": 1577.6, + "end": 1577.9, + "probability": 1.0 + }, + { + "word": " each", + "start": 1577.9, + "end": 1578.2, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 1578.2, + "end": 1579.46, + "probability": 0.91259765625 + }, + { + "word": " of", + "start": 1579.46, + "end": 1579.6, + "probability": 1.0 + }, + { + "word": " those", + "start": 1579.6, + "end": 1579.64, + "probability": 1.0 + }, + { + "word": " movies", + "start": 1579.64, + "end": 1579.86, + "probability": 1.0 + }, + { + "word": " once.", + "start": 1579.86, + "end": 1580.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 911, + "text": "That's it.", + "start": 1581.4, + "end": 1581.86, + "words": [ + { + "word": " That's", + "start": 1581.4, + "end": 1581.84, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 1581.84, + "end": 1581.86, + "probability": 1.0 + } + ] + }, + { + "id": 912, + "text": "All right.", + "start": 1581.98, + "end": 1582.88, + "words": [ + { + "word": " All", + "start": 1581.98, + "end": 1582.34, + "probability": 0.875 + }, + { + "word": " right.", + "start": 1582.34, + "end": 1582.88, + "probability": 1.0 + } + ] + }, + { + "id": 913, + "text": "So the government, antitrust regulators, are a little nervous about the Nortel patents", + "start": 1582.9, + "end": 1590.5, + "words": [ + { + "word": " So", + "start": 1582.9, + "end": 1583.06, + "probability": 0.9501953125 + }, + { + "word": " the", + "start": 1583.06, + "end": 1583.78, + "probability": 0.76318359375 + }, + { + "word": " government,", + "start": 1583.78, + "end": 1584.5, + "probability": 0.99951171875 + }, + { + "word": " antitrust", + "start": 1584.76, + "end": 1585.82, + "probability": 0.9521484375 + }, + { + "word": " regulators,", + "start": 1585.82, + "end": 1586.26, + "probability": 1.0 + }, + { + "word": " are", + "start": 1586.48, + "end": 1586.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 1586.74, + "end": 1587.44, + "probability": 1.0 + }, + { + "word": " little", + "start": 1587.44, + "end": 1587.82, + "probability": 1.0 + }, + { + "word": " nervous", + "start": 1587.82, + "end": 1588.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 1588.2, + "end": 1589.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1589.0, + "end": 1589.68, + "probability": 1.0 + }, + { + "word": " Nortel", + "start": 1589.68, + "end": 1590.14, + "probability": 0.99560546875 + }, + { + "word": " patents", + "start": 1590.14, + "end": 1590.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 914, + "text": "that are up for auction here pretty soon.", + "start": 1590.5, + "end": 1592.42, + "words": [ + { + "word": " that", + "start": 1590.5, + "end": 1591.08, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 1591.08, + "end": 1591.14, + "probability": 1.0 + }, + { + "word": " up", + "start": 1591.14, + "end": 1591.28, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1591.28, + "end": 1591.48, + "probability": 1.0 + }, + { + "word": " auction", + "start": 1591.48, + "end": 1591.8, + "probability": 1.0 + }, + { + "word": " here", + "start": 1591.8, + "end": 1592.02, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 1592.02, + "end": 1592.22, + "probability": 0.99951171875 + }, + { + "word": " soon.", + "start": 1592.22, + "end": 1592.42, + "probability": 1.0 + } + ] + }, + { + "id": 915, + "text": "Okay.", + "start": 1592.6, + "end": 1593.02, + "words": [ + { + "word": " Okay.", + "start": 1592.6, + "end": 1593.02, + "probability": 0.56640625 + } + ] + }, + { + "id": 916, + "text": "Do you know anything about this?", + "start": 1593.02, + "end": 1593.86, + "words": [ + { + "word": " Do", + "start": 1593.02, + "end": 1593.22, + "probability": 0.80712890625 + }, + { + "word": " you", + "start": 1593.22, + "end": 1593.28, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 1593.28, + "end": 1593.28, + "probability": 0.9990234375 + }, + { + "word": " anything", + "start": 1593.28, + "end": 1593.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 1593.38, + "end": 1593.72, + "probability": 1.0 + }, + { + "word": " this?", + "start": 1593.72, + "end": 1593.86, + "probability": 0.576171875 + } + ] + }, + { + "id": 917, + "text": "I know nothing about it.", + "start": 1593.9, + "end": 1594.76, + "words": [ + { + "word": " I", + "start": 1593.9, + "end": 1594.02, + "probability": 0.99853515625 + }, + { + "word": " know", + "start": 1594.02, + "end": 1594.12, + "probability": 0.869140625 + }, + { + "word": " nothing", + "start": 1594.12, + "end": 1594.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 1594.4, + "end": 1594.68, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1594.68, + "end": 1594.76, + "probability": 0.81640625 + } + ] + }, + { + "id": 918, + "text": "Do you know who Nortel is?", + "start": 1594.8, + "end": 1595.8, + "words": [ + { + "word": " Do", + "start": 1594.8, + "end": 1594.92, + "probability": 0.9912109375 + }, + { + "word": " you", + "start": 1594.92, + "end": 1595.0, + "probability": 1.0 + }, + { + "word": " know", + "start": 1595.0, + "end": 1595.02, + "probability": 1.0 + }, + { + "word": " who", + "start": 1595.02, + "end": 1595.08, + "probability": 1.0 + }, + { + "word": " Nortel", + "start": 1595.08, + "end": 1595.52, + "probability": 1.0 + }, + { + "word": " is?", + "start": 1595.52, + "end": 1595.8, + "probability": 1.0 + } + ] + }, + { + "id": 919, + "text": "Who is Nortel?", + "start": 1595.96, + "end": 1596.68, + "words": [ + { + "word": " Who", + "start": 1595.96, + "end": 1596.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1596.16, + "end": 1596.3, + "probability": 0.99951171875 + }, + { + "word": " Nortel?", + "start": 1596.3, + "end": 1596.68, + "probability": 1.0 + } + ] + }, + { + "id": 920, + "text": "Nortel was a gigantic phone provider.", + "start": 1597.08, + "end": 1600.5, + "words": [ + { + "word": " Nortel", + "start": 1597.08, + "end": 1597.52, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 1597.52, + "end": 1598.22, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 1598.22, + "end": 1598.44, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 1598.44, + "end": 1599.06, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 1599.06, + "end": 1600.02, + "probability": 0.99951171875 + }, + { + "word": " provider.", + "start": 1600.02, + "end": 1600.5, + "probability": 1.0 + } + ] + }, + { + "id": 921, + "text": "Okay.", + "start": 1600.74, + "end": 1601.18, + "words": [ + { + "word": " Okay.", + "start": 1600.74, + "end": 1601.18, + "probability": 0.978515625 + } + ] + }, + { + "id": 922, + "text": "Right?", + "start": 1601.2, + "end": 1601.4, + "words": [ + { + "word": " Right?", + "start": 1601.2, + "end": 1601.4, + "probability": 0.75732421875 + } + ] + }, + { + "id": 923, + "text": "They made...", + "start": 1601.48, + "end": 1602.24, + "words": [ + { + "word": " They", + "start": 1601.48, + "end": 1601.64, + "probability": 0.615234375 + }, + { + "word": " made...", + "start": 1601.64, + "end": 1602.24, + "probability": 0.67236328125 + } + ] + }, + { + "id": 924, + "text": "They made huge phone networks and...", + "start": 1602.26, + "end": 1603.9, + "words": [ + { + "word": " They", + "start": 1602.26, + "end": 1602.26, + "probability": 0.498291015625 + }, + { + "word": " made", + "start": 1602.26, + "end": 1602.26, + "probability": 0.87451171875 + }, + { + "word": " huge", + "start": 1602.26, + "end": 1602.58, + "probability": 0.9912109375 + }, + { + "word": " phone", + "start": 1602.58, + "end": 1602.98, + "probability": 1.0 + }, + { + "word": " networks", + "start": 1602.98, + "end": 1603.36, + "probability": 1.0 + }, + { + "word": " and...", + "start": 1603.36, + "end": 1603.9, + "probability": 0.235107421875 + } + ] + }, + { + "id": 925, + "text": "Like Qualcomm?", + "start": 1603.9, + "end": 1604.62, + "words": [ + { + "word": " Like", + "start": 1603.9, + "end": 1604.24, + "probability": 0.9462890625 + }, + { + "word": " Qualcomm?", + "start": 1604.24, + "end": 1604.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 926, + "text": "Kind of.", + "start": 1605.2, + "end": 1605.8, + "words": [ + { + "word": " Kind", + "start": 1605.2, + "end": 1605.58, + "probability": 0.99951171875 + }, + { + "word": " of.", + "start": 1605.58, + "end": 1605.8, + "probability": 1.0 + } + ] + }, + { + "id": 927, + "text": "Okay.", + "start": 1605.84, + "end": 1606.1, + "words": [ + { + "word": " Okay.", + "start": 1605.84, + "end": 1606.1, + "probability": 0.51416015625 + } + ] + }, + { + "id": 928, + "text": "Right?", + "start": 1606.1, + "end": 1606.26, + "words": [ + { + "word": " Right?", + "start": 1606.1, + "end": 1606.26, + "probability": 0.615234375 + } + ] + }, + { + "id": 929, + "text": "But they made like...", + "start": 1606.9, + "end": 1608.36, + "words": [ + { + "word": " But", + "start": 1606.9, + "end": 1607.34, + "probability": 0.6416015625 + }, + { + "word": " they", + "start": 1607.34, + "end": 1607.68, + "probability": 0.994140625 + }, + { + "word": " made", + "start": 1607.68, + "end": 1607.98, + "probability": 1.0 + }, + { + "word": " like...", + "start": 1607.98, + "end": 1608.36, + "probability": 0.5595703125 + } + ] + }, + { + "id": 930, + "text": "Like if you go down to like, say, Star Pass or whatever, the resort, all their phones", + "start": 1608.36, + "end": 1612.48, + "words": [ + { + "word": " Like", + "start": 1608.36, + "end": 1608.56, + "probability": 0.6416015625 + }, + { + "word": " if", + "start": 1608.56, + "end": 1608.66, + "probability": 0.724609375 + }, + { + "word": " you", + "start": 1608.66, + "end": 1608.74, + "probability": 1.0 + }, + { + "word": " go", + "start": 1608.74, + "end": 1608.84, + "probability": 1.0 + }, + { + "word": " down", + "start": 1608.84, + "end": 1609.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1609.14, + "end": 1609.28, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1609.28, + "end": 1609.52, + "probability": 0.88037109375 + }, + { + "word": " say,", + "start": 1609.54, + "end": 1609.68, + "probability": 0.9990234375 + }, + { + "word": " Star", + "start": 1609.72, + "end": 1609.98, + "probability": 0.99560546875 + }, + { + "word": " Pass", + "start": 1609.98, + "end": 1610.14, + "probability": 0.60400390625 + }, + { + "word": " or", + "start": 1610.14, + "end": 1610.42, + "probability": 1.0 + }, + { + "word": " whatever,", + "start": 1610.42, + "end": 1610.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 1610.78, + "end": 1611.04, + "probability": 0.9921875 + }, + { + "word": " resort,", + "start": 1611.04, + "end": 1611.46, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1611.74, + "end": 1612.04, + "probability": 1.0 + }, + { + "word": " their", + "start": 1612.04, + "end": 1612.2, + "probability": 1.0 + }, + { + "word": " phones", + "start": 1612.2, + "end": 1612.48, + "probability": 0.9970703125 + } + ] + }, + { + "id": 931, + "text": "down there are Nortel.", + "start": 1612.48, + "end": 1613.26, + "words": [ + { + "word": " down", + "start": 1612.48, + "end": 1612.62, + "probability": 0.982421875 + }, + { + "word": " there", + "start": 1612.62, + "end": 1612.8, + "probability": 1.0 + }, + { + "word": " are", + "start": 1612.8, + "end": 1612.88, + "probability": 0.99951171875 + }, + { + "word": " Nortel.", + "start": 1612.88, + "end": 1613.26, + "probability": 0.99560546875 + } + ] + }, + { + "id": 932, + "text": "Oh, okay.", + "start": 1613.36, + "end": 1613.96, + "words": [ + { + "word": " Oh,", + "start": 1613.36, + "end": 1613.64, + "probability": 0.425048828125 + }, + { + "word": " okay.", + "start": 1613.68, + "end": 1613.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 933, + "text": "They built gigantic PBXs.", + "start": 1614.0, + "end": 1616.1, + "words": [ + { + "word": " They", + "start": 1614.0, + "end": 1614.24, + "probability": 0.70458984375 + }, + { + "word": " built", + "start": 1614.24, + "end": 1614.5, + "probability": 0.955078125 + }, + { + "word": " gigantic", + "start": 1614.5, + "end": 1615.1, + "probability": 1.0 + }, + { + "word": " PBXs.", + "start": 1615.1, + "end": 1616.1, + "probability": 0.9765625 + } + ] + }, + { + "id": 934, + "text": "Right.", + "start": 1616.18, + "end": 1616.4, + "words": [ + { + "word": " Right.", + "start": 1616.18, + "end": 1616.4, + "probability": 0.99267578125 + } + ] + }, + { + "id": 935, + "text": "And did a bunch of other stuff, too.", + "start": 1616.44, + "end": 1617.84, + "words": [ + { + "word": " And", + "start": 1616.44, + "end": 1616.68, + "probability": 0.998046875 + }, + { + "word": " did", + "start": 1616.68, + "end": 1617.02, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 1617.02, + "end": 1617.12, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 1617.12, + "end": 1617.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 1617.28, + "end": 1617.3, + "probability": 1.0 + }, + { + "word": " other", + "start": 1617.3, + "end": 1617.44, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 1617.44, + "end": 1617.64, + "probability": 1.0 + }, + { + "word": " too.", + "start": 1617.7, + "end": 1617.84, + "probability": 1.0 + } + ] + }, + { + "id": 936, + "text": "Well, they're defunct now.", + "start": 1618.22, + "end": 1619.92, + "words": [ + { + "word": " Well,", + "start": 1618.22, + "end": 1618.66, + "probability": 0.9970703125 + }, + { + "word": " they're", + "start": 1618.78, + "end": 1619.08, + "probability": 1.0 + }, + { + "word": " defunct", + "start": 1619.08, + "end": 1619.7, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1619.7, + "end": 1619.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 937, + "text": "They're out of business.", + "start": 1620.02, + "end": 1620.84, + "words": [ + { + "word": " They're", + "start": 1620.02, + "end": 1620.22, + "probability": 0.9013671875 + }, + { + "word": " out", + "start": 1620.22, + "end": 1620.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 1620.48, + "end": 1620.58, + "probability": 1.0 + }, + { + "word": " business.", + "start": 1620.58, + "end": 1620.84, + "probability": 1.0 + } + ] + }, + { + "id": 938, + "text": "And they're auctioning off a...", + "start": 1620.98, + "end": 1622.92, + "words": [ + { + "word": " And", + "start": 1620.98, + "end": 1621.38, + "probability": 0.46728515625 + }, + { + "word": " they're", + "start": 1621.38, + "end": 1621.8, + "probability": 1.0 + }, + { + "word": " auctioning", + "start": 1621.8, + "end": 1622.32, + "probability": 1.0 + }, + { + "word": " off", + "start": 1622.32, + "end": 1622.54, + "probability": 1.0 + }, + { + "word": " a...", + "start": 1622.54, + "end": 1622.92, + "probability": 0.92578125 + } + ] + }, + { + "id": 939, + "text": "Their old patents?", + "start": 1624.1, + "end": 1625.28, + "words": [ + { + "word": " Their", + "start": 1624.1, + "end": 1624.54, + "probability": 0.9794921875 + }, + { + "word": " old", + "start": 1624.54, + "end": 1624.98, + "probability": 0.92041015625 + }, + { + "word": " patents?", + "start": 1624.98, + "end": 1625.28, + "probability": 0.95556640625 + } + ] + }, + { + "id": 940, + "text": "All their patents.", + "start": 1625.5, + "end": 1626.08, + "words": [ + { + "word": " All", + "start": 1625.5, + "end": 1625.68, + "probability": 0.99853515625 + }, + { + "word": " their", + "start": 1625.68, + "end": 1625.8, + "probability": 1.0 + }, + { + "word": " patents.", + "start": 1625.8, + "end": 1626.08, + "probability": 1.0 + } + ] + }, + { + "id": 941, + "text": "Okay.", + "start": 1626.3, + "end": 1626.54, + "words": [ + { + "word": " Okay.", + "start": 1626.3, + "end": 1626.54, + "probability": 0.9892578125 + } + ] + }, + { + "id": 942, + "text": "6,000 patents.", + "start": 1626.6, + "end": 1627.74, + "words": [ + { + "word": " 6", + "start": 1626.6, + "end": 1626.82, + "probability": 0.97900390625 + }, + { + "word": ",000", + "start": 1626.82, + "end": 1627.44, + "probability": 1.0 + }, + { + "word": " patents.", + "start": 1627.44, + "end": 1627.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 943, + "text": "Wow.", + "start": 1628.1, + "end": 1628.5, + "words": [ + { + "word": " Wow.", + "start": 1628.1, + "end": 1628.5, + "probability": 0.990234375 + } + ] + }, + { + "id": 944, + "text": "All right?", + "start": 1628.82, + "end": 1629.4, + "words": [ + { + "word": " All", + "start": 1628.82, + "end": 1629.26, + "probability": 0.96923828125 + }, + { + "word": " right?", + "start": 1629.26, + "end": 1629.4, + "probability": 1.0 + } + ] + }, + { + "id": 945, + "text": "Guess who's bidding on it?", + "start": 1630.26, + "end": 1631.46, + "words": [ + { + "word": " Guess", + "start": 1630.26, + "end": 1630.7, + "probability": 0.95751953125 + }, + { + "word": " who's", + "start": 1630.7, + "end": 1630.96, + "probability": 1.0 + }, + { + "word": " bidding", + "start": 1630.96, + "end": 1631.1, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 1631.1, + "end": 1631.32, + "probability": 1.0 + }, + { + "word": " it?", + "start": 1631.32, + "end": 1631.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 946, + "text": "All right?", + "start": 1631.62, + "end": 1632.16, + "words": [ + { + "word": " All", + "start": 1631.62, + "end": 1632.04, + "probability": 0.71142578125 + }, + { + "word": " right?", + "start": 1632.04, + "end": 1632.16, + "probability": 1.0 + } + ] + }, + { + "id": 947, + "text": "You got three people that are bidding on it.", + "start": 1632.26, + "end": 1634.12, + "words": [ + { + "word": " You", + "start": 1632.26, + "end": 1632.34, + "probability": 0.6796875 + }, + { + "word": " got", + "start": 1632.34, + "end": 1632.4, + "probability": 0.27294921875 + }, + { + "word": " three", + "start": 1632.4, + "end": 1632.58, + "probability": 0.99658203125 + }, + { + "word": " people", + "start": 1632.58, + "end": 1633.22, + "probability": 0.98291015625 + }, + { + "word": " that", + "start": 1633.22, + "end": 1633.5, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 1633.5, + "end": 1633.56, + "probability": 1.0 + }, + { + "word": " bidding", + "start": 1633.56, + "end": 1633.76, + "probability": 0.9697265625 + }, + { + "word": " on", + "start": 1633.76, + "end": 1633.94, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1633.94, + "end": 1634.12, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "Google.", + "start": 1634.2, + "end": 1634.42, + "words": [ + { + "word": " Google.", + "start": 1634.2, + "end": 1634.42, + "probability": 0.912109375 + } + ] + }, + { + "id": 949, + "text": "You got Google?", + "start": 1634.56, + "end": 1635.26, + "words": [ + { + "word": " You", + "start": 1634.56, + "end": 1634.8, + "probability": 0.962890625 + }, + { + "word": " got", + "start": 1634.8, + "end": 1635.02, + "probability": 1.0 + }, + { + "word": " Google?", + "start": 1635.02, + "end": 1635.26, + "probability": 0.98779296875 + } + ] + }, + { + "id": 950, + "text": "Really?", + "start": 1635.42, + "end": 1635.72, + "words": [ + { + "word": " Really?", + "start": 1635.42, + "end": 1635.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 951, + "text": "Oh, wow.", + "start": 1635.82, + "end": 1636.2, + "words": [ + { + "word": " Oh,", + "start": 1635.82, + "end": 1636.06, + "probability": 0.982421875 + }, + { + "word": " wow.", + "start": 1636.06, + "end": 1636.2, + "probability": 0.97607421875 + } + ] + }, + { + "id": 952, + "text": "Nice guess.", + "start": 1636.2, + "end": 1636.66, + "words": [ + { + "word": " Nice", + "start": 1636.2, + "end": 1636.42, + "probability": 0.97021484375 + }, + { + "word": " guess.", + "start": 1636.42, + "end": 1636.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 953, + "text": "Wow.", + "start": 1636.9, + "end": 1637.06, + "words": [ + { + "word": " Wow.", + "start": 1636.9, + "end": 1637.06, + "probability": 0.0234527587890625 + } + ] + }, + { + "id": 954, + "text": "You got Apple?", + "start": 1637.18, + "end": 1637.98, + "words": [ + { + "word": " You", + "start": 1637.18, + "end": 1637.54, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 1637.54, + "end": 1637.7, + "probability": 1.0 + }, + { + "word": " Apple?", + "start": 1637.7, + "end": 1637.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 955, + "text": "And Microsoft.", + "start": 1639.32, + "end": 1640.1, + "words": [ + { + "word": " And", + "start": 1639.32, + "end": 1639.72, + "probability": 0.99658203125 + }, + { + "word": " Microsoft.", + "start": 1639.72, + "end": 1640.1, + "probability": 1.0 + } + ] + }, + { + "id": 956, + "text": "No, Microsoft's not...", + "start": 1640.3, + "end": 1641.5, + "words": [ + { + "word": " No,", + "start": 1640.3, + "end": 1640.7, + "probability": 0.95556640625 + }, + { + "word": " Microsoft's", + "start": 1640.76, + "end": 1641.3, + "probability": 0.97900390625 + }, + { + "word": " not...", + "start": 1641.3, + "end": 1641.5, + "probability": 0.1185302734375 + } + ] + }, + { + "id": 957, + "text": "Apparently not interested.", + "start": 1641.5, + "end": 1642.62, + "words": [ + { + "word": " Apparently", + "start": 1641.5, + "end": 1642.04, + "probability": 0.70751953125 + }, + { + "word": " not", + "start": 1642.04, + "end": 1642.3, + "probability": 0.97607421875 + }, + { + "word": " interested.", + "start": 1642.3, + "end": 1642.62, + "probability": 1.0 + } + ] + }, + { + "id": 958, + "text": "Facebook.", + "start": 1643.12, + "end": 1643.52, + "words": [ + { + "word": " Facebook.", + "start": 1643.12, + "end": 1643.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 959, + "text": "Yeah, wouldn't that be funny?", + "start": 1644.6999999999998, + "end": 1646.68, + "words": [ + { + "word": " Yeah,", + "start": 1644.6999999999998, + "end": 1645.1, + "probability": 0.9775390625 + }, + { + "word": " wouldn't", + "start": 1645.98, + "end": 1646.24, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1646.24, + "end": 1646.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 1646.28, + "end": 1646.44, + "probability": 1.0 + }, + { + "word": " funny?", + "start": 1646.44, + "end": 1646.68, + "probability": 1.0 + } + ] + }, + { + "id": 960, + "text": "No.", + "start": 1647.48, + "end": 1647.88, + "words": [ + { + "word": " No.", + "start": 1647.48, + "end": 1647.88, + "probability": 0.98583984375 + } + ] + }, + { + "id": 961, + "text": "Here's the thing.", + "start": 1649.92, + "end": 1650.58, + "words": [ + { + "word": " Here's", + "start": 1649.92, + "end": 1650.32, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 1650.32, + "end": 1650.36, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1650.36, + "end": 1650.58, + "probability": 1.0 + } + ] + }, + { + "id": 962, + "text": "Research in Motion is the third, by the way.", + "start": 1650.96, + "end": 1652.52, + "words": [ + { + "word": " Research", + "start": 1650.96, + "end": 1651.36, + "probability": 0.96484375 + }, + { + "word": " in", + "start": 1651.36, + "end": 1651.56, + "probability": 0.9072265625 + }, + { + "word": " Motion", + "start": 1651.56, + "end": 1651.72, + "probability": 0.9765625 + }, + { + "word": " is", + "start": 1651.72, + "end": 1651.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1651.9, + "end": 1651.98, + "probability": 1.0 + }, + { + "word": " third,", + "start": 1651.98, + "end": 1652.16, + "probability": 1.0 + }, + { + "word": " by", + "start": 1652.2, + "end": 1652.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 1652.26, + "end": 1652.38, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1652.38, + "end": 1652.52, + "probability": 1.0 + } + ] + }, + { + "id": 963, + "text": "Really?", + "start": 1652.58, + "end": 1652.9, + "words": [ + { + "word": " Really?", + "start": 1652.58, + "end": 1652.9, + "probability": 0.296142578125 + } + ] + }, + { + "id": 964, + "text": "Okay.", + "start": 1652.96, + "end": 1653.36, + "words": [ + { + "word": " Okay.", + "start": 1652.96, + "end": 1653.36, + "probability": 0.876953125 + } + ] + }, + { + "id": 965, + "text": "All right.", + "start": 1653.5, + "end": 1653.7, + "words": [ + { + "word": " All", + "start": 1653.5, + "end": 1653.62, + "probability": 0.91455078125 + }, + { + "word": " right.", + "start": 1653.62, + "end": 1653.7, + "probability": 1.0 + } + ] + }, + { + "id": 966, + "text": "So the people who make the BlackBerrys.", + "start": 1653.74, + "end": 1655.04, + "words": [ + { + "word": " So", + "start": 1653.74, + "end": 1653.88, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 1653.88, + "end": 1654.06, + "probability": 0.76904296875 + }, + { + "word": " people", + "start": 1654.06, + "end": 1654.28, + "probability": 1.0 + }, + { + "word": " who", + "start": 1654.28, + "end": 1654.36, + "probability": 0.9248046875 + }, + { + "word": " make", + "start": 1654.36, + "end": 1654.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1654.5, + "end": 1654.6, + "probability": 1.0 + }, + { + "word": " BlackBerrys.", + "start": 1654.6, + "end": 1655.04, + "probability": 0.8984375 + } + ] + }, + { + "id": 967, + "text": "BlackBerrys, right.", + "start": 1655.06, + "end": 1655.54, + "words": [ + { + "word": " BlackBerrys,", + "start": 1655.06, + "end": 1655.46, + "probability": 0.99609375 + }, + { + "word": " right.", + "start": 1655.46, + "end": 1655.54, + "probability": 1.0 + } + ] + }, + { + "id": 968, + "text": "They were initially upset, saying, well, if Google gets these, all right, there could", + "start": 1656.14, + "end": 1662.02, + "words": [ + { + "word": " They", + "start": 1656.14, + "end": 1656.54, + "probability": 0.9951171875 + }, + { + "word": " were", + "start": 1656.54, + "end": 1656.9, + "probability": 0.9970703125 + }, + { + "word": " initially", + "start": 1656.9, + "end": 1657.7, + "probability": 0.99951171875 + }, + { + "word": " upset,", + "start": 1657.7, + "end": 1658.08, + "probability": 1.0 + }, + { + "word": " saying,", + "start": 1658.2, + "end": 1658.54, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 1658.64, + "end": 1658.84, + "probability": 0.95361328125 + }, + { + "word": " if", + "start": 1658.9, + "end": 1659.18, + "probability": 1.0 + }, + { + "word": " Google", + "start": 1659.18, + "end": 1659.36, + "probability": 1.0 + }, + { + "word": " gets", + "start": 1659.36, + "end": 1659.64, + "probability": 1.0 + }, + { + "word": " these,", + "start": 1659.64, + "end": 1659.94, + "probability": 1.0 + }, + { + "word": " all", + "start": 1660.18, + "end": 1660.82, + "probability": 0.7822265625 + }, + { + "word": " right,", + "start": 1660.82, + "end": 1661.0, + "probability": 1.0 + }, + { + "word": " there", + "start": 1661.06, + "end": 1661.28, + "probability": 0.99560546875 + }, + { + "word": " could", + "start": 1661.28, + "end": 1662.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 969, + "text": "be a problem.", + "start": 1662.02, + "end": 1662.64, + "words": [ + { + "word": " be", + "start": 1662.02, + "end": 1662.08, + "probability": 0.00722503662109375 + }, + { + "word": " a", + "start": 1662.08, + "end": 1662.28, + "probability": 0.98681640625 + }, + { + "word": " problem.", + "start": 1662.28, + "end": 1662.64, + "probability": 0.99658203125 + } + ] + }, + { + "id": 970, + "text": "Right.", + "start": 1662.78, + "end": 1663.02, + "words": [ + { + "word": " Right.", + "start": 1662.78, + "end": 1663.02, + "probability": 0.458740234375 + } + ] + }, + { + "id": 971, + "text": "Right?", + "start": 1663.18, + "end": 1663.4, + "words": [ + { + "word": " Right?", + "start": 1663.18, + "end": 1663.4, + "probability": 0.471435546875 + } + ] + }, + { + "id": 972, + "text": "One of the patents that Nortel owns is the LTE technology.", + "start": 1663.54, + "end": 1666.86, + "words": [ + { + "word": " One", + "start": 1663.54, + "end": 1663.74, + "probability": 0.9462890625 + }, + { + "word": " of", + "start": 1663.74, + "end": 1664.08, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1664.08, + "end": 1664.18, + "probability": 0.99658203125 + }, + { + "word": " patents", + "start": 1664.18, + "end": 1664.5, + "probability": 0.994140625 + }, + { + "word": " that", + "start": 1664.5, + "end": 1664.82, + "probability": 0.9873046875 + }, + { + "word": " Nortel", + "start": 1664.82, + "end": 1665.22, + "probability": 0.99267578125 + }, + { + "word": " owns", + "start": 1665.22, + "end": 1665.54, + "probability": 0.986328125 + }, + { + "word": " is", + "start": 1665.54, + "end": 1665.8, + "probability": 0.978515625 + }, + { + "word": " the", + "start": 1665.8, + "end": 1665.92, + "probability": 0.9931640625 + }, + { + "word": " LTE", + "start": 1665.92, + "end": 1666.34, + "probability": 0.9951171875 + }, + { + "word": " technology.", + "start": 1666.34, + "end": 1666.86, + "probability": 0.96484375 + } + ] + }, + { + "id": 973, + "text": "Oh, really?", + "start": 1667.38, + "end": 1667.98, + "words": [ + { + "word": " Oh,", + "start": 1667.38, + "end": 1667.78, + "probability": 0.9697265625 + }, + { + "word": " really?", + "start": 1667.8, + "end": 1667.98, + "probability": 0.99560546875 + } + ] + }, + { + "id": 974, + "text": "Yes.", + "start": 1668.24, + "end": 1668.52, + "words": [ + { + "word": " Yes.", + "start": 1668.24, + "end": 1668.52, + "probability": 0.9169921875 + } + ] + }, + { + "id": 975, + "text": "They own the LTE.", + "start": 1668.52, + "end": 1669.28, + "words": [ + { + "word": " They", + "start": 1668.52, + "end": 1668.66, + "probability": 0.9384765625 + }, + { + "word": " own", + "start": 1668.66, + "end": 1668.82, + "probability": 0.984375 + }, + { + "word": " the", + "start": 1668.82, + "end": 1668.94, + "probability": 0.86376953125 + }, + { + "word": " LTE.", + "start": 1668.94, + "end": 1669.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 976, + "text": "Wow.", + "start": 1669.36, + "end": 1669.66, + "words": [ + { + "word": " Wow.", + "start": 1669.36, + "end": 1669.66, + "probability": 0.86328125 + } + ] + }, + { + "id": 977, + "text": "So they just pulled that away from Apple.", + "start": 1669.76, + "end": 1671.04, + "words": [ + { + "word": " So", + "start": 1669.76, + "end": 1669.86, + "probability": 0.74072265625 + }, + { + "word": " they", + "start": 1669.86, + "end": 1669.94, + "probability": 0.681640625 + }, + { + "word": " just", + "start": 1669.94, + "end": 1670.06, + "probability": 0.99658203125 + }, + { + "word": " pulled", + "start": 1670.06, + "end": 1670.32, + "probability": 0.447998046875 + }, + { + "word": " that", + "start": 1670.32, + "end": 1670.44, + "probability": 0.9765625 + }, + { + "word": " away", + "start": 1670.44, + "end": 1670.58, + "probability": 0.99658203125 + }, + { + "word": " from", + "start": 1670.58, + "end": 1670.76, + "probability": 0.99951171875 + }, + { + "word": " Apple.", + "start": 1670.76, + "end": 1671.04, + "probability": 0.99267578125 + } + ] + }, + { + "id": 978, + "text": "Well, if Apple gets it, it gives them an uncompetitive or an unfair advantage in the wireless networks.", + "start": 1672.0, + "end": 1677.48, + "words": [ + { + "word": " Well,", + "start": 1672.0, + "end": 1672.4, + "probability": 0.99169921875 + }, + { + "word": " if", + "start": 1672.56, + "end": 1672.86, + "probability": 0.99755859375 + }, + { + "word": " Apple", + "start": 1672.86, + "end": 1673.22, + "probability": 0.99365234375 + }, + { + "word": " gets", + "start": 1673.22, + "end": 1673.42, + "probability": 0.998046875 + }, + { + "word": " it,", + "start": 1673.42, + "end": 1673.62, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1673.66, + "end": 1673.74, + "probability": 0.9970703125 + }, + { + "word": " gives", + "start": 1673.74, + "end": 1673.92, + "probability": 0.99755859375 + }, + { + "word": " them", + "start": 1673.92, + "end": 1674.06, + "probability": 0.9921875 + }, + { + "word": " an", + "start": 1674.06, + "end": 1674.2, + "probability": 0.97216796875 + }, + { + "word": " uncompetitive", + "start": 1674.2, + "end": 1674.8, + "probability": 0.93798828125 + }, + { + "word": " or", + "start": 1674.8, + "end": 1675.04, + "probability": 0.7919921875 + }, + { + "word": " an", + "start": 1675.04, + "end": 1675.28, + "probability": 0.93896484375 + }, + { + "word": " unfair", + "start": 1675.28, + "end": 1675.6, + "probability": 0.99951171875 + }, + { + "word": " advantage", + "start": 1675.6, + "end": 1675.94, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 1675.94, + "end": 1676.64, + "probability": 0.94482421875 + }, + { + "word": " the", + "start": 1676.64, + "end": 1676.86, + "probability": 0.9912109375 + }, + { + "word": " wireless", + "start": 1676.86, + "end": 1677.14, + "probability": 0.99755859375 + }, + { + "word": " networks.", + "start": 1677.14, + "end": 1677.48, + "probability": 0.958984375 + } + ] + }, + { + "id": 979, + "text": "Well, if any one of them get it, if you think about it.", + "start": 1677.72, + "end": 1679.66, + "words": [ + { + "word": " Well,", + "start": 1677.72, + "end": 1677.78, + "probability": 0.96240234375 + }, + { + "word": " if", + "start": 1677.78, + "end": 1677.82, + "probability": 0.487060546875 + }, + { + "word": " any", + "start": 1677.82, + "end": 1678.02, + "probability": 0.9755859375 + }, + { + "word": " one", + "start": 1678.02, + "end": 1678.28, + "probability": 0.9794921875 + }, + { + "word": " of", + "start": 1678.28, + "end": 1678.42, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 1678.42, + "end": 1678.56, + "probability": 0.98974609375 + }, + { + "word": " get", + "start": 1678.56, + "end": 1678.74, + "probability": 0.8525390625 + }, + { + "word": " it,", + "start": 1678.74, + "end": 1678.92, + "probability": 0.99658203125 + }, + { + "word": " if", + "start": 1678.94, + "end": 1679.02, + "probability": 0.962890625 + }, + { + "word": " you", + "start": 1679.02, + "end": 1679.08, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 1679.08, + "end": 1679.24, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1679.24, + "end": 1679.42, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1679.42, + "end": 1679.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 980, + "text": "Well, here's the deal, is that Microsoft's not interested.", + "start": 1679.72, + "end": 1682.92, + "words": [ + { + "word": " Well,", + "start": 1679.72, + "end": 1679.82, + "probability": 0.99560546875 + }, + { + "word": " here's", + "start": 1679.88, + "end": 1680.18, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 1680.18, + "end": 1680.28, + "probability": 0.99951171875 + }, + { + "word": " deal,", + "start": 1680.28, + "end": 1680.58, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1680.64, + "end": 1680.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1680.92, + "end": 1681.22, + "probability": 1.0 + }, + { + "word": " Microsoft's", + "start": 1681.22, + "end": 1682.46, + "probability": 0.66162109375 + }, + { + "word": " not", + "start": 1682.46, + "end": 1682.56, + "probability": 0.99951171875 + }, + { + "word": " interested.", + "start": 1682.56, + "end": 1682.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 981, + "text": "Right.", + "start": 1683.1, + "end": 1683.5, + "words": [ + { + "word": " Right.", + "start": 1683.1, + "end": 1683.5, + "probability": 0.98486328125 + } + ] + }, + { + "id": 982, + "text": "Because they've already got...", + "start": 1683.54, + "end": 1684.64, + "words": [ + { + "word": " Because", + "start": 1683.54, + "end": 1683.82, + "probability": 0.9677734375 + }, + { + "word": " they've", + "start": 1683.82, + "end": 1684.06, + "probability": 0.9921875 + }, + { + "word": " already", + "start": 1684.06, + "end": 1684.22, + "probability": 0.9990234375 + }, + { + "word": " got...", + "start": 1684.22, + "end": 1684.64, + "probability": 0.5576171875 + } + ] + }, + { + "id": 983, + "text": "If you look at the number of patents that each of these companies have, the true elephant", + "start": 1684.64, + "end": 1689.52, + "words": [ + { + "word": " If", + "start": 1684.64, + "end": 1684.94, + "probability": 0.98095703125 + }, + { + "word": " you", + "start": 1684.94, + "end": 1685.34, + "probability": 1.0 + }, + { + "word": " look", + "start": 1685.34, + "end": 1685.52, + "probability": 1.0 + }, + { + "word": " at", + "start": 1685.52, + "end": 1685.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1685.66, + "end": 1685.8, + "probability": 1.0 + }, + { + "word": " number", + "start": 1685.8, + "end": 1686.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 1686.2, + "end": 1686.34, + "probability": 1.0 + }, + { + "word": " patents", + "start": 1686.34, + "end": 1686.6, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1686.6, + "end": 1686.8, + "probability": 1.0 + }, + { + "word": " each", + "start": 1686.8, + "end": 1686.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 1686.98, + "end": 1687.1, + "probability": 1.0 + }, + { + "word": " these", + "start": 1687.1, + "end": 1687.22, + "probability": 1.0 + }, + { + "word": " companies", + "start": 1687.22, + "end": 1687.48, + "probability": 1.0 + }, + { + "word": " have,", + "start": 1687.48, + "end": 1687.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1688.08, + "end": 1688.7, + "probability": 0.99951171875 + }, + { + "word": " true", + "start": 1688.7, + "end": 1689.16, + "probability": 0.99951171875 + }, + { + "word": " elephant", + "start": 1689.16, + "end": 1689.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 984, + "text": "in the room is Microsoft.", + "start": 1689.52, + "end": 1690.44, + "words": [ + { + "word": " in", + "start": 1689.52, + "end": 1689.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1689.76, + "end": 1689.84, + "probability": 1.0 + }, + { + "word": " room", + "start": 1689.84, + "end": 1690.02, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1690.02, + "end": 1690.18, + "probability": 1.0 + }, + { + "word": " Microsoft.", + "start": 1690.18, + "end": 1690.44, + "probability": 1.0 + } + ] + }, + { + "id": 985, + "text": "Is Microsoft, right.", + "start": 1690.46, + "end": 1691.06, + "words": [ + { + "word": " Is", + "start": 1690.46, + "end": 1690.86, + "probability": 0.354248046875 + }, + { + "word": " Microsoft,", + "start": 1690.86, + "end": 1690.86, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 1690.92, + "end": 1691.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 986, + "text": "Yeah.", + "start": 1691.2, + "end": 1691.28, + "words": [ + { + "word": " Yeah.", + "start": 1691.2, + "end": 1691.28, + "probability": 0.2001953125 + } + ] + }, + { + "id": 987, + "text": "They got like...", + "start": 1691.34, + "end": 1691.78, + "words": [ + { + "word": " They", + "start": 1691.34, + "end": 1691.48, + "probability": 0.9384765625 + }, + { + "word": " got", + "start": 1691.48, + "end": 1691.58, + "probability": 0.2186279296875 + }, + { + "word": " like...", + "start": 1691.58, + "end": 1691.78, + "probability": 0.37939453125 + } + ] + }, + { + "id": 988, + "text": "They have like 16,000 patents.", + "start": 1691.78, + "end": 1693.04, + "words": [ + { + "word": " They", + "start": 1691.78, + "end": 1691.86, + "probability": 0.0007910728454589844 + }, + { + "word": " have", + "start": 1691.86, + "end": 1691.86, + "probability": 0.80078125 + }, + { + "word": " like", + "start": 1691.86, + "end": 1691.86, + "probability": 0.397216796875 + }, + { + "word": " 16", + "start": 1691.86, + "end": 1692.0, + "probability": 0.9296875 + }, + { + "word": ",000", + "start": 1692.0, + "end": 1692.82, + "probability": 0.9912109375 + }, + { + "word": " patents.", + "start": 1692.82, + "end": 1693.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 989, + "text": "Right.", + "start": 1693.32, + "end": 1693.56, + "words": [ + { + "word": " Right.", + "start": 1693.32, + "end": 1693.56, + "probability": 0.65576171875 + } + ] + }, + { + "id": 990, + "text": "Right.", + "start": 1693.58, + "end": 1693.94, + "words": [ + { + "word": " Right.", + "start": 1693.58, + "end": 1693.94, + "probability": 0.1978759765625 + } + ] + }, + { + "id": 991, + "text": "But Google's by catching up.", + "start": 1694.1, + "end": 1695.34, + "words": [ + { + "word": " But", + "start": 1694.1, + "end": 1694.32, + "probability": 0.87548828125 + }, + { + "word": " Google's", + "start": 1694.32, + "end": 1694.56, + "probability": 0.8974609375 + }, + { + "word": " by", + "start": 1694.56, + "end": 1694.7, + "probability": 0.336669921875 + }, + { + "word": " catching", + "start": 1694.7, + "end": 1694.96, + "probability": 0.994140625 + }, + { + "word": " up.", + "start": 1694.96, + "end": 1695.34, + "probability": 1.0 + } + ] + }, + { + "id": 992, + "text": "And...", + "start": 1695.5, + "end": 1695.84, + "words": [ + { + "word": " And...", + "start": 1695.5, + "end": 1695.84, + "probability": 0.48583984375 + } + ] + }, + { + "id": 993, + "text": "No, Google has 1,000.", + "start": 1695.84, + "end": 1697.6, + "words": [ + { + "word": " No,", + "start": 1695.84, + "end": 1696.48, + "probability": 0.9912109375 + }, + { + "word": " Google", + "start": 1696.54, + "end": 1696.74, + "probability": 0.9970703125 + }, + { + "word": " has", + "start": 1696.74, + "end": 1697.08, + "probability": 1.0 + }, + { + "word": " 1", + "start": 1697.08, + "end": 1697.2, + "probability": 0.93408203125 + }, + { + "word": ",000.", + "start": 1697.2, + "end": 1697.6, + "probability": 1.0 + } + ] + }, + { + "id": 994, + "text": "Is that all?", + "start": 1697.66, + "end": 1698.14, + "words": [ + { + "word": " Is", + "start": 1697.66, + "end": 1697.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1697.92, + "end": 1697.96, + "probability": 1.0 + }, + { + "word": " all?", + "start": 1697.96, + "end": 1698.14, + "probability": 1.0 + } + ] + }, + { + "id": 995, + "text": "That's it.", + "start": 1698.34, + "end": 1698.56, + "words": [ + { + "word": " That's", + "start": 1698.34, + "end": 1698.56, + "probability": 0.974609375 + }, + { + "word": " it.", + "start": 1698.56, + "end": 1698.56, + "probability": 0.98974609375 + } + ] + }, + { + "id": 996, + "text": "Of all the companies that they buy?", + "start": 1698.64, + "end": 1699.66, + "words": [ + { + "word": " Of", + "start": 1698.64, + "end": 1698.66, + "probability": 0.45556640625 + }, + { + "word": " all", + "start": 1698.66, + "end": 1698.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1698.78, + "end": 1698.92, + "probability": 1.0 + }, + { + "word": " companies", + "start": 1698.92, + "end": 1699.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1699.16, + "end": 1699.32, + "probability": 1.0 + }, + { + "word": " they", + "start": 1699.32, + "end": 1699.42, + "probability": 1.0 + }, + { + "word": " buy?", + "start": 1699.42, + "end": 1699.66, + "probability": 1.0 + } + ] + }, + { + "id": 997, + "text": "Right.", + "start": 1699.88, + "end": 1700.32, + "words": [ + { + "word": " Right.", + "start": 1699.88, + "end": 1700.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 998, + "text": "They have 1,000 patents.", + "start": 1700.4, + "end": 1701.68, + "words": [ + { + "word": " They", + "start": 1700.4, + "end": 1700.58, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 1700.58, + "end": 1700.82, + "probability": 1.0 + }, + { + "word": " 1", + "start": 1700.82, + "end": 1700.94, + "probability": 0.99951171875 + }, + { + "word": ",000", + "start": 1700.94, + "end": 1701.36, + "probability": 1.0 + }, + { + "word": " patents.", + "start": 1701.36, + "end": 1701.68, + "probability": 1.0 + } + ] + }, + { + "id": 999, + "text": "Wow.", + "start": 1701.92, + "end": 1702.16, + "words": [ + { + "word": " Wow.", + "start": 1701.92, + "end": 1702.16, + "probability": 0.93408203125 + } + ] + }, + { + "id": 1000, + "text": "Now, here's the deal, is that Microsoft, in addition to the 16,000 that they own, has", + "start": 1702.16, + "end": 1707.68, + "words": [ + { + "word": " Now,", + "start": 1702.16, + "end": 1702.32, + "probability": 0.9296875 + }, + { + "word": " here's", + "start": 1702.32, + "end": 1702.68, + "probability": 0.9111328125 + }, + { + "word": " the", + "start": 1702.68, + "end": 1702.76, + "probability": 1.0 + }, + { + "word": " deal,", + "start": 1702.76, + "end": 1703.04, + "probability": 1.0 + }, + { + "word": " is", + "start": 1703.14, + "end": 1703.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 1703.3, + "end": 1703.56, + "probability": 1.0 + }, + { + "word": " Microsoft,", + "start": 1703.56, + "end": 1704.76, + "probability": 0.99658203125 + }, + { + "word": " in", + "start": 1705.22, + "end": 1705.58, + "probability": 0.998046875 + }, + { + "word": " addition", + "start": 1705.58, + "end": 1705.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1705.92, + "end": 1706.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1706.1, + "end": 1706.18, + "probability": 1.0 + }, + { + "word": " 16", + "start": 1706.18, + "end": 1706.44, + "probability": 0.9990234375 + }, + { + "word": ",000", + "start": 1706.44, + "end": 1706.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 1706.82, + "end": 1706.92, + "probability": 1.0 + }, + { + "word": " they", + "start": 1706.92, + "end": 1707.06, + "probability": 1.0 + }, + { + "word": " own,", + "start": 1707.06, + "end": 1707.32, + "probability": 1.0 + }, + { + "word": " has", + "start": 1707.42, + "end": 1707.68, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1001, + "text": "licensing rights to another 20,000.", + "start": 1707.68, + "end": 1709.98, + "words": [ + { + "word": " licensing", + "start": 1707.68, + "end": 1708.18, + "probability": 0.99951171875 + }, + { + "word": " rights", + "start": 1708.18, + "end": 1708.6, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1708.6, + "end": 1708.92, + "probability": 1.0 + }, + { + "word": " another", + "start": 1708.92, + "end": 1709.1, + "probability": 1.0 + }, + { + "word": " 20", + "start": 1709.1, + "end": 1709.52, + "probability": 1.0 + }, + { + "word": ",000.", + "start": 1709.52, + "end": 1709.98, + "probability": 1.0 + } + ] + }, + { + "id": 1002, + "text": "Ah.", + "start": 1710.1, + "end": 1710.4, + "words": [ + { + "word": " Ah.", + "start": 1710.1, + "end": 1710.4, + "probability": 0.88330078125 + } + ] + }, + { + "id": 1003, + "text": "Most of which, even the LTE one, Microsoft has a licensing right to.", + "start": 1711.16, + "end": 1715.34, + "words": [ + { + "word": " Most", + "start": 1711.16, + "end": 1711.64, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 1711.64, + "end": 1711.9, + "probability": 1.0 + }, + { + "word": " which,", + "start": 1711.9, + "end": 1712.1, + "probability": 1.0 + }, + { + "word": " even", + "start": 1712.14, + "end": 1712.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 1712.38, + "end": 1712.52, + "probability": 1.0 + }, + { + "word": " LTE", + "start": 1712.52, + "end": 1712.9, + "probability": 0.99951171875 + }, + { + "word": " one,", + "start": 1712.9, + "end": 1713.22, + "probability": 0.99755859375 + }, + { + "word": " Microsoft", + "start": 1713.38, + "end": 1713.8, + "probability": 1.0 + }, + { + "word": " has", + "start": 1713.8, + "end": 1714.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 1714.16, + "end": 1714.22, + "probability": 0.99853515625 + }, + { + "word": " licensing", + "start": 1714.22, + "end": 1714.86, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 1714.86, + "end": 1715.24, + "probability": 0.99951171875 + }, + { + "word": " to.", + "start": 1715.24, + "end": 1715.34, + "probability": 0.99609375 + } + ] + }, + { + "id": 1004, + "text": "Right.", + "start": 1715.52, + "end": 1715.76, + "words": [ + { + "word": " Right.", + "start": 1715.52, + "end": 1715.76, + "probability": 0.90576171875 + } + ] + }, + { + "id": 1005, + "text": "Right.", + "start": 1715.78, + "end": 1715.98, + "words": [ + { + "word": " Right.", + "start": 1715.78, + "end": 1715.98, + "probability": 0.04681396484375 + } + ] + }, + { + "id": 1006, + "text": "So, no matter who buys the bundle of...", + "start": 1715.98, + "end": 1720.28, + "words": [ + { + "word": " So,", + "start": 1715.98, + "end": 1716.24, + "probability": 0.9599609375 + }, + { + "word": " no", + "start": 1716.4, + "end": 1716.94, + "probability": 0.99755859375 + }, + { + "word": " matter", + "start": 1716.94, + "end": 1717.2, + "probability": 1.0 + }, + { + "word": " who", + "start": 1717.2, + "end": 1717.5, + "probability": 1.0 + }, + { + "word": " buys", + "start": 1717.5, + "end": 1717.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1717.88, + "end": 1718.22, + "probability": 0.99951171875 + }, + { + "word": " bundle", + "start": 1718.22, + "end": 1719.8, + "probability": 0.9921875 + }, + { + "word": " of...", + "start": 1719.8, + "end": 1720.28, + "probability": 0.58251953125 + } + ] + }, + { + "id": 1007, + "text": "Microsoft.", + "start": 1720.28, + "end": 1721.12, + "words": [ + { + "word": " Microsoft.", + "start": 1720.28, + "end": 1721.12, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1008, + "text": "Microsoft.", + "start": 1721.12, + "end": 1721.44, + "words": [ + { + "word": " Microsoft.", + "start": 1721.12, + "end": 1721.44, + "probability": 0.9462890625 + } + ] + }, + { + "id": 1009, + "text": "Microsoft is making money.", + "start": 1721.78, + "end": 1722.44, + "words": [ + { + "word": " Microsoft", + "start": 1721.78, + "end": 1721.92, + "probability": 0.07122802734375 + }, + { + "word": " is", + "start": 1721.92, + "end": 1721.92, + "probability": 0.81689453125 + }, + { + "word": " making", + "start": 1721.92, + "end": 1722.12, + "probability": 0.98828125 + }, + { + "word": " money.", + "start": 1722.12, + "end": 1722.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1010, + "text": "So, Microsoft doesn't care.", + "start": 1722.54, + "end": 1723.8, + "words": [ + { + "word": " So,", + "start": 1722.54, + "end": 1722.74, + "probability": 0.404296875 + }, + { + "word": " Microsoft", + "start": 1722.78, + "end": 1723.22, + "probability": 0.99267578125 + }, + { + "word": " doesn't", + "start": 1723.22, + "end": 1723.64, + "probability": 0.99755859375 + }, + { + "word": " care.", + "start": 1723.64, + "end": 1723.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1011, + "text": "Right.", + "start": 1723.96, + "end": 1724.18, + "words": [ + { + "word": " Right.", + "start": 1723.96, + "end": 1724.18, + "probability": 0.5078125 + } + ] + }, + { + "id": 1012, + "text": "But the reason that they're worried about it is that even though it would potentially", + "start": 1725.12, + "end": 1730.64, + "words": [ + { + "word": " But", + "start": 1725.12, + "end": 1725.56, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 1725.56, + "end": 1726.0, + "probability": 0.4482421875 + }, + { + "word": " reason", + "start": 1726.0, + "end": 1726.54, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1726.54, + "end": 1726.66, + "probability": 0.98486328125 + }, + { + "word": " they're", + "start": 1726.66, + "end": 1726.8, + "probability": 0.9912109375 + }, + { + "word": " worried", + "start": 1726.8, + "end": 1727.56, + "probability": 0.99609375 + }, + { + "word": " about", + "start": 1727.56, + "end": 1727.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 1727.92, + "end": 1728.22, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1728.22, + "end": 1728.74, + "probability": 0.98974609375 + }, + { + "word": " that", + "start": 1728.74, + "end": 1728.98, + "probability": 0.99853515625 + }, + { + "word": " even", + "start": 1728.98, + "end": 1729.36, + "probability": 0.9267578125 + }, + { + "word": " though", + "start": 1729.36, + "end": 1729.64, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1729.64, + "end": 1730.06, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 1730.06, + "end": 1730.26, + "probability": 0.9990234375 + }, + { + "word": " potentially", + "start": 1730.26, + "end": 1730.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1013, + "text": "give Google an unfair advantage...", + "start": 1730.64, + "end": 1733.92, + "words": [ + { + "word": " give", + "start": 1730.64, + "end": 1731.0, + "probability": 1.0 + }, + { + "word": " Google", + "start": 1731.0, + "end": 1731.44, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1731.44, + "end": 1732.42, + "probability": 0.9970703125 + }, + { + "word": " unfair", + "start": 1732.42, + "end": 1733.26, + "probability": 1.0 + }, + { + "word": " advantage...", + "start": 1733.26, + "end": 1733.92, + "probability": 0.5302734375 + } + ] + }, + { + "id": 1014, + "text": "Right.", + "start": 1733.92, + "end": 1734.06, + "words": [ + { + "word": " Right.", + "start": 1733.92, + "end": 1734.06, + "probability": 0.91943359375 + } + ] + }, + { + "id": 1015, + "text": "Google has never seriously gone after anyone for patent infringement, ever.", + "start": 1734.1, + "end": 1738.44, + "words": [ + { + "word": " Google", + "start": 1734.1, + "end": 1734.36, + "probability": 0.433349609375 + }, + { + "word": " has", + "start": 1734.36, + "end": 1734.6, + "probability": 0.99951171875 + }, + { + "word": " never", + "start": 1734.6, + "end": 1734.86, + "probability": 1.0 + }, + { + "word": " seriously", + "start": 1734.86, + "end": 1735.42, + "probability": 0.99951171875 + }, + { + "word": " gone", + "start": 1735.42, + "end": 1735.9, + "probability": 1.0 + }, + { + "word": " after", + "start": 1735.9, + "end": 1736.26, + "probability": 1.0 + }, + { + "word": " anyone", + "start": 1736.26, + "end": 1736.6, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1736.6, + "end": 1736.92, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1736.92, + "end": 1737.24, + "probability": 0.99853515625 + }, + { + "word": " infringement,", + "start": 1737.24, + "end": 1738.0, + "probability": 1.0 + }, + { + "word": " ever.", + "start": 1738.02, + "end": 1738.44, + "probability": 1.0 + } + ] + }, + { + "id": 1016, + "text": "Well, I think they would, though, if it was Apple.", + "start": 1738.72, + "end": 1742.14, + "words": [ + { + "word": " Well,", + "start": 1738.72, + "end": 1739.16, + "probability": 0.9873046875 + }, + { + "word": " I", + "start": 1739.3, + "end": 1739.58, + "probability": 0.97314453125 + }, + { + "word": " think", + "start": 1739.58, + "end": 1739.9, + "probability": 1.0 + }, + { + "word": " they", + "start": 1739.9, + "end": 1740.06, + "probability": 0.99658203125 + }, + { + "word": " would,", + "start": 1740.06, + "end": 1741.0, + "probability": 1.0 + }, + { + "word": " though,", + "start": 1741.12, + "end": 1741.36, + "probability": 1.0 + }, + { + "word": " if", + "start": 1741.4, + "end": 1741.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 1741.64, + "end": 1741.72, + "probability": 1.0 + }, + { + "word": " was", + "start": 1741.72, + "end": 1741.84, + "probability": 1.0 + }, + { + "word": " Apple.", + "start": 1741.84, + "end": 1742.14, + "probability": 1.0 + } + ] + }, + { + "id": 1017, + "text": "Now, Apple...", + "start": 1742.54, + "end": 1743.78, + "words": [ + { + "word": " Now,", + "start": 1742.54, + "end": 1742.98, + "probability": 0.99609375 + }, + { + "word": " Apple...", + "start": 1743.14, + "end": 1743.78, + "probability": 0.7802734375 + } + ] + }, + { + "id": 1018, + "text": "Right.", + "start": 1743.78, + "end": 1744.1, + "words": [ + { + "word": " Right.", + "start": 1743.78, + "end": 1744.1, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1019, + "text": "On the other hand...", + "start": 1744.22, + "end": 1745.14, + "words": [ + { + "word": " On", + "start": 1744.22, + "end": 1744.34, + "probability": 0.62255859375 + }, + { + "word": " the", + "start": 1744.34, + "end": 1744.44, + "probability": 1.0 + }, + { + "word": " other", + "start": 1744.44, + "end": 1744.6, + "probability": 1.0 + }, + { + "word": " hand...", + "start": 1744.6, + "end": 1745.14, + "probability": 1.0 + } + ] + }, + { + "id": 1020, + "text": "Goes after everybody.", + "start": 1745.14, + "end": 1745.98, + "words": [ + { + "word": " Goes", + "start": 1745.14, + "end": 1745.26, + "probability": 0.94384765625 + }, + { + "word": " after", + "start": 1745.26, + "end": 1745.38, + "probability": 0.99951171875 + }, + { + "word": " everybody.", + "start": 1745.38, + "end": 1745.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1021, + "text": "Right.", + "start": 1746.04, + "end": 1746.48, + "words": [ + { + "word": " Right.", + "start": 1746.04, + "end": 1746.48, + "probability": 0.7451171875 + } + ] + }, + { + "id": 1022, + "text": "They are on the ball.", + "start": 1746.48, + "end": 1747.88, + "words": [ + { + "word": " They", + "start": 1746.48, + "end": 1746.7, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 1746.7, + "end": 1746.72, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1746.72, + "end": 1747.38, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 1747.38, + "end": 1747.72, + "probability": 1.0 + }, + { + "word": " ball.", + "start": 1747.72, + "end": 1747.88, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1023, + "text": "Now, they're concerned about Microsoft, too, because Microsoft doesn't play around when", + "start": 1747.96, + "end": 1750.64, + "words": [ + { + "word": " Now,", + "start": 1747.96, + "end": 1748.12, + "probability": 0.99072265625 + }, + { + "word": " they're", + "start": 1748.12, + "end": 1748.26, + "probability": 0.9990234375 + }, + { + "word": " concerned", + "start": 1748.26, + "end": 1748.44, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 1748.44, + "end": 1748.64, + "probability": 1.0 + }, + { + "word": " Microsoft,", + "start": 1748.64, + "end": 1748.94, + "probability": 1.0 + }, + { + "word": " too,", + "start": 1749.06, + "end": 1749.22, + "probability": 1.0 + }, + { + "word": " because", + "start": 1749.24, + "end": 1749.38, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 1749.38, + "end": 1749.68, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1749.68, + "end": 1750.06, + "probability": 1.0 + }, + { + "word": " play", + "start": 1750.06, + "end": 1750.24, + "probability": 1.0 + }, + { + "word": " around", + "start": 1750.24, + "end": 1750.44, + "probability": 1.0 + }, + { + "word": " when", + "start": 1750.44, + "end": 1750.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1024, + "text": "it comes to the patents.", + "start": 1750.64, + "end": 1751.24, + "words": [ + { + "word": " it", + "start": 1750.64, + "end": 1750.74, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1750.74, + "end": 1750.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1750.88, + "end": 1751.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1751.0, + "end": 1751.06, + "probability": 0.98876953125 + }, + { + "word": " patents.", + "start": 1751.06, + "end": 1751.24, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1025, + "text": "They do own.", + "start": 1751.24, + "end": 1751.98, + "words": [ + { + "word": " They", + "start": 1751.24, + "end": 1751.4, + "probability": 0.04852294921875 + }, + { + "word": " do", + "start": 1751.4, + "end": 1751.62, + "probability": 0.435302734375 + }, + { + "word": " own.", + "start": 1751.62, + "end": 1751.98, + "probability": 0.97998046875 + } + ] + }, + { + "id": 1026, + "text": "Right.", + "start": 1752.12, + "end": 1752.34, + "words": [ + { + "word": " Right.", + "start": 1752.12, + "end": 1752.34, + "probability": 0.609375 + } + ] + }, + { + "id": 1027, + "text": "Right.", + "start": 1752.44, + "end": 1752.84, + "words": [ + { + "word": " Right.", + "start": 1752.44, + "end": 1752.84, + "probability": 0.183349609375 + } + ] + }, + { + "id": 1028, + "text": "And they will...", + "start": 1752.88, + "end": 1753.5, + "words": [ + { + "word": " And", + "start": 1752.88, + "end": 1753.0, + "probability": 0.96240234375 + }, + { + "word": " they", + "start": 1753.0, + "end": 1753.18, + "probability": 0.99951171875 + }, + { + "word": " will...", + "start": 1753.18, + "end": 1753.5, + "probability": 0.5693359375 + } + ] + }, + { + "id": 1029, + "text": "They will throw down.", + "start": 1753.5, + "end": 1754.68, + "words": [ + { + "word": " They", + "start": 1753.5, + "end": 1754.16, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 1754.16, + "end": 1754.24, + "probability": 0.966796875 + }, + { + "word": " throw", + "start": 1754.24, + "end": 1754.42, + "probability": 0.99365234375 + }, + { + "word": " down.", + "start": 1754.42, + "end": 1754.68, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1030, + "text": "Yes, they will.", + "start": 1754.86, + "end": 1755.56, + "words": [ + { + "word": " Yes,", + "start": 1754.86, + "end": 1755.18, + "probability": 0.955078125 + }, + { + "word": " they", + "start": 1755.18, + "end": 1755.34, + "probability": 1.0 + }, + { + "word": " will.", + "start": 1755.34, + "end": 1755.56, + "probability": 1.0 + } + ] + }, + { + "id": 1031, + "text": "They have a gigantic pool of lawyers.", + "start": 1756.02, + "end": 1758.14, + "words": [ + { + "word": " They", + "start": 1756.02, + "end": 1756.42, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1756.42, + "end": 1756.58, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1756.58, + "end": 1756.68, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 1756.68, + "end": 1757.18, + "probability": 0.99951171875 + }, + { + "word": " pool", + "start": 1757.18, + "end": 1757.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 1757.68, + "end": 1757.84, + "probability": 1.0 + }, + { + "word": " lawyers.", + "start": 1757.84, + "end": 1758.14, + "probability": 1.0 + } + ] + }, + { + "id": 1032, + "text": "I don't think RIM has a chance at all to get this.", + "start": 1758.2, + "end": 1761.04, + "words": [ + { + "word": " I", + "start": 1758.2, + "end": 1758.3, + "probability": 0.75927734375 + }, + { + "word": " don't", + "start": 1758.3, + "end": 1758.44, + "probability": 1.0 + }, + { + "word": " think", + "start": 1758.44, + "end": 1758.58, + "probability": 1.0 + }, + { + "word": " RIM", + "start": 1758.58, + "end": 1758.92, + "probability": 0.9619140625 + }, + { + "word": " has", + "start": 1758.92, + "end": 1759.04, + "probability": 0.9931640625 + }, + { + "word": " a", + "start": 1759.04, + "end": 1759.16, + "probability": 1.0 + }, + { + "word": " chance", + "start": 1759.16, + "end": 1759.44, + "probability": 1.0 + }, + { + "word": " at", + "start": 1759.44, + "end": 1759.58, + "probability": 0.8408203125 + }, + { + "word": " all", + "start": 1759.58, + "end": 1760.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1760.48, + "end": 1760.66, + "probability": 1.0 + }, + { + "word": " get", + "start": 1760.66, + "end": 1760.82, + "probability": 1.0 + }, + { + "word": " this.", + "start": 1760.82, + "end": 1761.04, + "probability": 1.0 + } + ] + }, + { + "id": 1033, + "text": "I mean, if you get the three big...", + "start": 1761.12, + "end": 1762.44, + "words": [ + { + "word": " I", + "start": 1761.12, + "end": 1761.22, + "probability": 0.958984375 + }, + { + "word": " mean,", + "start": 1761.22, + "end": 1761.28, + "probability": 1.0 + }, + { + "word": " if", + "start": 1761.32, + "end": 1761.56, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 1761.56, + "end": 1761.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 1761.68, + "end": 1761.78, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1761.78, + "end": 1761.88, + "probability": 1.0 + }, + { + "word": " three", + "start": 1761.88, + "end": 1762.1, + "probability": 0.998046875 + }, + { + "word": " big...", + "start": 1762.1, + "end": 1762.44, + "probability": 0.79296875 + } + ] + }, + { + "id": 1034, + "text": "If you get the three ones that you're talking about, RIM...", + "start": 1762.44, + "end": 1764.14, + "words": [ + { + "word": " If", + "start": 1762.44, + "end": 1762.5, + "probability": 0.982421875 + }, + { + "word": " you", + "start": 1762.5, + "end": 1762.56, + "probability": 1.0 + }, + { + "word": " get", + "start": 1762.56, + "end": 1762.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1762.68, + "end": 1762.78, + "probability": 1.0 + }, + { + "word": " three", + "start": 1762.78, + "end": 1762.96, + "probability": 1.0 + }, + { + "word": " ones", + "start": 1762.96, + "end": 1763.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1763.14, + "end": 1763.28, + "probability": 0.61865234375 + }, + { + "word": " you're", + "start": 1763.28, + "end": 1763.32, + "probability": 1.0 + }, + { + "word": " talking", + "start": 1763.32, + "end": 1763.48, + "probability": 1.0 + }, + { + "word": " about,", + "start": 1763.48, + "end": 1763.7, + "probability": 1.0 + }, + { + "word": " RIM...", + "start": 1763.84, + "end": 1764.14, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1035, + "text": "Google put down the opening bid for $900 million.", + "start": 1764.14, + "end": 1767.06, + "words": [ + { + "word": " Google", + "start": 1764.14, + "end": 1764.5, + "probability": 0.837890625 + }, + { + "word": " put", + "start": 1764.5, + "end": 1764.74, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 1764.74, + "end": 1764.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1764.94, + "end": 1765.08, + "probability": 1.0 + }, + { + "word": " opening", + "start": 1765.08, + "end": 1765.4, + "probability": 0.99951171875 + }, + { + "word": " bid", + "start": 1765.4, + "end": 1765.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 1765.7, + "end": 1765.94, + "probability": 1.0 + }, + { + "word": " $900", + "start": 1765.94, + "end": 1766.48, + "probability": 0.998046875 + }, + { + "word": " million.", + "start": 1766.48, + "end": 1767.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1036, + "text": "$900 million for 6,000 patents?", + "start": 1767.7999999999997, + "end": 1769.72, + "words": [ + { + "word": " $900", + "start": 1767.7999999999997, + "end": 1768.1999999999998, + "probability": 0.9970703125 + }, + { + "word": " million", + "start": 1768.1999999999998, + "end": 1768.6, + "probability": 1.0 + }, + { + "word": " for", + "start": 1768.6, + "end": 1768.78, + "probability": 0.9921875 + }, + { + "word": " 6", + "start": 1768.78, + "end": 1768.96, + "probability": 0.9990234375 + }, + { + "word": ",000", + "start": 1768.96, + "end": 1769.38, + "probability": 1.0 + }, + { + "word": " patents?", + "start": 1769.38, + "end": 1769.72, + "probability": 1.0 + } + ] + }, + { + "id": 1037, + "text": "Right.", + "start": 1769.88, + "end": 1770.14, + "words": [ + { + "word": " Right.", + "start": 1769.88, + "end": 1770.14, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1038, + "text": "Wow.", + "start": 1770.26, + "end": 1770.66, + "words": [ + { + "word": " Wow.", + "start": 1770.26, + "end": 1770.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1039, + "text": "All right.", + "start": 1770.88, + "end": 1771.2, + "words": [ + { + "word": " All", + "start": 1770.88, + "end": 1771.16, + "probability": 0.7255859375 + }, + { + "word": " right.", + "start": 1771.16, + "end": 1771.2, + "probability": 1.0 + } + ] + }, + { + "id": 1040, + "text": "So, the opening bid at $900 million.", + "start": 1771.24, + "end": 1773.28, + "words": [ + { + "word": " So,", + "start": 1771.24, + "end": 1771.36, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1771.42, + "end": 1771.5, + "probability": 0.99951171875 + }, + { + "word": " opening", + "start": 1771.5, + "end": 1771.76, + "probability": 1.0 + }, + { + "word": " bid", + "start": 1771.76, + "end": 1772.04, + "probability": 1.0 + }, + { + "word": " at", + "start": 1772.04, + "end": 1772.36, + "probability": 1.0 + }, + { + "word": " $900", + "start": 1772.36, + "end": 1772.86, + "probability": 0.99755859375 + }, + { + "word": " million.", + "start": 1772.86, + "end": 1773.28, + "probability": 1.0 + } + ] + }, + { + "id": 1041, + "text": "Uh-huh.", + "start": 1773.82, + "end": 1774.22, + "words": [ + { + "word": " Uh", + "start": 1773.82, + "end": 1774.1, + "probability": 0.9140625 + }, + { + "word": "-huh.", + "start": 1774.1, + "end": 1774.22, + "probability": 1.0 + } + ] + }, + { + "id": 1042, + "text": "Now, here's my problem with the whole thing.", + "start": 1774.24, + "end": 1775.88, + "words": [ + { + "word": " Now,", + "start": 1774.24, + "end": 1774.5, + "probability": 0.9990234375 + }, + { + "word": " here's", + "start": 1774.54, + "end": 1774.98, + "probability": 1.0 + }, + { + "word": " my", + "start": 1774.98, + "end": 1775.08, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1775.08, + "end": 1775.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 1775.34, + "end": 1775.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1775.48, + "end": 1775.54, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1775.54, + "end": 1775.68, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1775.68, + "end": 1775.88, + "probability": 1.0 + } + ] + }, + { + "id": 1043, + "text": "Right?", + "start": 1776.2, + "end": 1776.6, + "words": [ + { + "word": " Right?", + "start": 1776.2, + "end": 1776.6, + "probability": 0.96435546875 + } + ] + }, + { + "id": 1044, + "text": "As a person who has invented things in the past...", + "start": 1776.7, + "end": 1780.26, + "words": [ + { + "word": " As", + "start": 1776.7, + "end": 1777.1, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 1777.1, + "end": 1777.36, + "probability": 1.0 + }, + { + "word": " person", + "start": 1777.36, + "end": 1778.58, + "probability": 0.9921875 + }, + { + "word": " who", + "start": 1778.58, + "end": 1778.82, + "probability": 1.0 + }, + { + "word": " has", + "start": 1778.82, + "end": 1778.94, + "probability": 1.0 + }, + { + "word": " invented", + "start": 1778.94, + "end": 1779.18, + "probability": 1.0 + }, + { + "word": " things", + "start": 1779.18, + "end": 1779.52, + "probability": 1.0 + }, + { + "word": " in", + "start": 1779.52, + "end": 1779.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1779.72, + "end": 1779.8, + "probability": 1.0 + }, + { + "word": " past...", + "start": 1779.8, + "end": 1780.26, + "probability": 0.56494140625 + } + ] + }, + { + "id": 1045, + "text": "Right.", + "start": 1780.26, + "end": 1780.88, + "words": [ + { + "word": " Right.", + "start": 1780.26, + "end": 1780.88, + "probability": 0.94482421875 + } + ] + }, + { + "id": 1046, + "text": "Right.", + "start": 1780.94, + "end": 1781.18, + "words": [ + { + "word": " Right.", + "start": 1780.94, + "end": 1781.18, + "probability": 0.240478515625 + } + ] + }, + { + "id": 1047, + "text": "I have a couple of inventions, and I've never gone around the whole patent thing.", + "start": 1781.24, + "end": 1785.7, + "words": [ + { + "word": " I", + "start": 1781.24, + "end": 1781.42, + "probability": 0.9404296875 + }, + { + "word": " have", + "start": 1781.42, + "end": 1781.6, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1781.6, + "end": 1781.74, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 1781.74, + "end": 1782.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 1782.0, + "end": 1782.12, + "probability": 1.0 + }, + { + "word": " inventions,", + "start": 1782.12, + "end": 1782.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 1782.64, + "end": 1782.96, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1782.96, + "end": 1783.46, + "probability": 0.9990234375 + }, + { + "word": " never", + "start": 1783.46, + "end": 1783.68, + "probability": 1.0 + }, + { + "word": " gone", + "start": 1783.68, + "end": 1783.86, + "probability": 0.99755859375 + }, + { + "word": " around", + "start": 1783.86, + "end": 1784.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1784.08, + "end": 1784.32, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1784.32, + "end": 1784.6, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1784.6, + "end": 1785.16, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1785.16, + "end": 1785.7, + "probability": 1.0 + } + ] + }, + { + "id": 1048, + "text": "Right.", + "start": 1785.88, + "end": 1786.08, + "words": [ + { + "word": " Right.", + "start": 1785.88, + "end": 1786.08, + "probability": 0.6005859375 + } + ] + }, + { + "id": 1049, + "text": "But I think secondary markets for patents are baloney.", + "start": 1786.28, + "end": 1790.02, + "words": [ + { + "word": " But", + "start": 1786.28, + "end": 1786.68, + "probability": 0.97705078125 + }, + { + "word": " I", + "start": 1786.68, + "end": 1786.94, + "probability": 0.9951171875 + }, + { + "word": " think", + "start": 1786.94, + "end": 1787.18, + "probability": 1.0 + }, + { + "word": " secondary", + "start": 1787.18, + "end": 1788.1, + "probability": 0.99853515625 + }, + { + "word": " markets", + "start": 1788.1, + "end": 1788.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 1788.5, + "end": 1788.72, + "probability": 0.99951171875 + }, + { + "word": " patents", + "start": 1788.72, + "end": 1788.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 1788.98, + "end": 1789.16, + "probability": 1.0 + }, + { + "word": " baloney.", + "start": 1789.16, + "end": 1790.02, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1050, + "text": "Right?", + "start": 1790.58, + "end": 1790.98, + "words": [ + { + "word": " Right?", + "start": 1790.58, + "end": 1790.98, + "probability": 0.677734375 + } + ] + }, + { + "id": 1051, + "text": "They're bogus.", + "start": 1791.02, + "end": 1791.56, + "words": [ + { + "word": " They're", + "start": 1791.02, + "end": 1791.18, + "probability": 0.99951171875 + }, + { + "word": " bogus.", + "start": 1791.18, + "end": 1791.56, + "probability": 1.0 + } + ] + }, + { + "id": 1052, + "text": "Okay.", + "start": 1791.7, + "end": 1792.1, + "words": [ + { + "word": " Okay.", + "start": 1791.7, + "end": 1792.1, + "probability": 0.95703125 + } + ] + }, + { + "id": 1053, + "text": "And here's why I think so.", + "start": 1792.4, + "end": 1793.78, + "words": [ + { + "word": " And", + "start": 1792.4, + "end": 1792.8, + "probability": 0.9521484375 + }, + { + "word": " here's", + "start": 1792.8, + "end": 1793.22, + "probability": 1.0 + }, + { + "word": " why", + "start": 1793.22, + "end": 1793.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 1793.36, + "end": 1793.48, + "probability": 1.0 + }, + { + "word": " think", + "start": 1793.48, + "end": 1793.64, + "probability": 1.0 + }, + { + "word": " so.", + "start": 1793.64, + "end": 1793.78, + "probability": 1.0 + } + ] + }, + { + "id": 1054, + "text": "Is that the innovator, the person who actually came up with the idea, should have the right", + "start": 1794.0, + "end": 1798.84, + "words": [ + { + "word": " Is", + "start": 1794.0, + "end": 1794.4, + "probability": 0.04364013671875 + }, + { + "word": " that", + "start": 1794.4, + "end": 1794.5, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1794.5, + "end": 1795.1, + "probability": 0.99951171875 + }, + { + "word": " innovator,", + "start": 1795.1, + "end": 1795.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1795.74, + "end": 1795.9, + "probability": 1.0 + }, + { + "word": " person", + "start": 1795.9, + "end": 1796.18, + "probability": 1.0 + }, + { + "word": " who", + "start": 1796.18, + "end": 1796.34, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1796.34, + "end": 1796.74, + "probability": 1.0 + }, + { + "word": " came", + "start": 1796.74, + "end": 1797.02, + "probability": 1.0 + }, + { + "word": " up", + "start": 1797.02, + "end": 1797.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 1797.22, + "end": 1797.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1797.36, + "end": 1797.46, + "probability": 1.0 + }, + { + "word": " idea,", + "start": 1797.46, + "end": 1797.82, + "probability": 1.0 + }, + { + "word": " should", + "start": 1798.0, + "end": 1798.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 1798.34, + "end": 1798.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 1798.5, + "end": 1798.68, + "probability": 1.0 + }, + { + "word": " right", + "start": 1798.68, + "end": 1798.84, + "probability": 1.0 + } + ] + }, + { + "id": 1055, + "text": "to patent it for a limited amount of time.", + "start": 1798.84, + "end": 1800.56, + "words": [ + { + "word": " to", + "start": 1798.84, + "end": 1798.96, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1798.96, + "end": 1799.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 1799.2, + "end": 1799.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 1799.36, + "end": 1799.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1799.52, + "end": 1799.68, + "probability": 1.0 + }, + { + "word": " limited", + "start": 1799.68, + "end": 1799.88, + "probability": 1.0 + }, + { + "word": " amount", + "start": 1799.88, + "end": 1800.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 1800.08, + "end": 1800.28, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1800.28, + "end": 1800.56, + "probability": 1.0 + } + ] + }, + { + "id": 1056, + "text": "Right?", + "start": 1801.06, + "end": 1801.46, + "words": [ + { + "word": " Right?", + "start": 1801.06, + "end": 1801.46, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1057, + "text": "So, you have this patent that's out there for, let's say, 10 years.", + "start": 1801.52, + "end": 1805.3, + "words": [ + { + "word": " So,", + "start": 1801.52, + "end": 1801.76, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 1801.86, + "end": 1802.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 1802.54, + "end": 1802.78, + "probability": 1.0 + }, + { + "word": " this", + "start": 1802.78, + "end": 1802.96, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1802.96, + "end": 1803.26, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1803.26, + "end": 1803.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 1803.48, + "end": 1803.58, + "probability": 1.0 + }, + { + "word": " there", + "start": 1803.58, + "end": 1803.76, + "probability": 1.0 + }, + { + "word": " for,", + "start": 1803.76, + "end": 1803.94, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1804.02, + "end": 1804.38, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1804.38, + "end": 1804.68, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1804.7, + "end": 1804.92, + "probability": 0.6689453125 + }, + { + "word": " years.", + "start": 1804.92, + "end": 1805.3, + "probability": 1.0 + } + ] + }, + { + "id": 1058, + "text": "Okay.", + "start": 1805.48, + "end": 1805.82, + "words": [ + { + "word": " Okay.", + "start": 1805.48, + "end": 1805.82, + "probability": 0.97216796875 + } + ] + }, + { + "id": 1059, + "text": "Right?", + "start": 1805.86, + "end": 1806.1, + "words": [ + { + "word": " Right?", + "start": 1805.86, + "end": 1806.1, + "probability": 0.87353515625 + } + ] + }, + { + "id": 1060, + "text": "And that's shorter than the current patent anyway, which is you get a 20-year patent.", + "start": 1806.14, + "end": 1809.88, + "words": [ + { + "word": " And", + "start": 1806.14, + "end": 1806.4, + "probability": 0.998046875 + }, + { + "word": " that's", + "start": 1806.4, + "end": 1806.68, + "probability": 1.0 + }, + { + "word": " shorter", + "start": 1806.68, + "end": 1806.86, + "probability": 0.9990234375 + }, + { + "word": " than", + "start": 1806.86, + "end": 1807.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1807.08, + "end": 1807.26, + "probability": 1.0 + }, + { + "word": " current", + "start": 1807.26, + "end": 1807.54, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1807.54, + "end": 1807.98, + "probability": 1.0 + }, + { + "word": " anyway,", + "start": 1807.98, + "end": 1808.34, + "probability": 0.80810546875 + }, + { + "word": " which", + "start": 1808.48, + "end": 1808.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 1808.68, + "end": 1808.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 1808.8, + "end": 1808.98, + "probability": 0.98876953125 + }, + { + "word": " get", + "start": 1808.98, + "end": 1809.18, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 1809.18, + "end": 1809.38, + "probability": 1.0 + }, + { + "word": " 20", + "start": 1809.38, + "end": 1809.56, + "probability": 1.0 + }, + { + "word": "-year", + "start": 1809.56, + "end": 1809.7, + "probability": 0.9833984375 + }, + { + "word": " patent.", + "start": 1809.7, + "end": 1809.88, + "probability": 1.0 + } + ] + }, + { + "id": 1061, + "text": "Right.", + "start": 1810.1, + "end": 1810.38, + "words": [ + { + "word": " Right.", + "start": 1810.1, + "end": 1810.38, + "probability": 0.986328125 + } + ] + }, + { + "id": 1062, + "text": "Right.", + "start": 1810.38, + "end": 1810.48, + "words": [ + { + "word": " Right.", + "start": 1810.38, + "end": 1810.48, + "probability": 0.145751953125 + } + ] + }, + { + "id": 1063, + "text": "And then you can renew.", + "start": 1810.6, + "end": 1811.6, + "words": [ + { + "word": " And", + "start": 1810.6, + "end": 1810.92, + "probability": 0.95263671875 + }, + { + "word": " then", + "start": 1810.92, + "end": 1811.06, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1811.06, + "end": 1811.16, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 1811.16, + "end": 1811.28, + "probability": 1.0 + }, + { + "word": " renew.", + "start": 1811.28, + "end": 1811.6, + "probability": 1.0 + } + ] + }, + { + "id": 1064, + "text": "Right?", + "start": 1812.02, + "end": 1812.34, + "words": [ + { + "word": " Right?", + "start": 1812.02, + "end": 1812.34, + "probability": 0.6357421875 + } + ] + }, + { + "id": 1065, + "text": "I think that they should abolish the renewal process.", + "start": 1812.4, + "end": 1814.88, + "words": [ + { + "word": " I", + "start": 1812.4, + "end": 1812.54, + "probability": 0.99267578125 + }, + { + "word": " think", + "start": 1812.54, + "end": 1812.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1812.78, + "end": 1812.94, + "probability": 0.82861328125 + }, + { + "word": " they", + "start": 1812.94, + "end": 1813.08, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 1813.08, + "end": 1813.28, + "probability": 1.0 + }, + { + "word": " abolish", + "start": 1813.28, + "end": 1814.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1814.12, + "end": 1814.26, + "probability": 1.0 + }, + { + "word": " renewal", + "start": 1814.26, + "end": 1814.52, + "probability": 1.0 + }, + { + "word": " process.", + "start": 1814.52, + "end": 1814.88, + "probability": 1.0 + } + ] + }, + { + "id": 1066, + "text": "I think that it needs to be a massive patent overhaul as far as the way that U.S. deals", + "start": 1815.24, + "end": 1819.84, + "words": [ + { + "word": " I", + "start": 1815.24, + "end": 1815.56, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1815.56, + "end": 1815.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 1815.68, + "end": 1815.78, + "probability": 0.48828125 + }, + { + "word": " it", + "start": 1815.78, + "end": 1815.82, + "probability": 0.708984375 + }, + { + "word": " needs", + "start": 1815.82, + "end": 1815.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 1815.98, + "end": 1816.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 1816.1, + "end": 1816.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 1816.18, + "end": 1816.28, + "probability": 1.0 + }, + { + "word": " massive", + "start": 1816.28, + "end": 1816.7, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1816.7, + "end": 1817.04, + "probability": 1.0 + }, + { + "word": " overhaul", + "start": 1817.04, + "end": 1817.72, + "probability": 0.99365234375 + }, + { + "word": " as", + "start": 1817.72, + "end": 1818.28, + "probability": 0.97314453125 + }, + { + "word": " far", + "start": 1818.28, + "end": 1818.62, + "probability": 1.0 + }, + { + "word": " as", + "start": 1818.62, + "end": 1818.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1818.82, + "end": 1818.98, + "probability": 1.0 + }, + { + "word": " way", + "start": 1818.98, + "end": 1819.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1819.12, + "end": 1819.26, + "probability": 0.56591796875 + }, + { + "word": " U", + "start": 1819.26, + "end": 1819.38, + "probability": 0.85302734375 + }, + { + "word": ".S.", + "start": 1819.38, + "end": 1819.62, + "probability": 1.0 + }, + { + "word": " deals", + "start": 1819.62, + "end": 1819.84, + "probability": 1.0 + } + ] + }, + { + "id": 1067, + "text": "with patents.", + "start": 1819.84, + "end": 1820.08, + "words": [ + { + "word": " with", + "start": 1819.84, + "end": 1820.06, + "probability": 1.0 + }, + { + "word": " patents.", + "start": 1820.06, + "end": 1820.08, + "probability": 0.96728515625 + } + ] + }, + { + "id": 1068, + "text": "So, you think after 20 years, they shouldn't be allowed to renew the patent?", + "start": 1820.08, + "end": 1822.16, + "words": [ + { + "word": " So,", + "start": 1820.08, + "end": 1820.22, + "probability": 0.98291015625 + }, + { + "word": " you", + "start": 1820.22, + "end": 1820.24, + "probability": 0.994140625 + }, + { + "word": " think", + "start": 1820.24, + "end": 1820.4, + "probability": 1.0 + }, + { + "word": " after", + "start": 1820.4, + "end": 1820.58, + "probability": 0.99462890625 + }, + { + "word": " 20", + "start": 1820.58, + "end": 1820.84, + "probability": 0.99951171875 + }, + { + "word": " years,", + "start": 1820.84, + "end": 1821.08, + "probability": 1.0 + }, + { + "word": " they", + "start": 1821.16, + "end": 1821.2, + "probability": 0.9794921875 + }, + { + "word": " shouldn't", + "start": 1821.2, + "end": 1821.36, + "probability": 0.98828125 + }, + { + "word": " be", + "start": 1821.36, + "end": 1821.46, + "probability": 1.0 + }, + { + "word": " allowed", + "start": 1821.46, + "end": 1821.58, + "probability": 0.8837890625 + }, + { + "word": " to", + "start": 1821.58, + "end": 1821.72, + "probability": 1.0 + }, + { + "word": " renew", + "start": 1821.72, + "end": 1821.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1821.86, + "end": 1822.0, + "probability": 1.0 + }, + { + "word": " patent?", + "start": 1822.0, + "end": 1822.16, + "probability": 1.0 + } + ] + }, + { + "id": 1069, + "text": "No.", + "start": 1822.3, + "end": 1822.48, + "words": [ + { + "word": " No.", + "start": 1822.3, + "end": 1822.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1070, + "text": "So, it should be just open claim.", + "start": 1822.54, + "end": 1823.56, + "words": [ + { + "word": " So,", + "start": 1822.54, + "end": 1822.78, + "probability": 0.8427734375 + }, + { + "word": " it", + "start": 1822.82, + "end": 1822.82, + "probability": 0.9912109375 + }, + { + "word": " should", + "start": 1822.82, + "end": 1822.9, + "probability": 0.99267578125 + }, + { + "word": " be", + "start": 1822.9, + "end": 1823.0, + "probability": 0.9775390625 + }, + { + "word": " just", + "start": 1823.0, + "end": 1823.08, + "probability": 1.0 + }, + { + "word": " open", + "start": 1823.08, + "end": 1823.36, + "probability": 0.9853515625 + }, + { + "word": " claim.", + "start": 1823.36, + "end": 1823.56, + "probability": 0.342041015625 + } + ] + }, + { + "id": 1071, + "text": "Yeah.", + "start": 1823.76, + "end": 1823.98, + "words": [ + { + "word": " Yeah.", + "start": 1823.76, + "end": 1823.98, + "probability": 0.9365234375 + } + ] + }, + { + "id": 1072, + "text": "The thing is...", + "start": 1824.06, + "end": 1824.9, + "words": [ + { + "word": " The", + "start": 1824.06, + "end": 1824.2, + "probability": 0.9814453125 + }, + { + "word": " thing", + "start": 1824.2, + "end": 1824.42, + "probability": 1.0 + }, + { + "word": " is...", + "start": 1824.42, + "end": 1824.9, + "probability": 0.673828125 + } + ] + }, + { + "id": 1073, + "text": "Public domain.", + "start": 1824.9, + "end": 1825.3, + "words": [ + { + "word": " Public", + "start": 1824.9, + "end": 1825.02, + "probability": 0.9716796875 + }, + { + "word": " domain.", + "start": 1825.02, + "end": 1825.3, + "probability": 1.0 + } + ] + }, + { + "id": 1074, + "text": "What the patent does is it protects other people from profiting from your idea for a", + "start": 1825.38, + "end": 1830.6, + "words": [ + { + "word": " What", + "start": 1825.38, + "end": 1825.66, + "probability": 0.9765625 + }, + { + "word": " the", + "start": 1825.66, + "end": 1825.72, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1825.72, + "end": 1825.98, + "probability": 1.0 + }, + { + "word": " does", + "start": 1825.98, + "end": 1826.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 1826.34, + "end": 1826.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 1826.62, + "end": 1826.72, + "probability": 0.99951171875 + }, + { + "word": " protects", + "start": 1826.72, + "end": 1827.04, + "probability": 1.0 + }, + { + "word": " other", + "start": 1827.04, + "end": 1827.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 1827.68, + "end": 1828.0, + "probability": 1.0 + }, + { + "word": " from", + "start": 1828.0, + "end": 1828.46, + "probability": 1.0 + }, + { + "word": " profiting", + "start": 1828.46, + "end": 1829.44, + "probability": 1.0 + }, + { + "word": " from", + "start": 1829.44, + "end": 1829.64, + "probability": 1.0 + }, + { + "word": " your", + "start": 1829.64, + "end": 1829.82, + "probability": 1.0 + }, + { + "word": " idea", + "start": 1829.82, + "end": 1830.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 1830.18, + "end": 1830.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 1830.46, + "end": 1830.6, + "probability": 1.0 + } + ] + }, + { + "id": 1075, + "text": "certain amount of time.", + "start": 1830.6, + "end": 1831.26, + "words": [ + { + "word": " certain", + "start": 1830.6, + "end": 1830.8, + "probability": 0.998046875 + }, + { + "word": " amount", + "start": 1830.8, + "end": 1830.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 1830.94, + "end": 1831.06, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1831.06, + "end": 1831.26, + "probability": 1.0 + } + ] + }, + { + "id": 1076, + "text": "And you think there should only be a 20-year limit on that?", + "start": 1831.4, + "end": 1832.88, + "words": [ + { + "word": " And", + "start": 1831.4, + "end": 1831.5, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1831.5, + "end": 1831.58, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 1831.58, + "end": 1831.68, + "probability": 1.0 + }, + { + "word": " there", + "start": 1831.68, + "end": 1831.82, + "probability": 1.0 + }, + { + "word": " should", + "start": 1831.82, + "end": 1831.88, + "probability": 0.8779296875 + }, + { + "word": " only", + "start": 1831.88, + "end": 1832.0, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1832.0, + "end": 1832.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1832.1, + "end": 1832.2, + "probability": 1.0 + }, + { + "word": " 20", + "start": 1832.2, + "end": 1832.36, + "probability": 1.0 + }, + { + "word": "-year", + "start": 1832.36, + "end": 1832.52, + "probability": 0.98828125 + }, + { + "word": " limit", + "start": 1832.52, + "end": 1832.66, + "probability": 1.0 + }, + { + "word": " on", + "start": 1832.66, + "end": 1832.8, + "probability": 1.0 + }, + { + "word": " that?", + "start": 1832.8, + "end": 1832.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1077, + "text": "Yeah.", + "start": 1832.92, + "end": 1833.0, + "words": [ + { + "word": " Yeah.", + "start": 1832.92, + "end": 1833.0, + "probability": 0.94580078125 + } + ] + }, + { + "id": 1078, + "text": "I think so.", + "start": 1833.04, + "end": 1833.4, + "words": [ + { + "word": " I", + "start": 1833.04, + "end": 1833.1, + "probability": 0.9873046875 + }, + { + "word": " think", + "start": 1833.1, + "end": 1833.26, + "probability": 0.99951171875 + }, + { + "word": " so.", + "start": 1833.26, + "end": 1833.4, + "probability": 1.0 + } + ] + }, + { + "id": 1079, + "text": "Because I think that after 20 years, right, or 10 years even, right, that it's your product,", + "start": 1833.48, + "end": 1839.96, + "words": [ + { + "word": " Because", + "start": 1833.48, + "end": 1833.8, + "probability": 0.97900390625 + }, + { + "word": " I", + "start": 1833.8, + "end": 1834.08, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 1834.08, + "end": 1834.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 1834.38, + "end": 1834.5, + "probability": 1.0 + }, + { + "word": " after", + "start": 1834.5, + "end": 1834.9, + "probability": 1.0 + }, + { + "word": " 20", + "start": 1834.9, + "end": 1835.18, + "probability": 1.0 + }, + { + "word": " years,", + "start": 1835.18, + "end": 1835.48, + "probability": 1.0 + }, + { + "word": " right,", + "start": 1835.54, + "end": 1835.7, + "probability": 0.99365234375 + }, + { + "word": " or", + "start": 1835.82, + "end": 1836.28, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1836.28, + "end": 1836.46, + "probability": 1.0 + }, + { + "word": " years", + "start": 1836.46, + "end": 1836.72, + "probability": 1.0 + }, + { + "word": " even,", + "start": 1836.72, + "end": 1837.0, + "probability": 0.99560546875 + }, + { + "word": " right,", + "start": 1837.14, + "end": 1837.7, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 1837.78, + "end": 1838.02, + "probability": 0.9921875 + }, + { + "word": " it's", + "start": 1838.02, + "end": 1838.72, + "probability": 0.900390625 + }, + { + "word": " your", + "start": 1838.72, + "end": 1839.42, + "probability": 0.86572265625 + }, + { + "word": " product,", + "start": 1839.42, + "end": 1839.96, + "probability": 1.0 + } + ] + }, + { + "id": 1080, + "text": "your product is sort of common knowledge at that point.", + "start": 1839.96, + "end": 1841.96, + "words": [ + { + "word": " your", + "start": 1839.96, + "end": 1839.96, + "probability": 3.2186508178710938e-06 + }, + { + "word": " product", + "start": 1839.96, + "end": 1840.0, + "probability": 0.64599609375 + }, + { + "word": " is", + "start": 1840.0, + "end": 1840.38, + "probability": 0.9716796875 + }, + { + "word": " sort", + "start": 1840.38, + "end": 1840.72, + "probability": 0.95849609375 + }, + { + "word": " of", + "start": 1840.72, + "end": 1841.0, + "probability": 0.99951171875 + }, + { + "word": " common", + "start": 1841.0, + "end": 1841.24, + "probability": 0.9990234375 + }, + { + "word": " knowledge", + "start": 1841.24, + "end": 1841.6, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1841.6, + "end": 1841.76, + "probability": 0.9736328125 + }, + { + "word": " that", + "start": 1841.76, + "end": 1841.84, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1841.84, + "end": 1841.96, + "probability": 0.8359375 + } + ] + }, + { + "id": 1081, + "text": "Well, you know, I can see what you're saying, especially in the technology world.", + "start": 1841.98, + "end": 1844.48, + "words": [ + { + "word": " Well,", + "start": 1841.98, + "end": 1842.22, + "probability": 0.986328125 + }, + { + "word": " you", + "start": 1842.22, + "end": 1842.38, + "probability": 0.8916015625 + }, + { + "word": " know,", + "start": 1842.38, + "end": 1842.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 1842.54, + "end": 1842.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 1842.66, + "end": 1842.9, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 1842.9, + "end": 1843.06, + "probability": 1.0 + }, + { + "word": " what", + "start": 1843.06, + "end": 1843.16, + "probability": 0.76318359375 + }, + { + "word": " you're", + "start": 1843.16, + "end": 1843.26, + "probability": 0.9990234375 + }, + { + "word": " saying,", + "start": 1843.26, + "end": 1843.42, + "probability": 1.0 + }, + { + "word": " especially", + "start": 1843.48, + "end": 1843.6, + "probability": 0.9677734375 + }, + { + "word": " in", + "start": 1843.6, + "end": 1843.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1843.82, + "end": 1843.84, + "probability": 1.0 + }, + { + "word": " technology", + "start": 1843.84, + "end": 1844.22, + "probability": 1.0 + }, + { + "word": " world.", + "start": 1844.22, + "end": 1844.48, + "probability": 1.0 + } + ] + }, + { + "id": 1082, + "text": "After 20 years, it's going to avoid it anyways.", + "start": 1844.5, + "end": 1846.34, + "words": [ + { + "word": " After", + "start": 1844.5, + "end": 1844.62, + "probability": 0.9970703125 + }, + { + "word": " 20", + "start": 1844.62, + "end": 1844.86, + "probability": 0.99951171875 + }, + { + "word": " years,", + "start": 1844.86, + "end": 1845.1, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1845.22, + "end": 1845.3, + "probability": 0.66015625 + }, + { + "word": " going", + "start": 1845.3, + "end": 1845.6, + "probability": 0.470947265625 + }, + { + "word": " to", + "start": 1845.6, + "end": 1845.7, + "probability": 0.99951171875 + }, + { + "word": " avoid", + "start": 1845.7, + "end": 1845.94, + "probability": 0.436767578125 + }, + { + "word": " it", + "start": 1845.94, + "end": 1846.14, + "probability": 0.62353515625 + }, + { + "word": " anyways.", + "start": 1846.14, + "end": 1846.34, + "probability": 0.990234375 + } + ] + }, + { + "id": 1083, + "text": "But you got to think about when patents first came out, and even today, though.", + "start": 1846.64, + "end": 1849.66, + "words": [ + { + "word": " But", + "start": 1846.64, + "end": 1846.86, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1846.86, + "end": 1847.02, + "probability": 0.9228515625 + }, + { + "word": " got", + "start": 1847.02, + "end": 1847.2, + "probability": 0.122314453125 + }, + { + "word": " to", + "start": 1847.2, + "end": 1847.24, + "probability": 1.0 + }, + { + "word": " think", + "start": 1847.24, + "end": 1847.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 1847.4, + "end": 1847.56, + "probability": 1.0 + }, + { + "word": " when", + "start": 1847.56, + "end": 1847.9, + "probability": 0.99462890625 + }, + { + "word": " patents", + "start": 1847.9, + "end": 1848.26, + "probability": 0.99853515625 + }, + { + "word": " first", + "start": 1848.26, + "end": 1848.4, + "probability": 1.0 + }, + { + "word": " came", + "start": 1848.4, + "end": 1848.6, + "probability": 1.0 + }, + { + "word": " out,", + "start": 1848.6, + "end": 1848.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 1848.84, + "end": 1848.92, + "probability": 0.9912109375 + }, + { + "word": " even", + "start": 1848.92, + "end": 1849.06, + "probability": 1.0 + }, + { + "word": " today,", + "start": 1849.06, + "end": 1849.4, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1849.5, + "end": 1849.66, + "probability": 1.0 + } + ] + }, + { + "id": 1084, + "text": "I mean, for example, Velcro.", + "start": 1849.74, + "end": 1851.36, + "words": [ + { + "word": " I", + "start": 1849.74, + "end": 1849.84, + "probability": 0.998046875 + }, + { + "word": " mean,", + "start": 1849.84, + "end": 1849.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 1850.0, + "end": 1850.28, + "probability": 1.0 + }, + { + "word": " example,", + "start": 1850.28, + "end": 1850.58, + "probability": 1.0 + }, + { + "word": " Velcro.", + "start": 1850.82, + "end": 1851.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 1085, + "text": "Right.", + "start": 1852.1000000000001, + "end": 1852.42, + "words": [ + { + "word": " Right.", + "start": 1852.1000000000001, + "end": 1852.42, + "probability": 0.94580078125 + } + ] + }, + { + "id": 1086, + "text": "The guy who made Velcro, patent that thing, what, 40 years, 50 years ago at least?", + "start": 1852.48, + "end": 1856.58, + "words": [ + { + "word": " The", + "start": 1852.48, + "end": 1852.62, + "probability": 0.99951171875 + }, + { + "word": " guy", + "start": 1852.62, + "end": 1852.76, + "probability": 1.0 + }, + { + "word": " who", + "start": 1852.76, + "end": 1852.9, + "probability": 1.0 + }, + { + "word": " made", + "start": 1852.9, + "end": 1853.12, + "probability": 1.0 + }, + { + "word": " Velcro,", + "start": 1853.12, + "end": 1853.56, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1853.68, + "end": 1854.24, + "probability": 0.751953125 + }, + { + "word": " that", + "start": 1854.24, + "end": 1854.44, + "probability": 0.9287109375 + }, + { + "word": " thing,", + "start": 1854.44, + "end": 1854.64, + "probability": 1.0 + }, + { + "word": " what,", + "start": 1854.7, + "end": 1854.82, + "probability": 1.0 + }, + { + "word": " 40", + "start": 1854.94, + "end": 1855.4, + "probability": 1.0 + }, + { + "word": " years,", + "start": 1855.4, + "end": 1855.62, + "probability": 1.0 + }, + { + "word": " 50", + "start": 1855.72, + "end": 1855.82, + "probability": 1.0 + }, + { + "word": " years", + "start": 1855.82, + "end": 1856.0, + "probability": 1.0 + }, + { + "word": " ago", + "start": 1856.0, + "end": 1856.24, + "probability": 1.0 + }, + { + "word": " at", + "start": 1856.24, + "end": 1856.36, + "probability": 0.947265625 + }, + { + "word": " least?", + "start": 1856.36, + "end": 1856.58, + "probability": 1.0 + } + ] + }, + { + "id": 1087, + "text": "He still owns a patent, or at least his family still does.", + "start": 1856.86, + "end": 1859.24, + "words": [ + { + "word": " He", + "start": 1856.86, + "end": 1857.18, + "probability": 0.96240234375 + }, + { + "word": " still", + "start": 1857.18, + "end": 1857.44, + "probability": 1.0 + }, + { + "word": " owns", + "start": 1857.44, + "end": 1857.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1857.7, + "end": 1857.82, + "probability": 0.96533203125 + }, + { + "word": " patent,", + "start": 1857.82, + "end": 1858.06, + "probability": 1.0 + }, + { + "word": " or", + "start": 1858.1, + "end": 1858.24, + "probability": 1.0 + }, + { + "word": " at", + "start": 1858.24, + "end": 1858.34, + "probability": 1.0 + }, + { + "word": " least", + "start": 1858.34, + "end": 1858.44, + "probability": 1.0 + }, + { + "word": " his", + "start": 1858.44, + "end": 1858.56, + "probability": 1.0 + }, + { + "word": " family", + "start": 1858.56, + "end": 1858.84, + "probability": 1.0 + }, + { + "word": " still", + "start": 1858.84, + "end": 1859.02, + "probability": 1.0 + }, + { + "word": " does.", + "start": 1859.02, + "end": 1859.24, + "probability": 1.0 + } + ] + }, + { + "id": 1088, + "text": "Right.", + "start": 1859.44, + "end": 1859.7, + "words": [ + { + "word": " Right.", + "start": 1859.44, + "end": 1859.7, + "probability": 0.994140625 + } + ] + }, + { + "id": 1089, + "text": "And so, he makes money off everything.", + "start": 1859.88, + "end": 1861.28, + "words": [ + { + "word": " And", + "start": 1859.88, + "end": 1860.08, + "probability": 0.48828125 + }, + { + "word": " so,", + "start": 1860.08, + "end": 1860.32, + "probability": 0.98095703125 + }, + { + "word": " he", + "start": 1860.48, + "end": 1860.58, + "probability": 1.0 + }, + { + "word": " makes", + "start": 1860.58, + "end": 1860.8, + "probability": 1.0 + }, + { + "word": " money", + "start": 1860.8, + "end": 1860.94, + "probability": 1.0 + }, + { + "word": " off", + "start": 1860.94, + "end": 1861.06, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 1861.06, + "end": 1861.28, + "probability": 0.82861328125 + } + ] + }, + { + "id": 1090, + "text": "I think he should have the right to that, even after the 20 years is up.", + "start": 1861.42, + "end": 1864.3, + "words": [ + { + "word": " I", + "start": 1861.42, + "end": 1861.54, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1861.54, + "end": 1861.82, + "probability": 1.0 + }, + { + "word": " he", + "start": 1861.82, + "end": 1861.98, + "probability": 1.0 + }, + { + "word": " should", + "start": 1861.98, + "end": 1862.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 1862.18, + "end": 1862.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1862.32, + "end": 1862.52, + "probability": 1.0 + }, + { + "word": " right", + "start": 1862.52, + "end": 1862.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1862.66, + "end": 1862.78, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1862.78, + "end": 1862.94, + "probability": 1.0 + }, + { + "word": " even", + "start": 1863.06, + "end": 1863.3, + "probability": 1.0 + }, + { + "word": " after", + "start": 1863.3, + "end": 1863.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 1863.54, + "end": 1863.64, + "probability": 0.8056640625 + }, + { + "word": " 20", + "start": 1863.64, + "end": 1863.84, + "probability": 1.0 + }, + { + "word": " years", + "start": 1863.84, + "end": 1864.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 1864.02, + "end": 1864.14, + "probability": 0.9990234375 + }, + { + "word": " up.", + "start": 1864.14, + "end": 1864.3, + "probability": 1.0 + } + ] + }, + { + "id": 1091, + "text": "Well, I mean, if you're using the same technology, sure.", + "start": 1865.04, + "end": 1867.28, + "words": [ + { + "word": " Well,", + "start": 1865.04, + "end": 1865.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 1865.46, + "end": 1865.5, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1865.5, + "end": 1865.64, + "probability": 1.0 + }, + { + "word": " if", + "start": 1865.66, + "end": 1865.82, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1865.82, + "end": 1865.9, + "probability": 1.0 + }, + { + "word": " using", + "start": 1865.9, + "end": 1866.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1866.02, + "end": 1866.18, + "probability": 1.0 + }, + { + "word": " same", + "start": 1866.18, + "end": 1866.38, + "probability": 1.0 + }, + { + "word": " technology,", + "start": 1866.38, + "end": 1866.94, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 1867.1, + "end": 1867.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1092, + "text": "Velcro's not going to change.", + "start": 1867.92, + "end": 1868.76, + "words": [ + { + "word": " Velcro's", + "start": 1867.92, + "end": 1868.24, + "probability": 0.8955078125 + }, + { + "word": " not", + "start": 1868.24, + "end": 1868.32, + "probability": 1.0 + }, + { + "word": " going", + "start": 1868.32, + "end": 1868.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1868.4, + "end": 1868.52, + "probability": 1.0 + }, + { + "word": " change.", + "start": 1868.52, + "end": 1868.76, + "probability": 1.0 + } + ] + }, + { + "id": 1093, + "text": "I mean, it is what it is.", + "start": 1868.82, + "end": 1869.78, + "words": [ + { + "word": " I", + "start": 1868.82, + "end": 1868.98, + "probability": 0.9482421875 + }, + { + "word": " mean,", + "start": 1868.98, + "end": 1869.1, + "probability": 1.0 + }, + { + "word": " it", + "start": 1869.1, + "end": 1869.2, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1869.2, + "end": 1869.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 1869.34, + "end": 1869.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 1869.44, + "end": 1869.54, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1869.54, + "end": 1869.78, + "probability": 1.0 + } + ] + }, + { + "id": 1094, + "text": "The thing is, though, is I think it stifles, you know, creativity.", + "start": 1869.96, + "end": 1873.14, + "words": [ + { + "word": " The", + "start": 1869.96, + "end": 1870.04, + "probability": 0.916015625 + }, + { + "word": " thing", + "start": 1870.04, + "end": 1870.2, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 1870.2, + "end": 1870.42, + "probability": 1.0 + }, + { + "word": " though,", + "start": 1870.42, + "end": 1870.54, + "probability": 0.98193359375 + }, + { + "word": " is", + "start": 1870.56, + "end": 1870.64, + "probability": 0.9697265625 + }, + { + "word": " I", + "start": 1870.64, + "end": 1870.7, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1870.7, + "end": 1870.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 1870.92, + "end": 1871.04, + "probability": 0.99951171875 + }, + { + "word": " stifles,", + "start": 1871.04, + "end": 1871.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 1871.48, + "end": 1872.68, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 1872.68, + "end": 1872.88, + "probability": 1.0 + }, + { + "word": " creativity.", + "start": 1872.88, + "end": 1873.14, + "probability": 0.93603515625 + } + ] + }, + { + "id": 1095, + "text": "Okay.", + "start": 1873.5400000000002, + "end": 1873.9, + "words": [ + { + "word": " Okay.", + "start": 1873.5400000000002, + "end": 1873.9, + "probability": 0.2548828125 + } + ] + }, + { + "id": 1096, + "text": "Right?", + "start": 1874.02, + "end": 1874.2, + "words": [ + { + "word": " Right?", + "start": 1874.02, + "end": 1874.2, + "probability": 0.472412109375 + } + ] + }, + { + "id": 1097, + "text": "I think that if after 10 years, you let everybody start making it, then somebody will find a", + "start": 1874.22, + "end": 1878.04, + "words": [ + { + "word": " I", + "start": 1874.22, + "end": 1874.34, + "probability": 0.9912109375 + }, + { + "word": " think", + "start": 1874.34, + "end": 1874.66, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1874.66, + "end": 1874.78, + "probability": 1.0 + }, + { + "word": " if", + "start": 1874.78, + "end": 1874.96, + "probability": 0.9990234375 + }, + { + "word": " after", + "start": 1874.96, + "end": 1875.28, + "probability": 0.7900390625 + }, + { + "word": " 10", + "start": 1875.28, + "end": 1875.52, + "probability": 0.79833984375 + }, + { + "word": " years,", + "start": 1875.52, + "end": 1875.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 1875.86, + "end": 1875.98, + "probability": 0.99951171875 + }, + { + "word": " let", + "start": 1875.98, + "end": 1876.1, + "probability": 0.9990234375 + }, + { + "word": " everybody", + "start": 1876.1, + "end": 1876.38, + "probability": 1.0 + }, + { + "word": " start", + "start": 1876.38, + "end": 1876.68, + "probability": 1.0 + }, + { + "word": " making", + "start": 1876.68, + "end": 1877.0, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1877.0, + "end": 1877.16, + "probability": 1.0 + }, + { + "word": " then", + "start": 1877.22, + "end": 1877.34, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1877.34, + "end": 1877.62, + "probability": 1.0 + }, + { + "word": " will", + "start": 1877.62, + "end": 1877.74, + "probability": 1.0 + }, + { + "word": " find", + "start": 1877.74, + "end": 1877.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 1877.96, + "end": 1878.04, + "probability": 1.0 + } + ] + }, + { + "id": 1098, + "text": "way to do it better.", + "start": 1878.04, + "end": 1878.76, + "words": [ + { + "word": " way", + "start": 1878.04, + "end": 1878.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1878.14, + "end": 1878.22, + "probability": 1.0 + }, + { + "word": " do", + "start": 1878.22, + "end": 1878.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 1878.36, + "end": 1878.46, + "probability": 1.0 + }, + { + "word": " better.", + "start": 1878.46, + "end": 1878.76, + "probability": 1.0 + } + ] + }, + { + "id": 1099, + "text": "Okay.", + "start": 1878.92, + "end": 1879.18, + "words": [ + { + "word": " Okay.", + "start": 1878.92, + "end": 1879.18, + "probability": 0.8056640625 + } + ] + }, + { + "id": 1100, + "text": "All right?", + "start": 1879.34, + "end": 1879.72, + "words": [ + { + "word": " All", + "start": 1879.34, + "end": 1879.58, + "probability": 0.8486328125 + }, + { + "word": " right?", + "start": 1879.58, + "end": 1879.72, + "probability": 1.0 + } + ] + }, + { + "id": 1101, + "text": "Now, and maybe it's just me.", + "start": 1879.9, + "end": 1882.06, + "words": [ + { + "word": " Now,", + "start": 1879.9, + "end": 1880.26, + "probability": 0.98681640625 + }, + { + "word": " and", + "start": 1880.46, + "end": 1881.4, + "probability": 0.9873046875 + }, + { + "word": " maybe", + "start": 1881.4, + "end": 1881.66, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1881.66, + "end": 1881.8, + "probability": 1.0 + }, + { + "word": " just", + "start": 1881.8, + "end": 1881.9, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1881.9, + "end": 1882.06, + "probability": 1.0 + } + ] + }, + { + "id": 1102, + "text": "I'm not terribly greedy about the cash part of it.", + "start": 1882.1, + "end": 1884.12, + "words": [ + { + "word": " I'm", + "start": 1882.1, + "end": 1882.22, + "probability": 1.0 + }, + { + "word": " not", + "start": 1882.22, + "end": 1882.32, + "probability": 1.0 + }, + { + "word": " terribly", + "start": 1882.32, + "end": 1882.6, + "probability": 1.0 + }, + { + "word": " greedy", + "start": 1882.6, + "end": 1883.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 1883.0, + "end": 1883.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1883.3, + "end": 1883.48, + "probability": 1.0 + }, + { + "word": " cash", + "start": 1883.48, + "end": 1883.66, + "probability": 0.9990234375 + }, + { + "word": " part", + "start": 1883.66, + "end": 1883.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 1883.9, + "end": 1884.04, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1884.04, + "end": 1884.12, + "probability": 1.0 + } + ] + }, + { + "id": 1103, + "text": "Right.", + "start": 1884.2, + "end": 1884.4, + "words": [ + { + "word": " Right.", + "start": 1884.2, + "end": 1884.4, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1104, + "text": "Right.", + "start": 1884.48, + "end": 1884.72, + "words": [ + { + "word": " Right.", + "start": 1884.48, + "end": 1884.72, + "probability": 0.88525390625 + } + ] + }, + { + "id": 1105, + "text": "And don't get me wrong.", + "start": 1884.84, + "end": 1886.66, + "words": [ + { + "word": " And", + "start": 1884.84, + "end": 1885.14, + "probability": 0.83740234375 + }, + { + "word": " don't", + "start": 1885.14, + "end": 1886.24, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 1886.24, + "end": 1886.34, + "probability": 1.0 + }, + { + "word": " me", + "start": 1886.34, + "end": 1886.46, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 1886.46, + "end": 1886.66, + "probability": 1.0 + } + ] + }, + { + "id": 1106, + "text": "I know people who, like, are invented, like, the cellular technology, right?", + "start": 1886.7, + "end": 1891.82, + "words": [ + { + "word": " I", + "start": 1886.7, + "end": 1886.84, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 1886.84, + "end": 1887.08, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1887.08, + "end": 1887.44, + "probability": 1.0 + }, + { + "word": " who,", + "start": 1887.44, + "end": 1888.14, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1888.18, + "end": 1888.52, + "probability": 1.0 + }, + { + "word": " are", + "start": 1888.58, + "end": 1888.92, + "probability": 1.0 + }, + { + "word": " invented,", + "start": 1888.92, + "end": 1889.54, + "probability": 0.998046875 + }, + { + "word": " like,", + "start": 1889.66, + "end": 1889.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1889.92, + "end": 1890.1, + "probability": 1.0 + }, + { + "word": " cellular", + "start": 1890.1, + "end": 1890.54, + "probability": 1.0 + }, + { + "word": " technology,", + "start": 1890.54, + "end": 1891.22, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1891.42, + "end": 1891.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1107, + "text": "And these guys are rolling in dough.", + "start": 1891.92, + "end": 1894.32, + "words": [ + { + "word": " And", + "start": 1891.92, + "end": 1892.22, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 1892.22, + "end": 1892.88, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1892.88, + "end": 1893.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 1893.18, + "end": 1893.48, + "probability": 1.0 + }, + { + "word": " rolling", + "start": 1893.48, + "end": 1893.94, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1893.94, + "end": 1894.16, + "probability": 0.998046875 + }, + { + "word": " dough.", + "start": 1894.16, + "end": 1894.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1108, + "text": "Yeah.", + "start": 1894.52, + "end": 1894.8, + "words": [ + { + "word": " Yeah.", + "start": 1894.52, + "end": 1894.8, + "probability": 0.96826171875 + } + ] + }, + { + "id": 1109, + "text": "Right?", + "start": 1894.86, + "end": 1895.16, + "words": [ + { + "word": " Right?", + "start": 1894.86, + "end": 1895.16, + "probability": 0.72314453125 + } + ] + }, + { + "id": 1110, + "text": "And that's great for them.", + "start": 1895.22, + "end": 1897.46, + "words": [ + { + "word": " And", + "start": 1895.22, + "end": 1895.4, + "probability": 0.99560546875 + }, + { + "word": " that's", + "start": 1895.4, + "end": 1895.9, + "probability": 1.0 + }, + { + "word": " great", + "start": 1895.9, + "end": 1896.88, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 1896.88, + "end": 1897.3, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1897.3, + "end": 1897.46, + "probability": 1.0 + } + ] + }, + { + "id": 1111, + "text": "It really is.", + "start": 1897.5, + "end": 1898.1, + "words": [ + { + "word": " It", + "start": 1897.5, + "end": 1897.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 1897.62, + "end": 1897.84, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1897.84, + "end": 1898.1, + "probability": 1.0 + } + ] + }, + { + "id": 1112, + "text": "Right.", + "start": 1898.6000000000001, + "end": 1898.96, + "words": [ + { + "word": " Right.", + "start": 1898.6000000000001, + "end": 1898.96, + "probability": 0.120849609375 + } + ] + }, + { + "id": 1113, + "text": "Right.", + "start": 1898.96, + "end": 1899.12, + "words": [ + { + "word": " Right.", + "start": 1898.96, + "end": 1899.12, + "probability": 0.33447265625 + } + ] + }, + { + "id": 1114, + "text": "Right.", + "start": 1899.12, + "end": 1899.4, + "words": [ + { + "word": " Right.", + "start": 1899.12, + "end": 1899.4, + "probability": 0.51953125 + } + ] + }, + { + "id": 1115, + "text": "Right.", + "start": 1899.4, + "end": 1899.42, + "words": [ + { + "word": " Right.", + "start": 1899.4, + "end": 1899.42, + "probability": 0.6220703125 + } + ] + }, + { + "id": 1116, + "text": "", + "start": 1899.42, + "end": 1899.42, + "words": [] + }, + { + "id": 1117, + "text": "", + "start": 1899.42, + "end": 1899.42, + "words": [] + }, + { + "id": 1118, + "text": "", + "start": 1899.42, + "end": 1899.42, + "words": [] + }, + { + "id": 1119, + "text": "", + "start": 1899.42, + "end": 1899.42, + "words": [] + }, + { + "id": 1120, + "text": "", + "start": 1899.46, + "end": 1899.46, + "words": [] + }, + { + "id": 1121, + "text": "", + "start": 1899.92, + "end": 1899.92, + "words": [] + }, + { + "id": 1122, + "text": "", + "start": 1899.92, + "end": 1899.92, + "words": [] + }, + { + "id": 1123, + "text": "", + "start": 1899.92, + "end": 1899.92, + "words": [] + }, + { + "id": 1124, + "text": "", + "start": 1899.94, + "end": 1899.94, + "words": [] + }, + { + "id": 1125, + "text": "", + "start": 1899.94, + "end": 1899.94, + "words": [] + }, + { + "id": 1126, + "text": "And it can allow people to expand upon ideas.", + "start": 1899.94, + "end": 1901.72, + "words": [ + { + "word": " And", + "start": 1899.94, + "end": 1899.94, + "probability": 0.01322174072265625 + }, + { + "word": " it", + "start": 1899.94, + "end": 1899.94, + "probability": 0.0411376953125 + }, + { + "word": " can", + "start": 1899.94, + "end": 1899.94, + "probability": 0.07989501953125 + }, + { + "word": " allow", + "start": 1899.94, + "end": 1899.94, + "probability": 0.7841796875 + }, + { + "word": " people", + "start": 1899.94, + "end": 1900.26, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 1900.26, + "end": 1900.6, + "probability": 0.9970703125 + }, + { + "word": " expand", + "start": 1900.6, + "end": 1900.92, + "probability": 0.99755859375 + }, + { + "word": " upon", + "start": 1900.92, + "end": 1901.24, + "probability": 0.9921875 + }, + { + "word": " ideas.", + "start": 1901.24, + "end": 1901.72, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1127, + "text": "Right?", + "start": 1902.3600000000001, + "end": 1902.72, + "words": [ + { + "word": " Right?", + "start": 1902.3600000000001, + "end": 1902.72, + "probability": 0.259521484375 + } + ] + }, + { + "id": 1128, + "text": "You can find a new way to do things, and you can't do that, at least, the way it works", + "start": 1903.1000000000001, + "end": 1908.92, + "words": [ + { + "word": " You", + "start": 1903.1000000000001, + "end": 1903.46, + "probability": 0.7080078125 + }, + { + "word": " can", + "start": 1903.46, + "end": 1903.62, + "probability": 0.99755859375 + }, + { + "word": " find", + "start": 1903.62, + "end": 1903.88, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1903.88, + "end": 1903.98, + "probability": 0.9970703125 + }, + { + "word": " new", + "start": 1903.98, + "end": 1904.1, + "probability": 0.99853515625 + }, + { + "word": " way", + "start": 1904.1, + "end": 1904.26, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1904.26, + "end": 1904.38, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1904.38, + "end": 1904.52, + "probability": 0.99951171875 + }, + { + "word": " things,", + "start": 1904.52, + "end": 1904.88, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1905.04, + "end": 1905.34, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1905.34, + "end": 1905.42, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 1905.42, + "end": 1905.76, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 1905.76, + "end": 1905.96, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 1905.96, + "end": 1906.32, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1906.42, + "end": 1906.6, + "probability": 0.99853515625 + }, + { + "word": " least,", + "start": 1906.6, + "end": 1906.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1907.0, + "end": 1907.92, + "probability": 0.9775390625 + }, + { + "word": " way", + "start": 1907.92, + "end": 1908.66, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1908.66, + "end": 1908.78, + "probability": 0.99072265625 + }, + { + "word": " works", + "start": 1908.78, + "end": 1908.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1129, + "text": "right now is that I can go ahead and come up with an alternative to Velcro.", + "start": 1908.92, + "end": 1912.08, + "words": [ + { + "word": " right", + "start": 1908.92, + "end": 1909.08, + "probability": 0.9970703125 + }, + { + "word": " now", + "start": 1909.08, + "end": 1909.32, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1909.32, + "end": 1909.48, + "probability": 0.91845703125 + }, + { + "word": " that", + "start": 1909.48, + "end": 1909.58, + "probability": 0.92626953125 + }, + { + "word": " I", + "start": 1909.58, + "end": 1909.94, + "probability": 0.9716796875 + }, + { + "word": " can", + "start": 1909.94, + "end": 1910.14, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1910.14, + "end": 1910.26, + "probability": 0.99169921875 + }, + { + "word": " ahead", + "start": 1910.26, + "end": 1910.44, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1910.44, + "end": 1910.58, + "probability": 0.99658203125 + }, + { + "word": " come", + "start": 1910.58, + "end": 1910.72, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 1910.72, + "end": 1910.84, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1910.84, + "end": 1910.98, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1910.98, + "end": 1911.14, + "probability": 0.99658203125 + }, + { + "word": " alternative", + "start": 1911.14, + "end": 1911.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1911.5, + "end": 1911.74, + "probability": 0.998046875 + }, + { + "word": " Velcro.", + "start": 1911.74, + "end": 1912.08, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1130, + "text": "Right.", + "start": 1912.36, + "end": 1912.72, + "words": [ + { + "word": " Right.", + "start": 1912.36, + "end": 1912.72, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1131, + "text": "Right?", + "start": 1912.74, + "end": 1912.96, + "words": [ + { + "word": " Right?", + "start": 1912.74, + "end": 1912.96, + "probability": 0.81005859375 + } + ] + }, + { + "id": 1132, + "text": "As long as I can produce it myself.", + "start": 1913.02, + "end": 1914.66, + "words": [ + { + "word": " As", + "start": 1913.02, + "end": 1913.3, + "probability": 0.99609375 + }, + { + "word": " long", + "start": 1913.3, + "end": 1913.46, + "probability": 1.0 + }, + { + "word": " as", + "start": 1913.46, + "end": 1913.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 1913.72, + "end": 1913.86, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1913.86, + "end": 1914.04, + "probability": 0.99951171875 + }, + { + "word": " produce", + "start": 1914.04, + "end": 1914.3, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1914.3, + "end": 1914.42, + "probability": 0.99755859375 + }, + { + "word": " myself.", + "start": 1914.42, + "end": 1914.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1133, + "text": "Right?", + "start": 1915.4, + "end": 1915.76, + "words": [ + { + "word": " Right?", + "start": 1915.4, + "end": 1915.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1134, + "text": "And which I'm not doing.", + "start": 1915.84, + "end": 1916.9, + "words": [ + { + "word": " And", + "start": 1915.84, + "end": 1915.96, + "probability": 0.52099609375 + }, + { + "word": " which", + "start": 1915.96, + "end": 1916.12, + "probability": 0.96435546875 + }, + { + "word": " I'm", + "start": 1916.12, + "end": 1916.4, + "probability": 0.99609375 + }, + { + "word": " not", + "start": 1916.4, + "end": 1916.56, + "probability": 0.99951171875 + }, + { + "word": " doing.", + "start": 1916.56, + "end": 1916.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1135, + "text": "Well, see, a patent doesn't prevent you from improving a current product, though.", + "start": 1917.14, + "end": 1921.48, + "words": [ + { + "word": " Well,", + "start": 1917.14, + "end": 1917.46, + "probability": 0.9912109375 + }, + { + "word": " see,", + "start": 1917.5, + "end": 1917.58, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1917.76, + "end": 1918.0, + "probability": 0.99951171875 + }, + { + "word": " patent", + "start": 1918.0, + "end": 1918.26, + "probability": 0.99853515625 + }, + { + "word": " doesn't", + "start": 1918.26, + "end": 1918.72, + "probability": 0.99951171875 + }, + { + "word": " prevent", + "start": 1918.72, + "end": 1919.14, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1919.14, + "end": 1919.44, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1919.44, + "end": 1919.66, + "probability": 1.0 + }, + { + "word": " improving", + "start": 1919.66, + "end": 1920.16, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1920.16, + "end": 1920.38, + "probability": 0.7109375 + }, + { + "word": " current", + "start": 1920.38, + "end": 1920.66, + "probability": 0.99658203125 + }, + { + "word": " product,", + "start": 1920.66, + "end": 1921.22, + "probability": 0.99951171875 + }, + { + "word": " though.", + "start": 1921.3, + "end": 1921.48, + "probability": 1.0 + } + ] + }, + { + "id": 1136, + "text": "See, somebody can own a patent to something, and then you can go ahead and try to make", + "start": 1921.56, + "end": 1925.62, + "words": [ + { + "word": " See,", + "start": 1921.56, + "end": 1921.72, + "probability": 0.96142578125 + }, + { + "word": " somebody", + "start": 1921.82, + "end": 1922.46, + "probability": 0.994140625 + }, + { + "word": " can", + "start": 1922.46, + "end": 1922.62, + "probability": 0.9658203125 + }, + { + "word": " own", + "start": 1922.62, + "end": 1922.76, + "probability": 0.98291015625 + }, + { + "word": " a", + "start": 1922.76, + "end": 1922.88, + "probability": 1.0 + }, + { + "word": " patent", + "start": 1922.88, + "end": 1923.14, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1923.14, + "end": 1923.32, + "probability": 0.99951171875 + }, + { + "word": " something,", + "start": 1923.32, + "end": 1923.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 1923.78, + "end": 1924.3, + "probability": 1.0 + }, + { + "word": " then", + "start": 1924.3, + "end": 1924.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1924.44, + "end": 1924.64, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1924.64, + "end": 1924.94, + "probability": 1.0 + }, + { + "word": " go", + "start": 1924.94, + "end": 1925.14, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 1925.14, + "end": 1925.26, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1925.26, + "end": 1925.32, + "probability": 0.99951171875 + }, + { + "word": " try", + "start": 1925.32, + "end": 1925.42, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1925.42, + "end": 1925.48, + "probability": 0.99658203125 + }, + { + "word": " make", + "start": 1925.48, + "end": 1925.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1137, + "text": "an improvement to said patent.", + "start": 1925.62, + "end": 1926.68, + "words": [ + { + "word": " an", + "start": 1925.62, + "end": 1925.62, + "probability": 0.99951171875 + }, + { + "word": " improvement", + "start": 1925.62, + "end": 1925.98, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1925.98, + "end": 1926.24, + "probability": 1.0 + }, + { + "word": " said", + "start": 1926.24, + "end": 1926.38, + "probability": 0.99658203125 + }, + { + "word": " patent.", + "start": 1926.38, + "end": 1926.68, + "probability": 1.0 + } + ] + }, + { + "id": 1138, + "text": "Right.", + "start": 1926.82, + "end": 1927.14, + "words": [ + { + "word": " Right.", + "start": 1926.82, + "end": 1927.14, + "probability": 0.0008502006530761719 + } + ] + }, + { + "id": 1139, + "text": "And then all you have to do is just give a licensing.", + "start": 1927.14, + "end": 1929.32, + "words": [ + { + "word": " And", + "start": 1927.14, + "end": 1927.14, + "probability": 0.16845703125 + }, + { + "word": " then", + "start": 1927.14, + "end": 1927.16, + "probability": 0.947265625 + }, + { + "word": " all", + "start": 1927.16, + "end": 1927.62, + "probability": 0.650390625 + }, + { + "word": " you", + "start": 1927.62, + "end": 1927.88, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1927.88, + "end": 1928.04, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1928.04, + "end": 1928.14, + "probability": 1.0 + }, + { + "word": " do", + "start": 1928.14, + "end": 1928.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 1928.32, + "end": 1928.56, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1928.56, + "end": 1928.72, + "probability": 0.98876953125 + }, + { + "word": " give", + "start": 1928.72, + "end": 1928.86, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 1928.86, + "end": 1928.98, + "probability": 0.99658203125 + }, + { + "word": " licensing.", + "start": 1928.98, + "end": 1929.32, + "probability": 0.873046875 + } + ] + }, + { + "id": 1140, + "text": "A licensing fee to the person who made the original product.", + "start": 1929.32, + "end": 1932.88, + "words": [ + { + "word": " A", + "start": 1929.32, + "end": 1929.72, + "probability": 0.04107666015625 + }, + { + "word": " licensing", + "start": 1929.72, + "end": 1930.1, + "probability": 0.99658203125 + }, + { + "word": " fee", + "start": 1930.1, + "end": 1930.6, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 1930.6, + "end": 1930.78, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 1930.78, + "end": 1930.9, + "probability": 0.99951171875 + }, + { + "word": " person", + "start": 1930.9, + "end": 1931.22, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 1931.22, + "end": 1931.34, + "probability": 0.99853515625 + }, + { + "word": " made", + "start": 1931.34, + "end": 1931.82, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1931.82, + "end": 1931.92, + "probability": 0.99658203125 + }, + { + "word": " original", + "start": 1931.92, + "end": 1932.32, + "probability": 0.9990234375 + }, + { + "word": " product.", + "start": 1932.32, + "end": 1932.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1141, + "text": "Right.", + "start": 1933.1, + "end": 1933.22, + "words": [ + { + "word": " Right.", + "start": 1933.1, + "end": 1933.22, + "probability": 0.53125 + } + ] + }, + { + "id": 1142, + "text": "Well, here's my issue with this.", + "start": 1933.24, + "end": 1935.28, + "words": [ + { + "word": " Well,", + "start": 1933.24, + "end": 1933.38, + "probability": 0.98095703125 + }, + { + "word": " here's", + "start": 1933.4, + "end": 1933.66, + "probability": 0.998046875 + }, + { + "word": " my", + "start": 1933.66, + "end": 1934.1, + "probability": 0.99169921875 + }, + { + "word": " issue", + "start": 1934.1, + "end": 1934.84, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 1934.84, + "end": 1935.06, + "probability": 1.0 + }, + { + "word": " this.", + "start": 1935.06, + "end": 1935.28, + "probability": 1.0 + } + ] + }, + { + "id": 1143, + "text": "Okay.", + "start": 1935.34, + "end": 1935.56, + "words": [ + { + "word": " Okay.", + "start": 1935.34, + "end": 1935.56, + "probability": 0.90576171875 + } + ] + }, + { + "id": 1144, + "text": "Is that I think that the backyard inventors, you know, people like me.", + "start": 1935.66, + "end": 1939.44, + "words": [ + { + "word": " Is", + "start": 1935.66, + "end": 1935.96, + "probability": 0.7900390625 + }, + { + "word": " that", + "start": 1935.96, + "end": 1936.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 1936.06, + "end": 1936.24, + "probability": 1.0 + }, + { + "word": " think", + "start": 1936.24, + "end": 1936.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 1936.42, + "end": 1936.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1936.6, + "end": 1936.76, + "probability": 1.0 + }, + { + "word": " backyard", + "start": 1936.76, + "end": 1937.36, + "probability": 0.99755859375 + }, + { + "word": " inventors,", + "start": 1937.36, + "end": 1938.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 1938.14, + "end": 1938.32, + "probability": 0.14404296875 + }, + { + "word": " know,", + "start": 1938.32, + "end": 1938.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 1938.7, + "end": 1938.9, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1938.9, + "end": 1939.18, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1939.18, + "end": 1939.44, + "probability": 1.0 + } + ] + }, + { + "id": 1145, + "text": "Right.", + "start": 1939.6, + "end": 1939.8, + "words": [ + { + "word": " Right.", + "start": 1939.6, + "end": 1939.8, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1146, + "text": "We have no hope of making improvements to things that really have a huge or significant", + "start": 1940.14, + "end": 1944.5, + "words": [ + { + "word": " We", + "start": 1940.14, + "end": 1940.54, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 1940.54, + "end": 1940.72, + "probability": 1.0 + }, + { + "word": " no", + "start": 1940.72, + "end": 1940.88, + "probability": 1.0 + }, + { + "word": " hope", + "start": 1940.88, + "end": 1941.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 1941.16, + "end": 1941.36, + "probability": 1.0 + }, + { + "word": " making", + "start": 1941.36, + "end": 1941.62, + "probability": 1.0 + }, + { + "word": " improvements", + "start": 1941.62, + "end": 1941.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1941.94, + "end": 1942.26, + "probability": 1.0 + }, + { + "word": " things", + "start": 1942.26, + "end": 1942.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 1942.46, + "end": 1942.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 1942.62, + "end": 1942.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 1942.88, + "end": 1943.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 1943.48, + "end": 1943.64, + "probability": 1.0 + }, + { + "word": " huge", + "start": 1943.64, + "end": 1943.88, + "probability": 1.0 + }, + { + "word": " or", + "start": 1943.88, + "end": 1944.12, + "probability": 1.0 + }, + { + "word": " significant", + "start": 1944.12, + "end": 1944.5, + "probability": 1.0 + } + ] + }, + { + "id": 1147, + "text": "impact on society.", + "start": 1944.5, + "end": 1946.08, + "words": [ + { + "word": " impact", + "start": 1944.5, + "end": 1944.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 1944.88, + "end": 1945.68, + "probability": 1.0 + }, + { + "word": " society.", + "start": 1945.68, + "end": 1946.08, + "probability": 1.0 + } + ] + }, + { + "id": 1148, + "text": "Okay.", + "start": 1946.3, + "end": 1946.52, + "words": [ + { + "word": " Okay.", + "start": 1946.3, + "end": 1946.52, + "probability": 0.97265625 + } + ] + }, + { + "id": 1149, + "text": "And if you allow the larger companies, the people with research and development, you", + "start": 1946.82, + "end": 1951.04, + "words": [ + { + "word": " And", + "start": 1946.82, + "end": 1947.22, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1947.22, + "end": 1947.5, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1947.5, + "end": 1947.62, + "probability": 1.0 + }, + { + "word": " allow", + "start": 1947.62, + "end": 1947.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1947.88, + "end": 1948.18, + "probability": 1.0 + }, + { + "word": " larger", + "start": 1948.18, + "end": 1948.42, + "probability": 1.0 + }, + { + "word": " companies,", + "start": 1948.42, + "end": 1948.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1948.86, + "end": 1948.94, + "probability": 1.0 + }, + { + "word": " people", + "start": 1948.94, + "end": 1949.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 1949.14, + "end": 1949.4, + "probability": 1.0 + }, + { + "word": " research", + "start": 1949.4, + "end": 1949.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 1949.8, + "end": 1950.0, + "probability": 1.0 + }, + { + "word": " development,", + "start": 1950.0, + "end": 1950.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 1950.5, + "end": 1951.04, + "probability": 1.0 + } + ] + }, + { + "id": 1150, + "text": "know, budgets, to go out and say, okay, it's been 10 years, let's try to build it better.", + "start": 1951.04, + "end": 1955.32, + "words": [ + { + "word": " know,", + "start": 1951.04, + "end": 1951.18, + "probability": 0.99951171875 + }, + { + "word": " budgets,", + "start": 1951.18, + "end": 1951.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1951.72, + "end": 1952.34, + "probability": 1.0 + }, + { + "word": " go", + "start": 1952.34, + "end": 1952.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 1952.48, + "end": 1952.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 1952.66, + "end": 1952.86, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1952.86, + "end": 1953.06, + "probability": 1.0 + }, + { + "word": " okay,", + "start": 1953.12, + "end": 1953.3, + "probability": 0.95361328125 + }, + { + "word": " it's", + "start": 1953.38, + "end": 1953.52, + "probability": 1.0 + }, + { + "word": " been", + "start": 1953.52, + "end": 1953.66, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1953.66, + "end": 1953.86, + "probability": 0.76904296875 + }, + { + "word": " years,", + "start": 1953.86, + "end": 1954.08, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1954.2, + "end": 1954.52, + "probability": 1.0 + }, + { + "word": " try", + "start": 1954.52, + "end": 1954.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1954.66, + "end": 1954.8, + "probability": 1.0 + }, + { + "word": " build", + "start": 1954.8, + "end": 1954.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 1954.96, + "end": 1955.08, + "probability": 1.0 + }, + { + "word": " better.", + "start": 1955.08, + "end": 1955.32, + "probability": 1.0 + } + ] + }, + { + "id": 1151, + "text": "Right.", + "start": 1955.44, + "end": 1955.78, + "words": [ + { + "word": " Right.", + "start": 1955.44, + "end": 1955.78, + "probability": 0.97998046875 + } + ] + }, + { + "id": 1152, + "text": "Right.", + "start": 1955.8, + "end": 1956.0, + "words": [ + { + "word": " Right.", + "start": 1955.8, + "end": 1956.0, + "probability": 0.4287109375 + } + ] + }, + { + "id": 1153, + "text": "And you have more players in the game with more money in the game.", + "start": 1956.0, + "end": 1959.3, + "words": [ + { + "word": " And", + "start": 1956.0, + "end": 1956.0, + "probability": 0.58740234375 + }, + { + "word": " you", + "start": 1956.0, + "end": 1956.18, + "probability": 0.92822265625 + }, + { + "word": " have", + "start": 1956.18, + "end": 1956.34, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 1956.34, + "end": 1956.56, + "probability": 0.97998046875 + }, + { + "word": " players", + "start": 1956.56, + "end": 1957.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 1957.78, + "end": 1958.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1958.0, + "end": 1958.08, + "probability": 1.0 + }, + { + "word": " game", + "start": 1958.08, + "end": 1958.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 1958.34, + "end": 1958.52, + "probability": 0.9697265625 + }, + { + "word": " more", + "start": 1958.52, + "end": 1958.68, + "probability": 1.0 + }, + { + "word": " money", + "start": 1958.68, + "end": 1958.98, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1958.98, + "end": 1959.12, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 1959.12, + "end": 1959.2, + "probability": 0.99853515625 + }, + { + "word": " game.", + "start": 1959.2, + "end": 1959.3, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1154, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1155, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1156, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1157, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1158, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1159, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1160, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1161, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1162, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1163, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1164, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1165, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1166, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1167, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1168, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1169, + "text": "", + "start": 1959.3, + "end": 1959.3, + "words": [] + }, + { + "id": 1170, + "text": "Then you're going to get a better product out of it.", + "start": 1959.3, + "end": 1961.56, + "words": [ + { + "word": " Then", + "start": 1959.3, + "end": 1959.94, + "probability": 0.060333251953125 + }, + { + "word": " you're", + "start": 1959.94, + "end": 1960.46, + "probability": 0.9609375 + }, + { + "word": " going", + "start": 1960.46, + "end": 1960.52, + "probability": 0.89208984375 + }, + { + "word": " to", + "start": 1960.52, + "end": 1960.6, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 1960.6, + "end": 1960.7, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1960.7, + "end": 1960.76, + "probability": 0.9951171875 + }, + { + "word": " better", + "start": 1960.76, + "end": 1960.88, + "probability": 0.99853515625 + }, + { + "word": " product", + "start": 1960.88, + "end": 1961.14, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 1961.14, + "end": 1961.42, + "probability": 0.321044921875 + }, + { + "word": " of", + "start": 1961.42, + "end": 1961.44, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 1961.44, + "end": 1961.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1171, + "text": "Okay.", + "start": 1961.58, + "end": 1961.64, + "words": [ + { + "word": " Okay.", + "start": 1961.58, + "end": 1961.64, + "probability": 0.064697265625 + } + ] + }, + { + "id": 1172, + "text": "All right.", + "start": 1961.64, + "end": 1961.84, + "words": [ + { + "word": " All", + "start": 1961.64, + "end": 1961.7, + "probability": 0.9453125 + }, + { + "word": " right.", + "start": 1961.7, + "end": 1961.84, + "probability": 1.0 + } + ] + }, + { + "id": 1173, + "text": "I can see that.", + "start": 1961.88, + "end": 1962.36, + "words": [ + { + "word": " I", + "start": 1961.88, + "end": 1962.0, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1962.0, + "end": 1962.08, + "probability": 1.0 + }, + { + "word": " see", + "start": 1962.08, + "end": 1962.24, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1962.24, + "end": 1962.36, + "probability": 1.0 + } + ] + }, + { + "id": 1174, + "text": "Yeah.", + "start": 1962.5, + "end": 1962.68, + "words": [ + { + "word": " Yeah.", + "start": 1962.5, + "end": 1962.68, + "probability": 0.9365234375 + } + ] + }, + { + "id": 1175, + "text": "So I think the secondary market for patents is ridiculous.", + "start": 1962.78, + "end": 1965.68, + "words": [ + { + "word": " So", + "start": 1962.78, + "end": 1963.08, + "probability": 0.92529296875 + }, + { + "word": " I", + "start": 1963.08, + "end": 1963.3, + "probability": 0.77978515625 + }, + { + "word": " think", + "start": 1963.3, + "end": 1963.6, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1963.6, + "end": 1963.72, + "probability": 1.0 + }, + { + "word": " secondary", + "start": 1963.72, + "end": 1964.08, + "probability": 0.99951171875 + }, + { + "word": " market", + "start": 1964.08, + "end": 1964.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 1964.4, + "end": 1964.62, + "probability": 1.0 + }, + { + "word": " patents", + "start": 1964.62, + "end": 1964.94, + "probability": 1.0 + }, + { + "word": " is", + "start": 1964.94, + "end": 1965.18, + "probability": 1.0 + }, + { + "word": " ridiculous.", + "start": 1965.18, + "end": 1965.68, + "probability": 1.0 + } + ] + }, + { + "id": 1176, + "text": "And I know it's not terribly computer related.", + "start": 1965.84, + "end": 1967.72, + "words": [ + { + "word": " And", + "start": 1965.84, + "end": 1966.04, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 1966.04, + "end": 1966.14, + "probability": 1.0 + }, + { + "word": " know", + "start": 1966.14, + "end": 1966.24, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1966.24, + "end": 1966.38, + "probability": 1.0 + }, + { + "word": " not", + "start": 1966.38, + "end": 1966.48, + "probability": 1.0 + }, + { + "word": " terribly", + "start": 1966.48, + "end": 1966.9, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1966.9, + "end": 1967.3, + "probability": 1.0 + }, + { + "word": " related.", + "start": 1967.3, + "end": 1967.72, + "probability": 0.51171875 + } + ] + }, + { + "id": 1177, + "text": "Right.", + "start": 1967.86, + "end": 1968.06, + "words": [ + { + "word": " Right.", + "start": 1967.86, + "end": 1968.06, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1178, + "text": "Right.", + "start": 1968.16, + "end": 1968.36, + "words": [ + { + "word": " Right.", + "start": 1968.16, + "end": 1968.36, + "probability": 0.7607421875 + } + ] + }, + { + "id": 1179, + "text": "But we're going to get to that.", + "start": 1968.5, + "end": 1969.84, + "words": [ + { + "word": " But", + "start": 1968.5, + "end": 1968.82, + "probability": 0.75732421875 + }, + { + "word": " we're", + "start": 1968.82, + "end": 1969.16, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1969.16, + "end": 1969.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1969.26, + "end": 1969.4, + "probability": 1.0 + }, + { + "word": " get", + "start": 1969.4, + "end": 1969.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 1969.52, + "end": 1969.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1969.66, + "end": 1969.84, + "probability": 1.0 + } + ] + }, + { + "id": 1180, + "text": "You know, because Apple owns a whole bunch of patents.", + "start": 1970.7, + "end": 1973.14, + "words": [ + { + "word": " You", + "start": 1970.7, + "end": 1971.1, + "probability": 0.720703125 + }, + { + "word": " know,", + "start": 1971.1, + "end": 1971.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 1971.24, + "end": 1971.36, + "probability": 0.99951171875 + }, + { + "word": " Apple", + "start": 1971.36, + "end": 1971.7, + "probability": 1.0 + }, + { + "word": " owns", + "start": 1971.7, + "end": 1972.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1972.0, + "end": 1972.16, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1972.16, + "end": 1972.34, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 1972.34, + "end": 1972.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 1972.62, + "end": 1972.84, + "probability": 1.0 + }, + { + "word": " patents.", + "start": 1972.84, + "end": 1973.14, + "probability": 1.0 + } + ] + }, + { + "id": 1181, + "text": "Right.", + "start": 1973.32, + "end": 1973.54, + "words": [ + { + "word": " Right.", + "start": 1973.32, + "end": 1973.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1182, + "text": "Right.", + "start": 1973.58, + "end": 1973.8, + "words": [ + { + "word": " Right.", + "start": 1973.58, + "end": 1973.8, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1183, + "text": "And they're patenting stuff all the time, like crazy.", + "start": 1973.84, + "end": 1976.92, + "words": [ + { + "word": " And", + "start": 1973.84, + "end": 1974.14, + "probability": 0.888671875 + }, + { + "word": " they're", + "start": 1974.14, + "end": 1974.72, + "probability": 1.0 + }, + { + "word": " patenting", + "start": 1974.72, + "end": 1975.14, + "probability": 0.998046875 + }, + { + "word": " stuff", + "start": 1975.14, + "end": 1975.34, + "probability": 1.0 + }, + { + "word": " all", + "start": 1975.34, + "end": 1975.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1975.78, + "end": 1975.9, + "probability": 1.0 + }, + { + "word": " time,", + "start": 1975.9, + "end": 1976.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 1976.24, + "end": 1976.58, + "probability": 1.0 + }, + { + "word": " crazy.", + "start": 1976.58, + "end": 1976.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1184, + "text": "Right.", + "start": 1977.12, + "end": 1977.52, + "words": [ + { + "word": " Right.", + "start": 1977.12, + "end": 1977.52, + "probability": 0.8466796875 + } + ] + }, + { + "id": 1185, + "text": "So they've got, I forget how many patents they've got right now, a few thousand.", + "start": 1977.54, + "end": 1983.34, + "words": [ + { + "word": " So", + "start": 1977.54, + "end": 1977.64, + "probability": 0.99462890625 + }, + { + "word": " they've", + "start": 1977.64, + "end": 1977.84, + "probability": 1.0 + }, + { + "word": " got,", + "start": 1977.84, + "end": 1978.36, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1978.66, + "end": 1979.62, + "probability": 0.97802734375 + }, + { + "word": " forget", + "start": 1979.62, + "end": 1980.46, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 1980.46, + "end": 1980.68, + "probability": 1.0 + }, + { + "word": " many", + "start": 1980.68, + "end": 1980.84, + "probability": 1.0 + }, + { + "word": " patents", + "start": 1980.84, + "end": 1981.1, + "probability": 1.0 + }, + { + "word": " they've", + "start": 1981.1, + "end": 1981.34, + "probability": 1.0 + }, + { + "word": " got", + "start": 1981.34, + "end": 1981.5, + "probability": 1.0 + }, + { + "word": " right", + "start": 1981.5, + "end": 1981.66, + "probability": 0.99951171875 + }, + { + "word": " now,", + "start": 1981.66, + "end": 1981.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 1982.04, + "end": 1982.6, + "probability": 1.0 + }, + { + "word": " few", + "start": 1982.6, + "end": 1983.0, + "probability": 1.0 + }, + { + "word": " thousand.", + "start": 1983.0, + "end": 1983.34, + "probability": 1.0 + } + ] + }, + { + "id": 1186, + "text": "Right.", + "start": 1983.52, + "end": 1983.8, + "words": [ + { + "word": " Right.", + "start": 1983.52, + "end": 1983.8, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1187, + "text": "Right.", + "start": 1983.9, + "end": 1984.16, + "words": [ + { + "word": " Right.", + "start": 1983.9, + "end": 1984.16, + "probability": 0.970703125 + } + ] + }, + { + "id": 1188, + "text": "Maybe 7,000, 8,000 patents or something like that.", + "start": 1984.34, + "end": 1987.52, + "words": [ + { + "word": " Maybe", + "start": 1984.34, + "end": 1984.74, + "probability": 0.97509765625 + }, + { + "word": " 7", + "start": 1984.74, + "end": 1985.24, + "probability": 0.83642578125 + }, + { + "word": ",000,", + "start": 1985.24, + "end": 1985.82, + "probability": 0.91015625 + }, + { + "word": " 8", + "start": 1985.82, + "end": 1985.84, + "probability": 1.0 + }, + { + "word": ",000", + "start": 1985.84, + "end": 1986.22, + "probability": 1.0 + }, + { + "word": " patents", + "start": 1986.22, + "end": 1986.8, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1986.8, + "end": 1987.0, + "probability": 0.99853515625 + }, + { + "word": " something", + "start": 1987.0, + "end": 1987.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 1987.2, + "end": 1987.38, + "probability": 0.99853515625 + }, + { + "word": " that.", + "start": 1987.38, + "end": 1987.52, + "probability": 1.0 + } + ] + }, + { + "id": 1189, + "text": "Mm-hmm.", + "start": 1987.64, + "end": 1987.9, + "words": [ + { + "word": " Mm", + "start": 1987.64, + "end": 1987.9, + "probability": 0.1072998046875 + }, + { + "word": "-hmm.", + "start": 1987.9, + "end": 1987.9, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1190, + "text": "Yeah.", + "start": 1988.18, + "end": 1988.58, + "words": [ + { + "word": " Yeah.", + "start": 1988.18, + "end": 1988.58, + "probability": 0.332763671875 + } + ] + }, + { + "id": 1191, + "text": "And if they manage to get a hold of this Nortel patent stuff, right, then what you're really", + "start": 1988.58, + "end": 1995.82, + "words": [ + { + "word": " And", + "start": 1988.58, + "end": 1988.7, + "probability": 0.87646484375 + }, + { + "word": " if", + "start": 1988.7, + "end": 1989.08, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 1989.08, + "end": 1989.38, + "probability": 1.0 + }, + { + "word": " manage", + "start": 1989.38, + "end": 1990.22, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1990.22, + "end": 1990.4, + "probability": 1.0 + }, + { + "word": " get", + "start": 1990.4, + "end": 1990.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1990.52, + "end": 1990.62, + "probability": 1.0 + }, + { + "word": " hold", + "start": 1990.62, + "end": 1990.82, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 1990.82, + "end": 1991.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 1991.12, + "end": 1992.08, + "probability": 1.0 + }, + { + "word": " Nortel", + "start": 1992.08, + "end": 1992.76, + "probability": 0.98486328125 + }, + { + "word": " patent", + "start": 1992.76, + "end": 1993.0, + "probability": 0.99365234375 + }, + { + "word": " stuff,", + "start": 1993.0, + "end": 1993.34, + "probability": 0.9970703125 + }, + { + "word": " right,", + "start": 1993.62, + "end": 1994.24, + "probability": 0.5185546875 + }, + { + "word": " then", + "start": 1994.32, + "end": 1994.64, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1994.64, + "end": 1995.36, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1995.36, + "end": 1995.56, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1995.56, + "end": 1995.82, + "probability": 1.0 + } + ] + }, + { + "id": 1192, + "text": "looking at is that they're going to become a dominant player as far as their ability", + "start": 1995.82, + "end": 2001.92, + "words": [ + { + "word": " looking", + "start": 1995.82, + "end": 1996.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 1996.12, + "end": 1996.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 1996.4, + "end": 1997.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 1997.82, + "end": 1998.2, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1998.2, + "end": 1998.54, + "probability": 1.0 + }, + { + "word": " going", + "start": 1998.54, + "end": 1998.68, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1998.68, + "end": 1998.8, + "probability": 1.0 + }, + { + "word": " become", + "start": 1998.8, + "end": 1999.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1999.04, + "end": 1999.2, + "probability": 1.0 + }, + { + "word": " dominant", + "start": 1999.2, + "end": 1999.9, + "probability": 1.0 + }, + { + "word": " player", + "start": 1999.9, + "end": 2000.2, + "probability": 1.0 + }, + { + "word": " as", + "start": 2000.2, + "end": 2000.38, + "probability": 0.99853515625 + }, + { + "word": " far", + "start": 2000.38, + "end": 2000.56, + "probability": 1.0 + }, + { + "word": " as", + "start": 2000.56, + "end": 2000.94, + "probability": 1.0 + }, + { + "word": " their", + "start": 2000.94, + "end": 2001.62, + "probability": 0.99951171875 + }, + { + "word": " ability", + "start": 2001.62, + "end": 2001.92, + "probability": 1.0 + } + ] + }, + { + "id": 1193, + "text": "to go out and sue everybody for using their technology.", + "start": 2001.92, + "end": 2004.72, + "words": [ + { + "word": " to", + "start": 2001.92, + "end": 2002.18, + "probability": 1.0 + }, + { + "word": " go", + "start": 2002.18, + "end": 2002.3, + "probability": 1.0 + }, + { + "word": " out", + "start": 2002.3, + "end": 2002.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 2002.5, + "end": 2002.68, + "probability": 1.0 + }, + { + "word": " sue", + "start": 2002.68, + "end": 2002.96, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 2002.96, + "end": 2003.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 2003.3, + "end": 2003.68, + "probability": 1.0 + }, + { + "word": " using", + "start": 2003.68, + "end": 2003.96, + "probability": 1.0 + }, + { + "word": " their", + "start": 2003.96, + "end": 2004.26, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 2004.26, + "end": 2004.72, + "probability": 1.0 + } + ] + }, + { + "id": 1194, + "text": "More so than they already do.", + "start": 2004.72, + "end": 2005.8, + "words": [ + { + "word": " More", + "start": 2004.72, + "end": 2004.98, + "probability": 0.96630859375 + }, + { + "word": " so", + "start": 2004.98, + "end": 2005.18, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 2005.18, + "end": 2005.32, + "probability": 1.0 + }, + { + "word": " they", + "start": 2005.32, + "end": 2005.4, + "probability": 0.98046875 + }, + { + "word": " already", + "start": 2005.4, + "end": 2005.56, + "probability": 0.97314453125 + }, + { + "word": " do.", + "start": 2005.56, + "end": 2005.8, + "probability": 1.0 + } + ] + }, + { + "id": 1195, + "text": "Right.", + "start": 2005.98, + "end": 2006.32, + "words": [ + { + "word": " Right.", + "start": 2005.98, + "end": 2006.32, + "probability": 0.94189453125 + } + ] + }, + { + "id": 1196, + "text": "Right.", + "start": 2006.34, + "end": 2006.58, + "words": [ + { + "word": " Right.", + "start": 2006.34, + "end": 2006.58, + "probability": 0.00830841064453125 + } + ] + }, + { + "id": 1197, + "text": "And my other issue with the secondary patents is that if you are a company that owns a bunch", + "start": 2006.58, + "end": 2010.72, + "words": [ + { + "word": " And", + "start": 2006.58, + "end": 2006.76, + "probability": 0.9970703125 + }, + { + "word": " my", + "start": 2006.76, + "end": 2006.9, + "probability": 1.0 + }, + { + "word": " other", + "start": 2006.9, + "end": 2007.1, + "probability": 1.0 + }, + { + "word": " issue", + "start": 2007.1, + "end": 2007.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 2007.32, + "end": 2007.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 2007.46, + "end": 2007.52, + "probability": 0.97412109375 + }, + { + "word": " secondary", + "start": 2007.52, + "end": 2007.82, + "probability": 0.99951171875 + }, + { + "word": " patents", + "start": 2007.82, + "end": 2008.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2008.16, + "end": 2008.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 2008.5, + "end": 2008.74, + "probability": 0.99169921875 + }, + { + "word": " if", + "start": 2008.74, + "end": 2009.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 2009.06, + "end": 2009.38, + "probability": 1.0 + }, + { + "word": " are", + "start": 2009.38, + "end": 2009.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 2009.56, + "end": 2009.68, + "probability": 1.0 + }, + { + "word": " company", + "start": 2009.68, + "end": 2010.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2010.0, + "end": 2010.24, + "probability": 1.0 + }, + { + "word": " owns", + "start": 2010.24, + "end": 2010.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 2010.44, + "end": 2010.56, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 2010.56, + "end": 2010.72, + "probability": 1.0 + } + ] + }, + { + "id": 1198, + "text": "of patents and you didn't leverage that properly and you end up going out of business, it's", + "start": 2010.72, + "end": 2015.0, + "words": [ + { + "word": " of", + "start": 2010.72, + "end": 2010.82, + "probability": 1.0 + }, + { + "word": " patents", + "start": 2010.82, + "end": 2011.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 2011.1, + "end": 2011.56, + "probability": 0.87060546875 + }, + { + "word": " you", + "start": 2011.56, + "end": 2011.72, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 2011.72, + "end": 2011.98, + "probability": 1.0 + }, + { + "word": " leverage", + "start": 2011.98, + "end": 2012.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 2012.26, + "end": 2012.5, + "probability": 1.0 + }, + { + "word": " properly", + "start": 2012.5, + "end": 2012.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 2012.92, + "end": 2013.18, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 2013.18, + "end": 2013.22, + "probability": 1.0 + }, + { + "word": " end", + "start": 2013.22, + "end": 2013.36, + "probability": 0.998046875 + }, + { + "word": " up", + "start": 2013.36, + "end": 2013.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 2013.48, + "end": 2013.62, + "probability": 1.0 + }, + { + "word": " out", + "start": 2013.62, + "end": 2013.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 2013.8, + "end": 2013.9, + "probability": 1.0 + }, + { + "word": " business,", + "start": 2013.9, + "end": 2014.14, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2014.36, + "end": 2015.0, + "probability": 1.0 + } + ] + }, + { + "id": 1199, + "text": "fair game.", + "start": 2015.0, + "end": 2015.48, + "words": [ + { + "word": " fair", + "start": 2015.0, + "end": 2015.18, + "probability": 0.99609375 + }, + { + "word": " game.", + "start": 2015.18, + "end": 2015.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1200, + "text": "Right.", + "start": 2015.6, + "end": 2015.88, + "words": [ + { + "word": " Right.", + "start": 2015.6, + "end": 2015.88, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1201, + "text": "Right.", + "start": 2016.0, + "end": 2016.26, + "words": [ + { + "word": " Right.", + "start": 2016.0, + "end": 2016.26, + "probability": 0.958984375 + } + ] + }, + { + "id": 1202, + "text": "And you're not going to be able to say, okay, well, I have these patents here, these things", + "start": 2018.58, + "end": 2022.32, + "words": [ + { + "word": " And", + "start": 2018.58, + "end": 2018.58, + "probability": 0.0224456787109375 + }, + { + "word": " you're", + "start": 2018.58, + "end": 2018.58, + "probability": 0.375244140625 + }, + { + "word": " not", + "start": 2018.58, + "end": 2018.58, + "probability": 0.1727294921875 + }, + { + "word": " going", + "start": 2018.58, + "end": 2018.58, + "probability": 0.09674072265625 + }, + { + "word": " to", + "start": 2018.58, + "end": 2018.58, + "probability": 0.98681640625 + }, + { + "word": " be", + "start": 2018.58, + "end": 2018.58, + "probability": 0.80908203125 + }, + { + "word": " able", + "start": 2018.58, + "end": 2018.58, + "probability": 0.9755859375 + }, + { + "word": " to", + "start": 2018.58, + "end": 2018.72, + "probability": 0.99755859375 + }, + { + "word": " say,", + "start": 2018.72, + "end": 2018.9, + "probability": 0.994140625 + }, + { + "word": " okay,", + "start": 2018.98, + "end": 2019.18, + "probability": 0.75 + }, + { + "word": " well,", + "start": 2019.24, + "end": 2019.44, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 2019.46, + "end": 2019.64, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2019.64, + "end": 2019.92, + "probability": 1.0 + }, + { + "word": " these", + "start": 2019.92, + "end": 2020.24, + "probability": 0.99951171875 + }, + { + "word": " patents", + "start": 2020.24, + "end": 2021.6, + "probability": 0.98291015625 + }, + { + "word": " here,", + "start": 2021.6, + "end": 2021.9, + "probability": 0.99755859375 + }, + { + "word": " these", + "start": 2021.92, + "end": 2022.08, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2022.08, + "end": 2022.32, + "probability": 1.0 + } + ] + }, + { + "id": 1203, + "text": "that I created, and just because I don't know how to use them, I can let somebody else buy", + "start": 2022.32, + "end": 2027.12, + "words": [ + { + "word": " that", + "start": 2022.32, + "end": 2022.46, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2022.46, + "end": 2022.56, + "probability": 1.0 + }, + { + "word": " created,", + "start": 2022.56, + "end": 2022.92, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2022.98, + "end": 2023.68, + "probability": 1.0 + }, + { + "word": " just", + "start": 2023.68, + "end": 2024.48, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 2024.48, + "end": 2024.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 2024.86, + "end": 2025.06, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2025.06, + "end": 2025.18, + "probability": 1.0 + }, + { + "word": " know", + "start": 2025.18, + "end": 2025.22, + "probability": 1.0 + }, + { + "word": " how", + "start": 2025.22, + "end": 2025.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 2025.36, + "end": 2025.44, + "probability": 1.0 + }, + { + "word": " use", + "start": 2025.44, + "end": 2025.62, + "probability": 1.0 + }, + { + "word": " them,", + "start": 2025.62, + "end": 2025.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 2025.86, + "end": 2026.12, + "probability": 1.0 + }, + { + "word": " can", + "start": 2026.12, + "end": 2026.34, + "probability": 1.0 + }, + { + "word": " let", + "start": 2026.34, + "end": 2026.56, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 2026.56, + "end": 2026.82, + "probability": 1.0 + }, + { + "word": " else", + "start": 2026.82, + "end": 2026.94, + "probability": 1.0 + }, + { + "word": " buy", + "start": 2026.94, + "end": 2027.12, + "probability": 1.0 + } + ] + }, + { + "id": 1204, + "text": "them up.", + "start": 2027.12, + "end": 2027.3, + "words": [ + { + "word": " them", + "start": 2027.12, + "end": 2027.22, + "probability": 0.998046875 + }, + { + "word": " up.", + "start": 2027.22, + "end": 2027.3, + "probability": 0.147705078125 + } + ] + }, + { + "id": 1205, + "text": "Well, you also get these people who sit there and they come up with an idea, they patent", + "start": 2027.34, + "end": 2032.38, + "words": [ + { + "word": " Well,", + "start": 2027.34, + "end": 2027.42, + "probability": 0.90625 + }, + { + "word": " you", + "start": 2027.42, + "end": 2027.58, + "probability": 0.9091796875 + }, + { + "word": " also", + "start": 2027.58, + "end": 2027.92, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2027.92, + "end": 2028.12, + "probability": 1.0 + }, + { + "word": " these", + "start": 2028.12, + "end": 2028.22, + "probability": 1.0 + }, + { + "word": " people", + "start": 2028.22, + "end": 2028.5, + "probability": 1.0 + }, + { + "word": " who", + "start": 2028.5, + "end": 2028.76, + "probability": 1.0 + }, + { + "word": " sit", + "start": 2028.76, + "end": 2029.64, + "probability": 0.99658203125 + }, + { + "word": " there", + "start": 2029.64, + "end": 2029.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2029.88, + "end": 2030.08, + "probability": 0.923828125 + }, + { + "word": " they", + "start": 2030.08, + "end": 2030.24, + "probability": 0.736328125 + }, + { + "word": " come", + "start": 2030.24, + "end": 2030.46, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 2030.46, + "end": 2030.6, + "probability": 1.0 + }, + { + "word": " with", + "start": 2030.6, + "end": 2030.7, + "probability": 1.0 + }, + { + "word": " an", + "start": 2030.7, + "end": 2030.86, + "probability": 0.97216796875 + }, + { + "word": " idea,", + "start": 2030.86, + "end": 2031.82, + "probability": 1.0 + }, + { + "word": " they", + "start": 2031.94, + "end": 2032.06, + "probability": 0.441650390625 + }, + { + "word": " patent", + "start": 2032.06, + "end": 2032.38, + "probability": 1.0 + } + ] + }, + { + "id": 1206, + "text": "it and they sit on it.", + "start": 2032.38, + "end": 2033.38, + "words": [ + { + "word": " it", + "start": 2032.38, + "end": 2032.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 2032.6, + "end": 2032.7, + "probability": 0.022979736328125 + }, + { + "word": " they", + "start": 2032.7, + "end": 2032.82, + "probability": 1.0 + }, + { + "word": " sit", + "start": 2032.82, + "end": 2033.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 2033.06, + "end": 2033.26, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2033.26, + "end": 2033.38, + "probability": 1.0 + } + ] + }, + { + "id": 1207, + "text": "They don't even try to make it.", + "start": 2033.48, + "end": 2034.26, + "words": [ + { + "word": " They", + "start": 2033.48, + "end": 2033.52, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2033.52, + "end": 2033.6, + "probability": 1.0 + }, + { + "word": " even", + "start": 2033.6, + "end": 2033.68, + "probability": 1.0 + }, + { + "word": " try", + "start": 2033.68, + "end": 2033.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2033.92, + "end": 2034.02, + "probability": 1.0 + }, + { + "word": " make", + "start": 2034.02, + "end": 2034.18, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2034.18, + "end": 2034.26, + "probability": 1.0 + } + ] + }, + { + "id": 1208, + "text": "They don't even put it out to the public.", + "start": 2034.36, + "end": 2035.22, + "words": [ + { + "word": " They", + "start": 2034.36, + "end": 2034.38, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 2034.38, + "end": 2034.46, + "probability": 0.9189453125 + }, + { + "word": " even", + "start": 2034.46, + "end": 2034.48, + "probability": 1.0 + }, + { + "word": " put", + "start": 2034.48, + "end": 2034.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 2034.64, + "end": 2034.72, + "probability": 1.0 + }, + { + "word": " out", + "start": 2034.72, + "end": 2034.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 2034.82, + "end": 2034.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2034.88, + "end": 2034.96, + "probability": 1.0 + }, + { + "word": " public.", + "start": 2034.96, + "end": 2035.22, + "probability": 1.0 + } + ] + }, + { + "id": 1209, + "text": "Yeah.", + "start": 2035.7, + "end": 2036.02, + "words": [ + { + "word": " Yeah.", + "start": 2035.7, + "end": 2036.02, + "probability": 0.0255584716796875 + } + ] + }, + { + "id": 1210, + "text": "And that happens all the time.", + "start": 2036.1, + "end": 2037.26, + "words": [ + { + "word": " And", + "start": 2036.1, + "end": 2036.2, + "probability": 0.955078125 + }, + { + "word": " that", + "start": 2036.2, + "end": 2036.32, + "probability": 1.0 + }, + { + "word": " happens", + "start": 2036.32, + "end": 2036.56, + "probability": 1.0 + }, + { + "word": " all", + "start": 2036.56, + "end": 2036.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2036.8, + "end": 2036.94, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2036.94, + "end": 2037.26, + "probability": 1.0 + } + ] + }, + { + "id": 1211, + "text": "And then somebody does come up with that said product, and that guy, he just sits there", + "start": 2037.64, + "end": 2040.78, + "words": [ + { + "word": " And", + "start": 2037.64, + "end": 2037.96, + "probability": 0.99609375 + }, + { + "word": " then", + "start": 2037.96, + "end": 2038.18, + "probability": 0.6044921875 + }, + { + "word": " somebody", + "start": 2038.18, + "end": 2038.58, + "probability": 1.0 + }, + { + "word": " does", + "start": 2038.58, + "end": 2038.76, + "probability": 1.0 + }, + { + "word": " come", + "start": 2038.76, + "end": 2038.96, + "probability": 1.0 + }, + { + "word": " up", + "start": 2038.96, + "end": 2039.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 2039.06, + "end": 2039.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 2039.14, + "end": 2039.24, + "probability": 0.86181640625 + }, + { + "word": " said", + "start": 2039.24, + "end": 2039.4, + "probability": 0.982421875 + }, + { + "word": " product,", + "start": 2039.4, + "end": 2039.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 2039.7, + "end": 2039.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 2039.82, + "end": 2039.92, + "probability": 0.990234375 + }, + { + "word": " guy,", + "start": 2039.92, + "end": 2040.16, + "probability": 1.0 + }, + { + "word": " he", + "start": 2040.18, + "end": 2040.32, + "probability": 1.0 + }, + { + "word": " just", + "start": 2040.32, + "end": 2040.44, + "probability": 0.88720703125 + }, + { + "word": " sits", + "start": 2040.44, + "end": 2040.66, + "probability": 0.9970703125 + }, + { + "word": " there", + "start": 2040.66, + "end": 2040.78, + "probability": 1.0 + } + ] + }, + { + "id": 1212, + "text": "and waits and waits and waits.", + "start": 2040.78, + "end": 2042.14, + "words": [ + { + "word": " and", + "start": 2040.78, + "end": 2040.86, + "probability": 1.0 + }, + { + "word": " waits", + "start": 2040.86, + "end": 2041.18, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2041.18, + "end": 2041.44, + "probability": 0.99853515625 + }, + { + "word": " waits", + "start": 2041.44, + "end": 2041.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 2041.7, + "end": 2042.02, + "probability": 0.2017822265625 + }, + { + "word": " waits.", + "start": 2042.02, + "end": 2042.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1213, + "text": "For example, I'm not saying this is what Cisco did, but Cisco came up with, in the 80s, I", + "start": 2042.26, + "end": 2048.46, + "words": [ + { + "word": " For", + "start": 2042.26, + "end": 2042.58, + "probability": 0.99658203125 + }, + { + "word": " example,", + "start": 2042.58, + "end": 2042.96, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2043.08, + "end": 2043.42, + "probability": 1.0 + }, + { + "word": " not", + "start": 2043.42, + "end": 2043.46, + "probability": 1.0 + }, + { + "word": " saying", + "start": 2043.46, + "end": 2043.68, + "probability": 1.0 + }, + { + "word": " this", + "start": 2043.68, + "end": 2043.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 2043.82, + "end": 2043.92, + "probability": 1.0 + }, + { + "word": " what", + "start": 2043.92, + "end": 2044.06, + "probability": 1.0 + }, + { + "word": " Cisco", + "start": 2044.06, + "end": 2044.32, + "probability": 0.99755859375 + }, + { + "word": " did,", + "start": 2044.32, + "end": 2044.64, + "probability": 1.0 + }, + { + "word": " but", + "start": 2044.8, + "end": 2046.08, + "probability": 1.0 + }, + { + "word": " Cisco", + "start": 2046.08, + "end": 2046.56, + "probability": 1.0 + }, + { + "word": " came", + "start": 2046.56, + "end": 2046.84, + "probability": 1.0 + }, + { + "word": " up", + "start": 2046.84, + "end": 2047.04, + "probability": 1.0 + }, + { + "word": " with,", + "start": 2047.04, + "end": 2047.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 2047.36, + "end": 2047.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 2047.78, + "end": 2047.9, + "probability": 1.0 + }, + { + "word": " 80s,", + "start": 2047.9, + "end": 2048.4, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2048.4, + "end": 2048.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1214, + "text": "think it was late 80s, early 90s, they came up with an item and they called it the iPhone.", + "start": 2048.46, + "end": 2051.32, + "words": [ + { + "word": " think", + "start": 2048.46, + "end": 2048.54, + "probability": 0.0003528594970703125 + }, + { + "word": " it", + "start": 2048.54, + "end": 2048.66, + "probability": 0.642578125 + }, + { + "word": " was", + "start": 2048.66, + "end": 2048.72, + "probability": 0.99658203125 + }, + { + "word": " late", + "start": 2048.72, + "end": 2048.86, + "probability": 0.88134765625 + }, + { + "word": " 80s,", + "start": 2048.86, + "end": 2049.2, + "probability": 0.87890625 + }, + { + "word": " early", + "start": 2049.2, + "end": 2049.28, + "probability": 0.990234375 + }, + { + "word": " 90s,", + "start": 2049.28, + "end": 2049.64, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 2049.68, + "end": 2049.72, + "probability": 0.97314453125 + }, + { + "word": " came", + "start": 2049.72, + "end": 2049.84, + "probability": 0.994140625 + }, + { + "word": " up", + "start": 2049.84, + "end": 2049.94, + "probability": 0.99560546875 + }, + { + "word": " with", + "start": 2049.94, + "end": 2050.0, + "probability": 0.99755859375 + }, + { + "word": " an", + "start": 2050.0, + "end": 2050.1, + "probability": 0.463134765625 + }, + { + "word": " item", + "start": 2050.1, + "end": 2050.52, + "probability": 0.9921875 + }, + { + "word": " and", + "start": 2050.52, + "end": 2050.66, + "probability": 0.81787109375 + }, + { + "word": " they", + "start": 2050.66, + "end": 2050.7, + "probability": 0.9716796875 + }, + { + "word": " called", + "start": 2050.7, + "end": 2050.84, + "probability": 0.9921875 + }, + { + "word": " it", + "start": 2050.84, + "end": 2050.94, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 2050.94, + "end": 2051.06, + "probability": 0.9921875 + }, + { + "word": " iPhone.", + "start": 2051.06, + "end": 2051.32, + "probability": 0.978515625 + } + ] + }, + { + "id": 1215, + "text": "Right.", + "start": 2051.94, + "end": 2052.22, + "words": [ + { + "word": " Right.", + "start": 2051.94, + "end": 2052.22, + "probability": 0.8701171875 + } + ] + }, + { + "id": 1216, + "text": "Okay?", + "start": 2052.42, + "end": 2052.7, + "words": [ + { + "word": " Okay?", + "start": 2052.42, + "end": 2052.7, + "probability": 0.90380859375 + } + ] + }, + { + "id": 1217, + "text": "And they didn't go anywhere.", + "start": 2053.18, + "end": 2054.46, + "words": [ + { + "word": " And", + "start": 2053.18, + "end": 2053.46, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 2053.46, + "end": 2053.6, + "probability": 0.990234375 + }, + { + "word": " didn't", + "start": 2053.6, + "end": 2053.98, + "probability": 1.0 + }, + { + "word": " go", + "start": 2053.98, + "end": 2054.06, + "probability": 0.99951171875 + }, + { + "word": " anywhere.", + "start": 2054.06, + "end": 2054.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1218, + "text": "And then Apple came up with the iPhone and Cisco just waited for a few years and then", + "start": 2054.92, + "end": 2058.16, + "words": [ + { + "word": " And", + "start": 2054.92, + "end": 2055.2, + "probability": 0.98828125 + }, + { + "word": " then", + "start": 2055.2, + "end": 2055.36, + "probability": 0.998046875 + }, + { + "word": " Apple", + "start": 2055.36, + "end": 2055.66, + "probability": 0.998046875 + }, + { + "word": " came", + "start": 2055.66, + "end": 2055.8, + "probability": 0.99609375 + }, + { + "word": " up", + "start": 2055.8, + "end": 2055.92, + "probability": 0.95458984375 + }, + { + "word": " with", + "start": 2055.92, + "end": 2055.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2055.96, + "end": 2056.0, + "probability": 1.0 + }, + { + "word": " iPhone", + "start": 2056.0, + "end": 2056.2, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 2056.2, + "end": 2056.42, + "probability": 0.728515625 + }, + { + "word": " Cisco", + "start": 2056.42, + "end": 2056.9, + "probability": 0.984375 + }, + { + "word": " just", + "start": 2056.9, + "end": 2057.1, + "probability": 0.99853515625 + }, + { + "word": " waited", + "start": 2057.1, + "end": 2057.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 2057.36, + "end": 2057.54, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2057.54, + "end": 2057.66, + "probability": 1.0 + }, + { + "word": " few", + "start": 2057.66, + "end": 2057.74, + "probability": 1.0 + }, + { + "word": " years", + "start": 2057.74, + "end": 2057.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 2057.96, + "end": 2058.08, + "probability": 0.90283203125 + }, + { + "word": " then", + "start": 2058.08, + "end": 2058.16, + "probability": 0.90283203125 + } + ] + }, + { + "id": 1219, + "text": "they threw the heck out of Apple before they named iPhone.", + "start": 2058.16, + "end": 2060.1, + "words": [ + { + "word": " they", + "start": 2058.16, + "end": 2058.2, + "probability": 0.9951171875 + }, + { + "word": " threw", + "start": 2058.2, + "end": 2058.48, + "probability": 0.87255859375 + }, + { + "word": " the", + "start": 2058.48, + "end": 2058.64, + "probability": 1.0 + }, + { + "word": " heck", + "start": 2058.64, + "end": 2058.84, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 2058.84, + "end": 2058.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 2058.96, + "end": 2059.04, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 2059.04, + "end": 2059.3, + "probability": 0.9921875 + }, + { + "word": " before", + "start": 2059.3, + "end": 2059.46, + "probability": 0.41259765625 + }, + { + "word": " they", + "start": 2059.46, + "end": 2059.54, + "probability": 1.0 + }, + { + "word": " named", + "start": 2059.54, + "end": 2059.74, + "probability": 0.99609375 + }, + { + "word": " iPhone.", + "start": 2059.74, + "end": 2060.1, + "probability": 0.90380859375 + } + ] + }, + { + "id": 1220, + "text": "Well, they got some money out of it.", + "start": 2060.44, + "end": 2061.36, + "words": [ + { + "word": " Well,", + "start": 2060.44, + "end": 2060.66, + "probability": 0.95751953125 + }, + { + "word": " they", + "start": 2060.66, + "end": 2060.74, + "probability": 1.0 + }, + { + "word": " got", + "start": 2060.74, + "end": 2060.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 2060.84, + "end": 2060.94, + "probability": 0.99951171875 + }, + { + "word": " money", + "start": 2060.94, + "end": 2061.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 2061.1, + "end": 2061.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 2061.2, + "end": 2061.3, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2061.3, + "end": 2061.36, + "probability": 1.0 + } + ] + }, + { + "id": 1221, + "text": "They sure did.", + "start": 2061.4, + "end": 2061.84, + "words": [ + { + "word": " They", + "start": 2061.4, + "end": 2061.48, + "probability": 0.99853515625 + }, + { + "word": " sure", + "start": 2061.48, + "end": 2061.64, + "probability": 1.0 + }, + { + "word": " did.", + "start": 2061.64, + "end": 2061.84, + "probability": 1.0 + } + ] + }, + { + "id": 1222, + "text": "We got to take a break.", + "start": 2062.02, + "end": 2062.78, + "words": [ + { + "word": " We", + "start": 2062.02, + "end": 2062.3, + "probability": 0.99853515625 + }, + { + "word": " got", + "start": 2062.3, + "end": 2062.38, + "probability": 0.204345703125 + }, + { + "word": " to", + "start": 2062.38, + "end": 2062.44, + "probability": 1.0 + }, + { + "word": " take", + "start": 2062.44, + "end": 2062.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 2062.54, + "end": 2062.6, + "probability": 1.0 + }, + { + "word": " break.", + "start": 2062.6, + "end": 2062.78, + "probability": 1.0 + } + ] + }, + { + "id": 1223, + "text": "When we get back from the break, we'll see what we can do to help you out with whatever", + "start": 2062.82, + "end": 2065.4, + "words": [ + { + "word": " When", + "start": 2062.82, + "end": 2062.92, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 2062.92, + "end": 2062.98, + "probability": 1.0 + }, + { + "word": " get", + "start": 2062.98, + "end": 2063.06, + "probability": 0.9970703125 + }, + { + "word": " back", + "start": 2063.06, + "end": 2063.22, + "probability": 1.0 + }, + { + "word": " from", + "start": 2063.22, + "end": 2063.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 2063.34, + "end": 2063.42, + "probability": 1.0 + }, + { + "word": " break,", + "start": 2063.42, + "end": 2063.6, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 2063.78, + "end": 2064.34, + "probability": 0.7763671875 + }, + { + "word": " see", + "start": 2064.34, + "end": 2064.42, + "probability": 1.0 + }, + { + "word": " what", + "start": 2064.42, + "end": 2064.52, + "probability": 1.0 + }, + { + "word": " we", + "start": 2064.52, + "end": 2064.6, + "probability": 1.0 + }, + { + "word": " can", + "start": 2064.6, + "end": 2064.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 2064.64, + "end": 2064.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2064.72, + "end": 2064.82, + "probability": 1.0 + }, + { + "word": " help", + "start": 2064.82, + "end": 2064.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 2064.94, + "end": 2065.04, + "probability": 1.0 + }, + { + "word": " out", + "start": 2065.04, + "end": 2065.14, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2065.14, + "end": 2065.24, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 2065.24, + "end": 2065.4, + "probability": 1.0 + } + ] + }, + { + "id": 1224, + "text": "technology issues you may be having.", + "start": 2065.4, + "end": 2066.88, + "words": [ + { + "word": " technology", + "start": 2065.4, + "end": 2065.76, + "probability": 1.0 + }, + { + "word": " issues", + "start": 2065.76, + "end": 2066.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 2066.14, + "end": 2066.36, + "probability": 0.99951171875 + }, + { + "word": " may", + "start": 2066.36, + "end": 2066.46, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2066.46, + "end": 2066.58, + "probability": 1.0 + }, + { + "word": " having.", + "start": 2066.58, + "end": 2066.88, + "probability": 1.0 + } + ] + }, + { + "id": 1225, + "text": "751-1041 if you'd like to be part of the show.", + "start": 2067.7599999999998, + "end": 2069.54, + "words": [ + { + "word": " 751", + "start": 2067.7599999999998, + "end": 2068.04, + "probability": 0.99267578125 + }, + { + "word": "-1041", + "start": 2068.04, + "end": 2068.32, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2068.32, + "end": 2068.64, + "probability": 0.93505859375 + }, + { + "word": " you'd", + "start": 2068.64, + "end": 2068.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 2068.78, + "end": 2068.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 2068.9, + "end": 2068.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 2068.98, + "end": 2069.06, + "probability": 1.0 + }, + { + "word": " part", + "start": 2069.06, + "end": 2069.22, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 2069.22, + "end": 2069.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 2069.32, + "end": 2069.36, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 2069.36, + "end": 2069.54, + "probability": 1.0 + } + ] + }, + { + "id": 1226, + "text": "This is the Computer Guru Show on 104.1 The Truth, Tucson's News Talk FM.", + "start": 2069.76, + "end": 2073.44, + "words": [ + { + "word": " This", + "start": 2069.76, + "end": 2070.04, + "probability": 0.98828125 + }, + { + "word": " is", + "start": 2070.04, + "end": 2070.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2070.38, + "end": 2070.48, + "probability": 0.9248046875 + }, + { + "word": " Computer", + "start": 2070.48, + "end": 2070.7, + "probability": 0.994140625 + }, + { + "word": " Guru", + "start": 2070.7, + "end": 2070.94, + "probability": 0.93603515625 + }, + { + "word": " Show", + "start": 2070.94, + "end": 2071.14, + "probability": 0.93994140625 + }, + { + "word": " on", + "start": 2071.14, + "end": 2071.34, + "probability": 0.99951171875 + }, + { + "word": " 104", + "start": 2071.34, + "end": 2071.66, + "probability": 0.97802734375 + }, + { + "word": ".1", + "start": 2071.66, + "end": 2071.88, + "probability": 0.9931640625 + }, + { + "word": " The", + "start": 2071.88, + "end": 2072.0, + "probability": 0.99169921875 + }, + { + "word": " Truth,", + "start": 2072.0, + "end": 2072.16, + "probability": 0.99951171875 + }, + { + "word": " Tucson's", + "start": 2072.32, + "end": 2072.84, + "probability": 0.994140625 + }, + { + "word": " News", + "start": 2072.84, + "end": 2072.96, + "probability": 0.83056640625 + }, + { + "word": " Talk", + "start": 2072.96, + "end": 2073.16, + "probability": 0.98681640625 + }, + { + "word": " FM.", + "start": 2073.16, + "end": 2073.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1227, + "text": "Welcome back to the Computer Guru Show.", + "start": 2097.5799999999995, + "end": 2099.1, + "words": [ + { + "word": " Welcome", + "start": 2097.5799999999995, + "end": 2097.8999999999996, + "probability": 0.888671875 + }, + { + "word": " back", + "start": 2097.8999999999996, + "end": 2098.22, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 2098.22, + "end": 2098.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2098.38, + "end": 2098.46, + "probability": 0.966796875 + }, + { + "word": " Computer", + "start": 2098.46, + "end": 2098.64, + "probability": 0.97216796875 + }, + { + "word": " Guru", + "start": 2098.64, + "end": 2098.88, + "probability": 0.9765625 + }, + { + "word": " Show.", + "start": 2098.88, + "end": 2099.1, + "probability": 0.93701171875 + } + ] + }, + { + "id": 1228, + "text": "My name's Mike, here to deal with your technology needs and treat you like a real person in", + "start": 2099.16, + "end": 2102.18, + "words": [ + { + "word": " My", + "start": 2099.16, + "end": 2099.24, + "probability": 0.9990234375 + }, + { + "word": " name's", + "start": 2099.24, + "end": 2099.4, + "probability": 0.548828125 + }, + { + "word": " Mike,", + "start": 2099.4, + "end": 2099.66, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 2099.66, + "end": 2099.78, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2099.78, + "end": 2099.86, + "probability": 1.0 + }, + { + "word": " deal", + "start": 2099.86, + "end": 2100.0, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 2100.0, + "end": 2100.1, + "probability": 1.0 + }, + { + "word": " your", + "start": 2100.1, + "end": 2100.2, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 2100.2, + "end": 2100.52, + "probability": 0.99951171875 + }, + { + "word": " needs", + "start": 2100.52, + "end": 2100.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 2100.86, + "end": 2101.04, + "probability": 0.998046875 + }, + { + "word": " treat", + "start": 2101.04, + "end": 2101.24, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2101.24, + "end": 2101.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 2101.38, + "end": 2101.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 2101.48, + "end": 2101.6, + "probability": 1.0 + }, + { + "word": " real", + "start": 2101.6, + "end": 2101.72, + "probability": 1.0 + }, + { + "word": " person", + "start": 2101.72, + "end": 2101.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 2101.98, + "end": 2102.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1229, + "text": "the process.", + "start": 2102.18, + "end": 2102.68, + "words": [ + { + "word": " the", + "start": 2102.18, + "end": 2102.32, + "probability": 1.0 + }, + { + "word": " process.", + "start": 2102.32, + "end": 2102.68, + "probability": 1.0 + } + ] + }, + { + "id": 1230, + "text": "That's what we're going to do.", + "start": 2103.02, + "end": 2104.22, + "words": [ + { + "word": " That's", + "start": 2103.02, + "end": 2103.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 2103.34, + "end": 2103.5, + "probability": 1.0 + }, + { + "word": " we're", + "start": 2103.5, + "end": 2103.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 2103.74, + "end": 2103.82, + "probability": 0.77734375 + }, + { + "word": " to", + "start": 2103.82, + "end": 2104.0, + "probability": 1.0 + }, + { + "word": " do.", + "start": 2104.0, + "end": 2104.22, + "probability": 1.0 + } + ] + }, + { + "id": 1231, + "text": "We're going to be nice to you.", + "start": 2104.48, + "end": 2105.36, + "words": [ + { + "word": " We're", + "start": 2104.48, + "end": 2104.8, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2104.8, + "end": 2104.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2104.88, + "end": 2104.88, + "probability": 1.0 + }, + { + "word": " be", + "start": 2104.88, + "end": 2104.96, + "probability": 1.0 + }, + { + "word": " nice", + "start": 2104.96, + "end": 2105.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 2105.14, + "end": 2105.28, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2105.28, + "end": 2105.36, + "probability": 1.0 + } + ] + }, + { + "id": 1232, + "text": "Are we?", + "start": 2105.62, + "end": 2106.06, + "words": [ + { + "word": " Are", + "start": 2105.62, + "end": 2105.94, + "probability": 0.9970703125 + }, + { + "word": " we?", + "start": 2105.94, + "end": 2106.06, + "probability": 1.0 + } + ] + }, + { + "id": 1233, + "text": "Yeah.", + "start": 2106.14, + "end": 2106.42, + "words": [ + { + "word": " Yeah.", + "start": 2106.14, + "end": 2106.42, + "probability": 0.994140625 + } + ] + }, + { + "id": 1234, + "text": "That's no fun.", + "start": 2106.58, + "end": 2107.24, + "words": [ + { + "word": " That's", + "start": 2106.58, + "end": 2106.9, + "probability": 0.9912109375 + }, + { + "word": " no", + "start": 2106.9, + "end": 2107.0, + "probability": 0.99853515625 + }, + { + "word": " fun.", + "start": 2107.0, + "end": 2107.24, + "probability": 1.0 + } + ] + }, + { + "id": 1235, + "text": "All right, so you had something earlier that you were talking about.", + "start": 2107.68, + "end": 2110.26, + "words": [ + { + "word": " All", + "start": 2107.68, + "end": 2108.04, + "probability": 0.60546875 + }, + { + "word": " right,", + "start": 2108.04, + "end": 2108.12, + "probability": 1.0 + }, + { + "word": " so", + "start": 2108.14, + "end": 2108.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2108.22, + "end": 2108.64, + "probability": 0.98681640625 + }, + { + "word": " had", + "start": 2108.64, + "end": 2108.86, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2108.86, + "end": 2109.02, + "probability": 0.99951171875 + }, + { + "word": " earlier", + "start": 2109.02, + "end": 2109.28, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2109.28, + "end": 2109.48, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2109.48, + "end": 2109.6, + "probability": 1.0 + }, + { + "word": " were", + "start": 2109.6, + "end": 2109.72, + "probability": 1.0 + }, + { + "word": " talking", + "start": 2109.72, + "end": 2109.94, + "probability": 1.0 + }, + { + "word": " about.", + "start": 2109.94, + "end": 2110.26, + "probability": 1.0 + } + ] + }, + { + "id": 1236, + "text": "Oh, yeah.", + "start": 2110.4, + "end": 2110.88, + "words": [ + { + "word": " Oh,", + "start": 2110.4, + "end": 2110.68, + "probability": 0.99951171875 + }, + { + "word": " yeah.", + "start": 2110.68, + "end": 2110.88, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1237, + "text": "This has nothing to do with technology whatsoever, but I saw this and I just, oh, I have to talk", + "start": 2110.92, + "end": 2115.18, + "words": [ + { + "word": " This", + "start": 2110.92, + "end": 2111.04, + "probability": 0.99072265625 + }, + { + "word": " has", + "start": 2111.04, + "end": 2111.18, + "probability": 1.0 + }, + { + "word": " nothing", + "start": 2111.18, + "end": 2111.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2111.58, + "end": 2111.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 2111.76, + "end": 2111.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 2111.9, + "end": 2112.0, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2112.0, + "end": 2112.28, + "probability": 0.99951171875 + }, + { + "word": " whatsoever,", + "start": 2112.28, + "end": 2112.74, + "probability": 0.99365234375 + }, + { + "word": " but", + "start": 2112.76, + "end": 2113.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 2113.16, + "end": 2113.34, + "probability": 1.0 + }, + { + "word": " saw", + "start": 2113.34, + "end": 2113.8, + "probability": 1.0 + }, + { + "word": " this", + "start": 2113.8, + "end": 2114.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 2114.02, + "end": 2114.2, + "probability": 0.3173828125 + }, + { + "word": " I", + "start": 2114.2, + "end": 2114.28, + "probability": 1.0 + }, + { + "word": " just,", + "start": 2114.28, + "end": 2114.44, + "probability": 0.40283203125 + }, + { + "word": " oh,", + "start": 2114.5, + "end": 2114.62, + "probability": 0.62158203125 + }, + { + "word": " I", + "start": 2114.68, + "end": 2114.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 2114.82, + "end": 2114.96, + "probability": 0.91845703125 + }, + { + "word": " to", + "start": 2114.96, + "end": 2115.02, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2115.02, + "end": 2115.18, + "probability": 1.0 + } + ] + }, + { + "id": 1238, + "text": "about this real briefly.", + "start": 2115.18, + "end": 2116.12, + "words": [ + { + "word": " about", + "start": 2115.18, + "end": 2115.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 2115.46, + "end": 2115.62, + "probability": 1.0 + }, + { + "word": " real", + "start": 2115.62, + "end": 2115.76, + "probability": 0.99951171875 + }, + { + "word": " briefly.", + "start": 2115.76, + "end": 2116.12, + "probability": 1.0 + } + ] + }, + { + "id": 1239, + "text": "Because you were incensed.", + "start": 2116.2, + "end": 2117.06, + "words": [ + { + "word": " Because", + "start": 2116.2, + "end": 2116.26, + "probability": 0.57421875 + }, + { + "word": " you", + "start": 2116.26, + "end": 2116.36, + "probability": 1.0 + }, + { + "word": " were", + "start": 2116.36, + "end": 2116.48, + "probability": 1.0 + }, + { + "word": " incensed.", + "start": 2116.48, + "end": 2117.06, + "probability": 1.0 + } + ] + }, + { + "id": 1240, + "text": "Yes.", + "start": 2117.22, + "end": 2117.58, + "words": [ + { + "word": " Yes.", + "start": 2117.22, + "end": 2117.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1241, + "text": "Enraged.", + "start": 2117.84, + "end": 2118.2, + "words": [ + { + "word": " Enraged.", + "start": 2117.84, + "end": 2118.2, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1242, + "text": "Okay, so apparently there's been a law in the books since 2008 saying you are not allowed", + "start": 2118.24, + "end": 2122.28, + "words": [ + { + "word": " Okay,", + "start": 2118.24, + "end": 2118.5, + "probability": 0.96923828125 + }, + { + "word": " so", + "start": 2118.56, + "end": 2118.62, + "probability": 1.0 + }, + { + "word": " apparently", + "start": 2118.62, + "end": 2118.84, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 2118.84, + "end": 2119.3, + "probability": 0.998046875 + }, + { + "word": " been", + "start": 2119.3, + "end": 2119.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2119.42, + "end": 2119.54, + "probability": 1.0 + }, + { + "word": " law", + "start": 2119.54, + "end": 2119.76, + "probability": 1.0 + }, + { + "word": " in", + "start": 2119.76, + "end": 2119.9, + "probability": 0.97216796875 + }, + { + "word": " the", + "start": 2119.9, + "end": 2119.98, + "probability": 1.0 + }, + { + "word": " books", + "start": 2119.98, + "end": 2120.2, + "probability": 0.80029296875 + }, + { + "word": " since", + "start": 2120.2, + "end": 2120.4, + "probability": 1.0 + }, + { + "word": " 2008", + "start": 2120.4, + "end": 2120.88, + "probability": 1.0 + }, + { + "word": " saying", + "start": 2120.88, + "end": 2121.46, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2121.46, + "end": 2121.64, + "probability": 1.0 + }, + { + "word": " are", + "start": 2121.64, + "end": 2121.76, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2121.76, + "end": 2121.94, + "probability": 1.0 + }, + { + "word": " allowed", + "start": 2121.94, + "end": 2122.28, + "probability": 1.0 + } + ] + }, + { + "id": 1243, + "text": "in Washington, D.C., saying you are not allowed to dance at a memorial, you know, like a Jefferson", + "start": 2122.28, + "end": 2126.76, + "words": [ + { + "word": " in", + "start": 2122.28, + "end": 2122.56, + "probability": 0.8125 + }, + { + "word": " Washington,", + "start": 2122.56, + "end": 2122.86, + "probability": 0.99951171875 + }, + { + "word": " D", + "start": 2122.96, + "end": 2123.08, + "probability": 0.9990234375 + }, + { + "word": ".C.,", + "start": 2123.08, + "end": 2123.34, + "probability": 0.9765625 + }, + { + "word": " saying", + "start": 2123.34, + "end": 2123.82, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2123.82, + "end": 2123.94, + "probability": 1.0 + }, + { + "word": " are", + "start": 2123.94, + "end": 2124.02, + "probability": 0.9560546875 + }, + { + "word": " not", + "start": 2124.02, + "end": 2124.12, + "probability": 0.9931640625 + }, + { + "word": " allowed", + "start": 2124.12, + "end": 2124.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 2124.3, + "end": 2124.66, + "probability": 1.0 + }, + { + "word": " dance", + "start": 2124.66, + "end": 2124.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 2124.84, + "end": 2125.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 2125.2, + "end": 2125.28, + "probability": 1.0 + }, + { + "word": " memorial,", + "start": 2125.28, + "end": 2125.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 2125.84, + "end": 2126.12, + "probability": 0.947265625 + }, + { + "word": " know,", + "start": 2126.12, + "end": 2126.26, + "probability": 1.0 + }, + { + "word": " like", + "start": 2126.26, + "end": 2126.38, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2126.38, + "end": 2126.46, + "probability": 0.9970703125 + }, + { + "word": " Jefferson", + "start": 2126.46, + "end": 2126.76, + "probability": 1.0 + } + ] + }, + { + "id": 1244, + "text": "Memorial, you know, Lincoln Memorial.", + "start": 2126.76, + "end": 2128.34, + "words": [ + { + "word": " Memorial,", + "start": 2126.76, + "end": 2127.14, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2127.38, + "end": 2127.56, + "probability": 0.833984375 + }, + { + "word": " know,", + "start": 2127.56, + "end": 2127.88, + "probability": 0.99951171875 + }, + { + "word": " Lincoln", + "start": 2127.88, + "end": 2128.06, + "probability": 0.9931640625 + }, + { + "word": " Memorial.", + "start": 2128.06, + "end": 2128.34, + "probability": 1.0 + } + ] + }, + { + "id": 1245, + "text": "You're not allowed to dance.", + "start": 2128.48, + "end": 2129.22, + "words": [ + { + "word": " You're", + "start": 2128.48, + "end": 2128.7, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2128.7, + "end": 2128.76, + "probability": 1.0 + }, + { + "word": " allowed", + "start": 2128.76, + "end": 2128.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 2128.86, + "end": 2129.0, + "probability": 1.0 + }, + { + "word": " dance.", + "start": 2129.0, + "end": 2129.22, + "probability": 1.0 + } + ] + }, + { + "id": 1246, + "text": "So apparently there's a precedence for this.", + "start": 2129.28, + "end": 2131.32, + "words": [ + { + "word": " So", + "start": 2129.28, + "end": 2129.44, + "probability": 0.998046875 + }, + { + "word": " apparently", + "start": 2129.44, + "end": 2129.8, + "probability": 0.8330078125 + }, + { + "word": " there's", + "start": 2129.8, + "end": 2130.5, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 2130.5, + "end": 2130.5, + "probability": 1.0 + }, + { + "word": " precedence", + "start": 2130.5, + "end": 2130.96, + "probability": 0.9873046875 + }, + { + "word": " for", + "start": 2130.96, + "end": 2131.16, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2131.16, + "end": 2131.32, + "probability": 1.0 + } + ] + }, + { + "id": 1247, + "text": "Somebody call up Kevin Bacon.", + "start": 2131.72, + "end": 2132.96, + "words": [ + { + "word": " Somebody", + "start": 2131.72, + "end": 2132.08, + "probability": 0.9794921875 + }, + { + "word": " call", + "start": 2132.08, + "end": 2132.32, + "probability": 1.0 + }, + { + "word": " up", + "start": 2132.32, + "end": 2132.48, + "probability": 0.9990234375 + }, + { + "word": " Kevin", + "start": 2132.48, + "end": 2132.66, + "probability": 1.0 + }, + { + "word": " Bacon.", + "start": 2132.66, + "end": 2132.96, + "probability": 1.0 + } + ] + }, + { + "id": 1248, + "text": "Yeah.", + "start": 2133.04, + "end": 2133.34, + "words": [ + { + "word": " Yeah.", + "start": 2133.04, + "end": 2133.34, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1249, + "text": "Well, actually, that's part of this.", + "start": 2133.42, + "end": 2135.14, + "words": [ + { + "word": " Well,", + "start": 2133.42, + "end": 2133.68, + "probability": 0.80029296875 + }, + { + "word": " actually,", + "start": 2133.68, + "end": 2134.38, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2134.52, + "end": 2134.68, + "probability": 1.0 + }, + { + "word": " part", + "start": 2134.68, + "end": 2134.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 2134.82, + "end": 2134.98, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2134.98, + "end": 2135.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1250, + "text": "But anyways.", + "start": 2135.22, + "end": 2136.02, + "words": [ + { + "word": " But", + "start": 2135.22, + "end": 2135.4, + "probability": 0.97314453125 + }, + { + "word": " anyways.", + "start": 2135.4, + "end": 2136.02, + "probability": 0.82568359375 + } + ] + }, + { + "id": 1251, + "text": "So.", + "start": 2136.14, + "end": 2136.5, + "words": [ + { + "word": " So.", + "start": 2136.14, + "end": 2136.5, + "probability": 0.97509765625 + } + ] + }, + { + "id": 1252, + "text": "So there's a group of protesters that heard about this, you know, and they said, well,", + "start": 2136.5, + "end": 2141.7, + "words": [ + { + "word": " So", + "start": 2136.5, + "end": 2136.64, + "probability": 0.953125 + }, + { + "word": " there's", + "start": 2136.64, + "end": 2137.46, + "probability": 0.92578125 + }, + { + "word": " a", + "start": 2137.46, + "end": 2137.54, + "probability": 1.0 + }, + { + "word": " group", + "start": 2137.54, + "end": 2138.16, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 2138.16, + "end": 2138.48, + "probability": 1.0 + }, + { + "word": " protesters", + "start": 2138.48, + "end": 2138.88, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 2138.88, + "end": 2139.28, + "probability": 0.99951171875 + }, + { + "word": " heard", + "start": 2139.28, + "end": 2139.46, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 2139.46, + "end": 2139.7, + "probability": 1.0 + }, + { + "word": " this,", + "start": 2139.7, + "end": 2140.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 2140.18, + "end": 2140.26, + "probability": 0.83544921875 + }, + { + "word": " know,", + "start": 2140.26, + "end": 2140.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 2140.46, + "end": 2141.02, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2141.02, + "end": 2141.34, + "probability": 1.0 + }, + { + "word": " said,", + "start": 2141.34, + "end": 2141.5, + "probability": 1.0 + }, + { + "word": " well,", + "start": 2141.54, + "end": 2141.7, + "probability": 0.94189453125 + } + ] + }, + { + "id": 1253, + "text": "you know what?", + "start": 2141.7, + "end": 2142.06, + "words": [ + { + "word": " you", + "start": 2141.7, + "end": 2141.82, + "probability": 1.0 + }, + { + "word": " know", + "start": 2141.82, + "end": 2141.9, + "probability": 1.0 + }, + { + "word": " what?", + "start": 2141.9, + "end": 2142.06, + "probability": 1.0 + } + ] + }, + { + "id": 1254, + "text": "On Memorial Day, we're going to go to the Jefferson Memorial with our iPods, put our", + "start": 2142.12, + "end": 2146.4, + "words": [ + { + "word": " On", + "start": 2142.12, + "end": 2142.24, + "probability": 0.99853515625 + }, + { + "word": " Memorial", + "start": 2142.24, + "end": 2142.44, + "probability": 1.0 + }, + { + "word": " Day,", + "start": 2142.44, + "end": 2142.7, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 2142.82, + "end": 2143.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 2143.0, + "end": 2143.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 2143.18, + "end": 2143.42, + "probability": 0.99609375 + }, + { + "word": " go", + "start": 2143.42, + "end": 2144.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 2144.06, + "end": 2144.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 2144.16, + "end": 2144.24, + "probability": 0.99951171875 + }, + { + "word": " Jefferson", + "start": 2144.24, + "end": 2144.42, + "probability": 1.0 + }, + { + "word": " Memorial", + "start": 2144.42, + "end": 2144.74, + "probability": 1.0 + }, + { + "word": " with", + "start": 2144.74, + "end": 2145.4, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 2145.4, + "end": 2145.54, + "probability": 1.0 + }, + { + "word": " iPods,", + "start": 2145.54, + "end": 2146.1, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 2146.1, + "end": 2146.26, + "probability": 0.9990234375 + }, + { + "word": " our", + "start": 2146.26, + "end": 2146.4, + "probability": 1.0 + } + ] + }, + { + "id": 1255, + "text": "iPod plugs in our ears and listen to the music and just shuffle, do a light dance.", + "start": 2146.4, + "end": 2150.02, + "words": [ + { + "word": " iPod", + "start": 2146.4, + "end": 2146.84, + "probability": 0.9990234375 + }, + { + "word": " plugs", + "start": 2146.84, + "end": 2146.96, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 2146.96, + "end": 2147.26, + "probability": 1.0 + }, + { + "word": " our", + "start": 2147.26, + "end": 2147.38, + "probability": 1.0 + }, + { + "word": " ears", + "start": 2147.38, + "end": 2147.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 2147.68, + "end": 2147.8, + "probability": 0.418701171875 + }, + { + "word": " listen", + "start": 2147.8, + "end": 2147.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2147.98, + "end": 2148.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2148.14, + "end": 2148.24, + "probability": 0.99951171875 + }, + { + "word": " music", + "start": 2148.24, + "end": 2148.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 2148.54, + "end": 2148.68, + "probability": 0.9970703125 + }, + { + "word": " just", + "start": 2148.68, + "end": 2148.82, + "probability": 1.0 + }, + { + "word": " shuffle,", + "start": 2148.82, + "end": 2149.22, + "probability": 1.0 + }, + { + "word": " do", + "start": 2149.32, + "end": 2149.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2149.42, + "end": 2149.52, + "probability": 1.0 + }, + { + "word": " light", + "start": 2149.52, + "end": 2149.7, + "probability": 0.99951171875 + }, + { + "word": " dance.", + "start": 2149.7, + "end": 2150.02, + "probability": 1.0 + } + ] + }, + { + "id": 1256, + "text": "Right.", + "start": 2150.26, + "end": 2150.62, + "words": [ + { + "word": " Right.", + "start": 2150.26, + "end": 2150.62, + "probability": 0.72119140625 + } + ] + }, + { + "id": 1257, + "text": "So that's exactly what they did.", + "start": 2150.68, + "end": 2151.88, + "words": [ + { + "word": " So", + "start": 2150.68, + "end": 2150.9, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 2150.9, + "end": 2151.12, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 2151.12, + "end": 2151.16, + "probability": 1.0 + }, + { + "word": " what", + "start": 2151.16, + "end": 2151.6, + "probability": 1.0 + }, + { + "word": " they", + "start": 2151.6, + "end": 2151.72, + "probability": 1.0 + }, + { + "word": " did.", + "start": 2151.72, + "end": 2151.88, + "probability": 1.0 + } + ] + }, + { + "id": 1258, + "text": "And they brought like four cameras with them.", + "start": 2151.96, + "end": 2153.7, + "words": [ + { + "word": " And", + "start": 2151.96, + "end": 2152.08, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 2152.08, + "end": 2152.12, + "probability": 1.0 + }, + { + "word": " brought", + "start": 2152.12, + "end": 2152.24, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2152.24, + "end": 2152.38, + "probability": 0.4169921875 + }, + { + "word": " four", + "start": 2152.38, + "end": 2152.78, + "probability": 0.99951171875 + }, + { + "word": " cameras", + "start": 2152.78, + "end": 2153.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 2153.26, + "end": 2153.48, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2153.48, + "end": 2153.7, + "probability": 1.0 + } + ] + }, + { + "id": 1259, + "text": "You know, they shot from every angle.", + "start": 2153.84, + "end": 2156.3, + "words": [ + { + "word": " You", + "start": 2153.84, + "end": 2154.2, + "probability": 0.9638671875 + }, + { + "word": " know,", + "start": 2154.2, + "end": 2154.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 2154.46, + "end": 2154.64, + "probability": 1.0 + }, + { + "word": " shot", + "start": 2154.64, + "end": 2155.38, + "probability": 0.970703125 + }, + { + "word": " from", + "start": 2155.38, + "end": 2155.6, + "probability": 0.75634765625 + }, + { + "word": " every", + "start": 2155.6, + "end": 2155.98, + "probability": 1.0 + }, + { + "word": " angle.", + "start": 2155.98, + "end": 2156.3, + "probability": 1.0 + } + ] + }, + { + "id": 1260, + "text": "If you go to YouTube, you can pull it up.", + "start": 2156.32, + "end": 2157.64, + "words": [ + { + "word": " If", + "start": 2156.32, + "end": 2156.44, + "probability": 0.97998046875 + }, + { + "word": " you", + "start": 2156.44, + "end": 2156.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 2156.48, + "end": 2156.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2156.58, + "end": 2156.64, + "probability": 1.0 + }, + { + "word": " YouTube,", + "start": 2156.64, + "end": 2156.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 2157.0, + "end": 2157.1, + "probability": 1.0 + }, + { + "word": " can", + "start": 2157.1, + "end": 2157.16, + "probability": 1.0 + }, + { + "word": " pull", + "start": 2157.16, + "end": 2157.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 2157.34, + "end": 2157.44, + "probability": 1.0 + }, + { + "word": " up.", + "start": 2157.44, + "end": 2157.64, + "probability": 1.0 + } + ] + }, + { + "id": 1261, + "text": "It's all over the YouTube right now.", + "start": 2157.74, + "end": 2159.56, + "words": [ + { + "word": " It's", + "start": 2157.74, + "end": 2158.1, + "probability": 1.0 + }, + { + "word": " all", + "start": 2158.1, + "end": 2158.28, + "probability": 1.0 + }, + { + "word": " over", + "start": 2158.28, + "end": 2158.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 2158.46, + "end": 2158.54, + "probability": 0.2447509765625 + }, + { + "word": " YouTube", + "start": 2158.54, + "end": 2159.16, + "probability": 0.99853515625 + }, + { + "word": " right", + "start": 2159.16, + "end": 2159.38, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2159.38, + "end": 2159.56, + "probability": 1.0 + } + ] + }, + { + "id": 1262, + "text": "But these guys are seriously just doing a little shuffle.", + "start": 2160.2799999999997, + "end": 2162.62, + "words": [ + { + "word": " But", + "start": 2160.2799999999997, + "end": 2160.64, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 2160.64, + "end": 2161.0, + "probability": 1.0 + }, + { + "word": " guys", + "start": 2161.0, + "end": 2161.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 2161.18, + "end": 2161.36, + "probability": 1.0 + }, + { + "word": " seriously", + "start": 2161.36, + "end": 2161.66, + "probability": 1.0 + }, + { + "word": " just", + "start": 2161.66, + "end": 2161.84, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2161.84, + "end": 2162.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2162.04, + "end": 2162.16, + "probability": 1.0 + }, + { + "word": " little", + "start": 2162.16, + "end": 2162.26, + "probability": 1.0 + }, + { + "word": " shuffle.", + "start": 2162.26, + "end": 2162.62, + "probability": 1.0 + } + ] + }, + { + "id": 1263, + "text": "They're not disturbing anybody, doing nothing wrong, but just doing a little shuffle.", + "start": 2162.62, + "end": 2165.86, + "words": [ + { + "word": " They're", + "start": 2162.62, + "end": 2162.78, + "probability": 1.0 + }, + { + "word": " not", + "start": 2162.78, + "end": 2162.88, + "probability": 1.0 + }, + { + "word": " disturbing", + "start": 2162.88, + "end": 2163.26, + "probability": 1.0 + }, + { + "word": " anybody,", + "start": 2163.26, + "end": 2163.58, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2163.78, + "end": 2163.92, + "probability": 0.99609375 + }, + { + "word": " nothing", + "start": 2163.92, + "end": 2164.28, + "probability": 1.0 + }, + { + "word": " wrong,", + "start": 2164.28, + "end": 2164.66, + "probability": 1.0 + }, + { + "word": " but", + "start": 2164.76, + "end": 2164.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 2164.96, + "end": 2165.1, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2165.1, + "end": 2165.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2165.34, + "end": 2165.46, + "probability": 1.0 + }, + { + "word": " little", + "start": 2165.46, + "end": 2165.54, + "probability": 1.0 + }, + { + "word": " shuffle.", + "start": 2165.54, + "end": 2165.86, + "probability": 1.0 + } + ] + }, + { + "id": 1264, + "text": "And these cops, I'm not kidding, five, six, seven cops came out of nowhere and just took", + "start": 2165.86, + "end": 2171.66, + "words": [ + { + "word": " And", + "start": 2165.86, + "end": 2166.4, + "probability": 0.318359375 + }, + { + "word": " these", + "start": 2166.4, + "end": 2166.76, + "probability": 0.98583984375 + }, + { + "word": " cops,", + "start": 2166.76, + "end": 2167.06, + "probability": 0.998046875 + }, + { + "word": " I'm", + "start": 2167.26, + "end": 2167.38, + "probability": 0.9970703125 + }, + { + "word": " not", + "start": 2167.38, + "end": 2167.66, + "probability": 0.99609375 + }, + { + "word": " kidding,", + "start": 2167.66, + "end": 2167.88, + "probability": 0.99951171875 + }, + { + "word": " five,", + "start": 2168.0, + "end": 2168.1, + "probability": 0.89111328125 + }, + { + "word": " six,", + "start": 2168.28, + "end": 2168.5, + "probability": 1.0 + }, + { + "word": " seven", + "start": 2168.56, + "end": 2168.78, + "probability": 1.0 + }, + { + "word": " cops", + "start": 2168.78, + "end": 2169.04, + "probability": 0.9990234375 + }, + { + "word": " came", + "start": 2169.04, + "end": 2169.44, + "probability": 0.9404296875 + }, + { + "word": " out", + "start": 2169.44, + "end": 2169.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 2169.66, + "end": 2169.78, + "probability": 0.99755859375 + }, + { + "word": " nowhere", + "start": 2169.78, + "end": 2170.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 2170.14, + "end": 2170.94, + "probability": 0.94384765625 + }, + { + "word": " just", + "start": 2170.94, + "end": 2171.22, + "probability": 0.99951171875 + }, + { + "word": " took", + "start": 2171.22, + "end": 2171.66, + "probability": 1.0 + } + ] + }, + { + "id": 1265, + "text": "them to the ground, pushing the cameraman's camera man around, telling the cameraman that", + "start": 2171.66, + "end": 2175.82, + "words": [ + { + "word": " them", + "start": 2171.66, + "end": 2171.8, + "probability": 0.53857421875 + }, + { + "word": " to", + "start": 2171.8, + "end": 2171.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2171.92, + "end": 2172.06, + "probability": 1.0 + }, + { + "word": " ground,", + "start": 2172.06, + "end": 2172.46, + "probability": 0.99951171875 + }, + { + "word": " pushing", + "start": 2172.66, + "end": 2173.42, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 2173.42, + "end": 2173.62, + "probability": 1.0 + }, + { + "word": " cameraman's", + "start": 2173.62, + "end": 2174.2, + "probability": 0.09197998046875 + }, + { + "word": " camera", + "start": 2174.2, + "end": 2174.42, + "probability": 0.1534423828125 + }, + { + "word": " man", + "start": 2174.42, + "end": 2174.78, + "probability": 0.260009765625 + }, + { + "word": " around,", + "start": 2174.78, + "end": 2174.96, + "probability": 0.94873046875 + }, + { + "word": " telling", + "start": 2175.04, + "end": 2175.22, + "probability": 0.9833984375 + }, + { + "word": " the", + "start": 2175.22, + "end": 2175.34, + "probability": 0.99755859375 + }, + { + "word": " cameraman", + "start": 2175.34, + "end": 2175.62, + "probability": 0.97705078125 + }, + { + "word": " that", + "start": 2175.62, + "end": 2175.82, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1266, + "text": "they're going to arrest him if they keep on recording their actions.", + "start": 2175.82, + "end": 2177.92, + "words": [ + { + "word": " they're", + "start": 2175.82, + "end": 2176.0, + "probability": 0.99267578125 + }, + { + "word": " going", + "start": 2176.0, + "end": 2176.06, + "probability": 0.96875 + }, + { + "word": " to", + "start": 2176.06, + "end": 2176.14, + "probability": 0.99951171875 + }, + { + "word": " arrest", + "start": 2176.14, + "end": 2176.42, + "probability": 1.0 + }, + { + "word": " him", + "start": 2176.42, + "end": 2176.62, + "probability": 0.71826171875 + }, + { + "word": " if", + "start": 2176.62, + "end": 2176.7, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 2176.7, + "end": 2176.74, + "probability": 0.99609375 + }, + { + "word": " keep", + "start": 2176.74, + "end": 2176.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 2176.92, + "end": 2177.06, + "probability": 0.99951171875 + }, + { + "word": " recording", + "start": 2177.06, + "end": 2177.24, + "probability": 1.0 + }, + { + "word": " their", + "start": 2177.24, + "end": 2177.56, + "probability": 0.9990234375 + }, + { + "word": " actions.", + "start": 2177.56, + "end": 2177.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1267, + "text": "I mean, obviously, the cops know that they have something to hide because they're telling", + "start": 2178.3, + "end": 2182.44, + "words": [ + { + "word": " I", + "start": 2178.3, + "end": 2178.58, + "probability": 0.96875 + }, + { + "word": " mean,", + "start": 2178.58, + "end": 2178.7, + "probability": 1.0 + }, + { + "word": " obviously,", + "start": 2178.72, + "end": 2179.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2179.06, + "end": 2179.2, + "probability": 0.99951171875 + }, + { + "word": " cops", + "start": 2179.2, + "end": 2179.36, + "probability": 1.0 + }, + { + "word": " know", + "start": 2179.36, + "end": 2179.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 2179.58, + "end": 2179.86, + "probability": 1.0 + }, + { + "word": " they", + "start": 2179.86, + "end": 2180.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 2180.0, + "end": 2180.18, + "probability": 0.9873046875 + }, + { + "word": " something", + "start": 2180.18, + "end": 2180.48, + "probability": 0.86083984375 + }, + { + "word": " to", + "start": 2180.48, + "end": 2180.72, + "probability": 1.0 + }, + { + "word": " hide", + "start": 2180.72, + "end": 2181.06, + "probability": 1.0 + }, + { + "word": " because", + "start": 2181.06, + "end": 2181.58, + "probability": 0.7421875 + }, + { + "word": " they're", + "start": 2181.58, + "end": 2181.74, + "probability": 1.0 + }, + { + "word": " telling", + "start": 2181.74, + "end": 2182.44, + "probability": 0.986328125 + } + ] + }, + { + "id": 1268, + "text": "the cameraman to turn off the cameras for recording their actions.", + "start": 2182.44, + "end": 2185.34, + "words": [ + { + "word": " the", + "start": 2182.44, + "end": 2182.56, + "probability": 1.0 + }, + { + "word": " cameraman", + "start": 2182.56, + "end": 2182.84, + "probability": 0.951171875 + }, + { + "word": " to", + "start": 2182.84, + "end": 2183.3, + "probability": 0.99951171875 + }, + { + "word": " turn", + "start": 2183.3, + "end": 2183.52, + "probability": 1.0 + }, + { + "word": " off", + "start": 2183.52, + "end": 2183.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 2183.66, + "end": 2183.78, + "probability": 1.0 + }, + { + "word": " cameras", + "start": 2183.78, + "end": 2184.08, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2184.08, + "end": 2184.48, + "probability": 0.94873046875 + }, + { + "word": " recording", + "start": 2184.48, + "end": 2184.86, + "probability": 1.0 + }, + { + "word": " their", + "start": 2184.86, + "end": 2185.0, + "probability": 0.99951171875 + }, + { + "word": " actions.", + "start": 2185.0, + "end": 2185.34, + "probability": 1.0 + } + ] + }, + { + "id": 1269, + "text": "I mean, this is just absolutely ridiculous.", + "start": 2185.66, + "end": 2187.44, + "words": [ + { + "word": " I", + "start": 2185.66, + "end": 2186.06, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 2186.06, + "end": 2186.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 2186.22, + "end": 2186.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 2186.36, + "end": 2186.5, + "probability": 1.0 + }, + { + "word": " just", + "start": 2186.5, + "end": 2186.7, + "probability": 0.98828125 + }, + { + "word": " absolutely", + "start": 2186.7, + "end": 2187.12, + "probability": 0.99951171875 + }, + { + "word": " ridiculous.", + "start": 2187.12, + "end": 2187.44, + "probability": 1.0 + } + ] + }, + { + "id": 1270, + "text": "I mean, there is no way that this is going to hold up in court.", + "start": 2187.58, + "end": 2189.82, + "words": [ + { + "word": " I", + "start": 2187.58, + "end": 2187.7, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 2187.7, + "end": 2187.78, + "probability": 1.0 + }, + { + "word": " there", + "start": 2187.8, + "end": 2187.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 2187.92, + "end": 2188.02, + "probability": 0.57373046875 + }, + { + "word": " no", + "start": 2188.02, + "end": 2188.16, + "probability": 1.0 + }, + { + "word": " way", + "start": 2188.16, + "end": 2188.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 2188.44, + "end": 2188.68, + "probability": 1.0 + }, + { + "word": " this", + "start": 2188.68, + "end": 2188.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 2188.9, + "end": 2189.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 2189.0, + "end": 2189.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 2189.08, + "end": 2189.18, + "probability": 1.0 + }, + { + "word": " hold", + "start": 2189.18, + "end": 2189.34, + "probability": 1.0 + }, + { + "word": " up", + "start": 2189.34, + "end": 2189.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 2189.46, + "end": 2189.56, + "probability": 1.0 + }, + { + "word": " court.", + "start": 2189.56, + "end": 2189.82, + "probability": 1.0 + } + ] + }, + { + "id": 1271, + "text": "I mean, the irony behind this is it's I was at the Jefferson Memorial.", + "start": 2190.02, + "end": 2193.82, + "words": [ + { + "word": " I", + "start": 2190.02, + "end": 2190.42, + "probability": 0.998046875 + }, + { + "word": " mean,", + "start": 2190.42, + "end": 2190.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 2190.7, + "end": 2191.44, + "probability": 0.99951171875 + }, + { + "word": " irony", + "start": 2191.44, + "end": 2191.76, + "probability": 1.0 + }, + { + "word": " behind", + "start": 2191.76, + "end": 2192.1, + "probability": 1.0 + }, + { + "word": " this", + "start": 2192.1, + "end": 2192.38, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2192.38, + "end": 2192.5, + "probability": 0.986328125 + }, + { + "word": " it's", + "start": 2192.5, + "end": 2192.66, + "probability": 0.461669921875 + }, + { + "word": " I", + "start": 2192.66, + "end": 2192.8, + "probability": 0.007160186767578125 + }, + { + "word": " was", + "start": 2192.8, + "end": 2192.96, + "probability": 0.99267578125 + }, + { + "word": " at", + "start": 2192.96, + "end": 2193.1, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 2193.1, + "end": 2193.2, + "probability": 1.0 + }, + { + "word": " Jefferson", + "start": 2193.2, + "end": 2193.48, + "probability": 1.0 + }, + { + "word": " Memorial.", + "start": 2193.48, + "end": 2193.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1272, + "text": "One of the guys.", + "start": 2194.16, + "end": 2194.96, + "words": [ + { + "word": " One", + "start": 2194.16, + "end": 2194.56, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 2194.56, + "end": 2194.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 2194.68, + "end": 2194.78, + "probability": 0.92138671875 + }, + { + "word": " guys.", + "start": 2194.78, + "end": 2194.96, + "probability": 0.74169921875 + } + ] + }, + { + "id": 1273, + "text": "One of our finding.", + "start": 2195.0, + "end": 2195.72, + "words": [ + { + "word": " One", + "start": 2195.0, + "end": 2195.16, + "probability": 0.8564453125 + }, + { + "word": " of", + "start": 2195.16, + "end": 2195.26, + "probability": 1.0 + }, + { + "word": " our", + "start": 2195.26, + "end": 2195.36, + "probability": 0.9384765625 + }, + { + "word": " finding.", + "start": 2195.36, + "end": 2195.72, + "probability": 0.4189453125 + } + ] + }, + { + "id": 1274, + "text": "Founding fathers who said who loves the the freedom to express oneself, you know, and", + "start": 2195.86, + "end": 2201.86, + "words": [ + { + "word": " Founding", + "start": 2195.86, + "end": 2196.04, + "probability": 0.54052734375 + }, + { + "word": " fathers", + "start": 2196.04, + "end": 2196.22, + "probability": 0.8798828125 + }, + { + "word": " who", + "start": 2196.22, + "end": 2196.58, + "probability": 0.92822265625 + }, + { + "word": " said", + "start": 2196.58, + "end": 2196.72, + "probability": 0.98046875 + }, + { + "word": " who", + "start": 2196.72, + "end": 2197.18, + "probability": 0.087158203125 + }, + { + "word": " loves", + "start": 2197.18, + "end": 2197.88, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 2197.88, + "end": 2198.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2198.2, + "end": 2198.84, + "probability": 0.00567626953125 + }, + { + "word": " freedom", + "start": 2198.84, + "end": 2199.2, + "probability": 0.99072265625 + }, + { + "word": " to", + "start": 2199.2, + "end": 2199.72, + "probability": 1.0 + }, + { + "word": " express", + "start": 2199.72, + "end": 2199.94, + "probability": 1.0 + }, + { + "word": " oneself,", + "start": 2199.94, + "end": 2200.44, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 2200.8, + "end": 2201.48, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2201.48, + "end": 2201.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 2201.68, + "end": 2201.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1275, + "text": "these people can't do a light shuffle.", + "start": 2201.86, + "end": 2203.28, + "words": [ + { + "word": " these", + "start": 2201.86, + "end": 2202.08, + "probability": 0.98974609375 + }, + { + "word": " people", + "start": 2202.08, + "end": 2202.28, + "probability": 1.0 + }, + { + "word": " can't", + "start": 2202.28, + "end": 2202.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 2202.54, + "end": 2202.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 2202.6, + "end": 2202.68, + "probability": 0.99560546875 + }, + { + "word": " light", + "start": 2202.68, + "end": 2202.86, + "probability": 0.99951171875 + }, + { + "word": " shuffle.", + "start": 2202.86, + "end": 2203.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1276, + "text": "I mean, they're not disturbing it.", + "start": 2203.76, + "end": 2205.08, + "words": [ + { + "word": " I", + "start": 2203.76, + "end": 2204.16, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 2204.16, + "end": 2204.32, + "probability": 1.0 + }, + { + "word": " they're", + "start": 2204.34, + "end": 2204.46, + "probability": 1.0 + }, + { + "word": " not", + "start": 2204.46, + "end": 2204.54, + "probability": 1.0 + }, + { + "word": " disturbing", + "start": 2204.54, + "end": 2204.84, + "probability": 0.50341796875 + }, + { + "word": " it.", + "start": 2204.84, + "end": 2205.08, + "probability": 0.69287109375 + } + ] + }, + { + "id": 1277, + "text": "I heard it was a flash mob.", + "start": 2205.2, + "end": 2206.58, + "words": [ + { + "word": " I", + "start": 2205.2, + "end": 2205.54, + "probability": 0.75 + }, + { + "word": " heard", + "start": 2205.54, + "end": 2205.68, + "probability": 0.2252197265625 + }, + { + "word": " it", + "start": 2205.68, + "end": 2205.84, + "probability": 1.0 + }, + { + "word": " was", + "start": 2205.84, + "end": 2205.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2205.96, + "end": 2206.08, + "probability": 1.0 + }, + { + "word": " flash", + "start": 2206.08, + "end": 2206.32, + "probability": 0.9990234375 + }, + { + "word": " mob.", + "start": 2206.32, + "end": 2206.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1278, + "text": "I get it.", + "start": 2206.64, + "end": 2207.32, + "words": [ + { + "word": " I", + "start": 2206.64, + "end": 2206.9, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2206.9, + "end": 2207.12, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2207.12, + "end": 2207.32, + "probability": 1.0 + } + ] + }, + { + "id": 1279, + "text": "You know, I don't know anybody out there.", + "start": 2207.62, + "end": 2209.06, + "words": [ + { + "word": " You", + "start": 2207.62, + "end": 2208.02, + "probability": 0.9931640625 + }, + { + "word": " know,", + "start": 2208.02, + "end": 2208.14, + "probability": 1.0 + }, + { + "word": " I", + "start": 2208.18, + "end": 2208.26, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 2208.26, + "end": 2208.32, + "probability": 0.9853515625 + }, + { + "word": " know", + "start": 2208.32, + "end": 2208.4, + "probability": 0.9990234375 + }, + { + "word": " anybody", + "start": 2208.4, + "end": 2208.58, + "probability": 0.85302734375 + }, + { + "word": " out", + "start": 2208.58, + "end": 2208.88, + "probability": 0.880859375 + }, + { + "word": " there.", + "start": 2208.88, + "end": 2209.06, + "probability": 1.0 + } + ] + }, + { + "id": 1280, + "text": "There's a flash mob.", + "start": 2209.08, + "end": 2209.68, + "words": [ + { + "word": " There's", + "start": 2209.08, + "end": 2209.2, + "probability": 0.9287109375 + }, + { + "word": " a", + "start": 2209.2, + "end": 2209.2, + "probability": 0.80078125 + }, + { + "word": " flash", + "start": 2209.2, + "end": 2209.44, + "probability": 1.0 + }, + { + "word": " mob.", + "start": 2209.44, + "end": 2209.68, + "probability": 0.994140625 + } + ] + }, + { + "id": 1281, + "text": "I will tell you what, if you've ever seen an episode of if you think you can dance.", + "start": 2209.7, + "end": 2213.38, + "words": [ + { + "word": " I", + "start": 2209.7, + "end": 2209.88, + "probability": 0.99755859375 + }, + { + "word": " will", + "start": 2209.88, + "end": 2210.04, + "probability": 0.998046875 + }, + { + "word": " tell", + "start": 2210.04, + "end": 2210.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 2210.24, + "end": 2210.38, + "probability": 1.0 + }, + { + "word": " what,", + "start": 2210.38, + "end": 2210.56, + "probability": 1.0 + }, + { + "word": " if", + "start": 2210.6, + "end": 2210.88, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2210.88, + "end": 2211.2, + "probability": 1.0 + }, + { + "word": " ever", + "start": 2211.2, + "end": 2211.32, + "probability": 1.0 + }, + { + "word": " seen", + "start": 2211.32, + "end": 2211.54, + "probability": 1.0 + }, + { + "word": " an", + "start": 2211.54, + "end": 2211.68, + "probability": 1.0 + }, + { + "word": " episode", + "start": 2211.68, + "end": 2212.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 2212.0, + "end": 2212.34, + "probability": 1.0 + }, + { + "word": " if", + "start": 2212.34, + "end": 2212.62, + "probability": 0.61083984375 + }, + { + "word": " you", + "start": 2212.62, + "end": 2212.72, + "probability": 1.0 + }, + { + "word": " think", + "start": 2212.72, + "end": 2212.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 2212.9, + "end": 2213.0, + "probability": 1.0 + }, + { + "word": " can", + "start": 2213.0, + "end": 2213.12, + "probability": 1.0 + }, + { + "word": " dance.", + "start": 2213.12, + "end": 2213.38, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1282, + "text": "All right.", + "start": 2213.94, + "end": 2214.56, + "words": [ + { + "word": " All", + "start": 2213.94, + "end": 2214.34, + "probability": 0.998046875 + }, + { + "word": " right.", + "start": 2214.34, + "end": 2214.56, + "probability": 1.0 + } + ] + }, + { + "id": 1283, + "text": "Some people deserve to be tackled to the ground and then shoved around.", + "start": 2214.6, + "end": 2218.28, + "words": [ + { + "word": " Some", + "start": 2214.6, + "end": 2214.92, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 2214.92, + "end": 2215.28, + "probability": 1.0 + }, + { + "word": " deserve", + "start": 2215.28, + "end": 2215.62, + "probability": 0.8447265625 + }, + { + "word": " to", + "start": 2215.62, + "end": 2216.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 2216.26, + "end": 2216.38, + "probability": 1.0 + }, + { + "word": " tackled", + "start": 2216.38, + "end": 2216.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2216.74, + "end": 2216.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 2216.86, + "end": 2216.92, + "probability": 1.0 + }, + { + "word": " ground", + "start": 2216.92, + "end": 2217.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 2217.22, + "end": 2217.48, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 2217.48, + "end": 2217.84, + "probability": 0.64208984375 + }, + { + "word": " shoved", + "start": 2217.84, + "end": 2218.14, + "probability": 0.99951171875 + }, + { + "word": " around.", + "start": 2218.14, + "end": 2218.28, + "probability": 1.0 + } + ] + }, + { + "id": 1284, + "text": "This was not that.", + "start": 2218.42, + "end": 2220.28, + "words": [ + { + "word": " This", + "start": 2218.42, + "end": 2218.82, + "probability": 0.341064453125 + }, + { + "word": " was", + "start": 2218.82, + "end": 2219.6, + "probability": 0.99658203125 + }, + { + "word": " not", + "start": 2219.6, + "end": 2219.86, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 2219.86, + "end": 2220.28, + "probability": 0.93115234375 + } + ] + }, + { + "id": 1285, + "text": "Not that.", + "start": 2220.34, + "end": 2220.86, + "words": [ + { + "word": " Not", + "start": 2220.34, + "end": 2220.46, + "probability": 0.484130859375 + }, + { + "word": " that.", + "start": 2220.46, + "end": 2220.86, + "probability": 1.0 + } + ] + }, + { + "id": 1286, + "text": "I mean, come on.", + "start": 2220.94, + "end": 2222.06, + "words": [ + { + "word": " I", + "start": 2220.94, + "end": 2221.16, + "probability": 0.99853515625 + }, + { + "word": " mean,", + "start": 2221.16, + "end": 2221.38, + "probability": 1.0 + }, + { + "word": " come", + "start": 2221.42, + "end": 2221.68, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2221.68, + "end": 2222.06, + "probability": 1.0 + } + ] + }, + { + "id": 1287, + "text": "This is just out of hand.", + "start": 2222.1, + "end": 2223.14, + "words": [ + { + "word": " This", + "start": 2222.1, + "end": 2222.3, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2222.3, + "end": 2222.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 2222.42, + "end": 2222.6, + "probability": 0.91552734375 + }, + { + "word": " out", + "start": 2222.6, + "end": 2222.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 2222.8, + "end": 2222.94, + "probability": 0.99951171875 + }, + { + "word": " hand.", + "start": 2222.94, + "end": 2223.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1288, + "text": "Interpretive dance.", + "start": 2223.78, + "end": 2224.38, + "words": [ + { + "word": " Interpretive", + "start": 2223.78, + "end": 2224.18, + "probability": 0.99560546875 + }, + { + "word": " dance.", + "start": 2224.18, + "end": 2224.38, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1289, + "text": "What is that?", + "start": 2224.54, + "end": 2225.46, + "words": [ + { + "word": " What", + "start": 2224.54, + "end": 2224.92, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 2224.92, + "end": 2225.14, + "probability": 1.0 + }, + { + "word": " that?", + "start": 2225.14, + "end": 2225.46, + "probability": 1.0 + } + ] + }, + { + "id": 1290, + "text": "Really?", + "start": 2225.46, + "end": 2225.88, + "words": [ + { + "word": " Really?", + "start": 2225.46, + "end": 2225.88, + "probability": 0.65625 + } + ] + }, + { + "id": 1291, + "text": "Well, I don't get it.", + "start": 2226.7799999999997, + "end": 2228.26, + "words": [ + { + "word": " Well,", + "start": 2226.7799999999997, + "end": 2227.14, + "probability": 0.46142578125 + }, + { + "word": " I", + "start": 2227.14, + "end": 2227.5, + "probability": 0.94873046875 + }, + { + "word": " don't", + "start": 2227.5, + "end": 2227.72, + "probability": 0.51025390625 + }, + { + "word": " get", + "start": 2227.72, + "end": 2228.08, + "probability": 0.9951171875 + }, + { + "word": " it.", + "start": 2228.08, + "end": 2228.26, + "probability": 0.07415771484375 + } + ] + }, + { + "id": 1292, + "text": "I don't get the whole interpretive dancing, right?", + "start": 2228.26, + "end": 2230.54, + "words": [ + { + "word": " I", + "start": 2228.26, + "end": 2228.48, + "probability": 0.9931640625 + }, + { + "word": " don't", + "start": 2228.48, + "end": 2228.64, + "probability": 0.9951171875 + }, + { + "word": " get", + "start": 2228.64, + "end": 2228.76, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2228.76, + "end": 2228.84, + "probability": 0.998046875 + }, + { + "word": " whole", + "start": 2228.84, + "end": 2228.98, + "probability": 0.99951171875 + }, + { + "word": " interpretive", + "start": 2228.98, + "end": 2229.82, + "probability": 0.9541015625 + }, + { + "word": " dancing,", + "start": 2229.82, + "end": 2230.08, + "probability": 0.09503173828125 + }, + { + "word": " right?", + "start": 2230.34, + "end": 2230.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1293, + "text": "Maybe I'm not interpreting it, but, you know, just like, OK, you look like you got stung", + "start": 2230.88, + "end": 2235.6, + "words": [ + { + "word": " Maybe", + "start": 2230.88, + "end": 2231.24, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 2231.24, + "end": 2231.58, + "probability": 1.0 + }, + { + "word": " not", + "start": 2231.58, + "end": 2231.76, + "probability": 1.0 + }, + { + "word": " interpreting", + "start": 2231.76, + "end": 2232.2, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2232.2, + "end": 2232.48, + "probability": 1.0 + }, + { + "word": " but,", + "start": 2232.56, + "end": 2232.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 2232.76, + "end": 2232.92, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2232.92, + "end": 2233.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 2233.06, + "end": 2233.28, + "probability": 0.982421875 + }, + { + "word": " like,", + "start": 2233.28, + "end": 2233.44, + "probability": 0.9970703125 + }, + { + "word": " OK,", + "start": 2233.52, + "end": 2233.72, + "probability": 0.100341796875 + }, + { + "word": " you", + "start": 2233.88, + "end": 2234.52, + "probability": 1.0 + }, + { + "word": " look", + "start": 2234.52, + "end": 2234.72, + "probability": 1.0 + }, + { + "word": " like", + "start": 2234.72, + "end": 2234.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 2234.86, + "end": 2235.0, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2235.0, + "end": 2235.16, + "probability": 0.99951171875 + }, + { + "word": " stung", + "start": 2235.16, + "end": 2235.6, + "probability": 1.0 + } + ] + }, + { + "id": 1294, + "text": "by a bee in your lower back.", + "start": 2235.6, + "end": 2236.74, + "words": [ + { + "word": " by", + "start": 2235.6, + "end": 2235.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 2235.78, + "end": 2235.92, + "probability": 1.0 + }, + { + "word": " bee", + "start": 2235.92, + "end": 2236.08, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2236.08, + "end": 2236.18, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2236.18, + "end": 2236.28, + "probability": 1.0 + }, + { + "word": " lower", + "start": 2236.28, + "end": 2236.48, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2236.48, + "end": 2236.74, + "probability": 1.0 + } + ] + }, + { + "id": 1295, + "text": "Well, here's the cool thing.", + "start": 2236.88, + "end": 2237.68, + "words": [ + { + "word": " Well,", + "start": 2236.88, + "end": 2237.0, + "probability": 0.71728515625 + }, + { + "word": " here's", + "start": 2237.0, + "end": 2237.24, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2237.24, + "end": 2237.24, + "probability": 0.99951171875 + }, + { + "word": " cool", + "start": 2237.24, + "end": 2237.5, + "probability": 0.9921875 + }, + { + "word": " thing.", + "start": 2237.5, + "end": 2237.68, + "probability": 0.97607421875 + } + ] + }, + { + "id": 1296, + "text": "Here's the cool thing.", + "start": 2237.68, + "end": 2238.22, + "words": [ + { + "word": " Here's", + "start": 2237.68, + "end": 2237.86, + "probability": 0.50244140625 + }, + { + "word": " the", + "start": 2237.86, + "end": 2237.9, + "probability": 0.99951171875 + }, + { + "word": " cool", + "start": 2237.9, + "end": 2238.08, + "probability": 0.99951171875 + }, + { + "word": " thing.", + "start": 2238.08, + "end": 2238.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1297, + "text": "They tried to prove something by shuffling around.", + "start": 2238.22, + "end": 2240.24, + "words": [ + { + "word": " They", + "start": 2238.22, + "end": 2238.4, + "probability": 0.058349609375 + }, + { + "word": " tried", + "start": 2238.4, + "end": 2238.66, + "probability": 0.87158203125 + }, + { + "word": " to", + "start": 2238.66, + "end": 2238.88, + "probability": 1.0 + }, + { + "word": " prove", + "start": 2238.88, + "end": 2239.04, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2239.04, + "end": 2239.42, + "probability": 1.0 + }, + { + "word": " by", + "start": 2239.42, + "end": 2239.66, + "probability": 1.0 + }, + { + "word": " shuffling", + "start": 2239.66, + "end": 2240.04, + "probability": 1.0 + }, + { + "word": " around.", + "start": 2240.04, + "end": 2240.24, + "probability": 1.0 + } + ] + }, + { + "id": 1298, + "text": "I don't understand why they had one of the music in their ears that they were shuffling.", + "start": 2240.36, + "end": 2244.02, + "words": [ + { + "word": " I", + "start": 2240.36, + "end": 2240.52, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 2240.52, + "end": 2240.64, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2240.64, + "end": 2240.94, + "probability": 1.0 + }, + { + "word": " why", + "start": 2240.94, + "end": 2241.2, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2241.2, + "end": 2241.38, + "probability": 0.99853515625 + }, + { + "word": " had", + "start": 2241.38, + "end": 2241.6, + "probability": 0.880859375 + }, + { + "word": " one", + "start": 2241.6, + "end": 2242.02, + "probability": 0.0615234375 + }, + { + "word": " of", + "start": 2242.02, + "end": 2242.22, + "probability": 0.318603515625 + }, + { + "word": " the", + "start": 2242.22, + "end": 2242.28, + "probability": 0.8212890625 + }, + { + "word": " music", + "start": 2242.28, + "end": 2242.64, + "probability": 0.89013671875 + }, + { + "word": " in", + "start": 2242.64, + "end": 2242.86, + "probability": 1.0 + }, + { + "word": " their", + "start": 2242.86, + "end": 2242.96, + "probability": 1.0 + }, + { + "word": " ears", + "start": 2242.96, + "end": 2243.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 2243.22, + "end": 2243.36, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2243.36, + "end": 2243.48, + "probability": 1.0 + }, + { + "word": " were", + "start": 2243.48, + "end": 2243.6, + "probability": 1.0 + }, + { + "word": " shuffling.", + "start": 2243.6, + "end": 2244.02, + "probability": 1.0 + } + ] + }, + { + "id": 1299, + "text": "They wanted to bring this to light that this is a ridiculous law.", + "start": 2244.04, + "end": 2246.86, + "words": [ + { + "word": " They", + "start": 2244.04, + "end": 2244.36, + "probability": 0.99560546875 + }, + { + "word": " wanted", + "start": 2244.36, + "end": 2244.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2244.52, + "end": 2244.74, + "probability": 1.0 + }, + { + "word": " bring", + "start": 2244.74, + "end": 2244.9, + "probability": 1.0 + }, + { + "word": " this", + "start": 2244.9, + "end": 2245.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 2245.12, + "end": 2245.24, + "probability": 1.0 + }, + { + "word": " light", + "start": 2245.24, + "end": 2245.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 2245.52, + "end": 2245.72, + "probability": 0.9296875 + }, + { + "word": " this", + "start": 2245.72, + "end": 2245.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 2245.9, + "end": 2245.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 2245.98, + "end": 2246.04, + "probability": 1.0 + }, + { + "word": " ridiculous", + "start": 2246.04, + "end": 2246.36, + "probability": 1.0 + }, + { + "word": " law.", + "start": 2246.36, + "end": 2246.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1300, + "text": "And exactly.", + "start": 2247.04, + "end": 2247.84, + "words": [ + { + "word": " And", + "start": 2247.04, + "end": 2247.4, + "probability": 0.99951171875 + }, + { + "word": " exactly.", + "start": 2247.4, + "end": 2247.84, + "probability": 0.74658203125 + } + ] + }, + { + "id": 1301, + "text": "They did exactly what it did.", + "start": 2247.88, + "end": 2248.82, + "words": [ + { + "word": " They", + "start": 2247.88, + "end": 2248.06, + "probability": 0.96044921875 + }, + { + "word": " did", + "start": 2248.06, + "end": 2248.24, + "probability": 0.9931640625 + }, + { + "word": " exactly", + "start": 2248.24, + "end": 2248.48, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 2248.48, + "end": 2248.66, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2248.66, + "end": 2248.72, + "probability": 0.9716796875 + }, + { + "word": " did.", + "start": 2248.72, + "end": 2248.82, + "probability": 1.0 + } + ] + }, + { + "id": 1302, + "text": "And now they're trying to schedule another protest.", + "start": 2248.86, + "end": 2250.64, + "words": [ + { + "word": " And", + "start": 2248.86, + "end": 2249.14, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 2249.14, + "end": 2249.34, + "probability": 1.0 + }, + { + "word": " they're", + "start": 2249.34, + "end": 2249.54, + "probability": 1.0 + }, + { + "word": " trying", + "start": 2249.54, + "end": 2249.68, + "probability": 0.94970703125 + }, + { + "word": " to", + "start": 2249.68, + "end": 2249.76, + "probability": 0.9970703125 + }, + { + "word": " schedule", + "start": 2249.76, + "end": 2249.98, + "probability": 0.9970703125 + }, + { + "word": " another", + "start": 2249.98, + "end": 2250.18, + "probability": 1.0 + }, + { + "word": " protest.", + "start": 2250.18, + "end": 2250.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1303, + "text": "And this time they actually contacted Kevin Bacon, trying to get Kevin Bacon to come down", + "start": 2250.7, + "end": 2254.88, + "words": [ + { + "word": " And", + "start": 2250.7, + "end": 2250.82, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 2250.82, + "end": 2250.94, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 2250.94, + "end": 2251.1, + "probability": 1.0 + }, + { + "word": " they", + "start": 2251.1, + "end": 2251.24, + "probability": 0.97216796875 + }, + { + "word": " actually", + "start": 2251.24, + "end": 2251.6, + "probability": 0.71826171875 + }, + { + "word": " contacted", + "start": 2251.6, + "end": 2252.48, + "probability": 1.0 + }, + { + "word": " Kevin", + "start": 2252.48, + "end": 2252.78, + "probability": 1.0 + }, + { + "word": " Bacon,", + "start": 2252.78, + "end": 2253.16, + "probability": 0.99951171875 + }, + { + "word": " trying", + "start": 2253.3, + "end": 2253.68, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 2253.68, + "end": 2253.78, + "probability": 1.0 + }, + { + "word": " get", + "start": 2253.78, + "end": 2253.86, + "probability": 1.0 + }, + { + "word": " Kevin", + "start": 2253.86, + "end": 2254.02, + "probability": 0.99951171875 + }, + { + "word": " Bacon", + "start": 2254.02, + "end": 2254.38, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2254.38, + "end": 2254.52, + "probability": 1.0 + }, + { + "word": " come", + "start": 2254.52, + "end": 2254.64, + "probability": 1.0 + }, + { + "word": " down", + "start": 2254.64, + "end": 2254.88, + "probability": 1.0 + } + ] + }, + { + "id": 1304, + "text": "there.", + "start": 2254.88, + "end": 2255.02, + "words": [ + { + "word": " there.", + "start": 2254.88, + "end": 2255.02, + "probability": 0.9921875 + } + ] + }, + { + "id": 1305, + "text": "Dance with him.", + "start": 2255.02, + "end": 2255.58, + "words": [ + { + "word": " Dance", + "start": 2255.02, + "end": 2255.16, + "probability": 0.0121002197265625 + }, + { + "word": " with", + "start": 2255.16, + "end": 2255.42, + "probability": 0.92333984375 + }, + { + "word": " him.", + "start": 2255.42, + "end": 2255.58, + "probability": 0.59765625 + } + ] + }, + { + "id": 1306, + "text": "It ain't gonna happen.", + "start": 2255.76, + "end": 2256.26, + "words": [ + { + "word": " It", + "start": 2255.76, + "end": 2255.78, + "probability": 0.373046875 + }, + { + "word": " ain't", + "start": 2255.78, + "end": 2255.96, + "probability": 0.9873046875 + }, + { + "word": " gonna", + "start": 2255.96, + "end": 2256.06, + "probability": 0.247802734375 + }, + { + "word": " happen.", + "start": 2256.06, + "end": 2256.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1307, + "text": "I don't think he ever would.", + "start": 2256.44, + "end": 2257.54, + "words": [ + { + "word": " I", + "start": 2256.44, + "end": 2256.76, + "probability": 0.89404296875 + }, + { + "word": " don't", + "start": 2256.76, + "end": 2257.02, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 2257.02, + "end": 2257.12, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 2257.12, + "end": 2257.22, + "probability": 0.99560546875 + }, + { + "word": " ever", + "start": 2257.22, + "end": 2257.36, + "probability": 1.0 + }, + { + "word": " would.", + "start": 2257.36, + "end": 2257.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1308, + "text": "But he's too busy being an X-Men.", + "start": 2257.84, + "end": 2259.52, + "words": [ + { + "word": " But", + "start": 2257.84, + "end": 2257.84, + "probability": 0.0035037994384765625 + }, + { + "word": " he's", + "start": 2257.84, + "end": 2258.58, + "probability": 0.76171875 + }, + { + "word": " too", + "start": 2258.58, + "end": 2258.58, + "probability": 0.98828125 + }, + { + "word": " busy", + "start": 2258.58, + "end": 2258.8, + "probability": 0.9990234375 + }, + { + "word": " being", + "start": 2258.8, + "end": 2259.14, + "probability": 0.99755859375 + }, + { + "word": " an", + "start": 2259.14, + "end": 2259.2, + "probability": 0.9970703125 + }, + { + "word": " X", + "start": 2259.2, + "end": 2259.44, + "probability": 0.9755859375 + }, + { + "word": "-Men.", + "start": 2259.44, + "end": 2259.52, + "probability": 0.755859375 + } + ] + }, + { + "id": 1309, + "text": "Oh, all right.", + "start": 2259.8, + "end": 2260.48, + "words": [ + { + "word": " Oh,", + "start": 2259.8, + "end": 2260.12, + "probability": 0.599609375 + }, + { + "word": " all", + "start": 2260.12, + "end": 2260.28, + "probability": 0.06842041015625 + }, + { + "word": " right.", + "start": 2260.28, + "end": 2260.48, + "probability": 1.0 + } + ] + }, + { + "id": 1310, + "text": "Let's take some calls here.", + "start": 2260.6, + "end": 2261.5, + "words": [ + { + "word": " Let's", + "start": 2260.6, + "end": 2260.92, + "probability": 0.99560546875 + }, + { + "word": " take", + "start": 2260.92, + "end": 2261.04, + "probability": 0.99658203125 + }, + { + "word": " some", + "start": 2261.04, + "end": 2261.16, + "probability": 1.0 + }, + { + "word": " calls", + "start": 2261.16, + "end": 2261.34, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 2261.34, + "end": 2261.5, + "probability": 0.7998046875 + } + ] + }, + { + "id": 1311, + "text": "Let's talk to Adam.", + "start": 2261.52, + "end": 2261.98, + "words": [ + { + "word": " Let's", + "start": 2261.52, + "end": 2261.62, + "probability": 0.9951171875 + }, + { + "word": " talk", + "start": 2261.62, + "end": 2261.72, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2261.72, + "end": 2261.82, + "probability": 1.0 + }, + { + "word": " Adam.", + "start": 2261.82, + "end": 2261.98, + "probability": 1.0 + } + ] + }, + { + "id": 1312, + "text": "Hey, Adam, how you doing?", + "start": 2262.04, + "end": 2262.68, + "words": [ + { + "word": " Hey,", + "start": 2262.04, + "end": 2262.18, + "probability": 0.998046875 + }, + { + "word": " Adam,", + "start": 2262.18, + "end": 2262.32, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 2262.4, + "end": 2262.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2262.42, + "end": 2262.5, + "probability": 0.99072265625 + }, + { + "word": " doing?", + "start": 2262.5, + "end": 2262.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1313, + "text": "Hey, what's going on, guys?", + "start": 2262.86, + "end": 2263.74, + "words": [ + { + "word": " Hey,", + "start": 2262.86, + "end": 2263.18, + "probability": 0.998046875 + }, + { + "word": " what's", + "start": 2263.2, + "end": 2263.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 2263.36, + "end": 2263.48, + "probability": 1.0 + }, + { + "word": " on,", + "start": 2263.48, + "end": 2263.64, + "probability": 1.0 + }, + { + "word": " guys?", + "start": 2263.66, + "end": 2263.74, + "probability": 0.984375 + } + ] + }, + { + "id": 1314, + "text": "What's going on, man?", + "start": 2263.94, + "end": 2264.64, + "words": [ + { + "word": " What's", + "start": 2263.94, + "end": 2264.22, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2264.22, + "end": 2264.32, + "probability": 1.0 + }, + { + "word": " on,", + "start": 2264.32, + "end": 2264.48, + "probability": 1.0 + }, + { + "word": " man?", + "start": 2264.54, + "end": 2264.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1315, + "text": "I got a question, but first I'd like to comment.", + "start": 2265.02, + "end": 2266.8, + "words": [ + { + "word": " I", + "start": 2265.02, + "end": 2265.34, + "probability": 0.81201171875 + }, + { + "word": " got", + "start": 2265.34, + "end": 2265.52, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 2265.52, + "end": 2265.62, + "probability": 1.0 + }, + { + "word": " question,", + "start": 2265.62, + "end": 2265.9, + "probability": 1.0 + }, + { + "word": " but", + "start": 2265.94, + "end": 2266.04, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 2266.04, + "end": 2266.28, + "probability": 0.99853515625 + }, + { + "word": " I'd", + "start": 2266.28, + "end": 2266.44, + "probability": 0.9658203125 + }, + { + "word": " like", + "start": 2266.44, + "end": 2266.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 2266.5, + "end": 2266.54, + "probability": 1.0 + }, + { + "word": " comment.", + "start": 2266.54, + "end": 2266.8, + "probability": 1.0 + } + ] + }, + { + "id": 1316, + "text": "I think they should only be allowed to dance if they could tell you who Jefferson was.", + "start": 2266.98, + "end": 2270.24, + "words": [ + { + "word": " I", + "start": 2266.98, + "end": 2267.26, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 2267.26, + "end": 2267.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 2267.44, + "end": 2267.54, + "probability": 1.0 + }, + { + "word": " should", + "start": 2267.54, + "end": 2267.64, + "probability": 1.0 + }, + { + "word": " only", + "start": 2267.64, + "end": 2267.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 2267.8, + "end": 2267.92, + "probability": 1.0 + }, + { + "word": " allowed", + "start": 2267.92, + "end": 2268.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2268.04, + "end": 2268.22, + "probability": 1.0 + }, + { + "word": " dance", + "start": 2268.22, + "end": 2268.5, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2268.5, + "end": 2268.92, + "probability": 0.8251953125 + }, + { + "word": " they", + "start": 2268.92, + "end": 2269.18, + "probability": 1.0 + }, + { + "word": " could", + "start": 2269.18, + "end": 2269.32, + "probability": 0.8759765625 + }, + { + "word": " tell", + "start": 2269.32, + "end": 2269.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 2269.5, + "end": 2269.58, + "probability": 1.0 + }, + { + "word": " who", + "start": 2269.58, + "end": 2269.7, + "probability": 0.99951171875 + }, + { + "word": " Jefferson", + "start": 2269.7, + "end": 2269.9, + "probability": 0.99951171875 + }, + { + "word": " was.", + "start": 2269.9, + "end": 2270.24, + "probability": 1.0 + } + ] + }, + { + "id": 1317, + "text": "And they can give you at least one quote from Jefferson.", + "start": 2270.38, + "end": 2272.12, + "words": [ + { + "word": " And", + "start": 2270.38, + "end": 2270.54, + "probability": 0.55126953125 + }, + { + "word": " they", + "start": 2270.54, + "end": 2270.64, + "probability": 0.99609375 + }, + { + "word": " can", + "start": 2270.64, + "end": 2270.74, + "probability": 0.982421875 + }, + { + "word": " give", + "start": 2270.74, + "end": 2270.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 2270.9, + "end": 2271.0, + "probability": 1.0 + }, + { + "word": " at", + "start": 2271.0, + "end": 2271.08, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 2271.08, + "end": 2271.18, + "probability": 1.0 + }, + { + "word": " one", + "start": 2271.18, + "end": 2271.34, + "probability": 1.0 + }, + { + "word": " quote", + "start": 2271.34, + "end": 2271.64, + "probability": 1.0 + }, + { + "word": " from", + "start": 2271.64, + "end": 2271.84, + "probability": 0.99951171875 + }, + { + "word": " Jefferson.", + "start": 2271.84, + "end": 2272.12, + "probability": 1.0 + } + ] + }, + { + "id": 1318, + "text": "All right.", + "start": 2272.48, + "end": 2273.0, + "words": [ + { + "word": " All", + "start": 2272.48, + "end": 2272.8, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 2272.8, + "end": 2273.0, + "probability": 1.0 + } + ] + }, + { + "id": 1319, + "text": "All right.", + "start": 2273.18, + "end": 2273.72, + "words": [ + { + "word": " All", + "start": 2273.18, + "end": 2273.5, + "probability": 0.583984375 + }, + { + "word": " right.", + "start": 2273.5, + "end": 2273.72, + "probability": 1.0 + } + ] + }, + { + "id": 1320, + "text": "I can live with that.", + "start": 2273.72, + "end": 2274.58, + "words": [ + { + "word": " I", + "start": 2273.72, + "end": 2274.0, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 2274.0, + "end": 2274.12, + "probability": 0.998046875 + }, + { + "word": " live", + "start": 2274.12, + "end": 2274.28, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2274.28, + "end": 2274.4, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2274.4, + "end": 2274.58, + "probability": 1.0 + } + ] + }, + { + "id": 1321, + "text": "But the great thing about this country is you don't have to do that.", + "start": 2274.7, + "end": 2277.06, + "words": [ + { + "word": " But", + "start": 2274.7, + "end": 2274.94, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 2274.94, + "end": 2275.04, + "probability": 1.0 + }, + { + "word": " great", + "start": 2275.04, + "end": 2275.16, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2275.16, + "end": 2275.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 2275.28, + "end": 2275.44, + "probability": 1.0 + }, + { + "word": " this", + "start": 2275.44, + "end": 2275.6, + "probability": 1.0 + }, + { + "word": " country", + "start": 2275.6, + "end": 2275.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 2275.82, + "end": 2276.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 2276.0, + "end": 2276.2, + "probability": 0.9970703125 + }, + { + "word": " don't", + "start": 2276.2, + "end": 2276.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 2276.4, + "end": 2276.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2276.54, + "end": 2276.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 2276.74, + "end": 2276.88, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2276.88, + "end": 2277.06, + "probability": 1.0 + } + ] + }, + { + "id": 1322, + "text": "That's the great thing about this country.", + "start": 2277.1, + "end": 2277.9, + "words": [ + { + "word": " That's", + "start": 2277.1, + "end": 2277.26, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 2277.26, + "end": 2277.28, + "probability": 0.99755859375 + }, + { + "word": " great", + "start": 2277.28, + "end": 2277.44, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2277.44, + "end": 2277.56, + "probability": 1.0 + }, + { + "word": " about", + "start": 2277.56, + "end": 2277.66, + "probability": 1.0 + }, + { + "word": " this", + "start": 2277.66, + "end": 2277.78, + "probability": 1.0 + }, + { + "word": " country.", + "start": 2277.78, + "end": 2277.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 1323, + "text": "You could just say, you know, Jefferson didn't know how to spell.", + "start": 2277.92, + "end": 2280.06, + "words": [ + { + "word": " You", + "start": 2277.92, + "end": 2278.04, + "probability": 0.9853515625 + }, + { + "word": " could", + "start": 2278.04, + "end": 2278.16, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 2278.16, + "end": 2278.32, + "probability": 1.0 + }, + { + "word": " say,", + "start": 2278.32, + "end": 2278.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 2278.54, + "end": 2278.62, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2278.62, + "end": 2278.74, + "probability": 1.0 + }, + { + "word": " Jefferson", + "start": 2278.86, + "end": 2279.34, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 2279.34, + "end": 2279.64, + "probability": 0.99609375 + }, + { + "word": " know", + "start": 2279.64, + "end": 2279.7, + "probability": 1.0 + }, + { + "word": " how", + "start": 2279.7, + "end": 2279.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 2279.82, + "end": 2279.84, + "probability": 1.0 + }, + { + "word": " spell.", + "start": 2279.84, + "end": 2280.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1324, + "text": "That would work.", + "start": 2280.8999999999996, + "end": 2281.94, + "words": [ + { + "word": " That", + "start": 2280.8999999999996, + "end": 2281.22, + "probability": 0.1580810546875 + }, + { + "word": " would", + "start": 2281.22, + "end": 2281.54, + "probability": 0.99951171875 + }, + { + "word": " work.", + "start": 2281.54, + "end": 2281.94, + "probability": 0.751953125 + } + ] + }, + { + "id": 1325, + "text": "Because I went.", + "start": 2282.9399999999996, + "end": 2283.82, + "words": [ + { + "word": " Because", + "start": 2282.9399999999996, + "end": 2283.2599999999998, + "probability": 0.666015625 + }, + { + "word": " I", + "start": 2283.2599999999998, + "end": 2283.58, + "probability": 1.0 + }, + { + "word": " went.", + "start": 2283.58, + "end": 2283.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1326, + "text": "I went to, you know, to Virginia and checked out the Jefferson estate.", + "start": 2283.82, + "end": 2286.84, + "words": [ + { + "word": " I", + "start": 2283.82, + "end": 2283.96, + "probability": 0.9169921875 + }, + { + "word": " went", + "start": 2283.96, + "end": 2284.2, + "probability": 0.9970703125 + }, + { + "word": " to,", + "start": 2284.2, + "end": 2284.46, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2284.46, + "end": 2284.7, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2284.7, + "end": 2284.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 2284.8, + "end": 2284.94, + "probability": 0.9912109375 + }, + { + "word": " Virginia", + "start": 2284.94, + "end": 2285.3, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2285.3, + "end": 2285.52, + "probability": 0.9970703125 + }, + { + "word": " checked", + "start": 2285.52, + "end": 2285.74, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 2285.74, + "end": 2285.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2285.92, + "end": 2286.1, + "probability": 0.9990234375 + }, + { + "word": " Jefferson", + "start": 2286.1, + "end": 2286.46, + "probability": 0.99853515625 + }, + { + "word": " estate.", + "start": 2286.46, + "end": 2286.84, + "probability": 0.12274169921875 + } + ] + }, + { + "id": 1327, + "text": "Right.", + "start": 2287.02, + "end": 2287.3, + "words": [ + { + "word": " Right.", + "start": 2287.02, + "end": 2287.3, + "probability": 0.974609375 + } + ] + }, + { + "id": 1328, + "text": "Right.", + "start": 2287.3, + "end": 2287.52, + "words": [ + { + "word": " Right.", + "start": 2287.3, + "end": 2287.52, + "probability": 0.14794921875 + } + ] + }, + { + "id": 1329, + "text": "That dude was pretty cool.", + "start": 2288.02, + "end": 2289.02, + "words": [ + { + "word": " That", + "start": 2288.02, + "end": 2288.38, + "probability": 0.9921875 + }, + { + "word": " dude", + "start": 2288.38, + "end": 2288.52, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2288.52, + "end": 2288.66, + "probability": 0.99072265625 + }, + { + "word": " pretty", + "start": 2288.66, + "end": 2288.8, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 2288.8, + "end": 2289.02, + "probability": 1.0 + } + ] + }, + { + "id": 1330, + "text": "All right.", + "start": 2289.18, + "end": 2289.66, + "words": [ + { + "word": " All", + "start": 2289.18, + "end": 2289.54, + "probability": 0.99365234375 + }, + { + "word": " right.", + "start": 2289.54, + "end": 2289.66, + "probability": 1.0 + } + ] + }, + { + "id": 1331, + "text": "Go ahead.", + "start": 2289.68, + "end": 2289.92, + "words": [ + { + "word": " Go", + "start": 2289.68, + "end": 2289.78, + "probability": 0.9970703125 + }, + { + "word": " ahead.", + "start": 2289.78, + "end": 2289.92, + "probability": 1.0 + } + ] + }, + { + "id": 1332, + "text": "Yeah.", + "start": 2290.06, + "end": 2290.32, + "words": [ + { + "word": " Yeah.", + "start": 2290.06, + "end": 2290.32, + "probability": 0.99609375 + } + ] + }, + { + "id": 1333, + "text": "I mean, awesome.", + "start": 2290.42, + "end": 2292.16, + "words": [ + { + "word": " I", + "start": 2290.42, + "end": 2290.78, + "probability": 0.8203125 + }, + { + "word": " mean,", + "start": 2290.78, + "end": 2291.04, + "probability": 0.99951171875 + }, + { + "word": " awesome.", + "start": 2291.12, + "end": 2292.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1334, + "text": "So what's going on, Adam?", + "start": 2292.42, + "end": 2293.42, + "words": [ + { + "word": " So", + "start": 2292.42, + "end": 2292.64, + "probability": 0.98095703125 + }, + { + "word": " what's", + "start": 2292.64, + "end": 2292.8, + "probability": 0.888671875 + }, + { + "word": " going", + "start": 2292.8, + "end": 2292.94, + "probability": 1.0 + }, + { + "word": " on,", + "start": 2292.94, + "end": 2293.16, + "probability": 1.0 + }, + { + "word": " Adam?", + "start": 2293.22, + "end": 2293.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1335, + "text": "I got a problem every time I try to get onto an email or some website.", + "start": 2294.24, + "end": 2297.5, + "words": [ + { + "word": " I", + "start": 2294.24, + "end": 2294.6, + "probability": 0.9619140625 + }, + { + "word": " got", + "start": 2294.6, + "end": 2294.78, + "probability": 0.83740234375 + }, + { + "word": " a", + "start": 2294.78, + "end": 2294.92, + "probability": 1.0 + }, + { + "word": " problem", + "start": 2294.92, + "end": 2295.1, + "probability": 1.0 + }, + { + "word": " every", + "start": 2295.1, + "end": 2295.26, + "probability": 0.9228515625 + }, + { + "word": " time", + "start": 2295.26, + "end": 2295.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 2295.38, + "end": 2295.5, + "probability": 1.0 + }, + { + "word": " try", + "start": 2295.5, + "end": 2295.72, + "probability": 0.9677734375 + }, + { + "word": " to", + "start": 2295.72, + "end": 2295.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 2295.88, + "end": 2295.98, + "probability": 1.0 + }, + { + "word": " onto", + "start": 2295.98, + "end": 2296.1, + "probability": 0.72265625 + }, + { + "word": " an", + "start": 2296.1, + "end": 2296.22, + "probability": 1.0 + }, + { + "word": " email", + "start": 2296.22, + "end": 2296.44, + "probability": 0.724609375 + }, + { + "word": " or", + "start": 2296.44, + "end": 2296.76, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 2296.76, + "end": 2297.08, + "probability": 0.9599609375 + }, + { + "word": " website.", + "start": 2297.08, + "end": 2297.5, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1336, + "text": "It pops up every time.", + "start": 2297.64, + "end": 2298.8, + "words": [ + { + "word": " It", + "start": 2297.64, + "end": 2297.84, + "probability": 0.9990234375 + }, + { + "word": " pops", + "start": 2297.84, + "end": 2298.04, + "probability": 1.0 + }, + { + "word": " up", + "start": 2298.04, + "end": 2298.28, + "probability": 1.0 + }, + { + "word": " every", + "start": 2298.28, + "end": 2298.64, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2298.64, + "end": 2298.8, + "probability": 1.0 + } + ] + }, + { + "id": 1337, + "text": "Security warning.", + "start": 2298.86, + "end": 2299.36, + "words": [ + { + "word": " Security", + "start": 2298.86, + "end": 2299.08, + "probability": 0.99072265625 + }, + { + "word": " warning.", + "start": 2299.08, + "end": 2299.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1338, + "text": "Do you want to view only the web page content that was delivered securely?", + "start": 2299.44, + "end": 2301.76, + "words": [ + { + "word": " Do", + "start": 2299.44, + "end": 2299.56, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2299.56, + "end": 2299.62, + "probability": 1.0 + }, + { + "word": " want", + "start": 2299.62, + "end": 2299.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2299.72, + "end": 2299.82, + "probability": 1.0 + }, + { + "word": " view", + "start": 2299.82, + "end": 2299.96, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 2299.96, + "end": 2300.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2300.2, + "end": 2300.34, + "probability": 1.0 + }, + { + "word": " web", + "start": 2300.34, + "end": 2300.48, + "probability": 0.47900390625 + }, + { + "word": " page", + "start": 2300.48, + "end": 2300.62, + "probability": 0.99951171875 + }, + { + "word": " content", + "start": 2300.62, + "end": 2300.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2300.92, + "end": 2301.1, + "probability": 1.0 + }, + { + "word": " was", + "start": 2301.1, + "end": 2301.2, + "probability": 1.0 + }, + { + "word": " delivered", + "start": 2301.2, + "end": 2301.44, + "probability": 1.0 + }, + { + "word": " securely?", + "start": 2301.44, + "end": 2301.76, + "probability": 1.0 + } + ] + }, + { + "id": 1339, + "text": "Okay.", + "start": 2302.3, + "end": 2302.66, + "words": [ + { + "word": " Okay.", + "start": 2302.3, + "end": 2302.66, + "probability": 0.87744140625 + } + ] + }, + { + "id": 1340, + "text": "And I could say more info, yes or no.", + "start": 2302.76, + "end": 2304.62, + "words": [ + { + "word": " And", + "start": 2302.76, + "end": 2302.96, + "probability": 0.93212890625 + }, + { + "word": " I", + "start": 2302.96, + "end": 2303.04, + "probability": 1.0 + }, + { + "word": " could", + "start": 2303.04, + "end": 2303.1, + "probability": 0.931640625 + }, + { + "word": " say", + "start": 2303.1, + "end": 2303.26, + "probability": 0.994140625 + }, + { + "word": " more", + "start": 2303.26, + "end": 2303.5, + "probability": 0.92724609375 + }, + { + "word": " info,", + "start": 2303.5, + "end": 2303.76, + "probability": 1.0 + }, + { + "word": " yes", + "start": 2303.94, + "end": 2304.18, + "probability": 1.0 + }, + { + "word": " or", + "start": 2304.18, + "end": 2304.4, + "probability": 0.9990234375 + }, + { + "word": " no.", + "start": 2304.4, + "end": 2304.62, + "probability": 1.0 + } + ] + }, + { + "id": 1341, + "text": "It kind of sounds like you're using Internet Explorer, right?", + "start": 2304.8, + "end": 2307.36, + "words": [ + { + "word": " It", + "start": 2304.8, + "end": 2304.94, + "probability": 0.72119140625 + }, + { + "word": " kind", + "start": 2304.94, + "end": 2305.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 2305.1, + "end": 2305.2, + "probability": 1.0 + }, + { + "word": " sounds", + "start": 2305.2, + "end": 2305.42, + "probability": 1.0 + }, + { + "word": " like", + "start": 2305.42, + "end": 2305.64, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2305.64, + "end": 2305.92, + "probability": 0.9599609375 + }, + { + "word": " using", + "start": 2305.92, + "end": 2306.12, + "probability": 0.845703125 + }, + { + "word": " Internet", + "start": 2306.12, + "end": 2306.68, + "probability": 0.54150390625 + }, + { + "word": " Explorer,", + "start": 2306.68, + "end": 2307.08, + "probability": 0.9990234375 + }, + { + "word": " right?", + "start": 2307.2, + "end": 2307.36, + "probability": 1.0 + } + ] + }, + { + "id": 1342, + "text": "Yes.", + "start": 2307.8, + "end": 2308.16, + "words": [ + { + "word": " Yes.", + "start": 2307.8, + "end": 2308.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1343, + "text": "All right.", + "start": 2308.6, + "end": 2309.08, + "words": [ + { + "word": " All", + "start": 2308.6, + "end": 2308.96, + "probability": 0.9638671875 + }, + { + "word": " right.", + "start": 2308.96, + "end": 2309.08, + "probability": 1.0 + } + ] + }, + { + "id": 1344, + "text": "And what version of Windows do you have?", + "start": 2309.32, + "end": 2310.66, + "words": [ + { + "word": " And", + "start": 2309.32, + "end": 2309.68, + "probability": 0.99267578125 + }, + { + "word": " what", + "start": 2309.68, + "end": 2309.88, + "probability": 1.0 + }, + { + "word": " version", + "start": 2309.88, + "end": 2310.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 2310.14, + "end": 2310.22, + "probability": 0.99853515625 + }, + { + "word": " Windows", + "start": 2310.22, + "end": 2310.32, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 2310.32, + "end": 2310.5, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2310.5, + "end": 2310.52, + "probability": 1.0 + }, + { + "word": " have?", + "start": 2310.52, + "end": 2310.66, + "probability": 1.0 + } + ] + }, + { + "id": 1345, + "text": "What do I have?", + "start": 2311.72, + "end": 2312.46, + "words": [ + { + "word": " What", + "start": 2311.72, + "end": 2312.08, + "probability": 0.98583984375 + }, + { + "word": " do", + "start": 2312.08, + "end": 2312.2, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2312.2, + "end": 2312.26, + "probability": 0.9951171875 + }, + { + "word": " have?", + "start": 2312.26, + "end": 2312.46, + "probability": 1.0 + } + ] + }, + { + "id": 1346, + "text": "I have.", + "start": 2312.62, + "end": 2312.66, + "words": [ + { + "word": " I", + "start": 2312.62, + "end": 2312.62, + "probability": 0.5029296875 + }, + { + "word": " have.", + "start": 2312.62, + "end": 2312.66, + "probability": 0.52880859375 + } + ] + }, + { + "id": 1347, + "text": "I have a desktop.", + "start": 2312.66, + "end": 2312.84, + "words": [ + { + "word": " I", + "start": 2312.66, + "end": 2312.66, + "probability": 0.03875732421875 + }, + { + "word": " have", + "start": 2312.66, + "end": 2312.74, + "probability": 0.199951171875 + }, + { + "word": " a", + "start": 2312.74, + "end": 2312.84, + "probability": 0.1527099609375 + }, + { + "word": " desktop.", + "start": 2312.84, + "end": 2312.84, + "probability": 0.00899505615234375 + } + ] + }, + { + "id": 1348, + "text": "No, no, no.", + "start": 2313.58, + "end": 2314.18, + "words": [ + { + "word": " No,", + "start": 2313.58, + "end": 2313.84, + "probability": 0.904296875 + }, + { + "word": " no,", + "start": 2313.86, + "end": 2314.06, + "probability": 0.93701171875 + }, + { + "word": " no.", + "start": 2314.06, + "end": 2314.18, + "probability": 0.93701171875 + } + ] + }, + { + "id": 1349, + "text": "I have seven.", + "start": 2314.3, + "end": 2314.86, + "words": [ + { + "word": " I", + "start": 2314.3, + "end": 2314.38, + "probability": 0.8798828125 + }, + { + "word": " have", + "start": 2314.38, + "end": 2314.38, + "probability": 0.9892578125 + }, + { + "word": " seven.", + "start": 2314.38, + "end": 2314.86, + "probability": 0.29638671875 + } + ] + }, + { + "id": 1350, + "text": "Seven 64-bit.", + "start": 2314.88, + "end": 2315.78, + "words": [ + { + "word": " Seven", + "start": 2314.88, + "end": 2315.2, + "probability": 0.255615234375 + }, + { + "word": " 64", + "start": 2315.2, + "end": 2315.58, + "probability": 0.9365234375 + }, + { + "word": "-bit.", + "start": 2315.58, + "end": 2315.78, + "probability": 0.986328125 + } + ] + }, + { + "id": 1351, + "text": "Okay.", + "start": 2315.92, + "end": 2316.24, + "words": [ + { + "word": " Okay.", + "start": 2315.92, + "end": 2316.24, + "probability": 0.953125 + } + ] + }, + { + "id": 1352, + "text": "So it sounds to me like you got one of two things going on here.", + "start": 2316.3, + "end": 2318.26, + "words": [ + { + "word": " So", + "start": 2316.3, + "end": 2316.46, + "probability": 0.9365234375 + }, + { + "word": " it", + "start": 2316.46, + "end": 2316.56, + "probability": 0.85888671875 + }, + { + "word": " sounds", + "start": 2316.56, + "end": 2316.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 2316.8, + "end": 2316.88, + "probability": 1.0 + }, + { + "word": " me", + "start": 2316.88, + "end": 2317.0, + "probability": 1.0 + }, + { + "word": " like", + "start": 2317.0, + "end": 2317.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 2317.18, + "end": 2317.28, + "probability": 1.0 + }, + { + "word": " got", + "start": 2317.28, + "end": 2317.36, + "probability": 0.09771728515625 + }, + { + "word": " one", + "start": 2317.36, + "end": 2317.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 2317.48, + "end": 2317.52, + "probability": 0.78515625 + }, + { + "word": " two", + "start": 2317.52, + "end": 2317.64, + "probability": 0.998046875 + }, + { + "word": " things", + "start": 2317.64, + "end": 2317.82, + "probability": 1.0 + }, + { + "word": " going", + "start": 2317.82, + "end": 2317.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 2317.98, + "end": 2318.12, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2318.12, + "end": 2318.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1353, + "text": "Either your browser settings are all kind of jacked up and you can reset the browser", + "start": 2319.44, + "end": 2322.94, + "words": [ + { + "word": " Either", + "start": 2319.44, + "end": 2319.76, + "probability": 0.9970703125 + }, + { + "word": " your", + "start": 2319.76, + "end": 2319.92, + "probability": 0.99951171875 + }, + { + "word": " browser", + "start": 2319.92, + "end": 2320.28, + "probability": 1.0 + }, + { + "word": " settings", + "start": 2320.28, + "end": 2320.56, + "probability": 1.0 + }, + { + "word": " are", + "start": 2320.56, + "end": 2320.82, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2320.82, + "end": 2320.94, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 2320.94, + "end": 2321.1, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 2321.1, + "end": 2321.2, + "probability": 1.0 + }, + { + "word": " jacked", + "start": 2321.2, + "end": 2321.46, + "probability": 1.0 + }, + { + "word": " up", + "start": 2321.46, + "end": 2321.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 2321.64, + "end": 2321.92, + "probability": 0.2054443359375 + }, + { + "word": " you", + "start": 2321.92, + "end": 2322.1, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2322.1, + "end": 2322.24, + "probability": 0.99853515625 + }, + { + "word": " reset", + "start": 2322.24, + "end": 2322.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2322.48, + "end": 2322.64, + "probability": 0.99951171875 + }, + { + "word": " browser", + "start": 2322.64, + "end": 2322.94, + "probability": 1.0 + } + ] + }, + { + "id": 1354, + "text": "fairly easily by going to Internet Options.", + "start": 2322.94, + "end": 2324.94, + "words": [ + { + "word": " fairly", + "start": 2322.94, + "end": 2323.36, + "probability": 0.99951171875 + }, + { + "word": " easily", + "start": 2323.36, + "end": 2323.76, + "probability": 1.0 + }, + { + "word": " by", + "start": 2323.76, + "end": 2324.08, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 2324.08, + "end": 2324.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2324.28, + "end": 2324.42, + "probability": 0.99951171875 + }, + { + "word": " Internet", + "start": 2324.42, + "end": 2324.6, + "probability": 0.86572265625 + }, + { + "word": " Options.", + "start": 2324.6, + "end": 2324.94, + "probability": 0.8701171875 + } + ] + }, + { + "id": 1355, + "text": "Okay.", + "start": 2325.4, + "end": 2325.72, + "words": [ + { + "word": " Okay.", + "start": 2325.4, + "end": 2325.72, + "probability": 0.84912109375 + } + ] + }, + { + "id": 1356, + "text": "And there's a button that just says Reset Browser.", + "start": 2325.72, + "end": 2327.42, + "words": [ + { + "word": " And", + "start": 2325.72, + "end": 2325.84, + "probability": 0.99462890625 + }, + { + "word": " there's", + "start": 2325.84, + "end": 2326.02, + "probability": 0.9775390625 + }, + { + "word": " a", + "start": 2326.02, + "end": 2326.06, + "probability": 1.0 + }, + { + "word": " button", + "start": 2326.06, + "end": 2326.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 2326.28, + "end": 2326.4, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 2326.4, + "end": 2326.52, + "probability": 0.9990234375 + }, + { + "word": " says", + "start": 2326.52, + "end": 2326.64, + "probability": 1.0 + }, + { + "word": " Reset", + "start": 2326.64, + "end": 2327.08, + "probability": 0.99267578125 + }, + { + "word": " Browser.", + "start": 2327.08, + "end": 2327.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1357, + "text": "And it puts everything back to default.", + "start": 2327.74, + "end": 2329.14, + "words": [ + { + "word": " And", + "start": 2327.74, + "end": 2328.06, + "probability": 0.64501953125 + }, + { + "word": " it", + "start": 2328.06, + "end": 2328.16, + "probability": 0.99951171875 + }, + { + "word": " puts", + "start": 2328.16, + "end": 2328.24, + "probability": 1.0 + }, + { + "word": " everything", + "start": 2328.24, + "end": 2328.42, + "probability": 1.0 + }, + { + "word": " back", + "start": 2328.42, + "end": 2328.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 2328.7, + "end": 2328.84, + "probability": 1.0 + }, + { + "word": " default.", + "start": 2328.84, + "end": 2329.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1358, + "text": "It's on the advanced tab.", + "start": 2329.32, + "end": 2330.24, + "words": [ + { + "word": " It's", + "start": 2329.32, + "end": 2329.62, + "probability": 0.84423828125 + }, + { + "word": " on", + "start": 2329.62, + "end": 2329.8, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 2329.8, + "end": 2329.8, + "probability": 1.0 + }, + { + "word": " advanced", + "start": 2329.8, + "end": 2329.98, + "probability": 0.74658203125 + }, + { + "word": " tab.", + "start": 2329.98, + "end": 2330.24, + "probability": 0.85009765625 + } + ] + }, + { + "id": 1359, + "text": "It's on the advanced tab.", + "start": 2330.24, + "end": 2331.02, + "words": [ + { + "word": " It's", + "start": 2330.24, + "end": 2330.32, + "probability": 0.8046875 + }, + { + "word": " on", + "start": 2330.32, + "end": 2330.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2330.42, + "end": 2330.5, + "probability": 1.0 + }, + { + "word": " advanced", + "start": 2330.5, + "end": 2330.74, + "probability": 1.0 + }, + { + "word": " tab.", + "start": 2330.74, + "end": 2331.02, + "probability": 1.0 + } + ] + }, + { + "id": 1360, + "text": "Okay.", + "start": 2331.08, + "end": 2331.18, + "words": [ + { + "word": " Okay.", + "start": 2331.08, + "end": 2331.18, + "probability": 0.324951171875 + } + ] + }, + { + "id": 1361, + "text": "Yeah.", + "start": 2331.18, + "end": 2331.28, + "words": [ + { + "word": " Yeah.", + "start": 2331.18, + "end": 2331.28, + "probability": 0.91552734375 + } + ] + }, + { + "id": 1362, + "text": "And then the other thing it could be is you could have some type of an infection going", + "start": 2331.68, + "end": 2334.7, + "words": [ + { + "word": " And", + "start": 2331.68, + "end": 2332.0, + "probability": 0.998046875 + }, + { + "word": " then", + "start": 2332.0, + "end": 2332.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2332.2, + "end": 2332.36, + "probability": 0.9990234375 + }, + { + "word": " other", + "start": 2332.36, + "end": 2332.5, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2332.5, + "end": 2332.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 2332.66, + "end": 2332.78, + "probability": 0.9970703125 + }, + { + "word": " could", + "start": 2332.78, + "end": 2332.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 2332.86, + "end": 2333.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 2333.02, + "end": 2333.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 2333.16, + "end": 2333.26, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 2333.26, + "end": 2333.38, + "probability": 0.78515625 + }, + { + "word": " have", + "start": 2333.38, + "end": 2333.5, + "probability": 1.0 + }, + { + "word": " some", + "start": 2333.5, + "end": 2333.64, + "probability": 1.0 + }, + { + "word": " type", + "start": 2333.64, + "end": 2333.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2333.86, + "end": 2334.04, + "probability": 1.0 + }, + { + "word": " an", + "start": 2334.04, + "end": 2334.12, + "probability": 0.96533203125 + }, + { + "word": " infection", + "start": 2334.12, + "end": 2334.38, + "probability": 1.0 + }, + { + "word": " going", + "start": 2334.38, + "end": 2334.7, + "probability": 1.0 + } + ] + }, + { + "id": 1363, + "text": "on.", + "start": 2334.7, + "end": 2335.02, + "words": [ + { + "word": " on.", + "start": 2334.7, + "end": 2335.02, + "probability": 1.0 + } + ] + }, + { + "id": 1364, + "text": "That's.", + "start": 2335.64, + "end": 2335.96, + "words": [ + { + "word": " That's.", + "start": 2335.64, + "end": 2335.96, + "probability": 0.5263671875 + } + ] + }, + { + "id": 1365, + "text": "Well, I guess I should do a boot time scan.", + "start": 2336.08, + "end": 2337.7, + "words": [ + { + "word": " Well,", + "start": 2336.08, + "end": 2336.4, + "probability": 0.88720703125 + }, + { + "word": " I", + "start": 2336.48, + "end": 2336.64, + "probability": 1.0 + }, + { + "word": " guess", + "start": 2336.64, + "end": 2336.78, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2336.78, + "end": 2336.84, + "probability": 1.0 + }, + { + "word": " should", + "start": 2336.84, + "end": 2336.96, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2336.96, + "end": 2337.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2337.04, + "end": 2337.14, + "probability": 1.0 + }, + { + "word": " boot", + "start": 2337.14, + "end": 2337.28, + "probability": 0.99169921875 + }, + { + "word": " time", + "start": 2337.28, + "end": 2337.48, + "probability": 0.9599609375 + }, + { + "word": " scan.", + "start": 2337.48, + "end": 2337.7, + "probability": 1.0 + } + ] + }, + { + "id": 1366, + "text": "I'm running a VAS.", + "start": 2337.8, + "end": 2338.62, + "words": [ + { + "word": " I'm", + "start": 2337.8, + "end": 2338.02, + "probability": 0.9990234375 + }, + { + "word": " running", + "start": 2338.02, + "end": 2338.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 2338.16, + "end": 2338.32, + "probability": 0.93603515625 + }, + { + "word": " VAS.", + "start": 2338.32, + "end": 2338.62, + "probability": 0.806640625 + } + ] + }, + { + "id": 1367, + "text": "All right.", + "start": 2338.8, + "end": 2339.2, + "words": [ + { + "word": " All", + "start": 2338.8, + "end": 2339.12, + "probability": 0.98583984375 + }, + { + "word": " right.", + "start": 2339.12, + "end": 2339.2, + "probability": 1.0 + } + ] + }, + { + "id": 1368, + "text": "Let's start with resetting the browser and see if it goes away.", + "start": 2339.24, + "end": 2341.06, + "words": [ + { + "word": " Let's", + "start": 2339.24, + "end": 2339.38, + "probability": 0.6220703125 + }, + { + "word": " start", + "start": 2339.38, + "end": 2339.52, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 2339.52, + "end": 2339.64, + "probability": 0.99951171875 + }, + { + "word": " resetting", + "start": 2339.64, + "end": 2340.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 2340.04, + "end": 2340.12, + "probability": 1.0 + }, + { + "word": " browser", + "start": 2340.12, + "end": 2340.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 2340.38, + "end": 2340.52, + "probability": 1.0 + }, + { + "word": " see", + "start": 2340.52, + "end": 2340.6, + "probability": 1.0 + }, + { + "word": " if", + "start": 2340.6, + "end": 2340.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 2340.68, + "end": 2340.72, + "probability": 1.0 + }, + { + "word": " goes", + "start": 2340.72, + "end": 2340.88, + "probability": 1.0 + }, + { + "word": " away.", + "start": 2340.88, + "end": 2341.06, + "probability": 1.0 + } + ] + }, + { + "id": 1369, + "text": "Okay.", + "start": 2341.24, + "end": 2341.56, + "words": [ + { + "word": " Okay.", + "start": 2341.24, + "end": 2341.56, + "probability": 0.984375 + } + ] + }, + { + "id": 1370, + "text": "All right.", + "start": 2341.64, + "end": 2342.02, + "words": [ + { + "word": " All", + "start": 2341.64, + "end": 2341.92, + "probability": 0.9970703125 + }, + { + "word": " right.", + "start": 2341.92, + "end": 2342.02, + "probability": 1.0 + } + ] + }, + { + "id": 1371, + "text": "And if it doesn't, then yeah, you really should run that boot time scan.", + "start": 2342.02, + "end": 2345.76, + "words": [ + { + "word": " And", + "start": 2342.02, + "end": 2342.1, + "probability": 0.38134765625 + }, + { + "word": " if", + "start": 2342.1, + "end": 2342.26, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 2342.26, + "end": 2342.34, + "probability": 0.9951171875 + }, + { + "word": " doesn't,", + "start": 2342.34, + "end": 2343.02, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 2343.02, + "end": 2343.16, + "probability": 0.9970703125 + }, + { + "word": " yeah,", + "start": 2343.16, + "end": 2343.62, + "probability": 0.269287109375 + }, + { + "word": " you", + "start": 2343.76, + "end": 2343.88, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 2343.88, + "end": 2344.4, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 2344.4, + "end": 2344.68, + "probability": 0.99951171875 + }, + { + "word": " run", + "start": 2344.68, + "end": 2344.82, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 2344.82, + "end": 2345.18, + "probability": 0.9970703125 + }, + { + "word": " boot", + "start": 2345.18, + "end": 2345.42, + "probability": 0.9677734375 + }, + { + "word": " time", + "start": 2345.42, + "end": 2345.58, + "probability": 0.9609375 + }, + { + "word": " scan.", + "start": 2345.58, + "end": 2345.76, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1372, + "text": "Cool.", + "start": 2346.16, + "end": 2346.48, + "words": [ + { + "word": " Cool.", + "start": 2346.16, + "end": 2346.48, + "probability": 0.97216796875 + } + ] + }, + { + "id": 1373, + "text": "Okay.", + "start": 2346.66, + "end": 2346.96, + "words": [ + { + "word": " Okay.", + "start": 2346.66, + "end": 2346.96, + "probability": 0.9599609375 + } + ] + }, + { + "id": 1374, + "text": "Thanks, guys.", + "start": 2347.18, + "end": 2347.64, + "words": [ + { + "word": " Thanks,", + "start": 2347.18, + "end": 2347.5, + "probability": 0.96533203125 + }, + { + "word": " guys.", + "start": 2347.5, + "end": 2347.64, + "probability": 0.955078125 + } + ] + }, + { + "id": 1375, + "text": "Appreciate the call, man.", + "start": 2347.72, + "end": 2348.4, + "words": [ + { + "word": " Appreciate", + "start": 2347.72, + "end": 2348.0, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2348.0, + "end": 2348.14, + "probability": 1.0 + }, + { + "word": " call,", + "start": 2348.14, + "end": 2348.28, + "probability": 1.0 + }, + { + "word": " man.", + "start": 2348.32, + "end": 2348.4, + "probability": 1.0 + } + ] + }, + { + "id": 1376, + "text": "Take care.", + "start": 2348.52, + "end": 2348.56, + "words": [ + { + "word": " Take", + "start": 2348.52, + "end": 2348.54, + "probability": 0.56201171875 + }, + { + "word": " care.", + "start": 2348.54, + "end": 2348.56, + "probability": 1.0 + } + ] + }, + { + "id": 1377, + "text": "If you'd like to be a part of the show, 751-1041.", + "start": 2348.9, + "end": 2351.02, + "words": [ + { + "word": " If", + "start": 2348.9, + "end": 2349.22, + "probability": 0.9970703125 + }, + { + "word": " you'd", + "start": 2349.22, + "end": 2349.38, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2349.38, + "end": 2349.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 2349.44, + "end": 2349.54, + "probability": 1.0 + }, + { + "word": " be", + "start": 2349.54, + "end": 2349.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2349.62, + "end": 2349.66, + "probability": 0.51953125 + }, + { + "word": " part", + "start": 2349.66, + "end": 2349.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 2349.74, + "end": 2349.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2349.8, + "end": 2349.84, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 2349.84, + "end": 2349.96, + "probability": 1.0 + }, + { + "word": " 751", + "start": 2350.04, + "end": 2350.62, + "probability": 0.990234375 + }, + { + "word": "-1041.", + "start": 2350.62, + "end": 2351.02, + "probability": 0.994140625 + } + ] + }, + { + "id": 1378, + "text": "Let's talk to you, Alex.", + "start": 2351.18, + "end": 2351.98, + "words": [ + { + "word": " Let's", + "start": 2351.18, + "end": 2351.42, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 2351.42, + "end": 2351.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2351.58, + "end": 2351.7, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2351.7, + "end": 2351.8, + "probability": 0.88525390625 + }, + { + "word": " Alex.", + "start": 2351.8, + "end": 2351.98, + "probability": 1.0 + } + ] + }, + { + "id": 1379, + "text": "Hello, Alex.", + "start": 2352.18, + "end": 2352.7, + "words": [ + { + "word": " Hello,", + "start": 2352.18, + "end": 2352.42, + "probability": 0.99951171875 + }, + { + "word": " Alex.", + "start": 2352.48, + "end": 2352.7, + "probability": 1.0 + } + ] + }, + { + "id": 1380, + "text": "Hi.", + "start": 2354.04, + "end": 2354.36, + "words": [ + { + "word": " Hi.", + "start": 2354.04, + "end": 2354.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1381, + "text": "Yeah.", + "start": 2354.52, + "end": 2354.74, + "words": [ + { + "word": " Yeah.", + "start": 2354.52, + "end": 2354.74, + "probability": 0.994140625 + } + ] + }, + { + "id": 1382, + "text": "Thanks for making my call so quickly.", + "start": 2354.78, + "end": 2356.18, + "words": [ + { + "word": " Thanks", + "start": 2354.78, + "end": 2354.98, + "probability": 0.9931640625 + }, + { + "word": " for", + "start": 2354.98, + "end": 2355.1, + "probability": 0.99951171875 + }, + { + "word": " making", + "start": 2355.1, + "end": 2355.28, + "probability": 0.99365234375 + }, + { + "word": " my", + "start": 2355.28, + "end": 2355.48, + "probability": 0.6328125 + }, + { + "word": " call", + "start": 2355.48, + "end": 2355.7, + "probability": 1.0 + }, + { + "word": " so", + "start": 2355.7, + "end": 2355.86, + "probability": 0.99853515625 + }, + { + "word": " quickly.", + "start": 2355.86, + "end": 2356.18, + "probability": 1.0 + } + ] + }, + { + "id": 1383, + "text": "Yeah.", + "start": 2356.38, + "end": 2356.66, + "words": [ + { + "word": " Yeah.", + "start": 2356.38, + "end": 2356.66, + "probability": 0.80712890625 + } + ] + }, + { + "id": 1384, + "text": "I have a question.", + "start": 2356.7, + "end": 2357.4, + "words": [ + { + "word": " I", + "start": 2356.7, + "end": 2357.02, + "probability": 0.98486328125 + }, + { + "word": " have", + "start": 2357.02, + "end": 2357.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 2357.18, + "end": 2357.18, + "probability": 1.0 + }, + { + "word": " question.", + "start": 2357.18, + "end": 2357.4, + "probability": 1.0 + } + ] + }, + { + "id": 1385, + "text": "We have a Cox cable and we have a, it comes with McAfee.", + "start": 2357.52, + "end": 2362.8, + "words": [ + { + "word": " We", + "start": 2357.52, + "end": 2357.66, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 2357.66, + "end": 2357.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 2357.8, + "end": 2357.88, + "probability": 0.8037109375 + }, + { + "word": " Cox", + "start": 2357.88, + "end": 2358.2, + "probability": 0.8505859375 + }, + { + "word": " cable", + "start": 2358.2, + "end": 2358.6, + "probability": 0.85986328125 + }, + { + "word": " and", + "start": 2358.6, + "end": 2359.42, + "probability": 0.55029296875 + }, + { + "word": " we", + "start": 2359.42, + "end": 2361.42, + "probability": 0.64794921875 + }, + { + "word": " have", + "start": 2361.42, + "end": 2361.58, + "probability": 1.0 + }, + { + "word": " a,", + "start": 2361.58, + "end": 2361.72, + "probability": 0.377197265625 + }, + { + "word": " it", + "start": 2361.78, + "end": 2361.9, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2361.9, + "end": 2362.1, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2362.1, + "end": 2362.26, + "probability": 0.99951171875 + }, + { + "word": " McAfee.", + "start": 2362.26, + "end": 2362.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1386, + "text": "Is that a worthwhile program to have with it or?", + "start": 2362.98, + "end": 2365.7, + "words": [ + { + "word": " Is", + "start": 2362.98, + "end": 2363.3, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2363.3, + "end": 2363.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 2363.54, + "end": 2363.78, + "probability": 0.99951171875 + }, + { + "word": " worthwhile", + "start": 2363.78, + "end": 2364.34, + "probability": 0.99951171875 + }, + { + "word": " program", + "start": 2364.34, + "end": 2364.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 2364.86, + "end": 2365.2, + "probability": 0.44140625 + }, + { + "word": " have", + "start": 2365.2, + "end": 2365.2, + "probability": 0.56591796875 + }, + { + "word": " with", + "start": 2365.2, + "end": 2365.46, + "probability": 0.912109375 + }, + { + "word": " it", + "start": 2365.46, + "end": 2365.6, + "probability": 0.99951171875 + }, + { + "word": " or?", + "start": 2365.6, + "end": 2365.7, + "probability": 0.203369140625 + } + ] + }, + { + "id": 1387, + "text": "No.", + "start": 2365.76, + "end": 2366.08, + "words": [ + { + "word": " No.", + "start": 2365.76, + "end": 2366.08, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1388, + "text": "No?", + "start": 2366.08, + "end": 2366.14, + "words": [ + { + "word": " No?", + "start": 2366.08, + "end": 2366.14, + "probability": 0.89013671875 + } + ] + }, + { + "id": 1389, + "text": "No.", + "start": 2366.14, + "end": 2366.44, + "words": [ + { + "word": " No.", + "start": 2366.14, + "end": 2366.44, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1390, + "text": "It's a waste of time.", + "start": 2366.46, + "end": 2367.24, + "words": [ + { + "word": " It's", + "start": 2366.46, + "end": 2366.7, + "probability": 0.8203125 + }, + { + "word": " a", + "start": 2366.7, + "end": 2366.7, + "probability": 1.0 + }, + { + "word": " waste", + "start": 2366.7, + "end": 2366.88, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2366.88, + "end": 2367.02, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2367.02, + "end": 2367.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1391, + "text": "Oh, okay.", + "start": 2367.36, + "end": 2367.74, + "words": [ + { + "word": " Oh,", + "start": 2367.36, + "end": 2367.58, + "probability": 0.7353515625 + }, + { + "word": " okay.", + "start": 2367.58, + "end": 2367.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1392, + "text": "We've had it several years now.", + "start": 2367.88, + "end": 2369.74, + "words": [ + { + "word": " We've", + "start": 2367.88, + "end": 2368.2, + "probability": 0.978515625 + }, + { + "word": " had", + "start": 2368.2, + "end": 2368.34, + "probability": 0.95166015625 + }, + { + "word": " it", + "start": 2368.34, + "end": 2368.52, + "probability": 0.99755859375 + }, + { + "word": " several", + "start": 2368.52, + "end": 2368.96, + "probability": 0.99462890625 + }, + { + "word": " years", + "start": 2368.96, + "end": 2369.46, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2369.46, + "end": 2369.74, + "probability": 0.998046875 + } + ] + }, + { + "id": 1393, + "text": "It does.", + "start": 2370.4199999999996, + "end": 2371.22, + "words": [ + { + "word": " It", + "start": 2370.4199999999996, + "end": 2370.8199999999997, + "probability": 0.1551513671875 + }, + { + "word": " does.", + "start": 2370.8199999999997, + "end": 2371.22, + "probability": 0.7138671875 + } + ] + }, + { + "id": 1394, + "text": "Everything slows down every once in a while.", + "start": 2371.26, + "end": 2372.86, + "words": [ + { + "word": " Everything", + "start": 2371.26, + "end": 2371.54, + "probability": 0.99755859375 + }, + { + "word": " slows", + "start": 2371.54, + "end": 2371.8, + "probability": 0.9990234375 + }, + { + "word": " down", + "start": 2371.8, + "end": 2372.12, + "probability": 1.0 + }, + { + "word": " every", + "start": 2372.12, + "end": 2372.32, + "probability": 0.99755859375 + }, + { + "word": " once", + "start": 2372.32, + "end": 2372.5, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2372.5, + "end": 2372.64, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2372.64, + "end": 2372.72, + "probability": 0.99951171875 + }, + { + "word": " while.", + "start": 2372.72, + "end": 2372.86, + "probability": 1.0 + } + ] + }, + { + "id": 1395, + "text": "Yes.", + "start": 2373.02, + "end": 2373.18, + "words": [ + { + "word": " Yes.", + "start": 2373.02, + "end": 2373.18, + "probability": 0.34716796875 + } + ] + }, + { + "id": 1396, + "text": "So how do I go about putting something different on?", + "start": 2373.2, + "end": 2376.36, + "words": [ + { + "word": " So", + "start": 2373.2, + "end": 2373.52, + "probability": 0.9326171875 + }, + { + "word": " how", + "start": 2373.52, + "end": 2373.8, + "probability": 0.8173828125 + }, + { + "word": " do", + "start": 2373.8, + "end": 2373.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 2373.92, + "end": 2374.06, + "probability": 1.0 + }, + { + "word": " go", + "start": 2374.06, + "end": 2374.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 2374.26, + "end": 2374.5, + "probability": 1.0 + }, + { + "word": " putting", + "start": 2374.5, + "end": 2375.12, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2375.12, + "end": 2375.42, + "probability": 1.0 + }, + { + "word": " different", + "start": 2375.42, + "end": 2375.94, + "probability": 1.0 + }, + { + "word": " on?", + "start": 2375.94, + "end": 2376.36, + "probability": 1.0 + } + ] + }, + { + "id": 1397, + "text": "All right.", + "start": 2376.54, + "end": 2376.72, + "words": [ + { + "word": " All", + "start": 2376.54, + "end": 2376.68, + "probability": 0.49951171875 + }, + { + "word": " right.", + "start": 2376.68, + "end": 2376.72, + "probability": 1.0 + } + ] + }, + { + "id": 1398, + "text": "First, pick what you want to put on there and download a copy of it, but don't install", + "start": 2376.76, + "end": 2381.02, + "words": [ + { + "word": " First,", + "start": 2376.76, + "end": 2377.02, + "probability": 0.99609375 + }, + { + "word": " pick", + "start": 2377.04, + "end": 2377.22, + "probability": 0.99853515625 + }, + { + "word": " what", + "start": 2377.22, + "end": 2377.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 2377.38, + "end": 2377.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 2377.42, + "end": 2377.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2377.54, + "end": 2377.62, + "probability": 1.0 + }, + { + "word": " put", + "start": 2377.62, + "end": 2377.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 2377.78, + "end": 2378.7, + "probability": 1.0 + }, + { + "word": " there", + "start": 2378.7, + "end": 2378.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2378.88, + "end": 2379.34, + "probability": 0.76416015625 + }, + { + "word": " download", + "start": 2379.34, + "end": 2379.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 2379.64, + "end": 2379.96, + "probability": 1.0 + }, + { + "word": " copy", + "start": 2379.96, + "end": 2380.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 2380.2, + "end": 2380.36, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2380.36, + "end": 2380.46, + "probability": 1.0 + }, + { + "word": " but", + "start": 2380.5, + "end": 2380.58, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2380.58, + "end": 2380.74, + "probability": 1.0 + }, + { + "word": " install", + "start": 2380.74, + "end": 2381.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1399, + "text": "it.", + "start": 2381.02, + "end": 2381.2, + "words": [ + { + "word": " it.", + "start": 2381.02, + "end": 2381.2, + "probability": 1.0 + } + ] + }, + { + "id": 1400, + "text": "Okay.", + "start": 2381.64, + "end": 2382.04, + "words": [ + { + "word": " Okay.", + "start": 2381.64, + "end": 2382.04, + "probability": 0.970703125 + } + ] + }, + { + "id": 1401, + "text": "Now, would you recommend a VAS?", + "start": 2382.08, + "end": 2383.42, + "words": [ + { + "word": " Now,", + "start": 2382.08, + "end": 2382.3, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2382.42, + "end": 2382.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 2382.6, + "end": 2382.7, + "probability": 1.0 + }, + { + "word": " recommend", + "start": 2382.7, + "end": 2383.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 2383.02, + "end": 2383.2, + "probability": 0.03778076171875 + }, + { + "word": " VAS?", + "start": 2383.2, + "end": 2383.42, + "probability": 0.4208984375 + } + ] + }, + { + "id": 1402, + "text": "Yes.", + "start": 2383.42, + "end": 2383.78, + "words": [ + { + "word": " Yes.", + "start": 2383.42, + "end": 2383.78, + "probability": 0.19921875 + } + ] + }, + { + "id": 1403, + "text": "I do recommend a VAS, at least on the free market.", + "start": 2383.78, + "end": 2385.92, + "words": [ + { + "word": " I", + "start": 2383.78, + "end": 2383.78, + "probability": 0.99755859375 + }, + { + "word": " do", + "start": 2383.78, + "end": 2384.06, + "probability": 0.9990234375 + }, + { + "word": " recommend", + "start": 2384.06, + "end": 2384.36, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2384.36, + "end": 2384.56, + "probability": 0.99951171875 + }, + { + "word": " VAS,", + "start": 2384.56, + "end": 2384.8, + "probability": 1.0 + }, + { + "word": " at", + "start": 2384.8, + "end": 2384.9, + "probability": 1.0 + }, + { + "word": " least", + "start": 2384.9, + "end": 2385.02, + "probability": 1.0 + }, + { + "word": " on", + "start": 2385.02, + "end": 2385.22, + "probability": 0.90478515625 + }, + { + "word": " the", + "start": 2385.22, + "end": 2385.5, + "probability": 1.0 + }, + { + "word": " free", + "start": 2385.5, + "end": 2385.68, + "probability": 1.0 + }, + { + "word": " market.", + "start": 2385.68, + "end": 2385.92, + "probability": 1.0 + } + ] + }, + { + "id": 1404, + "text": "Yes.", + "start": 2385.98, + "end": 2386.28, + "words": [ + { + "word": " Yes.", + "start": 2385.98, + "end": 2386.28, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1405, + "text": "Mm-hmm.", + "start": 2386.46, + "end": 2387.0, + "words": [ + { + "word": " Mm", + "start": 2386.46, + "end": 2386.86, + "probability": 0.17138671875 + }, + { + "word": "-hmm.", + "start": 2386.86, + "end": 2387.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1406, + "text": "Even a paid one is pretty good.", + "start": 2387.02, + "end": 2388.36, + "words": [ + { + "word": " Even", + "start": 2387.02, + "end": 2387.26, + "probability": 0.623046875 + }, + { + "word": " a", + "start": 2387.26, + "end": 2387.44, + "probability": 0.97216796875 + }, + { + "word": " paid", + "start": 2387.44, + "end": 2387.62, + "probability": 1.0 + }, + { + "word": " one", + "start": 2387.62, + "end": 2387.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 2387.76, + "end": 2387.9, + "probability": 0.7919921875 + }, + { + "word": " pretty", + "start": 2387.9, + "end": 2388.18, + "probability": 1.0 + }, + { + "word": " good.", + "start": 2388.18, + "end": 2388.36, + "probability": 1.0 + } + ] + }, + { + "id": 1407, + "text": "Yeah.", + "start": 2388.48, + "end": 2388.78, + "words": [ + { + "word": " Yeah.", + "start": 2388.48, + "end": 2388.78, + "probability": 0.95361328125 + } + ] + }, + { + "id": 1408, + "text": "I think it's unnecessary.", + "start": 2388.9, + "end": 2389.7, + "words": [ + { + "word": " I", + "start": 2388.9, + "end": 2389.3, + "probability": 0.99560546875 + }, + { + "word": " think", + "start": 2389.3, + "end": 2389.46, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2389.46, + "end": 2389.58, + "probability": 1.0 + }, + { + "word": " unnecessary.", + "start": 2389.58, + "end": 2389.7, + "probability": 0.9609375 + } + ] + }, + { + "id": 1409, + "text": "I like a VAS for a couple of reasons.", + "start": 2390.04, + "end": 2392.68, + "words": [ + { + "word": " I", + "start": 2390.04, + "end": 2390.18, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2390.18, + "end": 2390.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 2390.44, + "end": 2390.94, + "probability": 0.99951171875 + }, + { + "word": " VAS", + "start": 2390.94, + "end": 2391.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 2391.18, + "end": 2391.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 2391.32, + "end": 2392.02, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2392.02, + "end": 2392.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 2392.36, + "end": 2392.44, + "probability": 1.0 + }, + { + "word": " reasons.", + "start": 2392.44, + "end": 2392.68, + "probability": 1.0 + } + ] + }, + { + "id": 1410, + "text": "Decent detection, boot time scan, free.", + "start": 2393.0, + "end": 2395.04, + "words": [ + { + "word": " Decent", + "start": 2393.0, + "end": 2393.4, + "probability": 0.8828125 + }, + { + "word": " detection,", + "start": 2393.4, + "end": 2393.72, + "probability": 0.99951171875 + }, + { + "word": " boot", + "start": 2393.94, + "end": 2394.08, + "probability": 0.9775390625 + }, + { + "word": " time", + "start": 2394.08, + "end": 2394.24, + "probability": 0.99072265625 + }, + { + "word": " scan,", + "start": 2394.24, + "end": 2394.44, + "probability": 0.99951171875 + }, + { + "word": " free.", + "start": 2394.66, + "end": 2395.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1411, + "text": "And those three things together really make a nice product for me.", + "start": 2395.14, + "end": 2398.2, + "words": [ + { + "word": " And", + "start": 2395.14, + "end": 2395.42, + "probability": 0.974609375 + }, + { + "word": " those", + "start": 2395.42, + "end": 2395.62, + "probability": 1.0 + }, + { + "word": " three", + "start": 2395.62, + "end": 2396.2, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2396.2, + "end": 2396.48, + "probability": 1.0 + }, + { + "word": " together", + "start": 2396.48, + "end": 2396.8, + "probability": 1.0 + }, + { + "word": " really", + "start": 2396.8, + "end": 2397.08, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 2397.08, + "end": 2397.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 2397.36, + "end": 2397.44, + "probability": 1.0 + }, + { + "word": " nice", + "start": 2397.44, + "end": 2397.64, + "probability": 1.0 + }, + { + "word": " product", + "start": 2397.64, + "end": 2397.86, + "probability": 1.0 + }, + { + "word": " for", + "start": 2397.86, + "end": 2398.1, + "probability": 0.99951171875 + }, + { + "word": " me.", + "start": 2398.1, + "end": 2398.2, + "probability": 1.0 + } + ] + }, + { + "id": 1412, + "text": "Okay.", + "start": 2398.2, + "end": 2398.68, + "words": [ + { + "word": " Okay.", + "start": 2398.2, + "end": 2398.68, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1413, + "text": "Let's say I go with that, but how do I take my Mac fee off and still stay protected or", + "start": 2398.94, + "end": 2404.56, + "words": [ + { + "word": " Let's", + "start": 2398.94, + "end": 2399.34, + "probability": 0.9580078125 + }, + { + "word": " say", + "start": 2399.34, + "end": 2399.36, + "probability": 0.6572265625 + }, + { + "word": " I", + "start": 2399.36, + "end": 2399.46, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2399.46, + "end": 2399.6, + "probability": 1.0 + }, + { + "word": " with", + "start": 2399.6, + "end": 2399.7, + "probability": 1.0 + }, + { + "word": " that,", + "start": 2399.7, + "end": 2399.86, + "probability": 1.0 + }, + { + "word": " but", + "start": 2399.9, + "end": 2400.02, + "probability": 1.0 + }, + { + "word": " how", + "start": 2400.02, + "end": 2400.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 2400.54, + "end": 2400.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 2400.64, + "end": 2400.86, + "probability": 1.0 + }, + { + "word": " take", + "start": 2400.86, + "end": 2401.74, + "probability": 1.0 + }, + { + "word": " my", + "start": 2401.74, + "end": 2401.94, + "probability": 0.7216796875 + }, + { + "word": " Mac", + "start": 2401.94, + "end": 2402.52, + "probability": 0.61181640625 + }, + { + "word": " fee", + "start": 2402.52, + "end": 2402.68, + "probability": 0.146484375 + }, + { + "word": " off", + "start": 2402.68, + "end": 2402.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 2402.96, + "end": 2403.34, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 2403.34, + "end": 2403.66, + "probability": 1.0 + }, + { + "word": " stay", + "start": 2403.66, + "end": 2403.86, + "probability": 0.99951171875 + }, + { + "word": " protected", + "start": 2403.86, + "end": 2404.28, + "probability": 1.0 + }, + { + "word": " or", + "start": 2404.28, + "end": 2404.56, + "probability": 0.1322021484375 + } + ] + }, + { + "id": 1414, + "text": "do I unplug the internet?", + "start": 2404.56, + "end": 2405.6, + "words": [ + { + "word": " do", + "start": 2404.56, + "end": 2404.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 2404.68, + "end": 2404.84, + "probability": 1.0 + }, + { + "word": " unplug", + "start": 2404.84, + "end": 2405.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 2405.08, + "end": 2405.36, + "probability": 1.0 + }, + { + "word": " internet?", + "start": 2405.36, + "end": 2405.6, + "probability": 0.28125 + } + ] + }, + { + "id": 1415, + "text": "Well, that's why you're going to download your new antivirus first but not install it.", + "start": 2405.92, + "end": 2409.88, + "words": [ + { + "word": " Well,", + "start": 2405.92, + "end": 2406.22, + "probability": 0.9853515625 + }, + { + "word": " that's", + "start": 2406.22, + "end": 2406.6, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 2406.6, + "end": 2406.66, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2406.66, + "end": 2406.84, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2406.84, + "end": 2406.88, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2406.88, + "end": 2406.94, + "probability": 1.0 + }, + { + "word": " download", + "start": 2406.94, + "end": 2407.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 2407.3, + "end": 2407.62, + "probability": 1.0 + }, + { + "word": " new", + "start": 2407.62, + "end": 2408.16, + "probability": 0.99853515625 + }, + { + "word": " antivirus", + "start": 2408.16, + "end": 2408.68, + "probability": 0.9443359375 + }, + { + "word": " first", + "start": 2408.68, + "end": 2409.0, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 2409.0, + "end": 2409.18, + "probability": 0.93212890625 + }, + { + "word": " not", + "start": 2409.18, + "end": 2409.32, + "probability": 1.0 + }, + { + "word": " install", + "start": 2409.32, + "end": 2409.64, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2409.64, + "end": 2409.88, + "probability": 1.0 + } + ] + }, + { + "id": 1416, + "text": "Right.", + "start": 2409.96, + "end": 2410.2, + "words": [ + { + "word": " Right.", + "start": 2409.96, + "end": 2410.2, + "probability": 0.98095703125 + } + ] + }, + { + "id": 1417, + "text": "And then you can disconnect, uninstall the application, your old one, and then install", + "start": 2410.34, + "end": 2414.82, + "words": [ + { + "word": " And", + "start": 2410.34, + "end": 2410.66, + "probability": 0.94384765625 + }, + { + "word": " then", + "start": 2410.66, + "end": 2410.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 2410.8, + "end": 2410.9, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2410.9, + "end": 2411.04, + "probability": 1.0 + }, + { + "word": " disconnect,", + "start": 2411.04, + "end": 2411.44, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 2411.64, + "end": 2412.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 2412.4, + "end": 2412.56, + "probability": 1.0 + }, + { + "word": " application,", + "start": 2412.56, + "end": 2412.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 2413.18, + "end": 2413.38, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 2413.38, + "end": 2413.62, + "probability": 1.0 + }, + { + "word": " one,", + "start": 2413.62, + "end": 2413.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 2413.94, + "end": 2414.46, + "probability": 1.0 + }, + { + "word": " then", + "start": 2414.46, + "end": 2414.54, + "probability": 0.99951171875 + }, + { + "word": " install", + "start": 2414.54, + "end": 2414.82, + "probability": 1.0 + } + ] + }, + { + "id": 1418, + "text": "your new one and then plug yourself back in.", + "start": 2414.82, + "end": 2416.18, + "words": [ + { + "word": " your", + "start": 2414.82, + "end": 2414.98, + "probability": 1.0 + }, + { + "word": " new", + "start": 2414.98, + "end": 2415.14, + "probability": 1.0 + }, + { + "word": " one", + "start": 2415.14, + "end": 2415.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 2415.3, + "end": 2415.4, + "probability": 0.76416015625 + }, + { + "word": " then", + "start": 2415.4, + "end": 2415.48, + "probability": 0.861328125 + }, + { + "word": " plug", + "start": 2415.48, + "end": 2415.62, + "probability": 0.947265625 + }, + { + "word": " yourself", + "start": 2415.62, + "end": 2415.8, + "probability": 1.0 + }, + { + "word": " back", + "start": 2415.8, + "end": 2416.04, + "probability": 1.0 + }, + { + "word": " in.", + "start": 2416.04, + "end": 2416.18, + "probability": 1.0 + } + ] + }, + { + "id": 1419, + "text": "Disconnect the internet.", + "start": 2416.56, + "end": 2417.8, + "words": [ + { + "word": " Disconnect", + "start": 2416.56, + "end": 2416.96, + "probability": 0.943359375 + }, + { + "word": " the", + "start": 2416.96, + "end": 2417.24, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2417.24, + "end": 2417.8, + "probability": 0.97119140625 + } + ] + }, + { + "id": 1420, + "text": "Yes.", + "start": 2417.9, + "end": 2418.26, + "words": [ + { + "word": " Yes.", + "start": 2417.9, + "end": 2418.26, + "probability": 0.990234375 + } + ] + }, + { + "id": 1421, + "text": "Okay.", + "start": 2418.62, + "end": 2419.02, + "words": [ + { + "word": " Okay.", + "start": 2418.62, + "end": 2419.02, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1422, + "text": "Unplug the cable and then I can do the switch.", + "start": 2419.1, + "end": 2421.64, + "words": [ + { + "word": " Unplug", + "start": 2419.1, + "end": 2419.42, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 2419.42, + "end": 2419.54, + "probability": 1.0 + }, + { + "word": " cable", + "start": 2419.54, + "end": 2419.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 2419.84, + "end": 2420.08, + "probability": 0.97900390625 + }, + { + "word": " then", + "start": 2420.08, + "end": 2420.24, + "probability": 1.0 + }, + { + "word": " I", + "start": 2420.24, + "end": 2420.58, + "probability": 1.0 + }, + { + "word": " can", + "start": 2420.58, + "end": 2420.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 2420.76, + "end": 2420.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2420.94, + "end": 2421.2, + "probability": 1.0 + }, + { + "word": " switch.", + "start": 2421.2, + "end": 2421.64, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1423, + "text": "Okay.", + "start": 2421.78, + "end": 2422.18, + "words": [ + { + "word": " Okay.", + "start": 2421.78, + "end": 2422.18, + "probability": 0.98828125 + } + ] + }, + { + "id": 1424, + "text": "Yeah.", + "start": 2422.36, + "end": 2422.52, + "words": [ + { + "word": " Yeah.", + "start": 2422.36, + "end": 2422.52, + "probability": 0.1644287109375 + } + ] + }, + { + "id": 1425, + "text": "Sure.", + "start": 2422.62, + "end": 2423.02, + "words": [ + { + "word": " Sure.", + "start": 2422.62, + "end": 2423.02, + "probability": 0.96484375 + } + ] + }, + { + "id": 1426, + "text": "That makes sense.", + "start": 2423.12, + "end": 2423.7, + "words": [ + { + "word": " That", + "start": 2423.12, + "end": 2423.24, + "probability": 0.99658203125 + }, + { + "word": " makes", + "start": 2423.24, + "end": 2423.42, + "probability": 1.0 + }, + { + "word": " sense.", + "start": 2423.42, + "end": 2423.7, + "probability": 1.0 + } + ] + }, + { + "id": 1427, + "text": "Also, now, have you heard of other people?", + "start": 2424.12, + "end": 2427.22, + "words": [ + { + "word": " Also,", + "start": 2424.12, + "end": 2424.52, + "probability": 0.9921875 + }, + { + "word": " now,", + "start": 2424.72, + "end": 2425.04, + "probability": 0.9892578125 + }, + { + "word": " have", + "start": 2425.18, + "end": 2425.34, + "probability": 0.9912109375 + }, + { + "word": " you", + "start": 2425.34, + "end": 2425.48, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2425.48, + "end": 2426.38, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 2426.38, + "end": 2426.54, + "probability": 1.0 + }, + { + "word": " other", + "start": 2426.54, + "end": 2426.9, + "probability": 0.9931640625 + }, + { + "word": " people?", + "start": 2426.9, + "end": 2427.22, + "probability": 1.0 + } + ] + }, + { + "id": 1428, + "text": "My wife says be careful.", + "start": 2427.26, + "end": 2428.18, + "words": [ + { + "word": " My", + "start": 2427.26, + "end": 2427.38, + "probability": 0.98046875 + }, + { + "word": " wife", + "start": 2427.38, + "end": 2427.64, + "probability": 1.0 + }, + { + "word": " says", + "start": 2427.64, + "end": 2427.88, + "probability": 0.994140625 + }, + { + "word": " be", + "start": 2427.88, + "end": 2428.16, + "probability": 0.054931640625 + }, + { + "word": " careful.", + "start": 2428.16, + "end": 2428.18, + "probability": 0.168212890625 + } + ] + }, + { + "id": 1429, + "text": "Between 5 and 7 PM, talk seems to be really slow or do you think it's a computer or drill", + "start": 2428.18, + "end": 2435.88, + "words": [ + { + "word": " Between", + "start": 2428.18, + "end": 2428.3, + "probability": 0.6337890625 + }, + { + "word": " 5", + "start": 2428.3, + "end": 2428.72, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 2428.72, + "end": 2428.98, + "probability": 0.98779296875 + }, + { + "word": " 7", + "start": 2428.98, + "end": 2429.32, + "probability": 1.0 + }, + { + "word": " PM,", + "start": 2429.32, + "end": 2429.84, + "probability": 0.00432586669921875 + }, + { + "word": " talk", + "start": 2430.26, + "end": 2431.32, + "probability": 0.90625 + }, + { + "word": " seems", + "start": 2431.32, + "end": 2431.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2431.58, + "end": 2431.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 2431.78, + "end": 2431.86, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 2431.86, + "end": 2432.1, + "probability": 1.0 + }, + { + "word": " slow", + "start": 2432.1, + "end": 2432.46, + "probability": 1.0 + }, + { + "word": " or", + "start": 2432.46, + "end": 2432.96, + "probability": 0.043731689453125 + }, + { + "word": " do", + "start": 2432.96, + "end": 2433.28, + "probability": 0.68115234375 + }, + { + "word": " you", + "start": 2433.28, + "end": 2433.52, + "probability": 1.0 + }, + { + "word": " think", + "start": 2433.52, + "end": 2433.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2433.62, + "end": 2433.78, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 2433.78, + "end": 2433.8, + "probability": 0.58349609375 + }, + { + "word": " computer", + "start": 2433.8, + "end": 2434.1, + "probability": 1.0 + }, + { + "word": " or", + "start": 2434.1, + "end": 2434.82, + "probability": 0.99560546875 + }, + { + "word": " drill", + "start": 2434.82, + "end": 2435.88, + "probability": 0.1871337890625 + } + ] + }, + { + "id": 1430, + "text": "slow?", + "start": 2435.88, + "end": 2436.12, + "words": [ + { + "word": " slow?", + "start": 2435.88, + "end": 2436.12, + "probability": 0.85400390625 + } + ] + }, + { + "id": 1431, + "text": "Sometimes she can't get on or gets kicked off if she is on.", + "start": 2436.26, + "end": 2439.18, + "words": [ + { + "word": " Sometimes", + "start": 2436.26, + "end": 2436.56, + "probability": 0.99755859375 + }, + { + "word": " she", + "start": 2436.56, + "end": 2436.82, + "probability": 0.98486328125 + }, + { + "word": " can't", + "start": 2436.82, + "end": 2437.08, + "probability": 1.0 + }, + { + "word": " get", + "start": 2437.08, + "end": 2437.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 2437.18, + "end": 2437.48, + "probability": 1.0 + }, + { + "word": " or", + "start": 2437.48, + "end": 2437.66, + "probability": 1.0 + }, + { + "word": " gets", + "start": 2437.66, + "end": 2437.8, + "probability": 0.99267578125 + }, + { + "word": " kicked", + "start": 2437.8, + "end": 2438.08, + "probability": 1.0 + }, + { + "word": " off", + "start": 2438.08, + "end": 2438.44, + "probability": 1.0 + }, + { + "word": " if", + "start": 2438.44, + "end": 2438.66, + "probability": 0.9990234375 + }, + { + "word": " she", + "start": 2438.66, + "end": 2438.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 2438.78, + "end": 2438.92, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2438.92, + "end": 2439.18, + "probability": 1.0 + } + ] + }, + { + "id": 1432, + "text": "What's up?", + "start": 2439.28, + "end": 2440.2, + "words": [ + { + "word": " What's", + "start": 2439.28, + "end": 2439.64, + "probability": 0.9970703125 + }, + { + "word": " up?", + "start": 2439.64, + "end": 2440.2, + "probability": 0.5615234375 + } + ] + }, + { + "id": 1433, + "text": "Well, it kind of depends on a couple of factors.", + "start": 2440.42, + "end": 2442.24, + "words": [ + { + "word": " Well,", + "start": 2440.42, + "end": 2440.68, + "probability": 0.986328125 + }, + { + "word": " it", + "start": 2440.78, + "end": 2440.88, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2440.88, + "end": 2441.02, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2441.02, + "end": 2441.12, + "probability": 1.0 + }, + { + "word": " depends", + "start": 2441.12, + "end": 2441.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 2441.36, + "end": 2441.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 2441.54, + "end": 2441.66, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2441.66, + "end": 2441.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 2441.86, + "end": 2441.92, + "probability": 1.0 + }, + { + "word": " factors.", + "start": 2441.92, + "end": 2442.24, + "probability": 1.0 + } + ] + }, + { + "id": 1434, + "text": "It's probably a high traffic time for your node.", + "start": 2442.92, + "end": 2446.78, + "words": [ + { + "word": " It's", + "start": 2442.92, + "end": 2443.36, + "probability": 0.9931640625 + }, + { + "word": " probably", + "start": 2443.36, + "end": 2443.8, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 2443.8, + "end": 2444.66, + "probability": 0.580078125 + }, + { + "word": " high", + "start": 2444.66, + "end": 2445.26, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 2445.26, + "end": 2445.58, + "probability": 0.982421875 + }, + { + "word": " time", + "start": 2445.58, + "end": 2445.82, + "probability": 1.0 + }, + { + "word": " for", + "start": 2445.82, + "end": 2446.12, + "probability": 1.0 + }, + { + "word": " your", + "start": 2446.12, + "end": 2446.24, + "probability": 1.0 + }, + { + "word": " node.", + "start": 2446.24, + "end": 2446.78, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1435, + "text": "You have a bunch of people in your area that are connected to the same node.", + "start": 2447.46, + "end": 2450.94, + "words": [ + { + "word": " You", + "start": 2447.46, + "end": 2447.9, + "probability": 0.96044921875 + }, + { + "word": " have", + "start": 2447.9, + "end": 2448.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2448.34, + "end": 2448.46, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 2448.46, + "end": 2448.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 2448.58, + "end": 2448.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 2448.68, + "end": 2448.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 2448.92, + "end": 2449.04, + "probability": 1.0 + }, + { + "word": " your", + "start": 2449.04, + "end": 2449.18, + "probability": 1.0 + }, + { + "word": " area", + "start": 2449.18, + "end": 2449.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2449.7, + "end": 2449.88, + "probability": 1.0 + }, + { + "word": " are", + "start": 2449.88, + "end": 2449.96, + "probability": 1.0 + }, + { + "word": " connected", + "start": 2449.96, + "end": 2450.16, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2450.16, + "end": 2450.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 2450.34, + "end": 2450.44, + "probability": 1.0 + }, + { + "word": " same", + "start": 2450.44, + "end": 2450.6, + "probability": 1.0 + }, + { + "word": " node.", + "start": 2450.6, + "end": 2450.94, + "probability": 1.0 + } + ] + }, + { + "id": 1436, + "text": "Yes.", + "start": 2451.12, + "end": 2451.4, + "words": [ + { + "word": " Yes.", + "start": 2451.12, + "end": 2451.4, + "probability": 0.35595703125 + } + ] + }, + { + "id": 1437, + "text": "And by the way, that's true with all the internet providers with the exception of", + "start": 2451.56, + "end": 2454.4, + "words": [ + { + "word": " And", + "start": 2451.56, + "end": 2451.78, + "probability": 0.76611328125 + }, + { + "word": " by", + "start": 2451.78, + "end": 2452.02, + "probability": 0.68603515625 + }, + { + "word": " the", + "start": 2452.02, + "end": 2452.18, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2452.18, + "end": 2452.3, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2452.32, + "end": 2452.52, + "probability": 1.0 + }, + { + "word": " true", + "start": 2452.52, + "end": 2452.64, + "probability": 1.0 + }, + { + "word": " with", + "start": 2452.64, + "end": 2452.8, + "probability": 0.9951171875 + }, + { + "word": " all", + "start": 2452.8, + "end": 2452.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2452.9, + "end": 2453.02, + "probability": 0.9990234375 + }, + { + "word": " internet", + "start": 2453.02, + "end": 2453.22, + "probability": 0.214599609375 + }, + { + "word": " providers", + "start": 2453.22, + "end": 2453.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 2453.54, + "end": 2453.86, + "probability": 0.978515625 + }, + { + "word": " the", + "start": 2453.86, + "end": 2453.96, + "probability": 1.0 + }, + { + "word": " exception", + "start": 2453.96, + "end": 2454.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 2454.18, + "end": 2454.4, + "probability": 1.0 + } + ] + }, + { + "id": 1438, + "text": "like SimplyBets.", + "start": 2454.4, + "end": 2455.22, + "words": [ + { + "word": " like", + "start": 2454.4, + "end": 2454.5, + "probability": 0.564453125 + }, + { + "word": " SimplyBets.", + "start": 2454.5, + "end": 2455.22, + "probability": 0.81640625 + } + ] + }, + { + "id": 1439, + "text": "Even if Quest says otherwise.", + "start": 2455.5, + "end": 2456.84, + "words": [ + { + "word": " Even", + "start": 2455.5, + "end": 2455.94, + "probability": 0.99755859375 + }, + { + "word": " if", + "start": 2455.94, + "end": 2456.12, + "probability": 0.99951171875 + }, + { + "word": " Quest", + "start": 2456.12, + "end": 2456.36, + "probability": 0.99755859375 + }, + { + "word": " says", + "start": 2456.36, + "end": 2456.54, + "probability": 0.91845703125 + }, + { + "word": " otherwise.", + "start": 2456.54, + "end": 2456.84, + "probability": 1.0 + } + ] + }, + { + "id": 1440, + "text": "Right.", + "start": 2456.86, + "end": 2457.06, + "words": [ + { + "word": " Right.", + "start": 2456.86, + "end": 2457.06, + "probability": 0.8896484375 + } + ] + }, + { + "id": 1441, + "text": "They have the same type of noting system that all the others have.", + "start": 2458.18, + "end": 2461.3, + "words": [ + { + "word": " They", + "start": 2458.18, + "end": 2458.34, + "probability": 0.41796875 + }, + { + "word": " have", + "start": 2458.34, + "end": 2458.52, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 2458.52, + "end": 2458.66, + "probability": 0.99951171875 + }, + { + "word": " same", + "start": 2458.66, + "end": 2458.88, + "probability": 1.0 + }, + { + "word": " type", + "start": 2458.88, + "end": 2459.06, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2459.06, + "end": 2459.26, + "probability": 0.9990234375 + }, + { + "word": " noting", + "start": 2459.26, + "end": 2459.58, + "probability": 0.95556640625 + }, + { + "word": " system", + "start": 2459.58, + "end": 2459.94, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2459.94, + "end": 2460.36, + "probability": 0.9951171875 + }, + { + "word": " all", + "start": 2460.36, + "end": 2460.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2460.58, + "end": 2460.84, + "probability": 1.0 + }, + { + "word": " others", + "start": 2460.84, + "end": 2461.04, + "probability": 1.0 + }, + { + "word": " have.", + "start": 2461.04, + "end": 2461.3, + "probability": 1.0 + } + ] + }, + { + "id": 1442, + "text": "Yeah.", + "start": 2461.46, + "end": 2461.76, + "words": [ + { + "word": " Yeah.", + "start": 2461.46, + "end": 2461.76, + "probability": 0.181396484375 + } + ] + }, + { + "id": 1443, + "text": "The difference is that they throttle you down so much that it doesn't really matter how", + "start": 2462.8599999999997, + "end": 2467.78, + "words": [ + { + "word": " The", + "start": 2462.8599999999997, + "end": 2463.2999999999997, + "probability": 0.99560546875 + }, + { + "word": " difference", + "start": 2463.2999999999997, + "end": 2463.74, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2463.74, + "end": 2463.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 2463.98, + "end": 2464.16, + "probability": 0.9921875 + }, + { + "word": " they", + "start": 2464.16, + "end": 2464.44, + "probability": 1.0 + }, + { + "word": " throttle", + "start": 2464.44, + "end": 2465.22, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2465.22, + "end": 2465.48, + "probability": 1.0 + }, + { + "word": " down", + "start": 2465.48, + "end": 2465.72, + "probability": 1.0 + }, + { + "word": " so", + "start": 2465.72, + "end": 2465.94, + "probability": 1.0 + }, + { + "word": " much", + "start": 2465.94, + "end": 2466.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 2466.24, + "end": 2466.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 2466.56, + "end": 2466.84, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 2466.84, + "end": 2467.1, + "probability": 1.0 + }, + { + "word": " really", + "start": 2467.1, + "end": 2467.24, + "probability": 1.0 + }, + { + "word": " matter", + "start": 2467.24, + "end": 2467.5, + "probability": 1.0 + }, + { + "word": " how", + "start": 2467.5, + "end": 2467.78, + "probability": 1.0 + } + ] + }, + { + "id": 1444, + "text": "many people get on.", + "start": 2467.78, + "end": 2468.82, + "words": [ + { + "word": " many", + "start": 2467.78, + "end": 2468.02, + "probability": 1.0 + }, + { + "word": " people", + "start": 2468.02, + "end": 2468.34, + "probability": 1.0 + }, + { + "word": " get", + "start": 2468.34, + "end": 2468.54, + "probability": 0.97802734375 + }, + { + "word": " on.", + "start": 2468.54, + "end": 2468.82, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1445, + "text": "Right.", + "start": 2468.96, + "end": 2469.18, + "words": [ + { + "word": " Right.", + "start": 2468.96, + "end": 2469.18, + "probability": 0.93310546875 + } + ] + }, + { + "id": 1446, + "text": "Anyway, you could be experiencing a traffic problem with your neighborhood and you can", + "start": 2469.38, + "end": 2473.42, + "words": [ + { + "word": " Anyway,", + "start": 2469.38, + "end": 2469.82, + "probability": 0.0279388427734375 + }, + { + "word": " you", + "start": 2470.12, + "end": 2470.88, + "probability": 1.0 + }, + { + "word": " could", + "start": 2470.88, + "end": 2471.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 2471.22, + "end": 2471.42, + "probability": 1.0 + }, + { + "word": " experiencing", + "start": 2471.42, + "end": 2471.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 2471.78, + "end": 2472.04, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 2472.04, + "end": 2472.3, + "probability": 1.0 + }, + { + "word": " problem", + "start": 2472.3, + "end": 2472.6, + "probability": 1.0 + }, + { + "word": " with", + "start": 2472.6, + "end": 2472.78, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2472.78, + "end": 2472.84, + "probability": 1.0 + }, + { + "word": " neighborhood", + "start": 2472.84, + "end": 2473.08, + "probability": 0.88134765625 + }, + { + "word": " and", + "start": 2473.08, + "end": 2473.2, + "probability": 0.0928955078125 + }, + { + "word": " you", + "start": 2473.2, + "end": 2473.26, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2473.26, + "end": 2473.42, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1447, + "text": "call Cox about that and complain.", + "start": 2473.42, + "end": 2474.6, + "words": [ + { + "word": " call", + "start": 2473.42, + "end": 2473.64, + "probability": 0.99951171875 + }, + { + "word": " Cox", + "start": 2473.64, + "end": 2473.9, + "probability": 0.97314453125 + }, + { + "word": " about", + "start": 2473.9, + "end": 2474.1, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2474.1, + "end": 2474.28, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2474.28, + "end": 2474.38, + "probability": 0.998046875 + }, + { + "word": " complain.", + "start": 2474.38, + "end": 2474.6, + "probability": 1.0 + } + ] + }, + { + "id": 1448, + "text": "A lot of times if you complain loud enough, they will apply oil to your squeaky wheel.", + "start": 2474.86, + "end": 2480.28, + "words": [ + { + "word": " A", + "start": 2474.86, + "end": 2475.16, + "probability": 0.8818359375 + }, + { + "word": " lot", + "start": 2475.16, + "end": 2475.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 2475.52, + "end": 2475.6, + "probability": 1.0 + }, + { + "word": " times", + "start": 2475.6, + "end": 2475.76, + "probability": 1.0 + }, + { + "word": " if", + "start": 2475.76, + "end": 2475.92, + "probability": 0.55810546875 + }, + { + "word": " you", + "start": 2475.92, + "end": 2475.98, + "probability": 1.0 + }, + { + "word": " complain", + "start": 2475.98, + "end": 2476.2, + "probability": 1.0 + }, + { + "word": " loud", + "start": 2476.2, + "end": 2476.48, + "probability": 0.99951171875 + }, + { + "word": " enough,", + "start": 2476.48, + "end": 2476.72, + "probability": 1.0 + }, + { + "word": " they", + "start": 2476.86, + "end": 2477.52, + "probability": 0.98388671875 + }, + { + "word": " will", + "start": 2477.52, + "end": 2478.44, + "probability": 1.0 + }, + { + "word": " apply", + "start": 2478.44, + "end": 2478.9, + "probability": 1.0 + }, + { + "word": " oil", + "start": 2478.9, + "end": 2479.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2479.22, + "end": 2479.52, + "probability": 1.0 + }, + { + "word": " your", + "start": 2479.52, + "end": 2479.68, + "probability": 1.0 + }, + { + "word": " squeaky", + "start": 2479.68, + "end": 2480.06, + "probability": 0.99951171875 + }, + { + "word": " wheel.", + "start": 2480.06, + "end": 2480.28, + "probability": 1.0 + } + ] + }, + { + "id": 1449, + "text": "Or if you have a Wi-Fi network and your Wi-Fi network is open and everybody in your neighborhood", + "start": 2480.42, + "end": 2484.06, + "words": [ + { + "word": " Or", + "start": 2480.42, + "end": 2480.64, + "probability": 0.9912109375 + }, + { + "word": " if", + "start": 2480.64, + "end": 2480.8, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 2480.8, + "end": 2480.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 2480.86, + "end": 2481.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 2481.02, + "end": 2481.16, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 2481.16, + "end": 2481.28, + "probability": 0.99658203125 + }, + { + "word": "-Fi", + "start": 2481.28, + "end": 2481.48, + "probability": 1.0 + }, + { + "word": " network", + "start": 2481.48, + "end": 2481.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 2481.78, + "end": 2482.12, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2482.12, + "end": 2482.26, + "probability": 0.99951171875 + }, + { + "word": " Wi", + "start": 2482.26, + "end": 2482.5, + "probability": 1.0 + }, + { + "word": "-Fi", + "start": 2482.5, + "end": 2482.6, + "probability": 1.0 + }, + { + "word": " network", + "start": 2482.6, + "end": 2482.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 2482.8, + "end": 2482.94, + "probability": 1.0 + }, + { + "word": " open", + "start": 2482.94, + "end": 2483.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 2483.2, + "end": 2483.42, + "probability": 0.96484375 + }, + { + "word": " everybody", + "start": 2483.42, + "end": 2483.58, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 2483.58, + "end": 2483.76, + "probability": 1.0 + }, + { + "word": " your", + "start": 2483.76, + "end": 2483.86, + "probability": 1.0 + }, + { + "word": " neighborhood", + "start": 2483.86, + "end": 2484.06, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1450, + "text": "is jumping on it and once again slowing you down.", + "start": 2484.06, + "end": 2486.06, + "words": [ + { + "word": " is", + "start": 2484.06, + "end": 2484.18, + "probability": 0.99951171875 + }, + { + "word": " jumping", + "start": 2484.18, + "end": 2484.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 2484.34, + "end": 2484.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 2484.52, + "end": 2484.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 2484.74, + "end": 2484.84, + "probability": 0.9677734375 + }, + { + "word": " once", + "start": 2484.84, + "end": 2485.34, + "probability": 0.8994140625 + }, + { + "word": " again", + "start": 2485.34, + "end": 2485.48, + "probability": 0.9990234375 + }, + { + "word": " slowing", + "start": 2485.48, + "end": 2485.68, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 2485.68, + "end": 2485.84, + "probability": 1.0 + }, + { + "word": " down.", + "start": 2485.84, + "end": 2486.06, + "probability": 1.0 + } + ] + }, + { + "id": 1451, + "text": "Yeah.", + "start": 2486.26, + "end": 2486.5, + "words": [ + { + "word": " Yeah.", + "start": 2486.26, + "end": 2486.5, + "probability": 0.21826171875 + } + ] + }, + { + "id": 1452, + "text": "Actually, we don't.", + "start": 2486.52, + "end": 2487.26, + "words": [ + { + "word": " Actually,", + "start": 2486.52, + "end": 2486.94, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 2486.94, + "end": 2487.1, + "probability": 1.0 + }, + { + "word": " don't.", + "start": 2487.1, + "end": 2487.26, + "probability": 1.0 + } + ] + }, + { + "id": 1453, + "text": "We have one on.", + "start": 2487.26, + "end": 2488.64, + "words": [ + { + "word": " We", + "start": 2487.26, + "end": 2487.66, + "probability": 0.90869140625 + }, + { + "word": " have", + "start": 2487.66, + "end": 2487.84, + "probability": 0.9873046875 + }, + { + "word": " one", + "start": 2487.84, + "end": 2488.52, + "probability": 0.473388671875 + }, + { + "word": " on.", + "start": 2488.52, + "end": 2488.64, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1454, + "text": "My daughter put on a password for it so nobody can jump on.", + "start": 2488.72, + "end": 2492.78, + "words": [ + { + "word": " My", + "start": 2488.72, + "end": 2488.82, + "probability": 0.9990234375 + }, + { + "word": " daughter", + "start": 2488.82, + "end": 2489.06, + "probability": 1.0 + }, + { + "word": " put", + "start": 2489.06, + "end": 2489.28, + "probability": 1.0 + }, + { + "word": " on", + "start": 2489.28, + "end": 2489.5, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2489.5, + "end": 2489.8, + "probability": 1.0 + }, + { + "word": " password", + "start": 2489.8, + "end": 2491.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 2491.4, + "end": 2491.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 2491.72, + "end": 2491.9, + "probability": 1.0 + }, + { + "word": " so", + "start": 2491.9, + "end": 2492.02, + "probability": 0.54296875 + }, + { + "word": " nobody", + "start": 2492.02, + "end": 2492.2, + "probability": 1.0 + }, + { + "word": " can", + "start": 2492.2, + "end": 2492.42, + "probability": 0.80224609375 + }, + { + "word": " jump", + "start": 2492.42, + "end": 2492.56, + "probability": 0.9755859375 + }, + { + "word": " on.", + "start": 2492.56, + "end": 2492.78, + "probability": 1.0 + } + ] + }, + { + "id": 1455, + "text": "Very good.", + "start": 2493.0, + "end": 2493.34, + "words": [ + { + "word": " Very", + "start": 2493.0, + "end": 2493.34, + "probability": 0.02972412109375 + }, + { + "word": " good.", + "start": 2493.34, + "end": 2493.34, + "probability": 1.0 + } + ] + }, + { + "id": 1456, + "text": "All right.", + "start": 2493.34, + "end": 2493.7, + "words": [ + { + "word": " All", + "start": 2493.34, + "end": 2493.34, + "probability": 0.82275390625 + }, + { + "word": " right.", + "start": 2493.34, + "end": 2493.7, + "probability": 1.0 + } + ] + }, + { + "id": 1457, + "text": "So start complaining to Cox and they can take a look at that for you.", + "start": 2494.52, + "end": 2498.34, + "words": [ + { + "word": " So", + "start": 2494.52, + "end": 2494.96, + "probability": 0.88330078125 + }, + { + "word": " start", + "start": 2494.96, + "end": 2495.1, + "probability": 0.9775390625 + }, + { + "word": " complaining", + "start": 2495.1, + "end": 2495.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 2495.9, + "end": 2496.32, + "probability": 1.0 + }, + { + "word": " Cox", + "start": 2496.32, + "end": 2497.06, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 2497.06, + "end": 2497.26, + "probability": 0.46044921875 + }, + { + "word": " they", + "start": 2497.26, + "end": 2497.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 2497.36, + "end": 2497.52, + "probability": 1.0 + }, + { + "word": " take", + "start": 2497.52, + "end": 2497.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 2497.82, + "end": 2497.9, + "probability": 1.0 + }, + { + "word": " look", + "start": 2497.9, + "end": 2498.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 2498.02, + "end": 2498.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 2498.12, + "end": 2498.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 2498.16, + "end": 2498.3, + "probability": 0.99658203125 + }, + { + "word": " you.", + "start": 2498.3, + "end": 2498.34, + "probability": 1.0 + } + ] + }, + { + "id": 1458, + "text": "Yeah.", + "start": 2498.34, + "end": 2498.72, + "words": [ + { + "word": " Yeah.", + "start": 2498.34, + "end": 2498.72, + "probability": 0.0142974853515625 + } + ] + }, + { + "id": 1459, + "text": "And if I find ... The computer has gotten slow also.", + "start": 2498.72, + "end": 2503.22, + "words": [ + { + "word": " And", + "start": 2498.72, + "end": 2499.04, + "probability": 0.92724609375 + }, + { + "word": " if", + "start": 2499.04, + "end": 2499.16, + "probability": 0.75634765625 + }, + { + "word": " I", + "start": 2499.16, + "end": 2499.8, + "probability": 1.0 + }, + { + "word": " find", + "start": 2499.8, + "end": 2500.2, + "probability": 1.0 + }, + { + "word": " ...", + "start": 2500.2, + "end": 2500.6, + "probability": 0.01117706298828125 + }, + { + "word": " The", + "start": 2500.6, + "end": 2501.24, + "probability": 0.8486328125 + }, + { + "word": " computer", + "start": 2501.24, + "end": 2501.96, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 2501.96, + "end": 2502.2, + "probability": 0.0279998779296875 + }, + { + "word": " gotten", + "start": 2502.2, + "end": 2502.58, + "probability": 1.0 + }, + { + "word": " slow", + "start": 2502.58, + "end": 2502.9, + "probability": 0.99951171875 + }, + { + "word": " also.", + "start": 2502.9, + "end": 2503.22, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1460, + "text": "It's about two years old, Dale.", + "start": 2503.36, + "end": 2504.7, + "words": [ + { + "word": " It's", + "start": 2503.36, + "end": 2503.58, + "probability": 0.990234375 + }, + { + "word": " about", + "start": 2503.58, + "end": 2503.74, + "probability": 1.0 + }, + { + "word": " two", + "start": 2503.74, + "end": 2503.96, + "probability": 0.99609375 + }, + { + "word": " years", + "start": 2503.96, + "end": 2504.14, + "probability": 1.0 + }, + { + "word": " old,", + "start": 2504.14, + "end": 2504.46, + "probability": 1.0 + }, + { + "word": " Dale.", + "start": 2504.54, + "end": 2504.7, + "probability": 0.8525390625 + } + ] + }, + { + "id": 1461, + "text": "You had that $65 special.", + "start": 2505.36, + "end": 2508.06, + "words": [ + { + "word": " You", + "start": 2505.36, + "end": 2505.8, + "probability": 0.0186004638671875 + }, + { + "word": " had", + "start": 2505.8, + "end": 2506.12, + "probability": 0.8515625 + }, + { + "word": " that", + "start": 2506.12, + "end": 2506.84, + "probability": 1.0 + }, + { + "word": " $65", + "start": 2506.84, + "end": 2507.6, + "probability": 1.0 + }, + { + "word": " special.", + "start": 2507.6, + "end": 2508.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1462, + "text": "Does that include a tune-up of it?", + "start": 2508.16, + "end": 2509.6, + "words": [ + { + "word": " Does", + "start": 2508.16, + "end": 2508.32, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 2508.32, + "end": 2508.4, + "probability": 1.0 + }, + { + "word": " include", + "start": 2508.4, + "end": 2508.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2508.62, + "end": 2508.82, + "probability": 1.0 + }, + { + "word": " tune", + "start": 2508.82, + "end": 2509.04, + "probability": 0.99951171875 + }, + { + "word": "-up", + "start": 2509.04, + "end": 2509.2, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 2509.2, + "end": 2509.38, + "probability": 1.0 + }, + { + "word": " it?", + "start": 2509.38, + "end": 2509.6, + "probability": 1.0 + } + ] + }, + { + "id": 1463, + "text": "We have a $65 tune-up.", + "start": 2509.7, + "end": 2511.44, + "words": [ + { + "word": " We", + "start": 2509.7, + "end": 2509.88, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 2509.88, + "end": 2510.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 2510.16, + "end": 2510.3, + "probability": 1.0 + }, + { + "word": " $65", + "start": 2510.3, + "end": 2510.72, + "probability": 1.0 + }, + { + "word": " tune", + "start": 2510.72, + "end": 2511.26, + "probability": 0.99951171875 + }, + { + "word": "-up.", + "start": 2511.26, + "end": 2511.44, + "probability": 1.0 + } + ] + }, + { + "id": 1464, + "text": "Yep.", + "start": 2511.52, + "end": 2511.7, + "words": [ + { + "word": " Yep.", + "start": 2511.52, + "end": 2511.7, + "probability": 0.90478515625 + } + ] + }, + { + "id": 1465, + "text": "Okay.", + "start": 2511.72, + "end": 2512.08, + "words": [ + { + "word": " Okay.", + "start": 2511.72, + "end": 2512.08, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1466, + "text": "So I'll run this and if it doesn't help, I'll bring it in.", + "start": 2512.2, + "end": 2515.74, + "words": [ + { + "word": " So", + "start": 2512.2, + "end": 2512.52, + "probability": 0.982421875 + }, + { + "word": " I'll", + "start": 2512.52, + "end": 2513.06, + "probability": 0.9990234375 + }, + { + "word": " run", + "start": 2513.06, + "end": 2513.18, + "probability": 1.0 + }, + { + "word": " this", + "start": 2513.18, + "end": 2513.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 2513.46, + "end": 2513.68, + "probability": 0.5126953125 + }, + { + "word": " if", + "start": 2513.68, + "end": 2514.1, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2514.1, + "end": 2514.8, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 2514.8, + "end": 2514.98, + "probability": 1.0 + }, + { + "word": " help,", + "start": 2514.98, + "end": 2515.18, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 2515.22, + "end": 2515.38, + "probability": 1.0 + }, + { + "word": " bring", + "start": 2515.38, + "end": 2515.54, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2515.54, + "end": 2515.66, + "probability": 0.99951171875 + }, + { + "word": " in.", + "start": 2515.66, + "end": 2515.74, + "probability": 0.9208984375 + } + ] + }, + { + "id": 1467, + "text": "Thank you.", + "start": 2515.8, + "end": 2516.18, + "words": [ + { + "word": " Thank", + "start": 2515.8, + "end": 2516.04, + "probability": 0.6494140625 + }, + { + "word": " you.", + "start": 2516.04, + "end": 2516.18, + "probability": 1.0 + } + ] + }, + { + "id": 1468, + "text": "Bye.", + "start": 2516.18, + "end": 2516.52, + "words": [ + { + "word": " Bye.", + "start": 2516.18, + "end": 2516.52, + "probability": 0.71142578125 + } + ] + }, + { + "id": 1469, + "text": "Thank you.", + "start": 2516.6, + "end": 2516.94, + "words": [ + { + "word": " Thank", + "start": 2516.6, + "end": 2516.76, + "probability": 0.97265625 + }, + { + "word": " you.", + "start": 2516.76, + "end": 2516.94, + "probability": 1.0 + } + ] + }, + { + "id": 1470, + "text": "Yeah.", + "start": 2517.02, + "end": 2517.26, + "words": [ + { + "word": " Yeah.", + "start": 2517.02, + "end": 2517.26, + "probability": 0.8427734375 + } + ] + }, + { + "id": 1471, + "text": "Bye.", + "start": 2517.28, + "end": 2517.38, + "words": [ + { + "word": " Bye.", + "start": 2517.28, + "end": 2517.38, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1472, + "text": "All right.", + "start": 2518.08, + "end": 2518.48, + "words": [ + { + "word": " All", + "start": 2518.08, + "end": 2518.36, + "probability": 0.97314453125 + }, + { + "word": " right.", + "start": 2518.36, + "end": 2518.48, + "probability": 1.0 + } + ] + }, + { + "id": 1473, + "text": "If you'd like to be part of the show, 751-1041.", + "start": 2518.52, + "end": 2520.26, + "words": [ + { + "word": " If", + "start": 2518.52, + "end": 2518.66, + "probability": 0.99365234375 + }, + { + "word": " you'd", + "start": 2518.66, + "end": 2518.72, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 2518.72, + "end": 2518.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 2518.78, + "end": 2518.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 2518.86, + "end": 2518.9, + "probability": 1.0 + }, + { + "word": " part", + "start": 2518.9, + "end": 2519.04, + "probability": 0.97607421875 + }, + { + "word": " of", + "start": 2519.04, + "end": 2519.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2519.12, + "end": 2519.18, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 2519.18, + "end": 2519.28, + "probability": 1.0 + }, + { + "word": " 751", + "start": 2519.34, + "end": 2519.86, + "probability": 0.90625 + }, + { + "word": "-1041.", + "start": 2519.86, + "end": 2520.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 1474, + "text": "Let's see.", + "start": 2521.08, + "end": 2521.6, + "words": [ + { + "word": " Let's", + "start": 2521.08, + "end": 2521.36, + "probability": 0.9990234375 + }, + { + "word": " see.", + "start": 2521.36, + "end": 2521.6, + "probability": 1.0 + } + ] + }, + { + "id": 1475, + "text": "We're going to do one more because we're coming up on the break here.", + "start": 2522.14, + "end": 2524.66, + "words": [ + { + "word": " We're", + "start": 2522.14, + "end": 2522.42, + "probability": 0.98828125 + }, + { + "word": " going", + "start": 2522.42, + "end": 2522.48, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2522.48, + "end": 2522.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 2522.54, + "end": 2522.68, + "probability": 1.0 + }, + { + "word": " one", + "start": 2522.68, + "end": 2522.9, + "probability": 1.0 + }, + { + "word": " more", + "start": 2522.9, + "end": 2523.08, + "probability": 1.0 + }, + { + "word": " because", + "start": 2523.08, + "end": 2523.34, + "probability": 0.91845703125 + }, + { + "word": " we're", + "start": 2523.34, + "end": 2523.6, + "probability": 0.994140625 + }, + { + "word": " coming", + "start": 2523.6, + "end": 2523.94, + "probability": 1.0 + }, + { + "word": " up", + "start": 2523.94, + "end": 2524.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 2524.06, + "end": 2524.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 2524.16, + "end": 2524.26, + "probability": 1.0 + }, + { + "word": " break", + "start": 2524.26, + "end": 2524.46, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2524.46, + "end": 2524.66, + "probability": 1.0 + } + ] + }, + { + "id": 1476, + "text": "Hey, Steve.", + "start": 2524.74, + "end": 2525.06, + "words": [ + { + "word": " Hey,", + "start": 2524.74, + "end": 2524.88, + "probability": 0.9990234375 + }, + { + "word": " Steve.", + "start": 2524.9, + "end": 2525.06, + "probability": 1.0 + } + ] + }, + { + "id": 1477, + "text": "How you doing?", + "start": 2525.12, + "end": 2525.48, + "words": [ + { + "word": " How", + "start": 2525.12, + "end": 2525.26, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2525.26, + "end": 2525.32, + "probability": 0.4033203125 + }, + { + "word": " doing?", + "start": 2525.32, + "end": 2525.48, + "probability": 1.0 + } + ] + }, + { + "id": 1478, + "text": "Hey, great.", + "start": 2526.16, + "end": 2526.7, + "words": [ + { + "word": " Hey,", + "start": 2526.16, + "end": 2526.44, + "probability": 0.97802734375 + }, + { + "word": " great.", + "start": 2526.46, + "end": 2526.7, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1479, + "text": "How are you?", + "start": 2526.72, + "end": 2527.08, + "words": [ + { + "word": " How", + "start": 2526.72, + "end": 2526.84, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2526.84, + "end": 2526.92, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2526.92, + "end": 2527.08, + "probability": 1.0 + } + ] + }, + { + "id": 1480, + "text": "Not bad.", + "start": 2527.16, + "end": 2527.62, + "words": [ + { + "word": " Not", + "start": 2527.16, + "end": 2527.38, + "probability": 0.9931640625 + }, + { + "word": " bad.", + "start": 2527.38, + "end": 2527.62, + "probability": 1.0 + } + ] + }, + { + "id": 1481, + "text": "How can I help you?", + "start": 2527.72, + "end": 2528.22, + "words": [ + { + "word": " How", + "start": 2527.72, + "end": 2527.84, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 2527.84, + "end": 2527.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 2527.94, + "end": 2527.98, + "probability": 1.0 + }, + { + "word": " help", + "start": 2527.98, + "end": 2528.12, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2528.12, + "end": 2528.22, + "probability": 1.0 + } + ] + }, + { + "id": 1482, + "text": "Hey, I've got a Dell laptop, a C400, old one, P3, and I want to change the BIOS password.", + "start": 2528.54, + "end": 2534.4, + "words": [ + { + "word": " Hey,", + "start": 2528.54, + "end": 2528.82, + "probability": 0.83251953125 + }, + { + "word": " I've", + "start": 2528.82, + "end": 2528.9, + "probability": 1.0 + }, + { + "word": " got", + "start": 2528.9, + "end": 2529.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 2529.02, + "end": 2529.12, + "probability": 1.0 + }, + { + "word": " Dell", + "start": 2529.12, + "end": 2529.32, + "probability": 0.99951171875 + }, + { + "word": " laptop,", + "start": 2529.32, + "end": 2529.74, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2529.9, + "end": 2530.06, + "probability": 1.0 + }, + { + "word": " C400,", + "start": 2530.06, + "end": 2530.52, + "probability": 0.99609375 + }, + { + "word": " old", + "start": 2530.76, + "end": 2530.98, + "probability": 0.99072265625 + }, + { + "word": " one,", + "start": 2530.98, + "end": 2531.22, + "probability": 0.99267578125 + }, + { + "word": " P3,", + "start": 2531.24, + "end": 2531.72, + "probability": 0.94970703125 + }, + { + "word": " and", + "start": 2531.82, + "end": 2532.62, + "probability": 1.0 + }, + { + "word": " I", + "start": 2532.62, + "end": 2533.0, + "probability": 1.0 + }, + { + "word": " want", + "start": 2533.0, + "end": 2533.2, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2533.2, + "end": 2533.28, + "probability": 1.0 + }, + { + "word": " change", + "start": 2533.28, + "end": 2533.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2533.48, + "end": 2533.7, + "probability": 1.0 + }, + { + "word": " BIOS", + "start": 2533.7, + "end": 2534.0, + "probability": 0.947265625 + }, + { + "word": " password.", + "start": 2534.0, + "end": 2534.4, + "probability": 1.0 + } + ] + }, + { + "id": 1483, + "text": "And I get into the BIOS, I go to page seven and I go to change the master password, primary", + "start": 2534.66, + "end": 2539.5, + "words": [ + { + "word": " And", + "start": 2534.66, + "end": 2534.94, + "probability": 0.8720703125 + }, + { + "word": " I", + "start": 2534.94, + "end": 2535.14, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2535.14, + "end": 2535.28, + "probability": 0.9990234375 + }, + { + "word": " into", + "start": 2535.28, + "end": 2535.42, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 2535.42, + "end": 2535.54, + "probability": 1.0 + }, + { + "word": " BIOS,", + "start": 2535.54, + "end": 2535.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 2535.88, + "end": 2535.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 2535.92, + "end": 2536.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 2536.0, + "end": 2536.1, + "probability": 1.0 + }, + { + "word": " page", + "start": 2536.1, + "end": 2536.3, + "probability": 0.99853515625 + }, + { + "word": " seven", + "start": 2536.3, + "end": 2536.7, + "probability": 0.67578125 + }, + { + "word": " and", + "start": 2536.7, + "end": 2537.5, + "probability": 0.0216064453125 + }, + { + "word": " I", + "start": 2537.5, + "end": 2537.72, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2537.72, + "end": 2537.82, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2537.82, + "end": 2537.88, + "probability": 0.953125 + }, + { + "word": " change", + "start": 2537.88, + "end": 2538.12, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2538.12, + "end": 2538.3, + "probability": 0.99951171875 + }, + { + "word": " master", + "start": 2538.3, + "end": 2538.52, + "probability": 0.99951171875 + }, + { + "word": " password,", + "start": 2538.52, + "end": 2538.96, + "probability": 1.0 + }, + { + "word": " primary", + "start": 2539.14, + "end": 2539.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1484, + "text": "password is what they're calling it.", + "start": 2539.5, + "end": 2540.64, + "words": [ + { + "word": " password", + "start": 2539.5, + "end": 2539.9, + "probability": 0.90673828125 + }, + { + "word": " is", + "start": 2539.9, + "end": 2540.08, + "probability": 0.9736328125 + }, + { + "word": " what", + "start": 2540.08, + "end": 2540.12, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 2540.12, + "end": 2540.26, + "probability": 1.0 + }, + { + "word": " calling", + "start": 2540.26, + "end": 2540.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2540.44, + "end": 2540.64, + "probability": 1.0 + } + ] + }, + { + "id": 1485, + "text": "And it says, you know, hit your arrow keys.", + "start": 2540.96, + "end": 2542.82, + "words": [ + { + "word": " And", + "start": 2540.96, + "end": 2541.24, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2541.24, + "end": 2541.5, + "probability": 0.449462890625 + }, + { + "word": " says,", + "start": 2541.5, + "end": 2541.86, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2541.96, + "end": 2542.06, + "probability": 0.931640625 + }, + { + "word": " know,", + "start": 2542.06, + "end": 2542.14, + "probability": 0.99951171875 + }, + { + "word": " hit", + "start": 2542.16, + "end": 2542.28, + "probability": 0.7236328125 + }, + { + "word": " your", + "start": 2542.28, + "end": 2542.42, + "probability": 1.0 + }, + { + "word": " arrow", + "start": 2542.42, + "end": 2542.6, + "probability": 0.99951171875 + }, + { + "word": " keys.", + "start": 2542.6, + "end": 2542.82, + "probability": 1.0 + } + ] + }, + { + "id": 1486, + "text": "I do it.", + "start": 2542.9, + "end": 2543.34, + "words": [ + { + "word": " I", + "start": 2542.9, + "end": 2543.04, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 2543.04, + "end": 2543.16, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2543.16, + "end": 2543.34, + "probability": 1.0 + } + ] + }, + { + "id": 1487, + "text": "I type in the password.", + "start": 2543.38, + "end": 2544.24, + "words": [ + { + "word": " I", + "start": 2543.38, + "end": 2543.5, + "probability": 0.99658203125 + }, + { + "word": " type", + "start": 2543.5, + "end": 2543.72, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2543.72, + "end": 2543.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 2543.86, + "end": 2543.9, + "probability": 1.0 + }, + { + "word": " password.", + "start": 2543.9, + "end": 2544.24, + "probability": 1.0 + } + ] + }, + { + "id": 1488, + "text": "Beep.", + "start": 2544.64, + "end": 2544.92, + "words": [ + { + "word": " Beep.", + "start": 2544.64, + "end": 2544.92, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1489, + "text": "", + "start": 2544.92, + "end": 2544.92, + "words": [] + }, + { + "id": 1490, + "text": "It won't let me do it.", + "start": 2545.02, + "end": 2546.16, + "words": [ + { + "word": " It", + "start": 2545.02, + "end": 2545.38, + "probability": 0.90869140625 + }, + { + "word": " won't", + "start": 2545.38, + "end": 2545.66, + "probability": 1.0 + }, + { + "word": " let", + "start": 2545.66, + "end": 2545.74, + "probability": 1.0 + }, + { + "word": " me", + "start": 2545.74, + "end": 2545.88, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 2545.88, + "end": 2546.0, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2546.0, + "end": 2546.16, + "probability": 1.0 + } + ] + }, + { + "id": 1491, + "text": "I hit enter three times.", + "start": 2546.18, + "end": 2547.12, + "words": [ + { + "word": " I", + "start": 2546.18, + "end": 2546.26, + "probability": 0.99658203125 + }, + { + "word": " hit", + "start": 2546.26, + "end": 2546.38, + "probability": 0.99951171875 + }, + { + "word": " enter", + "start": 2546.38, + "end": 2546.64, + "probability": 0.8876953125 + }, + { + "word": " three", + "start": 2546.64, + "end": 2546.78, + "probability": 0.99365234375 + }, + { + "word": " times.", + "start": 2546.78, + "end": 2547.12, + "probability": 1.0 + } + ] + }, + { + "id": 1492, + "text": "It won't let me do it.", + "start": 2547.12, + "end": 2547.8, + "words": [ + { + "word": " It", + "start": 2547.12, + "end": 2547.24, + "probability": 0.9892578125 + }, + { + "word": " won't", + "start": 2547.24, + "end": 2547.32, + "probability": 0.9990234375 + }, + { + "word": " let", + "start": 2547.32, + "end": 2547.4, + "probability": 1.0 + }, + { + "word": " me", + "start": 2547.4, + "end": 2547.5, + "probability": 1.0 + }, + { + "word": " do", + "start": 2547.5, + "end": 2547.62, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2547.62, + "end": 2547.8, + "probability": 1.0 + } + ] + }, + { + "id": 1493, + "text": "Hit enter twice with nothing in it.", + "start": 2547.82, + "end": 2549.28, + "words": [ + { + "word": " Hit", + "start": 2547.82, + "end": 2547.94, + "probability": 0.9541015625 + }, + { + "word": " enter", + "start": 2547.94, + "end": 2548.16, + "probability": 1.0 + }, + { + "word": " twice", + "start": 2548.16, + "end": 2548.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 2548.48, + "end": 2548.7, + "probability": 0.97900390625 + }, + { + "word": " nothing", + "start": 2548.7, + "end": 2548.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 2548.94, + "end": 2549.16, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2549.16, + "end": 2549.28, + "probability": 1.0 + } + ] + }, + { + "id": 1494, + "text": "I pulled the battery.", + "start": 2549.5, + "end": 2550.64, + "words": [ + { + "word": " I", + "start": 2549.5, + "end": 2549.86, + "probability": 0.99951171875 + }, + { + "word": " pulled", + "start": 2549.86, + "end": 2550.14, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2550.14, + "end": 2550.32, + "probability": 1.0 + }, + { + "word": " battery.", + "start": 2550.32, + "end": 2550.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1495, + "text": "I pulled the CMOS battery.", + "start": 2550.76, + "end": 2552.32, + "words": [ + { + "word": " I", + "start": 2550.76, + "end": 2551.02, + "probability": 0.99951171875 + }, + { + "word": " pulled", + "start": 2551.02, + "end": 2551.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 2551.26, + "end": 2551.44, + "probability": 1.0 + }, + { + "word": " CMOS", + "start": 2551.44, + "end": 2551.88, + "probability": 0.9970703125 + }, + { + "word": " battery.", + "start": 2551.88, + "end": 2552.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1496, + "text": "All right.", + "start": 2552.5, + "end": 2552.94, + "words": [ + { + "word": " All", + "start": 2552.5, + "end": 2552.74, + "probability": 0.8349609375 + }, + { + "word": " right.", + "start": 2552.74, + "end": 2552.94, + "probability": 1.0 + } + ] + }, + { + "id": 1497, + "text": "Hang tight for a second.", + "start": 2553.28, + "end": 2554.76, + "words": [ + { + "word": " Hang", + "start": 2553.28, + "end": 2553.64, + "probability": 0.99951171875 + }, + { + "word": " tight", + "start": 2553.64, + "end": 2554.14, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2554.14, + "end": 2554.4, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2554.4, + "end": 2554.54, + "probability": 1.0 + }, + { + "word": " second.", + "start": 2554.54, + "end": 2554.76, + "probability": 1.0 + } + ] + }, + { + "id": 1498, + "text": "We're up against the break.", + "start": 2554.8, + "end": 2555.62, + "words": [ + { + "word": " We're", + "start": 2554.8, + "end": 2554.96, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2554.96, + "end": 2555.02, + "probability": 1.0 + }, + { + "word": " against", + "start": 2555.02, + "end": 2555.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 2555.22, + "end": 2555.4, + "probability": 0.2042236328125 + }, + { + "word": " break.", + "start": 2555.4, + "end": 2555.62, + "probability": 0.984375 + } + ] + }, + { + "id": 1499, + "text": "So stick around.", + "start": 2555.72, + "end": 2556.32, + "words": [ + { + "word": " So", + "start": 2555.72, + "end": 2555.84, + "probability": 0.94287109375 + }, + { + "word": " stick", + "start": 2555.84, + "end": 2556.08, + "probability": 0.93798828125 + }, + { + "word": " around.", + "start": 2556.08, + "end": 2556.32, + "probability": 1.0 + } + ] + }, + { + "id": 1500, + "text": "We'll get to you right after the break.", + "start": 2556.38, + "end": 2557.64, + "words": [ + { + "word": " We'll", + "start": 2556.38, + "end": 2556.58, + "probability": 1.0 + }, + { + "word": " get", + "start": 2556.58, + "end": 2556.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2556.64, + "end": 2556.78, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2556.78, + "end": 2556.82, + "probability": 1.0 + }, + { + "word": " right", + "start": 2556.82, + "end": 2557.0, + "probability": 1.0 + }, + { + "word": " after", + "start": 2557.0, + "end": 2557.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 2557.26, + "end": 2557.44, + "probability": 1.0 + }, + { + "word": " break.", + "start": 2557.44, + "end": 2557.64, + "probability": 1.0 + } + ] + }, + { + "id": 1501, + "text": "This is the Computer Guru Show.", + "start": 2557.74, + "end": 2558.72, + "words": [ + { + "word": " This", + "start": 2557.74, + "end": 2557.86, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2557.86, + "end": 2558.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 2558.0, + "end": 2558.08, + "probability": 0.708984375 + }, + { + "word": " Computer", + "start": 2558.08, + "end": 2558.26, + "probability": 0.9912109375 + }, + { + "word": " Guru", + "start": 2558.26, + "end": 2558.5, + "probability": 0.98681640625 + }, + { + "word": " Show.", + "start": 2558.5, + "end": 2558.72, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1502, + "text": "We'll be right back.", + "start": 2558.84, + "end": 2559.48, + "words": [ + { + "word": " We'll", + "start": 2558.84, + "end": 2559.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 2559.08, + "end": 2559.14, + "probability": 1.0 + }, + { + "word": " right", + "start": 2559.14, + "end": 2559.26, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2559.26, + "end": 2559.48, + "probability": 1.0 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.srt new file mode 100644 index 0000000..ebff452 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.srt @@ -0,0 +1,6012 @@ +1 +00:00:00,000 --> 00:00:04,560 +From my heart and from my hand, why don't people understand my intentions? + +2 +00:00:05,140 --> 00:00:06,380 +Computer running slow? + +3 +00:00:06,560 --> 00:00:06,880 +Avoiding. + +4 +00:00:07,060 --> 00:00:07,820 +Caught a virus? + +5 +00:00:08,000 --> 00:00:08,420 +Yes! + +6 +00:00:08,920 --> 00:00:09,500 +When? + +7 +00:00:09,580 --> 00:00:10,000 +When? + +8 +00:00:10,000 --> 00:00:13,320 +Does your computer seem to have a life of its own? + +9 +00:00:13,640 --> 00:00:14,280 +Malfunction. + +10 +00:00:14,560 --> 00:00:15,800 +Need input. + +11 +00:00:16,080 --> 00:00:17,780 +The computer guru is here. + +12 +00:00:17,940 --> 00:00:18,840 +My God, you're here! + +13 +00:00:19,220 --> 00:00:20,060 +Call in now. + +14 +00:00:20,560 --> 00:00:21,880 +751-1041. + +15 +00:00:22,120 --> 00:00:24,060 +That's 751-1041. + +16 +00:00:24,540 --> 00:00:25,860 +Now, it's Mike Swanson. + +17 +00:00:26,080 --> 00:00:27,380 +Your computer guru. + +18 +00:00:27,680 --> 00:00:29,120 +On 104.1 The Truth. + +19 +00:00:30,000 --> 00:00:30,560 +Here you go. + +20 +00:00:30,680 --> 00:00:32,720 +Two sides to News Talk FM. + +21 +00:00:37,080 --> 00:00:38,760 +Hello and welcome to the Computer Guru Show. + +22 +00:00:38,840 --> 00:00:39,300 +My name's Mike. + +23 +00:00:39,300 --> 00:00:42,400 +Here to deal with your technology needs and treat you like a real person in the process. + +24 +00:00:42,460 --> 00:00:43,080 +Give us a call. + +25 +00:00:43,660 --> 00:00:45,440 +751-1041 if you'd like to be part of the show. + +26 +00:00:45,500 --> 00:00:47,580 +Once again, 751-1041. + +27 +00:00:48,160 --> 00:00:51,440 +See what we can do to help you out with whatever technology issues are plaguing you today. + +28 +00:00:52,000 --> 00:00:52,720 +You were today. + +29 +00:00:53,280 --> 00:00:55,300 +It's not ailing or plaguing. + +30 +00:00:55,320 --> 00:00:55,680 +Plaguing. + +31 +00:00:55,820 --> 00:00:56,180 +Plaguing. + +32 +00:00:56,180 --> 00:00:57,080 +Today it's the plague. + +33 +00:00:57,320 --> 00:00:58,680 +You're going to have the plague today. + +34 +00:00:58,780 --> 00:00:59,280 +That's nice. + +35 +00:01:00,860 --> 00:01:02,980 +Well, you know, I heard a plague hit Mac pretty hard, so. + +36 +00:01:03,140 --> 00:01:04,340 +Well, we're going to get to that. + +37 +00:01:04,380 --> 00:01:04,900 +You want to talk about that? + +38 +00:01:04,980 --> 00:01:05,300 +All right. + +39 +00:01:05,300 --> 00:01:05,540 +Do it. + +40 +00:01:05,640 --> 00:01:10,740 +So, Mac is getting their little plague stuff, and that's for a little bit later in the show today. + +41 +00:01:10,900 --> 00:01:11,160 +All right. + +42 +00:01:11,340 --> 00:01:16,040 +But, I think we're going to start out with the UK hacking all kinds of websites. + +43 +00:01:16,320 --> 00:01:16,880 +The UK? + +44 +00:01:17,180 --> 00:01:18,500 +It means all the UKs? + +45 +00:01:18,500 --> 00:01:19,000 +Like, hacking websites? + +46 +00:01:19,000 --> 00:01:19,880 +Well, you know, MI6. + +47 +00:01:20,460 --> 00:01:20,780 +MI6? + +48 +00:01:21,060 --> 00:01:22,400 +MI6 is hacking websites now. + +49 +00:01:22,520 --> 00:01:23,480 +So, you got... + +50 +00:01:24,640 --> 00:01:25,260 +You got... + +51 +00:01:26,080 --> 00:01:26,640 +MI6, really? + +52 +00:01:26,780 --> 00:01:26,980 +Yeah. + +53 +00:01:27,060 --> 00:01:27,380 +Wow. + +54 +00:01:27,400 --> 00:01:28,940 +So, apparently the CIA was going to do it. + +55 +00:01:28,940 --> 00:01:29,920 +So, Tom Cruise is hacking websites? + +56 +00:01:30,000 --> 00:01:30,660 +Oh, no. + +57 +00:01:30,720 --> 00:01:30,880 +That's... + +58 +00:01:30,880 --> 00:01:31,660 +Oh, my bad. + +59 +00:01:31,760 --> 00:01:32,740 +I think I missed an impossible. + +60 +00:01:33,200 --> 00:01:33,560 +Sorry. + +61 +00:01:34,820 --> 00:01:37,320 +How many times do we have to tell you not to try? + +62 +00:01:37,320 --> 00:01:38,880 +Why is she talking? + +63 +00:01:40,140 --> 00:01:44,720 +Because she's learning what I tell you every week to leave the comedy to the professionals. + +64 +00:01:44,740 --> 00:01:45,340 +I see. + +65 +00:01:46,680 --> 00:01:49,120 +So, MI6 decided to go out and hack an Al-Qaeda website. + +66 +00:01:49,500 --> 00:01:49,820 +All right. + +67 +00:01:49,940 --> 00:01:50,940 +An Al-Qaeda website. + +68 +00:01:51,120 --> 00:01:51,300 +Right. + +69 +00:01:51,360 --> 00:01:53,700 +Now, we were going to do it. + +70 +00:01:54,540 --> 00:01:55,340 +Me and you? + +71 +00:01:55,480 --> 00:01:55,680 +No. + +72 +00:01:55,820 --> 00:01:57,940 +We, as in the US, was going to do it. + +73 +00:01:58,000 --> 00:01:59,820 +But, the CIA said, + +74 +00:02:00,000 --> 00:02:02,500 +we shouldn't do that because it's a valuable source of information. + +75 +00:02:02,620 --> 00:02:06,360 +This web magazine that they have that teaches you how to build dangerous things. + +76 +00:02:06,580 --> 00:02:07,340 +It's valuable. + +77 +00:02:07,520 --> 00:02:09,180 +Oh, it's valuable for chatter, I assume. + +78 +00:02:09,320 --> 00:02:09,560 +Well, yeah. + +79 +00:02:09,580 --> 00:02:11,880 +To pick up, you know, intelligence and such. + +80 +00:02:13,160 --> 00:02:15,460 +Well, MI6 apparently disagreed. + +81 +00:02:15,460 --> 00:02:24,940 +And they thought that the readers of this magazine would be much happier making cupcakes than building... + +82 +00:02:24,940 --> 00:02:26,260 +Making cupcakes. + +83 +00:02:26,540 --> 00:02:27,880 +Dangerous, dangerous items. + +84 +00:02:27,980 --> 00:02:28,320 +Right. + +85 +00:02:28,660 --> 00:02:29,980 +So, they replaced... + +86 +00:02:30,000 --> 00:02:35,540 +They replaced all of the bad stuff on there with an encrypted version of Ellen DeGeneres' + +87 +00:02:36,240 --> 00:02:37,580 +best cupcakes in America. + +88 +00:02:40,060 --> 00:02:40,760 +It's awesome. + +89 +00:02:41,220 --> 00:02:42,740 +I didn't even know Ellen DeGeneres cooked. + +90 +00:02:42,980 --> 00:02:43,720 +So, that's awesome. + +91 +00:02:44,060 --> 00:02:45,720 +Well, you know, somebody's got to replace Oprah. + +92 +00:02:45,840 --> 00:02:47,260 +So, she's got books about everything now. + +93 +00:02:47,320 --> 00:02:47,740 +Wow. + +94 +00:02:47,840 --> 00:02:48,260 +Wow. + +95 +00:02:48,420 --> 00:02:49,600 +That is funny. + +96 +00:02:49,780 --> 00:02:50,520 +So, am I... + +97 +00:02:50,520 --> 00:02:51,360 +I'm just waiting... + +98 +00:02:51,360 --> 00:02:52,420 +At least I have a good sense of humor. + +99 +00:02:52,540 --> 00:02:55,260 +I'm just waiting for Ellen to put on 200 pounds and give away cars. + +100 +00:02:55,400 --> 00:02:55,760 +No. + +101 +00:02:56,000 --> 00:02:57,460 +Oh, that was just very wrong. + +102 +00:02:57,480 --> 00:02:58,940 +It's very, very wrong. + +103 +00:02:58,980 --> 00:02:59,700 +And I apologize. + +104 +00:03:01,280 --> 00:03:02,320 +That's funny, man. + +105 +00:03:02,380 --> 00:03:03,080 +It's just terrible. + +106 +00:03:03,260 --> 00:03:03,720 +Let's talk to Frank. + +107 +00:03:03,780 --> 00:03:04,160 +Hey, Frank. + +108 +00:03:04,200 --> 00:03:04,540 +How you doing? + +109 +00:03:05,820 --> 00:03:06,220 +Hi. + +110 +00:03:06,360 --> 00:03:06,660 +Hi. + +111 +00:03:07,160 --> 00:03:07,900 +How can I help you? + +112 +00:03:09,800 --> 00:03:12,620 +Well, I have a virus on my computer. + +113 +00:03:13,280 --> 00:03:13,680 +Okay. + +114 +00:03:17,060 --> 00:03:21,560 +Essentially, I restarted my computer in safe mode. + +115 +00:03:21,820 --> 00:03:27,880 +And I ran all of my Spybot Search and Destroy malware bytes. + +116 +00:03:31,400 --> 00:03:39,460 +And I had a lot of viruses and Trojans and other malware. + +117 +00:03:39,660 --> 00:03:43,280 +But when I restarted my computer... + +118 +00:03:43,280 --> 00:03:44,200 +It all came back. + +119 +00:03:45,560 --> 00:03:49,080 +It still was kind of not functioning correctly. + +120 +00:03:51,220 --> 00:03:54,780 +One of the things that it did was it made all of my files hidden. + +121 +00:03:56,320 --> 00:03:59,560 +So, I had to go into a folder and unhide them. + +122 +00:04:00,520 --> 00:04:01,120 +And I had to go to the master folder to see them. + +123 +00:04:01,180 --> 00:04:03,360 +But they're still kind of that... + +124 +00:04:03,740 --> 00:04:04,200 +Grayed out? + +125 +00:04:04,860 --> 00:04:05,340 +Yeah, yeah. + +126 +00:04:05,400 --> 00:04:06,040 +Faded out. + +127 +00:04:06,240 --> 00:04:06,400 +Right. + +128 +00:04:06,900 --> 00:04:10,860 +That's because you had to go into the master folder that those folders are in and right-click + +129 +00:04:10,860 --> 00:04:14,300 +and go to the properties and say, uncheck the box that says hidden. + +130 +00:04:15,340 --> 00:04:16,220 +Yeah, I did that. + +131 +00:04:16,460 --> 00:04:16,680 +Okay. + +132 +00:04:16,700 --> 00:04:17,740 +And then they will pop back up. + +133 +00:04:17,840 --> 00:04:18,980 +And they won't be grayed out anymore. + +134 +00:04:19,120 --> 00:04:23,680 +But the bigger issue that you have is you restarted and your virus is still technically there. + +135 +00:04:23,760 --> 00:04:25,420 +And you had some residual stuff in there. + +136 +00:04:25,660 --> 00:04:27,920 +You probably didn't turn off system restore, first of all. + +137 +00:04:28,940 --> 00:04:29,980 +Any time you do a virus, it's still there. + +138 +00:04:29,980 --> 00:04:29,980 + + +139 +00:04:29,980 --> 00:04:31,920 +So, if you want to do a virus removal, you always want to make sure you turn off system + +140 +00:04:31,920 --> 00:04:32,160 +restore. + +141 +00:04:32,340 --> 00:04:34,220 +Otherwise, Windows is going to try to put it right back. + +142 +00:04:35,240 --> 00:04:35,760 +All right. + +143 +00:04:35,780 --> 00:04:37,200 +So, turn off system restore? + +144 +00:04:37,480 --> 00:04:37,700 +Yeah. + +145 +00:04:37,700 --> 00:04:38,840 +You should disable system restore. + +146 +00:04:38,920 --> 00:04:43,060 +Not only is it worthless, it can also reinfect your machine after cleanup. + +147 +00:04:43,220 --> 00:04:43,440 +Right. + +148 +00:04:43,540 --> 00:04:44,880 +So, you want to make sure you turn that off. + +149 +00:04:45,180 --> 00:04:46,880 +Now, what antivirus are you using? + +150 +00:04:46,940 --> 00:04:48,220 +Because I thought I heard you list two of them. + +151 +00:04:50,780 --> 00:04:59,320 +I'm using Spybot Search and Destroy, Malwarebytes, Vypr, and Advir. + +152 +00:05:00,020 --> 00:05:00,360 +Wow. + +153 +00:05:02,320 --> 00:05:02,660 +Okay. + +154 +00:05:02,820 --> 00:05:04,880 +So, all right. + +155 +00:05:04,900 --> 00:05:10,120 +Have you heard me give the explanation of why you can't have two antiviruses on a machine? + +156 +00:05:11,460 --> 00:05:12,700 +No, I don't think I have. + +157 +00:05:12,800 --> 00:05:13,000 +All right. + +158 +00:05:13,020 --> 00:05:14,060 +So, here's the way it works. + +159 +00:05:14,160 --> 00:05:14,380 +All right. + +160 +00:05:14,400 --> 00:05:17,540 +You got Vypr on there and Advira, right? + +161 +00:05:17,620 --> 00:05:17,740 +Yeah. + +162 +00:05:17,740 --> 00:05:19,980 +And those are both real antiviruses. + +163 +00:05:20,260 --> 00:05:24,420 +The other two are just sort of anti-malware, so you can have as many of those as you like. + +164 +00:05:25,100 --> 00:05:28,020 +However, you cannot have two antiviruses running at the same time. + +165 +00:05:28,040 --> 00:05:28,780 +And I'll tell you why. + +166 +00:05:29,520 --> 00:05:29,960 +There's a half-life of the antivirus running on the machine. + +167 +00:05:29,960 --> 00:05:29,960 + + +168 +00:05:29,960 --> 00:05:29,960 + + +169 +00:05:29,960 --> 00:05:29,960 + + +170 +00:05:29,960 --> 00:05:34,940 +There's a very special place in Windows that antivirus has to reside if it's able to oversee + +171 +00:05:34,940 --> 00:05:36,320 +everything that the machine is doing. + +172 +00:05:36,980 --> 00:05:37,420 +Okay. + +173 +00:05:37,420 --> 00:05:41,040 +And the antivirus itself is trained to kill anything else that's in that spot. + +174 +00:05:41,400 --> 00:05:46,080 +So, you have two antiviruses that are trying to vie for the same area within Windows. + +175 +00:05:46,680 --> 00:05:51,140 +So, they spend all their time trying to kill each other rather than trying to keep you + +176 +00:05:51,140 --> 00:05:51,460 +safe. + +177 +00:05:52,420 --> 00:05:52,860 +Okay. + +178 +00:05:53,040 --> 00:05:56,000 +So, you need to make sure that you only have one antivirus on the machine. + +179 +00:05:56,180 --> 00:05:59,680 +In your particular case, you know, we recommend Avast on the show. + +180 +00:05:59,960 --> 00:06:01,860 +And the reason why is that you can do a boot time scan. + +181 +00:06:02,540 --> 00:06:08,620 +A lot of the reason that a virus scan won't remove an infection is because Windows deems + +182 +00:06:08,620 --> 00:06:12,880 +that file as in use and locks it and prevents the antivirus from deleting it or modifying + +183 +00:06:12,880 --> 00:06:13,140 +it. + +184 +00:06:14,120 --> 00:06:14,560 +Yeah. + +185 +00:06:14,660 --> 00:06:18,680 +So, take your other antiviruses off, put Avast on there, do a boot time scan. + +186 +00:06:18,960 --> 00:06:21,380 +And that's going to help out a lot towards getting you clean. + +187 +00:06:21,500 --> 00:06:25,980 +Make sure System Restore is turned off, and that'll probably get you at least cleaned + +188 +00:06:25,980 --> 00:06:27,460 +up to the point where you can move on to other steps. + +189 +00:06:28,760 --> 00:06:29,200 +Okay. + +190 +00:06:29,200 --> 00:06:31,460 +How do I put Avast on there? + +191 +00:06:31,580 --> 00:06:37,080 +Because it's basically not really letting me... + +192 +00:06:37,080 --> 00:06:38,300 +Do you have another machine? + +193 +00:06:39,400 --> 00:06:40,580 +I do, yeah. + +194 +00:06:40,760 --> 00:06:40,980 +Okay. + +195 +00:06:40,980 --> 00:06:44,720 +So, go download Avast, put it on a memory stick or something, and then move it over. + +196 +00:06:44,820 --> 00:06:46,860 +Put it on a CD if you want to be extra safe. + +197 +00:06:47,640 --> 00:06:48,060 +Okay. + +198 +00:06:48,520 --> 00:06:48,940 +Okay? + +199 +00:06:49,560 --> 00:06:49,980 +Okay. + +200 +00:06:51,360 --> 00:06:54,900 +Now, if that doesn't work for you, all right, or if you're unable to get any resolution + +201 +00:06:54,900 --> 00:06:55,900 +that way... + +202 +00:06:55,900 --> 00:06:56,520 +Do another week? + +203 +00:06:56,680 --> 00:06:56,920 +Yeah. + +204 +00:06:56,920 --> 00:06:57,780 +We'll do one more week. + +205 +00:06:57,900 --> 00:06:58,780 +I think another week. + +206 +00:06:58,840 --> 00:06:59,360 +We'll do one more week. + +207 +00:06:59,360 --> 00:06:59,460 +We'll do it for the summer. + +208 +00:06:59,820 --> 00:07:00,740 +Wow, the summer? + +209 +00:07:00,820 --> 00:07:02,500 +Okay, you need to reel it back in a little bit. + +210 +00:07:02,600 --> 00:07:03,300 +All right, we'll do it for the summer. + +211 +00:07:03,340 --> 00:07:05,120 +We're doing $65 virus removals. + +212 +00:07:05,680 --> 00:07:06,160 +All right? + +213 +00:07:06,160 --> 00:07:10,320 +So, normally, the $95 ones, we're taking down to $65. + +214 +00:07:10,840 --> 00:07:12,980 +So, we can remove it for you if it comes down to it. + +215 +00:07:14,040 --> 00:07:14,360 +Okay. + +216 +00:07:14,520 --> 00:07:14,960 +All right? + +217 +00:07:15,300 --> 00:07:18,520 +You have to mention the special, though, if you want to bring it in and get it at that + +218 +00:07:18,520 --> 00:07:18,780 +price. + +219 +00:07:18,920 --> 00:07:20,060 +Yeah, because otherwise, it's full price. + +220 +00:07:21,060 --> 00:07:21,700 +Summer special? + +221 +00:07:22,020 --> 00:07:22,280 +Yeah. + +222 +00:07:22,280 --> 00:07:22,420 +Yeah. + +223 +00:07:23,320 --> 00:07:23,900 +Antivirus special. + +224 +00:07:24,060 --> 00:07:24,520 +All right? + +225 +00:07:25,040 --> 00:07:25,500 +All right. + +226 +00:07:25,500 --> 00:07:27,320 +So, hopefully, that works for you. + +227 +00:07:28,040 --> 00:07:32,040 +All right, I'll do that now and see how it works out. + +228 +00:07:32,140 --> 00:07:32,780 +I appreciate it. + +229 +00:07:32,840 --> 00:07:33,680 +All right, I appreciate the call. + +230 +00:07:33,720 --> 00:07:34,020 +Thank you. + +231 +00:07:34,100 --> 00:07:36,520 +If you'd like to be part of the show, 751-1041. + +232 +00:07:36,720 --> 00:07:40,460 +We'll see what we can do to help you out with your issues, whatever happens to be plaguing + +233 +00:07:40,460 --> 00:07:40,500 +you. + +234 +00:07:40,560 --> 00:07:41,160 +Technology issues. + +235 +00:07:41,840 --> 00:07:45,100 +Because I don't want you people calling up here like I'm Dr. Drew or something, because + +236 +00:07:45,100 --> 00:07:45,880 +I am going to help you. + +237 +00:07:45,900 --> 00:07:46,620 +No, please do that. + +238 +00:07:46,700 --> 00:07:50,800 +I want to see how Randall responds to people saying that they're depressed. + +239 +00:07:51,060 --> 00:07:52,580 +No, Dr. Drew, isn't he like the love doctor? + +240 +00:07:52,700 --> 00:07:54,100 +Yeah, Dr. Drew is a love life. + +241 +00:07:54,100 --> 00:07:54,480 +Yeah, yeah. + +242 +00:07:54,480 --> 00:07:57,480 +The depressed guy is, what's his name? + +243 +00:07:57,540 --> 00:07:57,960 +I don't know. + +244 +00:07:58,000 --> 00:07:58,800 +He's on Oprah all the time. + +245 +00:07:58,920 --> 00:07:59,440 +Is that Dr. Phil? + +246 +00:07:59,520 --> 00:08:00,380 +Yeah, Dr. Phil. + +247 +00:08:00,460 --> 00:08:00,900 +No, no, no. + +248 +00:08:00,980 --> 00:08:03,880 +The guy that you call when you're depressed on the radio. + +249 +00:08:04,220 --> 00:08:06,180 +Oh, I've heard his show in the middle of the night. + +250 +00:08:06,260 --> 00:08:08,260 +It's on like really late at night, Sunday nights. + +251 +00:08:08,380 --> 00:08:09,260 +It's not very good. + +252 +00:08:10,160 --> 00:08:10,760 +Oh, God. + +253 +00:08:10,820 --> 00:08:13,380 +But the moral of the story is, call him when you're technology-prone. + +254 +00:08:13,500 --> 00:08:14,120 +It's not on this station, so I can say that. + +255 +00:08:14,180 --> 00:08:16,700 +I'm telling you, it's not like the Computer Guru show. + +256 +00:08:18,280 --> 00:08:19,720 +Because our show is awesome. + +257 +00:08:19,940 --> 00:08:23,100 +If you have computer depression, we will be happy to take care of you. + +258 +00:08:23,220 --> 00:08:23,880 +Computer depression. + +259 +00:08:23,880 --> 00:08:24,840 +Your computer is like, aww. + +260 +00:08:24,860 --> 00:08:25,100 +That's right. + +261 +00:08:25,200 --> 00:08:26,760 +We'll be the shrink for your computer. + +262 +00:08:27,020 --> 00:08:28,500 +Your computer whisperer, is that what you say? + +263 +00:08:28,680 --> 00:08:30,780 +All right, so this kid wanted an iPad. + +264 +00:08:31,500 --> 00:08:32,220 +All right. + +265 +00:08:32,400 --> 00:08:33,920 +I got another story to go with this one. + +266 +00:08:34,020 --> 00:08:34,840 +I'm changing the subject here. + +267 +00:08:34,840 --> 00:08:35,220 +All right, go ahead. + +268 +00:08:35,280 --> 00:08:35,580 +Continue. + +269 +00:08:36,020 --> 00:08:37,600 +There's this kid who really wanted an iPad. + +270 +00:08:37,820 --> 00:08:38,120 +All right. + +271 +00:08:38,200 --> 00:08:38,800 +A lot. + +272 +00:08:38,920 --> 00:08:39,280 +Okay. + +273 +00:08:39,440 --> 00:08:39,780 +All right. + +274 +00:08:39,960 --> 00:08:41,080 +But he didn't have enough money. + +275 +00:08:41,160 --> 00:08:42,260 +By the way, he lives in China. + +276 +00:08:43,640 --> 00:08:45,800 +He didn't have enough money for the iPad. + +277 +00:08:46,440 --> 00:08:46,800 +Okay. + +278 +00:08:47,280 --> 00:08:47,640 +So. + +279 +00:08:47,640 --> 00:08:49,660 +So he went to work for Foxconn and sold one? + +280 +00:08:49,920 --> 00:08:50,280 +No. + +281 +00:08:50,400 --> 00:08:50,560 +Oh. + +282 +00:08:50,880 --> 00:08:52,780 +He sold one of his kidneys. + +283 +00:08:54,220 --> 00:08:54,680 +All right. + +284 +00:08:54,720 --> 00:08:55,160 +Sold it. + +285 +00:08:55,220 --> 00:08:56,200 +Didn't donate it. + +286 +00:08:56,680 --> 00:08:57,400 +In China? + +287 +00:08:57,540 --> 00:08:58,100 +In China. + +288 +00:08:59,000 --> 00:08:59,400 +Okay. + +289 +00:08:59,680 --> 00:09:00,020 +All right. + +290 +00:09:00,040 --> 00:09:02,960 +So you got about $4,300 for the iPad. + +291 +00:09:03,100 --> 00:09:04,300 +For a U.S. equivalent. + +292 +00:09:04,580 --> 00:09:05,100 +A kidney. + +293 +00:09:05,340 --> 00:09:06,060 +For a kidney. + +294 +00:09:06,240 --> 00:09:06,420 +Right. + +295 +00:09:06,540 --> 00:09:07,540 +A single kidney. + +296 +00:09:07,740 --> 00:09:08,000 +Okay. + +297 +00:09:08,160 --> 00:09:09,500 +Well, I can't sell both of them. + +298 +00:09:09,580 --> 00:09:09,860 +All right. + +299 +00:09:10,260 --> 00:09:12,480 +He's kind of regretting the move now. + +300 +00:09:12,620 --> 00:09:15,920 +He does have an iPad and some extra spending cash. + +301 +00:09:16,020 --> 00:09:16,780 +Some walking around cash. + +302 +00:09:17,640 --> 00:09:18,040 +Okay. + +303 +00:09:18,920 --> 00:09:23,860 +However, it turns out that the place that he went to go get his kidney removed at wasn't + +304 +00:09:23,880 --> 00:09:25,220 +equipped to deal with that type of surgery. + +305 +00:09:25,500 --> 00:09:25,900 +Wait. + +306 +00:09:25,960 --> 00:09:30,180 +So you're actually telling me that such a place exists where you go and sell a human + +307 +00:09:30,180 --> 00:09:30,720 +body part? + +308 +00:09:30,740 --> 00:09:32,540 +There's a market for body parts in China. + +309 +00:09:32,620 --> 00:09:34,100 +It wasn't a good enough place? + +310 +00:09:34,740 --> 00:09:37,520 +Apparently, it was on like China's version of Craigslist. + +311 +00:09:37,600 --> 00:09:38,120 +What do you do? + +312 +00:09:38,180 --> 00:09:39,260 +Wake up in a tub of ice? + +313 +00:09:39,520 --> 00:09:40,000 +No, no, no, no. + +314 +00:09:40,500 --> 00:09:41,820 +They actually perform the procedure. + +315 +00:09:41,820 --> 00:09:44,480 +Is this like, is this the guy that went to China to have the kidney removed? + +316 +00:09:44,480 --> 00:09:44,840 +No, no, no. + +317 +00:09:45,020 --> 00:09:45,560 +He's from China. + +318 +00:09:45,780 --> 00:09:46,480 +Oh, okay. + +319 +00:09:46,620 --> 00:09:50,240 +His mom's really mad now because he's dying. + +320 +00:09:51,380 --> 00:09:51,780 +Really? + +321 +00:09:51,860 --> 00:09:53,000 +I mean, he's like, wow. + +322 +00:09:53,000 --> 00:09:54,360 +His health is deteriorating? + +323 +00:09:54,360 --> 00:09:56,220 +His health is deteriorating at a rapid clip. + +324 +00:09:56,400 --> 00:09:56,680 +Wow. + +325 +00:09:56,960 --> 00:09:57,240 +All right. + +326 +00:09:57,320 --> 00:10:01,100 +So it turns out that they didn't have the right equipment to remove. + +327 +00:10:02,100 --> 00:10:03,600 +Can't be done with this equipment. + +328 +00:10:03,760 --> 00:10:04,160 +That's right. + +329 +00:10:04,820 --> 00:10:09,660 +So it turns out that X-Acto knives and duct tape, not the way to go when getting a kidney + +330 +00:10:09,660 --> 00:10:09,940 +removed. + +331 +00:10:10,340 --> 00:10:12,680 +Just totally not cool. + +332 +00:10:13,360 --> 00:10:14,100 +Oh, wow. + +333 +00:10:14,260 --> 00:10:18,320 +I mean, you know, I've never been to China, but I've seen lots of documentaries about + +334 +00:10:18,320 --> 00:10:21,240 +China, and I can only imagine how bad it would be. + +335 +00:10:21,420 --> 00:10:22,980 +I mean, how, oh, I don't know. + +336 +00:10:22,980 --> 00:10:22,980 + + +337 +00:10:23,000 --> 00:10:24,660 +How sterile the conditions would have to be. + +338 +00:10:24,660 --> 00:10:26,280 +I'm just saying the kid's got some impulse issues. + +339 +00:10:26,380 --> 00:10:27,440 +Well, he, all right. + +340 +00:10:28,200 --> 00:10:28,600 +Yeah. + +341 +00:10:28,600 --> 00:10:30,240 +Wait, so he didn't actually need a kidney? + +342 +00:10:30,340 --> 00:10:31,280 +He just went and got one? + +343 +00:10:31,280 --> 00:10:32,540 +Well, no, he didn't. + +344 +00:10:32,540 --> 00:10:33,660 +No, no, he got one removed. + +345 +00:10:33,960 --> 00:10:34,180 +I mean, I think he's got the story. + +346 +00:10:34,180 --> 00:10:34,920 +He got a kidney removed. + +347 +00:10:35,100 --> 00:10:35,220 +He sold one. + +348 +00:10:35,340 --> 00:10:35,660 +Yes. + +349 +00:10:35,840 --> 00:10:37,220 +Oh, he sold it. + +350 +00:10:37,220 --> 00:10:37,680 +Right, right. + +351 +00:10:37,700 --> 00:10:38,280 +Try to keep up here. + +352 +00:10:38,980 --> 00:10:40,120 +Keep answering phone calls. + +353 +00:10:40,140 --> 00:10:40,860 +You know, I have phone calls to answer. + +354 +00:10:41,140 --> 00:10:43,480 +All right, so he had two kidneys. + +355 +00:10:43,600 --> 00:10:44,000 +Right. + +356 +00:10:44,040 --> 00:10:45,000 +But he had no iPad. + +357 +00:10:45,240 --> 00:10:45,580 +Right. + +358 +00:10:45,620 --> 00:10:48,000 +He figured, I can get an iPad and have one kidney. + +359 +00:10:48,220 --> 00:10:50,500 +So he sold his kidney for an iPad, and now he's dying. + +360 +00:10:50,640 --> 00:10:50,900 +Yes. + +361 +00:10:50,900 --> 00:10:51,060 +Right. + +362 +00:10:51,700 --> 00:10:52,020 +Got it. + +363 +00:10:52,300 --> 00:10:53,560 +Apple kills another person. + +364 +00:10:53,600 --> 00:10:53,860 +Wow. + +365 +00:10:54,840 --> 00:10:55,160 +Wow. + +366 +00:10:56,100 --> 00:11:00,080 +Well, on that same token, though, I have a story here about somebody who also wanted + +367 +00:11:00,080 --> 00:11:00,760 +an Apple product. + +368 +00:11:00,980 --> 00:11:06,080 +He drove his car through an Apple window at like 5 o'clock in the morning, but he came + +369 +00:11:06,080 --> 00:11:07,640 +out of his car dressed as a ninja. + +370 +00:11:08,040 --> 00:11:08,840 +I'm not kidding. + +371 +00:11:09,040 --> 00:11:09,740 +There's pictures of it. + +372 +00:11:09,800 --> 00:11:10,080 +It's awesome. + +373 +00:11:10,260 --> 00:11:13,520 +He's dressed as a ninja, but by the time he got in there, I guess the alarms and everything + +374 +00:11:13,520 --> 00:11:15,880 +was so crazy, he got freaked out and took off. + +375 +00:11:16,060 --> 00:11:17,040 +He didn't even steal one thing. + +376 +00:11:18,940 --> 00:11:21,040 +It's crazy, because this picture here, there's a car. + +377 +00:11:21,040 --> 00:11:21,040 + + +378 +00:11:21,040 --> 00:11:21,040 + + +379 +00:11:21,040 --> 00:11:21,040 + + +380 +00:11:21,060 --> 00:11:25,000 +He's driving through the window, and a ninja in the background was pulling a sword out. + +381 +00:11:26,800 --> 00:11:27,420 +It's hilarious. + +382 +00:11:27,580 --> 00:11:28,360 +I'll post it on the website. + +383 +00:11:28,360 --> 00:11:31,060 +All he really wanted was applesauce. + +384 +00:11:32,120 --> 00:11:33,320 +That's what I'm saying. + +385 +00:11:34,920 --> 00:11:36,740 +You can't go running over apples. + +386 +00:11:36,940 --> 00:11:37,640 +Oh, man. + +387 +00:11:38,520 --> 00:11:38,880 +Hilarious. + +388 +00:11:39,800 --> 00:11:41,200 +Some people, ninjas. + +389 +00:11:41,300 --> 00:11:42,100 +All right. + +390 +00:11:42,440 --> 00:11:43,480 +Let's go ahead and take a break. + +391 +00:11:43,580 --> 00:11:45,020 +When we get back from the break, we've got some phone calls. + +392 +00:11:45,120 --> 00:11:48,280 +We'll see what we can do to help you out with whatever technology issues happen to be plaguing + +393 +00:11:48,280 --> 00:11:48,880 +you this week. + +394 +00:11:49,140 --> 00:11:51,040 +This is the Computer Guru Show on 104.9 FM. + +395 +00:11:51,040 --> 00:11:51,040 + + +396 +00:11:51,040 --> 00:11:51,040 + + +397 +00:11:51,040 --> 00:11:51,040 + + +398 +00:11:51,040 --> 00:11:51,040 + + +399 +00:11:51,040 --> 00:11:51,040 + + +400 +00:11:51,040 --> 00:11:51,040 + + +401 +00:11:51,060 --> 00:11:51,140 +I'm Mike Pearson. + +402 +00:11:51,140 --> 00:11:52,780 +You're listening to the Computer Guru Show on the Truth, Tucson's News Talk FM. + +403 +00:12:01,160 --> 00:12:04,560 +Geez, man. + +404 +00:12:04,660 --> 00:12:05,880 +What do you want to do tonight? + +405 +00:12:06,360 --> 00:12:08,800 +The same thing we do every night, Pinky. + +406 +00:12:08,900 --> 00:12:10,680 +Try to take over the world. + +407 +00:12:10,980 --> 00:12:12,660 +The Pinky and the Brains. + +408 +00:12:12,760 --> 00:12:14,420 +It's Pinky and the Brains. + +409 +00:12:14,500 --> 00:12:16,100 +Welcome back to the Computer Guru Show. + +410 +00:12:16,140 --> 00:12:18,960 +My name is Mike, here to deal with your technology needs and treat you like a real person in the + +411 +00:12:18,960 --> 00:12:19,180 +process. + +412 +00:12:19,240 --> 00:12:20,780 +Got Randall over here doing his thing. + +413 +00:12:21,060 --> 00:12:21,840 +OK. + +414 +00:12:44,200 --> 00:12:44,380 +OK. + +415 +00:12:51,040 --> 00:12:51,040 + + +416 +00:12:51,040 --> 00:12:51,040 + + +417 +00:12:51,040 --> 00:12:51,040 + + +418 +00:12:51,040 --> 00:12:51,040 + + +419 +00:12:51,040 --> 00:12:51,040 + + +420 +00:12:51,040 --> 00:12:51,040 + + +421 +00:12:51,040 --> 00:12:51,040 + + +422 +00:12:51,040 --> 00:12:51,040 + + +423 +00:12:51,040 --> 00:12:51,040 + + +424 +00:12:51,040 --> 00:12:51,040 + + +425 +00:12:51,040 --> 00:12:51,040 + + +426 +00:12:51,040 --> 00:12:51,040 + + +427 +00:12:51,040 --> 00:12:51,040 + + +428 +00:12:51,040 --> 00:12:51,040 + + +429 +00:12:51,040 --> 00:12:51,040 + + +430 +00:12:51,040 --> 00:12:51,040 + + +431 +00:12:51,040 --> 00:12:51,040 + + +432 +00:12:51,040 --> 00:12:51,040 + + +433 +00:12:51,040 --> 00:12:51,040 + + +434 +00:12:51,040 --> 00:12:51,040 + + +435 +00:12:51,040 --> 00:12:51,040 + + +436 +00:12:51,040 --> 00:12:51,040 + + +437 +00:12:51,040 --> 00:12:51,040 + + +438 +00:12:51,040 --> 00:12:51,040 + + +439 +00:12:51,040 --> 00:12:51,040 + + +440 +00:12:51,040 --> 00:12:51,040 + + +441 +00:12:51,040 --> 00:12:51,040 + + +442 +00:12:51,040 --> 00:12:51,040 + + +443 +00:12:51,060 --> 00:12:54,000 +Call 751-1041 if you want to be a part of the show, just like Brian. + +444 +00:12:54,140 --> 00:12:54,620 +Hey, little Brian. + +445 +00:12:54,780 --> 00:12:55,200 +How you doing? + +446 +00:12:56,520 --> 00:12:56,960 +Uh-oh. + +447 +00:12:56,980 --> 00:12:58,540 +I think I shocked Brian into not answering. + +448 +00:12:59,660 --> 00:12:59,980 +Anybody? + +449 +00:13:00,220 --> 00:13:00,540 +Anyone? + +450 +00:13:00,700 --> 00:13:01,640 +Or maybe the name's not right. + +451 +00:13:01,740 --> 00:13:01,900 +Bueller? + +452 +00:13:02,320 --> 00:13:02,640 +Bueller? + +453 +00:13:02,880 --> 00:13:04,020 +Anyone there on line one? + +454 +00:13:04,480 --> 00:13:05,360 +Okay, I guess not. + +455 +00:13:05,560 --> 00:13:06,920 +Okay, so we're going to put him back on hold. + +456 +00:13:06,960 --> 00:13:07,240 +All right. + +457 +00:13:07,280 --> 00:13:08,280 +Maybe he'll come back later. + +458 +00:13:08,420 --> 00:13:10,660 +He apparently thought it was going to take longer for me to answer. + +459 +00:13:11,180 --> 00:13:11,620 +You know? + +460 +00:13:12,480 --> 00:13:13,960 +Did you tell him that I was going to answer his call? + +461 +00:13:14,780 --> 00:13:15,100 +Yeah. + +462 +00:13:15,300 --> 00:13:15,540 +Yeah? + +463 +00:13:16,040 --> 00:13:18,140 +Maybe he's just calling up to sit on hold. + +464 +00:13:18,440 --> 00:13:18,760 +Maybe. + +465 +00:13:18,940 --> 00:13:20,400 +All right, so I'm going to do something real fast. + +466 +00:13:20,400 --> 00:13:25,000 +Before our caller the last two weeks calls in and starts asking about Sandy Bridge. + +467 +00:13:25,220 --> 00:13:25,440 +Okay. + +468 +00:13:26,160 --> 00:13:31,160 +So, the last two weeks, the caller asked about Sandy Bridge versus the AMD version of Sandy Bridge. + +469 +00:13:31,300 --> 00:13:31,940 +And you failed. + +470 +00:13:32,160 --> 00:13:32,540 +No. + +471 +00:13:33,140 --> 00:13:34,480 +No, this week I've done it. + +472 +00:13:34,500 --> 00:13:35,060 +I've done it. + +473 +00:13:35,180 --> 00:13:38,020 +But the AMD version of it is called Fusion. + +474 +00:13:39,360 --> 00:13:43,820 +And I'd say if you're looking apples to apples or PC to PC, maybe. + +475 +00:13:43,980 --> 00:13:44,320 +You fail. + +476 +00:13:44,420 --> 00:13:44,640 +Yeah. + +477 +00:13:44,800 --> 00:13:50,320 +Anyways, if you're comparing the same ones, then yes, the AMD one is a better. + +478 +00:13:50,400 --> 00:13:52,080 +choice in theory. + +479 +00:13:53,220 --> 00:14:00,760 +However, you know, the Fusion is like a comparison for an i3 of the Sandy Bridge. + +480 +00:14:01,100 --> 00:14:04,200 +So, and I'm not a big fan of the Sandy Bridge to begin with. + +481 +00:14:04,560 --> 00:14:10,760 +So, if you compare the Fusion compared to the i3 or even the i5 Intel, it is a little bit better. + +482 +00:14:10,980 --> 00:14:14,060 +However, there is no real high-ends available. + +483 +00:14:14,480 --> 00:14:14,940 +You still fail. + +484 +00:14:15,160 --> 00:14:17,540 +There's really no high-end Fusions available. + +485 +00:14:17,920 --> 00:14:19,440 +And by the time they are available, + +486 +00:14:20,400 --> 00:14:23,620 +the next version of the Intel's is going to be out, which is going to be the Ivory Bridge. + +487 +00:14:24,280 --> 00:14:28,620 +So, once again, AMD is just one step behind Intel. + +488 +00:14:28,720 --> 00:14:30,040 +They just cannot catch up. + +489 +00:14:30,160 --> 00:14:32,260 +I mean, they're trying to, but they're just not there yet. + +490 +00:14:32,600 --> 00:14:37,900 +And like I said in previous calls, you know, previous weeks, I'm not a big fan of the Sandy Bridge. + +491 +00:14:38,160 --> 00:14:40,720 +It's like those other computer repair places in town. + +492 +00:14:40,980 --> 00:14:41,220 +What? + +493 +00:14:42,140 --> 00:14:43,180 +The i Intel. + +494 +00:14:43,420 --> 00:14:43,800 +Oh. + +495 +00:14:46,080 --> 00:14:50,120 +Well, the long story short is, you know, I think Sandy Bridge is going to work great for, + +496 +00:14:50,400 --> 00:14:57,400 +for, like, the miniature PCs, for the, you know, the laptops, for these little small form factor PCs. + +497 +00:14:57,840 --> 00:15:01,660 +When it comes to gaming and the gaming world and high-end graphics, + +498 +00:15:01,860 --> 00:15:04,700 +I don't see Sandy Bridge taking over anytime soon. + +499 +00:15:04,840 --> 00:15:09,400 +It may be in the next two, three years maybe, but not in the next year by no means. + +500 +00:15:09,500 --> 00:15:13,600 +So, myself, if I was looking at buying a new machine and I didn't care about the size of the machine, + +501 +00:15:13,740 --> 00:15:15,420 +I would not do Sandy Bridge, you know. + +502 +00:15:15,460 --> 00:15:19,880 +I would go ahead and get an actual traditional GPU and CPU, personally. + +503 +00:15:20,400 --> 00:15:21,460 +Now, what are your thoughts on it, Mike? + +504 +00:15:21,480 --> 00:15:22,460 +Do you have any thoughts on it? + +505 +00:15:24,760 --> 00:15:26,460 +It's a theme of this particular segment. + +506 +00:15:26,740 --> 00:15:27,320 +You know, I don't like you. + +507 +00:15:27,800 --> 00:15:28,980 +You're really upsetting me. + +508 +00:15:29,040 --> 00:15:29,200 +No. + +509 +00:15:29,320 --> 00:15:30,380 +No, seriously, what do you think? + +510 +00:15:30,520 --> 00:15:32,900 +I mean, about the CPU, GPU versus Sandy Bridge. + +511 +00:15:33,100 --> 00:15:35,300 +I mean, if you're concerned about the graphics portion of it. + +512 +00:15:35,380 --> 00:15:35,580 +Right. + +513 +00:15:35,660 --> 00:15:35,860 +Right. + +514 +00:15:35,900 --> 00:15:37,260 +If you really want high-end graphics. + +515 +00:15:37,400 --> 00:15:37,580 +Right. + +516 +00:15:38,900 --> 00:15:41,700 +Well, here's my thing, though, is that I'm torn between two different things. + +517 +00:15:42,280 --> 00:15:46,400 +One, you get better performance out of a standalone graphics card and a regular GPU. + +518 +00:15:46,560 --> 00:15:47,020 +That's correct. + +519 +00:15:47,100 --> 00:15:47,280 +Or CPU. + +520 +00:15:47,320 --> 00:15:50,240 +However, the way the Sandy Bridge is connected to the CPU and GPU. + +521 +00:15:50,400 --> 00:15:51,740 +Because they're one and the same, in essence. + +522 +00:15:51,940 --> 00:15:52,160 +Right. + +523 +00:15:52,300 --> 00:15:53,560 +You're going to get better performance that way. + +524 +00:15:55,080 --> 00:15:58,320 +Here's what I'm thinking, though, is that if you're looking to build that machine. + +525 +00:15:58,540 --> 00:15:58,780 +Right. + +526 +00:15:58,860 --> 00:15:59,000 +Right. + +527 +00:15:59,040 --> 00:15:59,620 +Moving forward. + +528 +00:15:59,700 --> 00:16:00,000 +Right. + +529 +00:16:00,260 --> 00:16:01,760 +You might as well get the Sandy Bridge. + +530 +00:16:02,300 --> 00:16:02,620 +Right. + +531 +00:16:02,680 --> 00:16:05,120 +So that you are in the right processor slot, right? + +532 +00:16:05,180 --> 00:16:06,900 +Board type to be moving forward. + +533 +00:16:07,240 --> 00:16:07,560 +Right. + +534 +00:16:07,680 --> 00:16:07,920 +Right. + +535 +00:16:07,940 --> 00:16:12,280 +Because if you buy, let's just say, a regular, like, iCore. + +536 +00:16:12,420 --> 00:16:12,720 +Mm-hmm. + +537 +00:16:12,840 --> 00:16:13,160 +Right. + +538 +00:16:14,500 --> 00:16:18,260 +You're not going to be able to go anywhere with that in, let's say, a year and a half. + +539 +00:16:18,960 --> 00:16:19,280 +Right. + +540 +00:16:19,320 --> 00:16:19,400 +Right. + +541 +00:16:19,400 --> 00:16:20,380 +Because those boards are going to be gone. + +542 +00:16:21,420 --> 00:16:21,740 +Right. + +543 +00:16:21,740 --> 00:16:21,740 + + +544 +00:16:21,900 --> 00:16:22,380 +All right. + +545 +00:16:22,460 --> 00:16:22,580 +All right. + +546 +00:16:22,580 --> 00:16:26,000 +So I don't want to see somebody go out and buy, like, an i7 right now. + +547 +00:16:26,120 --> 00:16:26,440 +Mm-hmm. + +548 +00:16:26,500 --> 00:16:28,020 +And then buy a really nice video card. + +549 +00:16:28,240 --> 00:16:28,540 +Right. + +550 +00:16:28,780 --> 00:16:31,580 +And then a year and a half from now, they won't be able to upgrade the processor. + +551 +00:16:32,380 --> 00:16:32,700 +Right. + +552 +00:16:32,700 --> 00:16:33,340 +Without replacing it. + +553 +00:16:33,340 --> 00:16:34,640 +You think the pin sets are going to be different or anything? + +554 +00:16:34,760 --> 00:16:35,200 +The pin set is different. + +555 +00:16:35,240 --> 00:16:35,340 +Yeah. + +556 +00:16:35,460 --> 00:16:37,440 +Between the 55 and the 57. + +557 +00:16:37,440 --> 00:16:39,160 +That's assuming Sandy Bridge takes over. + +558 +00:16:39,960 --> 00:16:40,740 +I think it will. + +559 +00:16:40,840 --> 00:16:41,300 +You think so? + +560 +00:16:41,440 --> 00:16:41,600 +Yeah. + +561 +00:16:41,740 --> 00:16:42,760 +Because they're going to move. + +562 +00:16:42,860 --> 00:16:45,600 +Basically, they're going to move the i7 into the Sandy Bridge. + +563 +00:16:46,120 --> 00:16:46,440 +Right. + +564 +00:16:46,500 --> 00:16:48,880 +So I think that it's going to move in that direction. + +565 +00:16:48,960 --> 00:16:50,380 +There's no reason for them. + +566 +00:16:50,400 --> 00:16:52,640 +They're going to have two separate product lines like that. + +567 +00:16:53,260 --> 00:16:58,840 +The current Sandy Bridge is, I think, just the beta test for moving the Sandy Bridge + +568 +00:16:58,840 --> 00:17:02,000 +graphics processor, the Ivy Bridge, into the i7. + +569 +00:17:02,140 --> 00:17:02,360 +Okay. + +570 +00:17:02,540 --> 00:17:02,800 +All right. + +571 +00:17:02,840 --> 00:17:09,400 +So I don't think that there's any real benefit to splitting off those two product lines. + +572 +00:17:09,580 --> 00:17:10,000 +Oh, okay. + +573 +00:17:10,040 --> 00:17:12,160 +So if you end up buying an i7 now. + +574 +00:17:12,420 --> 00:17:12,640 +Right. + +575 +00:17:12,840 --> 00:17:13,100 +Right. + +576 +00:17:13,140 --> 00:17:16,860 +You can get the Sandy Bridge, the i7 equivalent of the Sandy Bridge now. + +577 +00:17:17,080 --> 00:17:17,260 +Right. + +578 +00:17:17,300 --> 00:17:18,460 +Which is a little bit slower. + +579 +00:17:18,620 --> 00:17:18,880 +Right. + +580 +00:17:19,100 --> 00:17:19,540 +Right. + +581 +00:17:19,540 --> 00:17:19,580 +Right. + +582 +00:17:19,580 --> 00:17:19,740 +Right. + +583 +00:17:19,740 --> 00:17:19,820 +Right. + +584 +00:17:19,940 --> 00:17:20,380 +Right. + +585 +00:17:20,380 --> 00:17:20,380 + + +586 +00:17:20,380 --> 00:17:20,380 + + +587 +00:17:20,380 --> 00:17:20,380 + + +588 +00:17:20,380 --> 00:17:20,380 + + +589 +00:17:20,380 --> 00:17:20,380 + + +590 +00:17:20,380 --> 00:17:20,380 + + +591 +00:17:20,380 --> 00:17:20,380 + + +592 +00:17:20,380 --> 00:17:20,380 + + +593 +00:17:20,380 --> 00:17:20,380 + + +594 +00:17:20,380 --> 00:17:20,380 + + +595 +00:17:20,380 --> 00:17:20,380 + + +596 +00:17:20,380 --> 00:17:20,380 + + +597 +00:17:20,380 --> 00:17:20,380 + + +598 +00:17:20,380 --> 00:17:20,380 + + +599 +00:17:20,400 --> 00:17:20,840 +Right. + +600 +00:17:20,840 --> 00:17:20,840 + + +601 +00:17:20,840 --> 00:17:20,840 + + +602 +00:17:20,840 --> 00:17:20,840 + + +603 +00:17:20,840 --> 00:17:20,840 + + +604 +00:17:20,840 --> 00:17:20,840 + + +605 +00:17:20,840 --> 00:17:20,840 + + +606 +00:17:20,840 --> 00:17:20,840 + + +607 +00:17:20,840 --> 00:17:20,840 + + +608 +00:17:20,840 --> 00:17:20,840 + + +609 +00:17:20,840 --> 00:17:23,140 +That'll at least allow you to move forward upgrade-wise. + +610 +00:17:23,440 --> 00:17:23,840 +All right. + +611 +00:17:23,880 --> 00:17:27,160 +So in a year, let's say you decide that, well, I want to get a faster processor. + +612 +00:17:27,800 --> 00:17:28,220 +All right. + +613 +00:17:28,260 --> 00:17:29,280 +Or I want DDR4. + +614 +00:17:29,440 --> 00:17:29,780 +Right. + +615 +00:17:29,880 --> 00:17:30,240 +All right. + +616 +00:17:30,240 --> 00:17:32,560 +Then, yeah, you're going to want to move. + +617 +00:17:33,480 --> 00:17:35,020 +No, I see what you're saying. + +618 +00:17:35,140 --> 00:17:36,340 +No, I absolutely see what you're saying. + +619 +00:17:36,420 --> 00:17:40,740 +It's just, to me, I don't see, you know, like you said, it's beta, you know, in essence. + +620 +00:17:41,180 --> 00:17:43,660 +You know, and they've already had one recall on it. + +621 +00:17:44,240 --> 00:17:46,160 +I'm not saying that it's a bad setup. + +622 +00:17:46,440 --> 00:17:47,960 +I just, I don't know. + +623 +00:17:48,040 --> 00:17:49,620 +I'm just not quite convinced yet. + +624 +00:17:50,400 --> 00:17:52,260 +You know, and here's maybe my problem with this. + +625 +00:17:52,300 --> 00:17:52,480 +Right. + +626 +00:17:52,520 --> 00:17:56,280 +And why my, this whole segment for me has just been a sort of, you know, an epic fail for you. + +627 +00:17:56,820 --> 00:18:00,020 +Is that, is that I don't really care. + +628 +00:18:00,200 --> 00:18:01,600 +And here's the reason why. + +629 +00:18:01,680 --> 00:18:05,460 +Is that, you know, the processor debate for me is really boring. + +630 +00:18:05,600 --> 00:18:05,940 +Mm-hmm. + +631 +00:18:06,000 --> 00:18:06,200 +Right. + +632 +00:18:06,280 --> 00:18:09,440 +I find the processor debate to be like, you know, what if. + +633 +00:18:09,620 --> 00:18:09,980 +Right. + +634 +00:18:10,060 --> 00:18:10,300 +Right. + +635 +00:18:10,360 --> 00:18:13,920 +It's, it's like when you go out and you buy the car. + +636 +00:18:14,160 --> 00:18:14,520 +Right. + +637 +00:18:14,620 --> 00:18:16,120 +You know, you get an option. + +638 +00:18:16,280 --> 00:18:16,600 +Right. + +639 +00:18:16,680 --> 00:18:19,720 +Do you want it with this many cylinders or that many liters or whatever? + +640 +00:18:19,900 --> 00:18:20,120 +Right. + +641 +00:18:20,400 --> 00:18:21,500 +I just want something that works. + +642 +00:18:21,700 --> 00:18:22,460 +I don't really care. + +643 +00:18:22,660 --> 00:18:24,420 +Well, I'm going to get into the nitty gritty of this thing. + +644 +00:18:24,560 --> 00:18:26,320 +I'm going to E3 next week. + +645 +00:18:26,580 --> 00:18:28,140 +There's going to be a lot of gamers down there. + +646 +00:18:28,360 --> 00:18:30,760 +A lot of, you know, media coverage down there. + +647 +00:18:30,840 --> 00:18:32,280 +You know, fellow gamers. + +648 +00:18:32,480 --> 00:18:33,140 +I'm going to talk to them. + +649 +00:18:33,180 --> 00:18:34,840 +I'm going to try to get their opinions on this kind of stuff. + +650 +00:18:35,140 --> 00:18:37,620 +I'm going to actually go, I have interviews with NVIDIA. + +651 +00:18:37,820 --> 00:18:40,380 +I have interviews with some big wigs down there. + +652 +00:18:40,420 --> 00:18:44,340 +So I'm going to find out, get down to the nitty gritty of this whole thing and see if I can get any more good details out of it. + +653 +00:18:44,400 --> 00:18:45,640 +Well, and here's the reason I don't really care. + +654 +00:18:46,480 --> 00:18:47,320 +Let me get back to that. + +655 +00:18:47,340 --> 00:18:47,840 +Okay, go ahead. + +656 +00:18:47,900 --> 00:18:48,060 +I'm sorry. + +657 +00:18:48,060 --> 00:18:52,080 +I want to make sure that people understand why I don't care. + +658 +00:18:52,320 --> 00:18:52,640 +Okay. + +659 +00:18:52,700 --> 00:18:59,380 +All right, five years ago, and you're looking at processors, you could see 100% increase from going from one processor to another. + +660 +00:18:59,580 --> 00:18:59,840 +Right. + +661 +00:18:59,960 --> 00:19:00,160 +Right. + +662 +00:19:00,200 --> 00:19:01,220 +And now you're what? + +663 +00:19:01,260 --> 00:19:03,020 +You're going to see 5%, right? + +664 +00:19:03,040 --> 00:19:03,200 +Right. + +665 +00:19:03,320 --> 00:19:06,700 +You're going to see some really small change, right? + +666 +00:19:06,760 --> 00:19:10,720 +The performance benefit is going to be so small, it doesn't matter. + +667 +00:19:10,940 --> 00:19:11,160 +Right. + +668 +00:19:11,600 --> 00:19:15,240 +It's a lot like when people say, well, which brand of computer should I get? + +669 +00:19:15,340 --> 00:19:16,620 +I say, how much money are you going to spend? + +670 +00:19:16,700 --> 00:19:17,500 +They say, $500. + +671 +00:19:17,500 --> 00:19:17,780 +$500. + +672 +00:19:17,980 --> 00:19:19,260 +It doesn't matter what you get. + +673 +00:19:19,380 --> 00:19:19,520 +Right. + +674 +00:19:19,700 --> 00:19:21,320 +They're all going to be the same at that price point. + +675 +00:19:21,420 --> 00:19:23,480 +And the same thing is true in the processors. + +676 +00:19:23,780 --> 00:19:31,040 +Now, if you're looking to spend $2,000 on a processor, right, then yes, there's a huge difference between different processors. + +677 +00:19:31,060 --> 00:19:33,260 +So how many of us want to spend $2,000 on a processor? + +678 +00:19:33,540 --> 00:19:34,120 +Next to nobody. + +679 +00:19:34,240 --> 00:19:34,500 +Exactly. + +680 +00:19:34,520 --> 00:19:37,020 +And that's why I find the whole processor debate to be so boring. + +681 +00:19:37,160 --> 00:19:37,560 +Right, right. + +682 +00:19:37,840 --> 00:19:47,400 +And I don't mean to be overly apathetic about it, but there's not enough real consequence to spend time worrying about it. + +683 +00:19:47,500 --> 00:19:47,840 +No, I agree. + +684 +00:19:47,940 --> 00:19:48,240 +I agree. + +685 +00:19:48,300 --> 00:19:48,820 +I see what you're saying. + +686 +00:19:48,920 --> 00:19:49,320 +Yeah, absolutely. + +687 +00:19:49,520 --> 00:19:53,220 +And even a year ago, you were dealing with the AMD Intel stuff. + +688 +00:19:53,520 --> 00:19:53,820 +Right. + +689 +00:19:53,820 --> 00:19:54,020 +Right. + +690 +00:19:54,020 --> 00:19:59,400 +And then AMD was having massive overheating problems, and they were considerably slower than the Intels. + +691 +00:19:59,460 --> 00:19:59,720 +Mm-hmm. + +692 +00:19:59,740 --> 00:20:00,000 +All right. + +693 +00:20:00,060 --> 00:20:03,600 +But this next generation of AMDs is going to at least bring them so that they're current. + +694 +00:20:04,200 --> 00:20:04,500 +Right. + +695 +00:20:04,560 --> 00:20:07,600 +So that they are at least sort of nearby. + +696 +00:20:07,920 --> 00:20:08,220 +Right. + +697 +00:20:08,300 --> 00:20:09,040 +As far as the... + +698 +00:20:09,380 --> 00:20:10,100 +They're catching up. + +699 +00:20:10,120 --> 00:20:12,480 +As far as the speed is concerned, they are going to be a bit cheaper. + +700 +00:20:12,540 --> 00:20:17,380 +So it's really going to come down to, do you want a budget machine, or do you want to spend a little bit more for the processor? + +701 +00:20:17,500 --> 00:20:18,280 +It's a little bit faster. + +702 +00:20:18,480 --> 00:20:18,740 +Mm-hmm. + +703 +00:20:18,800 --> 00:20:22,800 +So for me, spending all the time on that, it's kind of like, meh, whatever. + +704 +00:20:23,760 --> 00:20:24,160 +Whatever's... + +705 +00:20:24,160 --> 00:20:24,940 +We'll stop talking about it. + +706 +00:20:25,040 --> 00:20:25,160 +All right. + +707 +00:20:25,300 --> 00:20:25,880 +Let's talk to Frank. + +708 +00:20:25,980 --> 00:20:26,680 +Hey, Frank, how you doing? + +709 +00:20:27,360 --> 00:20:28,080 +Yeah, I'm good. + +710 +00:20:28,260 --> 00:20:29,020 +How can I help you? + +711 +00:20:29,660 --> 00:20:32,580 +Well, I was the last guy that just talked to you. + +712 +00:20:33,920 --> 00:20:40,760 +But basically, I tried turning my computer on, and it won't even actually go to Windows. + +713 +00:20:40,980 --> 00:20:42,140 +It takes me... + +714 +00:20:42,140 --> 00:20:47,480 +It automatically opens up the option to go into, like, safe mode. + +715 +00:20:47,500 --> 00:20:52,440 +You know, left working mode, or just normal Windows mode. + +716 +00:20:52,740 --> 00:20:53,140 +Okay. + +717 +00:20:53,160 --> 00:20:59,060 +And whichever one I pick, it just reboots itself. + +718 +00:20:59,340 --> 00:21:00,460 +Okay, so it's getting a blue screen. + +719 +00:21:01,140 --> 00:21:05,760 +Yeah, I'm getting a blue screen that pops up really quick, and then it goes away, and then I go right back. + +720 +00:21:05,840 --> 00:21:06,620 +How old is the machine? + +721 +00:21:08,920 --> 00:21:10,720 +About eight years old, nine. + +722 +00:21:11,040 --> 00:21:11,400 +All right. + +723 +00:21:11,440 --> 00:21:12,820 +I bet you have bad hard drives. + +724 +00:21:12,880 --> 00:21:14,120 +Well, it could be. + +725 +00:21:14,140 --> 00:21:15,400 +It could be the infection's correct. + +726 +00:21:15,620 --> 00:21:17,200 +This is the guy who called it the virus infection. + +727 +00:21:17,200 --> 00:21:17,400 +Yeah. + +728 +00:21:17,500 --> 00:21:19,540 +And infections kill hard drives, like, all day long. + +729 +00:21:19,760 --> 00:21:22,500 +Either way, though, this is going to be beyond your repair, I'm thinking. + +730 +00:21:23,100 --> 00:21:24,720 +Either way, you're going to need to bring it down to a shop. + +731 +00:21:24,740 --> 00:21:25,340 +Bring it down to us. + +732 +00:21:25,340 --> 00:21:28,020 +We can do a diagnostic and find out exactly what's going on for you. + +733 +00:21:29,200 --> 00:21:29,480 +Okay. + +734 +00:21:29,640 --> 00:21:30,020 +All right. + +735 +00:21:30,080 --> 00:21:32,420 +We're looking at 2700 North Campbell, just south of Glynn. + +736 +00:21:33,180 --> 00:21:33,460 +Okay. + +737 +00:21:33,520 --> 00:21:34,400 +Thanks for the call, Frank. + +738 +00:21:34,460 --> 00:21:34,900 +Appreciate it. + +739 +00:21:34,940 --> 00:21:35,660 +We've got to do some news. + +740 +00:21:35,740 --> 00:21:38,080 +If you'd like to be part of the show, 751-1041. + +741 +00:21:38,620 --> 00:21:41,780 +We'd love to help you out with whatever technology issues are plaguing you today. + +742 +00:21:42,260 --> 00:21:43,440 +This is the Computer Guru Show. + +743 +00:21:43,540 --> 00:21:44,760 +We'll be right back after the news. + +744 +00:21:58,500 --> 00:22:01,680 +We'll be right back. + +745 +00:22:06,700 --> 00:22:15,540 +We'll be right back. + +746 +00:22:18,060 --> 00:22:18,980 +Oh, please stop. + +747 +00:22:19,800 --> 00:22:25,200 +Yeah, I watched all five seasons of The Wire on HBO Go on the iPad. + +748 +00:22:25,460 --> 00:22:25,720 +Really? + +749 +00:22:25,820 --> 00:22:26,040 +Yeah. + +750 +00:22:26,700 --> 00:22:28,220 +I've never seen one episode of The Wire. + +751 +00:22:28,460 --> 00:22:29,840 +It turns out it's a really great show. + +752 +00:22:30,100 --> 00:22:31,740 +It took you five seasons to figure that out? + +753 +00:22:31,900 --> 00:22:32,640 +Well, it's over now. + +754 +00:22:32,740 --> 00:22:33,800 +It was all five seasons. + +755 +00:22:33,860 --> 00:22:34,320 +Oh, okay. + +756 +00:22:34,460 --> 00:22:35,780 +They ended the series. + +757 +00:22:35,980 --> 00:22:36,220 +Yeah. + +758 +00:22:36,380 --> 00:22:40,560 +And it turns out that it will dramatically affect the way that you speak to people around you. + +759 +00:22:41,640 --> 00:22:42,720 +What is the show about? + +760 +00:22:42,840 --> 00:22:43,440 +I've never even heard of it. + +761 +00:22:43,580 --> 00:22:46,140 +It's about a detective in Boston. + +762 +00:22:46,140 --> 00:22:49,740 +He's working on drug-related cases and stuff. + +763 +00:22:49,940 --> 00:22:51,280 +So it's like CSI Miami or something? + +764 +00:22:52,000 --> 00:22:53,260 +It's like one of those CSI shows. + +765 +00:22:53,940 --> 00:22:58,480 +Except for he doesn't pull his glasses off all the time and music screams in the back. + +766 +00:23:00,080 --> 00:23:00,440 +Yeah. + +767 +00:23:00,520 --> 00:23:00,820 +Yeah. + +768 +00:23:00,940 --> 00:23:01,980 +Well, let's talk to Clayton. + +769 +00:23:01,980 --> 00:23:03,900 +If you'd like to be part of the show, 751-1041. + +770 +00:23:04,260 --> 00:23:05,000 +Hello, Clayton. + +771 +00:23:05,000 --> 00:23:05,300 +How are you? + +772 +00:23:05,540 --> 00:23:06,060 +Hey, Mike. + +773 +00:23:06,100 --> 00:23:06,620 +How are you doing today? + +774 +00:23:06,760 --> 00:23:07,480 +Getting there, man. + +775 +00:23:08,340 --> 00:23:09,800 +Just had a quick question for you. + +776 +00:23:09,840 --> 00:23:11,880 +I just finished doing a gaming rig build yesterday. + +777 +00:23:12,220 --> 00:23:12,560 +Okay. + +778 +00:23:12,880 --> 00:23:16,040 +And I bought an AMD Phenom II. + +779 +00:23:16,480 --> 00:23:17,360 +1100T processor. + +780 +00:23:17,740 --> 00:23:18,060 +Okay. + +781 +00:23:18,260 --> 00:23:22,220 +And I'm just wondering, do I need to use the core unlocker feature on my motherboard + +782 +00:23:22,220 --> 00:23:24,660 +or are all six cores already unlocked with this processor? + +783 +00:23:25,000 --> 00:23:26,600 +What version of operating system is it? + +784 +00:23:27,260 --> 00:23:28,960 +XP7 Professional 64-bit. + +785 +00:23:29,180 --> 00:23:29,640 +Hold on. + +786 +00:23:29,800 --> 00:23:31,300 +You just listed two of them. + +787 +00:23:31,340 --> 00:23:31,760 +Which one is it? + +788 +00:23:31,800 --> 00:23:32,240 +I'm sorry. + +789 +00:23:32,340 --> 00:23:33,280 +Windows 7 64. + +790 +00:23:34,220 --> 00:23:34,820 +You're fine. + +791 +00:23:35,000 --> 00:23:35,560 +All right. + +792 +00:23:35,820 --> 00:23:40,540 +As long as your processors actually show up in the device manager. + +793 +00:23:40,840 --> 00:23:41,480 +Yeah, it did. + +794 +00:23:41,540 --> 00:23:42,440 +It said it was a six core. + +795 +00:23:42,820 --> 00:23:43,440 +You're fine. + +796 +00:23:43,560 --> 00:23:44,000 +Then you're fine. + +797 +00:23:44,540 --> 00:23:44,980 +Perfect. + +798 +00:23:45,440 --> 00:23:45,740 +Perfect. + +799 +00:23:46,140 --> 00:23:46,820 +You'll have to worry about that. + +800 +00:23:46,820 --> 00:23:47,240 +I think you need to know the answer. + +801 +00:23:47,400 --> 00:23:48,780 +I was just kind of worried about it. + +802 +00:23:49,520 --> 00:23:50,600 +Well, it's six cores. + +803 +00:23:50,680 --> 00:23:51,640 +You got to make sure they're all going. + +804 +00:23:51,800 --> 00:23:52,120 +Absolutely. + +805 +00:23:52,240 --> 00:23:52,640 +Yeah, exactly. + +806 +00:23:52,760 --> 00:23:53,880 +Why get it if I can't use them? + +807 +00:23:53,920 --> 00:23:54,320 +Exactly. + +808 +00:23:54,540 --> 00:23:55,060 +That's right. + +809 +00:23:55,140 --> 00:24:00,660 +So what made you choose the AMD just because we were having this processor debate earlier? + +810 +00:24:01,640 --> 00:24:03,440 +It's more the price point, really. + +811 +00:24:03,840 --> 00:24:09,800 +The six core intels right now, I mean, I really like the Sandy Bridge stuff, but it's just + +812 +00:24:09,800 --> 00:24:14,140 +I can get a 3.3 gigahertz six core for 200 bucks. + +813 +00:24:14,260 --> 00:24:14,480 +Right. + +814 +00:24:14,520 --> 00:24:14,700 +Yeah. + +815 +00:24:14,700 --> 00:24:16,240 +The intels are much more expensive. + +816 +00:24:16,420 --> 00:24:18,340 +Yeah, but the boards are more expensive on the AMD side. + +817 +00:24:18,380 --> 00:24:18,660 +This is true. + +818 +00:24:19,300 --> 00:24:21,580 +Yeah, but I mean, it's not that much more expensive. + +819 +00:24:21,580 --> 00:24:26,120 +It's not the difference between the AMD processor and the intel as compared to the boards. + +820 +00:24:26,160 --> 00:24:30,280 +And being a college student, I can't exactly be going out and getting top of the line all + +821 +00:24:30,280 --> 00:24:30,580 +the time. + +822 +00:24:31,280 --> 00:24:31,640 +Right. + +823 +00:24:31,680 --> 00:24:32,560 +No bleeding edge for you? + +824 +00:24:32,840 --> 00:24:33,200 +Yeah. + +825 +00:24:33,580 --> 00:24:33,940 +Okay. + +826 +00:24:34,300 --> 00:24:34,820 +All right. + +827 +00:24:34,840 --> 00:24:35,180 +Well, great. + +828 +00:24:35,360 --> 00:24:36,760 +I'm glad we answered your question. + +829 +00:24:36,920 --> 00:24:37,920 +Yeah, I appreciate it. + +830 +00:24:37,960 --> 00:24:38,360 +Have a nice day. + +831 +00:24:38,500 --> 00:24:40,680 +That's a perfect example of what you were just saying, though. + +832 +00:24:40,780 --> 00:24:44,680 +You know, why this whole Sandy Bridge fusion thing was not really going to matter. + +833 +00:24:44,700 --> 00:24:47,840 +Because it is really, the bottom line, it's about price point. + +834 +00:24:48,040 --> 00:24:48,740 +Well, you know what they say. + +835 +00:24:48,900 --> 00:24:49,700 +It's all about money. + +836 +00:24:49,840 --> 00:24:50,040 +Right. + +837 +00:24:50,320 --> 00:24:53,900 +Everything that you do in America is about money. + +838 +00:24:54,060 --> 00:24:54,220 +Yeah. + +839 +00:24:54,340 --> 00:24:54,740 +All right. + +840 +00:24:54,780 --> 00:24:59,780 +So it's even those guys that are attacking the apples, which we're still going to get + +841 +00:24:59,780 --> 00:24:59,920 +to. + +842 +00:24:59,940 --> 00:25:01,320 +We're going to grab one more call here. + +843 +00:25:01,340 --> 00:25:01,840 +Let's talk to Eric. + +844 +00:25:01,900 --> 00:25:02,240 +Hey, Eric. + +845 +00:25:02,260 --> 00:25:02,560 +How you doing? + +846 +00:25:03,020 --> 00:25:03,780 +Hey, doing good. + +847 +00:25:03,860 --> 00:25:04,460 +How you doing, man? + +848 +00:25:04,560 --> 00:25:04,880 +Good. + +849 +00:25:05,820 --> 00:25:07,480 +Hey, you said about the wire? + +850 +00:25:07,660 --> 00:25:07,940 +Yeah. + +851 +00:25:08,000 --> 00:25:08,940 +It's Baltimore. + +852 +00:25:09,480 --> 00:25:10,020 +Oh, it's Baltimore. + +853 +00:25:10,320 --> 00:25:10,540 +Yeah. + +854 +00:25:10,600 --> 00:25:10,780 +Okay. + +855 +00:25:10,840 --> 00:25:11,140 +I'm sorry. + +856 +00:25:11,280 --> 00:25:11,420 +Yeah. + +857 +00:25:11,440 --> 00:25:11,680 +Yeah. + +858 +00:25:11,860 --> 00:25:13,220 +Greatest show ever, by the way. + +859 +00:25:13,360 --> 00:25:13,680 +Really? + +860 +00:25:14,300 --> 00:25:14,620 +Why? + +861 +00:25:14,700 --> 00:25:14,960 +Very good. + +862 +00:25:15,060 --> 00:25:15,660 +I liked it. + +863 +00:25:15,740 --> 00:25:16,380 +I have to admit. + +864 +00:25:17,080 --> 00:25:17,360 +Yeah. + +865 +00:25:17,380 --> 00:25:17,940 +I'll check it out. + +866 +00:25:18,480 --> 00:25:18,760 +Homicide. + +867 +00:25:19,500 --> 00:25:19,780 +Yeah. + +868 +00:25:19,880 --> 00:25:20,400 +Homicide detective. + +869 +00:25:20,980 --> 00:25:21,260 +Yeah. + +870 +00:25:21,680 --> 00:25:23,460 +Well, Homicide Life on the Street, that series. + +871 +00:25:24,060 --> 00:25:24,520 +Hey, guys. + +872 +00:25:25,440 --> 00:25:25,720 +Excellent. + +873 +00:25:26,400 --> 00:25:26,680 +Yeah. + +874 +00:25:26,740 --> 00:25:27,540 +I'll have to check it out. + +875 +00:25:27,600 --> 00:25:30,020 +I haven't looked at it at all, but I'll have to check it out. + +876 +00:25:30,140 --> 00:25:30,900 +Thanks for the call, Eric. + +877 +00:25:31,140 --> 00:25:31,640 +Hey, no problem. + +878 +00:25:31,720 --> 00:25:31,980 +Have a good day. + +879 +00:25:32,940 --> 00:25:35,640 +Right now, you know what episodes, seasons I'm watching right now? + +880 +00:25:35,700 --> 00:25:35,880 +What? + +881 +00:25:36,020 --> 00:25:36,300 +Buffy. + +882 +00:25:36,900 --> 00:25:38,320 +You're watching Buffy the Vampire Slayer? + +883 +00:25:38,440 --> 00:25:39,380 +I've never seen it in the original. + +884 +00:25:39,620 --> 00:25:41,080 +My wife's like, oh, it's such a good show. + +885 +00:25:41,140 --> 00:25:41,640 +You've got to watch it. + +886 +00:25:41,660 --> 00:25:42,260 +I'm like, all right. + +887 +00:25:42,260 --> 00:25:42,440 +All right. + +888 +00:25:42,440 --> 00:25:43,140 +I'll give it a shot. + +889 +00:25:43,460 --> 00:25:43,880 +I know. + +890 +00:25:43,960 --> 00:25:45,240 +How can I be called a nerd? + +891 +00:25:45,320 --> 00:25:46,560 +I've never seen an episode of Buffy before. + +892 +00:25:46,680 --> 00:25:47,660 +I know, but I'm watching him now. + +893 +00:25:48,240 --> 00:25:49,180 +I've never seen one either. + +894 +00:25:49,340 --> 00:25:49,480 +Really? + +895 +00:25:49,480 --> 00:25:49,980 +I just refuse to. + +896 +00:25:50,120 --> 00:25:52,880 +Oh, all the freaking nerds all say, Buffy's so great. + +897 +00:25:53,240 --> 00:25:54,900 +So I'm watching him now. + +898 +00:25:55,640 --> 00:25:56,340 +Yeah, I know, right? + +899 +00:25:56,740 --> 00:25:57,060 +Terrible. + +900 +00:25:57,200 --> 00:25:58,900 +I am in stunned silence over it. + +901 +00:26:00,720 --> 00:26:01,600 +Can't hardly believe it. + +902 +00:26:01,760 --> 00:26:02,360 +I don't know. + +903 +00:26:02,380 --> 00:26:05,320 +If you're going to watch something that's all about vampires and stuff, my personal + +904 +00:26:05,320 --> 00:26:06,360 +choice is Supernatural. + +905 +00:26:07,100 --> 00:26:11,640 +You know, next thing I hear, you're going to be like replaying. + +906 +00:26:12,260 --> 00:26:13,500 +Like New Moon or whatever. + +907 +00:26:13,860 --> 00:26:14,100 +Oh, yeah. + +908 +00:26:14,160 --> 00:26:15,880 +My wife loves the Twilight stuff, man. + +909 +00:26:15,900 --> 00:26:16,460 +Let me tell you. + +910 +00:26:16,600 --> 00:26:16,980 +God. + +911 +00:26:17,160 --> 00:26:20,320 +I've seen each one of those movies once. + +912 +00:26:21,400 --> 00:26:21,860 +That's it. + +913 +00:26:21,980 --> 00:26:22,880 +All right. + +914 +00:26:22,900 --> 00:26:30,500 +So the government, antitrust regulators, are a little nervous about the Nortel patents + +915 +00:26:30,500 --> 00:26:32,420 +that are up for auction here pretty soon. + +916 +00:26:32,600 --> 00:26:33,020 +Okay. + +917 +00:26:33,020 --> 00:26:33,860 +Do you know anything about this? + +918 +00:26:33,900 --> 00:26:34,760 +I know nothing about it. + +919 +00:26:34,800 --> 00:26:35,800 +Do you know who Nortel is? + +920 +00:26:35,960 --> 00:26:36,680 +Who is Nortel? + +921 +00:26:37,080 --> 00:26:40,500 +Nortel was a gigantic phone provider. + +922 +00:26:40,740 --> 00:26:41,180 +Okay. + +923 +00:26:41,200 --> 00:26:41,400 +Right? + +924 +00:26:41,480 --> 00:26:42,240 +They made... + +925 +00:26:42,260 --> 00:26:43,900 +They made huge phone networks and... + +926 +00:26:43,900 --> 00:26:44,620 +Like Qualcomm? + +927 +00:26:45,200 --> 00:26:45,800 +Kind of. + +928 +00:26:45,840 --> 00:26:46,100 +Okay. + +929 +00:26:46,100 --> 00:26:46,260 +Right? + +930 +00:26:46,900 --> 00:26:48,360 +But they made like... + +931 +00:26:48,360 --> 00:26:52,480 +Like if you go down to like, say, Star Pass or whatever, the resort, all their phones + +932 +00:26:52,480 --> 00:26:53,260 +down there are Nortel. + +933 +00:26:53,360 --> 00:26:53,960 +Oh, okay. + +934 +00:26:54,000 --> 00:26:56,100 +They built gigantic PBXs. + +935 +00:26:56,180 --> 00:26:56,400 +Right. + +936 +00:26:56,440 --> 00:26:57,840 +And did a bunch of other stuff, too. + +937 +00:26:58,220 --> 00:26:59,920 +Well, they're defunct now. + +938 +00:27:00,020 --> 00:27:00,840 +They're out of business. + +939 +00:27:00,980 --> 00:27:02,920 +And they're auctioning off a... + +940 +00:27:04,100 --> 00:27:05,280 +Their old patents? + +941 +00:27:05,500 --> 00:27:06,080 +All their patents. + +942 +00:27:06,300 --> 00:27:06,540 +Okay. + +943 +00:27:06,600 --> 00:27:07,740 +6,000 patents. + +944 +00:27:08,100 --> 00:27:08,500 +Wow. + +945 +00:27:08,820 --> 00:27:09,400 +All right? + +946 +00:27:10,260 --> 00:27:11,460 +Guess who's bidding on it? + +947 +00:27:11,620 --> 00:27:12,160 +All right? + +948 +00:27:12,260 --> 00:27:14,120 +You got three people that are bidding on it. + +949 +00:27:14,200 --> 00:27:14,420 +Google. + +950 +00:27:14,560 --> 00:27:15,260 +You got Google? + +951 +00:27:15,420 --> 00:27:15,720 +Really? + +952 +00:27:15,820 --> 00:27:16,200 +Oh, wow. + +953 +00:27:16,200 --> 00:27:16,660 +Nice guess. + +954 +00:27:16,900 --> 00:27:17,060 +Wow. + +955 +00:27:17,180 --> 00:27:17,980 +You got Apple? + +956 +00:27:19,320 --> 00:27:20,100 +And Microsoft. + +957 +00:27:20,300 --> 00:27:21,500 +No, Microsoft's not... + +958 +00:27:21,500 --> 00:27:22,620 +Apparently not interested. + +959 +00:27:23,120 --> 00:27:23,520 +Facebook. + +960 +00:27:24,700 --> 00:27:26,680 +Yeah, wouldn't that be funny? + +961 +00:27:27,480 --> 00:27:27,880 +No. + +962 +00:27:29,920 --> 00:27:30,580 +Here's the thing. + +963 +00:27:30,960 --> 00:27:32,520 +Research in Motion is the third, by the way. + +964 +00:27:32,580 --> 00:27:32,900 +Really? + +965 +00:27:32,960 --> 00:27:33,360 +Okay. + +966 +00:27:33,500 --> 00:27:33,700 +All right. + +967 +00:27:33,740 --> 00:27:35,040 +So the people who make the BlackBerrys. + +968 +00:27:35,060 --> 00:27:35,540 +BlackBerrys, right. + +969 +00:27:36,140 --> 00:27:42,020 +They were initially upset, saying, well, if Google gets these, all right, there could + +970 +00:27:42,020 --> 00:27:42,640 +be a problem. + +971 +00:27:42,780 --> 00:27:43,020 +Right. + +972 +00:27:43,180 --> 00:27:43,400 +Right? + +973 +00:27:43,540 --> 00:27:46,860 +One of the patents that Nortel owns is the LTE technology. + +974 +00:27:47,380 --> 00:27:47,980 +Oh, really? + +975 +00:27:48,240 --> 00:27:48,520 +Yes. + +976 +00:27:48,520 --> 00:27:49,280 +They own the LTE. + +977 +00:27:49,360 --> 00:27:49,660 +Wow. + +978 +00:27:49,760 --> 00:27:51,040 +So they just pulled that away from Apple. + +979 +00:27:52,000 --> 00:27:57,480 +Well, if Apple gets it, it gives them an uncompetitive or an unfair advantage in the wireless networks. + +980 +00:27:57,720 --> 00:27:59,660 +Well, if any one of them get it, if you think about it. + +981 +00:27:59,720 --> 00:28:02,920 +Well, here's the deal, is that Microsoft's not interested. + +982 +00:28:03,100 --> 00:28:03,500 +Right. + +983 +00:28:03,540 --> 00:28:04,640 +Because they've already got... + +984 +00:28:04,640 --> 00:28:09,520 +If you look at the number of patents that each of these companies have, the true elephant + +985 +00:28:09,520 --> 00:28:10,440 +in the room is Microsoft. + +986 +00:28:10,460 --> 00:28:11,060 +Is Microsoft, right. + +987 +00:28:11,200 --> 00:28:11,280 +Yeah. + +988 +00:28:11,340 --> 00:28:11,780 +They got like... + +989 +00:28:11,780 --> 00:28:13,040 +They have like 16,000 patents. + +990 +00:28:13,320 --> 00:28:13,560 +Right. + +991 +00:28:13,580 --> 00:28:13,940 +Right. + +992 +00:28:14,100 --> 00:28:15,340 +But Google's by catching up. + +993 +00:28:15,500 --> 00:28:15,840 +And... + +994 +00:28:15,840 --> 00:28:17,600 +No, Google has 1,000. + +995 +00:28:17,660 --> 00:28:18,140 +Is that all? + +996 +00:28:18,340 --> 00:28:18,560 +That's it. + +997 +00:28:18,640 --> 00:28:19,660 +Of all the companies that they buy? + +998 +00:28:19,880 --> 00:28:20,320 +Right. + +999 +00:28:20,400 --> 00:28:21,680 +They have 1,000 patents. + +1000 +00:28:21,920 --> 00:28:22,160 +Wow. + +1001 +00:28:22,160 --> 00:28:27,680 +Now, here's the deal, is that Microsoft, in addition to the 16,000 that they own, has + +1002 +00:28:27,680 --> 00:28:29,980 +licensing rights to another 20,000. + +1003 +00:28:30,100 --> 00:28:30,400 +Ah. + +1004 +00:28:31,160 --> 00:28:35,340 +Most of which, even the LTE one, Microsoft has a licensing right to. + +1005 +00:28:35,520 --> 00:28:35,760 +Right. + +1006 +00:28:35,780 --> 00:28:35,980 +Right. + +1007 +00:28:35,980 --> 00:28:40,280 +So, no matter who buys the bundle of... + +1008 +00:28:40,280 --> 00:28:41,120 +Microsoft. + +1009 +00:28:41,120 --> 00:28:41,440 +Microsoft. + +1010 +00:28:41,780 --> 00:28:42,440 +Microsoft is making money. + +1011 +00:28:42,540 --> 00:28:43,800 +So, Microsoft doesn't care. + +1012 +00:28:43,960 --> 00:28:44,180 +Right. + +1013 +00:28:45,120 --> 00:28:50,640 +But the reason that they're worried about it is that even though it would potentially + +1014 +00:28:50,640 --> 00:28:53,920 +give Google an unfair advantage... + +1015 +00:28:53,920 --> 00:28:54,060 +Right. + +1016 +00:28:54,100 --> 00:28:58,440 +Google has never seriously gone after anyone for patent infringement, ever. + +1017 +00:28:58,720 --> 00:29:02,140 +Well, I think they would, though, if it was Apple. + +1018 +00:29:02,540 --> 00:29:03,780 +Now, Apple... + +1019 +00:29:03,780 --> 00:29:04,100 +Right. + +1020 +00:29:04,220 --> 00:29:05,140 +On the other hand... + +1021 +00:29:05,140 --> 00:29:05,980 +Goes after everybody. + +1022 +00:29:06,040 --> 00:29:06,480 +Right. + +1023 +00:29:06,480 --> 00:29:07,880 +They are on the ball. + +1024 +00:29:07,960 --> 00:29:10,640 +Now, they're concerned about Microsoft, too, because Microsoft doesn't play around when + +1025 +00:29:10,640 --> 00:29:11,240 +it comes to the patents. + +1026 +00:29:11,240 --> 00:29:11,980 +They do own. + +1027 +00:29:12,120 --> 00:29:12,340 +Right. + +1028 +00:29:12,440 --> 00:29:12,840 +Right. + +1029 +00:29:12,880 --> 00:29:13,500 +And they will... + +1030 +00:29:13,500 --> 00:29:14,680 +They will throw down. + +1031 +00:29:14,860 --> 00:29:15,560 +Yes, they will. + +1032 +00:29:16,020 --> 00:29:18,140 +They have a gigantic pool of lawyers. + +1033 +00:29:18,200 --> 00:29:21,040 +I don't think RIM has a chance at all to get this. + +1034 +00:29:21,120 --> 00:29:22,440 +I mean, if you get the three big... + +1035 +00:29:22,440 --> 00:29:24,140 +If you get the three ones that you're talking about, RIM... + +1036 +00:29:24,140 --> 00:29:27,060 +Google put down the opening bid for $900 million. + +1037 +00:29:27,800 --> 00:29:29,720 +$900 million for 6,000 patents? + +1038 +00:29:29,880 --> 00:29:30,140 +Right. + +1039 +00:29:30,260 --> 00:29:30,660 +Wow. + +1040 +00:29:30,880 --> 00:29:31,200 +All right. + +1041 +00:29:31,240 --> 00:29:33,280 +So, the opening bid at $900 million. + +1042 +00:29:33,820 --> 00:29:34,220 +Uh-huh. + +1043 +00:29:34,240 --> 00:29:35,880 +Now, here's my problem with the whole thing. + +1044 +00:29:36,200 --> 00:29:36,600 +Right? + +1045 +00:29:36,700 --> 00:29:40,260 +As a person who has invented things in the past... + +1046 +00:29:40,260 --> 00:29:40,880 +Right. + +1047 +00:29:40,940 --> 00:29:41,180 +Right. + +1048 +00:29:41,240 --> 00:29:45,700 +I have a couple of inventions, and I've never gone around the whole patent thing. + +1049 +00:29:45,880 --> 00:29:46,080 +Right. + +1050 +00:29:46,280 --> 00:29:50,020 +But I think secondary markets for patents are baloney. + +1051 +00:29:50,580 --> 00:29:50,980 +Right? + +1052 +00:29:51,020 --> 00:29:51,560 +They're bogus. + +1053 +00:29:51,700 --> 00:29:52,100 +Okay. + +1054 +00:29:52,400 --> 00:29:53,780 +And here's why I think so. + +1055 +00:29:54,000 --> 00:29:58,840 +Is that the innovator, the person who actually came up with the idea, should have the right + +1056 +00:29:58,840 --> 00:30:00,560 +to patent it for a limited amount of time. + +1057 +00:30:01,060 --> 00:30:01,460 +Right? + +1058 +00:30:01,520 --> 00:30:05,300 +So, you have this patent that's out there for, let's say, 10 years. + +1059 +00:30:05,480 --> 00:30:05,820 +Okay. + +1060 +00:30:05,860 --> 00:30:06,100 +Right? + +1061 +00:30:06,140 --> 00:30:09,880 +And that's shorter than the current patent anyway, which is you get a 20-year patent. + +1062 +00:30:10,100 --> 00:30:10,380 +Right. + +1063 +00:30:10,380 --> 00:30:10,480 +Right. + +1064 +00:30:10,600 --> 00:30:11,600 +And then you can renew. + +1065 +00:30:12,020 --> 00:30:12,340 +Right? + +1066 +00:30:12,400 --> 00:30:14,880 +I think that they should abolish the renewal process. + +1067 +00:30:15,240 --> 00:30:19,840 +I think that it needs to be a massive patent overhaul as far as the way that U.S. deals + +1068 +00:30:19,840 --> 00:30:20,080 +with patents. + +1069 +00:30:20,080 --> 00:30:22,160 +So, you think after 20 years, they shouldn't be allowed to renew the patent? + +1070 +00:30:22,300 --> 00:30:22,480 +No. + +1071 +00:30:22,540 --> 00:30:23,560 +So, it should be just open claim. + +1072 +00:30:23,760 --> 00:30:23,980 +Yeah. + +1073 +00:30:24,060 --> 00:30:24,900 +The thing is... + +1074 +00:30:24,900 --> 00:30:25,300 +Public domain. + +1075 +00:30:25,380 --> 00:30:30,600 +What the patent does is it protects other people from profiting from your idea for a + +1076 +00:30:30,600 --> 00:30:31,260 +certain amount of time. + +1077 +00:30:31,400 --> 00:30:32,880 +And you think there should only be a 20-year limit on that? + +1078 +00:30:32,920 --> 00:30:33,000 +Yeah. + +1079 +00:30:33,040 --> 00:30:33,400 +I think so. + +1080 +00:30:33,480 --> 00:30:39,960 +Because I think that after 20 years, right, or 10 years even, right, that it's your product, + +1081 +00:30:39,960 --> 00:30:41,960 +your product is sort of common knowledge at that point. + +1082 +00:30:41,980 --> 00:30:44,480 +Well, you know, I can see what you're saying, especially in the technology world. + +1083 +00:30:44,500 --> 00:30:46,340 +After 20 years, it's going to avoid it anyways. + +1084 +00:30:46,640 --> 00:30:49,660 +But you got to think about when patents first came out, and even today, though. + +1085 +00:30:49,740 --> 00:30:51,360 +I mean, for example, Velcro. + +1086 +00:30:52,100 --> 00:30:52,420 +Right. + +1087 +00:30:52,480 --> 00:30:56,580 +The guy who made Velcro, patent that thing, what, 40 years, 50 years ago at least? + +1088 +00:30:56,860 --> 00:30:59,240 +He still owns a patent, or at least his family still does. + +1089 +00:30:59,440 --> 00:30:59,700 +Right. + +1090 +00:30:59,880 --> 00:31:01,280 +And so, he makes money off everything. + +1091 +00:31:01,420 --> 00:31:04,300 +I think he should have the right to that, even after the 20 years is up. + +1092 +00:31:05,040 --> 00:31:07,280 +Well, I mean, if you're using the same technology, sure. + +1093 +00:31:07,920 --> 00:31:08,760 +Velcro's not going to change. + +1094 +00:31:08,820 --> 00:31:09,780 +I mean, it is what it is. + +1095 +00:31:09,960 --> 00:31:13,140 +The thing is, though, is I think it stifles, you know, creativity. + +1096 +00:31:13,540 --> 00:31:13,900 +Okay. + +1097 +00:31:14,020 --> 00:31:14,200 +Right? + +1098 +00:31:14,220 --> 00:31:18,040 +I think that if after 10 years, you let everybody start making it, then somebody will find a + +1099 +00:31:18,040 --> 00:31:18,760 +way to do it better. + +1100 +00:31:18,920 --> 00:31:19,180 +Okay. + +1101 +00:31:19,340 --> 00:31:19,720 +All right? + +1102 +00:31:19,900 --> 00:31:22,060 +Now, and maybe it's just me. + +1103 +00:31:22,100 --> 00:31:24,120 +I'm not terribly greedy about the cash part of it. + +1104 +00:31:24,200 --> 00:31:24,400 +Right. + +1105 +00:31:24,480 --> 00:31:24,720 +Right. + +1106 +00:31:24,840 --> 00:31:26,660 +And don't get me wrong. + +1107 +00:31:26,700 --> 00:31:31,820 +I know people who, like, are invented, like, the cellular technology, right? + +1108 +00:31:31,920 --> 00:31:34,320 +And these guys are rolling in dough. + +1109 +00:31:34,520 --> 00:31:34,800 +Yeah. + +1110 +00:31:34,860 --> 00:31:35,160 +Right? + +1111 +00:31:35,220 --> 00:31:37,460 +And that's great for them. + +1112 +00:31:37,500 --> 00:31:38,100 +It really is. + +1113 +00:31:38,600 --> 00:31:38,960 +Right. + +1114 +00:31:38,960 --> 00:31:39,120 +Right. + +1115 +00:31:39,120 --> 00:31:39,400 +Right. + +1116 +00:31:39,400 --> 00:31:39,420 +Right. + +1117 +00:31:39,420 --> 00:31:39,420 + + +1118 +00:31:39,420 --> 00:31:39,420 + + +1119 +00:31:39,420 --> 00:31:39,420 + + +1120 +00:31:39,420 --> 00:31:39,420 + + +1121 +00:31:39,460 --> 00:31:39,460 + + +1122 +00:31:39,920 --> 00:31:39,920 + + +1123 +00:31:39,920 --> 00:31:39,920 + + +1124 +00:31:39,920 --> 00:31:39,920 + + +1125 +00:31:39,940 --> 00:31:39,940 + + +1126 +00:31:39,940 --> 00:31:39,940 + + +1127 +00:31:39,940 --> 00:31:41,720 +And it can allow people to expand upon ideas. + +1128 +00:31:42,360 --> 00:31:42,720 +Right? + +1129 +00:31:43,100 --> 00:31:48,920 +You can find a new way to do things, and you can't do that, at least, the way it works + +1130 +00:31:48,920 --> 00:31:52,080 +right now is that I can go ahead and come up with an alternative to Velcro. + +1131 +00:31:52,360 --> 00:31:52,720 +Right. + +1132 +00:31:52,740 --> 00:31:52,960 +Right? + +1133 +00:31:53,020 --> 00:31:54,660 +As long as I can produce it myself. + +1134 +00:31:55,400 --> 00:31:55,760 +Right? + +1135 +00:31:55,840 --> 00:31:56,900 +And which I'm not doing. + +1136 +00:31:57,140 --> 00:32:01,480 +Well, see, a patent doesn't prevent you from improving a current product, though. + +1137 +00:32:01,560 --> 00:32:05,620 +See, somebody can own a patent to something, and then you can go ahead and try to make + +1138 +00:32:05,620 --> 00:32:06,680 +an improvement to said patent. + +1139 +00:32:06,820 --> 00:32:07,140 +Right. + +1140 +00:32:07,140 --> 00:32:09,320 +And then all you have to do is just give a licensing. + +1141 +00:32:09,320 --> 00:32:12,880 +A licensing fee to the person who made the original product. + +1142 +00:32:13,100 --> 00:32:13,220 +Right. + +1143 +00:32:13,240 --> 00:32:15,280 +Well, here's my issue with this. + +1144 +00:32:15,340 --> 00:32:15,560 +Okay. + +1145 +00:32:15,660 --> 00:32:19,440 +Is that I think that the backyard inventors, you know, people like me. + +1146 +00:32:19,600 --> 00:32:19,800 +Right. + +1147 +00:32:20,140 --> 00:32:24,500 +We have no hope of making improvements to things that really have a huge or significant + +1148 +00:32:24,500 --> 00:32:26,080 +impact on society. + +1149 +00:32:26,300 --> 00:32:26,520 +Okay. + +1150 +00:32:26,820 --> 00:32:31,040 +And if you allow the larger companies, the people with research and development, you + +1151 +00:32:31,040 --> 00:32:35,320 +know, budgets, to go out and say, okay, it's been 10 years, let's try to build it better. + +1152 +00:32:35,440 --> 00:32:35,780 +Right. + +1153 +00:32:35,800 --> 00:32:36,000 +Right. + +1154 +00:32:36,000 --> 00:32:39,300 +And you have more players in the game with more money in the game. + +1155 +00:32:39,300 --> 00:32:39,300 + + +1156 +00:32:39,300 --> 00:32:39,300 + + +1157 +00:32:39,300 --> 00:32:39,300 + + +1158 +00:32:39,300 --> 00:32:39,300 + + +1159 +00:32:39,300 --> 00:32:39,300 + + +1160 +00:32:39,300 --> 00:32:39,300 + + +1161 +00:32:39,300 --> 00:32:39,300 + + +1162 +00:32:39,300 --> 00:32:39,300 + + +1163 +00:32:39,300 --> 00:32:39,300 + + +1164 +00:32:39,300 --> 00:32:39,300 + + +1165 +00:32:39,300 --> 00:32:39,300 + + +1166 +00:32:39,300 --> 00:32:39,300 + + +1167 +00:32:39,300 --> 00:32:39,300 + + +1168 +00:32:39,300 --> 00:32:39,300 + + +1169 +00:32:39,300 --> 00:32:39,300 + + +1170 +00:32:39,300 --> 00:32:39,300 + + +1171 +00:32:39,300 --> 00:32:41,560 +Then you're going to get a better product out of it. + +1172 +00:32:41,580 --> 00:32:41,640 +Okay. + +1173 +00:32:41,640 --> 00:32:41,840 +All right. + +1174 +00:32:41,880 --> 00:32:42,360 +I can see that. + +1175 +00:32:42,500 --> 00:32:42,680 +Yeah. + +1176 +00:32:42,780 --> 00:32:45,680 +So I think the secondary market for patents is ridiculous. + +1177 +00:32:45,840 --> 00:32:47,720 +And I know it's not terribly computer related. + +1178 +00:32:47,860 --> 00:32:48,060 +Right. + +1179 +00:32:48,160 --> 00:32:48,360 +Right. + +1180 +00:32:48,500 --> 00:32:49,840 +But we're going to get to that. + +1181 +00:32:50,700 --> 00:32:53,140 +You know, because Apple owns a whole bunch of patents. + +1182 +00:32:53,320 --> 00:32:53,540 +Right. + +1183 +00:32:53,580 --> 00:32:53,800 +Right. + +1184 +00:32:53,840 --> 00:32:56,920 +And they're patenting stuff all the time, like crazy. + +1185 +00:32:57,120 --> 00:32:57,520 +Right. + +1186 +00:32:57,540 --> 00:33:03,340 +So they've got, I forget how many patents they've got right now, a few thousand. + +1187 +00:33:03,520 --> 00:33:03,800 +Right. + +1188 +00:33:03,900 --> 00:33:04,160 +Right. + +1189 +00:33:04,340 --> 00:33:07,520 +Maybe 7,000, 8,000 patents or something like that. + +1190 +00:33:07,640 --> 00:33:07,900 +Mm-hmm. + +1191 +00:33:08,180 --> 00:33:08,580 +Yeah. + +1192 +00:33:08,580 --> 00:33:15,820 +And if they manage to get a hold of this Nortel patent stuff, right, then what you're really + +1193 +00:33:15,820 --> 00:33:21,920 +looking at is that they're going to become a dominant player as far as their ability + +1194 +00:33:21,920 --> 00:33:24,720 +to go out and sue everybody for using their technology. + +1195 +00:33:24,720 --> 00:33:25,800 +More so than they already do. + +1196 +00:33:25,980 --> 00:33:26,320 +Right. + +1197 +00:33:26,340 --> 00:33:26,580 +Right. + +1198 +00:33:26,580 --> 00:33:30,720 +And my other issue with the secondary patents is that if you are a company that owns a bunch + +1199 +00:33:30,720 --> 00:33:35,000 +of patents and you didn't leverage that properly and you end up going out of business, it's + +1200 +00:33:35,000 --> 00:33:35,480 +fair game. + +1201 +00:33:35,600 --> 00:33:35,880 +Right. + +1202 +00:33:36,000 --> 00:33:36,260 +Right. + +1203 +00:33:38,580 --> 00:33:42,320 +And you're not going to be able to say, okay, well, I have these patents here, these things + +1204 +00:33:42,320 --> 00:33:47,120 +that I created, and just because I don't know how to use them, I can let somebody else buy + +1205 +00:33:47,120 --> 00:33:47,300 +them up. + +1206 +00:33:47,340 --> 00:33:52,380 +Well, you also get these people who sit there and they come up with an idea, they patent + +1207 +00:33:52,380 --> 00:33:53,380 +it and they sit on it. + +1208 +00:33:53,480 --> 00:33:54,260 +They don't even try to make it. + +1209 +00:33:54,360 --> 00:33:55,220 +They don't even put it out to the public. + +1210 +00:33:55,700 --> 00:33:56,020 +Yeah. + +1211 +00:33:56,100 --> 00:33:57,260 +And that happens all the time. + +1212 +00:33:57,640 --> 00:34:00,780 +And then somebody does come up with that said product, and that guy, he just sits there + +1213 +00:34:00,780 --> 00:34:02,140 +and waits and waits and waits. + +1214 +00:34:02,260 --> 00:34:08,460 +For example, I'm not saying this is what Cisco did, but Cisco came up with, in the 80s, I + +1215 +00:34:08,460 --> 00:34:11,320 +think it was late 80s, early 90s, they came up with an item and they called it the iPhone. + +1216 +00:34:11,940 --> 00:34:12,220 +Right. + +1217 +00:34:12,420 --> 00:34:12,700 +Okay? + +1218 +00:34:13,180 --> 00:34:14,460 +And they didn't go anywhere. + +1219 +00:34:14,920 --> 00:34:18,160 +And then Apple came up with the iPhone and Cisco just waited for a few years and then + +1220 +00:34:18,160 --> 00:34:20,100 +they threw the heck out of Apple before they named iPhone. + +1221 +00:34:20,440 --> 00:34:21,360 +Well, they got some money out of it. + +1222 +00:34:21,400 --> 00:34:21,840 +They sure did. + +1223 +00:34:22,020 --> 00:34:22,780 +We got to take a break. + +1224 +00:34:22,820 --> 00:34:25,400 +When we get back from the break, we'll see what we can do to help you out with whatever + +1225 +00:34:25,400 --> 00:34:26,880 +technology issues you may be having. + +1226 +00:34:27,760 --> 00:34:29,540 +751-1041 if you'd like to be part of the show. + +1227 +00:34:29,760 --> 00:34:33,440 +This is the Computer Guru Show on 104.1 The Truth, Tucson's News Talk FM. + +1228 +00:34:57,580 --> 00:34:59,100 +Welcome back to the Computer Guru Show. + +1229 +00:34:59,160 --> 00:35:02,180 +My name's Mike, here to deal with your technology needs and treat you like a real person in + +1230 +00:35:02,180 --> 00:35:02,680 +the process. + +1231 +00:35:03,020 --> 00:35:04,220 +That's what we're going to do. + +1232 +00:35:04,480 --> 00:35:05,360 +We're going to be nice to you. + +1233 +00:35:05,620 --> 00:35:06,060 +Are we? + +1234 +00:35:06,140 --> 00:35:06,420 +Yeah. + +1235 +00:35:06,580 --> 00:35:07,240 +That's no fun. + +1236 +00:35:07,680 --> 00:35:10,260 +All right, so you had something earlier that you were talking about. + +1237 +00:35:10,400 --> 00:35:10,880 +Oh, yeah. + +1238 +00:35:10,920 --> 00:35:15,180 +This has nothing to do with technology whatsoever, but I saw this and I just, oh, I have to talk + +1239 +00:35:15,180 --> 00:35:16,120 +about this real briefly. + +1240 +00:35:16,200 --> 00:35:17,060 +Because you were incensed. + +1241 +00:35:17,220 --> 00:35:17,580 +Yes. + +1242 +00:35:17,840 --> 00:35:18,200 +Enraged. + +1243 +00:35:18,240 --> 00:35:22,280 +Okay, so apparently there's been a law in the books since 2008 saying you are not allowed + +1244 +00:35:22,280 --> 00:35:26,760 +in Washington, D.C., saying you are not allowed to dance at a memorial, you know, like a Jefferson + +1245 +00:35:26,760 --> 00:35:28,340 +Memorial, you know, Lincoln Memorial. + +1246 +00:35:28,480 --> 00:35:29,220 +You're not allowed to dance. + +1247 +00:35:29,280 --> 00:35:31,320 +So apparently there's a precedence for this. + +1248 +00:35:31,720 --> 00:35:32,960 +Somebody call up Kevin Bacon. + +1249 +00:35:33,040 --> 00:35:33,340 +Yeah. + +1250 +00:35:33,420 --> 00:35:35,140 +Well, actually, that's part of this. + +1251 +00:35:35,220 --> 00:35:36,020 +But anyways. + +1252 +00:35:36,140 --> 00:35:36,500 +So. + +1253 +00:35:36,500 --> 00:35:41,700 +So there's a group of protesters that heard about this, you know, and they said, well, + +1254 +00:35:41,700 --> 00:35:42,060 +you know what? + +1255 +00:35:42,120 --> 00:35:46,400 +On Memorial Day, we're going to go to the Jefferson Memorial with our iPods, put our + +1256 +00:35:46,400 --> 00:35:50,020 +iPod plugs in our ears and listen to the music and just shuffle, do a light dance. + +1257 +00:35:50,260 --> 00:35:50,620 +Right. + +1258 +00:35:50,680 --> 00:35:51,880 +So that's exactly what they did. + +1259 +00:35:51,960 --> 00:35:53,700 +And they brought like four cameras with them. + +1260 +00:35:53,840 --> 00:35:56,300 +You know, they shot from every angle. + +1261 +00:35:56,320 --> 00:35:57,640 +If you go to YouTube, you can pull it up. + +1262 +00:35:57,740 --> 00:35:59,560 +It's all over the YouTube right now. + +1263 +00:36:00,280 --> 00:36:02,620 +But these guys are seriously just doing a little shuffle. + +1264 +00:36:02,620 --> 00:36:05,860 +They're not disturbing anybody, doing nothing wrong, but just doing a little shuffle. + +1265 +00:36:05,860 --> 00:36:11,660 +And these cops, I'm not kidding, five, six, seven cops came out of nowhere and just took + +1266 +00:36:11,660 --> 00:36:15,820 +them to the ground, pushing the cameraman's camera man around, telling the cameraman that + +1267 +00:36:15,820 --> 00:36:17,920 +they're going to arrest him if they keep on recording their actions. + +1268 +00:36:18,300 --> 00:36:22,440 +I mean, obviously, the cops know that they have something to hide because they're telling + +1269 +00:36:22,440 --> 00:36:25,340 +the cameraman to turn off the cameras for recording their actions. + +1270 +00:36:25,660 --> 00:36:27,440 +I mean, this is just absolutely ridiculous. + +1271 +00:36:27,580 --> 00:36:29,820 +I mean, there is no way that this is going to hold up in court. + +1272 +00:36:30,020 --> 00:36:33,820 +I mean, the irony behind this is it's I was at the Jefferson Memorial. + +1273 +00:36:34,160 --> 00:36:34,960 +One of the guys. + +1274 +00:36:35,000 --> 00:36:35,720 +One of our finding. + +1275 +00:36:35,860 --> 00:36:41,860 +Founding fathers who said who loves the the freedom to express oneself, you know, and + +1276 +00:36:41,860 --> 00:36:43,280 +these people can't do a light shuffle. + +1277 +00:36:43,760 --> 00:36:45,080 +I mean, they're not disturbing it. + +1278 +00:36:45,200 --> 00:36:46,580 +I heard it was a flash mob. + +1279 +00:36:46,640 --> 00:36:47,320 +I get it. + +1280 +00:36:47,620 --> 00:36:49,060 +You know, I don't know anybody out there. + +1281 +00:36:49,080 --> 00:36:49,680 +There's a flash mob. + +1282 +00:36:49,700 --> 00:36:53,380 +I will tell you what, if you've ever seen an episode of if you think you can dance. + +1283 +00:36:53,940 --> 00:36:54,560 +All right. + +1284 +00:36:54,600 --> 00:36:58,280 +Some people deserve to be tackled to the ground and then shoved around. + +1285 +00:36:58,420 --> 00:37:00,280 +This was not that. + +1286 +00:37:00,340 --> 00:37:00,860 +Not that. + +1287 +00:37:00,940 --> 00:37:02,060 +I mean, come on. + +1288 +00:37:02,100 --> 00:37:03,140 +This is just out of hand. + +1289 +00:37:03,780 --> 00:37:04,380 +Interpretive dance. + +1290 +00:37:04,540 --> 00:37:05,460 +What is that? + +1291 +00:37:05,460 --> 00:37:05,880 +Really? + +1292 +00:37:06,780 --> 00:37:08,260 +Well, I don't get it. + +1293 +00:37:08,260 --> 00:37:10,540 +I don't get the whole interpretive dancing, right? + +1294 +00:37:10,880 --> 00:37:15,600 +Maybe I'm not interpreting it, but, you know, just like, OK, you look like you got stung + +1295 +00:37:15,600 --> 00:37:16,740 +by a bee in your lower back. + +1296 +00:37:16,880 --> 00:37:17,680 +Well, here's the cool thing. + +1297 +00:37:17,680 --> 00:37:18,220 +Here's the cool thing. + +1298 +00:37:18,220 --> 00:37:20,240 +They tried to prove something by shuffling around. + +1299 +00:37:20,360 --> 00:37:24,020 +I don't understand why they had one of the music in their ears that they were shuffling. + +1300 +00:37:24,040 --> 00:37:26,860 +They wanted to bring this to light that this is a ridiculous law. + +1301 +00:37:27,040 --> 00:37:27,840 +And exactly. + +1302 +00:37:27,880 --> 00:37:28,820 +They did exactly what it did. + +1303 +00:37:28,860 --> 00:37:30,640 +And now they're trying to schedule another protest. + +1304 +00:37:30,700 --> 00:37:34,880 +And this time they actually contacted Kevin Bacon, trying to get Kevin Bacon to come down + +1305 +00:37:34,880 --> 00:37:35,020 +there. + +1306 +00:37:35,020 --> 00:37:35,580 +Dance with him. + +1307 +00:37:35,760 --> 00:37:36,260 +It ain't gonna happen. + +1308 +00:37:36,440 --> 00:37:37,540 +I don't think he ever would. + +1309 +00:37:37,840 --> 00:37:39,520 +But he's too busy being an X-Men. + +1310 +00:37:39,800 --> 00:37:40,480 +Oh, all right. + +1311 +00:37:40,600 --> 00:37:41,500 +Let's take some calls here. + +1312 +00:37:41,520 --> 00:37:41,980 +Let's talk to Adam. + +1313 +00:37:42,040 --> 00:37:42,680 +Hey, Adam, how you doing? + +1314 +00:37:42,860 --> 00:37:43,740 +Hey, what's going on, guys? + +1315 +00:37:43,940 --> 00:37:44,640 +What's going on, man? + +1316 +00:37:45,020 --> 00:37:46,800 +I got a question, but first I'd like to comment. + +1317 +00:37:46,980 --> 00:37:50,240 +I think they should only be allowed to dance if they could tell you who Jefferson was. + +1318 +00:37:50,380 --> 00:37:52,120 +And they can give you at least one quote from Jefferson. + +1319 +00:37:52,480 --> 00:37:53,000 +All right. + +1320 +00:37:53,180 --> 00:37:53,720 +All right. + +1321 +00:37:53,720 --> 00:37:54,580 +I can live with that. + +1322 +00:37:54,700 --> 00:37:57,060 +But the great thing about this country is you don't have to do that. + +1323 +00:37:57,100 --> 00:37:57,900 +That's the great thing about this country. + +1324 +00:37:57,920 --> 00:38:00,060 +You could just say, you know, Jefferson didn't know how to spell. + +1325 +00:38:00,900 --> 00:38:01,940 +That would work. + +1326 +00:38:02,940 --> 00:38:03,820 +Because I went. + +1327 +00:38:03,820 --> 00:38:06,840 +I went to, you know, to Virginia and checked out the Jefferson estate. + +1328 +00:38:07,020 --> 00:38:07,300 +Right. + +1329 +00:38:07,300 --> 00:38:07,520 +Right. + +1330 +00:38:08,020 --> 00:38:09,020 +That dude was pretty cool. + +1331 +00:38:09,180 --> 00:38:09,660 +All right. + +1332 +00:38:09,680 --> 00:38:09,920 +Go ahead. + +1333 +00:38:10,060 --> 00:38:10,320 +Yeah. + +1334 +00:38:10,420 --> 00:38:12,160 +I mean, awesome. + +1335 +00:38:12,420 --> 00:38:13,420 +So what's going on, Adam? + +1336 +00:38:14,240 --> 00:38:17,500 +I got a problem every time I try to get onto an email or some website. + +1337 +00:38:17,640 --> 00:38:18,800 +It pops up every time. + +1338 +00:38:18,860 --> 00:38:19,360 +Security warning. + +1339 +00:38:19,440 --> 00:38:21,760 +Do you want to view only the web page content that was delivered securely? + +1340 +00:38:22,300 --> 00:38:22,660 +Okay. + +1341 +00:38:22,760 --> 00:38:24,620 +And I could say more info, yes or no. + +1342 +00:38:24,800 --> 00:38:27,360 +It kind of sounds like you're using Internet Explorer, right? + +1343 +00:38:27,800 --> 00:38:28,160 +Yes. + +1344 +00:38:28,600 --> 00:38:29,080 +All right. + +1345 +00:38:29,320 --> 00:38:30,660 +And what version of Windows do you have? + +1346 +00:38:31,720 --> 00:38:32,460 +What do I have? + +1347 +00:38:32,620 --> 00:38:32,660 +I have. + +1348 +00:38:32,660 --> 00:38:32,840 +I have a desktop. + +1349 +00:38:33,580 --> 00:38:34,180 +No, no, no. + +1350 +00:38:34,300 --> 00:38:34,860 +I have seven. + +1351 +00:38:34,880 --> 00:38:35,780 +Seven 64-bit. + +1352 +00:38:35,920 --> 00:38:36,240 +Okay. + +1353 +00:38:36,300 --> 00:38:38,260 +So it sounds to me like you got one of two things going on here. + +1354 +00:38:39,440 --> 00:38:42,940 +Either your browser settings are all kind of jacked up and you can reset the browser + +1355 +00:38:42,940 --> 00:38:44,940 +fairly easily by going to Internet Options. + +1356 +00:38:45,400 --> 00:38:45,720 +Okay. + +1357 +00:38:45,720 --> 00:38:47,420 +And there's a button that just says Reset Browser. + +1358 +00:38:47,740 --> 00:38:49,140 +And it puts everything back to default. + +1359 +00:38:49,320 --> 00:38:50,240 +It's on the advanced tab. + +1360 +00:38:50,240 --> 00:38:51,020 +It's on the advanced tab. + +1361 +00:38:51,080 --> 00:38:51,180 +Okay. + +1362 +00:38:51,180 --> 00:38:51,280 +Yeah. + +1363 +00:38:51,680 --> 00:38:54,700 +And then the other thing it could be is you could have some type of an infection going + +1364 +00:38:54,700 --> 00:38:55,020 +on. + +1365 +00:38:55,640 --> 00:38:55,960 +That's. + +1366 +00:38:56,080 --> 00:38:57,700 +Well, I guess I should do a boot time scan. + +1367 +00:38:57,800 --> 00:38:58,620 +I'm running a VAS. + +1368 +00:38:58,800 --> 00:38:59,200 +All right. + +1369 +00:38:59,240 --> 00:39:01,060 +Let's start with resetting the browser and see if it goes away. + +1370 +00:39:01,240 --> 00:39:01,560 +Okay. + +1371 +00:39:01,640 --> 00:39:02,020 +All right. + +1372 +00:39:02,020 --> 00:39:05,760 +And if it doesn't, then yeah, you really should run that boot time scan. + +1373 +00:39:06,160 --> 00:39:06,480 +Cool. + +1374 +00:39:06,660 --> 00:39:06,960 +Okay. + +1375 +00:39:07,180 --> 00:39:07,640 +Thanks, guys. + +1376 +00:39:07,720 --> 00:39:08,400 +Appreciate the call, man. + +1377 +00:39:08,520 --> 00:39:08,560 +Take care. + +1378 +00:39:08,900 --> 00:39:11,020 +If you'd like to be a part of the show, 751-1041. + +1379 +00:39:11,180 --> 00:39:11,980 +Let's talk to you, Alex. + +1380 +00:39:12,180 --> 00:39:12,700 +Hello, Alex. + +1381 +00:39:14,040 --> 00:39:14,360 +Hi. + +1382 +00:39:14,520 --> 00:39:14,740 +Yeah. + +1383 +00:39:14,780 --> 00:39:16,180 +Thanks for making my call so quickly. + +1384 +00:39:16,380 --> 00:39:16,660 +Yeah. + +1385 +00:39:16,700 --> 00:39:17,400 +I have a question. + +1386 +00:39:17,520 --> 00:39:22,800 +We have a Cox cable and we have a, it comes with McAfee. + +1387 +00:39:22,980 --> 00:39:25,700 +Is that a worthwhile program to have with it or? + +1388 +00:39:25,760 --> 00:39:26,080 +No. + +1389 +00:39:26,080 --> 00:39:26,140 +No? + +1390 +00:39:26,140 --> 00:39:26,440 +No. + +1391 +00:39:26,460 --> 00:39:27,240 +It's a waste of time. + +1392 +00:39:27,360 --> 00:39:27,740 +Oh, okay. + +1393 +00:39:27,880 --> 00:39:29,740 +We've had it several years now. + +1394 +00:39:30,420 --> 00:39:31,220 +It does. + +1395 +00:39:31,260 --> 00:39:32,860 +Everything slows down every once in a while. + +1396 +00:39:33,020 --> 00:39:33,180 +Yes. + +1397 +00:39:33,200 --> 00:39:36,360 +So how do I go about putting something different on? + +1398 +00:39:36,540 --> 00:39:36,720 +All right. + +1399 +00:39:36,760 --> 00:39:41,020 +First, pick what you want to put on there and download a copy of it, but don't install + +1400 +00:39:41,020 --> 00:39:41,200 +it. + +1401 +00:39:41,640 --> 00:39:42,040 +Okay. + +1402 +00:39:42,080 --> 00:39:43,420 +Now, would you recommend a VAS? + +1403 +00:39:43,420 --> 00:39:43,780 +Yes. + +1404 +00:39:43,780 --> 00:39:45,920 +I do recommend a VAS, at least on the free market. + +1405 +00:39:45,980 --> 00:39:46,280 +Yes. + +1406 +00:39:46,460 --> 00:39:47,000 +Mm-hmm. + +1407 +00:39:47,020 --> 00:39:48,360 +Even a paid one is pretty good. + +1408 +00:39:48,480 --> 00:39:48,780 +Yeah. + +1409 +00:39:48,900 --> 00:39:49,700 +I think it's unnecessary. + +1410 +00:39:50,040 --> 00:39:52,680 +I like a VAS for a couple of reasons. + +1411 +00:39:53,000 --> 00:39:55,040 +Decent detection, boot time scan, free. + +1412 +00:39:55,140 --> 00:39:58,200 +And those three things together really make a nice product for me. + +1413 +00:39:58,200 --> 00:39:58,680 +Okay. + +1414 +00:39:58,940 --> 00:40:04,560 +Let's say I go with that, but how do I take my Mac fee off and still stay protected or + +1415 +00:40:04,560 --> 00:40:05,600 +do I unplug the internet? + +1416 +00:40:05,920 --> 00:40:09,880 +Well, that's why you're going to download your new antivirus first but not install it. + +1417 +00:40:09,960 --> 00:40:10,200 +Right. + +1418 +00:40:10,340 --> 00:40:14,820 +And then you can disconnect, uninstall the application, your old one, and then install + +1419 +00:40:14,820 --> 00:40:16,180 +your new one and then plug yourself back in. + +1420 +00:40:16,560 --> 00:40:17,800 +Disconnect the internet. + +1421 +00:40:17,900 --> 00:40:18,260 +Yes. + +1422 +00:40:18,620 --> 00:40:19,020 +Okay. + +1423 +00:40:19,100 --> 00:40:21,640 +Unplug the cable and then I can do the switch. + +1424 +00:40:21,780 --> 00:40:22,180 +Okay. + +1425 +00:40:22,360 --> 00:40:22,520 +Yeah. + +1426 +00:40:22,620 --> 00:40:23,020 +Sure. + +1427 +00:40:23,120 --> 00:40:23,700 +That makes sense. + +1428 +00:40:24,120 --> 00:40:27,220 +Also, now, have you heard of other people? + +1429 +00:40:27,260 --> 00:40:28,180 +My wife says be careful. + +1430 +00:40:28,180 --> 00:40:35,880 +Between 5 and 7 PM, talk seems to be really slow or do you think it's a computer or drill + +1431 +00:40:35,880 --> 00:40:36,120 +slow? + +1432 +00:40:36,260 --> 00:40:39,180 +Sometimes she can't get on or gets kicked off if she is on. + +1433 +00:40:39,280 --> 00:40:40,200 +What's up? + +1434 +00:40:40,420 --> 00:40:42,240 +Well, it kind of depends on a couple of factors. + +1435 +00:40:42,920 --> 00:40:46,780 +It's probably a high traffic time for your node. + +1436 +00:40:47,460 --> 00:40:50,940 +You have a bunch of people in your area that are connected to the same node. + +1437 +00:40:51,120 --> 00:40:51,400 +Yes. + +1438 +00:40:51,560 --> 00:40:54,400 +And by the way, that's true with all the internet providers with the exception of + +1439 +00:40:54,400 --> 00:40:55,220 +like SimplyBets. + +1440 +00:40:55,500 --> 00:40:56,840 +Even if Quest says otherwise. + +1441 +00:40:56,860 --> 00:40:57,060 +Right. + +1442 +00:40:58,180 --> 00:41:01,300 +They have the same type of noting system that all the others have. + +1443 +00:41:01,460 --> 00:41:01,760 +Yeah. + +1444 +00:41:02,860 --> 00:41:07,780 +The difference is that they throttle you down so much that it doesn't really matter how + +1445 +00:41:07,780 --> 00:41:08,820 +many people get on. + +1446 +00:41:08,960 --> 00:41:09,180 +Right. + +1447 +00:41:09,380 --> 00:41:13,420 +Anyway, you could be experiencing a traffic problem with your neighborhood and you can + +1448 +00:41:13,420 --> 00:41:14,600 +call Cox about that and complain. + +1449 +00:41:14,860 --> 00:41:20,280 +A lot of times if you complain loud enough, they will apply oil to your squeaky wheel. + +1450 +00:41:20,420 --> 00:41:24,060 +Or if you have a Wi-Fi network and your Wi-Fi network is open and everybody in your neighborhood + +1451 +00:41:24,060 --> 00:41:26,060 +is jumping on it and once again slowing you down. + +1452 +00:41:26,260 --> 00:41:26,500 +Yeah. + +1453 +00:41:26,520 --> 00:41:27,260 +Actually, we don't. + +1454 +00:41:27,260 --> 00:41:28,640 +We have one on. + +1455 +00:41:28,720 --> 00:41:32,780 +My daughter put on a password for it so nobody can jump on. + +1456 +00:41:33,000 --> 00:41:33,340 +Very good. + +1457 +00:41:33,340 --> 00:41:33,700 +All right. + +1458 +00:41:34,520 --> 00:41:38,340 +So start complaining to Cox and they can take a look at that for you. + +1459 +00:41:38,340 --> 00:41:38,720 +Yeah. + +1460 +00:41:38,720 --> 00:41:43,220 +And if I find ... The computer has gotten slow also. + +1461 +00:41:43,360 --> 00:41:44,700 +It's about two years old, Dale. + +1462 +00:41:45,360 --> 00:41:48,060 +You had that $65 special. + +1463 +00:41:48,160 --> 00:41:49,600 +Does that include a tune-up of it? + +1464 +00:41:49,700 --> 00:41:51,440 +We have a $65 tune-up. + +1465 +00:41:51,520 --> 00:41:51,700 +Yep. + +1466 +00:41:51,720 --> 00:41:52,080 +Okay. + +1467 +00:41:52,200 --> 00:41:55,740 +So I'll run this and if it doesn't help, I'll bring it in. + +1468 +00:41:55,800 --> 00:41:56,180 +Thank you. + +1469 +00:41:56,180 --> 00:41:56,520 +Bye. + +1470 +00:41:56,600 --> 00:41:56,940 +Thank you. + +1471 +00:41:57,020 --> 00:41:57,260 +Yeah. + +1472 +00:41:57,280 --> 00:41:57,380 +Bye. + +1473 +00:41:58,080 --> 00:41:58,480 +All right. + +1474 +00:41:58,520 --> 00:42:00,260 +If you'd like to be part of the show, 751-1041. + +1475 +00:42:01,080 --> 00:42:01,600 +Let's see. + +1476 +00:42:02,140 --> 00:42:04,660 +We're going to do one more because we're coming up on the break here. + +1477 +00:42:04,740 --> 00:42:05,060 +Hey, Steve. + +1478 +00:42:05,120 --> 00:42:05,480 +How you doing? + +1479 +00:42:06,160 --> 00:42:06,700 +Hey, great. + +1480 +00:42:06,720 --> 00:42:07,080 +How are you? + +1481 +00:42:07,160 --> 00:42:07,620 +Not bad. + +1482 +00:42:07,720 --> 00:42:08,220 +How can I help you? + +1483 +00:42:08,540 --> 00:42:14,400 +Hey, I've got a Dell laptop, a C400, old one, P3, and I want to change the BIOS password. + +1484 +00:42:14,660 --> 00:42:19,500 +And I get into the BIOS, I go to page seven and I go to change the master password, primary + +1485 +00:42:19,500 --> 00:42:20,640 +password is what they're calling it. + +1486 +00:42:20,960 --> 00:42:22,820 +And it says, you know, hit your arrow keys. + +1487 +00:42:22,900 --> 00:42:23,340 +I do it. + +1488 +00:42:23,380 --> 00:42:24,240 +I type in the password. + +1489 +00:42:24,640 --> 00:42:24,920 +Beep. + +1490 +00:42:24,920 --> 00:42:24,920 + + +1491 +00:42:25,020 --> 00:42:26,160 +It won't let me do it. + +1492 +00:42:26,180 --> 00:42:27,120 +I hit enter three times. + +1493 +00:42:27,120 --> 00:42:27,800 +It won't let me do it. + +1494 +00:42:27,820 --> 00:42:29,280 +Hit enter twice with nothing in it. + +1495 +00:42:29,500 --> 00:42:30,640 +I pulled the battery. + +1496 +00:42:30,760 --> 00:42:32,320 +I pulled the CMOS battery. + +1497 +00:42:32,500 --> 00:42:32,940 +All right. + +1498 +00:42:33,280 --> 00:42:34,760 +Hang tight for a second. + +1499 +00:42:34,800 --> 00:42:35,620 +We're up against the break. + +1500 +00:42:35,720 --> 00:42:36,320 +So stick around. + +1501 +00:42:36,380 --> 00:42:37,640 +We'll get to you right after the break. + +1502 +00:42:37,740 --> 00:42:38,720 +This is the Computer Guru Show. + +1503 +00:42:38,840 --> 00:42:39,480 +We'll be right back. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.txt new file mode 100644 index 0000000..5320b1b --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2011-06-04-hr1/transcript.txt @@ -0,0 +1,1503 @@ +From my heart and from my hand, why don't people understand my intentions? +Computer running slow? +Avoiding. +Caught a virus? +Yes! +When? +When? +Does your computer seem to have a life of its own? +Malfunction. +Need input. +The computer guru is here. +My God, you're here! +Call in now. +751-1041. +That's 751-1041. +Now, it's Mike Swanson. +Your computer guru. +On 104.1 The Truth. +Here you go. +Two sides to News Talk FM. +Hello and welcome to the Computer Guru Show. +My name's Mike. +Here to deal with your technology needs and treat you like a real person in the process. +Give us a call. +751-1041 if you'd like to be part of the show. +Once again, 751-1041. +See what we can do to help you out with whatever technology issues are plaguing you today. +You were today. +It's not ailing or plaguing. +Plaguing. +Plaguing. +Today it's the plague. +You're going to have the plague today. +That's nice. +Well, you know, I heard a plague hit Mac pretty hard, so. +Well, we're going to get to that. +You want to talk about that? +All right. +Do it. +So, Mac is getting their little plague stuff, and that's for a little bit later in the show today. +All right. +But, I think we're going to start out with the UK hacking all kinds of websites. +The UK? +It means all the UKs? +Like, hacking websites? +Well, you know, MI6. +MI6? +MI6 is hacking websites now. +So, you got... +You got... +MI6, really? +Yeah. +Wow. +So, apparently the CIA was going to do it. +So, Tom Cruise is hacking websites? +Oh, no. +That's... +Oh, my bad. +I think I missed an impossible. +Sorry. +How many times do we have to tell you not to try? +Why is she talking? +Because she's learning what I tell you every week to leave the comedy to the professionals. +I see. +So, MI6 decided to go out and hack an Al-Qaeda website. +All right. +An Al-Qaeda website. +Right. +Now, we were going to do it. +Me and you? +No. +We, as in the US, was going to do it. +But, the CIA said, +we shouldn't do that because it's a valuable source of information. +This web magazine that they have that teaches you how to build dangerous things. +It's valuable. +Oh, it's valuable for chatter, I assume. +Well, yeah. +To pick up, you know, intelligence and such. +Well, MI6 apparently disagreed. +And they thought that the readers of this magazine would be much happier making cupcakes than building... +Making cupcakes. +Dangerous, dangerous items. +Right. +So, they replaced... +They replaced all of the bad stuff on there with an encrypted version of Ellen DeGeneres' +best cupcakes in America. +It's awesome. +I didn't even know Ellen DeGeneres cooked. +So, that's awesome. +Well, you know, somebody's got to replace Oprah. +So, she's got books about everything now. +Wow. +Wow. +That is funny. +So, am I... +I'm just waiting... +At least I have a good sense of humor. +I'm just waiting for Ellen to put on 200 pounds and give away cars. +No. +Oh, that was just very wrong. +It's very, very wrong. +And I apologize. +That's funny, man. +It's just terrible. +Let's talk to Frank. +Hey, Frank. +How you doing? +Hi. +Hi. +How can I help you? +Well, I have a virus on my computer. +Okay. +Essentially, I restarted my computer in safe mode. +And I ran all of my Spybot Search and Destroy malware bytes. +And I had a lot of viruses and Trojans and other malware. +But when I restarted my computer... +It all came back. +It still was kind of not functioning correctly. +One of the things that it did was it made all of my files hidden. +So, I had to go into a folder and unhide them. +And I had to go to the master folder to see them. +But they're still kind of that... +Grayed out? +Yeah, yeah. +Faded out. +Right. +That's because you had to go into the master folder that those folders are in and right-click +and go to the properties and say, uncheck the box that says hidden. +Yeah, I did that. +Okay. +And then they will pop back up. +And they won't be grayed out anymore. +But the bigger issue that you have is you restarted and your virus is still technically there. +And you had some residual stuff in there. +You probably didn't turn off system restore, first of all. +Any time you do a virus, it's still there. + +So, if you want to do a virus removal, you always want to make sure you turn off system +restore. +Otherwise, Windows is going to try to put it right back. +All right. +So, turn off system restore? +Yeah. +You should disable system restore. +Not only is it worthless, it can also reinfect your machine after cleanup. +Right. +So, you want to make sure you turn that off. +Now, what antivirus are you using? +Because I thought I heard you list two of them. +I'm using Spybot Search and Destroy, Malwarebytes, Vypr, and Advir. +Wow. +Okay. +So, all right. +Have you heard me give the explanation of why you can't have two antiviruses on a machine? +No, I don't think I have. +All right. +So, here's the way it works. +All right. +You got Vypr on there and Advira, right? +Yeah. +And those are both real antiviruses. +The other two are just sort of anti-malware, so you can have as many of those as you like. +However, you cannot have two antiviruses running at the same time. +And I'll tell you why. +There's a half-life of the antivirus running on the machine. + + + +There's a very special place in Windows that antivirus has to reside if it's able to oversee +everything that the machine is doing. +Okay. +And the antivirus itself is trained to kill anything else that's in that spot. +So, you have two antiviruses that are trying to vie for the same area within Windows. +So, they spend all their time trying to kill each other rather than trying to keep you +safe. +Okay. +So, you need to make sure that you only have one antivirus on the machine. +In your particular case, you know, we recommend Avast on the show. +And the reason why is that you can do a boot time scan. +A lot of the reason that a virus scan won't remove an infection is because Windows deems +that file as in use and locks it and prevents the antivirus from deleting it or modifying +it. +Yeah. +So, take your other antiviruses off, put Avast on there, do a boot time scan. +And that's going to help out a lot towards getting you clean. +Make sure System Restore is turned off, and that'll probably get you at least cleaned +up to the point where you can move on to other steps. +Okay. +How do I put Avast on there? +Because it's basically not really letting me... +Do you have another machine? +I do, yeah. +Okay. +So, go download Avast, put it on a memory stick or something, and then move it over. +Put it on a CD if you want to be extra safe. +Okay. +Okay? +Okay. +Now, if that doesn't work for you, all right, or if you're unable to get any resolution +that way... +Do another week? +Yeah. +We'll do one more week. +I think another week. +We'll do one more week. +We'll do it for the summer. +Wow, the summer? +Okay, you need to reel it back in a little bit. +All right, we'll do it for the summer. +We're doing $65 virus removals. +All right? +So, normally, the $95 ones, we're taking down to $65. +So, we can remove it for you if it comes down to it. +Okay. +All right? +You have to mention the special, though, if you want to bring it in and get it at that +price. +Yeah, because otherwise, it's full price. +Summer special? +Yeah. +Yeah. +Antivirus special. +All right? +All right. +So, hopefully, that works for you. +All right, I'll do that now and see how it works out. +I appreciate it. +All right, I appreciate the call. +Thank you. +If you'd like to be part of the show, 751-1041. +We'll see what we can do to help you out with your issues, whatever happens to be plaguing +you. +Technology issues. +Because I don't want you people calling up here like I'm Dr. Drew or something, because +I am going to help you. +No, please do that. +I want to see how Randall responds to people saying that they're depressed. +No, Dr. Drew, isn't he like the love doctor? +Yeah, Dr. Drew is a love life. +Yeah, yeah. +The depressed guy is, what's his name? +I don't know. +He's on Oprah all the time. +Is that Dr. Phil? +Yeah, Dr. Phil. +No, no, no. +The guy that you call when you're depressed on the radio. +Oh, I've heard his show in the middle of the night. +It's on like really late at night, Sunday nights. +It's not very good. +Oh, God. +But the moral of the story is, call him when you're technology-prone. +It's not on this station, so I can say that. +I'm telling you, it's not like the Computer Guru show. +Because our show is awesome. +If you have computer depression, we will be happy to take care of you. +Computer depression. +Your computer is like, aww. +That's right. +We'll be the shrink for your computer. +Your computer whisperer, is that what you say? +All right, so this kid wanted an iPad. +All right. +I got another story to go with this one. +I'm changing the subject here. +All right, go ahead. +Continue. +There's this kid who really wanted an iPad. +All right. +A lot. +Okay. +All right. +But he didn't have enough money. +By the way, he lives in China. +He didn't have enough money for the iPad. +Okay. +So. +So he went to work for Foxconn and sold one? +No. +Oh. +He sold one of his kidneys. +All right. +Sold it. +Didn't donate it. +In China? +In China. +Okay. +All right. +So you got about $4,300 for the iPad. +For a U.S. equivalent. +A kidney. +For a kidney. +Right. +A single kidney. +Okay. +Well, I can't sell both of them. +All right. +He's kind of regretting the move now. +He does have an iPad and some extra spending cash. +Some walking around cash. +Okay. +However, it turns out that the place that he went to go get his kidney removed at wasn't +equipped to deal with that type of surgery. +Wait. +So you're actually telling me that such a place exists where you go and sell a human +body part? +There's a market for body parts in China. +It wasn't a good enough place? +Apparently, it was on like China's version of Craigslist. +What do you do? +Wake up in a tub of ice? +No, no, no, no. +They actually perform the procedure. +Is this like, is this the guy that went to China to have the kidney removed? +No, no, no. +He's from China. +Oh, okay. +His mom's really mad now because he's dying. +Really? +I mean, he's like, wow. +His health is deteriorating? +His health is deteriorating at a rapid clip. +Wow. +All right. +So it turns out that they didn't have the right equipment to remove. +Can't be done with this equipment. +That's right. +So it turns out that X-Acto knives and duct tape, not the way to go when getting a kidney +removed. +Just totally not cool. +Oh, wow. +I mean, you know, I've never been to China, but I've seen lots of documentaries about +China, and I can only imagine how bad it would be. +I mean, how, oh, I don't know. + +How sterile the conditions would have to be. +I'm just saying the kid's got some impulse issues. +Well, he, all right. +Yeah. +Wait, so he didn't actually need a kidney? +He just went and got one? +Well, no, he didn't. +No, no, he got one removed. +I mean, I think he's got the story. +He got a kidney removed. +He sold one. +Yes. +Oh, he sold it. +Right, right. +Try to keep up here. +Keep answering phone calls. +You know, I have phone calls to answer. +All right, so he had two kidneys. +Right. +But he had no iPad. +Right. +He figured, I can get an iPad and have one kidney. +So he sold his kidney for an iPad, and now he's dying. +Yes. +Right. +Got it. +Apple kills another person. +Wow. +Wow. +Well, on that same token, though, I have a story here about somebody who also wanted +an Apple product. +He drove his car through an Apple window at like 5 o'clock in the morning, but he came +out of his car dressed as a ninja. +I'm not kidding. +There's pictures of it. +It's awesome. +He's dressed as a ninja, but by the time he got in there, I guess the alarms and everything +was so crazy, he got freaked out and took off. +He didn't even steal one thing. +It's crazy, because this picture here, there's a car. + + + +He's driving through the window, and a ninja in the background was pulling a sword out. +It's hilarious. +I'll post it on the website. +All he really wanted was applesauce. +That's what I'm saying. +You can't go running over apples. +Oh, man. +Hilarious. +Some people, ninjas. +All right. +Let's go ahead and take a break. +When we get back from the break, we've got some phone calls. +We'll see what we can do to help you out with whatever technology issues happen to be plaguing +you this week. +This is the Computer Guru Show on 104.9 FM. + + + + + + +I'm Mike Pearson. +You're listening to the Computer Guru Show on the Truth, Tucson's News Talk FM. +Geez, man. +What do you want to do tonight? +The same thing we do every night, Pinky. +Try to take over the world. +The Pinky and the Brains. +It's Pinky and the Brains. +Welcome back to the Computer Guru Show. +My name is Mike, here to deal with your technology needs and treat you like a real person in the +process. +Got Randall over here doing his thing. +OK. +OK. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Call 751-1041 if you want to be a part of the show, just like Brian. +Hey, little Brian. +How you doing? +Uh-oh. +I think I shocked Brian into not answering. +Anybody? +Anyone? +Or maybe the name's not right. +Bueller? +Bueller? +Anyone there on line one? +Okay, I guess not. +Okay, so we're going to put him back on hold. +All right. +Maybe he'll come back later. +He apparently thought it was going to take longer for me to answer. +You know? +Did you tell him that I was going to answer his call? +Yeah. +Yeah? +Maybe he's just calling up to sit on hold. +Maybe. +All right, so I'm going to do something real fast. +Before our caller the last two weeks calls in and starts asking about Sandy Bridge. +Okay. +So, the last two weeks, the caller asked about Sandy Bridge versus the AMD version of Sandy Bridge. +And you failed. +No. +No, this week I've done it. +I've done it. +But the AMD version of it is called Fusion. +And I'd say if you're looking apples to apples or PC to PC, maybe. +You fail. +Yeah. +Anyways, if you're comparing the same ones, then yes, the AMD one is a better. +choice in theory. +However, you know, the Fusion is like a comparison for an i3 of the Sandy Bridge. +So, and I'm not a big fan of the Sandy Bridge to begin with. +So, if you compare the Fusion compared to the i3 or even the i5 Intel, it is a little bit better. +However, there is no real high-ends available. +You still fail. +There's really no high-end Fusions available. +And by the time they are available, +the next version of the Intel's is going to be out, which is going to be the Ivory Bridge. +So, once again, AMD is just one step behind Intel. +They just cannot catch up. +I mean, they're trying to, but they're just not there yet. +And like I said in previous calls, you know, previous weeks, I'm not a big fan of the Sandy Bridge. +It's like those other computer repair places in town. +What? +The i Intel. +Oh. +Well, the long story short is, you know, I think Sandy Bridge is going to work great for, +for, like, the miniature PCs, for the, you know, the laptops, for these little small form factor PCs. +When it comes to gaming and the gaming world and high-end graphics, +I don't see Sandy Bridge taking over anytime soon. +It may be in the next two, three years maybe, but not in the next year by no means. +So, myself, if I was looking at buying a new machine and I didn't care about the size of the machine, +I would not do Sandy Bridge, you know. +I would go ahead and get an actual traditional GPU and CPU, personally. +Now, what are your thoughts on it, Mike? +Do you have any thoughts on it? +It's a theme of this particular segment. +You know, I don't like you. +You're really upsetting me. +No. +No, seriously, what do you think? +I mean, about the CPU, GPU versus Sandy Bridge. +I mean, if you're concerned about the graphics portion of it. +Right. +Right. +If you really want high-end graphics. +Right. +Well, here's my thing, though, is that I'm torn between two different things. +One, you get better performance out of a standalone graphics card and a regular GPU. +That's correct. +Or CPU. +However, the way the Sandy Bridge is connected to the CPU and GPU. +Because they're one and the same, in essence. +Right. +You're going to get better performance that way. +Here's what I'm thinking, though, is that if you're looking to build that machine. +Right. +Right. +Moving forward. +Right. +You might as well get the Sandy Bridge. +Right. +So that you are in the right processor slot, right? +Board type to be moving forward. +Right. +Right. +Because if you buy, let's just say, a regular, like, iCore. +Mm-hmm. +Right. +You're not going to be able to go anywhere with that in, let's say, a year and a half. +Right. +Right. +Because those boards are going to be gone. +Right. + +All right. +All right. +So I don't want to see somebody go out and buy, like, an i7 right now. +Mm-hmm. +And then buy a really nice video card. +Right. +And then a year and a half from now, they won't be able to upgrade the processor. +Right. +Without replacing it. +You think the pin sets are going to be different or anything? +The pin set is different. +Yeah. +Between the 55 and the 57. +That's assuming Sandy Bridge takes over. +I think it will. +You think so? +Yeah. +Because they're going to move. +Basically, they're going to move the i7 into the Sandy Bridge. +Right. +So I think that it's going to move in that direction. +There's no reason for them. +They're going to have two separate product lines like that. +The current Sandy Bridge is, I think, just the beta test for moving the Sandy Bridge +graphics processor, the Ivy Bridge, into the i7. +Okay. +All right. +So I don't think that there's any real benefit to splitting off those two product lines. +Oh, okay. +So if you end up buying an i7 now. +Right. +Right. +You can get the Sandy Bridge, the i7 equivalent of the Sandy Bridge now. +Right. +Which is a little bit slower. +Right. +Right. +Right. +Right. +Right. +Right. + + + + + + + + + + + + + + +Right. + + + + + + + + + +That'll at least allow you to move forward upgrade-wise. +All right. +So in a year, let's say you decide that, well, I want to get a faster processor. +All right. +Or I want DDR4. +Right. +All right. +Then, yeah, you're going to want to move. +No, I see what you're saying. +No, I absolutely see what you're saying. +It's just, to me, I don't see, you know, like you said, it's beta, you know, in essence. +You know, and they've already had one recall on it. +I'm not saying that it's a bad setup. +I just, I don't know. +I'm just not quite convinced yet. +You know, and here's maybe my problem with this. +Right. +And why my, this whole segment for me has just been a sort of, you know, an epic fail for you. +Is that, is that I don't really care. +And here's the reason why. +Is that, you know, the processor debate for me is really boring. +Mm-hmm. +Right. +I find the processor debate to be like, you know, what if. +Right. +Right. +It's, it's like when you go out and you buy the car. +Right. +You know, you get an option. +Right. +Do you want it with this many cylinders or that many liters or whatever? +Right. +I just want something that works. +I don't really care. +Well, I'm going to get into the nitty gritty of this thing. +I'm going to E3 next week. +There's going to be a lot of gamers down there. +A lot of, you know, media coverage down there. +You know, fellow gamers. +I'm going to talk to them. +I'm going to try to get their opinions on this kind of stuff. +I'm going to actually go, I have interviews with NVIDIA. +I have interviews with some big wigs down there. +So I'm going to find out, get down to the nitty gritty of this whole thing and see if I can get any more good details out of it. +Well, and here's the reason I don't really care. +Let me get back to that. +Okay, go ahead. +I'm sorry. +I want to make sure that people understand why I don't care. +Okay. +All right, five years ago, and you're looking at processors, you could see 100% increase from going from one processor to another. +Right. +Right. +And now you're what? +You're going to see 5%, right? +Right. +You're going to see some really small change, right? +The performance benefit is going to be so small, it doesn't matter. +Right. +It's a lot like when people say, well, which brand of computer should I get? +I say, how much money are you going to spend? +They say, $500. +$500. +It doesn't matter what you get. +Right. +They're all going to be the same at that price point. +And the same thing is true in the processors. +Now, if you're looking to spend $2,000 on a processor, right, then yes, there's a huge difference between different processors. +So how many of us want to spend $2,000 on a processor? +Next to nobody. +Exactly. +And that's why I find the whole processor debate to be so boring. +Right, right. +And I don't mean to be overly apathetic about it, but there's not enough real consequence to spend time worrying about it. +No, I agree. +I agree. +I see what you're saying. +Yeah, absolutely. +And even a year ago, you were dealing with the AMD Intel stuff. +Right. +Right. +And then AMD was having massive overheating problems, and they were considerably slower than the Intels. +Mm-hmm. +All right. +But this next generation of AMDs is going to at least bring them so that they're current. +Right. +So that they are at least sort of nearby. +Right. +As far as the... +They're catching up. +As far as the speed is concerned, they are going to be a bit cheaper. +So it's really going to come down to, do you want a budget machine, or do you want to spend a little bit more for the processor? +It's a little bit faster. +Mm-hmm. +So for me, spending all the time on that, it's kind of like, meh, whatever. +Whatever's... +We'll stop talking about it. +All right. +Let's talk to Frank. +Hey, Frank, how you doing? +Yeah, I'm good. +How can I help you? +Well, I was the last guy that just talked to you. +But basically, I tried turning my computer on, and it won't even actually go to Windows. +It takes me... +It automatically opens up the option to go into, like, safe mode. +You know, left working mode, or just normal Windows mode. +Okay. +And whichever one I pick, it just reboots itself. +Okay, so it's getting a blue screen. +Yeah, I'm getting a blue screen that pops up really quick, and then it goes away, and then I go right back. +How old is the machine? +About eight years old, nine. +All right. +I bet you have bad hard drives. +Well, it could be. +It could be the infection's correct. +This is the guy who called it the virus infection. +Yeah. +And infections kill hard drives, like, all day long. +Either way, though, this is going to be beyond your repair, I'm thinking. +Either way, you're going to need to bring it down to a shop. +Bring it down to us. +We can do a diagnostic and find out exactly what's going on for you. +Okay. +All right. +We're looking at 2700 North Campbell, just south of Glynn. +Okay. +Thanks for the call, Frank. +Appreciate it. +We've got to do some news. +If you'd like to be part of the show, 751-1041. +We'd love to help you out with whatever technology issues are plaguing you today. +This is the Computer Guru Show. +We'll be right back after the news. +We'll be right back. +We'll be right back. +Oh, please stop. +Yeah, I watched all five seasons of The Wire on HBO Go on the iPad. +Really? +Yeah. +I've never seen one episode of The Wire. +It turns out it's a really great show. +It took you five seasons to figure that out? +Well, it's over now. +It was all five seasons. +Oh, okay. +They ended the series. +Yeah. +And it turns out that it will dramatically affect the way that you speak to people around you. +What is the show about? +I've never even heard of it. +It's about a detective in Boston. +He's working on drug-related cases and stuff. +So it's like CSI Miami or something? +It's like one of those CSI shows. +Except for he doesn't pull his glasses off all the time and music screams in the back. +Yeah. +Yeah. +Well, let's talk to Clayton. +If you'd like to be part of the show, 751-1041. +Hello, Clayton. +How are you? +Hey, Mike. +How are you doing today? +Getting there, man. +Just had a quick question for you. +I just finished doing a gaming rig build yesterday. +Okay. +And I bought an AMD Phenom II. +1100T processor. +Okay. +And I'm just wondering, do I need to use the core unlocker feature on my motherboard +or are all six cores already unlocked with this processor? +What version of operating system is it? +XP7 Professional 64-bit. +Hold on. +You just listed two of them. +Which one is it? +I'm sorry. +Windows 7 64. +You're fine. +All right. +As long as your processors actually show up in the device manager. +Yeah, it did. +It said it was a six core. +You're fine. +Then you're fine. +Perfect. +Perfect. +You'll have to worry about that. +I think you need to know the answer. +I was just kind of worried about it. +Well, it's six cores. +You got to make sure they're all going. +Absolutely. +Yeah, exactly. +Why get it if I can't use them? +Exactly. +That's right. +So what made you choose the AMD just because we were having this processor debate earlier? +It's more the price point, really. +The six core intels right now, I mean, I really like the Sandy Bridge stuff, but it's just +I can get a 3.3 gigahertz six core for 200 bucks. +Right. +Yeah. +The intels are much more expensive. +Yeah, but the boards are more expensive on the AMD side. +This is true. +Yeah, but I mean, it's not that much more expensive. +It's not the difference between the AMD processor and the intel as compared to the boards. +And being a college student, I can't exactly be going out and getting top of the line all +the time. +Right. +No bleeding edge for you? +Yeah. +Okay. +All right. +Well, great. +I'm glad we answered your question. +Yeah, I appreciate it. +Have a nice day. +That's a perfect example of what you were just saying, though. +You know, why this whole Sandy Bridge fusion thing was not really going to matter. +Because it is really, the bottom line, it's about price point. +Well, you know what they say. +It's all about money. +Right. +Everything that you do in America is about money. +Yeah. +All right. +So it's even those guys that are attacking the apples, which we're still going to get +to. +We're going to grab one more call here. +Let's talk to Eric. +Hey, Eric. +How you doing? +Hey, doing good. +How you doing, man? +Good. +Hey, you said about the wire? +Yeah. +It's Baltimore. +Oh, it's Baltimore. +Yeah. +Okay. +I'm sorry. +Yeah. +Yeah. +Greatest show ever, by the way. +Really? +Why? +Very good. +I liked it. +I have to admit. +Yeah. +I'll check it out. +Homicide. +Yeah. +Homicide detective. +Yeah. +Well, Homicide Life on the Street, that series. +Hey, guys. +Excellent. +Yeah. +I'll have to check it out. +I haven't looked at it at all, but I'll have to check it out. +Thanks for the call, Eric. +Hey, no problem. +Have a good day. +Right now, you know what episodes, seasons I'm watching right now? +What? +Buffy. +You're watching Buffy the Vampire Slayer? +I've never seen it in the original. +My wife's like, oh, it's such a good show. +You've got to watch it. +I'm like, all right. +All right. +I'll give it a shot. +I know. +How can I be called a nerd? +I've never seen an episode of Buffy before. +I know, but I'm watching him now. +I've never seen one either. +Really? +I just refuse to. +Oh, all the freaking nerds all say, Buffy's so great. +So I'm watching him now. +Yeah, I know, right? +Terrible. +I am in stunned silence over it. +Can't hardly believe it. +I don't know. +If you're going to watch something that's all about vampires and stuff, my personal +choice is Supernatural. +You know, next thing I hear, you're going to be like replaying. +Like New Moon or whatever. +Oh, yeah. +My wife loves the Twilight stuff, man. +Let me tell you. +God. +I've seen each one of those movies once. +That's it. +All right. +So the government, antitrust regulators, are a little nervous about the Nortel patents +that are up for auction here pretty soon. +Okay. +Do you know anything about this? +I know nothing about it. +Do you know who Nortel is? +Who is Nortel? +Nortel was a gigantic phone provider. +Okay. +Right? +They made... +They made huge phone networks and... +Like Qualcomm? +Kind of. +Okay. +Right? +But they made like... +Like if you go down to like, say, Star Pass or whatever, the resort, all their phones +down there are Nortel. +Oh, okay. +They built gigantic PBXs. +Right. +And did a bunch of other stuff, too. +Well, they're defunct now. +They're out of business. +And they're auctioning off a... +Their old patents? +All their patents. +Okay. +6,000 patents. +Wow. +All right? +Guess who's bidding on it? +All right? +You got three people that are bidding on it. +Google. +You got Google? +Really? +Oh, wow. +Nice guess. +Wow. +You got Apple? +And Microsoft. +No, Microsoft's not... +Apparently not interested. +Facebook. +Yeah, wouldn't that be funny? +No. +Here's the thing. +Research in Motion is the third, by the way. +Really? +Okay. +All right. +So the people who make the BlackBerrys. +BlackBerrys, right. +They were initially upset, saying, well, if Google gets these, all right, there could +be a problem. +Right. +Right? +One of the patents that Nortel owns is the LTE technology. +Oh, really? +Yes. +They own the LTE. +Wow. +So they just pulled that away from Apple. +Well, if Apple gets it, it gives them an uncompetitive or an unfair advantage in the wireless networks. +Well, if any one of them get it, if you think about it. +Well, here's the deal, is that Microsoft's not interested. +Right. +Because they've already got... +If you look at the number of patents that each of these companies have, the true elephant +in the room is Microsoft. +Is Microsoft, right. +Yeah. +They got like... +They have like 16,000 patents. +Right. +Right. +But Google's by catching up. +And... +No, Google has 1,000. +Is that all? +That's it. +Of all the companies that they buy? +Right. +They have 1,000 patents. +Wow. +Now, here's the deal, is that Microsoft, in addition to the 16,000 that they own, has +licensing rights to another 20,000. +Ah. +Most of which, even the LTE one, Microsoft has a licensing right to. +Right. +Right. +So, no matter who buys the bundle of... +Microsoft. +Microsoft. +Microsoft is making money. +So, Microsoft doesn't care. +Right. +But the reason that they're worried about it is that even though it would potentially +give Google an unfair advantage... +Right. +Google has never seriously gone after anyone for patent infringement, ever. +Well, I think they would, though, if it was Apple. +Now, Apple... +Right. +On the other hand... +Goes after everybody. +Right. +They are on the ball. +Now, they're concerned about Microsoft, too, because Microsoft doesn't play around when +it comes to the patents. +They do own. +Right. +Right. +And they will... +They will throw down. +Yes, they will. +They have a gigantic pool of lawyers. +I don't think RIM has a chance at all to get this. +I mean, if you get the three big... +If you get the three ones that you're talking about, RIM... +Google put down the opening bid for $900 million. +$900 million for 6,000 patents? +Right. +Wow. +All right. +So, the opening bid at $900 million. +Uh-huh. +Now, here's my problem with the whole thing. +Right? +As a person who has invented things in the past... +Right. +Right. +I have a couple of inventions, and I've never gone around the whole patent thing. +Right. +But I think secondary markets for patents are baloney. +Right? +They're bogus. +Okay. +And here's why I think so. +Is that the innovator, the person who actually came up with the idea, should have the right +to patent it for a limited amount of time. +Right? +So, you have this patent that's out there for, let's say, 10 years. +Okay. +Right? +And that's shorter than the current patent anyway, which is you get a 20-year patent. +Right. +Right. +And then you can renew. +Right? +I think that they should abolish the renewal process. +I think that it needs to be a massive patent overhaul as far as the way that U.S. deals +with patents. +So, you think after 20 years, they shouldn't be allowed to renew the patent? +No. +So, it should be just open claim. +Yeah. +The thing is... +Public domain. +What the patent does is it protects other people from profiting from your idea for a +certain amount of time. +And you think there should only be a 20-year limit on that? +Yeah. +I think so. +Because I think that after 20 years, right, or 10 years even, right, that it's your product, +your product is sort of common knowledge at that point. +Well, you know, I can see what you're saying, especially in the technology world. +After 20 years, it's going to avoid it anyways. +But you got to think about when patents first came out, and even today, though. +I mean, for example, Velcro. +Right. +The guy who made Velcro, patent that thing, what, 40 years, 50 years ago at least? +He still owns a patent, or at least his family still does. +Right. +And so, he makes money off everything. +I think he should have the right to that, even after the 20 years is up. +Well, I mean, if you're using the same technology, sure. +Velcro's not going to change. +I mean, it is what it is. +The thing is, though, is I think it stifles, you know, creativity. +Okay. +Right? +I think that if after 10 years, you let everybody start making it, then somebody will find a +way to do it better. +Okay. +All right? +Now, and maybe it's just me. +I'm not terribly greedy about the cash part of it. +Right. +Right. +And don't get me wrong. +I know people who, like, are invented, like, the cellular technology, right? +And these guys are rolling in dough. +Yeah. +Right? +And that's great for them. +It really is. +Right. +Right. +Right. +Right. + + + + + + + + + + +And it can allow people to expand upon ideas. +Right? +You can find a new way to do things, and you can't do that, at least, the way it works +right now is that I can go ahead and come up with an alternative to Velcro. +Right. +Right? +As long as I can produce it myself. +Right? +And which I'm not doing. +Well, see, a patent doesn't prevent you from improving a current product, though. +See, somebody can own a patent to something, and then you can go ahead and try to make +an improvement to said patent. +Right. +And then all you have to do is just give a licensing. +A licensing fee to the person who made the original product. +Right. +Well, here's my issue with this. +Okay. +Is that I think that the backyard inventors, you know, people like me. +Right. +We have no hope of making improvements to things that really have a huge or significant +impact on society. +Okay. +And if you allow the larger companies, the people with research and development, you +know, budgets, to go out and say, okay, it's been 10 years, let's try to build it better. +Right. +Right. +And you have more players in the game with more money in the game. + + + + + + + + + + + + + + + + +Then you're going to get a better product out of it. +Okay. +All right. +I can see that. +Yeah. +So I think the secondary market for patents is ridiculous. +And I know it's not terribly computer related. +Right. +Right. +But we're going to get to that. +You know, because Apple owns a whole bunch of patents. +Right. +Right. +And they're patenting stuff all the time, like crazy. +Right. +So they've got, I forget how many patents they've got right now, a few thousand. +Right. +Right. +Maybe 7,000, 8,000 patents or something like that. +Mm-hmm. +Yeah. +And if they manage to get a hold of this Nortel patent stuff, right, then what you're really +looking at is that they're going to become a dominant player as far as their ability +to go out and sue everybody for using their technology. +More so than they already do. +Right. +Right. +And my other issue with the secondary patents is that if you are a company that owns a bunch +of patents and you didn't leverage that properly and you end up going out of business, it's +fair game. +Right. +Right. +And you're not going to be able to say, okay, well, I have these patents here, these things +that I created, and just because I don't know how to use them, I can let somebody else buy +them up. +Well, you also get these people who sit there and they come up with an idea, they patent +it and they sit on it. +They don't even try to make it. +They don't even put it out to the public. +Yeah. +And that happens all the time. +And then somebody does come up with that said product, and that guy, he just sits there +and waits and waits and waits. +For example, I'm not saying this is what Cisco did, but Cisco came up with, in the 80s, I +think it was late 80s, early 90s, they came up with an item and they called it the iPhone. +Right. +Okay? +And they didn't go anywhere. +And then Apple came up with the iPhone and Cisco just waited for a few years and then +they threw the heck out of Apple before they named iPhone. +Well, they got some money out of it. +They sure did. +We got to take a break. +When we get back from the break, we'll see what we can do to help you out with whatever +technology issues you may be having. +751-1041 if you'd like to be part of the show. +This is the Computer Guru Show on 104.1 The Truth, Tucson's News Talk FM. +Welcome back to the Computer Guru Show. +My name's Mike, here to deal with your technology needs and treat you like a real person in +the process. +That's what we're going to do. +We're going to be nice to you. +Are we? +Yeah. +That's no fun. +All right, so you had something earlier that you were talking about. +Oh, yeah. +This has nothing to do with technology whatsoever, but I saw this and I just, oh, I have to talk +about this real briefly. +Because you were incensed. +Yes. +Enraged. +Okay, so apparently there's been a law in the books since 2008 saying you are not allowed +in Washington, D.C., saying you are not allowed to dance at a memorial, you know, like a Jefferson +Memorial, you know, Lincoln Memorial. +You're not allowed to dance. +So apparently there's a precedence for this. +Somebody call up Kevin Bacon. +Yeah. +Well, actually, that's part of this. +But anyways. +So. +So there's a group of protesters that heard about this, you know, and they said, well, +you know what? +On Memorial Day, we're going to go to the Jefferson Memorial with our iPods, put our +iPod plugs in our ears and listen to the music and just shuffle, do a light dance. +Right. +So that's exactly what they did. +And they brought like four cameras with them. +You know, they shot from every angle. +If you go to YouTube, you can pull it up. +It's all over the YouTube right now. +But these guys are seriously just doing a little shuffle. +They're not disturbing anybody, doing nothing wrong, but just doing a little shuffle. +And these cops, I'm not kidding, five, six, seven cops came out of nowhere and just took +them to the ground, pushing the cameraman's camera man around, telling the cameraman that +they're going to arrest him if they keep on recording their actions. +I mean, obviously, the cops know that they have something to hide because they're telling +the cameraman to turn off the cameras for recording their actions. +I mean, this is just absolutely ridiculous. +I mean, there is no way that this is going to hold up in court. +I mean, the irony behind this is it's I was at the Jefferson Memorial. +One of the guys. +One of our finding. +Founding fathers who said who loves the the freedom to express oneself, you know, and +these people can't do a light shuffle. +I mean, they're not disturbing it. +I heard it was a flash mob. +I get it. +You know, I don't know anybody out there. +There's a flash mob. +I will tell you what, if you've ever seen an episode of if you think you can dance. +All right. +Some people deserve to be tackled to the ground and then shoved around. +This was not that. +Not that. +I mean, come on. +This is just out of hand. +Interpretive dance. +What is that? +Really? +Well, I don't get it. +I don't get the whole interpretive dancing, right? +Maybe I'm not interpreting it, but, you know, just like, OK, you look like you got stung +by a bee in your lower back. +Well, here's the cool thing. +Here's the cool thing. +They tried to prove something by shuffling around. +I don't understand why they had one of the music in their ears that they were shuffling. +They wanted to bring this to light that this is a ridiculous law. +And exactly. +They did exactly what it did. +And now they're trying to schedule another protest. +And this time they actually contacted Kevin Bacon, trying to get Kevin Bacon to come down +there. +Dance with him. +It ain't gonna happen. +I don't think he ever would. +But he's too busy being an X-Men. +Oh, all right. +Let's take some calls here. +Let's talk to Adam. +Hey, Adam, how you doing? +Hey, what's going on, guys? +What's going on, man? +I got a question, but first I'd like to comment. +I think they should only be allowed to dance if they could tell you who Jefferson was. +And they can give you at least one quote from Jefferson. +All right. +All right. +I can live with that. +But the great thing about this country is you don't have to do that. +That's the great thing about this country. +You could just say, you know, Jefferson didn't know how to spell. +That would work. +Because I went. +I went to, you know, to Virginia and checked out the Jefferson estate. +Right. +Right. +That dude was pretty cool. +All right. +Go ahead. +Yeah. +I mean, awesome. +So what's going on, Adam? +I got a problem every time I try to get onto an email or some website. +It pops up every time. +Security warning. +Do you want to view only the web page content that was delivered securely? +Okay. +And I could say more info, yes or no. +It kind of sounds like you're using Internet Explorer, right? +Yes. +All right. +And what version of Windows do you have? +What do I have? +I have. +I have a desktop. +No, no, no. +I have seven. +Seven 64-bit. +Okay. +So it sounds to me like you got one of two things going on here. +Either your browser settings are all kind of jacked up and you can reset the browser +fairly easily by going to Internet Options. +Okay. +And there's a button that just says Reset Browser. +And it puts everything back to default. +It's on the advanced tab. +It's on the advanced tab. +Okay. +Yeah. +And then the other thing it could be is you could have some type of an infection going +on. +That's. +Well, I guess I should do a boot time scan. +I'm running a VAS. +All right. +Let's start with resetting the browser and see if it goes away. +Okay. +All right. +And if it doesn't, then yeah, you really should run that boot time scan. +Cool. +Okay. +Thanks, guys. +Appreciate the call, man. +Take care. +If you'd like to be a part of the show, 751-1041. +Let's talk to you, Alex. +Hello, Alex. +Hi. +Yeah. +Thanks for making my call so quickly. +Yeah. +I have a question. +We have a Cox cable and we have a, it comes with McAfee. +Is that a worthwhile program to have with it or? +No. +No? +No. +It's a waste of time. +Oh, okay. +We've had it several years now. +It does. +Everything slows down every once in a while. +Yes. +So how do I go about putting something different on? +All right. +First, pick what you want to put on there and download a copy of it, but don't install +it. +Okay. +Now, would you recommend a VAS? +Yes. +I do recommend a VAS, at least on the free market. +Yes. +Mm-hmm. +Even a paid one is pretty good. +Yeah. +I think it's unnecessary. +I like a VAS for a couple of reasons. +Decent detection, boot time scan, free. +And those three things together really make a nice product for me. +Okay. +Let's say I go with that, but how do I take my Mac fee off and still stay protected or +do I unplug the internet? +Well, that's why you're going to download your new antivirus first but not install it. +Right. +And then you can disconnect, uninstall the application, your old one, and then install +your new one and then plug yourself back in. +Disconnect the internet. +Yes. +Okay. +Unplug the cable and then I can do the switch. +Okay. +Yeah. +Sure. +That makes sense. +Also, now, have you heard of other people? +My wife says be careful. +Between 5 and 7 PM, talk seems to be really slow or do you think it's a computer or drill +slow? +Sometimes she can't get on or gets kicked off if she is on. +What's up? +Well, it kind of depends on a couple of factors. +It's probably a high traffic time for your node. +You have a bunch of people in your area that are connected to the same node. +Yes. +And by the way, that's true with all the internet providers with the exception of +like SimplyBets. +Even if Quest says otherwise. +Right. +They have the same type of noting system that all the others have. +Yeah. +The difference is that they throttle you down so much that it doesn't really matter how +many people get on. +Right. +Anyway, you could be experiencing a traffic problem with your neighborhood and you can +call Cox about that and complain. +A lot of times if you complain loud enough, they will apply oil to your squeaky wheel. +Or if you have a Wi-Fi network and your Wi-Fi network is open and everybody in your neighborhood +is jumping on it and once again slowing you down. +Yeah. +Actually, we don't. +We have one on. +My daughter put on a password for it so nobody can jump on. +Very good. +All right. +So start complaining to Cox and they can take a look at that for you. +Yeah. +And if I find ... The computer has gotten slow also. +It's about two years old, Dale. +You had that $65 special. +Does that include a tune-up of it? +We have a $65 tune-up. +Yep. +Okay. +So I'll run this and if it doesn't help, I'll bring it in. +Thank you. +Bye. +Thank you. +Yeah. +Bye. +All right. +If you'd like to be part of the show, 751-1041. +Let's see. +We're going to do one more because we're coming up on the break here. +Hey, Steve. +How you doing? +Hey, great. +How are you? +Not bad. +How can I help you? +Hey, I've got a Dell laptop, a C400, old one, P3, and I want to change the BIOS password. +And I get into the BIOS, I go to page seven and I go to change the master password, primary +password is what they're calling it. +And it says, you know, hit your arrow keys. +I do it. +I type in the password. +Beep. + +It won't let me do it. +I hit enter three times. +It won't let me do it. +Hit enter twice with nothing in it. +I pulled the battery. +I pulled the CMOS battery. +All right. +Hang tight for a second. +We're up against the break. +So stick around. +We'll get to you right after the break. +This is the Computer Guru Show. +We'll be right back. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.json new file mode 100644 index 0000000..92eda51 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.json @@ -0,0 +1,62844 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 2506.752, + "segments": [ + { + "id": 0, + "text": "From my heart and from my hand, why don't people understand my intentions?", + "start": 0.0, + "end": 4.7, + "words": [ + { + "word": " From", + "start": 0.0, + "end": 0.42, + "probability": 0.94189453125 + }, + { + "word": " my", + "start": 0.42, + "end": 0.72, + "probability": 0.9951171875 + }, + { + "word": " heart", + "start": 0.72, + "end": 1.04, + "probability": 0.99462890625 + }, + { + "word": " and", + "start": 1.04, + "end": 1.22, + "probability": 0.99267578125 + }, + { + "word": " from", + "start": 1.22, + "end": 1.44, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1.44, + "end": 1.7, + "probability": 0.99951171875 + }, + { + "word": " hand,", + "start": 1.7, + "end": 2.02, + "probability": 0.98876953125 + }, + { + "word": " why", + "start": 2.1, + "end": 2.3, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 2.3, + "end": 2.72, + "probability": 1.0 + }, + { + "word": " people", + "start": 2.72, + "end": 2.98, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2.98, + "end": 3.5, + "probability": 1.0 + }, + { + "word": " my", + "start": 3.5, + "end": 4.22, + "probability": 1.0 + }, + { + "word": " intentions?", + "start": 4.22, + "end": 4.7, + "probability": 0.47998046875 + } + ] + }, + { + "id": 1, + "text": "Computer running slow?", + "start": 5.34, + "end": 6.48, + "words": [ + { + "word": " Computer", + "start": 5.34, + "end": 5.94, + "probability": 0.99267578125 + }, + { + "word": " running", + "start": 5.94, + "end": 6.16, + "probability": 0.9990234375 + }, + { + "word": " slow?", + "start": 6.16, + "end": 6.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2, + "text": "Boing!", + "start": 6.7, + "end": 6.88, + "words": [ + { + "word": " Boing!", + "start": 6.7, + "end": 6.88, + "probability": 0.484619140625 + } + ] + }, + { + "id": 3, + "text": "Caught a virus?", + "start": 7.12, + "end": 7.94, + "words": [ + { + "word": " Caught", + "start": 7.12, + "end": 7.6, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 7.6, + "end": 7.64, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 7.64, + "end": 7.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4, + "text": "Ah!", + "start": 8.16, + "end": 8.28, + "words": [ + { + "word": " Ah!", + "start": 8.16, + "end": 8.28, + "probability": 0.10162353515625 + } + ] + }, + { + "id": 5, + "text": "Ah!", + "start": 8.54, + "end": 9.06, + "words": [ + { + "word": " Ah!", + "start": 8.54, + "end": 9.06, + "probability": 0.587890625 + } + ] + }, + { + "id": 6, + "text": "Ah!", + "start": 9.24, + "end": 9.64, + "words": [ + { + "word": " Ah!", + "start": 9.24, + "end": 9.64, + "probability": 0.354736328125 + } + ] + }, + { + "id": 7, + "text": "Does your computer seem to have a life of its own?", + "start": 9.78, + "end": 13.46, + "words": [ + { + "word": " Does", + "start": 9.78, + "end": 10.38, + "probability": 0.67431640625 + }, + { + "word": " your", + "start": 10.38, + "end": 11.06, + "probability": 1.0 + }, + { + "word": " computer", + "start": 11.06, + "end": 11.54, + "probability": 1.0 + }, + { + "word": " seem", + "start": 11.54, + "end": 11.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 11.96, + "end": 12.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 12.16, + "end": 12.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 12.38, + "end": 12.54, + "probability": 1.0 + }, + { + "word": " life", + "start": 12.54, + "end": 12.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 12.86, + "end": 13.04, + "probability": 1.0 + }, + { + "word": " its", + "start": 13.04, + "end": 13.2, + "probability": 0.99267578125 + }, + { + "word": " own?", + "start": 13.2, + "end": 13.46, + "probability": 1.0 + } + ] + }, + { + "id": 8, + "text": "Malfunction.", + "start": 13.82, + "end": 14.42, + "words": [ + { + "word": " Malfunction.", + "start": 13.82, + "end": 14.42, + "probability": 0.87548828125 + } + ] + }, + { + "id": 9, + "text": "Me getting good.", + "start": 14.64, + "end": 16.02, + "words": [ + { + "word": " Me", + "start": 14.64, + "end": 15.24, + "probability": 0.1319580078125 + }, + { + "word": " getting", + "start": 15.24, + "end": 15.7, + "probability": 0.456298828125 + }, + { + "word": " good.", + "start": 15.7, + "end": 16.02, + "probability": 0.87841796875 + } + ] + }, + { + "id": 10, + "text": "The computer guru is here.", + "start": 16.24, + "end": 17.9, + "words": [ + { + "word": " The", + "start": 16.24, + "end": 16.36, + "probability": 0.998046875 + }, + { + "word": " computer", + "start": 16.36, + "end": 16.74, + "probability": 0.68505859375 + }, + { + "word": " guru", + "start": 16.74, + "end": 17.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 17.16, + "end": 17.58, + "probability": 1.0 + }, + { + "word": " here.", + "start": 17.58, + "end": 17.9, + "probability": 1.0 + } + ] + }, + { + "id": 11, + "text": "My God, you're here!", + "start": 18.04, + "end": 19.02, + "words": [ + { + "word": " My", + "start": 18.04, + "end": 18.1, + "probability": 0.64404296875 + }, + { + "word": " God,", + "start": 18.1, + "end": 18.46, + "probability": 0.63330078125 + }, + { + "word": " you're", + "start": 18.56, + "end": 18.82, + "probability": 1.0 + }, + { + "word": " here!", + "start": 18.82, + "end": 19.02, + "probability": 0.9892578125 + } + ] + }, + { + "id": 12, + "text": "Call in now.", + "start": 19.36, + "end": 20.2, + "words": [ + { + "word": " Call", + "start": 19.36, + "end": 19.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 19.64, + "end": 19.9, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 19.9, + "end": 20.2, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "751-1041.", + "start": 20.74, + "end": 22.0, + "words": [ + { + "word": " 751", + "start": 20.74, + "end": 21.34, + "probability": 0.99951171875 + }, + { + "word": "-1041.", + "start": 21.34, + "end": 22.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 14, + "text": "That's 751-1041.", + "start": 22.3, + "end": 24.2, + "words": [ + { + "word": " That's", + "start": 22.3, + "end": 22.66, + "probability": 1.0 + }, + { + "word": " 751", + "start": 22.66, + "end": 23.52, + "probability": 1.0 + }, + { + "word": "-1041.", + "start": 23.52, + "end": 24.2, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "Now, it's Mike Swanson, your computer guru.", + "start": 24.66, + "end": 27.56, + "words": [ + { + "word": " Now,", + "start": 24.66, + "end": 25.04, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 25.04, + "end": 25.4, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 25.4, + "end": 25.62, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 25.62, + "end": 26.0, + "probability": 0.99462890625 + }, + { + "word": " your", + "start": 26.24, + "end": 26.5, + "probability": 1.0 + }, + { + "word": " computer", + "start": 26.5, + "end": 27.02, + "probability": 1.0 + }, + { + "word": " guru.", + "start": 27.02, + "end": 27.56, + "probability": 1.0 + } + ] + }, + { + "id": 16, + "text": "On 104.1 The Truth.", + "start": 27.8, + "end": 29.26, + "words": [ + { + "word": " On", + "start": 27.8, + "end": 27.98, + "probability": 0.9033203125 + }, + { + "word": " 104", + "start": 27.98, + "end": 28.4, + "probability": 0.8271484375 + }, + { + "word": ".1", + "start": 28.4, + "end": 28.9, + "probability": 0.990234375 + }, + { + "word": " The", + "start": 28.9, + "end": 29.02, + "probability": 0.93701171875 + }, + { + "word": " Truth.", + "start": 29.02, + "end": 29.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 17, + "text": "I'm in for a juice-ass news talk, FM.", + "start": 30.0, + "end": 32.88, + "words": [ + { + "word": " I'm", + "start": 30.0, + "end": 30.14, + "probability": 0.36767578125 + }, + { + "word": " in", + "start": 30.14, + "end": 30.42, + "probability": 0.208740234375 + }, + { + "word": " for", + "start": 30.42, + "end": 30.74, + "probability": 0.57177734375 + }, + { + "word": " a", + "start": 30.74, + "end": 30.86, + "probability": 0.33984375 + }, + { + "word": " juice", + "start": 30.86, + "end": 31.16, + "probability": 0.370361328125 + }, + { + "word": "-ass", + "start": 31.16, + "end": 31.48, + "probability": 0.8291015625 + }, + { + "word": " news", + "start": 31.48, + "end": 31.88, + "probability": 0.28125 + }, + { + "word": " talk,", + "start": 31.88, + "end": 32.36, + "probability": 0.96435546875 + }, + { + "word": " FM.", + "start": 32.48, + "end": 32.88, + "probability": 0.7900390625 + } + ] + }, + { + "id": 18, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 34.8, + "end": 36.52, + "words": [ + { + "word": " Hello", + "start": 34.8, + "end": 35.16, + "probability": 0.8759765625 + }, + { + "word": " and", + "start": 35.16, + "end": 35.34, + "probability": 0.76904296875 + }, + { + "word": " welcome", + "start": 35.34, + "end": 35.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 35.52, + "end": 35.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 35.7, + "end": 35.82, + "probability": 0.9033203125 + }, + { + "word": " Computer", + "start": 35.82, + "end": 36.0, + "probability": 0.99755859375 + }, + { + "word": " Guru", + "start": 36.0, + "end": 36.28, + "probability": 0.98876953125 + }, + { + "word": " Show.", + "start": 36.28, + "end": 36.52, + "probability": 0.98388671875 + } + ] + }, + { + "id": 19, + "text": "My name's Mike.", + "start": 36.56, + "end": 37.08, + "words": [ + { + "word": " My", + "start": 36.56, + "end": 36.68, + "probability": 0.99951171875 + }, + { + "word": " name's", + "start": 36.68, + "end": 36.84, + "probability": 0.68701171875 + }, + { + "word": " Mike.", + "start": 36.84, + "end": 37.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 20, + "text": "Here to deal with your technology needs and treat you like a real person in the process.", + "start": 37.08, + "end": 40.36, + "words": [ + { + "word": " Here", + "start": 37.08, + "end": 37.22, + "probability": 0.94921875 + }, + { + "word": " to", + "start": 37.22, + "end": 37.32, + "probability": 0.99951171875 + }, + { + "word": " deal", + "start": 37.32, + "end": 37.44, + "probability": 0.908203125 + }, + { + "word": " with", + "start": 37.44, + "end": 37.54, + "probability": 1.0 + }, + { + "word": " your", + "start": 37.54, + "end": 37.66, + "probability": 1.0 + }, + { + "word": " technology", + "start": 37.66, + "end": 38.14, + "probability": 1.0 + }, + { + "word": " needs", + "start": 38.14, + "end": 38.46, + "probability": 0.99462890625 + }, + { + "word": " and", + "start": 38.46, + "end": 38.7, + "probability": 0.99755859375 + }, + { + "word": " treat", + "start": 38.7, + "end": 38.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 38.96, + "end": 39.16, + "probability": 1.0 + }, + { + "word": " like", + "start": 39.16, + "end": 39.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 39.28, + "end": 39.42, + "probability": 1.0 + }, + { + "word": " real", + "start": 39.42, + "end": 39.58, + "probability": 1.0 + }, + { + "word": " person", + "start": 39.58, + "end": 39.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 39.88, + "end": 40.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 40.02, + "end": 40.04, + "probability": 1.0 + }, + { + "word": " process.", + "start": 40.04, + "end": 40.36, + "probability": 1.0 + } + ] + }, + { + "id": 21, + "text": "Today is September 10th, 2011.", + "start": 40.54, + "end": 42.94, + "words": [ + { + "word": " Today", + "start": 40.54, + "end": 40.9, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 40.9, + "end": 41.3, + "probability": 1.0 + }, + { + "word": " September", + "start": 41.3, + "end": 41.68, + "probability": 1.0 + }, + { + "word": " 10th,", + "start": 41.68, + "end": 42.44, + "probability": 0.94921875 + }, + { + "word": " 2011.", + "start": 42.44, + "end": 42.94, + "probability": 1.0 + } + ] + }, + { + "id": 22, + "text": "Now, I was thinking back on the way down here.", + "start": 44.1, + "end": 46.1, + "words": [ + { + "word": " Now,", + "start": 44.1, + "end": 44.46, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 44.54, + "end": 44.82, + "probability": 1.0 + }, + { + "word": " was", + "start": 44.82, + "end": 44.98, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 44.98, + "end": 45.12, + "probability": 1.0 + }, + { + "word": " back", + "start": 45.12, + "end": 45.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 45.36, + "end": 45.56, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 45.56, + "end": 45.64, + "probability": 1.0 + }, + { + "word": " way", + "start": 45.64, + "end": 45.76, + "probability": 1.0 + }, + { + "word": " down", + "start": 45.76, + "end": 45.9, + "probability": 1.0 + }, + { + "word": " here.", + "start": 45.9, + "end": 46.1, + "probability": 1.0 + } + ] + }, + { + "id": 23, + "text": "I was thinking, you know, my mom used to tell me that, you know, you always remembered where you were when Kennedy was shot.", + "start": 46.14, + "end": 53.02, + "words": [ + { + "word": " I", + "start": 46.14, + "end": 46.22, + "probability": 0.99072265625 + }, + { + "word": " was", + "start": 46.22, + "end": 46.24, + "probability": 1.0 + }, + { + "word": " thinking,", + "start": 46.24, + "end": 46.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 46.62, + "end": 48.06, + "probability": 0.99560546875 + }, + { + "word": " know,", + "start": 48.06, + "end": 48.22, + "probability": 1.0 + }, + { + "word": " my", + "start": 48.22, + "end": 48.36, + "probability": 1.0 + }, + { + "word": " mom", + "start": 48.36, + "end": 48.6, + "probability": 1.0 + }, + { + "word": " used", + "start": 48.6, + "end": 48.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 48.76, + "end": 48.9, + "probability": 1.0 + }, + { + "word": " tell", + "start": 48.9, + "end": 49.06, + "probability": 1.0 + }, + { + "word": " me", + "start": 49.06, + "end": 49.24, + "probability": 1.0 + }, + { + "word": " that,", + "start": 49.24, + "end": 49.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 49.48, + "end": 49.7, + "probability": 1.0 + }, + { + "word": " know,", + "start": 49.7, + "end": 49.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 49.8, + "end": 49.98, + "probability": 0.99853515625 + }, + { + "word": " always", + "start": 49.98, + "end": 50.62, + "probability": 0.9501953125 + }, + { + "word": " remembered", + "start": 50.62, + "end": 51.04, + "probability": 0.63330078125 + }, + { + "word": " where", + "start": 51.04, + "end": 51.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 51.4, + "end": 51.56, + "probability": 1.0 + }, + { + "word": " were", + "start": 51.56, + "end": 51.74, + "probability": 1.0 + }, + { + "word": " when", + "start": 51.74, + "end": 52.06, + "probability": 1.0 + }, + { + "word": " Kennedy", + "start": 52.06, + "end": 52.56, + "probability": 1.0 + }, + { + "word": " was", + "start": 52.56, + "end": 52.78, + "probability": 1.0 + }, + { + "word": " shot.", + "start": 52.78, + "end": 53.02, + "probability": 1.0 + } + ] + }, + { + "id": 24, + "text": "Right.", + "start": 53.56, + "end": 53.92, + "words": [ + { + "word": " Right.", + "start": 53.56, + "end": 53.92, + "probability": 0.413818359375 + } + ] + }, + { + "id": 25, + "text": "Or when man landed on the moon.", + "start": 53.92, + "end": 57.24, + "words": [ + { + "word": " Or", + "start": 53.92, + "end": 54.04, + "probability": 0.9931640625 + }, + { + "word": " when", + "start": 54.04, + "end": 54.78, + "probability": 0.99951171875 + }, + { + "word": " man", + "start": 54.78, + "end": 56.2, + "probability": 0.89306640625 + }, + { + "word": " landed", + "start": 56.2, + "end": 56.7, + "probability": 1.0 + }, + { + "word": " on", + "start": 56.7, + "end": 56.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 56.86, + "end": 56.96, + "probability": 1.0 + }, + { + "word": " moon.", + "start": 56.96, + "end": 57.24, + "probability": 1.0 + } + ] + }, + { + "id": 26, + "text": "Right.", + "start": 57.48, + "end": 57.84, + "words": [ + { + "word": " Right.", + "start": 57.48, + "end": 57.84, + "probability": 0.9833984375 + } + ] + }, + { + "id": 27, + "text": "These are moments, landmark moments.", + "start": 57.88, + "end": 59.66, + "words": [ + { + "word": " These", + "start": 57.88, + "end": 58.0, + "probability": 0.96826171875 + }, + { + "word": " are", + "start": 58.0, + "end": 58.16, + "probability": 1.0 + }, + { + "word": " moments,", + "start": 58.16, + "end": 58.56, + "probability": 0.94091796875 + }, + { + "word": " landmark", + "start": 58.72, + "end": 59.04, + "probability": 1.0 + }, + { + "word": " moments.", + "start": 59.04, + "end": 59.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 28, + "text": "Where you remember for the rest of your life everything about that moment when you heard about it.", + "start": 60.0, + "end": 65.72, + "words": [ + { + "word": " Where", + "start": 60.0, + "end": 60.1, + "probability": 0.080078125 + }, + { + "word": " you", + "start": 60.1, + "end": 60.4, + "probability": 0.99658203125 + }, + { + "word": " remember", + "start": 60.4, + "end": 61.02, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 61.02, + "end": 61.34, + "probability": 0.95068359375 + }, + { + "word": " the", + "start": 61.34, + "end": 61.42, + "probability": 1.0 + }, + { + "word": " rest", + "start": 61.42, + "end": 61.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 61.72, + "end": 61.82, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 61.82, + "end": 61.88, + "probability": 1.0 + }, + { + "word": " life", + "start": 61.88, + "end": 62.18, + "probability": 0.99951171875 + }, + { + "word": " everything", + "start": 62.18, + "end": 63.5, + "probability": 0.8046875 + }, + { + "word": " about", + "start": 63.5, + "end": 63.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 63.94, + "end": 64.28, + "probability": 1.0 + }, + { + "word": " moment", + "start": 64.28, + "end": 64.66, + "probability": 1.0 + }, + { + "word": " when", + "start": 64.66, + "end": 65.02, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 65.02, + "end": 65.12, + "probability": 1.0 + }, + { + "word": " heard", + "start": 65.12, + "end": 65.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 65.3, + "end": 65.48, + "probability": 1.0 + }, + { + "word": " it.", + "start": 65.48, + "end": 65.72, + "probability": 1.0 + } + ] + }, + { + "id": 29, + "text": "Okay.", + "start": 65.92, + "end": 66.26, + "words": [ + { + "word": " Okay.", + "start": 65.92, + "end": 66.26, + "probability": 0.60400390625 + } + ] + }, + { + "id": 30, + "text": "So I was thinking about, where was I when I heard about September 11th, 2001?", + "start": 66.28, + "end": 71.8, + "words": [ + { + "word": " So", + "start": 66.28, + "end": 66.72, + "probability": 0.96142578125 + }, + { + "word": " I", + "start": 66.72, + "end": 66.84, + "probability": 0.82666015625 + }, + { + "word": " was", + "start": 66.84, + "end": 66.94, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 66.94, + "end": 67.14, + "probability": 1.0 + }, + { + "word": " about,", + "start": 67.14, + "end": 67.42, + "probability": 1.0 + }, + { + "word": " where", + "start": 67.56, + "end": 68.36, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 68.36, + "end": 68.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 68.52, + "end": 68.68, + "probability": 1.0 + }, + { + "word": " when", + "start": 68.68, + "end": 68.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 68.94, + "end": 69.02, + "probability": 1.0 + }, + { + "word": " heard", + "start": 69.02, + "end": 69.26, + "probability": 0.98828125 + }, + { + "word": " about", + "start": 69.26, + "end": 69.82, + "probability": 1.0 + }, + { + "word": " September", + "start": 69.82, + "end": 70.14, + "probability": 1.0 + }, + { + "word": " 11th,", + "start": 70.14, + "end": 71.3, + "probability": 0.9013671875 + }, + { + "word": " 2001?", + "start": 71.3, + "end": 71.8, + "probability": 1.0 + } + ] + }, + { + "id": 31, + "text": "Right.", + "start": 72.1, + "end": 72.44, + "words": [ + { + "word": " Right.", + "start": 72.1, + "end": 72.44, + "probability": 0.921875 + } + ] + }, + { + "id": 32, + "text": "And I was sitting at the left turn light at Campbell and Speedway on my way to work.", + "start": 72.52, + "end": 79.1, + "words": [ + { + "word": " And", + "start": 72.52, + "end": 72.9, + "probability": 0.9814453125 + }, + { + "word": " I", + "start": 72.9, + "end": 73.18, + "probability": 1.0 + }, + { + "word": " was", + "start": 73.18, + "end": 73.52, + "probability": 1.0 + }, + { + "word": " sitting", + "start": 73.52, + "end": 74.14, + "probability": 1.0 + }, + { + "word": " at", + "start": 74.14, + "end": 74.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 74.4, + "end": 74.62, + "probability": 1.0 + }, + { + "word": " left", + "start": 74.62, + "end": 75.5, + "probability": 0.99951171875 + }, + { + "word": " turn", + "start": 75.5, + "end": 75.72, + "probability": 0.99072265625 + }, + { + "word": " light", + "start": 75.72, + "end": 75.96, + "probability": 0.99267578125 + }, + { + "word": " at", + "start": 75.96, + "end": 76.26, + "probability": 1.0 + }, + { + "word": " Campbell", + "start": 76.26, + "end": 76.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 76.82, + "end": 77.02, + "probability": 0.998046875 + }, + { + "word": " Speedway", + "start": 77.02, + "end": 77.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 77.42, + "end": 78.4, + "probability": 0.986328125 + }, + { + "word": " my", + "start": 78.4, + "end": 78.6, + "probability": 1.0 + }, + { + "word": " way", + "start": 78.6, + "end": 78.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 78.76, + "end": 78.9, + "probability": 1.0 + }, + { + "word": " work.", + "start": 78.9, + "end": 79.1, + "probability": 1.0 + } + ] + }, + { + "id": 33, + "text": "And my dad called me and he said, are you near a TV?", + "start": 79.2, + "end": 82.04, + "words": [ + { + "word": " And", + "start": 79.2, + "end": 79.52, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 79.52, + "end": 79.68, + "probability": 1.0 + }, + { + "word": " dad", + "start": 79.68, + "end": 79.96, + "probability": 1.0 + }, + { + "word": " called", + "start": 79.96, + "end": 80.22, + "probability": 1.0 + }, + { + "word": " me", + "start": 80.22, + "end": 80.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 80.44, + "end": 80.56, + "probability": 0.92626953125 + }, + { + "word": " he", + "start": 80.56, + "end": 80.66, + "probability": 1.0 + }, + { + "word": " said,", + "start": 80.66, + "end": 80.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 81.0, + "end": 81.34, + "probability": 0.9296875 + }, + { + "word": " you", + "start": 81.34, + "end": 81.52, + "probability": 1.0 + }, + { + "word": " near", + "start": 81.52, + "end": 81.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 81.68, + "end": 81.82, + "probability": 0.99658203125 + }, + { + "word": " TV?", + "start": 81.82, + "end": 82.04, + "probability": 1.0 + } + ] + }, + { + "id": 34, + "text": "You should, you know, somebody flew a plane into a building.", + "start": 82.22, + "end": 85.0, + "words": [ + { + "word": " You", + "start": 82.22, + "end": 82.34, + "probability": 0.2958984375 + }, + { + "word": " should,", + "start": 82.34, + "end": 82.48, + "probability": 0.414794921875 + }, + { + "word": " you", + "start": 82.56, + "end": 83.14, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 83.14, + "end": 83.22, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 83.22, + "end": 83.38, + "probability": 0.99951171875 + }, + { + "word": " flew", + "start": 83.38, + "end": 83.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 83.6, + "end": 83.82, + "probability": 1.0 + }, + { + "word": " plane", + "start": 83.82, + "end": 84.06, + "probability": 1.0 + }, + { + "word": " into", + "start": 84.06, + "end": 84.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 84.3, + "end": 84.48, + "probability": 1.0 + }, + { + "word": " building.", + "start": 84.48, + "end": 85.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 35, + "text": "And, you know, my dad and I are big aviation buffs, right?", + "start": 86.54, + "end": 89.02, + "words": [ + { + "word": " And,", + "start": 86.54, + "end": 86.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 87.06, + "end": 87.34, + "probability": 0.97412109375 + }, + { + "word": " know,", + "start": 87.34, + "end": 87.42, + "probability": 1.0 + }, + { + "word": " my", + "start": 87.44, + "end": 87.52, + "probability": 1.0 + }, + { + "word": " dad", + "start": 87.52, + "end": 87.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 87.68, + "end": 87.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 87.82, + "end": 87.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 87.86, + "end": 87.94, + "probability": 0.99365234375 + }, + { + "word": " big", + "start": 87.94, + "end": 88.04, + "probability": 0.99951171875 + }, + { + "word": " aviation", + "start": 88.04, + "end": 88.4, + "probability": 1.0 + }, + { + "word": " buffs,", + "start": 88.4, + "end": 88.78, + "probability": 0.9990234375 + }, + { + "word": " right?", + "start": 88.88, + "end": 89.02, + "probability": 1.0 + } + ] + }, + { + "id": 36, + "text": "We always talk.", + "start": 89.08, + "end": 89.86, + "words": [ + { + "word": " We", + "start": 89.08, + "end": 89.18, + "probability": 0.85986328125 + }, + { + "word": " always", + "start": 89.18, + "end": 89.34, + "probability": 0.98876953125 + }, + { + "word": " talk.", + "start": 89.34, + "end": 89.86, + "probability": 0.9912109375 + } + ] + }, + { + "id": 37, + "text": "We talk about airplanes and such.", + "start": 89.86, + "end": 91.34, + "words": [ + { + "word": " We", + "start": 89.86, + "end": 89.86, + "probability": 0.05523681640625 + }, + { + "word": " talk", + "start": 89.86, + "end": 89.86, + "probability": 0.1876220703125 + }, + { + "word": " about", + "start": 89.86, + "end": 90.06, + "probability": 0.99560546875 + }, + { + "word": " airplanes", + "start": 90.06, + "end": 90.72, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 90.72, + "end": 91.12, + "probability": 0.9931640625 + }, + { + "word": " such.", + "start": 91.12, + "end": 91.34, + "probability": 0.99365234375 + } + ] + }, + { + "id": 38, + "text": "And we thought, at least initially, at the time that he called me, it was similar to when, you know, there was a long time ago, there was a plane that crashed in the Empire State Building.", + "start": 91.46, + "end": 101.5, + "words": [ + { + "word": " And", + "start": 91.46, + "end": 91.54, + "probability": 0.669921875 + }, + { + "word": " we", + "start": 91.54, + "end": 91.6, + "probability": 0.99609375 + }, + { + "word": " thought,", + "start": 91.6, + "end": 91.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 91.96, + "end": 93.0, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 93.0, + "end": 93.18, + "probability": 1.0 + }, + { + "word": " initially,", + "start": 93.18, + "end": 93.52, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 93.64, + "end": 94.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 94.04, + "end": 94.34, + "probability": 1.0 + }, + { + "word": " time", + "start": 94.34, + "end": 94.52, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 94.52, + "end": 94.68, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 94.68, + "end": 94.78, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 94.78, + "end": 95.06, + "probability": 1.0 + }, + { + "word": " me,", + "start": 95.06, + "end": 95.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 95.38, + "end": 95.6, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 95.6, + "end": 95.74, + "probability": 1.0 + }, + { + "word": " similar", + "start": 95.74, + "end": 96.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 96.06, + "end": 96.3, + "probability": 1.0 + }, + { + "word": " when,", + "start": 96.3, + "end": 96.72, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 96.78, + "end": 97.56, + "probability": 0.9873046875 + }, + { + "word": " know,", + "start": 97.56, + "end": 97.72, + "probability": 1.0 + }, + { + "word": " there", + "start": 97.76, + "end": 97.92, + "probability": 0.98828125 + }, + { + "word": " was", + "start": 97.92, + "end": 98.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 98.38, + "end": 98.66, + "probability": 0.69287109375 + }, + { + "word": " long", + "start": 98.66, + "end": 99.28, + "probability": 0.9970703125 + }, + { + "word": " time", + "start": 99.28, + "end": 99.48, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 99.48, + "end": 99.7, + "probability": 1.0 + }, + { + "word": " there", + "start": 99.76, + "end": 99.84, + "probability": 1.0 + }, + { + "word": " was", + "start": 99.84, + "end": 99.94, + "probability": 0.9482421875 + }, + { + "word": " a", + "start": 99.94, + "end": 99.96, + "probability": 1.0 + }, + { + "word": " plane", + "start": 99.96, + "end": 100.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 100.14, + "end": 100.24, + "probability": 1.0 + }, + { + "word": " crashed", + "start": 100.24, + "end": 100.44, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 100.44, + "end": 100.6, + "probability": 0.93505859375 + }, + { + "word": " the", + "start": 100.6, + "end": 100.76, + "probability": 1.0 + }, + { + "word": " Empire", + "start": 100.76, + "end": 101.02, + "probability": 1.0 + }, + { + "word": " State", + "start": 101.02, + "end": 101.24, + "probability": 1.0 + }, + { + "word": " Building.", + "start": 101.24, + "end": 101.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 39, + "text": "So we thought, well, wow, how do you manage to do something like that?", + "start": 103.22, + "end": 106.88, + "words": [ + { + "word": " So", + "start": 103.22, + "end": 103.62, + "probability": 0.98779296875 + }, + { + "word": " we", + "start": 103.62, + "end": 104.02, + "probability": 0.841796875 + }, + { + "word": " thought,", + "start": 104.02, + "end": 104.16, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 104.28, + "end": 104.36, + "probability": 0.83154296875 + }, + { + "word": " wow,", + "start": 104.4, + "end": 104.64, + "probability": 0.97705078125 + }, + { + "word": " how", + "start": 104.8, + "end": 104.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 104.9, + "end": 105.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 105.06, + "end": 105.22, + "probability": 1.0 + }, + { + "word": " manage", + "start": 105.22, + "end": 105.62, + "probability": 0.82958984375 + }, + { + "word": " to", + "start": 105.62, + "end": 105.94, + "probability": 1.0 + }, + { + "word": " do", + "start": 105.94, + "end": 106.06, + "probability": 1.0 + }, + { + "word": " something", + "start": 106.06, + "end": 106.28, + "probability": 1.0 + }, + { + "word": " like", + "start": 106.28, + "end": 106.56, + "probability": 1.0 + }, + { + "word": " that?", + "start": 106.56, + "end": 106.88, + "probability": 1.0 + } + ] + }, + { + "id": 40, + "text": "Right, right.", + "start": 107.04, + "end": 107.6, + "words": [ + { + "word": " Right,", + "start": 107.04, + "end": 107.38, + "probability": 0.943359375 + }, + { + "word": " right.", + "start": 107.38, + "end": 107.6, + "probability": 1.0 + } + ] + }, + { + "id": 41, + "text": "And so by the time I got to work, you know, everybody's sitting in front of a TV.", + "start": 107.78, + "end": 112.86, + "words": [ + { + "word": " And", + "start": 107.78, + "end": 108.08, + "probability": 0.99755859375 + }, + { + "word": " so", + "start": 108.08, + "end": 108.78, + "probability": 1.0 + }, + { + "word": " by", + "start": 108.78, + "end": 109.2, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 109.2, + "end": 109.38, + "probability": 1.0 + }, + { + "word": " time", + "start": 109.38, + "end": 109.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 109.52, + "end": 109.66, + "probability": 1.0 + }, + { + "word": " got", + "start": 109.66, + "end": 109.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 109.76, + "end": 109.9, + "probability": 1.0 + }, + { + "word": " work,", + "start": 109.9, + "end": 110.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 110.86, + "end": 111.34, + "probability": 0.75244140625 + }, + { + "word": " know,", + "start": 111.34, + "end": 111.48, + "probability": 1.0 + }, + { + "word": " everybody's", + "start": 111.48, + "end": 111.88, + "probability": 0.99658203125 + }, + { + "word": " sitting", + "start": 111.88, + "end": 112.04, + "probability": 0.99365234375 + }, + { + "word": " in", + "start": 112.04, + "end": 112.24, + "probability": 1.0 + }, + { + "word": " front", + "start": 112.24, + "end": 112.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 112.38, + "end": 112.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 112.5, + "end": 112.54, + "probability": 0.98388671875 + }, + { + "word": " TV.", + "start": 112.54, + "end": 112.86, + "probability": 1.0 + } + ] + }, + { + "id": 42, + "text": "And that's when the second tower got hit.", + "start": 113.06, + "end": 116.0, + "words": [ + { + "word": " And", + "start": 113.06, + "end": 113.46, + "probability": 1.0 + }, + { + "word": " that's", + "start": 113.46, + "end": 114.98, + "probability": 1.0 + }, + { + "word": " when", + "start": 114.98, + "end": 115.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 115.06, + "end": 115.16, + "probability": 1.0 + }, + { + "word": " second", + "start": 115.16, + "end": 115.38, + "probability": 0.9990234375 + }, + { + "word": " tower", + "start": 115.38, + "end": 115.62, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 115.62, + "end": 115.78, + "probability": 1.0 + }, + { + "word": " hit.", + "start": 115.78, + "end": 116.0, + "probability": 1.0 + } + ] + }, + { + "id": 43, + "text": "Right.", + "start": 116.18, + "end": 116.36, + "words": [ + { + "word": " Right.", + "start": 116.18, + "end": 116.36, + "probability": 0.0003066062927246094 + } + ] + }, + { + "id": 44, + "text": "And so it was suddenly a very different feeling for me.", + "start": 117.04, + "end": 119.84, + "words": [ + { + "word": " And", + "start": 117.04, + "end": 117.04, + "probability": 0.437744140625 + }, + { + "word": " so", + "start": 117.04, + "end": 117.24, + "probability": 0.90283203125 + }, + { + "word": " it", + "start": 117.24, + "end": 117.44, + "probability": 0.9453125 + }, + { + "word": " was", + "start": 117.44, + "end": 117.64, + "probability": 0.9990234375 + }, + { + "word": " suddenly", + "start": 117.64, + "end": 118.26, + "probability": 0.93603515625 + }, + { + "word": " a", + "start": 118.26, + "end": 118.56, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 118.56, + "end": 118.76, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 118.76, + "end": 119.12, + "probability": 0.998046875 + }, + { + "word": " feeling", + "start": 119.12, + "end": 119.54, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 119.54, + "end": 119.74, + "probability": 0.994140625 + }, + { + "word": " me.", + "start": 119.74, + "end": 119.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 45, + "text": "Because initially it was just, this is just tragic that somebody would, you know, inadvertently fly into a building like that.", + "start": 119.86, + "end": 128.22, + "words": [ + { + "word": " Because", + "start": 119.86, + "end": 120.58, + "probability": 0.56689453125 + }, + { + "word": " initially", + "start": 120.58, + "end": 120.88, + "probability": 0.99267578125 + }, + { + "word": " it", + "start": 120.88, + "end": 121.12, + "probability": 0.8525390625 + }, + { + "word": " was", + "start": 121.12, + "end": 121.3, + "probability": 1.0 + }, + { + "word": " just,", + "start": 121.3, + "end": 121.66, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 121.72, + "end": 122.42, + "probability": 0.99267578125 + }, + { + "word": " is", + "start": 122.42, + "end": 122.66, + "probability": 1.0 + }, + { + "word": " just", + "start": 122.66, + "end": 123.18, + "probability": 0.99755859375 + }, + { + "word": " tragic", + "start": 123.18, + "end": 124.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 124.14, + "end": 124.46, + "probability": 0.931640625 + }, + { + "word": " somebody", + "start": 124.46, + "end": 124.76, + "probability": 1.0 + }, + { + "word": " would,", + "start": 124.76, + "end": 125.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 125.18, + "end": 126.14, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 126.14, + "end": 126.3, + "probability": 1.0 + }, + { + "word": " inadvertently", + "start": 126.3, + "end": 126.88, + "probability": 1.0 + }, + { + "word": " fly", + "start": 126.88, + "end": 127.14, + "probability": 1.0 + }, + { + "word": " into", + "start": 127.14, + "end": 127.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 127.46, + "end": 127.6, + "probability": 1.0 + }, + { + "word": " building", + "start": 127.6, + "end": 127.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 127.78, + "end": 128.02, + "probability": 1.0 + }, + { + "word": " that.", + "start": 128.02, + "end": 128.22, + "probability": 1.0 + } + ] + }, + { + "id": 46, + "text": "And that's terrible for all the people that lost their lives.", + "start": 128.26, + "end": 129.98, + "words": [ + { + "word": " And", + "start": 128.26, + "end": 128.34, + "probability": 0.99755859375 + }, + { + "word": " that's", + "start": 128.34, + "end": 128.46, + "probability": 0.7919921875 + }, + { + "word": " terrible", + "start": 128.46, + "end": 128.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 128.74, + "end": 128.98, + "probability": 1.0 + }, + { + "word": " all", + "start": 128.98, + "end": 129.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 129.06, + "end": 129.14, + "probability": 1.0 + }, + { + "word": " people", + "start": 129.14, + "end": 129.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 129.32, + "end": 129.44, + "probability": 0.55419921875 + }, + { + "word": " lost", + "start": 129.44, + "end": 129.56, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 129.56, + "end": 129.78, + "probability": 1.0 + }, + { + "word": " lives.", + "start": 129.78, + "end": 129.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 47, + "text": "But then to, then once you knew that something was going on, that there was something else going on, that the mood changed dramatically.", + "start": 130.74, + "end": 138.78, + "words": [ + { + "word": " But", + "start": 130.74, + "end": 131.18, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 131.18, + "end": 131.44, + "probability": 1.0 + }, + { + "word": " to,", + "start": 131.44, + "end": 131.64, + "probability": 0.72314453125 + }, + { + "word": " then", + "start": 131.78, + "end": 133.8, + "probability": 0.99951171875 + }, + { + "word": " once", + "start": 133.8, + "end": 134.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 134.12, + "end": 134.24, + "probability": 1.0 + }, + { + "word": " knew", + "start": 134.24, + "end": 134.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 134.5, + "end": 134.62, + "probability": 1.0 + }, + { + "word": " something", + "start": 134.62, + "end": 134.82, + "probability": 1.0 + }, + { + "word": " was", + "start": 134.82, + "end": 135.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 135.04, + "end": 135.22, + "probability": 1.0 + }, + { + "word": " on,", + "start": 135.22, + "end": 135.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 135.62, + "end": 135.74, + "probability": 0.9970703125 + }, + { + "word": " there", + "start": 135.74, + "end": 135.96, + "probability": 1.0 + }, + { + "word": " was", + "start": 135.96, + "end": 136.08, + "probability": 1.0 + }, + { + "word": " something", + "start": 136.08, + "end": 136.28, + "probability": 1.0 + }, + { + "word": " else", + "start": 136.28, + "end": 136.62, + "probability": 1.0 + }, + { + "word": " going", + "start": 136.62, + "end": 136.8, + "probability": 1.0 + }, + { + "word": " on,", + "start": 136.8, + "end": 137.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 137.14, + "end": 137.22, + "probability": 0.849609375 + }, + { + "word": " the", + "start": 137.22, + "end": 137.36, + "probability": 1.0 + }, + { + "word": " mood", + "start": 137.36, + "end": 137.62, + "probability": 1.0 + }, + { + "word": " changed", + "start": 137.62, + "end": 137.98, + "probability": 1.0 + }, + { + "word": " dramatically.", + "start": 137.98, + "end": 138.78, + "probability": 1.0 + } + ] + }, + { + "id": 48, + "text": "And I remember going outside and it was just so silent.", + "start": 138.98, + "end": 143.14, + "words": [ + { + "word": " And", + "start": 138.98, + "end": 139.12, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 139.12, + "end": 139.14, + "probability": 1.0 + }, + { + "word": " remember", + "start": 139.14, + "end": 139.34, + "probability": 1.0 + }, + { + "word": " going", + "start": 139.34, + "end": 139.5, + "probability": 1.0 + }, + { + "word": " outside", + "start": 139.5, + "end": 139.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 139.94, + "end": 140.88, + "probability": 0.7421875 + }, + { + "word": " it", + "start": 140.88, + "end": 141.5, + "probability": 0.77685546875 + }, + { + "word": " was", + "start": 141.5, + "end": 142.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 142.02, + "end": 142.24, + "probability": 1.0 + }, + { + "word": " so", + "start": 142.24, + "end": 142.46, + "probability": 1.0 + }, + { + "word": " silent.", + "start": 142.46, + "end": 143.14, + "probability": 1.0 + } + ] + }, + { + "id": 49, + "text": "And there was no cars.", + "start": 143.7, + "end": 144.86, + "words": [ + { + "word": " And", + "start": 143.7, + "end": 144.14, + "probability": 0.857421875 + }, + { + "word": " there", + "start": 144.14, + "end": 144.28, + "probability": 1.0 + }, + { + "word": " was", + "start": 144.28, + "end": 144.4, + "probability": 1.0 + }, + { + "word": " no", + "start": 144.4, + "end": 144.52, + "probability": 1.0 + }, + { + "word": " cars.", + "start": 144.52, + "end": 144.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 50, + "text": "There was no, definitely no planes.", + "start": 145.08, + "end": 147.32, + "words": [ + { + "word": " There", + "start": 145.08, + "end": 145.46, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 145.46, + "end": 145.62, + "probability": 1.0 + }, + { + "word": " no,", + "start": 145.62, + "end": 145.9, + "probability": 0.99853515625 + }, + { + "word": " definitely", + "start": 145.96, + "end": 146.66, + "probability": 1.0 + }, + { + "word": " no", + "start": 146.66, + "end": 146.9, + "probability": 1.0 + }, + { + "word": " planes.", + "start": 146.9, + "end": 147.32, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "You know, everything was just.", + "start": 148.06, + "end": 149.84, + "words": [ + { + "word": " You", + "start": 148.06, + "end": 148.5, + "probability": 0.9912109375 + }, + { + "word": " know,", + "start": 148.5, + "end": 148.66, + "probability": 1.0 + }, + { + "word": " everything", + "start": 148.66, + "end": 149.04, + "probability": 1.0 + }, + { + "word": " was", + "start": 149.04, + "end": 149.54, + "probability": 1.0 + }, + { + "word": " just.", + "start": 149.54, + "end": 149.84, + "probability": 0.2205810546875 + } + ] + }, + { + "id": 52, + "text": "Shut down.", + "start": 149.86, + "end": 150.24, + "words": [ + { + "word": " Shut", + "start": 149.86, + "end": 149.94, + "probability": 0.058013916015625 + }, + { + "word": " down.", + "start": 149.94, + "end": 150.24, + "probability": 0.91455078125 + } + ] + }, + { + "id": 53, + "text": "And it was a very surreal day for me.", + "start": 150.64, + "end": 152.54, + "words": [ + { + "word": " And", + "start": 150.64, + "end": 151.08, + "probability": 0.896484375 + }, + { + "word": " it", + "start": 151.08, + "end": 151.2, + "probability": 0.99609375 + }, + { + "word": " was", + "start": 151.2, + "end": 151.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 151.3, + "end": 151.38, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 151.38, + "end": 151.54, + "probability": 0.99951171875 + }, + { + "word": " surreal", + "start": 151.54, + "end": 151.84, + "probability": 0.99853515625 + }, + { + "word": " day", + "start": 151.84, + "end": 152.1, + "probability": 0.99658203125 + }, + { + "word": " for", + "start": 152.1, + "end": 152.32, + "probability": 0.99658203125 + }, + { + "word": " me.", + "start": 152.32, + "end": 152.54, + "probability": 1.0 + } + ] + }, + { + "id": 54, + "text": "You know, and watching that.", + "start": 152.56, + "end": 154.1, + "words": [ + { + "word": " You", + "start": 152.56, + "end": 152.8, + "probability": 0.35302734375 + }, + { + "word": " know,", + "start": 152.8, + "end": 152.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 152.98, + "end": 153.14, + "probability": 0.998046875 + }, + { + "word": " watching", + "start": 153.14, + "end": 153.72, + "probability": 0.94970703125 + }, + { + "word": " that.", + "start": 153.72, + "end": 154.1, + "probability": 1.0 + } + ] + }, + { + "id": 55, + "text": "And I'm sure for everyone.", + "start": 154.14, + "end": 155.04, + "words": [ + { + "word": " And", + "start": 154.14, + "end": 154.24, + "probability": 0.9912109375 + }, + { + "word": " I'm", + "start": 154.24, + "end": 154.32, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 154.32, + "end": 154.52, + "probability": 0.994140625 + }, + { + "word": " for", + "start": 154.52, + "end": 154.74, + "probability": 1.0 + }, + { + "word": " everyone.", + "start": 154.74, + "end": 155.04, + "probability": 1.0 + } + ] + }, + { + "id": 56, + "text": "You know, to be able to watch that and just.", + "start": 155.26, + "end": 157.78, + "words": [ + { + "word": " You", + "start": 155.26, + "end": 155.7, + "probability": 0.9287109375 + }, + { + "word": " know,", + "start": 155.7, + "end": 155.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 155.8, + "end": 155.88, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 155.88, + "end": 155.96, + "probability": 1.0 + }, + { + "word": " able", + "start": 155.96, + "end": 156.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 156.1, + "end": 156.58, + "probability": 0.99951171875 + }, + { + "word": " watch", + "start": 156.58, + "end": 157.18, + "probability": 0.99365234375 + }, + { + "word": " that", + "start": 157.18, + "end": 157.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 157.46, + "end": 157.62, + "probability": 0.393798828125 + }, + { + "word": " just.", + "start": 157.62, + "end": 157.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 57, + "text": "It's just amazing.", + "start": 159.06, + "end": 159.84, + "words": [ + { + "word": " It's", + "start": 159.06, + "end": 159.5, + "probability": 0.9462890625 + }, + { + "word": " just", + "start": 159.5, + "end": 159.62, + "probability": 1.0 + }, + { + "word": " amazing.", + "start": 159.62, + "end": 159.84, + "probability": 1.0 + } + ] + }, + { + "id": 58, + "text": "And so my tribute, at least to the 10th anniversary of the September 11th, is to remind people that, you know, we are a great country.", + "start": 162.26, + "end": 171.72, + "words": [ + { + "word": " And", + "start": 162.26, + "end": 162.7, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 162.7, + "end": 163.14, + "probability": 0.7470703125 + }, + { + "word": " my", + "start": 163.14, + "end": 163.56, + "probability": 0.8076171875 + }, + { + "word": " tribute,", + "start": 163.56, + "end": 163.94, + "probability": 1.0 + }, + { + "word": " at", + "start": 164.06, + "end": 164.48, + "probability": 1.0 + }, + { + "word": " least", + "start": 164.48, + "end": 164.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 164.72, + "end": 164.88, + "probability": 0.95458984375 + }, + { + "word": " the", + "start": 164.88, + "end": 165.14, + "probability": 1.0 + }, + { + "word": " 10th", + "start": 165.14, + "end": 165.82, + "probability": 0.99755859375 + }, + { + "word": " anniversary", + "start": 165.82, + "end": 166.1, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 166.1, + "end": 166.46, + "probability": 0.681640625 + }, + { + "word": " the", + "start": 166.46, + "end": 166.52, + "probability": 0.9794921875 + }, + { + "word": " September", + "start": 166.52, + "end": 166.82, + "probability": 0.99951171875 + }, + { + "word": " 11th,", + "start": 166.82, + "end": 167.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 167.38, + "end": 167.46, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 167.46, + "end": 167.6, + "probability": 1.0 + }, + { + "word": " remind", + "start": 167.6, + "end": 167.8, + "probability": 1.0 + }, + { + "word": " people", + "start": 167.8, + "end": 168.2, + "probability": 1.0 + }, + { + "word": " that,", + "start": 168.2, + "end": 169.52, + "probability": 0.83984375 + }, + { + "word": " you", + "start": 169.62, + "end": 170.34, + "probability": 1.0 + }, + { + "word": " know,", + "start": 170.34, + "end": 170.5, + "probability": 1.0 + }, + { + "word": " we", + "start": 170.52, + "end": 170.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 170.86, + "end": 171.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 171.1, + "end": 171.2, + "probability": 1.0 + }, + { + "word": " great", + "start": 171.2, + "end": 171.36, + "probability": 1.0 + }, + { + "word": " country.", + "start": 171.36, + "end": 171.72, + "probability": 1.0 + } + ] + }, + { + "id": 59, + "text": "And we are a wonderful people.", + "start": 172.16, + "end": 175.44, + "words": [ + { + "word": " And", + "start": 172.16, + "end": 172.6, + "probability": 0.978515625 + }, + { + "word": " we", + "start": 172.6, + "end": 173.22, + "probability": 1.0 + }, + { + "word": " are", + "start": 173.22, + "end": 173.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 173.64, + "end": 174.06, + "probability": 0.99951171875 + }, + { + "word": " wonderful", + "start": 174.06, + "end": 174.98, + "probability": 0.99755859375 + }, + { + "word": " people.", + "start": 174.98, + "end": 175.44, + "probability": 1.0 + } + ] + }, + { + "id": 60, + "text": "And there may be, you know, there are things that we don't do right on a global scale.", + "start": 175.72, + "end": 179.84, + "words": [ + { + "word": " And", + "start": 175.72, + "end": 175.72, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 175.72, + "end": 176.26, + "probability": 0.955078125 + }, + { + "word": " may", + "start": 176.26, + "end": 176.46, + "probability": 1.0 + }, + { + "word": " be,", + "start": 176.46, + "end": 176.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 176.76, + "end": 177.0, + "probability": 1.0 + }, + { + "word": " know,", + "start": 177.0, + "end": 177.18, + "probability": 1.0 + }, + { + "word": " there", + "start": 177.2, + "end": 177.36, + "probability": 0.6953125 + }, + { + "word": " are", + "start": 177.36, + "end": 177.44, + "probability": 1.0 + }, + { + "word": " things", + "start": 177.44, + "end": 177.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 177.92, + "end": 178.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 178.08, + "end": 178.22, + "probability": 1.0 + }, + { + "word": " don't", + "start": 178.22, + "end": 178.38, + "probability": 1.0 + }, + { + "word": " do", + "start": 178.38, + "end": 178.5, + "probability": 1.0 + }, + { + "word": " right", + "start": 178.5, + "end": 178.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 178.72, + "end": 179.18, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 179.18, + "end": 179.28, + "probability": 1.0 + }, + { + "word": " global", + "start": 179.28, + "end": 179.46, + "probability": 1.0 + }, + { + "word": " scale.", + "start": 179.46, + "end": 179.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 61, + "text": "There may be things where we don't make the best decisions.", + "start": 179.86, + "end": 183.1, + "words": [ + { + "word": " There", + "start": 179.86, + "end": 180.52, + "probability": 0.84521484375 + }, + { + "word": " may", + "start": 180.52, + "end": 180.68, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 180.68, + "end": 180.86, + "probability": 1.0 + }, + { + "word": " things", + "start": 180.86, + "end": 181.06, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 181.06, + "end": 181.4, + "probability": 0.99658203125 + }, + { + "word": " we", + "start": 181.4, + "end": 181.66, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 181.66, + "end": 182.02, + "probability": 1.0 + }, + { + "word": " make", + "start": 182.02, + "end": 182.22, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 182.22, + "end": 182.46, + "probability": 0.99853515625 + }, + { + "word": " best", + "start": 182.46, + "end": 182.66, + "probability": 1.0 + }, + { + "word": " decisions.", + "start": 182.66, + "end": 183.1, + "probability": 1.0 + } + ] + }, + { + "id": 62, + "text": "But we are fantastic people.", + "start": 184.28000000000003, + "end": 186.38, + "words": [ + { + "word": " But", + "start": 184.28000000000003, + "end": 184.76000000000002, + "probability": 0.9970703125 + }, + { + "word": " we", + "start": 184.76000000000002, + "end": 185.24, + "probability": 0.97216796875 + }, + { + "word": " are", + "start": 185.24, + "end": 185.46, + "probability": 1.0 + }, + { + "word": " fantastic", + "start": 185.46, + "end": 185.84, + "probability": 0.95654296875 + }, + { + "word": " people.", + "start": 185.84, + "end": 186.38, + "probability": 1.0 + } + ] + }, + { + "id": 63, + "text": "And we should never forget to honor the people that have fought and died for us and to keep us safe.", + "start": 186.48, + "end": 193.5, + "words": [ + { + "word": " And", + "start": 186.48, + "end": 186.62, + "probability": 0.95263671875 + }, + { + "word": " we", + "start": 186.62, + "end": 186.66, + "probability": 1.0 + }, + { + "word": " should", + "start": 186.66, + "end": 186.84, + "probability": 1.0 + }, + { + "word": " never", + "start": 186.84, + "end": 187.0, + "probability": 1.0 + }, + { + "word": " forget", + "start": 187.0, + "end": 187.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 187.4, + "end": 187.78, + "probability": 0.99462890625 + }, + { + "word": " honor", + "start": 187.78, + "end": 188.56, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 188.56, + "end": 188.8, + "probability": 1.0 + }, + { + "word": " people", + "start": 188.8, + "end": 189.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 189.04, + "end": 189.3, + "probability": 0.9970703125 + }, + { + "word": " have", + "start": 189.3, + "end": 189.44, + "probability": 1.0 + }, + { + "word": " fought", + "start": 189.44, + "end": 190.2, + "probability": 0.9912109375 + }, + { + "word": " and", + "start": 190.2, + "end": 190.7, + "probability": 1.0 + }, + { + "word": " died", + "start": 190.7, + "end": 190.98, + "probability": 1.0 + }, + { + "word": " for", + "start": 190.98, + "end": 191.22, + "probability": 1.0 + }, + { + "word": " us", + "start": 191.22, + "end": 191.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 191.5, + "end": 191.98, + "probability": 0.78515625 + }, + { + "word": " to", + "start": 191.98, + "end": 192.84, + "probability": 0.99951171875 + }, + { + "word": " keep", + "start": 192.84, + "end": 193.06, + "probability": 1.0 + }, + { + "word": " us", + "start": 193.06, + "end": 193.24, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 193.24, + "end": 193.5, + "probability": 1.0 + } + ] + }, + { + "id": 64, + "text": "And just to remember that, you know, in spite of tragedy, we are what makes America great.", + "start": 194.20000000000002, + "end": 201.94, + "words": [ + { + "word": " And", + "start": 194.20000000000002, + "end": 194.68, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 194.68, + "end": 195.14, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 195.14, + "end": 195.3, + "probability": 0.9990234375 + }, + { + "word": " remember", + "start": 195.3, + "end": 195.56, + "probability": 1.0 + }, + { + "word": " that,", + "start": 195.56, + "end": 195.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 195.96, + "end": 196.18, + "probability": 0.8740234375 + }, + { + "word": " know,", + "start": 196.18, + "end": 196.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 196.4, + "end": 196.7, + "probability": 1.0 + }, + { + "word": " spite", + "start": 196.7, + "end": 197.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 197.04, + "end": 197.26, + "probability": 1.0 + }, + { + "word": " tragedy,", + "start": 197.26, + "end": 197.6, + "probability": 1.0 + }, + { + "word": " we", + "start": 197.82, + "end": 198.7, + "probability": 1.0 + }, + { + "word": " are", + "start": 198.7, + "end": 199.06, + "probability": 1.0 + }, + { + "word": " what", + "start": 199.06, + "end": 201.1, + "probability": 1.0 + }, + { + "word": " makes", + "start": 201.1, + "end": 201.38, + "probability": 1.0 + }, + { + "word": " America", + "start": 201.38, + "end": 201.64, + "probability": 1.0 + }, + { + "word": " great.", + "start": 201.64, + "end": 201.94, + "probability": 1.0 + } + ] + }, + { + "id": 65, + "text": "You know, each and every one of us.", + "start": 202.16, + "end": 203.64, + "words": [ + { + "word": " You", + "start": 202.16, + "end": 202.64, + "probability": 0.7109375 + }, + { + "word": " know,", + "start": 202.64, + "end": 202.72, + "probability": 1.0 + }, + { + "word": " each", + "start": 202.72, + "end": 202.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 202.9, + "end": 203.04, + "probability": 1.0 + }, + { + "word": " every", + "start": 203.04, + "end": 203.2, + "probability": 1.0 + }, + { + "word": " one", + "start": 203.2, + "end": 203.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 203.36, + "end": 203.48, + "probability": 1.0 + }, + { + "word": " us.", + "start": 203.48, + "end": 203.64, + "probability": 1.0 + } + ] + }, + { + "id": 66, + "text": "We are the ones that continue to go on.", + "start": 203.68, + "end": 207.72, + "words": [ + { + "word": " We", + "start": 203.68, + "end": 203.74, + "probability": 0.99658203125 + }, + { + "word": " are", + "start": 203.74, + "end": 203.82, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 203.82, + "end": 203.94, + "probability": 1.0 + }, + { + "word": " ones", + "start": 203.94, + "end": 204.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 204.14, + "end": 204.4, + "probability": 1.0 + }, + { + "word": " continue", + "start": 204.4, + "end": 205.76, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 205.76, + "end": 207.26, + "probability": 1.0 + }, + { + "word": " go", + "start": 207.26, + "end": 207.44, + "probability": 1.0 + }, + { + "word": " on.", + "start": 207.44, + "end": 207.72, + "probability": 1.0 + } + ] + }, + { + "id": 67, + "text": "That smile.", + "start": 207.78, + "end": 208.72, + "words": [ + { + "word": " That", + "start": 207.78, + "end": 208.0, + "probability": 0.962890625 + }, + { + "word": " smile.", + "start": 208.0, + "end": 208.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 68, + "text": "That remember.", + "start": 210.12000000000003, + "end": 211.08, + "words": [ + { + "word": " That", + "start": 210.12000000000003, + "end": 210.60000000000002, + "probability": 0.002010345458984375 + }, + { + "word": " remember.", + "start": 210.60000000000002, + "end": 211.08, + "probability": 0.79443359375 + } + ] + }, + { + "id": 69, + "text": "Endure through it all.", + "start": 211.7, + "end": 212.64, + "words": [ + { + "word": " Endure", + "start": 211.7, + "end": 212.14, + "probability": 0.998046875 + }, + { + "word": " through", + "start": 212.14, + "end": 212.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 212.38, + "end": 212.56, + "probability": 1.0 + }, + { + "word": " all.", + "start": 212.56, + "end": 212.64, + "probability": 1.0 + } + ] + }, + { + "id": 70, + "text": "Yeah.", + "start": 212.8, + "end": 213.04, + "words": [ + { + "word": " Yeah.", + "start": 212.8, + "end": 213.04, + "probability": 0.92236328125 + } + ] + }, + { + "id": 71, + "text": "Just remember that, you know, you are the greatness.", + "start": 213.1, + "end": 216.1, + "words": [ + { + "word": " Just", + "start": 213.1, + "end": 213.56, + "probability": 0.7705078125 + }, + { + "word": " remember", + "start": 213.56, + "end": 214.04, + "probability": 1.0 + }, + { + "word": " that,", + "start": 214.04, + "end": 214.38, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 214.38, + "end": 214.88, + "probability": 0.9560546875 + }, + { + "word": " know,", + "start": 214.88, + "end": 215.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 215.08, + "end": 215.28, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 215.28, + "end": 215.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 215.64, + "end": 215.82, + "probability": 1.0 + }, + { + "word": " greatness.", + "start": 215.82, + "end": 216.1, + "probability": 1.0 + } + ] + }, + { + "id": 72, + "text": "And make sure that whatever you do on a daily basis is being more of that.", + "start": 216.76000000000002, + "end": 223.78, + "words": [ + { + "word": " And", + "start": 216.76000000000002, + "end": 217.24, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 217.24, + "end": 217.72, + "probability": 0.9658203125 + }, + { + "word": " sure", + "start": 217.72, + "end": 218.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 218.38, + "end": 218.54, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 218.54, + "end": 218.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 218.78, + "end": 219.08, + "probability": 1.0 + }, + { + "word": " do", + "start": 219.08, + "end": 219.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 219.3, + "end": 219.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 219.46, + "end": 219.52, + "probability": 1.0 + }, + { + "word": " daily", + "start": 219.52, + "end": 219.72, + "probability": 1.0 + }, + { + "word": " basis", + "start": 219.72, + "end": 220.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 220.12, + "end": 221.08, + "probability": 0.98876953125 + }, + { + "word": " being", + "start": 221.08, + "end": 222.04, + "probability": 0.98046875 + }, + { + "word": " more", + "start": 222.04, + "end": 223.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 223.14, + "end": 223.4, + "probability": 1.0 + }, + { + "word": " that.", + "start": 223.4, + "end": 223.78, + "probability": 1.0 + } + ] + }, + { + "id": 73, + "text": "Right?", + "start": 224.5, + "end": 224.98, + "words": [ + { + "word": " Right?", + "start": 224.5, + "end": 224.98, + "probability": 0.9296875 + } + ] + }, + { + "id": 74, + "text": "Every day I live my life trying to be a better person than I was yesterday.", + "start": 225.0, + "end": 227.9, + "words": [ + { + "word": " Every", + "start": 225.0, + "end": 225.38, + "probability": 0.984375 + }, + { + "word": " day", + "start": 225.38, + "end": 225.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 225.56, + "end": 225.7, + "probability": 0.99072265625 + }, + { + "word": " live", + "start": 225.7, + "end": 225.88, + "probability": 1.0 + }, + { + "word": " my", + "start": 225.88, + "end": 226.02, + "probability": 1.0 + }, + { + "word": " life", + "start": 226.02, + "end": 226.32, + "probability": 1.0 + }, + { + "word": " trying", + "start": 226.32, + "end": 226.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 226.48, + "end": 226.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 226.62, + "end": 226.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 226.68, + "end": 226.76, + "probability": 1.0 + }, + { + "word": " better", + "start": 226.76, + "end": 226.92, + "probability": 1.0 + }, + { + "word": " person", + "start": 226.92, + "end": 227.22, + "probability": 1.0 + }, + { + "word": " than", + "start": 227.22, + "end": 227.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 227.34, + "end": 227.44, + "probability": 1.0 + }, + { + "word": " was", + "start": 227.44, + "end": 227.6, + "probability": 1.0 + }, + { + "word": " yesterday.", + "start": 227.6, + "end": 227.9, + "probability": 1.0 + } + ] + }, + { + "id": 75, + "text": "Right.", + "start": 228.24, + "end": 228.5, + "words": [ + { + "word": " Right.", + "start": 228.24, + "end": 228.5, + "probability": 0.8701171875 + } + ] + }, + { + "id": 76, + "text": "And so I just urge people to do that in their own lives as far as, you know, if you want to have a wonderful life.", + "start": 228.54, + "end": 239.38, + "words": [ + { + "word": " And", + "start": 228.54, + "end": 228.98, + "probability": 0.9970703125 + }, + { + "word": " so", + "start": 228.98, + "end": 229.22, + "probability": 1.0 + }, + { + "word": " I", + "start": 229.22, + "end": 229.76, + "probability": 0.7978515625 + }, + { + "word": " just", + "start": 229.76, + "end": 230.6, + "probability": 0.998046875 + }, + { + "word": " urge", + "start": 230.6, + "end": 231.48, + "probability": 1.0 + }, + { + "word": " people", + "start": 231.48, + "end": 231.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 231.82, + "end": 232.06, + "probability": 1.0 + }, + { + "word": " do", + "start": 232.06, + "end": 232.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 232.22, + "end": 232.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 232.36, + "end": 232.5, + "probability": 1.0 + }, + { + "word": " their", + "start": 232.5, + "end": 232.58, + "probability": 1.0 + }, + { + "word": " own", + "start": 232.58, + "end": 232.74, + "probability": 1.0 + }, + { + "word": " lives", + "start": 232.74, + "end": 233.02, + "probability": 1.0 + }, + { + "word": " as", + "start": 233.02, + "end": 233.46, + "probability": 0.410888671875 + }, + { + "word": " far", + "start": 233.46, + "end": 233.6, + "probability": 1.0 + }, + { + "word": " as,", + "start": 233.6, + "end": 233.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 233.98, + "end": 234.52, + "probability": 1.0 + }, + { + "word": " know,", + "start": 234.52, + "end": 234.64, + "probability": 1.0 + }, + { + "word": " if", + "start": 234.66, + "end": 234.88, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 234.88, + "end": 235.1, + "probability": 1.0 + }, + { + "word": " want", + "start": 235.1, + "end": 235.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 235.36, + "end": 235.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 235.56, + "end": 236.24, + "probability": 0.7724609375 + }, + { + "word": " a", + "start": 236.24, + "end": 238.74, + "probability": 1.0 + }, + { + "word": " wonderful", + "start": 238.74, + "end": 239.02, + "probability": 1.0 + }, + { + "word": " life.", + "start": 239.02, + "end": 239.38, + "probability": 1.0 + } + ] + }, + { + "id": 77, + "text": "Right.", + "start": 239.86, + "end": 240.28, + "words": [ + { + "word": " Right.", + "start": 239.86, + "end": 240.28, + "probability": 0.07781982421875 + } + ] + }, + { + "id": 78, + "text": "And even though my life isn't, you know, isn't all daffodils, right, you know, you know, I'm happy with who I am because I work very hard to make sure that I am better than I was yesterday.", + "start": 240.3, + "end": 251.96, + "words": [ + { + "word": " And", + "start": 240.3, + "end": 240.42, + "probability": 0.99755859375 + }, + { + "word": " even", + "start": 240.42, + "end": 240.62, + "probability": 0.99951171875 + }, + { + "word": " though", + "start": 240.62, + "end": 240.8, + "probability": 1.0 + }, + { + "word": " my", + "start": 240.8, + "end": 241.02, + "probability": 1.0 + }, + { + "word": " life", + "start": 241.02, + "end": 241.38, + "probability": 1.0 + }, + { + "word": " isn't,", + "start": 241.38, + "end": 241.7, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 241.7, + "end": 241.92, + "probability": 1.0 + }, + { + "word": " know,", + "start": 241.92, + "end": 242.14, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 242.14, + "end": 243.4, + "probability": 0.8955078125 + }, + { + "word": " all", + "start": 243.4, + "end": 243.54, + "probability": 1.0 + }, + { + "word": " daffodils,", + "start": 243.54, + "end": 244.24, + "probability": 0.9990234375 + }, + { + "word": " right,", + "start": 244.24, + "end": 244.48, + "probability": 0.5087890625 + }, + { + "word": " you", + "start": 244.56, + "end": 244.68, + "probability": 1.0 + }, + { + "word": " know,", + "start": 244.68, + "end": 244.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 244.92, + "end": 246.22, + "probability": 0.7724609375 + }, + { + "word": " know,", + "start": 246.22, + "end": 246.92, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 246.92, + "end": 247.28, + "probability": 0.99853515625 + }, + { + "word": " happy", + "start": 247.28, + "end": 247.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 247.58, + "end": 247.76, + "probability": 1.0 + }, + { + "word": " who", + "start": 247.76, + "end": 247.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 247.86, + "end": 247.98, + "probability": 1.0 + }, + { + "word": " am", + "start": 247.98, + "end": 248.16, + "probability": 1.0 + }, + { + "word": " because", + "start": 248.16, + "end": 248.42, + "probability": 0.94775390625 + }, + { + "word": " I", + "start": 248.42, + "end": 248.68, + "probability": 1.0 + }, + { + "word": " work", + "start": 248.68, + "end": 248.88, + "probability": 0.96240234375 + }, + { + "word": " very", + "start": 248.88, + "end": 249.32, + "probability": 1.0 + }, + { + "word": " hard", + "start": 249.32, + "end": 249.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 249.7, + "end": 249.88, + "probability": 1.0 + }, + { + "word": " make", + "start": 249.88, + "end": 250.06, + "probability": 1.0 + }, + { + "word": " sure", + "start": 250.06, + "end": 250.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 250.28, + "end": 250.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 250.44, + "end": 250.64, + "probability": 1.0 + }, + { + "word": " am", + "start": 250.64, + "end": 250.9, + "probability": 1.0 + }, + { + "word": " better", + "start": 250.9, + "end": 251.22, + "probability": 1.0 + }, + { + "word": " than", + "start": 251.22, + "end": 251.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 251.38, + "end": 251.46, + "probability": 1.0 + }, + { + "word": " was", + "start": 251.46, + "end": 251.62, + "probability": 1.0 + }, + { + "word": " yesterday.", + "start": 251.62, + "end": 251.96, + "probability": 1.0 + } + ] + }, + { + "id": 79, + "text": "Right.", + "start": 252.04, + "end": 252.38, + "words": [ + { + "word": " Right.", + "start": 252.04, + "end": 252.38, + "probability": 0.99658203125 + } + ] + }, + { + "id": 80, + "text": "Yeah.", + "start": 252.62, + "end": 253.06, + "words": [ + { + "word": " Yeah.", + "start": 252.62, + "end": 253.06, + "probability": 0.6455078125 + } + ] + }, + { + "id": 81, + "text": "And then I was 10 years ago, I was full of anger and resentment and rage about tomorrow.", + "start": 253.16, + "end": 258.16, + "words": [ + { + "word": " And", + "start": 253.16, + "end": 253.28, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 253.28, + "end": 253.46, + "probability": 0.79150390625 + }, + { + "word": " I", + "start": 253.46, + "end": 253.74, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 253.74, + "end": 253.9, + "probability": 1.0 + }, + { + "word": " 10", + "start": 253.9, + "end": 254.24, + "probability": 0.82177734375 + }, + { + "word": " years", + "start": 254.24, + "end": 254.44, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 254.44, + "end": 254.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 254.74, + "end": 254.88, + "probability": 1.0 + }, + { + "word": " was", + "start": 254.88, + "end": 255.02, + "probability": 1.0 + }, + { + "word": " full", + "start": 255.02, + "end": 255.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 255.28, + "end": 255.4, + "probability": 1.0 + }, + { + "word": " anger", + "start": 255.4, + "end": 255.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 255.74, + "end": 255.94, + "probability": 1.0 + }, + { + "word": " resentment", + "start": 255.94, + "end": 256.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 256.3, + "end": 256.6, + "probability": 1.0 + }, + { + "word": " rage", + "start": 256.6, + "end": 256.92, + "probability": 1.0 + }, + { + "word": " about", + "start": 256.92, + "end": 257.3, + "probability": 1.0 + }, + { + "word": " tomorrow.", + "start": 257.3, + "end": 258.16, + "probability": 0.12451171875 + } + ] + }, + { + "id": 82, + "text": "And, you know, it's now I look at it very differently.", + "start": 259.66, + "end": 263.1, + "words": [ + { + "word": " And,", + "start": 259.66, + "end": 260.1, + "probability": 0.90576171875 + }, + { + "word": " you", + "start": 260.1, + "end": 260.54, + "probability": 1.0 + }, + { + "word": " know,", + "start": 260.54, + "end": 260.78, + "probability": 1.0 + }, + { + "word": " it's", + "start": 260.78, + "end": 261.2, + "probability": 0.982421875 + }, + { + "word": " now", + "start": 261.2, + "end": 262.02, + "probability": 0.935546875 + }, + { + "word": " I", + "start": 262.02, + "end": 262.22, + "probability": 1.0 + }, + { + "word": " look", + "start": 262.22, + "end": 262.4, + "probability": 1.0 + }, + { + "word": " at", + "start": 262.4, + "end": 262.54, + "probability": 1.0 + }, + { + "word": " it", + "start": 262.54, + "end": 262.62, + "probability": 1.0 + }, + { + "word": " very", + "start": 262.62, + "end": 262.8, + "probability": 1.0 + }, + { + "word": " differently.", + "start": 262.8, + "end": 263.1, + "probability": 1.0 + } + ] + }, + { + "id": 83, + "text": "You know, I've had the opportunity to mature a little over the last 10 years and to say, well.", + "start": 263.48, + "end": 269.02, + "words": [ + { + "word": " You", + "start": 263.48, + "end": 263.92, + "probability": 0.98828125 + }, + { + "word": " know,", + "start": 263.92, + "end": 264.1, + "probability": 1.0 + }, + { + "word": " I've", + "start": 264.1, + "end": 264.94, + "probability": 1.0 + }, + { + "word": " had", + "start": 264.94, + "end": 265.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 265.2, + "end": 265.36, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 265.36, + "end": 265.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 265.86, + "end": 266.26, + "probability": 1.0 + }, + { + "word": " mature", + "start": 266.26, + "end": 266.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 266.54, + "end": 267.2, + "probability": 1.0 + }, + { + "word": " little", + "start": 267.2, + "end": 267.36, + "probability": 1.0 + }, + { + "word": " over", + "start": 267.36, + "end": 267.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 267.58, + "end": 267.74, + "probability": 1.0 + }, + { + "word": " last", + "start": 267.74, + "end": 267.94, + "probability": 1.0 + }, + { + "word": " 10", + "start": 267.94, + "end": 268.12, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 268.12, + "end": 268.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 268.4, + "end": 268.56, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 268.56, + "end": 268.64, + "probability": 1.0 + }, + { + "word": " say,", + "start": 268.64, + "end": 268.82, + "probability": 1.0 + }, + { + "word": " well.", + "start": 268.86, + "end": 269.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 84, + "text": "This is just an opportunity for us to be better.", + "start": 270.4, + "end": 272.72, + "words": [ + { + "word": " This", + "start": 270.4, + "end": 270.84, + "probability": 0.39501953125 + }, + { + "word": " is", + "start": 270.84, + "end": 271.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 271.06, + "end": 271.26, + "probability": 1.0 + }, + { + "word": " an", + "start": 271.26, + "end": 271.4, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 271.4, + "end": 271.76, + "probability": 1.0 + }, + { + "word": " for", + "start": 271.76, + "end": 272.16, + "probability": 0.99658203125 + }, + { + "word": " us", + "start": 272.16, + "end": 272.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 272.28, + "end": 272.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 272.38, + "end": 272.46, + "probability": 1.0 + }, + { + "word": " better.", + "start": 272.46, + "end": 272.72, + "probability": 1.0 + } + ] + }, + { + "id": 85, + "text": "So please observe your September 11th, you know, whatever you're doing for this day.", + "start": 274.76, + "end": 279.98, + "words": [ + { + "word": " So", + "start": 274.76, + "end": 275.2, + "probability": 0.88720703125 + }, + { + "word": " please", + "start": 275.2, + "end": 275.64, + "probability": 0.8212890625 + }, + { + "word": " observe", + "start": 275.64, + "end": 276.02, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 276.02, + "end": 276.32, + "probability": 0.99951171875 + }, + { + "word": " September", + "start": 276.32, + "end": 276.9, + "probability": 0.98681640625 + }, + { + "word": " 11th,", + "start": 276.9, + "end": 277.8, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 277.8, + "end": 277.88, + "probability": 0.330322265625 + }, + { + "word": " know,", + "start": 277.88, + "end": 278.06, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 278.08, + "end": 279.02, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 279.02, + "end": 279.38, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 279.38, + "end": 279.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 279.5, + "end": 279.68, + "probability": 1.0 + }, + { + "word": " this", + "start": 279.68, + "end": 279.78, + "probability": 0.99951171875 + }, + { + "word": " day.", + "start": 279.78, + "end": 279.98, + "probability": 1.0 + } + ] + }, + { + "id": 86, + "text": "I urge you to reflect back on what you were 10 years ago.", + "start": 280.66, + "end": 284.7, + "words": [ + { + "word": " I", + "start": 280.66, + "end": 281.1, + "probability": 0.9287109375 + }, + { + "word": " urge", + "start": 281.1, + "end": 281.54, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 281.54, + "end": 281.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 281.7, + "end": 281.78, + "probability": 1.0 + }, + { + "word": " reflect", + "start": 281.78, + "end": 282.22, + "probability": 1.0 + }, + { + "word": " back", + "start": 282.22, + "end": 282.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 282.54, + "end": 282.8, + "probability": 1.0 + }, + { + "word": " what", + "start": 282.8, + "end": 283.2, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 283.2, + "end": 283.62, + "probability": 1.0 + }, + { + "word": " were", + "start": 283.62, + "end": 283.84, + "probability": 1.0 + }, + { + "word": " 10", + "start": 283.84, + "end": 284.24, + "probability": 0.810546875 + }, + { + "word": " years", + "start": 284.24, + "end": 284.44, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 284.44, + "end": 284.7, + "probability": 1.0 + } + ] + }, + { + "id": 87, + "text": "And I hope that you're a better person today, not simply because of it, just as a reminder of that.", + "start": 285.2, + "end": 292.0, + "words": [ + { + "word": " And", + "start": 285.2, + "end": 285.64, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 285.64, + "end": 285.94, + "probability": 1.0 + }, + { + "word": " hope", + "start": 285.94, + "end": 286.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 286.44, + "end": 286.66, + "probability": 1.0 + }, + { + "word": " you're", + "start": 286.66, + "end": 287.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 287.02, + "end": 287.08, + "probability": 1.0 + }, + { + "word": " better", + "start": 287.08, + "end": 287.26, + "probability": 1.0 + }, + { + "word": " person", + "start": 287.26, + "end": 287.54, + "probability": 1.0 + }, + { + "word": " today,", + "start": 287.54, + "end": 287.78, + "probability": 1.0 + }, + { + "word": " not", + "start": 287.86, + "end": 288.84, + "probability": 0.99951171875 + }, + { + "word": " simply", + "start": 288.84, + "end": 289.44, + "probability": 1.0 + }, + { + "word": " because", + "start": 289.44, + "end": 289.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 289.7, + "end": 289.94, + "probability": 1.0 + }, + { + "word": " it,", + "start": 289.94, + "end": 290.1, + "probability": 1.0 + }, + { + "word": " just", + "start": 290.14, + "end": 290.32, + "probability": 0.2281494140625 + }, + { + "word": " as", + "start": 290.32, + "end": 290.58, + "probability": 0.9453125 + }, + { + "word": " a", + "start": 290.58, + "end": 291.24, + "probability": 1.0 + }, + { + "word": " reminder", + "start": 291.24, + "end": 291.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 291.6, + "end": 291.84, + "probability": 1.0 + }, + { + "word": " that.", + "start": 291.84, + "end": 292.0, + "probability": 1.0 + } + ] + }, + { + "id": 88, + "text": "Absolutely.", + "start": 292.14, + "end": 292.44, + "words": [ + { + "word": " Absolutely.", + "start": 292.14, + "end": 292.44, + "probability": 0.99560546875 + } + ] + }, + { + "id": 89, + "text": "Go out and do something for the community tomorrow.", + "start": 292.46, + "end": 294.16, + "words": [ + { + "word": " Go", + "start": 292.46, + "end": 292.66, + "probability": 0.99560546875 + }, + { + "word": " out", + "start": 292.66, + "end": 292.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 292.8, + "end": 292.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 292.9, + "end": 293.02, + "probability": 1.0 + }, + { + "word": " something", + "start": 293.02, + "end": 293.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 293.28, + "end": 293.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 293.5, + "end": 293.56, + "probability": 1.0 + }, + { + "word": " community", + "start": 293.56, + "end": 293.82, + "probability": 1.0 + }, + { + "word": " tomorrow.", + "start": 293.82, + "end": 294.16, + "probability": 1.0 + } + ] + }, + { + "id": 90, + "text": "You know, go out there and, you know, just show your support a little bit, you know.", + "start": 294.34, + "end": 298.28, + "words": [ + { + "word": " You", + "start": 294.34, + "end": 294.46, + "probability": 0.880859375 + }, + { + "word": " know,", + "start": 294.46, + "end": 294.54, + "probability": 1.0 + }, + { + "word": " go", + "start": 294.54, + "end": 294.64, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 294.64, + "end": 294.76, + "probability": 1.0 + }, + { + "word": " there", + "start": 294.76, + "end": 294.92, + "probability": 1.0 + }, + { + "word": " and,", + "start": 294.92, + "end": 295.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 295.18, + "end": 296.12, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 296.12, + "end": 296.28, + "probability": 1.0 + }, + { + "word": " just", + "start": 296.3, + "end": 296.44, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 296.44, + "end": 296.62, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 296.62, + "end": 296.78, + "probability": 1.0 + }, + { + "word": " support", + "start": 296.78, + "end": 297.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 297.02, + "end": 297.22, + "probability": 1.0 + }, + { + "word": " little", + "start": 297.22, + "end": 297.3, + "probability": 1.0 + }, + { + "word": " bit,", + "start": 297.3, + "end": 297.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 297.58, + "end": 298.06, + "probability": 0.99951171875 + }, + { + "word": " know.", + "start": 298.06, + "end": 298.28, + "probability": 1.0 + } + ] + }, + { + "id": 91, + "text": "Or just, you know.", + "start": 298.72, + "end": 299.78, + "words": [ + { + "word": " Or", + "start": 298.72, + "end": 299.16, + "probability": 0.455322265625 + }, + { + "word": " just,", + "start": 299.16, + "end": 299.36, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 299.46, + "end": 299.68, + "probability": 1.0 + }, + { + "word": " know.", + "start": 299.68, + "end": 299.78, + "probability": 1.0 + } + ] + }, + { + "id": 92, + "text": "Thank an officer or a fireman that, you know, because these are the guys that they're the heroes of September 11th.", + "start": 299.86, + "end": 305.28, + "words": [ + { + "word": " Thank", + "start": 299.86, + "end": 299.94, + "probability": 0.351318359375 + }, + { + "word": " an", + "start": 299.94, + "end": 300.48, + "probability": 0.99853515625 + }, + { + "word": " officer", + "start": 300.48, + "end": 301.04, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 301.04, + "end": 301.32, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 301.32, + "end": 301.42, + "probability": 1.0 + }, + { + "word": " fireman", + "start": 301.42, + "end": 301.8, + "probability": 1.0 + }, + { + "word": " that,", + "start": 301.8, + "end": 302.04, + "probability": 0.044281005859375 + }, + { + "word": " you", + "start": 302.04, + "end": 302.18, + "probability": 0.99169921875 + }, + { + "word": " know,", + "start": 302.18, + "end": 302.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 302.26, + "end": 302.38, + "probability": 0.99169921875 + }, + { + "word": " these", + "start": 302.38, + "end": 302.6, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 302.6, + "end": 302.78, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 302.78, + "end": 302.86, + "probability": 1.0 + }, + { + "word": " guys", + "start": 302.86, + "end": 303.04, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 303.04, + "end": 303.3, + "probability": 0.8525390625 + }, + { + "word": " they're", + "start": 303.3, + "end": 304.04, + "probability": 0.8037109375 + }, + { + "word": " the", + "start": 304.04, + "end": 304.14, + "probability": 1.0 + }, + { + "word": " heroes", + "start": 304.14, + "end": 304.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 304.38, + "end": 304.5, + "probability": 1.0 + }, + { + "word": " September", + "start": 304.5, + "end": 304.74, + "probability": 0.99951171875 + }, + { + "word": " 11th.", + "start": 304.74, + "end": 305.28, + "probability": 0.9970703125 + } + ] + }, + { + "id": 93, + "text": "So, you know, I mean, I was in the Army, but I'm not a hero of September 11th by no means.", + "start": 305.68, + "end": 308.98, + "words": [ + { + "word": " So,", + "start": 305.68, + "end": 306.0, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 306.08, + "end": 306.24, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 306.24, + "end": 306.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 306.38, + "end": 306.5, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 306.5, + "end": 306.64, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 306.66, + "end": 306.72, + "probability": 1.0 + }, + { + "word": " was", + "start": 306.72, + "end": 306.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 306.86, + "end": 306.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 306.96, + "end": 307.02, + "probability": 1.0 + }, + { + "word": " Army,", + "start": 307.02, + "end": 307.18, + "probability": 0.81005859375 + }, + { + "word": " but", + "start": 307.28, + "end": 307.4, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 307.4, + "end": 307.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 307.54, + "end": 307.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 307.64, + "end": 307.74, + "probability": 1.0 + }, + { + "word": " hero", + "start": 307.74, + "end": 307.88, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 307.88, + "end": 307.98, + "probability": 0.81787109375 + }, + { + "word": " September", + "start": 307.98, + "end": 308.14, + "probability": 1.0 + }, + { + "word": " 11th", + "start": 308.14, + "end": 308.5, + "probability": 0.9990234375 + }, + { + "word": " by", + "start": 308.5, + "end": 308.56, + "probability": 0.755859375 + }, + { + "word": " no", + "start": 308.56, + "end": 308.66, + "probability": 1.0 + }, + { + "word": " means.", + "start": 308.66, + "end": 308.98, + "probability": 1.0 + } + ] + }, + { + "id": 94, + "text": "These firefighters and cops and all these guys, even though they weren't over in New York, maybe.", + "start": 309.06, + "end": 314.28, + "words": [ + { + "word": " These", + "start": 309.06, + "end": 309.28, + "probability": 0.99853515625 + }, + { + "word": " firefighters", + "start": 309.28, + "end": 310.32, + "probability": 0.77880859375 + }, + { + "word": " and", + "start": 310.32, + "end": 311.4, + "probability": 1.0 + }, + { + "word": " cops", + "start": 311.4, + "end": 311.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 311.7, + "end": 311.96, + "probability": 1.0 + }, + { + "word": " all", + "start": 311.96, + "end": 312.02, + "probability": 1.0 + }, + { + "word": " these", + "start": 312.02, + "end": 312.18, + "probability": 1.0 + }, + { + "word": " guys,", + "start": 312.18, + "end": 312.42, + "probability": 1.0 + }, + { + "word": " even", + "start": 312.48, + "end": 312.6, + "probability": 0.99267578125 + }, + { + "word": " though", + "start": 312.6, + "end": 312.72, + "probability": 1.0 + }, + { + "word": " they", + "start": 312.72, + "end": 312.82, + "probability": 1.0 + }, + { + "word": " weren't", + "start": 312.82, + "end": 313.14, + "probability": 0.8359375 + }, + { + "word": " over", + "start": 313.14, + "end": 313.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 313.4, + "end": 313.68, + "probability": 1.0 + }, + { + "word": " New", + "start": 313.68, + "end": 313.78, + "probability": 1.0 + }, + { + "word": " York,", + "start": 313.78, + "end": 314.04, + "probability": 1.0 + }, + { + "word": " maybe.", + "start": 314.08, + "end": 314.28, + "probability": 0.9873046875 + } + ] + }, + { + "id": 95, + "text": "First responders are the ones that have to live with this on a daily basis, and especially right now.", + "start": 314.48, + "end": 318.36, + "words": [ + { + "word": " First", + "start": 314.48, + "end": 314.78, + "probability": 0.99658203125 + }, + { + "word": " responders", + "start": 314.78, + "end": 315.2, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 315.2, + "end": 315.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 315.42, + "end": 315.5, + "probability": 1.0 + }, + { + "word": " ones", + "start": 315.5, + "end": 315.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 315.68, + "end": 315.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 315.88, + "end": 316.12, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 316.12, + "end": 316.34, + "probability": 1.0 + }, + { + "word": " live", + "start": 316.34, + "end": 316.48, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 316.48, + "end": 316.62, + "probability": 1.0 + }, + { + "word": " this", + "start": 316.62, + "end": 316.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 316.8, + "end": 316.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 316.92, + "end": 317.02, + "probability": 1.0 + }, + { + "word": " daily", + "start": 317.02, + "end": 317.16, + "probability": 1.0 + }, + { + "word": " basis,", + "start": 317.16, + "end": 317.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 317.52, + "end": 317.66, + "probability": 0.9990234375 + }, + { + "word": " especially", + "start": 317.66, + "end": 317.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 317.84, + "end": 318.1, + "probability": 1.0 + }, + { + "word": " now.", + "start": 318.1, + "end": 318.36, + "probability": 1.0 + } + ] + }, + { + "id": 96, + "text": "Absolutely.", + "start": 318.44, + "end": 318.74, + "words": [ + { + "word": " Absolutely.", + "start": 318.44, + "end": 318.74, + "probability": 0.9951171875 + } + ] + }, + { + "id": 97, + "text": "You think about what they're doing right now in New York.", + "start": 318.88, + "end": 320.56, + "words": [ + { + "word": " You", + "start": 318.88, + "end": 318.96, + "probability": 0.8291015625 + }, + { + "word": " think", + "start": 318.96, + "end": 319.02, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 319.02, + "end": 319.18, + "probability": 1.0 + }, + { + "word": " what", + "start": 319.18, + "end": 319.34, + "probability": 1.0 + }, + { + "word": " they're", + "start": 319.34, + "end": 319.5, + "probability": 1.0 + }, + { + "word": " doing", + "start": 319.5, + "end": 319.66, + "probability": 1.0 + }, + { + "word": " right", + "start": 319.66, + "end": 319.86, + "probability": 1.0 + }, + { + "word": " now", + "start": 319.86, + "end": 320.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 320.04, + "end": 320.16, + "probability": 1.0 + }, + { + "word": " New", + "start": 320.16, + "end": 320.26, + "probability": 1.0 + }, + { + "word": " York.", + "start": 320.26, + "end": 320.56, + "probability": 1.0 + } + ] + }, + { + "id": 98, + "text": "I mean, that place is on lockdown.", + "start": 320.82, + "end": 322.6, + "words": [ + { + "word": " I", + "start": 320.82, + "end": 321.14, + "probability": 0.99267578125 + }, + { + "word": " mean,", + "start": 321.14, + "end": 321.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 321.3, + "end": 321.48, + "probability": 0.978515625 + }, + { + "word": " place", + "start": 321.48, + "end": 322.0, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 322.0, + "end": 322.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 322.2, + "end": 322.3, + "probability": 0.99609375 + }, + { + "word": " lockdown.", + "start": 322.3, + "end": 322.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 99, + "text": "But, you know, thank you very much to everyone in the community that is first responder or has anything to do.", + "start": 323.6, + "end": 329.68, + "words": [ + { + "word": " But,", + "start": 323.6, + "end": 323.92, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 323.92, + "end": 324.24, + "probability": 1.0 + }, + { + "word": " know,", + "start": 324.24, + "end": 324.44, + "probability": 1.0 + }, + { + "word": " thank", + "start": 324.44, + "end": 325.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 325.16, + "end": 325.4, + "probability": 1.0 + }, + { + "word": " very", + "start": 325.4, + "end": 325.56, + "probability": 1.0 + }, + { + "word": " much", + "start": 325.56, + "end": 325.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 325.84, + "end": 326.12, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 326.12, + "end": 326.68, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 326.68, + "end": 327.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 327.14, + "end": 327.22, + "probability": 1.0 + }, + { + "word": " community", + "start": 327.22, + "end": 327.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 327.52, + "end": 327.86, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 327.86, + "end": 327.98, + "probability": 0.99658203125 + }, + { + "word": " first", + "start": 327.98, + "end": 328.26, + "probability": 0.8974609375 + }, + { + "word": " responder", + "start": 328.26, + "end": 328.78, + "probability": 0.662109375 + }, + { + "word": " or", + "start": 328.78, + "end": 328.94, + "probability": 0.9189453125 + }, + { + "word": " has", + "start": 328.94, + "end": 329.06, + "probability": 1.0 + }, + { + "word": " anything", + "start": 329.06, + "end": 329.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 329.28, + "end": 329.5, + "probability": 1.0 + }, + { + "word": " do.", + "start": 329.5, + "end": 329.68, + "probability": 1.0 + } + ] + }, + { + "id": 100, + "text": "With keeping us safe.", + "start": 329.86, + "end": 330.92, + "words": [ + { + "word": " With", + "start": 329.86, + "end": 329.98, + "probability": 0.040191650390625 + }, + { + "word": " keeping", + "start": 329.98, + "end": 330.4, + "probability": 0.94482421875 + }, + { + "word": " us", + "start": 330.4, + "end": 330.68, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 330.68, + "end": 330.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 101, + "text": "Absolutely.", + "start": 331.06, + "end": 331.36, + "words": [ + { + "word": " Absolutely.", + "start": 331.06, + "end": 331.36, + "probability": 0.97509765625 + } + ] + }, + { + "id": 102, + "text": "And if you just want to find something else to do, for you to do your good deed for the day tomorrow,", + "start": 331.62, + "end": 337.7, + "words": [ + { + "word": " And", + "start": 331.62, + "end": 332.02, + "probability": 0.880859375 + }, + { + "word": " if", + "start": 332.02, + "end": 332.14, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 332.14, + "end": 332.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 332.3, + "end": 332.88, + "probability": 0.94970703125 + }, + { + "word": " want", + "start": 332.88, + "end": 333.06, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 333.06, + "end": 333.18, + "probability": 0.998046875 + }, + { + "word": " find", + "start": 333.18, + "end": 333.4, + "probability": 0.9931640625 + }, + { + "word": " something", + "start": 333.4, + "end": 333.64, + "probability": 0.99755859375 + }, + { + "word": " else", + "start": 333.64, + "end": 333.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 333.82, + "end": 333.98, + "probability": 0.92578125 + }, + { + "word": " do,", + "start": 333.98, + "end": 334.46, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 334.64, + "end": 335.44, + "probability": 0.66064453125 + }, + { + "word": " you", + "start": 335.44, + "end": 335.6, + "probability": 0.96142578125 + }, + { + "word": " to", + "start": 335.6, + "end": 335.74, + "probability": 0.978515625 + }, + { + "word": " do", + "start": 335.74, + "end": 336.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 336.06, + "end": 336.24, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 336.24, + "end": 336.9, + "probability": 1.0 + }, + { + "word": " deed", + "start": 336.9, + "end": 337.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 337.18, + "end": 337.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 337.32, + "end": 337.36, + "probability": 1.0 + }, + { + "word": " day", + "start": 337.36, + "end": 337.52, + "probability": 1.0 + }, + { + "word": " tomorrow,", + "start": 337.52, + "end": 337.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 103, + "text": "there are actually lots of things that are going on.", + "start": 337.88, + "end": 339.28, + "words": [ + { + "word": " there", + "start": 337.88, + "end": 338.0, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 338.0, + "end": 338.04, + "probability": 0.96630859375 + }, + { + "word": " actually", + "start": 338.04, + "end": 338.22, + "probability": 1.0 + }, + { + "word": " lots", + "start": 338.22, + "end": 338.42, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 338.42, + "end": 338.54, + "probability": 1.0 + }, + { + "word": " things", + "start": 338.54, + "end": 338.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 338.7, + "end": 338.82, + "probability": 0.99755859375 + }, + { + "word": " are", + "start": 338.82, + "end": 338.86, + "probability": 1.0 + }, + { + "word": " going", + "start": 338.86, + "end": 339.02, + "probability": 1.0 + }, + { + "word": " on.", + "start": 339.02, + "end": 339.28, + "probability": 1.0 + } + ] + }, + { + "id": 104, + "text": "One of our listeners, they're actually doing a blood drive tomorrow from noon to 4.", + "start": 339.38, + "end": 344.66, + "words": [ + { + "word": " One", + "start": 339.38, + "end": 339.64, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 339.64, + "end": 339.72, + "probability": 1.0 + }, + { + "word": " our", + "start": 339.72, + "end": 339.78, + "probability": 1.0 + }, + { + "word": " listeners,", + "start": 339.78, + "end": 340.1, + "probability": 1.0 + }, + { + "word": " they're", + "start": 340.36, + "end": 341.12, + "probability": 0.99609375 + }, + { + "word": " actually", + "start": 341.12, + "end": 341.32, + "probability": 1.0 + }, + { + "word": " doing", + "start": 341.32, + "end": 341.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 341.6, + "end": 341.8, + "probability": 1.0 + }, + { + "word": " blood", + "start": 341.8, + "end": 342.0, + "probability": 0.99853515625 + }, + { + "word": " drive", + "start": 342.0, + "end": 342.22, + "probability": 1.0 + }, + { + "word": " tomorrow", + "start": 342.22, + "end": 342.52, + "probability": 1.0 + }, + { + "word": " from", + "start": 342.52, + "end": 343.68, + "probability": 0.94921875 + }, + { + "word": " noon", + "start": 343.68, + "end": 344.32, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 344.32, + "end": 344.44, + "probability": 1.0 + }, + { + "word": " 4.", + "start": 344.44, + "end": 344.66, + "probability": 0.67578125 + } + ] + }, + { + "id": 105, + "text": "It's a September 11th blood drive.", + "start": 344.8, + "end": 346.04, + "words": [ + { + "word": " It's", + "start": 344.8, + "end": 345.0, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 345.0, + "end": 345.04, + "probability": 0.98828125 + }, + { + "word": " September", + "start": 345.04, + "end": 345.28, + "probability": 1.0 + }, + { + "word": " 11th", + "start": 345.28, + "end": 345.6, + "probability": 0.9912109375 + }, + { + "word": " blood", + "start": 345.6, + "end": 345.74, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 345.74, + "end": 346.04, + "probability": 1.0 + } + ] + }, + { + "id": 106, + "text": "It's going to be at 250 West Speedway Boulevard.", + "start": 346.18, + "end": 348.62, + "words": [ + { + "word": " It's", + "start": 346.18, + "end": 346.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 346.5, + "end": 346.56, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 346.56, + "end": 346.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 346.62, + "end": 346.68, + "probability": 1.0 + }, + { + "word": " at", + "start": 346.68, + "end": 346.72, + "probability": 0.99951171875 + }, + { + "word": " 250", + "start": 346.72, + "end": 346.98, + "probability": 1.0 + }, + { + "word": " West", + "start": 346.98, + "end": 347.48, + "probability": 1.0 + }, + { + "word": " Speedway", + "start": 347.48, + "end": 348.16, + "probability": 1.0 + }, + { + "word": " Boulevard.", + "start": 348.16, + "end": 348.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 107, + "text": "The people that are doing it is the United Blood Services Muslims for Life.", + "start": 350.06, + "end": 354.4, + "words": [ + { + "word": " The", + "start": 350.06, + "end": 350.46, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 350.46, + "end": 350.8, + "probability": 0.908203125 + }, + { + "word": " that", + "start": 350.8, + "end": 351.18, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 351.18, + "end": 351.24, + "probability": 1.0 + }, + { + "word": " doing", + "start": 351.24, + "end": 351.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 351.46, + "end": 351.58, + "probability": 0.990234375 + }, + { + "word": " is", + "start": 351.58, + "end": 351.68, + "probability": 0.638671875 + }, + { + "word": " the", + "start": 351.68, + "end": 351.72, + "probability": 0.96630859375 + }, + { + "word": " United", + "start": 351.72, + "end": 352.54, + "probability": 1.0 + }, + { + "word": " Blood", + "start": 352.54, + "end": 352.9, + "probability": 1.0 + }, + { + "word": " Services", + "start": 352.9, + "end": 353.34, + "probability": 0.99755859375 + }, + { + "word": " Muslims", + "start": 353.34, + "end": 353.7, + "probability": 0.97900390625 + }, + { + "word": " for", + "start": 353.7, + "end": 354.08, + "probability": 0.9990234375 + }, + { + "word": " Life.", + "start": 354.08, + "end": 354.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 108, + "text": "And this is a Muslim mosque that is doing this.", + "start": 354.52, + "end": 356.7, + "words": [ + { + "word": " And", + "start": 354.52, + "end": 354.68, + "probability": 0.65576171875 + }, + { + "word": " this", + "start": 354.68, + "end": 354.72, + "probability": 0.953125 + }, + { + "word": " is", + "start": 354.72, + "end": 354.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 354.76, + "end": 354.94, + "probability": 1.0 + }, + { + "word": " Muslim", + "start": 354.94, + "end": 355.38, + "probability": 0.99951171875 + }, + { + "word": " mosque", + "start": 355.38, + "end": 355.76, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 355.76, + "end": 356.14, + "probability": 1.0 + }, + { + "word": " is", + "start": 356.14, + "end": 356.22, + "probability": 1.0 + }, + { + "word": " doing", + "start": 356.22, + "end": 356.46, + "probability": 1.0 + }, + { + "word": " this.", + "start": 356.46, + "end": 356.7, + "probability": 1.0 + } + ] + }, + { + "id": 109, + "text": "So I think that's very cool that they're doing a blood drive.", + "start": 356.8, + "end": 359.72, + "words": [ + { + "word": " So", + "start": 356.8, + "end": 356.92, + "probability": 0.92041015625 + }, + { + "word": " I", + "start": 356.92, + "end": 357.08, + "probability": 0.92724609375 + }, + { + "word": " think", + "start": 357.08, + "end": 357.28, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 357.28, + "end": 357.52, + "probability": 0.87109375 + }, + { + "word": " very", + "start": 357.52, + "end": 357.76, + "probability": 1.0 + }, + { + "word": " cool", + "start": 357.76, + "end": 358.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 358.1, + "end": 358.84, + "probability": 0.99755859375 + }, + { + "word": " they're", + "start": 358.84, + "end": 359.02, + "probability": 1.0 + }, + { + "word": " doing", + "start": 359.02, + "end": 359.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 359.2, + "end": 359.32, + "probability": 1.0 + }, + { + "word": " blood", + "start": 359.32, + "end": 359.46, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 359.46, + "end": 359.72, + "probability": 1.0 + } + ] + }, + { + "id": 110, + "text": "And anybody who gives blood will be put in for a $1,000 shopping spree with Schmidt Jewelers.", + "start": 360.50000000000006, + "end": 366.94, + "words": [ + { + "word": " And", + "start": 360.50000000000006, + "end": 360.84000000000003, + "probability": 0.72021484375 + }, + { + "word": " anybody", + "start": 360.84000000000003, + "end": 361.18, + "probability": 0.998046875 + }, + { + "word": " who", + "start": 361.18, + "end": 361.44, + "probability": 0.99951171875 + }, + { + "word": " gives", + "start": 361.44, + "end": 362.66, + "probability": 0.984375 + }, + { + "word": " blood", + "start": 362.66, + "end": 362.98, + "probability": 0.99755859375 + }, + { + "word": " will", + "start": 362.98, + "end": 363.5, + "probability": 0.97802734375 + }, + { + "word": " be", + "start": 363.5, + "end": 363.66, + "probability": 1.0 + }, + { + "word": " put", + "start": 363.66, + "end": 364.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 364.06, + "end": 364.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 364.5, + "end": 364.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 364.66, + "end": 364.84, + "probability": 0.99755859375 + }, + { + "word": " $1", + "start": 364.84, + "end": 365.0, + "probability": 0.9892578125 + }, + { + "word": ",000", + "start": 365.0, + "end": 365.3, + "probability": 1.0 + }, + { + "word": " shopping", + "start": 365.3, + "end": 365.68, + "probability": 0.99853515625 + }, + { + "word": " spree", + "start": 365.68, + "end": 366.02, + "probability": 1.0 + }, + { + "word": " with", + "start": 366.02, + "end": 366.22, + "probability": 0.99951171875 + }, + { + "word": " Schmidt", + "start": 366.22, + "end": 366.42, + "probability": 0.98779296875 + }, + { + "word": " Jewelers.", + "start": 366.42, + "end": 366.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 111, + "text": "So little things like that, I know you shouldn't do it just for the shopping spree.", + "start": 367.26, + "end": 369.88, + "words": [ + { + "word": " So", + "start": 367.26, + "end": 367.6, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 367.6, + "end": 367.8, + "probability": 0.94970703125 + }, + { + "word": " things", + "start": 367.8, + "end": 368.04, + "probability": 1.0 + }, + { + "word": " like", + "start": 368.04, + "end": 368.3, + "probability": 1.0 + }, + { + "word": " that,", + "start": 368.3, + "end": 368.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 368.5, + "end": 368.56, + "probability": 0.99755859375 + }, + { + "word": " know", + "start": 368.56, + "end": 368.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 368.66, + "end": 368.82, + "probability": 0.99853515625 + }, + { + "word": " shouldn't", + "start": 368.82, + "end": 369.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 369.04, + "end": 369.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 369.22, + "end": 369.32, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 369.32, + "end": 369.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 369.46, + "end": 369.58, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 369.58, + "end": 369.66, + "probability": 0.9990234375 + }, + { + "word": " shopping", + "start": 369.66, + "end": 369.82, + "probability": 0.63818359375 + }, + { + "word": " spree.", + "start": 369.82, + "end": 369.88, + "probability": 0.92919921875 + } + ] + }, + { + "id": 112, + "text": "You should do it because you want to do it.", + "start": 369.88, + "end": 372.66, + "words": [ + { + "word": " You", + "start": 369.88, + "end": 370.0, + "probability": 0.410400390625 + }, + { + "word": " should", + "start": 370.0, + "end": 370.14, + "probability": 0.98388671875 + }, + { + "word": " do", + "start": 370.14, + "end": 370.26, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 370.26, + "end": 370.32, + "probability": 1.0 + }, + { + "word": " because", + "start": 370.32, + "end": 370.54, + "probability": 0.99072265625 + }, + { + "word": " you", + "start": 370.54, + "end": 370.72, + "probability": 0.93408203125 + }, + { + "word": " want", + "start": 370.72, + "end": 372.2, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 372.2, + "end": 372.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 372.42, + "end": 372.56, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 372.56, + "end": 372.66, + "probability": 1.0 + } + ] + }, + { + "id": 113, + "text": "So you want to give some blood, give back to the community, people who need it.", + "start": 372.7, + "end": 375.92, + "words": [ + { + "word": " So", + "start": 372.7, + "end": 372.8, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 372.8, + "end": 372.92, + "probability": 0.978515625 + }, + { + "word": " want", + "start": 372.92, + "end": 373.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 373.04, + "end": 373.1, + "probability": 1.0 + }, + { + "word": " give", + "start": 373.1, + "end": 373.22, + "probability": 1.0 + }, + { + "word": " some", + "start": 373.22, + "end": 373.34, + "probability": 0.998046875 + }, + { + "word": " blood,", + "start": 373.34, + "end": 373.8, + "probability": 1.0 + }, + { + "word": " give", + "start": 373.92, + "end": 373.98, + "probability": 0.97705078125 + }, + { + "word": " back", + "start": 373.98, + "end": 374.12, + "probability": 0.9267578125 + }, + { + "word": " to", + "start": 374.12, + "end": 374.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 374.22, + "end": 374.26, + "probability": 1.0 + }, + { + "word": " community,", + "start": 374.26, + "end": 374.56, + "probability": 1.0 + }, + { + "word": " people", + "start": 374.76, + "end": 375.38, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 375.38, + "end": 375.54, + "probability": 1.0 + }, + { + "word": " need", + "start": 375.54, + "end": 375.74, + "probability": 1.0 + }, + { + "word": " it.", + "start": 375.74, + "end": 375.92, + "probability": 1.0 + } + ] + }, + { + "id": 114, + "text": "That's an option for you to do that.", + "start": 376.16, + "end": 377.84, + "words": [ + { + "word": " That's", + "start": 376.16, + "end": 376.5, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 376.5, + "end": 376.64, + "probability": 1.0 + }, + { + "word": " option", + "start": 376.64, + "end": 377.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 377.16, + "end": 377.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 377.38, + "end": 377.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 377.46, + "end": 377.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 377.56, + "end": 377.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 377.66, + "end": 377.84, + "probability": 1.0 + } + ] + }, + { + "id": 115, + "text": "It would be great.", + "start": 377.88, + "end": 378.32, + "words": [ + { + "word": " It", + "start": 377.88, + "end": 378.0, + "probability": 0.96435546875 + }, + { + "word": " would", + "start": 378.0, + "end": 378.08, + "probability": 0.951171875 + }, + { + "word": " be", + "start": 378.08, + "end": 378.16, + "probability": 1.0 + }, + { + "word": " great.", + "start": 378.16, + "end": 378.32, + "probability": 1.0 + } + ] + }, + { + "id": 116, + "text": "And the blood bank is always looking for people to give up the goods.", + "start": 378.76, + "end": 383.14, + "words": [ + { + "word": " And", + "start": 378.76, + "end": 379.06, + "probability": 0.9765625 + }, + { + "word": " the", + "start": 379.06, + "end": 379.16, + "probability": 0.98388671875 + }, + { + "word": " blood", + "start": 379.16, + "end": 379.32, + "probability": 0.8720703125 + }, + { + "word": " bank", + "start": 379.32, + "end": 379.6, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 379.6, + "end": 380.6, + "probability": 1.0 + }, + { + "word": " always", + "start": 380.6, + "end": 380.84, + "probability": 1.0 + }, + { + "word": " looking", + "start": 380.84, + "end": 381.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 381.14, + "end": 381.38, + "probability": 1.0 + }, + { + "word": " people", + "start": 381.38, + "end": 381.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 381.64, + "end": 381.88, + "probability": 1.0 + }, + { + "word": " give", + "start": 381.88, + "end": 382.64, + "probability": 0.9580078125 + }, + { + "word": " up", + "start": 382.64, + "end": 382.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 382.8, + "end": 382.9, + "probability": 0.99853515625 + }, + { + "word": " goods.", + "start": 382.9, + "end": 383.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 117, + "text": "Absolutely.", + "start": 383.48, + "end": 383.82, + "words": [ + { + "word": " Absolutely.", + "start": 383.48, + "end": 383.82, + "probability": 0.65185546875 + } + ] + }, + { + "id": 118, + "text": "It's always in need.", + "start": 384.3, + "end": 385.46, + "words": [ + { + "word": " It's", + "start": 384.3, + "end": 384.64, + "probability": 0.99951171875 + }, + { + "word": " always", + "start": 384.64, + "end": 384.8, + "probability": 1.0 + }, + { + "word": " in", + "start": 384.8, + "end": 385.12, + "probability": 1.0 + }, + { + "word": " need.", + "start": 385.12, + "end": 385.46, + "probability": 1.0 + } + ] + }, + { + "id": 119, + "text": "So if you have the opportunity, go down and check them out tomorrow.", + "start": 385.58, + "end": 388.52, + "words": [ + { + "word": " So", + "start": 385.58, + "end": 385.74, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 385.74, + "end": 386.1, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 386.1, + "end": 386.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 386.34, + "end": 386.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 386.5, + "end": 386.62, + "probability": 1.0 + }, + { + "word": " opportunity,", + "start": 386.62, + "end": 386.9, + "probability": 1.0 + }, + { + "word": " go", + "start": 387.2, + "end": 387.68, + "probability": 0.48779296875 + }, + { + "word": " down", + "start": 387.68, + "end": 387.84, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 387.84, + "end": 387.92, + "probability": 0.99951171875 + }, + { + "word": " check", + "start": 387.92, + "end": 388.08, + "probability": 1.0 + }, + { + "word": " them", + "start": 388.08, + "end": 388.22, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 388.22, + "end": 388.3, + "probability": 1.0 + }, + { + "word": " tomorrow.", + "start": 388.3, + "end": 388.52, + "probability": 1.0 + } + ] + }, + { + "id": 120, + "text": "All right.", + "start": 388.72, + "end": 389.84, + "words": [ + { + "word": " All", + "start": 388.72, + "end": 388.92, + "probability": 0.033203125 + }, + { + "word": " right.", + "start": 388.92, + "end": 389.84, + "probability": 0.99560546875 + } + ] + }, + { + "id": 121, + "text": "", + "start": 389.84, + "end": 389.84, + "words": [] + }, + { + "id": 122, + "text": "", + "start": 389.84, + "end": 389.84, + "words": [] + }, + { + "id": 123, + "text": "", + "start": 389.84, + "end": 389.84, + "words": [] + }, + { + "id": 124, + "text": "", + "start": 389.84, + "end": 389.84, + "words": [] + }, + { + "id": 125, + "text": "", + "start": 389.84, + "end": 389.84, + "words": [] + }, + { + "id": 126, + "text": "", + "start": 389.84, + "end": 389.84, + "words": [] + }, + { + "id": 127, + "text": "Well, yes.", + "start": 389.86, + "end": 390.96, + "words": [ + { + "word": " Well,", + "start": 389.86, + "end": 390.0, + "probability": 0.01337432861328125 + }, + { + "word": " yes.", + "start": 390.0, + "end": 390.96, + "probability": 0.55908203125 + } + ] + }, + { + "id": 128, + "text": "I'm done being somber.", + "start": 391.66, + "end": 392.7, + "words": [ + { + "word": " I'm", + "start": 391.66, + "end": 392.02, + "probability": 0.9169921875 + }, + { + "word": " done", + "start": 392.02, + "end": 392.1, + "probability": 1.0 + }, + { + "word": " being", + "start": 392.1, + "end": 392.28, + "probability": 1.0 + }, + { + "word": " somber.", + "start": 392.28, + "end": 392.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 129, + "text": "Oh, okay.", + "start": 392.8, + "end": 393.22, + "words": [ + { + "word": " Oh,", + "start": 392.8, + "end": 393.02, + "probability": 0.98583984375 + }, + { + "word": " okay.", + "start": 393.02, + "end": 393.22, + "probability": 0.931640625 + } + ] + }, + { + "id": 130, + "text": "All right.", + "start": 393.38, + "end": 393.6, + "words": [ + { + "word": " All", + "start": 393.38, + "end": 393.52, + "probability": 0.91748046875 + }, + { + "word": " right.", + "start": 393.52, + "end": 393.6, + "probability": 1.0 + } + ] + }, + { + "id": 131, + "text": "We've got to end the somberness here because, you know, that's not what this show is about.", + "start": 393.64, + "end": 397.08, + "words": [ + { + "word": " We've", + "start": 393.64, + "end": 393.78, + "probability": 0.89599609375 + }, + { + "word": " got", + "start": 393.78, + "end": 393.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 393.8, + "end": 393.94, + "probability": 1.0 + }, + { + "word": " end", + "start": 393.94, + "end": 394.32, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 394.32, + "end": 394.48, + "probability": 0.99951171875 + }, + { + "word": " somberness", + "start": 394.48, + "end": 394.92, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 394.92, + "end": 395.1, + "probability": 1.0 + }, + { + "word": " because,", + "start": 395.1, + "end": 395.46, + "probability": 0.65673828125 + }, + { + "word": " you", + "start": 395.58, + "end": 395.98, + "probability": 0.97509765625 + }, + { + "word": " know,", + "start": 395.98, + "end": 396.08, + "probability": 1.0 + }, + { + "word": " that's", + "start": 396.12, + "end": 396.28, + "probability": 0.99560546875 + }, + { + "word": " not", + "start": 396.28, + "end": 396.38, + "probability": 1.0 + }, + { + "word": " what", + "start": 396.38, + "end": 396.5, + "probability": 1.0 + }, + { + "word": " this", + "start": 396.5, + "end": 396.62, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 396.62, + "end": 396.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 396.76, + "end": 396.86, + "probability": 0.76611328125 + }, + { + "word": " about.", + "start": 396.86, + "end": 397.08, + "probability": 1.0 + } + ] + }, + { + "id": 132, + "text": "It's not supposed to be sad and reflective.", + "start": 397.28, + "end": 400.82, + "words": [ + { + "word": " It's", + "start": 397.28, + "end": 397.62, + "probability": 0.953125 + }, + { + "word": " not", + "start": 397.62, + "end": 397.72, + "probability": 0.95703125 + }, + { + "word": " supposed", + "start": 397.72, + "end": 397.92, + "probability": 0.98876953125 + }, + { + "word": " to", + "start": 397.92, + "end": 398.66, + "probability": 1.0 + }, + { + "word": " be", + "start": 398.66, + "end": 398.8, + "probability": 1.0 + }, + { + "word": " sad", + "start": 398.8, + "end": 399.26, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 399.26, + "end": 399.66, + "probability": 0.9970703125 + }, + { + "word": " reflective.", + "start": 399.66, + "end": 400.82, + "probability": 0.99609375 + } + ] + }, + { + "id": 133, + "text": "Let's go ahead and take a call here.", + "start": 401.88, + "end": 403.12, + "words": [ + { + "word": " Let's", + "start": 401.88, + "end": 402.24, + "probability": 1.0 + }, + { + "word": " go", + "start": 402.24, + "end": 402.56, + "probability": 0.99853515625 + }, + { + "word": " ahead", + "start": 402.56, + "end": 402.62, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 402.62, + "end": 402.68, + "probability": 1.0 + }, + { + "word": " take", + "start": 402.68, + "end": 402.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 402.78, + "end": 402.82, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 402.82, + "end": 403.02, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 403.02, + "end": 403.12, + "probability": 1.0 + } + ] + }, + { + "id": 134, + "text": "Oh, Lionel, how are you doing?", + "start": 403.34, + "end": 404.84, + "words": [ + { + "word": " Oh,", + "start": 403.34, + "end": 403.7, + "probability": 0.258544921875 + }, + { + "word": " Lionel,", + "start": 404.22, + "end": 404.46, + "probability": 0.95703125 + }, + { + "word": " how", + "start": 404.5, + "end": 404.58, + "probability": 1.0 + }, + { + "word": " are", + "start": 404.58, + "end": 404.68, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 404.68, + "end": 404.7, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 404.7, + "end": 404.84, + "probability": 1.0 + } + ] + }, + { + "id": 135, + "text": "I'm sorry, who?", + "start": 406.14, + "end": 406.84, + "words": [ + { + "word": " I'm", + "start": 406.14, + "end": 406.5, + "probability": 0.99951171875 + }, + { + "word": " sorry,", + "start": 406.5, + "end": 406.66, + "probability": 1.0 + }, + { + "word": " who?", + "start": 406.74, + "end": 406.84, + "probability": 1.0 + } + ] + }, + { + "id": 136, + "text": "Me?", + "start": 407.04, + "end": 407.24, + "words": [ + { + "word": " Me?", + "start": 407.04, + "end": 407.24, + "probability": 0.71240234375 + } + ] + }, + { + "id": 137, + "text": "Yes.", + "start": 407.4, + "end": 407.76, + "words": [ + { + "word": " Yes.", + "start": 407.4, + "end": 407.76, + "probability": 0.994140625 + } + ] + }, + { + "id": 138, + "text": "I didn't hear my name.", + "start": 408.18, + "end": 409.54, + "words": [ + { + "word": " I", + "start": 408.18, + "end": 408.54, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 408.54, + "end": 408.88, + "probability": 1.0 + }, + { + "word": " hear", + "start": 408.88, + "end": 409.0, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 409.0, + "end": 409.18, + "probability": 1.0 + }, + { + "word": " name.", + "start": 409.18, + "end": 409.54, + "probability": 1.0 + } + ] + }, + { + "id": 139, + "text": "Oh, I didn't hit the button properly, I guess.", + "start": 409.62, + "end": 412.26, + "words": [ + { + "word": " Oh,", + "start": 409.62, + "end": 409.94, + "probability": 0.94189453125 + }, + { + "word": " I", + "start": 410.66, + "end": 410.7, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 410.7, + "end": 410.9, + "probability": 1.0 + }, + { + "word": " hit", + "start": 410.9, + "end": 411.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 411.02, + "end": 411.14, + "probability": 1.0 + }, + { + "word": " button", + "start": 411.14, + "end": 411.42, + "probability": 1.0 + }, + { + "word": " properly,", + "start": 411.42, + "end": 411.76, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 411.98, + "end": 412.08, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 412.08, + "end": 412.26, + "probability": 1.0 + } + ] + }, + { + "id": 140, + "text": "Well, there you go.", + "start": 412.28, + "end": 412.96, + "words": [ + { + "word": " Well,", + "start": 412.28, + "end": 412.48, + "probability": 0.94384765625 + }, + { + "word": " there", + "start": 412.48, + "end": 412.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 412.58, + "end": 412.72, + "probability": 1.0 + }, + { + "word": " go.", + "start": 412.72, + "end": 412.96, + "probability": 1.0 + } + ] + }, + { + "id": 141, + "text": "Anyway, your opening comments were spot on.", + "start": 413.04, + "end": 414.68, + "words": [ + { + "word": " Anyway,", + "start": 413.04, + "end": 413.22, + "probability": 0.986328125 + }, + { + "word": " your", + "start": 413.24, + "end": 413.38, + "probability": 0.99853515625 + }, + { + "word": " opening", + "start": 413.38, + "end": 413.58, + "probability": 1.0 + }, + { + "word": " comments", + "start": 413.58, + "end": 413.98, + "probability": 1.0 + }, + { + "word": " were", + "start": 413.98, + "end": 414.16, + "probability": 1.0 + }, + { + "word": " spot", + "start": 414.16, + "end": 414.4, + "probability": 1.0 + }, + { + "word": " on.", + "start": 414.4, + "end": 414.68, + "probability": 0.98291015625 + } + ] + }, + { + "id": 142, + "text": "I appreciate it.", + "start": 414.8, + "end": 415.44, + "words": [ + { + "word": " I", + "start": 414.8, + "end": 414.86, + "probability": 0.783203125 + }, + { + "word": " appreciate", + "start": 414.86, + "end": 415.12, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 415.12, + "end": 415.44, + "probability": 1.0 + } + ] + }, + { + "id": 143, + "text": "Oh, thank you.", + "start": 415.6, + "end": 416.28, + "words": [ + { + "word": " Oh,", + "start": 415.6, + "end": 415.94, + "probability": 0.95263671875 + }, + { + "word": " thank", + "start": 415.94, + "end": 416.1, + "probability": 1.0 + }, + { + "word": " you.", + "start": 416.1, + "end": 416.28, + "probability": 1.0 + } + ] + }, + { + "id": 144, + "text": "I'm calling about smartphone security.", + "start": 416.72, + "end": 418.38, + "words": [ + { + "word": " I'm", + "start": 416.72, + "end": 417.08, + "probability": 0.9990234375 + }, + { + "word": " calling", + "start": 417.08, + "end": 417.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 417.26, + "end": 417.48, + "probability": 1.0 + }, + { + "word": " smartphone", + "start": 417.48, + "end": 417.86, + "probability": 0.97998046875 + }, + { + "word": " security.", + "start": 417.86, + "end": 418.38, + "probability": 1.0 + } + ] + }, + { + "id": 145, + "text": "Have you guys downloaded?", + "start": 418.68, + "end": 419.84, + "words": [ + { + "word": " Have", + "start": 418.68, + "end": 418.96, + "probability": 0.9755859375 + }, + { + "word": " you", + "start": 418.96, + "end": 419.08, + "probability": 0.99951171875 + }, + { + "word": " guys", + "start": 419.08, + "end": 419.42, + "probability": 0.9990234375 + }, + { + "word": " downloaded?", + "start": 419.42, + "end": 419.84, + "probability": 0.68408203125 + } + ] + }, + { + "id": 146, + "text": "Checked out any of the mobile Droid apps that are available on the market like My Lookout or the AVG one or any of those?", + "start": 420.44, + "end": 427.8, + "words": [ + { + "word": " Checked", + "start": 420.44, + "end": 420.92, + "probability": 0.444580078125 + }, + { + "word": " out", + "start": 420.92, + "end": 421.04, + "probability": 0.9892578125 + }, + { + "word": " any", + "start": 421.04, + "end": 421.3, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 421.3, + "end": 421.42, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 421.42, + "end": 421.52, + "probability": 0.9951171875 + }, + { + "word": " mobile", + "start": 421.52, + "end": 421.88, + "probability": 0.984375 + }, + { + "word": " Droid", + "start": 421.88, + "end": 422.42, + "probability": 0.8466796875 + }, + { + "word": " apps", + "start": 422.42, + "end": 422.72, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 422.72, + "end": 423.0, + "probability": 0.96923828125 + }, + { + "word": " are", + "start": 423.0, + "end": 423.14, + "probability": 0.9990234375 + }, + { + "word": " available", + "start": 423.14, + "end": 423.42, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 423.42, + "end": 423.74, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 423.74, + "end": 423.86, + "probability": 0.99951171875 + }, + { + "word": " market", + "start": 423.86, + "end": 424.1, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 424.1, + "end": 424.36, + "probability": 0.33154296875 + }, + { + "word": " My", + "start": 424.36, + "end": 424.54, + "probability": 0.85400390625 + }, + { + "word": " Lookout", + "start": 424.54, + "end": 425.0, + "probability": 0.8173828125 + }, + { + "word": " or", + "start": 425.0, + "end": 425.16, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 425.16, + "end": 425.34, + "probability": 0.8466796875 + }, + { + "word": " AVG", + "start": 425.34, + "end": 426.8, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 426.8, + "end": 427.14, + "probability": 0.94287109375 + }, + { + "word": " or", + "start": 427.14, + "end": 427.34, + "probability": 0.76708984375 + }, + { + "word": " any", + "start": 427.34, + "end": 427.62, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 427.62, + "end": 427.72, + "probability": 0.73583984375 + }, + { + "word": " those?", + "start": 427.72, + "end": 427.8, + "probability": 0.52099609375 + } + ] + }, + { + "id": 147, + "text": "I use the Lookout mobile security on my phone.", + "start": 427.8, + "end": 429.96, + "words": [ + { + "word": " I", + "start": 427.8, + "end": 428.02, + "probability": 0.646484375 + }, + { + "word": " use", + "start": 428.02, + "end": 428.26, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 428.26, + "end": 428.4, + "probability": 0.9970703125 + }, + { + "word": " Lookout", + "start": 428.4, + "end": 428.7, + "probability": 0.9970703125 + }, + { + "word": " mobile", + "start": 428.7, + "end": 428.88, + "probability": 0.9755859375 + }, + { + "word": " security", + "start": 428.88, + "end": 429.22, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 429.22, + "end": 429.54, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 429.54, + "end": 429.68, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 429.68, + "end": 429.96, + "probability": 0.9970703125 + } + ] + }, + { + "id": 148, + "text": "And that's the one that I like.", + "start": 430.24, + "end": 432.0, + "words": [ + { + "word": " And", + "start": 430.24, + "end": 430.72, + "probability": 0.4794921875 + }, + { + "word": " that's", + "start": 430.72, + "end": 431.24, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 431.24, + "end": 431.32, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 431.32, + "end": 431.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 431.44, + "end": 431.58, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 431.58, + "end": 431.7, + "probability": 1.0 + }, + { + "word": " like.", + "start": 431.7, + "end": 432.0, + "probability": 1.0 + } + ] + }, + { + "id": 149, + "text": "And to me, it seems to do the job just fine.", + "start": 432.76, + "end": 435.8, + "words": [ + { + "word": " And", + "start": 432.76, + "end": 433.24, + "probability": 0.97216796875 + }, + { + "word": " to", + "start": 433.24, + "end": 433.72, + "probability": 0.99072265625 + }, + { + "word": " me,", + "start": 433.72, + "end": 434.44, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 434.48, + "end": 434.58, + "probability": 1.0 + }, + { + "word": " seems", + "start": 434.58, + "end": 434.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 434.8, + "end": 434.92, + "probability": 1.0 + }, + { + "word": " do", + "start": 434.92, + "end": 435.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 435.06, + "end": 435.16, + "probability": 1.0 + }, + { + "word": " job", + "start": 435.16, + "end": 435.38, + "probability": 1.0 + }, + { + "word": " just", + "start": 435.38, + "end": 435.58, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 435.58, + "end": 435.8, + "probability": 1.0 + } + ] + }, + { + "id": 150, + "text": "It doesn't slow down your phone at all very much?", + "start": 436.34, + "end": 439.06, + "words": [ + { + "word": " It", + "start": 436.34, + "end": 436.78, + "probability": 0.99853515625 + }, + { + "word": " doesn't", + "start": 436.78, + "end": 437.02, + "probability": 1.0 + }, + { + "word": " slow", + "start": 437.02, + "end": 437.18, + "probability": 1.0 + }, + { + "word": " down", + "start": 437.18, + "end": 437.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 437.44, + "end": 437.82, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 437.82, + "end": 438.22, + "probability": 1.0 + }, + { + "word": " at", + "start": 438.22, + "end": 438.4, + "probability": 1.0 + }, + { + "word": " all", + "start": 438.4, + "end": 438.58, + "probability": 1.0 + }, + { + "word": " very", + "start": 438.58, + "end": 438.78, + "probability": 0.9765625 + }, + { + "word": " much?", + "start": 438.78, + "end": 439.06, + "probability": 1.0 + } + ] + }, + { + "id": 151, + "text": "Not that I can notice.", + "start": 439.36, + "end": 440.7, + "words": [ + { + "word": " Not", + "start": 439.36, + "end": 439.84, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 439.84, + "end": 440.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 440.16, + "end": 440.26, + "probability": 1.0 + }, + { + "word": " can", + "start": 440.26, + "end": 440.4, + "probability": 1.0 + }, + { + "word": " notice.", + "start": 440.4, + "end": 440.7, + "probability": 1.0 + } + ] + }, + { + "id": 152, + "text": "Okay.", + "start": 440.98, + "end": 441.46, + "words": [ + { + "word": " Okay.", + "start": 440.98, + "end": 441.46, + "probability": 0.88525390625 + } + ] + }, + { + "id": 153, + "text": "And it seems to do most of its stuff only at when you access a certain application or when you install the application.", + "start": 441.8, + "end": 449.1, + "words": [ + { + "word": " And", + "start": 441.8, + "end": 442.28, + "probability": 0.8759765625 + }, + { + "word": " it", + "start": 442.28, + "end": 442.48, + "probability": 0.451171875 + }, + { + "word": " seems", + "start": 442.48, + "end": 443.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 443.62, + "end": 443.78, + "probability": 1.0 + }, + { + "word": " do", + "start": 443.78, + "end": 443.94, + "probability": 1.0 + }, + { + "word": " most", + "start": 443.94, + "end": 444.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 444.22, + "end": 444.36, + "probability": 1.0 + }, + { + "word": " its", + "start": 444.36, + "end": 444.52, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 444.52, + "end": 444.74, + "probability": 1.0 + }, + { + "word": " only", + "start": 444.74, + "end": 445.18, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 445.18, + "end": 445.6, + "probability": 0.98388671875 + }, + { + "word": " when", + "start": 445.6, + "end": 446.48, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 446.48, + "end": 446.66, + "probability": 1.0 + }, + { + "word": " access", + "start": 446.66, + "end": 447.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 447.02, + "end": 447.24, + "probability": 1.0 + }, + { + "word": " certain", + "start": 447.24, + "end": 447.42, + "probability": 1.0 + }, + { + "word": " application", + "start": 447.42, + "end": 447.78, + "probability": 1.0 + }, + { + "word": " or", + "start": 447.78, + "end": 448.06, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 448.06, + "end": 448.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 448.16, + "end": 448.28, + "probability": 1.0 + }, + { + "word": " install", + "start": 448.28, + "end": 448.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 448.56, + "end": 448.74, + "probability": 1.0 + }, + { + "word": " application.", + "start": 448.74, + "end": 449.1, + "probability": 1.0 + } + ] + }, + { + "id": 154, + "text": "or when you first start up the phone.", + "start": 450.12000000000006, + "end": 451.8, + "words": [ + { + "word": " or", + "start": 450.12000000000006, + "end": 450.52000000000004, + "probability": 0.369140625 + }, + { + "word": " when", + "start": 450.52000000000004, + "end": 450.92, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 450.92, + "end": 451.02, + "probability": 1.0 + }, + { + "word": " first", + "start": 451.02, + "end": 451.2, + "probability": 1.0 + }, + { + "word": " start", + "start": 451.2, + "end": 451.38, + "probability": 0.9794921875 + }, + { + "word": " up", + "start": 451.38, + "end": 451.5, + "probability": 0.98388671875 + }, + { + "word": " the", + "start": 451.5, + "end": 451.58, + "probability": 0.99951171875 + }, + { + "word": " phone.", + "start": 451.58, + "end": 451.8, + "probability": 1.0 + } + ] + }, + { + "id": 155, + "text": "So everything in between, it's not doing much.", + "start": 451.9, + "end": 454.08, + "words": [ + { + "word": " So", + "start": 451.9, + "end": 452.06, + "probability": 0.97216796875 + }, + { + "word": " everything", + "start": 452.06, + "end": 452.52, + "probability": 0.88671875 + }, + { + "word": " in", + "start": 452.52, + "end": 452.78, + "probability": 1.0 + }, + { + "word": " between,", + "start": 452.78, + "end": 453.04, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 453.16, + "end": 453.44, + "probability": 1.0 + }, + { + "word": " not", + "start": 453.44, + "end": 453.6, + "probability": 1.0 + }, + { + "word": " doing", + "start": 453.6, + "end": 453.8, + "probability": 1.0 + }, + { + "word": " much.", + "start": 453.8, + "end": 454.08, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "Right, and you're definitely pleased with it then.", + "start": 454.26, + "end": 455.9, + "words": [ + { + "word": " Right,", + "start": 454.26, + "end": 454.46, + "probability": 0.9921875 + }, + { + "word": " and", + "start": 454.54, + "end": 454.62, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 454.62, + "end": 454.78, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 454.78, + "end": 455.08, + "probability": 1.0 + }, + { + "word": " pleased", + "start": 455.08, + "end": 455.46, + "probability": 1.0 + }, + { + "word": " with", + "start": 455.46, + "end": 455.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 455.62, + "end": 455.76, + "probability": 1.0 + }, + { + "word": " then.", + "start": 455.76, + "end": 455.9, + "probability": 0.69775390625 + } + ] + }, + { + "id": 157, + "text": "It works for me.", + "start": 456.04, + "end": 456.9, + "words": [ + { + "word": " It", + "start": 456.04, + "end": 456.36, + "probability": 0.99951171875 + }, + { + "word": " works", + "start": 456.36, + "end": 456.58, + "probability": 1.0 + }, + { + "word": " for", + "start": 456.58, + "end": 456.74, + "probability": 1.0 + }, + { + "word": " me.", + "start": 456.74, + "end": 456.9, + "probability": 1.0 + } + ] + }, + { + "id": 158, + "text": "And I like it because it gives me the opportunity to do the remote wipe,", + "start": 456.98, + "end": 460.64, + "words": [ + { + "word": " And", + "start": 456.98, + "end": 457.36, + "probability": 0.97509765625 + }, + { + "word": " I", + "start": 457.36, + "end": 457.68, + "probability": 1.0 + }, + { + "word": " like", + "start": 457.68, + "end": 458.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 458.02, + "end": 458.08, + "probability": 1.0 + }, + { + "word": " because", + "start": 458.08, + "end": 458.24, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 458.24, + "end": 458.4, + "probability": 1.0 + }, + { + "word": " gives", + "start": 458.4, + "end": 458.52, + "probability": 1.0 + }, + { + "word": " me", + "start": 458.52, + "end": 458.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 458.62, + "end": 458.74, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 458.74, + "end": 459.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 459.04, + "end": 459.3, + "probability": 1.0 + }, + { + "word": " do", + "start": 459.3, + "end": 459.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 459.46, + "end": 459.74, + "probability": 0.54736328125 + }, + { + "word": " remote", + "start": 459.74, + "end": 460.24, + "probability": 1.0 + }, + { + "word": " wipe,", + "start": 460.24, + "end": 460.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 159, + "text": "the location of my phone if I lose it.", + "start": 460.82, + "end": 463.44, + "words": [ + { + "word": " the", + "start": 460.82, + "end": 461.36, + "probability": 0.99951171875 + }, + { + "word": " location", + "start": 461.36, + "end": 462.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 462.16, + "end": 462.44, + "probability": 1.0 + }, + { + "word": " my", + "start": 462.44, + "end": 462.56, + "probability": 1.0 + }, + { + "word": " phone", + "start": 462.56, + "end": 462.78, + "probability": 0.87548828125 + }, + { + "word": " if", + "start": 462.78, + "end": 462.96, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 462.96, + "end": 463.04, + "probability": 1.0 + }, + { + "word": " lose", + "start": 463.04, + "end": 463.26, + "probability": 1.0 + }, + { + "word": " it.", + "start": 463.26, + "end": 463.44, + "probability": 1.0 + } + ] + }, + { + "id": 160, + "text": "Right.", + "start": 463.64, + "end": 463.92, + "words": [ + { + "word": " Right.", + "start": 463.64, + "end": 463.92, + "probability": 0.91943359375 + } + ] + }, + { + "id": 161, + "text": "Which is the primary reason I installed the application in the first place.", + "start": 464.0, + "end": 466.98, + "words": [ + { + "word": " Which", + "start": 464.0, + "end": 464.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 464.24, + "end": 464.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 464.36, + "end": 464.46, + "probability": 0.99755859375 + }, + { + "word": " primary", + "start": 464.46, + "end": 464.72, + "probability": 1.0 + }, + { + "word": " reason", + "start": 464.72, + "end": 465.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 465.08, + "end": 465.26, + "probability": 0.99951171875 + }, + { + "word": " installed", + "start": 465.26, + "end": 465.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 465.62, + "end": 465.8, + "probability": 1.0 + }, + { + "word": " application", + "start": 465.8, + "end": 466.12, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 466.12, + "end": 466.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 466.38, + "end": 466.44, + "probability": 1.0 + }, + { + "word": " first", + "start": 466.44, + "end": 466.68, + "probability": 1.0 + }, + { + "word": " place.", + "start": 466.68, + "end": 466.98, + "probability": 1.0 + } + ] + }, + { + "id": 162, + "text": "Butterfingers, huh?", + "start": 467.74, + "end": 468.36, + "words": [ + { + "word": " Butterfingers,", + "start": 467.74, + "end": 468.14, + "probability": 0.990234375 + }, + { + "word": " huh?", + "start": 468.24, + "end": 468.36, + "probability": 1.0 + } + ] + }, + { + "id": 163, + "text": "Well, you know, I tend to leave things.", + "start": 468.58, + "end": 470.92, + "words": [ + { + "word": " Well,", + "start": 468.58, + "end": 468.88, + "probability": 0.740234375 + }, + { + "word": " you", + "start": 468.92, + "end": 469.02, + "probability": 0.95654296875 + }, + { + "word": " know,", + "start": 469.02, + "end": 469.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 469.16, + "end": 469.48, + "probability": 1.0 + }, + { + "word": " tend", + "start": 469.48, + "end": 470.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 470.14, + "end": 470.32, + "probability": 1.0 + }, + { + "word": " leave", + "start": 470.32, + "end": 470.52, + "probability": 1.0 + }, + { + "word": " things.", + "start": 470.52, + "end": 470.92, + "probability": 1.0 + } + ] + }, + { + "id": 164, + "text": "Yeah, right.", + "start": 471.08, + "end": 471.78, + "words": [ + { + "word": " Yeah,", + "start": 471.08, + "end": 471.48, + "probability": 0.65380859375 + }, + { + "word": " right.", + "start": 471.58, + "end": 471.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 165, + "text": "Laptops and phones and my keys everywhere.", + "start": 472.28000000000003, + "end": 475.08, + "words": [ + { + "word": " Laptops", + "start": 472.28000000000003, + "end": 472.68, + "probability": 0.9775390625 + }, + { + "word": " and", + "start": 472.68, + "end": 472.86, + "probability": 0.96875 + }, + { + "word": " phones", + "start": 472.86, + "end": 473.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 473.42, + "end": 473.84, + "probability": 1.0 + }, + { + "word": " my", + "start": 473.84, + "end": 474.34, + "probability": 0.99951171875 + }, + { + "word": " keys", + "start": 474.34, + "end": 474.62, + "probability": 1.0 + }, + { + "word": " everywhere.", + "start": 474.62, + "end": 475.08, + "probability": 0.86865234375 + } + ] + }, + { + "id": 166, + "text": "There you go.", + "start": 475.38, + "end": 476.0, + "words": [ + { + "word": " There", + "start": 475.38, + "end": 475.62, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 475.62, + "end": 475.74, + "probability": 1.0 + }, + { + "word": " go.", + "start": 475.74, + "end": 476.0, + "probability": 1.0 + } + ] + }, + { + "id": 167, + "text": "Because it turns the phone on.", + "start": 476.12, + "end": 477.28, + "words": [ + { + "word": " Because", + "start": 476.12, + "end": 476.22, + "probability": 0.95166015625 + }, + { + "word": " it", + "start": 476.22, + "end": 476.32, + "probability": 0.9970703125 + }, + { + "word": " turns", + "start": 476.32, + "end": 476.5, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 476.5, + "end": 476.88, + "probability": 0.97900390625 + }, + { + "word": " phone", + "start": 476.88, + "end": 477.02, + "probability": 1.0 + }, + { + "word": " on.", + "start": 477.02, + "end": 477.28, + "probability": 1.0 + } + ] + }, + { + "id": 168, + "text": "Right, it turns the phone on like today.", + "start": 477.58, + "end": 479.14, + "words": [ + { + "word": " Right,", + "start": 477.58, + "end": 477.9, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 477.92, + "end": 478.06, + "probability": 0.70947265625 + }, + { + "word": " turns", + "start": 478.06, + "end": 478.26, + "probability": 0.9306640625 + }, + { + "word": " the", + "start": 478.26, + "end": 478.48, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 478.48, + "end": 478.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 478.64, + "end": 478.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 478.78, + "end": 478.92, + "probability": 0.88134765625 + }, + { + "word": " today.", + "start": 478.92, + "end": 479.14, + "probability": 1.0 + } + ] + }, + { + "id": 169, + "text": "So, yes, I put that on there mainly because I wanted something to keep track of the phone.", + "start": 479.96, + "end": 485.36, + "words": [ + { + "word": " So,", + "start": 479.96, + "end": 480.32, + "probability": 0.88818359375 + }, + { + "word": " yes,", + "start": 480.32, + "end": 480.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 480.88, + "end": 481.34, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 481.34, + "end": 481.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 481.96, + "end": 482.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 482.12, + "end": 482.26, + "probability": 1.0 + }, + { + "word": " there", + "start": 482.26, + "end": 482.4, + "probability": 1.0 + }, + { + "word": " mainly", + "start": 482.4, + "end": 482.7, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 482.7, + "end": 483.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 483.06, + "end": 483.28, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 483.28, + "end": 483.58, + "probability": 1.0 + }, + { + "word": " something", + "start": 483.58, + "end": 484.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 484.06, + "end": 484.34, + "probability": 1.0 + }, + { + "word": " keep", + "start": 484.34, + "end": 484.54, + "probability": 1.0 + }, + { + "word": " track", + "start": 484.54, + "end": 484.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 484.78, + "end": 485.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 485.06, + "end": 485.1, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 485.1, + "end": 485.36, + "probability": 1.0 + } + ] + }, + { + "id": 170, + "text": "Right, right.", + "start": 485.52, + "end": 486.1, + "words": [ + { + "word": " Right,", + "start": 485.52, + "end": 485.88, + "probability": 0.9951171875 + }, + { + "word": " right.", + "start": 485.9, + "end": 486.1, + "probability": 1.0 + } + ] + }, + { + "id": 171, + "text": "And as a side note, it does, you know, the privacy screening", + "start": 486.14, + "end": 490.36, + "words": [ + { + "word": " And", + "start": 486.14, + "end": 486.46, + "probability": 0.98779296875 + }, + { + "word": " as", + "start": 486.46, + "end": 487.38, + "probability": 0.98779296875 + }, + { + "word": " a", + "start": 487.38, + "end": 487.52, + "probability": 1.0 + }, + { + "word": " side", + "start": 487.52, + "end": 487.76, + "probability": 1.0 + }, + { + "word": " note,", + "start": 487.76, + "end": 487.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 488.08, + "end": 488.28, + "probability": 1.0 + }, + { + "word": " does,", + "start": 488.28, + "end": 488.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 488.68, + "end": 488.8, + "probability": 1.0 + }, + { + "word": " know,", + "start": 488.8, + "end": 488.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 488.98, + "end": 489.2, + "probability": 0.99560546875 + }, + { + "word": " privacy", + "start": 489.2, + "end": 489.96, + "probability": 0.99951171875 + }, + { + "word": " screening", + "start": 489.96, + "end": 490.36, + "probability": 1.0 + } + ] + }, + { + "id": 172, + "text": "and the basic antivirus on the phone as well, which is kind of nice.", + "start": 490.36, + "end": 494.76, + "words": [ + { + "word": " and", + "start": 490.36, + "end": 490.92, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 490.92, + "end": 491.62, + "probability": 0.99755859375 + }, + { + "word": " basic", + "start": 491.62, + "end": 492.34, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 492.34, + "end": 492.96, + "probability": 0.99462890625 + }, + { + "word": " on", + "start": 492.96, + "end": 493.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 493.12, + "end": 493.22, + "probability": 1.0 + }, + { + "word": " phone", + "start": 493.22, + "end": 493.34, + "probability": 1.0 + }, + { + "word": " as", + "start": 493.34, + "end": 493.46, + "probability": 0.99560546875 + }, + { + "word": " well,", + "start": 493.46, + "end": 493.62, + "probability": 1.0 + }, + { + "word": " which", + "start": 493.72, + "end": 494.2, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 494.2, + "end": 494.36, + "probability": 1.0 + }, + { + "word": " kind", + "start": 494.36, + "end": 494.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 494.46, + "end": 494.56, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 494.56, + "end": 494.76, + "probability": 1.0 + } + ] + }, + { + "id": 173, + "text": "All right, very good.", + "start": 495.28, + "end": 496.1, + "words": [ + { + "word": " All", + "start": 495.28, + "end": 495.54, + "probability": 0.99609375 + }, + { + "word": " right,", + "start": 495.54, + "end": 495.7, + "probability": 1.0 + }, + { + "word": " very", + "start": 495.74, + "end": 495.88, + "probability": 1.0 + }, + { + "word": " good.", + "start": 495.88, + "end": 496.1, + "probability": 1.0 + } + ] + }, + { + "id": 174, + "text": "Thanks for the information.", + "start": 496.14, + "end": 496.92, + "words": [ + { + "word": " Thanks", + "start": 496.14, + "end": 496.36, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 496.36, + "end": 496.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 496.5, + "end": 496.58, + "probability": 1.0 + }, + { + "word": " information.", + "start": 496.58, + "end": 496.92, + "probability": 1.0 + } + ] + }, + { + "id": 175, + "text": "No problem.", + "start": 497.2, + "end": 497.58, + "words": [ + { + "word": " No", + "start": 497.2, + "end": 497.36, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 497.36, + "end": 497.58, + "probability": 1.0 + } + ] + }, + { + "id": 176, + "text": "Thanks for the call.", + "start": 497.62, + "end": 498.08, + "words": [ + { + "word": " Thanks", + "start": 497.62, + "end": 497.74, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 497.74, + "end": 497.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 497.88, + "end": 497.96, + "probability": 1.0 + }, + { + "word": " call.", + "start": 497.96, + "end": 498.08, + "probability": 1.0 + } + ] + }, + { + "id": 177, + "text": "I appreciate it.", + "start": 498.14, + "end": 498.66, + "words": [ + { + "word": " I", + "start": 498.14, + "end": 498.22, + "probability": 0.9990234375 + }, + { + "word": " appreciate", + "start": 498.22, + "end": 498.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 498.44, + "end": 498.66, + "probability": 1.0 + } + ] + }, + { + "id": 178, + "text": "If you'd like to be part of the show, 751-1041,", + "start": 499.02, + "end": 501.4, + "words": [ + { + "word": " If", + "start": 499.02, + "end": 499.38, + "probability": 0.9765625 + }, + { + "word": " you'd", + "start": 499.38, + "end": 499.6, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 499.6, + "end": 499.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 499.66, + "end": 499.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 499.76, + "end": 499.78, + "probability": 1.0 + }, + { + "word": " part", + "start": 499.78, + "end": 499.96, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 499.96, + "end": 500.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 500.04, + "end": 500.06, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 500.06, + "end": 500.24, + "probability": 1.0 + }, + { + "word": " 751", + "start": 500.3, + "end": 500.9, + "probability": 0.99462890625 + }, + { + "word": "-1041,", + "start": 500.9, + "end": 501.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 179, + "text": "we'll see what we can do to help you out with whatever technology issues you may be having.", + "start": 501.64, + "end": 505.16, + "words": [ + { + "word": " we'll", + "start": 501.64, + "end": 501.74, + "probability": 0.9970703125 + }, + { + "word": " see", + "start": 501.74, + "end": 501.78, + "probability": 0.99462890625 + }, + { + "word": " what", + "start": 501.78, + "end": 501.9, + "probability": 1.0 + }, + { + "word": " we", + "start": 501.9, + "end": 501.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 501.98, + "end": 502.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 502.04, + "end": 502.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 502.1, + "end": 502.22, + "probability": 1.0 + }, + { + "word": " help", + "start": 502.22, + "end": 502.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 502.36, + "end": 502.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 502.5, + "end": 502.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 502.58, + "end": 502.72, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 502.72, + "end": 502.94, + "probability": 1.0 + }, + { + "word": " technology", + "start": 502.94, + "end": 503.34, + "probability": 1.0 + }, + { + "word": " issues", + "start": 503.34, + "end": 503.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 503.88, + "end": 504.28, + "probability": 1.0 + }, + { + "word": " may", + "start": 504.28, + "end": 504.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 504.48, + "end": 504.72, + "probability": 1.0 + }, + { + "word": " having.", + "start": 504.72, + "end": 505.16, + "probability": 1.0 + } + ] + }, + { + "id": 180, + "text": "But, Raynal.", + "start": 505.26, + "end": 505.86, + "words": [ + { + "word": " But,", + "start": 505.26, + "end": 505.62, + "probability": 0.998046875 + }, + { + "word": " Raynal.", + "start": 505.62, + "end": 505.86, + "probability": 0.65185546875 + } + ] + }, + { + "id": 181, + "text": "Yes.", + "start": 506.08, + "end": 506.44, + "words": [ + { + "word": " Yes.", + "start": 506.08, + "end": 506.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 182, + "text": "Do you remember what we can get?", + "start": 506.92, + "end": 508.08, + "words": [ + { + "word": " Do", + "start": 506.92, + "end": 507.28, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 507.28, + "end": 507.3, + "probability": 1.0 + }, + { + "word": " remember", + "start": 507.3, + "end": 507.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 507.5, + "end": 507.76, + "probability": 0.83154296875 + }, + { + "word": " we", + "start": 507.76, + "end": 507.84, + "probability": 0.330322265625 + }, + { + "word": " can", + "start": 507.84, + "end": 507.98, + "probability": 0.299560546875 + }, + { + "word": " get?", + "start": 507.98, + "end": 508.08, + "probability": 0.83056640625 + } + ] + }, + { + "id": 183, + "text": "Because I see right now.", + "start": 508.08, + "end": 508.92, + "words": [ + { + "word": " Because", + "start": 508.08, + "end": 508.26, + "probability": 0.81884765625 + }, + { + "word": " I", + "start": 508.26, + "end": 508.28, + "probability": 1.0 + }, + { + "word": " see", + "start": 508.28, + "end": 508.48, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 508.48, + "end": 508.68, + "probability": 0.59326171875 + }, + { + "word": " now.", + "start": 508.68, + "end": 508.92, + "probability": 0.99755859375 + } + ] + }, + { + "id": 184, + "text": "I'm Ray.", + "start": 508.92, + "end": 509.04, + "words": [ + { + "word": " I'm", + "start": 508.92, + "end": 509.04, + "probability": 0.7705078125 + }, + { + "word": " Ray.", + "start": 509.04, + "end": 509.04, + "probability": 0.399169921875 + } + ] + }, + { + "id": 185, + "text": "I'm a goody-go-money machine, but I do have some news.", + "start": 509.14, + "end": 510.9, + "words": [ + { + "word": " I'm", + "start": 509.14, + "end": 509.14, + "probability": 0.172607421875 + }, + { + "word": " a", + "start": 509.14, + "end": 509.14, + "probability": 0.1407470703125 + }, + { + "word": " goody", + "start": 509.14, + "end": 509.3, + "probability": 0.130126953125 + }, + { + "word": "-go", + "start": 509.3, + "end": 509.32, + "probability": 0.1839599609375 + }, + { + "word": "-money", + "start": 509.32, + "end": 509.4, + "probability": 0.405517578125 + }, + { + "word": " machine,", + "start": 509.4, + "end": 509.68, + "probability": 0.98486328125 + }, + { + "word": " but", + "start": 509.68, + "end": 509.84, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 509.84, + "end": 509.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 509.9, + "end": 510.14, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 510.14, + "end": 510.36, + "probability": 1.0 + }, + { + "word": " some", + "start": 510.36, + "end": 510.58, + "probability": 0.99951171875 + }, + { + "word": " news.", + "start": 510.58, + "end": 510.9, + "probability": 0.98876953125 + } + ] + }, + { + "id": 186, + "text": "Things I can talk about off the top of my head.", + "start": 511.08, + "end": 512.58, + "words": [ + { + "word": " Things", + "start": 511.08, + "end": 511.4, + "probability": 0.916015625 + }, + { + "word": " I", + "start": 511.4, + "end": 511.6, + "probability": 1.0 + }, + { + "word": " can", + "start": 511.6, + "end": 511.7, + "probability": 0.994140625 + }, + { + "word": " talk", + "start": 511.7, + "end": 511.86, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 511.86, + "end": 512.0, + "probability": 0.966796875 + }, + { + "word": " off", + "start": 512.0, + "end": 512.1, + "probability": 0.463134765625 + }, + { + "word": " the", + "start": 512.1, + "end": 512.12, + "probability": 1.0 + }, + { + "word": " top", + "start": 512.12, + "end": 512.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 512.28, + "end": 512.32, + "probability": 1.0 + }, + { + "word": " my", + "start": 512.32, + "end": 512.42, + "probability": 1.0 + }, + { + "word": " head.", + "start": 512.42, + "end": 512.58, + "probability": 1.0 + } + ] + }, + { + "id": 187, + "text": "Yeah.", + "start": 512.86, + "end": 512.96, + "words": [ + { + "word": " Yeah.", + "start": 512.86, + "end": 512.96, + "probability": 0.1519775390625 + } + ] + }, + { + "id": 188, + "text": "Hey, if you guys have an extra $40,000 laying around and you want to buy a pair of shoes,", + "start": 513.28, + "end": 518.34, + "words": [ + { + "word": " Hey,", + "start": 513.28, + "end": 513.6, + "probability": 0.92333984375 + }, + { + "word": " if", + "start": 514.1, + "end": 514.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 514.6, + "end": 514.68, + "probability": 1.0 + }, + { + "word": " guys", + "start": 514.68, + "end": 514.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 514.88, + "end": 515.16, + "probability": 0.8994140625 + }, + { + "word": " an", + "start": 515.16, + "end": 515.68, + "probability": 1.0 + }, + { + "word": " extra", + "start": 515.68, + "end": 515.74, + "probability": 0.99853515625 + }, + { + "word": " $40", + "start": 515.74, + "end": 516.1, + "probability": 1.0 + }, + { + "word": ",000", + "start": 516.1, + "end": 516.6, + "probability": 1.0 + }, + { + "word": " laying", + "start": 516.6, + "end": 517.04, + "probability": 0.9921875 + }, + { + "word": " around", + "start": 517.04, + "end": 517.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 517.22, + "end": 517.3, + "probability": 0.849609375 + }, + { + "word": " you", + "start": 517.3, + "end": 517.36, + "probability": 1.0 + }, + { + "word": " want", + "start": 517.36, + "end": 517.5, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 517.5, + "end": 517.6, + "probability": 1.0 + }, + { + "word": " buy", + "start": 517.6, + "end": 517.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 517.74, + "end": 517.9, + "probability": 1.0 + }, + { + "word": " pair", + "start": 517.9, + "end": 518.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 518.04, + "end": 518.14, + "probability": 1.0 + }, + { + "word": " shoes,", + "start": 518.14, + "end": 518.34, + "probability": 1.0 + } + ] + }, + { + "id": 189, + "text": "I'm going to tell you what shoes you can buy because they're awesome.", + "start": 518.8399999999999, + "end": 520.78, + "words": [ + { + "word": " I'm", + "start": 518.8399999999999, + "end": 519.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 519.16, + "end": 519.22, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 519.22, + "end": 519.26, + "probability": 1.0 + }, + { + "word": " tell", + "start": 519.26, + "end": 519.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 519.42, + "end": 519.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 519.5, + "end": 519.6, + "probability": 0.85791015625 + }, + { + "word": " shoes", + "start": 519.6, + "end": 519.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 519.74, + "end": 519.9, + "probability": 1.0 + }, + { + "word": " can", + "start": 519.9, + "end": 519.98, + "probability": 1.0 + }, + { + "word": " buy", + "start": 519.98, + "end": 520.18, + "probability": 1.0 + }, + { + "word": " because", + "start": 520.18, + "end": 520.36, + "probability": 0.91455078125 + }, + { + "word": " they're", + "start": 520.36, + "end": 520.48, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 520.48, + "end": 520.78, + "probability": 1.0 + } + ] + }, + { + "id": 190, + "text": "Right.", + "start": 521.04, + "end": 521.36, + "words": [ + { + "word": " Right.", + "start": 521.04, + "end": 521.36, + "probability": 0.98583984375 + } + ] + }, + { + "id": 191, + "text": "So that's pretty cool.", + "start": 521.84, + "end": 522.66, + "words": [ + { + "word": " So", + "start": 521.84, + "end": 522.16, + "probability": 0.96826171875 + }, + { + "word": " that's", + "start": 522.16, + "end": 522.38, + "probability": 0.921875 + }, + { + "word": " pretty", + "start": 522.38, + "end": 522.48, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 522.48, + "end": 522.66, + "probability": 1.0 + } + ] + }, + { + "id": 192, + "text": "And it goes to a charity.", + "start": 522.7, + "end": 523.32, + "words": [ + { + "word": " And", + "start": 522.7, + "end": 522.8, + "probability": 0.8916015625 + }, + { + "word": " it", + "start": 522.8, + "end": 522.8, + "probability": 0.99951171875 + }, + { + "word": " goes", + "start": 522.8, + "end": 522.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 522.92, + "end": 522.98, + "probability": 0.9521484375 + }, + { + "word": " a", + "start": 522.98, + "end": 523.06, + "probability": 1.0 + }, + { + "word": " charity.", + "start": 523.06, + "end": 523.32, + "probability": 1.0 + } + ] + }, + { + "id": 193, + "text": "I don't know who would buy $40,000 shoes, but I guess some people are.", + "start": 523.42, + "end": 527.22, + "words": [ + { + "word": " I", + "start": 523.42, + "end": 523.66, + "probability": 0.994140625 + }, + { + "word": " don't", + "start": 523.66, + "end": 523.88, + "probability": 1.0 + }, + { + "word": " know", + "start": 523.88, + "end": 523.96, + "probability": 1.0 + }, + { + "word": " who", + "start": 523.96, + "end": 524.1, + "probability": 1.0 + }, + { + "word": " would", + "start": 524.1, + "end": 524.24, + "probability": 0.96826171875 + }, + { + "word": " buy", + "start": 524.24, + "end": 524.5, + "probability": 1.0 + }, + { + "word": " $40", + "start": 524.5, + "end": 525.0, + "probability": 0.9990234375 + }, + { + "word": ",000", + "start": 525.0, + "end": 525.32, + "probability": 1.0 + }, + { + "word": " shoes,", + "start": 525.32, + "end": 525.66, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 525.82, + "end": 525.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 525.92, + "end": 526.58, + "probability": 0.99951171875 + }, + { + "word": " guess", + "start": 526.58, + "end": 526.72, + "probability": 1.0 + }, + { + "word": " some", + "start": 526.72, + "end": 526.86, + "probability": 1.0 + }, + { + "word": " people", + "start": 526.86, + "end": 527.06, + "probability": 1.0 + }, + { + "word": " are.", + "start": 527.06, + "end": 527.22, + "probability": 0.92041015625 + } + ] + }, + { + "id": 194, + "text": "Some people are.", + "start": 527.24, + "end": 527.58, + "words": [ + { + "word": " Some", + "start": 527.24, + "end": 527.52, + "probability": 0.67236328125 + }, + { + "word": " people", + "start": 527.52, + "end": 527.58, + "probability": 0.9970703125 + }, + { + "word": " are.", + "start": 527.58, + "end": 527.58, + "probability": 0.78662109375 + } + ] + }, + { + "id": 195, + "text": "1,500 people are, yeah, I guess.", + "start": 527.58, + "end": 529.14, + "words": [ + { + "word": " 1", + "start": 527.58, + "end": 527.58, + "probability": 0.89453125 + }, + { + "word": ",500", + "start": 527.58, + "end": 527.88, + "probability": 1.0 + }, + { + "word": " people", + "start": 527.88, + "end": 528.22, + "probability": 1.0 + }, + { + "word": " are,", + "start": 528.22, + "end": 528.48, + "probability": 0.99951171875 + }, + { + "word": " yeah,", + "start": 528.64, + "end": 528.78, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 528.82, + "end": 528.92, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 528.92, + "end": 529.14, + "probability": 1.0 + } + ] + }, + { + "id": 196, + "text": "So, yeah, that's cool.", + "start": 529.44, + "end": 530.34, + "words": [ + { + "word": " So,", + "start": 529.44, + "end": 529.76, + "probability": 0.99365234375 + }, + { + "word": " yeah,", + "start": 529.8, + "end": 529.98, + "probability": 0.92529296875 + }, + { + "word": " that's", + "start": 530.0, + "end": 530.18, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 530.18, + "end": 530.34, + "probability": 1.0 + } + ] + }, + { + "id": 197, + "text": "And that money is going to a fundraiser for people with Parkinson's.", + "start": 530.66, + "end": 536.3, + "words": [ + { + "word": " And", + "start": 530.66, + "end": 530.98, + "probability": 0.9921875 + }, + { + "word": " that", + "start": 530.98, + "end": 531.26, + "probability": 0.99951171875 + }, + { + "word": " money", + "start": 531.26, + "end": 532.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 532.24, + "end": 532.46, + "probability": 1.0 + }, + { + "word": " going", + "start": 532.46, + "end": 532.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 532.64, + "end": 532.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 532.92, + "end": 533.1, + "probability": 1.0 + }, + { + "word": " fundraiser", + "start": 533.1, + "end": 534.32, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 534.32, + "end": 534.72, + "probability": 0.99755859375 + }, + { + "word": " people", + "start": 534.72, + "end": 535.24, + "probability": 1.0 + }, + { + "word": " with", + "start": 535.24, + "end": 535.56, + "probability": 1.0 + }, + { + "word": " Parkinson's.", + "start": 535.56, + "end": 536.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 198, + "text": "So you might be able to put the pieces together.", + "start": 536.34, + "end": 538.5, + "words": [ + { + "word": " So", + "start": 536.34, + "end": 536.66, + "probability": 0.458984375 + }, + { + "word": " you", + "start": 536.66, + "end": 536.92, + "probability": 0.9931640625 + }, + { + "word": " might", + "start": 536.92, + "end": 537.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 537.34, + "end": 537.44, + "probability": 1.0 + }, + { + "word": " able", + "start": 537.44, + "end": 537.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 537.5, + "end": 537.68, + "probability": 1.0 + }, + { + "word": " put", + "start": 537.68, + "end": 537.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 537.88, + "end": 537.98, + "probability": 0.9697265625 + }, + { + "word": " pieces", + "start": 537.98, + "end": 538.22, + "probability": 1.0 + }, + { + "word": " together.", + "start": 538.22, + "end": 538.5, + "probability": 1.0 + } + ] + }, + { + "id": 199, + "text": "I'll tell you a little bit more about that here.", + "start": 538.5, + "end": 539.58, + "words": [ + { + "word": " I'll", + "start": 538.5, + "end": 538.74, + "probability": 0.6396484375 + }, + { + "word": " tell", + "start": 538.74, + "end": 538.8, + "probability": 0.5244140625 + }, + { + "word": " you", + "start": 538.8, + "end": 538.9, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 538.9, + "end": 538.98, + "probability": 0.9921875 + }, + { + "word": " little", + "start": 538.98, + "end": 539.06, + "probability": 1.0 + }, + { + "word": " bit", + "start": 539.06, + "end": 539.16, + "probability": 0.43017578125 + }, + { + "word": " more", + "start": 539.16, + "end": 539.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 539.28, + "end": 539.34, + "probability": 0.88427734375 + }, + { + "word": " that", + "start": 539.34, + "end": 539.48, + "probability": 0.99267578125 + }, + { + "word": " here.", + "start": 539.48, + "end": 539.58, + "probability": 0.44970703125 + } + ] + }, + { + "id": 200, + "text": "People are hacking cars now.", + "start": 539.58, + "end": 540.9, + "words": [ + { + "word": " People", + "start": 539.58, + "end": 539.76, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 539.76, + "end": 539.78, + "probability": 1.0 + }, + { + "word": " hacking", + "start": 539.78, + "end": 540.02, + "probability": 0.99951171875 + }, + { + "word": " cars", + "start": 540.02, + "end": 540.54, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 540.54, + "end": 540.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 201, + "text": "People are hacking cars, yeah.", + "start": 541.08, + "end": 542.5, + "words": [ + { + "word": " People", + "start": 541.08, + "end": 541.42, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 541.42, + "end": 541.6, + "probability": 1.0 + }, + { + "word": " hacking", + "start": 541.6, + "end": 541.88, + "probability": 1.0 + }, + { + "word": " cars,", + "start": 541.88, + "end": 542.24, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 542.38, + "end": 542.5, + "probability": 0.9970703125 + } + ] + }, + { + "id": 202, + "text": "I mean, they have to have physical touch with it, but they are hacking cars.", + "start": 542.62, + "end": 545.36, + "words": [ + { + "word": " I", + "start": 542.62, + "end": 542.78, + "probability": 0.71826171875 + }, + { + "word": " mean,", + "start": 542.78, + "end": 542.92, + "probability": 1.0 + }, + { + "word": " they", + "start": 542.92, + "end": 543.12, + "probability": 1.0 + }, + { + "word": " have", + "start": 543.12, + "end": 543.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 543.38, + "end": 543.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 543.48, + "end": 543.56, + "probability": 1.0 + }, + { + "word": " physical", + "start": 543.56, + "end": 543.88, + "probability": 1.0 + }, + { + "word": " touch", + "start": 543.88, + "end": 544.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 544.2, + "end": 544.38, + "probability": 1.0 + }, + { + "word": " it,", + "start": 544.38, + "end": 544.5, + "probability": 0.99365234375 + }, + { + "word": " but", + "start": 544.56, + "end": 544.64, + "probability": 1.0 + }, + { + "word": " they", + "start": 544.64, + "end": 544.72, + "probability": 1.0 + }, + { + "word": " are", + "start": 544.72, + "end": 544.8, + "probability": 1.0 + }, + { + "word": " hacking", + "start": 544.8, + "end": 545.02, + "probability": 1.0 + }, + { + "word": " cars.", + "start": 545.02, + "end": 545.36, + "probability": 1.0 + } + ] + }, + { + "id": 203, + "text": "Yeah, that's not for long.", + "start": 545.6, + "end": 546.5, + "words": [ + { + "word": " Yeah,", + "start": 545.6, + "end": 545.88, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 545.9, + "end": 546.08, + "probability": 1.0 + }, + { + "word": " not", + "start": 546.08, + "end": 546.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 546.16, + "end": 546.28, + "probability": 1.0 + }, + { + "word": " long.", + "start": 546.28, + "end": 546.5, + "probability": 1.0 + } + ] + }, + { + "id": 204, + "text": "Pretty soon they'll be able to do it through ESPN.", + "start": 546.62, + "end": 548.38, + "words": [ + { + "word": " Pretty", + "start": 546.62, + "end": 546.88, + "probability": 0.9521484375 + }, + { + "word": " soon", + "start": 546.88, + "end": 547.04, + "probability": 0.9931640625 + }, + { + "word": " they'll", + "start": 547.04, + "end": 547.18, + "probability": 0.8037109375 + }, + { + "word": " be", + "start": 547.18, + "end": 547.26, + "probability": 1.0 + }, + { + "word": " able", + "start": 547.26, + "end": 547.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 547.4, + "end": 547.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 547.54, + "end": 547.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 547.7, + "end": 547.78, + "probability": 1.0 + }, + { + "word": " through", + "start": 547.78, + "end": 547.94, + "probability": 1.0 + }, + { + "word": " ESPN.", + "start": 547.94, + "end": 548.38, + "probability": 1.0 + } + ] + }, + { + "id": 205, + "text": "People are getting viruses via speeding tickets.", + "start": 548.56, + "end": 551.72, + "words": [ + { + "word": " People", + "start": 548.56, + "end": 548.92, + "probability": 1.0 + }, + { + "word": " are", + "start": 548.92, + "end": 549.06, + "probability": 1.0 + }, + { + "word": " getting", + "start": 549.06, + "end": 549.26, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 549.26, + "end": 550.1, + "probability": 0.99951171875 + }, + { + "word": " via", + "start": 550.1, + "end": 550.96, + "probability": 1.0 + }, + { + "word": " speeding", + "start": 550.96, + "end": 551.34, + "probability": 0.99951171875 + }, + { + "word": " tickets.", + "start": 551.34, + "end": 551.72, + "probability": 1.0 + } + ] + }, + { + "id": 206, + "text": "That's awesome.", + "start": 552.8, + "end": 553.36, + "words": [ + { + "word": " That's", + "start": 552.8, + "end": 553.16, + "probability": 0.9970703125 + }, + { + "word": " awesome.", + "start": 553.16, + "end": 553.36, + "probability": 1.0 + } + ] + }, + { + "id": 207, + "text": "That is interesting.", + "start": 553.42, + "end": 554.64, + "words": [ + { + "word": " That", + "start": 553.42, + "end": 553.6, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 553.6, + "end": 553.78, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 553.78, + "end": 554.64, + "probability": 0.99658203125 + } + ] + }, + { + "id": 208, + "text": "We'll tell you a little more about that one as well.", + "start": 554.96, + "end": 556.62, + "words": [ + { + "word": " We'll", + "start": 554.96, + "end": 555.32, + "probability": 0.99609375 + }, + { + "word": " tell", + "start": 555.32, + "end": 555.44, + "probability": 0.95947265625 + }, + { + "word": " you", + "start": 555.44, + "end": 555.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 555.54, + "end": 555.6, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 555.6, + "end": 555.64, + "probability": 1.0 + }, + { + "word": " more", + "start": 555.64, + "end": 555.74, + "probability": 0.89501953125 + }, + { + "word": " about", + "start": 555.74, + "end": 555.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 555.94, + "end": 556.18, + "probability": 1.0 + }, + { + "word": " one", + "start": 556.18, + "end": 556.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 556.3, + "end": 556.4, + "probability": 0.99072265625 + }, + { + "word": " well.", + "start": 556.4, + "end": 556.62, + "probability": 1.0 + } + ] + }, + { + "id": 209, + "text": "And, of course, there's always the new thing.", + "start": 557.06, + "end": 558.76, + "words": [ + { + "word": " And,", + "start": 557.06, + "end": 557.42, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 557.5, + "end": 557.68, + "probability": 1.0 + }, + { + "word": " course,", + "start": 557.68, + "end": 557.88, + "probability": 1.0 + }, + { + "word": " there's", + "start": 557.88, + "end": 558.06, + "probability": 1.0 + }, + { + "word": " always", + "start": 558.06, + "end": 558.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 558.18, + "end": 558.34, + "probability": 0.7548828125 + }, + { + "word": " new", + "start": 558.34, + "end": 558.48, + "probability": 0.99951171875 + }, + { + "word": " thing.", + "start": 558.48, + "end": 558.76, + "probability": 1.0 + } + ] + }, + { + "id": 210, + "text": "You know, people are mooning Google TV.", + "start": 558.84, + "end": 561.18, + "words": [ + { + "word": " You", + "start": 558.84, + "end": 558.98, + "probability": 0.460205078125 + }, + { + "word": " know,", + "start": 558.98, + "end": 559.06, + "probability": 1.0 + }, + { + "word": " people", + "start": 559.06, + "end": 559.26, + "probability": 1.0 + }, + { + "word": " are", + "start": 559.26, + "end": 559.44, + "probability": 0.95361328125 + }, + { + "word": " mooning", + "start": 559.44, + "end": 560.22, + "probability": 0.9892578125 + }, + { + "word": " Google", + "start": 560.22, + "end": 560.42, + "probability": 0.99951171875 + }, + { + "word": " TV.", + "start": 560.42, + "end": 561.18, + "probability": 0.9931640625 + } + ] + }, + { + "id": 211, + "text": "Or not Google TV.", + "start": 561.46, + "end": 562.06, + "words": [ + { + "word": " Or", + "start": 561.46, + "end": 561.58, + "probability": 0.97314453125 + }, + { + "word": " not", + "start": 561.58, + "end": 561.68, + "probability": 0.95654296875 + }, + { + "word": " Google", + "start": 561.68, + "end": 561.84, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 561.84, + "end": 562.06, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "They're mooning Google street maps.", + "start": 562.14, + "end": 563.22, + "words": [ + { + "word": " They're", + "start": 562.14, + "end": 562.28, + "probability": 0.9990234375 + }, + { + "word": " mooning", + "start": 562.28, + "end": 562.6, + "probability": 1.0 + }, + { + "word": " Google", + "start": 562.6, + "end": 562.86, + "probability": 1.0 + }, + { + "word": " street", + "start": 562.86, + "end": 563.22, + "probability": 0.60546875 + }, + { + "word": " maps.", + "start": 563.22, + "end": 563.22, + "probability": 0.986328125 + } + ] + }, + { + "id": 213, + "text": "I didn't know that they were actually mooning.", + "start": 563.22, + "end": 564.9, + "words": [ + { + "word": " I", + "start": 563.22, + "end": 563.5, + "probability": 0.98876953125 + }, + { + "word": " didn't", + "start": 563.5, + "end": 563.7, + "probability": 0.9697265625 + }, + { + "word": " know", + "start": 563.7, + "end": 563.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 563.72, + "end": 563.86, + "probability": 0.81982421875 + }, + { + "word": " they", + "start": 563.86, + "end": 564.0, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 564.0, + "end": 564.12, + "probability": 1.0 + }, + { + "word": " actually", + "start": 564.12, + "end": 564.34, + "probability": 0.99853515625 + }, + { + "word": " mooning.", + "start": 564.34, + "end": 564.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 214, + "text": "Wasn't it just a full-on frontal?", + "start": 564.9, + "end": 566.34, + "words": [ + { + "word": " Wasn't", + "start": 564.9, + "end": 565.1, + "probability": 0.9873046875 + }, + { + "word": " it", + "start": 565.1, + "end": 565.18, + "probability": 0.98095703125 + }, + { + "word": " just", + "start": 565.18, + "end": 565.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 565.36, + "end": 565.54, + "probability": 1.0 + }, + { + "word": " full", + "start": 565.54, + "end": 565.84, + "probability": 1.0 + }, + { + "word": "-on", + "start": 565.84, + "end": 566.04, + "probability": 0.98828125 + }, + { + "word": " frontal?", + "start": 566.04, + "end": 566.34, + "probability": 0.98486328125 + } + ] + }, + { + "id": 215, + "text": "Full Monty.", + "start": 566.56, + "end": 567.42, + "words": [ + { + "word": " Full", + "start": 566.56, + "end": 566.78, + "probability": 0.9990234375 + }, + { + "word": " Monty.", + "start": 566.78, + "end": 567.42, + "probability": 0.9755859375 + } + ] + }, + { + "id": 216, + "text": "Yeah.", + "start": 567.5, + "end": 567.86, + "words": [ + { + "word": " Yeah.", + "start": 567.5, + "end": 567.86, + "probability": 0.94384765625 + } + ] + }, + { + "id": 217, + "text": "Yeah.", + "start": 567.86, + "end": 568.1, + "words": [ + { + "word": " Yeah.", + "start": 567.86, + "end": 568.1, + "probability": 0.027923583984375 + } + ] + }, + { + "id": 218, + "text": "Yeah.", + "start": 568.1, + "end": 568.38, + "words": [ + { + "word": " Yeah.", + "start": 568.1, + "end": 568.38, + "probability": 0.09002685546875 + } + ] + }, + { + "id": 219, + "text": "Full Monty.", + "start": 568.5, + "end": 568.74, + "words": [ + { + "word": " Full", + "start": 568.5, + "end": 568.5, + "probability": 0.00010383129119873047 + }, + { + "word": " Monty.", + "start": 568.5, + "end": 568.74, + "probability": 0.89697265625 + } + ] + }, + { + "id": 220, + "text": "So it has to be planned.", + "start": 568.84, + "end": 570.98, + "words": [ + { + "word": " So", + "start": 568.84, + "end": 568.98, + "probability": 0.505859375 + }, + { + "word": " it", + "start": 568.98, + "end": 569.38, + "probability": 0.70361328125 + }, + { + "word": " has", + "start": 569.38, + "end": 570.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 570.4, + "end": 570.54, + "probability": 1.0 + }, + { + "word": " be", + "start": 570.54, + "end": 570.6, + "probability": 1.0 + }, + { + "word": " planned.", + "start": 570.6, + "end": 570.98, + "probability": 1.0 + } + ] + }, + { + "id": 221, + "text": "So that's out there.", + "start": 571.04, + "end": 572.28, + "words": [ + { + "word": " So", + "start": 571.04, + "end": 571.24, + "probability": 0.998046875 + }, + { + "word": " that's", + "start": 571.24, + "end": 571.56, + "probability": 1.0 + }, + { + "word": " out", + "start": 571.56, + "end": 571.98, + "probability": 0.994140625 + }, + { + "word": " there.", + "start": 571.98, + "end": 572.28, + "probability": 1.0 + } + ] + }, + { + "id": 222, + "text": "I'll never get tired of those stories.", + "start": 572.44, + "end": 575.16, + "words": [ + { + "word": " I'll", + "start": 572.44, + "end": 572.88, + "probability": 0.9990234375 + }, + { + "word": " never", + "start": 572.88, + "end": 573.2, + "probability": 1.0 + }, + { + "word": " get", + "start": 573.2, + "end": 573.4, + "probability": 1.0 + }, + { + "word": " tired", + "start": 573.4, + "end": 574.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 574.28, + "end": 574.52, + "probability": 1.0 + }, + { + "word": " those", + "start": 574.52, + "end": 574.68, + "probability": 1.0 + }, + { + "word": " stories.", + "start": 574.68, + "end": 575.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 223, + "text": "So what else we got going on?", + "start": 578.1399999999999, + "end": 579.84, + "words": [ + { + "word": " So", + "start": 578.1399999999999, + "end": 578.5799999999999, + "probability": 0.9931640625 + }, + { + "word": " what", + "start": 578.5799999999999, + "end": 579.02, + "probability": 0.9755859375 + }, + { + "word": " else", + "start": 579.02, + "end": 579.2, + "probability": 1.0 + }, + { + "word": " we", + "start": 579.2, + "end": 579.32, + "probability": 0.88818359375 + }, + { + "word": " got", + "start": 579.32, + "end": 579.42, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 579.42, + "end": 579.6, + "probability": 1.0 + }, + { + "word": " on?", + "start": 579.6, + "end": 579.84, + "probability": 1.0 + } + ] + }, + { + "id": 224, + "text": "Well, the other things that we're looking at is the droiding bionic.", + "start": 580.04, + "end": 584.72, + "words": [ + { + "word": " Well,", + "start": 580.04, + "end": 580.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 580.4, + "end": 580.54, + "probability": 0.958984375 + }, + { + "word": " other", + "start": 580.54, + "end": 580.84, + "probability": 1.0 + }, + { + "word": " things", + "start": 580.84, + "end": 581.14, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 581.14, + "end": 581.24, + "probability": 0.99462890625 + }, + { + "word": " we're", + "start": 581.24, + "end": 581.46, + "probability": 1.0 + }, + { + "word": " looking", + "start": 581.46, + "end": 582.16, + "probability": 1.0 + }, + { + "word": " at", + "start": 582.16, + "end": 582.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 582.34, + "end": 582.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 582.48, + "end": 582.7, + "probability": 0.99951171875 + }, + { + "word": " droiding", + "start": 582.7, + "end": 583.86, + "probability": 0.876953125 + }, + { + "word": " bionic.", + "start": 583.86, + "end": 584.72, + "probability": 0.986328125 + } + ] + }, + { + "id": 225, + "text": "Droid.", + "start": 584.88, + "end": 585.32, + "words": [ + { + "word": " Droid.", + "start": 584.88, + "end": 585.32, + "probability": 0.9970703125 + } + ] + }, + { + "id": 226, + "text": "Droid bionic.", + "start": 585.52, + "end": 586.38, + "words": [ + { + "word": " Droid", + "start": 585.52, + "end": 585.94, + "probability": 0.99658203125 + }, + { + "word": " bionic.", + "start": 585.94, + "end": 586.38, + "probability": 0.97900390625 + } + ] + }, + { + "id": 227, + "text": "It came out this week.", + "start": 586.4, + "end": 587.6, + "words": [ + { + "word": " It", + "start": 586.4, + "end": 586.58, + "probability": 0.96240234375 + }, + { + "word": " came", + "start": 586.58, + "end": 586.94, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 586.94, + "end": 587.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 587.12, + "end": 587.3, + "probability": 1.0 + }, + { + "word": " week.", + "start": 587.3, + "end": 587.6, + "probability": 1.0 + } + ] + }, + { + "id": 228, + "text": "Yes.", + "start": 587.64, + "end": 587.92, + "words": [ + { + "word": " Yes.", + "start": 587.64, + "end": 587.92, + "probability": 0.98046875 + } + ] + }, + { + "id": 229, + "text": "And they officially released the LTE in Tucson.", + "start": 588.12, + "end": 592.04, + "words": [ + { + "word": " And", + "start": 588.12, + "end": 588.56, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 588.56, + "end": 588.84, + "probability": 1.0 + }, + { + "word": " officially", + "start": 588.84, + "end": 589.56, + "probability": 1.0 + }, + { + "word": " released", + "start": 589.56, + "end": 590.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 590.2, + "end": 590.66, + "probability": 1.0 + }, + { + "word": " LTE", + "start": 590.66, + "end": 591.18, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 591.18, + "end": 591.72, + "probability": 1.0 + }, + { + "word": " Tucson.", + "start": 591.72, + "end": 592.04, + "probability": 1.0 + } + ] + }, + { + "id": 230, + "text": "I know.", + "start": 592.22, + "end": 592.72, + "words": [ + { + "word": " I", + "start": 592.22, + "end": 592.52, + "probability": 0.99951171875 + }, + { + "word": " know.", + "start": 592.52, + "end": 592.72, + "probability": 1.0 + } + ] + }, + { + "id": 231, + "text": "I got that email.", + "start": 592.74, + "end": 593.4, + "words": [ + { + "word": " I", + "start": 592.74, + "end": 592.86, + "probability": 0.99853515625 + }, + { + "word": " got", + "start": 592.86, + "end": 593.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 593.0, + "end": 593.14, + "probability": 0.99951171875 + }, + { + "word": " email.", + "start": 593.14, + "end": 593.4, + "probability": 0.751953125 + } + ] + }, + { + "id": 232, + "text": "Very nice.", + "start": 593.52, + "end": 594.22, + "words": [ + { + "word": " Very", + "start": 593.52, + "end": 593.92, + "probability": 0.99951171875 + }, + { + "word": " nice.", + "start": 593.92, + "end": 594.22, + "probability": 1.0 + } + ] + }, + { + "id": 233, + "text": "I don't know what I'm thinking about that just yet.", + "start": 594.28, + "end": 596.32, + "words": [ + { + "word": " I", + "start": 594.28, + "end": 594.6, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 594.6, + "end": 594.82, + "probability": 1.0 + }, + { + "word": " know", + "start": 594.82, + "end": 594.92, + "probability": 1.0 + }, + { + "word": " what", + "start": 594.92, + "end": 595.0, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 595.0, + "end": 595.12, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 595.12, + "end": 595.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 595.28, + "end": 595.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 595.5, + "end": 595.74, + "probability": 1.0 + }, + { + "word": " just", + "start": 595.74, + "end": 596.04, + "probability": 0.99951171875 + }, + { + "word": " yet.", + "start": 596.04, + "end": 596.32, + "probability": 1.0 + } + ] + }, + { + "id": 234, + "text": "I had to get my hands on and play with it.", + "start": 596.64, + "end": 598.22, + "words": [ + { + "word": " I", + "start": 596.64, + "end": 597.08, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 597.08, + "end": 597.18, + "probability": 0.58935546875 + }, + { + "word": " to", + "start": 597.18, + "end": 597.3, + "probability": 0.99658203125 + }, + { + "word": " get", + "start": 597.3, + "end": 597.32, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 597.32, + "end": 597.42, + "probability": 1.0 + }, + { + "word": " hands", + "start": 597.42, + "end": 597.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 597.64, + "end": 597.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 597.76, + "end": 597.86, + "probability": 0.63720703125 + }, + { + "word": " play", + "start": 597.86, + "end": 598.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 598.0, + "end": 598.12, + "probability": 1.0 + }, + { + "word": " it.", + "start": 598.12, + "end": 598.22, + "probability": 0.99658203125 + } + ] + }, + { + "id": 235, + "text": "I'm going to get it first before I can decide.", + "start": 598.22, + "end": 599.02, + "words": [ + { + "word": " I'm", + "start": 598.22, + "end": 598.34, + "probability": 0.137451171875 + }, + { + "word": " going", + "start": 598.34, + "end": 598.34, + "probability": 0.53466796875 + }, + { + "word": " to", + "start": 598.34, + "end": 598.34, + "probability": 0.912109375 + }, + { + "word": " get", + "start": 598.34, + "end": 598.34, + "probability": 0.04718017578125 + }, + { + "word": " it", + "start": 598.34, + "end": 598.34, + "probability": 0.07073974609375 + }, + { + "word": " first", + "start": 598.34, + "end": 598.34, + "probability": 0.66357421875 + }, + { + "word": " before", + "start": 598.34, + "end": 598.68, + "probability": 0.7373046875 + }, + { + "word": " I", + "start": 598.68, + "end": 598.8, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 598.8, + "end": 598.8, + "probability": 0.98974609375 + }, + { + "word": " decide.", + "start": 598.8, + "end": 599.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 236, + "text": "Now, Crystal is out.", + "start": 599.3, + "end": 600.24, + "words": [ + { + "word": " Now,", + "start": 599.3, + "end": 599.56, + "probability": 0.99267578125 + }, + { + "word": " Crystal", + "start": 599.56, + "end": 599.8, + "probability": 0.98974609375 + }, + { + "word": " is", + "start": 599.8, + "end": 600.02, + "probability": 0.9990234375 + }, + { + "word": " out.", + "start": 600.02, + "end": 600.24, + "probability": 1.0 + } + ] + }, + { + "id": 237, + "text": "And we got Ross in here today.", + "start": 600.34, + "end": 601.7, + "words": [ + { + "word": " And", + "start": 600.34, + "end": 600.52, + "probability": 0.90185546875 + }, + { + "word": " we", + "start": 600.52, + "end": 600.58, + "probability": 0.9912109375 + }, + { + "word": " got", + "start": 600.58, + "end": 600.76, + "probability": 0.826171875 + }, + { + "word": " Ross", + "start": 600.76, + "end": 601.26, + "probability": 0.9873046875 + }, + { + "word": " in", + "start": 601.26, + "end": 601.48, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 601.48, + "end": 601.6, + "probability": 1.0 + }, + { + "word": " today.", + "start": 601.6, + "end": 601.7, + "probability": 0.90283203125 + } + ] + }, + { + "id": 238, + "text": "Yes.", + "start": 601.7, + "end": 601.96, + "words": [ + { + "word": " Yes.", + "start": 601.7, + "end": 601.96, + "probability": 0.68310546875 + } + ] + }, + { + "id": 239, + "text": "Ross is here.", + "start": 601.96, + "end": 602.46, + "words": [ + { + "word": " Ross", + "start": 601.96, + "end": 602.2, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 602.2, + "end": 602.32, + "probability": 1.0 + }, + { + "word": " here.", + "start": 602.32, + "end": 602.46, + "probability": 1.0 + } + ] + }, + { + "id": 240, + "text": "And Ross is...", + "start": 602.54, + "end": 604.94, + "words": [ + { + "word": " And", + "start": 602.54, + "end": 602.84, + "probability": 0.9951171875 + }, + { + "word": " Ross", + "start": 602.84, + "end": 603.96, + "probability": 0.984375 + }, + { + "word": " is...", + "start": 603.96, + "end": 604.94, + "probability": 0.51708984375 + } + ] + }, + { + "id": 241, + "text": "He doesn't remember how my show works.", + "start": 604.94, + "end": 607.5, + "words": [ + { + "word": " He", + "start": 604.94, + "end": 605.5, + "probability": 0.9755859375 + }, + { + "word": " doesn't", + "start": 605.5, + "end": 606.26, + "probability": 1.0 + }, + { + "word": " remember", + "start": 606.26, + "end": 606.5, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 606.5, + "end": 606.76, + "probability": 1.0 + }, + { + "word": " my", + "start": 606.76, + "end": 606.92, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 606.92, + "end": 607.24, + "probability": 1.0 + }, + { + "word": " works.", + "start": 607.24, + "end": 607.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 242, + "text": "He doesn't know the new stuff either.", + "start": 607.6, + "end": 609.42, + "words": [ + { + "word": " He", + "start": 607.6, + "end": 607.92, + "probability": 0.95556640625 + }, + { + "word": " doesn't", + "start": 607.92, + "end": 608.38, + "probability": 1.0 + }, + { + "word": " know", + "start": 608.38, + "end": 608.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 608.54, + "end": 608.72, + "probability": 1.0 + }, + { + "word": " new", + "start": 608.72, + "end": 608.9, + "probability": 0.99658203125 + }, + { + "word": " stuff", + "start": 608.9, + "end": 609.1, + "probability": 1.0 + }, + { + "word": " either.", + "start": 609.1, + "end": 609.42, + "probability": 0.96435546875 + } + ] + }, + { + "id": 243, + "text": "And so we're just going to confuse him right now.", + "start": 609.46, + "end": 612.0, + "words": [ + { + "word": " And", + "start": 609.46, + "end": 609.74, + "probability": 0.95654296875 + }, + { + "word": " so", + "start": 609.74, + "end": 609.98, + "probability": 1.0 + }, + { + "word": " we're", + "start": 609.98, + "end": 610.46, + "probability": 0.8984375 + }, + { + "word": " just", + "start": 610.46, + "end": 610.48, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 610.48, + "end": 610.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 610.72, + "end": 610.86, + "probability": 1.0 + }, + { + "word": " confuse", + "start": 610.86, + "end": 611.2, + "probability": 0.99951171875 + }, + { + "word": " him", + "start": 611.2, + "end": 611.54, + "probability": 1.0 + }, + { + "word": " right", + "start": 611.54, + "end": 611.8, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 611.8, + "end": 612.0, + "probability": 1.0 + } + ] + }, + { + "id": 244, + "text": "That's all right.", + "start": 612.04, + "end": 612.54, + "words": [ + { + "word": " That's", + "start": 612.04, + "end": 612.26, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 612.26, + "end": 612.34, + "probability": 0.92333984375 + }, + { + "word": " right.", + "start": 612.34, + "end": 612.54, + "probability": 1.0 + } + ] + }, + { + "id": 245, + "text": "So let's go ahead and do an outro.", + "start": 612.64, + "end": 614.08, + "words": [ + { + "word": " So", + "start": 612.64, + "end": 612.9, + "probability": 0.99365234375 + }, + { + "word": " let's", + "start": 612.9, + "end": 613.46, + "probability": 0.9853515625 + }, + { + "word": " go", + "start": 613.46, + "end": 613.54, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 613.54, + "end": 613.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 613.66, + "end": 613.72, + "probability": 1.0 + }, + { + "word": " do", + "start": 613.72, + "end": 613.78, + "probability": 1.0 + }, + { + "word": " an", + "start": 613.78, + "end": 613.9, + "probability": 1.0 + }, + { + "word": " outro.", + "start": 613.9, + "end": 614.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 246, + "text": "Let's get out of here.", + "start": 614.2, + "end": 614.86, + "words": [ + { + "word": " Let's", + "start": 614.2, + "end": 614.44, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 614.44, + "end": 614.54, + "probability": 1.0 + }, + { + "word": " out", + "start": 614.54, + "end": 614.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 614.68, + "end": 614.76, + "probability": 1.0 + }, + { + "word": " here.", + "start": 614.76, + "end": 614.86, + "probability": 1.0 + } + ] + }, + { + "id": 247, + "text": "We're going to go to a break real quick here.", + "start": 614.9, + "end": 616.1, + "words": [ + { + "word": " We're", + "start": 614.9, + "end": 615.06, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 615.06, + "end": 615.1, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 615.1, + "end": 615.16, + "probability": 1.0 + }, + { + "word": " go", + "start": 615.16, + "end": 615.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 615.26, + "end": 615.34, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 615.34, + "end": 615.38, + "probability": 1.0 + }, + { + "word": " break", + "start": 615.38, + "end": 615.54, + "probability": 1.0 + }, + { + "word": " real", + "start": 615.54, + "end": 615.7, + "probability": 1.0 + }, + { + "word": " quick", + "start": 615.7, + "end": 615.9, + "probability": 1.0 + }, + { + "word": " here.", + "start": 615.9, + "end": 616.1, + "probability": 0.6513671875 + } + ] + }, + { + "id": 248, + "text": "This is the Computer Guru.", + "start": 616.5399999999998, + "end": 618.16, + "words": [ + { + "word": " This", + "start": 616.5399999999998, + "end": 616.8599999999999, + "probability": 0.99365234375 + }, + { + "word": " is", + "start": 616.8599999999999, + "end": 617.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 617.18, + "end": 617.32, + "probability": 0.849609375 + }, + { + "word": " Computer", + "start": 617.32, + "end": 617.7, + "probability": 0.7236328125 + }, + { + "word": " Guru.", + "start": 617.7, + "end": 618.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 249, + "text": "See?", + "start": 619.12, + "end": 619.44, + "words": [ + { + "word": " See?", + "start": 619.12, + "end": 619.44, + "probability": 0.9912109375 + } + ] + }, + { + "id": 250, + "text": "See?", + "start": 619.62, + "end": 619.94, + "words": [ + { + "word": " See?", + "start": 619.62, + "end": 619.94, + "probability": 0.93798828125 + } + ] + }, + { + "id": 251, + "text": "Yeah.", + "start": 620.02, + "end": 620.26, + "words": [ + { + "word": " Yeah.", + "start": 620.02, + "end": 620.26, + "probability": 0.4931640625 + } + ] + }, + { + "id": 252, + "text": "Got it.", + "start": 620.38, + "end": 620.74, + "words": [ + { + "word": " Got", + "start": 620.38, + "end": 620.6, + "probability": 0.57373046875 + }, + { + "word": " it.", + "start": 620.6, + "end": 620.74, + "probability": 1.0 + } + ] + }, + { + "id": 253, + "text": "He's going to get it.", + "start": 620.78, + "end": 621.32, + "words": [ + { + "word": " He's", + "start": 620.78, + "end": 620.92, + "probability": 0.962890625 + }, + { + "word": " going", + "start": 620.92, + "end": 620.98, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 620.98, + "end": 621.06, + "probability": 1.0 + }, + { + "word": " get", + "start": 621.06, + "end": 621.16, + "probability": 1.0 + }, + { + "word": " it.", + "start": 621.16, + "end": 621.32, + "probability": 1.0 + } + ] + }, + { + "id": 254, + "text": "By the end of the show, he's going to be a poor mixing expert for the Computer Guru.", + "start": 621.34, + "end": 625.52, + "words": [ + { + "word": " By", + "start": 621.34, + "end": 621.58, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 621.58, + "end": 621.74, + "probability": 1.0 + }, + { + "word": " end", + "start": 621.74, + "end": 621.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 621.9, + "end": 621.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 621.96, + "end": 622.02, + "probability": 1.0 + }, + { + "word": " show,", + "start": 622.02, + "end": 622.22, + "probability": 1.0 + }, + { + "word": " he's", + "start": 622.28, + "end": 622.46, + "probability": 1.0 + }, + { + "word": " going", + "start": 622.46, + "end": 622.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 622.52, + "end": 622.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 622.56, + "end": 622.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 622.7, + "end": 622.84, + "probability": 0.99951171875 + }, + { + "word": " poor", + "start": 622.84, + "end": 623.5, + "probability": 0.464111328125 + }, + { + "word": " mixing", + "start": 623.5, + "end": 623.96, + "probability": 0.9990234375 + }, + { + "word": " expert", + "start": 623.96, + "end": 624.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 624.62, + "end": 624.9, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 624.9, + "end": 625.0, + "probability": 0.9990234375 + }, + { + "word": " Computer", + "start": 625.0, + "end": 625.22, + "probability": 0.99755859375 + }, + { + "word": " Guru.", + "start": 625.22, + "end": 625.52, + "probability": 1.0 + } + ] + }, + { + "id": 255, + "text": "Then we're going to lose him.", + "start": 625.6, + "end": 626.48, + "words": [ + { + "word": " Then", + "start": 625.6, + "end": 625.8, + "probability": 0.8115234375 + }, + { + "word": " we're", + "start": 625.8, + "end": 625.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 625.96, + "end": 626.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 626.0, + "end": 626.1, + "probability": 1.0 + }, + { + "word": " lose", + "start": 626.1, + "end": 626.32, + "probability": 1.0 + }, + { + "word": " him.", + "start": 626.32, + "end": 626.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 256, + "text": "Yeah.", + "start": 626.56, + "end": 626.88, + "words": [ + { + "word": " Yeah.", + "start": 626.56, + "end": 626.88, + "probability": 0.935546875 + } + ] + }, + { + "id": 257, + "text": "Then he's going to be gone for the week.", + "start": 626.88, + "end": 628.12, + "words": [ + { + "word": " Then", + "start": 626.88, + "end": 627.06, + "probability": 0.98388671875 + }, + { + "word": " he's", + "start": 627.06, + "end": 627.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 627.26, + "end": 627.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 627.38, + "end": 627.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 627.4, + "end": 627.5, + "probability": 1.0 + }, + { + "word": " gone", + "start": 627.5, + "end": 627.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 627.72, + "end": 627.86, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 627.86, + "end": 627.96, + "probability": 0.7900390625 + }, + { + "word": " week.", + "start": 627.96, + "end": 628.12, + "probability": 0.99169921875 + } + ] + }, + { + "id": 258, + "text": "So, all right.", + "start": 628.22, + "end": 629.0, + "words": [ + { + "word": " So,", + "start": 628.22, + "end": 628.44, + "probability": 0.47900390625 + }, + { + "word": " all", + "start": 628.44, + "end": 628.8, + "probability": 0.6474609375 + }, + { + "word": " right.", + "start": 628.8, + "end": 629.0, + "probability": 1.0 + } + ] + }, + { + "id": 259, + "text": "We're able to...", + "start": 629.22, + "end": 630.08, + "words": [ + { + "word": " We're", + "start": 629.22, + "end": 629.7, + "probability": 0.623046875 + }, + { + "word": " able", + "start": 629.7, + "end": 629.8, + "probability": 0.546875 + }, + { + "word": " to...", + "start": 629.8, + "end": 630.08, + "probability": 0.455810546875 + } + ] + }, + { + "id": 260, + "text": "You're listening to the Computer Guru Show.", + "start": 630.08, + "end": 631.26, + "words": [ + { + "word": " You're", + "start": 630.08, + "end": 630.24, + "probability": 0.814453125 + }, + { + "word": " listening", + "start": 630.24, + "end": 630.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 630.44, + "end": 630.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 630.56, + "end": 630.66, + "probability": 0.4814453125 + }, + { + "word": " Computer", + "start": 630.66, + "end": 630.9, + "probability": 0.982421875 + }, + { + "word": " Guru", + "start": 630.9, + "end": 631.04, + "probability": 0.98193359375 + }, + { + "word": " Show.", + "start": 631.04, + "end": 631.26, + "probability": 0.98583984375 + } + ] + }, + { + "id": 261, + "text": "We'll be right back.", + "start": 631.34, + "end": 632.2, + "words": [ + { + "word": " We'll", + "start": 631.34, + "end": 631.76, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 631.76, + "end": 631.8, + "probability": 1.0 + }, + { + "word": " right", + "start": 631.8, + "end": 631.94, + "probability": 1.0 + }, + { + "word": " back.", + "start": 631.94, + "end": 632.2, + "probability": 1.0 + } + ] + }, + { + "id": 262, + "text": "You good?", + "start": 634.42, + "end": 635.12, + "words": [ + { + "word": " You", + "start": 634.42, + "end": 634.9, + "probability": 0.3203125 + }, + { + "word": " good?", + "start": 634.9, + "end": 635.12, + "probability": 0.66064453125 + } + ] + }, + { + "id": 263, + "text": "Mac or PC?", + "start": 641.66, + "end": 642.82, + "words": [ + { + "word": " Mac", + "start": 641.66, + "end": 642.14, + "probability": 0.476806640625 + }, + { + "word": " or", + "start": 642.14, + "end": 642.44, + "probability": 0.99951171875 + }, + { + "word": " PC?", + "start": 642.44, + "end": 642.82, + "probability": 1.0 + } + ] + }, + { + "id": 264, + "text": "Desktop or laptop?", + "start": 642.98, + "end": 644.16, + "words": [ + { + "word": " Desktop", + "start": 642.98, + "end": 643.46, + "probability": 0.99462890625 + }, + { + "word": " or", + "start": 643.46, + "end": 643.86, + "probability": 0.99951171875 + }, + { + "word": " laptop?", + "start": 643.86, + "end": 644.16, + "probability": 0.99755859375 + } + ] + }, + { + "id": 265, + "text": "The Computer Guru.", + "start": 644.44, + "end": 645.4, + "words": [ + { + "word": " The", + "start": 644.44, + "end": 644.58, + "probability": 0.99853515625 + }, + { + "word": " Computer", + "start": 644.58, + "end": 644.92, + "probability": 0.99658203125 + }, + { + "word": " Guru.", + "start": 644.92, + "end": 645.4, + "probability": 1.0 + } + ] + }, + { + "id": 266, + "text": "We'll get your problem solved.", + "start": 645.74, + "end": 646.96, + "words": [ + { + "word": " We'll", + "start": 645.74, + "end": 645.96, + "probability": 0.9130859375 + }, + { + "word": " get", + "start": 645.96, + "end": 646.08, + "probability": 1.0 + }, + { + "word": " your", + "start": 646.08, + "end": 646.28, + "probability": 0.99951171875 + }, + { + "word": " problem", + "start": 646.28, + "end": 646.6, + "probability": 0.8125 + }, + { + "word": " solved.", + "start": 646.6, + "end": 646.96, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "Call 751-1041 to talk with the Guru now.", + "start": 647.3, + "end": 650.62, + "words": [ + { + "word": " Call", + "start": 647.3, + "end": 647.52, + "probability": 0.9990234375 + }, + { + "word": " 751", + "start": 647.52, + "end": 648.38, + "probability": 0.99951171875 + }, + { + "word": "-1041", + "start": 648.38, + "end": 649.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 649.08, + "end": 649.42, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 649.42, + "end": 649.7, + "probability": 1.0 + }, + { + "word": " with", + "start": 649.7, + "end": 649.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 649.88, + "end": 649.98, + "probability": 0.9970703125 + }, + { + "word": " Guru", + "start": 649.98, + "end": 650.2, + "probability": 0.5078125 + }, + { + "word": " now.", + "start": 650.2, + "end": 650.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 268, + "text": "On 104.1 The Truth.", + "start": 650.9, + "end": 652.74, + "words": [ + { + "word": " On", + "start": 650.9, + "end": 651.24, + "probability": 0.8779296875 + }, + { + "word": " 104", + "start": 651.24, + "end": 651.66, + "probability": 0.8125 + }, + { + "word": ".1", + "start": 651.66, + "end": 652.24, + "probability": 0.99072265625 + }, + { + "word": " The", + "start": 652.24, + "end": 652.46, + "probability": 0.50341796875 + }, + { + "word": " Truth.", + "start": 652.46, + "end": 652.74, + "probability": 0.99658203125 + } + ] + }, + { + "id": 269, + "text": "Welcome back to the Computer Guru Show.", + "start": 654.1, + "end": 655.56, + "words": [ + { + "word": " Welcome", + "start": 654.1, + "end": 654.58, + "probability": 1.0 + }, + { + "word": " back", + "start": 654.58, + "end": 654.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 654.82, + "end": 654.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 654.94, + "end": 654.98, + "probability": 0.98828125 + }, + { + "word": " Computer", + "start": 654.98, + "end": 655.22, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 655.22, + "end": 655.38, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 655.38, + "end": 655.56, + "probability": 1.0 + } + ] + }, + { + "id": 270, + "text": "You know what we're doing today?", + "start": 655.72, + "end": 657.24, + "words": [ + { + "word": " You", + "start": 655.72, + "end": 656.2, + "probability": 0.99365234375 + }, + { + "word": " know", + "start": 656.2, + "end": 656.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 656.34, + "end": 656.48, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 656.48, + "end": 656.66, + "probability": 0.99951171875 + }, + { + "word": " doing", + "start": 656.66, + "end": 656.88, + "probability": 1.0 + }, + { + "word": " today?", + "start": 656.88, + "end": 657.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 271, + "text": "What?", + "start": 657.46, + "end": 657.76, + "words": [ + { + "word": " What?", + "start": 657.46, + "end": 657.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 272, + "text": "3 o'clock.", + "start": 657.76, + "end": 658.5, + "words": [ + { + "word": " 3", + "start": 657.76, + "end": 657.96, + "probability": 0.23046875 + }, + { + "word": " o", + "start": 657.96, + "end": 658.16, + "probability": 0.9931640625 + }, + { + "word": "'clock.", + "start": 658.16, + "end": 658.5, + "probability": 1.0 + } + ] + }, + { + "id": 273, + "text": "What?", + "start": 658.64, + "end": 658.94, + "words": [ + { + "word": " What?", + "start": 658.64, + "end": 658.94, + "probability": 0.80712890625 + } + ] + }, + { + "id": 274, + "text": "I'm doing another Windows Basics class.", + "start": 659.06, + "end": 661.72, + "words": [ + { + "word": " I'm", + "start": 659.06, + "end": 659.34, + "probability": 0.970703125 + }, + { + "word": " doing", + "start": 659.34, + "end": 659.48, + "probability": 0.99951171875 + }, + { + "word": " another", + "start": 659.48, + "end": 659.76, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 659.76, + "end": 660.18, + "probability": 0.98828125 + }, + { + "word": " Basics", + "start": 660.18, + "end": 661.42, + "probability": 0.96240234375 + }, + { + "word": " class.", + "start": 661.42, + "end": 661.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 275, + "text": "Oh.", + "start": 662.06, + "end": 662.4, + "words": [ + { + "word": " Oh.", + "start": 662.06, + "end": 662.4, + "probability": 0.86962890625 + } + ] + }, + { + "id": 276, + "text": "All right.", + "start": 662.5, + "end": 662.88, + "words": [ + { + "word": " All", + "start": 662.5, + "end": 662.74, + "probability": 0.6484375 + }, + { + "word": " right.", + "start": 662.74, + "end": 662.88, + "probability": 1.0 + } + ] + }, + { + "id": 277, + "text": "So, Windows 7.", + "start": 662.94, + "end": 663.72, + "words": [ + { + "word": " So,", + "start": 662.94, + "end": 663.16, + "probability": 0.9775390625 + }, + { + "word": " Windows", + "start": 663.2, + "end": 663.4, + "probability": 0.98486328125 + }, + { + "word": " 7.", + "start": 663.4, + "end": 663.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 278, + "text": "Introduction to Windows 7.", + "start": 663.9, + "end": 664.68, + "words": [ + { + "word": " Introduction", + "start": 663.9, + "end": 664.26, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 664.26, + "end": 664.32, + "probability": 0.8994140625 + }, + { + "word": " Windows", + "start": 664.32, + "end": 664.46, + "probability": 1.0 + }, + { + "word": " 7.", + "start": 664.46, + "end": 664.68, + "probability": 1.0 + } + ] + }, + { + "id": 279, + "text": "So, if you're moving over from, you know, XP or Vista.", + "start": 664.74, + "end": 669.16, + "words": [ + { + "word": " So,", + "start": 664.74, + "end": 664.9, + "probability": 0.994140625 + }, + { + "word": " if", + "start": 664.98, + "end": 665.08, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 665.08, + "end": 665.18, + "probability": 1.0 + }, + { + "word": " moving", + "start": 665.18, + "end": 665.44, + "probability": 1.0 + }, + { + "word": " over", + "start": 665.44, + "end": 665.76, + "probability": 1.0 + }, + { + "word": " from,", + "start": 665.76, + "end": 666.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 666.26, + "end": 667.14, + "probability": 1.0 + }, + { + "word": " know,", + "start": 667.14, + "end": 667.32, + "probability": 1.0 + }, + { + "word": " XP", + "start": 667.46, + "end": 668.1, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 668.1, + "end": 668.64, + "probability": 0.97509765625 + }, + { + "word": " Vista.", + "start": 668.64, + "end": 669.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 280, + "text": "Mainly XP.", + "start": 669.66, + "end": 670.38, + "words": [ + { + "word": " Mainly", + "start": 669.66, + "end": 670.02, + "probability": 0.99951171875 + }, + { + "word": " XP.", + "start": 670.02, + "end": 670.38, + "probability": 1.0 + } + ] + }, + { + "id": 281, + "text": "98.", + "start": 670.76, + "end": 671.12, + "words": [ + { + "word": " 98.", + "start": 670.76, + "end": 671.12, + "probability": 0.98876953125 + } + ] + }, + { + "id": 282, + "text": "I don't know.", + "start": 672.3, + "end": 673.2, + "words": [ + { + "word": " I", + "start": 672.3, + "end": 672.66, + "probability": 0.986328125 + }, + { + "word": " don't", + "start": 672.66, + "end": 673.02, + "probability": 0.9990234375 + }, + { + "word": " know.", + "start": 673.02, + "end": 673.2, + "probability": 1.0 + } + ] + }, + { + "id": 283, + "text": "If you're coming from 98...", + "start": 673.7, + "end": 675.08, + "words": [ + { + "word": " If", + "start": 673.7, + "end": 674.06, + "probability": 0.91357421875 + }, + { + "word": " you're", + "start": 674.06, + "end": 674.28, + "probability": 1.0 + }, + { + "word": " coming", + "start": 674.28, + "end": 674.36, + "probability": 0.99462890625 + }, + { + "word": " from", + "start": 674.36, + "end": 674.54, + "probability": 1.0 + }, + { + "word": " 98...", + "start": 674.54, + "end": 675.08, + "probability": 0.53955078125 + } + ] + }, + { + "id": 284, + "text": "You get your own class if you're coming from 98.", + "start": 675.08, + "end": 677.66, + "words": [ + { + "word": " You", + "start": 675.08, + "end": 675.52, + "probability": 0.19091796875 + }, + { + "word": " get", + "start": 675.52, + "end": 676.18, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 676.18, + "end": 676.32, + "probability": 1.0 + }, + { + "word": " own", + "start": 676.32, + "end": 676.5, + "probability": 1.0 + }, + { + "word": " class", + "start": 676.5, + "end": 676.8, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 676.8, + "end": 677.06, + "probability": 0.9921875 + }, + { + "word": " you're", + "start": 677.06, + "end": 677.22, + "probability": 0.97314453125 + }, + { + "word": " coming", + "start": 677.22, + "end": 677.34, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 677.34, + "end": 677.48, + "probability": 1.0 + }, + { + "word": " 98.", + "start": 677.48, + "end": 677.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 285, + "text": "I actually had this gentleman come into the shop this week.", + "start": 677.66, + "end": 679.48, + "words": [ + { + "word": " I", + "start": 677.66, + "end": 677.84, + "probability": 0.998046875 + }, + { + "word": " actually", + "start": 677.84, + "end": 678.02, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 678.02, + "end": 678.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 678.12, + "end": 678.24, + "probability": 1.0 + }, + { + "word": " gentleman", + "start": 678.24, + "end": 678.48, + "probability": 1.0 + }, + { + "word": " come", + "start": 678.48, + "end": 678.66, + "probability": 1.0 + }, + { + "word": " into", + "start": 678.66, + "end": 678.8, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 678.8, + "end": 678.94, + "probability": 0.99951171875 + }, + { + "word": " shop", + "start": 678.94, + "end": 679.08, + "probability": 0.97265625 + }, + { + "word": " this", + "start": 679.08, + "end": 679.28, + "probability": 1.0 + }, + { + "word": " week.", + "start": 679.28, + "end": 679.48, + "probability": 0.99658203125 + } + ] + }, + { + "id": 286, + "text": "He had an old on a brick of a laptop.", + "start": 679.52, + "end": 681.9, + "words": [ + { + "word": " He", + "start": 679.52, + "end": 679.68, + "probability": 0.99755859375 + }, + { + "word": " had", + "start": 679.68, + "end": 679.78, + "probability": 1.0 + }, + { + "word": " an", + "start": 679.78, + "end": 679.92, + "probability": 0.99853515625 + }, + { + "word": " old", + "start": 679.92, + "end": 680.5, + "probability": 0.98974609375 + }, + { + "word": " on", + "start": 680.5, + "end": 680.68, + "probability": 0.388427734375 + }, + { + "word": " a", + "start": 680.68, + "end": 680.76, + "probability": 0.90283203125 + }, + { + "word": " brick", + "start": 680.76, + "end": 681.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 681.22, + "end": 681.42, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 681.42, + "end": 681.48, + "probability": 1.0 + }, + { + "word": " laptop.", + "start": 681.48, + "end": 681.9, + "probability": 1.0 + } + ] + }, + { + "id": 287, + "text": "And this thing, you could have hit somebody with it and knocked him out.", + "start": 682.06, + "end": 684.4, + "words": [ + { + "word": " And", + "start": 682.06, + "end": 682.16, + "probability": 0.97998046875 + }, + { + "word": " this", + "start": 682.16, + "end": 682.26, + "probability": 0.96630859375 + }, + { + "word": " thing,", + "start": 682.26, + "end": 682.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 682.48, + "end": 682.54, + "probability": 0.640625 + }, + { + "word": " could", + "start": 682.54, + "end": 682.62, + "probability": 0.994140625 + }, + { + "word": " have", + "start": 682.62, + "end": 682.62, + "probability": 0.65673828125 + }, + { + "word": " hit", + "start": 682.62, + "end": 682.82, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 682.82, + "end": 683.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 683.14, + "end": 683.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 683.44, + "end": 683.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 683.58, + "end": 683.62, + "probability": 0.99853515625 + }, + { + "word": " knocked", + "start": 683.62, + "end": 683.96, + "probability": 0.99267578125 + }, + { + "word": " him", + "start": 683.96, + "end": 684.16, + "probability": 0.92431640625 + }, + { + "word": " out.", + "start": 684.16, + "end": 684.4, + "probability": 1.0 + } + ] + }, + { + "id": 288, + "text": "And it had Windows NT on it, man.", + "start": 684.8, + "end": 686.52, + "words": [ + { + "word": " And", + "start": 684.8, + "end": 685.16, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 685.16, + "end": 685.28, + "probability": 0.98095703125 + }, + { + "word": " had", + "start": 685.28, + "end": 685.46, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 685.46, + "end": 685.7, + "probability": 1.0 + }, + { + "word": " NT", + "start": 685.7, + "end": 685.94, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 685.94, + "end": 686.22, + "probability": 1.0 + }, + { + "word": " it,", + "start": 686.22, + "end": 686.38, + "probability": 1.0 + }, + { + "word": " man.", + "start": 686.4, + "end": 686.52, + "probability": 1.0 + } + ] + }, + { + "id": 289, + "text": "And I was like...", + "start": 686.56, + "end": 687.06, + "words": [ + { + "word": " And", + "start": 686.56, + "end": 686.68, + "probability": 0.10614013671875 + }, + { + "word": " I", + "start": 686.68, + "end": 686.68, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 686.68, + "end": 686.72, + "probability": 1.0 + }, + { + "word": " like...", + "start": 686.72, + "end": 687.06, + "probability": 0.96728515625 + } + ] + }, + { + "id": 290, + "text": "He's like...", + "start": 687.06, + "end": 687.62, + "words": [ + { + "word": " He's", + "start": 687.06, + "end": 687.42, + "probability": 0.9990234375 + }, + { + "word": " like...", + "start": 687.42, + "end": 687.62, + "probability": 0.73046875 + } + ] + }, + { + "id": 291, + "text": "Is this thing worth anything?", + "start": 687.62, + "end": 688.54, + "words": [ + { + "word": " Is", + "start": 687.62, + "end": 687.92, + "probability": 0.90966796875 + }, + { + "word": " this", + "start": 687.92, + "end": 688.04, + "probability": 0.93603515625 + }, + { + "word": " thing", + "start": 688.04, + "end": 688.16, + "probability": 0.998046875 + }, + { + "word": " worth", + "start": 688.16, + "end": 688.36, + "probability": 0.99951171875 + }, + { + "word": " anything?", + "start": 688.36, + "end": 688.54, + "probability": 1.0 + } + ] + }, + { + "id": 292, + "text": "Like, depends on if you're a collector.", + "start": 688.68, + "end": 690.24, + "words": [ + { + "word": " Like,", + "start": 688.68, + "end": 688.86, + "probability": 0.442138671875 + }, + { + "word": " depends", + "start": 688.94, + "end": 689.4, + "probability": 0.42236328125 + }, + { + "word": " on", + "start": 689.4, + "end": 689.68, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 689.68, + "end": 689.82, + "probability": 1.0 + }, + { + "word": " you're", + "start": 689.82, + "end": 689.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 689.92, + "end": 689.98, + "probability": 1.0 + }, + { + "word": " collector.", + "start": 689.98, + "end": 690.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 293, + "text": "I mean...", + "start": 690.4, + "end": 690.8, + "words": [ + { + "word": " I", + "start": 690.4, + "end": 690.56, + "probability": 0.47998046875 + }, + { + "word": " mean...", + "start": 690.56, + "end": 690.8, + "probability": 0.50244140625 + } + ] + }, + { + "id": 294, + "text": "If you're Indiana Jones, it might be worth something.", + "start": 690.8, + "end": 693.24, + "words": [ + { + "word": " If", + "start": 690.8, + "end": 691.56, + "probability": 0.98974609375 + }, + { + "word": " you're", + "start": 691.56, + "end": 691.72, + "probability": 1.0 + }, + { + "word": " Indiana", + "start": 691.72, + "end": 691.98, + "probability": 0.99951171875 + }, + { + "word": " Jones,", + "start": 691.98, + "end": 692.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 692.46, + "end": 692.62, + "probability": 1.0 + }, + { + "word": " might", + "start": 692.62, + "end": 692.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 692.8, + "end": 692.92, + "probability": 1.0 + }, + { + "word": " worth", + "start": 692.92, + "end": 693.04, + "probability": 1.0 + }, + { + "word": " something.", + "start": 693.04, + "end": 693.24, + "probability": 1.0 + } + ] + }, + { + "id": 295, + "text": "But other than that, no.", + "start": 693.4, + "end": 694.24, + "words": [ + { + "word": " But", + "start": 693.4, + "end": 693.56, + "probability": 0.99853515625 + }, + { + "word": " other", + "start": 693.56, + "end": 693.68, + "probability": 0.98779296875 + }, + { + "word": " than", + "start": 693.68, + "end": 693.86, + "probability": 1.0 + }, + { + "word": " that,", + "start": 693.86, + "end": 694.06, + "probability": 1.0 + }, + { + "word": " no.", + "start": 694.06, + "end": 694.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 296, + "text": "If you're Indiana Jones.", + "start": 694.4, + "end": 695.54, + "words": [ + { + "word": " If", + "start": 694.4, + "end": 694.6, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 694.6, + "end": 694.8, + "probability": 1.0 + }, + { + "word": " Indiana", + "start": 694.8, + "end": 695.1, + "probability": 0.99951171875 + }, + { + "word": " Jones.", + "start": 695.1, + "end": 695.54, + "probability": 1.0 + } + ] + }, + { + "id": 297, + "text": "Nice.", + "start": 695.78, + "end": 696.18, + "words": [ + { + "word": " Nice.", + "start": 695.78, + "end": 696.18, + "probability": 0.99560546875 + } + ] + }, + { + "id": 298, + "text": "So, we're doing another class today.", + "start": 698.46, + "end": 700.02, + "words": [ + { + "word": " So,", + "start": 698.46, + "end": 698.86, + "probability": 0.98583984375 + }, + { + "word": " we're", + "start": 698.86, + "end": 699.26, + "probability": 0.99853515625 + }, + { + "word": " doing", + "start": 699.26, + "end": 699.36, + "probability": 1.0 + }, + { + "word": " another", + "start": 699.36, + "end": 699.54, + "probability": 1.0 + }, + { + "word": " class", + "start": 699.54, + "end": 699.78, + "probability": 0.9990234375 + }, + { + "word": " today.", + "start": 699.78, + "end": 700.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 299, + "text": "Yes.", + "start": 700.18, + "end": 700.46, + "words": [ + { + "word": " Yes.", + "start": 700.18, + "end": 700.46, + "probability": 0.984375 + } + ] + }, + { + "id": 300, + "text": "It's a Windows 7 Basics.", + "start": 700.7, + "end": 703.5, + "words": [ + { + "word": " It's", + "start": 700.7, + "end": 700.96, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 700.96, + "end": 701.06, + "probability": 0.99755859375 + }, + { + "word": " Windows", + "start": 701.06, + "end": 701.92, + "probability": 0.91845703125 + }, + { + "word": " 7", + "start": 701.92, + "end": 702.72, + "probability": 1.0 + }, + { + "word": " Basics.", + "start": 702.72, + "end": 703.5, + "probability": 0.705078125 + } + ] + }, + { + "id": 301, + "text": "Right.", + "start": 703.62, + "end": 703.82, + "words": [ + { + "word": " Right.", + "start": 703.62, + "end": 703.82, + "probability": 0.92138671875 + } + ] + }, + { + "id": 302, + "text": "Basically, we're going to teach you everything that you need to know about the stuff that's changed.", + "start": 703.88, + "end": 707.72, + "words": [ + { + "word": " Basically,", + "start": 703.88, + "end": 704.12, + "probability": 0.990234375 + }, + { + "word": " we're", + "start": 704.12, + "end": 704.38, + "probability": 1.0 + }, + { + "word": " going", + "start": 704.38, + "end": 704.44, + "probability": 0.94091796875 + }, + { + "word": " to", + "start": 704.44, + "end": 704.54, + "probability": 1.0 + }, + { + "word": " teach", + "start": 704.54, + "end": 704.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 704.74, + "end": 704.96, + "probability": 1.0 + }, + { + "word": " everything", + "start": 704.96, + "end": 705.4, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 705.4, + "end": 705.68, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 705.68, + "end": 705.76, + "probability": 1.0 + }, + { + "word": " need", + "start": 705.76, + "end": 705.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 705.9, + "end": 706.02, + "probability": 1.0 + }, + { + "word": " know", + "start": 706.02, + "end": 706.14, + "probability": 1.0 + }, + { + "word": " about", + "start": 706.14, + "end": 706.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 706.44, + "end": 706.86, + "probability": 0.9970703125 + }, + { + "word": " stuff", + "start": 706.86, + "end": 707.1, + "probability": 1.0 + }, + { + "word": " that's", + "start": 707.1, + "end": 707.34, + "probability": 1.0 + }, + { + "word": " changed.", + "start": 707.34, + "end": 707.72, + "probability": 1.0 + } + ] + }, + { + "id": 303, + "text": "And if you're migrating from a previous version of Windows, we'll kind of teach you how to do that.", + "start": 707.94, + "end": 712.38, + "words": [ + { + "word": " And", + "start": 707.94, + "end": 708.24, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 708.24, + "end": 708.46, + "probability": 0.9423828125 + }, + { + "word": " you're", + "start": 708.46, + "end": 708.58, + "probability": 1.0 + }, + { + "word": " migrating", + "start": 708.58, + "end": 709.0, + "probability": 0.9990234375 + }, + { + "word": " from", + "start": 709.0, + "end": 709.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 709.34, + "end": 709.96, + "probability": 0.99755859375 + }, + { + "word": " previous", + "start": 709.96, + "end": 710.3, + "probability": 1.0 + }, + { + "word": " version", + "start": 710.3, + "end": 710.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 710.62, + "end": 710.76, + "probability": 1.0 + }, + { + "word": " Windows,", + "start": 710.76, + "end": 710.96, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 711.1, + "end": 711.22, + "probability": 0.98779296875 + }, + { + "word": " kind", + "start": 711.22, + "end": 711.38, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 711.38, + "end": 711.46, + "probability": 1.0 + }, + { + "word": " teach", + "start": 711.46, + "end": 711.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 711.6, + "end": 711.74, + "probability": 1.0 + }, + { + "word": " how", + "start": 711.74, + "end": 711.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 711.84, + "end": 711.96, + "probability": 1.0 + }, + { + "word": " do", + "start": 711.96, + "end": 712.14, + "probability": 1.0 + }, + { + "word": " that.", + "start": 712.14, + "end": 712.38, + "probability": 1.0 + } + ] + }, + { + "id": 304, + "text": "Nice.", + "start": 712.56, + "end": 712.9, + "words": [ + { + "word": " Nice.", + "start": 712.56, + "end": 712.9, + "probability": 0.9453125 + } + ] + }, + { + "id": 305, + "text": "Now, we know that there's no direct upgrade path from XP to 7.", + "start": 713.66, + "end": 717.04, + "words": [ + { + "word": " Now,", + "start": 713.66, + "end": 714.06, + "probability": 0.9912109375 + }, + { + "word": " we", + "start": 714.12, + "end": 714.28, + "probability": 1.0 + }, + { + "word": " know", + "start": 714.28, + "end": 714.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 714.48, + "end": 714.66, + "probability": 1.0 + }, + { + "word": " there's", + "start": 714.66, + "end": 714.82, + "probability": 1.0 + }, + { + "word": " no", + "start": 714.82, + "end": 714.92, + "probability": 1.0 + }, + { + "word": " direct", + "start": 714.92, + "end": 715.16, + "probability": 0.99365234375 + }, + { + "word": " upgrade", + "start": 715.16, + "end": 715.46, + "probability": 0.99951171875 + }, + { + "word": " path", + "start": 715.46, + "end": 715.72, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 715.72, + "end": 716.08, + "probability": 1.0 + }, + { + "word": " XP", + "start": 716.08, + "end": 716.62, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 716.62, + "end": 716.78, + "probability": 0.99951171875 + }, + { + "word": " 7.", + "start": 716.78, + "end": 717.04, + "probability": 0.99658203125 + } + ] + }, + { + "id": 306, + "text": "But we can teach you how to get your stuff over there and make it so that it at least looks familiar to you.", + "start": 717.62, + "end": 721.52, + "words": [ + { + "word": " But", + "start": 717.62, + "end": 717.72, + "probability": 0.79736328125 + }, + { + "word": " we", + "start": 717.72, + "end": 717.92, + "probability": 0.9951171875 + }, + { + "word": " can", + "start": 717.92, + "end": 718.06, + "probability": 1.0 + }, + { + "word": " teach", + "start": 718.06, + "end": 718.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 718.2, + "end": 718.24, + "probability": 1.0 + }, + { + "word": " how", + "start": 718.24, + "end": 718.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 718.34, + "end": 718.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 718.36, + "end": 718.5, + "probability": 1.0 + }, + { + "word": " your", + "start": 718.5, + "end": 718.6, + "probability": 0.9951171875 + }, + { + "word": " stuff", + "start": 718.6, + "end": 718.84, + "probability": 1.0 + }, + { + "word": " over", + "start": 718.84, + "end": 719.06, + "probability": 1.0 + }, + { + "word": " there", + "start": 719.06, + "end": 719.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 719.36, + "end": 719.64, + "probability": 0.9794921875 + }, + { + "word": " make", + "start": 719.64, + "end": 719.82, + "probability": 1.0 + }, + { + "word": " it", + "start": 719.82, + "end": 719.94, + "probability": 1.0 + }, + { + "word": " so", + "start": 719.94, + "end": 720.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 720.08, + "end": 720.18, + "probability": 0.83935546875 + }, + { + "word": " it", + "start": 720.18, + "end": 720.3, + "probability": 0.9873046875 + }, + { + "word": " at", + "start": 720.3, + "end": 720.42, + "probability": 0.9990234375 + }, + { + "word": " least", + "start": 720.42, + "end": 720.54, + "probability": 1.0 + }, + { + "word": " looks", + "start": 720.54, + "end": 720.76, + "probability": 1.0 + }, + { + "word": " familiar", + "start": 720.76, + "end": 721.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 721.1, + "end": 721.34, + "probability": 1.0 + }, + { + "word": " you.", + "start": 721.34, + "end": 721.52, + "probability": 1.0 + } + ] + }, + { + "id": 307, + "text": "And teach you about the new tools that are in it.", + "start": 721.92, + "end": 723.82, + "words": [ + { + "word": " And", + "start": 721.92, + "end": 722.28, + "probability": 0.95458984375 + }, + { + "word": " teach", + "start": 722.28, + "end": 722.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 722.62, + "end": 722.74, + "probability": 0.9912109375 + }, + { + "word": " about", + "start": 722.74, + "end": 722.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 722.84, + "end": 722.92, + "probability": 1.0 + }, + { + "word": " new", + "start": 722.92, + "end": 723.04, + "probability": 1.0 + }, + { + "word": " tools", + "start": 723.04, + "end": 723.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 723.3, + "end": 723.48, + "probability": 1.0 + }, + { + "word": " are", + "start": 723.48, + "end": 723.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 723.56, + "end": 723.68, + "probability": 1.0 + }, + { + "word": " it.", + "start": 723.68, + "end": 723.82, + "probability": 1.0 + } + ] + }, + { + "id": 308, + "text": "Because there's...", + "start": 723.88, + "end": 724.24, + "words": [ + { + "word": " Because", + "start": 723.88, + "end": 724.02, + "probability": 0.87060546875 + }, + { + "word": " there's...", + "start": 724.02, + "end": 724.24, + "probability": 0.363037109375 + } + ] + }, + { + "id": 309, + "text": "You know, one of the questions we get most often about Windows 7 is...", + "start": 724.24, + "end": 727.76, + "words": [ + { + "word": " You", + "start": 724.24, + "end": 724.38, + "probability": 0.83544921875 + }, + { + "word": " know,", + "start": 724.38, + "end": 724.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 724.48, + "end": 724.62, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 724.62, + "end": 724.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 724.7, + "end": 724.76, + "probability": 1.0 + }, + { + "word": " questions", + "start": 724.76, + "end": 724.96, + "probability": 1.0 + }, + { + "word": " we", + "start": 724.96, + "end": 725.18, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 725.18, + "end": 725.3, + "probability": 1.0 + }, + { + "word": " most", + "start": 725.3, + "end": 725.52, + "probability": 1.0 + }, + { + "word": " often", + "start": 725.52, + "end": 725.86, + "probability": 1.0 + }, + { + "word": " about", + "start": 725.86, + "end": 726.6, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 726.6, + "end": 727.02, + "probability": 0.99853515625 + }, + { + "word": " 7", + "start": 727.02, + "end": 727.28, + "probability": 0.9990234375 + }, + { + "word": " is...", + "start": 727.28, + "end": 727.76, + "probability": 0.52490234375 + } + ] + }, + { + "id": 310, + "text": "Well, all right.", + "start": 727.76, + "end": 728.4, + "words": [ + { + "word": " Well,", + "start": 727.76, + "end": 728.06, + "probability": 0.970703125 + }, + { + "word": " all", + "start": 728.06, + "end": 728.22, + "probability": 0.751953125 + }, + { + "word": " right.", + "start": 728.22, + "end": 728.4, + "probability": 1.0 + } + ] + }, + { + "id": 311, + "text": "I'm coming from XP, so I'm used to doing my defraggling.", + "start": 728.66, + "end": 731.82, + "words": [ + { + "word": " I'm", + "start": 728.66, + "end": 729.02, + "probability": 1.0 + }, + { + "word": " coming", + "start": 729.02, + "end": 729.24, + "probability": 1.0 + }, + { + "word": " from", + "start": 729.24, + "end": 729.42, + "probability": 1.0 + }, + { + "word": " XP,", + "start": 729.42, + "end": 729.68, + "probability": 0.9951171875 + }, + { + "word": " so", + "start": 729.78, + "end": 729.92, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 729.92, + "end": 730.04, + "probability": 1.0 + }, + { + "word": " used", + "start": 730.04, + "end": 730.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 730.14, + "end": 730.26, + "probability": 1.0 + }, + { + "word": " doing", + "start": 730.26, + "end": 730.4, + "probability": 1.0 + }, + { + "word": " my", + "start": 730.4, + "end": 730.66, + "probability": 1.0 + }, + { + "word": " defraggling.", + "start": 730.66, + "end": 731.82, + "probability": 0.97412109375 + } + ] + }, + { + "id": 312, + "text": "Defrag.", + "start": 733.12, + "end": 733.48, + "words": [ + { + "word": " Defrag.", + "start": 733.12, + "end": 733.48, + "probability": 0.953125 + } + ] + }, + { + "id": 313, + "text": "And my other maintenance on a weekly or sometimes hourly basis.", + "start": 734.4399999999999, + "end": 737.8, + "words": [ + { + "word": " And", + "start": 734.4399999999999, + "end": 734.8, + "probability": 0.994140625 + }, + { + "word": " my", + "start": 734.8, + "end": 735.16, + "probability": 0.9970703125 + }, + { + "word": " other", + "start": 735.16, + "end": 735.42, + "probability": 1.0 + }, + { + "word": " maintenance", + "start": 735.42, + "end": 735.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 735.8, + "end": 736.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 736.06, + "end": 736.16, + "probability": 1.0 + }, + { + "word": " weekly", + "start": 736.16, + "end": 736.38, + "probability": 1.0 + }, + { + "word": " or", + "start": 736.38, + "end": 736.66, + "probability": 0.99951171875 + }, + { + "word": " sometimes", + "start": 736.66, + "end": 737.06, + "probability": 0.99951171875 + }, + { + "word": " hourly", + "start": 737.06, + "end": 737.46, + "probability": 1.0 + }, + { + "word": " basis.", + "start": 737.46, + "end": 737.8, + "probability": 1.0 + } + ] + }, + { + "id": 314, + "text": "What do I need to do now?", + "start": 738.52, + "end": 739.62, + "words": [ + { + "word": " What", + "start": 738.52, + "end": 738.88, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 738.88, + "end": 739.02, + "probability": 1.0 + }, + { + "word": " I", + "start": 739.02, + "end": 739.08, + "probability": 1.0 + }, + { + "word": " need", + "start": 739.08, + "end": 739.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 739.22, + "end": 739.32, + "probability": 1.0 + }, + { + "word": " do", + "start": 739.32, + "end": 739.44, + "probability": 1.0 + }, + { + "word": " now?", + "start": 739.44, + "end": 739.62, + "probability": 1.0 + } + ] + }, + { + "id": 315, + "text": "And the truth is, nothing.", + "start": 739.74, + "end": 740.62, + "words": [ + { + "word": " And", + "start": 739.74, + "end": 739.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 739.92, + "end": 740.06, + "probability": 1.0 + }, + { + "word": " truth", + "start": 740.06, + "end": 740.22, + "probability": 1.0 + }, + { + "word": " is,", + "start": 740.22, + "end": 740.4, + "probability": 1.0 + }, + { + "word": " nothing.", + "start": 740.46, + "end": 740.62, + "probability": 1.0 + } + ] + }, + { + "id": 316, + "text": "It's all automatic in 7, which is kind of nice.", + "start": 740.84, + "end": 743.22, + "words": [ + { + "word": " It's", + "start": 740.84, + "end": 741.08, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 741.08, + "end": 741.16, + "probability": 1.0 + }, + { + "word": " automatic", + "start": 741.16, + "end": 741.68, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 741.68, + "end": 741.98, + "probability": 1.0 + }, + { + "word": " 7,", + "start": 741.98, + "end": 742.22, + "probability": 0.9990234375 + }, + { + "word": " which", + "start": 742.34, + "end": 742.64, + "probability": 1.0 + }, + { + "word": " is", + "start": 742.64, + "end": 742.74, + "probability": 1.0 + }, + { + "word": " kind", + "start": 742.74, + "end": 742.88, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 742.88, + "end": 743.02, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 743.02, + "end": 743.22, + "probability": 1.0 + } + ] + }, + { + "id": 317, + "text": "And there's just...", + "start": 743.8, + "end": 744.96, + "words": [ + { + "word": " And", + "start": 743.8, + "end": 744.16, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 744.16, + "end": 744.52, + "probability": 0.99853515625 + }, + { + "word": " just...", + "start": 744.52, + "end": 744.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 318, + "text": "The biggest change overall is the searchability of 7.", + "start": 744.96, + "end": 747.6, + "words": [ + { + "word": " The", + "start": 744.96, + "end": 745.24, + "probability": 0.9990234375 + }, + { + "word": " biggest", + "start": 745.24, + "end": 745.58, + "probability": 1.0 + }, + { + "word": " change", + "start": 745.58, + "end": 745.9, + "probability": 1.0 + }, + { + "word": " overall", + "start": 745.9, + "end": 746.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 746.32, + "end": 746.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 746.66, + "end": 746.8, + "probability": 1.0 + }, + { + "word": " searchability", + "start": 746.8, + "end": 747.2, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 747.2, + "end": 747.5, + "probability": 0.87060546875 + }, + { + "word": " 7.", + "start": 747.5, + "end": 747.6, + "probability": 0.8486328125 + } + ] + }, + { + "id": 319, + "text": "Which is just pretty amazing.", + "start": 748.12, + "end": 749.64, + "words": [ + { + "word": " Which", + "start": 748.12, + "end": 748.46, + "probability": 0.2332763671875 + }, + { + "word": " is", + "start": 748.46, + "end": 748.64, + "probability": 1.0 + }, + { + "word": " just", + "start": 748.64, + "end": 749.04, + "probability": 0.9951171875 + }, + { + "word": " pretty", + "start": 749.04, + "end": 749.36, + "probability": 0.9931640625 + }, + { + "word": " amazing.", + "start": 749.36, + "end": 749.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 320, + "text": "So, if you want to attend the class, you can from 3 o'clock to 5 o'clock today.", + "start": 749.84, + "end": 752.74, + "words": [ + { + "word": " So,", + "start": 749.84, + "end": 750.02, + "probability": 0.9501953125 + }, + { + "word": " if", + "start": 750.06, + "end": 750.12, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 750.12, + "end": 750.2, + "probability": 1.0 + }, + { + "word": " want", + "start": 750.2, + "end": 750.34, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 750.34, + "end": 750.44, + "probability": 1.0 + }, + { + "word": " attend", + "start": 750.44, + "end": 750.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 750.72, + "end": 750.9, + "probability": 0.99951171875 + }, + { + "word": " class,", + "start": 750.9, + "end": 751.06, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 751.14, + "end": 751.24, + "probability": 0.9970703125 + }, + { + "word": " can", + "start": 751.24, + "end": 751.36, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 751.36, + "end": 751.58, + "probability": 0.646484375 + }, + { + "word": " 3", + "start": 751.58, + "end": 751.84, + "probability": 0.98388671875 + }, + { + "word": " o", + "start": 751.84, + "end": 751.94, + "probability": 0.99365234375 + }, + { + "word": "'clock", + "start": 751.94, + "end": 752.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 752.06, + "end": 752.16, + "probability": 1.0 + }, + { + "word": " 5", + "start": 752.16, + "end": 752.3, + "probability": 1.0 + }, + { + "word": " o", + "start": 752.3, + "end": 752.42, + "probability": 1.0 + }, + { + "word": "'clock", + "start": 752.42, + "end": 752.54, + "probability": 1.0 + }, + { + "word": " today.", + "start": 752.54, + "end": 752.74, + "probability": 0.9951171875 + } + ] + }, + { + "id": 321, + "text": "It generally runs from, let's say, 3.15 to 7.", + "start": 753.18, + "end": 756.32, + "words": [ + { + "word": " It", + "start": 753.18, + "end": 753.52, + "probability": 0.99951171875 + }, + { + "word": " generally", + "start": 753.52, + "end": 753.78, + "probability": 0.99951171875 + }, + { + "word": " runs", + "start": 753.78, + "end": 754.14, + "probability": 1.0 + }, + { + "word": " from,", + "start": 754.14, + "end": 754.48, + "probability": 1.0 + }, + { + "word": " let's", + "start": 754.52, + "end": 755.08, + "probability": 1.0 + }, + { + "word": " say,", + "start": 755.08, + "end": 755.16, + "probability": 1.0 + }, + { + "word": " 3", + "start": 755.2, + "end": 755.32, + "probability": 1.0 + }, + { + "word": ".15", + "start": 755.32, + "end": 755.66, + "probability": 0.8603515625 + }, + { + "word": " to", + "start": 755.66, + "end": 755.92, + "probability": 0.99755859375 + }, + { + "word": " 7.", + "start": 755.92, + "end": 756.32, + "probability": 1.0 + } + ] + }, + { + "id": 322, + "text": "You know, just because I don't kick everybody out.", + "start": 756.9, + "end": 760.76, + "words": [ + { + "word": " You", + "start": 756.9, + "end": 757.24, + "probability": 0.65478515625 + }, + { + "word": " know,", + "start": 757.24, + "end": 757.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 757.46, + "end": 757.82, + "probability": 1.0 + }, + { + "word": " because", + "start": 757.82, + "end": 758.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 758.16, + "end": 759.18, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 759.18, + "end": 760.0, + "probability": 1.0 + }, + { + "word": " kick", + "start": 760.0, + "end": 760.14, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 760.14, + "end": 760.42, + "probability": 1.0 + }, + { + "word": " out.", + "start": 760.42, + "end": 760.76, + "probability": 1.0 + } + ] + }, + { + "id": 323, + "text": "It's, you know, they continue to ask questions.", + "start": 761.02, + "end": 762.82, + "words": [ + { + "word": " It's,", + "start": 761.02, + "end": 761.36, + "probability": 0.87109375 + }, + { + "word": " you", + "start": 761.36, + "end": 761.58, + "probability": 1.0 + }, + { + "word": " know,", + "start": 761.58, + "end": 761.7, + "probability": 1.0 + }, + { + "word": " they", + "start": 761.7, + "end": 761.82, + "probability": 0.998046875 + }, + { + "word": " continue", + "start": 761.82, + "end": 762.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 762.12, + "end": 762.3, + "probability": 1.0 + }, + { + "word": " ask", + "start": 762.3, + "end": 762.46, + "probability": 1.0 + }, + { + "word": " questions.", + "start": 762.46, + "end": 762.82, + "probability": 1.0 + } + ] + }, + { + "id": 324, + "text": "I continue to answer them until people get tired and leave.", + "start": 762.88, + "end": 765.82, + "words": [ + { + "word": " I", + "start": 762.88, + "end": 763.14, + "probability": 0.99951171875 + }, + { + "word": " continue", + "start": 763.14, + "end": 763.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 763.32, + "end": 763.54, + "probability": 1.0 + }, + { + "word": " answer", + "start": 763.54, + "end": 763.8, + "probability": 1.0 + }, + { + "word": " them", + "start": 763.8, + "end": 763.96, + "probability": 0.99951171875 + }, + { + "word": " until", + "start": 763.96, + "end": 764.2, + "probability": 0.9765625 + }, + { + "word": " people", + "start": 764.2, + "end": 764.74, + "probability": 1.0 + }, + { + "word": " get", + "start": 764.74, + "end": 764.96, + "probability": 0.97900390625 + }, + { + "word": " tired", + "start": 764.96, + "end": 765.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 765.26, + "end": 765.6, + "probability": 0.99951171875 + }, + { + "word": " leave.", + "start": 765.6, + "end": 765.82, + "probability": 1.0 + } + ] + }, + { + "id": 325, + "text": "Sometimes I could run on for hours.", + "start": 766.68, + "end": 768.12, + "words": [ + { + "word": " Sometimes", + "start": 766.68, + "end": 767.02, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 767.02, + "end": 767.24, + "probability": 0.9775390625 + }, + { + "word": " could", + "start": 767.24, + "end": 767.34, + "probability": 0.87060546875 + }, + { + "word": " run", + "start": 767.34, + "end": 767.52, + "probability": 0.96533203125 + }, + { + "word": " on", + "start": 767.52, + "end": 767.72, + "probability": 0.89404296875 + }, + { + "word": " for", + "start": 767.72, + "end": 767.84, + "probability": 0.99853515625 + }, + { + "word": " hours.", + "start": 767.84, + "end": 768.12, + "probability": 1.0 + } + ] + }, + { + "id": 326, + "text": "Yeah.", + "start": 768.3, + "end": 768.46, + "words": [ + { + "word": " Yeah.", + "start": 768.3, + "end": 768.46, + "probability": 0.333984375 + } + ] + }, + { + "id": 327, + "text": "So, it's $40.", + "start": 768.46, + "end": 769.48, + "words": [ + { + "word": " So,", + "start": 768.46, + "end": 768.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 768.72, + "end": 768.94, + "probability": 1.0 + }, + { + "word": " $40.", + "start": 768.94, + "end": 769.48, + "probability": 0.8505859375 + } + ] + }, + { + "id": 328, + "text": "Come on down.", + "start": 769.68, + "end": 770.28, + "words": [ + { + "word": " Come", + "start": 769.68, + "end": 770.02, + "probability": 0.98193359375 + }, + { + "word": " on", + "start": 770.02, + "end": 770.14, + "probability": 1.0 + }, + { + "word": " down.", + "start": 770.14, + "end": 770.28, + "probability": 1.0 + } + ] + }, + { + "id": 329, + "text": "We can teach you whatever you want to know.", + "start": 770.32, + "end": 771.34, + "words": [ + { + "word": " We", + "start": 770.32, + "end": 770.42, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 770.42, + "end": 770.48, + "probability": 0.99951171875 + }, + { + "word": " teach", + "start": 770.48, + "end": 770.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 770.64, + "end": 770.74, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 770.74, + "end": 770.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 770.88, + "end": 771.04, + "probability": 1.0 + }, + { + "word": " want", + "start": 771.04, + "end": 771.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 771.14, + "end": 771.22, + "probability": 1.0 + }, + { + "word": " know.", + "start": 771.22, + "end": 771.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 330, + "text": "If you want more information, you can call Shop 304-8300.", + "start": 771.9, + "end": 774.64, + "words": [ + { + "word": " If", + "start": 771.9, + "end": 772.24, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 772.24, + "end": 772.34, + "probability": 1.0 + }, + { + "word": " want", + "start": 772.34, + "end": 772.48, + "probability": 1.0 + }, + { + "word": " more", + "start": 772.48, + "end": 772.64, + "probability": 1.0 + }, + { + "word": " information,", + "start": 772.64, + "end": 772.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 773.12, + "end": 773.18, + "probability": 0.9130859375 + }, + { + "word": " can", + "start": 773.18, + "end": 773.18, + "probability": 1.0 + }, + { + "word": " call", + "start": 773.18, + "end": 773.3, + "probability": 1.0 + }, + { + "word": " Shop", + "start": 773.3, + "end": 773.46, + "probability": 0.66064453125 + }, + { + "word": " 304", + "start": 773.46, + "end": 774.16, + "probability": 0.98486328125 + }, + { + "word": "-8300.", + "start": 774.16, + "end": 774.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 331, + "text": "Or if you'd like to be part of this show,", + "start": 774.78, + "end": 776.16, + "words": [ + { + "word": " Or", + "start": 774.78, + "end": 775.04, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 775.04, + "end": 775.16, + "probability": 0.5849609375 + }, + { + "word": " you'd", + "start": 775.16, + "end": 775.3, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 775.3, + "end": 775.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 775.34, + "end": 775.44, + "probability": 1.0 + }, + { + "word": " be", + "start": 775.44, + "end": 775.5, + "probability": 1.0 + }, + { + "word": " part", + "start": 775.5, + "end": 775.68, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 775.68, + "end": 775.8, + "probability": 1.0 + }, + { + "word": " this", + "start": 775.8, + "end": 775.9, + "probability": 0.98876953125 + }, + { + "word": " show,", + "start": 775.9, + "end": 776.16, + "probability": 1.0 + } + ] + }, + { + "id": 332, + "text": "call 751-1041.", + "start": 776.32, + "end": 777.54, + "words": [ + { + "word": " call", + "start": 776.32, + "end": 776.76, + "probability": 7.748603820800781e-07 + }, + { + "word": " 751", + "start": 776.76, + "end": 777.14, + "probability": 0.97607421875 + }, + { + "word": "-1041.", + "start": 777.14, + "end": 777.54, + "probability": 0.7734375 + } + ] + }, + { + "id": 333, + "text": "We'll see what we can do to help you out with whatever technology is ailing you today.", + "start": 777.62, + "end": 780.98, + "words": [ + { + "word": " We'll", + "start": 777.62, + "end": 777.8, + "probability": 0.5400390625 + }, + { + "word": " see", + "start": 777.8, + "end": 777.9, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 777.9, + "end": 778.0, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 778.0, + "end": 778.08, + "probability": 1.0 + }, + { + "word": " can", + "start": 778.08, + "end": 778.14, + "probability": 1.0 + }, + { + "word": " do", + "start": 778.14, + "end": 778.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 778.18, + "end": 778.3, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 778.3, + "end": 778.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 778.42, + "end": 778.52, + "probability": 1.0 + }, + { + "word": " out", + "start": 778.52, + "end": 778.6, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 778.6, + "end": 778.7, + "probability": 0.998046875 + }, + { + "word": " whatever", + "start": 778.7, + "end": 778.86, + "probability": 1.0 + }, + { + "word": " technology", + "start": 778.86, + "end": 779.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 779.28, + "end": 779.78, + "probability": 1.0 + }, + { + "word": " ailing", + "start": 779.78, + "end": 780.34, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 780.34, + "end": 780.58, + "probability": 1.0 + }, + { + "word": " today.", + "start": 780.58, + "end": 780.98, + "probability": 1.0 + } + ] + }, + { + "id": 334, + "text": "So, let's talk...", + "start": 782.4399999999999, + "end": 783.36, + "words": [ + { + "word": " So,", + "start": 782.4399999999999, + "end": 782.8, + "probability": 0.810546875 + }, + { + "word": " let's", + "start": 782.8, + "end": 783.16, + "probability": 0.5546875 + }, + { + "word": " talk...", + "start": 783.16, + "end": 783.36, + "probability": 0.5302734375 + } + ] + }, + { + "id": 335, + "text": "I want to talk about these shoes real fast.", + "start": 783.36, + "end": 784.52, + "words": [ + { + "word": " I", + "start": 783.36, + "end": 783.48, + "probability": 0.99853515625 + }, + { + "word": " want", + "start": 783.48, + "end": 783.58, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 783.58, + "end": 783.64, + "probability": 1.0 + }, + { + "word": " talk", + "start": 783.64, + "end": 783.76, + "probability": 1.0 + }, + { + "word": " about", + "start": 783.76, + "end": 783.84, + "probability": 1.0 + }, + { + "word": " these", + "start": 783.84, + "end": 783.94, + "probability": 1.0 + }, + { + "word": " shoes", + "start": 783.94, + "end": 784.12, + "probability": 1.0 + }, + { + "word": " real", + "start": 784.12, + "end": 784.32, + "probability": 1.0 + }, + { + "word": " fast.", + "start": 784.32, + "end": 784.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 336, + "text": "Really?", + "start": 784.64, + "end": 784.84, + "words": [ + { + "word": " Really?", + "start": 784.64, + "end": 784.84, + "probability": 0.966796875 + } + ] + }, + { + "id": 337, + "text": "You're all about these shoes.", + "start": 784.88, + "end": 786.32, + "words": [ + { + "word": " You're", + "start": 784.88, + "end": 785.22, + "probability": 1.0 + }, + { + "word": " all", + "start": 785.22, + "end": 785.58, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 785.58, + "end": 785.9, + "probability": 1.0 + }, + { + "word": " these", + "start": 785.9, + "end": 786.06, + "probability": 0.99951171875 + }, + { + "word": " shoes.", + "start": 786.06, + "end": 786.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 338, + "text": "I'm all about these shoes.", + "start": 786.44, + "end": 786.92, + "words": [ + { + "word": " I'm", + "start": 786.44, + "end": 786.46, + "probability": 0.9931640625 + }, + { + "word": " all", + "start": 786.46, + "end": 786.46, + "probability": 1.0 + }, + { + "word": " about", + "start": 786.46, + "end": 786.56, + "probability": 1.0 + }, + { + "word": " these", + "start": 786.56, + "end": 786.72, + "probability": 1.0 + }, + { + "word": " shoes.", + "start": 786.72, + "end": 786.92, + "probability": 1.0 + } + ] + }, + { + "id": 339, + "text": "These $40,000 shoes.", + "start": 786.96, + "end": 788.3, + "words": [ + { + "word": " These", + "start": 786.96, + "end": 787.1, + "probability": 0.99462890625 + }, + { + "word": " $40", + "start": 787.1, + "end": 787.38, + "probability": 0.99951171875 + }, + { + "word": ",000", + "start": 787.38, + "end": 787.92, + "probability": 1.0 + }, + { + "word": " shoes.", + "start": 787.92, + "end": 788.3, + "probability": 1.0 + } + ] + }, + { + "id": 340, + "text": "Well, actually, they're whatever their highest bid is.", + "start": 788.64, + "end": 791.08, + "words": [ + { + "word": " Well,", + "start": 788.64, + "end": 789.0, + "probability": 0.99951171875 + }, + { + "word": " actually,", + "start": 789.2, + "end": 789.54, + "probability": 1.0 + }, + { + "word": " they're", + "start": 789.6, + "end": 789.76, + "probability": 0.9951171875 + }, + { + "word": " whatever", + "start": 789.76, + "end": 790.06, + "probability": 0.99853515625 + }, + { + "word": " their", + "start": 790.06, + "end": 790.32, + "probability": 0.93017578125 + }, + { + "word": " highest", + "start": 790.32, + "end": 790.56, + "probability": 1.0 + }, + { + "word": " bid", + "start": 790.56, + "end": 790.82, + "probability": 0.99951171875 + }, + { + "word": " is.", + "start": 790.82, + "end": 791.08, + "probability": 1.0 + } + ] + }, + { + "id": 341, + "text": "But, so, I don't know if you guys remember Back to the Future.", + "start": 791.24, + "end": 794.02, + "words": [ + { + "word": " But,", + "start": 791.24, + "end": 791.38, + "probability": 0.525390625 + }, + { + "word": " so,", + "start": 791.44, + "end": 792.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 792.08, + "end": 792.3, + "probability": 0.98388671875 + }, + { + "word": " don't", + "start": 792.3, + "end": 792.42, + "probability": 0.998046875 + }, + { + "word": " know", + "start": 792.42, + "end": 792.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 792.48, + "end": 792.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 792.56, + "end": 792.62, + "probability": 1.0 + }, + { + "word": " guys", + "start": 792.62, + "end": 792.72, + "probability": 1.0 + }, + { + "word": " remember", + "start": 792.72, + "end": 792.94, + "probability": 1.0 + }, + { + "word": " Back", + "start": 792.94, + "end": 793.52, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 793.52, + "end": 793.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 793.7, + "end": 793.74, + "probability": 1.0 + }, + { + "word": " Future.", + "start": 793.74, + "end": 794.02, + "probability": 1.0 + } + ] + }, + { + "id": 342, + "text": "Or I should say Back to the Future 2.", + "start": 794.16, + "end": 795.78, + "words": [ + { + "word": " Or", + "start": 794.16, + "end": 794.52, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 794.52, + "end": 794.7, + "probability": 0.2479248046875 + }, + { + "word": " should", + "start": 794.7, + "end": 794.84, + "probability": 1.0 + }, + { + "word": " say", + "start": 794.84, + "end": 794.96, + "probability": 1.0 + }, + { + "word": " Back", + "start": 794.96, + "end": 795.16, + "probability": 0.9423828125 + }, + { + "word": " to", + "start": 795.16, + "end": 795.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 795.26, + "end": 795.28, + "probability": 1.0 + }, + { + "word": " Future", + "start": 795.28, + "end": 795.5, + "probability": 1.0 + }, + { + "word": " 2.", + "start": 795.5, + "end": 795.78, + "probability": 0.9912109375 + } + ] + }, + { + "id": 343, + "text": "There, Marty McFly was wearing some really cool Nikes in there.", + "start": 796.54, + "end": 799.8, + "words": [ + { + "word": " There,", + "start": 796.54, + "end": 796.9, + "probability": 0.84423828125 + }, + { + "word": " Marty", + "start": 796.9, + "end": 797.26, + "probability": 1.0 + }, + { + "word": " McFly", + "start": 797.26, + "end": 797.76, + "probability": 1.0 + }, + { + "word": " was", + "start": 797.76, + "end": 798.0, + "probability": 1.0 + }, + { + "word": " wearing", + "start": 798.0, + "end": 798.22, + "probability": 1.0 + }, + { + "word": " some", + "start": 798.22, + "end": 798.38, + "probability": 1.0 + }, + { + "word": " really", + "start": 798.38, + "end": 798.72, + "probability": 1.0 + }, + { + "word": " cool", + "start": 798.72, + "end": 799.02, + "probability": 1.0 + }, + { + "word": " Nikes", + "start": 799.02, + "end": 799.36, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 799.36, + "end": 799.62, + "probability": 1.0 + }, + { + "word": " there.", + "start": 799.62, + "end": 799.8, + "probability": 1.0 + } + ] + }, + { + "id": 344, + "text": "And, you know, they were lit up in colors.", + "start": 799.9, + "end": 801.52, + "words": [ + { + "word": " And,", + "start": 799.9, + "end": 800.18, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 800.26, + "end": 800.36, + "probability": 1.0 + }, + { + "word": " know,", + "start": 800.36, + "end": 800.4, + "probability": 1.0 + }, + { + "word": " they", + "start": 800.42, + "end": 800.54, + "probability": 1.0 + }, + { + "word": " were", + "start": 800.54, + "end": 800.62, + "probability": 0.97021484375 + }, + { + "word": " lit", + "start": 800.62, + "end": 800.88, + "probability": 1.0 + }, + { + "word": " up", + "start": 800.88, + "end": 801.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 801.04, + "end": 801.18, + "probability": 1.0 + }, + { + "word": " colors.", + "start": 801.18, + "end": 801.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 345, + "text": "And they adjusted to his feet and all that good stuff.", + "start": 801.54, + "end": 803.96, + "words": [ + { + "word": " And", + "start": 801.54, + "end": 801.7, + "probability": 1.0 + }, + { + "word": " they", + "start": 801.7, + "end": 801.72, + "probability": 0.97021484375 + }, + { + "word": " adjusted", + "start": 801.72, + "end": 802.14, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 802.14, + "end": 802.4, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 802.4, + "end": 802.54, + "probability": 0.99951171875 + }, + { + "word": " feet", + "start": 802.54, + "end": 803.08, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 803.08, + "end": 803.34, + "probability": 0.982421875 + }, + { + "word": " all", + "start": 803.34, + "end": 803.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 803.46, + "end": 803.58, + "probability": 1.0 + }, + { + "word": " good", + "start": 803.58, + "end": 803.76, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 803.76, + "end": 803.96, + "probability": 1.0 + } + ] + }, + { + "id": 346, + "text": "Out of lace.", + "start": 804.16, + "end": 804.46, + "words": [ + { + "word": " Out", + "start": 804.16, + "end": 804.24, + "probability": 0.270751953125 + }, + { + "word": " of", + "start": 804.24, + "end": 804.3, + "probability": 0.6171875 + }, + { + "word": " lace.", + "start": 804.3, + "end": 804.46, + "probability": 0.98876953125 + } + ] + }, + { + "id": 347, + "text": "Right.", + "start": 804.78, + "end": 805.14, + "words": [ + { + "word": " Right.", + "start": 804.78, + "end": 805.14, + "probability": 0.9970703125 + } + ] + }, + { + "id": 348, + "text": "Out of lace.", + "start": 805.24, + "end": 805.64, + "words": [ + { + "word": " Out", + "start": 805.24, + "end": 805.42, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 805.42, + "end": 805.44, + "probability": 1.0 + }, + { + "word": " lace.", + "start": 805.44, + "end": 805.64, + "probability": 1.0 + } + ] + }, + { + "id": 349, + "text": "Exactly.", + "start": 805.7, + "end": 806.06, + "words": [ + { + "word": " Exactly.", + "start": 805.7, + "end": 806.06, + "probability": 0.98046875 + } + ] + }, + { + "id": 350, + "text": "And it talked.", + "start": 806.32, + "end": 807.0, + "words": [ + { + "word": " And", + "start": 806.32, + "end": 806.68, + "probability": 0.9892578125 + }, + { + "word": " it", + "start": 806.68, + "end": 806.78, + "probability": 0.99951171875 + }, + { + "word": " talked.", + "start": 806.78, + "end": 807.0, + "probability": 0.9951171875 + } + ] + }, + { + "id": 351, + "text": "I like the jacket myself.", + "start": 807.62, + "end": 808.34, + "words": [ + { + "word": " I", + "start": 807.62, + "end": 807.62, + "probability": 0.66650390625 + }, + { + "word": " like", + "start": 807.62, + "end": 807.76, + "probability": 0.485107421875 + }, + { + "word": " the", + "start": 807.76, + "end": 807.76, + "probability": 0.529296875 + }, + { + "word": " jacket", + "start": 807.76, + "end": 808.1, + "probability": 1.0 + }, + { + "word": " myself.", + "start": 808.1, + "end": 808.34, + "probability": 0.9853515625 + } + ] + }, + { + "id": 352, + "text": "The jacket, yeah.", + "start": 808.58, + "end": 809.18, + "words": [ + { + "word": " The", + "start": 808.58, + "end": 808.7, + "probability": 0.99560546875 + }, + { + "word": " jacket,", + "start": 808.7, + "end": 809.0, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 809.06, + "end": 809.18, + "probability": 0.99755859375 + } + ] + }, + { + "id": 353, + "text": "Dry cleans.", + "start": 809.26, + "end": 809.8, + "words": [ + { + "word": " Dry", + "start": 809.26, + "end": 809.56, + "probability": 0.94482421875 + }, + { + "word": " cleans.", + "start": 809.56, + "end": 809.8, + "probability": 0.53466796875 + } + ] + }, + { + "id": 354, + "text": "Well, no jacket yet.", + "start": 810.54, + "end": 811.84, + "words": [ + { + "word": " Well,", + "start": 810.54, + "end": 811.02, + "probability": 0.65625 + }, + { + "word": " no", + "start": 811.1, + "end": 811.18, + "probability": 1.0 + }, + { + "word": " jacket", + "start": 811.18, + "end": 811.54, + "probability": 1.0 + }, + { + "word": " yet.", + "start": 811.54, + "end": 811.84, + "probability": 1.0 + } + ] + }, + { + "id": 355, + "text": "But the shoes are available now.", + "start": 811.92, + "end": 814.34, + "words": [ + { + "word": " But", + "start": 811.92, + "end": 812.2, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 812.2, + "end": 812.4, + "probability": 0.99365234375 + }, + { + "word": " shoes", + "start": 812.4, + "end": 812.68, + "probability": 1.0 + }, + { + "word": " are", + "start": 812.68, + "end": 813.28, + "probability": 1.0 + }, + { + "word": " available", + "start": 813.28, + "end": 813.98, + "probability": 1.0 + }, + { + "word": " now.", + "start": 813.98, + "end": 814.34, + "probability": 1.0 + } + ] + }, + { + "id": 356, + "text": "So, these Nike shoes are only making 1,500 pair.", + "start": 814.72, + "end": 817.84, + "words": [ + { + "word": " So,", + "start": 814.72, + "end": 815.2, + "probability": 0.96435546875 + }, + { + "word": " these", + "start": 815.26, + "end": 815.6, + "probability": 0.84375 + }, + { + "word": " Nike", + "start": 815.6, + "end": 816.12, + "probability": 1.0 + }, + { + "word": " shoes", + "start": 816.12, + "end": 816.38, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 816.38, + "end": 816.62, + "probability": 0.98583984375 + }, + { + "word": " only", + "start": 816.62, + "end": 816.76, + "probability": 0.99951171875 + }, + { + "word": " making", + "start": 816.76, + "end": 816.96, + "probability": 1.0 + }, + { + "word": " 1", + "start": 816.96, + "end": 817.1, + "probability": 0.896484375 + }, + { + "word": ",500", + "start": 817.1, + "end": 817.52, + "probability": 1.0 + }, + { + "word": " pair.", + "start": 817.52, + "end": 817.84, + "probability": 0.95263671875 + } + ] + }, + { + "id": 357, + "text": "And they're being sold to the highest bidders.", + "start": 818.74, + "end": 820.92, + "words": [ + { + "word": " And", + "start": 818.74, + "end": 819.22, + "probability": 0.998046875 + }, + { + "word": " they're", + "start": 819.22, + "end": 819.68, + "probability": 0.99609375 + }, + { + "word": " being", + "start": 819.68, + "end": 819.84, + "probability": 1.0 + }, + { + "word": " sold", + "start": 819.84, + "end": 820.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 820.06, + "end": 820.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 820.18, + "end": 820.26, + "probability": 1.0 + }, + { + "word": " highest", + "start": 820.26, + "end": 820.46, + "probability": 1.0 + }, + { + "word": " bidders.", + "start": 820.46, + "end": 820.92, + "probability": 1.0 + } + ] + }, + { + "id": 358, + "text": "eBay only.", + "start": 821.28, + "end": 822.12, + "words": [ + { + "word": " eBay", + "start": 821.28, + "end": 821.76, + "probability": 0.787109375 + }, + { + "word": " only.", + "start": 821.76, + "end": 822.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 359, + "text": "Well, a majority...", + "start": 822.72, + "end": 824.06, + "words": [ + { + "word": " Well,", + "start": 822.72, + "end": 823.2, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 823.38, + "end": 823.56, + "probability": 0.9990234375 + }, + { + "word": " majority...", + "start": 823.56, + "end": 824.06, + "probability": 0.4248046875 + } + ] + }, + { + "id": 360, + "text": "A couple hundred are on eBay.", + "start": 824.56, + "end": 826.58, + "words": [ + { + "word": " A", + "start": 824.56, + "end": 825.04, + "probability": 0.96923828125 + }, + { + "word": " couple", + "start": 825.04, + "end": 825.3, + "probability": 1.0 + }, + { + "word": " hundred", + "start": 825.3, + "end": 825.92, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 825.92, + "end": 826.12, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 826.12, + "end": 826.24, + "probability": 0.8837890625 + }, + { + "word": " eBay.", + "start": 826.24, + "end": 826.58, + "probability": 1.0 + } + ] + }, + { + "id": 361, + "text": "And they're doing other bids, too.", + "start": 826.82, + "end": 828.38, + "words": [ + { + "word": " And", + "start": 826.82, + "end": 827.02, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 827.02, + "end": 827.18, + "probability": 0.904296875 + }, + { + "word": " doing", + "start": 827.18, + "end": 827.26, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 827.26, + "end": 827.48, + "probability": 1.0 + }, + { + "word": " bids,", + "start": 827.48, + "end": 828.16, + "probability": 1.0 + }, + { + "word": " too.", + "start": 828.24, + "end": 828.38, + "probability": 1.0 + } + ] + }, + { + "id": 362, + "text": "You know, in-person bids.", + "start": 828.56, + "end": 830.0, + "words": [ + { + "word": " You", + "start": 828.56, + "end": 828.84, + "probability": 0.87158203125 + }, + { + "word": " know,", + "start": 828.84, + "end": 828.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 828.98, + "end": 829.28, + "probability": 1.0 + }, + { + "word": "-person", + "start": 829.28, + "end": 829.62, + "probability": 1.0 + }, + { + "word": " bids.", + "start": 829.62, + "end": 830.0, + "probability": 1.0 + } + ] + }, + { + "id": 363, + "text": "But all the proceeds...", + "start": 831.24, + "end": 832.64, + "words": [ + { + "word": " But", + "start": 831.24, + "end": 831.72, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 831.72, + "end": 832.0, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 832.0, + "end": 832.16, + "probability": 1.0 + }, + { + "word": " proceeds...", + "start": 832.16, + "end": 832.64, + "probability": 0.98291015625 + } + ] + }, + { + "id": 364, + "text": "This is what's cool about it.", + "start": 832.64, + "end": 833.48, + "words": [ + { + "word": " This", + "start": 832.64, + "end": 832.74, + "probability": 0.955078125 + }, + { + "word": " is", + "start": 832.74, + "end": 832.78, + "probability": 1.0 + }, + { + "word": " what's", + "start": 832.78, + "end": 833.0, + "probability": 1.0 + }, + { + "word": " cool", + "start": 833.0, + "end": 833.18, + "probability": 1.0 + }, + { + "word": " about", + "start": 833.18, + "end": 833.34, + "probability": 1.0 + }, + { + "word": " it.", + "start": 833.34, + "end": 833.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 365, + "text": "So, let's say somebody buys one for $3,000, $7,000.", + "start": 833.52, + "end": 835.72, + "words": [ + { + "word": " So,", + "start": 833.52, + "end": 833.62, + "probability": 0.99853515625 + }, + { + "word": " let's", + "start": 833.68, + "end": 833.92, + "probability": 1.0 + }, + { + "word": " say", + "start": 833.92, + "end": 833.98, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 833.98, + "end": 834.16, + "probability": 0.99951171875 + }, + { + "word": " buys", + "start": 834.16, + "end": 834.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 834.46, + "end": 834.76, + "probability": 1.0 + }, + { + "word": " for", + "start": 834.76, + "end": 834.96, + "probability": 1.0 + }, + { + "word": " $3", + "start": 834.96, + "end": 835.08, + "probability": 0.9931640625 + }, + { + "word": ",000,", + "start": 835.08, + "end": 835.34, + "probability": 0.9951171875 + }, + { + "word": " $7", + "start": 835.34, + "end": 835.34, + "probability": 1.0 + }, + { + "word": ",000.", + "start": 835.34, + "end": 835.72, + "probability": 1.0 + } + ] + }, + { + "id": 366, + "text": "Like somebody just did recently.", + "start": 835.86, + "end": 836.86, + "words": [ + { + "word": " Like", + "start": 835.86, + "end": 836.04, + "probability": 0.99755859375 + }, + { + "word": " somebody", + "start": 836.04, + "end": 836.28, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 836.28, + "end": 836.44, + "probability": 1.0 + }, + { + "word": " did", + "start": 836.44, + "end": 836.62, + "probability": 1.0 + }, + { + "word": " recently.", + "start": 836.62, + "end": 836.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 367, + "text": "Yeah.", + "start": 837.62, + "end": 837.64, + "words": [ + { + "word": " Yeah.", + "start": 837.62, + "end": 837.64, + "probability": 0.0005512237548828125 + } + ] + }, + { + "id": 368, + "text": "$3,000, $7,000.", + "start": 838.66, + "end": 839.56, + "words": [ + { + "word": " $3", + "start": 838.66, + "end": 839.06, + "probability": 0.525390625 + }, + { + "word": ",000,", + "start": 839.06, + "end": 839.24, + "probability": 0.41259765625 + }, + { + "word": " $7", + "start": 839.36, + "end": 839.36, + "probability": 0.9677734375 + }, + { + "word": ",000.", + "start": 839.36, + "end": 839.56, + "probability": 1.0 + } + ] + }, + { + "id": 369, + "text": "Well, somebody's going to match that.", + "start": 839.82, + "end": 841.9, + "words": [ + { + "word": " Well,", + "start": 839.82, + "end": 840.14, + "probability": 0.98291015625 + }, + { + "word": " somebody's", + "start": 840.36, + "end": 841.12, + "probability": 0.91455078125 + }, + { + "word": " going", + "start": 841.12, + "end": 841.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 841.22, + "end": 841.32, + "probability": 1.0 + }, + { + "word": " match", + "start": 841.32, + "end": 841.62, + "probability": 1.0 + }, + { + "word": " that.", + "start": 841.62, + "end": 841.9, + "probability": 1.0 + } + ] + }, + { + "id": 370, + "text": "The actual creator of Google is matching that.", + "start": 842.28, + "end": 845.36, + "words": [ + { + "word": " The", + "start": 842.28, + "end": 842.68, + "probability": 0.99951171875 + }, + { + "word": " actual", + "start": 842.68, + "end": 843.18, + "probability": 1.0 + }, + { + "word": " creator", + "start": 843.18, + "end": 843.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 843.76, + "end": 844.04, + "probability": 1.0 + }, + { + "word": " Google", + "start": 844.04, + "end": 844.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 844.28, + "end": 844.62, + "probability": 1.0 + }, + { + "word": " matching", + "start": 844.62, + "end": 845.04, + "probability": 1.0 + }, + { + "word": " that.", + "start": 845.04, + "end": 845.36, + "probability": 1.0 + } + ] + }, + { + "id": 371, + "text": "Up to $50 million.", + "start": 845.4, + "end": 846.3, + "words": [ + { + "word": " Up", + "start": 845.4, + "end": 845.48, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 845.48, + "end": 845.64, + "probability": 1.0 + }, + { + "word": " $50", + "start": 845.64, + "end": 846.06, + "probability": 0.9990234375 + }, + { + "word": " million.", + "start": 846.06, + "end": 846.3, + "probability": 0.98974609375 + } + ] + }, + { + "id": 372, + "text": "Up to $50 million.", + "start": 846.7, + "end": 847.26, + "words": [ + { + "word": " Up", + "start": 846.7, + "end": 846.78, + "probability": 0.9765625 + }, + { + "word": " to", + "start": 846.78, + "end": 846.78, + "probability": 1.0 + }, + { + "word": " $50", + "start": 846.78, + "end": 847.06, + "probability": 1.0 + }, + { + "word": " million.", + "start": 847.06, + "end": 847.26, + "probability": 1.0 + } + ] + }, + { + "id": 373, + "text": "So, it's pretty cool.", + "start": 849.22, + "end": 850.38, + "words": [ + { + "word": " So,", + "start": 849.22, + "end": 849.62, + "probability": 0.90625 + }, + { + "word": " it's", + "start": 849.62, + "end": 850.02, + "probability": 0.9951171875 + }, + { + "word": " pretty", + "start": 850.02, + "end": 850.2, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 850.2, + "end": 850.38, + "probability": 1.0 + } + ] + }, + { + "id": 374, + "text": "All the proceeds are going to Michael J. Fox's charity for Parkinson's disease.", + "start": 850.42, + "end": 856.24, + "words": [ + { + "word": " All", + "start": 850.42, + "end": 850.56, + "probability": 0.8720703125 + }, + { + "word": " the", + "start": 850.56, + "end": 850.74, + "probability": 0.99853515625 + }, + { + "word": " proceeds", + "start": 850.74, + "end": 851.16, + "probability": 1.0 + }, + { + "word": " are", + "start": 851.16, + "end": 851.46, + "probability": 1.0 + }, + { + "word": " going", + "start": 851.46, + "end": 851.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 851.76, + "end": 852.06, + "probability": 1.0 + }, + { + "word": " Michael", + "start": 852.06, + "end": 852.38, + "probability": 1.0 + }, + { + "word": " J.", + "start": 852.38, + "end": 852.56, + "probability": 0.99951171875 + }, + { + "word": " Fox's", + "start": 852.68, + "end": 853.08, + "probability": 1.0 + }, + { + "word": " charity", + "start": 853.08, + "end": 853.98, + "probability": 1.0 + }, + { + "word": " for", + "start": 853.98, + "end": 854.62, + "probability": 0.99951171875 + }, + { + "word": " Parkinson's", + "start": 854.62, + "end": 856.04, + "probability": 1.0 + }, + { + "word": " disease.", + "start": 856.04, + "end": 856.24, + "probability": 0.98974609375 + } + ] + }, + { + "id": 375, + "text": "Which is really cool.", + "start": 856.32, + "end": 857.2, + "words": [ + { + "word": " Which", + "start": 856.32, + "end": 856.6, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 856.6, + "end": 856.72, + "probability": 1.0 + }, + { + "word": " really", + "start": 856.72, + "end": 856.96, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 856.96, + "end": 857.2, + "probability": 1.0 + } + ] + }, + { + "id": 376, + "text": "He was on the Letterman Show.", + "start": 857.64, + "end": 858.98, + "words": [ + { + "word": " He", + "start": 857.64, + "end": 858.04, + "probability": 1.0 + }, + { + "word": " was", + "start": 858.04, + "end": 858.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 858.18, + "end": 858.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 858.4, + "end": 858.52, + "probability": 0.85986328125 + }, + { + "word": " Letterman", + "start": 858.52, + "end": 858.8, + "probability": 0.830078125 + }, + { + "word": " Show.", + "start": 858.8, + "end": 858.98, + "probability": 0.78173828125 + } + ] + }, + { + "id": 377, + "text": "It was the last night or the night before last.", + "start": 859.1, + "end": 860.28, + "words": [ + { + "word": " It", + "start": 859.1, + "end": 859.2, + "probability": 0.9521484375 + }, + { + "word": " was", + "start": 859.2, + "end": 859.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 859.28, + "end": 859.36, + "probability": 0.65380859375 + }, + { + "word": " last", + "start": 859.36, + "end": 859.5, + "probability": 0.91259765625 + }, + { + "word": " night", + "start": 859.5, + "end": 859.64, + "probability": 0.6494140625 + }, + { + "word": " or", + "start": 859.64, + "end": 859.72, + "probability": 0.9150390625 + }, + { + "word": " the", + "start": 859.72, + "end": 859.8, + "probability": 0.9970703125 + }, + { + "word": " night", + "start": 859.8, + "end": 859.9, + "probability": 1.0 + }, + { + "word": " before", + "start": 859.9, + "end": 860.1, + "probability": 1.0 + }, + { + "word": " last.", + "start": 860.1, + "end": 860.28, + "probability": 0.95654296875 + } + ] + }, + { + "id": 378, + "text": "I'm not sure.", + "start": 860.38, + "end": 860.68, + "words": [ + { + "word": " I'm", + "start": 860.38, + "end": 860.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 860.5, + "end": 860.52, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 860.52, + "end": 860.68, + "probability": 1.0 + } + ] + }, + { + "id": 379, + "text": "And, you know, he talked about it.", + "start": 861.12, + "end": 862.74, + "words": [ + { + "word": " And,", + "start": 861.12, + "end": 861.52, + "probability": 0.900390625 + }, + { + "word": " you", + "start": 861.56, + "end": 861.94, + "probability": 0.9951171875 + }, + { + "word": " know,", + "start": 861.94, + "end": 862.04, + "probability": 1.0 + }, + { + "word": " he", + "start": 862.04, + "end": 862.12, + "probability": 1.0 + }, + { + "word": " talked", + "start": 862.12, + "end": 862.32, + "probability": 1.0 + }, + { + "word": " about", + "start": 862.32, + "end": 862.5, + "probability": 1.0 + }, + { + "word": " it.", + "start": 862.5, + "end": 862.74, + "probability": 1.0 + } + ] + }, + { + "id": 380, + "text": "And he looks like he's doing really good.", + "start": 862.78, + "end": 864.1, + "words": [ + { + "word": " And", + "start": 862.78, + "end": 862.94, + "probability": 0.99169921875 + }, + { + "word": " he", + "start": 862.94, + "end": 863.08, + "probability": 0.94580078125 + }, + { + "word": " looks", + "start": 863.08, + "end": 863.3, + "probability": 1.0 + }, + { + "word": " like", + "start": 863.3, + "end": 863.42, + "probability": 1.0 + }, + { + "word": " he's", + "start": 863.42, + "end": 863.56, + "probability": 1.0 + }, + { + "word": " doing", + "start": 863.56, + "end": 863.68, + "probability": 1.0 + }, + { + "word": " really", + "start": 863.68, + "end": 863.88, + "probability": 1.0 + }, + { + "word": " good.", + "start": 863.88, + "end": 864.1, + "probability": 1.0 + } + ] + }, + { + "id": 381, + "text": "Even though he has Parkinson's and he can't really act as much anymore.", + "start": 864.5, + "end": 867.44, + "words": [ + { + "word": " Even", + "start": 864.5, + "end": 864.9, + "probability": 0.9990234375 + }, + { + "word": " though", + "start": 864.9, + "end": 865.12, + "probability": 1.0 + }, + { + "word": " he", + "start": 865.12, + "end": 865.3, + "probability": 1.0 + }, + { + "word": " has", + "start": 865.3, + "end": 865.5, + "probability": 1.0 + }, + { + "word": " Parkinson's", + "start": 865.5, + "end": 866.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 866.02, + "end": 866.08, + "probability": 0.9375 + }, + { + "word": " he", + "start": 866.08, + "end": 866.16, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 866.16, + "end": 866.68, + "probability": 1.0 + }, + { + "word": " really", + "start": 866.68, + "end": 866.76, + "probability": 0.98828125 + }, + { + "word": " act", + "start": 866.76, + "end": 867.0, + "probability": 0.974609375 + }, + { + "word": " as", + "start": 867.0, + "end": 867.12, + "probability": 0.93896484375 + }, + { + "word": " much", + "start": 867.12, + "end": 867.24, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 867.24, + "end": 867.44, + "probability": 1.0 + } + ] + }, + { + "id": 382, + "text": "He's doing really good, it seems like.", + "start": 867.44, + "end": 868.68, + "words": [ + { + "word": " He's", + "start": 867.44, + "end": 867.64, + "probability": 0.67822265625 + }, + { + "word": " doing", + "start": 867.64, + "end": 867.78, + "probability": 0.99267578125 + }, + { + "word": " really", + "start": 867.78, + "end": 867.98, + "probability": 0.99951171875 + }, + { + "word": " good,", + "start": 867.98, + "end": 868.18, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 868.24, + "end": 868.28, + "probability": 0.9990234375 + }, + { + "word": " seems", + "start": 868.28, + "end": 868.42, + "probability": 1.0 + }, + { + "word": " like.", + "start": 868.42, + "end": 868.68, + "probability": 1.0 + } + ] + }, + { + "id": 383, + "text": "But these shoes are really cool.", + "start": 869.46, + "end": 871.28, + "words": [ + { + "word": " But", + "start": 869.46, + "end": 869.74, + "probability": 0.9609375 + }, + { + "word": " these", + "start": 869.74, + "end": 870.0, + "probability": 0.9951171875 + }, + { + "word": " shoes", + "start": 870.0, + "end": 870.46, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 870.46, + "end": 870.8, + "probability": 1.0 + }, + { + "word": " really", + "start": 870.8, + "end": 871.1, + "probability": 0.99951171875 + }, + { + "word": " cool.", + "start": 871.1, + "end": 871.28, + "probability": 1.0 + } + ] + }, + { + "id": 384, + "text": "And they light up.", + "start": 871.34, + "end": 872.08, + "words": [ + { + "word": " And", + "start": 871.34, + "end": 871.38, + "probability": 0.09722900390625 + }, + { + "word": " they", + "start": 871.38, + "end": 871.46, + "probability": 0.9990234375 + }, + { + "word": " light", + "start": 871.46, + "end": 871.68, + "probability": 1.0 + }, + { + "word": " up.", + "start": 871.68, + "end": 872.08, + "probability": 1.0 + } + ] + }, + { + "id": 385, + "text": "They even do the auto-adjust.", + "start": 872.08, + "end": 873.32, + "words": [ + { + "word": " They", + "start": 872.08, + "end": 872.22, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 872.22, + "end": 872.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 872.42, + "end": 872.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 872.56, + "end": 872.64, + "probability": 1.0 + }, + { + "word": " auto", + "start": 872.64, + "end": 872.9, + "probability": 1.0 + }, + { + "word": "-adjust.", + "start": 872.9, + "end": 873.32, + "probability": 0.966796875 + } + ] + }, + { + "id": 386, + "text": "So, you know, you put them on your feet.", + "start": 873.6800000000001, + "end": 874.94, + "words": [ + { + "word": " So,", + "start": 873.6800000000001, + "end": 873.96, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 873.98, + "end": 874.12, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 874.12, + "end": 874.24, + "probability": 0.880859375 + }, + { + "word": " you", + "start": 874.24, + "end": 874.3, + "probability": 1.0 + }, + { + "word": " put", + "start": 874.3, + "end": 874.42, + "probability": 1.0 + }, + { + "word": " them", + "start": 874.42, + "end": 874.52, + "probability": 0.62109375 + }, + { + "word": " on", + "start": 874.52, + "end": 874.62, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 874.62, + "end": 874.74, + "probability": 1.0 + }, + { + "word": " feet.", + "start": 874.74, + "end": 874.94, + "probability": 1.0 + } + ] + }, + { + "id": 387, + "text": "You push the button.", + "start": 874.98, + "end": 875.56, + "words": [ + { + "word": " You", + "start": 874.98, + "end": 875.06, + "probability": 1.0 + }, + { + "word": " push", + "start": 875.06, + "end": 875.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 875.2, + "end": 875.34, + "probability": 1.0 + }, + { + "word": " button.", + "start": 875.34, + "end": 875.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 388, + "text": "They automatically cinch up to your foot.", + "start": 875.62, + "end": 876.98, + "words": [ + { + "word": " They", + "start": 875.62, + "end": 875.7, + "probability": 0.99609375 + }, + { + "word": " automatically", + "start": 875.7, + "end": 875.96, + "probability": 1.0 + }, + { + "word": " cinch", + "start": 875.96, + "end": 876.4, + "probability": 0.99658203125 + }, + { + "word": " up", + "start": 876.4, + "end": 876.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 876.54, + "end": 876.66, + "probability": 1.0 + }, + { + "word": " your", + "start": 876.66, + "end": 876.76, + "probability": 1.0 + }, + { + "word": " foot.", + "start": 876.76, + "end": 876.98, + "probability": 1.0 + } + ] + }, + { + "id": 389, + "text": "No, no, no.", + "start": 877.02, + "end": 877.48, + "words": [ + { + "word": " No,", + "start": 877.02, + "end": 877.28, + "probability": 0.87353515625 + }, + { + "word": " no,", + "start": 877.28, + "end": 877.3, + "probability": 0.99072265625 + }, + { + "word": " no.", + "start": 877.38, + "end": 877.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 390, + "text": "The auto-lace is not in them.", + "start": 877.5, + "end": 878.72, + "words": [ + { + "word": " The", + "start": 877.5, + "end": 877.7, + "probability": 0.998046875 + }, + { + "word": " auto", + "start": 877.7, + "end": 877.84, + "probability": 0.98876953125 + }, + { + "word": "-lace", + "start": 877.84, + "end": 878.06, + "probability": 0.9482421875 + }, + { + "word": " is", + "start": 878.06, + "end": 878.2, + "probability": 0.436767578125 + }, + { + "word": " not", + "start": 878.2, + "end": 878.42, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 878.42, + "end": 878.62, + "probability": 1.0 + }, + { + "word": " them.", + "start": 878.62, + "end": 878.72, + "probability": 1.0 + } + ] + }, + { + "id": 391, + "text": "No, no.", + "start": 878.8, + "end": 879.2, + "words": [ + { + "word": " No,", + "start": 878.8, + "end": 879.08, + "probability": 0.9990234375 + }, + { + "word": " no.", + "start": 879.1, + "end": 879.2, + "probability": 1.0 + } + ] + }, + { + "id": 392, + "text": "The band at the top.", + "start": 879.26, + "end": 880.54, + "words": [ + { + "word": " The", + "start": 879.26, + "end": 879.4, + "probability": 0.998046875 + }, + { + "word": " band", + "start": 879.4, + "end": 880.0, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 880.0, + "end": 880.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 880.22, + "end": 880.32, + "probability": 1.0 + }, + { + "word": " top.", + "start": 880.32, + "end": 880.54, + "probability": 1.0 + } + ] + }, + { + "id": 393, + "text": "It does.", + "start": 880.56, + "end": 880.86, + "words": [ + { + "word": " It", + "start": 880.56, + "end": 880.72, + "probability": 0.994140625 + }, + { + "word": " does.", + "start": 880.72, + "end": 880.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 394, + "text": "Oh, the band at the top.", + "start": 880.96, + "end": 881.72, + "words": [ + { + "word": " Oh,", + "start": 880.96, + "end": 881.02, + "probability": 0.42919921875 + }, + { + "word": " the", + "start": 881.08, + "end": 881.2, + "probability": 0.99951171875 + }, + { + "word": " band", + "start": 881.2, + "end": 881.38, + "probability": 1.0 + }, + { + "word": " at", + "start": 881.38, + "end": 881.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 881.52, + "end": 881.6, + "probability": 1.0 + }, + { + "word": " top.", + "start": 881.6, + "end": 881.72, + "probability": 1.0 + } + ] + }, + { + "id": 395, + "text": "But the auto-lace is not in there.", + "start": 881.74, + "end": 882.42, + "words": [ + { + "word": " But", + "start": 881.74, + "end": 881.86, + "probability": 0.97607421875 + }, + { + "word": " the", + "start": 881.86, + "end": 881.96, + "probability": 1.0 + }, + { + "word": " auto", + "start": 881.96, + "end": 882.12, + "probability": 0.9990234375 + }, + { + "word": "-lace", + "start": 882.12, + "end": 882.4, + "probability": 0.990234375 + }, + { + "word": " is", + "start": 882.4, + "end": 882.42, + "probability": 0.9345703125 + }, + { + "word": " not", + "start": 882.42, + "end": 882.42, + "probability": 0.99609375 + }, + { + "word": " in", + "start": 882.42, + "end": 882.42, + "probability": 0.93212890625 + }, + { + "word": " there.", + "start": 882.42, + "end": 882.42, + "probability": 0.9365234375 + } + ] + }, + { + "id": 396, + "text": "The lace is not the lace.", + "start": 882.42, + "end": 883.16, + "words": [ + { + "word": " The", + "start": 882.42, + "end": 882.42, + "probability": 0.896484375 + }, + { + "word": " lace", + "start": 882.42, + "end": 882.6, + "probability": 0.951171875 + }, + { + "word": " is", + "start": 882.6, + "end": 882.7, + "probability": 0.919921875 + }, + { + "word": " not", + "start": 882.7, + "end": 882.88, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 882.88, + "end": 883.0, + "probability": 0.427978515625 + }, + { + "word": " lace.", + "start": 883.0, + "end": 883.16, + "probability": 0.576171875 + } + ] + }, + { + "id": 397, + "text": "But the band at the top does adjust automatically.", + "start": 883.24, + "end": 885.48, + "words": [ + { + "word": " But", + "start": 883.24, + "end": 883.3, + "probability": 0.98193359375 + }, + { + "word": " the", + "start": 883.3, + "end": 883.42, + "probability": 1.0 + }, + { + "word": " band", + "start": 883.42, + "end": 883.84, + "probability": 0.9755859375 + }, + { + "word": " at", + "start": 883.84, + "end": 884.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 884.44, + "end": 884.52, + "probability": 1.0 + }, + { + "word": " top", + "start": 884.52, + "end": 884.66, + "probability": 1.0 + }, + { + "word": " does", + "start": 884.66, + "end": 884.88, + "probability": 1.0 + }, + { + "word": " adjust", + "start": 884.88, + "end": 885.08, + "probability": 0.99951171875 + }, + { + "word": " automatically.", + "start": 885.08, + "end": 885.48, + "probability": 0.9931640625 + } + ] + }, + { + "id": 398, + "text": "And they're rechargeable.", + "start": 885.48, + "end": 886.36, + "words": [ + { + "word": " And", + "start": 885.48, + "end": 885.76, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 885.76, + "end": 885.9, + "probability": 0.95556640625 + }, + { + "word": " rechargeable.", + "start": 885.9, + "end": 886.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 399, + "text": "It's the first rechargeable shoe that Nike has made.", + "start": 886.38, + "end": 888.56, + "words": [ + { + "word": " It's", + "start": 886.38, + "end": 886.5, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 886.5, + "end": 886.58, + "probability": 1.0 + }, + { + "word": " first", + "start": 886.58, + "end": 886.82, + "probability": 1.0 + }, + { + "word": " rechargeable", + "start": 886.82, + "end": 887.38, + "probability": 1.0 + }, + { + "word": " shoe", + "start": 887.38, + "end": 887.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 887.62, + "end": 887.88, + "probability": 1.0 + }, + { + "word": " Nike", + "start": 887.88, + "end": 888.12, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 888.12, + "end": 888.32, + "probability": 0.8330078125 + }, + { + "word": " made.", + "start": 888.32, + "end": 888.56, + "probability": 1.0 + } + ] + }, + { + "id": 400, + "text": "Yeah.", + "start": 888.66, + "end": 888.9, + "words": [ + { + "word": " Yeah.", + "start": 888.66, + "end": 888.9, + "probability": 0.9775390625 + } + ] + }, + { + "id": 401, + "text": "Now, I think they went about this all wrong.", + "start": 890.14, + "end": 891.74, + "words": [ + { + "word": " Now,", + "start": 890.14, + "end": 890.42, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 890.52, + "end": 890.7, + "probability": 1.0 + }, + { + "word": " think", + "start": 890.7, + "end": 890.86, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 890.86, + "end": 890.94, + "probability": 0.99560546875 + }, + { + "word": " went", + "start": 890.94, + "end": 891.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 891.04, + "end": 891.2, + "probability": 1.0 + }, + { + "word": " this", + "start": 891.2, + "end": 891.36, + "probability": 1.0 + }, + { + "word": " all", + "start": 891.36, + "end": 891.5, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 891.5, + "end": 891.74, + "probability": 1.0 + } + ] + }, + { + "id": 402, + "text": "I think...", + "start": 892.24, + "end": 892.8, + "words": [ + { + "word": " I", + "start": 892.24, + "end": 892.52, + "probability": 0.96484375 + }, + { + "word": " think...", + "start": 892.52, + "end": 892.8, + "probability": 0.67626953125 + } + ] + }, + { + "id": 403, + "text": "Because the person who...", + "start": 892.8, + "end": 894.2, + "words": [ + { + "word": " Because", + "start": 892.8, + "end": 892.92, + "probability": 0.89599609375 + }, + { + "word": " the", + "start": 892.92, + "end": 893.34, + "probability": 1.0 + }, + { + "word": " person", + "start": 893.34, + "end": 893.92, + "probability": 0.845703125 + }, + { + "word": " who...", + "start": 893.92, + "end": 894.2, + "probability": 0.99267578125 + } + ] + }, + { + "id": 404, + "text": "The people who made this movie big.", + "start": 894.2, + "end": 895.62, + "words": [ + { + "word": " The", + "start": 894.2, + "end": 894.4, + "probability": 0.99560546875 + }, + { + "word": " people", + "start": 894.4, + "end": 894.58, + "probability": 0.9990234375 + }, + { + "word": " who", + "start": 894.58, + "end": 894.68, + "probability": 1.0 + }, + { + "word": " made", + "start": 894.68, + "end": 894.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 894.94, + "end": 895.12, + "probability": 0.99951171875 + }, + { + "word": " movie", + "start": 895.12, + "end": 895.32, + "probability": 1.0 + }, + { + "word": " big.", + "start": 895.32, + "end": 895.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 405, + "text": "You know, us.", + "start": 895.76, + "end": 896.34, + "words": [ + { + "word": " You", + "start": 895.76, + "end": 895.96, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 895.96, + "end": 896.08, + "probability": 1.0 + }, + { + "word": " us.", + "start": 896.1, + "end": 896.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 406, + "text": "The people who watched it all the time.", + "start": 896.34, + "end": 897.84, + "words": [ + { + "word": " The", + "start": 896.34, + "end": 896.64, + "probability": 0.1690673828125 + }, + { + "word": " people", + "start": 896.64, + "end": 896.8, + "probability": 0.97509765625 + }, + { + "word": " who", + "start": 896.8, + "end": 896.92, + "probability": 0.998046875 + }, + { + "word": " watched", + "start": 896.92, + "end": 897.24, + "probability": 0.3828125 + }, + { + "word": " it", + "start": 897.24, + "end": 897.36, + "probability": 0.96044921875 + }, + { + "word": " all", + "start": 897.36, + "end": 897.46, + "probability": 0.98876953125 + }, + { + "word": " the", + "start": 897.46, + "end": 897.58, + "probability": 1.0 + }, + { + "word": " time.", + "start": 897.58, + "end": 897.84, + "probability": 1.0 + } + ] + }, + { + "id": 407, + "text": "Can never afford $40,000 shoes.", + "start": 897.92, + "end": 899.62, + "words": [ + { + "word": " Can", + "start": 897.92, + "end": 898.24, + "probability": 0.90673828125 + }, + { + "word": " never", + "start": 898.24, + "end": 898.4, + "probability": 0.998046875 + }, + { + "word": " afford", + "start": 898.4, + "end": 898.64, + "probability": 1.0 + }, + { + "word": " $40", + "start": 898.64, + "end": 898.96, + "probability": 0.9921875 + }, + { + "word": ",000", + "start": 898.96, + "end": 899.32, + "probability": 1.0 + }, + { + "word": " shoes.", + "start": 899.32, + "end": 899.62, + "probability": 0.9951171875 + } + ] + }, + { + "id": 408, + "text": "I think what Nike should have done...", + "start": 900.24, + "end": 901.6, + "words": [ + { + "word": " I", + "start": 900.24, + "end": 900.56, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 900.56, + "end": 900.72, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 900.72, + "end": 900.84, + "probability": 0.98486328125 + }, + { + "word": " Nike", + "start": 900.84, + "end": 901.04, + "probability": 0.99755859375 + }, + { + "word": " should", + "start": 901.04, + "end": 901.24, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 901.24, + "end": 901.34, + "probability": 0.85498046875 + }, + { + "word": " done...", + "start": 901.34, + "end": 901.6, + "probability": 0.52783203125 + } + ] + }, + { + "id": 409, + "text": "Because, you know, it takes them $2 to make a shoe.", + "start": 901.6, + "end": 903.2, + "words": [ + { + "word": " Because,", + "start": 901.6, + "end": 901.8, + "probability": 0.97314453125 + }, + { + "word": " you", + "start": 901.84, + "end": 901.96, + "probability": 1.0 + }, + { + "word": " know,", + "start": 901.96, + "end": 902.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 902.02, + "end": 902.1, + "probability": 0.9990234375 + }, + { + "word": " takes", + "start": 902.1, + "end": 902.24, + "probability": 0.9970703125 + }, + { + "word": " them", + "start": 902.24, + "end": 902.34, + "probability": 0.9990234375 + }, + { + "word": " $2", + "start": 902.34, + "end": 902.6, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 902.6, + "end": 902.74, + "probability": 0.9970703125 + }, + { + "word": " make", + "start": 902.74, + "end": 902.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 902.94, + "end": 903.0, + "probability": 1.0 + }, + { + "word": " shoe.", + "start": 903.0, + "end": 903.2, + "probability": 1.0 + } + ] + }, + { + "id": 410, + "text": "Okay, this shoe, probably $50 to make this shoe.", + "start": 903.34, + "end": 905.48, + "words": [ + { + "word": " Okay,", + "start": 903.34, + "end": 903.52, + "probability": 0.71875 + }, + { + "word": " this", + "start": 903.54, + "end": 903.68, + "probability": 1.0 + }, + { + "word": " shoe,", + "start": 903.68, + "end": 903.86, + "probability": 1.0 + }, + { + "word": " probably", + "start": 903.9, + "end": 904.04, + "probability": 0.99072265625 + }, + { + "word": " $50", + "start": 904.04, + "end": 904.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 904.52, + "end": 904.7, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 904.7, + "end": 905.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 905.12, + "end": 905.32, + "probability": 0.994140625 + }, + { + "word": " shoe.", + "start": 905.32, + "end": 905.48, + "probability": 1.0 + } + ] + }, + { + "id": 411, + "text": "They should have, you know, charged $400 for the shoe.", + "start": 906.08, + "end": 908.56, + "words": [ + { + "word": " They", + "start": 906.08, + "end": 906.4, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 906.4, + "end": 906.62, + "probability": 1.0 + }, + { + "word": " have,", + "start": 906.62, + "end": 906.74, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 906.76, + "end": 906.88, + "probability": 1.0 + }, + { + "word": " know,", + "start": 906.88, + "end": 907.02, + "probability": 1.0 + }, + { + "word": " charged", + "start": 907.02, + "end": 907.3, + "probability": 0.9990234375 + }, + { + "word": " $400", + "start": 907.3, + "end": 908.0, + "probability": 1.0 + }, + { + "word": " for", + "start": 908.0, + "end": 908.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 908.3, + "end": 908.4, + "probability": 0.93115234375 + }, + { + "word": " shoe.", + "start": 908.4, + "end": 908.56, + "probability": 0.5498046875 + } + ] + }, + { + "id": 412, + "text": "So, at least the average person can buy it.", + "start": 908.58, + "end": 910.58, + "words": [ + { + "word": " So,", + "start": 908.58, + "end": 908.7, + "probability": 0.9287109375 + }, + { + "word": " at", + "start": 908.7, + "end": 908.8, + "probability": 0.9765625 + }, + { + "word": " least", + "start": 908.8, + "end": 909.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 909.0, + "end": 909.38, + "probability": 0.9873046875 + }, + { + "word": " average", + "start": 909.38, + "end": 909.74, + "probability": 1.0 + }, + { + "word": " person", + "start": 909.74, + "end": 910.06, + "probability": 1.0 + }, + { + "word": " can", + "start": 910.06, + "end": 910.46, + "probability": 1.0 + }, + { + "word": " buy", + "start": 910.46, + "end": 910.58, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 910.58, + "end": 910.58, + "probability": 0.96337890625 + } + ] + }, + { + "id": 413, + "text": "That's the reason the auto-lace doesn't work.", + "start": 910.58, + "end": 912.0, + "words": [ + { + "word": " That's", + "start": 910.58, + "end": 910.68, + "probability": 0.958984375 + }, + { + "word": " the", + "start": 910.68, + "end": 910.68, + "probability": 0.99951171875 + }, + { + "word": " reason", + "start": 910.68, + "end": 910.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 910.86, + "end": 911.06, + "probability": 0.9931640625 + }, + { + "word": " auto", + "start": 911.06, + "end": 911.26, + "probability": 0.79150390625 + }, + { + "word": "-lace", + "start": 911.26, + "end": 911.46, + "probability": 0.75390625 + }, + { + "word": " doesn't", + "start": 911.46, + "end": 911.78, + "probability": 1.0 + }, + { + "word": " work.", + "start": 911.78, + "end": 912.0, + "probability": 1.0 + } + ] + }, + { + "id": 414, + "text": "Is because they, you know, their sweatshop labor doesn't really...", + "start": 912.02, + "end": 914.88, + "words": [ + { + "word": " Is", + "start": 912.02, + "end": 912.18, + "probability": 0.642578125 + }, + { + "word": " because", + "start": 912.18, + "end": 912.36, + "probability": 1.0 + }, + { + "word": " they,", + "start": 912.36, + "end": 912.62, + "probability": 0.2276611328125 + }, + { + "word": " you", + "start": 912.66, + "end": 912.88, + "probability": 1.0 + }, + { + "word": " know,", + "start": 912.88, + "end": 913.02, + "probability": 1.0 + }, + { + "word": " their", + "start": 913.04, + "end": 913.22, + "probability": 0.99609375 + }, + { + "word": " sweatshop", + "start": 913.22, + "end": 913.8, + "probability": 0.9990234375 + }, + { + "word": " labor", + "start": 913.8, + "end": 914.06, + "probability": 0.87109375 + }, + { + "word": " doesn't", + "start": 914.06, + "end": 914.34, + "probability": 0.9990234375 + }, + { + "word": " really...", + "start": 914.34, + "end": 914.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 415, + "text": "They can't figure out how that works.", + "start": 914.88, + "end": 916.72, + "words": [ + { + "word": " They", + "start": 914.88, + "end": 915.52, + "probability": 0.82421875 + }, + { + "word": " can't", + "start": 915.52, + "end": 915.96, + "probability": 0.8818359375 + }, + { + "word": " figure", + "start": 915.96, + "end": 916.0, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 916.0, + "end": 916.16, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 916.16, + "end": 916.3, + "probability": 0.7353515625 + }, + { + "word": " that", + "start": 916.3, + "end": 916.52, + "probability": 0.9951171875 + }, + { + "word": " works.", + "start": 916.52, + "end": 916.72, + "probability": 1.0 + } + ] + }, + { + "id": 416, + "text": "Well, you know, I think that would be really, really cool.", + "start": 917.92, + "end": 919.58, + "words": [ + { + "word": " Well,", + "start": 917.92, + "end": 917.92, + "probability": 0.34814453125 + }, + { + "word": " you", + "start": 918.14, + "end": 918.24, + "probability": 1.0 + }, + { + "word": " know,", + "start": 918.24, + "end": 918.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 918.3, + "end": 918.36, + "probability": 1.0 + }, + { + "word": " think", + "start": 918.36, + "end": 918.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 918.48, + "end": 918.56, + "probability": 1.0 + }, + { + "word": " would", + "start": 918.56, + "end": 918.68, + "probability": 0.9912109375 + }, + { + "word": " be", + "start": 918.68, + "end": 918.76, + "probability": 1.0 + }, + { + "word": " really,", + "start": 918.76, + "end": 919.08, + "probability": 1.0 + }, + { + "word": " really", + "start": 919.16, + "end": 919.32, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 919.32, + "end": 919.58, + "probability": 1.0 + } + ] + }, + { + "id": 417, + "text": "So, the average person, instead of making $1,500 of them, make $15 million of them.", + "start": 919.68, + "end": 923.22, + "words": [ + { + "word": " So,", + "start": 919.68, + "end": 919.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 919.84, + "end": 919.9, + "probability": 1.0 + }, + { + "word": " average", + "start": 919.9, + "end": 920.2, + "probability": 1.0 + }, + { + "word": " person,", + "start": 920.2, + "end": 920.46, + "probability": 1.0 + }, + { + "word": " instead", + "start": 920.54, + "end": 920.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 920.68, + "end": 920.8, + "probability": 1.0 + }, + { + "word": " making", + "start": 920.8, + "end": 920.94, + "probability": 1.0 + }, + { + "word": " $1", + "start": 920.94, + "end": 921.14, + "probability": 0.9541015625 + }, + { + "word": ",500", + "start": 921.14, + "end": 921.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 921.44, + "end": 921.64, + "probability": 0.99267578125 + }, + { + "word": " them,", + "start": 921.64, + "end": 921.72, + "probability": 1.0 + }, + { + "word": " make", + "start": 921.78, + "end": 921.88, + "probability": 0.98681640625 + }, + { + "word": " $15", + "start": 921.88, + "end": 922.28, + "probability": 0.99072265625 + }, + { + "word": " million", + "start": 922.28, + "end": 922.6, + "probability": 0.77685546875 + }, + { + "word": " of", + "start": 922.6, + "end": 922.96, + "probability": 1.0 + }, + { + "word": " them.", + "start": 922.96, + "end": 923.22, + "probability": 1.0 + } + ] + }, + { + "id": 418, + "text": "And let everybody buy one if they want.", + "start": 923.5, + "end": 924.98, + "words": [ + { + "word": " And", + "start": 923.5, + "end": 923.82, + "probability": 0.99951171875 + }, + { + "word": " let", + "start": 923.82, + "end": 923.92, + "probability": 0.9951171875 + }, + { + "word": " everybody", + "start": 923.92, + "end": 924.16, + "probability": 1.0 + }, + { + "word": " buy", + "start": 924.16, + "end": 924.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 924.46, + "end": 924.62, + "probability": 0.916015625 + }, + { + "word": " if", + "start": 924.62, + "end": 924.7, + "probability": 0.98681640625 + }, + { + "word": " they", + "start": 924.7, + "end": 924.82, + "probability": 1.0 + }, + { + "word": " want.", + "start": 924.82, + "end": 924.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 419, + "text": "Just pay $400 for it.", + "start": 925.04, + "end": 926.3, + "words": [ + { + "word": " Just", + "start": 925.04, + "end": 925.18, + "probability": 0.9677734375 + }, + { + "word": " pay", + "start": 925.18, + "end": 925.36, + "probability": 0.8154296875 + }, + { + "word": " $400", + "start": 925.36, + "end": 925.92, + "probability": 0.99609375 + }, + { + "word": " for", + "start": 925.92, + "end": 926.22, + "probability": 0.65673828125 + }, + { + "word": " it.", + "start": 926.22, + "end": 926.3, + "probability": 0.2291259765625 + } + ] + }, + { + "id": 420, + "text": "", + "start": 926.32, + "end": 926.32, + "words": [] + }, + { + "id": 421, + "text": "", + "start": 926.32, + "end": 926.32, + "words": [] + }, + { + "id": 422, + "text": "No, no, no.", + "start": 926.34, + "end": 927.04, + "words": [ + { + "word": " No,", + "start": 926.34, + "end": 926.54, + "probability": 0.95458984375 + }, + { + "word": " no,", + "start": 926.68, + "end": 926.86, + "probability": 0.986328125 + }, + { + "word": " no.", + "start": 926.9, + "end": 927.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 423, + "text": "Because, first of all, it's...", + "start": 927.14, + "end": 928.3, + "words": [ + { + "word": " Because,", + "start": 927.14, + "end": 927.34, + "probability": 0.93212890625 + }, + { + "word": " first", + "start": 927.38, + "end": 927.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 927.58, + "end": 927.72, + "probability": 1.0 + }, + { + "word": " all,", + "start": 927.72, + "end": 927.82, + "probability": 1.0 + }, + { + "word": " it's...", + "start": 927.86, + "end": 928.3, + "probability": 0.6533203125 + } + ] + }, + { + "id": 424, + "text": "No.", + "start": 928.7199999999999, + "end": 929.04, + "words": [ + { + "word": " No.", + "start": 928.7199999999999, + "end": 929.04, + "probability": 0.99609375 + } + ] + }, + { + "id": 425, + "text": "No?", + "start": 929.18, + "end": 929.38, + "words": [ + { + "word": " No?", + "start": 929.18, + "end": 929.38, + "probability": 0.9921875 + } + ] + }, + { + "id": 426, + "text": "No, it's not going to work that way.", + "start": 929.48, + "end": 930.56, + "words": [ + { + "word": " No,", + "start": 929.48, + "end": 929.76, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 929.78, + "end": 929.94, + "probability": 1.0 + }, + { + "word": " not", + "start": 929.94, + "end": 930.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 930.0, + "end": 930.12, + "probability": 0.96484375 + }, + { + "word": " to", + "start": 930.12, + "end": 930.2, + "probability": 1.0 + }, + { + "word": " work", + "start": 930.2, + "end": 930.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 930.28, + "end": 930.4, + "probability": 1.0 + }, + { + "word": " way.", + "start": 930.4, + "end": 930.56, + "probability": 1.0 + } + ] + }, + { + "id": 427, + "text": "Why?", + "start": 930.6, + "end": 930.72, + "words": [ + { + "word": " Why?", + "start": 930.6, + "end": 930.72, + "probability": 0.98974609375 + } + ] + }, + { + "id": 428, + "text": "You got to think about it.", + "start": 931.22, + "end": 932.2, + "words": [ + { + "word": " You", + "start": 931.22, + "end": 931.54, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 931.54, + "end": 931.66, + "probability": 0.11077880859375 + }, + { + "word": " to", + "start": 931.66, + "end": 931.76, + "probability": 1.0 + }, + { + "word": " think", + "start": 931.76, + "end": 931.92, + "probability": 1.0 + }, + { + "word": " about", + "start": 931.92, + "end": 932.12, + "probability": 1.0 + }, + { + "word": " it.", + "start": 932.12, + "end": 932.2, + "probability": 0.94873046875 + } + ] + }, + { + "id": 429, + "text": "They're trying to raise this money for a charity.", + "start": 932.32, + "end": 933.82, + "words": [ + { + "word": " They're", + "start": 932.32, + "end": 932.54, + "probability": 1.0 + }, + { + "word": " trying", + "start": 932.54, + "end": 932.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 932.76, + "end": 932.86, + "probability": 1.0 + }, + { + "word": " raise", + "start": 932.86, + "end": 933.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 933.0, + "end": 933.14, + "probability": 0.9990234375 + }, + { + "word": " money", + "start": 933.14, + "end": 933.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 933.3, + "end": 933.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 933.48, + "end": 933.56, + "probability": 0.65478515625 + }, + { + "word": " charity.", + "start": 933.56, + "end": 933.82, + "probability": 1.0 + } + ] + }, + { + "id": 430, + "text": "Right.", + "start": 933.94, + "end": 934.2, + "words": [ + { + "word": " Right.", + "start": 933.94, + "end": 934.2, + "probability": 0.98388671875 + } + ] + }, + { + "id": 431, + "text": "So, they're doing that on a limited basis.", + "start": 934.26, + "end": 935.64, + "words": [ + { + "word": " So,", + "start": 934.26, + "end": 934.5, + "probability": 0.9296875 + }, + { + "word": " they're", + "start": 934.6, + "end": 934.72, + "probability": 1.0 + }, + { + "word": " doing", + "start": 934.72, + "end": 934.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 934.84, + "end": 935.0, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 935.0, + "end": 935.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 935.08, + "end": 935.14, + "probability": 1.0 + }, + { + "word": " limited", + "start": 935.14, + "end": 935.4, + "probability": 1.0 + }, + { + "word": " basis.", + "start": 935.4, + "end": 935.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 432, + "text": "The opening bid for the shoes is pretty low.", + "start": 937.2799999999999, + "end": 939.44, + "words": [ + { + "word": " The", + "start": 937.2799999999999, + "end": 937.5999999999999, + "probability": 0.99951171875 + }, + { + "word": " opening", + "start": 937.5999999999999, + "end": 937.92, + "probability": 0.99951171875 + }, + { + "word": " bid", + "start": 937.92, + "end": 938.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 938.18, + "end": 938.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 938.38, + "end": 938.46, + "probability": 0.99951171875 + }, + { + "word": " shoes", + "start": 938.46, + "end": 938.64, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 938.64, + "end": 938.88, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 938.88, + "end": 939.12, + "probability": 1.0 + }, + { + "word": " low.", + "start": 939.12, + "end": 939.44, + "probability": 1.0 + } + ] + }, + { + "id": 433, + "text": "Right?", + "start": 940.02, + "end": 940.34, + "words": [ + { + "word": " Right?", + "start": 940.02, + "end": 940.34, + "probability": 0.84912109375 + } + ] + }, + { + "id": 434, + "text": "Yeah, but what is going to...", + "start": 940.44, + "end": 941.52, + "words": [ + { + "word": " Yeah,", + "start": 940.44, + "end": 940.7, + "probability": 0.96923828125 + }, + { + "word": " but", + "start": 940.78, + "end": 940.96, + "probability": 1.0 + }, + { + "word": " what", + "start": 940.96, + "end": 941.28, + "probability": 0.37109375 + }, + { + "word": " is", + "start": 941.28, + "end": 941.36, + "probability": 0.55859375 + }, + { + "word": " going", + "start": 941.36, + "end": 941.46, + "probability": 0.337890625 + }, + { + "word": " to...", + "start": 941.46, + "end": 941.52, + "probability": 0.9462890625 + } + ] + }, + { + "id": 435, + "text": "And they're saying that they're going to sell nearly all of them on eBay.", + "start": 941.52, + "end": 944.06, + "words": [ + { + "word": " And", + "start": 941.52, + "end": 941.68, + "probability": 0.953125 + }, + { + "word": " they're", + "start": 941.68, + "end": 941.76, + "probability": 0.99169921875 + }, + { + "word": " saying", + "start": 941.76, + "end": 941.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 941.98, + "end": 942.2, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 942.2, + "end": 942.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 942.36, + "end": 942.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 942.4, + "end": 942.46, + "probability": 1.0 + }, + { + "word": " sell", + "start": 942.46, + "end": 942.68, + "probability": 1.0 + }, + { + "word": " nearly", + "start": 942.68, + "end": 942.96, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 942.96, + "end": 943.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 943.32, + "end": 943.48, + "probability": 1.0 + }, + { + "word": " them", + "start": 943.48, + "end": 943.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 943.64, + "end": 943.78, + "probability": 1.0 + }, + { + "word": " eBay.", + "start": 943.78, + "end": 944.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 436, + "text": "Right.", + "start": 944.4, + "end": 944.72, + "words": [ + { + "word": " Right.", + "start": 944.4, + "end": 944.72, + "probability": 0.99658203125 + } + ] + }, + { + "id": 437, + "text": "With all of the net proceeds going to the foundation for Michael J. Fox.", + "start": 944.76, + "end": 949.58, + "words": [ + { + "word": " With", + "start": 944.76, + "end": 944.94, + "probability": 0.79638671875 + }, + { + "word": " all", + "start": 944.94, + "end": 944.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 944.94, + "end": 944.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 944.98, + "end": 945.14, + "probability": 1.0 + }, + { + "word": " net", + "start": 945.14, + "end": 945.96, + "probability": 0.9970703125 + }, + { + "word": " proceeds", + "start": 945.96, + "end": 946.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 946.36, + "end": 947.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 947.46, + "end": 947.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 947.82, + "end": 948.46, + "probability": 0.99951171875 + }, + { + "word": " foundation", + "start": 948.46, + "end": 948.94, + "probability": 0.9892578125 + }, + { + "word": " for", + "start": 948.94, + "end": 949.2, + "probability": 0.92138671875 + }, + { + "word": " Michael", + "start": 949.2, + "end": 949.4, + "probability": 0.9892578125 + }, + { + "word": " J.", + "start": 949.4, + "end": 949.54, + "probability": 0.5185546875 + }, + { + "word": " Fox.", + "start": 949.58, + "end": 949.58, + "probability": 0.9931640625 + } + ] + }, + { + "id": 438, + "text": "I guarantee there won't be none sold under $20,000.", + "start": 949.58, + "end": 951.84, + "words": [ + { + "word": " I", + "start": 949.58, + "end": 949.76, + "probability": 0.9853515625 + }, + { + "word": " guarantee", + "start": 949.76, + "end": 950.12, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 950.12, + "end": 950.3, + "probability": 0.358154296875 + }, + { + "word": " won't", + "start": 950.3, + "end": 950.48, + "probability": 0.986328125 + }, + { + "word": " be", + "start": 950.48, + "end": 950.62, + "probability": 1.0 + }, + { + "word": " none", + "start": 950.62, + "end": 950.82, + "probability": 0.9990234375 + }, + { + "word": " sold", + "start": 950.82, + "end": 951.08, + "probability": 1.0 + }, + { + "word": " under", + "start": 951.08, + "end": 951.28, + "probability": 1.0 + }, + { + "word": " $20", + "start": 951.28, + "end": 951.56, + "probability": 0.982421875 + }, + { + "word": ",000.", + "start": 951.56, + "end": 951.84, + "probability": 1.0 + } + ] + }, + { + "id": 439, + "text": "I don't know.", + "start": 952.56, + "end": 953.14, + "words": [ + { + "word": " I", + "start": 952.56, + "end": 952.88, + "probability": 1.0 + }, + { + "word": " don't", + "start": 952.88, + "end": 953.04, + "probability": 1.0 + }, + { + "word": " know.", + "start": 953.04, + "end": 953.14, + "probability": 1.0 + } + ] + }, + { + "id": 440, + "text": "I don't see it.", + "start": 953.24, + "end": 954.64, + "words": [ + { + "word": " I", + "start": 953.24, + "end": 953.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 953.44, + "end": 954.3, + "probability": 1.0 + }, + { + "word": " see", + "start": 954.3, + "end": 954.36, + "probability": 0.9912109375 + }, + { + "word": " it.", + "start": 954.36, + "end": 954.64, + "probability": 1.0 + } + ] + }, + { + "id": 441, + "text": "I don't see it.", + "start": 954.66, + "end": 955.34, + "words": [ + { + "word": " I", + "start": 954.66, + "end": 954.82, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 954.82, + "end": 955.04, + "probability": 0.99658203125 + }, + { + "word": " see", + "start": 955.04, + "end": 955.24, + "probability": 1.0 + }, + { + "word": " it.", + "start": 955.24, + "end": 955.34, + "probability": 1.0 + } + ] + }, + { + "id": 442, + "text": "I mean, you get all these diamonds.", + "start": 955.38, + "end": 956.3, + "words": [ + { + "word": " I", + "start": 955.38, + "end": 955.42, + "probability": 0.97705078125 + }, + { + "word": " mean,", + "start": 955.42, + "end": 955.46, + "probability": 0.97314453125 + }, + { + "word": " you", + "start": 955.5, + "end": 955.58, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 955.58, + "end": 955.66, + "probability": 0.60302734375 + }, + { + "word": " all", + "start": 955.66, + "end": 955.8, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 955.8, + "end": 956.02, + "probability": 0.97119140625 + }, + { + "word": " diamonds.", + "start": 956.02, + "end": 956.3, + "probability": 0.394287109375 + } + ] + }, + { + "id": 443, + "text": "I heard people who have too much money.", + "start": 956.34, + "end": 958.28, + "words": [ + { + "word": " I", + "start": 956.34, + "end": 956.34, + "probability": 0.14892578125 + }, + { + "word": " heard", + "start": 956.34, + "end": 956.52, + "probability": 0.50341796875 + }, + { + "word": " people", + "start": 956.52, + "end": 957.16, + "probability": 0.99365234375 + }, + { + "word": " who", + "start": 957.16, + "end": 957.4, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 957.4, + "end": 957.64, + "probability": 1.0 + }, + { + "word": " too", + "start": 957.64, + "end": 957.86, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 957.86, + "end": 958.04, + "probability": 1.0 + }, + { + "word": " money.", + "start": 958.04, + "end": 958.28, + "probability": 1.0 + } + ] + }, + { + "id": 444, + "text": "You can give me the hoverboard, and then we're talking.", + "start": 958.34, + "end": 960.46, + "words": [ + { + "word": " You", + "start": 958.34, + "end": 958.44, + "probability": 0.677734375 + }, + { + "word": " can", + "start": 958.44, + "end": 958.48, + "probability": 0.63720703125 + }, + { + "word": " give", + "start": 958.48, + "end": 958.68, + "probability": 0.96875 + }, + { + "word": " me", + "start": 958.68, + "end": 958.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 958.88, + "end": 959.0, + "probability": 0.99853515625 + }, + { + "word": " hoverboard,", + "start": 959.0, + "end": 959.5, + "probability": 0.9716796875 + }, + { + "word": " and", + "start": 959.66, + "end": 959.86, + "probability": 1.0 + }, + { + "word": " then", + "start": 959.86, + "end": 960.02, + "probability": 1.0 + }, + { + "word": " we're", + "start": 960.02, + "end": 960.18, + "probability": 0.9970703125 + }, + { + "word": " talking.", + "start": 960.18, + "end": 960.46, + "probability": 1.0 + } + ] + }, + { + "id": 445, + "text": "Oh, I'm in.", + "start": 960.6, + "end": 960.94, + "words": [ + { + "word": " Oh,", + "start": 960.6, + "end": 960.68, + "probability": 0.97802734375 + }, + { + "word": " I'm", + "start": 960.68, + "end": 960.84, + "probability": 0.9990234375 + }, + { + "word": " in.", + "start": 960.84, + "end": 960.94, + "probability": 1.0 + } + ] + }, + { + "id": 446, + "text": "I want the hoverboard.", + "start": 961.04, + "end": 962.04, + "words": [ + { + "word": " I", + "start": 961.04, + "end": 961.22, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 961.22, + "end": 961.38, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 961.38, + "end": 961.64, + "probability": 1.0 + }, + { + "word": " hoverboard.", + "start": 961.64, + "end": 962.04, + "probability": 1.0 + } + ] + }, + { + "id": 447, + "text": "I'm in on that one.", + "start": 962.08, + "end": 962.9, + "words": [ + { + "word": " I'm", + "start": 962.08, + "end": 962.3, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 962.3, + "end": 962.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 962.42, + "end": 962.58, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 962.58, + "end": 962.72, + "probability": 1.0 + }, + { + "word": " one.", + "start": 962.72, + "end": 962.9, + "probability": 1.0 + } + ] + }, + { + "id": 448, + "text": "I've been waiting years for that.", + "start": 963.02, + "end": 964.1, + "words": [ + { + "word": " I've", + "start": 963.02, + "end": 963.32, + "probability": 1.0 + }, + { + "word": " been", + "start": 963.32, + "end": 963.38, + "probability": 1.0 + }, + { + "word": " waiting", + "start": 963.38, + "end": 963.58, + "probability": 1.0 + }, + { + "word": " years", + "start": 963.58, + "end": 963.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 963.78, + "end": 963.92, + "probability": 1.0 + }, + { + "word": " that.", + "start": 963.92, + "end": 964.1, + "probability": 1.0 + } + ] + }, + { + "id": 449, + "text": "Mattel still says they're not releasing it.", + "start": 964.26, + "end": 966.0, + "words": [ + { + "word": " Mattel", + "start": 964.26, + "end": 964.58, + "probability": 0.9970703125 + }, + { + "word": " still", + "start": 964.58, + "end": 964.78, + "probability": 0.99951171875 + }, + { + "word": " says", + "start": 964.78, + "end": 965.02, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 965.02, + "end": 965.28, + "probability": 0.98681640625 + }, + { + "word": " not", + "start": 965.28, + "end": 965.52, + "probability": 0.99951171875 + }, + { + "word": " releasing", + "start": 965.52, + "end": 965.78, + "probability": 1.0 + }, + { + "word": " it.", + "start": 965.78, + "end": 966.0, + "probability": 1.0 + } + ] + }, + { + "id": 450, + "text": "Bunch of jerks.", + "start": 967.2, + "end": 968.06, + "words": [ + { + "word": " Bunch", + "start": 967.2, + "end": 967.56, + "probability": 0.5556640625 + }, + { + "word": " of", + "start": 967.56, + "end": 967.56, + "probability": 0.99951171875 + }, + { + "word": " jerks.", + "start": 967.56, + "end": 968.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 451, + "text": "That's what I'm telling you.", + "start": 968.9, + "end": 970.2, + "words": [ + { + "word": " That's", + "start": 968.9, + "end": 969.26, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 969.26, + "end": 969.26, + "probability": 0.97265625 + }, + { + "word": " I'm", + "start": 969.26, + "end": 969.44, + "probability": 1.0 + }, + { + "word": " telling", + "start": 969.44, + "end": 969.62, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 969.62, + "end": 970.2, + "probability": 1.0 + } + ] + }, + { + "id": 452, + "text": "They're just jerks.", + "start": 970.22, + "end": 970.88, + "words": [ + { + "word": " They're", + "start": 970.22, + "end": 970.4, + "probability": 0.927734375 + }, + { + "word": " just", + "start": 970.4, + "end": 970.44, + "probability": 0.99951171875 + }, + { + "word": " jerks.", + "start": 970.44, + "end": 970.88, + "probability": 1.0 + } + ] + }, + { + "id": 453, + "text": "That's all they are.", + "start": 970.88, + "end": 971.4, + "words": [ + { + "word": " That's", + "start": 970.88, + "end": 971.04, + "probability": 0.9775390625 + }, + { + "word": " all", + "start": 971.04, + "end": 971.14, + "probability": 1.0 + }, + { + "word": " they", + "start": 971.14, + "end": 971.3, + "probability": 0.80859375 + }, + { + "word": " are.", + "start": 971.3, + "end": 971.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 454, + "text": "If you'd like to be part of the show, 751-1041.", + "start": 971.58, + "end": 973.96, + "words": [ + { + "word": " If", + "start": 971.58, + "end": 971.94, + "probability": 0.88671875 + }, + { + "word": " you'd", + "start": 971.94, + "end": 972.06, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 972.06, + "end": 972.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 972.22, + "end": 972.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 972.22, + "end": 972.28, + "probability": 1.0 + }, + { + "word": " part", + "start": 972.28, + "end": 972.42, + "probability": 0.89013671875 + }, + { + "word": " of", + "start": 972.42, + "end": 972.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 972.5, + "end": 972.56, + "probability": 1.0 + }, + { + "word": " show,", + "start": 972.56, + "end": 972.7, + "probability": 1.0 + }, + { + "word": " 751", + "start": 972.78, + "end": 973.4, + "probability": 0.9921875 + }, + { + "word": "-1041.", + "start": 973.4, + "end": 973.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 455, + "text": "Let's go ahead and talk to James.", + "start": 974.9, + "end": 976.66, + "words": [ + { + "word": " Let's", + "start": 974.9, + "end": 975.26, + "probability": 1.0 + }, + { + "word": " go", + "start": 975.26, + "end": 975.48, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 975.48, + "end": 975.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 975.66, + "end": 975.86, + "probability": 1.0 + }, + { + "word": " talk", + "start": 975.86, + "end": 976.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 976.18, + "end": 976.36, + "probability": 1.0 + }, + { + "word": " James.", + "start": 976.36, + "end": 976.66, + "probability": 0.974609375 + } + ] + }, + { + "id": 456, + "text": "Hey, James, how are you doing?", + "start": 976.96, + "end": 977.58, + "words": [ + { + "word": " Hey,", + "start": 976.96, + "end": 977.1, + "probability": 0.99755859375 + }, + { + "word": " James,", + "start": 977.12, + "end": 977.26, + "probability": 1.0 + }, + { + "word": " how", + "start": 977.34, + "end": 977.42, + "probability": 1.0 + }, + { + "word": " are", + "start": 977.42, + "end": 977.48, + "probability": 0.54248046875 + }, + { + "word": " you", + "start": 977.48, + "end": 977.5, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 977.5, + "end": 977.58, + "probability": 1.0 + } + ] + }, + { + "id": 457, + "text": "I'm good.", + "start": 978.14, + "end": 978.54, + "words": [ + { + "word": " I'm", + "start": 978.14, + "end": 978.5, + "probability": 0.84423828125 + }, + { + "word": " good.", + "start": 978.5, + "end": 978.54, + "probability": 0.97607421875 + } + ] + }, + { + "id": 458, + "text": "How are you?", + "start": 978.68, + "end": 979.0, + "words": [ + { + "word": " How", + "start": 978.68, + "end": 978.84, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 978.84, + "end": 978.88, + "probability": 1.0 + }, + { + "word": " you?", + "start": 978.88, + "end": 979.0, + "probability": 1.0 + } + ] + }, + { + "id": 459, + "text": "I'm doing all right.", + "start": 979.16, + "end": 980.24, + "words": [ + { + "word": " I'm", + "start": 979.16, + "end": 979.52, + "probability": 1.0 + }, + { + "word": " doing", + "start": 979.52, + "end": 979.86, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 979.86, + "end": 980.06, + "probability": 0.982421875 + }, + { + "word": " right.", + "start": 980.06, + "end": 980.24, + "probability": 1.0 + } + ] + }, + { + "id": 460, + "text": "I still want the hoverboard.", + "start": 980.34, + "end": 981.56, + "words": [ + { + "word": " I", + "start": 980.34, + "end": 980.58, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 980.58, + "end": 980.94, + "probability": 0.99755859375 + }, + { + "word": " want", + "start": 980.94, + "end": 981.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 981.1, + "end": 981.2, + "probability": 1.0 + }, + { + "word": " hoverboard.", + "start": 981.2, + "end": 981.56, + "probability": 1.0 + } + ] + }, + { + "id": 461, + "text": "I'm actually, now that I think about it, I'm really upset.", + "start": 982.6, + "end": 986.22, + "words": [ + { + "word": " I'm", + "start": 982.6, + "end": 982.96, + "probability": 0.951171875 + }, + { + "word": " actually,", + "start": 982.96, + "end": 983.26, + "probability": 0.849609375 + }, + { + "word": " now", + "start": 983.84, + "end": 984.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 984.02, + "end": 984.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 984.18, + "end": 984.3, + "probability": 1.0 + }, + { + "word": " think", + "start": 984.3, + "end": 984.5, + "probability": 1.0 + }, + { + "word": " about", + "start": 984.5, + "end": 984.74, + "probability": 1.0 + }, + { + "word": " it,", + "start": 984.74, + "end": 984.92, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 984.96, + "end": 985.16, + "probability": 1.0 + }, + { + "word": " really", + "start": 985.16, + "end": 985.86, + "probability": 0.99951171875 + }, + { + "word": " upset.", + "start": 985.86, + "end": 986.22, + "probability": 0.9951171875 + } + ] + }, + { + "id": 462, + "text": "That back to the future, I don't have a DeLorean that flies, and I don't have a hoverboard at this point.", + "start": 986.34, + "end": 991.12, + "words": [ + { + "word": " That", + "start": 986.34, + "end": 986.58, + "probability": 0.060150146484375 + }, + { + "word": " back", + "start": 986.58, + "end": 987.46, + "probability": 0.7001953125 + }, + { + "word": " to", + "start": 987.46, + "end": 987.68, + "probability": 0.83837890625 + }, + { + "word": " the", + "start": 987.68, + "end": 987.72, + "probability": 0.9951171875 + }, + { + "word": " future,", + "start": 987.72, + "end": 988.02, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 988.16, + "end": 988.38, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 988.38, + "end": 988.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 988.56, + "end": 988.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 988.68, + "end": 988.8, + "probability": 1.0 + }, + { + "word": " DeLorean", + "start": 988.8, + "end": 989.16, + "probability": 0.98779296875 + }, + { + "word": " that", + "start": 989.16, + "end": 989.38, + "probability": 0.9990234375 + }, + { + "word": " flies,", + "start": 989.38, + "end": 989.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 989.8, + "end": 989.98, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 989.98, + "end": 990.08, + "probability": 1.0 + }, + { + "word": " don't", + "start": 990.08, + "end": 990.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 990.18, + "end": 990.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 990.26, + "end": 990.36, + "probability": 1.0 + }, + { + "word": " hoverboard", + "start": 990.36, + "end": 990.66, + "probability": 0.9873046875 + }, + { + "word": " at", + "start": 990.66, + "end": 990.82, + "probability": 1.0 + }, + { + "word": " this", + "start": 990.82, + "end": 990.92, + "probability": 1.0 + }, + { + "word": " point.", + "start": 990.92, + "end": 991.12, + "probability": 1.0 + } + ] + }, + { + "id": 463, + "text": "Well, it's not 2015 yet.", + "start": 991.16, + "end": 992.6, + "words": [ + { + "word": " Well,", + "start": 991.16, + "end": 991.26, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 991.28, + "end": 991.42, + "probability": 0.99658203125 + }, + { + "word": " not", + "start": 991.42, + "end": 991.5, + "probability": 0.99951171875 + }, + { + "word": " 2015", + "start": 991.5, + "end": 992.06, + "probability": 0.9130859375 + }, + { + "word": " yet.", + "start": 992.06, + "end": 992.6, + "probability": 1.0 + } + ] + }, + { + "id": 464, + "text": "Do you think they're coming with that in four years in this economy?", + "start": 993.44, + "end": 996.48, + "words": [ + { + "word": " Do", + "start": 993.44, + "end": 993.84, + "probability": 0.638671875 + }, + { + "word": " you", + "start": 993.84, + "end": 994.14, + "probability": 1.0 + }, + { + "word": " think", + "start": 994.14, + "end": 994.28, + "probability": 1.0 + }, + { + "word": " they're", + "start": 994.28, + "end": 994.42, + "probability": 0.970703125 + }, + { + "word": " coming", + "start": 994.42, + "end": 994.58, + "probability": 0.9150390625 + }, + { + "word": " with", + "start": 994.58, + "end": 994.7, + "probability": 0.52197265625 + }, + { + "word": " that", + "start": 994.7, + "end": 994.8, + "probability": 0.99609375 + }, + { + "word": " in", + "start": 994.8, + "end": 994.84, + "probability": 0.9990234375 + }, + { + "word": " four", + "start": 994.84, + "end": 995.1, + "probability": 0.9931640625 + }, + { + "word": " years", + "start": 995.1, + "end": 995.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 995.42, + "end": 995.82, + "probability": 0.89111328125 + }, + { + "word": " this", + "start": 995.82, + "end": 996.08, + "probability": 1.0 + }, + { + "word": " economy?", + "start": 996.08, + "end": 996.48, + "probability": 1.0 + } + ] + }, + { + "id": 465, + "text": "Yeah, I bet you can have one.", + "start": 996.96, + "end": 998.2, + "words": [ + { + "word": " Yeah,", + "start": 996.96, + "end": 997.36, + "probability": 0.77001953125 + }, + { + "word": " I", + "start": 997.42, + "end": 997.5, + "probability": 0.9873046875 + }, + { + "word": " bet", + "start": 997.5, + "end": 997.52, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 997.52, + "end": 997.7, + "probability": 1.0 + }, + { + "word": " can", + "start": 997.7, + "end": 997.84, + "probability": 1.0 + }, + { + "word": " have", + "start": 997.84, + "end": 998.0, + "probability": 1.0 + }, + { + "word": " one.", + "start": 998.0, + "end": 998.2, + "probability": 1.0 + } + ] + }, + { + "id": 466, + "text": "So what's going on, James?", + "start": 998.66, + "end": 999.84, + "words": [ + { + "word": " So", + "start": 998.66, + "end": 999.06, + "probability": 0.7197265625 + }, + { + "word": " what's", + "start": 999.06, + "end": 999.42, + "probability": 0.91552734375 + }, + { + "word": " going", + "start": 999.42, + "end": 999.54, + "probability": 1.0 + }, + { + "word": " on,", + "start": 999.54, + "end": 999.68, + "probability": 1.0 + }, + { + "word": " James?", + "start": 999.72, + "end": 999.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 467, + "text": "I have kind of an old computer that I'm kind of trying to still keep running.", + "start": 1000.6, + "end": 1005.2, + "words": [ + { + "word": " I", + "start": 1000.6, + "end": 1001.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 1001.0, + "end": 1001.4, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1001.4, + "end": 1002.2, + "probability": 0.974609375 + }, + { + "word": " of", + "start": 1002.2, + "end": 1002.48, + "probability": 1.0 + }, + { + "word": " an", + "start": 1002.48, + "end": 1002.54, + "probability": 1.0 + }, + { + "word": " old", + "start": 1002.54, + "end": 1002.76, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1002.76, + "end": 1003.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 1003.1, + "end": 1003.36, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1003.36, + "end": 1003.54, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1003.54, + "end": 1003.66, + "probability": 0.984375 + }, + { + "word": " of", + "start": 1003.66, + "end": 1003.82, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1003.82, + "end": 1004.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1004.32, + "end": 1004.48, + "probability": 1.0 + }, + { + "word": " still", + "start": 1004.48, + "end": 1004.64, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1004.64, + "end": 1004.86, + "probability": 1.0 + }, + { + "word": " running.", + "start": 1004.86, + "end": 1005.2, + "probability": 1.0 + } + ] + }, + { + "id": 468, + "text": "It's an older Dell.", + "start": 1005.6, + "end": 1006.6, + "words": [ + { + "word": " It's", + "start": 1005.6, + "end": 1006.0, + "probability": 1.0 + }, + { + "word": " an", + "start": 1006.0, + "end": 1006.04, + "probability": 0.98193359375 + }, + { + "word": " older", + "start": 1006.04, + "end": 1006.3, + "probability": 0.99951171875 + }, + { + "word": " Dell.", + "start": 1006.3, + "end": 1006.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 469, + "text": "It has Windows XP on it.", + "start": 1006.74, + "end": 1008.08, + "words": [ + { + "word": " It", + "start": 1006.74, + "end": 1006.82, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 1006.82, + "end": 1007.02, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1007.02, + "end": 1007.22, + "probability": 1.0 + }, + { + "word": " XP", + "start": 1007.22, + "end": 1007.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 1007.54, + "end": 1007.86, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1007.86, + "end": 1008.08, + "probability": 1.0 + } + ] + }, + { + "id": 470, + "text": "Okay.", + "start": 1008.14, + "end": 1008.42, + "words": [ + { + "word": " Okay.", + "start": 1008.14, + "end": 1008.42, + "probability": 0.76806640625 + } + ] + }, + { + "id": 471, + "text": "I'm talking like five years old, and it had like an 80 gig hard drive on it, which was completely full.", + "start": 1008.68, + "end": 1013.6, + "words": [ + { + "word": " I'm", + "start": 1008.68, + "end": 1009.08, + "probability": 0.84375 + }, + { + "word": " talking", + "start": 1009.08, + "end": 1009.24, + "probability": 1.0 + }, + { + "word": " like", + "start": 1009.24, + "end": 1009.4, + "probability": 0.978515625 + }, + { + "word": " five", + "start": 1009.4, + "end": 1009.6, + "probability": 0.99853515625 + }, + { + "word": " years", + "start": 1009.6, + "end": 1009.86, + "probability": 1.0 + }, + { + "word": " old,", + "start": 1009.86, + "end": 1010.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 1010.3, + "end": 1010.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 1010.46, + "end": 1010.66, + "probability": 1.0 + }, + { + "word": " had", + "start": 1010.66, + "end": 1010.8, + "probability": 1.0 + }, + { + "word": " like", + "start": 1010.8, + "end": 1010.98, + "probability": 0.994140625 + }, + { + "word": " an", + "start": 1010.98, + "end": 1011.1, + "probability": 0.9736328125 + }, + { + "word": " 80", + "start": 1011.1, + "end": 1011.26, + "probability": 0.998046875 + }, + { + "word": " gig", + "start": 1011.26, + "end": 1011.48, + "probability": 0.5849609375 + }, + { + "word": " hard", + "start": 1011.48, + "end": 1011.68, + "probability": 0.99267578125 + }, + { + "word": " drive", + "start": 1011.68, + "end": 1011.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 1011.92, + "end": 1012.12, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1012.12, + "end": 1012.32, + "probability": 1.0 + }, + { + "word": " which", + "start": 1012.36, + "end": 1012.48, + "probability": 1.0 + }, + { + "word": " was", + "start": 1012.48, + "end": 1012.68, + "probability": 1.0 + }, + { + "word": " completely", + "start": 1012.68, + "end": 1013.22, + "probability": 1.0 + }, + { + "word": " full.", + "start": 1013.22, + "end": 1013.6, + "probability": 1.0 + } + ] + }, + { + "id": 472, + "text": "Right.", + "start": 1013.78, + "end": 1014.18, + "words": [ + { + "word": " Right.", + "start": 1013.78, + "end": 1014.18, + "probability": 0.95361328125 + } + ] + }, + { + "id": 473, + "text": "So I had a friend of mine that's an IT guy.", + "start": 1014.22, + "end": 1016.32, + "words": [ + { + "word": " So", + "start": 1014.22, + "end": 1014.46, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 1014.46, + "end": 1014.84, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 1014.84, + "end": 1015.06, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1015.06, + "end": 1015.16, + "probability": 1.0 + }, + { + "word": " friend", + "start": 1015.16, + "end": 1015.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 1015.52, + "end": 1015.62, + "probability": 1.0 + }, + { + "word": " mine", + "start": 1015.62, + "end": 1015.78, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1015.78, + "end": 1015.98, + "probability": 0.9931640625 + }, + { + "word": " an", + "start": 1015.98, + "end": 1016.1, + "probability": 0.9267578125 + }, + { + "word": " IT", + "start": 1016.1, + "end": 1016.22, + "probability": 0.98779296875 + }, + { + "word": " guy.", + "start": 1016.22, + "end": 1016.32, + "probability": 0.2744140625 + } + ] + }, + { + "id": 474, + "text": "I bought a 500 gig hard drive, and he, I don't know if I'm using the right terms,", + "start": 1016.34, + "end": 1020.68, + "words": [ + { + "word": " I", + "start": 1016.34, + "end": 1016.52, + "probability": 0.0784912109375 + }, + { + "word": " bought", + "start": 1016.52, + "end": 1017.16, + "probability": 0.9462890625 + }, + { + "word": " a", + "start": 1017.16, + "end": 1017.42, + "probability": 0.99853515625 + }, + { + "word": " 500", + "start": 1017.42, + "end": 1018.14, + "probability": 0.99755859375 + }, + { + "word": " gig", + "start": 1018.14, + "end": 1018.38, + "probability": 0.196533203125 + }, + { + "word": " hard", + "start": 1018.38, + "end": 1018.64, + "probability": 0.99853515625 + }, + { + "word": " drive,", + "start": 1018.64, + "end": 1018.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 1019.0, + "end": 1019.1, + "probability": 0.99951171875 + }, + { + "word": " he,", + "start": 1019.1, + "end": 1019.22, + "probability": 0.91455078125 + }, + { + "word": " I", + "start": 1019.32, + "end": 1019.5, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1019.5, + "end": 1019.64, + "probability": 1.0 + }, + { + "word": " know", + "start": 1019.64, + "end": 1019.7, + "probability": 1.0 + }, + { + "word": " if", + "start": 1019.7, + "end": 1019.82, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1019.82, + "end": 1019.88, + "probability": 1.0 + }, + { + "word": " using", + "start": 1019.88, + "end": 1020.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1020.08, + "end": 1020.22, + "probability": 1.0 + }, + { + "word": " right", + "start": 1020.22, + "end": 1020.32, + "probability": 1.0 + }, + { + "word": " terms,", + "start": 1020.32, + "end": 1020.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 475, + "text": "he re-imaged basically my old hard drive onto the 500 gig.", + "start": 1020.88, + "end": 1024.88, + "words": [ + { + "word": " he", + "start": 1020.88, + "end": 1021.42, + "probability": 0.9990234375 + }, + { + "word": " re", + "start": 1021.42, + "end": 1021.72, + "probability": 0.99951171875 + }, + { + "word": "-imaged", + "start": 1021.72, + "end": 1022.22, + "probability": 0.9892578125 + }, + { + "word": " basically", + "start": 1022.22, + "end": 1022.54, + "probability": 0.84521484375 + }, + { + "word": " my", + "start": 1022.54, + "end": 1023.04, + "probability": 1.0 + }, + { + "word": " old", + "start": 1023.04, + "end": 1023.32, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1023.32, + "end": 1023.58, + "probability": 1.0 + }, + { + "word": " drive", + "start": 1023.58, + "end": 1023.82, + "probability": 1.0 + }, + { + "word": " onto", + "start": 1023.82, + "end": 1024.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1024.12, + "end": 1024.26, + "probability": 1.0 + }, + { + "word": " 500", + "start": 1024.26, + "end": 1024.58, + "probability": 1.0 + }, + { + "word": " gig.", + "start": 1024.58, + "end": 1024.88, + "probability": 0.9794921875 + } + ] + }, + { + "id": 476, + "text": "So he cloned it, right?", + "start": 1024.94, + "end": 1025.86, + "words": [ + { + "word": " So", + "start": 1024.94, + "end": 1025.04, + "probability": 0.99365234375 + }, + { + "word": " he", + "start": 1025.04, + "end": 1025.12, + "probability": 0.6748046875 + }, + { + "word": " cloned", + "start": 1025.12, + "end": 1025.46, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1025.46, + "end": 1025.62, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1025.68, + "end": 1025.86, + "probability": 1.0 + } + ] + }, + { + "id": 477, + "text": "Yeah, he cloned it.", + "start": 1026.36, + "end": 1027.02, + "words": [ + { + "word": " Yeah,", + "start": 1026.36, + "end": 1026.6, + "probability": 0.9248046875 + }, + { + "word": " he", + "start": 1026.6, + "end": 1026.72, + "probability": 0.99169921875 + }, + { + "word": " cloned", + "start": 1026.72, + "end": 1026.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1026.88, + "end": 1027.02, + "probability": 1.0 + } + ] + }, + { + "id": 478, + "text": "That's it.", + "start": 1027.04, + "end": 1027.32, + "words": [ + { + "word": " That's", + "start": 1027.04, + "end": 1027.24, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1027.24, + "end": 1027.32, + "probability": 1.0 + } + ] + }, + { + "id": 479, + "text": "Put it back in.", + "start": 1027.8, + "end": 1028.84, + "words": [ + { + "word": " Put", + "start": 1027.8, + "end": 1028.2, + "probability": 0.96923828125 + }, + { + "word": " it", + "start": 1028.2, + "end": 1028.36, + "probability": 1.0 + }, + { + "word": " back", + "start": 1028.36, + "end": 1028.52, + "probability": 1.0 + }, + { + "word": " in.", + "start": 1028.52, + "end": 1028.84, + "probability": 1.0 + } + ] + }, + { + "id": 480, + "text": "It worked absolutely perfect for like a month.", + "start": 1028.94, + "end": 1031.62, + "words": [ + { + "word": " It", + "start": 1028.94, + "end": 1029.16, + "probability": 0.99951171875 + }, + { + "word": " worked", + "start": 1029.16, + "end": 1029.52, + "probability": 1.0 + }, + { + "word": " absolutely", + "start": 1029.52, + "end": 1030.12, + "probability": 1.0 + }, + { + "word": " perfect", + "start": 1030.12, + "end": 1030.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 1030.7, + "end": 1031.02, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1031.02, + "end": 1031.2, + "probability": 0.9697265625 + }, + { + "word": " a", + "start": 1031.2, + "end": 1031.32, + "probability": 1.0 + }, + { + "word": " month.", + "start": 1031.32, + "end": 1031.62, + "probability": 1.0 + } + ] + }, + { + "id": 481, + "text": "Right.", + "start": 1031.9, + "end": 1032.3, + "words": [ + { + "word": " Right.", + "start": 1031.9, + "end": 1032.3, + "probability": 0.96826171875 + } + ] + }, + { + "id": 482, + "text": "And then all of a sudden, super slow.", + "start": 1032.4, + "end": 1035.36, + "words": [ + { + "word": " And", + "start": 1032.4, + "end": 1032.62, + "probability": 0.99755859375 + }, + { + "word": " then", + "start": 1032.62, + "end": 1032.82, + "probability": 1.0 + }, + { + "word": " all", + "start": 1032.82, + "end": 1033.28, + "probability": 0.96826171875 + }, + { + "word": " of", + "start": 1033.28, + "end": 1033.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 1033.4, + "end": 1033.44, + "probability": 1.0 + }, + { + "word": " sudden,", + "start": 1033.44, + "end": 1033.86, + "probability": 1.0 + }, + { + "word": " super", + "start": 1033.88, + "end": 1034.98, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1034.98, + "end": 1035.36, + "probability": 1.0 + } + ] + }, + { + "id": 483, + "text": "I'm talking like the mouse doesn't even move without jumping.", + "start": 1035.8, + "end": 1038.42, + "words": [ + { + "word": " I'm", + "start": 1035.8, + "end": 1036.2, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 1036.2, + "end": 1036.4, + "probability": 1.0 + }, + { + "word": " like", + "start": 1036.4, + "end": 1036.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1036.66, + "end": 1036.8, + "probability": 1.0 + }, + { + "word": " mouse", + "start": 1036.8, + "end": 1037.08, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1037.08, + "end": 1037.42, + "probability": 1.0 + }, + { + "word": " even", + "start": 1037.42, + "end": 1037.56, + "probability": 1.0 + }, + { + "word": " move", + "start": 1037.56, + "end": 1037.82, + "probability": 1.0 + }, + { + "word": " without", + "start": 1037.82, + "end": 1038.06, + "probability": 0.99951171875 + }, + { + "word": " jumping.", + "start": 1038.06, + "end": 1038.42, + "probability": 1.0 + } + ] + }, + { + "id": 484, + "text": "And I got it to the point where I could, I don't know what the utility is called,", + "start": 1039.1, + "end": 1042.82, + "words": [ + { + "word": " And", + "start": 1039.1, + "end": 1039.5, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1039.5, + "end": 1039.76, + "probability": 1.0 + }, + { + "word": " got", + "start": 1039.76, + "end": 1039.98, + "probability": 1.0 + }, + { + "word": " it", + "start": 1039.98, + "end": 1040.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1040.14, + "end": 1040.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 1040.28, + "end": 1040.36, + "probability": 1.0 + }, + { + "word": " point", + "start": 1040.36, + "end": 1040.62, + "probability": 1.0 + }, + { + "word": " where", + "start": 1040.62, + "end": 1040.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 1040.74, + "end": 1040.86, + "probability": 1.0 + }, + { + "word": " could,", + "start": 1040.86, + "end": 1041.02, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1041.14, + "end": 1041.48, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1041.48, + "end": 1041.6, + "probability": 1.0 + }, + { + "word": " know", + "start": 1041.6, + "end": 1041.7, + "probability": 1.0 + }, + { + "word": " what", + "start": 1041.7, + "end": 1041.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1041.84, + "end": 1042.02, + "probability": 1.0 + }, + { + "word": " utility", + "start": 1042.02, + "end": 1042.36, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1042.36, + "end": 1042.6, + "probability": 1.0 + }, + { + "word": " called,", + "start": 1042.6, + "end": 1042.82, + "probability": 1.0 + } + ] + }, + { + "id": 485, + "text": "but in control panel, you can look and see what the processor's doing.", + "start": 1042.88, + "end": 1046.02, + "words": [ + { + "word": " but", + "start": 1042.88, + "end": 1043.04, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 1043.04, + "end": 1043.24, + "probability": 0.9990234375 + }, + { + "word": " control", + "start": 1043.24, + "end": 1043.62, + "probability": 0.685546875 + }, + { + "word": " panel,", + "start": 1043.62, + "end": 1043.98, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1044.0, + "end": 1044.12, + "probability": 0.98974609375 + }, + { + "word": " can", + "start": 1044.12, + "end": 1044.24, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 1044.24, + "end": 1044.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 1044.42, + "end": 1044.54, + "probability": 1.0 + }, + { + "word": " see", + "start": 1044.54, + "end": 1044.76, + "probability": 1.0 + }, + { + "word": " what", + "start": 1044.76, + "end": 1044.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1044.98, + "end": 1045.18, + "probability": 1.0 + }, + { + "word": " processor's", + "start": 1045.18, + "end": 1045.84, + "probability": 0.82861328125 + }, + { + "word": " doing.", + "start": 1045.84, + "end": 1046.02, + "probability": 1.0 + } + ] + }, + { + "id": 486, + "text": "Right.", + "start": 1046.34, + "end": 1046.7, + "words": [ + { + "word": " Right.", + "start": 1046.34, + "end": 1046.7, + "probability": 0.372314453125 + } + ] + }, + { + "id": 487, + "text": "And the processor is at 100% all the time.", + "start": 1046.78, + "end": 1049.12, + "words": [ + { + "word": " And", + "start": 1046.78, + "end": 1046.86, + "probability": 0.9853515625 + }, + { + "word": " the", + "start": 1046.86, + "end": 1046.96, + "probability": 0.99853515625 + }, + { + "word": " processor", + "start": 1046.96, + "end": 1047.38, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1047.38, + "end": 1047.72, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1047.72, + "end": 1047.84, + "probability": 1.0 + }, + { + "word": " 100", + "start": 1047.84, + "end": 1048.12, + "probability": 0.99267578125 + }, + { + "word": "%", + "start": 1048.12, + "end": 1048.52, + "probability": 0.95703125 + }, + { + "word": " all", + "start": 1048.52, + "end": 1048.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1048.72, + "end": 1048.88, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1048.88, + "end": 1049.12, + "probability": 1.0 + } + ] + }, + { + "id": 488, + "text": "Okay.", + "start": 1049.46, + "end": 1049.84, + "words": [ + { + "word": " Okay.", + "start": 1049.46, + "end": 1049.84, + "probability": 0.95263671875 + } + ] + }, + { + "id": 489, + "text": "So you either have an infection or you have some type of software that's really, really unhappy.", + "start": 1049.88, + "end": 1055.58, + "words": [ + { + "word": " So", + "start": 1049.88, + "end": 1050.32, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 1050.32, + "end": 1050.68, + "probability": 0.77978515625 + }, + { + "word": " either", + "start": 1050.68, + "end": 1050.94, + "probability": 1.0 + }, + { + "word": " have", + "start": 1050.94, + "end": 1051.1, + "probability": 1.0 + }, + { + "word": " an", + "start": 1051.1, + "end": 1051.2, + "probability": 1.0 + }, + { + "word": " infection", + "start": 1051.2, + "end": 1051.42, + "probability": 1.0 + }, + { + "word": " or", + "start": 1051.42, + "end": 1052.78, + "probability": 0.87109375 + }, + { + "word": " you", + "start": 1052.78, + "end": 1053.12, + "probability": 1.0 + }, + { + "word": " have", + "start": 1053.12, + "end": 1053.3, + "probability": 1.0 + }, + { + "word": " some", + "start": 1053.3, + "end": 1053.48, + "probability": 1.0 + }, + { + "word": " type", + "start": 1053.48, + "end": 1053.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 1053.74, + "end": 1053.92, + "probability": 1.0 + }, + { + "word": " software", + "start": 1053.92, + "end": 1054.26, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1054.26, + "end": 1054.6, + "probability": 0.99951171875 + }, + { + "word": " really,", + "start": 1054.6, + "end": 1054.88, + "probability": 1.0 + }, + { + "word": " really", + "start": 1055.0, + "end": 1055.24, + "probability": 1.0 + }, + { + "word": " unhappy.", + "start": 1055.24, + "end": 1055.58, + "probability": 1.0 + } + ] + }, + { + "id": 490, + "text": "Well, you know, I ran my, I started it safe mode and ran my virus protector on it.", + "start": 1056.8, + "end": 1062.62, + "words": [ + { + "word": " Well,", + "start": 1056.8, + "end": 1057.28, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1057.52, + "end": 1057.6, + "probability": 0.97314453125 + }, + { + "word": " know,", + "start": 1057.6, + "end": 1057.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 1058.02, + "end": 1058.1, + "probability": 1.0 + }, + { + "word": " ran", + "start": 1058.1, + "end": 1058.34, + "probability": 0.568359375 + }, + { + "word": " my,", + "start": 1058.34, + "end": 1058.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 1058.82, + "end": 1059.72, + "probability": 0.8193359375 + }, + { + "word": " started", + "start": 1059.72, + "end": 1060.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 1060.46, + "end": 1060.6, + "probability": 0.360595703125 + }, + { + "word": " safe", + "start": 1060.6, + "end": 1060.78, + "probability": 0.32861328125 + }, + { + "word": " mode", + "start": 1060.78, + "end": 1061.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 1061.1, + "end": 1061.24, + "probability": 1.0 + }, + { + "word": " ran", + "start": 1061.24, + "end": 1061.36, + "probability": 1.0 + }, + { + "word": " my", + "start": 1061.36, + "end": 1061.58, + "probability": 1.0 + }, + { + "word": " virus", + "start": 1061.58, + "end": 1061.96, + "probability": 0.9970703125 + }, + { + "word": " protector", + "start": 1061.96, + "end": 1062.3, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1062.3, + "end": 1062.52, + "probability": 0.99169921875 + }, + { + "word": " it.", + "start": 1062.52, + "end": 1062.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 491, + "text": "It didn't come up anything.", + "start": 1062.66, + "end": 1063.28, + "words": [ + { + "word": " It", + "start": 1062.66, + "end": 1062.76, + "probability": 0.9296875 + }, + { + "word": " didn't", + "start": 1062.76, + "end": 1062.86, + "probability": 1.0 + }, + { + "word": " come", + "start": 1062.86, + "end": 1062.96, + "probability": 0.998046875 + }, + { + "word": " up", + "start": 1062.96, + "end": 1063.08, + "probability": 0.55419921875 + }, + { + "word": " anything.", + "start": 1063.08, + "end": 1063.28, + "probability": 0.91796875 + } + ] + }, + { + "id": 492, + "text": "What virus protector do you have?", + "start": 1063.54, + "end": 1065.2, + "words": [ + { + "word": " What", + "start": 1063.54, + "end": 1063.9, + "probability": 0.9990234375 + }, + { + "word": " virus", + "start": 1063.9, + "end": 1064.24, + "probability": 1.0 + }, + { + "word": " protector", + "start": 1064.24, + "end": 1064.46, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1064.46, + "end": 1064.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 1064.84, + "end": 1064.96, + "probability": 1.0 + }, + { + "word": " have?", + "start": 1064.96, + "end": 1065.2, + "probability": 1.0 + } + ] + }, + { + "id": 493, + "text": "It's PC tools.", + "start": 1065.64, + "end": 1067.1, + "words": [ + { + "word": " It's", + "start": 1065.64, + "end": 1066.12, + "probability": 1.0 + }, + { + "word": " PC", + "start": 1066.12, + "end": 1066.74, + "probability": 0.97607421875 + }, + { + "word": " tools.", + "start": 1066.74, + "end": 1067.1, + "probability": 0.7158203125 + } + ] + }, + { + "id": 494, + "text": "Okay.", + "start": 1067.56, + "end": 1068.04, + "words": [ + { + "word": " Okay.", + "start": 1067.56, + "end": 1068.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 495, + "text": "Now, here's the deal.", + "start": 1068.64, + "end": 1069.58, + "words": [ + { + "word": " Now,", + "start": 1068.64, + "end": 1069.12, + "probability": 0.99853515625 + }, + { + "word": " here's", + "start": 1069.18, + "end": 1069.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1069.4, + "end": 1069.4, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 1069.4, + "end": 1069.58, + "probability": 1.0 + } + ] + }, + { + "id": 496, + "text": "If you get an infection, and this is true of all the antiviruses, but I'm going to make a generalization.", + "start": 1069.72, + "end": 1076.0, + "words": [ + { + "word": " If", + "start": 1069.72, + "end": 1070.2, + "probability": 0.98876953125 + }, + { + "word": " you", + "start": 1070.2, + "end": 1070.38, + "probability": 1.0 + }, + { + "word": " get", + "start": 1070.38, + "end": 1070.58, + "probability": 1.0 + }, + { + "word": " an", + "start": 1070.58, + "end": 1070.66, + "probability": 1.0 + }, + { + "word": " infection,", + "start": 1070.66, + "end": 1070.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 1071.2, + "end": 1071.62, + "probability": 1.0 + }, + { + "word": " this", + "start": 1071.62, + "end": 1072.14, + "probability": 1.0 + }, + { + "word": " is", + "start": 1072.14, + "end": 1072.3, + "probability": 1.0 + }, + { + "word": " true", + "start": 1072.3, + "end": 1072.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1072.5, + "end": 1072.82, + "probability": 1.0 + }, + { + "word": " all", + "start": 1072.82, + "end": 1073.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1073.34, + "end": 1073.54, + "probability": 1.0 + }, + { + "word": " antiviruses,", + "start": 1073.54, + "end": 1074.2, + "probability": 0.99560546875 + }, + { + "word": " but", + "start": 1074.32, + "end": 1074.84, + "probability": 0.8349609375 + }, + { + "word": " I'm", + "start": 1074.84, + "end": 1075.1, + "probability": 1.0 + }, + { + "word": " going", + "start": 1075.1, + "end": 1075.16, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1075.16, + "end": 1075.28, + "probability": 1.0 + }, + { + "word": " make", + "start": 1075.28, + "end": 1075.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 1075.4, + "end": 1075.44, + "probability": 0.9990234375 + }, + { + "word": " generalization.", + "start": 1075.44, + "end": 1076.0, + "probability": 1.0 + } + ] + }, + { + "id": 497, + "text": "It's kind of a blanket statement.", + "start": 1076.0, + "end": 1077.04, + "words": [ + { + "word": " It's", + "start": 1076.0, + "end": 1076.22, + "probability": 0.7548828125 + }, + { + "word": " kind", + "start": 1076.22, + "end": 1076.3, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1076.3, + "end": 1076.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 1076.38, + "end": 1076.44, + "probability": 1.0 + }, + { + "word": " blanket", + "start": 1076.44, + "end": 1076.68, + "probability": 1.0 + }, + { + "word": " statement.", + "start": 1076.68, + "end": 1077.04, + "probability": 1.0 + } + ] + }, + { + "id": 498, + "text": "And I will say that it's probably 90% true, is that when you get a virus on your machine,", + "start": 1077.8999999999999, + "end": 1085.66, + "words": [ + { + "word": " And", + "start": 1077.8999999999999, + "end": 1078.3, + "probability": 0.77197265625 + }, + { + "word": " I", + "start": 1078.3, + "end": 1078.7, + "probability": 0.9970703125 + }, + { + "word": " will", + "start": 1078.7, + "end": 1079.06, + "probability": 1.0 + }, + { + "word": " say", + "start": 1079.06, + "end": 1079.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 1079.24, + "end": 1079.4, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1079.4, + "end": 1079.58, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1079.58, + "end": 1079.8, + "probability": 1.0 + }, + { + "word": " 90", + "start": 1079.8, + "end": 1080.36, + "probability": 0.99951171875 + }, + { + "word": "%", + "start": 1080.36, + "end": 1080.66, + "probability": 0.93017578125 + }, + { + "word": " true,", + "start": 1080.66, + "end": 1080.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 1081.08, + "end": 1081.82, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1081.82, + "end": 1082.14, + "probability": 1.0 + }, + { + "word": " when", + "start": 1082.14, + "end": 1083.62, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 1083.62, + "end": 1083.98, + "probability": 1.0 + }, + { + "word": " get", + "start": 1083.98, + "end": 1084.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 1084.14, + "end": 1084.22, + "probability": 1.0 + }, + { + "word": " virus", + "start": 1084.22, + "end": 1084.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 1084.54, + "end": 1085.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 1085.22, + "end": 1085.36, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 1085.36, + "end": 1085.66, + "probability": 1.0 + } + ] + }, + { + "id": 499, + "text": "let's say you get an infection, and you have an antivirus on there,", + "start": 1085.72, + "end": 1088.54, + "words": [ + { + "word": " let's", + "start": 1085.72, + "end": 1085.88, + "probability": 1.0 + }, + { + "word": " say", + "start": 1085.88, + "end": 1085.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 1085.94, + "end": 1086.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 1086.04, + "end": 1086.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 1086.16, + "end": 1086.22, + "probability": 1.0 + }, + { + "word": " infection,", + "start": 1086.22, + "end": 1086.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 1086.64, + "end": 1086.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 1086.96, + "end": 1087.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 1087.06, + "end": 1087.34, + "probability": 1.0 + }, + { + "word": " an", + "start": 1087.34, + "end": 1087.5, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1087.5, + "end": 1088.16, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1088.16, + "end": 1088.36, + "probability": 1.0 + }, + { + "word": " there,", + "start": 1088.36, + "end": 1088.54, + "probability": 1.0 + } + ] + }, + { + "id": 500, + "text": "basically that virus becomes invisible to the antivirus that's installed on the machine.", + "start": 1090.0199999999998, + "end": 1093.64, + "words": [ + { + "word": " basically", + "start": 1090.0199999999998, + "end": 1090.4199999999998, + "probability": 0.9912109375 + }, + { + "word": " that", + "start": 1090.4199999999998, + "end": 1090.82, + "probability": 0.984375 + }, + { + "word": " virus", + "start": 1090.82, + "end": 1091.12, + "probability": 1.0 + }, + { + "word": " becomes", + "start": 1091.12, + "end": 1091.44, + "probability": 1.0 + }, + { + "word": " invisible", + "start": 1091.44, + "end": 1091.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1091.84, + "end": 1092.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 1092.16, + "end": 1092.26, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1092.26, + "end": 1092.68, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1092.68, + "end": 1092.92, + "probability": 1.0 + }, + { + "word": " installed", + "start": 1092.92, + "end": 1093.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 1093.18, + "end": 1093.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1093.36, + "end": 1093.44, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1093.44, + "end": 1093.64, + "probability": 1.0 + } + ] + }, + { + "id": 501, + "text": "Oh, even if I update it?", + "start": 1094.28, + "end": 1095.78, + "words": [ + { + "word": " Oh,", + "start": 1094.28, + "end": 1094.62, + "probability": 0.5498046875 + }, + { + "word": " even", + "start": 1094.72, + "end": 1095.0, + "probability": 1.0 + }, + { + "word": " if", + "start": 1095.0, + "end": 1095.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 1095.2, + "end": 1095.3, + "probability": 1.0 + }, + { + "word": " update", + "start": 1095.3, + "end": 1095.58, + "probability": 1.0 + }, + { + "word": " it?", + "start": 1095.58, + "end": 1095.78, + "probability": 1.0 + } + ] + }, + { + "id": 502, + "text": "Even if you update it.", + "start": 1095.92, + "end": 1096.74, + "words": [ + { + "word": " Even", + "start": 1095.92, + "end": 1096.2, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1096.2, + "end": 1096.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1096.32, + "end": 1096.36, + "probability": 1.0 + }, + { + "word": " update", + "start": 1096.36, + "end": 1096.58, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1096.58, + "end": 1096.74, + "probability": 1.0 + } + ] + }, + { + "id": 503, + "text": "Because one of the first things that the better infections do, if we rate them on a scale of quality,", + "start": 1096.84, + "end": 1102.2, + "words": [ + { + "word": " Because", + "start": 1096.84, + "end": 1097.24, + "probability": 0.90869140625 + }, + { + "word": " one", + "start": 1097.24, + "end": 1097.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 1097.62, + "end": 1097.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1097.8, + "end": 1097.82, + "probability": 1.0 + }, + { + "word": " first", + "start": 1097.82, + "end": 1098.0, + "probability": 1.0 + }, + { + "word": " things", + "start": 1098.0, + "end": 1098.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 1098.18, + "end": 1098.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1098.36, + "end": 1098.44, + "probability": 0.99365234375 + }, + { + "word": " better", + "start": 1098.44, + "end": 1099.32, + "probability": 1.0 + }, + { + "word": " infections", + "start": 1099.32, + "end": 1099.76, + "probability": 1.0 + }, + { + "word": " do,", + "start": 1099.76, + "end": 1100.18, + "probability": 1.0 + }, + { + "word": " if", + "start": 1100.34, + "end": 1100.72, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 1100.72, + "end": 1100.86, + "probability": 1.0 + }, + { + "word": " rate", + "start": 1100.86, + "end": 1101.18, + "probability": 0.966796875 + }, + { + "word": " them", + "start": 1101.18, + "end": 1101.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 1101.34, + "end": 1101.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 1101.46, + "end": 1101.54, + "probability": 1.0 + }, + { + "word": " scale", + "start": 1101.54, + "end": 1101.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 1101.72, + "end": 1101.86, + "probability": 1.0 + }, + { + "word": " quality,", + "start": 1101.86, + "end": 1102.2, + "probability": 1.0 + } + ] + }, + { + "id": 504, + "text": "is that they go in and neuter the antivirus.", + "start": 1102.8, + "end": 1105.12, + "words": [ + { + "word": " is", + "start": 1102.8, + "end": 1103.2, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1103.2, + "end": 1103.48, + "probability": 1.0 + }, + { + "word": " they", + "start": 1103.48, + "end": 1103.82, + "probability": 1.0 + }, + { + "word": " go", + "start": 1103.82, + "end": 1104.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 1104.12, + "end": 1104.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 1104.24, + "end": 1104.34, + "probability": 1.0 + }, + { + "word": " neuter", + "start": 1104.34, + "end": 1104.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 1104.64, + "end": 1104.72, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 1104.72, + "end": 1105.12, + "probability": 1.0 + } + ] + }, + { + "id": 505, + "text": "It says,", + "start": 1105.24, + "end": 1105.62, + "words": [ + { + "word": " It", + "start": 1105.24, + "end": 1105.46, + "probability": 0.87548828125 + }, + { + "word": " says,", + "start": 1105.46, + "end": 1105.62, + "probability": 0.98291015625 + } + ] + }, + { + "id": 506, + "text": "It says, look, I'm not here anymore.", + "start": 1105.62, + "end": 1106.78, + "words": [ + { + "word": " It", + "start": 1105.62, + "end": 1105.62, + "probability": 0.0533447265625 + }, + { + "word": " says,", + "start": 1105.62, + "end": 1105.7, + "probability": 0.89501953125 + }, + { + "word": " look,", + "start": 1105.72, + "end": 1105.98, + "probability": 0.96728515625 + }, + { + "word": " I'm", + "start": 1106.08, + "end": 1106.22, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 1106.22, + "end": 1106.34, + "probability": 1.0 + }, + { + "word": " here", + "start": 1106.34, + "end": 1106.52, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 1106.52, + "end": 1106.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 507, + "text": "You don't see me.", + "start": 1106.94, + "end": 1107.82, + "words": [ + { + "word": " You", + "start": 1106.94, + "end": 1107.26, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1107.26, + "end": 1107.46, + "probability": 1.0 + }, + { + "word": " see", + "start": 1107.46, + "end": 1107.66, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1107.66, + "end": 1107.82, + "probability": 1.0 + } + ] + }, + { + "id": 508, + "text": "It kind of waves its hands and said, you know, you're looking for somebody else.", + "start": 1107.9, + "end": 1111.06, + "words": [ + { + "word": " It", + "start": 1107.9, + "end": 1107.92, + "probability": 0.76220703125 + }, + { + "word": " kind", + "start": 1107.92, + "end": 1108.06, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1108.06, + "end": 1108.18, + "probability": 1.0 + }, + { + "word": " waves", + "start": 1108.18, + "end": 1108.36, + "probability": 0.9921875 + }, + { + "word": " its", + "start": 1108.36, + "end": 1108.54, + "probability": 0.9990234375 + }, + { + "word": " hands", + "start": 1108.54, + "end": 1108.82, + "probability": 0.97900390625 + }, + { + "word": " and", + "start": 1108.82, + "end": 1109.06, + "probability": 0.99951171875 + }, + { + "word": " said,", + "start": 1109.06, + "end": 1109.26, + "probability": 0.90478515625 + }, + { + "word": " you", + "start": 1109.4, + "end": 1109.62, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1109.62, + "end": 1109.76, + "probability": 0.83740234375 + }, + { + "word": " you're", + "start": 1109.8, + "end": 1110.08, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1110.08, + "end": 1110.26, + "probability": 1.0 + }, + { + "word": " for", + "start": 1110.26, + "end": 1110.48, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1110.48, + "end": 1110.74, + "probability": 1.0 + }, + { + "word": " else.", + "start": 1110.74, + "end": 1111.06, + "probability": 1.0 + } + ] + }, + { + "id": 509, + "text": "Yeah, there's even some new antiviruses out there.", + "start": 1111.16, + "end": 1112.44, + "words": [ + { + "word": " Yeah,", + "start": 1111.16, + "end": 1111.3, + "probability": 0.8955078125 + }, + { + "word": " there's", + "start": 1111.3, + "end": 1111.38, + "probability": 0.99853515625 + }, + { + "word": " even", + "start": 1111.38, + "end": 1111.44, + "probability": 0.99462890625 + }, + { + "word": " some", + "start": 1111.44, + "end": 1111.62, + "probability": 1.0 + }, + { + "word": " new", + "start": 1111.62, + "end": 1111.8, + "probability": 1.0 + }, + { + "word": " antiviruses", + "start": 1111.8, + "end": 1112.26, + "probability": 0.97998046875 + }, + { + "word": " out", + "start": 1112.26, + "end": 1112.42, + "probability": 0.9990234375 + }, + { + "word": " there.", + "start": 1112.42, + "end": 1112.44, + "probability": 1.0 + } + ] + }, + { + "id": 510, + "text": "Yeah, I've fixed the antivirus.", + "start": 1112.68, + "end": 1113.56, + "words": [ + { + "word": " Yeah,", + "start": 1112.68, + "end": 1112.8, + "probability": 0.1959228515625 + }, + { + "word": " I've", + "start": 1112.8, + "end": 1112.8, + "probability": 0.5478515625 + }, + { + "word": " fixed", + "start": 1112.8, + "end": 1112.82, + "probability": 0.368408203125 + }, + { + "word": " the", + "start": 1112.82, + "end": 1113.06, + "probability": 0.9970703125 + }, + { + "word": " antivirus.", + "start": 1113.06, + "end": 1113.56, + "probability": 0.99755859375 + } + ] + }, + { + "id": 511, + "text": "There's some new viruses out there that actually uninstall your antivirus and reinstalls as the antivirus.", + "start": 1113.74, + "end": 1118.44, + "words": [ + { + "word": " There's", + "start": 1113.74, + "end": 1114.08, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 1114.08, + "end": 1114.14, + "probability": 0.98583984375 + }, + { + "word": " new", + "start": 1114.14, + "end": 1114.3, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 1114.3, + "end": 1114.66, + "probability": 1.0 + }, + { + "word": " out", + "start": 1114.66, + "end": 1114.9, + "probability": 1.0 + }, + { + "word": " there", + "start": 1114.9, + "end": 1115.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 1115.0, + "end": 1115.06, + "probability": 0.9951171875 + }, + { + "word": " actually", + "start": 1115.06, + "end": 1115.26, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 1115.26, + "end": 1115.82, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1115.82, + "end": 1116.06, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1116.06, + "end": 1116.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 1116.52, + "end": 1116.6, + "probability": 0.96240234375 + }, + { + "word": " reinstalls", + "start": 1116.6, + "end": 1117.18, + "probability": 0.861328125 + }, + { + "word": " as", + "start": 1117.18, + "end": 1117.38, + "probability": 0.978515625 + }, + { + "word": " the", + "start": 1117.38, + "end": 1117.9, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 1117.9, + "end": 1118.44, + "probability": 1.0 + } + ] + }, + { + "id": 512, + "text": "Right, reinstalls itself looking just like the antivirus, but it's actually not.", + "start": 1118.58, + "end": 1121.54, + "words": [ + { + "word": " Right,", + "start": 1118.58, + "end": 1118.74, + "probability": 0.998046875 + }, + { + "word": " reinstalls", + "start": 1118.78, + "end": 1119.26, + "probability": 0.896484375 + }, + { + "word": " itself", + "start": 1119.26, + "end": 1119.44, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1119.44, + "end": 1119.72, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1119.72, + "end": 1120.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 1120.06, + "end": 1120.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1120.34, + "end": 1120.44, + "probability": 1.0 + }, + { + "word": " antivirus,", + "start": 1120.44, + "end": 1120.82, + "probability": 1.0 + }, + { + "word": " but", + "start": 1120.9, + "end": 1121.04, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1121.04, + "end": 1121.16, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1121.16, + "end": 1121.36, + "probability": 1.0 + }, + { + "word": " not.", + "start": 1121.36, + "end": 1121.54, + "probability": 1.0 + } + ] + }, + { + "id": 513, + "text": "It's the actual virus.", + "start": 1121.62, + "end": 1122.64, + "words": [ + { + "word": " It's", + "start": 1121.62, + "end": 1121.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1121.9, + "end": 1122.04, + "probability": 1.0 + }, + { + "word": " actual", + "start": 1122.04, + "end": 1122.36, + "probability": 1.0 + }, + { + "word": " virus.", + "start": 1122.36, + "end": 1122.64, + "probability": 1.0 + } + ] + }, + { + "id": 514, + "text": "So, do you know when you get that process?", + "start": 1124.8200000000002, + "end": 1127.96, + "words": [ + { + "word": " So,", + "start": 1124.8200000000002, + "end": 1125.16, + "probability": 0.99169921875 + }, + { + "word": " do", + "start": 1125.16, + "end": 1125.5, + "probability": 0.98828125 + }, + { + "word": " you", + "start": 1125.5, + "end": 1126.62, + "probability": 1.0 + }, + { + "word": " know", + "start": 1126.62, + "end": 1126.78, + "probability": 1.0 + }, + { + "word": " when", + "start": 1126.78, + "end": 1127.06, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1127.06, + "end": 1127.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 1127.26, + "end": 1127.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 1127.48, + "end": 1127.64, + "probability": 1.0 + }, + { + "word": " process?", + "start": 1127.64, + "end": 1127.96, + "probability": 0.9931640625 + } + ] + }, + { + "id": 515, + "text": "Are you near the machine?", + "start": 1128.1, + "end": 1128.78, + "words": [ + { + "word": " Are", + "start": 1128.1, + "end": 1128.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 1128.2, + "end": 1128.34, + "probability": 1.0 + }, + { + "word": " near", + "start": 1128.34, + "end": 1128.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 1128.5, + "end": 1128.64, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 1128.64, + "end": 1128.78, + "probability": 1.0 + } + ] + }, + { + "id": 516, + "text": "No.", + "start": 1129.72, + "end": 1130.06, + "words": [ + { + "word": " No.", + "start": 1129.72, + "end": 1130.06, + "probability": 0.9951171875 + } + ] + }, + { + "id": 517, + "text": "Okay.", + "start": 1130.5, + "end": 1130.84, + "words": [ + { + "word": " Okay.", + "start": 1130.5, + "end": 1130.84, + "probability": 0.8662109375 + } + ] + }, + { + "id": 518, + "text": "So, one thing you're going to look at.", + "start": 1131.9, + "end": 1133.54, + "words": [ + { + "word": " So,", + "start": 1131.9, + "end": 1132.24, + "probability": 0.98876953125 + }, + { + "word": " one", + "start": 1132.24, + "end": 1132.58, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1132.58, + "end": 1132.9, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1132.9, + "end": 1133.14, + "probability": 0.9892578125 + }, + { + "word": " going", + "start": 1133.14, + "end": 1133.18, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1133.18, + "end": 1133.22, + "probability": 1.0 + }, + { + "word": " look", + "start": 1133.22, + "end": 1133.38, + "probability": 1.0 + }, + { + "word": " at.", + "start": 1133.38, + "end": 1133.54, + "probability": 1.0 + } + ] + }, + { + "id": 519, + "text": "Okay.", + "start": 1133.56, + "end": 1133.66, + "words": [ + { + "word": " Okay.", + "start": 1133.56, + "end": 1133.66, + "probability": 0.0007085800170898438 + } + ] + }, + { + "id": 520, + "text": "If you can get the process list to come back.", + "start": 1133.66, + "end": 1135.44, + "words": [ + { + "word": " If", + "start": 1133.66, + "end": 1133.66, + "probability": 0.9130859375 + }, + { + "word": " you", + "start": 1133.66, + "end": 1133.72, + "probability": 1.0 + }, + { + "word": " can", + "start": 1133.72, + "end": 1133.78, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1133.78, + "end": 1133.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1133.86, + "end": 1133.98, + "probability": 0.99951171875 + }, + { + "word": " process", + "start": 1133.98, + "end": 1134.62, + "probability": 1.0 + }, + { + "word": " list", + "start": 1134.62, + "end": 1135.0, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1135.0, + "end": 1135.16, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 1135.16, + "end": 1135.28, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1135.28, + "end": 1135.44, + "probability": 1.0 + } + ] + }, + { + "id": 521, + "text": "Step again, where you can see you're 100%.", + "start": 1135.62, + "end": 1136.86, + "words": [ + { + "word": " Step", + "start": 1135.62, + "end": 1135.68, + "probability": 0.006683349609375 + }, + { + "word": " again,", + "start": 1135.68, + "end": 1135.78, + "probability": 0.70263671875 + }, + { + "word": " where", + "start": 1135.86, + "end": 1135.94, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1135.94, + "end": 1136.06, + "probability": 1.0 + }, + { + "word": " can", + "start": 1136.06, + "end": 1136.14, + "probability": 1.0 + }, + { + "word": " see", + "start": 1136.14, + "end": 1136.32, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1136.32, + "end": 1136.4, + "probability": 0.67138671875 + }, + { + "word": " 100%.", + "start": 1136.4, + "end": 1136.86, + "probability": 0.931640625 + } + ] + }, + { + "id": 522, + "text": "You can sort them by processes going into the process tab instead of the performance tab.", + "start": 1136.86, + "end": 1142.4, + "words": [ + { + "word": " You", + "start": 1136.86, + "end": 1137.52, + "probability": 0.9951171875 + }, + { + "word": " can", + "start": 1137.52, + "end": 1137.7, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1137.7, + "end": 1138.14, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 1138.14, + "end": 1138.34, + "probability": 1.0 + }, + { + "word": " by", + "start": 1138.34, + "end": 1138.56, + "probability": 1.0 + }, + { + "word": " processes", + "start": 1138.56, + "end": 1139.12, + "probability": 0.962890625 + }, + { + "word": " going", + "start": 1139.12, + "end": 1139.5, + "probability": 0.9892578125 + }, + { + "word": " into", + "start": 1139.5, + "end": 1139.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1139.72, + "end": 1139.88, + "probability": 1.0 + }, + { + "word": " process", + "start": 1139.88, + "end": 1140.12, + "probability": 0.57421875 + }, + { + "word": " tab", + "start": 1140.12, + "end": 1140.42, + "probability": 1.0 + }, + { + "word": " instead", + "start": 1140.42, + "end": 1140.82, + "probability": 0.9609375 + }, + { + "word": " of", + "start": 1140.82, + "end": 1141.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1141.7, + "end": 1141.78, + "probability": 1.0 + }, + { + "word": " performance", + "start": 1141.78, + "end": 1142.1, + "probability": 0.99951171875 + }, + { + "word": " tab.", + "start": 1142.1, + "end": 1142.4, + "probability": 1.0 + } + ] + }, + { + "id": 523, + "text": "And you can find out which process itself is holding down all of your processor.", + "start": 1142.74, + "end": 1147.32, + "words": [ + { + "word": " And", + "start": 1142.74, + "end": 1143.1, + "probability": 0.9169921875 + }, + { + "word": " you", + "start": 1143.1, + "end": 1143.52, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 1143.52, + "end": 1143.68, + "probability": 1.0 + }, + { + "word": " find", + "start": 1143.68, + "end": 1143.9, + "probability": 1.0 + }, + { + "word": " out", + "start": 1143.9, + "end": 1144.04, + "probability": 1.0 + }, + { + "word": " which", + "start": 1144.04, + "end": 1144.36, + "probability": 1.0 + }, + { + "word": " process", + "start": 1144.36, + "end": 1145.08, + "probability": 1.0 + }, + { + "word": " itself", + "start": 1145.08, + "end": 1145.48, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1145.48, + "end": 1145.86, + "probability": 1.0 + }, + { + "word": " holding", + "start": 1145.86, + "end": 1146.1, + "probability": 1.0 + }, + { + "word": " down", + "start": 1146.1, + "end": 1146.42, + "probability": 1.0 + }, + { + "word": " all", + "start": 1146.42, + "end": 1146.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 1146.68, + "end": 1146.78, + "probability": 1.0 + }, + { + "word": " your", + "start": 1146.78, + "end": 1146.92, + "probability": 1.0 + }, + { + "word": " processor.", + "start": 1146.92, + "end": 1147.32, + "probability": 0.99462890625 + } + ] + }, + { + "id": 524, + "text": "And that will give you a clue as to what's going on with it as far as if you can give me the name of the process that's holding everything down.", + "start": 1148.1600000000003, + "end": 1153.38, + "words": [ + { + "word": " And", + "start": 1148.1600000000003, + "end": 1148.5200000000002, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1148.5200000000002, + "end": 1148.88, + "probability": 1.0 + }, + { + "word": " will", + "start": 1148.88, + "end": 1149.08, + "probability": 0.63330078125 + }, + { + "word": " give", + "start": 1149.08, + "end": 1149.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 1149.22, + "end": 1149.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 1149.36, + "end": 1149.44, + "probability": 1.0 + }, + { + "word": " clue", + "start": 1149.44, + "end": 1149.58, + "probability": 1.0 + }, + { + "word": " as", + "start": 1149.58, + "end": 1149.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1149.7, + "end": 1149.78, + "probability": 1.0 + }, + { + "word": " what's", + "start": 1149.78, + "end": 1150.06, + "probability": 1.0 + }, + { + "word": " going", + "start": 1150.06, + "end": 1150.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1150.2, + "end": 1150.5, + "probability": 1.0 + }, + { + "word": " with", + "start": 1150.5, + "end": 1150.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 1150.64, + "end": 1150.76, + "probability": 1.0 + }, + { + "word": " as", + "start": 1150.76, + "end": 1150.86, + "probability": 0.95849609375 + }, + { + "word": " far", + "start": 1150.86, + "end": 1151.02, + "probability": 1.0 + }, + { + "word": " as", + "start": 1151.02, + "end": 1151.2, + "probability": 1.0 + }, + { + "word": " if", + "start": 1151.2, + "end": 1151.34, + "probability": 0.68017578125 + }, + { + "word": " you", + "start": 1151.34, + "end": 1151.38, + "probability": 1.0 + }, + { + "word": " can", + "start": 1151.38, + "end": 1151.44, + "probability": 0.9951171875 + }, + { + "word": " give", + "start": 1151.44, + "end": 1151.54, + "probability": 0.9892578125 + }, + { + "word": " me", + "start": 1151.54, + "end": 1151.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1151.66, + "end": 1151.76, + "probability": 1.0 + }, + { + "word": " name", + "start": 1151.76, + "end": 1151.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 1151.94, + "end": 1152.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1152.06, + "end": 1152.1, + "probability": 1.0 + }, + { + "word": " process", + "start": 1152.1, + "end": 1152.46, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1152.46, + "end": 1152.68, + "probability": 0.99951171875 + }, + { + "word": " holding", + "start": 1152.68, + "end": 1152.82, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1152.82, + "end": 1153.06, + "probability": 1.0 + }, + { + "word": " down.", + "start": 1153.06, + "end": 1153.38, + "probability": 1.0 + } + ] + }, + { + "id": 525, + "text": "I can probably tell you how to fix it up.", + "start": 1153.8000000000002, + "end": 1155.88, + "words": [ + { + "word": " I", + "start": 1153.8000000000002, + "end": 1154.16, + "probability": 0.83251953125 + }, + { + "word": " can", + "start": 1154.16, + "end": 1154.52, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1154.52, + "end": 1154.76, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1154.76, + "end": 1154.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 1154.96, + "end": 1155.08, + "probability": 1.0 + }, + { + "word": " how", + "start": 1155.08, + "end": 1155.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1155.16, + "end": 1155.2, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1155.2, + "end": 1155.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 1155.62, + "end": 1155.74, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1155.74, + "end": 1155.88, + "probability": 1.0 + } + ] + }, + { + "id": 526, + "text": "Oh, okay.", + "start": 1156.5200000000002, + "end": 1157.1, + "words": [ + { + "word": " Oh,", + "start": 1156.5200000000002, + "end": 1156.88, + "probability": 0.99365234375 + }, + { + "word": " okay.", + "start": 1156.9, + "end": 1157.1, + "probability": 0.978515625 + } + ] + }, + { + "id": 527, + "text": "So, do that.", + "start": 1157.34, + "end": 1158.3, + "words": [ + { + "word": " So,", + "start": 1157.34, + "end": 1157.7, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 1157.72, + "end": 1158.06, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1158.06, + "end": 1158.3, + "probability": 1.0 + } + ] + }, + { + "id": 528, + "text": "And do you have another machine around or is this the only machine you have?", + "start": 1158.62, + "end": 1161.16, + "words": [ + { + "word": " And", + "start": 1158.62, + "end": 1158.98, + "probability": 0.97705078125 + }, + { + "word": " do", + "start": 1158.98, + "end": 1159.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1159.16, + "end": 1159.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 1159.24, + "end": 1159.54, + "probability": 1.0 + }, + { + "word": " another", + "start": 1159.54, + "end": 1159.74, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1159.74, + "end": 1160.0, + "probability": 1.0 + }, + { + "word": " around", + "start": 1160.0, + "end": 1160.2, + "probability": 1.0 + }, + { + "word": " or", + "start": 1160.2, + "end": 1160.36, + "probability": 0.59033203125 + }, + { + "word": " is", + "start": 1160.36, + "end": 1160.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 1160.48, + "end": 1160.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 1160.5, + "end": 1160.6, + "probability": 1.0 + }, + { + "word": " only", + "start": 1160.6, + "end": 1160.72, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1160.72, + "end": 1160.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 1160.92, + "end": 1161.04, + "probability": 1.0 + }, + { + "word": " have?", + "start": 1161.04, + "end": 1161.16, + "probability": 1.0 + } + ] + }, + { + "id": 529, + "text": "No, I've got another one.", + "start": 1161.68, + "end": 1162.7, + "words": [ + { + "word": " No,", + "start": 1161.68, + "end": 1162.04, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1162.08, + "end": 1162.18, + "probability": 1.0 + }, + { + "word": " got", + "start": 1162.18, + "end": 1162.32, + "probability": 1.0 + }, + { + "word": " another", + "start": 1162.32, + "end": 1162.46, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1162.46, + "end": 1162.7, + "probability": 1.0 + } + ] + }, + { + "id": 530, + "text": "All right.", + "start": 1162.82, + "end": 1163.0, + "words": [ + { + "word": " All", + "start": 1162.82, + "end": 1162.94, + "probability": 0.9462890625 + }, + { + "word": " right.", + "start": 1162.94, + "end": 1163.0, + "probability": 1.0 + } + ] + }, + { + "id": 531, + "text": "So, then send me an email from the working machine.", + "start": 1163.02, + "end": 1165.28, + "words": [ + { + "word": " So,", + "start": 1163.02, + "end": 1163.16, + "probability": 0.99560546875 + }, + { + "word": " then", + "start": 1163.24, + "end": 1163.58, + "probability": 1.0 + }, + { + "word": " send", + "start": 1163.58, + "end": 1163.92, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 1163.92, + "end": 1164.04, + "probability": 1.0 + }, + { + "word": " an", + "start": 1164.04, + "end": 1164.16, + "probability": 1.0 + }, + { + "word": " email", + "start": 1164.16, + "end": 1164.34, + "probability": 0.724609375 + }, + { + "word": " from", + "start": 1164.34, + "end": 1164.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 1164.62, + "end": 1164.74, + "probability": 0.99267578125 + }, + { + "word": " working", + "start": 1164.74, + "end": 1164.94, + "probability": 0.99853515625 + }, + { + "word": " machine.", + "start": 1164.94, + "end": 1165.28, + "probability": 1.0 + } + ] + }, + { + "id": 532, + "text": "It's a radio at azcomputerguru.com.", + "start": 1166.3, + "end": 1168.6, + "words": [ + { + "word": " It's", + "start": 1166.3, + "end": 1166.58, + "probability": 0.5078125 + }, + { + "word": " a", + "start": 1166.58, + "end": 1166.58, + "probability": 0.91259765625 + }, + { + "word": " radio", + "start": 1166.58, + "end": 1166.86, + "probability": 0.994140625 + }, + { + "word": " at", + "start": 1166.86, + "end": 1167.2, + "probability": 0.99267578125 + }, + { + "word": " azcomputerguru", + "start": 1167.2, + "end": 1168.04, + "probability": 0.98291015625 + }, + { + "word": ".com.", + "start": 1168.04, + "end": 1168.6, + "probability": 1.0 + } + ] + }, + { + "id": 533, + "text": "And we'll see what we can do to help you out.", + "start": 1169.28, + "end": 1170.46, + "words": [ + { + "word": " And", + "start": 1169.28, + "end": 1169.56, + "probability": 0.87890625 + }, + { + "word": " we'll", + "start": 1169.56, + "end": 1169.74, + "probability": 0.998046875 + }, + { + "word": " see", + "start": 1169.74, + "end": 1169.8, + "probability": 1.0 + }, + { + "word": " what", + "start": 1169.8, + "end": 1169.9, + "probability": 1.0 + }, + { + "word": " we", + "start": 1169.9, + "end": 1169.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 1169.98, + "end": 1170.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 1170.0, + "end": 1170.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1170.08, + "end": 1170.18, + "probability": 1.0 + }, + { + "word": " help", + "start": 1170.18, + "end": 1170.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 1170.26, + "end": 1170.36, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1170.36, + "end": 1170.46, + "probability": 1.0 + } + ] + }, + { + "id": 534, + "text": "Radio at azcomputerguru.com.", + "start": 1171.24, + "end": 1173.34, + "words": [ + { + "word": " Radio", + "start": 1171.24, + "end": 1171.52, + "probability": 0.9521484375 + }, + { + "word": " at", + "start": 1171.52, + "end": 1171.76, + "probability": 0.99951171875 + }, + { + "word": " azcomputerguru", + "start": 1171.76, + "end": 1172.88, + "probability": 1.0 + }, + { + "word": ".com.", + "start": 1172.88, + "end": 1173.34, + "probability": 1.0 + } + ] + }, + { + "id": 535, + "text": "Right.", + "start": 1173.46, + "end": 1173.62, + "words": [ + { + "word": " Right.", + "start": 1173.46, + "end": 1173.62, + "probability": 0.9931640625 + } + ] + }, + { + "id": 536, + "text": "Or if you get it done in the next hour and a half, you can call me back and tell me what it is.", + "start": 1173.68, + "end": 1177.74, + "words": [ + { + "word": " Or", + "start": 1173.68, + "end": 1173.82, + "probability": 0.99755859375 + }, + { + "word": " if", + "start": 1173.82, + "end": 1174.02, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 1174.02, + "end": 1174.12, + "probability": 1.0 + }, + { + "word": " get", + "start": 1174.12, + "end": 1174.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 1174.26, + "end": 1174.34, + "probability": 1.0 + }, + { + "word": " done", + "start": 1174.34, + "end": 1174.48, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1174.48, + "end": 1174.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1174.6, + "end": 1174.7, + "probability": 1.0 + }, + { + "word": " next", + "start": 1174.7, + "end": 1174.86, + "probability": 1.0 + }, + { + "word": " hour", + "start": 1174.86, + "end": 1175.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 1175.12, + "end": 1175.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1175.26, + "end": 1175.3, + "probability": 1.0 + }, + { + "word": " half,", + "start": 1175.3, + "end": 1175.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1175.66, + "end": 1175.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 1175.94, + "end": 1176.16, + "probability": 0.51953125 + }, + { + "word": " call", + "start": 1176.16, + "end": 1176.68, + "probability": 1.0 + }, + { + "word": " me", + "start": 1176.68, + "end": 1176.78, + "probability": 1.0 + }, + { + "word": " back", + "start": 1176.78, + "end": 1176.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1176.98, + "end": 1177.16, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1177.16, + "end": 1177.3, + "probability": 1.0 + }, + { + "word": " me", + "start": 1177.3, + "end": 1177.4, + "probability": 1.0 + }, + { + "word": " what", + "start": 1177.4, + "end": 1177.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 1177.52, + "end": 1177.62, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1177.62, + "end": 1177.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 537, + "text": "Okay.", + "start": 1178.48, + "end": 1178.76, + "words": [ + { + "word": " Okay.", + "start": 1178.48, + "end": 1178.76, + "probability": 0.7900390625 + } + ] + }, + { + "id": 538, + "text": "All right.", + "start": 1179.06, + "end": 1179.46, + "words": [ + { + "word": " All", + "start": 1179.06, + "end": 1179.34, + "probability": 0.98388671875 + }, + { + "word": " right.", + "start": 1179.34, + "end": 1179.46, + "probability": 1.0 + } + ] + }, + { + "id": 539, + "text": "Awesome.", + "start": 1180.52, + "end": 1180.8, + "words": [ + { + "word": " Awesome.", + "start": 1180.52, + "end": 1180.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 540, + "text": "Thank you.", + "start": 1180.82, + "end": 1181.26, + "words": [ + { + "word": " Thank", + "start": 1180.82, + "end": 1181.04, + "probability": 0.9990234375 + }, + { + "word": " you.", + "start": 1181.04, + "end": 1181.26, + "probability": 1.0 + } + ] + }, + { + "id": 541, + "text": "Thanks for the call, James.", + "start": 1181.3, + "end": 1182.02, + "words": [ + { + "word": " Thanks", + "start": 1181.3, + "end": 1181.58, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1181.58, + "end": 1181.66, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1181.66, + "end": 1181.74, + "probability": 0.98876953125 + }, + { + "word": " call,", + "start": 1181.74, + "end": 1181.88, + "probability": 1.0 + }, + { + "word": " James.", + "start": 1181.88, + "end": 1182.02, + "probability": 1.0 + } + ] + }, + { + "id": 542, + "text": "I appreciate it.", + "start": 1182.1, + "end": 1182.6, + "words": [ + { + "word": " I", + "start": 1182.1, + "end": 1182.16, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 1182.16, + "end": 1182.36, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1182.36, + "end": 1182.6, + "probability": 1.0 + } + ] + }, + { + "id": 543, + "text": "All right.", + "start": 1182.92, + "end": 1183.32, + "words": [ + { + "word": " All", + "start": 1182.92, + "end": 1183.2, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 1183.2, + "end": 1183.32, + "probability": 1.0 + } + ] + }, + { + "id": 544, + "text": "So, they're hacking cars these days, are they?", + "start": 1184.14, + "end": 1185.82, + "words": [ + { + "word": " So,", + "start": 1184.14, + "end": 1184.42, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 1184.48, + "end": 1184.6, + "probability": 1.0 + }, + { + "word": " hacking", + "start": 1184.6, + "end": 1184.76, + "probability": 1.0 + }, + { + "word": " cars", + "start": 1184.76, + "end": 1185.02, + "probability": 1.0 + }, + { + "word": " these", + "start": 1185.02, + "end": 1185.28, + "probability": 0.99951171875 + }, + { + "word": " days,", + "start": 1185.28, + "end": 1185.5, + "probability": 1.0 + }, + { + "word": " are", + "start": 1185.54, + "end": 1185.66, + "probability": 0.978515625 + }, + { + "word": " they?", + "start": 1185.66, + "end": 1185.82, + "probability": 1.0 + } + ] + }, + { + "id": 545, + "text": "I hear, yes.", + "start": 1185.94, + "end": 1186.62, + "words": [ + { + "word": " I", + "start": 1185.94, + "end": 1186.12, + "probability": 0.10797119140625 + }, + { + "word": " hear,", + "start": 1186.12, + "end": 1186.34, + "probability": 0.99853515625 + }, + { + "word": " yes.", + "start": 1186.36, + "end": 1186.62, + "probability": 1.0 + } + ] + }, + { + "id": 546, + "text": "They are hacking cars.", + "start": 1186.72, + "end": 1187.52, + "words": [ + { + "word": " They", + "start": 1186.72, + "end": 1186.88, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 1186.88, + "end": 1187.02, + "probability": 1.0 + }, + { + "word": " hacking", + "start": 1187.02, + "end": 1187.24, + "probability": 1.0 + }, + { + "word": " cars.", + "start": 1187.24, + "end": 1187.52, + "probability": 1.0 + } + ] + }, + { + "id": 547, + "text": "Currently, they actually have to have physical contact with the car.", + "start": 1188.68, + "end": 1190.98, + "words": [ + { + "word": " Currently,", + "start": 1188.68, + "end": 1188.96, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 1189.06, + "end": 1189.2, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1189.2, + "end": 1189.42, + "probability": 1.0 + }, + { + "word": " have", + "start": 1189.42, + "end": 1189.52, + "probability": 0.97412109375 + }, + { + "word": " to", + "start": 1189.52, + "end": 1189.66, + "probability": 0.99462890625 + }, + { + "word": " have", + "start": 1189.66, + "end": 1189.68, + "probability": 1.0 + }, + { + "word": " physical", + "start": 1189.68, + "end": 1189.92, + "probability": 1.0 + }, + { + "word": " contact", + "start": 1189.92, + "end": 1190.52, + "probability": 1.0 + }, + { + "word": " with", + "start": 1190.52, + "end": 1190.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1190.72, + "end": 1190.82, + "probability": 0.99951171875 + }, + { + "word": " car.", + "start": 1190.82, + "end": 1190.98, + "probability": 1.0 + } + ] + }, + { + "id": 548, + "text": "They have to actually get into the cab of the car.", + "start": 1191.06, + "end": 1192.54, + "words": [ + { + "word": " They", + "start": 1191.06, + "end": 1191.16, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1191.16, + "end": 1191.26, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 1191.26, + "end": 1191.34, + "probability": 0.99169921875 + }, + { + "word": " actually", + "start": 1191.34, + "end": 1191.52, + "probability": 0.994140625 + }, + { + "word": " get", + "start": 1191.52, + "end": 1191.7, + "probability": 0.9990234375 + }, + { + "word": " into", + "start": 1191.7, + "end": 1191.84, + "probability": 0.953125 + }, + { + "word": " the", + "start": 1191.84, + "end": 1191.96, + "probability": 0.99951171875 + }, + { + "word": " cab", + "start": 1191.96, + "end": 1192.18, + "probability": 0.98583984375 + }, + { + "word": " of", + "start": 1192.18, + "end": 1192.28, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1192.28, + "end": 1192.34, + "probability": 1.0 + }, + { + "word": " car.", + "start": 1192.34, + "end": 1192.54, + "probability": 1.0 + } + ] + }, + { + "id": 549, + "text": "And, you know, it's not.", + "start": 1193.22, + "end": 1195.4, + "words": [ + { + "word": " And,", + "start": 1193.22, + "end": 1193.5, + "probability": 0.96142578125 + }, + { + "word": " you", + "start": 1193.5, + "end": 1193.78, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1193.78, + "end": 1193.94, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1194.08, + "end": 1195.08, + "probability": 0.99462890625 + }, + { + "word": " not.", + "start": 1195.08, + "end": 1195.4, + "probability": 0.998046875 + } + ] + }, + { + "id": 550, + "text": "Far from now, they won't even have to do that, though.", + "start": 1195.62, + "end": 1197.94, + "words": [ + { + "word": " Far", + "start": 1195.62, + "end": 1195.74, + "probability": 0.904296875 + }, + { + "word": " from", + "start": 1195.74, + "end": 1196.22, + "probability": 1.0 + }, + { + "word": " now,", + "start": 1196.22, + "end": 1196.52, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1196.68, + "end": 1196.8, + "probability": 0.95263671875 + }, + { + "word": " won't", + "start": 1196.8, + "end": 1197.08, + "probability": 0.9814453125 + }, + { + "word": " even", + "start": 1197.08, + "end": 1197.16, + "probability": 0.98876953125 + }, + { + "word": " have", + "start": 1197.16, + "end": 1197.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1197.28, + "end": 1197.38, + "probability": 1.0 + }, + { + "word": " do", + "start": 1197.38, + "end": 1197.5, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1197.5, + "end": 1197.76, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1197.76, + "end": 1197.94, + "probability": 1.0 + } + ] + }, + { + "id": 551, + "text": "Yeah.", + "start": 1198.12, + "end": 1198.26, + "words": [ + { + "word": " Yeah.", + "start": 1198.12, + "end": 1198.26, + "probability": 0.9599609375 + } + ] + }, + { + "id": 552, + "text": "And you thought all you had to worry about then was stealing your change at the car washer.", + "start": 1198.3, + "end": 1202.0, + "words": [ + { + "word": " And", + "start": 1198.3, + "end": 1198.62, + "probability": 0.947265625 + }, + { + "word": " you", + "start": 1198.62, + "end": 1198.92, + "probability": 0.99853515625 + }, + { + "word": " thought", + "start": 1198.92, + "end": 1199.16, + "probability": 1.0 + }, + { + "word": " all", + "start": 1199.16, + "end": 1199.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1199.32, + "end": 1199.42, + "probability": 1.0 + }, + { + "word": " had", + "start": 1199.42, + "end": 1199.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1199.54, + "end": 1199.62, + "probability": 1.0 + }, + { + "word": " worry", + "start": 1199.62, + "end": 1199.78, + "probability": 1.0 + }, + { + "word": " about", + "start": 1199.78, + "end": 1200.02, + "probability": 1.0 + }, + { + "word": " then", + "start": 1200.02, + "end": 1200.18, + "probability": 0.66064453125 + }, + { + "word": " was", + "start": 1200.18, + "end": 1200.34, + "probability": 1.0 + }, + { + "word": " stealing", + "start": 1200.34, + "end": 1200.82, + "probability": 1.0 + }, + { + "word": " your", + "start": 1200.82, + "end": 1201.04, + "probability": 0.9970703125 + }, + { + "word": " change", + "start": 1201.04, + "end": 1201.28, + "probability": 0.99267578125 + }, + { + "word": " at", + "start": 1201.28, + "end": 1201.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1201.46, + "end": 1201.5, + "probability": 1.0 + }, + { + "word": " car", + "start": 1201.5, + "end": 1201.64, + "probability": 1.0 + }, + { + "word": " washer.", + "start": 1201.64, + "end": 1202.0, + "probability": 0.359130859375 + } + ] + }, + { + "id": 553, + "text": "Yeah, right.", + "start": 1202.06, + "end": 1202.52, + "words": [ + { + "word": " Yeah,", + "start": 1202.06, + "end": 1202.32, + "probability": 0.998046875 + }, + { + "word": " right.", + "start": 1202.32, + "end": 1202.52, + "probability": 0.978515625 + } + ] + }, + { + "id": 554, + "text": "They're going to be hacking your car.", + "start": 1202.56, + "end": 1203.56, + "words": [ + { + "word": " They're", + "start": 1202.56, + "end": 1202.76, + "probability": 0.61767578125 + }, + { + "word": " going", + "start": 1202.76, + "end": 1202.82, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 1202.82, + "end": 1202.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 1202.86, + "end": 1202.92, + "probability": 1.0 + }, + { + "word": " hacking", + "start": 1202.92, + "end": 1203.16, + "probability": 1.0 + }, + { + "word": " your", + "start": 1203.16, + "end": 1203.34, + "probability": 1.0 + }, + { + "word": " car.", + "start": 1203.34, + "end": 1203.56, + "probability": 1.0 + } + ] + }, + { + "id": 555, + "text": "Well, I mean, you think about it.", + "start": 1203.76, + "end": 1204.76, + "words": [ + { + "word": " Well,", + "start": 1203.76, + "end": 1203.92, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1204.02, + "end": 1204.08, + "probability": 0.99755859375 + }, + { + "word": " mean,", + "start": 1204.08, + "end": 1204.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 1204.26, + "end": 1204.36, + "probability": 0.9921875 + }, + { + "word": " think", + "start": 1204.36, + "end": 1204.52, + "probability": 1.0 + }, + { + "word": " about", + "start": 1204.52, + "end": 1204.7, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1204.7, + "end": 1204.76, + "probability": 0.87353515625 + } + ] + }, + { + "id": 556, + "text": "There's some cars out there, some of these new fancy cars that connect to the Internet wherever they go,", + "start": 1204.82, + "end": 1210.18, + "words": [ + { + "word": " There's", + "start": 1204.82, + "end": 1204.88, + "probability": 0.9912109375 + }, + { + "word": " some", + "start": 1204.88, + "end": 1205.24, + "probability": 1.0 + }, + { + "word": " cars", + "start": 1205.24, + "end": 1205.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 1205.5, + "end": 1205.74, + "probability": 1.0 + }, + { + "word": " there,", + "start": 1205.74, + "end": 1206.04, + "probability": 1.0 + }, + { + "word": " some", + "start": 1206.16, + "end": 1206.34, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1206.34, + "end": 1206.42, + "probability": 1.0 + }, + { + "word": " these", + "start": 1206.42, + "end": 1206.56, + "probability": 1.0 + }, + { + "word": " new", + "start": 1206.56, + "end": 1206.9, + "probability": 1.0 + }, + { + "word": " fancy", + "start": 1206.9, + "end": 1207.56, + "probability": 0.95458984375 + }, + { + "word": " cars", + "start": 1207.56, + "end": 1208.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 1208.02, + "end": 1208.54, + "probability": 0.9833984375 + }, + { + "word": " connect", + "start": 1208.54, + "end": 1208.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1208.9, + "end": 1209.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1209.06, + "end": 1209.14, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1209.14, + "end": 1209.4, + "probability": 0.8837890625 + }, + { + "word": " wherever", + "start": 1209.4, + "end": 1209.66, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1209.66, + "end": 1209.92, + "probability": 1.0 + }, + { + "word": " go,", + "start": 1209.92, + "end": 1210.18, + "probability": 1.0 + } + ] + }, + { + "id": 557, + "text": "like, let's say, the Leaf.", + "start": 1210.32, + "end": 1211.64, + "words": [ + { + "word": " like,", + "start": 1210.32, + "end": 1210.52, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1210.6, + "end": 1210.82, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1210.82, + "end": 1210.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1210.98, + "end": 1211.12, + "probability": 0.994140625 + }, + { + "word": " Leaf.", + "start": 1211.12, + "end": 1211.64, + "probability": 0.93896484375 + } + ] + }, + { + "id": 558, + "text": "Right.", + "start": 1212.0600000000002, + "end": 1212.38, + "words": [ + { + "word": " Right.", + "start": 1212.0600000000002, + "end": 1212.38, + "probability": 0.99609375 + } + ] + }, + { + "id": 559, + "text": "With a car like that that's constantly hooked up to the Internet, you don't have to have physical contact with it.", + "start": 1213.44, + "end": 1217.62, + "words": [ + { + "word": " With", + "start": 1213.44, + "end": 1213.76, + "probability": 0.9619140625 + }, + { + "word": " a", + "start": 1213.76, + "end": 1213.94, + "probability": 1.0 + }, + { + "word": " car", + "start": 1213.94, + "end": 1214.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 1214.1, + "end": 1214.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 1214.3, + "end": 1214.52, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1214.52, + "end": 1214.66, + "probability": 0.9892578125 + }, + { + "word": " constantly", + "start": 1214.66, + "end": 1215.02, + "probability": 1.0 + }, + { + "word": " hooked", + "start": 1215.02, + "end": 1215.18, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1215.18, + "end": 1215.26, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 1215.26, + "end": 1215.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1215.3, + "end": 1215.38, + "probability": 1.0 + }, + { + "word": " Internet,", + "start": 1215.38, + "end": 1215.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 1215.82, + "end": 1216.16, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1216.16, + "end": 1216.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 1216.32, + "end": 1216.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1216.42, + "end": 1216.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 1216.54, + "end": 1216.62, + "probability": 1.0 + }, + { + "word": " physical", + "start": 1216.62, + "end": 1216.86, + "probability": 1.0 + }, + { + "word": " contact", + "start": 1216.86, + "end": 1217.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 1217.26, + "end": 1217.5, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1217.5, + "end": 1217.62, + "probability": 1.0 + } + ] + }, + { + "id": 560, + "text": "You just have to really have a really good hacker.", + "start": 1217.64, + "end": 1219.04, + "words": [ + { + "word": " You", + "start": 1217.64, + "end": 1217.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 1217.7, + "end": 1217.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 1217.78, + "end": 1217.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1217.88, + "end": 1218.0, + "probability": 1.0 + }, + { + "word": " really", + "start": 1218.0, + "end": 1218.18, + "probability": 0.5302734375 + }, + { + "word": " have", + "start": 1218.18, + "end": 1218.34, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 1218.34, + "end": 1218.4, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1218.4, + "end": 1218.6, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 1218.6, + "end": 1218.76, + "probability": 1.0 + }, + { + "word": " hacker.", + "start": 1218.76, + "end": 1219.04, + "probability": 1.0 + } + ] + }, + { + "id": 561, + "text": "And once they get it figured out the first time, well, they're done for.", + "start": 1219.54, + "end": 1222.12, + "words": [ + { + "word": " And", + "start": 1219.54, + "end": 1219.86, + "probability": 0.9990234375 + }, + { + "word": " once", + "start": 1219.86, + "end": 1220.16, + "probability": 1.0 + }, + { + "word": " they", + "start": 1220.16, + "end": 1220.22, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 1220.22, + "end": 1220.36, + "probability": 0.9833984375 + }, + { + "word": " it", + "start": 1220.36, + "end": 1220.44, + "probability": 0.99951171875 + }, + { + "word": " figured", + "start": 1220.44, + "end": 1220.6, + "probability": 1.0 + }, + { + "word": " out", + "start": 1220.6, + "end": 1220.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1220.74, + "end": 1220.84, + "probability": 1.0 + }, + { + "word": " first", + "start": 1220.84, + "end": 1221.0, + "probability": 1.0 + }, + { + "word": " time,", + "start": 1221.0, + "end": 1221.34, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1221.4, + "end": 1221.68, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1221.68, + "end": 1221.8, + "probability": 1.0 + }, + { + "word": " done", + "start": 1221.8, + "end": 1221.94, + "probability": 1.0 + }, + { + "word": " for.", + "start": 1221.94, + "end": 1222.12, + "probability": 1.0 + } + ] + }, + { + "id": 562, + "text": "I don't know.", + "start": 1222.38, + "end": 1223.14, + "words": [ + { + "word": " I", + "start": 1222.38, + "end": 1222.7, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1222.7, + "end": 1223.0, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1223.0, + "end": 1223.14, + "probability": 1.0 + } + ] + }, + { + "id": 563, + "text": "What could you do by hacking the Leaf?", + "start": 1223.2, + "end": 1225.1, + "words": [ + { + "word": " What", + "start": 1223.2, + "end": 1223.36, + "probability": 0.81396484375 + }, + { + "word": " could", + "start": 1223.36, + "end": 1223.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 1223.88, + "end": 1224.06, + "probability": 1.0 + }, + { + "word": " do", + "start": 1224.06, + "end": 1224.26, + "probability": 1.0 + }, + { + "word": " by", + "start": 1224.26, + "end": 1224.4, + "probability": 0.99951171875 + }, + { + "word": " hacking", + "start": 1224.4, + "end": 1224.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1224.7, + "end": 1224.88, + "probability": 1.0 + }, + { + "word": " Leaf?", + "start": 1224.88, + "end": 1225.1, + "probability": 1.0 + } + ] + }, + { + "id": 564, + "text": "Make it possible.", + "start": 1225.2, + "end": 1225.6, + "words": [ + { + "word": " Make", + "start": 1225.2, + "end": 1225.4, + "probability": 0.90869140625 + }, + { + "word": " it", + "start": 1225.4, + "end": 1225.58, + "probability": 0.98681640625 + }, + { + "word": " possible.", + "start": 1225.58, + "end": 1225.6, + "probability": 0.10150146484375 + } + ] + }, + { + "id": 565, + "text": "", + "start": 1225.6, + "end": 1225.6, + "words": [] + }, + { + "id": 566, + "text": "", + "start": 1225.6, + "end": 1225.6, + "words": [] + }, + { + "id": 567, + "text": "", + "start": 1225.6, + "end": 1225.6, + "words": [] + }, + { + "id": 568, + "text": "You can't make it prettier.", + "start": 1225.62, + "end": 1226.48, + "words": [ + { + "word": " You", + "start": 1225.62, + "end": 1225.78, + "probability": 0.8115234375 + }, + { + "word": " can't", + "start": 1225.78, + "end": 1225.98, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 1225.98, + "end": 1226.12, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1226.12, + "end": 1226.22, + "probability": 0.99951171875 + }, + { + "word": " prettier.", + "start": 1226.22, + "end": 1226.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 569, + "text": "Careful now.", + "start": 1229.1800000000003, + "end": 1229.9, + "words": [ + { + "word": " Careful", + "start": 1229.1800000000003, + "end": 1229.5400000000002, + "probability": 0.640625 + }, + { + "word": " now.", + "start": 1229.5400000000002, + "end": 1229.9, + "probability": 0.919921875 + } + ] + }, + { + "id": 570, + "text": "There's a couple all around in town.", + "start": 1229.92, + "end": 1231.02, + "words": [ + { + "word": " There's", + "start": 1229.92, + "end": 1230.06, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1230.06, + "end": 1230.14, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1230.14, + "end": 1230.32, + "probability": 1.0 + }, + { + "word": " all", + "start": 1230.32, + "end": 1230.44, + "probability": 0.4228515625 + }, + { + "word": " around", + "start": 1230.44, + "end": 1230.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 1230.66, + "end": 1230.84, + "probability": 0.94970703125 + }, + { + "word": " town.", + "start": 1230.84, + "end": 1231.02, + "probability": 1.0 + } + ] + }, + { + "id": 571, + "text": "They might be listening.", + "start": 1231.08, + "end": 1231.64, + "words": [ + { + "word": " They", + "start": 1231.08, + "end": 1231.16, + "probability": 0.962890625 + }, + { + "word": " might", + "start": 1231.16, + "end": 1231.26, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1231.26, + "end": 1231.36, + "probability": 1.0 + }, + { + "word": " listening.", + "start": 1231.36, + "end": 1231.64, + "probability": 1.0 + } + ] + }, + { + "id": 572, + "text": "You can't make it uglier.", + "start": 1231.76, + "end": 1232.52, + "words": [ + { + "word": " You", + "start": 1231.76, + "end": 1231.84, + "probability": 0.98876953125 + }, + { + "word": " can't", + "start": 1231.84, + "end": 1232.04, + "probability": 1.0 + }, + { + "word": " make", + "start": 1232.04, + "end": 1232.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 1232.16, + "end": 1232.24, + "probability": 1.0 + }, + { + "word": " uglier.", + "start": 1232.24, + "end": 1232.52, + "probability": 1.0 + } + ] + }, + { + "id": 573, + "text": "I guess you can make it to where, you know, the battery is constantly.", + "start": 1235.5000000000002, + "end": 1238.74, + "words": [ + { + "word": " I", + "start": 1235.5000000000002, + "end": 1235.8600000000001, + "probability": 0.6494140625 + }, + { + "word": " guess", + "start": 1235.8600000000001, + "end": 1236.22, + "probability": 0.9873046875 + }, + { + "word": " you", + "start": 1236.22, + "end": 1236.46, + "probability": 1.0 + }, + { + "word": " can", + "start": 1236.46, + "end": 1236.56, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 1236.56, + "end": 1236.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 1236.72, + "end": 1236.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1236.78, + "end": 1236.88, + "probability": 0.9990234375 + }, + { + "word": " where,", + "start": 1236.88, + "end": 1237.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 1237.18, + "end": 1237.34, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1237.34, + "end": 1237.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1237.52, + "end": 1237.86, + "probability": 0.99951171875 + }, + { + "word": " battery", + "start": 1237.86, + "end": 1238.24, + "probability": 0.828125 + }, + { + "word": " is", + "start": 1238.24, + "end": 1238.5, + "probability": 0.9677734375 + }, + { + "word": " constantly.", + "start": 1238.5, + "end": 1238.74, + "probability": 0.7646484375 + } + ] + }, + { + "id": 574, + "text": "I don't know.", + "start": 1238.88, + "end": 1239.22, + "words": [ + { + "word": " I", + "start": 1238.88, + "end": 1238.98, + "probability": 0.98291015625 + }, + { + "word": " don't", + "start": 1238.98, + "end": 1239.1, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1239.1, + "end": 1239.22, + "probability": 1.0 + } + ] + }, + { + "id": 575, + "text": "I have no idea.", + "start": 1239.32, + "end": 1239.98, + "words": [ + { + "word": " I", + "start": 1239.32, + "end": 1239.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 1239.48, + "end": 1239.6, + "probability": 1.0 + }, + { + "word": " no", + "start": 1239.6, + "end": 1239.74, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 1239.74, + "end": 1239.98, + "probability": 1.0 + } + ] + }, + { + "id": 576, + "text": "I'm on vapor soon.", + "start": 1240.28, + "end": 1241.52, + "words": [ + { + "word": " I'm", + "start": 1240.28, + "end": 1240.64, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1240.64, + "end": 1240.96, + "probability": 0.998046875 + }, + { + "word": " vapor", + "start": 1240.96, + "end": 1241.32, + "probability": 0.7060546875 + }, + { + "word": " soon.", + "start": 1241.32, + "end": 1241.52, + "probability": 0.464599609375 + } + ] + }, + { + "id": 577, + "text": "I have no idea what to do.", + "start": 1241.54, + "end": 1242.46, + "words": [ + { + "word": " I", + "start": 1241.54, + "end": 1241.74, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 1241.74, + "end": 1241.74, + "probability": 1.0 + }, + { + "word": " no", + "start": 1241.74, + "end": 1241.9, + "probability": 1.0 + }, + { + "word": " idea", + "start": 1241.9, + "end": 1242.08, + "probability": 1.0 + }, + { + "word": " what", + "start": 1242.08, + "end": 1242.24, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1242.24, + "end": 1242.28, + "probability": 0.701171875 + }, + { + "word": " do.", + "start": 1242.28, + "end": 1242.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 578, + "text": "Start a Leaf fire.", + "start": 1242.58, + "end": 1243.84, + "words": [ + { + "word": " Start", + "start": 1242.58, + "end": 1242.94, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 1242.94, + "end": 1243.22, + "probability": 1.0 + }, + { + "word": " Leaf", + "start": 1243.22, + "end": 1243.56, + "probability": 0.007259368896484375 + }, + { + "word": " fire.", + "start": 1243.56, + "end": 1243.84, + "probability": 0.0235443115234375 + } + ] + }, + { + "id": 579, + "text": "A Leaf fire.", + "start": 1244.16, + "end": 1245.12, + "words": [ + { + "word": " A", + "start": 1244.16, + "end": 1244.4, + "probability": 0.99853515625 + }, + { + "word": " Leaf", + "start": 1244.4, + "end": 1244.78, + "probability": 0.99658203125 + }, + { + "word": " fire.", + "start": 1244.78, + "end": 1245.12, + "probability": 1.0 + } + ] + }, + { + "id": 580, + "text": "That's terrible.", + "start": 1245.5600000000002, + "end": 1246.28, + "words": [ + { + "word": " That's", + "start": 1245.5600000000002, + "end": 1245.92, + "probability": 0.9765625 + }, + { + "word": " terrible.", + "start": 1245.92, + "end": 1246.28, + "probability": 1.0 + } + ] + }, + { + "id": 581, + "text": "No, I guess you can make it to where, you know, the car will open.", + "start": 1247.3200000000002, + "end": 1250.42, + "words": [ + { + "word": " No,", + "start": 1247.3200000000002, + "end": 1247.68, + "probability": 0.97607421875 + }, + { + "word": " I", + "start": 1247.7, + "end": 1247.8, + "probability": 1.0 + }, + { + "word": " guess", + "start": 1247.8, + "end": 1248.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 1248.04, + "end": 1248.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 1248.16, + "end": 1248.26, + "probability": 1.0 + }, + { + "word": " make", + "start": 1248.26, + "end": 1248.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 1248.4, + "end": 1248.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1248.5, + "end": 1248.62, + "probability": 1.0 + }, + { + "word": " where,", + "start": 1248.62, + "end": 1248.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 1248.9, + "end": 1249.46, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 1249.46, + "end": 1249.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1249.66, + "end": 1249.74, + "probability": 0.99951171875 + }, + { + "word": " car", + "start": 1249.74, + "end": 1249.9, + "probability": 1.0 + }, + { + "word": " will", + "start": 1249.9, + "end": 1250.08, + "probability": 0.966796875 + }, + { + "word": " open.", + "start": 1250.08, + "end": 1250.42, + "probability": 1.0 + } + ] + }, + { + "id": 582, + "text": "Yeah.", + "start": 1251.5200000000002, + "end": 1251.88, + "words": [ + { + "word": " Yeah.", + "start": 1251.5200000000002, + "end": 1251.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 583, + "text": "Something like that.", + "start": 1252.02, + "end": 1252.7, + "words": [ + { + "word": " Something", + "start": 1252.02, + "end": 1252.38, + "probability": 0.97802734375 + }, + { + "word": " like", + "start": 1252.38, + "end": 1252.58, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1252.58, + "end": 1252.7, + "probability": 1.0 + } + ] + }, + { + "id": 584, + "text": "You can unlock the car.", + "start": 1252.72, + "end": 1253.4, + "words": [ + { + "word": " You", + "start": 1252.72, + "end": 1252.78, + "probability": 0.98193359375 + }, + { + "word": " can", + "start": 1252.78, + "end": 1252.78, + "probability": 0.9990234375 + }, + { + "word": " unlock", + "start": 1252.78, + "end": 1252.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1252.98, + "end": 1253.22, + "probability": 1.0 + }, + { + "word": " car.", + "start": 1253.22, + "end": 1253.4, + "probability": 1.0 + } + ] + }, + { + "id": 585, + "text": "I guess you could do something like that.", + "start": 1253.58, + "end": 1254.84, + "words": [ + { + "word": " I", + "start": 1253.58, + "end": 1253.78, + "probability": 0.99853515625 + }, + { + "word": " guess", + "start": 1253.78, + "end": 1254.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 1254.02, + "end": 1254.12, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 1254.12, + "end": 1254.24, + "probability": 0.72802734375 + }, + { + "word": " do", + "start": 1254.24, + "end": 1254.36, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 1254.36, + "end": 1254.56, + "probability": 1.0 + }, + { + "word": " like", + "start": 1254.56, + "end": 1254.74, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1254.74, + "end": 1254.84, + "probability": 1.0 + } + ] + }, + { + "id": 586, + "text": "Hey, bud.", + "start": 1254.92, + "end": 1255.4, + "words": [ + { + "word": " Hey,", + "start": 1254.92, + "end": 1255.18, + "probability": 0.9873046875 + }, + { + "word": " bud.", + "start": 1255.2, + "end": 1255.4, + "probability": 0.28369140625 + } + ] + }, + { + "id": 587, + "text": "If you have an extra bathroom in your house that you want to rent out,", + "start": 1255.62, + "end": 1257.94, + "words": [ + { + "word": " If", + "start": 1255.62, + "end": 1255.76, + "probability": 0.8603515625 + }, + { + "word": " you", + "start": 1255.76, + "end": 1255.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 1255.88, + "end": 1256.02, + "probability": 1.0 + }, + { + "word": " an", + "start": 1256.02, + "end": 1256.1, + "probability": 1.0 + }, + { + "word": " extra", + "start": 1256.1, + "end": 1256.32, + "probability": 1.0 + }, + { + "word": " bathroom", + "start": 1256.32, + "end": 1256.76, + "probability": 1.0 + }, + { + "word": " in", + "start": 1256.76, + "end": 1256.88, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1256.88, + "end": 1256.96, + "probability": 1.0 + }, + { + "word": " house", + "start": 1256.96, + "end": 1257.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1257.14, + "end": 1257.24, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 1257.24, + "end": 1257.34, + "probability": 1.0 + }, + { + "word": " want", + "start": 1257.34, + "end": 1257.48, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1257.48, + "end": 1257.56, + "probability": 1.0 + }, + { + "word": " rent", + "start": 1257.56, + "end": 1257.72, + "probability": 1.0 + }, + { + "word": " out,", + "start": 1257.72, + "end": 1257.94, + "probability": 1.0 + } + ] + }, + { + "id": 588, + "text": "I'm going to tell you how you can do that here in a few minutes.", + "start": 1258.06, + "end": 1259.54, + "words": [ + { + "word": " I'm", + "start": 1258.06, + "end": 1258.3, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1258.3, + "end": 1258.38, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1258.38, + "end": 1258.44, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1258.44, + "end": 1258.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 1258.56, + "end": 1258.64, + "probability": 1.0 + }, + { + "word": " how", + "start": 1258.64, + "end": 1258.74, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1258.74, + "end": 1258.76, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1258.76, + "end": 1258.84, + "probability": 1.0 + }, + { + "word": " do", + "start": 1258.84, + "end": 1258.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 1258.98, + "end": 1259.06, + "probability": 1.0 + }, + { + "word": " here", + "start": 1259.06, + "end": 1259.14, + "probability": 0.98974609375 + }, + { + "word": " in", + "start": 1259.14, + "end": 1259.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 1259.22, + "end": 1259.24, + "probability": 1.0 + }, + { + "word": " few", + "start": 1259.24, + "end": 1259.32, + "probability": 1.0 + }, + { + "word": " minutes.", + "start": 1259.32, + "end": 1259.54, + "probability": 1.0 + } + ] + }, + { + "id": 589, + "text": "Fantastic.", + "start": 1260.16, + "end": 1260.56, + "words": [ + { + "word": " Fantastic.", + "start": 1260.16, + "end": 1260.56, + "probability": 0.35302734375 + } + ] + }, + { + "id": 590, + "text": "Oh, that's awesome.", + "start": 1261.96, + "end": 1262.84, + "words": [ + { + "word": " Oh,", + "start": 1261.96, + "end": 1262.36, + "probability": 0.3525390625 + }, + { + "word": " that's", + "start": 1262.4, + "end": 1262.62, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 1262.62, + "end": 1262.84, + "probability": 1.0 + } + ] + }, + { + "id": 591, + "text": "You're listening to The Computer Guru Show right here on 104.1 The Truth,", + "start": 1262.92, + "end": 1265.78, + "words": [ + { + "word": " You're", + "start": 1262.92, + "end": 1263.04, + "probability": 0.9990234375 + }, + { + "word": " listening", + "start": 1263.04, + "end": 1263.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1263.26, + "end": 1263.36, + "probability": 1.0 + }, + { + "word": " The", + "start": 1263.36, + "end": 1263.46, + "probability": 0.73681640625 + }, + { + "word": " Computer", + "start": 1263.46, + "end": 1263.64, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 1263.64, + "end": 1263.9, + "probability": 0.994140625 + }, + { + "word": " Show", + "start": 1263.9, + "end": 1264.12, + "probability": 0.98388671875 + }, + { + "word": " right", + "start": 1264.12, + "end": 1264.56, + "probability": 0.9716796875 + }, + { + "word": " here", + "start": 1264.56, + "end": 1264.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 1264.78, + "end": 1265.04, + "probability": 1.0 + }, + { + "word": " 104", + "start": 1265.04, + "end": 1265.28, + "probability": 0.9775390625 + }, + { + "word": ".1", + "start": 1265.28, + "end": 1265.48, + "probability": 0.986328125 + }, + { + "word": " The", + "start": 1265.48, + "end": 1265.58, + "probability": 0.99267578125 + }, + { + "word": " Truth,", + "start": 1265.58, + "end": 1265.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 592, + "text": "Tucson's News Talk FM.", + "start": 1265.96, + "end": 1267.12, + "words": [ + { + "word": " Tucson's", + "start": 1265.96, + "end": 1266.54, + "probability": 0.9951171875 + }, + { + "word": " News", + "start": 1266.54, + "end": 1266.66, + "probability": 0.66943359375 + }, + { + "word": " Talk", + "start": 1266.66, + "end": 1266.84, + "probability": 0.99267578125 + }, + { + "word": " FM.", + "start": 1266.84, + "end": 1267.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 593, + "text": "Never miss a moment of The Computer Guru.", + "start": 1275.02, + "end": 1276.92, + "words": [ + { + "word": " Never", + "start": 1275.02, + "end": 1275.42, + "probability": 0.91015625 + }, + { + "word": " miss", + "start": 1275.42, + "end": 1275.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1275.68, + "end": 1275.82, + "probability": 1.0 + }, + { + "word": " moment", + "start": 1275.82, + "end": 1276.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1276.06, + "end": 1276.24, + "probability": 1.0 + }, + { + "word": " The", + "start": 1276.24, + "end": 1276.32, + "probability": 0.96435546875 + }, + { + "word": " Computer", + "start": 1276.32, + "end": 1276.64, + "probability": 1.0 + }, + { + "word": " Guru.", + "start": 1276.64, + "end": 1276.92, + "probability": 1.0 + } + ] + }, + { + "id": 594, + "text": "Go to 104.1thetruth.com for podcasts of every show.", + "start": 1277.16, + "end": 1280.8, + "words": [ + { + "word": " Go", + "start": 1277.16, + "end": 1277.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1277.4, + "end": 1277.58, + "probability": 1.0 + }, + { + "word": " 104", + "start": 1277.58, + "end": 1277.9, + "probability": 0.98486328125 + }, + { + "word": ".1thetruth", + "start": 1277.9, + "end": 1278.64, + "probability": 0.951171875 + }, + { + "word": ".com", + "start": 1278.64, + "end": 1279.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 1279.12, + "end": 1279.38, + "probability": 1.0 + }, + { + "word": " podcasts", + "start": 1279.38, + "end": 1279.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1279.78, + "end": 1280.28, + "probability": 1.0 + }, + { + "word": " every", + "start": 1280.28, + "end": 1280.5, + "probability": 1.0 + }, + { + "word": " show.", + "start": 1280.5, + "end": 1280.8, + "probability": 1.0 + } + ] + }, + { + "id": 595, + "text": "This is The Computer Guru.", + "start": 1281.0, + "end": 1282.62, + "words": [ + { + "word": " This", + "start": 1281.0, + "end": 1281.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 1281.28, + "end": 1281.62, + "probability": 1.0 + }, + { + "word": " The", + "start": 1281.62, + "end": 1281.82, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 1281.82, + "end": 1282.18, + "probability": 1.0 + }, + { + "word": " Guru.", + "start": 1282.18, + "end": 1282.62, + "probability": 1.0 + } + ] + }, + { + "id": 596, + "text": "Now.", + "start": 1282.94, + "end": 1283.34, + "words": [ + { + "word": " Now.", + "start": 1282.94, + "end": 1283.34, + "probability": 0.99609375 + } + ] + }, + { + "id": 597, + "text": "Now.", + "start": 1283.34, + "end": 1283.64, + "words": [ + { + "word": " Now.", + "start": 1283.34, + "end": 1283.64, + "probability": 0.86572265625 + } + ] + }, + { + "id": 598, + "text": "Back to more of The Computer Guru.", + "start": 1283.66, + "end": 1285.48, + "words": [ + { + "word": " Back", + "start": 1283.66, + "end": 1283.86, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 1283.86, + "end": 1284.18, + "probability": 1.0 + }, + { + "word": " more", + "start": 1284.18, + "end": 1284.5, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1284.5, + "end": 1284.66, + "probability": 0.99951171875 + }, + { + "word": " The", + "start": 1284.66, + "end": 1284.76, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 1284.76, + "end": 1285.12, + "probability": 1.0 + }, + { + "word": " Guru.", + "start": 1285.12, + "end": 1285.48, + "probability": 1.0 + } + ] + }, + { + "id": 599, + "text": "On 104.1 The Truth, Tucson's News Talk FM.", + "start": 1285.62, + "end": 1288.72, + "words": [ + { + "word": " On", + "start": 1285.62, + "end": 1285.86, + "probability": 0.2406005859375 + }, + { + "word": " 104", + "start": 1285.86, + "end": 1286.34, + "probability": 0.9716796875 + }, + { + "word": ".1", + "start": 1286.34, + "end": 1286.74, + "probability": 0.99609375 + }, + { + "word": " The", + "start": 1286.74, + "end": 1286.86, + "probability": 0.95361328125 + }, + { + "word": " Truth,", + "start": 1286.86, + "end": 1287.04, + "probability": 0.86962890625 + }, + { + "word": " Tucson's", + "start": 1287.18, + "end": 1287.9, + "probability": 0.689453125 + }, + { + "word": " News", + "start": 1287.9, + "end": 1288.04, + "probability": 0.6025390625 + }, + { + "word": " Talk", + "start": 1288.04, + "end": 1288.3, + "probability": 0.9921875 + }, + { + "word": " FM.", + "start": 1288.3, + "end": 1288.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 600, + "text": "You know, I've been telling people for a long time when they get a traffic ticket and you", + "start": 1290.48, + "end": 1296.38, + "words": [ + { + "word": " You", + "start": 1290.48, + "end": 1291.0, + "probability": 0.9970703125 + }, + { + "word": " know,", + "start": 1291.0, + "end": 1291.22, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1291.32, + "end": 1292.04, + "probability": 1.0 + }, + { + "word": " been", + "start": 1292.04, + "end": 1292.08, + "probability": 1.0 + }, + { + "word": " telling", + "start": 1292.08, + "end": 1292.26, + "probability": 1.0 + }, + { + "word": " people", + "start": 1292.26, + "end": 1292.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 1292.46, + "end": 1292.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1292.68, + "end": 1292.78, + "probability": 1.0 + }, + { + "word": " long", + "start": 1292.78, + "end": 1292.96, + "probability": 1.0 + }, + { + "word": " time", + "start": 1292.96, + "end": 1293.28, + "probability": 1.0 + }, + { + "word": " when", + "start": 1293.28, + "end": 1293.64, + "probability": 0.53857421875 + }, + { + "word": " they", + "start": 1293.64, + "end": 1293.98, + "probability": 0.99560546875 + }, + { + "word": " get", + "start": 1293.98, + "end": 1294.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 1294.14, + "end": 1294.22, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 1294.22, + "end": 1294.46, + "probability": 1.0 + }, + { + "word": " ticket", + "start": 1294.46, + "end": 1294.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 1294.78, + "end": 1296.06, + "probability": 0.80126953125 + }, + { + "word": " you", + "start": 1296.06, + "end": 1296.38, + "probability": 0.98974609375 + } + ] + }, + { + "id": 601, + "text": "get the email about it.", + "start": 1296.38, + "end": 1297.52, + "words": [ + { + "word": " get", + "start": 1296.38, + "end": 1296.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 1296.54, + "end": 1296.66, + "probability": 1.0 + }, + { + "word": " email", + "start": 1296.66, + "end": 1296.92, + "probability": 0.8515625 + }, + { + "word": " about", + "start": 1296.92, + "end": 1297.22, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1297.22, + "end": 1297.52, + "probability": 1.0 + } + ] + }, + { + "id": 602, + "text": "Ignore it.", + "start": 1298.02, + "end": 1298.58, + "words": [ + { + "word": " Ignore", + "start": 1298.02, + "end": 1298.54, + "probability": 0.99658203125 + }, + { + "word": " it.", + "start": 1298.54, + "end": 1298.58, + "probability": 1.0 + } + ] + }, + { + "id": 603, + "text": "You should be ignoring it.", + "start": 1298.64, + "end": 1299.72, + "words": [ + { + "word": " You", + "start": 1298.64, + "end": 1298.74, + "probability": 0.998046875 + }, + { + "word": " should", + "start": 1298.74, + "end": 1298.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 1298.92, + "end": 1299.06, + "probability": 1.0 + }, + { + "word": " ignoring", + "start": 1299.06, + "end": 1299.32, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1299.32, + "end": 1299.72, + "probability": 1.0 + } + ] + }, + { + "id": 604, + "text": "And here is the reason why now.", + "start": 1299.78, + "end": 1301.82, + "words": [ + { + "word": " And", + "start": 1299.78, + "end": 1299.9, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 1299.9, + "end": 1300.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1300.18, + "end": 1300.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1300.52, + "end": 1300.68, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1300.68, + "end": 1301.22, + "probability": 1.0 + }, + { + "word": " why", + "start": 1301.22, + "end": 1301.5, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1301.5, + "end": 1301.82, + "probability": 1.0 + } + ] + }, + { + "id": 605, + "text": "Because before it was just because I disagree with the service method.", + "start": 1302.0, + "end": 1307.02, + "words": [ + { + "word": " Because", + "start": 1302.0, + "end": 1302.36, + "probability": 0.99853515625 + }, + { + "word": " before", + "start": 1302.36, + "end": 1302.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 1302.66, + "end": 1302.88, + "probability": 0.994140625 + }, + { + "word": " was", + "start": 1302.88, + "end": 1303.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 1303.02, + "end": 1303.22, + "probability": 1.0 + }, + { + "word": " because", + "start": 1303.22, + "end": 1303.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 1303.66, + "end": 1304.42, + "probability": 1.0 + }, + { + "word": " disagree", + "start": 1304.42, + "end": 1304.74, + "probability": 1.0 + }, + { + "word": " with", + "start": 1304.74, + "end": 1305.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1305.22, + "end": 1305.46, + "probability": 1.0 + }, + { + "word": " service", + "start": 1305.46, + "end": 1306.42, + "probability": 0.99951171875 + }, + { + "word": " method.", + "start": 1306.42, + "end": 1307.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 606, + "text": "Right.", + "start": 1307.32, + "end": 1307.72, + "words": [ + { + "word": " Right.", + "start": 1307.32, + "end": 1307.72, + "probability": 0.9833984375 + } + ] + }, + { + "id": 607, + "text": "Right.", + "start": 1307.86, + "end": 1308.04, + "words": [ + { + "word": " Right.", + "start": 1307.86, + "end": 1308.04, + "probability": 0.317138671875 + } + ] + }, + { + "id": 608, + "text": "Now, it's because it's probably a virus.", + "start": 1308.1, + "end": 1311.0, + "words": [ + { + "word": " Now,", + "start": 1308.1, + "end": 1308.62, + "probability": 0.99560546875 + }, + { + "word": " it's", + "start": 1308.72, + "end": 1309.36, + "probability": 1.0 + }, + { + "word": " because", + "start": 1309.36, + "end": 1309.72, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1309.72, + "end": 1310.04, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 1310.04, + "end": 1310.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 1310.36, + "end": 1310.66, + "probability": 1.0 + }, + { + "word": " virus.", + "start": 1310.66, + "end": 1311.0, + "probability": 1.0 + } + ] + }, + { + "id": 609, + "text": "Interesting.", + "start": 1311.74, + "end": 1312.26, + "words": [ + { + "word": " Interesting.", + "start": 1311.74, + "end": 1312.26, + "probability": 0.97021484375 + } + ] + }, + { + "id": 610, + "text": "It gives me a much more satisfactory reason to say.", + "start": 1312.3, + "end": 1315.48, + "words": [ + { + "word": " It", + "start": 1312.3, + "end": 1312.56, + "probability": 0.9853515625 + }, + { + "word": " gives", + "start": 1312.56, + "end": 1312.72, + "probability": 1.0 + }, + { + "word": " me", + "start": 1312.72, + "end": 1312.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 1312.86, + "end": 1312.94, + "probability": 1.0 + }, + { + "word": " much", + "start": 1312.94, + "end": 1313.2, + "probability": 1.0 + }, + { + "word": " more", + "start": 1313.2, + "end": 1313.44, + "probability": 1.0 + }, + { + "word": " satisfactory", + "start": 1313.44, + "end": 1314.4, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1314.4, + "end": 1315.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1315.02, + "end": 1315.28, + "probability": 1.0 + }, + { + "word": " say.", + "start": 1315.28, + "end": 1315.48, + "probability": 1.0 + } + ] + }, + { + "id": 611, + "text": "You shouldn't open that email.", + "start": 1315.62, + "end": 1316.78, + "words": [ + { + "word": " You", + "start": 1315.62, + "end": 1315.78, + "probability": 0.375 + }, + { + "word": " shouldn't", + "start": 1315.78, + "end": 1316.26, + "probability": 0.99755859375 + }, + { + "word": " open", + "start": 1316.26, + "end": 1316.38, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 1316.38, + "end": 1316.56, + "probability": 0.9990234375 + }, + { + "word": " email.", + "start": 1316.56, + "end": 1316.78, + "probability": 0.7607421875 + } + ] + }, + { + "id": 612, + "text": "So now you get viruses from speeding tickets.", + "start": 1317.24, + "end": 1319.52, + "words": [ + { + "word": " So", + "start": 1317.24, + "end": 1317.6, + "probability": 0.97998046875 + }, + { + "word": " now", + "start": 1317.6, + "end": 1317.84, + "probability": 0.9072265625 + }, + { + "word": " you", + "start": 1317.84, + "end": 1317.98, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 1317.98, + "end": 1318.12, + "probability": 0.75537109375 + }, + { + "word": " viruses", + "start": 1318.12, + "end": 1318.6, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1318.6, + "end": 1318.94, + "probability": 0.9990234375 + }, + { + "word": " speeding", + "start": 1318.94, + "end": 1319.24, + "probability": 0.9990234375 + }, + { + "word": " tickets.", + "start": 1319.24, + "end": 1319.52, + "probability": 1.0 + } + ] + }, + { + "id": 613, + "text": "That's right.", + "start": 1319.8, + "end": 1320.18, + "words": [ + { + "word": " That's", + "start": 1319.8, + "end": 1320.02, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 1320.02, + "end": 1320.18, + "probability": 1.0 + } + ] + }, + { + "id": 614, + "text": "I like it.", + "start": 1320.36, + "end": 1321.16, + "words": [ + { + "word": " I", + "start": 1320.36, + "end": 1320.64, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 1320.64, + "end": 1320.94, + "probability": 0.98681640625 + }, + { + "word": " it.", + "start": 1320.94, + "end": 1321.16, + "probability": 1.0 + } + ] + }, + { + "id": 615, + "text": "This is one of the downfalls of speeding.", + "start": 1321.18, + "end": 1322.88, + "words": [ + { + "word": " This", + "start": 1321.18, + "end": 1321.32, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1321.32, + "end": 1321.48, + "probability": 1.0 + }, + { + "word": " one", + "start": 1321.48, + "end": 1321.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 1321.68, + "end": 1321.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1321.76, + "end": 1321.88, + "probability": 1.0 + }, + { + "word": " downfalls", + "start": 1321.88, + "end": 1322.42, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1322.42, + "end": 1322.58, + "probability": 1.0 + }, + { + "word": " speeding.", + "start": 1322.58, + "end": 1322.88, + "probability": 1.0 + } + ] + }, + { + "id": 616, + "text": "You get a virus now.", + "start": 1323.02, + "end": 1324.64, + "words": [ + { + "word": " You", + "start": 1323.02, + "end": 1323.28, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1323.28, + "end": 1323.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 1323.42, + "end": 1323.52, + "probability": 1.0 + }, + { + "word": " virus", + "start": 1323.52, + "end": 1324.24, + "probability": 0.9931640625 + }, + { + "word": " now.", + "start": 1324.24, + "end": 1324.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 617, + "text": "Maybe it's the city's way of, you know.", + "start": 1325.22, + "end": 1327.4, + "words": [ + { + "word": " Maybe", + "start": 1325.22, + "end": 1325.58, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1325.58, + "end": 1325.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1325.8, + "end": 1325.84, + "probability": 1.0 + }, + { + "word": " city's", + "start": 1325.84, + "end": 1326.2, + "probability": 1.0 + }, + { + "word": " way", + "start": 1326.2, + "end": 1326.34, + "probability": 1.0 + }, + { + "word": " of,", + "start": 1326.34, + "end": 1326.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 1326.62, + "end": 1327.16, + "probability": 0.99365234375 + }, + { + "word": " know.", + "start": 1327.16, + "end": 1327.4, + "probability": 1.0 + } + ] + }, + { + "id": 618, + "text": "We'll get you.", + "start": 1327.9, + "end": 1328.64, + "words": [ + { + "word": " We'll", + "start": 1327.9, + "end": 1328.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 1328.26, + "end": 1328.42, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1328.42, + "end": 1328.64, + "probability": 1.0 + } + ] + }, + { + "id": 619, + "text": "Yeah.", + "start": 1328.86, + "end": 1329.04, + "words": [ + { + "word": " Yeah.", + "start": 1328.86, + "end": 1329.04, + "probability": 0.82470703125 + } + ] + }, + { + "id": 620, + "text": "Fine.", + "start": 1329.6200000000001, + "end": 1329.98, + "words": [ + { + "word": " Fine.", + "start": 1329.6200000000001, + "end": 1329.98, + "probability": 0.60693359375 + } + ] + }, + { + "id": 621, + "text": "You're going to pay that money regardless.", + "start": 1330.26, + "end": 1331.48, + "words": [ + { + "word": " You're", + "start": 1330.26, + "end": 1330.52, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1330.52, + "end": 1330.6, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 1330.6, + "end": 1330.64, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1330.64, + "end": 1330.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 1330.8, + "end": 1330.94, + "probability": 1.0 + }, + { + "word": " money", + "start": 1330.94, + "end": 1331.12, + "probability": 1.0 + }, + { + "word": " regardless.", + "start": 1331.12, + "end": 1331.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 622, + "text": "You know, it's not going to be to us.", + "start": 1331.6, + "end": 1332.4, + "words": [ + { + "word": " You", + "start": 1331.6, + "end": 1331.68, + "probability": 0.268798828125 + }, + { + "word": " know,", + "start": 1331.68, + "end": 1331.74, + "probability": 0.99365234375 + }, + { + "word": " it's", + "start": 1331.8, + "end": 1331.9, + "probability": 1.0 + }, + { + "word": " not", + "start": 1331.9, + "end": 1331.92, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 1331.92, + "end": 1332.04, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1332.04, + "end": 1332.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 1332.1, + "end": 1332.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1332.14, + "end": 1332.24, + "probability": 1.0 + }, + { + "word": " us.", + "start": 1332.24, + "end": 1332.4, + "probability": 1.0 + } + ] + }, + { + "id": 623, + "text": "It's going to be to somebody else to get the virus off.", + "start": 1332.42, + "end": 1333.52, + "words": [ + { + "word": " It's", + "start": 1332.42, + "end": 1332.56, + "probability": 0.9033203125 + }, + { + "word": " going", + "start": 1332.56, + "end": 1332.58, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1332.58, + "end": 1332.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 1332.58, + "end": 1332.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 1332.6, + "end": 1332.68, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 1332.68, + "end": 1332.8, + "probability": 0.99951171875 + }, + { + "word": " else", + "start": 1332.8, + "end": 1332.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1332.94, + "end": 1333.02, + "probability": 0.99072265625 + }, + { + "word": " get", + "start": 1333.02, + "end": 1333.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1333.1, + "end": 1333.12, + "probability": 0.99609375 + }, + { + "word": " virus", + "start": 1333.12, + "end": 1333.34, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1333.34, + "end": 1333.52, + "probability": 0.99560546875 + } + ] + }, + { + "id": 624, + "text": "Yeah.", + "start": 1333.6, + "end": 1333.7, + "words": [ + { + "word": " Yeah.", + "start": 1333.6, + "end": 1333.7, + "probability": 0.95947265625 + } + ] + }, + { + "id": 625, + "text": "We're going to get taxes from somebody else if you don't pay this parking ticket or speeding ticket.", + "start": 1333.72, + "end": 1338.04, + "words": [ + { + "word": " We're", + "start": 1333.72, + "end": 1333.92, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1333.92, + "end": 1333.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1333.92, + "end": 1334.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 1334.04, + "end": 1334.12, + "probability": 1.0 + }, + { + "word": " taxes", + "start": 1334.12, + "end": 1334.52, + "probability": 1.0 + }, + { + "word": " from", + "start": 1334.52, + "end": 1334.76, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1334.76, + "end": 1335.08, + "probability": 1.0 + }, + { + "word": " else", + "start": 1335.08, + "end": 1335.42, + "probability": 1.0 + }, + { + "word": " if", + "start": 1335.42, + "end": 1335.66, + "probability": 0.93896484375 + }, + { + "word": " you", + "start": 1335.66, + "end": 1335.74, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1335.74, + "end": 1336.4, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1336.4, + "end": 1336.52, + "probability": 1.0 + }, + { + "word": " this", + "start": 1336.52, + "end": 1336.7, + "probability": 0.79248046875 + }, + { + "word": " parking", + "start": 1336.7, + "end": 1337.0, + "probability": 0.99560546875 + }, + { + "word": " ticket", + "start": 1337.0, + "end": 1337.32, + "probability": 1.0 + }, + { + "word": " or", + "start": 1337.32, + "end": 1337.48, + "probability": 0.57080078125 + }, + { + "word": " speeding", + "start": 1337.48, + "end": 1337.74, + "probability": 0.990234375 + }, + { + "word": " ticket.", + "start": 1337.74, + "end": 1338.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 626, + "text": "Oh, man.", + "start": 1338.18, + "end": 1338.3, + "words": [ + { + "word": " Oh,", + "start": 1338.18, + "end": 1338.26, + "probability": 0.98388671875 + }, + { + "word": " man.", + "start": 1338.26, + "end": 1338.3, + "probability": 1.0 + } + ] + }, + { + "id": 627, + "text": "You know, speaking of speeding tickets.", + "start": 1338.98, + "end": 1340.38, + "words": [ + { + "word": " You", + "start": 1338.98, + "end": 1339.34, + "probability": 0.99267578125 + }, + { + "word": " know,", + "start": 1339.34, + "end": 1339.42, + "probability": 1.0 + }, + { + "word": " speaking", + "start": 1339.42, + "end": 1339.66, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1339.66, + "end": 1339.88, + "probability": 1.0 + }, + { + "word": " speeding", + "start": 1339.88, + "end": 1340.04, + "probability": 1.0 + }, + { + "word": " tickets.", + "start": 1340.04, + "end": 1340.38, + "probability": 1.0 + } + ] + }, + { + "id": 628, + "text": "So I'm assuming it's an attachment with an email.", + "start": 1340.46, + "end": 1342.62, + "words": [ + { + "word": " So", + "start": 1340.46, + "end": 1340.64, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 1340.64, + "end": 1340.78, + "probability": 0.9873046875 + }, + { + "word": " assuming", + "start": 1340.78, + "end": 1340.96, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1340.96, + "end": 1341.18, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1341.18, + "end": 1341.2, + "probability": 1.0 + }, + { + "word": " attachment", + "start": 1341.2, + "end": 1341.56, + "probability": 1.0 + }, + { + "word": " with", + "start": 1341.56, + "end": 1341.9, + "probability": 0.9970703125 + }, + { + "word": " an", + "start": 1341.9, + "end": 1342.38, + "probability": 1.0 + }, + { + "word": " email.", + "start": 1342.38, + "end": 1342.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 629, + "text": "Yeah.", + "start": 1342.8, + "end": 1343.02, + "words": [ + { + "word": " Yeah.", + "start": 1342.8, + "end": 1343.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 630, + "text": "They're attaching it to an email.", + "start": 1343.06, + "end": 1344.08, + "words": [ + { + "word": " They're", + "start": 1343.06, + "end": 1343.26, + "probability": 0.9873046875 + }, + { + "word": " attaching", + "start": 1343.26, + "end": 1343.54, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1343.54, + "end": 1343.72, + "probability": 0.9384765625 + }, + { + "word": " to", + "start": 1343.72, + "end": 1343.82, + "probability": 0.9375 + }, + { + "word": " an", + "start": 1343.82, + "end": 1343.86, + "probability": 0.650390625 + }, + { + "word": " email.", + "start": 1343.86, + "end": 1344.08, + "probability": 1.0 + } + ] + }, + { + "id": 631, + "text": "Okay.", + "start": 1344.12, + "end": 1344.4, + "words": [ + { + "word": " Okay.", + "start": 1344.12, + "end": 1344.4, + "probability": 0.7939453125 + } + ] + }, + { + "id": 632, + "text": "And it's.", + "start": 1344.74, + "end": 1345.52, + "words": [ + { + "word": " And", + "start": 1344.74, + "end": 1345.1, + "probability": 0.89208984375 + }, + { + "word": " it's.", + "start": 1345.1, + "end": 1345.52, + "probability": 0.9833984375 + } + ] + }, + { + "id": 633, + "text": "It's stupid.", + "start": 1345.62, + "end": 1345.8, + "words": [ + { + "word": " It's", + "start": 1345.62, + "end": 1345.8, + "probability": 0.5439453125 + }, + { + "word": " stupid.", + "start": 1345.8, + "end": 1345.8, + "probability": 0.445068359375 + } + ] + }, + { + "id": 634, + "text": "But, yeah.", + "start": 1345.88, + "end": 1346.8, + "words": [ + { + "word": " But,", + "start": 1345.88, + "end": 1346.08, + "probability": 0.54052734375 + }, + { + "word": " yeah.", + "start": 1346.2, + "end": 1346.8, + "probability": 0.60205078125 + } + ] + }, + { + "id": 635, + "text": "It's just another reason that.", + "start": 1347.68, + "end": 1349.16, + "words": [ + { + "word": " It's", + "start": 1347.68, + "end": 1348.0, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1348.0, + "end": 1348.14, + "probability": 0.9990234375 + }, + { + "word": " another", + "start": 1348.14, + "end": 1348.36, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1348.36, + "end": 1348.76, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1348.76, + "end": 1349.16, + "probability": 0.99755859375 + } + ] + }, + { + "id": 636, + "text": "That you shouldn't open those emails.", + "start": 1350.1000000000001, + "end": 1351.54, + "words": [ + { + "word": " That", + "start": 1350.1000000000001, + "end": 1350.42, + "probability": 0.92626953125 + }, + { + "word": " you", + "start": 1350.42, + "end": 1350.74, + "probability": 0.99267578125 + }, + { + "word": " shouldn't", + "start": 1350.74, + "end": 1351.0, + "probability": 0.99951171875 + }, + { + "word": " open", + "start": 1351.0, + "end": 1351.18, + "probability": 0.99267578125 + }, + { + "word": " those", + "start": 1351.18, + "end": 1351.34, + "probability": 0.9990234375 + }, + { + "word": " emails.", + "start": 1351.34, + "end": 1351.54, + "probability": 0.050933837890625 + } + ] + }, + { + "id": 637, + "text": "Yes.", + "start": 1351.86, + "end": 1352.08, + "words": [ + { + "word": " Yes.", + "start": 1351.86, + "end": 1352.08, + "probability": 0.99072265625 + } + ] + }, + { + "id": 638, + "text": "If they didn't have traffic cameras.", + "start": 1352.18, + "end": 1353.44, + "words": [ + { + "word": " If", + "start": 1352.18, + "end": 1352.34, + "probability": 0.9951171875 + }, + { + "word": " they", + "start": 1352.34, + "end": 1352.46, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 1352.46, + "end": 1352.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 1352.68, + "end": 1352.78, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 1352.78, + "end": 1353.06, + "probability": 0.9990234375 + }, + { + "word": " cameras.", + "start": 1353.06, + "end": 1353.44, + "probability": 1.0 + } + ] + }, + { + "id": 639, + "text": "Right.", + "start": 1353.64, + "end": 1353.96, + "words": [ + { + "word": " Right.", + "start": 1353.64, + "end": 1353.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 640, + "text": "You wouldn't get these viruses.", + "start": 1354.02, + "end": 1354.82, + "words": [ + { + "word": " You", + "start": 1354.02, + "end": 1354.12, + "probability": 0.99609375 + }, + { + "word": " wouldn't", + "start": 1354.12, + "end": 1354.34, + "probability": 1.0 + }, + { + "word": " get", + "start": 1354.34, + "end": 1354.42, + "probability": 1.0 + }, + { + "word": " these", + "start": 1354.42, + "end": 1354.56, + "probability": 0.99951171875 + }, + { + "word": " viruses.", + "start": 1354.56, + "end": 1354.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 641, + "text": "That's how I'm looking at it.", + "start": 1355.04, + "end": 1355.96, + "words": [ + { + "word": " That's", + "start": 1355.04, + "end": 1355.36, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 1355.36, + "end": 1355.44, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 1355.44, + "end": 1355.62, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1355.62, + "end": 1355.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 1355.74, + "end": 1355.9, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1355.9, + "end": 1355.96, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "Okay.", + "start": 1356.02, + "end": 1356.18, + "words": [ + { + "word": " Okay.", + "start": 1356.02, + "end": 1356.18, + "probability": 0.90771484375 + } + ] + }, + { + "id": 643, + "text": "You're blaming it.", + "start": 1356.24, + "end": 1356.9, + "words": [ + { + "word": " You're", + "start": 1356.24, + "end": 1356.5, + "probability": 0.9931640625 + }, + { + "word": " blaming", + "start": 1356.5, + "end": 1356.76, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1356.76, + "end": 1356.9, + "probability": 0.7099609375 + } + ] + }, + { + "id": 644, + "text": "Blame it on the traffic cameras.", + "start": 1356.92, + "end": 1357.7, + "words": [ + { + "word": " Blame", + "start": 1356.92, + "end": 1357.08, + "probability": 0.89111328125 + }, + { + "word": " it", + "start": 1357.08, + "end": 1357.16, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1357.16, + "end": 1357.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1357.24, + "end": 1357.32, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 1357.32, + "end": 1357.48, + "probability": 0.99951171875 + }, + { + "word": " cameras.", + "start": 1357.48, + "end": 1357.7, + "probability": 0.91845703125 + } + ] + }, + { + "id": 645, + "text": "Yeah.", + "start": 1357.72, + "end": 1357.86, + "words": [ + { + "word": " Yeah.", + "start": 1357.72, + "end": 1357.86, + "probability": 0.994140625 + } + ] + }, + { + "id": 646, + "text": "I don't like the traffic cameras.", + "start": 1357.9, + "end": 1359.28, + "words": [ + { + "word": " I", + "start": 1357.9, + "end": 1358.16, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 1358.16, + "end": 1358.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 1358.38, + "end": 1358.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 1358.56, + "end": 1358.7, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 1358.7, + "end": 1358.92, + "probability": 1.0 + }, + { + "word": " cameras.", + "start": 1358.92, + "end": 1359.28, + "probability": 1.0 + } + ] + }, + { + "id": 647, + "text": "Me either.", + "start": 1359.32, + "end": 1359.52, + "words": [ + { + "word": " Me", + "start": 1359.32, + "end": 1359.5, + "probability": 0.8310546875 + }, + { + "word": " either.", + "start": 1359.5, + "end": 1359.52, + "probability": 0.75244140625 + } + ] + }, + { + "id": 648, + "text": "I'll tell you why.", + "start": 1359.62, + "end": 1360.14, + "words": [ + { + "word": " I'll", + "start": 1359.62, + "end": 1359.78, + "probability": 0.9990234375 + }, + { + "word": " tell", + "start": 1359.78, + "end": 1359.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 1359.88, + "end": 1360.0, + "probability": 1.0 + }, + { + "word": " why.", + "start": 1360.0, + "end": 1360.14, + "probability": 1.0 + } + ] + }, + { + "id": 649, + "text": "I was moving last week.", + "start": 1360.2, + "end": 1361.82, + "words": [ + { + "word": " I", + "start": 1360.2, + "end": 1360.32, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 1360.32, + "end": 1360.42, + "probability": 0.99853515625 + }, + { + "word": " moving", + "start": 1360.42, + "end": 1360.7, + "probability": 1.0 + }, + { + "word": " last", + "start": 1360.7, + "end": 1361.48, + "probability": 0.82177734375 + }, + { + "word": " week.", + "start": 1361.48, + "end": 1361.82, + "probability": 1.0 + } + ] + }, + { + "id": 650, + "text": "Right.", + "start": 1361.9, + "end": 1362.14, + "words": [ + { + "word": " Right.", + "start": 1361.9, + "end": 1362.14, + "probability": 0.99560546875 + } + ] + }, + { + "id": 651, + "text": "Right.", + "start": 1362.26, + "end": 1362.46, + "words": [ + { + "word": " Right.", + "start": 1362.26, + "end": 1362.46, + "probability": 0.77197265625 + } + ] + }, + { + "id": 652, + "text": "So I've got this truck that I borrowed from some listeners.", + "start": 1362.52, + "end": 1366.02, + "words": [ + { + "word": " So", + "start": 1362.52, + "end": 1362.62, + "probability": 0.9921875 + }, + { + "word": " I've", + "start": 1362.62, + "end": 1363.1, + "probability": 0.61376953125 + }, + { + "word": " got", + "start": 1363.1, + "end": 1363.26, + "probability": 1.0 + }, + { + "word": " this", + "start": 1363.26, + "end": 1363.5, + "probability": 1.0 + }, + { + "word": " truck", + "start": 1363.5, + "end": 1363.84, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1363.84, + "end": 1364.36, + "probability": 0.9501953125 + }, + { + "word": " I", + "start": 1364.36, + "end": 1364.52, + "probability": 1.0 + }, + { + "word": " borrowed", + "start": 1364.52, + "end": 1364.98, + "probability": 0.9990234375 + }, + { + "word": " from", + "start": 1364.98, + "end": 1365.38, + "probability": 1.0 + }, + { + "word": " some", + "start": 1365.38, + "end": 1365.76, + "probability": 0.9990234375 + }, + { + "word": " listeners.", + "start": 1365.76, + "end": 1366.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 653, + "text": "Right.", + "start": 1366.24, + "end": 1366.54, + "words": [ + { + "word": " Right.", + "start": 1366.24, + "end": 1366.54, + "probability": 0.99169921875 + } + ] + }, + { + "id": 654, + "text": "Right.", + "start": 1366.64, + "end": 1366.92, + "words": [ + { + "word": " Right.", + "start": 1366.64, + "end": 1366.92, + "probability": 0.6943359375 + } + ] + }, + { + "id": 655, + "text": "Thank you, Tom and Mary Ann.", + "start": 1366.92, + "end": 1367.94, + "words": [ + { + "word": " Thank", + "start": 1366.92, + "end": 1367.16, + "probability": 0.98681640625 + }, + { + "word": " you,", + "start": 1367.16, + "end": 1367.38, + "probability": 1.0 + }, + { + "word": " Tom", + "start": 1367.4, + "end": 1367.54, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1367.54, + "end": 1367.66, + "probability": 0.55859375 + }, + { + "word": " Mary", + "start": 1367.66, + "end": 1367.78, + "probability": 0.462890625 + }, + { + "word": " Ann.", + "start": 1367.78, + "end": 1367.94, + "probability": 0.88232421875 + } + ] + }, + { + "id": 656, + "text": "You guys are awesome.", + "start": 1368.02, + "end": 1368.6, + "words": [ + { + "word": " You", + "start": 1368.02, + "end": 1368.14, + "probability": 0.9970703125 + }, + { + "word": " guys", + "start": 1368.14, + "end": 1368.24, + "probability": 1.0 + }, + { + "word": " are", + "start": 1368.24, + "end": 1368.36, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 1368.36, + "end": 1368.6, + "probability": 1.0 + } + ] + }, + { + "id": 657, + "text": "Excellent.", + "start": 1368.84, + "end": 1369.16, + "words": [ + { + "word": " Excellent.", + "start": 1368.84, + "end": 1369.16, + "probability": 0.978515625 + } + ] + }, + { + "id": 658, + "text": "And.", + "start": 1370.0600000000002, + "end": 1370.38, + "words": [ + { + "word": " And.", + "start": 1370.0600000000002, + "end": 1370.38, + "probability": 0.912109375 + } + ] + }, + { + "id": 659, + "text": "With a big trailer at that.", + "start": 1371.0800000000002, + "end": 1372.32, + "words": [ + { + "word": " With", + "start": 1371.0800000000002, + "end": 1371.4, + "probability": 0.98681640625 + }, + { + "word": " a", + "start": 1371.4, + "end": 1371.48, + "probability": 1.0 + }, + { + "word": " big", + "start": 1371.48, + "end": 1371.66, + "probability": 1.0 + }, + { + "word": " trailer", + "start": 1371.66, + "end": 1371.98, + "probability": 1.0 + }, + { + "word": " at", + "start": 1371.98, + "end": 1372.16, + "probability": 0.99853515625 + }, + { + "word": " that.", + "start": 1372.16, + "end": 1372.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 660, + "text": "With a big trailer on it.", + "start": 1372.46, + "end": 1373.54, + "words": [ + { + "word": " With", + "start": 1372.46, + "end": 1372.6, + "probability": 0.58984375 + }, + { + "word": " a", + "start": 1372.6, + "end": 1372.66, + "probability": 1.0 + }, + { + "word": " big", + "start": 1372.66, + "end": 1372.86, + "probability": 1.0 + }, + { + "word": " trailer", + "start": 1372.86, + "end": 1373.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 1373.16, + "end": 1373.42, + "probability": 0.94677734375 + }, + { + "word": " it.", + "start": 1373.42, + "end": 1373.54, + "probability": 1.0 + } + ] + }, + { + "id": 661, + "text": "Bigger little horse trailer.", + "start": 1373.58, + "end": 1374.18, + "words": [ + { + "word": " Bigger", + "start": 1373.58, + "end": 1373.8, + "probability": 0.8974609375 + }, + { + "word": " little", + "start": 1373.8, + "end": 1373.84, + "probability": 0.83154296875 + }, + { + "word": " horse", + "start": 1373.84, + "end": 1374.08, + "probability": 0.9423828125 + }, + { + "word": " trailer.", + "start": 1374.08, + "end": 1374.18, + "probability": 0.7734375 + } + ] + }, + { + "id": 662, + "text": "I'm sitting at the light.", + "start": 1374.22, + "end": 1375.2, + "words": [ + { + "word": " I'm", + "start": 1374.22, + "end": 1374.54, + "probability": 0.990234375 + }, + { + "word": " sitting", + "start": 1374.54, + "end": 1374.54, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1374.54, + "end": 1374.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1374.82, + "end": 1374.88, + "probability": 1.0 + }, + { + "word": " light.", + "start": 1374.88, + "end": 1375.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 663, + "text": "At.", + "start": 1375.62, + "end": 1375.9, + "words": [ + { + "word": " At.", + "start": 1375.62, + "end": 1375.9, + "probability": 0.6181640625 + } + ] + }, + { + "id": 664, + "text": "At.", + "start": 1375.9, + "end": 1376.34, + "words": [ + { + "word": " At.", + "start": 1375.9, + "end": 1376.34, + "probability": 0.876953125 + } + ] + }, + { + "id": 665, + "text": "Broadway and Craycroft.", + "start": 1376.9, + "end": 1378.0, + "words": [ + { + "word": " Broadway", + "start": 1376.9, + "end": 1377.34, + "probability": 0.90380859375 + }, + { + "word": " and", + "start": 1377.34, + "end": 1377.54, + "probability": 0.8935546875 + }, + { + "word": " Craycroft.", + "start": 1377.54, + "end": 1378.0, + "probability": 0.9052734375 + } + ] + }, + { + "id": 666, + "text": "Right.", + "start": 1378.04, + "end": 1378.24, + "words": [ + { + "word": " Right.", + "start": 1378.04, + "end": 1378.24, + "probability": 0.9951171875 + } + ] + }, + { + "id": 667, + "text": "Right.", + "start": 1378.38, + "end": 1378.6, + "words": [ + { + "word": " Right.", + "start": 1378.38, + "end": 1378.6, + "probability": 0.96875 + } + ] + }, + { + "id": 668, + "text": "And.", + "start": 1378.62, + "end": 1378.9, + "words": [ + { + "word": " And.", + "start": 1378.62, + "end": 1378.9, + "probability": 0.978515625 + } + ] + }, + { + "id": 669, + "text": "So you've got the traffic camera there.", + "start": 1379.02, + "end": 1380.48, + "words": [ + { + "word": " So", + "start": 1379.02, + "end": 1379.4, + "probability": 0.97705078125 + }, + { + "word": " you've", + "start": 1379.4, + "end": 1379.64, + "probability": 0.46630859375 + }, + { + "word": " got", + "start": 1379.64, + "end": 1379.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1379.66, + "end": 1379.78, + "probability": 0.99853515625 + }, + { + "word": " traffic", + "start": 1379.78, + "end": 1379.98, + "probability": 0.99658203125 + }, + { + "word": " camera", + "start": 1379.98, + "end": 1380.24, + "probability": 0.99609375 + }, + { + "word": " there.", + "start": 1380.24, + "end": 1380.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 670, + "text": "I'm first in line.", + "start": 1380.64, + "end": 1381.82, + "words": [ + { + "word": " I'm", + "start": 1380.64, + "end": 1381.08, + "probability": 0.998046875 + }, + { + "word": " first", + "start": 1381.08, + "end": 1381.38, + "probability": 0.99658203125 + }, + { + "word": " in", + "start": 1381.38, + "end": 1381.6, + "probability": 1.0 + }, + { + "word": " line.", + "start": 1381.6, + "end": 1381.82, + "probability": 1.0 + } + ] + }, + { + "id": 671, + "text": "Green light comes along.", + "start": 1382.22, + "end": 1383.46, + "words": [ + { + "word": " Green", + "start": 1382.22, + "end": 1382.66, + "probability": 0.99853515625 + }, + { + "word": " light", + "start": 1382.66, + "end": 1382.96, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 1382.96, + "end": 1383.18, + "probability": 0.99267578125 + }, + { + "word": " along.", + "start": 1383.18, + "end": 1383.46, + "probability": 1.0 + } + ] + }, + { + "id": 672, + "text": "I start to move out into the intersection.", + "start": 1383.7, + "end": 1385.54, + "words": [ + { + "word": " I", + "start": 1383.7, + "end": 1384.0, + "probability": 0.99951171875 + }, + { + "word": " start", + "start": 1384.0, + "end": 1384.26, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1384.26, + "end": 1384.48, + "probability": 0.99951171875 + }, + { + "word": " move", + "start": 1384.48, + "end": 1384.66, + "probability": 1.0 + }, + { + "word": " out", + "start": 1384.66, + "end": 1384.8, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1384.8, + "end": 1385.02, + "probability": 0.912109375 + }, + { + "word": " the", + "start": 1385.02, + "end": 1385.18, + "probability": 1.0 + }, + { + "word": " intersection.", + "start": 1385.18, + "end": 1385.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 673, + "text": "I get popped four times.", + "start": 1386.1, + "end": 1387.76, + "words": [ + { + "word": " I", + "start": 1386.1, + "end": 1386.54, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 1386.54, + "end": 1386.7, + "probability": 0.99951171875 + }, + { + "word": " popped", + "start": 1386.7, + "end": 1386.94, + "probability": 0.9990234375 + }, + { + "word": " four", + "start": 1386.94, + "end": 1387.28, + "probability": 0.9873046875 + }, + { + "word": " times.", + "start": 1387.28, + "end": 1387.76, + "probability": 1.0 + } + ] + }, + { + "id": 674, + "text": "Flashed.", + "start": 1388.32, + "end": 1388.76, + "words": [ + { + "word": " Flashed.", + "start": 1388.32, + "end": 1388.76, + "probability": 0.9169921875 + } + ] + }, + { + "id": 675, + "text": "Really?", + "start": 1389.32, + "end": 1389.76, + "words": [ + { + "word": " Really?", + "start": 1389.32, + "end": 1389.76, + "probability": 0.98681640625 + } + ] + }, + { + "id": 676, + "text": "Yeah.", + "start": 1389.9, + "end": 1390.12, + "words": [ + { + "word": " Yeah.", + "start": 1389.9, + "end": 1390.12, + "probability": 0.99072265625 + } + ] + }, + { + "id": 677, + "text": "And I'm like.", + "start": 1390.16, + "end": 1390.44, + "words": [ + { + "word": " And", + "start": 1390.16, + "end": 1390.24, + "probability": 0.9677734375 + }, + { + "word": " I'm", + "start": 1390.24, + "end": 1390.34, + "probability": 1.0 + }, + { + "word": " like.", + "start": 1390.34, + "end": 1390.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 678, + "text": "What did I do wrong?", + "start": 1390.8, + "end": 1391.9, + "words": [ + { + "word": " What", + "start": 1390.8, + "end": 1391.24, + "probability": 0.9990234375 + }, + { + "word": " did", + "start": 1391.24, + "end": 1391.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 1391.42, + "end": 1391.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 1391.54, + "end": 1391.68, + "probability": 1.0 + }, + { + "word": " wrong?", + "start": 1391.68, + "end": 1391.9, + "probability": 1.0 + } + ] + }, + { + "id": 679, + "text": "I'm doing like six miles an hour.", + "start": 1392.14, + "end": 1394.54, + "words": [ + { + "word": " I'm", + "start": 1392.14, + "end": 1392.58, + "probability": 0.99560546875 + }, + { + "word": " doing", + "start": 1392.58, + "end": 1392.8, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1392.8, + "end": 1393.12, + "probability": 0.98095703125 + }, + { + "word": " six", + "start": 1393.12, + "end": 1393.68, + "probability": 0.90576171875 + }, + { + "word": " miles", + "start": 1393.68, + "end": 1394.0, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1394.0, + "end": 1394.3, + "probability": 0.99951171875 + }, + { + "word": " hour.", + "start": 1394.3, + "end": 1394.54, + "probability": 1.0 + } + ] + }, + { + "id": 680, + "text": "Because the light just turned green.", + "start": 1394.6, + "end": 1396.08, + "words": [ + { + "word": " Because", + "start": 1394.6, + "end": 1394.82, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1394.82, + "end": 1394.96, + "probability": 0.99951171875 + }, + { + "word": " light", + "start": 1394.96, + "end": 1395.16, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1395.16, + "end": 1395.36, + "probability": 0.99951171875 + }, + { + "word": " turned", + "start": 1395.36, + "end": 1395.68, + "probability": 1.0 + }, + { + "word": " green.", + "start": 1395.68, + "end": 1396.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 681, + "text": "And I've got this giant trailer loaded up behind me.", + "start": 1396.66, + "end": 1399.16, + "words": [ + { + "word": " And", + "start": 1396.66, + "end": 1397.1, + "probability": 0.9990234375 + }, + { + "word": " I've", + "start": 1397.1, + "end": 1397.24, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 1397.24, + "end": 1397.36, + "probability": 1.0 + }, + { + "word": " this", + "start": 1397.36, + "end": 1397.5, + "probability": 0.99951171875 + }, + { + "word": " giant", + "start": 1397.5, + "end": 1397.74, + "probability": 0.9990234375 + }, + { + "word": " trailer", + "start": 1397.74, + "end": 1398.08, + "probability": 0.99560546875 + }, + { + "word": " loaded", + "start": 1398.08, + "end": 1398.44, + "probability": 0.99560546875 + }, + { + "word": " up", + "start": 1398.44, + "end": 1398.64, + "probability": 0.99560546875 + }, + { + "word": " behind", + "start": 1398.64, + "end": 1398.86, + "probability": 0.99853515625 + }, + { + "word": " me.", + "start": 1398.86, + "end": 1399.16, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "Yeah.", + "start": 1399.44, + "end": 1399.76, + "words": [ + { + "word": " Yeah.", + "start": 1399.44, + "end": 1399.76, + "probability": 0.89111328125 + } + ] + }, + { + "id": 683, + "text": "So you get.", + "start": 1400.02, + "end": 1400.82, + "words": [ + { + "word": " So", + "start": 1400.02, + "end": 1400.46, + "probability": 0.97119140625 + }, + { + "word": " you", + "start": 1400.46, + "end": 1400.64, + "probability": 0.99365234375 + }, + { + "word": " get.", + "start": 1400.64, + "end": 1400.82, + "probability": 0.92333984375 + } + ] + }, + { + "id": 684, + "text": "What?", + "start": 1400.84, + "end": 1400.86, + "words": [ + { + "word": " What?", + "start": 1400.84, + "end": 1400.86, + "probability": 0.420654296875 + } + ] + }, + { + "id": 685, + "text": "You get one of our listeners a ticket?", + "start": 1400.98, + "end": 1402.4, + "words": [ + { + "word": " You", + "start": 1400.98, + "end": 1401.1, + "probability": 0.9873046875 + }, + { + "word": " get", + "start": 1401.1, + "end": 1401.26, + "probability": 0.984375 + }, + { + "word": " one", + "start": 1401.26, + "end": 1401.4, + "probability": 0.9931640625 + }, + { + "word": " of", + "start": 1401.4, + "end": 1401.5, + "probability": 1.0 + }, + { + "word": " our", + "start": 1401.5, + "end": 1401.6, + "probability": 0.99853515625 + }, + { + "word": " listeners", + "start": 1401.6, + "end": 1401.92, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1401.92, + "end": 1402.14, + "probability": 0.99609375 + }, + { + "word": " ticket?", + "start": 1402.14, + "end": 1402.4, + "probability": 1.0 + } + ] + }, + { + "id": 686, + "text": "I told them just, you know.", + "start": 1402.54, + "end": 1403.96, + "words": [ + { + "word": " I", + "start": 1402.54, + "end": 1402.92, + "probability": 0.99755859375 + }, + { + "word": " told", + "start": 1402.92, + "end": 1403.3, + "probability": 0.95458984375 + }, + { + "word": " them", + "start": 1403.3, + "end": 1403.52, + "probability": 0.98974609375 + }, + { + "word": " just,", + "start": 1403.52, + "end": 1403.76, + "probability": 0.35595703125 + }, + { + "word": " you", + "start": 1403.78, + "end": 1403.86, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1403.86, + "end": 1403.96, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "I told them.", + "start": 1404.48, + "end": 1405.52, + "words": [ + { + "word": " I", + "start": 1404.48, + "end": 1404.92, + "probability": 0.9951171875 + }, + { + "word": " told", + "start": 1404.92, + "end": 1405.24, + "probability": 0.9990234375 + }, + { + "word": " them.", + "start": 1405.24, + "end": 1405.52, + "probability": 0.998046875 + } + ] + }, + { + "id": 688, + "text": "I told them that if they get any traffic tickets, it's not them.", + "start": 1405.62, + "end": 1407.96, + "words": [ + { + "word": " I", + "start": 1405.62, + "end": 1405.7, + "probability": 0.004039764404296875 + }, + { + "word": " told", + "start": 1405.7, + "end": 1405.7, + "probability": 0.0010328292846679688 + }, + { + "word": " them", + "start": 1405.7, + "end": 1405.7, + "probability": 0.375732421875 + }, + { + "word": " that", + "start": 1405.7, + "end": 1405.72, + "probability": 0.95654296875 + }, + { + "word": " if", + "start": 1405.72, + "end": 1406.18, + "probability": 0.98095703125 + }, + { + "word": " they", + "start": 1406.18, + "end": 1406.38, + "probability": 0.99755859375 + }, + { + "word": " get", + "start": 1406.38, + "end": 1406.5, + "probability": 0.93798828125 + }, + { + "word": " any", + "start": 1406.5, + "end": 1406.6, + "probability": 0.98388671875 + }, + { + "word": " traffic", + "start": 1406.6, + "end": 1406.84, + "probability": 0.998046875 + }, + { + "word": " tickets,", + "start": 1406.84, + "end": 1407.18, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 1407.3, + "end": 1407.52, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 1407.52, + "end": 1407.66, + "probability": 0.9990234375 + }, + { + "word": " them.", + "start": 1407.66, + "end": 1407.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 689, + "text": "So they can safely discard them.", + "start": 1408.0, + "end": 1409.44, + "words": [ + { + "word": " So", + "start": 1408.0, + "end": 1408.2, + "probability": 0.93310546875 + }, + { + "word": " they", + "start": 1408.2, + "end": 1408.3, + "probability": 0.85546875 + }, + { + "word": " can", + "start": 1408.3, + "end": 1408.44, + "probability": 0.99951171875 + }, + { + "word": " safely", + "start": 1408.44, + "end": 1408.76, + "probability": 0.99951171875 + }, + { + "word": " discard", + "start": 1408.76, + "end": 1409.1, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 1409.1, + "end": 1409.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 690, + "text": "Right.", + "start": 1409.78, + "end": 1410.18, + "words": [ + { + "word": " Right.", + "start": 1409.78, + "end": 1410.18, + "probability": 0.7978515625 + } + ] + }, + { + "id": 691, + "text": "Because it's me driving.", + "start": 1410.26, + "end": 1411.56, + "words": [ + { + "word": " Because", + "start": 1410.26, + "end": 1410.52, + "probability": 0.9345703125 + }, + { + "word": " it's", + "start": 1410.52, + "end": 1411.0, + "probability": 1.0 + }, + { + "word": " me", + "start": 1411.0, + "end": 1411.16, + "probability": 0.99951171875 + }, + { + "word": " driving.", + "start": 1411.16, + "end": 1411.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 692, + "text": "But, you know, it's.", + "start": 1412.22, + "end": 1413.52, + "words": [ + { + "word": " But,", + "start": 1412.22, + "end": 1412.62, + "probability": 0.7275390625 + }, + { + "word": " you", + "start": 1412.82, + "end": 1412.98, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1412.98, + "end": 1413.16, + "probability": 1.0 + }, + { + "word": " it's.", + "start": 1413.28, + "end": 1413.52, + "probability": 0.8349609375 + } + ] + }, + { + "id": 693, + "text": "Those things are so irritating.", + "start": 1413.54, + "end": 1415.06, + "words": [ + { + "word": " Those", + "start": 1413.54, + "end": 1413.94, + "probability": 0.8828125 + }, + { + "word": " things", + "start": 1413.94, + "end": 1414.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 1414.18, + "end": 1414.34, + "probability": 1.0 + }, + { + "word": " so", + "start": 1414.34, + "end": 1414.58, + "probability": 1.0 + }, + { + "word": " irritating.", + "start": 1414.58, + "end": 1415.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 694, + "text": "And here's the other thing that really bothers me about them.", + "start": 1415.32, + "end": 1417.44, + "words": [ + { + "word": " And", + "start": 1415.32, + "end": 1415.52, + "probability": 0.99951171875 + }, + { + "word": " here's", + "start": 1415.52, + "end": 1415.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1415.84, + "end": 1415.94, + "probability": 1.0 + }, + { + "word": " other", + "start": 1415.94, + "end": 1416.1, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1416.1, + "end": 1416.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1416.26, + "end": 1416.38, + "probability": 1.0 + }, + { + "word": " really", + "start": 1416.38, + "end": 1416.52, + "probability": 1.0 + }, + { + "word": " bothers", + "start": 1416.52, + "end": 1416.88, + "probability": 1.0 + }, + { + "word": " me", + "start": 1416.88, + "end": 1417.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 1417.04, + "end": 1417.26, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1417.26, + "end": 1417.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 695, + "text": "And I'm just going to go on a little soapbox rant here.", + "start": 1417.46, + "end": 1419.1, + "words": [ + { + "word": " And", + "start": 1417.46, + "end": 1417.56, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 1417.56, + "end": 1417.64, + "probability": 0.98388671875 + }, + { + "word": " just", + "start": 1417.64, + "end": 1417.76, + "probability": 0.99462890625 + }, + { + "word": " going", + "start": 1417.76, + "end": 1417.92, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 1417.92, + "end": 1417.96, + "probability": 0.61669921875 + }, + { + "word": " go", + "start": 1417.96, + "end": 1418.0, + "probability": 0.99072265625 + }, + { + "word": " on", + "start": 1418.0, + "end": 1418.1, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1418.1, + "end": 1418.1, + "probability": 1.0 + }, + { + "word": " little", + "start": 1418.1, + "end": 1418.24, + "probability": 1.0 + }, + { + "word": " soapbox", + "start": 1418.24, + "end": 1418.64, + "probability": 0.9970703125 + }, + { + "word": " rant", + "start": 1418.64, + "end": 1418.9, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 1418.9, + "end": 1419.1, + "probability": 1.0 + } + ] + }, + { + "id": 696, + "text": "All right.", + "start": 1419.16, + "end": 1419.5, + "words": [ + { + "word": " All", + "start": 1419.16, + "end": 1419.34, + "probability": 0.82666015625 + }, + { + "word": " right.", + "start": 1419.34, + "end": 1419.5, + "probability": 1.0 + } + ] + }, + { + "id": 697, + "text": "Is that the speed limit is posted.", + "start": 1419.66, + "end": 1421.48, + "words": [ + { + "word": " Is", + "start": 1419.66, + "end": 1419.9, + "probability": 0.91748046875 + }, + { + "word": " that", + "start": 1419.9, + "end": 1420.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1420.14, + "end": 1420.64, + "probability": 0.99951171875 + }, + { + "word": " speed", + "start": 1420.64, + "end": 1420.88, + "probability": 1.0 + }, + { + "word": " limit", + "start": 1420.88, + "end": 1421.06, + "probability": 1.0 + }, + { + "word": " is", + "start": 1421.06, + "end": 1421.24, + "probability": 1.0 + }, + { + "word": " posted.", + "start": 1421.24, + "end": 1421.48, + "probability": 0.98974609375 + } + ] + }, + { + "id": 698, + "text": "Right.", + "start": 1421.64, + "end": 1421.96, + "words": [ + { + "word": " Right.", + "start": 1421.64, + "end": 1421.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 699, + "text": "Right.", + "start": 1422.1, + "end": 1422.28, + "words": [ + { + "word": " Right.", + "start": 1422.1, + "end": 1422.28, + "probability": 0.732421875 + } + ] + }, + { + "id": 700, + "text": "The speed limit is.", + "start": 1422.36, + "end": 1423.16, + "words": [ + { + "word": " The", + "start": 1422.36, + "end": 1422.48, + "probability": 0.99755859375 + }, + { + "word": " speed", + "start": 1422.48, + "end": 1422.7, + "probability": 1.0 + }, + { + "word": " limit", + "start": 1422.7, + "end": 1422.86, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1422.86, + "end": 1423.16, + "probability": 1.0 + } + ] + }, + { + "id": 701, + "text": "Let's give an example.", + "start": 1423.28, + "end": 1424.08, + "words": [ + { + "word": " Let's", + "start": 1423.28, + "end": 1423.58, + "probability": 1.0 + }, + { + "word": " give", + "start": 1423.58, + "end": 1423.68, + "probability": 1.0 + }, + { + "word": " an", + "start": 1423.68, + "end": 1423.84, + "probability": 1.0 + }, + { + "word": " example.", + "start": 1423.84, + "end": 1424.08, + "probability": 1.0 + } + ] + }, + { + "id": 702, + "text": "Forty.", + "start": 1424.68, + "end": 1425.08, + "words": [ + { + "word": " Forty.", + "start": 1424.68, + "end": 1425.08, + "probability": 0.77392578125 + } + ] + }, + { + "id": 703, + "text": "Okay.", + "start": 1425.14, + "end": 1425.52, + "words": [ + { + "word": " Okay.", + "start": 1425.14, + "end": 1425.52, + "probability": 0.50830078125 + } + ] + }, + { + "id": 704, + "text": "All right.", + "start": 1425.7, + "end": 1425.88, + "words": [ + { + "word": " All", + "start": 1425.7, + "end": 1425.84, + "probability": 0.229248046875 + }, + { + "word": " right.", + "start": 1425.84, + "end": 1425.88, + "probability": 1.0 + } + ] + }, + { + "id": 705, + "text": "You're cruising down river.", + "start": 1425.94, + "end": 1426.86, + "words": [ + { + "word": " You're", + "start": 1425.94, + "end": 1426.16, + "probability": 0.9970703125 + }, + { + "word": " cruising", + "start": 1426.16, + "end": 1426.36, + "probability": 1.0 + }, + { + "word": " down", + "start": 1426.36, + "end": 1426.62, + "probability": 1.0 + }, + { + "word": " river.", + "start": 1426.62, + "end": 1426.86, + "probability": 0.55810546875 + } + ] + }, + { + "id": 706, + "text": "You got a 40 mile an hour speed limit.", + "start": 1427.4, + "end": 1429.46, + "words": [ + { + "word": " You", + "start": 1427.4, + "end": 1427.8, + "probability": 0.9619140625 + }, + { + "word": " got", + "start": 1427.8, + "end": 1428.04, + "probability": 0.90869140625 + }, + { + "word": " a", + "start": 1428.04, + "end": 1428.14, + "probability": 1.0 + }, + { + "word": " 40", + "start": 1428.14, + "end": 1428.48, + "probability": 0.8134765625 + }, + { + "word": " mile", + "start": 1428.48, + "end": 1428.64, + "probability": 0.94287109375 + }, + { + "word": " an", + "start": 1428.64, + "end": 1428.86, + "probability": 1.0 + }, + { + "word": " hour", + "start": 1428.86, + "end": 1428.96, + "probability": 1.0 + }, + { + "word": " speed", + "start": 1428.96, + "end": 1429.2, + "probability": 1.0 + }, + { + "word": " limit.", + "start": 1429.2, + "end": 1429.46, + "probability": 1.0 + } + ] + }, + { + "id": 707, + "text": "Mm-hmm.", + "start": 1429.58, + "end": 1429.9, + "words": [ + { + "word": " Mm", + "start": 1429.58, + "end": 1429.78, + "probability": 0.8095703125 + }, + { + "word": "-hmm.", + "start": 1429.78, + "end": 1429.9, + "probability": 0.6982421875 + } + ] + }, + { + "id": 708, + "text": "That means that you have somewhere between 40 and 50 miles an hour that you can go.", + "start": 1430.36, + "end": 1435.6, + "words": [ + { + "word": " That", + "start": 1430.36, + "end": 1430.76, + "probability": 0.93603515625 + }, + { + "word": " means", + "start": 1430.76, + "end": 1431.06, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1431.06, + "end": 1431.28, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1431.28, + "end": 1431.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 1431.38, + "end": 1431.76, + "probability": 0.99951171875 + }, + { + "word": " somewhere", + "start": 1431.76, + "end": 1432.3, + "probability": 0.98876953125 + }, + { + "word": " between", + "start": 1432.3, + "end": 1432.66, + "probability": 1.0 + }, + { + "word": " 40", + "start": 1432.66, + "end": 1433.1, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1433.1, + "end": 1433.54, + "probability": 0.99560546875 + }, + { + "word": " 50", + "start": 1433.54, + "end": 1434.32, + "probability": 0.99658203125 + }, + { + "word": " miles", + "start": 1434.32, + "end": 1434.72, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 1434.72, + "end": 1434.92, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 1434.92, + "end": 1435.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1435.14, + "end": 1435.4, + "probability": 0.66796875 + }, + { + "word": " you", + "start": 1435.4, + "end": 1435.5, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 1435.5, + "end": 1435.6, + "probability": 0.939453125 + }, + { + "word": " go.", + "start": 1435.6, + "end": 1435.6, + "probability": 0.161865234375 + } + ] + }, + { + "id": 709, + "text": "And not get the ticket.", + "start": 1435.6, + "end": 1437.54, + "words": [ + { + "word": " And", + "start": 1435.6, + "end": 1436.24, + "probability": 0.0096893310546875 + }, + { + "word": " not", + "start": 1436.24, + "end": 1436.66, + "probability": 0.1407470703125 + }, + { + "word": " get", + "start": 1436.66, + "end": 1437.08, + "probability": 0.97607421875 + }, + { + "word": " the", + "start": 1437.08, + "end": 1437.28, + "probability": 0.9990234375 + }, + { + "word": " ticket.", + "start": 1437.28, + "end": 1437.54, + "probability": 0.99755859375 + } + ] + }, + { + "id": 710, + "text": "That does not mean drive 30 in the 40 zone.", + "start": 1437.98, + "end": 1440.86, + "words": [ + { + "word": " That", + "start": 1437.98, + "end": 1438.38, + "probability": 0.76123046875 + }, + { + "word": " does", + "start": 1438.38, + "end": 1438.52, + "probability": 0.99658203125 + }, + { + "word": " not", + "start": 1438.52, + "end": 1438.7, + "probability": 0.99951171875 + }, + { + "word": " mean", + "start": 1438.7, + "end": 1438.9, + "probability": 0.99951171875 + }, + { + "word": " drive", + "start": 1438.9, + "end": 1439.16, + "probability": 0.97314453125 + }, + { + "word": " 30", + "start": 1439.16, + "end": 1439.58, + "probability": 0.935546875 + }, + { + "word": " in", + "start": 1439.58, + "end": 1440.12, + "probability": 0.96630859375 + }, + { + "word": " the", + "start": 1440.12, + "end": 1440.32, + "probability": 1.0 + }, + { + "word": " 40", + "start": 1440.32, + "end": 1440.6, + "probability": 0.99853515625 + }, + { + "word": " zone.", + "start": 1440.6, + "end": 1440.86, + "probability": 0.95068359375 + } + ] + }, + { + "id": 711, + "text": "And the more often the way that it works is that you got people doing 50.", + "start": 1441.8, + "end": 1445.38, + "words": [ + { + "word": " And", + "start": 1441.8, + "end": 1442.2, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 1442.2, + "end": 1442.52, + "probability": 0.51123046875 + }, + { + "word": " more", + "start": 1442.52, + "end": 1442.74, + "probability": 0.99951171875 + }, + { + "word": " often", + "start": 1442.74, + "end": 1443.08, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1443.08, + "end": 1443.22, + "probability": 0.9912109375 + }, + { + "word": " way", + "start": 1443.22, + "end": 1443.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 1443.36, + "end": 1443.54, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1443.54, + "end": 1443.64, + "probability": 0.99951171875 + }, + { + "word": " works", + "start": 1443.64, + "end": 1443.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 1443.84, + "end": 1444.04, + "probability": 0.986328125 + }, + { + "word": " that", + "start": 1444.04, + "end": 1444.14, + "probability": 0.96533203125 + }, + { + "word": " you", + "start": 1444.14, + "end": 1444.22, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 1444.22, + "end": 1444.38, + "probability": 0.52587890625 + }, + { + "word": " people", + "start": 1444.38, + "end": 1444.58, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1444.58, + "end": 1444.84, + "probability": 1.0 + }, + { + "word": " 50.", + "start": 1444.84, + "end": 1445.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 712, + "text": "And then they get somewhere near the cameras.", + "start": 1445.64, + "end": 1447.56, + "words": [ + { + "word": " And", + "start": 1445.64, + "end": 1446.04, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1446.04, + "end": 1446.18, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1446.18, + "end": 1446.32, + "probability": 0.9970703125 + }, + { + "word": " get", + "start": 1446.32, + "end": 1446.52, + "probability": 1.0 + }, + { + "word": " somewhere", + "start": 1446.52, + "end": 1446.78, + "probability": 1.0 + }, + { + "word": " near", + "start": 1446.78, + "end": 1447.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1447.08, + "end": 1447.22, + "probability": 1.0 + }, + { + "word": " cameras.", + "start": 1447.22, + "end": 1447.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 713, + "text": "They slam on their brakes.", + "start": 1447.68, + "end": 1449.08, + "words": [ + { + "word": " They", + "start": 1447.68, + "end": 1447.88, + "probability": 0.99951171875 + }, + { + "word": " slam", + "start": 1447.88, + "end": 1448.14, + "probability": 0.99462890625 + }, + { + "word": " on", + "start": 1448.14, + "end": 1448.52, + "probability": 1.0 + }, + { + "word": " their", + "start": 1448.52, + "end": 1448.68, + "probability": 1.0 + }, + { + "word": " brakes.", + "start": 1448.68, + "end": 1449.08, + "probability": 0.99560546875 + } + ] + }, + { + "id": 714, + "text": "Right.", + "start": 1449.22, + "end": 1449.54, + "words": [ + { + "word": " Right.", + "start": 1449.22, + "end": 1449.54, + "probability": 0.74462890625 + } + ] + }, + { + "id": 715, + "text": "Do somewhere between 25 and 35.", + "start": 1449.7, + "end": 1451.26, + "words": [ + { + "word": " Do", + "start": 1449.7, + "end": 1449.84, + "probability": 0.2393798828125 + }, + { + "word": " somewhere", + "start": 1449.84, + "end": 1450.06, + "probability": 0.99169921875 + }, + { + "word": " between", + "start": 1450.06, + "end": 1450.34, + "probability": 1.0 + }, + { + "word": " 25", + "start": 1450.34, + "end": 1450.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1450.74, + "end": 1451.0, + "probability": 1.0 + }, + { + "word": " 35.", + "start": 1451.0, + "end": 1451.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 716, + "text": "Right.", + "start": 1451.4, + "end": 1451.78, + "words": [ + { + "word": " Right.", + "start": 1451.4, + "end": 1451.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 717, + "text": "Through the little zone.", + "start": 1451.92, + "end": 1452.62, + "words": [ + { + "word": " Through", + "start": 1451.92, + "end": 1452.06, + "probability": 0.958984375 + }, + { + "word": " the", + "start": 1452.06, + "end": 1452.22, + "probability": 1.0 + }, + { + "word": " little", + "start": 1452.22, + "end": 1452.38, + "probability": 0.9990234375 + }, + { + "word": " zone.", + "start": 1452.38, + "end": 1452.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 718, + "text": "And it's just such a pain in the butt.", + "start": 1453.24, + "end": 1455.24, + "words": [ + { + "word": " And", + "start": 1453.24, + "end": 1453.64, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 1453.64, + "end": 1454.0, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1454.0, + "end": 1454.14, + "probability": 0.99951171875 + }, + { + "word": " such", + "start": 1454.14, + "end": 1454.48, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1454.48, + "end": 1454.64, + "probability": 1.0 + }, + { + "word": " pain", + "start": 1454.64, + "end": 1454.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 1454.86, + "end": 1454.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1454.96, + "end": 1455.06, + "probability": 1.0 + }, + { + "word": " butt.", + "start": 1455.06, + "end": 1455.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 719, + "text": "Yeah.", + "start": 1455.32, + "end": 1455.44, + "words": [ + { + "word": " Yeah.", + "start": 1455.32, + "end": 1455.44, + "probability": 0.55615234375 + } + ] + }, + { + "id": 720, + "text": "I mean, if I was a cop myself, I was a cop.", + "start": 1455.46, + "end": 1458.18, + "words": [ + { + "word": " I", + "start": 1455.46, + "end": 1455.58, + "probability": 0.98681640625 + }, + { + "word": " mean,", + "start": 1455.58, + "end": 1455.62, + "probability": 1.0 + }, + { + "word": " if", + "start": 1455.62, + "end": 1456.1, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 1456.1, + "end": 1456.64, + "probability": 1.0 + }, + { + "word": " was", + "start": 1456.64, + "end": 1456.86, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1456.86, + "end": 1456.98, + "probability": 0.99951171875 + }, + { + "word": " cop", + "start": 1456.98, + "end": 1457.14, + "probability": 1.0 + }, + { + "word": " myself,", + "start": 1457.14, + "end": 1457.4, + "probability": 0.457275390625 + }, + { + "word": " I", + "start": 1457.6, + "end": 1457.74, + "probability": 0.80029296875 + }, + { + "word": " was", + "start": 1457.74, + "end": 1457.88, + "probability": 0.9775390625 + }, + { + "word": " a", + "start": 1457.88, + "end": 1458.02, + "probability": 1.0 + }, + { + "word": " cop.", + "start": 1458.02, + "end": 1458.18, + "probability": 1.0 + } + ] + }, + { + "id": 721, + "text": "I would actually go on the other side of these speeding cameras and just wait for people to speed back up.", + "start": 1458.28, + "end": 1462.66, + "words": [ + { + "word": " I", + "start": 1458.28, + "end": 1458.5, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 1458.5, + "end": 1458.68, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 1458.68, + "end": 1458.9, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 1458.9, + "end": 1459.14, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1459.14, + "end": 1459.24, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1459.24, + "end": 1459.32, + "probability": 1.0 + }, + { + "word": " other", + "start": 1459.32, + "end": 1459.58, + "probability": 1.0 + }, + { + "word": " side", + "start": 1459.58, + "end": 1459.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1459.9, + "end": 1460.1, + "probability": 1.0 + }, + { + "word": " these", + "start": 1460.1, + "end": 1460.24, + "probability": 0.99072265625 + }, + { + "word": " speeding", + "start": 1460.24, + "end": 1460.68, + "probability": 0.568359375 + }, + { + "word": " cameras", + "start": 1460.68, + "end": 1461.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 1461.24, + "end": 1461.46, + "probability": 0.861328125 + }, + { + "word": " just", + "start": 1461.46, + "end": 1461.52, + "probability": 0.9951171875 + }, + { + "word": " wait", + "start": 1461.52, + "end": 1461.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 1461.72, + "end": 1461.82, + "probability": 1.0 + }, + { + "word": " people", + "start": 1461.82, + "end": 1462.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1462.02, + "end": 1462.08, + "probability": 0.88330078125 + }, + { + "word": " speed", + "start": 1462.08, + "end": 1462.24, + "probability": 0.99658203125 + }, + { + "word": " back", + "start": 1462.24, + "end": 1462.42, + "probability": 0.99951171875 + }, + { + "word": " up.", + "start": 1462.42, + "end": 1462.66, + "probability": 1.0 + } + ] + }, + { + "id": 722, + "text": "Right.", + "start": 1462.82, + "end": 1463.22, + "words": [ + { + "word": " Right.", + "start": 1462.82, + "end": 1463.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 723, + "text": "Because that's exactly what happens.", + "start": 1463.3, + "end": 1464.26, + "words": [ + { + "word": " Because", + "start": 1463.3, + "end": 1463.44, + "probability": 0.8671875 + }, + { + "word": " that's", + "start": 1463.44, + "end": 1463.56, + "probability": 0.9990234375 + }, + { + "word": " exactly", + "start": 1463.56, + "end": 1463.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 1463.82, + "end": 1463.94, + "probability": 1.0 + }, + { + "word": " happens.", + "start": 1463.94, + "end": 1464.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 724, + "text": "Well, they should have one.", + "start": 1464.54, + "end": 1465.52, + "words": [ + { + "word": " Well,", + "start": 1464.54, + "end": 1464.94, + "probability": 0.9140625 + }, + { + "word": " they", + "start": 1464.96, + "end": 1465.06, + "probability": 0.7607421875 + }, + { + "word": " should", + "start": 1465.06, + "end": 1465.16, + "probability": 0.9912109375 + }, + { + "word": " have", + "start": 1465.16, + "end": 1465.28, + "probability": 0.99755859375 + }, + { + "word": " one.", + "start": 1465.28, + "end": 1465.52, + "probability": 0.95751953125 + } + ] + }, + { + "id": 725, + "text": "One that's sitting there ticketing the people that are driving too slow.", + "start": 1465.52, + "end": 1467.52, + "words": [ + { + "word": " One", + "start": 1465.52, + "end": 1465.6, + "probability": 0.1480712890625 + }, + { + "word": " that's", + "start": 1465.6, + "end": 1465.74, + "probability": 0.7861328125 + }, + { + "word": " sitting", + "start": 1465.74, + "end": 1465.88, + "probability": 1.0 + }, + { + "word": " there", + "start": 1465.88, + "end": 1466.1, + "probability": 1.0 + }, + { + "word": " ticketing", + "start": 1466.1, + "end": 1466.4, + "probability": 0.9833984375 + }, + { + "word": " the", + "start": 1466.4, + "end": 1466.52, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 1466.52, + "end": 1466.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 1466.74, + "end": 1466.86, + "probability": 0.94140625 + }, + { + "word": " are", + "start": 1466.86, + "end": 1466.92, + "probability": 1.0 + }, + { + "word": " driving", + "start": 1466.92, + "end": 1467.04, + "probability": 0.97705078125 + }, + { + "word": " too", + "start": 1467.04, + "end": 1467.22, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1467.22, + "end": 1467.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 726, + "text": "Right.", + "start": 1468.3000000000002, + "end": 1468.66, + "words": [ + { + "word": " Right.", + "start": 1468.3000000000002, + "end": 1468.66, + "probability": 0.751953125 + } + ] + }, + { + "id": 727, + "text": "You're going 25 in a 40.", + "start": 1469.18, + "end": 1470.86, + "words": [ + { + "word": " You're", + "start": 1469.18, + "end": 1469.54, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1469.54, + "end": 1469.66, + "probability": 1.0 + }, + { + "word": " 25", + "start": 1469.66, + "end": 1470.38, + "probability": 0.98095703125 + }, + { + "word": " in", + "start": 1470.38, + "end": 1470.64, + "probability": 0.974609375 + }, + { + "word": " a", + "start": 1470.64, + "end": 1470.68, + "probability": 0.99951171875 + }, + { + "word": " 40.", + "start": 1470.68, + "end": 1470.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 728, + "text": "Yeah.", + "start": 1471.0, + "end": 1471.34, + "words": [ + { + "word": " Yeah.", + "start": 1471.0, + "end": 1471.34, + "probability": 0.67578125 + } + ] + }, + { + "id": 729, + "text": "It's dangerous.", + "start": 1471.9, + "end": 1472.56, + "words": [ + { + "word": " It's", + "start": 1471.9, + "end": 1472.26, + "probability": 1.0 + }, + { + "word": " dangerous.", + "start": 1472.26, + "end": 1472.56, + "probability": 1.0 + } + ] + }, + { + "id": 730, + "text": "Right.", + "start": 1472.84, + "end": 1473.2, + "words": [ + { + "word": " Right.", + "start": 1472.84, + "end": 1473.2, + "probability": 0.99169921875 + } + ] + }, + { + "id": 731, + "text": "You're making people slam on their brakes.", + "start": 1473.28, + "end": 1474.72, + "words": [ + { + "word": " You're", + "start": 1473.28, + "end": 1473.48, + "probability": 0.99853515625 + }, + { + "word": " making", + "start": 1473.48, + "end": 1473.66, + "probability": 1.0 + }, + { + "word": " people", + "start": 1473.66, + "end": 1473.92, + "probability": 1.0 + }, + { + "word": " slam", + "start": 1473.92, + "end": 1474.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 1474.16, + "end": 1474.34, + "probability": 1.0 + }, + { + "word": " their", + "start": 1474.34, + "end": 1474.44, + "probability": 0.99169921875 + }, + { + "word": " brakes.", + "start": 1474.44, + "end": 1474.72, + "probability": 0.990234375 + } + ] + }, + { + "id": 732, + "text": "Right.", + "start": 1474.76, + "end": 1474.96, + "words": [ + { + "word": " Right.", + "start": 1474.76, + "end": 1474.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 733, + "text": "Right.", + "start": 1474.96, + "end": 1475.14, + "words": [ + { + "word": " Right.", + "start": 1474.96, + "end": 1475.14, + "probability": 0.84716796875 + } + ] + }, + { + "id": 734, + "text": "For no reason.", + "start": 1475.22, + "end": 1475.9, + "words": [ + { + "word": " For", + "start": 1475.22, + "end": 1475.4, + "probability": 0.99462890625 + }, + { + "word": " no", + "start": 1475.4, + "end": 1475.56, + "probability": 1.0 + }, + { + "word": " reason.", + "start": 1475.56, + "end": 1475.9, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "Right.", + "start": 1476.02, + "end": 1476.32, + "words": [ + { + "word": " Right.", + "start": 1476.02, + "end": 1476.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 736, + "text": "Right.", + "start": 1476.54, + "end": 1476.9, + "words": [ + { + "word": " Right.", + "start": 1476.54, + "end": 1476.9, + "probability": 0.91455078125 + } + ] + }, + { + "id": 737, + "text": "It's just lame.", + "start": 1477.12, + "end": 1477.88, + "words": [ + { + "word": " It's", + "start": 1477.12, + "end": 1477.48, + "probability": 0.74755859375 + }, + { + "word": " just", + "start": 1477.48, + "end": 1477.62, + "probability": 0.9990234375 + }, + { + "word": " lame.", + "start": 1477.62, + "end": 1477.88, + "probability": 0.97998046875 + } + ] + }, + { + "id": 738, + "text": "Stupid traffic.", + "start": 1478.5400000000002, + "end": 1479.26, + "words": [ + { + "word": " Stupid", + "start": 1478.5400000000002, + "end": 1478.9, + "probability": 0.595703125 + }, + { + "word": " traffic.", + "start": 1478.9, + "end": 1479.26, + "probability": 0.556640625 + } + ] + }, + { + "id": 739, + "text": "You know, you think in this day and age there would be some sort of technology out there", + "start": 1479.26, + "end": 1482.66, + "words": [ + { + "word": " You", + "start": 1479.26, + "end": 1479.36, + "probability": 0.9130859375 + }, + { + "word": " know,", + "start": 1479.36, + "end": 1479.36, + "probability": 0.9150390625 + }, + { + "word": " you", + "start": 1479.42, + "end": 1479.52, + "probability": 0.998046875 + }, + { + "word": " think", + "start": 1479.52, + "end": 1479.8, + "probability": 0.76220703125 + }, + { + "word": " in", + "start": 1479.8, + "end": 1480.12, + "probability": 0.97705078125 + }, + { + "word": " this", + "start": 1480.12, + "end": 1480.24, + "probability": 0.99951171875 + }, + { + "word": " day", + "start": 1480.24, + "end": 1480.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 1480.38, + "end": 1480.52, + "probability": 1.0 + }, + { + "word": " age", + "start": 1480.52, + "end": 1480.68, + "probability": 1.0 + }, + { + "word": " there", + "start": 1480.68, + "end": 1480.78, + "probability": 0.7685546875 + }, + { + "word": " would", + "start": 1480.78, + "end": 1480.86, + "probability": 0.541015625 + }, + { + "word": " be", + "start": 1480.86, + "end": 1480.92, + "probability": 1.0 + }, + { + "word": " some", + "start": 1480.92, + "end": 1481.06, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1481.06, + "end": 1481.48, + "probability": 0.99365234375 + }, + { + "word": " of", + "start": 1481.48, + "end": 1481.66, + "probability": 1.0 + }, + { + "word": " technology", + "start": 1481.66, + "end": 1481.84, + "probability": 1.0 + }, + { + "word": " out", + "start": 1481.84, + "end": 1482.38, + "probability": 1.0 + }, + { + "word": " there", + "start": 1482.38, + "end": 1482.66, + "probability": 1.0 + } + ] + }, + { + "id": 740, + "text": "that, you know, we could all keep at the same speed.", + "start": 1482.66, + "end": 1484.72, + "words": [ + { + "word": " that,", + "start": 1482.66, + "end": 1483.08, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1483.1, + "end": 1483.36, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1483.36, + "end": 1483.42, + "probability": 1.0 + }, + { + "word": " we", + "start": 1483.44, + "end": 1483.54, + "probability": 1.0 + }, + { + "word": " could", + "start": 1483.54, + "end": 1483.6, + "probability": 0.97509765625 + }, + { + "word": " all", + "start": 1483.6, + "end": 1483.74, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1483.74, + "end": 1483.9, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1483.9, + "end": 1484.02, + "probability": 0.92822265625 + }, + { + "word": " the", + "start": 1484.02, + "end": 1484.12, + "probability": 1.0 + }, + { + "word": " same", + "start": 1484.12, + "end": 1484.26, + "probability": 1.0 + }, + { + "word": " speed.", + "start": 1484.26, + "end": 1484.72, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "We should take a hit, though.", + "start": 1484.96, + "end": 1486.2, + "words": [ + { + "word": " We", + "start": 1484.96, + "end": 1485.32, + "probability": 0.99853515625 + }, + { + "word": " should", + "start": 1485.32, + "end": 1485.48, + "probability": 1.0 + }, + { + "word": " take", + "start": 1485.48, + "end": 1485.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1485.68, + "end": 1485.78, + "probability": 1.0 + }, + { + "word": " hit,", + "start": 1485.78, + "end": 1485.94, + "probability": 0.60546875 + }, + { + "word": " though.", + "start": 1486.0, + "end": 1486.2, + "probability": 1.0 + } + ] + }, + { + "id": 742, + "text": "Yeah.", + "start": 1486.3, + "end": 1486.52, + "words": [ + { + "word": " Yeah.", + "start": 1486.3, + "end": 1486.52, + "probability": 0.2509765625 + } + ] + }, + { + "id": 743, + "text": "Pima County, you know, I recently just moved way out to the east side.", + "start": 1486.52, + "end": 1490.64, + "words": [ + { + "word": " Pima", + "start": 1486.52, + "end": 1486.88, + "probability": 0.8505859375 + }, + { + "word": " County,", + "start": 1486.88, + "end": 1487.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 1487.38, + "end": 1487.58, + "probability": 0.9560546875 + }, + { + "word": " know,", + "start": 1487.58, + "end": 1487.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 1487.74, + "end": 1487.98, + "probability": 0.9912109375 + }, + { + "word": " recently", + "start": 1487.98, + "end": 1488.46, + "probability": 1.0 + }, + { + "word": " just", + "start": 1488.46, + "end": 1488.78, + "probability": 1.0 + }, + { + "word": " moved", + "start": 1488.78, + "end": 1489.1, + "probability": 1.0 + }, + { + "word": " way", + "start": 1489.1, + "end": 1489.8, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 1489.8, + "end": 1490.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1490.02, + "end": 1490.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 1490.16, + "end": 1490.26, + "probability": 1.0 + }, + { + "word": " east", + "start": 1490.26, + "end": 1490.38, + "probability": 0.9990234375 + }, + { + "word": " side.", + "start": 1490.38, + "end": 1490.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 744, + "text": "Way out in the boondocks.", + "start": 1490.82, + "end": 1491.6, + "words": [ + { + "word": " Way", + "start": 1490.82, + "end": 1491.04, + "probability": 0.869140625 + }, + { + "word": " out", + "start": 1491.04, + "end": 1491.12, + "probability": 0.427490234375 + }, + { + "word": " in", + "start": 1491.12, + "end": 1491.2, + "probability": 0.81787109375 + }, + { + "word": " the", + "start": 1491.2, + "end": 1491.26, + "probability": 0.99951171875 + }, + { + "word": " boondocks.", + "start": 1491.26, + "end": 1491.6, + "probability": 0.9794921875 + } + ] + }, + { + "id": 745, + "text": "So I am not in the city limits any longer.", + "start": 1491.78, + "end": 1494.04, + "words": [ + { + "word": " So", + "start": 1491.78, + "end": 1491.88, + "probability": 0.9453125 + }, + { + "word": " I", + "start": 1491.88, + "end": 1492.14, + "probability": 0.77197265625 + }, + { + "word": " am", + "start": 1492.14, + "end": 1492.34, + "probability": 1.0 + }, + { + "word": " not", + "start": 1492.34, + "end": 1492.64, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1492.64, + "end": 1492.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1492.9, + "end": 1493.04, + "probability": 1.0 + }, + { + "word": " city", + "start": 1493.04, + "end": 1493.24, + "probability": 1.0 + }, + { + "word": " limits", + "start": 1493.24, + "end": 1493.48, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 1493.48, + "end": 1493.76, + "probability": 0.998046875 + }, + { + "word": " longer.", + "start": 1493.76, + "end": 1494.04, + "probability": 1.0 + } + ] + }, + { + "id": 746, + "text": "Right.", + "start": 1494.04, + "end": 1494.32, + "words": [ + { + "word": " Right.", + "start": 1494.04, + "end": 1494.32, + "probability": 0.488037109375 + } + ] + }, + { + "id": 747, + "text": "And there was a traffic camera over there on Tank of Verde near Houghton.", + "start": 1494.72, + "end": 1497.84, + "words": [ + { + "word": " And", + "start": 1494.72, + "end": 1495.08, + "probability": 0.87841796875 + }, + { + "word": " there", + "start": 1495.08, + "end": 1495.38, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 1495.38, + "end": 1495.54, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1495.54, + "end": 1495.64, + "probability": 0.99951171875 + }, + { + "word": " traffic", + "start": 1495.64, + "end": 1495.9, + "probability": 0.9990234375 + }, + { + "word": " camera", + "start": 1495.9, + "end": 1496.16, + "probability": 0.998046875 + }, + { + "word": " over", + "start": 1496.16, + "end": 1496.48, + "probability": 0.998046875 + }, + { + "word": " there", + "start": 1496.48, + "end": 1496.66, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1496.66, + "end": 1496.78, + "probability": 0.99609375 + }, + { + "word": " Tank", + "start": 1496.78, + "end": 1496.98, + "probability": 0.70654296875 + }, + { + "word": " of", + "start": 1496.98, + "end": 1497.1, + "probability": 0.5185546875 + }, + { + "word": " Verde", + "start": 1497.1, + "end": 1497.28, + "probability": 0.92138671875 + }, + { + "word": " near", + "start": 1497.28, + "end": 1497.44, + "probability": 0.99365234375 + }, + { + "word": " Houghton.", + "start": 1497.44, + "end": 1497.84, + "probability": 0.98828125 + } + ] + }, + { + "id": 748, + "text": "Mm-hmm.", + "start": 1497.92, + "end": 1498.26, + "words": [ + { + "word": " Mm", + "start": 1497.92, + "end": 1498.12, + "probability": 0.483642578125 + }, + { + "word": "-hmm.", + "start": 1498.12, + "end": 1498.26, + "probability": 0.994140625 + } + ] + }, + { + "id": 749, + "text": "Right?", + "start": 1498.36, + "end": 1498.6, + "words": [ + { + "word": " Right?", + "start": 1498.36, + "end": 1498.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 750, + "text": "It's gone now.", + "start": 1498.68, + "end": 1499.58, + "words": [ + { + "word": " It's", + "start": 1498.68, + "end": 1498.96, + "probability": 0.99951171875 + }, + { + "word": " gone", + "start": 1498.96, + "end": 1499.2, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1499.2, + "end": 1499.58, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "Really?", + "start": 1500.0800000000002, + "end": 1500.44, + "words": [ + { + "word": " Really?", + "start": 1500.0800000000002, + "end": 1500.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 752, + "text": "Gone.", + "start": 1500.54, + "end": 1500.9, + "words": [ + { + "word": " Gone.", + "start": 1500.54, + "end": 1500.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 753, + "text": "Like the city removed or somebody else removed it?", + "start": 1501.12, + "end": 1502.72, + "words": [ + { + "word": " Like", + "start": 1501.12, + "end": 1501.4, + "probability": 0.900390625 + }, + { + "word": " the", + "start": 1501.4, + "end": 1501.52, + "probability": 0.400390625 + }, + { + "word": " city", + "start": 1501.52, + "end": 1501.72, + "probability": 0.99951171875 + }, + { + "word": " removed", + "start": 1501.72, + "end": 1501.92, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 1501.92, + "end": 1502.12, + "probability": 0.9052734375 + }, + { + "word": " somebody", + "start": 1502.12, + "end": 1502.32, + "probability": 0.99951171875 + }, + { + "word": " else", + "start": 1502.32, + "end": 1502.5, + "probability": 1.0 + }, + { + "word": " removed", + "start": 1502.5, + "end": 1502.68, + "probability": 0.99755859375 + }, + { + "word": " it?", + "start": 1502.68, + "end": 1502.72, + "probability": 0.8662109375 + } + ] + }, + { + "id": 754, + "text": "The county removed it.", + "start": 1502.72, + "end": 1503.4, + "words": [ + { + "word": " The", + "start": 1502.72, + "end": 1502.84, + "probability": 0.99609375 + }, + { + "word": " county", + "start": 1502.84, + "end": 1502.96, + "probability": 0.9990234375 + }, + { + "word": " removed", + "start": 1502.96, + "end": 1503.24, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1503.24, + "end": 1503.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 755, + "text": "Oh, okay.", + "start": 1503.4, + "end": 1503.76, + "words": [ + { + "word": " Oh,", + "start": 1503.4, + "end": 1503.68, + "probability": 0.57080078125 + }, + { + "word": " okay.", + "start": 1503.68, + "end": 1503.76, + "probability": 0.96142578125 + } + ] + }, + { + "id": 756, + "text": "Because people were angry about it.", + "start": 1504.6800000000003, + "end": 1507.3, + "words": [ + { + "word": " Because", + "start": 1504.6800000000003, + "end": 1505.0400000000002, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1505.0400000000002, + "end": 1505.4, + "probability": 1.0 + }, + { + "word": " were", + "start": 1505.4, + "end": 1505.78, + "probability": 1.0 + }, + { + "word": " angry", + "start": 1505.78, + "end": 1506.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 1506.3, + "end": 1507.0, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1507.0, + "end": 1507.3, + "probability": 1.0 + } + ] + }, + { + "id": 757, + "text": "Really?", + "start": 1507.38, + "end": 1507.64, + "words": [ + { + "word": " Really?", + "start": 1507.38, + "end": 1507.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 758, + "text": "They were saying, we don't want this camera here.", + "start": 1507.64, + "end": 1509.58, + "words": [ + { + "word": " They", + "start": 1507.64, + "end": 1507.92, + "probability": 0.99755859375 + }, + { + "word": " were", + "start": 1507.92, + "end": 1508.02, + "probability": 0.98583984375 + }, + { + "word": " saying,", + "start": 1508.02, + "end": 1508.22, + "probability": 1.0 + }, + { + "word": " we", + "start": 1508.32, + "end": 1508.42, + "probability": 0.9619140625 + }, + { + "word": " don't", + "start": 1508.42, + "end": 1508.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 1508.6, + "end": 1508.78, + "probability": 1.0 + }, + { + "word": " this", + "start": 1508.78, + "end": 1509.0, + "probability": 1.0 + }, + { + "word": " camera", + "start": 1509.0, + "end": 1509.28, + "probability": 1.0 + }, + { + "word": " here.", + "start": 1509.28, + "end": 1509.58, + "probability": 1.0 + } + ] + }, + { + "id": 759, + "text": "Get rid of it.", + "start": 1509.68, + "end": 1510.26, + "words": [ + { + "word": " Get", + "start": 1509.68, + "end": 1509.88, + "probability": 1.0 + }, + { + "word": " rid", + "start": 1509.88, + "end": 1510.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 1510.04, + "end": 1510.18, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1510.18, + "end": 1510.26, + "probability": 1.0 + } + ] + }, + { + "id": 760, + "text": "So the community got together and got rid of it.", + "start": 1510.34, + "end": 1512.06, + "words": [ + { + "word": " So", + "start": 1510.34, + "end": 1510.44, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1510.44, + "end": 1510.54, + "probability": 0.94580078125 + }, + { + "word": " community", + "start": 1510.54, + "end": 1510.84, + "probability": 1.0 + }, + { + "word": " got", + "start": 1510.84, + "end": 1511.14, + "probability": 0.94287109375 + }, + { + "word": " together", + "start": 1511.14, + "end": 1511.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 1511.48, + "end": 1511.64, + "probability": 0.9951171875 + }, + { + "word": " got", + "start": 1511.64, + "end": 1511.74, + "probability": 0.99951171875 + }, + { + "word": " rid", + "start": 1511.74, + "end": 1511.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1511.92, + "end": 1512.04, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1512.04, + "end": 1512.06, + "probability": 1.0 + } + ] + }, + { + "id": 761, + "text": "So let's take a clue from the county here, from the people, residents of that neighborhood,", + "start": 1512.12, + "end": 1517.16, + "words": [ + { + "word": " So", + "start": 1512.12, + "end": 1512.16, + "probability": 0.9404296875 + }, + { + "word": " let's", + "start": 1512.16, + "end": 1512.16, + "probability": 0.99658203125 + }, + { + "word": " take", + "start": 1512.16, + "end": 1512.2, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 1512.2, + "end": 1512.44, + "probability": 1.0 + }, + { + "word": " clue", + "start": 1512.44, + "end": 1512.78, + "probability": 1.0 + }, + { + "word": " from", + "start": 1512.78, + "end": 1513.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 1513.26, + "end": 1514.28, + "probability": 0.994140625 + }, + { + "word": " county", + "start": 1514.28, + "end": 1515.36, + "probability": 1.0 + }, + { + "word": " here,", + "start": 1515.36, + "end": 1515.66, + "probability": 1.0 + }, + { + "word": " from", + "start": 1515.76, + "end": 1515.94, + "probability": 0.97216796875 + }, + { + "word": " the", + "start": 1515.94, + "end": 1515.98, + "probability": 0.93701171875 + }, + { + "word": " people,", + "start": 1515.98, + "end": 1516.24, + "probability": 0.998046875 + }, + { + "word": " residents", + "start": 1516.3, + "end": 1516.62, + "probability": 0.9921875 + }, + { + "word": " of", + "start": 1516.62, + "end": 1516.76, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1516.76, + "end": 1516.84, + "probability": 1.0 + }, + { + "word": " neighborhood,", + "start": 1516.84, + "end": 1517.16, + "probability": 1.0 + } + ] + }, + { + "id": 762, + "text": "and I think that we should all just complain until they get rid of the cameras because", + "start": 1517.28, + "end": 1520.18, + "words": [ + { + "word": " and", + "start": 1517.28, + "end": 1517.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 1517.64, + "end": 1517.9, + "probability": 1.0 + }, + { + "word": " think", + "start": 1517.9, + "end": 1518.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1518.14, + "end": 1518.26, + "probability": 1.0 + }, + { + "word": " we", + "start": 1518.26, + "end": 1518.38, + "probability": 1.0 + }, + { + "word": " should", + "start": 1518.38, + "end": 1518.54, + "probability": 1.0 + }, + { + "word": " all", + "start": 1518.54, + "end": 1518.68, + "probability": 1.0 + }, + { + "word": " just", + "start": 1518.68, + "end": 1518.8, + "probability": 1.0 + }, + { + "word": " complain", + "start": 1518.8, + "end": 1519.08, + "probability": 1.0 + }, + { + "word": " until", + "start": 1519.08, + "end": 1519.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 1519.34, + "end": 1519.42, + "probability": 0.97802734375 + }, + { + "word": " get", + "start": 1519.42, + "end": 1519.56, + "probability": 1.0 + }, + { + "word": " rid", + "start": 1519.56, + "end": 1519.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 1519.64, + "end": 1519.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1519.72, + "end": 1519.78, + "probability": 1.0 + }, + { + "word": " cameras", + "start": 1519.78, + "end": 1520.02, + "probability": 1.0 + }, + { + "word": " because", + "start": 1520.02, + "end": 1520.18, + "probability": 0.67578125 + } + ] + }, + { + "id": 763, + "text": "it's so dumb.", + "start": 1520.18, + "end": 1520.8, + "words": [ + { + "word": " it's", + "start": 1520.18, + "end": 1520.38, + "probability": 1.0 + }, + { + "word": " so", + "start": 1520.38, + "end": 1520.58, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 1520.58, + "end": 1520.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 764, + "text": "Or we could just hire some vigilantes and just go ahead and remove them ourselves.", + "start": 1520.94, + "end": 1523.58, + "words": [ + { + "word": " Or", + "start": 1520.94, + "end": 1521.18, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 1521.18, + "end": 1521.34, + "probability": 0.9951171875 + }, + { + "word": " could", + "start": 1521.34, + "end": 1521.42, + "probability": 0.64892578125 + }, + { + "word": " just", + "start": 1521.42, + "end": 1521.5, + "probability": 0.9638671875 + }, + { + "word": " hire", + "start": 1521.5, + "end": 1521.68, + "probability": 1.0 + }, + { + "word": " some", + "start": 1521.68, + "end": 1521.84, + "probability": 1.0 + }, + { + "word": " vigilantes", + "start": 1521.84, + "end": 1522.34, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1522.34, + "end": 1522.58, + "probability": 1.0 + }, + { + "word": " just", + "start": 1522.58, + "end": 1522.7, + "probability": 1.0 + }, + { + "word": " go", + "start": 1522.7, + "end": 1522.82, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1522.82, + "end": 1522.92, + "probability": 0.8671875 + }, + { + "word": " and", + "start": 1522.92, + "end": 1522.98, + "probability": 1.0 + }, + { + "word": " remove", + "start": 1522.98, + "end": 1523.22, + "probability": 1.0 + }, + { + "word": " them", + "start": 1523.22, + "end": 1523.36, + "probability": 1.0 + }, + { + "word": " ourselves.", + "start": 1523.36, + "end": 1523.58, + "probability": 1.0 + } + ] + }, + { + "id": 765, + "text": "Obviously, it's ticketing people for doing six miles an hour at a green light as soon", + "start": 1524.04, + "end": 1527.38, + "words": [ + { + "word": " Obviously,", + "start": 1524.04, + "end": 1524.24, + "probability": 0.796875 + }, + { + "word": " it's", + "start": 1524.26, + "end": 1524.44, + "probability": 0.9873046875 + }, + { + "word": " ticketing", + "start": 1524.44, + "end": 1524.7, + "probability": 0.998046875 + }, + { + "word": " people", + "start": 1524.7, + "end": 1524.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 1524.94, + "end": 1525.24, + "probability": 0.99951171875 + }, + { + "word": " doing", + "start": 1525.24, + "end": 1525.44, + "probability": 1.0 + }, + { + "word": " six", + "start": 1525.44, + "end": 1525.84, + "probability": 0.88525390625 + }, + { + "word": " miles", + "start": 1525.84, + "end": 1526.08, + "probability": 1.0 + }, + { + "word": " an", + "start": 1526.08, + "end": 1526.3, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 1526.3, + "end": 1526.5, + "probability": 1.0 + }, + { + "word": " at", + "start": 1526.5, + "end": 1526.64, + "probability": 0.544921875 + }, + { + "word": " a", + "start": 1526.64, + "end": 1526.66, + "probability": 0.99853515625 + }, + { + "word": " green", + "start": 1526.66, + "end": 1526.86, + "probability": 0.99365234375 + }, + { + "word": " light", + "start": 1526.86, + "end": 1527.08, + "probability": 0.9951171875 + }, + { + "word": " as", + "start": 1527.08, + "end": 1527.26, + "probability": 0.95458984375 + }, + { + "word": " soon", + "start": 1527.26, + "end": 1527.38, + "probability": 1.0 + } + ] + }, + { + "id": 766, + "text": "as you're the first one out of the gate.", + "start": 1527.38, + "end": 1529.48, + "words": [ + { + "word": " as", + "start": 1527.38, + "end": 1527.46, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1527.46, + "end": 1527.84, + "probability": 0.7578125 + }, + { + "word": " the", + "start": 1527.84, + "end": 1528.36, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 1528.36, + "end": 1528.7, + "probability": 1.0 + }, + { + "word": " one", + "start": 1528.7, + "end": 1528.86, + "probability": 0.994140625 + }, + { + "word": " out", + "start": 1528.86, + "end": 1529.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 1529.1, + "end": 1529.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 1529.2, + "end": 1529.24, + "probability": 1.0 + }, + { + "word": " gate.", + "start": 1529.24, + "end": 1529.48, + "probability": 1.0 + } + ] + }, + { + "id": 767, + "text": "Right, right.", + "start": 1529.6, + "end": 1530.06, + "words": [ + { + "word": " Right,", + "start": 1529.6, + "end": 1529.78, + "probability": 0.9736328125 + }, + { + "word": " right.", + "start": 1529.84, + "end": 1530.06, + "probability": 1.0 + } + ] + }, + { + "id": 768, + "text": "Ah, so lame.", + "start": 1530.44, + "end": 1531.52, + "words": [ + { + "word": " Ah,", + "start": 1530.44, + "end": 1530.76, + "probability": 0.6904296875 + }, + { + "word": " so", + "start": 1530.82, + "end": 1531.08, + "probability": 0.947265625 + }, + { + "word": " lame.", + "start": 1531.08, + "end": 1531.52, + "probability": 1.0 + } + ] + }, + { + "id": 769, + "text": "Are you done with your soapbox, right?", + "start": 1531.7, + "end": 1532.66, + "words": [ + { + "word": " Are", + "start": 1531.7, + "end": 1531.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 1531.86, + "end": 1531.9, + "probability": 1.0 + }, + { + "word": " done", + "start": 1531.9, + "end": 1532.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 1532.06, + "end": 1532.16, + "probability": 1.0 + }, + { + "word": " your", + "start": 1532.16, + "end": 1532.24, + "probability": 1.0 + }, + { + "word": " soapbox,", + "start": 1532.24, + "end": 1532.54, + "probability": 0.9853515625 + }, + { + "word": " right?", + "start": 1532.56, + "end": 1532.66, + "probability": 0.408447265625 + } + ] + }, + { + "id": 770, + "text": "Yeah, I'm done with my soapbox, right?", + "start": 1532.78, + "end": 1534.2, + "words": [ + { + "word": " Yeah,", + "start": 1532.78, + "end": 1533.0, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1533.0, + "end": 1533.14, + "probability": 1.0 + }, + { + "word": " done", + "start": 1533.14, + "end": 1533.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 1533.32, + "end": 1533.46, + "probability": 1.0 + }, + { + "word": " my", + "start": 1533.46, + "end": 1533.56, + "probability": 0.99951171875 + }, + { + "word": " soapbox,", + "start": 1533.56, + "end": 1534.04, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1534.06, + "end": 1534.2, + "probability": 0.98876953125 + } + ] + }, + { + "id": 771, + "text": "All right, so tell me how I can rent out my bathroom.", + "start": 1534.38, + "end": 1536.12, + "words": [ + { + "word": " All", + "start": 1534.38, + "end": 1534.7, + "probability": 0.92236328125 + }, + { + "word": " right,", + "start": 1534.7, + "end": 1534.8, + "probability": 1.0 + }, + { + "word": " so", + "start": 1534.82, + "end": 1534.9, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1534.9, + "end": 1535.06, + "probability": 1.0 + }, + { + "word": " me", + "start": 1535.06, + "end": 1535.16, + "probability": 1.0 + }, + { + "word": " how", + "start": 1535.16, + "end": 1535.24, + "probability": 1.0 + }, + { + "word": " I", + "start": 1535.24, + "end": 1535.28, + "probability": 1.0 + }, + { + "word": " can", + "start": 1535.28, + "end": 1535.42, + "probability": 1.0 + }, + { + "word": " rent", + "start": 1535.42, + "end": 1535.56, + "probability": 0.9931640625 + }, + { + "word": " out", + "start": 1535.56, + "end": 1535.7, + "probability": 1.0 + }, + { + "word": " my", + "start": 1535.7, + "end": 1535.76, + "probability": 1.0 + }, + { + "word": " bathroom.", + "start": 1535.76, + "end": 1536.12, + "probability": 1.0 + } + ] + }, + { + "id": 772, + "text": "Well, apparently, if you have an extra bathroom and you want to rent it out because you don't", + "start": 1536.42, + "end": 1540.5, + "words": [ + { + "word": " Well,", + "start": 1536.42, + "end": 1536.66, + "probability": 1.0 + }, + { + "word": " apparently,", + "start": 1536.7, + "end": 1537.0, + "probability": 1.0 + }, + { + "word": " if", + "start": 1537.08, + "end": 1537.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 1537.36, + "end": 1537.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 1537.86, + "end": 1537.98, + "probability": 1.0 + }, + { + "word": " an", + "start": 1537.98, + "end": 1538.02, + "probability": 1.0 + }, + { + "word": " extra", + "start": 1538.02, + "end": 1538.16, + "probability": 1.0 + }, + { + "word": " bathroom", + "start": 1538.16, + "end": 1538.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 1538.5, + "end": 1538.64, + "probability": 0.990234375 + }, + { + "word": " you", + "start": 1538.64, + "end": 1538.7, + "probability": 1.0 + }, + { + "word": " want", + "start": 1538.7, + "end": 1538.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1538.84, + "end": 1538.92, + "probability": 1.0 + }, + { + "word": " rent", + "start": 1538.92, + "end": 1539.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 1539.04, + "end": 1539.16, + "probability": 1.0 + }, + { + "word": " out", + "start": 1539.16, + "end": 1539.3, + "probability": 1.0 + }, + { + "word": " because", + "start": 1539.3, + "end": 1539.62, + "probability": 0.93701171875 + }, + { + "word": " you", + "start": 1539.62, + "end": 1539.8, + "probability": 0.32763671875 + }, + { + "word": " don't", + "start": 1539.8, + "end": 1540.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 773, + "text": "know what to do with that space, or you want somebody else that you don't know to mess", + "start": 1540.5, + "end": 1543.56, + "words": [ + { + "word": " know", + "start": 1540.5, + "end": 1540.6, + "probability": 1.0 + }, + { + "word": " what", + "start": 1540.6, + "end": 1540.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1540.64, + "end": 1540.72, + "probability": 1.0 + }, + { + "word": " do", + "start": 1540.72, + "end": 1540.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 1540.78, + "end": 1540.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 1540.9, + "end": 1540.96, + "probability": 1.0 + }, + { + "word": " space,", + "start": 1540.96, + "end": 1541.14, + "probability": 1.0 + }, + { + "word": " or", + "start": 1541.32, + "end": 1542.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 1542.04, + "end": 1542.16, + "probability": 1.0 + }, + { + "word": " want", + "start": 1542.16, + "end": 1542.3, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1542.3, + "end": 1542.54, + "probability": 1.0 + }, + { + "word": " else", + "start": 1542.54, + "end": 1542.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1542.78, + "end": 1542.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 1542.9, + "end": 1543.02, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1543.02, + "end": 1543.18, + "probability": 1.0 + }, + { + "word": " know", + "start": 1543.18, + "end": 1543.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1543.3, + "end": 1543.4, + "probability": 1.0 + }, + { + "word": " mess", + "start": 1543.4, + "end": 1543.56, + "probability": 1.0 + } + ] + }, + { + "id": 774, + "text": "up your bathroom because your teenagers aren't doing enough for you, there is a new app on", + "start": 1543.56, + "end": 1548.44, + "words": [ + { + "word": " up", + "start": 1543.56, + "end": 1543.66, + "probability": 1.0 + }, + { + "word": " your", + "start": 1543.66, + "end": 1543.76, + "probability": 1.0 + }, + { + "word": " bathroom", + "start": 1543.76, + "end": 1544.0, + "probability": 1.0 + }, + { + "word": " because", + "start": 1544.0, + "end": 1544.16, + "probability": 1.0 + }, + { + "word": " your", + "start": 1544.16, + "end": 1544.28, + "probability": 0.99951171875 + }, + { + "word": " teenagers", + "start": 1544.28, + "end": 1544.54, + "probability": 1.0 + }, + { + "word": " aren't", + "start": 1544.54, + "end": 1544.84, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1544.84, + "end": 1544.94, + "probability": 1.0 + }, + { + "word": " enough", + "start": 1544.94, + "end": 1545.12, + "probability": 0.9033203125 + }, + { + "word": " for", + "start": 1545.12, + "end": 1545.34, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1545.34, + "end": 1545.54, + "probability": 1.0 + }, + { + "word": " there", + "start": 1545.84, + "end": 1547.04, + "probability": 0.77001953125 + }, + { + "word": " is", + "start": 1547.04, + "end": 1547.74, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 1547.74, + "end": 1547.8, + "probability": 1.0 + }, + { + "word": " new", + "start": 1547.8, + "end": 1547.94, + "probability": 1.0 + }, + { + "word": " app", + "start": 1547.94, + "end": 1548.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 1548.22, + "end": 1548.44, + "probability": 1.0 + } + ] + }, + { + "id": 775, + "text": "your smartphones that you can rent out your bathroom.", + "start": 1548.44, + "end": 1550.0, + "words": [ + { + "word": " your", + "start": 1548.44, + "end": 1548.56, + "probability": 0.81787109375 + }, + { + "word": " smartphones", + "start": 1548.56, + "end": 1548.88, + "probability": 0.923828125 + }, + { + "word": " that", + "start": 1548.88, + "end": 1549.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 1549.1, + "end": 1549.18, + "probability": 1.0 + }, + { + "word": " can", + "start": 1549.18, + "end": 1549.24, + "probability": 1.0 + }, + { + "word": " rent", + "start": 1549.24, + "end": 1549.44, + "probability": 1.0 + }, + { + "word": " out", + "start": 1549.44, + "end": 1549.6, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1549.6, + "end": 1549.7, + "probability": 1.0 + }, + { + "word": " bathroom.", + "start": 1549.7, + "end": 1550.0, + "probability": 1.0 + } + ] + }, + { + "id": 776, + "text": "Now, apparently, I can't see how this has been a big issue in a smaller town like Tucson,", + "start": 1550.26, + "end": 1553.94, + "words": [ + { + "word": " Now,", + "start": 1550.26, + "end": 1550.58, + "probability": 0.9970703125 + }, + { + "word": " apparently,", + "start": 1550.64, + "end": 1550.9, + "probability": 1.0 + }, + { + "word": " I", + "start": 1550.98, + "end": 1551.12, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1551.12, + "end": 1551.54, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 1551.54, + "end": 1551.7, + "probability": 1.0 + }, + { + "word": " how", + "start": 1551.7, + "end": 1551.84, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 1551.84, + "end": 1551.98, + "probability": 0.90869140625 + }, + { + "word": " has", + "start": 1551.98, + "end": 1552.04, + "probability": 0.392578125 + }, + { + "word": " been", + "start": 1552.04, + "end": 1552.12, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1552.12, + "end": 1552.24, + "probability": 1.0 + }, + { + "word": " big", + "start": 1552.24, + "end": 1552.34, + "probability": 1.0 + }, + { + "word": " issue", + "start": 1552.34, + "end": 1552.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 1552.58, + "end": 1552.78, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1552.78, + "end": 1553.08, + "probability": 0.99951171875 + }, + { + "word": " smaller", + "start": 1553.08, + "end": 1553.38, + "probability": 0.9169921875 + }, + { + "word": " town", + "start": 1553.38, + "end": 1553.58, + "probability": 1.0 + }, + { + "word": " like", + "start": 1553.58, + "end": 1553.74, + "probability": 0.99951171875 + }, + { + "word": " Tucson,", + "start": 1553.74, + "end": 1553.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 777, + "text": "but maybe in New York City this might be important.", + "start": 1554.04, + "end": 1555.8, + "words": [ + { + "word": " but", + "start": 1554.04, + "end": 1554.24, + "probability": 0.236083984375 + }, + { + "word": " maybe", + "start": 1554.24, + "end": 1554.62, + "probability": 0.97119140625 + }, + { + "word": " in", + "start": 1554.62, + "end": 1554.74, + "probability": 0.96484375 + }, + { + "word": " New", + "start": 1554.74, + "end": 1554.86, + "probability": 0.8359375 + }, + { + "word": " York", + "start": 1554.86, + "end": 1554.98, + "probability": 1.0 + }, + { + "word": " City", + "start": 1554.98, + "end": 1555.14, + "probability": 0.98681640625 + }, + { + "word": " this", + "start": 1555.14, + "end": 1555.3, + "probability": 0.92919921875 + }, + { + "word": " might", + "start": 1555.3, + "end": 1555.42, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 1555.42, + "end": 1555.5, + "probability": 1.0 + }, + { + "word": " important.", + "start": 1555.5, + "end": 1555.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 778, + "text": "You know, maybe there's not enough bathrooms for too many people.", + "start": 1556.06, + "end": 1558.14, + "words": [ + { + "word": " You", + "start": 1556.06, + "end": 1556.06, + "probability": 0.370849609375 + }, + { + "word": " know,", + "start": 1556.06, + "end": 1556.14, + "probability": 0.9990234375 + }, + { + "word": " maybe", + "start": 1556.14, + "end": 1556.3, + "probability": 0.99853515625 + }, + { + "word": " there's", + "start": 1556.3, + "end": 1556.78, + "probability": 0.978515625 + }, + { + "word": " not", + "start": 1556.78, + "end": 1557.02, + "probability": 0.86328125 + }, + { + "word": " enough", + "start": 1557.02, + "end": 1557.32, + "probability": 1.0 + }, + { + "word": " bathrooms", + "start": 1557.32, + "end": 1557.66, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 1557.66, + "end": 1557.74, + "probability": 0.287109375 + }, + { + "word": " too", + "start": 1557.74, + "end": 1557.86, + "probability": 0.9990234375 + }, + { + "word": " many", + "start": 1557.86, + "end": 1557.94, + "probability": 1.0 + }, + { + "word": " people.", + "start": 1557.94, + "end": 1558.14, + "probability": 1.0 + } + ] + }, + { + "id": 779, + "text": "So you can get on this app and put your bathroom up for rent and with a fee, and people will", + "start": 1558.48, + "end": 1563.76, + "words": [ + { + "word": " So", + "start": 1558.48, + "end": 1558.76, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1558.76, + "end": 1558.88, + "probability": 0.89013671875 + }, + { + "word": " can", + "start": 1558.88, + "end": 1558.98, + "probability": 1.0 + }, + { + "word": " get", + "start": 1558.98, + "end": 1559.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 1559.12, + "end": 1559.24, + "probability": 1.0 + }, + { + "word": " this", + "start": 1559.24, + "end": 1559.36, + "probability": 1.0 + }, + { + "word": " app", + "start": 1559.36, + "end": 1559.6, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1559.6, + "end": 1560.06, + "probability": 0.96826171875 + }, + { + "word": " put", + "start": 1560.06, + "end": 1560.7, + "probability": 0.99755859375 + }, + { + "word": " your", + "start": 1560.7, + "end": 1560.96, + "probability": 1.0 + }, + { + "word": " bathroom", + "start": 1560.96, + "end": 1561.7, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1561.7, + "end": 1561.88, + "probability": 1.0 + }, + { + "word": " for", + "start": 1561.88, + "end": 1562.02, + "probability": 1.0 + }, + { + "word": " rent", + "start": 1562.02, + "end": 1562.26, + "probability": 0.99072265625 + }, + { + "word": " and", + "start": 1562.26, + "end": 1562.56, + "probability": 0.7001953125 + }, + { + "word": " with", + "start": 1562.56, + "end": 1562.7, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1562.7, + "end": 1562.78, + "probability": 1.0 + }, + { + "word": " fee,", + "start": 1562.78, + "end": 1562.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1563.08, + "end": 1563.36, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1563.36, + "end": 1563.64, + "probability": 0.99853515625 + }, + { + "word": " will", + "start": 1563.64, + "end": 1563.76, + "probability": 0.98193359375 + } + ] + }, + { + "id": 780, + "text": "as long as you're home that you can let them in.", + "start": 1563.76, + "end": 1565.18, + "words": [ + { + "word": " as", + "start": 1563.76, + "end": 1563.9, + "probability": 0.76513671875 + }, + { + "word": " long", + "start": 1563.9, + "end": 1563.98, + "probability": 0.9931640625 + }, + { + "word": " as", + "start": 1563.98, + "end": 1564.06, + "probability": 0.98681640625 + }, + { + "word": " you're", + "start": 1564.06, + "end": 1564.16, + "probability": 0.7998046875 + }, + { + "word": " home", + "start": 1564.16, + "end": 1564.38, + "probability": 0.96435546875 + }, + { + "word": " that", + "start": 1564.38, + "end": 1564.54, + "probability": 0.97021484375 + }, + { + "word": " you", + "start": 1564.54, + "end": 1564.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 1564.66, + "end": 1564.76, + "probability": 1.0 + }, + { + "word": " let", + "start": 1564.76, + "end": 1564.9, + "probability": 1.0 + }, + { + "word": " them", + "start": 1564.9, + "end": 1564.98, + "probability": 1.0 + }, + { + "word": " in.", + "start": 1564.98, + "end": 1565.18, + "probability": 1.0 + } + ] + }, + { + "id": 781, + "text": "What kind of fee are we talking about?", + "start": 1565.18, + "end": 1566.38, + "words": [ + { + "word": " What", + "start": 1565.18, + "end": 1565.32, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 1565.32, + "end": 1565.44, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1565.44, + "end": 1565.54, + "probability": 1.0 + }, + { + "word": " fee", + "start": 1565.54, + "end": 1565.72, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1565.72, + "end": 1565.82, + "probability": 1.0 + }, + { + "word": " we", + "start": 1565.82, + "end": 1565.94, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 1565.94, + "end": 1566.12, + "probability": 1.0 + }, + { + "word": " about?", + "start": 1566.12, + "end": 1566.38, + "probability": 1.0 + } + ] + }, + { + "id": 782, + "text": "Well, you can set your own fee.", + "start": 1566.56, + "end": 1567.44, + "words": [ + { + "word": " Well,", + "start": 1566.56, + "end": 1566.72, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1566.72, + "end": 1566.82, + "probability": 1.0 + }, + { + "word": " can", + "start": 1566.82, + "end": 1566.88, + "probability": 1.0 + }, + { + "word": " set", + "start": 1566.88, + "end": 1567.0, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1567.0, + "end": 1567.12, + "probability": 1.0 + }, + { + "word": " own", + "start": 1567.12, + "end": 1567.26, + "probability": 1.0 + }, + { + "word": " fee.", + "start": 1567.26, + "end": 1567.44, + "probability": 1.0 + } + ] + }, + { + "id": 783, + "text": "Okay.", + "start": 1568.34, + "end": 1568.62, + "words": [ + { + "word": " Okay.", + "start": 1568.34, + "end": 1568.62, + "probability": 0.98388671875 + } + ] + }, + { + "id": 784, + "text": "So whatever you want it to be.", + "start": 1568.86, + "end": 1570.2, + "words": [ + { + "word": " So", + "start": 1568.86, + "end": 1569.14, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 1569.14, + "end": 1569.5, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 1569.5, + "end": 1569.7, + "probability": 1.0 + }, + { + "word": " want", + "start": 1569.7, + "end": 1569.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 1569.88, + "end": 1569.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 1569.98, + "end": 1570.06, + "probability": 1.0 + }, + { + "word": " be.", + "start": 1570.06, + "end": 1570.2, + "probability": 1.0 + } + ] + }, + { + "id": 785, + "text": "You want it to be $10?", + "start": 1570.28, + "end": 1571.12, + "words": [ + { + "word": " You", + "start": 1570.28, + "end": 1570.42, + "probability": 0.849609375 + }, + { + "word": " want", + "start": 1570.42, + "end": 1570.54, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1570.54, + "end": 1570.6, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 1570.6, + "end": 1570.68, + "probability": 1.0 + }, + { + "word": " be", + "start": 1570.68, + "end": 1570.68, + "probability": 1.0 + }, + { + "word": " $10?", + "start": 1570.68, + "end": 1571.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 786, + "text": "It can be $10.", + "start": 1571.16, + "end": 1571.66, + "words": [ + { + "word": " It", + "start": 1571.16, + "end": 1571.24, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 1571.24, + "end": 1571.34, + "probability": 0.939453125 + }, + { + "word": " be", + "start": 1571.34, + "end": 1571.4, + "probability": 1.0 + }, + { + "word": " $10.", + "start": 1571.4, + "end": 1571.66, + "probability": 1.0 + } + ] + }, + { + "id": 787, + "text": "You want it to be $200?", + "start": 1571.68, + "end": 1572.32, + "words": [ + { + "word": " You", + "start": 1571.68, + "end": 1571.8, + "probability": 0.9970703125 + }, + { + "word": " want", + "start": 1571.8, + "end": 1571.9, + "probability": 1.0 + }, + { + "word": " it", + "start": 1571.9, + "end": 1571.92, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1571.92, + "end": 1572.02, + "probability": 1.0 + }, + { + "word": " be", + "start": 1572.02, + "end": 1572.12, + "probability": 1.0 + }, + { + "word": " $200?", + "start": 1572.12, + "end": 1572.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 788, + "text": "If you're willing to pay it, so be it.", + "start": 1572.44, + "end": 1573.82, + "words": [ + { + "word": " If", + "start": 1572.44, + "end": 1572.64, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 1572.64, + "end": 1572.76, + "probability": 0.9990234375 + }, + { + "word": " willing", + "start": 1572.76, + "end": 1572.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1572.88, + "end": 1572.98, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1572.98, + "end": 1573.12, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1573.12, + "end": 1573.26, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1573.32, + "end": 1573.54, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1573.54, + "end": 1573.68, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1573.68, + "end": 1573.82, + "probability": 1.0 + } + ] + }, + { + "id": 789, + "text": "You've got to have a really nice bathroom for $200.", + "start": 1574.3600000000001, + "end": 1576.24, + "words": [ + { + "word": " You've", + "start": 1574.3600000000001, + "end": 1574.64, + "probability": 0.6875 + }, + { + "word": " got", + "start": 1574.64, + "end": 1574.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1574.64, + "end": 1574.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 1574.68, + "end": 1574.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1574.78, + "end": 1574.84, + "probability": 1.0 + }, + { + "word": " really", + "start": 1574.84, + "end": 1575.02, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1575.02, + "end": 1575.28, + "probability": 1.0 + }, + { + "word": " bathroom", + "start": 1575.28, + "end": 1575.68, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 1575.68, + "end": 1575.88, + "probability": 0.487060546875 + }, + { + "word": " $200.", + "start": 1575.88, + "end": 1576.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 790, + "text": "A little boudet.", + "start": 1577.66, + "end": 1578.54, + "words": [ + { + "word": " A", + "start": 1577.66, + "end": 1577.94, + "probability": 0.61181640625 + }, + { + "word": " little", + "start": 1577.94, + "end": 1578.22, + "probability": 1.0 + }, + { + "word": " boudet.", + "start": 1578.22, + "end": 1578.54, + "probability": 0.73779296875 + } + ] + }, + { + "id": 791, + "text": "But, you know, I mean, it's this app.", + "start": 1580.68, + "end": 1582.38, + "words": [ + { + "word": " But,", + "start": 1580.68, + "end": 1580.96, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1580.96, + "end": 1581.24, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 1581.24, + "end": 1581.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 1581.44, + "end": 1581.54, + "probability": 0.966796875 + }, + { + "word": " mean,", + "start": 1581.54, + "end": 1581.7, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1581.74, + "end": 1581.92, + "probability": 0.9775390625 + }, + { + "word": " this", + "start": 1581.92, + "end": 1582.02, + "probability": 0.99853515625 + }, + { + "word": " app.", + "start": 1582.02, + "end": 1582.38, + "probability": 1.0 + } + ] + }, + { + "id": 792, + "text": "I haven't checked it out.", + "start": 1582.54, + "end": 1583.36, + "words": [ + { + "word": " I", + "start": 1582.54, + "end": 1582.66, + "probability": 0.99951171875 + }, + { + "word": " haven't", + "start": 1582.66, + "end": 1582.9, + "probability": 1.0 + }, + { + "word": " checked", + "start": 1582.9, + "end": 1583.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 1583.06, + "end": 1583.18, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1583.18, + "end": 1583.36, + "probability": 1.0 + } + ] + }, + { + "id": 793, + "text": "But it's great.", + "start": 1583.46, + "end": 1584.02, + "words": [ + { + "word": " But", + "start": 1583.46, + "end": 1583.72, + "probability": 0.78955078125 + }, + { + "word": " it's", + "start": 1583.72, + "end": 1584.02, + "probability": 0.8701171875 + }, + { + "word": " great.", + "start": 1584.02, + "end": 1584.02, + "probability": 0.4228515625 + } + ] + }, + { + "id": 794, + "text": "It's called CLOO.", + "start": 1584.04, + "end": 1585.3, + "words": [ + { + "word": " It's", + "start": 1584.04, + "end": 1584.04, + "probability": 0.5166015625 + }, + { + "word": " called", + "start": 1584.04, + "end": 1584.04, + "probability": 0.71923828125 + }, + { + "word": " CLOO.", + "start": 1584.04, + "end": 1585.3, + "probability": 0.64013671875 + } + ] + }, + { + "id": 795, + "text": "So CLOO, I'm assuming is how it's pronounced.", + "start": 1585.44, + "end": 1587.24, + "words": [ + { + "word": " So", + "start": 1585.44, + "end": 1585.68, + "probability": 0.70068359375 + }, + { + "word": " CLOO,", + "start": 1585.68, + "end": 1586.22, + "probability": 0.5595703125 + }, + { + "word": " I'm", + "start": 1586.24, + "end": 1586.42, + "probability": 1.0 + }, + { + "word": " assuming", + "start": 1586.42, + "end": 1586.64, + "probability": 1.0 + }, + { + "word": " is", + "start": 1586.64, + "end": 1586.82, + "probability": 0.68017578125 + }, + { + "word": " how", + "start": 1586.82, + "end": 1586.92, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1586.92, + "end": 1587.08, + "probability": 1.0 + }, + { + "word": " pronounced.", + "start": 1587.08, + "end": 1587.24, + "probability": 1.0 + } + ] + }, + { + "id": 796, + "text": "I'm not in.", + "start": 1589.02, + "end": 1589.66, + "words": [ + { + "word": " I'm", + "start": 1589.02, + "end": 1589.34, + "probability": 0.888671875 + }, + { + "word": " not", + "start": 1589.34, + "end": 1589.46, + "probability": 0.9990234375 + }, + { + "word": " in.", + "start": 1589.46, + "end": 1589.66, + "probability": 0.90625 + } + ] + }, + { + "id": 797, + "text": "Why would you?", + "start": 1590.3600000000001, + "end": 1591.12, + "words": [ + { + "word": " Why", + "start": 1590.3600000000001, + "end": 1590.68, + "probability": 0.1990966796875 + }, + { + "word": " would", + "start": 1590.68, + "end": 1590.9, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1590.9, + "end": 1591.12, + "probability": 1.0 + } + ] + }, + { + "id": 798, + "text": "I'm not in.", + "start": 1591.18, + "end": 1591.66, + "words": [ + { + "word": " I'm", + "start": 1591.18, + "end": 1591.42, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 1591.42, + "end": 1591.54, + "probability": 1.0 + }, + { + "word": " in.", + "start": 1591.54, + "end": 1591.66, + "probability": 1.0 + } + ] + }, + { + "id": 799, + "text": "First of all, I don't think that I could walk into somebody's place and be like, oh, yeah,", + "start": 1592.8200000000002, + "end": 1596.8, + "words": [ + { + "word": " First", + "start": 1592.8200000000002, + "end": 1593.14, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 1593.14, + "end": 1593.32, + "probability": 1.0 + }, + { + "word": " all,", + "start": 1593.32, + "end": 1593.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 1593.52, + "end": 1593.68, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1593.68, + "end": 1593.88, + "probability": 1.0 + }, + { + "word": " think", + "start": 1593.88, + "end": 1594.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 1594.0, + "end": 1594.14, + "probability": 0.98828125 + }, + { + "word": " I", + "start": 1594.14, + "end": 1594.26, + "probability": 1.0 + }, + { + "word": " could", + "start": 1594.26, + "end": 1594.36, + "probability": 0.96240234375 + }, + { + "word": " walk", + "start": 1594.36, + "end": 1594.58, + "probability": 1.0 + }, + { + "word": " into", + "start": 1594.58, + "end": 1594.82, + "probability": 1.0 + }, + { + "word": " somebody's", + "start": 1594.82, + "end": 1595.24, + "probability": 0.9990234375 + }, + { + "word": " place", + "start": 1595.24, + "end": 1595.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 1595.44, + "end": 1595.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 1595.58, + "end": 1595.66, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1595.66, + "end": 1595.8, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 1595.98, + "end": 1596.66, + "probability": 0.69580078125 + }, + { + "word": " yeah,", + "start": 1596.68, + "end": 1596.8, + "probability": 1.0 + } + ] + }, + { + "id": 800, + "text": "I saw your bathroom online.", + "start": 1596.84, + "end": 1598.38, + "words": [ + { + "word": " I", + "start": 1596.84, + "end": 1597.02, + "probability": 1.0 + }, + { + "word": " saw", + "start": 1597.02, + "end": 1597.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 1597.3, + "end": 1597.46, + "probability": 1.0 + }, + { + "word": " bathroom", + "start": 1597.46, + "end": 1597.94, + "probability": 0.9990234375 + }, + { + "word": " online.", + "start": 1597.94, + "end": 1598.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 801, + "text": "Yeah.", + "start": 1601.94, + "end": 1602.26, + "words": [ + { + "word": " Yeah.", + "start": 1601.94, + "end": 1602.26, + "probability": 0.85546875 + } + ] + }, + { + "id": 802, + "text": "I'm here to wreck it.", + "start": 1602.76, + "end": 1603.72, + "words": [ + { + "word": " I'm", + "start": 1602.76, + "end": 1603.08, + "probability": 0.998046875 + }, + { + "word": " here", + "start": 1603.08, + "end": 1603.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 1603.22, + "end": 1603.38, + "probability": 1.0 + }, + { + "word": " wreck", + "start": 1603.38, + "end": 1603.58, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 1603.58, + "end": 1603.72, + "probability": 1.0 + } + ] + }, + { + "id": 803, + "text": "Yeah.", + "start": 1605.18, + "end": 1605.5, + "words": [ + { + "word": " Yeah.", + "start": 1605.18, + "end": 1605.5, + "probability": 0.9912109375 + } + ] + }, + { + "id": 804, + "text": "You know what?", + "start": 1605.72, + "end": 1606.34, + "words": [ + { + "word": " You", + "start": 1605.72, + "end": 1606.04, + "probability": 0.99560546875 + }, + { + "word": " know", + "start": 1606.04, + "end": 1606.18, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1606.18, + "end": 1606.34, + "probability": 1.0 + } + ] + }, + { + "id": 805, + "text": "We should just hire Howard to go around to everybody's bathrooms and just wreck them.", + "start": 1606.4, + "end": 1609.48, + "words": [ + { + "word": " We", + "start": 1606.4, + "end": 1606.52, + "probability": 0.99462890625 + }, + { + "word": " should", + "start": 1606.52, + "end": 1606.58, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1606.58, + "end": 1606.72, + "probability": 0.99462890625 + }, + { + "word": " hire", + "start": 1606.72, + "end": 1606.86, + "probability": 1.0 + }, + { + "word": " Howard", + "start": 1606.86, + "end": 1607.32, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1607.32, + "end": 1607.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 1607.48, + "end": 1607.62, + "probability": 1.0 + }, + { + "word": " around", + "start": 1607.62, + "end": 1607.78, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1607.78, + "end": 1607.96, + "probability": 0.59814453125 + }, + { + "word": " everybody's", + "start": 1607.96, + "end": 1608.36, + "probability": 1.0 + }, + { + "word": " bathrooms", + "start": 1608.36, + "end": 1608.82, + "probability": 0.8232421875 + }, + { + "word": " and", + "start": 1608.82, + "end": 1609.02, + "probability": 0.8046875 + }, + { + "word": " just", + "start": 1609.02, + "end": 1609.12, + "probability": 0.51123046875 + }, + { + "word": " wreck", + "start": 1609.12, + "end": 1609.46, + "probability": 0.9990234375 + }, + { + "word": " them.", + "start": 1609.46, + "end": 1609.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 806, + "text": "I just can't do it.", + "start": 1610.5200000000002, + "end": 1611.64, + "words": [ + { + "word": " I", + "start": 1610.5200000000002, + "end": 1610.8400000000001, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1610.8400000000001, + "end": 1611.16, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1611.16, + "end": 1611.4, + "probability": 1.0 + }, + { + "word": " do", + "start": 1611.4, + "end": 1611.54, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1611.54, + "end": 1611.64, + "probability": 1.0 + } + ] + }, + { + "id": 807, + "text": "I have a hard time.", + "start": 1611.76, + "end": 1613.16, + "words": [ + { + "word": " I", + "start": 1611.76, + "end": 1611.9, + "probability": 0.994140625 + }, + { + "word": " have", + "start": 1611.9, + "end": 1612.66, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 1612.66, + "end": 1612.82, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1612.82, + "end": 1612.96, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1612.96, + "end": 1613.16, + "probability": 1.0 + } + ] + }, + { + "id": 808, + "text": "I'm even when I go over to people's houses, like, you know, get invited over to a party", + "start": 1613.16, + "end": 1616.16, + "words": [ + { + "word": " I'm", + "start": 1613.16, + "end": 1613.28, + "probability": 0.62646484375 + }, + { + "word": " even", + "start": 1613.28, + "end": 1613.36, + "probability": 0.35546875 + }, + { + "word": " when", + "start": 1613.36, + "end": 1613.52, + "probability": 0.82421875 + }, + { + "word": " I", + "start": 1613.52, + "end": 1613.62, + "probability": 0.998046875 + }, + { + "word": " go", + "start": 1613.62, + "end": 1613.78, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 1613.78, + "end": 1614.0, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1614.0, + "end": 1614.16, + "probability": 0.9951171875 + }, + { + "word": " people's", + "start": 1614.16, + "end": 1614.48, + "probability": 0.99951171875 + }, + { + "word": " houses,", + "start": 1614.48, + "end": 1614.68, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 1614.72, + "end": 1614.96, + "probability": 0.95947265625 + }, + { + "word": " you", + "start": 1615.02, + "end": 1615.16, + "probability": 0.98828125 + }, + { + "word": " know,", + "start": 1615.16, + "end": 1615.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 1615.26, + "end": 1615.32, + "probability": 0.94287109375 + }, + { + "word": " invited", + "start": 1615.32, + "end": 1615.5, + "probability": 1.0 + }, + { + "word": " over", + "start": 1615.5, + "end": 1615.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1615.76, + "end": 1615.86, + "probability": 0.642578125 + }, + { + "word": " a", + "start": 1615.86, + "end": 1615.94, + "probability": 0.82177734375 + }, + { + "word": " party", + "start": 1615.94, + "end": 1616.16, + "probability": 0.97900390625 + } + ] + }, + { + "id": 809, + "text": "or something.", + "start": 1616.16, + "end": 1616.64, + "words": [ + { + "word": " or", + "start": 1616.16, + "end": 1616.4, + "probability": 0.99951171875 + }, + { + "word": " something.", + "start": 1616.4, + "end": 1616.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 810, + "text": "I can't use their bathroom.", + "start": 1616.74, + "end": 1618.18, + "words": [ + { + "word": " I", + "start": 1616.74, + "end": 1617.08, + "probability": 0.30322265625 + }, + { + "word": " can't", + "start": 1617.08, + "end": 1617.72, + "probability": 0.98779296875 + }, + { + "word": " use", + "start": 1617.72, + "end": 1617.82, + "probability": 1.0 + }, + { + "word": " their", + "start": 1617.82, + "end": 1617.92, + "probability": 0.7861328125 + }, + { + "word": " bathroom.", + "start": 1617.92, + "end": 1618.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 811, + "text": "Right.", + "start": 1618.44, + "end": 1618.76, + "words": [ + { + "word": " Right.", + "start": 1618.44, + "end": 1618.76, + "probability": 0.86767578125 + } + ] + }, + { + "id": 812, + "text": "It's just like, yeah, I'll wait till I get home.", + "start": 1618.86, + "end": 1620.9, + "words": [ + { + "word": " It's", + "start": 1618.86, + "end": 1619.16, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 1619.16, + "end": 1619.26, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1619.26, + "end": 1619.52, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 1619.52, + "end": 1619.74, + "probability": 0.68359375 + }, + { + "word": " I'll", + "start": 1619.74, + "end": 1620.18, + "probability": 0.99755859375 + }, + { + "word": " wait", + "start": 1620.18, + "end": 1620.3, + "probability": 1.0 + }, + { + "word": " till", + "start": 1620.3, + "end": 1620.44, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 1620.44, + "end": 1620.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 1620.52, + "end": 1620.64, + "probability": 1.0 + }, + { + "word": " home.", + "start": 1620.64, + "end": 1620.9, + "probability": 1.0 + } + ] + }, + { + "id": 813, + "text": "It's totally cool.", + "start": 1620.94, + "end": 1621.54, + "words": [ + { + "word": " It's", + "start": 1620.94, + "end": 1621.06, + "probability": 0.99853515625 + }, + { + "word": " totally", + "start": 1621.06, + "end": 1621.24, + "probability": 0.9619140625 + }, + { + "word": " cool.", + "start": 1621.24, + "end": 1621.54, + "probability": 1.0 + } + ] + }, + { + "id": 814, + "text": "I don't get it.", + "start": 1622.3000000000002, + "end": 1623.38, + "words": [ + { + "word": " I", + "start": 1622.3000000000002, + "end": 1622.66, + "probability": 0.98974609375 + }, + { + "word": " don't", + "start": 1622.66, + "end": 1623.02, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1623.02, + "end": 1623.2, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1623.2, + "end": 1623.38, + "probability": 1.0 + } + ] + }, + { + "id": 815, + "text": "Well, maybe as a growing friend.", + "start": 1623.44, + "end": 1624.94, + "words": [ + { + "word": " Well,", + "start": 1623.44, + "end": 1623.68, + "probability": 0.8876953125 + }, + { + "word": " maybe", + "start": 1623.8, + "end": 1624.24, + "probability": 0.8515625 + }, + { + "word": " as", + "start": 1624.24, + "end": 1624.42, + "probability": 0.385498046875 + }, + { + "word": " a", + "start": 1624.42, + "end": 1624.42, + "probability": 1.0 + }, + { + "word": " growing", + "start": 1624.42, + "end": 1624.64, + "probability": 0.99560546875 + }, + { + "word": " friend.", + "start": 1624.64, + "end": 1624.94, + "probability": 0.96826171875 + } + ] + }, + { + "id": 816, + "text": "Who knows?", + "start": 1625.0, + "end": 1625.28, + "words": [ + { + "word": " Who", + "start": 1625.0, + "end": 1625.18, + "probability": 0.3681640625 + }, + { + "word": " knows?", + "start": 1625.18, + "end": 1625.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 817, + "text": "This is one of those things with technology.", + "start": 1625.3, + "end": 1626.52, + "words": [ + { + "word": " This", + "start": 1625.3, + "end": 1625.48, + "probability": 0.9794921875 + }, + { + "word": " is", + "start": 1625.48, + "end": 1625.48, + "probability": 1.0 + }, + { + "word": " one", + "start": 1625.48, + "end": 1625.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 1625.62, + "end": 1625.66, + "probability": 1.0 + }, + { + "word": " those", + "start": 1625.66, + "end": 1625.8, + "probability": 1.0 + }, + { + "word": " things", + "start": 1625.8, + "end": 1625.96, + "probability": 1.0 + }, + { + "word": " with", + "start": 1625.96, + "end": 1626.1, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 1626.1, + "end": 1626.52, + "probability": 1.0 + } + ] + }, + { + "id": 818, + "text": "Right.", + "start": 1626.72, + "end": 1627.08, + "words": [ + { + "word": " Right.", + "start": 1626.72, + "end": 1627.08, + "probability": 0.97607421875 + } + ] + }, + { + "id": 819, + "text": "It's gone too far.", + "start": 1627.16, + "end": 1627.94, + "words": [ + { + "word": " It's", + "start": 1627.16, + "end": 1627.38, + "probability": 0.99951171875 + }, + { + "word": " gone", + "start": 1627.38, + "end": 1627.48, + "probability": 0.99951171875 + }, + { + "word": " too", + "start": 1627.48, + "end": 1627.68, + "probability": 1.0 + }, + { + "word": " far.", + "start": 1627.68, + "end": 1627.94, + "probability": 1.0 + } + ] + }, + { + "id": 820, + "text": "It's a crappy idea.", + "start": 1628.0, + "end": 1628.5, + "words": [ + { + "word": " It's", + "start": 1628.0, + "end": 1628.1, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 1628.1, + "end": 1628.1, + "probability": 0.90966796875 + }, + { + "word": " crappy", + "start": 1628.1, + "end": 1628.34, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 1628.34, + "end": 1628.5, + "probability": 0.9951171875 + } + ] + }, + { + "id": 821, + "text": "Piss poor.", + "start": 1630.68, + "end": 1631.18, + "words": [ + { + "word": " Piss", + "start": 1630.68, + "end": 1631.04, + "probability": 0.775390625 + }, + { + "word": " poor.", + "start": 1631.04, + "end": 1631.18, + "probability": 0.681640625 + } + ] + }, + { + "id": 822, + "text": "It's just not good.", + "start": 1632.76, + "end": 1634.1, + "words": [ + { + "word": " It's", + "start": 1632.76, + "end": 1633.12, + "probability": 0.77734375 + }, + { + "word": " just", + "start": 1633.12, + "end": 1633.12, + "probability": 0.97216796875 + }, + { + "word": " not", + "start": 1633.12, + "end": 1633.58, + "probability": 0.99560546875 + }, + { + "word": " good.", + "start": 1633.58, + "end": 1634.1, + "probability": 1.0 + } + ] + }, + { + "id": 823, + "text": "You're done with your puns.", + "start": 1634.4, + "end": 1635.2, + "words": [ + { + "word": " You're", + "start": 1634.4, + "end": 1634.64, + "probability": 0.9208984375 + }, + { + "word": " done", + "start": 1634.64, + "end": 1634.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 1634.78, + "end": 1634.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 1634.88, + "end": 1635.0, + "probability": 1.0 + }, + { + "word": " puns.", + "start": 1635.0, + "end": 1635.2, + "probability": 0.615234375 + } + ] + }, + { + "id": 824, + "text": "If you'd like to be part of the show, 751-1041, how much would you rent out your bathroom", + "start": 1635.74, + "end": 1640.44, + "words": [ + { + "word": " If", + "start": 1635.74, + "end": 1636.1, + "probability": 0.931640625 + }, + { + "word": " you'd", + "start": 1636.1, + "end": 1636.32, + "probability": 1.0 + }, + { + "word": " like", + "start": 1636.32, + "end": 1636.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1636.48, + "end": 1636.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 1636.58, + "end": 1636.66, + "probability": 1.0 + }, + { + "word": " part", + "start": 1636.66, + "end": 1636.9, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 1636.9, + "end": 1637.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 1637.04, + "end": 1637.08, + "probability": 0.53515625 + }, + { + "word": " show,", + "start": 1637.08, + "end": 1637.32, + "probability": 1.0 + }, + { + "word": " 751", + "start": 1637.42, + "end": 1638.08, + "probability": 0.8291015625 + }, + { + "word": "-1041,", + "start": 1638.08, + "end": 1638.5, + "probability": 0.9970703125 + }, + { + "word": " how", + "start": 1638.78, + "end": 1639.3, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 1639.3, + "end": 1639.52, + "probability": 1.0 + }, + { + "word": " would", + "start": 1639.52, + "end": 1639.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 1639.62, + "end": 1639.76, + "probability": 1.0 + }, + { + "word": " rent", + "start": 1639.76, + "end": 1639.94, + "probability": 0.98583984375 + }, + { + "word": " out", + "start": 1639.94, + "end": 1640.06, + "probability": 0.99169921875 + }, + { + "word": " your", + "start": 1640.06, + "end": 1640.16, + "probability": 0.99951171875 + }, + { + "word": " bathroom", + "start": 1640.16, + "end": 1640.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 825, + "text": "for?", + "start": 1640.44, + "end": 1640.7, + "words": [ + { + "word": " for?", + "start": 1640.44, + "end": 1640.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 826, + "text": "Just out of curiosity.", + "start": 1640.8, + "end": 1641.64, + "words": [ + { + "word": " Just", + "start": 1640.8, + "end": 1641.1, + "probability": 0.99755859375 + }, + { + "word": " out", + "start": 1641.1, + "end": 1641.28, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1641.28, + "end": 1641.36, + "probability": 1.0 + }, + { + "word": " curiosity.", + "start": 1641.36, + "end": 1641.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 827, + "text": "", + "start": 1642.02, + "end": 1642.02, + "words": [] + }, + { + "id": 828, + "text": "I don't know.", + "start": 1642.02, + "end": 1642.24, + "words": [ + { + "word": " I", + "start": 1642.02, + "end": 1642.12, + "probability": 0.13525390625 + }, + { + "word": " don't", + "start": 1642.12, + "end": 1642.12, + "probability": 0.81103515625 + }, + { + "word": " know.", + "start": 1642.12, + "end": 1642.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 829, + "text": "One billion dollars.", + "start": 1643.8400000000001, + "end": 1645.06, + "words": [ + { + "word": " One", + "start": 1643.8400000000001, + "end": 1644.16, + "probability": 0.70556640625 + }, + { + "word": " billion", + "start": 1644.16, + "end": 1644.48, + "probability": 0.8427734375 + }, + { + "word": " dollars.", + "start": 1644.48, + "end": 1645.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 830, + "text": "Wouldn't it be weird that you're just sitting there, the doorbell rings, and you're like,", + "start": 1645.5600000000002, + "end": 1648.08, + "words": [ + { + "word": " Wouldn't", + "start": 1645.5600000000002, + "end": 1645.88, + "probability": 0.9921875 + }, + { + "word": " it", + "start": 1645.88, + "end": 1645.9, + "probability": 0.99169921875 + }, + { + "word": " be", + "start": 1645.9, + "end": 1646.02, + "probability": 1.0 + }, + { + "word": " weird", + "start": 1646.02, + "end": 1646.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 1646.3, + "end": 1646.44, + "probability": 0.98291015625 + }, + { + "word": " you're", + "start": 1646.44, + "end": 1646.6, + "probability": 1.0 + }, + { + "word": " just", + "start": 1646.6, + "end": 1646.72, + "probability": 1.0 + }, + { + "word": " sitting", + "start": 1646.72, + "end": 1646.9, + "probability": 1.0 + }, + { + "word": " there,", + "start": 1646.9, + "end": 1647.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1647.1, + "end": 1647.18, + "probability": 0.984375 + }, + { + "word": " doorbell", + "start": 1647.18, + "end": 1647.44, + "probability": 0.9951171875 + }, + { + "word": " rings,", + "start": 1647.44, + "end": 1647.68, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1647.78, + "end": 1647.86, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 1647.86, + "end": 1647.94, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1647.94, + "end": 1648.08, + "probability": 0.99755859375 + } + ] + }, + { + "id": 831, + "text": "oh, yeah, I forgot.", + "start": 1648.24, + "end": 1649.26, + "words": [ + { + "word": " oh,", + "start": 1648.24, + "end": 1648.68, + "probability": 0.93017578125 + }, + { + "word": " yeah,", + "start": 1648.68, + "end": 1648.88, + "probability": 1.0 + }, + { + "word": " I", + "start": 1648.94, + "end": 1649.06, + "probability": 0.99951171875 + }, + { + "word": " forgot.", + "start": 1649.06, + "end": 1649.26, + "probability": 1.0 + } + ] + }, + { + "id": 832, + "text": "Dude's got to come over and use the bathroom.", + "start": 1649.96, + "end": 1651.46, + "words": [ + { + "word": " Dude's", + "start": 1649.96, + "end": 1650.28, + "probability": 0.99267578125 + }, + { + "word": " got", + "start": 1650.28, + "end": 1650.36, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1650.36, + "end": 1650.46, + "probability": 1.0 + }, + { + "word": " come", + "start": 1650.46, + "end": 1650.56, + "probability": 1.0 + }, + { + "word": " over", + "start": 1650.56, + "end": 1650.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 1650.76, + "end": 1650.88, + "probability": 1.0 + }, + { + "word": " use", + "start": 1650.88, + "end": 1651.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 1651.04, + "end": 1651.18, + "probability": 1.0 + }, + { + "word": " bathroom.", + "start": 1651.18, + "end": 1651.46, + "probability": 1.0 + } + ] + }, + { + "id": 833, + "text": "What's the deal?", + "start": 1652.78, + "end": 1653.62, + "words": [ + { + "word": " What's", + "start": 1652.78, + "end": 1653.1, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1653.1, + "end": 1653.22, + "probability": 1.0 + }, + { + "word": " deal?", + "start": 1653.22, + "end": 1653.62, + "probability": 1.0 + } + ] + }, + { + "id": 834, + "text": "Well, it's just like that story we did a few months back about turning sewage stuff into", + "start": 1653.94, + "end": 1658.56, + "words": [ + { + "word": " Well,", + "start": 1653.94, + "end": 1654.26, + "probability": 0.99072265625 + }, + { + "word": " it's", + "start": 1654.26, + "end": 1654.4, + "probability": 0.93359375 + }, + { + "word": " just", + "start": 1654.4, + "end": 1654.46, + "probability": 0.87255859375 + }, + { + "word": " like", + "start": 1654.46, + "end": 1654.6, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1654.6, + "end": 1654.72, + "probability": 0.7841796875 + }, + { + "word": " story", + "start": 1654.72, + "end": 1655.5, + "probability": 1.0 + }, + { + "word": " we", + "start": 1655.5, + "end": 1655.68, + "probability": 1.0 + }, + { + "word": " did", + "start": 1655.68, + "end": 1655.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1655.78, + "end": 1655.88, + "probability": 1.0 + }, + { + "word": " few", + "start": 1655.88, + "end": 1655.98, + "probability": 1.0 + }, + { + "word": " months", + "start": 1655.98, + "end": 1656.16, + "probability": 1.0 + }, + { + "word": " back", + "start": 1656.16, + "end": 1656.38, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1656.38, + "end": 1656.72, + "probability": 0.99755859375 + }, + { + "word": " turning", + "start": 1656.72, + "end": 1657.28, + "probability": 0.94287109375 + }, + { + "word": " sewage", + "start": 1657.28, + "end": 1658.14, + "probability": 0.9990234375 + }, + { + "word": " stuff", + "start": 1658.14, + "end": 1658.32, + "probability": 1.0 + }, + { + "word": " into", + "start": 1658.32, + "end": 1658.56, + "probability": 1.0 + } + ] + }, + { + "id": 835, + "text": "hamburgers.", + "start": 1658.88, + "end": 1659.2, + "words": [ + { + "word": " hamburgers.", + "start": 1658.88, + "end": 1659.2, + "probability": 0.96044921875 + } + ] + }, + { + "id": 836, + "text": "I mean, this is just going too far.", + "start": 1659.2, + "end": 1660.6, + "words": [ + { + "word": " I", + "start": 1659.2, + "end": 1659.36, + "probability": 0.9814453125 + }, + { + "word": " mean,", + "start": 1659.36, + "end": 1659.54, + "probability": 1.0 + }, + { + "word": " this", + "start": 1659.56, + "end": 1659.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 1659.74, + "end": 1659.84, + "probability": 1.0 + }, + { + "word": " just", + "start": 1659.84, + "end": 1659.96, + "probability": 0.92431640625 + }, + { + "word": " going", + "start": 1659.96, + "end": 1660.12, + "probability": 1.0 + }, + { + "word": " too", + "start": 1660.12, + "end": 1660.32, + "probability": 1.0 + }, + { + "word": " far.", + "start": 1660.32, + "end": 1660.6, + "probability": 1.0 + } + ] + }, + { + "id": 837, + "text": "Technology has gone way too far.", + "start": 1661.02, + "end": 1662.64, + "words": [ + { + "word": " Technology", + "start": 1661.02, + "end": 1661.34, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 1661.34, + "end": 1661.54, + "probability": 0.99951171875 + }, + { + "word": " gone", + "start": 1661.54, + "end": 1661.72, + "probability": 1.0 + }, + { + "word": " way", + "start": 1661.72, + "end": 1662.22, + "probability": 1.0 + }, + { + "word": " too", + "start": 1662.22, + "end": 1662.4, + "probability": 1.0 + }, + { + "word": " far.", + "start": 1662.4, + "end": 1662.64, + "probability": 1.0 + } + ] + }, + { + "id": 838, + "text": "So I think we need to nip it in the butt.", + "start": 1662.74, + "end": 1664.14, + "words": [ + { + "word": " So", + "start": 1662.74, + "end": 1662.88, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 1662.88, + "end": 1662.96, + "probability": 0.8759765625 + }, + { + "word": " think", + "start": 1662.96, + "end": 1663.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 1663.08, + "end": 1663.18, + "probability": 1.0 + }, + { + "word": " need", + "start": 1663.18, + "end": 1663.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 1663.22, + "end": 1663.34, + "probability": 1.0 + }, + { + "word": " nip", + "start": 1663.34, + "end": 1663.78, + "probability": 0.95458984375 + }, + { + "word": " it", + "start": 1663.78, + "end": 1663.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 1663.78, + "end": 1663.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1663.92, + "end": 1663.98, + "probability": 1.0 + }, + { + "word": " butt.", + "start": 1663.98, + "end": 1664.14, + "probability": 0.984375 + } + ] + }, + { + "id": 839, + "text": "No pun intended.", + "start": 1664.4, + "end": 1665.1, + "words": [ + { + "word": " No", + "start": 1664.4, + "end": 1664.72, + "probability": 0.99951171875 + }, + { + "word": " pun", + "start": 1664.72, + "end": 1664.88, + "probability": 1.0 + }, + { + "word": " intended.", + "start": 1664.88, + "end": 1665.1, + "probability": 1.0 + } + ] + }, + { + "id": 840, + "text": "I think that's in the bud.", + "start": 1666.6200000000001, + "end": 1667.58, + "words": [ + { + "word": " I", + "start": 1666.6200000000001, + "end": 1666.94, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1666.94, + "end": 1667.08, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1667.08, + "end": 1667.26, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1667.26, + "end": 1667.28, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 1667.28, + "end": 1667.38, + "probability": 1.0 + }, + { + "word": " bud.", + "start": 1667.38, + "end": 1667.58, + "probability": 0.8974609375 + } + ] + }, + { + "id": 841, + "text": "Whatever.", + "start": 1668.0, + "end": 1668.32, + "words": [ + { + "word": " Whatever.", + "start": 1668.0, + "end": 1668.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 842, + "text": "That's good.", + "start": 1669.6000000000001, + "end": 1670.04, + "words": [ + { + "word": " That's", + "start": 1669.6000000000001, + "end": 1669.92, + "probability": 0.609375 + }, + { + "word": " good.", + "start": 1669.92, + "end": 1670.04, + "probability": 0.07647705078125 + } + ] + }, + { + "id": 843, + "text": "You use nippers.", + "start": 1670.06, + "end": 1670.58, + "words": [ + { + "word": " You", + "start": 1670.06, + "end": 1670.18, + "probability": 0.96728515625 + }, + { + "word": " use", + "start": 1670.18, + "end": 1670.3, + "probability": 0.5654296875 + }, + { + "word": " nippers.", + "start": 1670.3, + "end": 1670.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 844, + "text": "Yeah, well.", + "start": 1670.76, + "end": 1671.28, + "words": [ + { + "word": " Yeah,", + "start": 1670.76, + "end": 1671.04, + "probability": 0.939453125 + }, + { + "word": " well.", + "start": 1671.08, + "end": 1671.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 845, + "text": "On your rosebud.", + "start": 1671.34, + "end": 1672.0, + "words": [ + { + "word": " On", + "start": 1671.34, + "end": 1671.44, + "probability": 0.98681640625 + }, + { + "word": " your", + "start": 1671.44, + "end": 1671.54, + "probability": 0.99951171875 + }, + { + "word": " rosebud.", + "start": 1671.54, + "end": 1672.0, + "probability": 0.69873046875 + } + ] + }, + { + "id": 846, + "text": "On your rosebud.", + "start": 1672.02, + "end": 1672.04, + "words": [ + { + "word": " On", + "start": 1672.02, + "end": 1672.04, + "probability": 6.92605972290039e-05 + }, + { + "word": " your", + "start": 1672.04, + "end": 1672.04, + "probability": 0.0124053955078125 + }, + { + "word": " rosebud.", + "start": 1672.04, + "end": 1672.04, + "probability": 0.00893402099609375 + } + ] + }, + { + "id": 847, + "text": "On your rosebud.", + "start": 1673.24, + "end": 1673.66, + "words": [ + { + "word": " On", + "start": 1673.24, + "end": 1673.66, + "probability": 0.10784912109375 + }, + { + "word": " your", + "start": 1673.66, + "end": 1673.66, + "probability": 0.97412109375 + }, + { + "word": " rosebud.", + "start": 1673.66, + "end": 1673.66, + "probability": 0.9482421875 + } + ] + }, + { + "id": 848, + "text": "", + "start": 1673.66, + "end": 1673.66, + "words": [] + }, + { + "id": 849, + "text": "", + "start": 1673.66, + "end": 1673.66, + "words": [] + }, + { + "id": 850, + "text": "Oh, man.", + "start": 1673.66, + "end": 1674.18, + "words": [ + { + "word": " Oh,", + "start": 1673.66, + "end": 1673.66, + "probability": 0.0428466796875 + }, + { + "word": " man.", + "start": 1673.88, + "end": 1674.18, + "probability": 0.69580078125 + } + ] + }, + { + "id": 851, + "text": "That's just, this is wrong.", + "start": 1674.58, + "end": 1675.78, + "words": [ + { + "word": " That's", + "start": 1674.58, + "end": 1675.0, + "probability": 0.94140625 + }, + { + "word": " just,", + "start": 1675.0, + "end": 1675.22, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 1675.24, + "end": 1675.4, + "probability": 0.6650390625 + }, + { + "word": " is", + "start": 1675.4, + "end": 1675.5, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 1675.5, + "end": 1675.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 852, + "text": "It's wrong in every sense of the word.", + "start": 1676.02, + "end": 1678.16, + "words": [ + { + "word": " It's", + "start": 1676.02, + "end": 1676.24, + "probability": 0.96728515625 + }, + { + "word": " wrong", + "start": 1676.24, + "end": 1676.78, + "probability": 0.990234375 + }, + { + "word": " in", + "start": 1676.78, + "end": 1677.12, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 1677.12, + "end": 1677.32, + "probability": 1.0 + }, + { + "word": " sense", + "start": 1677.32, + "end": 1677.86, + "probability": 0.98486328125 + }, + { + "word": " of", + "start": 1677.86, + "end": 1678.06, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1678.06, + "end": 1678.1, + "probability": 1.0 + }, + { + "word": " word.", + "start": 1678.1, + "end": 1678.16, + "probability": 0.99609375 + } + ] + }, + { + "id": 853, + "text": "All right.", + "start": 1678.2, + "end": 1678.62, + "words": [ + { + "word": " All", + "start": 1678.2, + "end": 1678.4, + "probability": 0.74072265625 + }, + { + "word": " right.", + "start": 1678.4, + "end": 1678.62, + "probability": 1.0 + } + ] + }, + { + "id": 854, + "text": "All right.", + "start": 1678.68, + "end": 1679.1, + "words": [ + { + "word": " All", + "start": 1678.68, + "end": 1678.9, + "probability": 0.9912109375 + }, + { + "word": " right.", + "start": 1678.9, + "end": 1679.1, + "probability": 1.0 + } + ] + }, + { + "id": 855, + "text": "All right.", + "start": 1679.2, + "end": 1679.72, + "words": [ + { + "word": " All", + "start": 1679.2, + "end": 1679.62, + "probability": 0.9736328125 + }, + { + "word": " right.", + "start": 1679.62, + "end": 1679.72, + "probability": 1.0 + } + ] + }, + { + "id": 856, + "text": "So we covered the Marty McFly shoes.", + "start": 1679.74, + "end": 1681.14, + "words": [ + { + "word": " So", + "start": 1679.74, + "end": 1679.82, + "probability": 0.9716796875 + }, + { + "word": " we", + "start": 1679.82, + "end": 1679.98, + "probability": 0.63671875 + }, + { + "word": " covered", + "start": 1679.98, + "end": 1680.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 1680.2, + "end": 1680.32, + "probability": 0.9990234375 + }, + { + "word": " Marty", + "start": 1680.32, + "end": 1680.54, + "probability": 0.99951171875 + }, + { + "word": " McFly", + "start": 1680.54, + "end": 1680.9, + "probability": 0.99951171875 + }, + { + "word": " shoes.", + "start": 1680.9, + "end": 1681.14, + "probability": 0.99755859375 + } + ] + }, + { + "id": 857, + "text": "We did.", + "start": 1681.42, + "end": 1681.76, + "words": [ + { + "word": " We", + "start": 1681.42, + "end": 1681.56, + "probability": 0.99951171875 + }, + { + "word": " did.", + "start": 1681.56, + "end": 1681.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 858, + "text": "We covered the hacking of the cars.", + "start": 1681.94, + "end": 1684.7, + "words": [ + { + "word": " We", + "start": 1681.94, + "end": 1682.36, + "probability": 0.99755859375 + }, + { + "word": " covered", + "start": 1682.36, + "end": 1682.8, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 1682.8, + "end": 1683.36, + "probability": 0.96923828125 + }, + { + "word": " hacking", + "start": 1683.36, + "end": 1683.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1683.94, + "end": 1684.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1684.18, + "end": 1684.28, + "probability": 1.0 + }, + { + "word": " cars.", + "start": 1684.28, + "end": 1684.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 859, + "text": "Covered and renting out your bathroom.", + "start": 1686.84, + "end": 1688.2, + "words": [ + { + "word": " Covered", + "start": 1686.84, + "end": 1687.26, + "probability": 0.9296875 + }, + { + "word": " and", + "start": 1687.26, + "end": 1687.28, + "probability": 0.479736328125 + }, + { + "word": " renting", + "start": 1687.28, + "end": 1687.54, + "probability": 0.630859375 + }, + { + "word": " out", + "start": 1687.54, + "end": 1687.72, + "probability": 1.0 + }, + { + "word": " your", + "start": 1687.72, + "end": 1687.88, + "probability": 1.0 + }, + { + "word": " bathroom.", + "start": 1687.88, + "end": 1688.2, + "probability": 0.78857421875 + } + ] + }, + { + "id": 860, + "text": "Renting out your bathrooms.", + "start": 1688.5, + "end": 1689.82, + "words": [ + { + "word": " Renting", + "start": 1688.5, + "end": 1688.92, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 1688.92, + "end": 1689.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 1689.06, + "end": 1689.28, + "probability": 1.0 + }, + { + "word": " bathrooms.", + "start": 1689.28, + "end": 1689.82, + "probability": 0.59130859375 + } + ] + }, + { + "id": 861, + "text": "Oh, God.", + "start": 1690.06, + "end": 1690.96, + "words": [ + { + "word": " Oh,", + "start": 1690.06, + "end": 1690.48, + "probability": 0.74072265625 + }, + { + "word": " God.", + "start": 1690.48, + "end": 1690.96, + "probability": 0.91796875 + } + ] + }, + { + "id": 862, + "text": "What about the invisibility shield for tanks?", + "start": 1690.96, + "end": 1692.74, + "words": [ + { + "word": " What", + "start": 1690.96, + "end": 1691.14, + "probability": 0.99560546875 + }, + { + "word": " about", + "start": 1691.14, + "end": 1691.3, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1691.3, + "end": 1691.46, + "probability": 0.99951171875 + }, + { + "word": " invisibility", + "start": 1691.46, + "end": 1691.92, + "probability": 0.998046875 + }, + { + "word": " shield", + "start": 1691.92, + "end": 1692.28, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1692.28, + "end": 1692.5, + "probability": 0.99853515625 + }, + { + "word": " tanks?", + "start": 1692.5, + "end": 1692.74, + "probability": 0.98974609375 + } + ] + }, + { + "id": 863, + "text": "I have not heard of this.", + "start": 1692.94, + "end": 1693.94, + "words": [ + { + "word": " I", + "start": 1692.94, + "end": 1693.12, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 1693.12, + "end": 1693.28, + "probability": 1.0 + }, + { + "word": " not", + "start": 1693.28, + "end": 1693.42, + "probability": 0.99951171875 + }, + { + "word": " heard", + "start": 1693.42, + "end": 1693.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 1693.66, + "end": 1693.78, + "probability": 1.0 + }, + { + "word": " this.", + "start": 1693.78, + "end": 1693.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 864, + "text": "What is this?", + "start": 1694.0, + "end": 1694.5, + "words": [ + { + "word": " What", + "start": 1694.0, + "end": 1694.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1694.16, + "end": 1694.28, + "probability": 1.0 + }, + { + "word": " this?", + "start": 1694.28, + "end": 1694.5, + "probability": 1.0 + } + ] + }, + { + "id": 865, + "text": "Apparently.", + "start": 1695.16, + "end": 1695.58, + "words": [ + { + "word": " Apparently.", + "start": 1695.16, + "end": 1695.58, + "probability": 0.99365234375 + } + ] + }, + { + "id": 866, + "text": "Ah!", + "start": 1695.76, + "end": 1696.14, + "words": [ + { + "word": " Ah!", + "start": 1695.76, + "end": 1696.14, + "probability": 0.986328125 + } + ] + }, + { + "id": 867, + "text": "I forgot to turn off my phone.", + "start": 1696.32, + "end": 1697.36, + "words": [ + { + "word": " I", + "start": 1696.32, + "end": 1696.64, + "probability": 0.99755859375 + }, + { + "word": " forgot", + "start": 1696.64, + "end": 1696.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1696.84, + "end": 1696.94, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1696.94, + "end": 1697.04, + "probability": 1.0 + }, + { + "word": " off", + "start": 1697.04, + "end": 1697.18, + "probability": 0.99560546875 + }, + { + "word": " my", + "start": 1697.18, + "end": 1697.3, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 1697.3, + "end": 1697.36, + "probability": 0.9921875 + } + ] + }, + { + "id": 868, + "text": "Oh, good job.", + "start": 1697.36, + "end": 1697.94, + "words": [ + { + "word": " Oh,", + "start": 1697.36, + "end": 1697.46, + "probability": 0.96875 + }, + { + "word": " good", + "start": 1697.46, + "end": 1697.6, + "probability": 0.99951171875 + }, + { + "word": " job.", + "start": 1697.6, + "end": 1697.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 869, + "text": "That's terrible.", + "start": 1698.16, + "end": 1698.76, + "words": [ + { + "word": " That's", + "start": 1698.16, + "end": 1698.44, + "probability": 0.7392578125 + }, + { + "word": " terrible.", + "start": 1698.44, + "end": 1698.76, + "probability": 0.60888671875 + } + ] + }, + { + "id": 870, + "text": "That's me calling up.", + "start": 1699.3, + "end": 1700.18, + "words": [ + { + "word": " That's", + "start": 1699.3, + "end": 1699.72, + "probability": 0.689453125 + }, + { + "word": " me", + "start": 1699.72, + "end": 1699.78, + "probability": 0.9560546875 + }, + { + "word": " calling", + "start": 1699.78, + "end": 1700.0, + "probability": 0.99951171875 + }, + { + "word": " up.", + "start": 1700.0, + "end": 1700.18, + "probability": 0.98291015625 + } + ] + }, + { + "id": 871, + "text": "See, that is radio foul, right?", + "start": 1700.18, + "end": 1701.88, + "words": [ + { + "word": " See,", + "start": 1700.18, + "end": 1700.4, + "probability": 0.97802734375 + }, + { + "word": " that", + "start": 1700.48, + "end": 1700.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 1700.5, + "end": 1700.66, + "probability": 0.9892578125 + }, + { + "word": " radio", + "start": 1700.66, + "end": 1700.96, + "probability": 0.69287109375 + }, + { + "word": " foul,", + "start": 1700.96, + "end": 1701.46, + "probability": 0.96533203125 + }, + { + "word": " right?", + "start": 1701.64, + "end": 1701.88, + "probability": 0.99072265625 + } + ] + }, + { + "id": 872, + "text": "Right there.", + "start": 1702.02, + "end": 1702.14, + "words": [ + { + "word": " Right", + "start": 1702.02, + "end": 1702.14, + "probability": 0.00501251220703125 + }, + { + "word": " there.", + "start": 1702.14, + "end": 1702.14, + "probability": 0.9599609375 + } + ] + }, + { + "id": 873, + "text": "So what is an invisibility shield?", + "start": 1703.58, + "end": 1705.02, + "words": [ + { + "word": " So", + "start": 1703.58, + "end": 1703.98, + "probability": 0.9736328125 + }, + { + "word": " what", + "start": 1703.98, + "end": 1704.12, + "probability": 0.85791015625 + }, + { + "word": " is", + "start": 1704.12, + "end": 1704.16, + "probability": 0.984375 + }, + { + "word": " an", + "start": 1704.16, + "end": 1704.3, + "probability": 0.962890625 + }, + { + "word": " invisibility", + "start": 1704.3, + "end": 1704.7, + "probability": 0.978515625 + }, + { + "word": " shield?", + "start": 1704.7, + "end": 1705.02, + "probability": 1.0 + } + ] + }, + { + "id": 874, + "text": "What is this?", + "start": 1705.1, + "end": 1705.46, + "words": [ + { + "word": " What", + "start": 1705.1, + "end": 1705.2, + "probability": 0.9912109375 + }, + { + "word": " is", + "start": 1705.2, + "end": 1705.3, + "probability": 1.0 + }, + { + "word": " this?", + "start": 1705.3, + "end": 1705.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 875, + "text": "Apparently, there's a way that you can turn your tank into an invisible tank.", + "start": 1705.74, + "end": 1708.72, + "words": [ + { + "word": " Apparently,", + "start": 1705.74, + "end": 1706.14, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 1706.14, + "end": 1706.42, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1706.42, + "end": 1706.44, + "probability": 1.0 + }, + { + "word": " way", + "start": 1706.44, + "end": 1706.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1706.6, + "end": 1706.72, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1706.72, + "end": 1706.8, + "probability": 1.0 + }, + { + "word": " can", + "start": 1706.8, + "end": 1706.94, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1706.94, + "end": 1707.12, + "probability": 1.0 + }, + { + "word": " your", + "start": 1707.12, + "end": 1707.24, + "probability": 1.0 + }, + { + "word": " tank", + "start": 1707.24, + "end": 1707.48, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1707.48, + "end": 1707.92, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1707.92, + "end": 1708.16, + "probability": 1.0 + }, + { + "word": " invisible", + "start": 1708.16, + "end": 1708.34, + "probability": 0.99853515625 + }, + { + "word": " tank.", + "start": 1708.34, + "end": 1708.72, + "probability": 1.0 + } + ] + }, + { + "id": 876, + "text": "I've always wanted to turn my tank into an invisible tank.", + "start": 1708.9, + "end": 1711.02, + "words": [ + { + "word": " I've", + "start": 1708.9, + "end": 1709.12, + "probability": 0.94970703125 + }, + { + "word": " always", + "start": 1709.12, + "end": 1709.32, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 1709.32, + "end": 1709.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1709.7, + "end": 1709.82, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1709.82, + "end": 1709.96, + "probability": 1.0 + }, + { + "word": " my", + "start": 1709.96, + "end": 1710.04, + "probability": 1.0 + }, + { + "word": " tank", + "start": 1710.04, + "end": 1710.26, + "probability": 1.0 + }, + { + "word": " into", + "start": 1710.26, + "end": 1710.44, + "probability": 1.0 + }, + { + "word": " an", + "start": 1710.44, + "end": 1710.54, + "probability": 0.99658203125 + }, + { + "word": " invisible", + "start": 1710.54, + "end": 1710.78, + "probability": 0.99951171875 + }, + { + "word": " tank.", + "start": 1710.78, + "end": 1711.02, + "probability": 1.0 + } + ] + }, + { + "id": 877, + "text": "You have a tank?", + "start": 1711.24, + "end": 1712.12, + "words": [ + { + "word": " You", + "start": 1711.24, + "end": 1711.46, + "probability": 0.88037109375 + }, + { + "word": " have", + "start": 1711.46, + "end": 1711.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 1711.8, + "end": 1711.9, + "probability": 1.0 + }, + { + "word": " tank?", + "start": 1711.9, + "end": 1712.12, + "probability": 1.0 + } + ] + }, + { + "id": 878, + "text": "I do.", + "start": 1712.16, + "end": 1712.5, + "words": [ + { + "word": " I", + "start": 1712.16, + "end": 1712.4, + "probability": 0.9970703125 + }, + { + "word": " do.", + "start": 1712.4, + "end": 1712.5, + "probability": 1.0 + } + ] + }, + { + "id": 879, + "text": "Oh, that's awesome.", + "start": 1713.28, + "end": 1714.3, + "words": [ + { + "word": " Oh,", + "start": 1713.28, + "end": 1713.68, + "probability": 0.99755859375 + }, + { + "word": " that's", + "start": 1713.76, + "end": 1714.02, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 1714.02, + "end": 1714.3, + "probability": 1.0 + } + ] + }, + { + "id": 880, + "text": "Sorry.", + "start": 1715.98, + "end": 1716.38, + "words": [ + { + "word": " Sorry.", + "start": 1715.98, + "end": 1716.38, + "probability": 0.96728515625 + } + ] + }, + { + "id": 881, + "text": "It makes them look like cows.", + "start": 1716.5, + "end": 1717.74, + "words": [ + { + "word": " It", + "start": 1716.5, + "end": 1716.82, + "probability": 0.99951171875 + }, + { + "word": " makes", + "start": 1716.82, + "end": 1717.1, + "probability": 1.0 + }, + { + "word": " them", + "start": 1717.1, + "end": 1717.22, + "probability": 0.982421875 + }, + { + "word": " look", + "start": 1717.22, + "end": 1717.34, + "probability": 1.0 + }, + { + "word": " like", + "start": 1717.34, + "end": 1717.54, + "probability": 1.0 + }, + { + "word": " cows.", + "start": 1717.54, + "end": 1717.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 882, + "text": "It makes them look like cows?", + "start": 1718.04, + "end": 1719.7, + "words": [ + { + "word": " It", + "start": 1718.04, + "end": 1718.26, + "probability": 0.884765625 + }, + { + "word": " makes", + "start": 1718.26, + "end": 1718.6, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 1718.6, + "end": 1718.74, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 1718.74, + "end": 1718.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 1718.94, + "end": 1719.2, + "probability": 1.0 + }, + { + "word": " cows?", + "start": 1719.2, + "end": 1719.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 883, + "text": "That's a big cow.", + "start": 1720.04, + "end": 1720.78, + "words": [ + { + "word": " That's", + "start": 1720.04, + "end": 1720.26, + "probability": 0.7216796875 + }, + { + "word": " a", + "start": 1720.26, + "end": 1720.3, + "probability": 0.99853515625 + }, + { + "word": " big", + "start": 1720.3, + "end": 1720.46, + "probability": 1.0 + }, + { + "word": " cow.", + "start": 1720.46, + "end": 1720.78, + "probability": 1.0 + } + ] + }, + { + "id": 884, + "text": "Gosh.", + "start": 1721.14, + "end": 1721.54, + "words": [ + { + "word": " Gosh.", + "start": 1721.14, + "end": 1721.54, + "probability": 0.68408203125 + } + ] + }, + { + "id": 885, + "text": "I'm going to have to, we're going to post that on the website, but it's an interesting", + "start": 1723.24, + "end": 1727.42, + "words": [ + { + "word": " I'm", + "start": 1723.24, + "end": 1723.64, + "probability": 0.7705078125 + }, + { + "word": " going", + "start": 1723.64, + "end": 1723.7, + "probability": 0.96875 + }, + { + "word": " to", + "start": 1723.7, + "end": 1723.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 1723.82, + "end": 1723.94, + "probability": 1.0 + }, + { + "word": " to,", + "start": 1723.94, + "end": 1724.06, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1724.06, + "end": 1724.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 1724.24, + "end": 1724.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1724.32, + "end": 1724.4, + "probability": 1.0 + }, + { + "word": " post", + "start": 1724.4, + "end": 1724.64, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1724.64, + "end": 1724.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 1724.8, + "end": 1724.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1724.92, + "end": 1725.04, + "probability": 1.0 + }, + { + "word": " website,", + "start": 1725.04, + "end": 1725.32, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 1725.44, + "end": 1725.72, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1725.72, + "end": 1726.42, + "probability": 1.0 + }, + { + "word": " an", + "start": 1726.42, + "end": 1726.52, + "probability": 0.9501953125 + }, + { + "word": " interesting", + "start": 1726.52, + "end": 1727.42, + "probability": 1.0 + } + ] + }, + { + "id": 886, + "text": "story.", + "start": 1727.42, + "end": 1727.86, + "words": [ + { + "word": " story.", + "start": 1727.42, + "end": 1727.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 887, + "text": "You've got to go into detail here a little bit.", + "start": 1729.14, + "end": 1731.08, + "words": [ + { + "word": " You've", + "start": 1729.14, + "end": 1729.54, + "probability": 0.9169921875 + }, + { + "word": " got", + "start": 1729.54, + "end": 1729.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1729.68, + "end": 1729.74, + "probability": 1.0 + }, + { + "word": " go", + "start": 1729.74, + "end": 1729.88, + "probability": 1.0 + }, + { + "word": " into", + "start": 1729.88, + "end": 1730.08, + "probability": 1.0 + }, + { + "word": " detail", + "start": 1730.08, + "end": 1730.42, + "probability": 1.0 + }, + { + "word": " here", + "start": 1730.42, + "end": 1730.72, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1730.72, + "end": 1730.82, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 1730.82, + "end": 1730.92, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 1730.92, + "end": 1731.08, + "probability": 1.0 + } + ] + }, + { + "id": 888, + "text": "I'm on the hook.", + "start": 1731.26, + "end": 1731.98, + "words": [ + { + "word": " I'm", + "start": 1731.26, + "end": 1731.62, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 1731.62, + "end": 1731.74, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1731.74, + "end": 1731.84, + "probability": 0.99951171875 + }, + { + "word": " hook.", + "start": 1731.84, + "end": 1731.98, + "probability": 0.8681640625 + } + ] + }, + { + "id": 889, + "text": "I'm on the hook now.", + "start": 1732.02, + "end": 1732.2, + "words": [ + { + "word": " I'm", + "start": 1732.02, + "end": 1732.1, + "probability": 0.10931396484375 + }, + { + "word": " on", + "start": 1732.1, + "end": 1732.1, + "probability": 0.254150390625 + }, + { + "word": " the", + "start": 1732.1, + "end": 1732.1, + "probability": 0.1612548828125 + }, + { + "word": " hook", + "start": 1732.1, + "end": 1732.1, + "probability": 0.20849609375 + }, + { + "word": " now.", + "start": 1732.1, + "end": 1732.2, + "probability": 0.99365234375 + } + ] + }, + { + "id": 890, + "text": "You've got to tell me.", + "start": 1732.28, + "end": 1732.92, + "words": [ + { + "word": " You've", + "start": 1732.28, + "end": 1732.4, + "probability": 0.9453125 + }, + { + "word": " got", + "start": 1732.4, + "end": 1732.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1732.46, + "end": 1732.5, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1732.5, + "end": 1732.74, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1732.74, + "end": 1732.92, + "probability": 1.0 + } + ] + }, + { + "id": 891, + "text": "We'll cover that in a minute, but we've got a break coming up here, so I need to mention", + "start": 1733.44, + "end": 1736.42, + "words": [ + { + "word": " We'll", + "start": 1733.44, + "end": 1733.76, + "probability": 0.9990234375 + }, + { + "word": " cover", + "start": 1733.76, + "end": 1733.96, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1733.96, + "end": 1734.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 1734.2, + "end": 1734.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1734.32, + "end": 1734.38, + "probability": 1.0 + }, + { + "word": " minute,", + "start": 1734.38, + "end": 1734.54, + "probability": 0.9990234375 + }, + { + "word": " but", + "start": 1734.62, + "end": 1734.76, + "probability": 1.0 + }, + { + "word": " we've", + "start": 1734.76, + "end": 1735.08, + "probability": 1.0 + }, + { + "word": " got", + "start": 1735.08, + "end": 1735.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 1735.12, + "end": 1735.22, + "probability": 0.9990234375 + }, + { + "word": " break", + "start": 1735.22, + "end": 1735.36, + "probability": 0.99951171875 + }, + { + "word": " coming", + "start": 1735.36, + "end": 1735.54, + "probability": 1.0 + }, + { + "word": " up", + "start": 1735.54, + "end": 1735.68, + "probability": 1.0 + }, + { + "word": " here,", + "start": 1735.68, + "end": 1735.74, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1735.8, + "end": 1735.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1735.86, + "end": 1735.94, + "probability": 1.0 + }, + { + "word": " need", + "start": 1735.94, + "end": 1736.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 1736.04, + "end": 1736.14, + "probability": 1.0 + }, + { + "word": " mention", + "start": 1736.14, + "end": 1736.42, + "probability": 1.0 + } + ] + }, + { + "id": 892, + "text": "the classes.", + "start": 1736.42, + "end": 1736.92, + "words": [ + { + "word": " the", + "start": 1736.42, + "end": 1736.58, + "probability": 1.0 + }, + { + "word": " classes.", + "start": 1736.58, + "end": 1736.92, + "probability": 1.0 + } + ] + }, + { + "id": 893, + "text": "So if you want to be part of the classes this evening, from three to five, we're doing", + "start": 1737.04, + "end": 1740.92, + "words": [ + { + "word": " So", + "start": 1737.04, + "end": 1737.16, + "probability": 0.27490234375 + }, + { + "word": " if", + "start": 1737.16, + "end": 1737.18, + "probability": 0.88232421875 + }, + { + "word": " you", + "start": 1737.18, + "end": 1737.28, + "probability": 1.0 + }, + { + "word": " want", + "start": 1737.28, + "end": 1737.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1737.38, + "end": 1737.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 1737.42, + "end": 1737.52, + "probability": 1.0 + }, + { + "word": " part", + "start": 1737.52, + "end": 1737.66, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 1737.66, + "end": 1737.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1737.76, + "end": 1737.8, + "probability": 1.0 + }, + { + "word": " classes", + "start": 1737.8, + "end": 1738.08, + "probability": 1.0 + }, + { + "word": " this", + "start": 1738.08, + "end": 1738.3, + "probability": 0.99951171875 + }, + { + "word": " evening,", + "start": 1738.3, + "end": 1738.68, + "probability": 1.0 + }, + { + "word": " from", + "start": 1738.86, + "end": 1739.44, + "probability": 1.0 + }, + { + "word": " three", + "start": 1739.44, + "end": 1739.86, + "probability": 0.08270263671875 + }, + { + "word": " to", + "start": 1739.86, + "end": 1739.98, + "probability": 1.0 + }, + { + "word": " five,", + "start": 1739.98, + "end": 1740.34, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1740.36, + "end": 1740.68, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1740.68, + "end": 1740.92, + "probability": 1.0 + } + ] + }, + { + "id": 894, + "text": "an introduction to Windows 7.", + "start": 1740.92, + "end": 1742.46, + "words": [ + { + "word": " an", + "start": 1740.92, + "end": 1741.16, + "probability": 0.9853515625 + }, + { + "word": " introduction", + "start": 1741.16, + "end": 1741.82, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 1741.82, + "end": 1742.02, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1742.02, + "end": 1742.18, + "probability": 0.99951171875 + }, + { + "word": " 7.", + "start": 1742.18, + "end": 1742.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 895, + "text": "Nice.", + "start": 1742.56, + "end": 1742.82, + "words": [ + { + "word": " Nice.", + "start": 1742.56, + "end": 1742.82, + "probability": 0.97314453125 + } + ] + }, + { + "id": 896, + "text": "It will be at the classroom location.", + "start": 1742.98, + "end": 1744.64, + "words": [ + { + "word": " It", + "start": 1742.98, + "end": 1743.3, + "probability": 0.99365234375 + }, + { + "word": " will", + "start": 1743.3, + "end": 1743.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 1743.6, + "end": 1743.76, + "probability": 1.0 + }, + { + "word": " at", + "start": 1743.76, + "end": 1743.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1743.94, + "end": 1744.06, + "probability": 1.0 + }, + { + "word": " classroom", + "start": 1744.06, + "end": 1744.34, + "probability": 0.994140625 + }, + { + "word": " location.", + "start": 1744.34, + "end": 1744.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 897, + "text": "What will I learn?", + "start": 1745.04, + "end": 1745.68, + "words": [ + { + "word": " What", + "start": 1745.04, + "end": 1745.18, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 1745.18, + "end": 1745.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 1745.28, + "end": 1745.42, + "probability": 1.0 + }, + { + "word": " learn?", + "start": 1745.42, + "end": 1745.68, + "probability": 1.0 + } + ] + }, + { + "id": 898, + "text": "You will learn what's new in Windows 7.", + "start": 1745.84, + "end": 1748.02, + "words": [ + { + "word": " You", + "start": 1745.84, + "end": 1746.08, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 1746.08, + "end": 1746.22, + "probability": 1.0 + }, + { + "word": " learn", + "start": 1746.22, + "end": 1746.56, + "probability": 1.0 + }, + { + "word": " what's", + "start": 1746.56, + "end": 1747.16, + "probability": 1.0 + }, + { + "word": " new", + "start": 1747.16, + "end": 1747.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 1747.38, + "end": 1747.6, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1747.6, + "end": 1747.78, + "probability": 1.0 + }, + { + "word": " 7.", + "start": 1747.78, + "end": 1748.02, + "probability": 1.0 + } + ] + }, + { + "id": 899, + "text": "If you're migrating from Windows XP, which is what most of the people that are showing", + "start": 1748.08, + "end": 1751.62, + "words": [ + { + "word": " If", + "start": 1748.08, + "end": 1748.22, + "probability": 0.9580078125 + }, + { + "word": " you're", + "start": 1748.22, + "end": 1748.36, + "probability": 1.0 + }, + { + "word": " migrating", + "start": 1748.36, + "end": 1749.0, + "probability": 1.0 + }, + { + "word": " from", + "start": 1749.0, + "end": 1749.16, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1749.16, + "end": 1749.34, + "probability": 1.0 + }, + { + "word": " XP,", + "start": 1749.34, + "end": 1749.56, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 1749.7, + "end": 1749.84, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1749.84, + "end": 1749.96, + "probability": 1.0 + }, + { + "word": " what", + "start": 1749.96, + "end": 1750.32, + "probability": 1.0 + }, + { + "word": " most", + "start": 1750.32, + "end": 1750.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 1750.84, + "end": 1750.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1750.96, + "end": 1751.02, + "probability": 1.0 + }, + { + "word": " people", + "start": 1751.02, + "end": 1751.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 1751.24, + "end": 1751.36, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 1751.36, + "end": 1751.42, + "probability": 1.0 + }, + { + "word": " showing", + "start": 1751.42, + "end": 1751.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 900, + "text": "up are for, or they recently got a copy of Windows 7 and they just really don't know", + "start": 1751.62, + "end": 1755.08, + "words": [ + { + "word": " up", + "start": 1751.62, + "end": 1751.78, + "probability": 0.94970703125 + }, + { + "word": " are", + "start": 1751.78, + "end": 1751.88, + "probability": 0.85302734375 + }, + { + "word": " for,", + "start": 1751.88, + "end": 1752.1, + "probability": 1.0 + }, + { + "word": " or", + "start": 1752.16, + "end": 1752.3, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 1752.3, + "end": 1752.4, + "probability": 1.0 + }, + { + "word": " recently", + "start": 1752.4, + "end": 1752.82, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 1752.82, + "end": 1753.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 1753.14, + "end": 1753.24, + "probability": 1.0 + }, + { + "word": " copy", + "start": 1753.24, + "end": 1753.44, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1753.44, + "end": 1753.66, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1753.66, + "end": 1753.8, + "probability": 1.0 + }, + { + "word": " 7", + "start": 1753.8, + "end": 1754.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 1754.12, + "end": 1754.28, + "probability": 0.6513671875 + }, + { + "word": " they", + "start": 1754.28, + "end": 1754.4, + "probability": 1.0 + }, + { + "word": " just", + "start": 1754.4, + "end": 1754.56, + "probability": 1.0 + }, + { + "word": " really", + "start": 1754.56, + "end": 1754.76, + "probability": 0.9755859375 + }, + { + "word": " don't", + "start": 1754.76, + "end": 1755.0, + "probability": 1.0 + }, + { + "word": " know", + "start": 1755.0, + "end": 1755.08, + "probability": 1.0 + } + ] + }, + { + "id": 901, + "text": "what to do with it.", + "start": 1755.08, + "end": 1755.82, + "words": [ + { + "word": " what", + "start": 1755.08, + "end": 1755.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 1755.2, + "end": 1755.32, + "probability": 1.0 + }, + { + "word": " do", + "start": 1755.32, + "end": 1755.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 1755.48, + "end": 1755.62, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1755.62, + "end": 1755.82, + "probability": 1.0 + } + ] + }, + { + "id": 902, + "text": "Don't use it as a coaster.", + "start": 1757.0600000000002, + "end": 1758.16, + "words": [ + { + "word": " Don't", + "start": 1757.0600000000002, + "end": 1757.38, + "probability": 0.9541015625 + }, + { + "word": " use", + "start": 1757.38, + "end": 1757.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 1757.68, + "end": 1757.8, + "probability": 1.0 + }, + { + "word": " as", + "start": 1757.8, + "end": 1757.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 1757.92, + "end": 1757.96, + "probability": 1.0 + }, + { + "word": " coaster.", + "start": 1757.96, + "end": 1758.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 903, + "text": "It's funny.", + "start": 1758.34, + "end": 1758.62, + "words": [ + { + "word": " It's", + "start": 1758.34, + "end": 1758.46, + "probability": 0.744140625 + }, + { + "word": " funny.", + "start": 1758.46, + "end": 1758.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 904, + "text": "I talked to somebody this morning, and I said, so what do you want to learn?", + "start": 1758.68, + "end": 1761.94, + "words": [ + { + "word": " I", + "start": 1758.68, + "end": 1758.78, + "probability": 0.99365234375 + }, + { + "word": " talked", + "start": 1758.78, + "end": 1758.92, + "probability": 0.97607421875 + }, + { + "word": " to", + "start": 1758.92, + "end": 1759.06, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1759.06, + "end": 1759.24, + "probability": 1.0 + }, + { + "word": " this", + "start": 1759.24, + "end": 1759.4, + "probability": 1.0 + }, + { + "word": " morning,", + "start": 1759.4, + "end": 1759.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 1759.74, + "end": 1760.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 1760.16, + "end": 1760.44, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1760.44, + "end": 1760.68, + "probability": 1.0 + }, + { + "word": " so", + "start": 1760.7, + "end": 1760.88, + "probability": 0.90576171875 + }, + { + "word": " what", + "start": 1760.88, + "end": 1761.36, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 1761.36, + "end": 1761.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 1761.56, + "end": 1761.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 1761.6, + "end": 1761.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1761.74, + "end": 1761.82, + "probability": 1.0 + }, + { + "word": " learn?", + "start": 1761.82, + "end": 1761.94, + "probability": 1.0 + } + ] + }, + { + "id": 905, + "text": "What are you hoping to get out of this class?", + "start": 1762.02, + "end": 1762.44, + "words": [ + { + "word": " What", + "start": 1762.02, + "end": 1762.14, + "probability": 0.006999969482421875 + }, + { + "word": " are", + "start": 1762.14, + "end": 1762.14, + "probability": 0.78369140625 + }, + { + "word": " you", + "start": 1762.14, + "end": 1762.14, + "probability": 0.986328125 + }, + { + "word": " hoping", + "start": 1762.14, + "end": 1762.14, + "probability": 0.91796875 + }, + { + "word": " to", + "start": 1762.14, + "end": 1762.14, + "probability": 0.8212890625 + }, + { + "word": " get", + "start": 1762.14, + "end": 1762.14, + "probability": 0.966796875 + }, + { + "word": " out", + "start": 1762.14, + "end": 1762.14, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1762.14, + "end": 1762.14, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 1762.14, + "end": 1762.22, + "probability": 0.82763671875 + }, + { + "word": " class?", + "start": 1762.22, + "end": 1762.44, + "probability": 0.970703125 + } + ] + }, + { + "id": 906, + "text": "What are you hoping to get out of it?", + "start": 1762.56, + "end": 1764.06, + "words": [ + { + "word": " What", + "start": 1762.56, + "end": 1762.72, + "probability": 0.68603515625 + }, + { + "word": " are", + "start": 1762.72, + "end": 1762.92, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 1762.92, + "end": 1763.0, + "probability": 0.9990234375 + }, + { + "word": " hoping", + "start": 1763.0, + "end": 1763.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1763.22, + "end": 1763.42, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 1763.42, + "end": 1763.7, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 1763.7, + "end": 1763.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 1763.9, + "end": 1763.98, + "probability": 0.99951171875 + }, + { + "word": " it?", + "start": 1763.98, + "end": 1764.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 907, + "text": "That's my standard question to everybody.", + "start": 1764.24, + "end": 1765.78, + "words": [ + { + "word": " That's", + "start": 1764.24, + "end": 1764.6, + "probability": 0.810546875 + }, + { + "word": " my", + "start": 1764.6, + "end": 1764.72, + "probability": 0.99951171875 + }, + { + "word": " standard", + "start": 1764.72, + "end": 1765.06, + "probability": 1.0 + }, + { + "word": " question", + "start": 1765.06, + "end": 1765.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1765.38, + "end": 1765.56, + "probability": 0.99951171875 + }, + { + "word": " everybody.", + "start": 1765.56, + "end": 1765.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 908, + "text": "When they walk in, what do you want to learn today?", + "start": 1766.04, + "end": 1768.04, + "words": [ + { + "word": " When", + "start": 1766.04, + "end": 1766.4, + "probability": 0.80712890625 + }, + { + "word": " they", + "start": 1766.4, + "end": 1766.68, + "probability": 0.99951171875 + }, + { + "word": " walk", + "start": 1766.68, + "end": 1766.86, + "probability": 1.0 + }, + { + "word": " in,", + "start": 1766.86, + "end": 1767.08, + "probability": 1.0 + }, + { + "word": " what", + "start": 1767.16, + "end": 1767.3, + "probability": 0.9951171875 + }, + { + "word": " do", + "start": 1767.3, + "end": 1767.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 1767.38, + "end": 1767.48, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 1767.48, + "end": 1767.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 1767.62, + "end": 1767.7, + "probability": 1.0 + }, + { + "word": " learn", + "start": 1767.7, + "end": 1767.86, + "probability": 1.0 + }, + { + "word": " today?", + "start": 1767.86, + "end": 1768.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 909, + "text": "So I can at least hit exactly what they want to learn during the class.", + "start": 1768.2, + "end": 1772.2, + "words": [ + { + "word": " So", + "start": 1768.2, + "end": 1768.56, + "probability": 0.77685546875 + }, + { + "word": " I", + "start": 1768.56, + "end": 1768.76, + "probability": 0.947265625 + }, + { + "word": " can", + "start": 1768.76, + "end": 1768.92, + "probability": 1.0 + }, + { + "word": " at", + "start": 1768.92, + "end": 1769.22, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 1769.22, + "end": 1769.56, + "probability": 1.0 + }, + { + "word": " hit", + "start": 1769.56, + "end": 1769.78, + "probability": 0.99951171875 + }, + { + "word": " exactly", + "start": 1769.78, + "end": 1770.16, + "probability": 1.0 + }, + { + "word": " what", + "start": 1770.16, + "end": 1770.46, + "probability": 1.0 + }, + { + "word": " they", + "start": 1770.46, + "end": 1770.58, + "probability": 1.0 + }, + { + "word": " want", + "start": 1770.58, + "end": 1770.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1770.76, + "end": 1770.86, + "probability": 1.0 + }, + { + "word": " learn", + "start": 1770.86, + "end": 1771.1, + "probability": 1.0 + }, + { + "word": " during", + "start": 1771.1, + "end": 1771.8, + "probability": 0.4736328125 + }, + { + "word": " the", + "start": 1771.8, + "end": 1772.02, + "probability": 1.0 + }, + { + "word": " class.", + "start": 1772.02, + "end": 1772.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 910, + "text": "Tailor the class to your needs.", + "start": 1772.2, + "end": 1773.14, + "words": [ + { + "word": " Tailor", + "start": 1772.2, + "end": 1772.36, + "probability": 0.60986328125 + }, + { + "word": " the", + "start": 1772.36, + "end": 1772.44, + "probability": 0.99951171875 + }, + { + "word": " class", + "start": 1772.44, + "end": 1772.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1772.7, + "end": 1772.84, + "probability": 1.0 + }, + { + "word": " your", + "start": 1772.84, + "end": 1772.92, + "probability": 1.0 + }, + { + "word": " needs.", + "start": 1772.92, + "end": 1773.14, + "probability": 1.0 + } + ] + }, + { + "id": 911, + "text": "Right.", + "start": 1773.36, + "end": 1773.52, + "words": [ + { + "word": " Right.", + "start": 1773.36, + "end": 1773.52, + "probability": 0.7490234375 + } + ] + }, + { + "id": 912, + "text": "And he goes, well, I got this Windows 7 machine because my old one died, and I really would", + "start": 1773.84, + "end": 1779.74, + "words": [ + { + "word": " And", + "start": 1773.84, + "end": 1774.2, + "probability": 0.9658203125 + }, + { + "word": " he", + "start": 1774.2, + "end": 1774.3, + "probability": 0.99951171875 + }, + { + "word": " goes,", + "start": 1774.3, + "end": 1774.48, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1774.58, + "end": 1774.7, + "probability": 0.94873046875 + }, + { + "word": " I", + "start": 1774.78, + "end": 1775.04, + "probability": 0.56982421875 + }, + { + "word": " got", + "start": 1775.04, + "end": 1775.22, + "probability": 0.94873046875 + }, + { + "word": " this", + "start": 1775.22, + "end": 1775.48, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1775.48, + "end": 1776.1, + "probability": 0.99951171875 + }, + { + "word": " 7", + "start": 1776.1, + "end": 1776.36, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1776.36, + "end": 1776.68, + "probability": 1.0 + }, + { + "word": " because", + "start": 1776.68, + "end": 1776.96, + "probability": 0.9970703125 + }, + { + "word": " my", + "start": 1776.96, + "end": 1777.14, + "probability": 1.0 + }, + { + "word": " old", + "start": 1777.14, + "end": 1777.26, + "probability": 1.0 + }, + { + "word": " one", + "start": 1777.26, + "end": 1777.4, + "probability": 1.0 + }, + { + "word": " died,", + "start": 1777.4, + "end": 1777.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 1777.76, + "end": 1778.1, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1778.1, + "end": 1779.0, + "probability": 1.0 + }, + { + "word": " really", + "start": 1779.0, + "end": 1779.56, + "probability": 1.0 + }, + { + "word": " would", + "start": 1779.56, + "end": 1779.74, + "probability": 1.0 + } + ] + }, + { + "id": 913, + "text": "like some instruction on it, but I've just been using it in the meantime because what", + "start": 1779.74, + "end": 1783.68, + "words": [ + { + "word": " like", + "start": 1779.74, + "end": 1779.94, + "probability": 1.0 + }, + { + "word": " some", + "start": 1779.94, + "end": 1780.08, + "probability": 1.0 + }, + { + "word": " instruction", + "start": 1780.08, + "end": 1780.36, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 1780.36, + "end": 1780.6, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1780.6, + "end": 1780.74, + "probability": 1.0 + }, + { + "word": " but", + "start": 1780.8, + "end": 1781.16, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 1781.16, + "end": 1781.48, + "probability": 1.0 + }, + { + "word": " just", + "start": 1781.48, + "end": 1781.62, + "probability": 1.0 + }, + { + "word": " been", + "start": 1781.62, + "end": 1781.76, + "probability": 1.0 + }, + { + "word": " using", + "start": 1781.76, + "end": 1782.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 1782.0, + "end": 1782.22, + "probability": 1.0 + }, + { + "word": " in", + "start": 1782.22, + "end": 1782.32, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1782.32, + "end": 1782.34, + "probability": 1.0 + }, + { + "word": " meantime", + "start": 1782.34, + "end": 1782.58, + "probability": 1.0 + }, + { + "word": " because", + "start": 1782.58, + "end": 1782.96, + "probability": 0.958984375 + }, + { + "word": " what", + "start": 1782.96, + "end": 1783.68, + "probability": 0.98583984375 + } + ] + }, + { + "id": 914, + "text": "else can I do?", + "start": 1783.68, + "end": 1784.2, + "words": [ + { + "word": " else", + "start": 1783.68, + "end": 1783.86, + "probability": 1.0 + }, + { + "word": " can", + "start": 1783.86, + "end": 1783.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 1783.98, + "end": 1784.08, + "probability": 1.0 + }, + { + "word": " do?", + "start": 1784.08, + "end": 1784.2, + "probability": 1.0 + } + ] + }, + { + "id": 915, + "text": "Right.", + "start": 1784.32, + "end": 1784.5, + "words": [ + { + "word": " Right.", + "start": 1784.32, + "end": 1784.5, + "probability": 0.48388671875 + } + ] + }, + { + "id": 916, + "text": "And that's exactly what you should be doing.", + "start": 1784.6, + "end": 1786.16, + "words": [ + { + "word": " And", + "start": 1784.6, + "end": 1784.76, + "probability": 0.99169921875 + }, + { + "word": " that's", + "start": 1784.76, + "end": 1785.16, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 1785.16, + "end": 1785.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 1785.34, + "end": 1785.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 1785.56, + "end": 1785.68, + "probability": 1.0 + }, + { + "word": " should", + "start": 1785.68, + "end": 1785.82, + "probability": 0.99658203125 + }, + { + "word": " be", + "start": 1785.82, + "end": 1785.92, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 1785.92, + "end": 1786.16, + "probability": 1.0 + } + ] + }, + { + "id": 917, + "text": "Use it because you'll find out that it's not as different as you think it is.", + "start": 1786.5600000000002, + "end": 1791.58, + "words": [ + { + "word": " Use", + "start": 1786.5600000000002, + "end": 1786.92, + "probability": 0.73779296875 + }, + { + "word": " it", + "start": 1786.92, + "end": 1787.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 1787.24, + "end": 1787.54, + "probability": 0.84765625 + }, + { + "word": " you'll", + "start": 1787.54, + "end": 1788.96, + "probability": 0.99072265625 + }, + { + "word": " find", + "start": 1788.96, + "end": 1789.22, + "probability": 1.0 + }, + { + "word": " out", + "start": 1789.22, + "end": 1789.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 1789.5, + "end": 1789.7, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 1789.7, + "end": 1789.86, + "probability": 1.0 + }, + { + "word": " not", + "start": 1789.86, + "end": 1790.02, + "probability": 1.0 + }, + { + "word": " as", + "start": 1790.02, + "end": 1790.34, + "probability": 1.0 + }, + { + "word": " different", + "start": 1790.34, + "end": 1790.7, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1790.7, + "end": 1790.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 1790.86, + "end": 1790.96, + "probability": 1.0 + }, + { + "word": " think", + "start": 1790.96, + "end": 1791.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 1791.22, + "end": 1791.36, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1791.36, + "end": 1791.58, + "probability": 1.0 + } + ] + }, + { + "id": 918, + "text": "Yeah.", + "start": 1791.64, + "end": 1791.8, + "words": [ + { + "word": " Yeah.", + "start": 1791.64, + "end": 1791.8, + "probability": 0.87841796875 + } + ] + }, + { + "id": 919, + "text": "It is.", + "start": 1791.8, + "end": 1791.9, + "words": [ + { + "word": " It", + "start": 1791.8, + "end": 1791.88, + "probability": 0.4833984375 + }, + { + "word": " is.", + "start": 1791.88, + "end": 1791.9, + "probability": 0.394775390625 + } + ] + }, + { + "id": 920, + "text": "It just looks more aesthetics than anything.", + "start": 1792.02, + "end": 1793.9, + "words": [ + { + "word": " It", + "start": 1792.02, + "end": 1792.12, + "probability": 0.414794921875 + }, + { + "word": " just", + "start": 1792.12, + "end": 1792.12, + "probability": 0.48583984375 + }, + { + "word": " looks", + "start": 1792.12, + "end": 1792.12, + "probability": 0.99169921875 + }, + { + "word": " more", + "start": 1792.12, + "end": 1792.94, + "probability": 0.64208984375 + }, + { + "word": " aesthetics", + "start": 1792.94, + "end": 1793.54, + "probability": 0.8916015625 + }, + { + "word": " than", + "start": 1793.54, + "end": 1793.7, + "probability": 0.99951171875 + }, + { + "word": " anything.", + "start": 1793.7, + "end": 1793.9, + "probability": 1.0 + } + ] + }, + { + "id": 921, + "text": "Right.", + "start": 1794.16, + "end": 1794.28, + "words": [ + { + "word": " Right.", + "start": 1794.16, + "end": 1794.28, + "probability": 0.1954345703125 + } + ] + }, + { + "id": 922, + "text": "It's much like cars.", + "start": 1794.3, + "end": 1796.38, + "words": [ + { + "word": " It's", + "start": 1794.3, + "end": 1794.5, + "probability": 0.99853515625 + }, + { + "word": " much", + "start": 1794.5, + "end": 1795.66, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1795.66, + "end": 1795.98, + "probability": 1.0 + }, + { + "word": " cars.", + "start": 1795.98, + "end": 1796.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 923, + "text": "Right.", + "start": 1796.6, + "end": 1796.82, + "words": [ + { + "word": " Right.", + "start": 1796.6, + "end": 1796.82, + "probability": 0.97998046875 + } + ] + }, + { + "id": 924, + "text": "Right.", + "start": 1796.9, + "end": 1797.04, + "words": [ + { + "word": " Right.", + "start": 1796.9, + "end": 1797.04, + "probability": 0.4404296875 + } + ] + }, + { + "id": 925, + "text": "You know, as far as, you know, you go from one car to another.", + "start": 1797.08, + "end": 1800.18, + "words": [ + { + "word": " You", + "start": 1797.08, + "end": 1797.2, + "probability": 0.74072265625 + }, + { + "word": " know,", + "start": 1797.2, + "end": 1797.34, + "probability": 0.98974609375 + }, + { + "word": " as", + "start": 1797.34, + "end": 1797.4, + "probability": 0.99365234375 + }, + { + "word": " far", + "start": 1797.4, + "end": 1797.58, + "probability": 1.0 + }, + { + "word": " as,", + "start": 1797.58, + "end": 1797.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 1797.84, + "end": 1798.52, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1798.52, + "end": 1798.68, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1798.7, + "end": 1798.96, + "probability": 1.0 + }, + { + "word": " go", + "start": 1798.96, + "end": 1799.44, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1799.44, + "end": 1799.6, + "probability": 1.0 + }, + { + "word": " one", + "start": 1799.6, + "end": 1799.78, + "probability": 1.0 + }, + { + "word": " car", + "start": 1799.78, + "end": 1799.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1799.9, + "end": 1800.02, + "probability": 1.0 + }, + { + "word": " another.", + "start": 1800.02, + "end": 1800.18, + "probability": 1.0 + } + ] + }, + { + "id": 926, + "text": "They still drive the same.", + "start": 1800.42, + "end": 1801.32, + "words": [ + { + "word": " They", + "start": 1800.42, + "end": 1800.54, + "probability": 0.974609375 + }, + { + "word": " still", + "start": 1800.54, + "end": 1800.7, + "probability": 1.0 + }, + { + "word": " drive", + "start": 1800.7, + "end": 1800.94, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1800.94, + "end": 1801.1, + "probability": 1.0 + }, + { + "word": " same.", + "start": 1801.1, + "end": 1801.32, + "probability": 1.0 + } + ] + }, + { + "id": 927, + "text": "It's still the basic mechanics are the same as far as, you know, you get in, you push", + "start": 1801.52, + "end": 1805.32, + "words": [ + { + "word": " It's", + "start": 1801.52, + "end": 1801.84, + "probability": 0.9912109375 + }, + { + "word": " still", + "start": 1801.84, + "end": 1802.26, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1802.26, + "end": 1802.42, + "probability": 0.99853515625 + }, + { + "word": " basic", + "start": 1802.42, + "end": 1802.72, + "probability": 0.99951171875 + }, + { + "word": " mechanics", + "start": 1802.72, + "end": 1803.16, + "probability": 1.0 + }, + { + "word": " are", + "start": 1803.16, + "end": 1803.34, + "probability": 0.97509765625 + }, + { + "word": " the", + "start": 1803.34, + "end": 1803.42, + "probability": 1.0 + }, + { + "word": " same", + "start": 1803.42, + "end": 1803.68, + "probability": 1.0 + }, + { + "word": " as", + "start": 1803.68, + "end": 1803.84, + "probability": 0.744140625 + }, + { + "word": " far", + "start": 1803.84, + "end": 1803.98, + "probability": 1.0 + }, + { + "word": " as,", + "start": 1803.98, + "end": 1804.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1804.32, + "end": 1804.44, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1804.44, + "end": 1804.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 1804.52, + "end": 1804.6, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1804.6, + "end": 1804.76, + "probability": 0.9990234375 + }, + { + "word": " in,", + "start": 1804.76, + "end": 1804.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 1804.96, + "end": 1805.02, + "probability": 0.99951171875 + }, + { + "word": " push", + "start": 1805.02, + "end": 1805.32, + "probability": 0.99755859375 + } + ] + }, + { + "id": 928, + "text": "the accelerator, you turn the wheel, et cetera.", + "start": 1805.32, + "end": 1807.76, + "words": [ + { + "word": " the", + "start": 1805.32, + "end": 1805.46, + "probability": 0.99951171875 + }, + { + "word": " accelerator,", + "start": 1805.46, + "end": 1805.76, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1806.22, + "end": 1806.34, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1806.34, + "end": 1806.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 1806.54, + "end": 1806.68, + "probability": 1.0 + }, + { + "word": " wheel,", + "start": 1806.68, + "end": 1806.88, + "probability": 1.0 + }, + { + "word": " et", + "start": 1807.02, + "end": 1807.4, + "probability": 0.82373046875 + }, + { + "word": " cetera.", + "start": 1807.4, + "end": 1807.76, + "probability": 1.0 + } + ] + }, + { + "id": 929, + "text": "So that's where I messed up when I got my new car.", + "start": 1807.9, + "end": 1809.26, + "words": [ + { + "word": " So", + "start": 1807.9, + "end": 1808.12, + "probability": 0.98193359375 + }, + { + "word": " that's", + "start": 1808.12, + "end": 1808.28, + "probability": 0.9189453125 + }, + { + "word": " where", + "start": 1808.28, + "end": 1808.36, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 1808.36, + "end": 1808.44, + "probability": 1.0 + }, + { + "word": " messed", + "start": 1808.44, + "end": 1808.58, + "probability": 1.0 + }, + { + "word": " up", + "start": 1808.58, + "end": 1808.72, + "probability": 1.0 + }, + { + "word": " when", + "start": 1808.72, + "end": 1808.82, + "probability": 0.9775390625 + }, + { + "word": " I", + "start": 1808.82, + "end": 1808.84, + "probability": 1.0 + }, + { + "word": " got", + "start": 1808.84, + "end": 1808.94, + "probability": 1.0 + }, + { + "word": " my", + "start": 1808.94, + "end": 1808.98, + "probability": 0.962890625 + }, + { + "word": " new", + "start": 1808.98, + "end": 1809.08, + "probability": 1.0 + }, + { + "word": " car.", + "start": 1809.08, + "end": 1809.26, + "probability": 1.0 + } + ] + }, + { + "id": 930, + "text": "I forgot about where the accelerator was.", + "start": 1809.32, + "end": 1810.38, + "words": [ + { + "word": " I", + "start": 1809.32, + "end": 1809.4, + "probability": 0.99951171875 + }, + { + "word": " forgot", + "start": 1809.4, + "end": 1809.52, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1809.52, + "end": 1809.6, + "probability": 0.90380859375 + }, + { + "word": " where", + "start": 1809.6, + "end": 1809.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1809.7, + "end": 1809.78, + "probability": 1.0 + }, + { + "word": " accelerator", + "start": 1809.78, + "end": 1810.06, + "probability": 1.0 + }, + { + "word": " was.", + "start": 1810.06, + "end": 1810.38, + "probability": 1.0 + } + ] + }, + { + "id": 931, + "text": "I always forget where the brake pedal is.", + "start": 1810.94, + "end": 1812.56, + "words": [ + { + "word": " I", + "start": 1810.94, + "end": 1811.26, + "probability": 0.9990234375 + }, + { + "word": " always", + "start": 1811.26, + "end": 1811.54, + "probability": 1.0 + }, + { + "word": " forget", + "start": 1811.54, + "end": 1811.74, + "probability": 0.98486328125 + }, + { + "word": " where", + "start": 1811.74, + "end": 1811.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1811.86, + "end": 1811.96, + "probability": 1.0 + }, + { + "word": " brake", + "start": 1811.96, + "end": 1812.14, + "probability": 0.99853515625 + }, + { + "word": " pedal", + "start": 1812.14, + "end": 1812.32, + "probability": 0.9990234375 + }, + { + "word": " is.", + "start": 1812.32, + "end": 1812.56, + "probability": 1.0 + } + ] + }, + { + "id": 932, + "text": "That's my problem.", + "start": 1812.88, + "end": 1813.52, + "words": [ + { + "word": " That's", + "start": 1812.88, + "end": 1813.2, + "probability": 0.966796875 + }, + { + "word": " my", + "start": 1813.2, + "end": 1813.32, + "probability": 0.75927734375 + }, + { + "word": " problem.", + "start": 1813.32, + "end": 1813.52, + "probability": 0.982421875 + } + ] + }, + { + "id": 933, + "text": "Yeah, I know.", + "start": 1813.52, + "end": 1813.84, + "words": [ + { + "word": " Yeah,", + "start": 1813.52, + "end": 1813.58, + "probability": 0.8095703125 + }, + { + "word": " I", + "start": 1813.58, + "end": 1813.64, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1813.64, + "end": 1813.84, + "probability": 1.0 + } + ] + }, + { + "id": 934, + "text": "Wait, I'm supposed to stop?", + "start": 1815.94, + "end": 1817.12, + "words": [ + { + "word": " Wait,", + "start": 1815.94, + "end": 1816.26, + "probability": 0.9794921875 + }, + { + "word": " I'm", + "start": 1816.34, + "end": 1816.48, + "probability": 0.99853515625 + }, + { + "word": " supposed", + "start": 1816.48, + "end": 1816.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 1816.62, + "end": 1816.78, + "probability": 1.0 + }, + { + "word": " stop?", + "start": 1816.78, + "end": 1817.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 935, + "text": "If I wanted to stop, I wouldn't have gotten in the car.", + "start": 1817.88, + "end": 1819.8, + "words": [ + { + "word": " If", + "start": 1817.88, + "end": 1818.2, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1818.2, + "end": 1818.52, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 1818.52, + "end": 1818.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1818.7, + "end": 1818.8, + "probability": 1.0 + }, + { + "word": " stop,", + "start": 1818.8, + "end": 1819.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 1819.1, + "end": 1819.2, + "probability": 1.0 + }, + { + "word": " wouldn't", + "start": 1819.2, + "end": 1819.34, + "probability": 0.9833984375 + }, + { + "word": " have", + "start": 1819.34, + "end": 1819.36, + "probability": 0.99853515625 + }, + { + "word": " gotten", + "start": 1819.36, + "end": 1819.48, + "probability": 0.8701171875 + }, + { + "word": " in", + "start": 1819.48, + "end": 1819.54, + "probability": 0.609375 + }, + { + "word": " the", + "start": 1819.54, + "end": 1819.6, + "probability": 0.99072265625 + }, + { + "word": " car.", + "start": 1819.6, + "end": 1819.8, + "probability": 1.0 + } + ] + }, + { + "id": 936, + "text": "That's all I'm saying.", + "start": 1820.38, + "end": 1821.3, + "words": [ + { + "word": " That's", + "start": 1820.38, + "end": 1820.7, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1820.7, + "end": 1820.76, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 1820.76, + "end": 1821.08, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 1821.08, + "end": 1821.3, + "probability": 1.0 + } + ] + }, + { + "id": 937, + "text": "All right.", + "start": 1821.3, + "end": 1822.06, + "words": [ + { + "word": " All", + "start": 1821.3, + "end": 1821.64, + "probability": 0.849609375 + }, + { + "word": " right.", + "start": 1821.64, + "end": 1822.06, + "probability": 1.0 + } + ] + }, + { + "id": 938, + "text": "So let's go and take a break, Ross.", + "start": 1822.06, + "end": 1823.08, + "words": [ + { + "word": " So", + "start": 1822.06, + "end": 1822.16, + "probability": 0.98974609375 + }, + { + "word": " let's", + "start": 1822.16, + "end": 1822.3, + "probability": 0.9560546875 + }, + { + "word": " go", + "start": 1822.3, + "end": 1822.32, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1822.32, + "end": 1822.44, + "probability": 0.62646484375 + }, + { + "word": " take", + "start": 1822.44, + "end": 1822.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1822.52, + "end": 1822.62, + "probability": 1.0 + }, + { + "word": " break,", + "start": 1822.62, + "end": 1822.86, + "probability": 1.0 + }, + { + "word": " Ross.", + "start": 1822.92, + "end": 1823.08, + "probability": 0.9853515625 + } + ] + }, + { + "id": 939, + "text": "Let's do it.", + "start": 1823.2, + "end": 1823.62, + "words": [ + { + "word": " Let's", + "start": 1823.2, + "end": 1823.42, + "probability": 0.984375 + }, + { + "word": " do", + "start": 1823.42, + "end": 1823.52, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1823.52, + "end": 1823.62, + "probability": 0.046295166015625 + } + ] + }, + { + "id": 940, + "text": "Let's do our thing here.", + "start": 1823.66, + "end": 1824.5, + "words": [ + { + "word": " Let's", + "start": 1823.66, + "end": 1823.86, + "probability": 0.99609375 + }, + { + "word": " do", + "start": 1823.86, + "end": 1823.92, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 1823.92, + "end": 1824.04, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 1824.04, + "end": 1824.22, + "probability": 0.9990234375 + }, + { + "word": " here.", + "start": 1824.22, + "end": 1824.5, + "probability": 1.0 + } + ] + }, + { + "id": 941, + "text": "This is the Computer Guru.", + "start": 1825.02, + "end": 1826.78, + "words": [ + { + "word": " This", + "start": 1825.02, + "end": 1825.46, + "probability": 0.9873046875 + }, + { + "word": " is", + "start": 1825.46, + "end": 1825.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1825.82, + "end": 1825.96, + "probability": 0.92822265625 + }, + { + "word": " Computer", + "start": 1825.96, + "end": 1826.34, + "probability": 0.464111328125 + }, + { + "word": " Guru.", + "start": 1826.34, + "end": 1826.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 942, + "text": "So when we come back, we'll tell you how to turn your tank into a cow if you happen to", + "start": 1828.22, + "end": 1832.08, + "words": [ + { + "word": " So", + "start": 1828.22, + "end": 1828.66, + "probability": 0.9697265625 + }, + { + "word": " when", + "start": 1828.66, + "end": 1828.74, + "probability": 0.9091796875 + }, + { + "word": " we", + "start": 1828.74, + "end": 1828.8, + "probability": 0.998046875 + }, + { + "word": " come", + "start": 1828.8, + "end": 1828.9, + "probability": 1.0 + }, + { + "word": " back,", + "start": 1828.9, + "end": 1829.18, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 1829.2, + "end": 1829.4, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1829.4, + "end": 1829.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 1829.54, + "end": 1829.66, + "probability": 1.0 + }, + { + "word": " how", + "start": 1829.66, + "end": 1829.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1829.74, + "end": 1829.84, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1829.84, + "end": 1830.0, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1830.0, + "end": 1830.16, + "probability": 1.0 + }, + { + "word": " tank", + "start": 1830.16, + "end": 1830.36, + "probability": 0.9970703125 + }, + { + "word": " into", + "start": 1830.36, + "end": 1830.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 1830.62, + "end": 1830.8, + "probability": 1.0 + }, + { + "word": " cow", + "start": 1830.8, + "end": 1831.04, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1831.04, + "end": 1831.52, + "probability": 0.83447265625 + }, + { + "word": " you", + "start": 1831.52, + "end": 1831.74, + "probability": 1.0 + }, + { + "word": " happen", + "start": 1831.74, + "end": 1831.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1831.96, + "end": 1832.08, + "probability": 1.0 + } + ] + }, + { + "id": 943, + "text": "have one.", + "start": 1832.08, + "end": 1832.62, + "words": [ + { + "word": " have", + "start": 1832.08, + "end": 1832.3, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1832.3, + "end": 1832.62, + "probability": 1.0 + } + ] + }, + { + "id": 944, + "text": "We'll talk about the Street View camera being graffitied and Apple being a little, they're", + "start": 1834.18, + "end": 1838.64, + "words": [ + { + "word": " We'll", + "start": 1834.18, + "end": 1834.62, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 1834.62, + "end": 1834.74, + "probability": 1.0 + }, + { + "word": " about", + "start": 1834.74, + "end": 1834.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1834.9, + "end": 1835.14, + "probability": 0.9990234375 + }, + { + "word": " Street", + "start": 1835.14, + "end": 1835.4, + "probability": 0.7919921875 + }, + { + "word": " View", + "start": 1835.4, + "end": 1835.58, + "probability": 0.99560546875 + }, + { + "word": " camera", + "start": 1835.58, + "end": 1835.84, + "probability": 0.9169921875 + }, + { + "word": " being", + "start": 1835.84, + "end": 1836.04, + "probability": 0.9970703125 + }, + { + "word": " graffitied", + "start": 1836.04, + "end": 1836.58, + "probability": 0.9345703125 + }, + { + "word": " and", + "start": 1836.58, + "end": 1836.92, + "probability": 0.51904296875 + }, + { + "word": " Apple", + "start": 1836.92, + "end": 1837.38, + "probability": 1.0 + }, + { + "word": " being", + "start": 1837.38, + "end": 1837.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1837.68, + "end": 1837.84, + "probability": 0.986328125 + }, + { + "word": " little,", + "start": 1837.84, + "end": 1838.06, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1838.12, + "end": 1838.64, + "probability": 0.9169921875 + } + ] + }, + { + "id": 945, + "text": "being a little punk about the Galaxy Tab.", + "start": 1838.64, + "end": 1841.36, + "words": [ + { + "word": " being", + "start": 1838.64, + "end": 1838.82, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1838.82, + "end": 1838.94, + "probability": 1.0 + }, + { + "word": " little", + "start": 1838.94, + "end": 1839.18, + "probability": 1.0 + }, + { + "word": " punk", + "start": 1839.18, + "end": 1839.72, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 1839.72, + "end": 1840.36, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1840.36, + "end": 1840.64, + "probability": 0.99951171875 + }, + { + "word": " Galaxy", + "start": 1840.64, + "end": 1840.96, + "probability": 0.984375 + }, + { + "word": " Tab.", + "start": 1840.96, + "end": 1841.36, + "probability": 0.82373046875 + } + ] + }, + { + "id": 946, + "text": "It's just, it's dumb.", + "start": 1842.32, + "end": 1843.58, + "words": [ + { + "word": " It's", + "start": 1842.32, + "end": 1842.76, + "probability": 0.9970703125 + }, + { + "word": " just,", + "start": 1842.76, + "end": 1842.98, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 1842.98, + "end": 1843.28, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 1843.28, + "end": 1843.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 947, + "text": "Oh, and by the way, they're finally getting flash.", + "start": 1843.8, + "end": 1845.78, + "words": [ + { + "word": " Oh,", + "start": 1843.8, + "end": 1844.22, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1844.22, + "end": 1844.3, + "probability": 0.98046875 + }, + { + "word": " by", + "start": 1844.3, + "end": 1844.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1844.36, + "end": 1844.46, + "probability": 1.0 + }, + { + "word": " way,", + "start": 1844.46, + "end": 1844.58, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1844.64, + "end": 1845.02, + "probability": 1.0 + }, + { + "word": " finally", + "start": 1845.02, + "end": 1845.3, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 1845.3, + "end": 1845.48, + "probability": 1.0 + }, + { + "word": " flash.", + "start": 1845.48, + "end": 1845.78, + "probability": 0.6513671875 + } + ] + }, + { + "id": 948, + "text": "Yeah.", + "start": 1846.2, + "end": 1846.64, + "words": [ + { + "word": " Yeah.", + "start": 1846.2, + "end": 1846.64, + "probability": 0.75048828125 + } + ] + }, + { + "id": 949, + "text": "This is the Computer Guru Show.", + "start": 1846.66, + "end": 1848.56, + "words": [ + { + "word": " This", + "start": 1846.66, + "end": 1846.98, + "probability": 0.9580078125 + }, + { + "word": " is", + "start": 1846.98, + "end": 1847.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1847.88, + "end": 1847.94, + "probability": 0.81591796875 + }, + { + "word": " Computer", + "start": 1847.94, + "end": 1848.12, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 1848.12, + "end": 1848.34, + "probability": 0.9990234375 + }, + { + "word": " Show.", + "start": 1848.34, + "end": 1848.56, + "probability": 0.8408203125 + } + ] + }, + { + "id": 950, + "text": "We'll be right back.", + "start": 1848.62, + "end": 1849.3, + "words": [ + { + "word": " We'll", + "start": 1848.62, + "end": 1848.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 1848.9, + "end": 1848.92, + "probability": 1.0 + }, + { + "word": " right", + "start": 1848.92, + "end": 1849.06, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1849.06, + "end": 1849.3, + "probability": 1.0 + } + ] + }, + { + "id": 951, + "text": "This is the Computer Guru.", + "start": 1856.72, + "end": 1858.76, + "words": [ + { + "word": " This", + "start": 1856.72, + "end": 1857.28, + "probability": 0.67822265625 + }, + { + "word": " is", + "start": 1857.28, + "end": 1857.76, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1857.76, + "end": 1857.9, + "probability": 0.91796875 + }, + { + "word": " Computer", + "start": 1857.9, + "end": 1858.28, + "probability": 0.86279296875 + }, + { + "word": " Guru.", + "start": 1858.28, + "end": 1858.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 952, + "text": "Get any problem for any system solved by calling 751-1041.", + "start": 1859.16, + "end": 1863.42, + "words": [ + { + "word": " Get", + "start": 1859.16, + "end": 1859.38, + "probability": 0.939453125 + }, + { + "word": " any", + "start": 1859.38, + "end": 1859.54, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1859.54, + "end": 1859.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 1859.94, + "end": 1860.22, + "probability": 0.99072265625 + }, + { + "word": " any", + "start": 1860.22, + "end": 1860.4, + "probability": 0.99658203125 + }, + { + "word": " system", + "start": 1860.4, + "end": 1860.78, + "probability": 0.99462890625 + }, + { + "word": " solved", + "start": 1860.78, + "end": 1861.18, + "probability": 0.99560546875 + }, + { + "word": " by", + "start": 1861.18, + "end": 1861.46, + "probability": 0.99951171875 + }, + { + "word": " calling", + "start": 1861.46, + "end": 1861.84, + "probability": 1.0 + }, + { + "word": " 751", + "start": 1861.84, + "end": 1862.72, + "probability": 1.0 + }, + { + "word": "-1041.", + "start": 1862.72, + "end": 1863.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 953, + "text": "The Computer Guru is on.", + "start": 1863.72, + "end": 1865.58, + "words": [ + { + "word": " The", + "start": 1863.72, + "end": 1864.02, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 1864.02, + "end": 1864.38, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 1864.38, + "end": 1864.94, + "probability": 1.0 + }, + { + "word": " is", + "start": 1864.94, + "end": 1865.34, + "probability": 0.62939453125 + }, + { + "word": " on.", + "start": 1865.34, + "end": 1865.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 954, + "text": "1041 The Truth.", + "start": 1865.82, + "end": 1866.92, + "words": [ + { + "word": " 1041", + "start": 1865.82, + "end": 1866.38, + "probability": 0.623046875 + }, + { + "word": " The", + "start": 1866.38, + "end": 1866.66, + "probability": 0.61328125 + }, + { + "word": " Truth.", + "start": 1866.66, + "end": 1866.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 955, + "text": "This is on Snooze.", + "start": 1867.12, + "end": 1868.16, + "words": [ + { + "word": " This", + "start": 1867.12, + "end": 1867.32, + "probability": 0.10491943359375 + }, + { + "word": " is", + "start": 1867.32, + "end": 1867.44, + "probability": 0.95361328125 + }, + { + "word": " on", + "start": 1867.44, + "end": 1867.68, + "probability": 0.15869140625 + }, + { + "word": " Snooze.", + "start": 1867.68, + "end": 1868.16, + "probability": 0.837890625 + } + ] + }, + { + "id": 956, + "text": "So if you want to make your tank invisible.", + "start": 1868.16, + "end": 1871.56, + "words": [ + { + "word": " So", + "start": 1868.16, + "end": 1868.64, + "probability": 0.38916015625 + }, + { + "word": " if", + "start": 1868.64, + "end": 1870.48, + "probability": 0.1888427734375 + }, + { + "word": " you", + "start": 1870.48, + "end": 1870.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 1870.66, + "end": 1870.78, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1870.78, + "end": 1870.84, + "probability": 1.0 + }, + { + "word": " make", + "start": 1870.84, + "end": 1871.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 1871.0, + "end": 1871.12, + "probability": 1.0 + }, + { + "word": " tank", + "start": 1871.12, + "end": 1871.3, + "probability": 0.9990234375 + }, + { + "word": " invisible.", + "start": 1871.3, + "end": 1871.56, + "probability": 1.0 + } + ] + }, + { + "id": 957, + "text": "Yes, I'm listening.", + "start": 1871.94, + "end": 1873.1, + "words": [ + { + "word": " Yes,", + "start": 1871.94, + "end": 1872.36, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 1872.38, + "end": 1872.86, + "probability": 0.9990234375 + }, + { + "word": " listening.", + "start": 1872.86, + "end": 1873.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 958, + "text": "The way that this works is it only really shields you from thermal view.", + "start": 1873.92, + "end": 1878.3, + "words": [ + { + "word": " The", + "start": 1873.92, + "end": 1874.48, + "probability": 0.99755859375 + }, + { + "word": " way", + "start": 1874.48, + "end": 1874.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 1874.86, + "end": 1875.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 1875.0, + "end": 1875.16, + "probability": 1.0 + }, + { + "word": " works", + "start": 1875.16, + "end": 1875.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 1875.4, + "end": 1875.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 1875.58, + "end": 1875.68, + "probability": 0.9990234375 + }, + { + "word": " only", + "start": 1875.68, + "end": 1875.9, + "probability": 1.0 + }, + { + "word": " really", + "start": 1875.9, + "end": 1876.18, + "probability": 1.0 + }, + { + "word": " shields", + "start": 1876.18, + "end": 1876.64, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1876.64, + "end": 1876.8, + "probability": 1.0 + }, + { + "word": " from", + "start": 1876.8, + "end": 1877.16, + "probability": 1.0 + }, + { + "word": " thermal", + "start": 1877.16, + "end": 1878.08, + "probability": 0.998046875 + }, + { + "word": " view.", + "start": 1878.08, + "end": 1878.3, + "probability": 0.99609375 + } + ] + }, + { + "id": 959, + "text": "So infrared.", + "start": 1878.48, + "end": 1879.1, + "words": [ + { + "word": " So", + "start": 1878.48, + "end": 1878.74, + "probability": 0.99951171875 + }, + { + "word": " infrared.", + "start": 1878.74, + "end": 1879.1, + "probability": 1.0 + } + ] + }, + { + "id": 960, + "text": "Infrared.", + "start": 1879.3, + "end": 1879.78, + "words": [ + { + "word": " Infrared.", + "start": 1879.3, + "end": 1879.78, + "probability": 0.9775390625 + } + ] + }, + { + "id": 961, + "text": "Right.", + "start": 1879.92, + "end": 1880.16, + "words": [ + { + "word": " Right.", + "start": 1879.92, + "end": 1880.16, + "probability": 0.97216796875 + } + ] + }, + { + "id": 962, + "text": "Nitrogen goggles.", + "start": 1880.24, + "end": 1881.12, + "words": [ + { + "word": " Nitrogen", + "start": 1880.24, + "end": 1880.76, + "probability": 0.52197265625 + }, + { + "word": " goggles.", + "start": 1880.76, + "end": 1881.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 963, + "text": "Nitrogen goggles and such.", + "start": 1881.3, + "end": 1882.32, + "words": [ + { + "word": " Nitrogen", + "start": 1881.3, + "end": 1881.6, + "probability": 0.0222015380859375 + }, + { + "word": " goggles", + "start": 1881.6, + "end": 1881.86, + "probability": 0.986328125 + }, + { + "word": " and", + "start": 1881.86, + "end": 1882.12, + "probability": 0.97412109375 + }, + { + "word": " such.", + "start": 1882.12, + "end": 1882.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 964, + "text": "And it's pretty nifty.", + "start": 1882.66, + "end": 1884.4, + "words": [ + { + "word": " And", + "start": 1882.66, + "end": 1883.1, + "probability": 0.90380859375 + }, + { + "word": " it's", + "start": 1883.1, + "end": 1883.48, + "probability": 0.9990234375 + }, + { + "word": " pretty", + "start": 1883.48, + "end": 1883.92, + "probability": 1.0 + }, + { + "word": " nifty.", + "start": 1883.92, + "end": 1884.4, + "probability": 1.0 + } + ] + }, + { + "id": 965, + "text": "Really?", + "start": 1884.58, + "end": 1884.9, + "words": [ + { + "word": " Really?", + "start": 1884.58, + "end": 1884.9, + "probability": 0.9150390625 + } + ] + }, + { + "id": 966, + "text": "It uses a series of hexagon tiles.", + "start": 1884.92, + "end": 1888.14, + "words": [ + { + "word": " It", + "start": 1884.92, + "end": 1885.2, + "probability": 0.9892578125 + }, + { + "word": " uses", + "start": 1885.2, + "end": 1885.56, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1885.56, + "end": 1885.76, + "probability": 1.0 + }, + { + "word": " series", + "start": 1885.76, + "end": 1886.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1886.22, + "end": 1886.6, + "probability": 1.0 + }, + { + "word": " hexagon", + "start": 1886.6, + "end": 1887.7, + "probability": 0.99853515625 + }, + { + "word": " tiles.", + "start": 1887.7, + "end": 1888.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 967, + "text": "Okay.", + "start": 1888.42, + "end": 1888.68, + "words": [ + { + "word": " Okay.", + "start": 1888.42, + "end": 1888.68, + "probability": 0.9677734375 + } + ] + }, + { + "id": 968, + "text": "That cover the entire tank.", + "start": 1888.72, + "end": 1890.3, + "words": [ + { + "word": " That", + "start": 1888.72, + "end": 1888.86, + "probability": 0.984375 + }, + { + "word": " cover", + "start": 1888.86, + "end": 1889.08, + "probability": 0.98681640625 + }, + { + "word": " the", + "start": 1889.08, + "end": 1889.4, + "probability": 1.0 + }, + { + "word": " entire", + "start": 1889.4, + "end": 1889.72, + "probability": 1.0 + }, + { + "word": " tank.", + "start": 1889.72, + "end": 1890.3, + "probability": 0.99755859375 + } + ] + }, + { + "id": 969, + "text": "Right.", + "start": 1890.48, + "end": 1890.74, + "words": [ + { + "word": " Right.", + "start": 1890.48, + "end": 1890.74, + "probability": 0.8798828125 + } + ] + }, + { + "id": 970, + "text": "And they.", + "start": 1890.98, + "end": 1891.98, + "words": [ + { + "word": " And", + "start": 1890.98, + "end": 1891.42, + "probability": 0.9453125 + }, + { + "word": " they.", + "start": 1891.42, + "end": 1891.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 971, + "text": "Not spaceship tiles, so they don't fall off.", + "start": 1892.34, + "end": 1894.14, + "words": [ + { + "word": " Not", + "start": 1892.34, + "end": 1892.54, + "probability": 0.87890625 + }, + { + "word": " spaceship", + "start": 1892.54, + "end": 1892.94, + "probability": 0.98681640625 + }, + { + "word": " tiles,", + "start": 1892.94, + "end": 1893.26, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1893.4, + "end": 1893.48, + "probability": 1.0 + }, + { + "word": " they", + "start": 1893.48, + "end": 1893.62, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1893.62, + "end": 1893.7, + "probability": 0.84765625 + }, + { + "word": " fall", + "start": 1893.7, + "end": 1893.86, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1893.86, + "end": 1894.14, + "probability": 1.0 + } + ] + }, + { + "id": 972, + "text": "They might fall off.", + "start": 1894.9, + "end": 1896.22, + "words": [ + { + "word": " They", + "start": 1894.9, + "end": 1895.34, + "probability": 0.99951171875 + }, + { + "word": " might", + "start": 1895.34, + "end": 1895.72, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1895.72, + "end": 1895.94, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1895.94, + "end": 1896.22, + "probability": 1.0 + } + ] + }, + { + "id": 973, + "text": "I don't know.", + "start": 1896.24, + "end": 1896.62, + "words": [ + { + "word": " I", + "start": 1896.24, + "end": 1896.38, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1896.38, + "end": 1896.52, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1896.52, + "end": 1896.62, + "probability": 1.0 + } + ] + }, + { + "id": 974, + "text": "But that's just wrong.", + "start": 1897.9599999999998, + "end": 1899.24, + "words": [ + { + "word": " But", + "start": 1897.9599999999998, + "end": 1898.3999999999999, + "probability": 0.99755859375 + }, + { + "word": " that's", + "start": 1898.3999999999999, + "end": 1898.84, + "probability": 0.7841796875 + }, + { + "word": " just", + "start": 1898.84, + "end": 1899.0, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 1899.0, + "end": 1899.24, + "probability": 1.0 + } + ] + }, + { + "id": 975, + "text": "What?", + "start": 1899.46, + "end": 1899.78, + "words": [ + { + "word": " What?", + "start": 1899.46, + "end": 1899.78, + "probability": 0.994140625 + } + ] + }, + { + "id": 976, + "text": "They always fall off.", + "start": 1899.88, + "end": 1900.88, + "words": [ + { + "word": " They", + "start": 1899.88, + "end": 1900.12, + "probability": 0.98974609375 + }, + { + "word": " always", + "start": 1900.12, + "end": 1900.34, + "probability": 0.99951171875 + }, + { + "word": " fall", + "start": 1900.34, + "end": 1900.58, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1900.58, + "end": 1900.88, + "probability": 1.0 + } + ] + }, + { + "id": 977, + "text": "The problem is.", + "start": 1901.9, + "end": 1902.88, + "words": [ + { + "word": " The", + "start": 1901.9, + "end": 1902.34, + "probability": 0.970703125 + }, + { + "word": " problem", + "start": 1902.34, + "end": 1902.64, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1902.64, + "end": 1902.88, + "probability": 1.0 + } + ] + }, + { + "id": 978, + "text": "The problem is they're using 30-year-old technology in those old spaceships still?", + "start": 1903.26, + "end": 1907.16, + "words": [ + { + "word": " The", + "start": 1903.26, + "end": 1903.7, + "probability": 0.87890625 + }, + { + "word": " problem", + "start": 1903.7, + "end": 1904.02, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1904.02, + "end": 1904.16, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1904.16, + "end": 1904.26, + "probability": 0.9951171875 + }, + { + "word": " using", + "start": 1904.26, + "end": 1904.42, + "probability": 1.0 + }, + { + "word": " 30", + "start": 1904.42, + "end": 1905.36, + "probability": 0.990234375 + }, + { + "word": "-year", + "start": 1905.36, + "end": 1905.56, + "probability": 0.9375 + }, + { + "word": "-old", + "start": 1905.56, + "end": 1905.6, + "probability": 1.0 + }, + { + "word": " technology", + "start": 1905.6, + "end": 1906.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 1906.02, + "end": 1906.24, + "probability": 0.75830078125 + }, + { + "word": " those", + "start": 1906.24, + "end": 1906.36, + "probability": 1.0 + }, + { + "word": " old", + "start": 1906.36, + "end": 1906.56, + "probability": 1.0 + }, + { + "word": " spaceships", + "start": 1906.56, + "end": 1907.0, + "probability": 0.99609375 + }, + { + "word": " still?", + "start": 1907.0, + "end": 1907.16, + "probability": 0.99658203125 + } + ] + }, + { + "id": 979, + "text": "You know what?", + "start": 1907.26, + "end": 1907.9, + "words": [ + { + "word": " You", + "start": 1907.26, + "end": 1907.7, + "probability": 0.98046875 + }, + { + "word": " know", + "start": 1907.7, + "end": 1907.82, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1907.82, + "end": 1907.9, + "probability": 1.0 + } + ] + }, + { + "id": 980, + "text": "We're not going to go there.", + "start": 1907.94, + "end": 1908.68, + "words": [ + { + "word": " We're", + "start": 1907.94, + "end": 1908.1, + "probability": 1.0 + }, + { + "word": " not", + "start": 1908.1, + "end": 1908.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 1908.14, + "end": 1908.24, + "probability": 0.79931640625 + }, + { + "word": " to", + "start": 1908.24, + "end": 1908.3, + "probability": 1.0 + }, + { + "word": " go", + "start": 1908.3, + "end": 1908.5, + "probability": 0.94873046875 + }, + { + "word": " there.", + "start": 1908.5, + "end": 1908.68, + "probability": 1.0 + } + ] + }, + { + "id": 981, + "text": "You're going to get me all distracted.", + "start": 1909.06, + "end": 1910.42, + "words": [ + { + "word": " You're", + "start": 1909.06, + "end": 1909.5, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1909.5, + "end": 1909.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1909.74, + "end": 1909.78, + "probability": 1.0 + }, + { + "word": " get", + "start": 1909.78, + "end": 1909.9, + "probability": 1.0 + }, + { + "word": " me", + "start": 1909.9, + "end": 1909.98, + "probability": 1.0 + }, + { + "word": " all", + "start": 1909.98, + "end": 1910.06, + "probability": 1.0 + }, + { + "word": " distracted.", + "start": 1910.06, + "end": 1910.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 982, + "text": "I'm going to go on a rant.", + "start": 1910.54, + "end": 1911.06, + "words": [ + { + "word": " I'm", + "start": 1910.54, + "end": 1910.62, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 1910.62, + "end": 1910.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1910.64, + "end": 1910.76, + "probability": 0.9970703125 + }, + { + "word": " go", + "start": 1910.76, + "end": 1910.76, + "probability": 0.88671875 + }, + { + "word": " on", + "start": 1910.76, + "end": 1910.84, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 1910.84, + "end": 1910.84, + "probability": 0.9970703125 + }, + { + "word": " rant.", + "start": 1910.84, + "end": 1911.06, + "probability": 0.95556640625 + } + ] + }, + { + "id": 983, + "text": "Oh, sorry.", + "start": 1911.06, + "end": 1911.18, + "words": [ + { + "word": " Oh,", + "start": 1911.06, + "end": 1911.18, + "probability": 0.751953125 + }, + { + "word": " sorry.", + "start": 1911.18, + "end": 1911.18, + "probability": 0.97314453125 + } + ] + }, + { + "id": 984, + "text": "Okay.", + "start": 1911.3, + "end": 1911.44, + "words": [ + { + "word": " Okay.", + "start": 1911.3, + "end": 1911.44, + "probability": 0.7548828125 + } + ] + }, + { + "id": 985, + "text": "I'm sorry.", + "start": 1911.82, + "end": 1912.4, + "words": [ + { + "word": " I'm", + "start": 1911.82, + "end": 1912.2, + "probability": 0.95556640625 + }, + { + "word": " sorry.", + "start": 1912.2, + "end": 1912.4, + "probability": 1.0 + } + ] + }, + { + "id": 986, + "text": "I'm sorry.", + "start": 1912.58, + "end": 1912.92, + "words": [ + { + "word": " I'm", + "start": 1912.58, + "end": 1912.72, + "probability": 0.9951171875 + }, + { + "word": " sorry.", + "start": 1912.72, + "end": 1912.92, + "probability": 1.0 + } + ] + }, + { + "id": 987, + "text": "You're an invisible tank.", + "start": 1913.04, + "end": 1913.84, + "words": [ + { + "word": " You're", + "start": 1913.04, + "end": 1913.2, + "probability": 0.5654296875 + }, + { + "word": " an", + "start": 1913.2, + "end": 1913.22, + "probability": 0.62744140625 + }, + { + "word": " invisible", + "start": 1913.22, + "end": 1913.54, + "probability": 0.9951171875 + }, + { + "word": " tank.", + "start": 1913.54, + "end": 1913.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 988, + "text": "Let's go.", + "start": 1913.92, + "end": 1914.12, + "words": [ + { + "word": " Let's", + "start": 1913.92, + "end": 1914.06, + "probability": 0.99072265625 + }, + { + "word": " go.", + "start": 1914.06, + "end": 1914.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 989, + "text": "The invisible tank has these hexagon tiles on them that are able to change temperature rapidly.", + "start": 1914.22, + "end": 1920.76, + "words": [ + { + "word": " The", + "start": 1914.22, + "end": 1914.56, + "probability": 0.96875 + }, + { + "word": " invisible", + "start": 1914.56, + "end": 1914.88, + "probability": 0.99853515625 + }, + { + "word": " tank", + "start": 1914.88, + "end": 1915.18, + "probability": 1.0 + }, + { + "word": " has", + "start": 1915.18, + "end": 1916.06, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 1916.06, + "end": 1916.32, + "probability": 1.0 + }, + { + "word": " hexagon", + "start": 1916.32, + "end": 1916.68, + "probability": 1.0 + }, + { + "word": " tiles", + "start": 1916.68, + "end": 1916.92, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1916.92, + "end": 1917.26, + "probability": 1.0 + }, + { + "word": " them", + "start": 1917.26, + "end": 1917.42, + "probability": 0.98779296875 + }, + { + "word": " that", + "start": 1917.42, + "end": 1918.02, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 1918.02, + "end": 1918.44, + "probability": 1.0 + }, + { + "word": " able", + "start": 1918.44, + "end": 1919.4, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 1919.4, + "end": 1919.6, + "probability": 1.0 + }, + { + "word": " change", + "start": 1919.6, + "end": 1919.84, + "probability": 1.0 + }, + { + "word": " temperature", + "start": 1919.84, + "end": 1920.28, + "probability": 1.0 + }, + { + "word": " rapidly.", + "start": 1920.28, + "end": 1920.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 990, + "text": "Okay.", + "start": 1921.46, + "end": 1921.84, + "words": [ + { + "word": " Okay.", + "start": 1921.46, + "end": 1921.84, + "probability": 0.99609375 + } + ] + }, + { + "id": 991, + "text": "To match the surrounding area.", + "start": 1921.9, + "end": 1923.42, + "words": [ + { + "word": " To", + "start": 1921.9, + "end": 1922.06, + "probability": 0.9912109375 + }, + { + "word": " match", + "start": 1922.06, + "end": 1922.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1922.3, + "end": 1922.62, + "probability": 1.0 + }, + { + "word": " surrounding", + "start": 1922.62, + "end": 1922.96, + "probability": 0.99951171875 + }, + { + "word": " area.", + "start": 1922.96, + "end": 1923.42, + "probability": 1.0 + } + ] + }, + { + "id": 992, + "text": "Right.", + "start": 1923.6, + "end": 1923.8, + "words": [ + { + "word": " Right.", + "start": 1923.6, + "end": 1923.8, + "probability": 0.853515625 + } + ] + }, + { + "id": 993, + "text": "There's a camera on there that sweeps the area and says, oh, the stuff that's on the", + "start": 1923.82, + "end": 1927.1, + "words": [ + { + "word": " There's", + "start": 1923.82, + "end": 1923.94, + "probability": 0.8095703125 + }, + { + "word": " a", + "start": 1923.94, + "end": 1923.98, + "probability": 1.0 + }, + { + "word": " camera", + "start": 1923.98, + "end": 1924.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 1924.26, + "end": 1924.46, + "probability": 1.0 + }, + { + "word": " there", + "start": 1924.46, + "end": 1924.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1924.58, + "end": 1924.66, + "probability": 1.0 + }, + { + "word": " sweeps", + "start": 1924.66, + "end": 1924.92, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1924.92, + "end": 1925.06, + "probability": 1.0 + }, + { + "word": " area", + "start": 1925.06, + "end": 1925.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 1925.28, + "end": 1925.5, + "probability": 0.99951171875 + }, + { + "word": " says,", + "start": 1925.5, + "end": 1925.72, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 1925.84, + "end": 1926.22, + "probability": 0.9208984375 + }, + { + "word": " the", + "start": 1926.34, + "end": 1926.46, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1926.46, + "end": 1926.68, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1926.68, + "end": 1926.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 1926.9, + "end": 1926.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1926.98, + "end": 1927.1, + "probability": 1.0 + } + ] + }, + { + "id": 994, + "text": "other side of me.", + "start": 1927.1, + "end": 1927.76, + "words": [ + { + "word": " other", + "start": 1927.1, + "end": 1927.28, + "probability": 1.0 + }, + { + "word": " side", + "start": 1927.28, + "end": 1927.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1927.5, + "end": 1927.62, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1927.62, + "end": 1927.76, + "probability": 1.0 + } + ] + }, + { + "id": 995, + "text": "Is this temperature.", + "start": 1927.82, + "end": 1928.38, + "words": [ + { + "word": " Is", + "start": 1927.82, + "end": 1927.98, + "probability": 0.99365234375 + }, + { + "word": " this", + "start": 1927.98, + "end": 1928.1, + "probability": 1.0 + }, + { + "word": " temperature.", + "start": 1928.1, + "end": 1928.38, + "probability": 0.99853515625 + } + ] + }, + { + "id": 996, + "text": "Is this temperature.", + "start": 1928.42, + "end": 1928.88, + "words": [ + { + "word": " Is", + "start": 1928.42, + "end": 1928.52, + "probability": 0.974609375 + }, + { + "word": " this", + "start": 1928.52, + "end": 1928.62, + "probability": 1.0 + }, + { + "word": " temperature.", + "start": 1928.62, + "end": 1928.88, + "probability": 1.0 + } + ] + }, + { + "id": 997, + "text": "And then it matches it so that it makes it invisible.", + "start": 1928.9, + "end": 1931.12, + "words": [ + { + "word": " And", + "start": 1928.9, + "end": 1929.14, + "probability": 0.99609375 + }, + { + "word": " then", + "start": 1929.14, + "end": 1929.28, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1929.28, + "end": 1929.36, + "probability": 0.9931640625 + }, + { + "word": " matches", + "start": 1929.36, + "end": 1929.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 1929.74, + "end": 1929.92, + "probability": 1.0 + }, + { + "word": " so", + "start": 1929.92, + "end": 1930.42, + "probability": 0.93115234375 + }, + { + "word": " that", + "start": 1930.42, + "end": 1930.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 1930.52, + "end": 1930.62, + "probability": 1.0 + }, + { + "word": " makes", + "start": 1930.62, + "end": 1930.78, + "probability": 1.0 + }, + { + "word": " it", + "start": 1930.78, + "end": 1930.9, + "probability": 1.0 + }, + { + "word": " invisible.", + "start": 1930.9, + "end": 1931.12, + "probability": 1.0 + } + ] + }, + { + "id": 998, + "text": "That is actually really cool.", + "start": 1931.36, + "end": 1932.42, + "words": [ + { + "word": " That", + "start": 1931.36, + "end": 1931.6, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1931.6, + "end": 1931.82, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1931.82, + "end": 1932.04, + "probability": 1.0 + }, + { + "word": " really", + "start": 1932.04, + "end": 1932.22, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 1932.22, + "end": 1932.42, + "probability": 1.0 + } + ] + }, + { + "id": 999, + "text": "Or it can mask itself.", + "start": 1932.5, + "end": 1933.5, + "words": [ + { + "word": " Or", + "start": 1932.5, + "end": 1932.68, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1932.68, + "end": 1932.86, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 1932.86, + "end": 1932.98, + "probability": 0.99755859375 + }, + { + "word": " mask", + "start": 1932.98, + "end": 1933.24, + "probability": 1.0 + }, + { + "word": " itself.", + "start": 1933.24, + "end": 1933.5, + "probability": 1.0 + } + ] + }, + { + "id": 1000, + "text": "Or it can draw with those pixels.", + "start": 1933.72, + "end": 1936.54, + "words": [ + { + "word": " Or", + "start": 1933.72, + "end": 1934.1, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1934.1, + "end": 1934.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 1934.36, + "end": 1934.6, + "probability": 1.0 + }, + { + "word": " draw", + "start": 1934.6, + "end": 1934.98, + "probability": 1.0 + }, + { + "word": " with", + "start": 1934.98, + "end": 1935.64, + "probability": 0.99853515625 + }, + { + "word": " those", + "start": 1935.64, + "end": 1935.96, + "probability": 1.0 + }, + { + "word": " pixels.", + "start": 1935.96, + "end": 1936.54, + "probability": 1.0 + } + ] + }, + { + "id": 1001, + "text": "Right.", + "start": 1936.8, + "end": 1937.18, + "words": [ + { + "word": " Right.", + "start": 1936.8, + "end": 1937.18, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1002, + "text": "Right.", + "start": 1937.3, + "end": 1937.46, + "words": [ + { + "word": " Right.", + "start": 1937.3, + "end": 1937.46, + "probability": 0.8740234375 + } + ] + }, + { + "id": 1003, + "text": "With each tile can change a different temperature slightly.", + "start": 1937.52, + "end": 1940.12, + "words": [ + { + "word": " With", + "start": 1937.52, + "end": 1937.62, + "probability": 0.8369140625 + }, + { + "word": " each", + "start": 1937.62, + "end": 1937.8, + "probability": 0.99951171875 + }, + { + "word": " tile", + "start": 1937.8, + "end": 1938.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 1938.16, + "end": 1938.4, + "probability": 0.94580078125 + }, + { + "word": " change", + "start": 1938.4, + "end": 1938.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 1938.66, + "end": 1938.84, + "probability": 0.9951171875 + }, + { + "word": " different", + "start": 1938.84, + "end": 1939.04, + "probability": 1.0 + }, + { + "word": " temperature", + "start": 1939.04, + "end": 1939.54, + "probability": 1.0 + }, + { + "word": " slightly.", + "start": 1939.54, + "end": 1940.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 1004, + "text": "And you can make it look like.", + "start": 1940.28, + "end": 1941.28, + "words": [ + { + "word": " And", + "start": 1940.28, + "end": 1940.64, + "probability": 0.9140625 + }, + { + "word": " you", + "start": 1940.64, + "end": 1940.74, + "probability": 0.98583984375 + }, + { + "word": " can", + "start": 1940.74, + "end": 1940.82, + "probability": 1.0 + }, + { + "word": " make", + "start": 1940.82, + "end": 1940.94, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1940.94, + "end": 1941.0, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 1941.0, + "end": 1941.12, + "probability": 1.0 + }, + { + "word": " like.", + "start": 1941.12, + "end": 1941.28, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1005, + "text": "Like a car.", + "start": 1941.28, + "end": 1941.62, + "words": [ + { + "word": " Like", + "start": 1941.28, + "end": 1941.3, + "probability": 0.1676025390625 + }, + { + "word": " a", + "start": 1941.3, + "end": 1941.3, + "probability": 0.99267578125 + }, + { + "word": " car.", + "start": 1941.3, + "end": 1941.62, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1006, + "text": "Yeah.", + "start": 1941.62, + "end": 1941.76, + "words": [ + { + "word": " Yeah.", + "start": 1941.62, + "end": 1941.76, + "probability": 0.78173828125 + } + ] + }, + { + "id": 1007, + "text": "I just saw that video.", + "start": 1941.88, + "end": 1942.76, + "words": [ + { + "word": " I", + "start": 1941.88, + "end": 1941.88, + "probability": 0.8232421875 + }, + { + "word": " just", + "start": 1941.88, + "end": 1942.04, + "probability": 0.96728515625 + }, + { + "word": " saw", + "start": 1942.04, + "end": 1942.26, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1942.26, + "end": 1942.36, + "probability": 0.9521484375 + }, + { + "word": " video.", + "start": 1942.36, + "end": 1942.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1008, + "text": "I mean, it's a really cool video.", + "start": 1943.0, + "end": 1943.98, + "words": [ + { + "word": " I", + "start": 1943.0, + "end": 1943.12, + "probability": 0.8515625 + }, + { + "word": " mean,", + "start": 1943.12, + "end": 1943.2, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1943.22, + "end": 1943.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1943.32, + "end": 1943.38, + "probability": 0.99853515625 + }, + { + "word": " really", + "start": 1943.38, + "end": 1943.56, + "probability": 0.49169921875 + }, + { + "word": " cool", + "start": 1943.56, + "end": 1943.7, + "probability": 1.0 + }, + { + "word": " video.", + "start": 1943.7, + "end": 1943.98, + "probability": 1.0 + } + ] + }, + { + "id": 1009, + "text": "So, I mean, you see it.", + "start": 1944.04, + "end": 1945.2, + "words": [ + { + "word": " So,", + "start": 1944.04, + "end": 1944.22, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 1944.26, + "end": 1944.34, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 1944.34, + "end": 1944.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 1944.46, + "end": 1944.64, + "probability": 1.0 + }, + { + "word": " see", + "start": 1944.64, + "end": 1944.96, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1944.96, + "end": 1945.2, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1010, + "text": "And you see the tank sitting there.", + "start": 1945.2, + "end": 1947.3, + "words": [ + { + "word": " And", + "start": 1945.2, + "end": 1945.36, + "probability": 0.33447265625 + }, + { + "word": " you", + "start": 1945.36, + "end": 1945.42, + "probability": 0.99072265625 + }, + { + "word": " see", + "start": 1945.42, + "end": 1945.62, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 1945.62, + "end": 1946.62, + "probability": 0.9990234375 + }, + { + "word": " tank", + "start": 1946.62, + "end": 1946.82, + "probability": 0.99951171875 + }, + { + "word": " sitting", + "start": 1946.82, + "end": 1947.06, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1947.06, + "end": 1947.3, + "probability": 1.0 + } + ] + }, + { + "id": 1011, + "text": "And then it turns on these tiles.", + "start": 1947.4, + "end": 1949.2, + "words": [ + { + "word": " And", + "start": 1947.4, + "end": 1947.6, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 1947.6, + "end": 1947.68, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1947.68, + "end": 1947.78, + "probability": 0.9892578125 + }, + { + "word": " turns", + "start": 1947.78, + "end": 1948.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 1948.04, + "end": 1948.32, + "probability": 1.0 + }, + { + "word": " these", + "start": 1948.32, + "end": 1948.64, + "probability": 0.998046875 + }, + { + "word": " tiles.", + "start": 1948.64, + "end": 1949.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1012, + "text": "Right.", + "start": 1949.42, + "end": 1949.7, + "words": [ + { + "word": " Right.", + "start": 1949.42, + "end": 1949.7, + "probability": 0.8369140625 + } + ] + }, + { + "id": 1013, + "text": "The tank.", + "start": 1949.76, + "end": 1950.24, + "words": [ + { + "word": " The", + "start": 1949.76, + "end": 1949.88, + "probability": 0.96728515625 + }, + { + "word": " tank.", + "start": 1949.88, + "end": 1950.24, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1014, + "text": "The silhouette disappears.", + "start": 1950.5, + "end": 1951.78, + "words": [ + { + "word": " The", + "start": 1950.5, + "end": 1950.86, + "probability": 0.9873046875 + }, + { + "word": " silhouette", + "start": 1950.86, + "end": 1951.4, + "probability": 0.994140625 + }, + { + "word": " disappears.", + "start": 1951.4, + "end": 1951.78, + "probability": 1.0 + } + ] + }, + { + "id": 1015, + "text": "And then the car silhouette shows up.", + "start": 1952.1, + "end": 1953.82, + "words": [ + { + "word": " And", + "start": 1952.1, + "end": 1952.46, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1952.46, + "end": 1952.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1952.56, + "end": 1952.66, + "probability": 0.99951171875 + }, + { + "word": " car", + "start": 1952.66, + "end": 1952.88, + "probability": 0.99951171875 + }, + { + "word": " silhouette", + "start": 1952.88, + "end": 1953.18, + "probability": 0.98681640625 + }, + { + "word": " shows", + "start": 1953.18, + "end": 1953.46, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1953.46, + "end": 1953.82, + "probability": 1.0 + } + ] + }, + { + "id": 1016, + "text": "Yep.", + "start": 1953.98, + "end": 1954.3, + "words": [ + { + "word": " Yep.", + "start": 1953.98, + "end": 1954.3, + "probability": 0.8466796875 + } + ] + }, + { + "id": 1017, + "text": "And so now it just looks like a car.", + "start": 1954.32, + "end": 1955.48, + "words": [ + { + "word": " And", + "start": 1954.32, + "end": 1954.4, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 1954.4, + "end": 1954.52, + "probability": 1.0 + }, + { + "word": " now", + "start": 1954.52, + "end": 1954.74, + "probability": 0.85595703125 + }, + { + "word": " it", + "start": 1954.74, + "end": 1954.84, + "probability": 0.98095703125 + }, + { + "word": " just", + "start": 1954.84, + "end": 1954.94, + "probability": 1.0 + }, + { + "word": " looks", + "start": 1954.94, + "end": 1955.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 1955.06, + "end": 1955.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 1955.16, + "end": 1955.26, + "probability": 1.0 + }, + { + "word": " car.", + "start": 1955.26, + "end": 1955.48, + "probability": 1.0 + } + ] + }, + { + "id": 1018, + "text": "I mean, that's really cool.", + "start": 1955.66, + "end": 1956.9, + "words": [ + { + "word": " I", + "start": 1955.66, + "end": 1955.82, + "probability": 0.9970703125 + }, + { + "word": " mean,", + "start": 1955.82, + "end": 1955.9, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1955.9, + "end": 1956.14, + "probability": 0.97998046875 + }, + { + "word": " really", + "start": 1956.14, + "end": 1956.58, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 1956.58, + "end": 1956.9, + "probability": 1.0 + } + ] + }, + { + "id": 1019, + "text": "Now, I'm thinking if I'm a tank operator.", + "start": 1957.18, + "end": 1958.94, + "words": [ + { + "word": " Now,", + "start": 1957.18, + "end": 1957.4, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 1957.42, + "end": 1957.62, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 1957.62, + "end": 1957.76, + "probability": 1.0 + }, + { + "word": " if", + "start": 1957.76, + "end": 1957.94, + "probability": 0.6181640625 + }, + { + "word": " I'm", + "start": 1957.94, + "end": 1958.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1958.2, + "end": 1958.28, + "probability": 1.0 + }, + { + "word": " tank", + "start": 1958.28, + "end": 1958.58, + "probability": 1.0 + }, + { + "word": " operator.", + "start": 1958.58, + "end": 1958.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1020, + "text": "Right.", + "start": 1959.3400000000001, + "end": 1959.7, + "words": [ + { + "word": " Right.", + "start": 1959.3400000000001, + "end": 1959.7, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1021, + "text": "If I see a car, I'm blowing it up anyways.", + "start": 1959.74, + "end": 1960.96, + "words": [ + { + "word": " If", + "start": 1959.74, + "end": 1959.9, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 1959.9, + "end": 1959.92, + "probability": 1.0 + }, + { + "word": " see", + "start": 1959.92, + "end": 1960.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1960.08, + "end": 1960.18, + "probability": 1.0 + }, + { + "word": " car,", + "start": 1960.18, + "end": 1960.32, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1960.34, + "end": 1960.44, + "probability": 1.0 + }, + { + "word": " blowing", + "start": 1960.44, + "end": 1960.54, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1960.54, + "end": 1960.68, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1960.68, + "end": 1960.78, + "probability": 1.0 + }, + { + "word": " anyways.", + "start": 1960.78, + "end": 1960.96, + "probability": 0.5888671875 + } + ] + }, + { + "id": 1022, + "text": "Right.", + "start": 1961.04, + "end": 1961.22, + "words": [ + { + "word": " Right.", + "start": 1961.04, + "end": 1961.22, + "probability": 0.765625 + } + ] + }, + { + "id": 1023, + "text": "But.", + "start": 1961.22, + "end": 1961.44, + "words": [ + { + "word": " But.", + "start": 1961.22, + "end": 1961.44, + "probability": 0.84130859375 + } + ] + }, + { + "id": 1024, + "text": "What's the car doing out here where that tank's supposed to be?", + "start": 1962.0, + "end": 1964.26, + "words": [ + { + "word": " What's", + "start": 1962.0, + "end": 1962.36, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1962.36, + "end": 1962.48, + "probability": 1.0 + }, + { + "word": " car", + "start": 1962.48, + "end": 1962.74, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1962.74, + "end": 1962.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 1962.96, + "end": 1963.12, + "probability": 0.88818359375 + }, + { + "word": " here", + "start": 1963.12, + "end": 1963.24, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 1963.24, + "end": 1963.32, + "probability": 0.73486328125 + }, + { + "word": " that", + "start": 1963.32, + "end": 1963.46, + "probability": 0.91259765625 + }, + { + "word": " tank's", + "start": 1963.46, + "end": 1963.74, + "probability": 0.98583984375 + }, + { + "word": " supposed", + "start": 1963.74, + "end": 1963.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1963.92, + "end": 1964.1, + "probability": 1.0 + }, + { + "word": " be?", + "start": 1964.1, + "end": 1964.26, + "probability": 1.0 + } + ] + }, + { + "id": 1025, + "text": "Yeah.", + "start": 1964.4, + "end": 1964.6, + "words": [ + { + "word": " Yeah.", + "start": 1964.4, + "end": 1964.6, + "probability": 0.90234375 + } + ] + }, + { + "id": 1026, + "text": "Right.", + "start": 1964.62, + "end": 1964.9, + "words": [ + { + "word": " Right.", + "start": 1964.62, + "end": 1964.9, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1027, + "text": "Wait a minute.", + "start": 1965.02, + "end": 1965.66, + "words": [ + { + "word": " Wait", + "start": 1965.02, + "end": 1965.18, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 1965.18, + "end": 1965.36, + "probability": 1.0 + }, + { + "word": " minute.", + "start": 1965.36, + "end": 1965.66, + "probability": 1.0 + } + ] + }, + { + "id": 1028, + "text": "Something's not right here.", + "start": 1965.78, + "end": 1966.58, + "words": [ + { + "word": " Something's", + "start": 1965.78, + "end": 1966.12, + "probability": 0.99560546875 + }, + { + "word": " not", + "start": 1966.12, + "end": 1966.2, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 1966.2, + "end": 1966.42, + "probability": 1.0 + }, + { + "word": " here.", + "start": 1966.42, + "end": 1966.58, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1029, + "text": "I don't know why you'd want to make it disguised as anything other than not there.", + "start": 1966.58, + "end": 1970.06, + "words": [ + { + "word": " I", + "start": 1966.58, + "end": 1966.9, + "probability": 0.8818359375 + }, + { + "word": " don't", + "start": 1966.9, + "end": 1966.92, + "probability": 0.998046875 + }, + { + "word": " know", + "start": 1966.92, + "end": 1967.0, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 1967.0, + "end": 1967.12, + "probability": 0.99853515625 + }, + { + "word": " you'd", + "start": 1967.12, + "end": 1967.32, + "probability": 1.0 + }, + { + "word": " want", + "start": 1967.32, + "end": 1967.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1967.46, + "end": 1967.56, + "probability": 1.0 + }, + { + "word": " make", + "start": 1967.56, + "end": 1967.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1967.7, + "end": 1967.74, + "probability": 0.95703125 + }, + { + "word": " disguised", + "start": 1967.74, + "end": 1968.22, + "probability": 0.93701171875 + }, + { + "word": " as", + "start": 1968.22, + "end": 1968.42, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1968.42, + "end": 1968.86, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 1968.86, + "end": 1969.24, + "probability": 0.9990234375 + }, + { + "word": " than", + "start": 1969.24, + "end": 1969.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 1969.5, + "end": 1969.72, + "probability": 0.998046875 + }, + { + "word": " there.", + "start": 1969.72, + "end": 1970.06, + "probability": 1.0 + } + ] + }, + { + "id": 1030, + "text": "There.", + "start": 1970.64, + "end": 1971.0, + "words": [ + { + "word": " There.", + "start": 1970.64, + "end": 1971.0, + "probability": 0.012481689453125 + } + ] + }, + { + "id": 1031, + "text": "Right.", + "start": 1971.0, + "end": 1971.3, + "words": [ + { + "word": " Right.", + "start": 1971.0, + "end": 1971.3, + "probability": 0.96142578125 + } + ] + }, + { + "id": 1032, + "text": "So.", + "start": 1971.7800000000002, + "end": 1972.14, + "words": [ + { + "word": " So.", + "start": 1971.7800000000002, + "end": 1972.14, + "probability": 0.603515625 + } + ] + }, + { + "id": 1033, + "text": "You can make it look like a camel or a cow or.", + "start": 1972.5200000000002, + "end": 1976.56, + "words": [ + { + "word": " You", + "start": 1972.5200000000002, + "end": 1972.88, + "probability": 0.970703125 + }, + { + "word": " can", + "start": 1972.88, + "end": 1972.96, + "probability": 0.9794921875 + }, + { + "word": " make", + "start": 1972.96, + "end": 1973.1, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 1973.1, + "end": 1973.12, + "probability": 0.1766357421875 + }, + { + "word": " look", + "start": 1973.12, + "end": 1973.24, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1973.24, + "end": 1973.58, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1973.58, + "end": 1973.68, + "probability": 0.96337890625 + }, + { + "word": " camel", + "start": 1973.68, + "end": 1974.24, + "probability": 0.96630859375 + }, + { + "word": " or", + "start": 1974.24, + "end": 1974.78, + "probability": 0.76318359375 + }, + { + "word": " a", + "start": 1974.78, + "end": 1975.18, + "probability": 0.90966796875 + }, + { + "word": " cow", + "start": 1975.18, + "end": 1976.0, + "probability": 1.0 + }, + { + "word": " or.", + "start": 1976.0, + "end": 1976.56, + "probability": 0.90234375 + } + ] + }, + { + "id": 1034, + "text": "Yeah, but why?", + "start": 1976.8, + "end": 1977.5, + "words": [ + { + "word": " Yeah,", + "start": 1976.8, + "end": 1977.16, + "probability": 0.9892578125 + }, + { + "word": " but", + "start": 1977.18, + "end": 1977.26, + "probability": 1.0 + }, + { + "word": " why?", + "start": 1977.26, + "end": 1977.5, + "probability": 1.0 + } + ] + }, + { + "id": 1035, + "text": "Because, you know.", + "start": 1977.66, + "end": 1978.66, + "words": [ + { + "word": " Because,", + "start": 1977.66, + "end": 1978.02, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 1978.02, + "end": 1978.46, + "probability": 0.9990234375 + }, + { + "word": " know.", + "start": 1978.46, + "end": 1978.66, + "probability": 1.0 + } + ] + }, + { + "id": 1036, + "text": "Because you want.", + "start": 1978.86, + "end": 1979.34, + "words": [ + { + "word": " Because", + "start": 1978.86, + "end": 1979.12, + "probability": 0.54736328125 + }, + { + "word": " you", + "start": 1979.12, + "end": 1979.2, + "probability": 0.77783203125 + }, + { + "word": " want.", + "start": 1979.2, + "end": 1979.34, + "probability": 0.92333984375 + } + ] + }, + { + "id": 1037, + "text": "Well, yeah, that's true.", + "start": 1979.44, + "end": 1980.2, + "words": [ + { + "word": " Well,", + "start": 1979.44, + "end": 1979.58, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 1979.72, + "end": 1979.94, + "probability": 0.9970703125 + }, + { + "word": " that's", + "start": 1979.96, + "end": 1980.08, + "probability": 0.8984375 + }, + { + "word": " true.", + "start": 1980.08, + "end": 1980.2, + "probability": 1.0 + } + ] + }, + { + "id": 1038, + "text": "I'm thinking that those guys in the tank are going to shoot anything that's out there.", + "start": 1980.3, + "end": 1983.36, + "words": [ + { + "word": " I'm", + "start": 1980.3, + "end": 1980.52, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 1980.52, + "end": 1980.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1980.78, + "end": 1981.06, + "probability": 1.0 + }, + { + "word": " those", + "start": 1981.06, + "end": 1981.26, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1981.26, + "end": 1981.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 1981.54, + "end": 1981.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1981.72, + "end": 1981.84, + "probability": 1.0 + }, + { + "word": " tank", + "start": 1981.84, + "end": 1982.06, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1982.06, + "end": 1982.22, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 1982.22, + "end": 1982.3, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 1982.3, + "end": 1982.4, + "probability": 1.0 + }, + { + "word": " shoot", + "start": 1982.4, + "end": 1982.54, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1982.54, + "end": 1982.74, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1982.74, + "end": 1983.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 1983.1, + "end": 1983.2, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1983.2, + "end": 1983.36, + "probability": 1.0 + } + ] + }, + { + "id": 1039, + "text": "Right.", + "start": 1983.66, + "end": 1984.02, + "words": [ + { + "word": " Right.", + "start": 1983.66, + "end": 1984.02, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1040, + "text": "It's a cow out there.", + "start": 1984.5200000000002, + "end": 1985.68, + "words": [ + { + "word": " It's", + "start": 1984.5200000000002, + "end": 1984.88, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 1984.88, + "end": 1984.9, + "probability": 1.0 + }, + { + "word": " cow", + "start": 1984.9, + "end": 1985.12, + "probability": 1.0 + }, + { + "word": " out", + "start": 1985.12, + "end": 1985.38, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1985.38, + "end": 1985.68, + "probability": 1.0 + } + ] + }, + { + "id": 1041, + "text": "They're like hamburgers.", + "start": 1985.68, + "end": 1986.38, + "words": [ + { + "word": " They're", + "start": 1985.68, + "end": 1985.84, + "probability": 0.9150390625 + }, + { + "word": " like", + "start": 1985.84, + "end": 1985.92, + "probability": 1.0 + }, + { + "word": " hamburgers.", + "start": 1985.92, + "end": 1986.38, + "probability": 0.81884765625 + } + ] + }, + { + "id": 1042, + "text": "Well, when I drive my tank.", + "start": 1986.4, + "end": 1987.4, + "words": [ + { + "word": " Well,", + "start": 1986.4, + "end": 1986.48, + "probability": 0.99658203125 + }, + { + "word": " when", + "start": 1986.52, + "end": 1986.6, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1986.6, + "end": 1986.7, + "probability": 1.0 + }, + { + "word": " drive", + "start": 1986.7, + "end": 1986.9, + "probability": 1.0 + }, + { + "word": " my", + "start": 1986.9, + "end": 1987.12, + "probability": 1.0 + }, + { + "word": " tank.", + "start": 1987.12, + "end": 1987.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1043, + "text": "I do have a tank.", + "start": 1988.0400000000002, + "end": 1989.22, + "words": [ + { + "word": " I", + "start": 1988.0400000000002, + "end": 1988.4, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1988.4, + "end": 1988.76, + "probability": 0.962890625 + }, + { + "word": " have", + "start": 1988.76, + "end": 1988.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 1988.92, + "end": 1989.0, + "probability": 1.0 + }, + { + "word": " tank.", + "start": 1989.0, + "end": 1989.22, + "probability": 1.0 + } + ] + }, + { + "id": 1044, + "text": "Okay.", + "start": 1989.48, + "end": 1989.84, + "words": [ + { + "word": " Okay.", + "start": 1989.48, + "end": 1989.84, + "probability": 0.81005859375 + } + ] + }, + { + "id": 1045, + "text": "Roll the tanks.", + "start": 1990.0, + "end": 1990.7, + "words": [ + { + "word": " Roll", + "start": 1990.0, + "end": 1990.26, + "probability": 0.53759765625 + }, + { + "word": " the", + "start": 1990.26, + "end": 1990.38, + "probability": 0.429443359375 + }, + { + "word": " tanks.", + "start": 1990.38, + "end": 1990.7, + "probability": 0.97119140625 + } + ] + }, + { + "id": 1046, + "text": "It's a really cool game, I'm going to tell you.", + "start": 1990.94, + "end": 1992.58, + "words": [ + { + "word": " It's", + "start": 1990.94, + "end": 1991.18, + "probability": 0.64990234375 + }, + { + "word": " a", + "start": 1991.18, + "end": 1991.18, + "probability": 0.99658203125 + }, + { + "word": " really", + "start": 1991.18, + "end": 1991.54, + "probability": 0.99951171875 + }, + { + "word": " cool", + "start": 1991.54, + "end": 1991.86, + "probability": 0.9990234375 + }, + { + "word": " game,", + "start": 1991.86, + "end": 1992.1, + "probability": 0.998046875 + }, + { + "word": " I'm", + "start": 1992.16, + "end": 1992.24, + "probability": 0.59765625 + }, + { + "word": " going", + "start": 1992.24, + "end": 1992.3, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1992.3, + "end": 1992.3, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1992.3, + "end": 1992.48, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1992.48, + "end": 1992.58, + "probability": 1.0 + } + ] + }, + { + "id": 1047, + "text": "Anyways, when I drive my tank, I just shoot whatever moves.", + "start": 1992.86, + "end": 1994.8, + "words": [ + { + "word": " Anyways,", + "start": 1992.86, + "end": 1993.22, + "probability": 0.99609375 + }, + { + "word": " when", + "start": 1993.28, + "end": 1993.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 1993.38, + "end": 1993.46, + "probability": 1.0 + }, + { + "word": " drive", + "start": 1993.46, + "end": 1993.58, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 1993.58, + "end": 1993.7, + "probability": 1.0 + }, + { + "word": " tank,", + "start": 1993.7, + "end": 1993.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 1994.0, + "end": 1994.12, + "probability": 1.0 + }, + { + "word": " just", + "start": 1994.12, + "end": 1994.2, + "probability": 0.99951171875 + }, + { + "word": " shoot", + "start": 1994.2, + "end": 1994.38, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 1994.38, + "end": 1994.54, + "probability": 1.0 + }, + { + "word": " moves.", + "start": 1994.54, + "end": 1994.8, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1048, + "text": "Right.", + "start": 1995.12, + "end": 1995.38, + "words": [ + { + "word": " Right.", + "start": 1995.12, + "end": 1995.38, + "probability": 0.84033203125 + } + ] + }, + { + "id": 1049, + "text": "See?", + "start": 1995.4, + "end": 1995.54, + "words": [ + { + "word": " See?", + "start": 1995.4, + "end": 1995.54, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1050, + "text": "See?", + "start": 1995.66, + "end": 1996.0, + "words": [ + { + "word": " See?", + "start": 1995.66, + "end": 1996.0, + "probability": 0.88232421875 + } + ] + }, + { + "id": 1051, + "text": "That's why I'm saying.", + "start": 1996.08, + "end": 1996.9, + "words": [ + { + "word": " That's", + "start": 1996.08, + "end": 1996.28, + "probability": 0.9990234375 + }, + { + "word": " why", + "start": 1996.28, + "end": 1996.58, + "probability": 0.491455078125 + }, + { + "word": " I'm", + "start": 1996.58, + "end": 1996.78, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 1996.78, + "end": 1996.9, + "probability": 1.0 + } + ] + }, + { + "id": 1052, + "text": "You just want to be invisible completely.", + "start": 1996.96, + "end": 1998.22, + "words": [ + { + "word": " You", + "start": 1996.96, + "end": 1997.06, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 1997.06, + "end": 1997.18, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 1997.18, + "end": 1997.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1997.32, + "end": 1997.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 1997.42, + "end": 1997.52, + "probability": 1.0 + }, + { + "word": " invisible", + "start": 1997.52, + "end": 1997.84, + "probability": 0.9853515625 + }, + { + "word": " completely.", + "start": 1997.84, + "end": 1998.22, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1053, + "text": "Right.", + "start": 1998.56, + "end": 1998.86, + "words": [ + { + "word": " Right.", + "start": 1998.56, + "end": 1998.86, + "probability": 0.85107421875 + } + ] + }, + { + "id": 1054, + "text": "At least it can do that.", + "start": 1998.86, + "end": 1999.74, + "words": [ + { + "word": " At", + "start": 1998.86, + "end": 1999.08, + "probability": 0.99560546875 + }, + { + "word": " least", + "start": 1999.08, + "end": 1999.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 1999.22, + "end": 1999.3, + "probability": 0.7421875 + }, + { + "word": " can", + "start": 1999.3, + "end": 1999.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 1999.42, + "end": 1999.52, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1999.52, + "end": 1999.74, + "probability": 1.0 + } + ] + }, + { + "id": 1055, + "text": "Technology is interesting.", + "start": 2000.54, + "end": 2001.36, + "words": [ + { + "word": " Technology", + "start": 2000.54, + "end": 2000.86, + "probability": 0.84326171875 + }, + { + "word": " is", + "start": 2000.86, + "end": 2001.08, + "probability": 0.9931640625 + }, + { + "word": " interesting.", + "start": 2001.08, + "end": 2001.36, + "probability": 1.0 + } + ] + }, + { + "id": 1056, + "text": "It can do cool advertisement.", + "start": 2001.48, + "end": 2002.36, + "words": [ + { + "word": " It", + "start": 2001.48, + "end": 2001.56, + "probability": 0.2166748046875 + }, + { + "word": " can", + "start": 2001.56, + "end": 2001.66, + "probability": 0.89892578125 + }, + { + "word": " do", + "start": 2001.66, + "end": 2001.72, + "probability": 1.0 + }, + { + "word": " cool", + "start": 2001.72, + "end": 2001.88, + "probability": 0.6611328125 + }, + { + "word": " advertisement.", + "start": 2001.88, + "end": 2002.36, + "probability": 0.65283203125 + } + ] + }, + { + "id": 1057, + "text": "They were advertising their own name on the side.", + "start": 2002.36, + "end": 2004.5, + "words": [ + { + "word": " They", + "start": 2002.36, + "end": 2002.66, + "probability": 0.994140625 + }, + { + "word": " were", + "start": 2002.66, + "end": 2002.7, + "probability": 0.998046875 + }, + { + "word": " advertising", + "start": 2002.7, + "end": 2002.92, + "probability": 0.90869140625 + }, + { + "word": " their", + "start": 2002.92, + "end": 2003.8, + "probability": 0.99951171875 + }, + { + "word": " own", + "start": 2003.8, + "end": 2003.92, + "probability": 1.0 + }, + { + "word": " name", + "start": 2003.92, + "end": 2004.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 2004.16, + "end": 2004.3, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 2004.3, + "end": 2004.38, + "probability": 0.92236328125 + }, + { + "word": " side.", + "start": 2004.38, + "end": 2004.5, + "probability": 0.416015625 + } + ] + }, + { + "id": 1058, + "text": "That was cool.", + "start": 2004.54, + "end": 2005.1, + "words": [ + { + "word": " That", + "start": 2004.54, + "end": 2004.82, + "probability": 0.263671875 + }, + { + "word": " was", + "start": 2004.82, + "end": 2005.0, + "probability": 0.98388671875 + }, + { + "word": " cool.", + "start": 2005.0, + "end": 2005.1, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1059, + "text": "You can put on their sponsor by Goodyear.", + "start": 2005.1, + "end": 2006.54, + "words": [ + { + "word": " You", + "start": 2005.1, + "end": 2005.1, + "probability": 0.356689453125 + }, + { + "word": " can", + "start": 2005.1, + "end": 2005.1, + "probability": 0.609375 + }, + { + "word": " put", + "start": 2005.1, + "end": 2005.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 2005.3, + "end": 2005.42, + "probability": 0.9287109375 + }, + { + "word": " their", + "start": 2005.42, + "end": 2005.56, + "probability": 0.6640625 + }, + { + "word": " sponsor", + "start": 2005.56, + "end": 2005.82, + "probability": 0.99267578125 + }, + { + "word": " by", + "start": 2005.82, + "end": 2006.1, + "probability": 0.998046875 + }, + { + "word": " Goodyear.", + "start": 2006.1, + "end": 2006.54, + "probability": 0.994140625 + } + ] + }, + { + "id": 1060, + "text": "Something like that.", + "start": 2007.4, + "end": 2008.08, + "words": [ + { + "word": " Something", + "start": 2007.4, + "end": 2007.72, + "probability": 0.640625 + }, + { + "word": " like", + "start": 2007.72, + "end": 2008.04, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 2008.04, + "end": 2008.08, + "probability": 1.0 + } + ] + }, + { + "id": 1061, + "text": "Just think invisible by Goodyear.", + "start": 2008.08, + "end": 2009.12, + "words": [ + { + "word": " Just", + "start": 2008.08, + "end": 2008.28, + "probability": 0.68505859375 + }, + { + "word": " think", + "start": 2008.28, + "end": 2008.28, + "probability": 0.2305908203125 + }, + { + "word": " invisible", + "start": 2008.28, + "end": 2008.52, + "probability": 0.6572265625 + }, + { + "word": " by", + "start": 2008.52, + "end": 2008.78, + "probability": 0.99951171875 + }, + { + "word": " Goodyear.", + "start": 2008.78, + "end": 2009.12, + "probability": 1.0 + } + ] + }, + { + "id": 1062, + "text": "Raytheon tank.", + "start": 2010.78, + "end": 2011.32, + "words": [ + { + "word": " Raytheon", + "start": 2010.78, + "end": 2011.1, + "probability": 0.81884765625 + }, + { + "word": " tank.", + "start": 2011.1, + "end": 2011.32, + "probability": 0.43310546875 + } + ] + }, + { + "id": 1063, + "text": "Oh.", + "start": 2011.9, + "end": 2012.22, + "words": [ + { + "word": " Oh.", + "start": 2011.9, + "end": 2012.22, + "probability": 0.363037109375 + } + ] + }, + { + "id": 1064, + "text": "So, some news in Apple.", + "start": 2012.96, + "end": 2014.34, + "words": [ + { + "word": " So,", + "start": 2012.96, + "end": 2013.28, + "probability": 0.97509765625 + }, + { + "word": " some", + "start": 2013.28, + "end": 2013.6, + "probability": 0.9921875 + }, + { + "word": " news", + "start": 2013.6, + "end": 2013.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 2013.94, + "end": 2014.06, + "probability": 0.66455078125 + }, + { + "word": " Apple.", + "start": 2014.06, + "end": 2014.34, + "probability": 1.0 + } + ] + }, + { + "id": 1065, + "text": "What?", + "start": 2014.52, + "end": 2014.84, + "words": [ + { + "word": " What?", + "start": 2014.52, + "end": 2014.84, + "probability": 0.20849609375 + } + ] + }, + { + "id": 1066, + "text": "All right.", + "start": 2014.88, + "end": 2015.32, + "words": [ + { + "word": " All", + "start": 2014.88, + "end": 2015.16, + "probability": 0.91552734375 + }, + { + "word": " right.", + "start": 2015.16, + "end": 2015.32, + "probability": 1.0 + } + ] + }, + { + "id": 1067, + "text": "Yeah, well, Apple's kind of being a jerk.", + "start": 2015.38, + "end": 2017.94, + "words": [ + { + "word": " Yeah,", + "start": 2015.38, + "end": 2015.62, + "probability": 0.99267578125 + }, + { + "word": " well,", + "start": 2015.68, + "end": 2015.8, + "probability": 1.0 + }, + { + "word": " Apple's", + "start": 2015.9, + "end": 2016.42, + "probability": 0.99267578125 + }, + { + "word": " kind", + "start": 2016.42, + "end": 2016.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2016.56, + "end": 2016.76, + "probability": 1.0 + }, + { + "word": " being", + "start": 2016.76, + "end": 2016.92, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 2016.92, + "end": 2017.04, + "probability": 0.99951171875 + }, + { + "word": " jerk.", + "start": 2017.04, + "end": 2017.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1068, + "text": "Apple's being a jerk?", + "start": 2018.4, + "end": 2019.08, + "words": [ + { + "word": " Apple's", + "start": 2018.4, + "end": 2018.72, + "probability": 1.0 + }, + { + "word": " being", + "start": 2018.72, + "end": 2018.8, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 2018.8, + "end": 2018.9, + "probability": 1.0 + }, + { + "word": " jerk?", + "start": 2018.9, + "end": 2019.08, + "probability": 1.0 + } + ] + }, + { + "id": 1069, + "text": "Yeah.", + "start": 2019.2, + "end": 2019.38, + "words": [ + { + "word": " Yeah.", + "start": 2019.2, + "end": 2019.38, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1070, + "text": "Okay.", + "start": 2019.42, + "end": 2019.72, + "words": [ + { + "word": " Okay.", + "start": 2019.42, + "end": 2019.72, + "probability": 0.97509765625 + } + ] + }, + { + "id": 1071, + "text": "All right, so.", + "start": 2019.98, + "end": 2020.54, + "words": [ + { + "word": " All", + "start": 2019.98, + "end": 2020.3, + "probability": 0.935546875 + }, + { + "word": " right,", + "start": 2020.3, + "end": 2020.36, + "probability": 1.0 + }, + { + "word": " so.", + "start": 2020.36, + "end": 2020.54, + "probability": 1.0 + } + ] + }, + { + "id": 1072, + "text": "Wait, wait, wait.", + "start": 2020.68, + "end": 2021.26, + "words": [ + { + "word": " Wait,", + "start": 2020.68, + "end": 2021.0, + "probability": 0.99658203125 + }, + { + "word": " wait,", + "start": 2021.04, + "end": 2021.12, + "probability": 0.99951171875 + }, + { + "word": " wait.", + "start": 2021.14, + "end": 2021.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1073, + "text": "Hold on.", + "start": 2021.28, + "end": 2021.58, + "words": [ + { + "word": " Hold", + "start": 2021.28, + "end": 2021.44, + "probability": 0.98974609375 + }, + { + "word": " on.", + "start": 2021.44, + "end": 2021.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1074, + "text": "Jobs is gone and they're still being jerks?", + "start": 2021.96, + "end": 2023.62, + "words": [ + { + "word": " Jobs", + "start": 2021.96, + "end": 2022.28, + "probability": 0.99267578125 + }, + { + "word": " is", + "start": 2022.28, + "end": 2022.38, + "probability": 0.9990234375 + }, + { + "word": " gone", + "start": 2022.38, + "end": 2022.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 2022.58, + "end": 2022.78, + "probability": 0.70556640625 + }, + { + "word": " they're", + "start": 2022.78, + "end": 2022.9, + "probability": 1.0 + }, + { + "word": " still", + "start": 2022.9, + "end": 2023.1, + "probability": 1.0 + }, + { + "word": " being", + "start": 2023.1, + "end": 2023.32, + "probability": 1.0 + }, + { + "word": " jerks?", + "start": 2023.32, + "end": 2023.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1075, + "text": "Yeah.", + "start": 2023.68, + "end": 2023.94, + "words": [ + { + "word": " Yeah.", + "start": 2023.68, + "end": 2023.94, + "probability": 0.29052734375 + } + ] + }, + { + "id": 1076, + "text": "No.", + "start": 2024.18, + "end": 2024.5, + "words": [ + { + "word": " No.", + "start": 2024.18, + "end": 2024.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1077, + "text": "Well, you get to say that again here in a minute when you say jobs is gone and this.", + "start": 2024.68, + "end": 2028.7, + "words": [ + { + "word": " Well,", + "start": 2024.68, + "end": 2025.0, + "probability": 0.483154296875 + }, + { + "word": " you", + "start": 2025.1, + "end": 2025.72, + "probability": 0.99755859375 + }, + { + "word": " get", + "start": 2025.72, + "end": 2026.0, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2026.0, + "end": 2026.12, + "probability": 1.0 + }, + { + "word": " say", + "start": 2026.12, + "end": 2026.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 2026.28, + "end": 2026.38, + "probability": 1.0 + }, + { + "word": " again", + "start": 2026.38, + "end": 2026.56, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 2026.56, + "end": 2026.74, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 2026.74, + "end": 2026.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2026.86, + "end": 2026.9, + "probability": 1.0 + }, + { + "word": " minute", + "start": 2026.9, + "end": 2027.06, + "probability": 1.0 + }, + { + "word": " when", + "start": 2027.06, + "end": 2027.14, + "probability": 0.646484375 + }, + { + "word": " you", + "start": 2027.14, + "end": 2027.3, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 2027.3, + "end": 2027.32, + "probability": 1.0 + }, + { + "word": " jobs", + "start": 2027.32, + "end": 2027.68, + "probability": 0.662109375 + }, + { + "word": " is", + "start": 2027.68, + "end": 2027.88, + "probability": 0.99951171875 + }, + { + "word": " gone", + "start": 2027.88, + "end": 2028.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 2028.04, + "end": 2028.28, + "probability": 0.9970703125 + }, + { + "word": " this.", + "start": 2028.28, + "end": 2028.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1078, + "text": "Oh, all right.", + "start": 2028.82, + "end": 2029.24, + "words": [ + { + "word": " Oh,", + "start": 2028.82, + "end": 2029.04, + "probability": 0.75927734375 + }, + { + "word": " all", + "start": 2029.04, + "end": 2029.1, + "probability": 0.9609375 + }, + { + "word": " right.", + "start": 2029.1, + "end": 2029.24, + "probability": 1.0 + } + ] + }, + { + "id": 1079, + "text": "But.", + "start": 2029.36, + "end": 2029.6, + "words": [ + { + "word": " But.", + "start": 2029.36, + "end": 2029.6, + "probability": 0.9423828125 + } + ] + }, + { + "id": 1080, + "text": "So, they've decided that they're trying to ban the Galaxy Tab 10-inch, the 10-inch Galaxy", + "start": 2031.12, + "end": 2036.56, + "words": [ + { + "word": " So,", + "start": 2031.12, + "end": 2031.52, + "probability": 0.8798828125 + }, + { + "word": " they've", + "start": 2031.52, + "end": 2031.92, + "probability": 0.9970703125 + }, + { + "word": " decided", + "start": 2031.92, + "end": 2032.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 2032.2, + "end": 2032.46, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 2032.46, + "end": 2033.16, + "probability": 0.99951171875 + }, + { + "word": " trying", + "start": 2033.16, + "end": 2033.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 2033.48, + "end": 2033.7, + "probability": 1.0 + }, + { + "word": " ban", + "start": 2033.7, + "end": 2033.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2033.92, + "end": 2034.26, + "probability": 1.0 + }, + { + "word": " Galaxy", + "start": 2034.26, + "end": 2034.56, + "probability": 0.9658203125 + }, + { + "word": " Tab", + "start": 2034.56, + "end": 2034.98, + "probability": 0.98486328125 + }, + { + "word": " 10", + "start": 2034.98, + "end": 2035.36, + "probability": 0.97119140625 + }, + { + "word": "-inch,", + "start": 2035.36, + "end": 2035.66, + "probability": 0.9677734375 + }, + { + "word": " the", + "start": 2035.7, + "end": 2035.86, + "probability": 0.9990234375 + }, + { + "word": " 10", + "start": 2035.86, + "end": 2036.2, + "probability": 0.99951171875 + }, + { + "word": "-inch", + "start": 2036.2, + "end": 2036.38, + "probability": 1.0 + }, + { + "word": " Galaxy", + "start": 2036.38, + "end": 2036.56, + "probability": 1.0 + } + ] + }, + { + "id": 1081, + "text": "Tab from sale in Europe.", + "start": 2036.56, + "end": 2038.36, + "words": [ + { + "word": " Tab", + "start": 2036.56, + "end": 2036.86, + "probability": 1.0 + }, + { + "word": " from", + "start": 2036.86, + "end": 2037.56, + "probability": 0.177734375 + }, + { + "word": " sale", + "start": 2037.56, + "end": 2037.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 2037.92, + "end": 2038.1, + "probability": 1.0 + }, + { + "word": " Europe.", + "start": 2038.1, + "end": 2038.36, + "probability": 1.0 + } + ] + }, + { + "id": 1082, + "text": "Okay.", + "start": 2038.58, + "end": 2038.98, + "words": [ + { + "word": " Okay.", + "start": 2038.58, + "end": 2038.98, + "probability": 0.96923828125 + } + ] + }, + { + "id": 1083, + "text": "Right?", + "start": 2039.18, + "end": 2039.34, + "words": [ + { + "word": " Right?", + "start": 2039.18, + "end": 2039.34, + "probability": 0.71484375 + } + ] + }, + { + "id": 1084, + "text": "Because it too closely resembles the iPad.", + "start": 2039.4, + "end": 2041.6, + "words": [ + { + "word": " Because", + "start": 2039.4, + "end": 2039.7, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2039.7, + "end": 2039.8, + "probability": 0.99951171875 + }, + { + "word": " too", + "start": 2039.8, + "end": 2040.02, + "probability": 1.0 + }, + { + "word": " closely", + "start": 2040.02, + "end": 2040.42, + "probability": 1.0 + }, + { + "word": " resembles", + "start": 2040.42, + "end": 2040.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 2040.84, + "end": 2041.28, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 2041.28, + "end": 2041.6, + "probability": 1.0 + } + ] + }, + { + "id": 1085, + "text": "Oh, man.", + "start": 2041.9, + "end": 2042.76, + "words": [ + { + "word": " Oh,", + "start": 2041.9, + "end": 2042.28, + "probability": 0.9501953125 + }, + { + "word": " man.", + "start": 2042.34, + "end": 2042.76, + "probability": 1.0 + } + ] + }, + { + "id": 1086, + "text": "I thought we were done with this.", + "start": 2043.32, + "end": 2044.58, + "words": [ + { + "word": " I", + "start": 2043.32, + "end": 2043.72, + "probability": 0.78515625 + }, + { + "word": " thought", + "start": 2043.72, + "end": 2043.86, + "probability": 0.9931640625 + }, + { + "word": " we", + "start": 2043.86, + "end": 2044.0, + "probability": 1.0 + }, + { + "word": " were", + "start": 2044.0, + "end": 2044.12, + "probability": 1.0 + }, + { + "word": " done", + "start": 2044.12, + "end": 2044.28, + "probability": 1.0 + }, + { + "word": " with", + "start": 2044.28, + "end": 2044.42, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2044.42, + "end": 2044.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1087, + "text": "Yeah.", + "start": 2044.62, + "end": 2044.78, + "words": [ + { + "word": " Yeah.", + "start": 2044.62, + "end": 2044.78, + "probability": 0.1663818359375 + } + ] + }, + { + "id": 1088, + "text": "Well, remember, we talked about this a few weeks ago where they were saying, you know,", + "start": 2044.78, + "end": 2048.38, + "words": [ + { + "word": " Well,", + "start": 2044.78, + "end": 2044.94, + "probability": 0.9990234375 + }, + { + "word": " remember,", + "start": 2045.06, + "end": 2045.46, + "probability": 1.0 + }, + { + "word": " we", + "start": 2045.64, + "end": 2045.82, + "probability": 1.0 + }, + { + "word": " talked", + "start": 2045.82, + "end": 2046.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 2046.0, + "end": 2046.2, + "probability": 1.0 + }, + { + "word": " this", + "start": 2046.2, + "end": 2046.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2046.34, + "end": 2046.46, + "probability": 1.0 + }, + { + "word": " few", + "start": 2046.46, + "end": 2046.54, + "probability": 1.0 + }, + { + "word": " weeks", + "start": 2046.54, + "end": 2046.7, + "probability": 1.0 + }, + { + "word": " ago", + "start": 2046.7, + "end": 2046.92, + "probability": 1.0 + }, + { + "word": " where", + "start": 2046.92, + "end": 2047.12, + "probability": 0.7197265625 + }, + { + "word": " they", + "start": 2047.12, + "end": 2047.3, + "probability": 1.0 + }, + { + "word": " were", + "start": 2047.3, + "end": 2047.42, + "probability": 1.0 + }, + { + "word": " saying,", + "start": 2047.42, + "end": 2047.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 2047.9, + "end": 2048.24, + "probability": 0.9951171875 + }, + { + "word": " know,", + "start": 2048.24, + "end": 2048.38, + "probability": 1.0 + } + ] + }, + { + "id": 1089, + "text": "Samsung's response was, well, there was a tablet in the Space Odyssey movie.", + "start": 2048.4, + "end": 2053.82, + "words": [ + { + "word": " Samsung's", + "start": 2048.4, + "end": 2048.9, + "probability": 0.990234375 + }, + { + "word": " response", + "start": 2048.9, + "end": 2049.22, + "probability": 0.99951171875 + }, + { + "word": " was,", + "start": 2049.22, + "end": 2049.58, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 2049.66, + "end": 2049.94, + "probability": 0.9970703125 + }, + { + "word": " there", + "start": 2050.04, + "end": 2050.36, + "probability": 1.0 + }, + { + "word": " was", + "start": 2050.36, + "end": 2050.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 2050.52, + "end": 2050.64, + "probability": 1.0 + }, + { + "word": " tablet", + "start": 2050.64, + "end": 2051.58, + "probability": 0.99365234375 + }, + { + "word": " in", + "start": 2051.58, + "end": 2052.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2052.12, + "end": 2052.52, + "probability": 0.99072265625 + }, + { + "word": " Space", + "start": 2052.52, + "end": 2052.82, + "probability": 0.9541015625 + }, + { + "word": " Odyssey", + "start": 2052.82, + "end": 2053.52, + "probability": 0.99951171875 + }, + { + "word": " movie.", + "start": 2053.52, + "end": 2053.82, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1090, + "text": "Yeah.", + "start": 2054.02, + "end": 2054.24, + "words": [ + { + "word": " Yeah.", + "start": 2054.02, + "end": 2054.24, + "probability": 0.68359375 + } + ] + }, + { + "id": 1091, + "text": "You know, how did you get the baton for it?", + "start": 2054.24, + "end": 2055.72, + "words": [ + { + "word": " You", + "start": 2054.24, + "end": 2054.48, + "probability": 0.6162109375 + }, + { + "word": " know,", + "start": 2054.48, + "end": 2054.56, + "probability": 1.0 + }, + { + "word": " how", + "start": 2054.56, + "end": 2054.68, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 2054.68, + "end": 2054.82, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2054.82, + "end": 2054.96, + "probability": 1.0 + }, + { + "word": " get", + "start": 2054.96, + "end": 2055.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 2055.1, + "end": 2055.2, + "probability": 1.0 + }, + { + "word": " baton", + "start": 2055.2, + "end": 2055.44, + "probability": 0.8046875 + }, + { + "word": " for", + "start": 2055.44, + "end": 2055.6, + "probability": 1.0 + }, + { + "word": " it?", + "start": 2055.6, + "end": 2055.72, + "probability": 1.0 + } + ] + }, + { + "id": 1092, + "text": "And that was like 20 years ago, 30 years ago.", + "start": 2055.8, + "end": 2057.52, + "words": [ + { + "word": " And", + "start": 2055.8, + "end": 2055.88, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2055.88, + "end": 2055.94, + "probability": 0.99658203125 + }, + { + "word": " was", + "start": 2055.94, + "end": 2056.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 2056.06, + "end": 2056.2, + "probability": 0.763671875 + }, + { + "word": " 20", + "start": 2056.2, + "end": 2056.52, + "probability": 1.0 + }, + { + "word": " years", + "start": 2056.52, + "end": 2056.74, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 2056.74, + "end": 2056.96, + "probability": 1.0 + }, + { + "word": " 30", + "start": 2057.02, + "end": 2057.14, + "probability": 1.0 + }, + { + "word": " years", + "start": 2057.14, + "end": 2057.3, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 2057.3, + "end": 2057.52, + "probability": 1.0 + } + ] + }, + { + "id": 1093, + "text": "So.", + "start": 2057.66, + "end": 2058.06, + "words": [ + { + "word": " So.", + "start": 2057.66, + "end": 2058.06, + "probability": 0.59228515625 + } + ] + }, + { + "id": 1094, + "text": "So, apparently, there was a judge in Europe that said you can't ban it in Europe as a whole.", + "start": 2059.4799999999996, + "end": 2064.32, + "words": [ + { + "word": " So,", + "start": 2059.4799999999996, + "end": 2059.7999999999997, + "probability": 0.982421875 + }, + { + "word": " apparently,", + "start": 2059.7999999999997, + "end": 2060.12, + "probability": 0.96240234375 + }, + { + "word": " there", + "start": 2060.6, + "end": 2061.34, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2061.34, + "end": 2061.78, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 2061.78, + "end": 2061.88, + "probability": 1.0 + }, + { + "word": " judge", + "start": 2061.88, + "end": 2062.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 2062.08, + "end": 2062.24, + "probability": 1.0 + }, + { + "word": " Europe", + "start": 2062.24, + "end": 2062.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2062.48, + "end": 2062.62, + "probability": 0.99951171875 + }, + { + "word": " said", + "start": 2062.62, + "end": 2062.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 2062.76, + "end": 2062.9, + "probability": 0.857421875 + }, + { + "word": " can't", + "start": 2062.9, + "end": 2063.16, + "probability": 1.0 + }, + { + "word": " ban", + "start": 2063.16, + "end": 2063.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 2063.26, + "end": 2063.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 2063.4, + "end": 2063.46, + "probability": 1.0 + }, + { + "word": " Europe", + "start": 2063.46, + "end": 2063.66, + "probability": 1.0 + }, + { + "word": " as", + "start": 2063.66, + "end": 2064.06, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2064.06, + "end": 2064.18, + "probability": 1.0 + }, + { + "word": " whole.", + "start": 2064.18, + "end": 2064.32, + "probability": 1.0 + } + ] + }, + { + "id": 1095, + "text": "Right.", + "start": 2064.44, + "end": 2064.74, + "words": [ + { + "word": " Right.", + "start": 2064.44, + "end": 2064.74, + "probability": 0.93212890625 + } + ] + }, + { + "id": 1096, + "text": "Right.", + "start": 2064.82, + "end": 2065.04, + "words": [ + { + "word": " Right.", + "start": 2064.82, + "end": 2065.04, + "probability": 0.310546875 + } + ] + }, + { + "id": 1097, + "text": "You can ban it in individual countries.", + "start": 2065.04, + "end": 2067.5, + "words": [ + { + "word": " You", + "start": 2065.04, + "end": 2065.18, + "probability": 0.9873046875 + }, + { + "word": " can", + "start": 2065.18, + "end": 2065.4, + "probability": 1.0 + }, + { + "word": " ban", + "start": 2065.4, + "end": 2066.18, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2066.18, + "end": 2066.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 2066.36, + "end": 2066.44, + "probability": 1.0 + }, + { + "word": " individual", + "start": 2066.44, + "end": 2066.7, + "probability": 1.0 + }, + { + "word": " countries.", + "start": 2066.7, + "end": 2067.5, + "probability": 1.0 + } + ] + }, + { + "id": 1098, + "text": "So, they got Germany to ban it.", + "start": 2067.64, + "end": 2069.26, + "words": [ + { + "word": " So,", + "start": 2067.64, + "end": 2067.94, + "probability": 0.89990234375 + }, + { + "word": " they", + "start": 2068.0, + "end": 2068.38, + "probability": 1.0 + }, + { + "word": " got", + "start": 2068.38, + "end": 2068.5, + "probability": 0.99853515625 + }, + { + "word": " Germany", + "start": 2068.5, + "end": 2068.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 2068.76, + "end": 2068.94, + "probability": 1.0 + }, + { + "word": " ban", + "start": 2068.94, + "end": 2069.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2069.06, + "end": 2069.26, + "probability": 1.0 + } + ] + }, + { + "id": 1099, + "text": "Really?", + "start": 2069.54, + "end": 2069.86, + "words": [ + { + "word": " Really?", + "start": 2069.54, + "end": 2069.86, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1100, + "text": "Yeah.", + "start": 2069.86, + "end": 2069.92, + "words": [ + { + "word": " Yeah.", + "start": 2069.86, + "end": 2069.92, + "probability": 0.286376953125 + } + ] + }, + { + "id": 1101, + "text": "They're trying to ban it in Japan.", + "start": 2069.94, + "end": 2071.04, + "words": [ + { + "word": " They're", + "start": 2069.94, + "end": 2070.22, + "probability": 0.9853515625 + }, + { + "word": " trying", + "start": 2070.22, + "end": 2070.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 2070.38, + "end": 2070.48, + "probability": 1.0 + }, + { + "word": " ban", + "start": 2070.48, + "end": 2070.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 2070.6, + "end": 2070.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 2070.72, + "end": 2070.8, + "probability": 1.0 + }, + { + "word": " Japan.", + "start": 2070.8, + "end": 2071.04, + "probability": 1.0 + } + ] + }, + { + "id": 1102, + "text": "Ugh.", + "start": 2071.78, + "end": 2072.1, + "words": [ + { + "word": " Ugh.", + "start": 2071.78, + "end": 2072.1, + "probability": 0.826171875 + } + ] + }, + { + "id": 1103, + "text": "And the thing is, is that it's a tablet.", + "start": 2072.7, + "end": 2075.86, + "words": [ + { + "word": " And", + "start": 2072.7, + "end": 2073.02, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 2073.02, + "end": 2073.34, + "probability": 0.98828125 + }, + { + "word": " thing", + "start": 2073.34, + "end": 2073.66, + "probability": 1.0 + }, + { + "word": " is,", + "start": 2073.66, + "end": 2073.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 2073.96, + "end": 2074.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 2074.1, + "end": 2074.26, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2074.26, + "end": 2075.18, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2075.18, + "end": 2075.26, + "probability": 1.0 + }, + { + "word": " tablet.", + "start": 2075.26, + "end": 2075.86, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1104, + "text": "So, this is how Apple does it, though.", + "start": 2076.02, + "end": 2077.56, + "words": [ + { + "word": " So,", + "start": 2076.02, + "end": 2076.34, + "probability": 0.93310546875 + }, + { + "word": " this", + "start": 2076.38, + "end": 2076.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 2076.46, + "end": 2076.56, + "probability": 1.0 + }, + { + "word": " how", + "start": 2076.56, + "end": 2076.68, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 2076.68, + "end": 2077.04, + "probability": 1.0 + }, + { + "word": " does", + "start": 2077.04, + "end": 2077.22, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2077.22, + "end": 2077.42, + "probability": 1.0 + }, + { + "word": " though.", + "start": 2077.44, + "end": 2077.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1105, + "text": "Apple, they don't try to go ahead and do direct competition with people.", + "start": 2077.56, + "end": 2080.48, + "words": [ + { + "word": " Apple,", + "start": 2077.56, + "end": 2077.84, + "probability": 0.9921875 + }, + { + "word": " they", + "start": 2077.98, + "end": 2078.12, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2078.12, + "end": 2078.38, + "probability": 1.0 + }, + { + "word": " try", + "start": 2078.38, + "end": 2078.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 2078.6, + "end": 2078.72, + "probability": 1.0 + }, + { + "word": " go", + "start": 2078.72, + "end": 2078.86, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 2078.86, + "end": 2079.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 2079.0, + "end": 2079.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 2079.1, + "end": 2079.24, + "probability": 1.0 + }, + { + "word": " direct", + "start": 2079.24, + "end": 2079.6, + "probability": 0.9990234375 + }, + { + "word": " competition", + "start": 2079.6, + "end": 2079.96, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 2079.96, + "end": 2080.3, + "probability": 1.0 + }, + { + "word": " people.", + "start": 2080.3, + "end": 2080.48, + "probability": 1.0 + } + ] + }, + { + "id": 1106, + "text": "They just go ahead and sue people and get them out of business.", + "start": 2080.56, + "end": 2082.62, + "words": [ + { + "word": " They", + "start": 2080.56, + "end": 2080.66, + "probability": 1.0 + }, + { + "word": " just", + "start": 2080.66, + "end": 2080.74, + "probability": 1.0 + }, + { + "word": " go", + "start": 2080.74, + "end": 2080.9, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 2080.9, + "end": 2081.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 2081.04, + "end": 2081.16, + "probability": 1.0 + }, + { + "word": " sue", + "start": 2081.16, + "end": 2081.32, + "probability": 1.0 + }, + { + "word": " people", + "start": 2081.32, + "end": 2081.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 2081.56, + "end": 2081.96, + "probability": 0.99072265625 + }, + { + "word": " get", + "start": 2081.96, + "end": 2082.1, + "probability": 1.0 + }, + { + "word": " them", + "start": 2082.1, + "end": 2082.22, + "probability": 1.0 + }, + { + "word": " out", + "start": 2082.22, + "end": 2082.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2082.32, + "end": 2082.42, + "probability": 1.0 + }, + { + "word": " business.", + "start": 2082.42, + "end": 2082.62, + "probability": 1.0 + } + ] + }, + { + "id": 1107, + "text": "Well, I mean, I understand that you want to protect the intellectual property rights and", + "start": 2083.0, + "end": 2086.46, + "words": [ + { + "word": " Well,", + "start": 2083.0, + "end": 2083.32, + "probability": 1.0 + }, + { + "word": " I", + "start": 2083.5, + "end": 2083.64, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 2083.64, + "end": 2083.82, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2083.84, + "end": 2084.02, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2084.02, + "end": 2084.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 2084.38, + "end": 2084.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 2084.64, + "end": 2084.74, + "probability": 1.0 + }, + { + "word": " want", + "start": 2084.74, + "end": 2084.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2084.86, + "end": 2084.96, + "probability": 1.0 + }, + { + "word": " protect", + "start": 2084.96, + "end": 2085.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 2085.16, + "end": 2085.34, + "probability": 0.99755859375 + }, + { + "word": " intellectual", + "start": 2085.34, + "end": 2085.5, + "probability": 1.0 + }, + { + "word": " property", + "start": 2085.5, + "end": 2085.98, + "probability": 1.0 + }, + { + "word": " rights", + "start": 2085.98, + "end": 2086.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 2086.28, + "end": 2086.46, + "probability": 0.92919921875 + } + ] + }, + { + "id": 1108, + "text": "the et cetera, et cetera.", + "start": 2086.46, + "end": 2087.12, + "words": [ + { + "word": " the", + "start": 2086.46, + "end": 2086.52, + "probability": 0.7548828125 + }, + { + "word": " et", + "start": 2086.52, + "end": 2086.64, + "probability": 0.70361328125 + }, + { + "word": " cetera,", + "start": 2086.64, + "end": 2086.84, + "probability": 1.0 + }, + { + "word": " et", + "start": 2086.9, + "end": 2087.02, + "probability": 0.99951171875 + }, + { + "word": " cetera.", + "start": 2087.02, + "end": 2087.12, + "probability": 1.0 + } + ] + }, + { + "id": 1109, + "text": "But.", + "start": 2087.22, + "end": 2087.28, + "words": [ + { + "word": " But.", + "start": 2087.22, + "end": 2087.28, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1110, + "text": "But it's a tablet.", + "start": 2087.28, + "end": 2088.16, + "words": [ + { + "word": " But", + "start": 2087.28, + "end": 2087.38, + "probability": 0.97021484375 + }, + { + "word": " it's", + "start": 2087.38, + "end": 2087.64, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 2087.64, + "end": 2087.7, + "probability": 1.0 + }, + { + "word": " tablet.", + "start": 2087.7, + "end": 2088.16, + "probability": 1.0 + } + ] + }, + { + "id": 1111, + "text": "Yeah.", + "start": 2088.22, + "end": 2088.38, + "words": [ + { + "word": " Yeah.", + "start": 2088.22, + "end": 2088.38, + "probability": 0.82373046875 + } + ] + }, + { + "id": 1112, + "text": "I mean, it's like.", + "start": 2088.38, + "end": 2088.8, + "words": [ + { + "word": " I", + "start": 2088.38, + "end": 2088.5, + "probability": 0.96630859375 + }, + { + "word": " mean,", + "start": 2088.5, + "end": 2088.5, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2088.56, + "end": 2088.64, + "probability": 0.91064453125 + }, + { + "word": " like.", + "start": 2088.64, + "end": 2088.8, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1113, + "text": "I mean, how much difference can you have in a tablet?", + "start": 2088.86, + "end": 2091.28, + "words": [ + { + "word": " I", + "start": 2088.86, + "end": 2089.12, + "probability": 0.94677734375 + }, + { + "word": " mean,", + "start": 2089.12, + "end": 2089.24, + "probability": 1.0 + }, + { + "word": " how", + "start": 2089.24, + "end": 2089.38, + "probability": 1.0 + }, + { + "word": " much", + "start": 2089.38, + "end": 2089.74, + "probability": 1.0 + }, + { + "word": " difference", + "start": 2089.74, + "end": 2090.12, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2090.12, + "end": 2090.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2090.42, + "end": 2090.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 2090.56, + "end": 2090.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 2090.74, + "end": 2090.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2090.86, + "end": 2090.94, + "probability": 1.0 + }, + { + "word": " tablet?", + "start": 2090.94, + "end": 2091.28, + "probability": 1.0 + } + ] + }, + { + "id": 1114, + "text": "I mean, really, how different can you make it?", + "start": 2091.72, + "end": 2093.54, + "words": [ + { + "word": " I", + "start": 2091.72, + "end": 2092.04, + "probability": 0.4404296875 + }, + { + "word": " mean,", + "start": 2092.04, + "end": 2092.24, + "probability": 1.0 + }, + { + "word": " really,", + "start": 2092.28, + "end": 2092.6, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 2092.7, + "end": 2092.8, + "probability": 1.0 + }, + { + "word": " different", + "start": 2092.8, + "end": 2092.98, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 2092.98, + "end": 2093.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 2093.18, + "end": 2093.28, + "probability": 1.0 + }, + { + "word": " make", + "start": 2093.28, + "end": 2093.46, + "probability": 1.0 + }, + { + "word": " it?", + "start": 2093.46, + "end": 2093.54, + "probability": 1.0 + } + ] + }, + { + "id": 1115, + "text": "Well, it's like saying the makers of my car are the Chevy.", + "start": 2093.6, + "end": 2095.2, + "words": [ + { + "word": " Well,", + "start": 2093.6, + "end": 2093.72, + "probability": 0.97802734375 + }, + { + "word": " it's", + "start": 2093.72, + "end": 2093.8, + "probability": 0.9833984375 + }, + { + "word": " like", + "start": 2093.8, + "end": 2093.86, + "probability": 0.97265625 + }, + { + "word": " saying", + "start": 2093.86, + "end": 2093.96, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 2093.96, + "end": 2094.1, + "probability": 0.99755859375 + }, + { + "word": " makers", + "start": 2094.1, + "end": 2094.38, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2094.38, + "end": 2094.52, + "probability": 1.0 + }, + { + "word": " my", + "start": 2094.52, + "end": 2094.62, + "probability": 1.0 + }, + { + "word": " car", + "start": 2094.62, + "end": 2094.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 2094.86, + "end": 2094.98, + "probability": 0.80859375 + }, + { + "word": " the", + "start": 2094.98, + "end": 2095.02, + "probability": 0.998046875 + }, + { + "word": " Chevy.", + "start": 2095.02, + "end": 2095.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1116, + "text": "Well, my Chevy car should sue the makers of the Scion.", + "start": 2095.48, + "end": 2098.36, + "words": [ + { + "word": " Well,", + "start": 2095.48, + "end": 2095.8, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 2095.82, + "end": 2095.96, + "probability": 1.0 + }, + { + "word": " Chevy", + "start": 2095.96, + "end": 2096.14, + "probability": 1.0 + }, + { + "word": " car", + "start": 2096.14, + "end": 2096.38, + "probability": 1.0 + }, + { + "word": " should", + "start": 2096.38, + "end": 2097.02, + "probability": 0.99853515625 + }, + { + "word": " sue", + "start": 2097.02, + "end": 2097.22, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 2097.22, + "end": 2097.54, + "probability": 1.0 + }, + { + "word": " makers", + "start": 2097.54, + "end": 2097.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 2097.78, + "end": 2097.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2097.94, + "end": 2098.06, + "probability": 1.0 + }, + { + "word": " Scion.", + "start": 2098.06, + "end": 2098.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 1117, + "text": "Because, you know, they both have four wheels.", + "start": 2098.76, + "end": 2100.66, + "words": [ + { + "word": " Because,", + "start": 2098.76, + "end": 2099.08, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2099.26, + "end": 2099.4, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2099.4, + "end": 2099.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 2099.5, + "end": 2099.72, + "probability": 0.99609375 + }, + { + "word": " both", + "start": 2099.72, + "end": 2099.96, + "probability": 0.90576171875 + }, + { + "word": " have", + "start": 2099.96, + "end": 2100.22, + "probability": 1.0 + }, + { + "word": " four", + "start": 2100.22, + "end": 2100.38, + "probability": 0.99951171875 + }, + { + "word": " wheels.", + "start": 2100.38, + "end": 2100.66, + "probability": 1.0 + } + ] + }, + { + "id": 1118, + "text": "And doors.", + "start": 2100.98, + "end": 2101.46, + "words": [ + { + "word": " And", + "start": 2100.98, + "end": 2101.3, + "probability": 0.99951171875 + }, + { + "word": " doors.", + "start": 2101.3, + "end": 2101.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1119, + "text": "And a hatch.", + "start": 2101.9, + "end": 2102.52, + "words": [ + { + "word": " And", + "start": 2101.9, + "end": 2102.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 2102.22, + "end": 2102.3, + "probability": 1.0 + }, + { + "word": " hatch.", + "start": 2102.3, + "end": 2102.52, + "probability": 1.0 + } + ] + }, + { + "id": 1120, + "text": "And a hatch.", + "start": 2102.62, + "end": 2102.94, + "words": [ + { + "word": " And", + "start": 2102.62, + "end": 2102.76, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2102.76, + "end": 2102.8, + "probability": 1.0 + }, + { + "word": " hatch.", + "start": 2102.8, + "end": 2102.94, + "probability": 1.0 + } + ] + }, + { + "id": 1121, + "text": "Yeah.", + "start": 2103.16, + "end": 2103.48, + "words": [ + { + "word": " Yeah.", + "start": 2103.16, + "end": 2103.48, + "probability": 0.9658203125 + } + ] + }, + { + "id": 1122, + "text": "And door locks.", + "start": 2103.6, + "end": 2104.08, + "words": [ + { + "word": " And", + "start": 2103.6, + "end": 2103.74, + "probability": 0.9990234375 + }, + { + "word": " door", + "start": 2103.74, + "end": 2103.86, + "probability": 0.9970703125 + }, + { + "word": " locks.", + "start": 2103.86, + "end": 2104.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1123, + "text": "I mean, that doesn't make sense to me.", + "start": 2104.24, + "end": 2105.44, + "words": [ + { + "word": " I", + "start": 2104.24, + "end": 2104.44, + "probability": 0.99658203125 + }, + { + "word": " mean,", + "start": 2104.44, + "end": 2104.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 2104.58, + "end": 2104.68, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 2104.68, + "end": 2104.84, + "probability": 1.0 + }, + { + "word": " make", + "start": 2104.84, + "end": 2104.96, + "probability": 1.0 + }, + { + "word": " sense", + "start": 2104.96, + "end": 2105.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 2105.18, + "end": 2105.36, + "probability": 1.0 + }, + { + "word": " me.", + "start": 2105.36, + "end": 2105.44, + "probability": 1.0 + } + ] + }, + { + "id": 1124, + "text": "It's.", + "start": 2106.12, + "end": 2106.44, + "words": [ + { + "word": " It's.", + "start": 2106.12, + "end": 2106.44, + "probability": 0.74169921875 + } + ] + }, + { + "id": 1125, + "text": "You can look at the Galaxy Tab and you can plainly see that it's not an iPad.", + "start": 2106.52, + "end": 2109.14, + "words": [ + { + "word": " You", + "start": 2106.52, + "end": 2106.82, + "probability": 0.83349609375 + }, + { + "word": " can", + "start": 2106.82, + "end": 2106.94, + "probability": 1.0 + }, + { + "word": " look", + "start": 2106.94, + "end": 2107.1, + "probability": 1.0 + }, + { + "word": " at", + "start": 2107.1, + "end": 2107.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 2107.22, + "end": 2107.26, + "probability": 0.998046875 + }, + { + "word": " Galaxy", + "start": 2107.26, + "end": 2107.46, + "probability": 0.99755859375 + }, + { + "word": " Tab", + "start": 2107.46, + "end": 2107.68, + "probability": 0.9189453125 + }, + { + "word": " and", + "start": 2107.68, + "end": 2107.76, + "probability": 0.6650390625 + }, + { + "word": " you", + "start": 2107.76, + "end": 2107.86, + "probability": 1.0 + }, + { + "word": " can", + "start": 2107.86, + "end": 2107.9, + "probability": 1.0 + }, + { + "word": " plainly", + "start": 2107.9, + "end": 2108.22, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 2108.22, + "end": 2108.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 2108.36, + "end": 2108.5, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2108.5, + "end": 2108.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 2108.64, + "end": 2108.82, + "probability": 1.0 + }, + { + "word": " an", + "start": 2108.82, + "end": 2108.94, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 2108.94, + "end": 2109.14, + "probability": 1.0 + } + ] + }, + { + "id": 1126, + "text": "You can tell it's not an iPad.", + "start": 2109.38, + "end": 2110.48, + "words": [ + { + "word": " You", + "start": 2109.38, + "end": 2109.7, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 2109.7, + "end": 2109.76, + "probability": 1.0 + }, + { + "word": " tell", + "start": 2109.76, + "end": 2109.92, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2109.92, + "end": 2110.04, + "probability": 1.0 + }, + { + "word": " not", + "start": 2110.04, + "end": 2110.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 2110.16, + "end": 2110.3, + "probability": 1.0 + }, + { + "word": " iPad.", + "start": 2110.3, + "end": 2110.48, + "probability": 1.0 + } + ] + }, + { + "id": 1127, + "text": "Right.", + "start": 2111.36, + "end": 2111.68, + "words": [ + { + "word": " Right.", + "start": 2111.36, + "end": 2111.68, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1128, + "text": "And you can use it and find out.", + "start": 2111.74, + "end": 2112.7, + "words": [ + { + "word": " And", + "start": 2111.74, + "end": 2111.84, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2111.84, + "end": 2111.92, + "probability": 1.0 + }, + { + "word": " can", + "start": 2111.92, + "end": 2112.04, + "probability": 1.0 + }, + { + "word": " use", + "start": 2112.04, + "end": 2112.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 2112.22, + "end": 2112.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 2112.34, + "end": 2112.42, + "probability": 0.99462890625 + }, + { + "word": " find", + "start": 2112.42, + "end": 2112.6, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2112.6, + "end": 2112.7, + "probability": 0.6484375 + } + ] + }, + { + "id": 1129, + "text": "Yeah.", + "start": 2113.44, + "end": 2113.76, + "words": [ + { + "word": " Yeah.", + "start": 2113.44, + "end": 2113.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 1130, + "text": "It's Flash.", + "start": 2114.12, + "end": 2114.64, + "words": [ + { + "word": " It's", + "start": 2114.12, + "end": 2114.44, + "probability": 0.65869140625 + }, + { + "word": " Flash.", + "start": 2114.44, + "end": 2114.64, + "probability": 0.85595703125 + } + ] + }, + { + "id": 1131, + "text": "You know, it has other things that the iPad doesn't have.", + "start": 2114.84, + "end": 2116.62, + "words": [ + { + "word": " You", + "start": 2114.84, + "end": 2115.04, + "probability": 0.9736328125 + }, + { + "word": " know,", + "start": 2115.04, + "end": 2115.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 2115.2, + "end": 2115.32, + "probability": 1.0 + }, + { + "word": " has", + "start": 2115.32, + "end": 2115.46, + "probability": 1.0 + }, + { + "word": " other", + "start": 2115.46, + "end": 2115.6, + "probability": 1.0 + }, + { + "word": " things", + "start": 2115.6, + "end": 2115.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 2115.88, + "end": 2116.02, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2116.02, + "end": 2116.06, + "probability": 0.97314453125 + }, + { + "word": " iPad", + "start": 2116.06, + "end": 2116.24, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 2116.24, + "end": 2116.46, + "probability": 1.0 + }, + { + "word": " have.", + "start": 2116.46, + "end": 2116.62, + "probability": 1.0 + } + ] + }, + { + "id": 1132, + "text": "Yes.", + "start": 2116.86, + "end": 2117.16, + "words": [ + { + "word": " Yes.", + "start": 2116.86, + "end": 2117.16, + "probability": 0.57373046875 + } + ] + }, + { + "id": 1133, + "text": "I mean, I think that's dumb.", + "start": 2117.28, + "end": 2118.72, + "words": [ + { + "word": " I", + "start": 2117.28, + "end": 2117.64, + "probability": 0.98681640625 + }, + { + "word": " mean,", + "start": 2117.64, + "end": 2117.78, + "probability": 0.344970703125 + }, + { + "word": " I", + "start": 2117.8, + "end": 2118.06, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 2118.06, + "end": 2118.36, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2118.36, + "end": 2118.5, + "probability": 0.76904296875 + }, + { + "word": " dumb.", + "start": 2118.5, + "end": 2118.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1134, + "text": "Really.", + "start": 2118.94, + "end": 2119.3, + "words": [ + { + "word": " Really.", + "start": 2118.94, + "end": 2119.3, + "probability": 0.55517578125 + } + ] + }, + { + "id": 1135, + "text": "That to go out there and sue them over that.", + "start": 2119.44, + "end": 2121.68, + "words": [ + { + "word": " That", + "start": 2119.44, + "end": 2119.6, + "probability": 0.233154296875 + }, + { + "word": " to", + "start": 2119.6, + "end": 2119.76, + "probability": 0.96533203125 + }, + { + "word": " go", + "start": 2119.76, + "end": 2119.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 2119.96, + "end": 2120.12, + "probability": 1.0 + }, + { + "word": " there", + "start": 2120.12, + "end": 2120.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 2120.3, + "end": 2120.6, + "probability": 0.99951171875 + }, + { + "word": " sue", + "start": 2120.6, + "end": 2121.0, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 2121.0, + "end": 2121.18, + "probability": 1.0 + }, + { + "word": " over", + "start": 2121.18, + "end": 2121.36, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2121.36, + "end": 2121.68, + "probability": 1.0 + } + ] + }, + { + "id": 1136, + "text": "It's.", + "start": 2122.04, + "end": 2122.4, + "words": [ + { + "word": " It's.", + "start": 2122.04, + "end": 2122.4, + "probability": 0.9658203125 + } + ] + }, + { + "id": 1137, + "text": "Whatever.", + "start": 2122.86, + "end": 2123.22, + "words": [ + { + "word": " Whatever.", + "start": 2122.86, + "end": 2123.22, + "probability": 0.95068359375 + } + ] + }, + { + "id": 1138, + "text": "I mean, I understand that they.", + "start": 2123.42, + "end": 2124.98, + "words": [ + { + "word": " I", + "start": 2123.42, + "end": 2123.72, + "probability": 0.99169921875 + }, + { + "word": " mean,", + "start": 2123.72, + "end": 2123.92, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 2123.94, + "end": 2124.18, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2124.18, + "end": 2124.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 2124.64, + "end": 2124.82, + "probability": 0.9990234375 + }, + { + "word": " they.", + "start": 2124.82, + "end": 2124.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1139, + "text": "It is their intellectual.", + "start": 2125.54, + "end": 2126.7, + "words": [ + { + "word": " It", + "start": 2125.54, + "end": 2125.9, + "probability": 0.66455078125 + }, + { + "word": " is", + "start": 2125.9, + "end": 2126.06, + "probability": 0.884765625 + }, + { + "word": " their", + "start": 2126.06, + "end": 2126.34, + "probability": 0.97509765625 + }, + { + "word": " intellectual.", + "start": 2126.34, + "end": 2126.7, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1140, + "text": "They're short on cash over there at Apple.", + "start": 2126.7, + "end": 2128.6, + "words": [ + { + "word": " They're", + "start": 2126.7, + "end": 2126.9, + "probability": 0.99755859375 + }, + { + "word": " short", + "start": 2126.9, + "end": 2127.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 2127.12, + "end": 2127.32, + "probability": 1.0 + }, + { + "word": " cash", + "start": 2127.32, + "end": 2127.66, + "probability": 1.0 + }, + { + "word": " over", + "start": 2127.66, + "end": 2127.94, + "probability": 0.966796875 + }, + { + "word": " there", + "start": 2127.94, + "end": 2128.16, + "probability": 0.986328125 + }, + { + "word": " at", + "start": 2128.16, + "end": 2128.28, + "probability": 0.802734375 + }, + { + "word": " Apple.", + "start": 2128.28, + "end": 2128.6, + "probability": 1.0 + } + ] + }, + { + "id": 1141, + "text": "Yeah.", + "start": 2128.6, + "end": 2128.9, + "words": [ + { + "word": " Yeah.", + "start": 2128.6, + "end": 2128.9, + "probability": 0.457275390625 + } + ] + }, + { + "id": 1142, + "text": "They're short on cash.", + "start": 2128.9, + "end": 2129.72, + "words": [ + { + "word": " They're", + "start": 2128.9, + "end": 2129.22, + "probability": 0.966796875 + }, + { + "word": " short", + "start": 2129.22, + "end": 2129.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 2129.4, + "end": 2129.54, + "probability": 1.0 + }, + { + "word": " cash.", + "start": 2129.54, + "end": 2129.72, + "probability": 1.0 + } + ] + }, + { + "id": 1143, + "text": "They only have $86 billion in liquid assets.", + "start": 2129.72, + "end": 2132.46, + "words": [ + { + "word": " They", + "start": 2129.72, + "end": 2129.82, + "probability": 0.99267578125 + }, + { + "word": " only", + "start": 2129.82, + "end": 2129.94, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 2129.94, + "end": 2130.12, + "probability": 1.0 + }, + { + "word": " $86", + "start": 2130.12, + "end": 2130.62, + "probability": 0.83984375 + }, + { + "word": " billion", + "start": 2130.62, + "end": 2131.18, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 2131.18, + "end": 2131.92, + "probability": 0.99951171875 + }, + { + "word": " liquid", + "start": 2131.92, + "end": 2132.14, + "probability": 0.9990234375 + }, + { + "word": " assets.", + "start": 2132.14, + "end": 2132.46, + "probability": 1.0 + } + ] + }, + { + "id": 1144, + "text": "But, you know, you got to keep.", + "start": 2132.76, + "end": 2135.58, + "words": [ + { + "word": " But,", + "start": 2132.76, + "end": 2133.12, + "probability": 0.98779296875 + }, + { + "word": " you", + "start": 2133.12, + "end": 2134.44, + "probability": 0.9833984375 + }, + { + "word": " know,", + "start": 2134.44, + "end": 2134.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 2134.72, + "end": 2135.06, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2135.06, + "end": 2135.34, + "probability": 0.71240234375 + }, + { + "word": " to", + "start": 2135.34, + "end": 2135.44, + "probability": 1.0 + }, + { + "word": " keep.", + "start": 2135.44, + "end": 2135.58, + "probability": 0.80078125 + } + ] + }, + { + "id": 1145, + "text": "Well, you got to watch the bottom line.", + "start": 2135.62, + "end": 2136.9, + "words": [ + { + "word": " Well,", + "start": 2135.62, + "end": 2135.78, + "probability": 0.72216796875 + }, + { + "word": " you", + "start": 2135.78, + "end": 2135.86, + "probability": 0.9970703125 + }, + { + "word": " got", + "start": 2135.86, + "end": 2135.98, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2135.98, + "end": 2136.06, + "probability": 1.0 + }, + { + "word": " watch", + "start": 2136.06, + "end": 2136.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 2136.22, + "end": 2136.38, + "probability": 1.0 + }, + { + "word": " bottom", + "start": 2136.38, + "end": 2136.6, + "probability": 1.0 + }, + { + "word": " line.", + "start": 2136.6, + "end": 2136.9, + "probability": 1.0 + } + ] + }, + { + "id": 1146, + "text": "They have more money than the government.", + "start": 2137.08, + "end": 2137.96, + "words": [ + { + "word": " They", + "start": 2137.08, + "end": 2137.14, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 2137.14, + "end": 2137.2, + "probability": 1.0 + }, + { + "word": " more", + "start": 2137.2, + "end": 2137.32, + "probability": 1.0 + }, + { + "word": " money", + "start": 2137.32, + "end": 2137.52, + "probability": 1.0 + }, + { + "word": " than", + "start": 2137.52, + "end": 2137.6, + "probability": 0.90576171875 + }, + { + "word": " the", + "start": 2137.6, + "end": 2137.72, + "probability": 1.0 + }, + { + "word": " government.", + "start": 2137.72, + "end": 2137.96, + "probability": 1.0 + } + ] + }, + { + "id": 1147, + "text": "Well, actually, last time I heard, I had more money than the government.", + "start": 2138.56, + "end": 2141.02, + "words": [ + { + "word": " Well,", + "start": 2138.56, + "end": 2138.92, + "probability": 0.93603515625 + }, + { + "word": " actually,", + "start": 2139.06, + "end": 2139.06, + "probability": 1.0 + }, + { + "word": " last", + "start": 2139.22, + "end": 2139.7, + "probability": 0.80029296875 + }, + { + "word": " time", + "start": 2139.7, + "end": 2139.98, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2139.98, + "end": 2140.08, + "probability": 1.0 + }, + { + "word": " heard,", + "start": 2140.08, + "end": 2140.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 2140.26, + "end": 2140.32, + "probability": 1.0 + }, + { + "word": " had", + "start": 2140.32, + "end": 2140.42, + "probability": 0.4765625 + }, + { + "word": " more", + "start": 2140.42, + "end": 2140.52, + "probability": 1.0 + }, + { + "word": " money", + "start": 2140.52, + "end": 2140.7, + "probability": 1.0 + }, + { + "word": " than", + "start": 2140.7, + "end": 2140.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2140.8, + "end": 2140.86, + "probability": 0.99951171875 + }, + { + "word": " government.", + "start": 2140.86, + "end": 2141.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1148, + "text": "All right.", + "start": 2142.2999999999997, + "end": 2143.02, + "words": [ + { + "word": " All", + "start": 2142.2999999999997, + "end": 2142.66, + "probability": 0.90087890625 + }, + { + "word": " right.", + "start": 2142.66, + "end": 2143.02, + "probability": 1.0 + } + ] + }, + { + "id": 1149, + "text": "So, speaking of Flash.", + "start": 2143.06, + "end": 2144.7, + "words": [ + { + "word": " So,", + "start": 2143.06, + "end": 2143.24, + "probability": 0.9912109375 + }, + { + "word": " speaking", + "start": 2143.38, + "end": 2144.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2144.0, + "end": 2144.3, + "probability": 1.0 + }, + { + "word": " Flash.", + "start": 2144.3, + "end": 2144.7, + "probability": 0.5341796875 + } + ] + }, + { + "id": 1150, + "text": "Yes, Flash.", + "start": 2145.02, + "end": 2145.68, + "words": [ + { + "word": " Yes,", + "start": 2145.02, + "end": 2145.36, + "probability": 0.99560546875 + }, + { + "word": " Flash.", + "start": 2145.36, + "end": 2145.68, + "probability": 1.0 + } + ] + }, + { + "id": 1151, + "text": "All right.", + "start": 2145.82, + "end": 2146.04, + "words": [ + { + "word": " All", + "start": 2145.82, + "end": 2146.02, + "probability": 0.95458984375 + }, + { + "word": " right.", + "start": 2146.02, + "end": 2146.04, + "probability": 1.0 + } + ] + }, + { + "id": 1152, + "text": "Say it again.", + "start": 2146.08, + "end": 2146.4, + "words": [ + { + "word": " Say", + "start": 2146.08, + "end": 2146.22, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2146.22, + "end": 2146.28, + "probability": 0.998046875 + }, + { + "word": " again.", + "start": 2146.28, + "end": 2146.4, + "probability": 1.0 + } + ] + }, + { + "id": 1153, + "text": "Flash.", + "start": 2146.64, + "end": 2146.94, + "words": [ + { + "word": " Flash.", + "start": 2146.64, + "end": 2146.94, + "probability": 0.994140625 + } + ] + }, + { + "id": 1154, + "text": "Flash.", + "start": 2147.28, + "end": 2147.36, + "words": [ + { + "word": " Flash.", + "start": 2147.28, + "end": 2147.36, + "probability": 2.4437904357910156e-06 + } + ] + }, + { + "id": 1155, + "text": "Steve Jobs is gone.", + "start": 2147.56, + "end": 2148.42, + "words": [ + { + "word": " Steve", + "start": 2147.56, + "end": 2147.88, + "probability": 0.994140625 + }, + { + "word": " Jobs", + "start": 2147.88, + "end": 2148.08, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2148.08, + "end": 2148.22, + "probability": 0.982421875 + }, + { + "word": " gone.", + "start": 2148.22, + "end": 2148.42, + "probability": 1.0 + } + ] + }, + { + "id": 1156, + "text": "Oh, yeah.", + "start": 2148.52, + "end": 2148.96, + "words": [ + { + "word": " Oh,", + "start": 2148.52, + "end": 2148.8, + "probability": 0.998046875 + }, + { + "word": " yeah.", + "start": 2148.8, + "end": 2148.96, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1157, + "text": "So, now that Flash.", + "start": 2149.02, + "end": 2149.78, + "words": [ + { + "word": " So,", + "start": 2149.02, + "end": 2149.2, + "probability": 0.98486328125 + }, + { + "word": " now", + "start": 2149.28, + "end": 2149.38, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2149.38, + "end": 2149.44, + "probability": 0.9619140625 + }, + { + "word": " Flash.", + "start": 2149.44, + "end": 2149.78, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1158, + "text": "You know, Steve Jobs is gone.", + "start": 2150.06, + "end": 2151.16, + "words": [ + { + "word": " You", + "start": 2150.06, + "end": 2150.34, + "probability": 0.57958984375 + }, + { + "word": " know,", + "start": 2150.34, + "end": 2150.5, + "probability": 1.0 + }, + { + "word": " Steve", + "start": 2150.5, + "end": 2150.7, + "probability": 0.99853515625 + }, + { + "word": " Jobs", + "start": 2150.7, + "end": 2150.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 2150.88, + "end": 2151.0, + "probability": 1.0 + }, + { + "word": " gone.", + "start": 2151.0, + "end": 2151.16, + "probability": 1.0 + } + ] + }, + { + "id": 1159, + "text": "Now, Apple's getting Flash.", + "start": 2151.2, + "end": 2152.38, + "words": [ + { + "word": " Now,", + "start": 2151.2, + "end": 2151.38, + "probability": 0.994140625 + }, + { + "word": " Apple's", + "start": 2151.46, + "end": 2152.02, + "probability": 0.92578125 + }, + { + "word": " getting", + "start": 2152.02, + "end": 2152.14, + "probability": 1.0 + }, + { + "word": " Flash.", + "start": 2152.14, + "end": 2152.38, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1160, + "text": "Yes.", + "start": 2152.54, + "end": 2152.74, + "words": [ + { + "word": " Yes.", + "start": 2152.54, + "end": 2152.74, + "probability": 0.94482421875 + } + ] + }, + { + "id": 1161, + "text": "All of the iOS devices are getting Flash now.", + "start": 2152.76, + "end": 2155.1, + "words": [ + { + "word": " All", + "start": 2152.76, + "end": 2153.0, + "probability": 0.9775390625 + }, + { + "word": " of", + "start": 2153.0, + "end": 2153.16, + "probability": 0.9853515625 + }, + { + "word": " the", + "start": 2153.16, + "end": 2153.3, + "probability": 1.0 + }, + { + "word": " iOS", + "start": 2153.3, + "end": 2153.54, + "probability": 0.98779296875 + }, + { + "word": " devices", + "start": 2153.54, + "end": 2153.9, + "probability": 1.0 + }, + { + "word": " are", + "start": 2153.9, + "end": 2154.28, + "probability": 1.0 + }, + { + "word": " getting", + "start": 2154.28, + "end": 2154.44, + "probability": 1.0 + }, + { + "word": " Flash", + "start": 2154.44, + "end": 2154.76, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2154.76, + "end": 2155.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1162, + "text": "Wow.", + "start": 2155.26, + "end": 2155.48, + "words": [ + { + "word": " Wow.", + "start": 2155.26, + "end": 2155.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1163, + "text": "So, all it took was Jobs to leave.", + "start": 2155.56, + "end": 2156.76, + "words": [ + { + "word": " So,", + "start": 2155.56, + "end": 2155.72, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 2155.76, + "end": 2155.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 2155.84, + "end": 2155.94, + "probability": 1.0 + }, + { + "word": " took", + "start": 2155.94, + "end": 2156.08, + "probability": 1.0 + }, + { + "word": " was", + "start": 2156.08, + "end": 2156.2, + "probability": 1.0 + }, + { + "word": " Jobs", + "start": 2156.2, + "end": 2156.46, + "probability": 0.99072265625 + }, + { + "word": " to", + "start": 2156.46, + "end": 2156.58, + "probability": 0.9921875 + }, + { + "word": " leave.", + "start": 2156.58, + "end": 2156.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1164, + "text": "Yes.", + "start": 2156.92, + "end": 2157.12, + "words": [ + { + "word": " Yes.", + "start": 2156.92, + "end": 2157.12, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1165, + "text": "iOS 5, when it comes out, will have Flash built in, which will be nice.", + "start": 2157.14, + "end": 2161.08, + "words": [ + { + "word": " iOS", + "start": 2157.14, + "end": 2157.38, + "probability": 0.7919921875 + }, + { + "word": " 5,", + "start": 2157.38, + "end": 2157.76, + "probability": 0.9970703125 + }, + { + "word": " when", + "start": 2157.84, + "end": 2158.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 2158.06, + "end": 2158.14, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2158.14, + "end": 2158.34, + "probability": 1.0 + }, + { + "word": " out,", + "start": 2158.34, + "end": 2158.52, + "probability": 1.0 + }, + { + "word": " will", + "start": 2158.54, + "end": 2158.7, + "probability": 0.951171875 + }, + { + "word": " have", + "start": 2158.7, + "end": 2158.88, + "probability": 1.0 + }, + { + "word": " Flash", + "start": 2158.88, + "end": 2159.26, + "probability": 1.0 + }, + { + "word": " built", + "start": 2159.26, + "end": 2159.64, + "probability": 1.0 + }, + { + "word": " in,", + "start": 2159.64, + "end": 2159.94, + "probability": 0.9990234375 + }, + { + "word": " which", + "start": 2160.0, + "end": 2160.64, + "probability": 1.0 + }, + { + "word": " will", + "start": 2160.64, + "end": 2160.68, + "probability": 1.0 + }, + { + "word": " be", + "start": 2160.68, + "end": 2160.82, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 2160.82, + "end": 2161.08, + "probability": 1.0 + } + ] + }, + { + "id": 1166, + "text": "So, you can actually, like, use the thing.", + "start": 2161.08, + "end": 2163.58, + "words": [ + { + "word": " So,", + "start": 2161.08, + "end": 2161.3, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2161.3, + "end": 2161.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 2161.36, + "end": 2161.5, + "probability": 1.0 + }, + { + "word": " actually,", + "start": 2161.5, + "end": 2161.78, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2161.84, + "end": 2162.24, + "probability": 1.0 + }, + { + "word": " use", + "start": 2162.26, + "end": 2162.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 2162.74, + "end": 2163.42, + "probability": 0.931640625 + }, + { + "word": " thing.", + "start": 2163.42, + "end": 2163.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1167, + "text": "I'll believe it when I see it.", + "start": 2163.66, + "end": 2164.76, + "words": [ + { + "word": " I'll", + "start": 2163.66, + "end": 2163.98, + "probability": 0.99609375 + }, + { + "word": " believe", + "start": 2163.98, + "end": 2164.12, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 2164.12, + "end": 2164.24, + "probability": 0.9931640625 + }, + { + "word": " when", + "start": 2164.24, + "end": 2164.3, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2164.3, + "end": 2164.4, + "probability": 1.0 + }, + { + "word": " see", + "start": 2164.4, + "end": 2164.58, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2164.58, + "end": 2164.76, + "probability": 1.0 + } + ] + }, + { + "id": 1168, + "text": "Because, you know, they talked about this for iOS 4.", + "start": 2164.94, + "end": 2167.16, + "words": [ + { + "word": " Because,", + "start": 2164.94, + "end": 2165.26, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2165.34, + "end": 2165.5, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2165.5, + "end": 2165.54, + "probability": 1.0 + }, + { + "word": " they", + "start": 2165.56, + "end": 2165.66, + "probability": 1.0 + }, + { + "word": " talked", + "start": 2165.66, + "end": 2165.98, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2165.98, + "end": 2166.18, + "probability": 1.0 + }, + { + "word": " this", + "start": 2166.18, + "end": 2166.38, + "probability": 1.0 + }, + { + "word": " for", + "start": 2166.38, + "end": 2166.48, + "probability": 0.9921875 + }, + { + "word": " iOS", + "start": 2166.48, + "end": 2166.76, + "probability": 1.0 + }, + { + "word": " 4.", + "start": 2166.76, + "end": 2167.16, + "probability": 1.0 + } + ] + }, + { + "id": 1169, + "text": "It was rumored for iOS 4 and iOS 3.", + "start": 2167.32, + "end": 2169.22, + "words": [ + { + "word": " It", + "start": 2167.32, + "end": 2167.5, + "probability": 0.56201171875 + }, + { + "word": " was", + "start": 2167.5, + "end": 2167.66, + "probability": 1.0 + }, + { + "word": " rumored", + "start": 2167.66, + "end": 2167.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 2167.96, + "end": 2168.04, + "probability": 0.99853515625 + }, + { + "word": " iOS", + "start": 2168.04, + "end": 2168.2, + "probability": 1.0 + }, + { + "word": " 4", + "start": 2168.2, + "end": 2168.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 2168.52, + "end": 2168.68, + "probability": 0.97119140625 + }, + { + "word": " iOS", + "start": 2168.68, + "end": 2168.9, + "probability": 0.99951171875 + }, + { + "word": " 3.", + "start": 2168.9, + "end": 2169.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1170, + "text": "I mean, I'll believe what I see.", + "start": 2169.34, + "end": 2170.62, + "words": [ + { + "word": " I", + "start": 2169.34, + "end": 2169.4, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 2169.4, + "end": 2169.46, + "probability": 0.95556640625 + }, + { + "word": " I'll", + "start": 2169.5, + "end": 2170.12, + "probability": 1.0 + }, + { + "word": " believe", + "start": 2170.12, + "end": 2170.32, + "probability": 1.0 + }, + { + "word": " what", + "start": 2170.32, + "end": 2170.46, + "probability": 0.568359375 + }, + { + "word": " I", + "start": 2170.46, + "end": 2170.54, + "probability": 0.9970703125 + }, + { + "word": " see.", + "start": 2170.54, + "end": 2170.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1171, + "text": "Steve Jobs is still there.", + "start": 2170.62, + "end": 2171.62, + "words": [ + { + "word": " Steve", + "start": 2170.62, + "end": 2170.84, + "probability": 0.413330078125 + }, + { + "word": " Jobs", + "start": 2170.84, + "end": 2171.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 2171.08, + "end": 2171.26, + "probability": 0.943359375 + }, + { + "word": " still", + "start": 2171.26, + "end": 2171.46, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2171.46, + "end": 2171.62, + "probability": 1.0 + } + ] + }, + { + "id": 1172, + "text": "Yeah, I know.", + "start": 2171.72, + "end": 2172.16, + "words": [ + { + "word": " Yeah,", + "start": 2171.72, + "end": 2171.9, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2171.92, + "end": 2171.96, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2171.96, + "end": 2172.16, + "probability": 1.0 + } + ] + }, + { + "id": 1173, + "text": "But, still.", + "start": 2172.2, + "end": 2172.74, + "words": [ + { + "word": " But,", + "start": 2172.2, + "end": 2172.42, + "probability": 0.99462890625 + }, + { + "word": " still.", + "start": 2172.48, + "end": 2172.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1174, + "text": "He still has a big foothold in the company.", + "start": 2172.74, + "end": 2174.84, + "words": [ + { + "word": " He", + "start": 2172.74, + "end": 2172.9, + "probability": 0.9970703125 + }, + { + "word": " still", + "start": 2172.9, + "end": 2173.08, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 2173.08, + "end": 2173.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 2173.26, + "end": 2173.42, + "probability": 1.0 + }, + { + "word": " big", + "start": 2173.42, + "end": 2173.62, + "probability": 0.99853515625 + }, + { + "word": " foothold", + "start": 2173.62, + "end": 2174.36, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 2174.36, + "end": 2174.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2174.52, + "end": 2174.56, + "probability": 1.0 + }, + { + "word": " company.", + "start": 2174.56, + "end": 2174.84, + "probability": 1.0 + } + ] + }, + { + "id": 1175, + "text": "He can still just nix it if he wanted to.", + "start": 2175.04, + "end": 2176.78, + "words": [ + { + "word": " He", + "start": 2175.04, + "end": 2175.26, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 2175.26, + "end": 2175.38, + "probability": 0.98681640625 + }, + { + "word": " still", + "start": 2175.38, + "end": 2175.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 2175.56, + "end": 2175.78, + "probability": 0.99951171875 + }, + { + "word": " nix", + "start": 2175.78, + "end": 2176.08, + "probability": 0.984375 + }, + { + "word": " it", + "start": 2176.08, + "end": 2176.18, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 2176.18, + "end": 2176.28, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 2176.28, + "end": 2176.32, + "probability": 0.99658203125 + }, + { + "word": " wanted", + "start": 2176.32, + "end": 2176.56, + "probability": 1.0 + }, + { + "word": " to.", + "start": 2176.56, + "end": 2176.78, + "probability": 1.0 + } + ] + }, + { + "id": 1176, + "text": "Oh, come on.", + "start": 2177.28, + "end": 2178.06, + "words": [ + { + "word": " Oh,", + "start": 2177.28, + "end": 2177.54, + "probability": 0.9970703125 + }, + { + "word": " come", + "start": 2177.54, + "end": 2177.76, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2177.76, + "end": 2178.06, + "probability": 1.0 + } + ] + }, + { + "id": 1177, + "text": "Come on.", + "start": 2178.1, + "end": 2178.54, + "words": [ + { + "word": " Come", + "start": 2178.1, + "end": 2178.3, + "probability": 0.98583984375 + }, + { + "word": " on.", + "start": 2178.3, + "end": 2178.54, + "probability": 1.0 + } + ] + }, + { + "id": 1178, + "text": "It's Jobs.", + "start": 2178.54, + "end": 2178.94, + "words": [ + { + "word": " It's", + "start": 2178.54, + "end": 2178.72, + "probability": 0.998046875 + }, + { + "word": " Jobs.", + "start": 2178.72, + "end": 2178.94, + "probability": 0.87841796875 + } + ] + }, + { + "id": 1179, + "text": "He created that company.", + "start": 2179.04, + "end": 2179.9, + "words": [ + { + "word": " He", + "start": 2179.04, + "end": 2179.2, + "probability": 0.90673828125 + }, + { + "word": " created", + "start": 2179.2, + "end": 2179.46, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2179.46, + "end": 2179.58, + "probability": 1.0 + }, + { + "word": " company.", + "start": 2179.58, + "end": 2179.9, + "probability": 1.0 + } + ] + }, + { + "id": 1180, + "text": "And over again.", + "start": 2180.08, + "end": 2181.02, + "words": [ + { + "word": " And", + "start": 2180.08, + "end": 2180.4, + "probability": 0.66455078125 + }, + { + "word": " over", + "start": 2180.4, + "end": 2180.4, + "probability": 0.998046875 + }, + { + "word": " again.", + "start": 2180.4, + "end": 2181.02, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1181, + "text": "Twice.", + "start": 2181.36, + "end": 2181.68, + "words": [ + { + "word": " Twice.", + "start": 2181.36, + "end": 2181.68, + "probability": 0.77783203125 + } + ] + }, + { + "id": 1182, + "text": "That's right.", + "start": 2182.3, + "end": 2182.66, + "words": [ + { + "word": " That's", + "start": 2182.3, + "end": 2182.62, + "probability": 0.78466796875 + }, + { + "word": " right.", + "start": 2182.62, + "end": 2182.66, + "probability": 1.0 + } + ] + }, + { + "id": 1183, + "text": "So, it'll be nice to actually have some Flash compatibility with your iOS device.", + "start": 2183.7799999999997, + "end": 2187.58, + "words": [ + { + "word": " So,", + "start": 2183.7799999999997, + "end": 2184.1, + "probability": 0.9462890625 + }, + { + "word": " it'll", + "start": 2184.1, + "end": 2184.42, + "probability": 0.57373046875 + }, + { + "word": " be", + "start": 2184.42, + "end": 2184.5, + "probability": 1.0 + }, + { + "word": " nice", + "start": 2184.5, + "end": 2184.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 2184.7, + "end": 2184.82, + "probability": 1.0 + }, + { + "word": " actually", + "start": 2184.82, + "end": 2185.0, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2185.0, + "end": 2185.16, + "probability": 1.0 + }, + { + "word": " some", + "start": 2185.16, + "end": 2185.32, + "probability": 1.0 + }, + { + "word": " Flash", + "start": 2185.32, + "end": 2185.6, + "probability": 0.90673828125 + }, + { + "word": " compatibility", + "start": 2185.6, + "end": 2186.2, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 2186.2, + "end": 2186.78, + "probability": 1.0 + }, + { + "word": " your", + "start": 2186.78, + "end": 2186.98, + "probability": 1.0 + }, + { + "word": " iOS", + "start": 2186.98, + "end": 2187.26, + "probability": 0.99560546875 + }, + { + "word": " device.", + "start": 2187.26, + "end": 2187.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1184, + "text": "Yeah, it would be pretty cool, I guess.", + "start": 2187.82, + "end": 2188.96, + "words": [ + { + "word": " Yeah,", + "start": 2187.82, + "end": 2187.98, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 2188.02, + "end": 2188.12, + "probability": 1.0 + }, + { + "word": " would", + "start": 2188.12, + "end": 2188.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 2188.2, + "end": 2188.32, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 2188.32, + "end": 2188.5, + "probability": 1.0 + }, + { + "word": " cool,", + "start": 2188.5, + "end": 2188.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 2188.72, + "end": 2188.82, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 2188.82, + "end": 2188.96, + "probability": 1.0 + } + ] + }, + { + "id": 1185, + "text": "Yeah.", + "start": 2189.28, + "end": 2189.6, + "words": [ + { + "word": " Yeah.", + "start": 2189.28, + "end": 2189.6, + "probability": 0.9521484375 + } + ] + }, + { + "id": 1186, + "text": "Because, right now, you know, I spend a lot of time going, I can't do that.", + "start": 2189.76, + "end": 2192.98, + "words": [ + { + "word": " Because,", + "start": 2189.76, + "end": 2190.08, + "probability": 0.9951171875 + }, + { + "word": " right", + "start": 2190.12, + "end": 2190.24, + "probability": 1.0 + }, + { + "word": " now,", + "start": 2190.24, + "end": 2190.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 2190.52, + "end": 2190.74, + "probability": 0.2568359375 + }, + { + "word": " know,", + "start": 2190.74, + "end": 2190.9, + "probability": 1.0 + }, + { + "word": " I", + "start": 2190.9, + "end": 2190.98, + "probability": 1.0 + }, + { + "word": " spend", + "start": 2190.98, + "end": 2191.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 2191.2, + "end": 2191.32, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2191.32, + "end": 2191.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 2191.44, + "end": 2191.52, + "probability": 1.0 + }, + { + "word": " time", + "start": 2191.52, + "end": 2191.64, + "probability": 1.0 + }, + { + "word": " going,", + "start": 2191.64, + "end": 2191.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 2191.98, + "end": 2192.2, + "probability": 0.9990234375 + }, + { + "word": " can't", + "start": 2192.2, + "end": 2192.6, + "probability": 1.0 + }, + { + "word": " do", + "start": 2192.6, + "end": 2192.76, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2192.76, + "end": 2192.98, + "probability": 1.0 + } + ] + }, + { + "id": 1187, + "text": "It's Flash.", + "start": 2193.04, + "end": 2193.5, + "words": [ + { + "word": " It's", + "start": 2193.04, + "end": 2193.26, + "probability": 0.998046875 + }, + { + "word": " Flash.", + "start": 2193.26, + "end": 2193.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1188, + "text": "Well, that's one of the biggest things that, you know, I have a lot of customers that we", + "start": 2193.62, + "end": 2196.14, + "words": [ + { + "word": " Well,", + "start": 2193.62, + "end": 2193.8, + "probability": 0.9970703125 + }, + { + "word": " that's", + "start": 2193.82, + "end": 2193.94, + "probability": 1.0 + }, + { + "word": " one", + "start": 2193.94, + "end": 2194.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 2194.04, + "end": 2194.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2194.12, + "end": 2194.14, + "probability": 1.0 + }, + { + "word": " biggest", + "start": 2194.14, + "end": 2194.3, + "probability": 1.0 + }, + { + "word": " things", + "start": 2194.3, + "end": 2194.52, + "probability": 1.0 + }, + { + "word": " that,", + "start": 2194.52, + "end": 2194.8, + "probability": 0.9267578125 + }, + { + "word": " you", + "start": 2194.8, + "end": 2195.06, + "probability": 0.99658203125 + }, + { + "word": " know,", + "start": 2195.06, + "end": 2195.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 2195.2, + "end": 2195.3, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2195.3, + "end": 2195.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2195.42, + "end": 2195.5, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2195.5, + "end": 2195.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 2195.58, + "end": 2195.64, + "probability": 1.0 + }, + { + "word": " customers", + "start": 2195.64, + "end": 2195.88, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2195.88, + "end": 2196.02, + "probability": 1.0 + }, + { + "word": " we", + "start": 2196.02, + "end": 2196.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1189, + "text": "build websites for.", + "start": 2196.14, + "end": 2196.92, + "words": [ + { + "word": " build", + "start": 2196.14, + "end": 2196.28, + "probability": 1.0 + }, + { + "word": " websites", + "start": 2196.28, + "end": 2196.56, + "probability": 0.998046875 + }, + { + "word": " for.", + "start": 2196.56, + "end": 2196.92, + "probability": 1.0 + } + ] + }, + { + "id": 1190, + "text": "By the way, we build websites.", + "start": 2197.0, + "end": 2197.92, + "words": [ + { + "word": " By", + "start": 2197.0, + "end": 2197.22, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2197.22, + "end": 2197.32, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2197.32, + "end": 2197.42, + "probability": 1.0 + }, + { + "word": " we", + "start": 2197.46, + "end": 2197.54, + "probability": 1.0 + }, + { + "word": " build", + "start": 2197.54, + "end": 2197.64, + "probability": 1.0 + }, + { + "word": " websites.", + "start": 2197.64, + "end": 2197.92, + "probability": 1.0 + } + ] + }, + { + "id": 1191, + "text": "And, the biggest hindrance that I don't, the reason I don't pitch a lot of Flash websites", + "start": 2198.7, + "end": 2202.2, + "words": [ + { + "word": " And,", + "start": 2198.7, + "end": 2199.02, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 2199.02, + "end": 2199.34, + "probability": 0.75341796875 + }, + { + "word": " biggest", + "start": 2199.34, + "end": 2199.76, + "probability": 0.9990234375 + }, + { + "word": " hindrance", + "start": 2199.76, + "end": 2200.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2200.14, + "end": 2200.3, + "probability": 0.57177734375 + }, + { + "word": " I", + "start": 2200.3, + "end": 2200.42, + "probability": 0.99951171875 + }, + { + "word": " don't,", + "start": 2200.42, + "end": 2200.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 2200.7, + "end": 2200.84, + "probability": 0.99951171875 + }, + { + "word": " reason", + "start": 2200.84, + "end": 2201.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 2201.0, + "end": 2201.12, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2201.12, + "end": 2201.3, + "probability": 1.0 + }, + { + "word": " pitch", + "start": 2201.3, + "end": 2201.46, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2201.46, + "end": 2201.58, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2201.58, + "end": 2201.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 2201.66, + "end": 2201.74, + "probability": 1.0 + }, + { + "word": " Flash", + "start": 2201.74, + "end": 2201.92, + "probability": 0.99951171875 + }, + { + "word": " websites", + "start": 2201.92, + "end": 2202.2, + "probability": 1.0 + } + ] + }, + { + "id": 1192, + "text": "for my customers is you can't access them on iPads or iPhones.", + "start": 2202.2, + "end": 2206.62, + "words": [ + { + "word": " for", + "start": 2202.2, + "end": 2202.42, + "probability": 0.9873046875 + }, + { + "word": " my", + "start": 2202.42, + "end": 2202.52, + "probability": 1.0 + }, + { + "word": " customers", + "start": 2202.52, + "end": 2202.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 2202.82, + "end": 2203.02, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 2203.02, + "end": 2203.12, + "probability": 0.990234375 + }, + { + "word": " can't", + "start": 2203.12, + "end": 2203.36, + "probability": 1.0 + }, + { + "word": " access", + "start": 2203.36, + "end": 2203.74, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 2203.74, + "end": 2203.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 2203.98, + "end": 2204.2, + "probability": 1.0 + }, + { + "word": " iPads", + "start": 2204.2, + "end": 2205.12, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 2205.12, + "end": 2205.84, + "probability": 0.4306640625 + }, + { + "word": " iPhones.", + "start": 2205.84, + "end": 2206.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1193, + "text": "You can on Droids, but not iPads.", + "start": 2207.28, + "end": 2208.62, + "words": [ + { + "word": " You", + "start": 2207.28, + "end": 2207.4, + "probability": 0.89013671875 + }, + { + "word": " can", + "start": 2207.4, + "end": 2207.48, + "probability": 0.9755859375 + }, + { + "word": " on", + "start": 2207.48, + "end": 2207.6, + "probability": 0.693359375 + }, + { + "word": " Droids,", + "start": 2207.6, + "end": 2207.96, + "probability": 0.6767578125 + }, + { + "word": " but", + "start": 2207.96, + "end": 2208.08, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2208.08, + "end": 2208.18, + "probability": 0.99462890625 + }, + { + "word": " iPads.", + "start": 2208.18, + "end": 2208.62, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1194, + "text": "So, that's the biggest reason why I haven't pitched that many.", + "start": 2209.52, + "end": 2211.68, + "words": [ + { + "word": " So,", + "start": 2209.52, + "end": 2209.8, + "probability": 0.9775390625 + }, + { + "word": " that's", + "start": 2209.82, + "end": 2209.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2209.94, + "end": 2210.0, + "probability": 1.0 + }, + { + "word": " biggest", + "start": 2210.0, + "end": 2210.16, + "probability": 0.99951171875 + }, + { + "word": " reason", + "start": 2210.16, + "end": 2210.34, + "probability": 1.0 + }, + { + "word": " why", + "start": 2210.34, + "end": 2210.52, + "probability": 0.990234375 + }, + { + "word": " I", + "start": 2210.52, + "end": 2210.62, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 2210.62, + "end": 2210.64, + "probability": 0.94921875 + }, + { + "word": " pitched", + "start": 2210.64, + "end": 2211.36, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2211.36, + "end": 2211.54, + "probability": 0.84912109375 + }, + { + "word": " many.", + "start": 2211.54, + "end": 2211.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1195, + "text": "But, I guess, now, I don't have that excuse anymore.", + "start": 2212.36, + "end": 2214.46, + "words": [ + { + "word": " But,", + "start": 2212.36, + "end": 2212.64, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 2212.72, + "end": 2212.76, + "probability": 1.0 + }, + { + "word": " guess,", + "start": 2212.76, + "end": 2212.98, + "probability": 1.0 + }, + { + "word": " now,", + "start": 2212.98, + "end": 2213.14, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2213.24, + "end": 2213.4, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2213.4, + "end": 2213.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 2213.64, + "end": 2213.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 2213.72, + "end": 2213.92, + "probability": 0.998046875 + }, + { + "word": " excuse", + "start": 2213.92, + "end": 2214.18, + "probability": 0.99755859375 + }, + { + "word": " anymore.", + "start": 2214.18, + "end": 2214.46, + "probability": 0.9765625 + } + ] + }, + { + "id": 1196, + "text": "Yeah, now, you'll be able to pitch the right type of website.", + "start": 2214.52, + "end": 2216.2, + "words": [ + { + "word": " Yeah,", + "start": 2214.52, + "end": 2214.72, + "probability": 0.326904296875 + }, + { + "word": " now,", + "start": 2214.72, + "end": 2214.72, + "probability": 0.98974609375 + }, + { + "word": " you'll", + "start": 2214.74, + "end": 2214.92, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2214.92, + "end": 2215.02, + "probability": 1.0 + }, + { + "word": " able", + "start": 2215.02, + "end": 2215.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 2215.1, + "end": 2215.22, + "probability": 1.0 + }, + { + "word": " pitch", + "start": 2215.22, + "end": 2215.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2215.44, + "end": 2215.6, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 2215.6, + "end": 2215.76, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 2215.76, + "end": 2215.98, + "probability": 0.99462890625 + }, + { + "word": " of", + "start": 2215.98, + "end": 2216.12, + "probability": 0.99658203125 + }, + { + "word": " website.", + "start": 2216.12, + "end": 2216.2, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1197, + "text": "Yeah, now, I have to think of another excuse.", + "start": 2216.2, + "end": 2217.22, + "words": [ + { + "word": " Yeah,", + "start": 2216.2, + "end": 2216.28, + "probability": 0.91650390625 + }, + { + "word": " now,", + "start": 2216.28, + "end": 2216.38, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2216.38, + "end": 2216.48, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 2216.48, + "end": 2216.54, + "probability": 0.97900390625 + }, + { + "word": " to", + "start": 2216.54, + "end": 2216.54, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 2216.54, + "end": 2216.72, + "probability": 0.974609375 + }, + { + "word": " of", + "start": 2216.72, + "end": 2216.74, + "probability": 0.998046875 + }, + { + "word": " another", + "start": 2216.74, + "end": 2216.9, + "probability": 1.0 + }, + { + "word": " excuse.", + "start": 2216.9, + "end": 2217.22, + "probability": 1.0 + } + ] + }, + { + "id": 1198, + "text": "Yes.", + "start": 2217.84, + "end": 2218.12, + "words": [ + { + "word": " Yes.", + "start": 2217.84, + "end": 2218.12, + "probability": 0.7978515625 + } + ] + }, + { + "id": 1199, + "text": "Flash is a pain in the butt.", + "start": 2219.62, + "end": 2220.56, + "words": [ + { + "word": " Flash", + "start": 2219.62, + "end": 2219.9, + "probability": 0.9931640625 + }, + { + "word": " is", + "start": 2219.9, + "end": 2220.08, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 2220.08, + "end": 2220.16, + "probability": 1.0 + }, + { + "word": " pain", + "start": 2220.16, + "end": 2220.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 2220.28, + "end": 2220.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 2220.36, + "end": 2220.44, + "probability": 1.0 + }, + { + "word": " butt.", + "start": 2220.44, + "end": 2220.56, + "probability": 1.0 + } + ] + }, + { + "id": 1200, + "text": "That's the only excuse.", + "start": 2220.82, + "end": 2221.86, + "words": [ + { + "word": " That's", + "start": 2220.82, + "end": 2221.1, + "probability": 0.61572265625 + }, + { + "word": " the", + "start": 2221.1, + "end": 2221.24, + "probability": 0.31201171875 + }, + { + "word": " only", + "start": 2221.24, + "end": 2221.64, + "probability": 0.12335205078125 + }, + { + "word": " excuse.", + "start": 2221.64, + "end": 2221.86, + "probability": 0.419677734375 + } + ] + }, + { + "id": 1201, + "text": "No, no.", + "start": 2221.86, + "end": 2221.96, + "words": [ + { + "word": " No,", + "start": 2221.86, + "end": 2221.86, + "probability": 0.91943359375 + }, + { + "word": " no.", + "start": 2221.86, + "end": 2221.96, + "probability": 0.88134765625 + } + ] + }, + { + "id": 1202, + "text": "Actually, I'm finishing up this Flash website right now.", + "start": 2222.04, + "end": 2224.12, + "words": [ + { + "word": " Actually,", + "start": 2222.04, + "end": 2222.32, + "probability": 0.994140625 + }, + { + "word": " I'm", + "start": 2222.4, + "end": 2222.54, + "probability": 1.0 + }, + { + "word": " finishing", + "start": 2222.54, + "end": 2222.86, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 2222.86, + "end": 2223.04, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2223.04, + "end": 2223.14, + "probability": 0.9990234375 + }, + { + "word": " Flash", + "start": 2223.14, + "end": 2223.34, + "probability": 0.99365234375 + }, + { + "word": " website", + "start": 2223.34, + "end": 2223.6, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 2223.6, + "end": 2223.88, + "probability": 0.9912109375 + }, + { + "word": " now.", + "start": 2223.88, + "end": 2224.12, + "probability": 1.0 + } + ] + }, + { + "id": 1203, + "text": "It is going to be absolutely gorgeous.", + "start": 2224.4, + "end": 2225.9, + "words": [ + { + "word": " It", + "start": 2224.4, + "end": 2224.68, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2224.68, + "end": 2224.8, + "probability": 1.0 + }, + { + "word": " going", + "start": 2224.8, + "end": 2224.92, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 2224.92, + "end": 2224.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 2224.96, + "end": 2225.06, + "probability": 1.0 + }, + { + "word": " absolutely", + "start": 2225.06, + "end": 2225.54, + "probability": 1.0 + }, + { + "word": " gorgeous.", + "start": 2225.54, + "end": 2225.9, + "probability": 1.0 + } + ] + }, + { + "id": 1204, + "text": "I can't wait to make it live.", + "start": 2226.0, + "end": 2227.06, + "words": [ + { + "word": " I", + "start": 2226.0, + "end": 2226.14, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 2226.14, + "end": 2226.32, + "probability": 1.0 + }, + { + "word": " wait", + "start": 2226.32, + "end": 2226.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 2226.48, + "end": 2226.68, + "probability": 1.0 + }, + { + "word": " make", + "start": 2226.68, + "end": 2226.78, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2226.78, + "end": 2226.86, + "probability": 1.0 + }, + { + "word": " live.", + "start": 2226.86, + "end": 2227.06, + "probability": 1.0 + } + ] + }, + { + "id": 1205, + "text": "It should be live this week.", + "start": 2227.18, + "end": 2228.08, + "words": [ + { + "word": " It", + "start": 2227.18, + "end": 2227.28, + "probability": 0.99658203125 + }, + { + "word": " should", + "start": 2227.28, + "end": 2227.36, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2227.36, + "end": 2227.44, + "probability": 1.0 + }, + { + "word": " live", + "start": 2227.44, + "end": 2227.62, + "probability": 1.0 + }, + { + "word": " this", + "start": 2227.62, + "end": 2227.82, + "probability": 0.99951171875 + }, + { + "word": " week.", + "start": 2227.82, + "end": 2228.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1206, + "text": "And, then, next week, I'll be able to tell you guys about it and tell you the website", + "start": 2228.12, + "end": 2230.52, + "words": [ + { + "word": " And,", + "start": 2228.12, + "end": 2228.24, + "probability": 0.99365234375 + }, + { + "word": " then,", + "start": 2228.26, + "end": 2228.32, + "probability": 0.73583984375 + }, + { + "word": " next", + "start": 2228.32, + "end": 2228.5, + "probability": 0.99951171875 + }, + { + "word": " week,", + "start": 2228.5, + "end": 2228.6, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 2228.62, + "end": 2228.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 2228.72, + "end": 2228.78, + "probability": 1.0 + }, + { + "word": " able", + "start": 2228.78, + "end": 2228.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 2228.82, + "end": 2228.88, + "probability": 1.0 + }, + { + "word": " tell", + "start": 2228.88, + "end": 2229.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 2229.02, + "end": 2229.1, + "probability": 1.0 + }, + { + "word": " guys", + "start": 2229.1, + "end": 2229.24, + "probability": 1.0 + }, + { + "word": " about", + "start": 2229.24, + "end": 2229.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 2229.44, + "end": 2229.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 2229.68, + "end": 2229.92, + "probability": 0.8125 + }, + { + "word": " tell", + "start": 2229.92, + "end": 2230.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 2230.1, + "end": 2230.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2230.18, + "end": 2230.26, + "probability": 0.9990234375 + }, + { + "word": " website", + "start": 2230.26, + "end": 2230.52, + "probability": 0.7734375 + } + ] + }, + { + "id": 1207, + "text": "so you can look at it and praise how beautiful it is and tell me how awesome I am.", + "start": 2230.52, + "end": 2233.74, + "words": [ + { + "word": " so", + "start": 2230.52, + "end": 2230.8, + "probability": 0.470458984375 + }, + { + "word": " you", + "start": 2230.8, + "end": 2230.88, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2230.88, + "end": 2230.92, + "probability": 1.0 + }, + { + "word": " look", + "start": 2230.92, + "end": 2231.06, + "probability": 1.0 + }, + { + "word": " at", + "start": 2231.06, + "end": 2231.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 2231.18, + "end": 2231.28, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 2231.28, + "end": 2231.32, + "probability": 0.998046875 + }, + { + "word": " praise", + "start": 2231.32, + "end": 2231.58, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 2231.58, + "end": 2232.02, + "probability": 0.99853515625 + }, + { + "word": " beautiful", + "start": 2232.02, + "end": 2232.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 2232.36, + "end": 2232.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 2232.56, + "end": 2232.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 2232.7, + "end": 2232.8, + "probability": 0.9970703125 + }, + { + "word": " tell", + "start": 2232.8, + "end": 2232.92, + "probability": 1.0 + }, + { + "word": " me", + "start": 2232.92, + "end": 2233.0, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 2233.0, + "end": 2233.12, + "probability": 1.0 + }, + { + "word": " awesome", + "start": 2233.12, + "end": 2233.36, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2233.36, + "end": 2233.54, + "probability": 1.0 + }, + { + "word": " am.", + "start": 2233.54, + "end": 2233.74, + "probability": 1.0 + } + ] + }, + { + "id": 1208, + "text": "I am awesome.", + "start": 2234.2, + "end": 2235.0, + "words": [ + { + "word": " I", + "start": 2234.2, + "end": 2234.48, + "probability": 0.9990234375 + }, + { + "word": " am", + "start": 2234.48, + "end": 2234.74, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 2234.74, + "end": 2235.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1209, + "text": "I am.", + "start": 2235.18, + "end": 2236.08, + "words": [ + { + "word": " I", + "start": 2235.18, + "end": 2235.46, + "probability": 0.1265869140625 + }, + { + "word": " am.", + "start": 2235.46, + "end": 2236.08, + "probability": 0.96533203125 + } + ] + }, + { + "id": 1210, + "text": "I am.", + "start": 2236.58, + "end": 2237.08, + "words": [ + { + "word": " I", + "start": 2236.58, + "end": 2236.96, + "probability": 0.12347412109375 + }, + { + "word": " am.", + "start": 2236.96, + "end": 2237.08, + "probability": 0.304931640625 + } + ] + }, + { + "id": 1211, + "text": "This website is amazing.", + "start": 2237.08, + "end": 2237.72, + "words": [ + { + "word": " This", + "start": 2237.08, + "end": 2237.08, + "probability": 0.481689453125 + }, + { + "word": " website", + "start": 2237.08, + "end": 2237.28, + "probability": 0.059661865234375 + }, + { + "word": " is", + "start": 2237.28, + "end": 2237.44, + "probability": 0.71484375 + }, + { + "word": " amazing.", + "start": 2237.44, + "end": 2237.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 1212, + "text": "I amazed myself.", + "start": 2238.02, + "end": 2239.1, + "words": [ + { + "word": " I", + "start": 2238.02, + "end": 2238.4, + "probability": 0.99462890625 + }, + { + "word": " amazed", + "start": 2238.4, + "end": 2238.64, + "probability": 0.67822265625 + }, + { + "word": " myself.", + "start": 2238.64, + "end": 2239.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1213, + "text": "Really?", + "start": 2239.58, + "end": 2239.84, + "words": [ + { + "word": " Really?", + "start": 2239.58, + "end": 2239.84, + "probability": 0.97119140625 + } + ] + }, + { + "id": 1214, + "text": "Well, that's not hard to do.", + "start": 2239.94, + "end": 2240.96, + "words": [ + { + "word": " Well,", + "start": 2239.94, + "end": 2240.12, + "probability": 0.990234375 + }, + { + "word": " that's", + "start": 2240.18, + "end": 2240.36, + "probability": 0.99609375 + }, + { + "word": " not", + "start": 2240.36, + "end": 2240.48, + "probability": 0.99951171875 + }, + { + "word": " hard", + "start": 2240.48, + "end": 2240.68, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2240.68, + "end": 2240.82, + "probability": 0.99755859375 + }, + { + "word": " do.", + "start": 2240.82, + "end": 2240.96, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1215, + "text": "I have extremely low standards.", + "start": 2241.42, + "end": 2243.02, + "words": [ + { + "word": " I", + "start": 2241.42, + "end": 2241.8, + "probability": 0.81884765625 + }, + { + "word": " have", + "start": 2241.8, + "end": 2242.16, + "probability": 0.89599609375 + }, + { + "word": " extremely", + "start": 2242.16, + "end": 2242.52, + "probability": 0.97509765625 + }, + { + "word": " low", + "start": 2242.52, + "end": 2242.78, + "probability": 0.99951171875 + }, + { + "word": " standards.", + "start": 2242.78, + "end": 2243.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1216, + "text": "Oh, look.", + "start": 2243.06, + "end": 2243.44, + "words": [ + { + "word": " Oh,", + "start": 2243.06, + "end": 2243.44, + "probability": 0.83984375 + }, + { + "word": " look.", + "start": 2243.44, + "end": 2243.44, + "probability": 0.8173828125 + } + ] + }, + { + "id": 1217, + "text": "My shoes are tied.", + "start": 2243.44, + "end": 2244.12, + "words": [ + { + "word": " My", + "start": 2243.44, + "end": 2243.44, + "probability": 0.99951171875 + }, + { + "word": " shoes", + "start": 2243.44, + "end": 2243.62, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2243.62, + "end": 2243.9, + "probability": 1.0 + }, + { + "word": " tied.", + "start": 2243.9, + "end": 2244.12, + "probability": 0.94580078125 + } + ] + }, + { + "id": 1218, + "text": "That's amazing.", + "start": 2244.26, + "end": 2244.92, + "words": [ + { + "word": " That's", + "start": 2244.26, + "end": 2244.64, + "probability": 0.99951171875 + }, + { + "word": " amazing.", + "start": 2244.64, + "end": 2244.92, + "probability": 1.0 + } + ] + }, + { + "id": 1219, + "text": "I know.", + "start": 2244.92, + "end": 2245.38, + "words": [ + { + "word": " I", + "start": 2244.92, + "end": 2245.26, + "probability": 0.99658203125 + }, + { + "word": " know.", + "start": 2245.26, + "end": 2245.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1220, + "text": "I have extremely low standards.", + "start": 2245.42, + "end": 2246.62, + "words": [ + { + "word": " I", + "start": 2245.42, + "end": 2245.58, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 2245.58, + "end": 2245.62, + "probability": 0.95654296875 + }, + { + "word": " extremely", + "start": 2245.62, + "end": 2245.9, + "probability": 0.99951171875 + }, + { + "word": " low", + "start": 2245.9, + "end": 2246.2, + "probability": 1.0 + }, + { + "word": " standards.", + "start": 2246.2, + "end": 2246.62, + "probability": 1.0 + } + ] + }, + { + "id": 1221, + "text": "All right.", + "start": 2246.72, + "end": 2248.62, + "words": [ + { + "word": " All", + "start": 2246.72, + "end": 2247.0, + "probability": 0.63671875 + }, + { + "word": " right.", + "start": 2247.0, + "end": 2248.62, + "probability": 1.0 + } + ] + }, + { + "id": 1222, + "text": "So, are you thinking about a new phone?", + "start": 2248.82, + "end": 2250.26, + "words": [ + { + "word": " So,", + "start": 2248.82, + "end": 2249.0, + "probability": 0.94921875 + }, + { + "word": " are", + "start": 2249.04, + "end": 2249.26, + "probability": 0.970703125 + }, + { + "word": " you", + "start": 2249.26, + "end": 2249.48, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 2249.48, + "end": 2249.74, + "probability": 1.0 + }, + { + "word": " about", + "start": 2249.74, + "end": 2249.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 2249.9, + "end": 2250.0, + "probability": 0.99951171875 + }, + { + "word": " new", + "start": 2250.0, + "end": 2250.1, + "probability": 1.0 + }, + { + "word": " phone?", + "start": 2250.1, + "end": 2250.26, + "probability": 1.0 + } + ] + }, + { + "id": 1223, + "text": "I am thinking about a new phone.", + "start": 2250.44, + "end": 2251.74, + "words": [ + { + "word": " I", + "start": 2250.44, + "end": 2250.82, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 2250.82, + "end": 2251.04, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 2251.04, + "end": 2251.22, + "probability": 1.0 + }, + { + "word": " about", + "start": 2251.22, + "end": 2251.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 2251.4, + "end": 2251.48, + "probability": 1.0 + }, + { + "word": " new", + "start": 2251.48, + "end": 2251.54, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 2251.54, + "end": 2251.74, + "probability": 1.0 + } + ] + }, + { + "id": 1224, + "text": "I mean, because the Droid Bionic is out.", + "start": 2251.84, + "end": 2254.42, + "words": [ + { + "word": " I", + "start": 2251.84, + "end": 2252.22, + "probability": 0.99169921875 + }, + { + "word": " mean,", + "start": 2252.22, + "end": 2252.4, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 2252.46, + "end": 2252.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2252.68, + "end": 2253.02, + "probability": 0.998046875 + }, + { + "word": " Droid", + "start": 2253.02, + "end": 2253.62, + "probability": 0.9970703125 + }, + { + "word": " Bionic", + "start": 2253.62, + "end": 2254.08, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2254.08, + "end": 2254.22, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2254.22, + "end": 2254.42, + "probability": 1.0 + } + ] + }, + { + "id": 1225, + "text": "Yes.", + "start": 2254.7, + "end": 2255.08, + "words": [ + { + "word": " Yes.", + "start": 2254.7, + "end": 2255.08, + "probability": 0.95458984375 + } + ] + }, + { + "id": 1226, + "text": "Now, the Droid Bionic, first of all, it's been hyped to no end.", + "start": 2255.08, + "end": 2258.3, + "words": [ + { + "word": " Now,", + "start": 2255.08, + "end": 2255.2, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 2255.22, + "end": 2255.36, + "probability": 1.0 + }, + { + "word": " Droid", + "start": 2255.36, + "end": 2255.6, + "probability": 1.0 + }, + { + "word": " Bionic,", + "start": 2255.6, + "end": 2256.02, + "probability": 1.0 + }, + { + "word": " first", + "start": 2256.12, + "end": 2256.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 2256.88, + "end": 2257.06, + "probability": 1.0 + }, + { + "word": " all,", + "start": 2257.06, + "end": 2257.12, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2257.14, + "end": 2257.24, + "probability": 0.87890625 + }, + { + "word": " been", + "start": 2257.24, + "end": 2257.36, + "probability": 1.0 + }, + { + "word": " hyped", + "start": 2257.36, + "end": 2257.58, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2257.58, + "end": 2257.84, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 2257.84, + "end": 2258.06, + "probability": 0.99951171875 + }, + { + "word": " end.", + "start": 2258.06, + "end": 2258.3, + "probability": 1.0 + } + ] + }, + { + "id": 1227, + "text": "Yes.", + "start": 2258.52, + "end": 2258.9, + "words": [ + { + "word": " Yes.", + "start": 2258.52, + "end": 2258.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 1228, + "text": "It has.", + "start": 2258.9, + "end": 2259.44, + "words": [ + { + "word": " It", + "start": 2258.9, + "end": 2259.14, + "probability": 0.95263671875 + }, + { + "word": " has.", + "start": 2259.14, + "end": 2259.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1229, + "text": "It has been like a little...", + "start": 2259.48, + "end": 2260.42, + "words": [ + { + "word": " It", + "start": 2259.48, + "end": 2259.64, + "probability": 0.58544921875 + }, + { + "word": " has", + "start": 2259.64, + "end": 2259.76, + "probability": 0.32421875 + }, + { + "word": " been", + "start": 2259.76, + "end": 2259.78, + "probability": 0.93408203125 + }, + { + "word": " like", + "start": 2259.78, + "end": 2260.0, + "probability": 0.93212890625 + }, + { + "word": " a", + "start": 2260.0, + "end": 2260.08, + "probability": 0.498046875 + }, + { + "word": " little...", + "start": 2260.08, + "end": 2260.42, + "probability": 0.90283203125 + } + ] + }, + { + "id": 1230, + "text": "Nine months of their saying, hey, this awesome phone is going to come out.", + "start": 2260.42, + "end": 2263.92, + "words": [ + { + "word": " Nine", + "start": 2260.42, + "end": 2260.7, + "probability": 0.99072265625 + }, + { + "word": " months", + "start": 2260.7, + "end": 2260.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 2260.96, + "end": 2261.34, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 2261.34, + "end": 2261.74, + "probability": 0.85693359375 + }, + { + "word": " saying,", + "start": 2261.74, + "end": 2262.02, + "probability": 0.99951171875 + }, + { + "word": " hey,", + "start": 2262.14, + "end": 2262.34, + "probability": 0.97607421875 + }, + { + "word": " this", + "start": 2262.4, + "end": 2262.62, + "probability": 0.99951171875 + }, + { + "word": " awesome", + "start": 2262.62, + "end": 2263.0, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 2263.0, + "end": 2263.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 2263.32, + "end": 2263.44, + "probability": 0.658203125 + }, + { + "word": " going", + "start": 2263.44, + "end": 2263.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2263.56, + "end": 2263.6, + "probability": 1.0 + }, + { + "word": " come", + "start": 2263.6, + "end": 2263.72, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2263.72, + "end": 2263.92, + "probability": 1.0 + } + ] + }, + { + "id": 1231, + "text": "Right.", + "start": 2264.04, + "end": 2264.26, + "words": [ + { + "word": " Right.", + "start": 2264.04, + "end": 2264.26, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1232, + "text": "And, they've been playing the hype game.", + "start": 2264.3, + "end": 2265.64, + "words": [ + { + "word": " And,", + "start": 2264.3, + "end": 2264.42, + "probability": 0.96728515625 + }, + { + "word": " they've", + "start": 2264.5, + "end": 2264.74, + "probability": 0.9677734375 + }, + { + "word": " been", + "start": 2264.74, + "end": 2264.86, + "probability": 1.0 + }, + { + "word": " playing", + "start": 2264.86, + "end": 2265.14, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2265.14, + "end": 2265.28, + "probability": 0.998046875 + }, + { + "word": " hype", + "start": 2265.28, + "end": 2265.44, + "probability": 0.99755859375 + }, + { + "word": " game.", + "start": 2265.44, + "end": 2265.64, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1233, + "text": "Just like...", + "start": 2265.7, + "end": 2265.98, + "words": [ + { + "word": " Just", + "start": 2265.7, + "end": 2265.82, + "probability": 0.857421875 + }, + { + "word": " like...", + "start": 2265.82, + "end": 2265.98, + "probability": 0.54052734375 + } + ] + }, + { + "id": 1234, + "text": "Like Apple.", + "start": 2265.98, + "end": 2266.14, + "words": [ + { + "word": " Like", + "start": 2265.98, + "end": 2266.14, + "probability": 0.00212860107421875 + }, + { + "word": " Apple.", + "start": 2266.14, + "end": 2266.14, + "probability": 0.90478515625 + } + ] + }, + { + "id": 1235, + "text": "They put one out in the wild and let it sneak out a little bit and they bring it back.", + "start": 2266.32, + "end": 2269.12, + "words": [ + { + "word": " They", + "start": 2266.32, + "end": 2266.46, + "probability": 0.939453125 + }, + { + "word": " put", + "start": 2266.46, + "end": 2266.72, + "probability": 0.986328125 + }, + { + "word": " one", + "start": 2266.72, + "end": 2266.94, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 2266.94, + "end": 2267.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 2267.06, + "end": 2267.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2267.18, + "end": 2267.2, + "probability": 1.0 + }, + { + "word": " wild", + "start": 2267.2, + "end": 2267.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 2267.48, + "end": 2267.66, + "probability": 0.974609375 + }, + { + "word": " let", + "start": 2267.66, + "end": 2267.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 2267.74, + "end": 2267.82, + "probability": 1.0 + }, + { + "word": " sneak", + "start": 2267.82, + "end": 2267.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 2267.96, + "end": 2268.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 2268.2, + "end": 2268.32, + "probability": 1.0 + }, + { + "word": " little", + "start": 2268.32, + "end": 2268.4, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2268.4, + "end": 2268.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 2268.56, + "end": 2268.64, + "probability": 0.4658203125 + }, + { + "word": " they", + "start": 2268.64, + "end": 2268.72, + "probability": 0.99658203125 + }, + { + "word": " bring", + "start": 2268.72, + "end": 2268.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 2268.86, + "end": 2268.94, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2268.94, + "end": 2269.12, + "probability": 1.0 + } + ] + }, + { + "id": 1236, + "text": "Yeah.", + "start": 2269.34, + "end": 2269.56, + "words": [ + { + "word": " Yeah.", + "start": 2269.34, + "end": 2269.56, + "probability": 0.86865234375 + } + ] + }, + { + "id": 1237, + "text": "That's another rant.", + "start": 2271.56, + "end": 2272.7, + "words": [ + { + "word": " That's", + "start": 2271.56, + "end": 2271.92, + "probability": 0.998046875 + }, + { + "word": " another", + "start": 2271.92, + "end": 2272.28, + "probability": 0.9482421875 + }, + { + "word": " rant.", + "start": 2272.28, + "end": 2272.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1238, + "text": "Just going off on all kinds of tangents today about how companies are making me angry.", + "start": 2273.66, + "end": 2278.22, + "words": [ + { + "word": " Just", + "start": 2273.66, + "end": 2274.02, + "probability": 0.27294921875 + }, + { + "word": " going", + "start": 2274.02, + "end": 2274.24, + "probability": 0.99853515625 + }, + { + "word": " off", + "start": 2274.24, + "end": 2274.44, + "probability": 0.994140625 + }, + { + "word": " on", + "start": 2274.44, + "end": 2274.6, + "probability": 0.83984375 + }, + { + "word": " all", + "start": 2274.6, + "end": 2274.98, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 2274.98, + "end": 2275.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 2275.22, + "end": 2275.44, + "probability": 1.0 + }, + { + "word": " tangents", + "start": 2275.44, + "end": 2275.76, + "probability": 0.92578125 + }, + { + "word": " today", + "start": 2275.76, + "end": 2276.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 2276.0, + "end": 2276.3, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 2276.3, + "end": 2276.52, + "probability": 0.99951171875 + }, + { + "word": " companies", + "start": 2276.52, + "end": 2277.26, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2277.26, + "end": 2277.54, + "probability": 1.0 + }, + { + "word": " making", + "start": 2277.54, + "end": 2277.72, + "probability": 1.0 + }, + { + "word": " me", + "start": 2277.72, + "end": 2277.94, + "probability": 1.0 + }, + { + "word": " angry.", + "start": 2277.94, + "end": 2278.22, + "probability": 0.994140625 + } + ] + }, + { + "id": 1239, + "text": "Angry.", + "start": 2279.22, + "end": 2279.58, + "words": [ + { + "word": " Angry.", + "start": 2279.22, + "end": 2279.58, + "probability": 0.87060546875 + } + ] + }, + { + "id": 1240, + "text": "Angry.", + "start": 2279.76, + "end": 2280.08, + "words": [ + { + "word": " Angry.", + "start": 2279.76, + "end": 2280.08, + "probability": 0.767578125 + } + ] + }, + { + "id": 1241, + "text": "Yes.", + "start": 2280.18, + "end": 2280.48, + "words": [ + { + "word": " Yes.", + "start": 2280.18, + "end": 2280.48, + "probability": 0.4658203125 + } + ] + }, + { + "id": 1242, + "text": "I'm going to turn green and need a new shirt.", + "start": 2280.48, + "end": 2281.9, + "words": [ + { + "word": " I'm", + "start": 2280.48, + "end": 2280.62, + "probability": 0.99609375 + }, + { + "word": " going", + "start": 2280.62, + "end": 2280.62, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2280.62, + "end": 2280.68, + "probability": 1.0 + }, + { + "word": " turn", + "start": 2280.68, + "end": 2280.84, + "probability": 1.0 + }, + { + "word": " green", + "start": 2280.84, + "end": 2281.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 2281.14, + "end": 2281.34, + "probability": 0.99560546875 + }, + { + "word": " need", + "start": 2281.34, + "end": 2281.48, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2281.48, + "end": 2281.56, + "probability": 1.0 + }, + { + "word": " new", + "start": 2281.56, + "end": 2281.66, + "probability": 1.0 + }, + { + "word": " shirt.", + "start": 2281.66, + "end": 2281.9, + "probability": 1.0 + } + ] + }, + { + "id": 1243, + "text": "But, you know, the new phone is out.", + "start": 2282.1, + "end": 2285.16, + "words": [ + { + "word": " But,", + "start": 2282.1, + "end": 2282.46, + "probability": 0.9326171875 + }, + { + "word": " you", + "start": 2282.54, + "end": 2283.68, + "probability": 0.931640625 + }, + { + "word": " know,", + "start": 2283.68, + "end": 2283.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 2283.86, + "end": 2283.96, + "probability": 1.0 + }, + { + "word": " new", + "start": 2283.96, + "end": 2284.62, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2284.62, + "end": 2284.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 2284.84, + "end": 2284.98, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2284.98, + "end": 2285.16, + "probability": 1.0 + } + ] + }, + { + "id": 1244, + "text": "Here's my problem with it.", + "start": 2285.66, + "end": 2287.0, + "words": [ + { + "word": " Here's", + "start": 2285.66, + "end": 2286.02, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2286.02, + "end": 2286.38, + "probability": 1.0 + }, + { + "word": " problem", + "start": 2286.38, + "end": 2286.68, + "probability": 1.0 + }, + { + "word": " with", + "start": 2286.68, + "end": 2286.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2286.88, + "end": 2287.0, + "probability": 1.0 + } + ] + }, + { + "id": 1245, + "text": "Okay.", + "start": 2287.06, + "end": 2287.24, + "words": [ + { + "word": " Okay.", + "start": 2287.06, + "end": 2287.24, + "probability": 0.935546875 + } + ] + }, + { + "id": 1246, + "text": "All right.", + "start": 2287.34, + "end": 2287.6, + "words": [ + { + "word": " All", + "start": 2287.34, + "end": 2287.52, + "probability": 0.962890625 + }, + { + "word": " right.", + "start": 2287.52, + "end": 2287.6, + "probability": 1.0 + } + ] + }, + { + "id": 1247, + "text": "It's got great features.", + "start": 2287.68, + "end": 2288.66, + "words": [ + { + "word": " It's", + "start": 2287.68, + "end": 2288.04, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 2288.04, + "end": 2288.08, + "probability": 1.0 + }, + { + "word": " great", + "start": 2288.08, + "end": 2288.28, + "probability": 0.99951171875 + }, + { + "word": " features.", + "start": 2288.28, + "end": 2288.66, + "probability": 1.0 + } + ] + }, + { + "id": 1248, + "text": "All right.", + "start": 2288.9, + "end": 2289.22, + "words": [ + { + "word": " All", + "start": 2288.9, + "end": 2289.14, + "probability": 0.986328125 + }, + { + "word": " right.", + "start": 2289.14, + "end": 2289.22, + "probability": 1.0 + } + ] + }, + { + "id": 1249, + "text": "And, that's your problem with it?", + "start": 2289.26, + "end": 2290.1, + "words": [ + { + "word": " And,", + "start": 2289.26, + "end": 2289.38, + "probability": 0.81787109375 + }, + { + "word": " that's", + "start": 2289.48, + "end": 2289.54, + "probability": 0.93701171875 + }, + { + "word": " your", + "start": 2289.54, + "end": 2289.58, + "probability": 1.0 + }, + { + "word": " problem", + "start": 2289.58, + "end": 2289.84, + "probability": 1.0 + }, + { + "word": " with", + "start": 2289.84, + "end": 2289.98, + "probability": 0.99951171875 + }, + { + "word": " it?", + "start": 2289.98, + "end": 2290.1, + "probability": 1.0 + } + ] + }, + { + "id": 1250, + "text": "Hold on.", + "start": 2290.12, + "end": 2290.4, + "words": [ + { + "word": " Hold", + "start": 2290.12, + "end": 2290.28, + "probability": 0.9951171875 + }, + { + "word": " on.", + "start": 2290.28, + "end": 2290.4, + "probability": 1.0 + } + ] + }, + { + "id": 1251, + "text": "I'm getting there.", + "start": 2290.44, + "end": 2290.82, + "words": [ + { + "word": " I'm", + "start": 2290.44, + "end": 2290.58, + "probability": 0.99755859375 + }, + { + "word": " getting", + "start": 2290.58, + "end": 2290.68, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 2290.68, + "end": 2290.82, + "probability": 1.0 + } + ] + }, + { + "id": 1252, + "text": "I have to build up to this.", + "start": 2291.04, + "end": 2292.62, + "words": [ + { + "word": " I", + "start": 2291.04, + "end": 2291.4, + "probability": 0.98583984375 + }, + { + "word": " have", + "start": 2291.4, + "end": 2291.78, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2291.78, + "end": 2291.9, + "probability": 1.0 + }, + { + "word": " build", + "start": 2291.9, + "end": 2292.16, + "probability": 1.0 + }, + { + "word": " up", + "start": 2292.16, + "end": 2292.36, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2292.36, + "end": 2292.52, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2292.52, + "end": 2292.62, + "probability": 1.0 + } + ] + }, + { + "id": 1253, + "text": "Oh.", + "start": 2292.68, + "end": 2292.88, + "words": [ + { + "word": " Oh.", + "start": 2292.68, + "end": 2292.88, + "probability": 0.76171875 + } + ] + }, + { + "id": 1254, + "text": "This is radio.", + "start": 2292.94, + "end": 2294.08, + "words": [ + { + "word": " This", + "start": 2292.94, + "end": 2293.26, + "probability": 0.9033203125 + }, + { + "word": " is", + "start": 2293.26, + "end": 2293.36, + "probability": 1.0 + }, + { + "word": " radio.", + "start": 2293.36, + "end": 2294.08, + "probability": 0.9521484375 + } + ] + }, + { + "id": 1255, + "text": "All right.", + "start": 2295.14, + "end": 2295.64, + "words": [ + { + "word": " All", + "start": 2295.14, + "end": 2295.5, + "probability": 0.9814453125 + }, + { + "word": " right.", + "start": 2295.5, + "end": 2295.64, + "probability": 1.0 + } + ] + }, + { + "id": 1256, + "text": "So...", + "start": 2295.66, + "end": 2295.94, + "words": [ + { + "word": " So...", + "start": 2295.66, + "end": 2295.94, + "probability": 0.466064453125 + } + ] + }, + { + "id": 1257, + "text": "So, there's...", + "start": 2295.98, + "end": 2296.4, + "words": [ + { + "word": " So,", + "start": 2295.98, + "end": 2295.98, + "probability": 0.07763671875 + }, + { + "word": " there's...", + "start": 2295.98, + "end": 2296.4, + "probability": 0.53271484375 + } + ] + }, + { + "id": 1258, + "text": "It's got a great processor.", + "start": 2296.94, + "end": 2298.16, + "words": [ + { + "word": " It's", + "start": 2296.94, + "end": 2297.34, + "probability": 0.97412109375 + }, + { + "word": " got", + "start": 2297.34, + "end": 2297.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 2297.44, + "end": 2297.56, + "probability": 1.0 + }, + { + "word": " great", + "start": 2297.56, + "end": 2297.72, + "probability": 1.0 + }, + { + "word": " processor.", + "start": 2297.72, + "end": 2298.16, + "probability": 1.0 + } + ] + }, + { + "id": 1259, + "text": "Lots of memory.", + "start": 2298.32, + "end": 2299.06, + "words": [ + { + "word": " Lots", + "start": 2298.32, + "end": 2298.6, + "probability": 0.98681640625 + }, + { + "word": " of", + "start": 2298.6, + "end": 2298.82, + "probability": 1.0 + }, + { + "word": " memory.", + "start": 2298.82, + "end": 2299.06, + "probability": 1.0 + } + ] + }, + { + "id": 1260, + "text": "It's very fast.", + "start": 2299.18, + "end": 2299.92, + "words": [ + { + "word": " It's", + "start": 2299.18, + "end": 2299.34, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 2299.34, + "end": 2299.46, + "probability": 0.99853515625 + }, + { + "word": " fast.", + "start": 2299.46, + "end": 2299.92, + "probability": 1.0 + } + ] + }, + { + "id": 1261, + "text": "Bigger screen.", + "start": 2300.02, + "end": 2300.52, + "words": [ + { + "word": " Bigger", + "start": 2300.02, + "end": 2300.3, + "probability": 0.99658203125 + }, + { + "word": " screen.", + "start": 2300.3, + "end": 2300.52, + "probability": 1.0 + } + ] + }, + { + "id": 1262, + "text": "It is beautiful.", + "start": 2300.72, + "end": 2301.98, + "words": [ + { + "word": " It", + "start": 2300.72, + "end": 2301.08, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2301.08, + "end": 2301.42, + "probability": 1.0 + }, + { + "word": " beautiful.", + "start": 2301.42, + "end": 2301.98, + "probability": 1.0 + } + ] + }, + { + "id": 1263, + "text": "Not to mention the fact that it's got a docking station that turns it into a laptop.", + "start": 2302.54, + "end": 2305.74, + "words": [ + { + "word": " Not", + "start": 2302.54, + "end": 2302.94, + "probability": 0.7802734375 + }, + { + "word": " to", + "start": 2302.94, + "end": 2303.14, + "probability": 1.0 + }, + { + "word": " mention", + "start": 2303.14, + "end": 2303.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2303.38, + "end": 2303.52, + "probability": 1.0 + }, + { + "word": " fact", + "start": 2303.52, + "end": 2303.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 2303.68, + "end": 2303.86, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2303.86, + "end": 2304.02, + "probability": 1.0 + }, + { + "word": " got", + "start": 2304.02, + "end": 2304.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2304.08, + "end": 2304.18, + "probability": 1.0 + }, + { + "word": " docking", + "start": 2304.18, + "end": 2304.5, + "probability": 1.0 + }, + { + "word": " station", + "start": 2304.5, + "end": 2304.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2304.7, + "end": 2304.9, + "probability": 0.99462890625 + }, + { + "word": " turns", + "start": 2304.9, + "end": 2305.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 2305.06, + "end": 2305.2, + "probability": 1.0 + }, + { + "word": " into", + "start": 2305.2, + "end": 2305.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2305.34, + "end": 2305.46, + "probability": 1.0 + }, + { + "word": " laptop.", + "start": 2305.46, + "end": 2305.74, + "probability": 1.0 + } + ] + }, + { + "id": 1264, + "text": "I love that.", + "start": 2305.78, + "end": 2306.36, + "words": [ + { + "word": " I", + "start": 2305.78, + "end": 2305.94, + "probability": 0.98681640625 + }, + { + "word": " love", + "start": 2305.94, + "end": 2306.18, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2306.18, + "end": 2306.36, + "probability": 1.0 + } + ] + }, + { + "id": 1265, + "text": "It's got full HDMI compatibility.", + "start": 2306.5, + "end": 2309.2, + "words": [ + { + "word": " It's", + "start": 2306.5, + "end": 2306.86, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 2306.86, + "end": 2307.04, + "probability": 1.0 + }, + { + "word": " full", + "start": 2307.04, + "end": 2308.06, + "probability": 0.99609375 + }, + { + "word": " HDMI", + "start": 2308.06, + "end": 2308.54, + "probability": 0.9990234375 + }, + { + "word": " compatibility.", + "start": 2308.54, + "end": 2309.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1266, + "text": "Nice.", + "start": 2309.72, + "end": 2309.98, + "words": [ + { + "word": " Nice.", + "start": 2309.72, + "end": 2309.98, + "probability": 0.97607421875 + } + ] + }, + { + "id": 1267, + "text": "You can hook it up to a nice TV or a monitor.", + "start": 2310.08, + "end": 2312.52, + "words": [ + { + "word": " You", + "start": 2310.08, + "end": 2310.48, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2310.48, + "end": 2310.62, + "probability": 1.0 + }, + { + "word": " hook", + "start": 2310.62, + "end": 2310.96, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 2310.96, + "end": 2311.08, + "probability": 1.0 + }, + { + "word": " up", + "start": 2311.08, + "end": 2311.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2311.16, + "end": 2311.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 2311.24, + "end": 2311.32, + "probability": 1.0 + }, + { + "word": " nice", + "start": 2311.32, + "end": 2311.5, + "probability": 1.0 + }, + { + "word": " TV", + "start": 2311.5, + "end": 2311.82, + "probability": 1.0 + }, + { + "word": " or", + "start": 2311.82, + "end": 2312.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2312.1, + "end": 2312.2, + "probability": 0.982421875 + }, + { + "word": " monitor.", + "start": 2312.2, + "end": 2312.52, + "probability": 1.0 + } + ] + }, + { + "id": 1268, + "text": "Excellent.", + "start": 2312.76, + "end": 2313.0, + "words": [ + { + "word": " Excellent.", + "start": 2312.76, + "end": 2313.0, + "probability": 0.931640625 + } + ] + }, + { + "id": 1269, + "text": "It's got all kinds of really nifty features.", + "start": 2313.82, + "end": 2316.18, + "words": [ + { + "word": " It's", + "start": 2313.82, + "end": 2314.22, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 2314.22, + "end": 2314.36, + "probability": 1.0 + }, + { + "word": " all", + "start": 2314.36, + "end": 2314.52, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 2314.52, + "end": 2314.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 2314.7, + "end": 2314.96, + "probability": 1.0 + }, + { + "word": " really", + "start": 2314.96, + "end": 2315.18, + "probability": 1.0 + }, + { + "word": " nifty", + "start": 2315.18, + "end": 2315.76, + "probability": 1.0 + }, + { + "word": " features.", + "start": 2315.76, + "end": 2316.18, + "probability": 1.0 + } + ] + }, + { + "id": 1270, + "text": "Okay.", + "start": 2316.48, + "end": 2316.68, + "words": [ + { + "word": " Okay.", + "start": 2316.48, + "end": 2316.68, + "probability": 0.92529296875 + } + ] + }, + { + "id": 1271, + "text": "Here's my problem.", + "start": 2316.74, + "end": 2317.46, + "words": [ + { + "word": " Here's", + "start": 2316.74, + "end": 2317.14, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 2317.14, + "end": 2317.24, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 2317.24, + "end": 2317.46, + "probability": 0.90576171875 + } + ] + }, + { + "id": 1272, + "text": "It's $300.", + "start": 2317.66, + "end": 2318.36, + "words": [ + { + "word": " It's", + "start": 2317.66, + "end": 2318.06, + "probability": 0.9755859375 + }, + { + "word": " $300.", + "start": 2318.06, + "end": 2318.36, + "probability": 0.80908203125 + } + ] + }, + { + "id": 1273, + "text": "That's $300 with the two-year discount.", + "start": 2319.2599999999998, + "end": 2321.76, + "words": [ + { + "word": " That's", + "start": 2319.2599999999998, + "end": 2319.66, + "probability": 0.86767578125 + }, + { + "word": " $300", + "start": 2319.66, + "end": 2320.06, + "probability": 0.947265625 + }, + { + "word": " with", + "start": 2320.06, + "end": 2320.4, + "probability": 0.953125 + }, + { + "word": " the", + "start": 2320.4, + "end": 2320.88, + "probability": 1.0 + }, + { + "word": " two", + "start": 2320.88, + "end": 2321.08, + "probability": 0.96630859375 + }, + { + "word": "-year", + "start": 2321.08, + "end": 2321.3, + "probability": 0.9921875 + }, + { + "word": " discount.", + "start": 2321.3, + "end": 2321.76, + "probability": 0.994140625 + } + ] + }, + { + "id": 1274, + "text": "So, with the Droid X?", + "start": 2322.26, + "end": 2323.16, + "words": [ + { + "word": " So,", + "start": 2322.26, + "end": 2322.66, + "probability": 0.99462890625 + }, + { + "word": " with", + "start": 2322.72, + "end": 2322.78, + "probability": 0.71826171875 + }, + { + "word": " the", + "start": 2322.78, + "end": 2322.84, + "probability": 0.97998046875 + }, + { + "word": " Droid", + "start": 2322.84, + "end": 2323.04, + "probability": 0.96484375 + }, + { + "word": " X?", + "start": 2323.04, + "end": 2323.16, + "probability": 0.912109375 + } + ] + }, + { + "id": 1275, + "text": "No, no, no, no.", + "start": 2323.16, + "end": 2323.58, + "words": [ + { + "word": " No,", + "start": 2323.16, + "end": 2323.26, + "probability": 0.64990234375 + }, + { + "word": " no,", + "start": 2323.26, + "end": 2323.36, + "probability": 1.0 + }, + { + "word": " no,", + "start": 2323.4, + "end": 2323.5, + "probability": 1.0 + }, + { + "word": " no.", + "start": 2323.5, + "end": 2323.58, + "probability": 1.0 + } + ] + }, + { + "id": 1276, + "text": "No, no, no, no.", + "start": 2323.78, + "end": 2324.5, + "words": [ + { + "word": " No,", + "start": 2323.78, + "end": 2324.18, + "probability": 0.9736328125 + }, + { + "word": " no,", + "start": 2324.26, + "end": 2324.34, + "probability": 1.0 + }, + { + "word": " no,", + "start": 2324.36, + "end": 2324.44, + "probability": 1.0 + }, + { + "word": " no.", + "start": 2324.5, + "end": 2324.5, + "probability": 1.0 + } + ] + }, + { + "id": 1277, + "text": "No.", + "start": 2324.66, + "end": 2324.9, + "words": [ + { + "word": " No.", + "start": 2324.66, + "end": 2324.9, + "probability": 0.97021484375 + } + ] + }, + { + "id": 1278, + "text": "No, it was...", + "start": 2326.2599999999998, + "end": 2327.04, + "words": [ + { + "word": " No,", + "start": 2326.2599999999998, + "end": 2326.58, + "probability": 0.634765625 + }, + { + "word": " it", + "start": 2326.58, + "end": 2326.68, + "probability": 0.99951171875 + }, + { + "word": " was...", + "start": 2326.68, + "end": 2327.04, + "probability": 0.7802734375 + } + ] + }, + { + "id": 1279, + "text": "No, it was...", + "start": 2327.04, + "end": 2328.06, + "words": [ + { + "word": " No,", + "start": 2327.04, + "end": 2327.64, + "probability": 0.178955078125 + }, + { + "word": " it", + "start": 2327.72, + "end": 2327.78, + "probability": 1.0 + }, + { + "word": " was...", + "start": 2327.78, + "end": 2328.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1280, + "text": "It was $300, dude.", + "start": 2328.06, + "end": 2329.08, + "words": [ + { + "word": " It", + "start": 2328.06, + "end": 2328.2, + "probability": 0.99462890625 + }, + { + "word": " was", + "start": 2328.2, + "end": 2328.3, + "probability": 1.0 + }, + { + "word": " $300,", + "start": 2328.3, + "end": 2328.84, + "probability": 0.99853515625 + }, + { + "word": " dude.", + "start": 2328.94, + "end": 2329.08, + "probability": 0.93701171875 + } + ] + }, + { + "id": 1281, + "text": "I promise you it was.", + "start": 2329.12, + "end": 2330.2, + "words": [ + { + "word": " I", + "start": 2329.12, + "end": 2329.28, + "probability": 0.9931640625 + }, + { + "word": " promise", + "start": 2329.28, + "end": 2329.66, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2329.66, + "end": 2329.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 2329.96, + "end": 2330.06, + "probability": 0.9697265625 + }, + { + "word": " was.", + "start": 2330.06, + "end": 2330.2, + "probability": 1.0 + } + ] + }, + { + "id": 1282, + "text": "So, it's too expensive, in my opinion.", + "start": 2330.9799999999996, + "end": 2332.72, + "words": [ + { + "word": " So,", + "start": 2330.9799999999996, + "end": 2331.2999999999997, + "probability": 0.52294921875 + }, + { + "word": " it's", + "start": 2331.2999999999997, + "end": 2331.62, + "probability": 1.0 + }, + { + "word": " too", + "start": 2331.62, + "end": 2331.72, + "probability": 1.0 + }, + { + "word": " expensive,", + "start": 2331.72, + "end": 2332.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 2332.16, + "end": 2332.4, + "probability": 1.0 + }, + { + "word": " my", + "start": 2332.4, + "end": 2332.48, + "probability": 1.0 + }, + { + "word": " opinion.", + "start": 2332.48, + "end": 2332.72, + "probability": 1.0 + } + ] + }, + { + "id": 1283, + "text": "All right.", + "start": 2333.28, + "end": 2333.64, + "words": [ + { + "word": " All", + "start": 2333.28, + "end": 2333.6, + "probability": 0.410400390625 + }, + { + "word": " right.", + "start": 2333.6, + "end": 2333.64, + "probability": 1.0 + } + ] + }, + { + "id": 1284, + "text": "At least for me right now.", + "start": 2333.7, + "end": 2334.76, + "words": [ + { + "word": " At", + "start": 2333.7, + "end": 2333.86, + "probability": 0.99658203125 + }, + { + "word": " least", + "start": 2333.86, + "end": 2334.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 2334.14, + "end": 2334.26, + "probability": 1.0 + }, + { + "word": " me", + "start": 2334.26, + "end": 2334.4, + "probability": 1.0 + }, + { + "word": " right", + "start": 2334.4, + "end": 2334.56, + "probability": 0.97802734375 + }, + { + "word": " now.", + "start": 2334.56, + "end": 2334.76, + "probability": 1.0 + } + ] + }, + { + "id": 1285, + "text": "Yeah.", + "start": 2334.92, + "end": 2335.18, + "words": [ + { + "word": " Yeah.", + "start": 2334.92, + "end": 2335.18, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1286, + "text": "Oh, yeah.", + "start": 2335.22, + "end": 2335.54, + "words": [ + { + "word": " Oh,", + "start": 2335.22, + "end": 2335.38, + "probability": 0.6318359375 + }, + { + "word": " yeah.", + "start": 2335.38, + "end": 2335.54, + "probability": 1.0 + } + ] + }, + { + "id": 1287, + "text": "I don't have any money.", + "start": 2335.94, + "end": 2336.72, + "words": [ + { + "word": " I", + "start": 2335.94, + "end": 2336.26, + "probability": 0.947265625 + }, + { + "word": " don't", + "start": 2336.26, + "end": 2336.42, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 2336.42, + "end": 2336.42, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 2336.42, + "end": 2336.54, + "probability": 1.0 + }, + { + "word": " money.", + "start": 2336.54, + "end": 2336.72, + "probability": 1.0 + } + ] + }, + { + "id": 1288, + "text": "So, and then if you want the laptop adapter, it's an extra $200.", + "start": 2337.22, + "end": 2341.08, + "words": [ + { + "word": " So,", + "start": 2337.22, + "end": 2337.54, + "probability": 0.9404296875 + }, + { + "word": " and", + "start": 2337.54, + "end": 2337.86, + "probability": 0.98876953125 + }, + { + "word": " then", + "start": 2337.86, + "end": 2338.9, + "probability": 1.0 + }, + { + "word": " if", + "start": 2338.9, + "end": 2339.12, + "probability": 0.9111328125 + }, + { + "word": " you", + "start": 2339.12, + "end": 2339.26, + "probability": 1.0 + }, + { + "word": " want", + "start": 2339.26, + "end": 2339.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 2339.4, + "end": 2339.52, + "probability": 0.99951171875 + }, + { + "word": " laptop", + "start": 2339.52, + "end": 2339.78, + "probability": 0.9990234375 + }, + { + "word": " adapter,", + "start": 2339.78, + "end": 2340.06, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2340.32, + "end": 2340.58, + "probability": 0.998046875 + }, + { + "word": " an", + "start": 2340.58, + "end": 2340.6, + "probability": 0.87841796875 + }, + { + "word": " extra", + "start": 2340.6, + "end": 2340.74, + "probability": 0.99951171875 + }, + { + "word": " $200.", + "start": 2340.74, + "end": 2341.08, + "probability": 1.0 + } + ] + }, + { + "id": 1289, + "text": "You know, I think Verizon, what Verizon should do, our local Verizon stores, they should", + "start": 2341.12, + "end": 2344.88, + "words": [ + { + "word": " You", + "start": 2341.12, + "end": 2341.16, + "probability": 0.9072265625 + }, + { + "word": " know,", + "start": 2341.16, + "end": 2341.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 2341.3, + "end": 2341.3, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 2341.3, + "end": 2341.56, + "probability": 1.0 + }, + { + "word": " Verizon,", + "start": 2341.56, + "end": 2342.06, + "probability": 1.0 + }, + { + "word": " what", + "start": 2342.26, + "end": 2342.46, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 2342.46, + "end": 2342.8, + "probability": 1.0 + }, + { + "word": " should", + "start": 2342.8, + "end": 2343.04, + "probability": 1.0 + }, + { + "word": " do,", + "start": 2343.04, + "end": 2343.26, + "probability": 1.0 + }, + { + "word": " our", + "start": 2343.38, + "end": 2343.56, + "probability": 0.99658203125 + }, + { + "word": " local", + "start": 2343.56, + "end": 2343.8, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 2343.8, + "end": 2344.08, + "probability": 1.0 + }, + { + "word": " stores,", + "start": 2344.08, + "end": 2344.36, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2344.56, + "end": 2344.72, + "probability": 1.0 + }, + { + "word": " should", + "start": 2344.72, + "end": 2344.88, + "probability": 1.0 + } + ] + }, + { + "id": 1290, + "text": "hook us up so we can talk about their phone.", + "start": 2345.3599999999997, + "end": 2347.42, + "words": [ + { + "word": " hook", + "start": 2345.3599999999997, + "end": 2345.68, + "probability": 0.9130859375 + }, + { + "word": " us", + "start": 2345.68, + "end": 2345.86, + "probability": 1.0 + }, + { + "word": " up", + "start": 2345.86, + "end": 2346.08, + "probability": 1.0 + }, + { + "word": " so", + "start": 2346.08, + "end": 2346.44, + "probability": 0.9150390625 + }, + { + "word": " we", + "start": 2346.44, + "end": 2346.56, + "probability": 1.0 + }, + { + "word": " can", + "start": 2346.56, + "end": 2346.66, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2346.66, + "end": 2346.86, + "probability": 1.0 + }, + { + "word": " about", + "start": 2346.86, + "end": 2347.06, + "probability": 1.0 + }, + { + "word": " their", + "start": 2347.06, + "end": 2347.18, + "probability": 0.99951171875 + }, + { + "word": " phone.", + "start": 2347.18, + "end": 2347.42, + "probability": 1.0 + } + ] + }, + { + "id": 1291, + "text": "Yeah.", + "start": 2347.66, + "end": 2347.98, + "words": [ + { + "word": " Yeah.", + "start": 2347.66, + "end": 2347.98, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1292, + "text": "And they'll praise it in all its glory and all its awesomeness.", + "start": 2348.1, + "end": 2350.64, + "words": [ + { + "word": " And", + "start": 2348.1, + "end": 2348.42, + "probability": 0.99365234375 + }, + { + "word": " they'll", + "start": 2348.42, + "end": 2348.66, + "probability": 0.640625 + }, + { + "word": " praise", + "start": 2348.66, + "end": 2348.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 2348.96, + "end": 2349.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 2349.08, + "end": 2349.16, + "probability": 0.99755859375 + }, + { + "word": " all", + "start": 2349.16, + "end": 2349.28, + "probability": 1.0 + }, + { + "word": " its", + "start": 2349.28, + "end": 2349.42, + "probability": 0.560546875 + }, + { + "word": " glory", + "start": 2349.42, + "end": 2349.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 2349.62, + "end": 2349.78, + "probability": 0.83740234375 + }, + { + "word": " all", + "start": 2349.78, + "end": 2349.88, + "probability": 0.99951171875 + }, + { + "word": " its", + "start": 2349.88, + "end": 2350.02, + "probability": 0.97509765625 + }, + { + "word": " awesomeness.", + "start": 2350.02, + "end": 2350.64, + "probability": 1.0 + } + ] + }, + { + "id": 1293, + "text": "Okay.", + "start": 2350.64, + "end": 2350.94, + "words": [ + { + "word": " Okay.", + "start": 2350.64, + "end": 2350.94, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1294, + "text": "Well, we're doing other things that will be totally ignored.", + "start": 2351.0, + "end": 2352.6, + "words": [ + { + "word": " Well,", + "start": 2351.0, + "end": 2351.12, + "probability": 0.646484375 + }, + { + "word": " we're", + "start": 2351.16, + "end": 2351.32, + "probability": 0.99853515625 + }, + { + "word": " doing", + "start": 2351.32, + "end": 2351.4, + "probability": 0.9970703125 + }, + { + "word": " other", + "start": 2351.4, + "end": 2351.6, + "probability": 0.9990234375 + }, + { + "word": " things", + "start": 2351.6, + "end": 2351.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 2351.8, + "end": 2351.96, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2351.96, + "end": 2352.02, + "probability": 0.9892578125 + }, + { + "word": " be", + "start": 2352.02, + "end": 2352.14, + "probability": 1.0 + }, + { + "word": " totally", + "start": 2352.14, + "end": 2352.34, + "probability": 1.0 + }, + { + "word": " ignored.", + "start": 2352.34, + "end": 2352.6, + "probability": 1.0 + } + ] + }, + { + "id": 1295, + "text": "You know, you've got...", + "start": 2354.44, + "end": 2355.44, + "words": [ + { + "word": " You", + "start": 2354.44, + "end": 2354.76, + "probability": 0.74072265625 + }, + { + "word": " know,", + "start": 2354.76, + "end": 2354.9, + "probability": 0.9990234375 + }, + { + "word": " you've", + "start": 2354.92, + "end": 2355.12, + "probability": 0.9990234375 + }, + { + "word": " got...", + "start": 2355.12, + "end": 2355.44, + "probability": 0.8994140625 + } + ] + }, + { + "id": 1296, + "text": "You've got the docking station, it's an extra $200.", + "start": 2355.44, + "end": 2357.96, + "words": [ + { + "word": " You've", + "start": 2355.44, + "end": 2355.96, + "probability": 0.6845703125 + }, + { + "word": " got", + "start": 2355.96, + "end": 2356.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2356.14, + "end": 2356.32, + "probability": 0.99365234375 + }, + { + "word": " docking", + "start": 2356.32, + "end": 2356.94, + "probability": 0.99951171875 + }, + { + "word": " station,", + "start": 2356.94, + "end": 2357.18, + "probability": 0.91943359375 + }, + { + "word": " it's", + "start": 2357.28, + "end": 2357.38, + "probability": 0.96875 + }, + { + "word": " an", + "start": 2357.38, + "end": 2357.42, + "probability": 0.9931640625 + }, + { + "word": " extra", + "start": 2357.42, + "end": 2357.5, + "probability": 1.0 + }, + { + "word": " $200.", + "start": 2357.5, + "end": 2357.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1297, + "text": "The HDMI station, another $100.", + "start": 2358.18, + "end": 2360.2, + "words": [ + { + "word": " The", + "start": 2358.18, + "end": 2358.52, + "probability": 0.962890625 + }, + { + "word": " HDMI", + "start": 2358.52, + "end": 2358.92, + "probability": 0.9990234375 + }, + { + "word": " station,", + "start": 2358.92, + "end": 2359.26, + "probability": 1.0 + }, + { + "word": " another", + "start": 2359.42, + "end": 2359.6, + "probability": 1.0 + }, + { + "word": " $100.", + "start": 2359.6, + "end": 2360.2, + "probability": 1.0 + } + ] + }, + { + "id": 1298, + "text": "", + "start": 2360.38, + "end": 2360.38, + "words": [] + }, + { + "id": 1299, + "text": "And there's a broad-spectrum Wi-Fi adapter for it, which will allow you to wirelessly", + "start": 2361.24, + "end": 2367.72, + "words": [ + { + "word": " And", + "start": 2361.24, + "end": 2361.68, + "probability": 0.935546875 + }, + { + "word": " there's", + "start": 2361.68, + "end": 2361.98, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2361.98, + "end": 2362.04, + "probability": 1.0 + }, + { + "word": " broad", + "start": 2362.04, + "end": 2363.66, + "probability": 0.99169921875 + }, + { + "word": "-spectrum", + "start": 2363.66, + "end": 2364.16, + "probability": 0.95654296875 + }, + { + "word": " Wi", + "start": 2364.16, + "end": 2364.72, + "probability": 0.998046875 + }, + { + "word": "-Fi", + "start": 2364.72, + "end": 2364.98, + "probability": 1.0 + }, + { + "word": " adapter", + "start": 2364.98, + "end": 2365.58, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 2365.58, + "end": 2366.08, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2366.08, + "end": 2366.32, + "probability": 1.0 + }, + { + "word": " which", + "start": 2366.38, + "end": 2366.7, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2366.7, + "end": 2366.82, + "probability": 0.99951171875 + }, + { + "word": " allow", + "start": 2366.82, + "end": 2367.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2367.0, + "end": 2367.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 2367.12, + "end": 2367.18, + "probability": 1.0 + }, + { + "word": " wirelessly", + "start": 2367.18, + "end": 2367.72, + "probability": 1.0 + } + ] + }, + { + "id": 1300, + "text": "tether to a monitor or...", + "start": 2367.72, + "end": 2369.52, + "words": [ + { + "word": " tether", + "start": 2367.72, + "end": 2368.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2368.16, + "end": 2368.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 2368.36, + "end": 2368.72, + "probability": 1.0 + }, + { + "word": " monitor", + "start": 2368.72, + "end": 2369.08, + "probability": 1.0 + }, + { + "word": " or...", + "start": 2369.08, + "end": 2369.52, + "probability": 0.4892578125 + } + ] + }, + { + "id": 1301, + "text": "Really?", + "start": 2369.52, + "end": 2370.2, + "words": [ + { + "word": " Really?", + "start": 2369.52, + "end": 2370.2, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1302, + "text": "Yeah.", + "start": 2370.2, + "end": 2370.6, + "words": [ + { + "word": " Yeah.", + "start": 2370.2, + "end": 2370.6, + "probability": 0.9599609375 + } + ] + }, + { + "id": 1303, + "text": "Oh, that is awesome.", + "start": 2370.84, + "end": 2371.64, + "words": [ + { + "word": " Oh,", + "start": 2370.84, + "end": 2371.04, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2371.08, + "end": 2371.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 2371.16, + "end": 2371.32, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 2371.32, + "end": 2371.64, + "probability": 1.0 + } + ] + }, + { + "id": 1304, + "text": "Which would be interesting.", + "start": 2371.76, + "end": 2372.76, + "words": [ + { + "word": " Which", + "start": 2371.76, + "end": 2371.94, + "probability": 0.994140625 + }, + { + "word": " would", + "start": 2371.94, + "end": 2372.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 2372.22, + "end": 2372.38, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 2372.38, + "end": 2372.76, + "probability": 1.0 + } + ] + }, + { + "id": 1305, + "text": "But, you know, it's...", + "start": 2373.14, + "end": 2374.64, + "words": [ + { + "word": " But,", + "start": 2373.14, + "end": 2373.58, + "probability": 0.97119140625 + }, + { + "word": " you", + "start": 2373.7, + "end": 2373.98, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 2373.98, + "end": 2374.18, + "probability": 1.0 + }, + { + "word": " it's...", + "start": 2374.26, + "end": 2374.64, + "probability": 0.69580078125 + } + ] + }, + { + "id": 1306, + "text": "I don't know that it's really...", + "start": 2374.64, + "end": 2376.12, + "words": [ + { + "word": " I", + "start": 2374.64, + "end": 2374.8, + "probability": 0.9970703125 + }, + { + "word": " don't", + "start": 2374.8, + "end": 2374.98, + "probability": 1.0 + }, + { + "word": " know", + "start": 2374.98, + "end": 2375.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 2375.1, + "end": 2375.26, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2375.26, + "end": 2375.5, + "probability": 1.0 + }, + { + "word": " really...", + "start": 2375.5, + "end": 2376.12, + "probability": 1.0 + } + ] + }, + { + "id": 1307, + "text": "And it's 4G, so that also helps.", + "start": 2376.8199999999997, + "end": 2379.4, + "words": [ + { + "word": " And", + "start": 2376.8199999999997, + "end": 2377.2599999999998, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 2377.2599999999998, + "end": 2377.7, + "probability": 1.0 + }, + { + "word": " 4G,", + "start": 2377.7, + "end": 2378.06, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 2378.12, + "end": 2378.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 2378.6, + "end": 2378.8, + "probability": 1.0 + }, + { + "word": " also", + "start": 2378.8, + "end": 2379.06, + "probability": 1.0 + }, + { + "word": " helps.", + "start": 2379.06, + "end": 2379.4, + "probability": 1.0 + } + ] + }, + { + "id": 1308, + "text": "The LTE, yeah.", + "start": 2379.54, + "end": 2380.24, + "words": [ + { + "word": " The", + "start": 2379.54, + "end": 2379.64, + "probability": 0.311279296875 + }, + { + "word": " LTE,", + "start": 2379.64, + "end": 2379.92, + "probability": 0.99609375 + }, + { + "word": " yeah.", + "start": 2380.08, + "end": 2380.24, + "probability": 1.0 + } + ] + }, + { + "id": 1309, + "text": "But I don't know that it's really going to...", + "start": 2380.3, + "end": 2381.78, + "words": [ + { + "word": " But", + "start": 2380.3, + "end": 2380.42, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2380.42, + "end": 2380.54, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 2380.54, + "end": 2380.72, + "probability": 1.0 + }, + { + "word": " know", + "start": 2380.72, + "end": 2380.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 2380.82, + "end": 2380.98, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2380.98, + "end": 2381.1, + "probability": 0.99853515625 + }, + { + "word": " really", + "start": 2381.1, + "end": 2381.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 2381.36, + "end": 2381.56, + "probability": 0.8408203125 + }, + { + "word": " to...", + "start": 2381.56, + "end": 2381.78, + "probability": 1.0 + } + ] + }, + { + "id": 1310, + "text": "People are going to gravitate to it right now in...", + "start": 2381.78, + "end": 2384.42, + "words": [ + { + "word": " People", + "start": 2381.78, + "end": 2382.0, + "probability": 0.94091796875 + }, + { + "word": " are", + "start": 2382.0, + "end": 2382.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 2382.16, + "end": 2382.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 2382.24, + "end": 2382.36, + "probability": 1.0 + }, + { + "word": " gravitate", + "start": 2382.36, + "end": 2382.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2382.98, + "end": 2383.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 2383.24, + "end": 2383.36, + "probability": 1.0 + }, + { + "word": " right", + "start": 2383.36, + "end": 2383.56, + "probability": 1.0 + }, + { + "word": " now", + "start": 2383.56, + "end": 2383.94, + "probability": 1.0 + }, + { + "word": " in...", + "start": 2383.94, + "end": 2384.42, + "probability": 0.494384765625 + } + ] + }, + { + "id": 1311, + "text": "On Macs.", + "start": 2385.06, + "end": 2385.42, + "words": [ + { + "word": " On", + "start": 2384.98, + "end": 2385.2, + "probability": 0.8125 + }, + { + "word": " Macs.", + "start": 2385.2, + "end": 2385.42, + "probability": 0.3955078125 + } + ] + }, + { + "id": 1312, + "text": "On Macs, right?", + "start": 2385.44, + "end": 2386.18, + "words": [ + { + "word": " On", + "start": 2385.44, + "end": 2385.8, + "probability": 0.0002321004867553711 + }, + { + "word": " Macs,", + "start": 2385.8, + "end": 2385.8, + "probability": 0.03216552734375 + }, + { + "word": " right?", + "start": 2385.86, + "end": 2386.18, + "probability": 0.39697265625 + } + ] + }, + { + "id": 1313, + "text": "Because all you're looking at is, you know, an additional...", + "start": 2386.28, + "end": 2389.62, + "words": [ + { + "word": " Because", + "start": 2386.28, + "end": 2386.6, + "probability": 0.9951171875 + }, + { + "word": " all", + "start": 2386.6, + "end": 2386.76, + "probability": 0.99755859375 + }, + { + "word": " you're", + "start": 2386.76, + "end": 2386.96, + "probability": 0.998046875 + }, + { + "word": " looking", + "start": 2386.96, + "end": 2387.16, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 2387.16, + "end": 2387.36, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 2387.36, + "end": 2387.78, + "probability": 0.98583984375 + }, + { + "word": " you", + "start": 2387.98, + "end": 2388.56, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2388.56, + "end": 2388.72, + "probability": 1.0 + }, + { + "word": " an", + "start": 2388.72, + "end": 2388.82, + "probability": 0.9990234375 + }, + { + "word": " additional...", + "start": 2388.82, + "end": 2389.62, + "probability": 0.75390625 + } + ] + }, + { + "id": 1314, + "text": "You're adding 4G to a Droid X, you know?", + "start": 2390.48, + "end": 2393.36, + "words": [ + { + "word": " You're", + "start": 2390.48, + "end": 2390.84, + "probability": 0.97412109375 + }, + { + "word": " adding", + "start": 2390.84, + "end": 2391.0, + "probability": 0.99755859375 + }, + { + "word": " 4G", + "start": 2391.0, + "end": 2391.4, + "probability": 0.93359375 + }, + { + "word": " to", + "start": 2391.4, + "end": 2391.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 2391.54, + "end": 2391.68, + "probability": 0.97412109375 + }, + { + "word": " Droid", + "start": 2391.68, + "end": 2391.86, + "probability": 0.99267578125 + }, + { + "word": " X,", + "start": 2391.86, + "end": 2392.08, + "probability": 0.50146484375 + }, + { + "word": " you", + "start": 2392.22, + "end": 2393.12, + "probability": 1.0 + }, + { + "word": " know?", + "start": 2393.12, + "end": 2393.36, + "probability": 1.0 + } + ] + }, + { + "id": 1315, + "text": "And so I don't know that how much that's really going to work with the public.", + "start": 2393.36, + "end": 2397.14, + "words": [ + { + "word": " And", + "start": 2393.36, + "end": 2393.56, + "probability": 0.97021484375 + }, + { + "word": " so", + "start": 2393.56, + "end": 2393.94, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2393.94, + "end": 2394.1, + "probability": 0.861328125 + }, + { + "word": " don't", + "start": 2394.1, + "end": 2394.26, + "probability": 1.0 + }, + { + "word": " know", + "start": 2394.26, + "end": 2394.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 2394.38, + "end": 2394.48, + "probability": 0.056640625 + }, + { + "word": " how", + "start": 2394.48, + "end": 2394.76, + "probability": 0.90576171875 + }, + { + "word": " much", + "start": 2394.76, + "end": 2395.3, + "probability": 0.9287109375 + }, + { + "word": " that's", + "start": 2395.3, + "end": 2395.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 2395.62, + "end": 2395.9, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 2395.9, + "end": 2396.08, + "probability": 0.92626953125 + }, + { + "word": " to", + "start": 2396.08, + "end": 2396.2, + "probability": 1.0 + }, + { + "word": " work", + "start": 2396.2, + "end": 2396.36, + "probability": 1.0 + }, + { + "word": " with", + "start": 2396.36, + "end": 2396.54, + "probability": 0.6318359375 + }, + { + "word": " the", + "start": 2396.54, + "end": 2396.92, + "probability": 0.9990234375 + }, + { + "word": " public.", + "start": 2396.92, + "end": 2397.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1316, + "text": "You think it's just a Droid X?", + "start": 2397.22, + "end": 2398.1, + "words": [ + { + "word": " You", + "start": 2397.22, + "end": 2397.32, + "probability": 0.97607421875 + }, + { + "word": " think", + "start": 2397.32, + "end": 2397.46, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2397.46, + "end": 2397.6, + "probability": 0.86328125 + }, + { + "word": " just", + "start": 2397.6, + "end": 2397.64, + "probability": 0.294189453125 + }, + { + "word": " a", + "start": 2397.64, + "end": 2397.76, + "probability": 0.9990234375 + }, + { + "word": " Droid", + "start": 2397.76, + "end": 2397.94, + "probability": 1.0 + }, + { + "word": " X?", + "start": 2397.94, + "end": 2398.1, + "probability": 1.0 + } + ] + }, + { + "id": 1317, + "text": "I mean, it's a faster processor, all these other cool features.", + "start": 2398.2, + "end": 2400.76, + "words": [ + { + "word": " I", + "start": 2398.2, + "end": 2398.32, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 2398.32, + "end": 2398.42, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2398.44, + "end": 2398.9, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2398.9, + "end": 2399.04, + "probability": 0.87353515625 + }, + { + "word": " faster", + "start": 2399.04, + "end": 2399.34, + "probability": 0.98583984375 + }, + { + "word": " processor,", + "start": 2399.34, + "end": 2399.78, + "probability": 0.99072265625 + }, + { + "word": " all", + "start": 2399.94, + "end": 2400.08, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 2400.08, + "end": 2400.16, + "probability": 0.9248046875 + }, + { + "word": " other", + "start": 2400.16, + "end": 2400.24, + "probability": 0.9990234375 + }, + { + "word": " cool", + "start": 2400.24, + "end": 2400.44, + "probability": 0.994140625 + }, + { + "word": " features.", + "start": 2400.44, + "end": 2400.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1318, + "text": "I get it.", + "start": 2400.84, + "end": 2401.24, + "words": [ + { + "word": " I", + "start": 2400.84, + "end": 2400.88, + "probability": 0.9365234375 + }, + { + "word": " get", + "start": 2400.88, + "end": 2401.1, + "probability": 0.99658203125 + }, + { + "word": " it.", + "start": 2401.1, + "end": 2401.24, + "probability": 0.99609375 + } + ] + }, + { + "id": 1319, + "text": "But, you know, like the Droid X2 is the same processor.", + "start": 2401.24, + "end": 2403.22, + "words": [ + { + "word": " But,", + "start": 2401.24, + "end": 2401.36, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2401.42, + "end": 2401.48, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2401.48, + "end": 2401.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 2401.6, + "end": 2401.8, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2401.8, + "end": 2401.9, + "probability": 0.96142578125 + }, + { + "word": " Droid", + "start": 2401.9, + "end": 2402.04, + "probability": 1.0 + }, + { + "word": " X2", + "start": 2402.04, + "end": 2402.34, + "probability": 0.9287109375 + }, + { + "word": " is", + "start": 2402.34, + "end": 2402.48, + "probability": 0.6728515625 + }, + { + "word": " the", + "start": 2402.48, + "end": 2402.6, + "probability": 1.0 + }, + { + "word": " same", + "start": 2402.6, + "end": 2402.8, + "probability": 1.0 + }, + { + "word": " processor.", + "start": 2402.8, + "end": 2403.22, + "probability": 1.0 + } + ] + }, + { + "id": 1320, + "text": "Yeah, well.", + "start": 2403.4, + "end": 2403.82, + "words": [ + { + "word": " Yeah,", + "start": 2403.4, + "end": 2403.64, + "probability": 0.95263671875 + }, + { + "word": " well.", + "start": 2403.64, + "end": 2403.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 1321, + "text": "Right?", + "start": 2404.02, + "end": 2404.26, + "words": [ + { + "word": " Right?", + "start": 2404.02, + "end": 2404.26, + "probability": 0.517578125 + } + ] + }, + { + "id": 1322, + "text": "That thing bombed.", + "start": 2404.42, + "end": 2405.4, + "words": [ + { + "word": " That", + "start": 2404.42, + "end": 2404.68, + "probability": 0.99853515625 + }, + { + "word": " thing", + "start": 2404.68, + "end": 2405.0, + "probability": 0.99951171875 + }, + { + "word": " bombed.", + "start": 2405.0, + "end": 2405.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1323, + "text": "Well, and it wasn't different enough.", + "start": 2406.22, + "end": 2408.52, + "words": [ + { + "word": " Well,", + "start": 2406.22, + "end": 2406.58, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2406.74, + "end": 2406.96, + "probability": 0.83984375 + }, + { + "word": " it", + "start": 2406.96, + "end": 2407.22, + "probability": 1.0 + }, + { + "word": " wasn't", + "start": 2407.22, + "end": 2408.04, + "probability": 1.0 + }, + { + "word": " different", + "start": 2408.04, + "end": 2408.26, + "probability": 1.0 + }, + { + "word": " enough.", + "start": 2408.26, + "end": 2408.52, + "probability": 1.0 + } + ] + }, + { + "id": 1324, + "text": "That's what I'm thinking is going on here, is that it's not different enough to make it so that it's going to be...", + "start": 2408.68, + "end": 2414.92, + "words": [ + { + "word": " That's", + "start": 2408.68, + "end": 2409.04, + "probability": 0.943359375 + }, + { + "word": " what", + "start": 2409.04, + "end": 2409.08, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2409.08, + "end": 2409.24, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 2409.24, + "end": 2409.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 2409.52, + "end": 2409.7, + "probability": 0.99658203125 + }, + { + "word": " going", + "start": 2409.7, + "end": 2409.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 2409.82, + "end": 2410.06, + "probability": 1.0 + }, + { + "word": " here,", + "start": 2410.06, + "end": 2410.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 2410.36, + "end": 2410.46, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2410.46, + "end": 2410.54, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2410.54, + "end": 2410.74, + "probability": 1.0 + }, + { + "word": " not", + "start": 2410.74, + "end": 2410.84, + "probability": 1.0 + }, + { + "word": " different", + "start": 2410.84, + "end": 2411.24, + "probability": 1.0 + }, + { + "word": " enough", + "start": 2411.24, + "end": 2411.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2411.74, + "end": 2412.64, + "probability": 0.99755859375 + }, + { + "word": " make", + "start": 2412.64, + "end": 2412.82, + "probability": 1.0 + }, + { + "word": " it", + "start": 2412.82, + "end": 2412.96, + "probability": 1.0 + }, + { + "word": " so", + "start": 2412.96, + "end": 2413.12, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2413.12, + "end": 2413.24, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2413.24, + "end": 2413.66, + "probability": 1.0 + }, + { + "word": " going", + "start": 2413.66, + "end": 2414.28, + "probability": 0.974609375 + }, + { + "word": " to", + "start": 2414.28, + "end": 2414.54, + "probability": 1.0 + }, + { + "word": " be...", + "start": 2414.54, + "end": 2414.92, + "probability": 0.5556640625 + } + ] + }, + { + "id": 1325, + "text": "You know, something everybody runs to get.", + "start": 2414.92, + "end": 2416.58, + "words": [ + { + "word": " You", + "start": 2414.92, + "end": 2415.0, + "probability": 0.0850830078125 + }, + { + "word": " know,", + "start": 2415.0, + "end": 2415.26, + "probability": 0.97607421875 + }, + { + "word": " something", + "start": 2415.28, + "end": 2415.44, + "probability": 0.97998046875 + }, + { + "word": " everybody", + "start": 2415.44, + "end": 2415.72, + "probability": 0.91845703125 + }, + { + "word": " runs", + "start": 2415.72, + "end": 2416.14, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2416.14, + "end": 2416.38, + "probability": 0.9990234375 + }, + { + "word": " get.", + "start": 2416.38, + "end": 2416.58, + "probability": 1.0 + } + ] + }, + { + "id": 1326, + "text": "Do we know what OS it's going to have in Gingerbread?", + "start": 2416.74, + "end": 2418.4, + "words": [ + { + "word": " Do", + "start": 2416.74, + "end": 2416.82, + "probability": 0.99365234375 + }, + { + "word": " we", + "start": 2416.82, + "end": 2416.9, + "probability": 0.99560546875 + }, + { + "word": " know", + "start": 2416.9, + "end": 2416.98, + "probability": 1.0 + }, + { + "word": " what", + "start": 2416.98, + "end": 2417.14, + "probability": 0.99951171875 + }, + { + "word": " OS", + "start": 2417.14, + "end": 2417.34, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 2417.34, + "end": 2417.7, + "probability": 0.7216796875 + }, + { + "word": " going", + "start": 2417.7, + "end": 2417.72, + "probability": 0.99072265625 + }, + { + "word": " to", + "start": 2417.72, + "end": 2417.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 2417.8, + "end": 2417.88, + "probability": 0.97900390625 + }, + { + "word": " in", + "start": 2417.88, + "end": 2417.96, + "probability": 0.98828125 + }, + { + "word": " Gingerbread?", + "start": 2417.96, + "end": 2418.4, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1327, + "text": "Yeah, it comes with the 2.3.4.", + "start": 2418.52, + "end": 2420.56, + "words": [ + { + "word": " Yeah,", + "start": 2418.52, + "end": 2418.68, + "probability": 0.990234375 + }, + { + "word": " it", + "start": 2418.68, + "end": 2418.8, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2418.8, + "end": 2418.98, + "probability": 1.0 + }, + { + "word": " with", + "start": 2418.98, + "end": 2419.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 2419.16, + "end": 2419.5, + "probability": 0.99365234375 + }, + { + "word": " 2", + "start": 2419.5, + "end": 2419.68, + "probability": 0.99951171875 + }, + { + "word": ".3", + "start": 2419.68, + "end": 2420.16, + "probability": 1.0 + }, + { + "word": ".4.", + "start": 2420.16, + "end": 2420.56, + "probability": 1.0 + } + ] + }, + { + "id": 1328, + "text": "Okay.", + "start": 2420.7, + "end": 2420.98, + "words": [ + { + "word": " Okay.", + "start": 2420.7, + "end": 2420.98, + "probability": 0.939453125 + } + ] + }, + { + "id": 1329, + "text": "So, I mean, it's got the newest operating system on it.", + "start": 2421.12, + "end": 2423.88, + "words": [ + { + "word": " So,", + "start": 2421.12, + "end": 2421.4, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2421.44, + "end": 2421.52, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 2421.52, + "end": 2421.66, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2421.7, + "end": 2421.88, + "probability": 1.0 + }, + { + "word": " got", + "start": 2421.88, + "end": 2422.28, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 2422.28, + "end": 2422.56, + "probability": 1.0 + }, + { + "word": " newest", + "start": 2422.56, + "end": 2422.74, + "probability": 1.0 + }, + { + "word": " operating", + "start": 2422.74, + "end": 2423.08, + "probability": 1.0 + }, + { + "word": " system", + "start": 2423.08, + "end": 2423.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 2423.4, + "end": 2423.72, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2423.72, + "end": 2423.88, + "probability": 1.0 + } + ] + }, + { + "id": 1330, + "text": "Right.", + "start": 2423.96, + "end": 2424.14, + "words": [ + { + "word": " Right.", + "start": 2423.96, + "end": 2424.14, + "probability": 0.93212890625 + } + ] + }, + { + "id": 1331, + "text": "It's a good phone from everything I see spec-wise, but I don't know that it really is going to make a big enough impact to really get out there.", + "start": 2424.26, + "end": 2432.08, + "words": [ + { + "word": " It's", + "start": 2424.26, + "end": 2424.62, + "probability": 0.98583984375 + }, + { + "word": " a", + "start": 2424.62, + "end": 2425.28, + "probability": 0.9990234375 + }, + { + "word": " good", + "start": 2425.28, + "end": 2425.7, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2425.7, + "end": 2426.46, + "probability": 1.0 + }, + { + "word": " from", + "start": 2426.46, + "end": 2426.86, + "probability": 0.9990234375 + }, + { + "word": " everything", + "start": 2426.86, + "end": 2427.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 2427.1, + "end": 2427.26, + "probability": 1.0 + }, + { + "word": " see", + "start": 2427.26, + "end": 2427.42, + "probability": 1.0 + }, + { + "word": " spec", + "start": 2427.42, + "end": 2427.76, + "probability": 0.99755859375 + }, + { + "word": "-wise,", + "start": 2427.76, + "end": 2428.12, + "probability": 0.98828125 + }, + { + "word": " but", + "start": 2428.24, + "end": 2428.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 2428.36, + "end": 2428.4, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2428.4, + "end": 2428.5, + "probability": 1.0 + }, + { + "word": " know", + "start": 2428.5, + "end": 2428.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 2428.6, + "end": 2428.72, + "probability": 0.9892578125 + }, + { + "word": " it", + "start": 2428.72, + "end": 2428.78, + "probability": 0.861328125 + }, + { + "word": " really", + "start": 2428.78, + "end": 2428.92, + "probability": 0.99462890625 + }, + { + "word": " is", + "start": 2428.92, + "end": 2429.08, + "probability": 1.0 + }, + { + "word": " going", + "start": 2429.08, + "end": 2429.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2429.16, + "end": 2429.22, + "probability": 1.0 + }, + { + "word": " make", + "start": 2429.22, + "end": 2429.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 2429.4, + "end": 2429.44, + "probability": 1.0 + }, + { + "word": " big", + "start": 2429.44, + "end": 2429.6, + "probability": 1.0 + }, + { + "word": " enough", + "start": 2429.6, + "end": 2429.72, + "probability": 1.0 + }, + { + "word": " impact", + "start": 2429.72, + "end": 2430.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2430.04, + "end": 2430.94, + "probability": 0.99853515625 + }, + { + "word": " really", + "start": 2430.94, + "end": 2431.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 2431.44, + "end": 2431.74, + "probability": 1.0 + }, + { + "word": " out", + "start": 2431.74, + "end": 2431.9, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2431.9, + "end": 2432.08, + "probability": 1.0 + } + ] + }, + { + "id": 1332, + "text": "But speaking of big impacts, you know, you've got T-Mobile, or...", + "start": 2432.18, + "end": 2435.86, + "words": [ + { + "word": " But", + "start": 2432.18, + "end": 2432.4, + "probability": 0.9990234375 + }, + { + "word": " speaking", + "start": 2432.4, + "end": 2432.64, + "probability": 0.9892578125 + }, + { + "word": " of", + "start": 2432.64, + "end": 2432.88, + "probability": 1.0 + }, + { + "word": " big", + "start": 2432.88, + "end": 2433.06, + "probability": 1.0 + }, + { + "word": " impacts,", + "start": 2433.06, + "end": 2433.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2433.74, + "end": 2434.26, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2434.26, + "end": 2434.5, + "probability": 0.9501953125 + }, + { + "word": " you've", + "start": 2434.5, + "end": 2434.76, + "probability": 1.0 + }, + { + "word": " got", + "start": 2434.76, + "end": 2434.9, + "probability": 1.0 + }, + { + "word": " T", + "start": 2434.9, + "end": 2435.08, + "probability": 0.9970703125 + }, + { + "word": "-Mobile,", + "start": 2435.08, + "end": 2435.38, + "probability": 1.0 + }, + { + "word": " or...", + "start": 2435.54, + "end": 2435.86, + "probability": 0.494140625 + } + ] + }, + { + "id": 1333, + "text": "No, I'm sorry, not T-Mobile, Sprint, that is preparing for a major phone release next month.", + "start": 2435.86, + "end": 2441.36, + "words": [ + { + "word": " No,", + "start": 2435.86, + "end": 2436.12, + "probability": 0.93115234375 + }, + { + "word": " I'm", + "start": 2436.12, + "end": 2436.2, + "probability": 1.0 + }, + { + "word": " sorry,", + "start": 2436.2, + "end": 2436.32, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 2436.34, + "end": 2436.4, + "probability": 0.998046875 + }, + { + "word": " T", + "start": 2436.4, + "end": 2436.54, + "probability": 1.0 + }, + { + "word": "-Mobile,", + "start": 2436.54, + "end": 2436.68, + "probability": 1.0 + }, + { + "word": " Sprint,", + "start": 2436.74, + "end": 2437.1, + "probability": 0.9921875 + }, + { + "word": " that", + "start": 2437.18, + "end": 2437.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 2437.9, + "end": 2438.26, + "probability": 1.0 + }, + { + "word": " preparing", + "start": 2438.26, + "end": 2438.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 2438.7, + "end": 2439.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2439.06, + "end": 2439.14, + "probability": 0.99658203125 + }, + { + "word": " major", + "start": 2439.14, + "end": 2439.5, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2439.5, + "end": 2439.84, + "probability": 1.0 + }, + { + "word": " release", + "start": 2439.84, + "end": 2440.2, + "probability": 1.0 + }, + { + "word": " next", + "start": 2440.2, + "end": 2440.98, + "probability": 0.99951171875 + }, + { + "word": " month.", + "start": 2440.98, + "end": 2441.36, + "probability": 1.0 + } + ] + }, + { + "id": 1334, + "text": "So, it's anticipated that they're going to be getting that.", + "start": 2442.3399999999997, + "end": 2444.76, + "words": [ + { + "word": " So,", + "start": 2442.3399999999997, + "end": 2442.7, + "probability": 0.91650390625 + }, + { + "word": " it's", + "start": 2442.7, + "end": 2443.06, + "probability": 1.0 + }, + { + "word": " anticipated", + "start": 2443.06, + "end": 2443.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 2443.58, + "end": 2444.0, + "probability": 1.0 + }, + { + "word": " they're", + "start": 2444.0, + "end": 2444.18, + "probability": 1.0 + }, + { + "word": " going", + "start": 2444.18, + "end": 2444.3, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2444.3, + "end": 2444.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 2444.38, + "end": 2444.44, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 2444.44, + "end": 2444.6, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 2444.6, + "end": 2444.76, + "probability": 0.055145263671875 + } + ] + }, + { + "id": 1335, + "text": "Yeah.", + "start": 2444.78, + "end": 2444.9, + "words": [ + { + "word": " Yeah.", + "start": 2444.78, + "end": 2444.9, + "probability": 0.1290283203125 + } + ] + }, + { + "id": 1336, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1337, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1338, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1339, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1340, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1341, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1342, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1343, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1344, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1345, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1346, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1347, + "text": "", + "start": 2444.9, + "end": 2444.9, + "words": [] + }, + { + "id": 1348, + "text": "An iPhone.", + "start": 2444.9, + "end": 2445.06, + "words": [ + { + "word": " An", + "start": 2444.9, + "end": 2445.06, + "probability": 0.0003857612609863281 + }, + { + "word": " iPhone.", + "start": 2445.06, + "end": 2445.06, + "probability": 0.990234375 + } + ] + }, + { + "id": 1349, + "text": "Oh, okay.", + "start": 2445.74, + "end": 2446.54, + "words": [ + { + "word": " Oh,", + "start": 2445.74, + "end": 2446.14, + "probability": 0.994140625 + }, + { + "word": " okay.", + "start": 2446.14, + "end": 2446.54, + "probability": 0.9560546875 + } + ] + }, + { + "id": 1350, + "text": "Yeah, for Sprint here shortly.", + "start": 2446.74, + "end": 2449.38, + "words": [ + { + "word": " Yeah,", + "start": 2446.74, + "end": 2446.9, + "probability": 0.5888671875 + }, + { + "word": " for", + "start": 2446.94, + "end": 2447.2, + "probability": 0.9990234375 + }, + { + "word": " Sprint", + "start": 2447.2, + "end": 2447.88, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 2447.88, + "end": 2448.2, + "probability": 0.974609375 + }, + { + "word": " shortly.", + "start": 2448.2, + "end": 2449.38, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1351, + "text": "So, I mean, yeah, I'm not into that.", + "start": 2449.62, + "end": 2451.9, + "words": [ + { + "word": " So,", + "start": 2449.62, + "end": 2449.96, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 2450.0, + "end": 2450.14, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 2450.14, + "end": 2450.3, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 2450.42, + "end": 2451.0, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2451.08, + "end": 2451.3, + "probability": 1.0 + }, + { + "word": " not", + "start": 2451.3, + "end": 2451.42, + "probability": 1.0 + }, + { + "word": " into", + "start": 2451.42, + "end": 2451.64, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2451.64, + "end": 2451.9, + "probability": 1.0 + } + ] + }, + { + "id": 1352, + "text": "Sprint getting an iPhone?", + "start": 2452.48, + "end": 2453.98, + "words": [ + { + "word": " Sprint", + "start": 2452.48, + "end": 2452.88, + "probability": 0.99853515625 + }, + { + "word": " getting", + "start": 2452.88, + "end": 2453.04, + "probability": 0.9375 + }, + { + "word": " an", + "start": 2453.04, + "end": 2453.34, + "probability": 0.99853515625 + }, + { + "word": " iPhone?", + "start": 2453.34, + "end": 2453.98, + "probability": 1.0 + } + ] + }, + { + "id": 1353, + "text": "No, I'm not into it at all.", + "start": 2454.24, + "end": 2456.12, + "words": [ + { + "word": " No,", + "start": 2454.24, + "end": 2454.54, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2454.72, + "end": 2455.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 2455.12, + "end": 2455.18, + "probability": 1.0 + }, + { + "word": " into", + "start": 2455.18, + "end": 2455.74, + "probability": 0.99267578125 + }, + { + "word": " it", + "start": 2455.74, + "end": 2455.9, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 2455.9, + "end": 2455.96, + "probability": 1.0 + }, + { + "word": " all.", + "start": 2455.96, + "end": 2456.12, + "probability": 1.0 + } + ] + }, + { + "id": 1354, + "text": "Oh, really?", + "start": 2456.26, + "end": 2456.82, + "words": [ + { + "word": " Oh,", + "start": 2456.26, + "end": 2456.62, + "probability": 1.0 + }, + { + "word": " really?", + "start": 2456.62, + "end": 2456.82, + "probability": 1.0 + } + ] + }, + { + "id": 1355, + "text": "Yeah.", + "start": 2456.98, + "end": 2457.16, + "words": [ + { + "word": " Yeah.", + "start": 2456.98, + "end": 2457.16, + "probability": 0.990234375 + } + ] + }, + { + "id": 1356, + "text": "I mean, come on, if I wanted a bad phone service, I'd stick with AT&T.", + "start": 2457.22, + "end": 2460.48, + "words": [ + { + "word": " I", + "start": 2457.22, + "end": 2457.62, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 2457.62, + "end": 2457.82, + "probability": 1.0 + }, + { + "word": " come", + "start": 2457.82, + "end": 2457.98, + "probability": 1.0 + }, + { + "word": " on,", + "start": 2457.98, + "end": 2458.14, + "probability": 1.0 + }, + { + "word": " if", + "start": 2458.16, + "end": 2458.26, + "probability": 0.96923828125 + }, + { + "word": " I", + "start": 2458.26, + "end": 2458.32, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 2458.32, + "end": 2458.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 2458.52, + "end": 2458.66, + "probability": 1.0 + }, + { + "word": " bad", + "start": 2458.66, + "end": 2458.86, + "probability": 0.998046875 + }, + { + "word": " phone", + "start": 2458.86, + "end": 2459.28, + "probability": 0.9599609375 + }, + { + "word": " service,", + "start": 2459.28, + "end": 2459.56, + "probability": 0.8388671875 + }, + { + "word": " I'd", + "start": 2459.6, + "end": 2459.72, + "probability": 0.98583984375 + }, + { + "word": " stick", + "start": 2459.72, + "end": 2459.84, + "probability": 0.88330078125 + }, + { + "word": " with", + "start": 2459.84, + "end": 2460.04, + "probability": 1.0 + }, + { + "word": " AT", + "start": 2460.04, + "end": 2460.18, + "probability": 0.998046875 + }, + { + "word": "&T.", + "start": 2460.18, + "end": 2460.48, + "probability": 1.0 + } + ] + }, + { + "id": 1357, + "text": "Sorry, that was bad.", + "start": 2462.66, + "end": 2463.84, + "words": [ + { + "word": " Sorry,", + "start": 2462.66, + "end": 2463.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2463.26, + "end": 2463.4, + "probability": 1.0 + }, + { + "word": " was", + "start": 2463.4, + "end": 2463.6, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 2463.6, + "end": 2463.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 1358, + "text": "You've got the nationwide plan, which is nationwide, except for where I'm standing.", + "start": 2465.02, + "end": 2468.78, + "words": [ + { + "word": " You've", + "start": 2465.02, + "end": 2465.42, + "probability": 0.6923828125 + }, + { + "word": " got", + "start": 2465.42, + "end": 2465.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2465.48, + "end": 2465.58, + "probability": 0.99853515625 + }, + { + "word": " nationwide", + "start": 2465.58, + "end": 2465.84, + "probability": 0.78369140625 + }, + { + "word": " plan,", + "start": 2465.84, + "end": 2466.22, + "probability": 1.0 + }, + { + "word": " which", + "start": 2466.34, + "end": 2466.56, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2466.56, + "end": 2466.7, + "probability": 1.0 + }, + { + "word": " nationwide,", + "start": 2466.7, + "end": 2467.3, + "probability": 0.9951171875 + }, + { + "word": " except", + "start": 2467.38, + "end": 2467.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 2467.74, + "end": 2468.0, + "probability": 1.0 + }, + { + "word": " where", + "start": 2468.0, + "end": 2468.18, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2468.18, + "end": 2468.36, + "probability": 1.0 + }, + { + "word": " standing.", + "start": 2468.36, + "end": 2468.78, + "probability": 1.0 + } + ] + }, + { + "id": 1359, + "text": "Except for my house.", + "start": 2469.04, + "end": 2469.84, + "words": [ + { + "word": " Except", + "start": 2469.04, + "end": 2469.1, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2469.1, + "end": 2469.24, + "probability": 1.0 + }, + { + "word": " my", + "start": 2469.24, + "end": 2469.44, + "probability": 1.0 + }, + { + "word": " house.", + "start": 2469.44, + "end": 2469.84, + "probability": 1.0 + } + ] + }, + { + "id": 1360, + "text": "That's right.", + "start": 2470.24, + "end": 2470.76, + "words": [ + { + "word": " That's", + "start": 2470.24, + "end": 2470.64, + "probability": 1.0 + }, + { + "word": " right.", + "start": 2470.64, + "end": 2470.76, + "probability": 1.0 + } + ] + }, + { + "id": 1361, + "text": "Or the every other word plan, which is my favorite one.", + "start": 2470.92, + "end": 2473.5, + "words": [ + { + "word": " Or", + "start": 2470.92, + "end": 2471.32, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 2471.32, + "end": 2471.54, + "probability": 1.0 + }, + { + "word": " every", + "start": 2471.54, + "end": 2471.86, + "probability": 0.87890625 + }, + { + "word": " other", + "start": 2471.86, + "end": 2472.06, + "probability": 0.89599609375 + }, + { + "word": " word", + "start": 2472.06, + "end": 2472.26, + "probability": 0.99951171875 + }, + { + "word": " plan,", + "start": 2472.26, + "end": 2472.5, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 2472.66, + "end": 2472.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 2472.82, + "end": 2472.92, + "probability": 1.0 + }, + { + "word": " my", + "start": 2472.92, + "end": 2473.0, + "probability": 0.9990234375 + }, + { + "word": " favorite", + "start": 2473.0, + "end": 2473.3, + "probability": 0.99951171875 + }, + { + "word": " one.", + "start": 2473.3, + "end": 2473.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1362, + "text": "That's the one T-Mobile.", + "start": 2473.74, + "end": 2474.6, + "words": [ + { + "word": " That's", + "start": 2473.74, + "end": 2474.14, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2474.14, + "end": 2474.14, + "probability": 0.84912109375 + }, + { + "word": " one", + "start": 2474.14, + "end": 2474.26, + "probability": 0.85791015625 + }, + { + "word": " T", + "start": 2474.26, + "end": 2474.42, + "probability": 0.25146484375 + }, + { + "word": "-Mobile.", + "start": 2474.42, + "end": 2474.6, + "probability": 0.162109375 + } + ] + }, + { + "id": 1363, + "text": "It was terrible.", + "start": 2474.9, + "end": 2475.42, + "words": [ + { + "word": " It", + "start": 2474.9, + "end": 2475.0, + "probability": 0.984375 + }, + { + "word": " was", + "start": 2475.0, + "end": 2475.16, + "probability": 0.88330078125 + }, + { + "word": " terrible.", + "start": 2475.16, + "end": 2475.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1364, + "text": "It is terrible.", + "start": 2475.5, + "end": 2476.14, + "words": [ + { + "word": " It", + "start": 2475.5, + "end": 2475.66, + "probability": 0.97021484375 + }, + { + "word": " is", + "start": 2475.66, + "end": 2475.88, + "probability": 0.99462890625 + }, + { + "word": " terrible.", + "start": 2475.88, + "end": 2476.14, + "probability": 1.0 + } + ] + }, + { + "id": 1365, + "text": "I moved to Verizon.", + "start": 2476.14, + "end": 2476.62, + "words": [ + { + "word": " I", + "start": 2476.14, + "end": 2476.2, + "probability": 0.92626953125 + }, + { + "word": " moved", + "start": 2476.2, + "end": 2476.3, + "probability": 0.98779296875 + }, + { + "word": " to", + "start": 2476.3, + "end": 2476.42, + "probability": 0.99951171875 + }, + { + "word": " Verizon.", + "start": 2476.42, + "end": 2476.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1366, + "text": "You're such a sad, sad boy.", + "start": 2476.76, + "end": 2478.1, + "words": [ + { + "word": " You're", + "start": 2476.76, + "end": 2476.98, + "probability": 0.9990234375 + }, + { + "word": " such", + "start": 2476.98, + "end": 2477.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 2477.16, + "end": 2477.32, + "probability": 1.0 + }, + { + "word": " sad,", + "start": 2477.32, + "end": 2477.58, + "probability": 1.0 + }, + { + "word": " sad", + "start": 2477.64, + "end": 2477.78, + "probability": 1.0 + }, + { + "word": " boy.", + "start": 2477.78, + "end": 2478.1, + "probability": 1.0 + } + ] + }, + { + "id": 1367, + "text": "You know what?", + "start": 2478.3, + "end": 2478.5, + "words": [ + { + "word": " You", + "start": 2478.3, + "end": 2478.38, + "probability": 0.84375 + }, + { + "word": " know", + "start": 2478.38, + "end": 2478.4, + "probability": 0.99853515625 + }, + { + "word": " what?", + "start": 2478.4, + "end": 2478.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1368, + "text": "I'm done with you.", + "start": 2478.68, + "end": 2479.42, + "words": [ + { + "word": " I'm", + "start": 2478.68, + "end": 2479.04, + "probability": 1.0 + }, + { + "word": " done", + "start": 2479.04, + "end": 2479.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 2479.16, + "end": 2479.3, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2479.3, + "end": 2479.42, + "probability": 1.0 + } + ] + }, + { + "id": 1369, + "text": "Yeah.", + "start": 2479.52, + "end": 2479.7, + "words": [ + { + "word": " Yeah.", + "start": 2479.52, + "end": 2479.7, + "probability": 0.48681640625 + } + ] + }, + { + "id": 1370, + "text": "All right, so here's what's going to happen.", + "start": 2479.8, + "end": 2481.76, + "words": [ + { + "word": " All", + "start": 2479.8, + "end": 2480.16, + "probability": 0.958984375 + }, + { + "word": " right,", + "start": 2480.16, + "end": 2480.32, + "probability": 1.0 + }, + { + "word": " so", + "start": 2480.36, + "end": 2480.52, + "probability": 1.0 + }, + { + "word": " here's", + "start": 2480.52, + "end": 2481.18, + "probability": 0.9970703125 + }, + { + "word": " what's", + "start": 2481.18, + "end": 2481.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 2481.36, + "end": 2481.42, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 2481.42, + "end": 2481.52, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 2481.52, + "end": 2481.76, + "probability": 1.0 + } + ] + }, + { + "id": 1371, + "text": "When we come back after the next hour, you know, into the next hour here,", + "start": 2481.82, + "end": 2485.68, + "words": [ + { + "word": " When", + "start": 2481.82, + "end": 2482.0, + "probability": 1.0 + }, + { + "word": " we", + "start": 2482.0, + "end": 2482.12, + "probability": 1.0 + }, + { + "word": " come", + "start": 2482.12, + "end": 2482.26, + "probability": 1.0 + }, + { + "word": " back", + "start": 2482.26, + "end": 2482.58, + "probability": 1.0 + }, + { + "word": " after", + "start": 2482.58, + "end": 2482.86, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2482.86, + "end": 2483.04, + "probability": 1.0 + }, + { + "word": " next", + "start": 2483.04, + "end": 2483.7, + "probability": 0.99951171875 + }, + { + "word": " hour,", + "start": 2483.7, + "end": 2484.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 2484.28, + "end": 2484.58, + "probability": 0.376708984375 + }, + { + "word": " know,", + "start": 2484.58, + "end": 2484.74, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2484.74, + "end": 2484.94, + "probability": 0.951171875 + }, + { + "word": " the", + "start": 2484.94, + "end": 2485.06, + "probability": 1.0 + }, + { + "word": " next", + "start": 2485.06, + "end": 2485.24, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2485.24, + "end": 2485.5, + "probability": 1.0 + }, + { + "word": " here,", + "start": 2485.5, + "end": 2485.68, + "probability": 1.0 + } + ] + }, + { + "id": 1372, + "text": "we're going to talk about more things to make your life better, technology-wise,", + "start": 2486.1, + "end": 2490.28, + "words": [ + { + "word": " we're", + "start": 2486.1, + "end": 2486.46, + "probability": 0.984375 + }, + { + "word": " going", + "start": 2486.46, + "end": 2486.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2486.52, + "end": 2486.54, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2486.54, + "end": 2486.68, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2486.68, + "end": 2486.86, + "probability": 1.0 + }, + { + "word": " more", + "start": 2486.86, + "end": 2487.22, + "probability": 1.0 + }, + { + "word": " things", + "start": 2487.22, + "end": 2487.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2487.96, + "end": 2488.38, + "probability": 1.0 + }, + { + "word": " make", + "start": 2488.38, + "end": 2488.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 2488.58, + "end": 2488.78, + "probability": 0.96875 + }, + { + "word": " life", + "start": 2488.78, + "end": 2488.92, + "probability": 0.92724609375 + }, + { + "word": " better,", + "start": 2488.92, + "end": 2489.34, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2489.42, + "end": 2489.96, + "probability": 0.99951171875 + }, + { + "word": "-wise,", + "start": 2489.96, + "end": 2490.28, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1373, + "text": "and also, you need to remember, tomorrow, September 11th, it's the 10-year anniversary,", + "start": 2490.36, + "end": 2496.12, + "words": [ + { + "word": " and", + "start": 2490.36, + "end": 2490.68, + "probability": 0.998046875 + }, + { + "word": " also,", + "start": 2490.68, + "end": 2491.16, + "probability": 0.95849609375 + }, + { + "word": " you", + "start": 2491.3, + "end": 2491.8, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 2491.8, + "end": 2492.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 2492.02, + "end": 2492.14, + "probability": 1.0 + }, + { + "word": " remember,", + "start": 2492.14, + "end": 2492.42, + "probability": 1.0 + }, + { + "word": " tomorrow,", + "start": 2492.62, + "end": 2492.98, + "probability": 0.99853515625 + }, + { + "word": " September", + "start": 2493.24, + "end": 2493.56, + "probability": 1.0 + }, + { + "word": " 11th,", + "start": 2493.56, + "end": 2494.26, + "probability": 0.9921875 + }, + { + "word": " it's", + "start": 2494.26, + "end": 2495.38, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 2495.38, + "end": 2495.5, + "probability": 0.99853515625 + }, + { + "word": " 10", + "start": 2495.5, + "end": 2495.64, + "probability": 0.99755859375 + }, + { + "word": "-year", + "start": 2495.64, + "end": 2495.78, + "probability": 0.9951171875 + }, + { + "word": " anniversary,", + "start": 2495.78, + "end": 2496.12, + "probability": 1.0 + } + ] + }, + { + "id": 1374, + "text": "so make sure that you're doing something to be a better person and to make us a better country.", + "start": 2496.14, + "end": 2501.28, + "words": [ + { + "word": " so", + "start": 2496.14, + "end": 2496.5, + "probability": 1.0 + }, + { + "word": " make", + "start": 2496.5, + "end": 2497.14, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 2497.14, + "end": 2497.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 2497.32, + "end": 2497.44, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2497.44, + "end": 2497.6, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2497.6, + "end": 2497.84, + "probability": 1.0 + }, + { + "word": " something", + "start": 2497.84, + "end": 2498.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 2498.24, + "end": 2498.68, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 2498.68, + "end": 2499.08, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2499.08, + "end": 2499.22, + "probability": 1.0 + }, + { + "word": " better", + "start": 2499.22, + "end": 2499.4, + "probability": 1.0 + }, + { + "word": " person", + "start": 2499.4, + "end": 2499.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 2499.76, + "end": 2500.3, + "probability": 0.97705078125 + }, + { + "word": " to", + "start": 2500.3, + "end": 2500.44, + "probability": 1.0 + }, + { + "word": " make", + "start": 2500.44, + "end": 2500.58, + "probability": 1.0 + }, + { + "word": " us", + "start": 2500.58, + "end": 2500.7, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2500.7, + "end": 2500.78, + "probability": 1.0 + }, + { + "word": " better", + "start": 2500.78, + "end": 2500.94, + "probability": 1.0 + }, + { + "word": " country.", + "start": 2500.94, + "end": 2501.28, + "probability": 1.0 + } + ] + }, + { + "id": 1375, + "text": "This is Computer Guru Show.", + "start": 2501.48, + "end": 2502.7, + "words": [ + { + "word": " This", + "start": 2501.48, + "end": 2501.84, + "probability": 0.99658203125 + }, + { + "word": " is", + "start": 2501.84, + "end": 2502.0, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 2502.0, + "end": 2502.26, + "probability": 0.97705078125 + }, + { + "word": " Guru", + "start": 2502.26, + "end": 2502.5, + "probability": 0.94677734375 + }, + { + "word": " Show.", + "start": 2502.5, + "end": 2502.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 1376, + "text": "We'll be right back after the news.", + "start": 2502.82, + "end": 2504.26, + "words": [ + { + "word": " We'll", + "start": 2502.82, + "end": 2503.16, + "probability": 0.9892578125 + }, + { + "word": " be", + "start": 2503.16, + "end": 2503.22, + "probability": 1.0 + }, + { + "word": " right", + "start": 2503.22, + "end": 2503.34, + "probability": 1.0 + }, + { + "word": " back", + "start": 2503.34, + "end": 2503.62, + "probability": 1.0 + }, + { + "word": " after", + "start": 2503.62, + "end": 2503.96, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 2503.96, + "end": 2504.08, + "probability": 0.99951171875 + }, + { + "word": " news.", + "start": 2504.08, + "end": 2504.26, + "probability": 1.0 + } + ] + }, + { + "id": 1377, + "text": "We'll be right back.", + "start": 2505.18, + "end": 2506.38, + "words": [ + { + "word": " We'll", + "start": 2505.18, + "end": 2505.74, + "probability": 0.491943359375 + }, + { + "word": " be", + "start": 2505.74, + "end": 2506.12, + "probability": 0.68017578125 + }, + { + "word": " right", + "start": 2506.12, + "end": 2506.2, + "probability": 0.96923828125 + }, + { + "word": " back.", + "start": 2506.2, + "end": 2506.38, + "probability": 0.99755859375 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.srt new file mode 100644 index 0000000..d8c263b --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.srt @@ -0,0 +1,5512 @@ +1 +00:00:00,000 --> 00:00:04,700 +From my heart and from my hand, why don't people understand my intentions? + +2 +00:00:05,340 --> 00:00:06,480 +Computer running slow? + +3 +00:00:06,700 --> 00:00:06,880 +Boing! + +4 +00:00:07,120 --> 00:00:07,940 +Caught a virus? + +5 +00:00:08,160 --> 00:00:08,280 +Ah! + +6 +00:00:08,540 --> 00:00:09,060 +Ah! + +7 +00:00:09,240 --> 00:00:09,640 +Ah! + +8 +00:00:09,780 --> 00:00:13,460 +Does your computer seem to have a life of its own? + +9 +00:00:13,820 --> 00:00:14,420 +Malfunction. + +10 +00:00:14,640 --> 00:00:16,020 +Me getting good. + +11 +00:00:16,240 --> 00:00:17,900 +The computer guru is here. + +12 +00:00:18,040 --> 00:00:19,020 +My God, you're here! + +13 +00:00:19,360 --> 00:00:20,200 +Call in now. + +14 +00:00:20,740 --> 00:00:22,000 +751-1041. + +15 +00:00:22,300 --> 00:00:24,200 +That's 751-1041. + +16 +00:00:24,660 --> 00:00:27,560 +Now, it's Mike Swanson, your computer guru. + +17 +00:00:27,800 --> 00:00:29,260 +On 104.1 The Truth. + +18 +00:00:30,000 --> 00:00:32,880 +I'm in for a juice-ass news talk, FM. + +19 +00:00:34,800 --> 00:00:36,520 +Hello and welcome to the Computer Guru Show. + +20 +00:00:36,560 --> 00:00:37,080 +My name's Mike. + +21 +00:00:37,080 --> 00:00:40,360 +Here to deal with your technology needs and treat you like a real person in the process. + +22 +00:00:40,540 --> 00:00:42,940 +Today is September 10th, 2011. + +23 +00:00:44,100 --> 00:00:46,100 +Now, I was thinking back on the way down here. + +24 +00:00:46,140 --> 00:00:53,020 +I was thinking, you know, my mom used to tell me that, you know, you always remembered where you were when Kennedy was shot. + +25 +00:00:53,560 --> 00:00:53,920 +Right. + +26 +00:00:53,920 --> 00:00:57,240 +Or when man landed on the moon. + +27 +00:00:57,480 --> 00:00:57,840 +Right. + +28 +00:00:57,880 --> 00:00:59,660 +These are moments, landmark moments. + +29 +00:01:00,000 --> 00:01:05,720 +Where you remember for the rest of your life everything about that moment when you heard about it. + +30 +00:01:05,920 --> 00:01:06,260 +Okay. + +31 +00:01:06,280 --> 00:01:11,800 +So I was thinking about, where was I when I heard about September 11th, 2001? + +32 +00:01:12,100 --> 00:01:12,440 +Right. + +33 +00:01:12,520 --> 00:01:19,100 +And I was sitting at the left turn light at Campbell and Speedway on my way to work. + +34 +00:01:19,200 --> 00:01:22,040 +And my dad called me and he said, are you near a TV? + +35 +00:01:22,220 --> 00:01:25,000 +You should, you know, somebody flew a plane into a building. + +36 +00:01:26,540 --> 00:01:29,020 +And, you know, my dad and I are big aviation buffs, right? + +37 +00:01:29,080 --> 00:01:29,860 +We always talk. + +38 +00:01:29,860 --> 00:01:31,340 +We talk about airplanes and such. + +39 +00:01:31,460 --> 00:01:41,500 +And we thought, at least initially, at the time that he called me, it was similar to when, you know, there was a long time ago, there was a plane that crashed in the Empire State Building. + +40 +00:01:43,220 --> 00:01:46,880 +So we thought, well, wow, how do you manage to do something like that? + +41 +00:01:47,040 --> 00:01:47,600 +Right, right. + +42 +00:01:47,780 --> 00:01:52,860 +And so by the time I got to work, you know, everybody's sitting in front of a TV. + +43 +00:01:53,060 --> 00:01:56,000 +And that's when the second tower got hit. + +44 +00:01:56,180 --> 00:01:56,360 +Right. + +45 +00:01:57,040 --> 00:01:59,840 +And so it was suddenly a very different feeling for me. + +46 +00:01:59,860 --> 00:02:08,220 +Because initially it was just, this is just tragic that somebody would, you know, inadvertently fly into a building like that. + +47 +00:02:08,260 --> 00:02:09,980 +And that's terrible for all the people that lost their lives. + +48 +00:02:10,740 --> 00:02:18,780 +But then to, then once you knew that something was going on, that there was something else going on, that the mood changed dramatically. + +49 +00:02:18,980 --> 00:02:23,140 +And I remember going outside and it was just so silent. + +50 +00:02:23,700 --> 00:02:24,860 +And there was no cars. + +51 +00:02:25,080 --> 00:02:27,320 +There was no, definitely no planes. + +52 +00:02:28,060 --> 00:02:29,840 +You know, everything was just. + +53 +00:02:29,860 --> 00:02:30,240 +Shut down. + +54 +00:02:30,640 --> 00:02:32,540 +And it was a very surreal day for me. + +55 +00:02:32,560 --> 00:02:34,100 +You know, and watching that. + +56 +00:02:34,140 --> 00:02:35,040 +And I'm sure for everyone. + +57 +00:02:35,260 --> 00:02:37,780 +You know, to be able to watch that and just. + +58 +00:02:39,060 --> 00:02:39,840 +It's just amazing. + +59 +00:02:42,260 --> 00:02:51,720 +And so my tribute, at least to the 10th anniversary of the September 11th, is to remind people that, you know, we are a great country. + +60 +00:02:52,160 --> 00:02:55,440 +And we are a wonderful people. + +61 +00:02:55,720 --> 00:02:59,840 +And there may be, you know, there are things that we don't do right on a global scale. + +62 +00:02:59,860 --> 00:03:03,100 +There may be things where we don't make the best decisions. + +63 +00:03:04,280 --> 00:03:06,380 +But we are fantastic people. + +64 +00:03:06,480 --> 00:03:13,500 +And we should never forget to honor the people that have fought and died for us and to keep us safe. + +65 +00:03:14,200 --> 00:03:21,940 +And just to remember that, you know, in spite of tragedy, we are what makes America great. + +66 +00:03:22,160 --> 00:03:23,640 +You know, each and every one of us. + +67 +00:03:23,680 --> 00:03:27,720 +We are the ones that continue to go on. + +68 +00:03:27,780 --> 00:03:28,720 +That smile. + +69 +00:03:30,120 --> 00:03:31,080 +That remember. + +70 +00:03:31,700 --> 00:03:32,640 +Endure through it all. + +71 +00:03:32,800 --> 00:03:33,040 +Yeah. + +72 +00:03:33,100 --> 00:03:36,100 +Just remember that, you know, you are the greatness. + +73 +00:03:36,760 --> 00:03:43,780 +And make sure that whatever you do on a daily basis is being more of that. + +74 +00:03:44,500 --> 00:03:44,980 +Right? + +75 +00:03:45,000 --> 00:03:47,900 +Every day I live my life trying to be a better person than I was yesterday. + +76 +00:03:48,240 --> 00:03:48,500 +Right. + +77 +00:03:48,540 --> 00:03:59,380 +And so I just urge people to do that in their own lives as far as, you know, if you want to have a wonderful life. + +78 +00:03:59,860 --> 00:04:00,280 +Right. + +79 +00:04:00,300 --> 00:04:11,960 +And even though my life isn't, you know, isn't all daffodils, right, you know, you know, I'm happy with who I am because I work very hard to make sure that I am better than I was yesterday. + +80 +00:04:12,040 --> 00:04:12,380 +Right. + +81 +00:04:12,620 --> 00:04:13,060 +Yeah. + +82 +00:04:13,160 --> 00:04:18,160 +And then I was 10 years ago, I was full of anger and resentment and rage about tomorrow. + +83 +00:04:19,660 --> 00:04:23,100 +And, you know, it's now I look at it very differently. + +84 +00:04:23,480 --> 00:04:29,020 +You know, I've had the opportunity to mature a little over the last 10 years and to say, well. + +85 +00:04:30,400 --> 00:04:32,720 +This is just an opportunity for us to be better. + +86 +00:04:34,760 --> 00:04:39,980 +So please observe your September 11th, you know, whatever you're doing for this day. + +87 +00:04:40,660 --> 00:04:44,700 +I urge you to reflect back on what you were 10 years ago. + +88 +00:04:45,200 --> 00:04:52,000 +And I hope that you're a better person today, not simply because of it, just as a reminder of that. + +89 +00:04:52,140 --> 00:04:52,440 +Absolutely. + +90 +00:04:52,460 --> 00:04:54,160 +Go out and do something for the community tomorrow. + +91 +00:04:54,340 --> 00:04:58,280 +You know, go out there and, you know, just show your support a little bit, you know. + +92 +00:04:58,720 --> 00:04:59,780 +Or just, you know. + +93 +00:04:59,860 --> 00:05:05,280 +Thank an officer or a fireman that, you know, because these are the guys that they're the heroes of September 11th. + +94 +00:05:05,680 --> 00:05:08,980 +So, you know, I mean, I was in the Army, but I'm not a hero of September 11th by no means. + +95 +00:05:09,060 --> 00:05:14,280 +These firefighters and cops and all these guys, even though they weren't over in New York, maybe. + +96 +00:05:14,480 --> 00:05:18,360 +First responders are the ones that have to live with this on a daily basis, and especially right now. + +97 +00:05:18,440 --> 00:05:18,740 +Absolutely. + +98 +00:05:18,880 --> 00:05:20,560 +You think about what they're doing right now in New York. + +99 +00:05:20,820 --> 00:05:22,600 +I mean, that place is on lockdown. + +100 +00:05:23,600 --> 00:05:29,680 +But, you know, thank you very much to everyone in the community that is first responder or has anything to do. + +101 +00:05:29,860 --> 00:05:30,920 +With keeping us safe. + +102 +00:05:31,060 --> 00:05:31,360 +Absolutely. + +103 +00:05:31,620 --> 00:05:37,700 +And if you just want to find something else to do, for you to do your good deed for the day tomorrow, + +104 +00:05:37,880 --> 00:05:39,280 +there are actually lots of things that are going on. + +105 +00:05:39,380 --> 00:05:44,660 +One of our listeners, they're actually doing a blood drive tomorrow from noon to 4. + +106 +00:05:44,800 --> 00:05:46,040 +It's a September 11th blood drive. + +107 +00:05:46,180 --> 00:05:48,620 +It's going to be at 250 West Speedway Boulevard. + +108 +00:05:50,060 --> 00:05:54,400 +The people that are doing it is the United Blood Services Muslims for Life. + +109 +00:05:54,520 --> 00:05:56,700 +And this is a Muslim mosque that is doing this. + +110 +00:05:56,800 --> 00:05:59,720 +So I think that's very cool that they're doing a blood drive. + +111 +00:06:00,500 --> 00:06:06,940 +And anybody who gives blood will be put in for a $1,000 shopping spree with Schmidt Jewelers. + +112 +00:06:07,260 --> 00:06:09,880 +So little things like that, I know you shouldn't do it just for the shopping spree. + +113 +00:06:09,880 --> 00:06:12,660 +You should do it because you want to do it. + +114 +00:06:12,700 --> 00:06:15,920 +So you want to give some blood, give back to the community, people who need it. + +115 +00:06:16,160 --> 00:06:17,840 +That's an option for you to do that. + +116 +00:06:17,880 --> 00:06:18,320 +It would be great. + +117 +00:06:18,760 --> 00:06:23,140 +And the blood bank is always looking for people to give up the goods. + +118 +00:06:23,480 --> 00:06:23,820 +Absolutely. + +119 +00:06:24,300 --> 00:06:25,460 +It's always in need. + +120 +00:06:25,580 --> 00:06:28,520 +So if you have the opportunity, go down and check them out tomorrow. + +121 +00:06:28,720 --> 00:06:29,840 +All right. + +122 +00:06:29,840 --> 00:06:29,840 + + +123 +00:06:29,840 --> 00:06:29,840 + + +124 +00:06:29,840 --> 00:06:29,840 + + +125 +00:06:29,840 --> 00:06:29,840 + + +126 +00:06:29,840 --> 00:06:29,840 + + +127 +00:06:29,840 --> 00:06:29,840 + + +128 +00:06:29,860 --> 00:06:30,960 +Well, yes. + +129 +00:06:31,660 --> 00:06:32,700 +I'm done being somber. + +130 +00:06:32,800 --> 00:06:33,220 +Oh, okay. + +131 +00:06:33,380 --> 00:06:33,600 +All right. + +132 +00:06:33,640 --> 00:06:37,080 +We've got to end the somberness here because, you know, that's not what this show is about. + +133 +00:06:37,280 --> 00:06:40,820 +It's not supposed to be sad and reflective. + +134 +00:06:41,880 --> 00:06:43,120 +Let's go ahead and take a call here. + +135 +00:06:43,340 --> 00:06:44,840 +Oh, Lionel, how are you doing? + +136 +00:06:46,140 --> 00:06:46,840 +I'm sorry, who? + +137 +00:06:47,040 --> 00:06:47,240 +Me? + +138 +00:06:47,400 --> 00:06:47,760 +Yes. + +139 +00:06:48,180 --> 00:06:49,540 +I didn't hear my name. + +140 +00:06:49,620 --> 00:06:52,260 +Oh, I didn't hit the button properly, I guess. + +141 +00:06:52,280 --> 00:06:52,960 +Well, there you go. + +142 +00:06:53,040 --> 00:06:54,680 +Anyway, your opening comments were spot on. + +143 +00:06:54,800 --> 00:06:55,440 +I appreciate it. + +144 +00:06:55,600 --> 00:06:56,280 +Oh, thank you. + +145 +00:06:56,720 --> 00:06:58,380 +I'm calling about smartphone security. + +146 +00:06:58,680 --> 00:06:59,840 +Have you guys downloaded? + +147 +00:07:00,440 --> 00:07:07,800 +Checked out any of the mobile Droid apps that are available on the market like My Lookout or the AVG one or any of those? + +148 +00:07:07,800 --> 00:07:09,960 +I use the Lookout mobile security on my phone. + +149 +00:07:10,240 --> 00:07:12,000 +And that's the one that I like. + +150 +00:07:12,760 --> 00:07:15,800 +And to me, it seems to do the job just fine. + +151 +00:07:16,340 --> 00:07:19,060 +It doesn't slow down your phone at all very much? + +152 +00:07:19,360 --> 00:07:20,700 +Not that I can notice. + +153 +00:07:20,980 --> 00:07:21,460 +Okay. + +154 +00:07:21,800 --> 00:07:29,100 +And it seems to do most of its stuff only at when you access a certain application or when you install the application. + +155 +00:07:30,120 --> 00:07:31,800 +or when you first start up the phone. + +156 +00:07:31,900 --> 00:07:34,080 +So everything in between, it's not doing much. + +157 +00:07:34,260 --> 00:07:35,900 +Right, and you're definitely pleased with it then. + +158 +00:07:36,040 --> 00:07:36,900 +It works for me. + +159 +00:07:36,980 --> 00:07:40,640 +And I like it because it gives me the opportunity to do the remote wipe, + +160 +00:07:40,820 --> 00:07:43,440 +the location of my phone if I lose it. + +161 +00:07:43,640 --> 00:07:43,920 +Right. + +162 +00:07:44,000 --> 00:07:46,980 +Which is the primary reason I installed the application in the first place. + +163 +00:07:47,740 --> 00:07:48,360 +Butterfingers, huh? + +164 +00:07:48,580 --> 00:07:50,920 +Well, you know, I tend to leave things. + +165 +00:07:51,080 --> 00:07:51,780 +Yeah, right. + +166 +00:07:52,280 --> 00:07:55,080 +Laptops and phones and my keys everywhere. + +167 +00:07:55,380 --> 00:07:56,000 +There you go. + +168 +00:07:56,120 --> 00:07:57,280 +Because it turns the phone on. + +169 +00:07:57,580 --> 00:07:59,140 +Right, it turns the phone on like today. + +170 +00:07:59,960 --> 00:08:05,360 +So, yes, I put that on there mainly because I wanted something to keep track of the phone. + +171 +00:08:05,520 --> 00:08:06,100 +Right, right. + +172 +00:08:06,140 --> 00:08:10,360 +And as a side note, it does, you know, the privacy screening + +173 +00:08:10,360 --> 00:08:14,760 +and the basic antivirus on the phone as well, which is kind of nice. + +174 +00:08:15,280 --> 00:08:16,100 +All right, very good. + +175 +00:08:16,140 --> 00:08:16,920 +Thanks for the information. + +176 +00:08:17,200 --> 00:08:17,580 +No problem. + +177 +00:08:17,620 --> 00:08:18,080 +Thanks for the call. + +178 +00:08:18,140 --> 00:08:18,660 +I appreciate it. + +179 +00:08:19,020 --> 00:08:21,400 +If you'd like to be part of the show, 751-1041, + +180 +00:08:21,640 --> 00:08:25,160 +we'll see what we can do to help you out with whatever technology issues you may be having. + +181 +00:08:25,260 --> 00:08:25,860 +But, Raynal. + +182 +00:08:26,080 --> 00:08:26,440 +Yes. + +183 +00:08:26,920 --> 00:08:28,080 +Do you remember what we can get? + +184 +00:08:28,080 --> 00:08:28,920 +Because I see right now. + +185 +00:08:28,920 --> 00:08:29,040 +I'm Ray. + +186 +00:08:29,140 --> 00:08:30,900 +I'm a goody-go-money machine, but I do have some news. + +187 +00:08:31,080 --> 00:08:32,580 +Things I can talk about off the top of my head. + +188 +00:08:32,860 --> 00:08:32,960 +Yeah. + +189 +00:08:33,280 --> 00:08:38,340 +Hey, if you guys have an extra $40,000 laying around and you want to buy a pair of shoes, + +190 +00:08:38,840 --> 00:08:40,780 +I'm going to tell you what shoes you can buy because they're awesome. + +191 +00:08:41,040 --> 00:08:41,360 +Right. + +192 +00:08:41,840 --> 00:08:42,660 +So that's pretty cool. + +193 +00:08:42,700 --> 00:08:43,320 +And it goes to a charity. + +194 +00:08:43,420 --> 00:08:47,220 +I don't know who would buy $40,000 shoes, but I guess some people are. + +195 +00:08:47,240 --> 00:08:47,580 +Some people are. + +196 +00:08:47,580 --> 00:08:49,140 +1,500 people are, yeah, I guess. + +197 +00:08:49,440 --> 00:08:50,340 +So, yeah, that's cool. + +198 +00:08:50,660 --> 00:08:56,300 +And that money is going to a fundraiser for people with Parkinson's. + +199 +00:08:56,340 --> 00:08:58,500 +So you might be able to put the pieces together. + +200 +00:08:58,500 --> 00:08:59,580 +I'll tell you a little bit more about that here. + +201 +00:08:59,580 --> 00:09:00,900 +People are hacking cars now. + +202 +00:09:01,080 --> 00:09:02,500 +People are hacking cars, yeah. + +203 +00:09:02,620 --> 00:09:05,360 +I mean, they have to have physical touch with it, but they are hacking cars. + +204 +00:09:05,600 --> 00:09:06,500 +Yeah, that's not for long. + +205 +00:09:06,620 --> 00:09:08,380 +Pretty soon they'll be able to do it through ESPN. + +206 +00:09:08,560 --> 00:09:11,720 +People are getting viruses via speeding tickets. + +207 +00:09:12,800 --> 00:09:13,360 +That's awesome. + +208 +00:09:13,420 --> 00:09:14,640 +That is interesting. + +209 +00:09:14,960 --> 00:09:16,620 +We'll tell you a little more about that one as well. + +210 +00:09:17,060 --> 00:09:18,760 +And, of course, there's always the new thing. + +211 +00:09:18,840 --> 00:09:21,180 +You know, people are mooning Google TV. + +212 +00:09:21,460 --> 00:09:22,060 +Or not Google TV. + +213 +00:09:22,140 --> 00:09:23,220 +They're mooning Google street maps. + +214 +00:09:23,220 --> 00:09:24,900 +I didn't know that they were actually mooning. + +215 +00:09:24,900 --> 00:09:26,340 +Wasn't it just a full-on frontal? + +216 +00:09:26,560 --> 00:09:27,420 +Full Monty. + +217 +00:09:27,500 --> 00:09:27,860 +Yeah. + +218 +00:09:27,860 --> 00:09:28,100 +Yeah. + +219 +00:09:28,100 --> 00:09:28,380 +Yeah. + +220 +00:09:28,500 --> 00:09:28,740 +Full Monty. + +221 +00:09:28,840 --> 00:09:30,980 +So it has to be planned. + +222 +00:09:31,040 --> 00:09:32,280 +So that's out there. + +223 +00:09:32,440 --> 00:09:35,160 +I'll never get tired of those stories. + +224 +00:09:38,140 --> 00:09:39,840 +So what else we got going on? + +225 +00:09:40,040 --> 00:09:44,720 +Well, the other things that we're looking at is the droiding bionic. + +226 +00:09:44,880 --> 00:09:45,320 +Droid. + +227 +00:09:45,520 --> 00:09:46,380 +Droid bionic. + +228 +00:09:46,400 --> 00:09:47,600 +It came out this week. + +229 +00:09:47,640 --> 00:09:47,920 +Yes. + +230 +00:09:48,120 --> 00:09:52,040 +And they officially released the LTE in Tucson. + +231 +00:09:52,220 --> 00:09:52,720 +I know. + +232 +00:09:52,740 --> 00:09:53,400 +I got that email. + +233 +00:09:53,520 --> 00:09:54,220 +Very nice. + +234 +00:09:54,280 --> 00:09:56,320 +I don't know what I'm thinking about that just yet. + +235 +00:09:56,640 --> 00:09:58,220 +I had to get my hands on and play with it. + +236 +00:09:58,220 --> 00:09:59,020 +I'm going to get it first before I can decide. + +237 +00:09:59,300 --> 00:10:00,240 +Now, Crystal is out. + +238 +00:10:00,340 --> 00:10:01,700 +And we got Ross in here today. + +239 +00:10:01,700 --> 00:10:01,960 +Yes. + +240 +00:10:01,960 --> 00:10:02,460 +Ross is here. + +241 +00:10:02,540 --> 00:10:04,940 +And Ross is... + +242 +00:10:04,940 --> 00:10:07,500 +He doesn't remember how my show works. + +243 +00:10:07,600 --> 00:10:09,420 +He doesn't know the new stuff either. + +244 +00:10:09,460 --> 00:10:12,000 +And so we're just going to confuse him right now. + +245 +00:10:12,040 --> 00:10:12,540 +That's all right. + +246 +00:10:12,640 --> 00:10:14,080 +So let's go ahead and do an outro. + +247 +00:10:14,200 --> 00:10:14,860 +Let's get out of here. + +248 +00:10:14,900 --> 00:10:16,100 +We're going to go to a break real quick here. + +249 +00:10:16,540 --> 00:10:18,160 +This is the Computer Guru. + +250 +00:10:19,120 --> 00:10:19,440 +See? + +251 +00:10:19,620 --> 00:10:19,940 +See? + +252 +00:10:20,020 --> 00:10:20,260 +Yeah. + +253 +00:10:20,380 --> 00:10:20,740 +Got it. + +254 +00:10:20,780 --> 00:10:21,320 +He's going to get it. + +255 +00:10:21,340 --> 00:10:25,520 +By the end of the show, he's going to be a poor mixing expert for the Computer Guru. + +256 +00:10:25,600 --> 00:10:26,480 +Then we're going to lose him. + +257 +00:10:26,560 --> 00:10:26,880 +Yeah. + +258 +00:10:26,880 --> 00:10:28,120 +Then he's going to be gone for the week. + +259 +00:10:28,220 --> 00:10:29,000 +So, all right. + +260 +00:10:29,220 --> 00:10:30,080 +We're able to... + +261 +00:10:30,080 --> 00:10:31,260 +You're listening to the Computer Guru Show. + +262 +00:10:31,340 --> 00:10:32,200 +We'll be right back. + +263 +00:10:34,420 --> 00:10:35,120 +You good? + +264 +00:10:41,660 --> 00:10:42,820 +Mac or PC? + +265 +00:10:42,980 --> 00:10:44,160 +Desktop or laptop? + +266 +00:10:44,440 --> 00:10:45,400 +The Computer Guru. + +267 +00:10:45,740 --> 00:10:46,960 +We'll get your problem solved. + +268 +00:10:47,300 --> 00:10:50,620 +Call 751-1041 to talk with the Guru now. + +269 +00:10:50,900 --> 00:10:52,740 +On 104.1 The Truth. + +270 +00:10:54,100 --> 00:10:55,560 +Welcome back to the Computer Guru Show. + +271 +00:10:55,720 --> 00:10:57,240 +You know what we're doing today? + +272 +00:10:57,460 --> 00:10:57,760 +What? + +273 +00:10:57,760 --> 00:10:58,500 +3 o'clock. + +274 +00:10:58,640 --> 00:10:58,940 +What? + +275 +00:10:59,060 --> 00:11:01,720 +I'm doing another Windows Basics class. + +276 +00:11:02,060 --> 00:11:02,400 +Oh. + +277 +00:11:02,500 --> 00:11:02,880 +All right. + +278 +00:11:02,940 --> 00:11:03,720 +So, Windows 7. + +279 +00:11:03,900 --> 00:11:04,680 +Introduction to Windows 7. + +280 +00:11:04,740 --> 00:11:09,160 +So, if you're moving over from, you know, XP or Vista. + +281 +00:11:09,660 --> 00:11:10,380 +Mainly XP. + +282 +00:11:10,760 --> 00:11:11,120 +98. + +283 +00:11:12,300 --> 00:11:13,200 +I don't know. + +284 +00:11:13,700 --> 00:11:15,080 +If you're coming from 98... + +285 +00:11:15,080 --> 00:11:17,660 +You get your own class if you're coming from 98. + +286 +00:11:17,660 --> 00:11:19,480 +I actually had this gentleman come into the shop this week. + +287 +00:11:19,520 --> 00:11:21,900 +He had an old on a brick of a laptop. + +288 +00:11:22,060 --> 00:11:24,400 +And this thing, you could have hit somebody with it and knocked him out. + +289 +00:11:24,800 --> 00:11:26,520 +And it had Windows NT on it, man. + +290 +00:11:26,560 --> 00:11:27,060 +And I was like... + +291 +00:11:27,060 --> 00:11:27,620 +He's like... + +292 +00:11:27,620 --> 00:11:28,540 +Is this thing worth anything? + +293 +00:11:28,680 --> 00:11:30,240 +Like, depends on if you're a collector. + +294 +00:11:30,400 --> 00:11:30,800 +I mean... + +295 +00:11:30,800 --> 00:11:33,240 +If you're Indiana Jones, it might be worth something. + +296 +00:11:33,400 --> 00:11:34,240 +But other than that, no. + +297 +00:11:34,400 --> 00:11:35,540 +If you're Indiana Jones. + +298 +00:11:35,780 --> 00:11:36,180 +Nice. + +299 +00:11:38,460 --> 00:11:40,020 +So, we're doing another class today. + +300 +00:11:40,180 --> 00:11:40,460 +Yes. + +301 +00:11:40,700 --> 00:11:43,500 +It's a Windows 7 Basics. + +302 +00:11:43,620 --> 00:11:43,820 +Right. + +303 +00:11:43,880 --> 00:11:47,720 +Basically, we're going to teach you everything that you need to know about the stuff that's changed. + +304 +00:11:47,940 --> 00:11:52,380 +And if you're migrating from a previous version of Windows, we'll kind of teach you how to do that. + +305 +00:11:52,560 --> 00:11:52,900 +Nice. + +306 +00:11:53,660 --> 00:11:57,040 +Now, we know that there's no direct upgrade path from XP to 7. + +307 +00:11:57,620 --> 00:12:01,520 +But we can teach you how to get your stuff over there and make it so that it at least looks familiar to you. + +308 +00:12:01,920 --> 00:12:03,820 +And teach you about the new tools that are in it. + +309 +00:12:03,880 --> 00:12:04,240 +Because there's... + +310 +00:12:04,240 --> 00:12:07,760 +You know, one of the questions we get most often about Windows 7 is... + +311 +00:12:07,760 --> 00:12:08,400 +Well, all right. + +312 +00:12:08,660 --> 00:12:11,820 +I'm coming from XP, so I'm used to doing my defraggling. + +313 +00:12:13,120 --> 00:12:13,480 +Defrag. + +314 +00:12:14,440 --> 00:12:17,800 +And my other maintenance on a weekly or sometimes hourly basis. + +315 +00:12:18,520 --> 00:12:19,620 +What do I need to do now? + +316 +00:12:19,740 --> 00:12:20,620 +And the truth is, nothing. + +317 +00:12:20,840 --> 00:12:23,220 +It's all automatic in 7, which is kind of nice. + +318 +00:12:23,800 --> 00:12:24,960 +And there's just... + +319 +00:12:24,960 --> 00:12:27,600 +The biggest change overall is the searchability of 7. + +320 +00:12:28,120 --> 00:12:29,640 +Which is just pretty amazing. + +321 +00:12:29,840 --> 00:12:32,740 +So, if you want to attend the class, you can from 3 o'clock to 5 o'clock today. + +322 +00:12:33,180 --> 00:12:36,320 +It generally runs from, let's say, 3.15 to 7. + +323 +00:12:36,900 --> 00:12:40,760 +You know, just because I don't kick everybody out. + +324 +00:12:41,020 --> 00:12:42,820 +It's, you know, they continue to ask questions. + +325 +00:12:42,880 --> 00:12:45,820 +I continue to answer them until people get tired and leave. + +326 +00:12:46,680 --> 00:12:48,120 +Sometimes I could run on for hours. + +327 +00:12:48,300 --> 00:12:48,460 +Yeah. + +328 +00:12:48,460 --> 00:12:49,480 +So, it's $40. + +329 +00:12:49,680 --> 00:12:50,280 +Come on down. + +330 +00:12:50,320 --> 00:12:51,340 +We can teach you whatever you want to know. + +331 +00:12:51,900 --> 00:12:54,640 +If you want more information, you can call Shop 304-8300. + +332 +00:12:54,780 --> 00:12:56,160 +Or if you'd like to be part of this show, + +333 +00:12:56,320 --> 00:12:57,540 +call 751-1041. + +334 +00:12:57,620 --> 00:13:00,980 +We'll see what we can do to help you out with whatever technology is ailing you today. + +335 +00:13:02,440 --> 00:13:03,360 +So, let's talk... + +336 +00:13:03,360 --> 00:13:04,520 +I want to talk about these shoes real fast. + +337 +00:13:04,640 --> 00:13:04,840 +Really? + +338 +00:13:04,880 --> 00:13:06,320 +You're all about these shoes. + +339 +00:13:06,440 --> 00:13:06,920 +I'm all about these shoes. + +340 +00:13:06,960 --> 00:13:08,300 +These $40,000 shoes. + +341 +00:13:08,640 --> 00:13:11,080 +Well, actually, they're whatever their highest bid is. + +342 +00:13:11,240 --> 00:13:14,020 +But, so, I don't know if you guys remember Back to the Future. + +343 +00:13:14,160 --> 00:13:15,780 +Or I should say Back to the Future 2. + +344 +00:13:16,540 --> 00:13:19,800 +There, Marty McFly was wearing some really cool Nikes in there. + +345 +00:13:19,900 --> 00:13:21,520 +And, you know, they were lit up in colors. + +346 +00:13:21,540 --> 00:13:23,960 +And they adjusted to his feet and all that good stuff. + +347 +00:13:24,160 --> 00:13:24,460 +Out of lace. + +348 +00:13:24,780 --> 00:13:25,140 +Right. + +349 +00:13:25,240 --> 00:13:25,640 +Out of lace. + +350 +00:13:25,700 --> 00:13:26,060 +Exactly. + +351 +00:13:26,320 --> 00:13:27,000 +And it talked. + +352 +00:13:27,620 --> 00:13:28,340 +I like the jacket myself. + +353 +00:13:28,580 --> 00:13:29,180 +The jacket, yeah. + +354 +00:13:29,260 --> 00:13:29,800 +Dry cleans. + +355 +00:13:30,540 --> 00:13:31,840 +Well, no jacket yet. + +356 +00:13:31,920 --> 00:13:34,340 +But the shoes are available now. + +357 +00:13:34,720 --> 00:13:37,840 +So, these Nike shoes are only making 1,500 pair. + +358 +00:13:38,740 --> 00:13:40,920 +And they're being sold to the highest bidders. + +359 +00:13:41,280 --> 00:13:42,120 +eBay only. + +360 +00:13:42,720 --> 00:13:44,060 +Well, a majority... + +361 +00:13:44,560 --> 00:13:46,580 +A couple hundred are on eBay. + +362 +00:13:46,820 --> 00:13:48,380 +And they're doing other bids, too. + +363 +00:13:48,560 --> 00:13:50,000 +You know, in-person bids. + +364 +00:13:51,240 --> 00:13:52,640 +But all the proceeds... + +365 +00:13:52,640 --> 00:13:53,480 +This is what's cool about it. + +366 +00:13:53,520 --> 00:13:55,720 +So, let's say somebody buys one for $3,000, $7,000. + +367 +00:13:55,860 --> 00:13:56,860 +Like somebody just did recently. + +368 +00:13:57,620 --> 00:13:57,640 +Yeah. + +369 +00:13:58,660 --> 00:13:59,560 +$3,000, $7,000. + +370 +00:13:59,820 --> 00:14:01,900 +Well, somebody's going to match that. + +371 +00:14:02,280 --> 00:14:05,360 +The actual creator of Google is matching that. + +372 +00:14:05,400 --> 00:14:06,300 +Up to $50 million. + +373 +00:14:06,700 --> 00:14:07,260 +Up to $50 million. + +374 +00:14:09,220 --> 00:14:10,380 +So, it's pretty cool. + +375 +00:14:10,420 --> 00:14:16,240 +All the proceeds are going to Michael J. Fox's charity for Parkinson's disease. + +376 +00:14:16,320 --> 00:14:17,200 +Which is really cool. + +377 +00:14:17,640 --> 00:14:18,980 +He was on the Letterman Show. + +378 +00:14:19,100 --> 00:14:20,280 +It was the last night or the night before last. + +379 +00:14:20,380 --> 00:14:20,680 +I'm not sure. + +380 +00:14:21,120 --> 00:14:22,740 +And, you know, he talked about it. + +381 +00:14:22,780 --> 00:14:24,100 +And he looks like he's doing really good. + +382 +00:14:24,500 --> 00:14:27,440 +Even though he has Parkinson's and he can't really act as much anymore. + +383 +00:14:27,440 --> 00:14:28,680 +He's doing really good, it seems like. + +384 +00:14:29,460 --> 00:14:31,280 +But these shoes are really cool. + +385 +00:14:31,340 --> 00:14:32,080 +And they light up. + +386 +00:14:32,080 --> 00:14:33,320 +They even do the auto-adjust. + +387 +00:14:33,680 --> 00:14:34,940 +So, you know, you put them on your feet. + +388 +00:14:34,980 --> 00:14:35,560 +You push the button. + +389 +00:14:35,620 --> 00:14:36,980 +They automatically cinch up to your foot. + +390 +00:14:37,020 --> 00:14:37,480 +No, no, no. + +391 +00:14:37,500 --> 00:14:38,720 +The auto-lace is not in them. + +392 +00:14:38,800 --> 00:14:39,200 +No, no. + +393 +00:14:39,260 --> 00:14:40,540 +The band at the top. + +394 +00:14:40,560 --> 00:14:40,860 +It does. + +395 +00:14:40,960 --> 00:14:41,720 +Oh, the band at the top. + +396 +00:14:41,740 --> 00:14:42,420 +But the auto-lace is not in there. + +397 +00:14:42,420 --> 00:14:43,160 +The lace is not the lace. + +398 +00:14:43,240 --> 00:14:45,480 +But the band at the top does adjust automatically. + +399 +00:14:45,480 --> 00:14:46,360 +And they're rechargeable. + +400 +00:14:46,380 --> 00:14:48,560 +It's the first rechargeable shoe that Nike has made. + +401 +00:14:48,660 --> 00:14:48,900 +Yeah. + +402 +00:14:50,140 --> 00:14:51,740 +Now, I think they went about this all wrong. + +403 +00:14:52,240 --> 00:14:52,800 +I think... + +404 +00:14:52,800 --> 00:14:54,200 +Because the person who... + +405 +00:14:54,200 --> 00:14:55,620 +The people who made this movie big. + +406 +00:14:55,760 --> 00:14:56,340 +You know, us. + +407 +00:14:56,340 --> 00:14:57,840 +The people who watched it all the time. + +408 +00:14:57,920 --> 00:14:59,620 +Can never afford $40,000 shoes. + +409 +00:15:00,240 --> 00:15:01,600 +I think what Nike should have done... + +410 +00:15:01,600 --> 00:15:03,200 +Because, you know, it takes them $2 to make a shoe. + +411 +00:15:03,340 --> 00:15:05,480 +Okay, this shoe, probably $50 to make this shoe. + +412 +00:15:06,080 --> 00:15:08,560 +They should have, you know, charged $400 for the shoe. + +413 +00:15:08,580 --> 00:15:10,580 +So, at least the average person can buy it. + +414 +00:15:10,580 --> 00:15:12,000 +That's the reason the auto-lace doesn't work. + +415 +00:15:12,020 --> 00:15:14,880 +Is because they, you know, their sweatshop labor doesn't really... + +416 +00:15:14,880 --> 00:15:16,720 +They can't figure out how that works. + +417 +00:15:17,920 --> 00:15:19,580 +Well, you know, I think that would be really, really cool. + +418 +00:15:19,680 --> 00:15:23,220 +So, the average person, instead of making $1,500 of them, make $15 million of them. + +419 +00:15:23,500 --> 00:15:24,980 +And let everybody buy one if they want. + +420 +00:15:25,040 --> 00:15:26,300 +Just pay $400 for it. + +421 +00:15:26,320 --> 00:15:26,320 + + +422 +00:15:26,320 --> 00:15:26,320 + + +423 +00:15:26,340 --> 00:15:27,040 +No, no, no. + +424 +00:15:27,140 --> 00:15:28,300 +Because, first of all, it's... + +425 +00:15:28,720 --> 00:15:29,040 +No. + +426 +00:15:29,180 --> 00:15:29,380 +No? + +427 +00:15:29,480 --> 00:15:30,560 +No, it's not going to work that way. + +428 +00:15:30,600 --> 00:15:30,720 +Why? + +429 +00:15:31,220 --> 00:15:32,200 +You got to think about it. + +430 +00:15:32,320 --> 00:15:33,820 +They're trying to raise this money for a charity. + +431 +00:15:33,940 --> 00:15:34,200 +Right. + +432 +00:15:34,260 --> 00:15:35,640 +So, they're doing that on a limited basis. + +433 +00:15:37,280 --> 00:15:39,440 +The opening bid for the shoes is pretty low. + +434 +00:15:40,020 --> 00:15:40,340 +Right? + +435 +00:15:40,440 --> 00:15:41,520 +Yeah, but what is going to... + +436 +00:15:41,520 --> 00:15:44,060 +And they're saying that they're going to sell nearly all of them on eBay. + +437 +00:15:44,400 --> 00:15:44,720 +Right. + +438 +00:15:44,760 --> 00:15:49,580 +With all of the net proceeds going to the foundation for Michael J. Fox. + +439 +00:15:49,580 --> 00:15:51,840 +I guarantee there won't be none sold under $20,000. + +440 +00:15:52,560 --> 00:15:53,140 +I don't know. + +441 +00:15:53,240 --> 00:15:54,640 +I don't see it. + +442 +00:15:54,660 --> 00:15:55,340 +I don't see it. + +443 +00:15:55,380 --> 00:15:56,300 +I mean, you get all these diamonds. + +444 +00:15:56,340 --> 00:15:58,280 +I heard people who have too much money. + +445 +00:15:58,340 --> 00:16:00,460 +You can give me the hoverboard, and then we're talking. + +446 +00:16:00,600 --> 00:16:00,940 +Oh, I'm in. + +447 +00:16:01,040 --> 00:16:02,040 +I want the hoverboard. + +448 +00:16:02,080 --> 00:16:02,900 +I'm in on that one. + +449 +00:16:03,020 --> 00:16:04,100 +I've been waiting years for that. + +450 +00:16:04,260 --> 00:16:06,000 +Mattel still says they're not releasing it. + +451 +00:16:07,200 --> 00:16:08,060 +Bunch of jerks. + +452 +00:16:08,900 --> 00:16:10,200 +That's what I'm telling you. + +453 +00:16:10,220 --> 00:16:10,880 +They're just jerks. + +454 +00:16:10,880 --> 00:16:11,400 +That's all they are. + +455 +00:16:11,580 --> 00:16:13,960 +If you'd like to be part of the show, 751-1041. + +456 +00:16:14,900 --> 00:16:16,660 +Let's go ahead and talk to James. + +457 +00:16:16,960 --> 00:16:17,580 +Hey, James, how are you doing? + +458 +00:16:18,140 --> 00:16:18,540 +I'm good. + +459 +00:16:18,680 --> 00:16:19,000 +How are you? + +460 +00:16:19,160 --> 00:16:20,240 +I'm doing all right. + +461 +00:16:20,340 --> 00:16:21,560 +I still want the hoverboard. + +462 +00:16:22,600 --> 00:16:26,220 +I'm actually, now that I think about it, I'm really upset. + +463 +00:16:26,340 --> 00:16:31,120 +That back to the future, I don't have a DeLorean that flies, and I don't have a hoverboard at this point. + +464 +00:16:31,160 --> 00:16:32,600 +Well, it's not 2015 yet. + +465 +00:16:33,440 --> 00:16:36,480 +Do you think they're coming with that in four years in this economy? + +466 +00:16:36,960 --> 00:16:38,200 +Yeah, I bet you can have one. + +467 +00:16:38,660 --> 00:16:39,840 +So what's going on, James? + +468 +00:16:40,600 --> 00:16:45,200 +I have kind of an old computer that I'm kind of trying to still keep running. + +469 +00:16:45,600 --> 00:16:46,600 +It's an older Dell. + +470 +00:16:46,740 --> 00:16:48,080 +It has Windows XP on it. + +471 +00:16:48,140 --> 00:16:48,420 +Okay. + +472 +00:16:48,680 --> 00:16:53,600 +I'm talking like five years old, and it had like an 80 gig hard drive on it, which was completely full. + +473 +00:16:53,780 --> 00:16:54,180 +Right. + +474 +00:16:54,220 --> 00:16:56,320 +So I had a friend of mine that's an IT guy. + +475 +00:16:56,340 --> 00:17:00,680 +I bought a 500 gig hard drive, and he, I don't know if I'm using the right terms, + +476 +00:17:00,880 --> 00:17:04,880 +he re-imaged basically my old hard drive onto the 500 gig. + +477 +00:17:04,940 --> 00:17:05,860 +So he cloned it, right? + +478 +00:17:06,360 --> 00:17:07,020 +Yeah, he cloned it. + +479 +00:17:07,040 --> 00:17:07,320 +That's it. + +480 +00:17:07,800 --> 00:17:08,840 +Put it back in. + +481 +00:17:08,940 --> 00:17:11,620 +It worked absolutely perfect for like a month. + +482 +00:17:11,900 --> 00:17:12,300 +Right. + +483 +00:17:12,400 --> 00:17:15,360 +And then all of a sudden, super slow. + +484 +00:17:15,800 --> 00:17:18,420 +I'm talking like the mouse doesn't even move without jumping. + +485 +00:17:19,100 --> 00:17:22,820 +And I got it to the point where I could, I don't know what the utility is called, + +486 +00:17:22,880 --> 00:17:26,020 +but in control panel, you can look and see what the processor's doing. + +487 +00:17:26,340 --> 00:17:26,700 +Right. + +488 +00:17:26,780 --> 00:17:29,120 +And the processor is at 100% all the time. + +489 +00:17:29,460 --> 00:17:29,840 +Okay. + +490 +00:17:29,880 --> 00:17:35,580 +So you either have an infection or you have some type of software that's really, really unhappy. + +491 +00:17:36,800 --> 00:17:42,620 +Well, you know, I ran my, I started it safe mode and ran my virus protector on it. + +492 +00:17:42,660 --> 00:17:43,280 +It didn't come up anything. + +493 +00:17:43,540 --> 00:17:45,200 +What virus protector do you have? + +494 +00:17:45,640 --> 00:17:47,100 +It's PC tools. + +495 +00:17:47,560 --> 00:17:48,040 +Okay. + +496 +00:17:48,640 --> 00:17:49,580 +Now, here's the deal. + +497 +00:17:49,720 --> 00:17:56,000 +If you get an infection, and this is true of all the antiviruses, but I'm going to make a generalization. + +498 +00:17:56,000 --> 00:17:57,040 +It's kind of a blanket statement. + +499 +00:17:57,900 --> 00:18:05,660 +And I will say that it's probably 90% true, is that when you get a virus on your machine, + +500 +00:18:05,720 --> 00:18:08,540 +let's say you get an infection, and you have an antivirus on there, + +501 +00:18:10,020 --> 00:18:13,640 +basically that virus becomes invisible to the antivirus that's installed on the machine. + +502 +00:18:14,280 --> 00:18:15,780 +Oh, even if I update it? + +503 +00:18:15,920 --> 00:18:16,740 +Even if you update it. + +504 +00:18:16,840 --> 00:18:22,200 +Because one of the first things that the better infections do, if we rate them on a scale of quality, + +505 +00:18:22,800 --> 00:18:25,120 +is that they go in and neuter the antivirus. + +506 +00:18:25,240 --> 00:18:25,620 +It says, + +507 +00:18:25,620 --> 00:18:26,780 +It says, look, I'm not here anymore. + +508 +00:18:26,940 --> 00:18:27,820 +You don't see me. + +509 +00:18:27,900 --> 00:18:31,060 +It kind of waves its hands and said, you know, you're looking for somebody else. + +510 +00:18:31,160 --> 00:18:32,440 +Yeah, there's even some new antiviruses out there. + +511 +00:18:32,680 --> 00:18:33,560 +Yeah, I've fixed the antivirus. + +512 +00:18:33,740 --> 00:18:38,440 +There's some new viruses out there that actually uninstall your antivirus and reinstalls as the antivirus. + +513 +00:18:38,580 --> 00:18:41,540 +Right, reinstalls itself looking just like the antivirus, but it's actually not. + +514 +00:18:41,620 --> 00:18:42,640 +It's the actual virus. + +515 +00:18:44,820 --> 00:18:47,960 +So, do you know when you get that process? + +516 +00:18:48,100 --> 00:18:48,780 +Are you near the machine? + +517 +00:18:49,720 --> 00:18:50,060 +No. + +518 +00:18:50,500 --> 00:18:50,840 +Okay. + +519 +00:18:51,900 --> 00:18:53,540 +So, one thing you're going to look at. + +520 +00:18:53,560 --> 00:18:53,660 +Okay. + +521 +00:18:53,660 --> 00:18:55,440 +If you can get the process list to come back. + +522 +00:18:55,620 --> 00:18:56,860 +Step again, where you can see you're 100%. + +523 +00:18:56,860 --> 00:19:02,400 +You can sort them by processes going into the process tab instead of the performance tab. + +524 +00:19:02,740 --> 00:19:07,320 +And you can find out which process itself is holding down all of your processor. + +525 +00:19:08,160 --> 00:19:13,380 +And that will give you a clue as to what's going on with it as far as if you can give me the name of the process that's holding everything down. + +526 +00:19:13,800 --> 00:19:15,880 +I can probably tell you how to fix it up. + +527 +00:19:16,520 --> 00:19:17,100 +Oh, okay. + +528 +00:19:17,340 --> 00:19:18,300 +So, do that. + +529 +00:19:18,620 --> 00:19:21,160 +And do you have another machine around or is this the only machine you have? + +530 +00:19:21,680 --> 00:19:22,700 +No, I've got another one. + +531 +00:19:22,820 --> 00:19:23,000 +All right. + +532 +00:19:23,020 --> 00:19:25,280 +So, then send me an email from the working machine. + +533 +00:19:26,300 --> 00:19:28,600 +It's a radio at azcomputerguru.com. + +534 +00:19:29,280 --> 00:19:30,460 +And we'll see what we can do to help you out. + +535 +00:19:31,240 --> 00:19:33,340 +Radio at azcomputerguru.com. + +536 +00:19:33,460 --> 00:19:33,620 +Right. + +537 +00:19:33,680 --> 00:19:37,740 +Or if you get it done in the next hour and a half, you can call me back and tell me what it is. + +538 +00:19:38,480 --> 00:19:38,760 +Okay. + +539 +00:19:39,060 --> 00:19:39,460 +All right. + +540 +00:19:40,520 --> 00:19:40,800 +Awesome. + +541 +00:19:40,820 --> 00:19:41,260 +Thank you. + +542 +00:19:41,300 --> 00:19:42,020 +Thanks for the call, James. + +543 +00:19:42,100 --> 00:19:42,600 +I appreciate it. + +544 +00:19:42,920 --> 00:19:43,320 +All right. + +545 +00:19:44,140 --> 00:19:45,820 +So, they're hacking cars these days, are they? + +546 +00:19:45,940 --> 00:19:46,620 +I hear, yes. + +547 +00:19:46,720 --> 00:19:47,520 +They are hacking cars. + +548 +00:19:48,680 --> 00:19:50,980 +Currently, they actually have to have physical contact with the car. + +549 +00:19:51,060 --> 00:19:52,540 +They have to actually get into the cab of the car. + +550 +00:19:53,220 --> 00:19:55,400 +And, you know, it's not. + +551 +00:19:55,620 --> 00:19:57,940 +Far from now, they won't even have to do that, though. + +552 +00:19:58,120 --> 00:19:58,260 +Yeah. + +553 +00:19:58,300 --> 00:20:02,000 +And you thought all you had to worry about then was stealing your change at the car washer. + +554 +00:20:02,060 --> 00:20:02,520 +Yeah, right. + +555 +00:20:02,560 --> 00:20:03,560 +They're going to be hacking your car. + +556 +00:20:03,760 --> 00:20:04,760 +Well, I mean, you think about it. + +557 +00:20:04,820 --> 00:20:10,180 +There's some cars out there, some of these new fancy cars that connect to the Internet wherever they go, + +558 +00:20:10,320 --> 00:20:11,640 +like, let's say, the Leaf. + +559 +00:20:12,060 --> 00:20:12,380 +Right. + +560 +00:20:13,440 --> 00:20:17,620 +With a car like that that's constantly hooked up to the Internet, you don't have to have physical contact with it. + +561 +00:20:17,640 --> 00:20:19,040 +You just have to really have a really good hacker. + +562 +00:20:19,540 --> 00:20:22,120 +And once they get it figured out the first time, well, they're done for. + +563 +00:20:22,380 --> 00:20:23,140 +I don't know. + +564 +00:20:23,200 --> 00:20:25,100 +What could you do by hacking the Leaf? + +565 +00:20:25,200 --> 00:20:25,600 +Make it possible. + +566 +00:20:25,600 --> 00:20:25,600 + + +567 +00:20:25,600 --> 00:20:25,600 + + +568 +00:20:25,600 --> 00:20:25,600 + + +569 +00:20:25,620 --> 00:20:26,480 +You can't make it prettier. + +570 +00:20:29,180 --> 00:20:29,900 +Careful now. + +571 +00:20:29,920 --> 00:20:31,020 +There's a couple all around in town. + +572 +00:20:31,080 --> 00:20:31,640 +They might be listening. + +573 +00:20:31,760 --> 00:20:32,520 +You can't make it uglier. + +574 +00:20:35,500 --> 00:20:38,740 +I guess you can make it to where, you know, the battery is constantly. + +575 +00:20:38,880 --> 00:20:39,220 +I don't know. + +576 +00:20:39,320 --> 00:20:39,980 +I have no idea. + +577 +00:20:40,280 --> 00:20:41,520 +I'm on vapor soon. + +578 +00:20:41,540 --> 00:20:42,460 +I have no idea what to do. + +579 +00:20:42,580 --> 00:20:43,840 +Start a Leaf fire. + +580 +00:20:44,160 --> 00:20:45,120 +A Leaf fire. + +581 +00:20:45,560 --> 00:20:46,280 +That's terrible. + +582 +00:20:47,320 --> 00:20:50,420 +No, I guess you can make it to where, you know, the car will open. + +583 +00:20:51,520 --> 00:20:51,880 +Yeah. + +584 +00:20:52,020 --> 00:20:52,700 +Something like that. + +585 +00:20:52,720 --> 00:20:53,400 +You can unlock the car. + +586 +00:20:53,580 --> 00:20:54,840 +I guess you could do something like that. + +587 +00:20:54,920 --> 00:20:55,400 +Hey, bud. + +588 +00:20:55,620 --> 00:20:57,940 +If you have an extra bathroom in your house that you want to rent out, + +589 +00:20:58,060 --> 00:20:59,540 +I'm going to tell you how you can do that here in a few minutes. + +590 +00:21:00,160 --> 00:21:00,560 +Fantastic. + +591 +00:21:01,960 --> 00:21:02,840 +Oh, that's awesome. + +592 +00:21:02,920 --> 00:21:05,780 +You're listening to The Computer Guru Show right here on 104.1 The Truth, + +593 +00:21:05,960 --> 00:21:07,120 +Tucson's News Talk FM. + +594 +00:21:15,020 --> 00:21:16,920 +Never miss a moment of The Computer Guru. + +595 +00:21:17,160 --> 00:21:20,800 +Go to 104.1thetruth.com for podcasts of every show. + +596 +00:21:21,000 --> 00:21:22,620 +This is The Computer Guru. + +597 +00:21:22,940 --> 00:21:23,340 +Now. + +598 +00:21:23,340 --> 00:21:23,640 +Now. + +599 +00:21:23,660 --> 00:21:25,480 +Back to more of The Computer Guru. + +600 +00:21:25,620 --> 00:21:28,720 +On 104.1 The Truth, Tucson's News Talk FM. + +601 +00:21:30,480 --> 00:21:36,380 +You know, I've been telling people for a long time when they get a traffic ticket and you + +602 +00:21:36,380 --> 00:21:37,520 +get the email about it. + +603 +00:21:38,020 --> 00:21:38,580 +Ignore it. + +604 +00:21:38,640 --> 00:21:39,720 +You should be ignoring it. + +605 +00:21:39,780 --> 00:21:41,820 +And here is the reason why now. + +606 +00:21:42,000 --> 00:21:47,020 +Because before it was just because I disagree with the service method. + +607 +00:21:47,320 --> 00:21:47,720 +Right. + +608 +00:21:47,860 --> 00:21:48,040 +Right. + +609 +00:21:48,100 --> 00:21:51,000 +Now, it's because it's probably a virus. + +610 +00:21:51,740 --> 00:21:52,260 +Interesting. + +611 +00:21:52,300 --> 00:21:55,480 +It gives me a much more satisfactory reason to say. + +612 +00:21:55,620 --> 00:21:56,780 +You shouldn't open that email. + +613 +00:21:57,240 --> 00:21:59,520 +So now you get viruses from speeding tickets. + +614 +00:21:59,800 --> 00:22:00,180 +That's right. + +615 +00:22:00,360 --> 00:22:01,160 +I like it. + +616 +00:22:01,180 --> 00:22:02,880 +This is one of the downfalls of speeding. + +617 +00:22:03,020 --> 00:22:04,640 +You get a virus now. + +618 +00:22:05,220 --> 00:22:07,400 +Maybe it's the city's way of, you know. + +619 +00:22:07,900 --> 00:22:08,640 +We'll get you. + +620 +00:22:08,860 --> 00:22:09,040 +Yeah. + +621 +00:22:09,620 --> 00:22:09,980 +Fine. + +622 +00:22:10,260 --> 00:22:11,480 +You're going to pay that money regardless. + +623 +00:22:11,600 --> 00:22:12,400 +You know, it's not going to be to us. + +624 +00:22:12,420 --> 00:22:13,520 +It's going to be to somebody else to get the virus off. + +625 +00:22:13,600 --> 00:22:13,700 +Yeah. + +626 +00:22:13,720 --> 00:22:18,040 +We're going to get taxes from somebody else if you don't pay this parking ticket or speeding ticket. + +627 +00:22:18,180 --> 00:22:18,300 +Oh, man. + +628 +00:22:18,980 --> 00:22:20,380 +You know, speaking of speeding tickets. + +629 +00:22:20,460 --> 00:22:22,620 +So I'm assuming it's an attachment with an email. + +630 +00:22:22,800 --> 00:22:23,020 +Yeah. + +631 +00:22:23,060 --> 00:22:24,080 +They're attaching it to an email. + +632 +00:22:24,120 --> 00:22:24,400 +Okay. + +633 +00:22:24,740 --> 00:22:25,520 +And it's. + +634 +00:22:25,620 --> 00:22:25,800 +It's stupid. + +635 +00:22:25,880 --> 00:22:26,800 +But, yeah. + +636 +00:22:27,680 --> 00:22:29,160 +It's just another reason that. + +637 +00:22:30,100 --> 00:22:31,540 +That you shouldn't open those emails. + +638 +00:22:31,860 --> 00:22:32,080 +Yes. + +639 +00:22:32,180 --> 00:22:33,440 +If they didn't have traffic cameras. + +640 +00:22:33,640 --> 00:22:33,960 +Right. + +641 +00:22:34,020 --> 00:22:34,820 +You wouldn't get these viruses. + +642 +00:22:35,040 --> 00:22:35,960 +That's how I'm looking at it. + +643 +00:22:36,020 --> 00:22:36,180 +Okay. + +644 +00:22:36,240 --> 00:22:36,900 +You're blaming it. + +645 +00:22:36,920 --> 00:22:37,700 +Blame it on the traffic cameras. + +646 +00:22:37,720 --> 00:22:37,860 +Yeah. + +647 +00:22:37,900 --> 00:22:39,280 +I don't like the traffic cameras. + +648 +00:22:39,320 --> 00:22:39,520 +Me either. + +649 +00:22:39,620 --> 00:22:40,140 +I'll tell you why. + +650 +00:22:40,200 --> 00:22:41,820 +I was moving last week. + +651 +00:22:41,900 --> 00:22:42,140 +Right. + +652 +00:22:42,260 --> 00:22:42,460 +Right. + +653 +00:22:42,520 --> 00:22:46,020 +So I've got this truck that I borrowed from some listeners. + +654 +00:22:46,240 --> 00:22:46,540 +Right. + +655 +00:22:46,640 --> 00:22:46,920 +Right. + +656 +00:22:46,920 --> 00:22:47,940 +Thank you, Tom and Mary Ann. + +657 +00:22:48,020 --> 00:22:48,600 +You guys are awesome. + +658 +00:22:48,840 --> 00:22:49,160 +Excellent. + +659 +00:22:50,060 --> 00:22:50,380 +And. + +660 +00:22:51,080 --> 00:22:52,320 +With a big trailer at that. + +661 +00:22:52,460 --> 00:22:53,540 +With a big trailer on it. + +662 +00:22:53,580 --> 00:22:54,180 +Bigger little horse trailer. + +663 +00:22:54,220 --> 00:22:55,200 +I'm sitting at the light. + +664 +00:22:55,620 --> 00:22:55,900 +At. + +665 +00:22:55,900 --> 00:22:56,340 +At. + +666 +00:22:56,900 --> 00:22:58,000 +Broadway and Craycroft. + +667 +00:22:58,040 --> 00:22:58,240 +Right. + +668 +00:22:58,380 --> 00:22:58,600 +Right. + +669 +00:22:58,620 --> 00:22:58,900 +And. + +670 +00:22:59,020 --> 00:23:00,480 +So you've got the traffic camera there. + +671 +00:23:00,640 --> 00:23:01,820 +I'm first in line. + +672 +00:23:02,220 --> 00:23:03,460 +Green light comes along. + +673 +00:23:03,700 --> 00:23:05,540 +I start to move out into the intersection. + +674 +00:23:06,100 --> 00:23:07,760 +I get popped four times. + +675 +00:23:08,320 --> 00:23:08,760 +Flashed. + +676 +00:23:09,320 --> 00:23:09,760 +Really? + +677 +00:23:09,900 --> 00:23:10,120 +Yeah. + +678 +00:23:10,160 --> 00:23:10,440 +And I'm like. + +679 +00:23:10,800 --> 00:23:11,900 +What did I do wrong? + +680 +00:23:12,140 --> 00:23:14,540 +I'm doing like six miles an hour. + +681 +00:23:14,600 --> 00:23:16,080 +Because the light just turned green. + +682 +00:23:16,660 --> 00:23:19,160 +And I've got this giant trailer loaded up behind me. + +683 +00:23:19,440 --> 00:23:19,760 +Yeah. + +684 +00:23:20,020 --> 00:23:20,820 +So you get. + +685 +00:23:20,840 --> 00:23:20,860 +What? + +686 +00:23:20,980 --> 00:23:22,400 +You get one of our listeners a ticket? + +687 +00:23:22,540 --> 00:23:23,960 +I told them just, you know. + +688 +00:23:24,480 --> 00:23:25,520 +I told them. + +689 +00:23:25,620 --> 00:23:27,960 +I told them that if they get any traffic tickets, it's not them. + +690 +00:23:28,000 --> 00:23:29,440 +So they can safely discard them. + +691 +00:23:29,780 --> 00:23:30,180 +Right. + +692 +00:23:30,260 --> 00:23:31,560 +Because it's me driving. + +693 +00:23:32,220 --> 00:23:33,520 +But, you know, it's. + +694 +00:23:33,540 --> 00:23:35,060 +Those things are so irritating. + +695 +00:23:35,320 --> 00:23:37,440 +And here's the other thing that really bothers me about them. + +696 +00:23:37,460 --> 00:23:39,100 +And I'm just going to go on a little soapbox rant here. + +697 +00:23:39,160 --> 00:23:39,500 +All right. + +698 +00:23:39,660 --> 00:23:41,480 +Is that the speed limit is posted. + +699 +00:23:41,640 --> 00:23:41,960 +Right. + +700 +00:23:42,100 --> 00:23:42,280 +Right. + +701 +00:23:42,360 --> 00:23:43,160 +The speed limit is. + +702 +00:23:43,280 --> 00:23:44,080 +Let's give an example. + +703 +00:23:44,680 --> 00:23:45,080 +Forty. + +704 +00:23:45,140 --> 00:23:45,520 +Okay. + +705 +00:23:45,700 --> 00:23:45,880 +All right. + +706 +00:23:45,940 --> 00:23:46,860 +You're cruising down river. + +707 +00:23:47,400 --> 00:23:49,460 +You got a 40 mile an hour speed limit. + +708 +00:23:49,580 --> 00:23:49,900 +Mm-hmm. + +709 +00:23:50,360 --> 00:23:55,600 +That means that you have somewhere between 40 and 50 miles an hour that you can go. + +710 +00:23:55,600 --> 00:23:57,540 +And not get the ticket. + +711 +00:23:57,980 --> 00:24:00,860 +That does not mean drive 30 in the 40 zone. + +712 +00:24:01,800 --> 00:24:05,380 +And the more often the way that it works is that you got people doing 50. + +713 +00:24:05,640 --> 00:24:07,560 +And then they get somewhere near the cameras. + +714 +00:24:07,680 --> 00:24:09,080 +They slam on their brakes. + +715 +00:24:09,220 --> 00:24:09,540 +Right. + +716 +00:24:09,700 --> 00:24:11,260 +Do somewhere between 25 and 35. + +717 +00:24:11,400 --> 00:24:11,780 +Right. + +718 +00:24:11,920 --> 00:24:12,620 +Through the little zone. + +719 +00:24:13,240 --> 00:24:15,240 +And it's just such a pain in the butt. + +720 +00:24:15,320 --> 00:24:15,440 +Yeah. + +721 +00:24:15,460 --> 00:24:18,180 +I mean, if I was a cop myself, I was a cop. + +722 +00:24:18,280 --> 00:24:22,660 +I would actually go on the other side of these speeding cameras and just wait for people to speed back up. + +723 +00:24:22,820 --> 00:24:23,220 +Right. + +724 +00:24:23,300 --> 00:24:24,260 +Because that's exactly what happens. + +725 +00:24:24,540 --> 00:24:25,520 +Well, they should have one. + +726 +00:24:25,520 --> 00:24:27,520 +One that's sitting there ticketing the people that are driving too slow. + +727 +00:24:28,300 --> 00:24:28,660 +Right. + +728 +00:24:29,180 --> 00:24:30,860 +You're going 25 in a 40. + +729 +00:24:31,000 --> 00:24:31,340 +Yeah. + +730 +00:24:31,900 --> 00:24:32,560 +It's dangerous. + +731 +00:24:32,840 --> 00:24:33,200 +Right. + +732 +00:24:33,280 --> 00:24:34,720 +You're making people slam on their brakes. + +733 +00:24:34,760 --> 00:24:34,960 +Right. + +734 +00:24:34,960 --> 00:24:35,140 +Right. + +735 +00:24:35,220 --> 00:24:35,900 +For no reason. + +736 +00:24:36,020 --> 00:24:36,320 +Right. + +737 +00:24:36,540 --> 00:24:36,900 +Right. + +738 +00:24:37,120 --> 00:24:37,880 +It's just lame. + +739 +00:24:38,540 --> 00:24:39,260 +Stupid traffic. + +740 +00:24:39,260 --> 00:24:42,660 +You know, you think in this day and age there would be some sort of technology out there + +741 +00:24:42,660 --> 00:24:44,720 +that, you know, we could all keep at the same speed. + +742 +00:24:44,960 --> 00:24:46,200 +We should take a hit, though. + +743 +00:24:46,300 --> 00:24:46,520 +Yeah. + +744 +00:24:46,520 --> 00:24:50,640 +Pima County, you know, I recently just moved way out to the east side. + +745 +00:24:50,820 --> 00:24:51,600 +Way out in the boondocks. + +746 +00:24:51,780 --> 00:24:54,040 +So I am not in the city limits any longer. + +747 +00:24:54,040 --> 00:24:54,320 +Right. + +748 +00:24:54,720 --> 00:24:57,840 +And there was a traffic camera over there on Tank of Verde near Houghton. + +749 +00:24:57,920 --> 00:24:58,260 +Mm-hmm. + +750 +00:24:58,360 --> 00:24:58,600 +Right? + +751 +00:24:58,680 --> 00:24:59,580 +It's gone now. + +752 +00:25:00,080 --> 00:25:00,440 +Really? + +753 +00:25:00,540 --> 00:25:00,900 +Gone. + +754 +00:25:01,120 --> 00:25:02,720 +Like the city removed or somebody else removed it? + +755 +00:25:02,720 --> 00:25:03,400 +The county removed it. + +756 +00:25:03,400 --> 00:25:03,760 +Oh, okay. + +757 +00:25:04,680 --> 00:25:07,300 +Because people were angry about it. + +758 +00:25:07,380 --> 00:25:07,640 +Really? + +759 +00:25:07,640 --> 00:25:09,580 +They were saying, we don't want this camera here. + +760 +00:25:09,680 --> 00:25:10,260 +Get rid of it. + +761 +00:25:10,340 --> 00:25:12,060 +So the community got together and got rid of it. + +762 +00:25:12,120 --> 00:25:17,160 +So let's take a clue from the county here, from the people, residents of that neighborhood, + +763 +00:25:17,280 --> 00:25:20,180 +and I think that we should all just complain until they get rid of the cameras because + +764 +00:25:20,180 --> 00:25:20,800 +it's so dumb. + +765 +00:25:20,940 --> 00:25:23,580 +Or we could just hire some vigilantes and just go ahead and remove them ourselves. + +766 +00:25:24,040 --> 00:25:27,380 +Obviously, it's ticketing people for doing six miles an hour at a green light as soon + +767 +00:25:27,380 --> 00:25:29,480 +as you're the first one out of the gate. + +768 +00:25:29,600 --> 00:25:30,060 +Right, right. + +769 +00:25:30,440 --> 00:25:31,520 +Ah, so lame. + +770 +00:25:31,700 --> 00:25:32,660 +Are you done with your soapbox, right? + +771 +00:25:32,780 --> 00:25:34,200 +Yeah, I'm done with my soapbox, right? + +772 +00:25:34,380 --> 00:25:36,120 +All right, so tell me how I can rent out my bathroom. + +773 +00:25:36,420 --> 00:25:40,500 +Well, apparently, if you have an extra bathroom and you want to rent it out because you don't + +774 +00:25:40,500 --> 00:25:43,560 +know what to do with that space, or you want somebody else that you don't know to mess + +775 +00:25:43,560 --> 00:25:48,440 +up your bathroom because your teenagers aren't doing enough for you, there is a new app on + +776 +00:25:48,440 --> 00:25:50,000 +your smartphones that you can rent out your bathroom. + +777 +00:25:50,260 --> 00:25:53,940 +Now, apparently, I can't see how this has been a big issue in a smaller town like Tucson, + +778 +00:25:54,040 --> 00:25:55,800 +but maybe in New York City this might be important. + +779 +00:25:56,060 --> 00:25:58,140 +You know, maybe there's not enough bathrooms for too many people. + +780 +00:25:58,480 --> 00:26:03,760 +So you can get on this app and put your bathroom up for rent and with a fee, and people will + +781 +00:26:03,760 --> 00:26:05,180 +as long as you're home that you can let them in. + +782 +00:26:05,180 --> 00:26:06,380 +What kind of fee are we talking about? + +783 +00:26:06,560 --> 00:26:07,440 +Well, you can set your own fee. + +784 +00:26:08,340 --> 00:26:08,620 +Okay. + +785 +00:26:08,860 --> 00:26:10,200 +So whatever you want it to be. + +786 +00:26:10,280 --> 00:26:11,120 +You want it to be $10? + +787 +00:26:11,160 --> 00:26:11,660 +It can be $10. + +788 +00:26:11,680 --> 00:26:12,320 +You want it to be $200? + +789 +00:26:12,440 --> 00:26:13,820 +If you're willing to pay it, so be it. + +790 +00:26:14,360 --> 00:26:16,240 +You've got to have a really nice bathroom for $200. + +791 +00:26:17,660 --> 00:26:18,540 +A little boudet. + +792 +00:26:20,680 --> 00:26:22,380 +But, you know, I mean, it's this app. + +793 +00:26:22,540 --> 00:26:23,360 +I haven't checked it out. + +794 +00:26:23,460 --> 00:26:24,020 +But it's great. + +795 +00:26:24,040 --> 00:26:25,300 +It's called CLOO. + +796 +00:26:25,440 --> 00:26:27,240 +So CLOO, I'm assuming is how it's pronounced. + +797 +00:26:29,020 --> 00:26:29,660 +I'm not in. + +798 +00:26:30,360 --> 00:26:31,120 +Why would you? + +799 +00:26:31,180 --> 00:26:31,660 +I'm not in. + +800 +00:26:32,820 --> 00:26:36,800 +First of all, I don't think that I could walk into somebody's place and be like, oh, yeah, + +801 +00:26:36,840 --> 00:26:38,380 +I saw your bathroom online. + +802 +00:26:41,940 --> 00:26:42,260 +Yeah. + +803 +00:26:42,760 --> 00:26:43,720 +I'm here to wreck it. + +804 +00:26:45,180 --> 00:26:45,500 +Yeah. + +805 +00:26:45,720 --> 00:26:46,340 +You know what? + +806 +00:26:46,400 --> 00:26:49,480 +We should just hire Howard to go around to everybody's bathrooms and just wreck them. + +807 +00:26:50,520 --> 00:26:51,640 +I just can't do it. + +808 +00:26:51,760 --> 00:26:53,160 +I have a hard time. + +809 +00:26:53,160 --> 00:26:56,160 +I'm even when I go over to people's houses, like, you know, get invited over to a party + +810 +00:26:56,160 --> 00:26:56,640 +or something. + +811 +00:26:56,740 --> 00:26:58,180 +I can't use their bathroom. + +812 +00:26:58,440 --> 00:26:58,760 +Right. + +813 +00:26:58,860 --> 00:27:00,900 +It's just like, yeah, I'll wait till I get home. + +814 +00:27:00,940 --> 00:27:01,540 +It's totally cool. + +815 +00:27:02,300 --> 00:27:03,380 +I don't get it. + +816 +00:27:03,440 --> 00:27:04,940 +Well, maybe as a growing friend. + +817 +00:27:05,000 --> 00:27:05,280 +Who knows? + +818 +00:27:05,300 --> 00:27:06,520 +This is one of those things with technology. + +819 +00:27:06,720 --> 00:27:07,080 +Right. + +820 +00:27:07,160 --> 00:27:07,940 +It's gone too far. + +821 +00:27:08,000 --> 00:27:08,500 +It's a crappy idea. + +822 +00:27:10,680 --> 00:27:11,180 +Piss poor. + +823 +00:27:12,760 --> 00:27:14,100 +It's just not good. + +824 +00:27:14,400 --> 00:27:15,200 +You're done with your puns. + +825 +00:27:15,740 --> 00:27:20,440 +If you'd like to be part of the show, 751-1041, how much would you rent out your bathroom + +826 +00:27:20,440 --> 00:27:20,700 +for? + +827 +00:27:20,800 --> 00:27:21,640 +Just out of curiosity. + +828 +00:27:22,020 --> 00:27:22,020 + + +829 +00:27:22,020 --> 00:27:22,240 +I don't know. + +830 +00:27:23,840 --> 00:27:25,060 +One billion dollars. + +831 +00:27:25,560 --> 00:27:28,080 +Wouldn't it be weird that you're just sitting there, the doorbell rings, and you're like, + +832 +00:27:28,240 --> 00:27:29,260 +oh, yeah, I forgot. + +833 +00:27:29,960 --> 00:27:31,460 +Dude's got to come over and use the bathroom. + +834 +00:27:32,780 --> 00:27:33,620 +What's the deal? + +835 +00:27:33,940 --> 00:27:38,560 +Well, it's just like that story we did a few months back about turning sewage stuff into + +836 +00:27:38,880 --> 00:27:39,200 +hamburgers. + +837 +00:27:39,200 --> 00:27:40,600 +I mean, this is just going too far. + +838 +00:27:41,020 --> 00:27:42,640 +Technology has gone way too far. + +839 +00:27:42,740 --> 00:27:44,140 +So I think we need to nip it in the butt. + +840 +00:27:44,400 --> 00:27:45,100 +No pun intended. + +841 +00:27:46,620 --> 00:27:47,580 +I think that's in the bud. + +842 +00:27:48,000 --> 00:27:48,320 +Whatever. + +843 +00:27:49,600 --> 00:27:50,040 +That's good. + +844 +00:27:50,060 --> 00:27:50,580 +You use nippers. + +845 +00:27:50,760 --> 00:27:51,280 +Yeah, well. + +846 +00:27:51,340 --> 00:27:52,000 +On your rosebud. + +847 +00:27:52,020 --> 00:27:52,040 +On your rosebud. + +848 +00:27:53,240 --> 00:27:53,660 +On your rosebud. + +849 +00:27:53,660 --> 00:27:53,660 + + +850 +00:27:53,660 --> 00:27:53,660 + + +851 +00:27:53,660 --> 00:27:54,180 +Oh, man. + +852 +00:27:54,580 --> 00:27:55,780 +That's just, this is wrong. + +853 +00:27:56,020 --> 00:27:58,160 +It's wrong in every sense of the word. + +854 +00:27:58,200 --> 00:27:58,620 +All right. + +855 +00:27:58,680 --> 00:27:59,100 +All right. + +856 +00:27:59,200 --> 00:27:59,720 +All right. + +857 +00:27:59,740 --> 00:28:01,140 +So we covered the Marty McFly shoes. + +858 +00:28:01,420 --> 00:28:01,760 +We did. + +859 +00:28:01,940 --> 00:28:04,700 +We covered the hacking of the cars. + +860 +00:28:06,840 --> 00:28:08,200 +Covered and renting out your bathroom. + +861 +00:28:08,500 --> 00:28:09,820 +Renting out your bathrooms. + +862 +00:28:10,060 --> 00:28:10,960 +Oh, God. + +863 +00:28:10,960 --> 00:28:12,740 +What about the invisibility shield for tanks? + +864 +00:28:12,940 --> 00:28:13,940 +I have not heard of this. + +865 +00:28:14,000 --> 00:28:14,500 +What is this? + +866 +00:28:15,160 --> 00:28:15,580 +Apparently. + +867 +00:28:15,760 --> 00:28:16,140 +Ah! + +868 +00:28:16,320 --> 00:28:17,360 +I forgot to turn off my phone. + +869 +00:28:17,360 --> 00:28:17,940 +Oh, good job. + +870 +00:28:18,160 --> 00:28:18,760 +That's terrible. + +871 +00:28:19,300 --> 00:28:20,180 +That's me calling up. + +872 +00:28:20,180 --> 00:28:21,880 +See, that is radio foul, right? + +873 +00:28:22,020 --> 00:28:22,140 +Right there. + +874 +00:28:23,580 --> 00:28:25,020 +So what is an invisibility shield? + +875 +00:28:25,100 --> 00:28:25,460 +What is this? + +876 +00:28:25,740 --> 00:28:28,720 +Apparently, there's a way that you can turn your tank into an invisible tank. + +877 +00:28:28,900 --> 00:28:31,020 +I've always wanted to turn my tank into an invisible tank. + +878 +00:28:31,240 --> 00:28:32,120 +You have a tank? + +879 +00:28:32,160 --> 00:28:32,500 +I do. + +880 +00:28:33,280 --> 00:28:34,300 +Oh, that's awesome. + +881 +00:28:35,980 --> 00:28:36,380 +Sorry. + +882 +00:28:36,500 --> 00:28:37,740 +It makes them look like cows. + +883 +00:28:38,040 --> 00:28:39,700 +It makes them look like cows? + +884 +00:28:40,040 --> 00:28:40,780 +That's a big cow. + +885 +00:28:41,140 --> 00:28:41,540 +Gosh. + +886 +00:28:43,240 --> 00:28:47,420 +I'm going to have to, we're going to post that on the website, but it's an interesting + +887 +00:28:47,420 --> 00:28:47,860 +story. + +888 +00:28:49,140 --> 00:28:51,080 +You've got to go into detail here a little bit. + +889 +00:28:51,260 --> 00:28:51,980 +I'm on the hook. + +890 +00:28:52,020 --> 00:28:52,200 +I'm on the hook now. + +891 +00:28:52,280 --> 00:28:52,920 +You've got to tell me. + +892 +00:28:53,440 --> 00:28:56,420 +We'll cover that in a minute, but we've got a break coming up here, so I need to mention + +893 +00:28:56,420 --> 00:28:56,920 +the classes. + +894 +00:28:57,040 --> 00:29:00,920 +So if you want to be part of the classes this evening, from three to five, we're doing + +895 +00:29:00,920 --> 00:29:02,460 +an introduction to Windows 7. + +896 +00:29:02,560 --> 00:29:02,820 +Nice. + +897 +00:29:02,980 --> 00:29:04,640 +It will be at the classroom location. + +898 +00:29:05,040 --> 00:29:05,680 +What will I learn? + +899 +00:29:05,840 --> 00:29:08,020 +You will learn what's new in Windows 7. + +900 +00:29:08,080 --> 00:29:11,620 +If you're migrating from Windows XP, which is what most of the people that are showing + +901 +00:29:11,620 --> 00:29:15,080 +up are for, or they recently got a copy of Windows 7 and they just really don't know + +902 +00:29:15,080 --> 00:29:15,820 +what to do with it. + +903 +00:29:17,060 --> 00:29:18,160 +Don't use it as a coaster. + +904 +00:29:18,340 --> 00:29:18,620 +It's funny. + +905 +00:29:18,680 --> 00:29:21,940 +I talked to somebody this morning, and I said, so what do you want to learn? + +906 +00:29:22,020 --> 00:29:22,440 +What are you hoping to get out of this class? + +907 +00:29:22,560 --> 00:29:24,060 +What are you hoping to get out of it? + +908 +00:29:24,240 --> 00:29:25,780 +That's my standard question to everybody. + +909 +00:29:26,040 --> 00:29:28,040 +When they walk in, what do you want to learn today? + +910 +00:29:28,200 --> 00:29:32,200 +So I can at least hit exactly what they want to learn during the class. + +911 +00:29:32,200 --> 00:29:33,140 +Tailor the class to your needs. + +912 +00:29:33,360 --> 00:29:33,520 +Right. + +913 +00:29:33,840 --> 00:29:39,740 +And he goes, well, I got this Windows 7 machine because my old one died, and I really would + +914 +00:29:39,740 --> 00:29:43,680 +like some instruction on it, but I've just been using it in the meantime because what + +915 +00:29:43,680 --> 00:29:44,200 +else can I do? + +916 +00:29:44,320 --> 00:29:44,500 +Right. + +917 +00:29:44,600 --> 00:29:46,160 +And that's exactly what you should be doing. + +918 +00:29:46,560 --> 00:29:51,580 +Use it because you'll find out that it's not as different as you think it is. + +919 +00:29:51,640 --> 00:29:51,800 +Yeah. + +920 +00:29:51,800 --> 00:29:51,900 +It is. + +921 +00:29:52,020 --> 00:29:53,900 +It just looks more aesthetics than anything. + +922 +00:29:54,160 --> 00:29:54,280 +Right. + +923 +00:29:54,300 --> 00:29:56,380 +It's much like cars. + +924 +00:29:56,600 --> 00:29:56,820 +Right. + +925 +00:29:56,900 --> 00:29:57,040 +Right. + +926 +00:29:57,080 --> 00:30:00,180 +You know, as far as, you know, you go from one car to another. + +927 +00:30:00,420 --> 00:30:01,320 +They still drive the same. + +928 +00:30:01,520 --> 00:30:05,320 +It's still the basic mechanics are the same as far as, you know, you get in, you push + +929 +00:30:05,320 --> 00:30:07,760 +the accelerator, you turn the wheel, et cetera. + +930 +00:30:07,900 --> 00:30:09,260 +So that's where I messed up when I got my new car. + +931 +00:30:09,320 --> 00:30:10,380 +I forgot about where the accelerator was. + +932 +00:30:10,940 --> 00:30:12,560 +I always forget where the brake pedal is. + +933 +00:30:12,880 --> 00:30:13,520 +That's my problem. + +934 +00:30:13,520 --> 00:30:13,840 +Yeah, I know. + +935 +00:30:15,940 --> 00:30:17,120 +Wait, I'm supposed to stop? + +936 +00:30:17,880 --> 00:30:19,800 +If I wanted to stop, I wouldn't have gotten in the car. + +937 +00:30:20,380 --> 00:30:21,300 +That's all I'm saying. + +938 +00:30:21,300 --> 00:30:22,060 +All right. + +939 +00:30:22,060 --> 00:30:23,080 +So let's go and take a break, Ross. + +940 +00:30:23,200 --> 00:30:23,620 +Let's do it. + +941 +00:30:23,660 --> 00:30:24,500 +Let's do our thing here. + +942 +00:30:25,020 --> 00:30:26,780 +This is the Computer Guru. + +943 +00:30:28,220 --> 00:30:32,080 +So when we come back, we'll tell you how to turn your tank into a cow if you happen to + +944 +00:30:32,080 --> 00:30:32,620 +have one. + +945 +00:30:34,180 --> 00:30:38,640 +We'll talk about the Street View camera being graffitied and Apple being a little, they're + +946 +00:30:38,640 --> 00:30:41,360 +being a little punk about the Galaxy Tab. + +947 +00:30:42,320 --> 00:30:43,580 +It's just, it's dumb. + +948 +00:30:43,800 --> 00:30:45,780 +Oh, and by the way, they're finally getting flash. + +949 +00:30:46,200 --> 00:30:46,640 +Yeah. + +950 +00:30:46,660 --> 00:30:48,560 +This is the Computer Guru Show. + +951 +00:30:48,620 --> 00:30:49,300 +We'll be right back. + +952 +00:30:56,720 --> 00:30:58,760 +This is the Computer Guru. + +953 +00:30:59,160 --> 00:31:03,420 +Get any problem for any system solved by calling 751-1041. + +954 +00:31:03,720 --> 00:31:05,580 +The Computer Guru is on. + +955 +00:31:05,820 --> 00:31:06,920 +1041 The Truth. + +956 +00:31:07,120 --> 00:31:08,160 +This is on Snooze. + +957 +00:31:08,160 --> 00:31:11,560 +So if you want to make your tank invisible. + +958 +00:31:11,940 --> 00:31:13,100 +Yes, I'm listening. + +959 +00:31:13,920 --> 00:31:18,300 +The way that this works is it only really shields you from thermal view. + +960 +00:31:18,480 --> 00:31:19,100 +So infrared. + +961 +00:31:19,300 --> 00:31:19,780 +Infrared. + +962 +00:31:19,920 --> 00:31:20,160 +Right. + +963 +00:31:20,240 --> 00:31:21,120 +Nitrogen goggles. + +964 +00:31:21,300 --> 00:31:22,320 +Nitrogen goggles and such. + +965 +00:31:22,660 --> 00:31:24,400 +And it's pretty nifty. + +966 +00:31:24,580 --> 00:31:24,900 +Really? + +967 +00:31:24,920 --> 00:31:28,140 +It uses a series of hexagon tiles. + +968 +00:31:28,420 --> 00:31:28,680 +Okay. + +969 +00:31:28,720 --> 00:31:30,300 +That cover the entire tank. + +970 +00:31:30,480 --> 00:31:30,740 +Right. + +971 +00:31:30,980 --> 00:31:31,980 +And they. + +972 +00:31:32,340 --> 00:31:34,140 +Not spaceship tiles, so they don't fall off. + +973 +00:31:34,900 --> 00:31:36,220 +They might fall off. + +974 +00:31:36,240 --> 00:31:36,620 +I don't know. + +975 +00:31:37,960 --> 00:31:39,240 +But that's just wrong. + +976 +00:31:39,460 --> 00:31:39,780 +What? + +977 +00:31:39,880 --> 00:31:40,880 +They always fall off. + +978 +00:31:41,900 --> 00:31:42,880 +The problem is. + +979 +00:31:43,260 --> 00:31:47,160 +The problem is they're using 30-year-old technology in those old spaceships still? + +980 +00:31:47,260 --> 00:31:47,900 +You know what? + +981 +00:31:47,940 --> 00:31:48,680 +We're not going to go there. + +982 +00:31:49,060 --> 00:31:50,420 +You're going to get me all distracted. + +983 +00:31:50,540 --> 00:31:51,060 +I'm going to go on a rant. + +984 +00:31:51,060 --> 00:31:51,180 +Oh, sorry. + +985 +00:31:51,300 --> 00:31:51,440 +Okay. + +986 +00:31:51,820 --> 00:31:52,400 +I'm sorry. + +987 +00:31:52,580 --> 00:31:52,920 +I'm sorry. + +988 +00:31:53,040 --> 00:31:53,840 +You're an invisible tank. + +989 +00:31:53,920 --> 00:31:54,120 +Let's go. + +990 +00:31:54,220 --> 00:32:00,760 +The invisible tank has these hexagon tiles on them that are able to change temperature rapidly. + +991 +00:32:01,460 --> 00:32:01,840 +Okay. + +992 +00:32:01,900 --> 00:32:03,420 +To match the surrounding area. + +993 +00:32:03,600 --> 00:32:03,800 +Right. + +994 +00:32:03,820 --> 00:32:07,100 +There's a camera on there that sweeps the area and says, oh, the stuff that's on the + +995 +00:32:07,100 --> 00:32:07,760 +other side of me. + +996 +00:32:07,820 --> 00:32:08,380 +Is this temperature. + +997 +00:32:08,420 --> 00:32:08,880 +Is this temperature. + +998 +00:32:08,900 --> 00:32:11,120 +And then it matches it so that it makes it invisible. + +999 +00:32:11,360 --> 00:32:12,420 +That is actually really cool. + +1000 +00:32:12,500 --> 00:32:13,500 +Or it can mask itself. + +1001 +00:32:13,720 --> 00:32:16,540 +Or it can draw with those pixels. + +1002 +00:32:16,800 --> 00:32:17,180 +Right. + +1003 +00:32:17,300 --> 00:32:17,460 +Right. + +1004 +00:32:17,520 --> 00:32:20,120 +With each tile can change a different temperature slightly. + +1005 +00:32:20,280 --> 00:32:21,280 +And you can make it look like. + +1006 +00:32:21,280 --> 00:32:21,620 +Like a car. + +1007 +00:32:21,620 --> 00:32:21,760 +Yeah. + +1008 +00:32:21,880 --> 00:32:22,760 +I just saw that video. + +1009 +00:32:23,000 --> 00:32:23,980 +I mean, it's a really cool video. + +1010 +00:32:24,040 --> 00:32:25,200 +So, I mean, you see it. + +1011 +00:32:25,200 --> 00:32:27,300 +And you see the tank sitting there. + +1012 +00:32:27,400 --> 00:32:29,200 +And then it turns on these tiles. + +1013 +00:32:29,420 --> 00:32:29,700 +Right. + +1014 +00:32:29,760 --> 00:32:30,240 +The tank. + +1015 +00:32:30,500 --> 00:32:31,780 +The silhouette disappears. + +1016 +00:32:32,100 --> 00:32:33,820 +And then the car silhouette shows up. + +1017 +00:32:33,980 --> 00:32:34,300 +Yep. + +1018 +00:32:34,320 --> 00:32:35,480 +And so now it just looks like a car. + +1019 +00:32:35,660 --> 00:32:36,900 +I mean, that's really cool. + +1020 +00:32:37,180 --> 00:32:38,940 +Now, I'm thinking if I'm a tank operator. + +1021 +00:32:39,340 --> 00:32:39,700 +Right. + +1022 +00:32:39,740 --> 00:32:40,960 +If I see a car, I'm blowing it up anyways. + +1023 +00:32:41,040 --> 00:32:41,220 +Right. + +1024 +00:32:41,220 --> 00:32:41,440 +But. + +1025 +00:32:42,000 --> 00:32:44,260 +What's the car doing out here where that tank's supposed to be? + +1026 +00:32:44,400 --> 00:32:44,600 +Yeah. + +1027 +00:32:44,620 --> 00:32:44,900 +Right. + +1028 +00:32:45,020 --> 00:32:45,660 +Wait a minute. + +1029 +00:32:45,780 --> 00:32:46,580 +Something's not right here. + +1030 +00:32:46,580 --> 00:32:50,060 +I don't know why you'd want to make it disguised as anything other than not there. + +1031 +00:32:50,640 --> 00:32:51,000 +There. + +1032 +00:32:51,000 --> 00:32:51,300 +Right. + +1033 +00:32:51,780 --> 00:32:52,140 +So. + +1034 +00:32:52,520 --> 00:32:56,560 +You can make it look like a camel or a cow or. + +1035 +00:32:56,800 --> 00:32:57,500 +Yeah, but why? + +1036 +00:32:57,660 --> 00:32:58,660 +Because, you know. + +1037 +00:32:58,860 --> 00:32:59,340 +Because you want. + +1038 +00:32:59,440 --> 00:33:00,200 +Well, yeah, that's true. + +1039 +00:33:00,300 --> 00:33:03,360 +I'm thinking that those guys in the tank are going to shoot anything that's out there. + +1040 +00:33:03,660 --> 00:33:04,020 +Right. + +1041 +00:33:04,520 --> 00:33:05,680 +It's a cow out there. + +1042 +00:33:05,680 --> 00:33:06,380 +They're like hamburgers. + +1043 +00:33:06,400 --> 00:33:07,400 +Well, when I drive my tank. + +1044 +00:33:08,040 --> 00:33:09,220 +I do have a tank. + +1045 +00:33:09,480 --> 00:33:09,840 +Okay. + +1046 +00:33:10,000 --> 00:33:10,700 +Roll the tanks. + +1047 +00:33:10,940 --> 00:33:12,580 +It's a really cool game, I'm going to tell you. + +1048 +00:33:12,860 --> 00:33:14,800 +Anyways, when I drive my tank, I just shoot whatever moves. + +1049 +00:33:15,120 --> 00:33:15,380 +Right. + +1050 +00:33:15,400 --> 00:33:15,540 +See? + +1051 +00:33:15,660 --> 00:33:16,000 +See? + +1052 +00:33:16,080 --> 00:33:16,900 +That's why I'm saying. + +1053 +00:33:16,960 --> 00:33:18,220 +You just want to be invisible completely. + +1054 +00:33:18,560 --> 00:33:18,860 +Right. + +1055 +00:33:18,860 --> 00:33:19,740 +At least it can do that. + +1056 +00:33:20,540 --> 00:33:21,360 +Technology is interesting. + +1057 +00:33:21,480 --> 00:33:22,360 +It can do cool advertisement. + +1058 +00:33:22,360 --> 00:33:24,500 +They were advertising their own name on the side. + +1059 +00:33:24,540 --> 00:33:25,100 +That was cool. + +1060 +00:33:25,100 --> 00:33:26,540 +You can put on their sponsor by Goodyear. + +1061 +00:33:27,400 --> 00:33:28,080 +Something like that. + +1062 +00:33:28,080 --> 00:33:29,120 +Just think invisible by Goodyear. + +1063 +00:33:30,780 --> 00:33:31,320 +Raytheon tank. + +1064 +00:33:31,900 --> 00:33:32,220 +Oh. + +1065 +00:33:32,960 --> 00:33:34,340 +So, some news in Apple. + +1066 +00:33:34,520 --> 00:33:34,840 +What? + +1067 +00:33:34,880 --> 00:33:35,320 +All right. + +1068 +00:33:35,380 --> 00:33:37,940 +Yeah, well, Apple's kind of being a jerk. + +1069 +00:33:38,400 --> 00:33:39,080 +Apple's being a jerk? + +1070 +00:33:39,200 --> 00:33:39,380 +Yeah. + +1071 +00:33:39,420 --> 00:33:39,720 +Okay. + +1072 +00:33:39,980 --> 00:33:40,540 +All right, so. + +1073 +00:33:40,680 --> 00:33:41,260 +Wait, wait, wait. + +1074 +00:33:41,280 --> 00:33:41,580 +Hold on. + +1075 +00:33:41,960 --> 00:33:43,620 +Jobs is gone and they're still being jerks? + +1076 +00:33:43,680 --> 00:33:43,940 +Yeah. + +1077 +00:33:44,180 --> 00:33:44,500 +No. + +1078 +00:33:44,680 --> 00:33:48,700 +Well, you get to say that again here in a minute when you say jobs is gone and this. + +1079 +00:33:48,820 --> 00:33:49,240 +Oh, all right. + +1080 +00:33:49,360 --> 00:33:49,600 +But. + +1081 +00:33:51,120 --> 00:33:56,560 +So, they've decided that they're trying to ban the Galaxy Tab 10-inch, the 10-inch Galaxy + +1082 +00:33:56,560 --> 00:33:58,360 +Tab from sale in Europe. + +1083 +00:33:58,580 --> 00:33:58,980 +Okay. + +1084 +00:33:59,180 --> 00:33:59,340 +Right? + +1085 +00:33:59,400 --> 00:34:01,600 +Because it too closely resembles the iPad. + +1086 +00:34:01,900 --> 00:34:02,760 +Oh, man. + +1087 +00:34:03,320 --> 00:34:04,580 +I thought we were done with this. + +1088 +00:34:04,620 --> 00:34:04,780 +Yeah. + +1089 +00:34:04,780 --> 00:34:08,380 +Well, remember, we talked about this a few weeks ago where they were saying, you know, + +1090 +00:34:08,400 --> 00:34:13,820 +Samsung's response was, well, there was a tablet in the Space Odyssey movie. + +1091 +00:34:14,020 --> 00:34:14,240 +Yeah. + +1092 +00:34:14,240 --> 00:34:15,720 +You know, how did you get the baton for it? + +1093 +00:34:15,800 --> 00:34:17,520 +And that was like 20 years ago, 30 years ago. + +1094 +00:34:17,660 --> 00:34:18,060 +So. + +1095 +00:34:19,480 --> 00:34:24,320 +So, apparently, there was a judge in Europe that said you can't ban it in Europe as a whole. + +1096 +00:34:24,440 --> 00:34:24,740 +Right. + +1097 +00:34:24,820 --> 00:34:25,040 +Right. + +1098 +00:34:25,040 --> 00:34:27,500 +You can ban it in individual countries. + +1099 +00:34:27,640 --> 00:34:29,260 +So, they got Germany to ban it. + +1100 +00:34:29,540 --> 00:34:29,860 +Really? + +1101 +00:34:29,860 --> 00:34:29,920 +Yeah. + +1102 +00:34:29,940 --> 00:34:31,040 +They're trying to ban it in Japan. + +1103 +00:34:31,780 --> 00:34:32,100 +Ugh. + +1104 +00:34:32,700 --> 00:34:35,860 +And the thing is, is that it's a tablet. + +1105 +00:34:36,020 --> 00:34:37,560 +So, this is how Apple does it, though. + +1106 +00:34:37,560 --> 00:34:40,480 +Apple, they don't try to go ahead and do direct competition with people. + +1107 +00:34:40,560 --> 00:34:42,620 +They just go ahead and sue people and get them out of business. + +1108 +00:34:43,000 --> 00:34:46,460 +Well, I mean, I understand that you want to protect the intellectual property rights and + +1109 +00:34:46,460 --> 00:34:47,120 +the et cetera, et cetera. + +1110 +00:34:47,220 --> 00:34:47,280 +But. + +1111 +00:34:47,280 --> 00:34:48,160 +But it's a tablet. + +1112 +00:34:48,220 --> 00:34:48,380 +Yeah. + +1113 +00:34:48,380 --> 00:34:48,800 +I mean, it's like. + +1114 +00:34:48,860 --> 00:34:51,280 +I mean, how much difference can you have in a tablet? + +1115 +00:34:51,720 --> 00:34:53,540 +I mean, really, how different can you make it? + +1116 +00:34:53,600 --> 00:34:55,200 +Well, it's like saying the makers of my car are the Chevy. + +1117 +00:34:55,480 --> 00:34:58,360 +Well, my Chevy car should sue the makers of the Scion. + +1118 +00:34:58,760 --> 00:35:00,660 +Because, you know, they both have four wheels. + +1119 +00:35:00,980 --> 00:35:01,460 +And doors. + +1120 +00:35:01,900 --> 00:35:02,520 +And a hatch. + +1121 +00:35:02,620 --> 00:35:02,940 +And a hatch. + +1122 +00:35:03,160 --> 00:35:03,480 +Yeah. + +1123 +00:35:03,600 --> 00:35:04,080 +And door locks. + +1124 +00:35:04,240 --> 00:35:05,440 +I mean, that doesn't make sense to me. + +1125 +00:35:06,120 --> 00:35:06,440 +It's. + +1126 +00:35:06,520 --> 00:35:09,140 +You can look at the Galaxy Tab and you can plainly see that it's not an iPad. + +1127 +00:35:09,380 --> 00:35:10,480 +You can tell it's not an iPad. + +1128 +00:35:11,360 --> 00:35:11,680 +Right. + +1129 +00:35:11,740 --> 00:35:12,700 +And you can use it and find out. + +1130 +00:35:13,440 --> 00:35:13,760 +Yeah. + +1131 +00:35:14,120 --> 00:35:14,640 +It's Flash. + +1132 +00:35:14,840 --> 00:35:16,620 +You know, it has other things that the iPad doesn't have. + +1133 +00:35:16,860 --> 00:35:17,160 +Yes. + +1134 +00:35:17,280 --> 00:35:18,720 +I mean, I think that's dumb. + +1135 +00:35:18,940 --> 00:35:19,300 +Really. + +1136 +00:35:19,440 --> 00:35:21,680 +That to go out there and sue them over that. + +1137 +00:35:22,040 --> 00:35:22,400 +It's. + +1138 +00:35:22,860 --> 00:35:23,220 +Whatever. + +1139 +00:35:23,420 --> 00:35:24,980 +I mean, I understand that they. + +1140 +00:35:25,540 --> 00:35:26,700 +It is their intellectual. + +1141 +00:35:26,700 --> 00:35:28,600 +They're short on cash over there at Apple. + +1142 +00:35:28,600 --> 00:35:28,900 +Yeah. + +1143 +00:35:28,900 --> 00:35:29,720 +They're short on cash. + +1144 +00:35:29,720 --> 00:35:32,460 +They only have $86 billion in liquid assets. + +1145 +00:35:32,760 --> 00:35:35,580 +But, you know, you got to keep. + +1146 +00:35:35,620 --> 00:35:36,900 +Well, you got to watch the bottom line. + +1147 +00:35:37,080 --> 00:35:37,960 +They have more money than the government. + +1148 +00:35:38,560 --> 00:35:41,020 +Well, actually, last time I heard, I had more money than the government. + +1149 +00:35:42,300 --> 00:35:43,020 +All right. + +1150 +00:35:43,060 --> 00:35:44,700 +So, speaking of Flash. + +1151 +00:35:45,020 --> 00:35:45,680 +Yes, Flash. + +1152 +00:35:45,820 --> 00:35:46,040 +All right. + +1153 +00:35:46,080 --> 00:35:46,400 +Say it again. + +1154 +00:35:46,640 --> 00:35:46,940 +Flash. + +1155 +00:35:47,280 --> 00:35:47,360 +Flash. + +1156 +00:35:47,560 --> 00:35:48,420 +Steve Jobs is gone. + +1157 +00:35:48,520 --> 00:35:48,960 +Oh, yeah. + +1158 +00:35:49,020 --> 00:35:49,780 +So, now that Flash. + +1159 +00:35:50,060 --> 00:35:51,160 +You know, Steve Jobs is gone. + +1160 +00:35:51,200 --> 00:35:52,380 +Now, Apple's getting Flash. + +1161 +00:35:52,540 --> 00:35:52,740 +Yes. + +1162 +00:35:52,760 --> 00:35:55,100 +All of the iOS devices are getting Flash now. + +1163 +00:35:55,260 --> 00:35:55,480 +Wow. + +1164 +00:35:55,560 --> 00:35:56,760 +So, all it took was Jobs to leave. + +1165 +00:35:56,920 --> 00:35:57,120 +Yes. + +1166 +00:35:57,140 --> 00:36:01,080 +iOS 5, when it comes out, will have Flash built in, which will be nice. + +1167 +00:36:01,080 --> 00:36:03,580 +So, you can actually, like, use the thing. + +1168 +00:36:03,660 --> 00:36:04,760 +I'll believe it when I see it. + +1169 +00:36:04,940 --> 00:36:07,160 +Because, you know, they talked about this for iOS 4. + +1170 +00:36:07,320 --> 00:36:09,220 +It was rumored for iOS 4 and iOS 3. + +1171 +00:36:09,340 --> 00:36:10,620 +I mean, I'll believe what I see. + +1172 +00:36:10,620 --> 00:36:11,620 +Steve Jobs is still there. + +1173 +00:36:11,720 --> 00:36:12,160 +Yeah, I know. + +1174 +00:36:12,200 --> 00:36:12,740 +But, still. + +1175 +00:36:12,740 --> 00:36:14,840 +He still has a big foothold in the company. + +1176 +00:36:15,040 --> 00:36:16,780 +He can still just nix it if he wanted to. + +1177 +00:36:17,280 --> 00:36:18,060 +Oh, come on. + +1178 +00:36:18,100 --> 00:36:18,540 +Come on. + +1179 +00:36:18,540 --> 00:36:18,940 +It's Jobs. + +1180 +00:36:19,040 --> 00:36:19,900 +He created that company. + +1181 +00:36:20,080 --> 00:36:21,020 +And over again. + +1182 +00:36:21,360 --> 00:36:21,680 +Twice. + +1183 +00:36:22,300 --> 00:36:22,660 +That's right. + +1184 +00:36:23,780 --> 00:36:27,580 +So, it'll be nice to actually have some Flash compatibility with your iOS device. + +1185 +00:36:27,820 --> 00:36:28,960 +Yeah, it would be pretty cool, I guess. + +1186 +00:36:29,280 --> 00:36:29,600 +Yeah. + +1187 +00:36:29,760 --> 00:36:32,980 +Because, right now, you know, I spend a lot of time going, I can't do that. + +1188 +00:36:33,040 --> 00:36:33,500 +It's Flash. + +1189 +00:36:33,620 --> 00:36:36,140 +Well, that's one of the biggest things that, you know, I have a lot of customers that we + +1190 +00:36:36,140 --> 00:36:36,920 +build websites for. + +1191 +00:36:37,000 --> 00:36:37,920 +By the way, we build websites. + +1192 +00:36:38,700 --> 00:36:42,200 +And, the biggest hindrance that I don't, the reason I don't pitch a lot of Flash websites + +1193 +00:36:42,200 --> 00:36:46,620 +for my customers is you can't access them on iPads or iPhones. + +1194 +00:36:47,280 --> 00:36:48,620 +You can on Droids, but not iPads. + +1195 +00:36:49,520 --> 00:36:51,680 +So, that's the biggest reason why I haven't pitched that many. + +1196 +00:36:52,360 --> 00:36:54,460 +But, I guess, now, I don't have that excuse anymore. + +1197 +00:36:54,520 --> 00:36:56,200 +Yeah, now, you'll be able to pitch the right type of website. + +1198 +00:36:56,200 --> 00:36:57,220 +Yeah, now, I have to think of another excuse. + +1199 +00:36:57,840 --> 00:36:58,120 +Yes. + +1200 +00:36:59,620 --> 00:37:00,560 +Flash is a pain in the butt. + +1201 +00:37:00,820 --> 00:37:01,860 +That's the only excuse. + +1202 +00:37:01,860 --> 00:37:01,960 +No, no. + +1203 +00:37:02,040 --> 00:37:04,120 +Actually, I'm finishing up this Flash website right now. + +1204 +00:37:04,400 --> 00:37:05,900 +It is going to be absolutely gorgeous. + +1205 +00:37:06,000 --> 00:37:07,060 +I can't wait to make it live. + +1206 +00:37:07,180 --> 00:37:08,080 +It should be live this week. + +1207 +00:37:08,120 --> 00:37:10,520 +And, then, next week, I'll be able to tell you guys about it and tell you the website + +1208 +00:37:10,520 --> 00:37:13,740 +so you can look at it and praise how beautiful it is and tell me how awesome I am. + +1209 +00:37:14,200 --> 00:37:15,000 +I am awesome. + +1210 +00:37:15,180 --> 00:37:16,080 +I am. + +1211 +00:37:16,580 --> 00:37:17,080 +I am. + +1212 +00:37:17,080 --> 00:37:17,720 +This website is amazing. + +1213 +00:37:18,020 --> 00:37:19,100 +I amazed myself. + +1214 +00:37:19,580 --> 00:37:19,840 +Really? + +1215 +00:37:19,940 --> 00:37:20,960 +Well, that's not hard to do. + +1216 +00:37:21,420 --> 00:37:23,020 +I have extremely low standards. + +1217 +00:37:23,060 --> 00:37:23,440 +Oh, look. + +1218 +00:37:23,440 --> 00:37:24,120 +My shoes are tied. + +1219 +00:37:24,260 --> 00:37:24,920 +That's amazing. + +1220 +00:37:24,920 --> 00:37:25,380 +I know. + +1221 +00:37:25,420 --> 00:37:26,620 +I have extremely low standards. + +1222 +00:37:26,720 --> 00:37:28,620 +All right. + +1223 +00:37:28,820 --> 00:37:30,260 +So, are you thinking about a new phone? + +1224 +00:37:30,440 --> 00:37:31,740 +I am thinking about a new phone. + +1225 +00:37:31,840 --> 00:37:34,420 +I mean, because the Droid Bionic is out. + +1226 +00:37:34,700 --> 00:37:35,080 +Yes. + +1227 +00:37:35,080 --> 00:37:38,300 +Now, the Droid Bionic, first of all, it's been hyped to no end. + +1228 +00:37:38,520 --> 00:37:38,900 +Yes. + +1229 +00:37:38,900 --> 00:37:39,440 +It has. + +1230 +00:37:39,480 --> 00:37:40,420 +It has been like a little... + +1231 +00:37:40,420 --> 00:37:43,920 +Nine months of their saying, hey, this awesome phone is going to come out. + +1232 +00:37:44,040 --> 00:37:44,260 +Right. + +1233 +00:37:44,300 --> 00:37:45,640 +And, they've been playing the hype game. + +1234 +00:37:45,700 --> 00:37:45,980 +Just like... + +1235 +00:37:45,980 --> 00:37:46,140 +Like Apple. + +1236 +00:37:46,320 --> 00:37:49,120 +They put one out in the wild and let it sneak out a little bit and they bring it back. + +1237 +00:37:49,340 --> 00:37:49,560 +Yeah. + +1238 +00:37:51,560 --> 00:37:52,700 +That's another rant. + +1239 +00:37:53,660 --> 00:37:58,220 +Just going off on all kinds of tangents today about how companies are making me angry. + +1240 +00:37:59,220 --> 00:37:59,580 +Angry. + +1241 +00:37:59,760 --> 00:38:00,080 +Angry. + +1242 +00:38:00,180 --> 00:38:00,480 +Yes. + +1243 +00:38:00,480 --> 00:38:01,900 +I'm going to turn green and need a new shirt. + +1244 +00:38:02,100 --> 00:38:05,160 +But, you know, the new phone is out. + +1245 +00:38:05,660 --> 00:38:07,000 +Here's my problem with it. + +1246 +00:38:07,060 --> 00:38:07,240 +Okay. + +1247 +00:38:07,340 --> 00:38:07,600 +All right. + +1248 +00:38:07,680 --> 00:38:08,660 +It's got great features. + +1249 +00:38:08,900 --> 00:38:09,220 +All right. + +1250 +00:38:09,260 --> 00:38:10,100 +And, that's your problem with it? + +1251 +00:38:10,120 --> 00:38:10,400 +Hold on. + +1252 +00:38:10,440 --> 00:38:10,820 +I'm getting there. + +1253 +00:38:11,040 --> 00:38:12,620 +I have to build up to this. + +1254 +00:38:12,680 --> 00:38:12,880 +Oh. + +1255 +00:38:12,940 --> 00:38:14,080 +This is radio. + +1256 +00:38:15,140 --> 00:38:15,640 +All right. + +1257 +00:38:15,660 --> 00:38:15,940 +So... + +1258 +00:38:15,980 --> 00:38:16,400 +So, there's... + +1259 +00:38:16,940 --> 00:38:18,160 +It's got a great processor. + +1260 +00:38:18,320 --> 00:38:19,060 +Lots of memory. + +1261 +00:38:19,180 --> 00:38:19,920 +It's very fast. + +1262 +00:38:20,020 --> 00:38:20,520 +Bigger screen. + +1263 +00:38:20,720 --> 00:38:21,980 +It is beautiful. + +1264 +00:38:22,540 --> 00:38:25,740 +Not to mention the fact that it's got a docking station that turns it into a laptop. + +1265 +00:38:25,780 --> 00:38:26,360 +I love that. + +1266 +00:38:26,500 --> 00:38:29,200 +It's got full HDMI compatibility. + +1267 +00:38:29,720 --> 00:38:29,980 +Nice. + +1268 +00:38:30,080 --> 00:38:32,520 +You can hook it up to a nice TV or a monitor. + +1269 +00:38:32,760 --> 00:38:33,000 +Excellent. + +1270 +00:38:33,820 --> 00:38:36,180 +It's got all kinds of really nifty features. + +1271 +00:38:36,480 --> 00:38:36,680 +Okay. + +1272 +00:38:36,740 --> 00:38:37,460 +Here's my problem. + +1273 +00:38:37,660 --> 00:38:38,360 +It's $300. + +1274 +00:38:39,260 --> 00:38:41,760 +That's $300 with the two-year discount. + +1275 +00:38:42,260 --> 00:38:43,160 +So, with the Droid X? + +1276 +00:38:43,160 --> 00:38:43,580 +No, no, no, no. + +1277 +00:38:43,780 --> 00:38:44,500 +No, no, no, no. + +1278 +00:38:44,660 --> 00:38:44,900 +No. + +1279 +00:38:46,260 --> 00:38:47,040 +No, it was... + +1280 +00:38:47,040 --> 00:38:48,060 +No, it was... + +1281 +00:38:48,060 --> 00:38:49,080 +It was $300, dude. + +1282 +00:38:49,120 --> 00:38:50,200 +I promise you it was. + +1283 +00:38:50,980 --> 00:38:52,720 +So, it's too expensive, in my opinion. + +1284 +00:38:53,280 --> 00:38:53,640 +All right. + +1285 +00:38:53,700 --> 00:38:54,760 +At least for me right now. + +1286 +00:38:54,920 --> 00:38:55,180 +Yeah. + +1287 +00:38:55,220 --> 00:38:55,540 +Oh, yeah. + +1288 +00:38:55,940 --> 00:38:56,720 +I don't have any money. + +1289 +00:38:57,220 --> 00:39:01,080 +So, and then if you want the laptop adapter, it's an extra $200. + +1290 +00:39:01,120 --> 00:39:04,880 +You know, I think Verizon, what Verizon should do, our local Verizon stores, they should + +1291 +00:39:05,360 --> 00:39:07,420 +hook us up so we can talk about their phone. + +1292 +00:39:07,660 --> 00:39:07,980 +Yeah. + +1293 +00:39:08,100 --> 00:39:10,640 +And they'll praise it in all its glory and all its awesomeness. + +1294 +00:39:10,640 --> 00:39:10,940 +Okay. + +1295 +00:39:11,000 --> 00:39:12,600 +Well, we're doing other things that will be totally ignored. + +1296 +00:39:14,440 --> 00:39:15,440 +You know, you've got... + +1297 +00:39:15,440 --> 00:39:17,960 +You've got the docking station, it's an extra $200. + +1298 +00:39:18,180 --> 00:39:20,200 +The HDMI station, another $100. + +1299 +00:39:20,380 --> 00:39:20,380 + + +1300 +00:39:21,240 --> 00:39:27,720 +And there's a broad-spectrum Wi-Fi adapter for it, which will allow you to wirelessly + +1301 +00:39:27,720 --> 00:39:29,520 +tether to a monitor or... + +1302 +00:39:29,520 --> 00:39:30,200 +Really? + +1303 +00:39:30,200 --> 00:39:30,600 +Yeah. + +1304 +00:39:30,840 --> 00:39:31,640 +Oh, that is awesome. + +1305 +00:39:31,760 --> 00:39:32,760 +Which would be interesting. + +1306 +00:39:33,140 --> 00:39:34,640 +But, you know, it's... + +1307 +00:39:34,640 --> 00:39:36,120 +I don't know that it's really... + +1308 +00:39:36,820 --> 00:39:39,400 +And it's 4G, so that also helps. + +1309 +00:39:39,540 --> 00:39:40,240 +The LTE, yeah. + +1310 +00:39:40,300 --> 00:39:41,780 +But I don't know that it's really going to... + +1311 +00:39:41,780 --> 00:39:44,420 +People are going to gravitate to it right now in... + +1312 +00:39:45,060 --> 00:39:45,420 +On Macs. + +1313 +00:39:45,440 --> 00:39:46,180 +On Macs, right? + +1314 +00:39:46,280 --> 00:39:49,620 +Because all you're looking at is, you know, an additional... + +1315 +00:39:50,480 --> 00:39:53,360 +You're adding 4G to a Droid X, you know? + +1316 +00:39:53,360 --> 00:39:57,140 +And so I don't know that how much that's really going to work with the public. + +1317 +00:39:57,220 --> 00:39:58,100 +You think it's just a Droid X? + +1318 +00:39:58,200 --> 00:40:00,760 +I mean, it's a faster processor, all these other cool features. + +1319 +00:40:00,840 --> 00:40:01,240 +I get it. + +1320 +00:40:01,240 --> 00:40:03,220 +But, you know, like the Droid X2 is the same processor. + +1321 +00:40:03,400 --> 00:40:03,820 +Yeah, well. + +1322 +00:40:04,020 --> 00:40:04,260 +Right? + +1323 +00:40:04,420 --> 00:40:05,400 +That thing bombed. + +1324 +00:40:06,220 --> 00:40:08,520 +Well, and it wasn't different enough. + +1325 +00:40:08,680 --> 00:40:14,920 +That's what I'm thinking is going on here, is that it's not different enough to make it so that it's going to be... + +1326 +00:40:14,920 --> 00:40:16,580 +You know, something everybody runs to get. + +1327 +00:40:16,740 --> 00:40:18,400 +Do we know what OS it's going to have in Gingerbread? + +1328 +00:40:18,520 --> 00:40:20,560 +Yeah, it comes with the 2.3.4. + +1329 +00:40:20,700 --> 00:40:20,980 +Okay. + +1330 +00:40:21,120 --> 00:40:23,880 +So, I mean, it's got the newest operating system on it. + +1331 +00:40:23,960 --> 00:40:24,140 +Right. + +1332 +00:40:24,260 --> 00:40:32,080 +It's a good phone from everything I see spec-wise, but I don't know that it really is going to make a big enough impact to really get out there. + +1333 +00:40:32,180 --> 00:40:35,860 +But speaking of big impacts, you know, you've got T-Mobile, or... + +1334 +00:40:35,860 --> 00:40:41,360 +No, I'm sorry, not T-Mobile, Sprint, that is preparing for a major phone release next month. + +1335 +00:40:42,340 --> 00:40:44,760 +So, it's anticipated that they're going to be getting that. + +1336 +00:40:44,780 --> 00:40:44,900 +Yeah. + +1337 +00:40:44,900 --> 00:40:44,900 + + +1338 +00:40:44,900 --> 00:40:44,900 + + +1339 +00:40:44,900 --> 00:40:44,900 + + +1340 +00:40:44,900 --> 00:40:44,900 + + +1341 +00:40:44,900 --> 00:40:44,900 + + +1342 +00:40:44,900 --> 00:40:44,900 + + +1343 +00:40:44,900 --> 00:40:44,900 + + +1344 +00:40:44,900 --> 00:40:44,900 + + +1345 +00:40:44,900 --> 00:40:44,900 + + +1346 +00:40:44,900 --> 00:40:44,900 + + +1347 +00:40:44,900 --> 00:40:44,900 + + +1348 +00:40:44,900 --> 00:40:44,900 + + +1349 +00:40:44,900 --> 00:40:45,060 +An iPhone. + +1350 +00:40:45,740 --> 00:40:46,540 +Oh, okay. + +1351 +00:40:46,740 --> 00:40:49,380 +Yeah, for Sprint here shortly. + +1352 +00:40:49,620 --> 00:40:51,900 +So, I mean, yeah, I'm not into that. + +1353 +00:40:52,480 --> 00:40:53,980 +Sprint getting an iPhone? + +1354 +00:40:54,240 --> 00:40:56,120 +No, I'm not into it at all. + +1355 +00:40:56,260 --> 00:40:56,820 +Oh, really? + +1356 +00:40:56,980 --> 00:40:57,160 +Yeah. + +1357 +00:40:57,220 --> 00:41:00,480 +I mean, come on, if I wanted a bad phone service, I'd stick with AT&T. + +1358 +00:41:02,660 --> 00:41:03,840 +Sorry, that was bad. + +1359 +00:41:05,020 --> 00:41:08,780 +You've got the nationwide plan, which is nationwide, except for where I'm standing. + +1360 +00:41:09,040 --> 00:41:09,840 +Except for my house. + +1361 +00:41:10,240 --> 00:41:10,760 +That's right. + +1362 +00:41:10,920 --> 00:41:13,500 +Or the every other word plan, which is my favorite one. + +1363 +00:41:13,740 --> 00:41:14,600 +That's the one T-Mobile. + +1364 +00:41:14,900 --> 00:41:15,420 +It was terrible. + +1365 +00:41:15,500 --> 00:41:16,140 +It is terrible. + +1366 +00:41:16,140 --> 00:41:16,620 +I moved to Verizon. + +1367 +00:41:16,760 --> 00:41:18,100 +You're such a sad, sad boy. + +1368 +00:41:18,300 --> 00:41:18,500 +You know what? + +1369 +00:41:18,680 --> 00:41:19,420 +I'm done with you. + +1370 +00:41:19,520 --> 00:41:19,700 +Yeah. + +1371 +00:41:19,800 --> 00:41:21,760 +All right, so here's what's going to happen. + +1372 +00:41:21,820 --> 00:41:25,680 +When we come back after the next hour, you know, into the next hour here, + +1373 +00:41:26,100 --> 00:41:30,280 +we're going to talk about more things to make your life better, technology-wise, + +1374 +00:41:30,360 --> 00:41:36,120 +and also, you need to remember, tomorrow, September 11th, it's the 10-year anniversary, + +1375 +00:41:36,140 --> 00:41:41,280 +so make sure that you're doing something to be a better person and to make us a better country. + +1376 +00:41:41,480 --> 00:41:42,700 +This is Computer Guru Show. + +1377 +00:41:42,820 --> 00:41:44,260 +We'll be right back after the news. + +1378 +00:41:45,180 --> 00:41:46,380 +We'll be right back. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.txt new file mode 100644 index 0000000..21f67a2 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2011-09-10-hr1/transcript.txt @@ -0,0 +1,1378 @@ +From my heart and from my hand, why don't people understand my intentions? +Computer running slow? +Boing! +Caught a virus? +Ah! +Ah! +Ah! +Does your computer seem to have a life of its own? +Malfunction. +Me getting good. +The computer guru is here. +My God, you're here! +Call in now. +751-1041. +That's 751-1041. +Now, it's Mike Swanson, your computer guru. +On 104.1 The Truth. +I'm in for a juice-ass news talk, FM. +Hello and welcome to the Computer Guru Show. +My name's Mike. +Here to deal with your technology needs and treat you like a real person in the process. +Today is September 10th, 2011. +Now, I was thinking back on the way down here. +I was thinking, you know, my mom used to tell me that, you know, you always remembered where you were when Kennedy was shot. +Right. +Or when man landed on the moon. +Right. +These are moments, landmark moments. +Where you remember for the rest of your life everything about that moment when you heard about it. +Okay. +So I was thinking about, where was I when I heard about September 11th, 2001? +Right. +And I was sitting at the left turn light at Campbell and Speedway on my way to work. +And my dad called me and he said, are you near a TV? +You should, you know, somebody flew a plane into a building. +And, you know, my dad and I are big aviation buffs, right? +We always talk. +We talk about airplanes and such. +And we thought, at least initially, at the time that he called me, it was similar to when, you know, there was a long time ago, there was a plane that crashed in the Empire State Building. +So we thought, well, wow, how do you manage to do something like that? +Right, right. +And so by the time I got to work, you know, everybody's sitting in front of a TV. +And that's when the second tower got hit. +Right. +And so it was suddenly a very different feeling for me. +Because initially it was just, this is just tragic that somebody would, you know, inadvertently fly into a building like that. +And that's terrible for all the people that lost their lives. +But then to, then once you knew that something was going on, that there was something else going on, that the mood changed dramatically. +And I remember going outside and it was just so silent. +And there was no cars. +There was no, definitely no planes. +You know, everything was just. +Shut down. +And it was a very surreal day for me. +You know, and watching that. +And I'm sure for everyone. +You know, to be able to watch that and just. +It's just amazing. +And so my tribute, at least to the 10th anniversary of the September 11th, is to remind people that, you know, we are a great country. +And we are a wonderful people. +And there may be, you know, there are things that we don't do right on a global scale. +There may be things where we don't make the best decisions. +But we are fantastic people. +And we should never forget to honor the people that have fought and died for us and to keep us safe. +And just to remember that, you know, in spite of tragedy, we are what makes America great. +You know, each and every one of us. +We are the ones that continue to go on. +That smile. +That remember. +Endure through it all. +Yeah. +Just remember that, you know, you are the greatness. +And make sure that whatever you do on a daily basis is being more of that. +Right? +Every day I live my life trying to be a better person than I was yesterday. +Right. +And so I just urge people to do that in their own lives as far as, you know, if you want to have a wonderful life. +Right. +And even though my life isn't, you know, isn't all daffodils, right, you know, you know, I'm happy with who I am because I work very hard to make sure that I am better than I was yesterday. +Right. +Yeah. +And then I was 10 years ago, I was full of anger and resentment and rage about tomorrow. +And, you know, it's now I look at it very differently. +You know, I've had the opportunity to mature a little over the last 10 years and to say, well. +This is just an opportunity for us to be better. +So please observe your September 11th, you know, whatever you're doing for this day. +I urge you to reflect back on what you were 10 years ago. +And I hope that you're a better person today, not simply because of it, just as a reminder of that. +Absolutely. +Go out and do something for the community tomorrow. +You know, go out there and, you know, just show your support a little bit, you know. +Or just, you know. +Thank an officer or a fireman that, you know, because these are the guys that they're the heroes of September 11th. +So, you know, I mean, I was in the Army, but I'm not a hero of September 11th by no means. +These firefighters and cops and all these guys, even though they weren't over in New York, maybe. +First responders are the ones that have to live with this on a daily basis, and especially right now. +Absolutely. +You think about what they're doing right now in New York. +I mean, that place is on lockdown. +But, you know, thank you very much to everyone in the community that is first responder or has anything to do. +With keeping us safe. +Absolutely. +And if you just want to find something else to do, for you to do your good deed for the day tomorrow, +there are actually lots of things that are going on. +One of our listeners, they're actually doing a blood drive tomorrow from noon to 4. +It's a September 11th blood drive. +It's going to be at 250 West Speedway Boulevard. +The people that are doing it is the United Blood Services Muslims for Life. +And this is a Muslim mosque that is doing this. +So I think that's very cool that they're doing a blood drive. +And anybody who gives blood will be put in for a $1,000 shopping spree with Schmidt Jewelers. +So little things like that, I know you shouldn't do it just for the shopping spree. +You should do it because you want to do it. +So you want to give some blood, give back to the community, people who need it. +That's an option for you to do that. +It would be great. +And the blood bank is always looking for people to give up the goods. +Absolutely. +It's always in need. +So if you have the opportunity, go down and check them out tomorrow. +All right. + + + + + + +Well, yes. +I'm done being somber. +Oh, okay. +All right. +We've got to end the somberness here because, you know, that's not what this show is about. +It's not supposed to be sad and reflective. +Let's go ahead and take a call here. +Oh, Lionel, how are you doing? +I'm sorry, who? +Me? +Yes. +I didn't hear my name. +Oh, I didn't hit the button properly, I guess. +Well, there you go. +Anyway, your opening comments were spot on. +I appreciate it. +Oh, thank you. +I'm calling about smartphone security. +Have you guys downloaded? +Checked out any of the mobile Droid apps that are available on the market like My Lookout or the AVG one or any of those? +I use the Lookout mobile security on my phone. +And that's the one that I like. +And to me, it seems to do the job just fine. +It doesn't slow down your phone at all very much? +Not that I can notice. +Okay. +And it seems to do most of its stuff only at when you access a certain application or when you install the application. +or when you first start up the phone. +So everything in between, it's not doing much. +Right, and you're definitely pleased with it then. +It works for me. +And I like it because it gives me the opportunity to do the remote wipe, +the location of my phone if I lose it. +Right. +Which is the primary reason I installed the application in the first place. +Butterfingers, huh? +Well, you know, I tend to leave things. +Yeah, right. +Laptops and phones and my keys everywhere. +There you go. +Because it turns the phone on. +Right, it turns the phone on like today. +So, yes, I put that on there mainly because I wanted something to keep track of the phone. +Right, right. +And as a side note, it does, you know, the privacy screening +and the basic antivirus on the phone as well, which is kind of nice. +All right, very good. +Thanks for the information. +No problem. +Thanks for the call. +I appreciate it. +If you'd like to be part of the show, 751-1041, +we'll see what we can do to help you out with whatever technology issues you may be having. +But, Raynal. +Yes. +Do you remember what we can get? +Because I see right now. +I'm Ray. +I'm a goody-go-money machine, but I do have some news. +Things I can talk about off the top of my head. +Yeah. +Hey, if you guys have an extra $40,000 laying around and you want to buy a pair of shoes, +I'm going to tell you what shoes you can buy because they're awesome. +Right. +So that's pretty cool. +And it goes to a charity. +I don't know who would buy $40,000 shoes, but I guess some people are. +Some people are. +1,500 people are, yeah, I guess. +So, yeah, that's cool. +And that money is going to a fundraiser for people with Parkinson's. +So you might be able to put the pieces together. +I'll tell you a little bit more about that here. +People are hacking cars now. +People are hacking cars, yeah. +I mean, they have to have physical touch with it, but they are hacking cars. +Yeah, that's not for long. +Pretty soon they'll be able to do it through ESPN. +People are getting viruses via speeding tickets. +That's awesome. +That is interesting. +We'll tell you a little more about that one as well. +And, of course, there's always the new thing. +You know, people are mooning Google TV. +Or not Google TV. +They're mooning Google street maps. +I didn't know that they were actually mooning. +Wasn't it just a full-on frontal? +Full Monty. +Yeah. +Yeah. +Yeah. +Full Monty. +So it has to be planned. +So that's out there. +I'll never get tired of those stories. +So what else we got going on? +Well, the other things that we're looking at is the droiding bionic. +Droid. +Droid bionic. +It came out this week. +Yes. +And they officially released the LTE in Tucson. +I know. +I got that email. +Very nice. +I don't know what I'm thinking about that just yet. +I had to get my hands on and play with it. +I'm going to get it first before I can decide. +Now, Crystal is out. +And we got Ross in here today. +Yes. +Ross is here. +And Ross is... +He doesn't remember how my show works. +He doesn't know the new stuff either. +And so we're just going to confuse him right now. +That's all right. +So let's go ahead and do an outro. +Let's get out of here. +We're going to go to a break real quick here. +This is the Computer Guru. +See? +See? +Yeah. +Got it. +He's going to get it. +By the end of the show, he's going to be a poor mixing expert for the Computer Guru. +Then we're going to lose him. +Yeah. +Then he's going to be gone for the week. +So, all right. +We're able to... +You're listening to the Computer Guru Show. +We'll be right back. +You good? +Mac or PC? +Desktop or laptop? +The Computer Guru. +We'll get your problem solved. +Call 751-1041 to talk with the Guru now. +On 104.1 The Truth. +Welcome back to the Computer Guru Show. +You know what we're doing today? +What? +3 o'clock. +What? +I'm doing another Windows Basics class. +Oh. +All right. +So, Windows 7. +Introduction to Windows 7. +So, if you're moving over from, you know, XP or Vista. +Mainly XP. +98. +I don't know. +If you're coming from 98... +You get your own class if you're coming from 98. +I actually had this gentleman come into the shop this week. +He had an old on a brick of a laptop. +And this thing, you could have hit somebody with it and knocked him out. +And it had Windows NT on it, man. +And I was like... +He's like... +Is this thing worth anything? +Like, depends on if you're a collector. +I mean... +If you're Indiana Jones, it might be worth something. +But other than that, no. +If you're Indiana Jones. +Nice. +So, we're doing another class today. +Yes. +It's a Windows 7 Basics. +Right. +Basically, we're going to teach you everything that you need to know about the stuff that's changed. +And if you're migrating from a previous version of Windows, we'll kind of teach you how to do that. +Nice. +Now, we know that there's no direct upgrade path from XP to 7. +But we can teach you how to get your stuff over there and make it so that it at least looks familiar to you. +And teach you about the new tools that are in it. +Because there's... +You know, one of the questions we get most often about Windows 7 is... +Well, all right. +I'm coming from XP, so I'm used to doing my defraggling. +Defrag. +And my other maintenance on a weekly or sometimes hourly basis. +What do I need to do now? +And the truth is, nothing. +It's all automatic in 7, which is kind of nice. +And there's just... +The biggest change overall is the searchability of 7. +Which is just pretty amazing. +So, if you want to attend the class, you can from 3 o'clock to 5 o'clock today. +It generally runs from, let's say, 3.15 to 7. +You know, just because I don't kick everybody out. +It's, you know, they continue to ask questions. +I continue to answer them until people get tired and leave. +Sometimes I could run on for hours. +Yeah. +So, it's $40. +Come on down. +We can teach you whatever you want to know. +If you want more information, you can call Shop 304-8300. +Or if you'd like to be part of this show, +call 751-1041. +We'll see what we can do to help you out with whatever technology is ailing you today. +So, let's talk... +I want to talk about these shoes real fast. +Really? +You're all about these shoes. +I'm all about these shoes. +These $40,000 shoes. +Well, actually, they're whatever their highest bid is. +But, so, I don't know if you guys remember Back to the Future. +Or I should say Back to the Future 2. +There, Marty McFly was wearing some really cool Nikes in there. +And, you know, they were lit up in colors. +And they adjusted to his feet and all that good stuff. +Out of lace. +Right. +Out of lace. +Exactly. +And it talked. +I like the jacket myself. +The jacket, yeah. +Dry cleans. +Well, no jacket yet. +But the shoes are available now. +So, these Nike shoes are only making 1,500 pair. +And they're being sold to the highest bidders. +eBay only. +Well, a majority... +A couple hundred are on eBay. +And they're doing other bids, too. +You know, in-person bids. +But all the proceeds... +This is what's cool about it. +So, let's say somebody buys one for $3,000, $7,000. +Like somebody just did recently. +Yeah. +$3,000, $7,000. +Well, somebody's going to match that. +The actual creator of Google is matching that. +Up to $50 million. +Up to $50 million. +So, it's pretty cool. +All the proceeds are going to Michael J. Fox's charity for Parkinson's disease. +Which is really cool. +He was on the Letterman Show. +It was the last night or the night before last. +I'm not sure. +And, you know, he talked about it. +And he looks like he's doing really good. +Even though he has Parkinson's and he can't really act as much anymore. +He's doing really good, it seems like. +But these shoes are really cool. +And they light up. +They even do the auto-adjust. +So, you know, you put them on your feet. +You push the button. +They automatically cinch up to your foot. +No, no, no. +The auto-lace is not in them. +No, no. +The band at the top. +It does. +Oh, the band at the top. +But the auto-lace is not in there. +The lace is not the lace. +But the band at the top does adjust automatically. +And they're rechargeable. +It's the first rechargeable shoe that Nike has made. +Yeah. +Now, I think they went about this all wrong. +I think... +Because the person who... +The people who made this movie big. +You know, us. +The people who watched it all the time. +Can never afford $40,000 shoes. +I think what Nike should have done... +Because, you know, it takes them $2 to make a shoe. +Okay, this shoe, probably $50 to make this shoe. +They should have, you know, charged $400 for the shoe. +So, at least the average person can buy it. +That's the reason the auto-lace doesn't work. +Is because they, you know, their sweatshop labor doesn't really... +They can't figure out how that works. +Well, you know, I think that would be really, really cool. +So, the average person, instead of making $1,500 of them, make $15 million of them. +And let everybody buy one if they want. +Just pay $400 for it. + + +No, no, no. +Because, first of all, it's... +No. +No? +No, it's not going to work that way. +Why? +You got to think about it. +They're trying to raise this money for a charity. +Right. +So, they're doing that on a limited basis. +The opening bid for the shoes is pretty low. +Right? +Yeah, but what is going to... +And they're saying that they're going to sell nearly all of them on eBay. +Right. +With all of the net proceeds going to the foundation for Michael J. Fox. +I guarantee there won't be none sold under $20,000. +I don't know. +I don't see it. +I don't see it. +I mean, you get all these diamonds. +I heard people who have too much money. +You can give me the hoverboard, and then we're talking. +Oh, I'm in. +I want the hoverboard. +I'm in on that one. +I've been waiting years for that. +Mattel still says they're not releasing it. +Bunch of jerks. +That's what I'm telling you. +They're just jerks. +That's all they are. +If you'd like to be part of the show, 751-1041. +Let's go ahead and talk to James. +Hey, James, how are you doing? +I'm good. +How are you? +I'm doing all right. +I still want the hoverboard. +I'm actually, now that I think about it, I'm really upset. +That back to the future, I don't have a DeLorean that flies, and I don't have a hoverboard at this point. +Well, it's not 2015 yet. +Do you think they're coming with that in four years in this economy? +Yeah, I bet you can have one. +So what's going on, James? +I have kind of an old computer that I'm kind of trying to still keep running. +It's an older Dell. +It has Windows XP on it. +Okay. +I'm talking like five years old, and it had like an 80 gig hard drive on it, which was completely full. +Right. +So I had a friend of mine that's an IT guy. +I bought a 500 gig hard drive, and he, I don't know if I'm using the right terms, +he re-imaged basically my old hard drive onto the 500 gig. +So he cloned it, right? +Yeah, he cloned it. +That's it. +Put it back in. +It worked absolutely perfect for like a month. +Right. +And then all of a sudden, super slow. +I'm talking like the mouse doesn't even move without jumping. +And I got it to the point where I could, I don't know what the utility is called, +but in control panel, you can look and see what the processor's doing. +Right. +And the processor is at 100% all the time. +Okay. +So you either have an infection or you have some type of software that's really, really unhappy. +Well, you know, I ran my, I started it safe mode and ran my virus protector on it. +It didn't come up anything. +What virus protector do you have? +It's PC tools. +Okay. +Now, here's the deal. +If you get an infection, and this is true of all the antiviruses, but I'm going to make a generalization. +It's kind of a blanket statement. +And I will say that it's probably 90% true, is that when you get a virus on your machine, +let's say you get an infection, and you have an antivirus on there, +basically that virus becomes invisible to the antivirus that's installed on the machine. +Oh, even if I update it? +Even if you update it. +Because one of the first things that the better infections do, if we rate them on a scale of quality, +is that they go in and neuter the antivirus. +It says, +It says, look, I'm not here anymore. +You don't see me. +It kind of waves its hands and said, you know, you're looking for somebody else. +Yeah, there's even some new antiviruses out there. +Yeah, I've fixed the antivirus. +There's some new viruses out there that actually uninstall your antivirus and reinstalls as the antivirus. +Right, reinstalls itself looking just like the antivirus, but it's actually not. +It's the actual virus. +So, do you know when you get that process? +Are you near the machine? +No. +Okay. +So, one thing you're going to look at. +Okay. +If you can get the process list to come back. +Step again, where you can see you're 100%. +You can sort them by processes going into the process tab instead of the performance tab. +And you can find out which process itself is holding down all of your processor. +And that will give you a clue as to what's going on with it as far as if you can give me the name of the process that's holding everything down. +I can probably tell you how to fix it up. +Oh, okay. +So, do that. +And do you have another machine around or is this the only machine you have? +No, I've got another one. +All right. +So, then send me an email from the working machine. +It's a radio at azcomputerguru.com. +And we'll see what we can do to help you out. +Radio at azcomputerguru.com. +Right. +Or if you get it done in the next hour and a half, you can call me back and tell me what it is. +Okay. +All right. +Awesome. +Thank you. +Thanks for the call, James. +I appreciate it. +All right. +So, they're hacking cars these days, are they? +I hear, yes. +They are hacking cars. +Currently, they actually have to have physical contact with the car. +They have to actually get into the cab of the car. +And, you know, it's not. +Far from now, they won't even have to do that, though. +Yeah. +And you thought all you had to worry about then was stealing your change at the car washer. +Yeah, right. +They're going to be hacking your car. +Well, I mean, you think about it. +There's some cars out there, some of these new fancy cars that connect to the Internet wherever they go, +like, let's say, the Leaf. +Right. +With a car like that that's constantly hooked up to the Internet, you don't have to have physical contact with it. +You just have to really have a really good hacker. +And once they get it figured out the first time, well, they're done for. +I don't know. +What could you do by hacking the Leaf? +Make it possible. + + + +You can't make it prettier. +Careful now. +There's a couple all around in town. +They might be listening. +You can't make it uglier. +I guess you can make it to where, you know, the battery is constantly. +I don't know. +I have no idea. +I'm on vapor soon. +I have no idea what to do. +Start a Leaf fire. +A Leaf fire. +That's terrible. +No, I guess you can make it to where, you know, the car will open. +Yeah. +Something like that. +You can unlock the car. +I guess you could do something like that. +Hey, bud. +If you have an extra bathroom in your house that you want to rent out, +I'm going to tell you how you can do that here in a few minutes. +Fantastic. +Oh, that's awesome. +You're listening to The Computer Guru Show right here on 104.1 The Truth, +Tucson's News Talk FM. +Never miss a moment of The Computer Guru. +Go to 104.1thetruth.com for podcasts of every show. +This is The Computer Guru. +Now. +Now. +Back to more of The Computer Guru. +On 104.1 The Truth, Tucson's News Talk FM. +You know, I've been telling people for a long time when they get a traffic ticket and you +get the email about it. +Ignore it. +You should be ignoring it. +And here is the reason why now. +Because before it was just because I disagree with the service method. +Right. +Right. +Now, it's because it's probably a virus. +Interesting. +It gives me a much more satisfactory reason to say. +You shouldn't open that email. +So now you get viruses from speeding tickets. +That's right. +I like it. +This is one of the downfalls of speeding. +You get a virus now. +Maybe it's the city's way of, you know. +We'll get you. +Yeah. +Fine. +You're going to pay that money regardless. +You know, it's not going to be to us. +It's going to be to somebody else to get the virus off. +Yeah. +We're going to get taxes from somebody else if you don't pay this parking ticket or speeding ticket. +Oh, man. +You know, speaking of speeding tickets. +So I'm assuming it's an attachment with an email. +Yeah. +They're attaching it to an email. +Okay. +And it's. +It's stupid. +But, yeah. +It's just another reason that. +That you shouldn't open those emails. +Yes. +If they didn't have traffic cameras. +Right. +You wouldn't get these viruses. +That's how I'm looking at it. +Okay. +You're blaming it. +Blame it on the traffic cameras. +Yeah. +I don't like the traffic cameras. +Me either. +I'll tell you why. +I was moving last week. +Right. +Right. +So I've got this truck that I borrowed from some listeners. +Right. +Right. +Thank you, Tom and Mary Ann. +You guys are awesome. +Excellent. +And. +With a big trailer at that. +With a big trailer on it. +Bigger little horse trailer. +I'm sitting at the light. +At. +At. +Broadway and Craycroft. +Right. +Right. +And. +So you've got the traffic camera there. +I'm first in line. +Green light comes along. +I start to move out into the intersection. +I get popped four times. +Flashed. +Really? +Yeah. +And I'm like. +What did I do wrong? +I'm doing like six miles an hour. +Because the light just turned green. +And I've got this giant trailer loaded up behind me. +Yeah. +So you get. +What? +You get one of our listeners a ticket? +I told them just, you know. +I told them. +I told them that if they get any traffic tickets, it's not them. +So they can safely discard them. +Right. +Because it's me driving. +But, you know, it's. +Those things are so irritating. +And here's the other thing that really bothers me about them. +And I'm just going to go on a little soapbox rant here. +All right. +Is that the speed limit is posted. +Right. +Right. +The speed limit is. +Let's give an example. +Forty. +Okay. +All right. +You're cruising down river. +You got a 40 mile an hour speed limit. +Mm-hmm. +That means that you have somewhere between 40 and 50 miles an hour that you can go. +And not get the ticket. +That does not mean drive 30 in the 40 zone. +And the more often the way that it works is that you got people doing 50. +And then they get somewhere near the cameras. +They slam on their brakes. +Right. +Do somewhere between 25 and 35. +Right. +Through the little zone. +And it's just such a pain in the butt. +Yeah. +I mean, if I was a cop myself, I was a cop. +I would actually go on the other side of these speeding cameras and just wait for people to speed back up. +Right. +Because that's exactly what happens. +Well, they should have one. +One that's sitting there ticketing the people that are driving too slow. +Right. +You're going 25 in a 40. +Yeah. +It's dangerous. +Right. +You're making people slam on their brakes. +Right. +Right. +For no reason. +Right. +Right. +It's just lame. +Stupid traffic. +You know, you think in this day and age there would be some sort of technology out there +that, you know, we could all keep at the same speed. +We should take a hit, though. +Yeah. +Pima County, you know, I recently just moved way out to the east side. +Way out in the boondocks. +So I am not in the city limits any longer. +Right. +And there was a traffic camera over there on Tank of Verde near Houghton. +Mm-hmm. +Right? +It's gone now. +Really? +Gone. +Like the city removed or somebody else removed it? +The county removed it. +Oh, okay. +Because people were angry about it. +Really? +They were saying, we don't want this camera here. +Get rid of it. +So the community got together and got rid of it. +So let's take a clue from the county here, from the people, residents of that neighborhood, +and I think that we should all just complain until they get rid of the cameras because +it's so dumb. +Or we could just hire some vigilantes and just go ahead and remove them ourselves. +Obviously, it's ticketing people for doing six miles an hour at a green light as soon +as you're the first one out of the gate. +Right, right. +Ah, so lame. +Are you done with your soapbox, right? +Yeah, I'm done with my soapbox, right? +All right, so tell me how I can rent out my bathroom. +Well, apparently, if you have an extra bathroom and you want to rent it out because you don't +know what to do with that space, or you want somebody else that you don't know to mess +up your bathroom because your teenagers aren't doing enough for you, there is a new app on +your smartphones that you can rent out your bathroom. +Now, apparently, I can't see how this has been a big issue in a smaller town like Tucson, +but maybe in New York City this might be important. +You know, maybe there's not enough bathrooms for too many people. +So you can get on this app and put your bathroom up for rent and with a fee, and people will +as long as you're home that you can let them in. +What kind of fee are we talking about? +Well, you can set your own fee. +Okay. +So whatever you want it to be. +You want it to be $10? +It can be $10. +You want it to be $200? +If you're willing to pay it, so be it. +You've got to have a really nice bathroom for $200. +A little boudet. +But, you know, I mean, it's this app. +I haven't checked it out. +But it's great. +It's called CLOO. +So CLOO, I'm assuming is how it's pronounced. +I'm not in. +Why would you? +I'm not in. +First of all, I don't think that I could walk into somebody's place and be like, oh, yeah, +I saw your bathroom online. +Yeah. +I'm here to wreck it. +Yeah. +You know what? +We should just hire Howard to go around to everybody's bathrooms and just wreck them. +I just can't do it. +I have a hard time. +I'm even when I go over to people's houses, like, you know, get invited over to a party +or something. +I can't use their bathroom. +Right. +It's just like, yeah, I'll wait till I get home. +It's totally cool. +I don't get it. +Well, maybe as a growing friend. +Who knows? +This is one of those things with technology. +Right. +It's gone too far. +It's a crappy idea. +Piss poor. +It's just not good. +You're done with your puns. +If you'd like to be part of the show, 751-1041, how much would you rent out your bathroom +for? +Just out of curiosity. + +I don't know. +One billion dollars. +Wouldn't it be weird that you're just sitting there, the doorbell rings, and you're like, +oh, yeah, I forgot. +Dude's got to come over and use the bathroom. +What's the deal? +Well, it's just like that story we did a few months back about turning sewage stuff into +hamburgers. +I mean, this is just going too far. +Technology has gone way too far. +So I think we need to nip it in the butt. +No pun intended. +I think that's in the bud. +Whatever. +That's good. +You use nippers. +Yeah, well. +On your rosebud. +On your rosebud. +On your rosebud. + + +Oh, man. +That's just, this is wrong. +It's wrong in every sense of the word. +All right. +All right. +All right. +So we covered the Marty McFly shoes. +We did. +We covered the hacking of the cars. +Covered and renting out your bathroom. +Renting out your bathrooms. +Oh, God. +What about the invisibility shield for tanks? +I have not heard of this. +What is this? +Apparently. +Ah! +I forgot to turn off my phone. +Oh, good job. +That's terrible. +That's me calling up. +See, that is radio foul, right? +Right there. +So what is an invisibility shield? +What is this? +Apparently, there's a way that you can turn your tank into an invisible tank. +I've always wanted to turn my tank into an invisible tank. +You have a tank? +I do. +Oh, that's awesome. +Sorry. +It makes them look like cows. +It makes them look like cows? +That's a big cow. +Gosh. +I'm going to have to, we're going to post that on the website, but it's an interesting +story. +You've got to go into detail here a little bit. +I'm on the hook. +I'm on the hook now. +You've got to tell me. +We'll cover that in a minute, but we've got a break coming up here, so I need to mention +the classes. +So if you want to be part of the classes this evening, from three to five, we're doing +an introduction to Windows 7. +Nice. +It will be at the classroom location. +What will I learn? +You will learn what's new in Windows 7. +If you're migrating from Windows XP, which is what most of the people that are showing +up are for, or they recently got a copy of Windows 7 and they just really don't know +what to do with it. +Don't use it as a coaster. +It's funny. +I talked to somebody this morning, and I said, so what do you want to learn? +What are you hoping to get out of this class? +What are you hoping to get out of it? +That's my standard question to everybody. +When they walk in, what do you want to learn today? +So I can at least hit exactly what they want to learn during the class. +Tailor the class to your needs. +Right. +And he goes, well, I got this Windows 7 machine because my old one died, and I really would +like some instruction on it, but I've just been using it in the meantime because what +else can I do? +Right. +And that's exactly what you should be doing. +Use it because you'll find out that it's not as different as you think it is. +Yeah. +It is. +It just looks more aesthetics than anything. +Right. +It's much like cars. +Right. +Right. +You know, as far as, you know, you go from one car to another. +They still drive the same. +It's still the basic mechanics are the same as far as, you know, you get in, you push +the accelerator, you turn the wheel, et cetera. +So that's where I messed up when I got my new car. +I forgot about where the accelerator was. +I always forget where the brake pedal is. +That's my problem. +Yeah, I know. +Wait, I'm supposed to stop? +If I wanted to stop, I wouldn't have gotten in the car. +That's all I'm saying. +All right. +So let's go and take a break, Ross. +Let's do it. +Let's do our thing here. +This is the Computer Guru. +So when we come back, we'll tell you how to turn your tank into a cow if you happen to +have one. +We'll talk about the Street View camera being graffitied and Apple being a little, they're +being a little punk about the Galaxy Tab. +It's just, it's dumb. +Oh, and by the way, they're finally getting flash. +Yeah. +This is the Computer Guru Show. +We'll be right back. +This is the Computer Guru. +Get any problem for any system solved by calling 751-1041. +The Computer Guru is on. +1041 The Truth. +This is on Snooze. +So if you want to make your tank invisible. +Yes, I'm listening. +The way that this works is it only really shields you from thermal view. +So infrared. +Infrared. +Right. +Nitrogen goggles. +Nitrogen goggles and such. +And it's pretty nifty. +Really? +It uses a series of hexagon tiles. +Okay. +That cover the entire tank. +Right. +And they. +Not spaceship tiles, so they don't fall off. +They might fall off. +I don't know. +But that's just wrong. +What? +They always fall off. +The problem is. +The problem is they're using 30-year-old technology in those old spaceships still? +You know what? +We're not going to go there. +You're going to get me all distracted. +I'm going to go on a rant. +Oh, sorry. +Okay. +I'm sorry. +I'm sorry. +You're an invisible tank. +Let's go. +The invisible tank has these hexagon tiles on them that are able to change temperature rapidly. +Okay. +To match the surrounding area. +Right. +There's a camera on there that sweeps the area and says, oh, the stuff that's on the +other side of me. +Is this temperature. +Is this temperature. +And then it matches it so that it makes it invisible. +That is actually really cool. +Or it can mask itself. +Or it can draw with those pixels. +Right. +Right. +With each tile can change a different temperature slightly. +And you can make it look like. +Like a car. +Yeah. +I just saw that video. +I mean, it's a really cool video. +So, I mean, you see it. +And you see the tank sitting there. +And then it turns on these tiles. +Right. +The tank. +The silhouette disappears. +And then the car silhouette shows up. +Yep. +And so now it just looks like a car. +I mean, that's really cool. +Now, I'm thinking if I'm a tank operator. +Right. +If I see a car, I'm blowing it up anyways. +Right. +But. +What's the car doing out here where that tank's supposed to be? +Yeah. +Right. +Wait a minute. +Something's not right here. +I don't know why you'd want to make it disguised as anything other than not there. +There. +Right. +So. +You can make it look like a camel or a cow or. +Yeah, but why? +Because, you know. +Because you want. +Well, yeah, that's true. +I'm thinking that those guys in the tank are going to shoot anything that's out there. +Right. +It's a cow out there. +They're like hamburgers. +Well, when I drive my tank. +I do have a tank. +Okay. +Roll the tanks. +It's a really cool game, I'm going to tell you. +Anyways, when I drive my tank, I just shoot whatever moves. +Right. +See? +See? +That's why I'm saying. +You just want to be invisible completely. +Right. +At least it can do that. +Technology is interesting. +It can do cool advertisement. +They were advertising their own name on the side. +That was cool. +You can put on their sponsor by Goodyear. +Something like that. +Just think invisible by Goodyear. +Raytheon tank. +Oh. +So, some news in Apple. +What? +All right. +Yeah, well, Apple's kind of being a jerk. +Apple's being a jerk? +Yeah. +Okay. +All right, so. +Wait, wait, wait. +Hold on. +Jobs is gone and they're still being jerks? +Yeah. +No. +Well, you get to say that again here in a minute when you say jobs is gone and this. +Oh, all right. +But. +So, they've decided that they're trying to ban the Galaxy Tab 10-inch, the 10-inch Galaxy +Tab from sale in Europe. +Okay. +Right? +Because it too closely resembles the iPad. +Oh, man. +I thought we were done with this. +Yeah. +Well, remember, we talked about this a few weeks ago where they were saying, you know, +Samsung's response was, well, there was a tablet in the Space Odyssey movie. +Yeah. +You know, how did you get the baton for it? +And that was like 20 years ago, 30 years ago. +So. +So, apparently, there was a judge in Europe that said you can't ban it in Europe as a whole. +Right. +Right. +You can ban it in individual countries. +So, they got Germany to ban it. +Really? +Yeah. +They're trying to ban it in Japan. +Ugh. +And the thing is, is that it's a tablet. +So, this is how Apple does it, though. +Apple, they don't try to go ahead and do direct competition with people. +They just go ahead and sue people and get them out of business. +Well, I mean, I understand that you want to protect the intellectual property rights and +the et cetera, et cetera. +But. +But it's a tablet. +Yeah. +I mean, it's like. +I mean, how much difference can you have in a tablet? +I mean, really, how different can you make it? +Well, it's like saying the makers of my car are the Chevy. +Well, my Chevy car should sue the makers of the Scion. +Because, you know, they both have four wheels. +And doors. +And a hatch. +And a hatch. +Yeah. +And door locks. +I mean, that doesn't make sense to me. +It's. +You can look at the Galaxy Tab and you can plainly see that it's not an iPad. +You can tell it's not an iPad. +Right. +And you can use it and find out. +Yeah. +It's Flash. +You know, it has other things that the iPad doesn't have. +Yes. +I mean, I think that's dumb. +Really. +That to go out there and sue them over that. +It's. +Whatever. +I mean, I understand that they. +It is their intellectual. +They're short on cash over there at Apple. +Yeah. +They're short on cash. +They only have $86 billion in liquid assets. +But, you know, you got to keep. +Well, you got to watch the bottom line. +They have more money than the government. +Well, actually, last time I heard, I had more money than the government. +All right. +So, speaking of Flash. +Yes, Flash. +All right. +Say it again. +Flash. +Flash. +Steve Jobs is gone. +Oh, yeah. +So, now that Flash. +You know, Steve Jobs is gone. +Now, Apple's getting Flash. +Yes. +All of the iOS devices are getting Flash now. +Wow. +So, all it took was Jobs to leave. +Yes. +iOS 5, when it comes out, will have Flash built in, which will be nice. +So, you can actually, like, use the thing. +I'll believe it when I see it. +Because, you know, they talked about this for iOS 4. +It was rumored for iOS 4 and iOS 3. +I mean, I'll believe what I see. +Steve Jobs is still there. +Yeah, I know. +But, still. +He still has a big foothold in the company. +He can still just nix it if he wanted to. +Oh, come on. +Come on. +It's Jobs. +He created that company. +And over again. +Twice. +That's right. +So, it'll be nice to actually have some Flash compatibility with your iOS device. +Yeah, it would be pretty cool, I guess. +Yeah. +Because, right now, you know, I spend a lot of time going, I can't do that. +It's Flash. +Well, that's one of the biggest things that, you know, I have a lot of customers that we +build websites for. +By the way, we build websites. +And, the biggest hindrance that I don't, the reason I don't pitch a lot of Flash websites +for my customers is you can't access them on iPads or iPhones. +You can on Droids, but not iPads. +So, that's the biggest reason why I haven't pitched that many. +But, I guess, now, I don't have that excuse anymore. +Yeah, now, you'll be able to pitch the right type of website. +Yeah, now, I have to think of another excuse. +Yes. +Flash is a pain in the butt. +That's the only excuse. +No, no. +Actually, I'm finishing up this Flash website right now. +It is going to be absolutely gorgeous. +I can't wait to make it live. +It should be live this week. +And, then, next week, I'll be able to tell you guys about it and tell you the website +so you can look at it and praise how beautiful it is and tell me how awesome I am. +I am awesome. +I am. +I am. +This website is amazing. +I amazed myself. +Really? +Well, that's not hard to do. +I have extremely low standards. +Oh, look. +My shoes are tied. +That's amazing. +I know. +I have extremely low standards. +All right. +So, are you thinking about a new phone? +I am thinking about a new phone. +I mean, because the Droid Bionic is out. +Yes. +Now, the Droid Bionic, first of all, it's been hyped to no end. +Yes. +It has. +It has been like a little... +Nine months of their saying, hey, this awesome phone is going to come out. +Right. +And, they've been playing the hype game. +Just like... +Like Apple. +They put one out in the wild and let it sneak out a little bit and they bring it back. +Yeah. +That's another rant. +Just going off on all kinds of tangents today about how companies are making me angry. +Angry. +Angry. +Yes. +I'm going to turn green and need a new shirt. +But, you know, the new phone is out. +Here's my problem with it. +Okay. +All right. +It's got great features. +All right. +And, that's your problem with it? +Hold on. +I'm getting there. +I have to build up to this. +Oh. +This is radio. +All right. +So... +So, there's... +It's got a great processor. +Lots of memory. +It's very fast. +Bigger screen. +It is beautiful. +Not to mention the fact that it's got a docking station that turns it into a laptop. +I love that. +It's got full HDMI compatibility. +Nice. +You can hook it up to a nice TV or a monitor. +Excellent. +It's got all kinds of really nifty features. +Okay. +Here's my problem. +It's $300. +That's $300 with the two-year discount. +So, with the Droid X? +No, no, no, no. +No, no, no, no. +No. +No, it was... +No, it was... +It was $300, dude. +I promise you it was. +So, it's too expensive, in my opinion. +All right. +At least for me right now. +Yeah. +Oh, yeah. +I don't have any money. +So, and then if you want the laptop adapter, it's an extra $200. +You know, I think Verizon, what Verizon should do, our local Verizon stores, they should +hook us up so we can talk about their phone. +Yeah. +And they'll praise it in all its glory and all its awesomeness. +Okay. +Well, we're doing other things that will be totally ignored. +You know, you've got... +You've got the docking station, it's an extra $200. +The HDMI station, another $100. + +And there's a broad-spectrum Wi-Fi adapter for it, which will allow you to wirelessly +tether to a monitor or... +Really? +Yeah. +Oh, that is awesome. +Which would be interesting. +But, you know, it's... +I don't know that it's really... +And it's 4G, so that also helps. +The LTE, yeah. +But I don't know that it's really going to... +People are going to gravitate to it right now in... +On Macs. +On Macs, right? +Because all you're looking at is, you know, an additional... +You're adding 4G to a Droid X, you know? +And so I don't know that how much that's really going to work with the public. +You think it's just a Droid X? +I mean, it's a faster processor, all these other cool features. +I get it. +But, you know, like the Droid X2 is the same processor. +Yeah, well. +Right? +That thing bombed. +Well, and it wasn't different enough. +That's what I'm thinking is going on here, is that it's not different enough to make it so that it's going to be... +You know, something everybody runs to get. +Do we know what OS it's going to have in Gingerbread? +Yeah, it comes with the 2.3.4. +Okay. +So, I mean, it's got the newest operating system on it. +Right. +It's a good phone from everything I see spec-wise, but I don't know that it really is going to make a big enough impact to really get out there. +But speaking of big impacts, you know, you've got T-Mobile, or... +No, I'm sorry, not T-Mobile, Sprint, that is preparing for a major phone release next month. +So, it's anticipated that they're going to be getting that. +Yeah. + + + + + + + + + + + + +An iPhone. +Oh, okay. +Yeah, for Sprint here shortly. +So, I mean, yeah, I'm not into that. +Sprint getting an iPhone? +No, I'm not into it at all. +Oh, really? +Yeah. +I mean, come on, if I wanted a bad phone service, I'd stick with AT&T. +Sorry, that was bad. +You've got the nationwide plan, which is nationwide, except for where I'm standing. +Except for my house. +That's right. +Or the every other word plan, which is my favorite one. +That's the one T-Mobile. +It was terrible. +It is terrible. +I moved to Verizon. +You're such a sad, sad boy. +You know what? +I'm done with you. +Yeah. +All right, so here's what's going to happen. +When we come back after the next hour, you know, into the next hour here, +we're going to talk about more things to make your life better, technology-wise, +and also, you need to remember, tomorrow, September 11th, it's the 10-year anniversary, +so make sure that you're doing something to be a better person and to make us a better country. +This is Computer Guru Show. +We'll be right back after the news. +We'll be right back. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.json new file mode 100644 index 0000000..f65269a --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.json @@ -0,0 +1,62243 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 2847.896, + "segments": [ + { + "id": 0, + "text": "Computer running slow?", + "start": 2.0999999999999996, + "end": 3.48, + "words": [ + { + "word": " Computer", + "start": 2.0999999999999996, + "end": 2.7, + "probability": 0.180908203125 + }, + { + "word": " running", + "start": 2.7, + "end": 3.14, + "probability": 0.94580078125 + }, + { + "word": " slow?", + "start": 3.14, + "end": 3.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1, + "text": "Has your machine somehow acquired a life of its own?", + "start": 4.1, + "end": 7.08, + "words": [ + { + "word": " Has", + "start": 4.1, + "end": 4.7, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4.7, + "end": 4.86, + "probability": 1.0 + }, + { + "word": " machine", + "start": 4.86, + "end": 5.22, + "probability": 1.0 + }, + { + "word": " somehow", + "start": 5.22, + "end": 5.62, + "probability": 1.0 + }, + { + "word": " acquired", + "start": 5.62, + "end": 6.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 6.08, + "end": 6.38, + "probability": 1.0 + }, + { + "word": " life", + "start": 6.38, + "end": 6.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 6.58, + "end": 6.76, + "probability": 1.0 + }, + { + "word": " its", + "start": 6.76, + "end": 6.9, + "probability": 0.99853515625 + }, + { + "word": " own?", + "start": 6.9, + "end": 7.08, + "probability": 1.0 + } + ] + }, + { + "id": 2, + "text": "Or do you simply desire a deeper and more meaningful connection?", + "start": 7.38, + "end": 11.4, + "words": [ + { + "word": " Or", + "start": 7.38, + "end": 7.98, + "probability": 0.98828125 + }, + { + "word": " do", + "start": 7.98, + "end": 8.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 8.36, + "end": 8.54, + "probability": 1.0 + }, + { + "word": " simply", + "start": 8.54, + "end": 8.84, + "probability": 1.0 + }, + { + "word": " desire", + "start": 8.84, + "end": 9.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 9.26, + "end": 9.64, + "probability": 1.0 + }, + { + "word": " deeper", + "start": 9.64, + "end": 9.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 9.96, + "end": 10.26, + "probability": 1.0 + }, + { + "word": " more", + "start": 10.26, + "end": 10.48, + "probability": 1.0 + }, + { + "word": " meaningful", + "start": 10.48, + "end": 11.0, + "probability": 1.0 + }, + { + "word": " connection?", + "start": 11.0, + "end": 11.4, + "probability": 1.0 + } + ] + }, + { + "id": 3, + "text": "Be one with your operating system.", + "start": 11.94, + "end": 13.72, + "words": [ + { + "word": " Be", + "start": 11.94, + "end": 12.34, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 12.34, + "end": 12.62, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 12.62, + "end": 12.86, + "probability": 1.0 + }, + { + "word": " your", + "start": 12.86, + "end": 13.0, + "probability": 1.0 + }, + { + "word": " operating", + "start": 13.0, + "end": 13.32, + "probability": 1.0 + }, + { + "word": " system.", + "start": 13.32, + "end": 13.72, + "probability": 1.0 + } + ] + }, + { + "id": 4, + "text": "It's Arizona's computer guru, Mike Swanson, and his show starts now.", + "start": 14.1, + "end": 18.46, + "words": [ + { + "word": " It's", + "start": 14.1, + "end": 14.56, + "probability": 1.0 + }, + { + "word": " Arizona's", + "start": 14.56, + "end": 15.22, + "probability": 1.0 + }, + { + "word": " computer", + "start": 15.22, + "end": 15.46, + "probability": 0.9072265625 + }, + { + "word": " guru,", + "start": 15.46, + "end": 15.92, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 16.04, + "end": 16.32, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 16.32, + "end": 16.72, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 16.92, + "end": 17.22, + "probability": 1.0 + }, + { + "word": " his", + "start": 17.22, + "end": 17.32, + "probability": 1.0 + }, + { + "word": " show", + "start": 17.32, + "end": 17.58, + "probability": 1.0 + }, + { + "word": " starts", + "start": 17.58, + "end": 18.04, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 18.04, + "end": 18.46, + "probability": 1.0 + } + ] + }, + { + "id": 5, + "text": "Listen in, chat in, and watch live streaming at gurushow.com.", + "start": 18.92, + "end": 23.52, + "words": [ + { + "word": " Listen", + "start": 18.92, + "end": 19.52, + "probability": 1.0 + }, + { + "word": " in,", + "start": 19.52, + "end": 19.76, + "probability": 1.0 + }, + { + "word": " chat", + "start": 19.84, + "end": 20.32, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 20.32, + "end": 20.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 20.68, + "end": 20.96, + "probability": 1.0 + }, + { + "word": " watch", + "start": 20.96, + "end": 21.16, + "probability": 1.0 + }, + { + "word": " live", + "start": 21.16, + "end": 21.42, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 21.42, + "end": 21.76, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 21.76, + "end": 22.22, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 22.22, + "end": 22.86, + "probability": 0.85546875 + }, + { + "word": ".com.", + "start": 22.86, + "end": 23.52, + "probability": 1.0 + } + ] + }, + { + "id": 6, + "text": "Want your voice to be heard instead?", + "start": 23.76, + "end": 25.34, + "words": [ + { + "word": " Want", + "start": 23.76, + "end": 24.2, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 24.2, + "end": 24.36, + "probability": 1.0 + }, + { + "word": " voice", + "start": 24.36, + "end": 24.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 24.6, + "end": 24.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 24.76, + "end": 24.86, + "probability": 1.0 + }, + { + "word": " heard", + "start": 24.86, + "end": 25.08, + "probability": 1.0 + }, + { + "word": " instead?", + "start": 25.08, + "end": 25.34, + "probability": 1.0 + } + ] + }, + { + "id": 7, + "text": "Instead, call in with your questions and riddles.", + "start": 25.34, + "end": 27.58, + "words": [ + { + "word": " Instead,", + "start": 25.34, + "end": 25.6, + "probability": 0.44140625 + }, + { + "word": " call", + "start": 25.62, + "end": 26.18, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 26.18, + "end": 26.38, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 26.38, + "end": 26.56, + "probability": 1.0 + }, + { + "word": " your", + "start": 26.56, + "end": 26.68, + "probability": 1.0 + }, + { + "word": " questions", + "start": 26.68, + "end": 27.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 27.04, + "end": 27.22, + "probability": 0.99951171875 + }, + { + "word": " riddles.", + "start": 27.22, + "end": 27.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 8, + "text": "The number is 520-790-2040.", + "start": 27.68, + "end": 31.0, + "words": [ + { + "word": " The", + "start": 27.68, + "end": 28.02, + "probability": 1.0 + }, + { + "word": " number", + "start": 28.02, + "end": 28.2, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 28.2, + "end": 28.36, + "probability": 0.98828125 + }, + { + "word": " 520", + "start": 28.36, + "end": 28.92, + "probability": 0.99755859375 + }, + { + "word": "-790", + "start": 28.92, + "end": 29.94, + "probability": 0.99951171875 + }, + { + "word": "-2040.", + "start": 29.94, + "end": 31.0, + "probability": 1.0 + } + ] + }, + { + "id": 9, + "text": "This is the Computer Guru Show on AM 1030, KVOY, The Voice.", + "start": 31.46, + "end": 36.24, + "words": [ + { + "word": " This", + "start": 31.46, + "end": 31.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 31.86, + "end": 32.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 32.24, + "end": 32.32, + "probability": 0.6787109375 + }, + { + "word": " Computer", + "start": 32.32, + "end": 32.58, + "probability": 0.9970703125 + }, + { + "word": " Guru", + "start": 32.58, + "end": 32.88, + "probability": 0.994140625 + }, + { + "word": " Show", + "start": 32.88, + "end": 33.22, + "probability": 0.9912109375 + }, + { + "word": " on", + "start": 33.22, + "end": 33.68, + "probability": 0.994140625 + }, + { + "word": " AM", + "start": 33.68, + "end": 33.98, + "probability": 0.99951171875 + }, + { + "word": " 1030,", + "start": 33.98, + "end": 34.56, + "probability": 0.7626953125 + }, + { + "word": " KVOY,", + "start": 34.74, + "end": 35.38, + "probability": 0.82373046875 + }, + { + "word": " The", + "start": 35.64, + "end": 35.94, + "probability": 0.99560546875 + }, + { + "word": " Voice.", + "start": 35.94, + "end": 36.24, + "probability": 1.0 + } + ] + }, + { + "id": 10, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 38.88, + "end": 40.54, + "words": [ + { + "word": " Hello", + "start": 38.88, + "end": 39.28, + "probability": 0.99169921875 + }, + { + "word": " and", + "start": 39.28, + "end": 39.54, + "probability": 0.751953125 + }, + { + "word": " welcome", + "start": 39.54, + "end": 39.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 39.72, + "end": 39.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 39.88, + "end": 39.94, + "probability": 0.998046875 + }, + { + "word": " Computer", + "start": 39.94, + "end": 40.14, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 40.14, + "end": 40.32, + "probability": 0.99951171875 + }, + { + "word": " Show.", + "start": 40.32, + "end": 40.54, + "probability": 1.0 + } + ] + }, + { + "id": 11, + "text": "My name is Mike, here to deal with your technology needs and treat you like a person in the process,", + "start": 40.6, + "end": 44.24, + "words": [ + { + "word": " My", + "start": 40.6, + "end": 40.68, + "probability": 0.99951171875 + }, + { + "word": " name", + "start": 40.68, + "end": 40.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 40.76, + "end": 40.84, + "probability": 0.78271484375 + }, + { + "word": " Mike,", + "start": 40.84, + "end": 41.02, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 41.08, + "end": 41.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 41.24, + "end": 41.36, + "probability": 1.0 + }, + { + "word": " deal", + "start": 41.36, + "end": 41.48, + "probability": 0.72900390625 + }, + { + "word": " with", + "start": 41.48, + "end": 41.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 41.58, + "end": 41.66, + "probability": 0.99853515625 + }, + { + "word": " technology", + "start": 41.66, + "end": 41.92, + "probability": 1.0 + }, + { + "word": " needs", + "start": 41.92, + "end": 42.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 42.28, + "end": 42.56, + "probability": 0.99853515625 + }, + { + "word": " treat", + "start": 42.56, + "end": 42.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 42.82, + "end": 43.0, + "probability": 1.0 + }, + { + "word": " like", + "start": 43.0, + "end": 43.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 43.14, + "end": 43.28, + "probability": 1.0 + }, + { + "word": " person", + "start": 43.28, + "end": 43.6, + "probability": 1.0 + }, + { + "word": " in", + "start": 43.6, + "end": 43.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 43.82, + "end": 43.88, + "probability": 1.0 + }, + { + "word": " process,", + "start": 43.88, + "end": 44.24, + "probability": 1.0 + } + ] + }, + { + "id": 12, + "text": "because that's what we do.", + "start": 44.36, + "end": 45.08, + "words": [ + { + "word": " because", + "start": 44.36, + "end": 44.44, + "probability": 1.0 + }, + { + "word": " that's", + "start": 44.44, + "end": 44.68, + "probability": 0.9970703125 + }, + { + "word": " what", + "start": 44.68, + "end": 44.8, + "probability": 1.0 + }, + { + "word": " we", + "start": 44.8, + "end": 44.92, + "probability": 1.0 + }, + { + "word": " do.", + "start": 44.92, + "end": 45.08, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "Give us a call down here at 790-2040.", + "start": 45.86, + "end": 49.24, + "words": [ + { + "word": " Give", + "start": 45.86, + "end": 46.26, + "probability": 0.99658203125 + }, + { + "word": " us", + "start": 46.26, + "end": 46.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 46.42, + "end": 46.44, + "probability": 1.0 + }, + { + "word": " call", + "start": 46.44, + "end": 46.6, + "probability": 1.0 + }, + { + "word": " down", + "start": 46.6, + "end": 46.72, + "probability": 0.99853515625 + }, + { + "word": " here", + "start": 46.72, + "end": 46.98, + "probability": 1.0 + }, + { + "word": " at", + "start": 46.98, + "end": 47.4, + "probability": 1.0 + }, + { + "word": " 790", + "start": 47.4, + "end": 48.3, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 48.3, + "end": 49.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 14, + "text": "That's 520-790-2040.", + "start": 49.28, + "end": 51.8, + "words": [ + { + "word": " That's", + "start": 49.28, + "end": 49.54, + "probability": 0.9990234375 + }, + { + "word": " 520", + "start": 49.54, + "end": 49.92, + "probability": 0.9990234375 + }, + { + "word": "-790", + "start": 49.92, + "end": 50.62, + "probability": 1.0 + }, + { + "word": "-2040.", + "start": 50.62, + "end": 51.8, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "We'll be happy to take any of your calls and deal with them.", + "start": 52.440000000000005, + "end": 55.26, + "words": [ + { + "word": " We'll", + "start": 52.440000000000005, + "end": 52.84, + "probability": 0.966796875 + }, + { + "word": " be", + "start": 52.84, + "end": 52.92, + "probability": 1.0 + }, + { + "word": " happy", + "start": 52.92, + "end": 53.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 53.18, + "end": 53.36, + "probability": 1.0 + }, + { + "word": " take", + "start": 53.36, + "end": 53.54, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 53.54, + "end": 53.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 53.74, + "end": 53.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 53.88, + "end": 54.06, + "probability": 1.0 + }, + { + "word": " calls", + "start": 54.06, + "end": 54.56, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 54.56, + "end": 54.82, + "probability": 0.92333984375 + }, + { + "word": " deal", + "start": 54.82, + "end": 55.02, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 55.02, + "end": 55.18, + "probability": 1.0 + }, + { + "word": " them.", + "start": 55.18, + "end": 55.26, + "probability": 0.44287109375 + } + ] + }, + { + "id": 16, + "text": "Whenever technology issues happen to be ailing you today.", + "start": 55.34, + "end": 57.76, + "words": [ + { + "word": " Whenever", + "start": 55.34, + "end": 55.44, + "probability": 0.51904296875 + }, + { + "word": " technology", + "start": 55.44, + "end": 55.98, + "probability": 0.99462890625 + }, + { + "word": " issues", + "start": 55.98, + "end": 56.5, + "probability": 1.0 + }, + { + "word": " happen", + "start": 56.5, + "end": 56.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 56.76, + "end": 56.92, + "probability": 0.9912109375 + }, + { + "word": " be", + "start": 56.92, + "end": 57.06, + "probability": 1.0 + }, + { + "word": " ailing", + "start": 57.06, + "end": 57.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 57.3, + "end": 57.48, + "probability": 1.0 + }, + { + "word": " today.", + "start": 57.48, + "end": 57.76, + "probability": 1.0 + } + ] + }, + { + "id": 17, + "text": "As usual, we've got people over there.", + "start": 58.78, + "end": 61.06, + "words": [ + { + "word": " As", + "start": 58.78, + "end": 59.14, + "probability": 0.99609375 + }, + { + "word": " usual,", + "start": 59.14, + "end": 59.5, + "probability": 1.0 + }, + { + "word": " we've", + "start": 59.64, + "end": 60.26, + "probability": 0.849609375 + }, + { + "word": " got", + "start": 60.26, + "end": 60.36, + "probability": 1.0 + }, + { + "word": " people", + "start": 60.36, + "end": 60.64, + "probability": 1.0 + }, + { + "word": " over", + "start": 60.64, + "end": 60.86, + "probability": 1.0 + }, + { + "word": " there.", + "start": 60.86, + "end": 61.06, + "probability": 1.0 + } + ] + }, + { + "id": 18, + "text": "Hey, Harry, how are you doing?", + "start": 61.36, + "end": 62.3, + "words": [ + { + "word": " Hey,", + "start": 61.36, + "end": 61.72, + "probability": 0.99951171875 + }, + { + "word": " Harry,", + "start": 61.74, + "end": 61.86, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 61.96, + "end": 62.02, + "probability": 1.0 + }, + { + "word": " are", + "start": 62.02, + "end": 62.12, + "probability": 0.84375 + }, + { + "word": " you", + "start": 62.12, + "end": 62.12, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 62.12, + "end": 62.3, + "probability": 1.0 + } + ] + }, + { + "id": 19, + "text": "I am well. How about yourself?", + "start": 62.56, + "end": 63.72, + "words": [ + { + "word": " I", + "start": 62.56, + "end": 62.92, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 62.92, + "end": 63.04, + "probability": 1.0 + }, + { + "word": " well.", + "start": 63.04, + "end": 63.22, + "probability": 1.0 + }, + { + "word": " How", + "start": 63.32, + "end": 63.44, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 63.44, + "end": 63.54, + "probability": 0.9990234375 + }, + { + "word": " yourself?", + "start": 63.54, + "end": 63.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 20, + "text": "I like the hat, man.", + "start": 63.76, + "end": 64.42, + "words": [ + { + "word": " I", + "start": 63.76, + "end": 63.88, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 63.88, + "end": 63.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 63.98, + "end": 64.06, + "probability": 0.99755859375 + }, + { + "word": " hat,", + "start": 64.06, + "end": 64.22, + "probability": 1.0 + }, + { + "word": " man.", + "start": 64.26, + "end": 64.42, + "probability": 1.0 + } + ] + }, + { + "id": 21, + "text": "Thank you. It's flight cap day.", + "start": 64.54, + "end": 65.84, + "words": [ + { + "word": " Thank", + "start": 64.54, + "end": 64.74, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 64.74, + "end": 64.86, + "probability": 1.0 + }, + { + "word": " It's", + "start": 64.9, + "end": 65.16, + "probability": 0.9990234375 + }, + { + "word": " flight", + "start": 65.16, + "end": 65.38, + "probability": 0.64697265625 + }, + { + "word": " cap", + "start": 65.38, + "end": 65.62, + "probability": 0.9697265625 + }, + { + "word": " day.", + "start": 65.62, + "end": 65.84, + "probability": 1.0 + } + ] + }, + { + "id": 22, + "text": "I can dig it.", + "start": 65.96, + "end": 66.56, + "words": [ + { + "word": " I", + "start": 65.96, + "end": 66.12, + "probability": 1.0 + }, + { + "word": " can", + "start": 66.12, + "end": 66.24, + "probability": 1.0 + }, + { + "word": " dig", + "start": 66.24, + "end": 66.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 66.46, + "end": 66.56, + "probability": 1.0 + } + ] + }, + { + "id": 23, + "text": "All right. And, of course, Tara's in here.", + "start": 67.14, + "end": 69.46, + "words": [ + { + "word": " All", + "start": 67.14, + "end": 67.5, + "probability": 0.8525390625 + }, + { + "word": " right.", + "start": 67.5, + "end": 67.78, + "probability": 1.0 + }, + { + "word": " And,", + "start": 67.86, + "end": 68.22, + "probability": 0.98974609375 + }, + { + "word": " of", + "start": 68.34, + "end": 68.52, + "probability": 1.0 + }, + { + "word": " course,", + "start": 68.52, + "end": 68.82, + "probability": 1.0 + }, + { + "word": " Tara's", + "start": 68.86, + "end": 69.18, + "probability": 0.994140625 + }, + { + "word": " in", + "start": 69.18, + "end": 69.28, + "probability": 1.0 + }, + { + "word": " here.", + "start": 69.28, + "end": 69.46, + "probability": 1.0 + } + ] + }, + { + "id": 24, + "text": "Hello, hello.", + "start": 69.66, + "end": 70.24, + "words": [ + { + "word": " Hello,", + "start": 69.66, + "end": 70.02, + "probability": 0.99755859375 + }, + { + "word": " hello.", + "start": 70.1, + "end": 70.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 25, + "text": "She's backing things up.", + "start": 70.26, + "end": 71.36, + "words": [ + { + "word": " She's", + "start": 70.26, + "end": 70.58, + "probability": 0.99951171875 + }, + { + "word": " backing", + "start": 70.58, + "end": 70.88, + "probability": 0.9990234375 + }, + { + "word": " things", + "start": 70.88, + "end": 71.12, + "probability": 1.0 + }, + { + "word": " up.", + "start": 71.12, + "end": 71.36, + "probability": 1.0 + } + ] + }, + { + "id": 26, + "text": "And not so much in the gaming news today, but mainly she's just going to listen to me complain.", + "start": 71.5, + "end": 77.24, + "words": [ + { + "word": " And", + "start": 71.5, + "end": 71.82, + "probability": 0.8818359375 + }, + { + "word": " not", + "start": 71.82, + "end": 73.24, + "probability": 0.9814453125 + }, + { + "word": " so", + "start": 73.24, + "end": 73.64, + "probability": 1.0 + }, + { + "word": " much", + "start": 73.64, + "end": 73.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 73.86, + "end": 73.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 73.96, + "end": 74.0, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 74.0, + "end": 74.2, + "probability": 0.99951171875 + }, + { + "word": " news", + "start": 74.2, + "end": 74.44, + "probability": 1.0 + }, + { + "word": " today,", + "start": 74.44, + "end": 74.72, + "probability": 1.0 + }, + { + "word": " but", + "start": 74.88, + "end": 75.36, + "probability": 0.99951171875 + }, + { + "word": " mainly", + "start": 75.36, + "end": 75.64, + "probability": 0.99951171875 + }, + { + "word": " she's", + "start": 75.64, + "end": 75.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 75.96, + "end": 76.06, + "probability": 0.99658203125 + }, + { + "word": " going", + "start": 76.06, + "end": 76.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 76.22, + "end": 76.3, + "probability": 1.0 + }, + { + "word": " listen", + "start": 76.3, + "end": 76.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 76.54, + "end": 76.68, + "probability": 1.0 + }, + { + "word": " me", + "start": 76.68, + "end": 76.84, + "probability": 1.0 + }, + { + "word": " complain.", + "start": 76.84, + "end": 77.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 27, + "text": "I'm stuck on Angry Birds.", + "start": 78.02, + "end": 79.74, + "words": [ + { + "word": " I'm", + "start": 78.02, + "end": 78.38, + "probability": 0.978515625 + }, + { + "word": " stuck", + "start": 78.38, + "end": 78.48, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 78.48, + "end": 78.74, + "probability": 1.0 + }, + { + "word": " Angry", + "start": 78.74, + "end": 78.96, + "probability": 0.9384765625 + }, + { + "word": " Birds.", + "start": 78.96, + "end": 79.74, + "probability": 1.0 + } + ] + }, + { + "id": 28, + "text": "Oh, yeah.", + "start": 80.3, + "end": 80.98, + "words": [ + { + "word": " Oh,", + "start": 80.3, + "end": 80.66, + "probability": 0.99951171875 + }, + { + "word": " yeah.", + "start": 80.66, + "end": 80.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 29, + "text": "We're not talking about Angry Birds.", + "start": 82.46, + "end": 83.88, + "words": [ + { + "word": " We're", + "start": 82.46, + "end": 82.82, + "probability": 1.0 + }, + { + "word": " not", + "start": 82.82, + "end": 82.88, + "probability": 1.0 + }, + { + "word": " talking", + "start": 82.88, + "end": 83.18, + "probability": 1.0 + }, + { + "word": " about", + "start": 83.18, + "end": 83.36, + "probability": 1.0 + }, + { + "word": " Angry", + "start": 83.36, + "end": 83.62, + "probability": 0.9970703125 + }, + { + "word": " Birds.", + "start": 83.62, + "end": 83.88, + "probability": 1.0 + } + ] + }, + { + "id": 30, + "text": "I know, I know.", + "start": 83.88, + "end": 84.5, + "words": [ + { + "word": " I", + "start": 83.88, + "end": 84.06, + "probability": 0.970703125 + }, + { + "word": " know,", + "start": 84.06, + "end": 84.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 84.26, + "end": 84.34, + "probability": 1.0 + }, + { + "word": " know.", + "start": 84.34, + "end": 84.5, + "probability": 1.0 + } + ] + }, + { + "id": 31, + "text": "Or Flappy Bird.", + "start": 84.52, + "end": 85.24, + "words": [ + { + "word": " Or", + "start": 84.52, + "end": 84.64, + "probability": 0.9326171875 + }, + { + "word": " Flappy", + "start": 84.64, + "end": 85.04, + "probability": 0.998046875 + }, + { + "word": " Bird.", + "start": 85.04, + "end": 85.24, + "probability": 0.5517578125 + } + ] + }, + { + "id": 32, + "text": "Flappy Birds.", + "start": 85.24, + "end": 85.54, + "words": [ + { + "word": " Flappy", + "start": 85.24, + "end": 85.54, + "probability": 0.61376953125 + }, + { + "word": " Birds.", + "start": 85.54, + "end": 85.54, + "probability": 0.1199951171875 + } + ] + }, + { + "id": 33, + "text": "Yeah, right.", + "start": 85.54, + "end": 85.92, + "words": [ + { + "word": " Yeah,", + "start": 85.54, + "end": 85.66, + "probability": 0.284912109375 + }, + { + "word": " right.", + "start": 85.78, + "end": 85.92, + "probability": 0.9345703125 + } + ] + }, + { + "id": 34, + "text": "Or Floppy Bird.", + "start": 85.98, + "end": 86.5, + "words": [ + { + "word": " Or", + "start": 85.98, + "end": 86.38, + "probability": 0.6552734375 + }, + { + "word": " Floppy", + "start": 86.38, + "end": 86.4, + "probability": 0.9521484375 + }, + { + "word": " Bird.", + "start": 86.4, + "end": 86.5, + "probability": 0.01922607421875 + } + ] + }, + { + "id": 35, + "text": "Or Floppy Bird.", + "start": 86.78, + "end": 87.64, + "words": [ + { + "word": " Or", + "start": 86.78, + "end": 87.18, + "probability": 0.35791015625 + }, + { + "word": " Floppy", + "start": 87.18, + "end": 87.48, + "probability": 0.99267578125 + }, + { + "word": " Bird.", + "start": 87.48, + "end": 87.64, + "probability": 0.96630859375 + } + ] + }, + { + "id": 36, + "text": "No type of birds today.", + "start": 87.74, + "end": 88.82, + "words": [ + { + "word": " No", + "start": 87.74, + "end": 88.0, + "probability": 0.998046875 + }, + { + "word": " type", + "start": 88.0, + "end": 88.2, + "probability": 0.98193359375 + }, + { + "word": " of", + "start": 88.2, + "end": 88.36, + "probability": 1.0 + }, + { + "word": " birds", + "start": 88.36, + "end": 88.6, + "probability": 0.98095703125 + }, + { + "word": " today.", + "start": 88.6, + "end": 88.82, + "probability": 0.99658203125 + } + ] + }, + { + "id": 37, + "text": "No birds. No birds.", + "start": 88.82, + "end": 89.6, + "words": [ + { + "word": " No", + "start": 88.82, + "end": 88.98, + "probability": 0.99853515625 + }, + { + "word": " birds.", + "start": 88.98, + "end": 89.2, + "probability": 0.99609375 + }, + { + "word": " No", + "start": 89.26, + "end": 89.48, + "probability": 0.99462890625 + }, + { + "word": " birds.", + "start": 89.48, + "end": 89.6, + "probability": 0.72314453125 + } + ] + }, + { + "id": 38, + "text": "That is a foul subject, and we're not going to do it.", + "start": 89.9, + "end": 92.8, + "words": [ + { + "word": " That", + "start": 89.9, + "end": 90.22, + "probability": 0.92724609375 + }, + { + "word": " is", + "start": 90.22, + "end": 90.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 90.44, + "end": 90.54, + "probability": 1.0 + }, + { + "word": " foul", + "start": 90.54, + "end": 90.82, + "probability": 0.99951171875 + }, + { + "word": " subject,", + "start": 90.82, + "end": 91.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 91.36, + "end": 91.7, + "probability": 0.99658203125 + }, + { + "word": " we're", + "start": 91.7, + "end": 91.92, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 91.92, + "end": 92.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 92.04, + "end": 92.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 92.26, + "end": 92.46, + "probability": 1.0 + }, + { + "word": " do", + "start": 92.46, + "end": 92.64, + "probability": 1.0 + }, + { + "word": " it.", + "start": 92.64, + "end": 92.8, + "probability": 1.0 + } + ] + }, + { + "id": 39, + "text": "Thank you.", + "start": 92.8, + "end": 93.1, + "words": [ + { + "word": " Thank", + "start": 92.8, + "end": 92.98, + "probability": 0.98583984375 + }, + { + "word": " you.", + "start": 92.98, + "end": 93.1, + "probability": 1.0 + } + ] + }, + { + "id": 40, + "text": "All right.", + "start": 93.22, + "end": 93.72, + "words": [ + { + "word": " All", + "start": 93.22, + "end": 93.54, + "probability": 0.9765625 + }, + { + "word": " right.", + "start": 93.54, + "end": 93.72, + "probability": 1.0 + } + ] + }, + { + "id": 41, + "text": "So if you'd like to be part of the show, we'd love to hear from you.", + "start": 94.14000000000001, + "end": 96.52, + "words": [ + { + "word": " So", + "start": 94.14000000000001, + "end": 94.54, + "probability": 0.97412109375 + }, + { + "word": " if", + "start": 94.54, + "end": 94.78, + "probability": 0.63330078125 + }, + { + "word": " you'd", + "start": 94.78, + "end": 94.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 94.94, + "end": 95.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 95.08, + "end": 95.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 95.18, + "end": 95.26, + "probability": 1.0 + }, + { + "word": " part", + "start": 95.26, + "end": 95.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 95.42, + "end": 95.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 95.54, + "end": 95.58, + "probability": 1.0 + }, + { + "word": " show,", + "start": 95.58, + "end": 95.74, + "probability": 1.0 + }, + { + "word": " we'd", + "start": 95.82, + "end": 95.94, + "probability": 1.0 + }, + { + "word": " love", + "start": 95.94, + "end": 96.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 96.08, + "end": 96.18, + "probability": 1.0 + }, + { + "word": " hear", + "start": 96.18, + "end": 96.28, + "probability": 1.0 + }, + { + "word": " from", + "start": 96.28, + "end": 96.4, + "probability": 1.0 + }, + { + "word": " you.", + "start": 96.4, + "end": 96.52, + "probability": 1.0 + } + ] + }, + { + "id": 42, + "text": "790-2040.", + "start": 96.52, + "end": 97.58, + "words": [ + { + "word": " 790", + "start": 96.52, + "end": 96.92, + "probability": 0.9619140625 + }, + { + "word": "-2040.", + "start": 96.92, + "end": 97.58, + "probability": 0.86328125 + } + ] + }, + { + "id": 43, + "text": "In the meantime, we're going to talk about stupidity.", + "start": 97.6, + "end": 99.94, + "words": [ + { + "word": " In", + "start": 97.6, + "end": 97.88, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 97.88, + "end": 98.0, + "probability": 1.0 + }, + { + "word": " meantime,", + "start": 98.0, + "end": 98.2, + "probability": 1.0 + }, + { + "word": " we're", + "start": 98.36, + "end": 98.56, + "probability": 1.0 + }, + { + "word": " going", + "start": 98.56, + "end": 98.62, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 98.62, + "end": 98.74, + "probability": 1.0 + }, + { + "word": " talk", + "start": 98.74, + "end": 98.9, + "probability": 1.0 + }, + { + "word": " about", + "start": 98.9, + "end": 99.22, + "probability": 1.0 + }, + { + "word": " stupidity.", + "start": 99.22, + "end": 99.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 44, + "text": "And that's really the focus of the rant today.", + "start": 101.0, + "end": 104.28, + "words": [ + { + "word": " And", + "start": 101.0, + "end": 101.4, + "probability": 0.99365234375 + }, + { + "word": " that's", + "start": 101.4, + "end": 101.8, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 101.8, + "end": 101.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 101.92, + "end": 102.18, + "probability": 1.0 + }, + { + "word": " focus", + "start": 102.18, + "end": 103.32, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 103.32, + "end": 103.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 103.7, + "end": 103.8, + "probability": 1.0 + }, + { + "word": " rant", + "start": 103.8, + "end": 104.04, + "probability": 1.0 + }, + { + "word": " today.", + "start": 104.04, + "end": 104.28, + "probability": 1.0 + } + ] + }, + { + "id": 45, + "text": "Now, we've actually touched on this for three weeks in a row now,", + "start": 104.4, + "end": 107.84, + "words": [ + { + "word": " Now,", + "start": 104.4, + "end": 104.56, + "probability": 0.994140625 + }, + { + "word": " we've", + "start": 104.56, + "end": 104.72, + "probability": 1.0 + }, + { + "word": " actually", + "start": 104.72, + "end": 105.52, + "probability": 0.9990234375 + }, + { + "word": " touched", + "start": 105.52, + "end": 106.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 106.04, + "end": 106.26, + "probability": 1.0 + }, + { + "word": " this", + "start": 106.26, + "end": 106.48, + "probability": 1.0 + }, + { + "word": " for", + "start": 106.48, + "end": 106.9, + "probability": 0.99951171875 + }, + { + "word": " three", + "start": 106.9, + "end": 107.1, + "probability": 0.99951171875 + }, + { + "word": " weeks", + "start": 107.1, + "end": 107.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 107.28, + "end": 107.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 107.44, + "end": 107.52, + "probability": 1.0 + }, + { + "word": " row", + "start": 107.52, + "end": 107.62, + "probability": 1.0 + }, + { + "word": " now,", + "start": 107.62, + "end": 107.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 46, + "text": "which is there are stupid people making laws when it comes to the Internet.", + "start": 107.94, + "end": 112.12, + "words": [ + { + "word": " which", + "start": 107.94, + "end": 108.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 108.32, + "end": 108.62, + "probability": 1.0 + }, + { + "word": " there", + "start": 108.62, + "end": 109.32, + "probability": 0.962890625 + }, + { + "word": " are", + "start": 109.32, + "end": 109.54, + "probability": 1.0 + }, + { + "word": " stupid", + "start": 109.54, + "end": 109.9, + "probability": 1.0 + }, + { + "word": " people", + "start": 109.9, + "end": 110.36, + "probability": 1.0 + }, + { + "word": " making", + "start": 110.36, + "end": 110.68, + "probability": 0.99951171875 + }, + { + "word": " laws", + "start": 110.68, + "end": 111.04, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 111.04, + "end": 111.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 111.36, + "end": 111.46, + "probability": 1.0 + }, + { + "word": " comes", + "start": 111.46, + "end": 111.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 111.62, + "end": 111.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 111.78, + "end": 111.88, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 111.88, + "end": 112.12, + "probability": 0.80029296875 + } + ] + }, + { + "id": 47, + "text": "And, you know, it's...", + "start": 112.74000000000001, + "end": 114.06, + "words": [ + { + "word": " And,", + "start": 112.74000000000001, + "end": 113.14000000000001, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 113.14000000000001, + "end": 113.54, + "probability": 1.0 + }, + { + "word": " know,", + "start": 113.54, + "end": 113.74, + "probability": 1.0 + }, + { + "word": " it's...", + "start": 113.74, + "end": 114.06, + "probability": 0.8916015625 + } + ] + }, + { + "id": 48, + "text": "You know, next year I need to go to South by Southwest.", + "start": 114.86, + "end": 116.84, + "words": [ + { + "word": " You", + "start": 114.86, + "end": 115.3, + "probability": 0.35107421875 + }, + { + "word": " know,", + "start": 115.3, + "end": 115.46, + "probability": 1.0 + }, + { + "word": " next", + "start": 115.48, + "end": 115.74, + "probability": 1.0 + }, + { + "word": " year", + "start": 115.74, + "end": 115.9, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 115.9, + "end": 116.0, + "probability": 0.8798828125 + }, + { + "word": " need", + "start": 116.0, + "end": 116.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 116.08, + "end": 116.16, + "probability": 1.0 + }, + { + "word": " go", + "start": 116.16, + "end": 116.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 116.24, + "end": 116.34, + "probability": 1.0 + }, + { + "word": " South", + "start": 116.34, + "end": 116.5, + "probability": 0.99462890625 + }, + { + "word": " by", + "start": 116.5, + "end": 116.6, + "probability": 0.99658203125 + }, + { + "word": " Southwest.", + "start": 116.6, + "end": 116.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 49, + "text": "I really need to go.", + "start": 117.14, + "end": 117.88, + "words": [ + { + "word": " I", + "start": 117.14, + "end": 117.32, + "probability": 1.0 + }, + { + "word": " really", + "start": 117.32, + "end": 117.48, + "probability": 1.0 + }, + { + "word": " need", + "start": 117.48, + "end": 117.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 117.66, + "end": 117.78, + "probability": 1.0 + }, + { + "word": " go.", + "start": 117.78, + "end": 117.88, + "probability": 1.0 + } + ] + }, + { + "id": 50, + "text": "I want to go, too.", + "start": 118.06, + "end": 119.02, + "words": [ + { + "word": " I", + "start": 118.06, + "end": 118.5, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 118.5, + "end": 118.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 118.64, + "end": 118.72, + "probability": 1.0 + }, + { + "word": " go,", + "start": 118.72, + "end": 118.84, + "probability": 1.0 + }, + { + "word": " too.", + "start": 118.88, + "end": 119.02, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "Really badly.", + "start": 119.26, + "end": 120.0, + "words": [ + { + "word": " Really", + "start": 119.26, + "end": 119.7, + "probability": 0.99560546875 + }, + { + "word": " badly.", + "start": 119.7, + "end": 120.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 52, + "text": "Oh, man, I've got to go to South by Southwest.", + "start": 120.14, + "end": 121.6, + "words": [ + { + "word": " Oh,", + "start": 120.14, + "end": 120.26, + "probability": 0.5302734375 + }, + { + "word": " man,", + "start": 120.26, + "end": 120.26, + "probability": 1.0 + }, + { + "word": " I've", + "start": 120.42, + "end": 120.62, + "probability": 0.80859375 + }, + { + "word": " got", + "start": 120.62, + "end": 120.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 120.68, + "end": 120.78, + "probability": 1.0 + }, + { + "word": " go", + "start": 120.78, + "end": 120.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 120.86, + "end": 120.96, + "probability": 1.0 + }, + { + "word": " South", + "start": 120.96, + "end": 121.18, + "probability": 1.0 + }, + { + "word": " by", + "start": 121.18, + "end": 121.3, + "probability": 1.0 + }, + { + "word": " Southwest.", + "start": 121.3, + "end": 121.6, + "probability": 1.0 + } + ] + }, + { + "id": 53, + "text": "There is a cybersecurity expert down at South by Southwest.", + "start": 122.86, + "end": 127.06, + "words": [ + { + "word": " There", + "start": 122.86, + "end": 123.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 123.3, + "end": 123.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 123.72, + "end": 124.12, + "probability": 1.0 + }, + { + "word": " cybersecurity", + "start": 124.12, + "end": 125.04, + "probability": 0.8837890625 + }, + { + "word": " expert", + "start": 125.04, + "end": 125.72, + "probability": 1.0 + }, + { + "word": " down", + "start": 125.72, + "end": 126.12, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 126.12, + "end": 126.24, + "probability": 1.0 + }, + { + "word": " South", + "start": 126.24, + "end": 126.48, + "probability": 1.0 + }, + { + "word": " by", + "start": 126.48, + "end": 126.68, + "probability": 1.0 + }, + { + "word": " Southwest.", + "start": 126.68, + "end": 127.06, + "probability": 1.0 + } + ] + }, + { + "id": 54, + "text": "He was talking with a person who is basically going and negotiating cybersecurity with China.", + "start": 127.12, + "end": 133.72, + "words": [ + { + "word": " He", + "start": 127.12, + "end": 127.32, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 127.32, + "end": 127.42, + "probability": 1.0 + }, + { + "word": " talking", + "start": 127.42, + "end": 127.62, + "probability": 1.0 + }, + { + "word": " with", + "start": 127.62, + "end": 127.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 127.92, + "end": 128.18, + "probability": 1.0 + }, + { + "word": " person", + "start": 128.18, + "end": 129.02, + "probability": 1.0 + }, + { + "word": " who", + "start": 129.02, + "end": 129.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 129.2, + "end": 129.42, + "probability": 0.9990234375 + }, + { + "word": " basically", + "start": 129.42, + "end": 130.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 130.92, + "end": 131.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 131.3, + "end": 131.62, + "probability": 0.99853515625 + }, + { + "word": " negotiating", + "start": 131.62, + "end": 132.24, + "probability": 1.0 + }, + { + "word": " cybersecurity", + "start": 132.24, + "end": 132.9, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 132.9, + "end": 133.46, + "probability": 1.0 + }, + { + "word": " China.", + "start": 133.46, + "end": 133.72, + "probability": 1.0 + } + ] + }, + { + "id": 55, + "text": "Now, as a person who gets e-mails about every 20 minutes or so saying,", + "start": 134.2, + "end": 140.1, + "words": [ + { + "word": " Now,", + "start": 134.2, + "end": 134.64, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 134.64, + "end": 134.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 134.98, + "end": 135.14, + "probability": 1.0 + }, + { + "word": " person", + "start": 135.14, + "end": 135.48, + "probability": 1.0 + }, + { + "word": " who", + "start": 135.48, + "end": 135.72, + "probability": 1.0 + }, + { + "word": " gets", + "start": 135.72, + "end": 136.94, + "probability": 0.998046875 + }, + { + "word": " e", + "start": 136.94, + "end": 137.18, + "probability": 0.495849609375 + }, + { + "word": "-mails", + "start": 137.18, + "end": 137.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 137.6, + "end": 138.18, + "probability": 1.0 + }, + { + "word": " every", + "start": 138.18, + "end": 138.58, + "probability": 1.0 + }, + { + "word": " 20", + "start": 138.58, + "end": 139.02, + "probability": 1.0 + }, + { + "word": " minutes", + "start": 139.02, + "end": 139.32, + "probability": 1.0 + }, + { + "word": " or", + "start": 139.32, + "end": 139.48, + "probability": 1.0 + }, + { + "word": " so", + "start": 139.48, + "end": 139.72, + "probability": 1.0 + }, + { + "word": " saying,", + "start": 139.72, + "end": 140.1, + "probability": 0.98876953125 + } + ] + }, + { + "id": 56, + "text": "hey, guess what?", + "start": 140.3, + "end": 141.1, + "words": [ + { + "word": " hey,", + "start": 140.3, + "end": 140.7, + "probability": 0.93017578125 + }, + { + "word": " guess", + "start": 140.72, + "end": 140.9, + "probability": 1.0 + }, + { + "word": " what?", + "start": 140.9, + "end": 141.1, + "probability": 1.0 + } + ] + }, + { + "id": 57, + "text": "There's an intrusion attempt on your network from China.", + "start": 141.14, + "end": 143.84, + "words": [ + { + "word": " There's", + "start": 141.14, + "end": 141.36, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 141.36, + "end": 141.44, + "probability": 1.0 + }, + { + "word": " intrusion", + "start": 141.44, + "end": 141.86, + "probability": 1.0 + }, + { + "word": " attempt", + "start": 141.86, + "end": 142.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 142.1, + "end": 142.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 142.44, + "end": 142.66, + "probability": 1.0 + }, + { + "word": " network", + "start": 142.66, + "end": 143.02, + "probability": 1.0 + }, + { + "word": " from", + "start": 143.02, + "end": 143.38, + "probability": 1.0 + }, + { + "word": " China.", + "start": 143.38, + "end": 143.84, + "probability": 1.0 + } + ] + }, + { + "id": 58, + "text": "Or Russia or wherever.", + "start": 144.06, + "end": 145.6, + "words": [ + { + "word": " Or", + "start": 144.06, + "end": 144.5, + "probability": 0.1849365234375 + }, + { + "word": " Russia", + "start": 144.5, + "end": 144.88, + "probability": 0.99609375 + }, + { + "word": " or", + "start": 144.88, + "end": 145.2, + "probability": 0.5537109375 + }, + { + "word": " wherever.", + "start": 145.2, + "end": 145.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 59, + "text": "Mostly China.", + "start": 145.8, + "end": 146.46, + "words": [ + { + "word": " Mostly", + "start": 145.8, + "end": 146.2, + "probability": 0.9990234375 + }, + { + "word": " China.", + "start": 146.2, + "end": 146.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 60, + "text": "You know, I kind of feel for...", + "start": 147.84, + "end": 149.06, + "words": [ + { + "word": " You", + "start": 147.6, + "end": 147.9, + "probability": 0.673828125 + }, + { + "word": " know,", + "start": 147.9, + "end": 148.02, + "probability": 1.0 + }, + { + "word": " I", + "start": 148.04, + "end": 148.12, + "probability": 1.0 + }, + { + "word": " kind", + "start": 148.12, + "end": 148.22, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 148.22, + "end": 148.64, + "probability": 1.0 + }, + { + "word": " feel", + "start": 148.64, + "end": 148.8, + "probability": 1.0 + }, + { + "word": " for...", + "start": 148.8, + "end": 149.06, + "probability": 0.5439453125 + } + ] + }, + { + "id": 61, + "text": "Yeah.", + "start": 149.06, + "end": 149.58, + "words": [ + { + "word": " Yeah.", + "start": 149.06, + "end": 149.58, + "probability": 0.5751953125 + } + ] + }, + { + "id": 62, + "text": "I am invested in this particular topic.", + "start": 149.82, + "end": 152.92, + "words": [ + { + "word": " I", + "start": 149.82, + "end": 150.42, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 150.42, + "end": 151.0, + "probability": 1.0 + }, + { + "word": " invested", + "start": 151.0, + "end": 151.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 151.38, + "end": 151.8, + "probability": 1.0 + }, + { + "word": " this", + "start": 151.8, + "end": 151.98, + "probability": 1.0 + }, + { + "word": " particular", + "start": 151.98, + "end": 152.28, + "probability": 1.0 + }, + { + "word": " topic.", + "start": 152.28, + "end": 152.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 63, + "text": "Right.", + "start": 153.24, + "end": 153.42, + "words": [ + { + "word": " Right.", + "start": 153.24, + "end": 153.42, + "probability": 0.98095703125 + } + ] + }, + { + "id": 64, + "text": "And what happens here is that this guy, who happens to be a government official,", + "start": 153.48, + "end": 159.48, + "words": [ + { + "word": " And", + "start": 153.48, + "end": 154.04, + "probability": 0.99755859375 + }, + { + "word": " what", + "start": 154.04, + "end": 155.2, + "probability": 0.96923828125 + }, + { + "word": " happens", + "start": 155.2, + "end": 155.7, + "probability": 1.0 + }, + { + "word": " here", + "start": 155.7, + "end": 156.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 156.0, + "end": 156.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 156.26, + "end": 156.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 156.48, + "end": 156.78, + "probability": 1.0 + }, + { + "word": " guy,", + "start": 156.78, + "end": 157.3, + "probability": 1.0 + }, + { + "word": " who", + "start": 157.52, + "end": 157.86, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 157.86, + "end": 158.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 158.3, + "end": 158.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 158.6, + "end": 158.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 158.72, + "end": 158.88, + "probability": 1.0 + }, + { + "word": " government", + "start": 158.88, + "end": 159.2, + "probability": 1.0 + }, + { + "word": " official,", + "start": 159.2, + "end": 159.48, + "probability": 1.0 + } + ] + }, + { + "id": 65, + "text": "is asking the security advisor at South by Southwest,", + "start": 160.24, + "end": 163.64, + "words": [ + { + "word": " is", + "start": 160.24, + "end": 160.84, + "probability": 0.99951171875 + }, + { + "word": " asking", + "start": 160.84, + "end": 161.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 161.32, + "end": 161.54, + "probability": 1.0 + }, + { + "word": " security", + "start": 161.54, + "end": 161.82, + "probability": 0.99462890625 + }, + { + "word": " advisor", + "start": 161.82, + "end": 162.28, + "probability": 0.98779296875 + }, + { + "word": " at", + "start": 162.28, + "end": 162.78, + "probability": 1.0 + }, + { + "word": " South", + "start": 162.78, + "end": 163.06, + "probability": 0.9970703125 + }, + { + "word": " by", + "start": 163.06, + "end": 163.22, + "probability": 0.99658203125 + }, + { + "word": " Southwest,", + "start": 163.22, + "end": 163.64, + "probability": 1.0 + } + ] + }, + { + "id": 66, + "text": "hey, you know what ISP means?", + "start": 164.06, + "end": 166.18, + "words": [ + { + "word": " hey,", + "start": 164.06, + "end": 164.26, + "probability": 0.55810546875 + }, + { + "word": " you", + "start": 164.46, + "end": 165.28, + "probability": 0.99462890625 + }, + { + "word": " know", + "start": 165.28, + "end": 165.46, + "probability": 1.0 + }, + { + "word": " what", + "start": 165.46, + "end": 165.54, + "probability": 1.0 + }, + { + "word": " ISP", + "start": 165.54, + "end": 165.88, + "probability": 1.0 + }, + { + "word": " means?", + "start": 165.88, + "end": 166.18, + "probability": 1.0 + } + ] + }, + { + "id": 67, + "text": "Oh.", + "start": 166.88, + "end": 167.42, + "words": [ + { + "word": " Oh.", + "start": 166.88, + "end": 167.42, + "probability": 0.986328125 + } + ] + }, + { + "id": 68, + "text": "All right.", + "start": 167.82, + "end": 168.18, + "words": [ + { + "word": " All", + "start": 167.82, + "end": 168.06, + "probability": 0.96484375 + }, + { + "word": " right.", + "start": 168.06, + "end": 168.18, + "probability": 1.0 + } + ] + }, + { + "id": 69, + "text": "All right.", + "start": 169.88000000000002, + "end": 171.08, + "words": [ + { + "word": " All", + "start": 169.88000000000002, + "end": 170.48000000000002, + "probability": 0.8212890625 + }, + { + "word": " right.", + "start": 170.48000000000002, + "end": 171.08, + "probability": 1.0 + } + ] + }, + { + "id": 70, + "text": "So this guy is going to China.", + "start": 171.1, + "end": 173.46, + "words": [ + { + "word": " So", + "start": 171.1, + "end": 171.22, + "probability": 0.98388671875 + }, + { + "word": " this", + "start": 171.22, + "end": 171.76, + "probability": 0.71826171875 + }, + { + "word": " guy", + "start": 171.76, + "end": 172.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 172.02, + "end": 172.28, + "probability": 1.0 + }, + { + "word": " going", + "start": 172.28, + "end": 172.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 172.54, + "end": 172.98, + "probability": 1.0 + }, + { + "word": " China.", + "start": 172.98, + "end": 173.46, + "probability": 1.0 + } + ] + }, + { + "id": 71, + "text": "To negotiate over cybersecurity issues and has no idea what ISP means.", + "start": 174.06, + "end": 179.0, + "words": [ + { + "word": " To", + "start": 174.06, + "end": 174.1, + "probability": 0.433837890625 + }, + { + "word": " negotiate", + "start": 174.1, + "end": 174.54, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 174.54, + "end": 175.06, + "probability": 0.99951171875 + }, + { + "word": " cybersecurity", + "start": 175.06, + "end": 175.68, + "probability": 0.7626953125 + }, + { + "word": " issues", + "start": 175.68, + "end": 176.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 176.46, + "end": 177.16, + "probability": 0.9423828125 + }, + { + "word": " has", + "start": 177.16, + "end": 177.34, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 177.34, + "end": 177.74, + "probability": 1.0 + }, + { + "word": " idea", + "start": 177.74, + "end": 178.18, + "probability": 1.0 + }, + { + "word": " what", + "start": 178.18, + "end": 178.4, + "probability": 1.0 + }, + { + "word": " ISP", + "start": 178.4, + "end": 178.78, + "probability": 0.9990234375 + }, + { + "word": " means.", + "start": 178.78, + "end": 179.0, + "probability": 1.0 + } + ] + }, + { + "id": 72, + "text": "It's like going to Russia to negotiate with them and having no idea what ICBM means.", + "start": 179.08, + "end": 184.5, + "words": [ + { + "word": " It's", + "start": 179.08, + "end": 179.26, + "probability": 0.900390625 + }, + { + "word": " like", + "start": 179.26, + "end": 179.3, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 179.3, + "end": 179.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 179.56, + "end": 179.74, + "probability": 1.0 + }, + { + "word": " Russia", + "start": 179.74, + "end": 180.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 180.1, + "end": 181.0, + "probability": 0.99951171875 + }, + { + "word": " negotiate", + "start": 181.0, + "end": 181.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 181.34, + "end": 181.6, + "probability": 1.0 + }, + { + "word": " them", + "start": 181.6, + "end": 181.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 181.88, + "end": 182.46, + "probability": 0.9990234375 + }, + { + "word": " having", + "start": 182.46, + "end": 182.74, + "probability": 1.0 + }, + { + "word": " no", + "start": 182.74, + "end": 183.06, + "probability": 1.0 + }, + { + "word": " idea", + "start": 183.06, + "end": 183.46, + "probability": 1.0 + }, + { + "word": " what", + "start": 183.46, + "end": 183.7, + "probability": 1.0 + }, + { + "word": " ICBM", + "start": 183.7, + "end": 184.16, + "probability": 0.9990234375 + }, + { + "word": " means.", + "start": 184.16, + "end": 184.5, + "probability": 1.0 + } + ] + }, + { + "id": 73, + "text": "Or vodka.", + "start": 184.76, + "end": 185.32, + "words": [ + { + "word": " Or", + "start": 184.76, + "end": 184.98, + "probability": 0.9990234375 + }, + { + "word": " vodka.", + "start": 184.98, + "end": 185.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 74, + "text": "Right.", + "start": 185.74, + "end": 186.34, + "words": [ + { + "word": " Right.", + "start": 185.74, + "end": 186.34, + "probability": 0.58154296875 + } + ] + }, + { + "id": 75, + "text": "It's just like, really, you're that dumb.", + "start": 186.34, + "end": 189.48, + "words": [ + { + "word": " It's", + "start": 186.34, + "end": 186.64, + "probability": 0.9873046875 + }, + { + "word": " just", + "start": 186.64, + "end": 186.7, + "probability": 1.0 + }, + { + "word": " like,", + "start": 186.7, + "end": 186.92, + "probability": 0.9970703125 + }, + { + "word": " really,", + "start": 186.98, + "end": 188.22, + "probability": 0.99072265625 + }, + { + "word": " you're", + "start": 188.88, + "end": 189.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 189.04, + "end": 189.18, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 189.18, + "end": 189.48, + "probability": 1.0 + } + ] + }, + { + "id": 76, + "text": "And that has been my problem for the last several years as the CISPA thing comes out,", + "start": 189.66, + "end": 197.24, + "words": [ + { + "word": " And", + "start": 189.66, + "end": 190.02, + "probability": 0.9013671875 + }, + { + "word": " that", + "start": 190.02, + "end": 190.48, + "probability": 0.9951171875 + }, + { + "word": " has", + "start": 190.48, + "end": 191.08, + "probability": 0.96923828125 + }, + { + "word": " been", + "start": 191.08, + "end": 191.94, + "probability": 1.0 + }, + { + "word": " my", + "start": 191.94, + "end": 192.24, + "probability": 1.0 + }, + { + "word": " problem", + "start": 192.24, + "end": 192.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 192.72, + "end": 193.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 193.68, + "end": 193.94, + "probability": 1.0 + }, + { + "word": " last", + "start": 193.94, + "end": 194.18, + "probability": 1.0 + }, + { + "word": " several", + "start": 194.18, + "end": 194.5, + "probability": 1.0 + }, + { + "word": " years", + "start": 194.5, + "end": 194.84, + "probability": 1.0 + }, + { + "word": " as", + "start": 194.84, + "end": 195.24, + "probability": 0.77294921875 + }, + { + "word": " the", + "start": 195.24, + "end": 195.66, + "probability": 0.9990234375 + }, + { + "word": " CISPA", + "start": 195.66, + "end": 196.42, + "probability": 0.974609375 + }, + { + "word": " thing", + "start": 196.42, + "end": 196.68, + "probability": 1.0 + }, + { + "word": " comes", + "start": 196.68, + "end": 197.0, + "probability": 1.0 + }, + { + "word": " out,", + "start": 197.0, + "end": 197.24, + "probability": 1.0 + } + ] + }, + { + "id": 77, + "text": "all these new rules and laws and people trying to pass regulations on the Internet", + "start": 197.26, + "end": 202.58, + "words": [ + { + "word": " all", + "start": 197.26, + "end": 197.38, + "probability": 0.99267578125 + }, + { + "word": " these", + "start": 197.38, + "end": 197.88, + "probability": 0.99951171875 + }, + { + "word": " new", + "start": 197.88, + "end": 198.18, + "probability": 1.0 + }, + { + "word": " rules", + "start": 198.18, + "end": 198.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 198.68, + "end": 198.98, + "probability": 1.0 + }, + { + "word": " laws", + "start": 198.98, + "end": 199.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 199.26, + "end": 199.64, + "probability": 0.9970703125 + }, + { + "word": " people", + "start": 199.64, + "end": 199.98, + "probability": 1.0 + }, + { + "word": " trying", + "start": 199.98, + "end": 200.3, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 200.3, + "end": 200.46, + "probability": 1.0 + }, + { + "word": " pass", + "start": 200.46, + "end": 200.68, + "probability": 1.0 + }, + { + "word": " regulations", + "start": 200.68, + "end": 201.44, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 201.44, + "end": 202.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 202.1, + "end": 202.2, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 202.2, + "end": 202.58, + "probability": 0.8349609375 + } + ] + }, + { + "id": 78, + "text": "and not a single...", + "start": 202.58, + "end": 204.04, + "words": [ + { + "word": " and", + "start": 202.58, + "end": 202.9, + "probability": 0.439208984375 + }, + { + "word": " not", + "start": 202.9, + "end": 203.2, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 203.2, + "end": 203.54, + "probability": 0.95263671875 + }, + { + "word": " single...", + "start": 203.54, + "end": 204.04, + "probability": 0.62548828125 + } + ] + }, + { + "id": 79, + "text": "Right.", + "start": 204.06, + "end": 204.12, + "words": [ + { + "word": " Right.", + "start": 204.06, + "end": 204.12, + "probability": 0.15380859375 + } + ] + }, + { + "id": 80, + "text": "Not a single one of them has a clue.", + "start": 204.12, + "end": 205.8, + "words": [ + { + "word": " Not", + "start": 204.12, + "end": 204.12, + "probability": 0.0008268356323242188 + }, + { + "word": " a", + "start": 204.12, + "end": 204.12, + "probability": 0.09979248046875 + }, + { + "word": " single", + "start": 204.12, + "end": 204.12, + "probability": 0.9814453125 + }, + { + "word": " one", + "start": 204.12, + "end": 204.42, + "probability": 0.98095703125 + }, + { + "word": " of", + "start": 204.42, + "end": 204.62, + "probability": 0.99609375 + }, + { + "word": " them", + "start": 204.62, + "end": 204.8, + "probability": 0.9990234375 + }, + { + "word": " has", + "start": 204.8, + "end": 205.3, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 205.3, + "end": 205.5, + "probability": 0.99951171875 + }, + { + "word": " clue.", + "start": 205.5, + "end": 205.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 81, + "text": "I mean, like, they just don't get it.", + "start": 206.08, + "end": 208.52, + "words": [ + { + "word": " I", + "start": 206.08, + "end": 206.54, + "probability": 0.76318359375 + }, + { + "word": " mean,", + "start": 206.54, + "end": 206.68, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 206.7, + "end": 206.92, + "probability": 0.86328125 + }, + { + "word": " they", + "start": 207.0, + "end": 207.4, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 207.4, + "end": 207.64, + "probability": 1.0 + }, + { + "word": " don't", + "start": 207.64, + "end": 207.96, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 207.96, + "end": 208.24, + "probability": 1.0 + }, + { + "word": " it.", + "start": 208.24, + "end": 208.52, + "probability": 1.0 + } + ] + }, + { + "id": 82, + "text": "Right.", + "start": 208.6, + "end": 208.96, + "words": [ + { + "word": " Right.", + "start": 208.6, + "end": 208.96, + "probability": 0.6953125 + } + ] + }, + { + "id": 83, + "text": "It would be me, right, a person who all I do is computers, right,", + "start": 209.28, + "end": 214.46, + "words": [ + { + "word": " It", + "start": 209.28, + "end": 209.74, + "probability": 0.99755859375 + }, + { + "word": " would", + "start": 209.74, + "end": 210.1, + "probability": 0.98583984375 + }, + { + "word": " be", + "start": 210.1, + "end": 210.3, + "probability": 1.0 + }, + { + "word": " me,", + "start": 210.3, + "end": 210.72, + "probability": 1.0 + }, + { + "word": " right,", + "start": 210.82, + "end": 211.26, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 211.34, + "end": 211.46, + "probability": 1.0 + }, + { + "word": " person", + "start": 211.46, + "end": 211.84, + "probability": 1.0 + }, + { + "word": " who", + "start": 211.84, + "end": 212.02, + "probability": 1.0 + }, + { + "word": " all", + "start": 212.02, + "end": 212.24, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 212.24, + "end": 212.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 212.56, + "end": 212.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 212.82, + "end": 212.98, + "probability": 0.998046875 + }, + { + "word": " computers,", + "start": 212.98, + "end": 213.48, + "probability": 1.0 + }, + { + "word": " right,", + "start": 213.64, + "end": 214.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 84, + "text": "trying to tell somebody else how to build a car.", + "start": 214.56, + "end": 218.04, + "words": [ + { + "word": " trying", + "start": 214.56, + "end": 215.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 215.26, + "end": 215.58, + "probability": 1.0 + }, + { + "word": " tell", + "start": 215.58, + "end": 216.24, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 216.24, + "end": 216.7, + "probability": 1.0 + }, + { + "word": " else", + "start": 216.7, + "end": 217.04, + "probability": 1.0 + }, + { + "word": " how", + "start": 217.04, + "end": 217.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 217.28, + "end": 217.42, + "probability": 1.0 + }, + { + "word": " build", + "start": 217.42, + "end": 217.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 217.62, + "end": 217.74, + "probability": 1.0 + }, + { + "word": " car.", + "start": 217.74, + "end": 218.04, + "probability": 1.0 + } + ] + }, + { + "id": 85, + "text": "Yeah.", + "start": 218.18, + "end": 218.58, + "words": [ + { + "word": " Yeah.", + "start": 218.18, + "end": 218.58, + "probability": 0.98193359375 + } + ] + }, + { + "id": 86, + "text": "Right.", + "start": 218.64, + "end": 218.74, + "words": [ + { + "word": " Right.", + "start": 218.64, + "end": 218.74, + "probability": 0.41455078125 + } + ] + }, + { + "id": 87, + "text": "I'm not qualified.", + "start": 218.78, + "end": 220.2, + "words": [ + { + "word": " I'm", + "start": 218.78, + "end": 219.18, + "probability": 0.8759765625 + }, + { + "word": " not", + "start": 219.18, + "end": 219.68, + "probability": 1.0 + }, + { + "word": " qualified.", + "start": 219.68, + "end": 220.2, + "probability": 1.0 + } + ] + }, + { + "id": 88, + "text": "I am not...", + "start": 220.58, + "end": 221.34, + "words": [ + { + "word": " I", + "start": 220.58, + "end": 220.78, + "probability": 1.0 + }, + { + "word": " am", + "start": 220.78, + "end": 220.92, + "probability": 0.9033203125 + }, + { + "word": " not...", + "start": 220.92, + "end": 221.34, + "probability": 0.50537109375 + } + ] + }, + { + "id": 89, + "text": "I'm absolutely not qualified to do that.", + "start": 221.34, + "end": 223.04, + "words": [ + { + "word": " I'm", + "start": 221.34, + "end": 221.58, + "probability": 0.99462890625 + }, + { + "word": " absolutely", + "start": 221.58, + "end": 221.98, + "probability": 1.0 + }, + { + "word": " not", + "start": 221.98, + "end": 222.26, + "probability": 1.0 + }, + { + "word": " qualified", + "start": 222.26, + "end": 222.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 222.6, + "end": 222.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 222.8, + "end": 222.92, + "probability": 1.0 + }, + { + "word": " that.", + "start": 222.92, + "end": 223.04, + "probability": 1.0 + } + ] + }, + { + "id": 90, + "text": "But if you worked for the government, you could.", + "start": 223.18, + "end": 225.62, + "words": [ + { + "word": " But", + "start": 223.18, + "end": 223.3, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 223.3, + "end": 223.56, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 223.56, + "end": 223.82, + "probability": 1.0 + }, + { + "word": " worked", + "start": 223.82, + "end": 224.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 224.32, + "end": 224.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 224.52, + "end": 224.62, + "probability": 1.0 + }, + { + "word": " government,", + "start": 224.62, + "end": 224.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 225.06, + "end": 225.34, + "probability": 1.0 + }, + { + "word": " could.", + "start": 225.34, + "end": 225.62, + "probability": 1.0 + } + ] + }, + { + "id": 91, + "text": "Actually, they like those big words.", + "start": 226.57999999999998, + "end": 228.74, + "words": [ + { + "word": " Actually,", + "start": 226.57999999999998, + "end": 227.04, + "probability": 0.87890625 + }, + { + "word": " they", + "start": 227.62, + "end": 227.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 227.74, + "end": 227.96, + "probability": 1.0 + }, + { + "word": " those", + "start": 227.96, + "end": 228.14, + "probability": 1.0 + }, + { + "word": " big", + "start": 228.14, + "end": 228.34, + "probability": 1.0 + }, + { + "word": " words.", + "start": 228.34, + "end": 228.74, + "probability": 1.0 + } + ] + }, + { + "id": 92, + "text": "That's what it is.", + "start": 229.08, + "end": 229.98, + "words": [ + { + "word": " That's", + "start": 229.08, + "end": 229.54, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 229.54, + "end": 229.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 229.68, + "end": 229.8, + "probability": 1.0 + }, + { + "word": " is.", + "start": 229.8, + "end": 229.98, + "probability": 1.0 + } + ] + }, + { + "id": 93, + "text": "Well, you know, the thing is, is that I think...", + "start": 230.5, + "end": 233.94, + "words": [ + { + "word": " Well,", + "start": 230.5, + "end": 230.96, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 231.2, + "end": 231.42, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 231.42, + "end": 231.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 231.64, + "end": 231.8, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 231.8, + "end": 232.0, + "probability": 1.0 + }, + { + "word": " is,", + "start": 232.0, + "end": 232.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 232.28, + "end": 232.42, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 232.42, + "end": 232.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 232.56, + "end": 233.4, + "probability": 0.99169921875 + }, + { + "word": " think...", + "start": 233.4, + "end": 233.94, + "probability": 0.96142578125 + } + ] + }, + { + "id": 94, + "text": "I think that you should not be able to have any control over Internet-related anything", + "start": 234.06, + "end": 240.28, + "words": [ + { + "word": " I", + "start": 234.06, + "end": 234.6, + "probability": 0.0224761962890625 + }, + { + "word": " think", + "start": 234.6, + "end": 234.6, + "probability": 0.85595703125 + }, + { + "word": " that", + "start": 234.6, + "end": 234.7, + "probability": 0.986328125 + }, + { + "word": " you", + "start": 234.7, + "end": 235.1, + "probability": 0.998046875 + }, + { + "word": " should", + "start": 235.1, + "end": 235.42, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 235.42, + "end": 235.66, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 235.66, + "end": 235.92, + "probability": 0.99853515625 + }, + { + "word": " able", + "start": 235.92, + "end": 236.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 236.38, + "end": 236.7, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 236.7, + "end": 236.94, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 236.94, + "end": 237.28, + "probability": 0.99951171875 + }, + { + "word": " control", + "start": 237.28, + "end": 237.66, + "probability": 1.0 + }, + { + "word": " over", + "start": 237.66, + "end": 238.44, + "probability": 0.998046875 + }, + { + "word": " Internet", + "start": 238.44, + "end": 239.46, + "probability": 0.448974609375 + }, + { + "word": "-related", + "start": 239.46, + "end": 239.9, + "probability": 0.89208984375 + }, + { + "word": " anything", + "start": 239.9, + "end": 240.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 95, + "text": "if you don't use it.", + "start": 240.28, + "end": 241.82, + "words": [ + { + "word": " if", + "start": 240.28, + "end": 241.08, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 241.08, + "end": 241.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 241.2, + "end": 241.4, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 241.4, + "end": 241.58, + "probability": 1.0 + }, + { + "word": " it.", + "start": 241.58, + "end": 241.82, + "probability": 1.0 + } + ] + }, + { + "id": 96, + "text": "Right.", + "start": 242.0, + "end": 242.36, + "words": [ + { + "word": " Right.", + "start": 242.0, + "end": 242.36, + "probability": 0.4794921875 + } + ] + }, + { + "id": 97, + "text": "As an example, Janet Napolitano, as we're all familiar with,", + "start": 242.4, + "end": 246.34, + "words": [ + { + "word": " As", + "start": 242.4, + "end": 242.92, + "probability": 0.98388671875 + }, + { + "word": " an", + "start": 242.92, + "end": 243.26, + "probability": 1.0 + }, + { + "word": " example,", + "start": 243.26, + "end": 243.64, + "probability": 1.0 + }, + { + "word": " Janet", + "start": 243.76, + "end": 244.2, + "probability": 1.0 + }, + { + "word": " Napolitano,", + "start": 244.2, + "end": 244.82, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 244.94, + "end": 245.24, + "probability": 1.0 + }, + { + "word": " we're", + "start": 245.24, + "end": 245.52, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 245.52, + "end": 245.72, + "probability": 1.0 + }, + { + "word": " familiar", + "start": 245.72, + "end": 246.04, + "probability": 1.0 + }, + { + "word": " with,", + "start": 246.04, + "end": 246.34, + "probability": 1.0 + } + ] + }, + { + "id": 98, + "text": "she was the head of cybersecurity for the United States for a while.", + "start": 246.86, + "end": 250.52, + "words": [ + { + "word": " she", + "start": 246.86, + "end": 247.34, + "probability": 1.0 + }, + { + "word": " was", + "start": 247.34, + "end": 247.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 247.64, + "end": 247.86, + "probability": 1.0 + }, + { + "word": " head", + "start": 247.86, + "end": 248.06, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 248.06, + "end": 248.28, + "probability": 1.0 + }, + { + "word": " cybersecurity", + "start": 248.28, + "end": 248.7, + "probability": 0.96337890625 + }, + { + "word": " for", + "start": 248.7, + "end": 249.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 249.26, + "end": 249.36, + "probability": 1.0 + }, + { + "word": " United", + "start": 249.36, + "end": 249.5, + "probability": 1.0 + }, + { + "word": " States", + "start": 249.5, + "end": 249.88, + "probability": 1.0 + }, + { + "word": " for", + "start": 249.88, + "end": 250.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 250.08, + "end": 250.2, + "probability": 1.0 + }, + { + "word": " while.", + "start": 250.2, + "end": 250.52, + "probability": 1.0 + } + ] + }, + { + "id": 99, + "text": "Yeah.", + "start": 250.66, + "end": 250.98, + "words": [ + { + "word": " Yeah.", + "start": 250.66, + "end": 250.98, + "probability": 0.9716796875 + } + ] + }, + { + "id": 100, + "text": "Right?", + "start": 251.02, + "end": 251.34, + "words": [ + { + "word": " Right?", + "start": 251.02, + "end": 251.34, + "probability": 0.95703125 + } + ] + }, + { + "id": 101, + "text": "And she does not use email.", + "start": 251.42, + "end": 253.36, + "words": [ + { + "word": " And", + "start": 251.42, + "end": 251.82, + "probability": 0.998046875 + }, + { + "word": " she", + "start": 251.82, + "end": 252.38, + "probability": 0.998046875 + }, + { + "word": " does", + "start": 252.38, + "end": 252.6, + "probability": 1.0 + }, + { + "word": " not", + "start": 252.6, + "end": 252.88, + "probability": 1.0 + }, + { + "word": " use", + "start": 252.88, + "end": 253.06, + "probability": 1.0 + }, + { + "word": " email.", + "start": 253.06, + "end": 253.36, + "probability": 0.9130859375 + } + ] + }, + { + "id": 102, + "text": "No.", + "start": 253.58, + "end": 253.9, + "words": [ + { + "word": " No.", + "start": 253.58, + "end": 253.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 103, + "text": "And it's not because she's afraid there's no threat or anything like that.", + "start": 253.94, + "end": 259.2, + "words": [ + { + "word": " And", + "start": 253.94, + "end": 254.16, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 254.16, + "end": 254.52, + "probability": 1.0 + }, + { + "word": " not", + "start": 254.52, + "end": 254.68, + "probability": 1.0 + }, + { + "word": " because", + "start": 254.68, + "end": 255.12, + "probability": 1.0 + }, + { + "word": " she's", + "start": 255.12, + "end": 255.96, + "probability": 1.0 + }, + { + "word": " afraid", + "start": 255.96, + "end": 256.34, + "probability": 1.0 + }, + { + "word": " there's", + "start": 256.34, + "end": 257.0, + "probability": 0.9345703125 + }, + { + "word": " no", + "start": 257.0, + "end": 257.12, + "probability": 1.0 + }, + { + "word": " threat", + "start": 257.12, + "end": 257.82, + "probability": 1.0 + }, + { + "word": " or", + "start": 257.82, + "end": 258.26, + "probability": 0.99951171875 + }, + { + "word": " anything", + "start": 258.26, + "end": 258.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 258.6, + "end": 258.98, + "probability": 1.0 + }, + { + "word": " that.", + "start": 258.98, + "end": 259.2, + "probability": 1.0 + } + ] + }, + { + "id": 104, + "text": "She just hasn't gotten around to it.", + "start": 259.26, + "end": 261.7, + "words": [ + { + "word": " She", + "start": 259.26, + "end": 259.46, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 259.46, + "end": 259.76, + "probability": 1.0 + }, + { + "word": " hasn't", + "start": 259.76, + "end": 260.28, + "probability": 1.0 + }, + { + "word": " gotten", + "start": 260.28, + "end": 260.52, + "probability": 1.0 + }, + { + "word": " around", + "start": 260.52, + "end": 260.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 260.96, + "end": 261.42, + "probability": 1.0 + }, + { + "word": " it.", + "start": 261.42, + "end": 261.7, + "probability": 1.0 + } + ] + }, + { + "id": 105, + "text": "Right.", + "start": 261.84, + "end": 262.44, + "words": [ + { + "word": " Right.", + "start": 261.84, + "end": 262.44, + "probability": 0.2491455078125 + } + ] + }, + { + "id": 106, + "text": "Now, I don't think that...", + "start": 262.44, + "end": 263.92, + "words": [ + { + "word": " Now,", + "start": 262.44, + "end": 262.46, + "probability": 0.77734375 + }, + { + "word": " I", + "start": 262.56, + "end": 262.74, + "probability": 0.99658203125 + }, + { + "word": " don't", + "start": 262.74, + "end": 263.0, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 263.0, + "end": 263.32, + "probability": 0.9990234375 + }, + { + "word": " that...", + "start": 263.32, + "end": 263.92, + "probability": 0.572265625 + } + ] + }, + { + "id": 107, + "text": "You should be passing laws that affect the entire planet unless you've gotten around", + "start": 264.06, + "end": 270.46, + "words": [ + { + "word": " You", + "start": 264.06, + "end": 264.16, + "probability": 0.71533203125 + }, + { + "word": " should", + "start": 264.16, + "end": 264.32, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 264.32, + "end": 264.46, + "probability": 0.99951171875 + }, + { + "word": " passing", + "start": 264.46, + "end": 264.7, + "probability": 1.0 + }, + { + "word": " laws", + "start": 264.7, + "end": 265.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 265.06, + "end": 265.32, + "probability": 0.99658203125 + }, + { + "word": " affect", + "start": 265.32, + "end": 265.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 265.56, + "end": 265.92, + "probability": 0.99951171875 + }, + { + "word": " entire", + "start": 265.92, + "end": 266.3, + "probability": 1.0 + }, + { + "word": " planet", + "start": 266.3, + "end": 266.96, + "probability": 1.0 + }, + { + "word": " unless", + "start": 266.96, + "end": 268.48, + "probability": 0.81298828125 + }, + { + "word": " you've", + "start": 268.48, + "end": 269.6, + "probability": 0.9990234375 + }, + { + "word": " gotten", + "start": 269.6, + "end": 269.94, + "probability": 1.0 + }, + { + "word": " around", + "start": 269.94, + "end": 270.46, + "probability": 1.0 + } + ] + }, + { + "id": 108, + "text": "to using email, maybe once or twice.", + "start": 270.46, + "end": 272.84, + "words": [ + { + "word": " to", + "start": 270.46, + "end": 270.72, + "probability": 1.0 + }, + { + "word": " using", + "start": 270.72, + "end": 271.02, + "probability": 0.9931640625 + }, + { + "word": " email,", + "start": 271.02, + "end": 271.42, + "probability": 0.80224609375 + }, + { + "word": " maybe", + "start": 271.62, + "end": 271.98, + "probability": 1.0 + }, + { + "word": " once", + "start": 271.98, + "end": 272.34, + "probability": 1.0 + }, + { + "word": " or", + "start": 272.34, + "end": 272.52, + "probability": 1.0 + }, + { + "word": " twice.", + "start": 272.52, + "end": 272.84, + "probability": 1.0 + } + ] + }, + { + "id": 109, + "text": "The thing is, is that if you are not about the technology, if you don't use it and see", + "start": 273.56, + "end": 281.32, + "words": [ + { + "word": " The", + "start": 273.56, + "end": 274.16, + "probability": 0.96484375 + }, + { + "word": " thing", + "start": 274.16, + "end": 274.5, + "probability": 1.0 + }, + { + "word": " is,", + "start": 274.5, + "end": 274.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 274.8, + "end": 274.92, + "probability": 0.984375 + }, + { + "word": " that", + "start": 274.92, + "end": 275.06, + "probability": 1.0 + }, + { + "word": " if", + "start": 275.06, + "end": 275.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 275.32, + "end": 275.58, + "probability": 1.0 + }, + { + "word": " are", + "start": 275.58, + "end": 275.86, + "probability": 1.0 + }, + { + "word": " not", + "start": 275.86, + "end": 276.22, + "probability": 1.0 + }, + { + "word": " about", + "start": 276.22, + "end": 276.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 276.68, + "end": 277.0, + "probability": 1.0 + }, + { + "word": " technology,", + "start": 277.0, + "end": 277.42, + "probability": 1.0 + }, + { + "word": " if", + "start": 277.84, + "end": 278.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 278.66, + "end": 278.88, + "probability": 1.0 + }, + { + "word": " don't", + "start": 278.88, + "end": 279.42, + "probability": 1.0 + }, + { + "word": " use", + "start": 279.42, + "end": 279.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 279.72, + "end": 280.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 280.02, + "end": 280.72, + "probability": 0.98876953125 + }, + { + "word": " see", + "start": 280.72, + "end": 281.32, + "probability": 0.9921875 + } + ] + }, + { + "id": 110, + "text": "how it can benefit the lives of yourself and everyone around you, if you don't see the", + "start": 281.32, + "end": 286.42, + "words": [ + { + "word": " how", + "start": 281.32, + "end": 281.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 281.68, + "end": 281.92, + "probability": 1.0 + }, + { + "word": " can", + "start": 281.92, + "end": 282.08, + "probability": 1.0 + }, + { + "word": " benefit", + "start": 282.08, + "end": 282.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 282.4, + "end": 282.7, + "probability": 1.0 + }, + { + "word": " lives", + "start": 282.7, + "end": 282.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 282.98, + "end": 283.28, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 283.28, + "end": 283.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 283.72, + "end": 284.3, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 284.3, + "end": 284.62, + "probability": 1.0 + }, + { + "word": " around", + "start": 284.62, + "end": 284.96, + "probability": 1.0 + }, + { + "word": " you,", + "start": 284.96, + "end": 285.3, + "probability": 1.0 + }, + { + "word": " if", + "start": 285.36, + "end": 285.5, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 285.5, + "end": 285.66, + "probability": 1.0 + }, + { + "word": " don't", + "start": 285.66, + "end": 286.02, + "probability": 1.0 + }, + { + "word": " see", + "start": 286.02, + "end": 286.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 286.26, + "end": 286.42, + "probability": 1.0 + } + ] + }, + { + "id": 111, + "text": "benefit in it at all or have no personal investment, then you should not be involved in the way", + "start": 286.42, + "end": 293.5, + "words": [ + { + "word": " benefit", + "start": 286.42, + "end": 286.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 286.72, + "end": 287.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 287.38, + "end": 287.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 287.54, + "end": 287.7, + "probability": 1.0 + }, + { + "word": " all", + "start": 287.7, + "end": 288.02, + "probability": 1.0 + }, + { + "word": " or", + "start": 288.02, + "end": 288.26, + "probability": 0.94482421875 + }, + { + "word": " have", + "start": 288.26, + "end": 288.52, + "probability": 0.865234375 + }, + { + "word": " no", + "start": 288.52, + "end": 289.22, + "probability": 1.0 + }, + { + "word": " personal", + "start": 289.22, + "end": 289.76, + "probability": 1.0 + }, + { + "word": " investment,", + "start": 289.76, + "end": 290.26, + "probability": 1.0 + }, + { + "word": " then", + "start": 290.64, + "end": 291.18, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 291.18, + "end": 291.38, + "probability": 1.0 + }, + { + "word": " should", + "start": 291.38, + "end": 291.62, + "probability": 1.0 + }, + { + "word": " not", + "start": 291.62, + "end": 291.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 291.9, + "end": 292.26, + "probability": 1.0 + }, + { + "word": " involved", + "start": 292.26, + "end": 292.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 292.64, + "end": 293.1, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 293.1, + "end": 293.28, + "probability": 1.0 + }, + { + "word": " way", + "start": 293.28, + "end": 293.5, + "probability": 1.0 + } + ] + }, + { + "id": 112, + "text": "that it is.", + "start": 293.5, + "end": 294.04, + "words": [ + { + "word": " that", + "start": 293.5, + "end": 293.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 293.72, + "end": 293.92, + "probability": 0.998046875 + }, + { + "word": " is.", + "start": 293.92, + "end": 294.04, + "probability": 0.0955810546875 + } + ] + }, + { + "id": 113, + "text": "Right.", + "start": 294.06, + "end": 294.86, + "words": [ + { + "word": " Right.", + "start": 294.06, + "end": 294.86, + "probability": 0.8076171875 + } + ] + }, + { + "id": 114, + "text": "Right.", + "start": 295.2, + "end": 295.64, + "words": [ + { + "word": " Right.", + "start": 295.2, + "end": 295.64, + "probability": 0.058990478515625 + } + ] + }, + { + "id": 115, + "text": "Now, there is something to be said for being impartial.", + "start": 295.64, + "end": 300.14, + "words": [ + { + "word": " Now,", + "start": 295.64, + "end": 295.64, + "probability": 0.002696990966796875 + }, + { + "word": " there", + "start": 295.64, + "end": 296.74, + "probability": 0.98388671875 + }, + { + "word": " is", + "start": 296.74, + "end": 297.0, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 297.0, + "end": 297.26, + "probability": 0.79931640625 + }, + { + "word": " to", + "start": 297.26, + "end": 298.06, + "probability": 0.69580078125 + }, + { + "word": " be", + "start": 298.06, + "end": 298.24, + "probability": 1.0 + }, + { + "word": " said", + "start": 298.24, + "end": 298.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 298.46, + "end": 298.7, + "probability": 1.0 + }, + { + "word": " being", + "start": 298.7, + "end": 299.04, + "probability": 0.9716796875 + }, + { + "word": " impartial.", + "start": 299.04, + "end": 300.14, + "probability": 1.0 + } + ] + }, + { + "id": 116, + "text": "Right?", + "start": 300.36, + "end": 300.8, + "words": [ + { + "word": " Right?", + "start": 300.36, + "end": 300.8, + "probability": 0.76904296875 + } + ] + }, + { + "id": 117, + "text": "To be able to say, well, I can pass laws because I don't use it.", + "start": 300.9, + "end": 304.1, + "words": [ + { + "word": " To", + "start": 300.9, + "end": 301.04, + "probability": 0.9951171875 + }, + { + "word": " be", + "start": 301.04, + "end": 301.12, + "probability": 1.0 + }, + { + "word": " able", + "start": 301.12, + "end": 301.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 301.24, + "end": 301.36, + "probability": 1.0 + }, + { + "word": " say,", + "start": 301.36, + "end": 301.5, + "probability": 1.0 + }, + { + "word": " well,", + "start": 301.58, + "end": 301.68, + "probability": 0.99365234375 + }, + { + "word": " I", + "start": 301.8, + "end": 301.92, + "probability": 0.8056640625 + }, + { + "word": " can", + "start": 301.92, + "end": 302.12, + "probability": 0.78369140625 + }, + { + "word": " pass", + "start": 302.12, + "end": 302.92, + "probability": 1.0 + }, + { + "word": " laws", + "start": 302.92, + "end": 303.18, + "probability": 1.0 + }, + { + "word": " because", + "start": 303.18, + "end": 303.44, + "probability": 0.99365234375 + }, + { + "word": " I", + "start": 303.44, + "end": 303.64, + "probability": 1.0 + }, + { + "word": " don't", + "start": 303.64, + "end": 303.74, + "probability": 1.0 + }, + { + "word": " use", + "start": 303.74, + "end": 303.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 303.88, + "end": 304.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 118, + "text": "Right?", + "start": 304.14, + "end": 304.44, + "words": [ + { + "word": " Right?", + "start": 304.14, + "end": 304.44, + "probability": 0.87939453125 + } + ] + }, + { + "id": 119, + "text": "Exactly.", + "start": 304.52, + "end": 304.72, + "words": [ + { + "word": " Exactly.", + "start": 304.52, + "end": 304.72, + "probability": 0.8857421875 + } + ] + }, + { + "id": 120, + "text": "I'm not going to benefit myself.", + "start": 304.74, + "end": 306.4, + "words": [ + { + "word": " I'm", + "start": 304.74, + "end": 305.18, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 305.18, + "end": 305.34, + "probability": 1.0 + }, + { + "word": " going", + "start": 305.34, + "end": 305.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 305.5, + "end": 305.7, + "probability": 1.0 + }, + { + "word": " benefit", + "start": 305.7, + "end": 305.9, + "probability": 0.99951171875 + }, + { + "word": " myself.", + "start": 305.9, + "end": 306.4, + "probability": 1.0 + } + ] + }, + { + "id": 121, + "text": "No, you're going to hurt the rest of the world.", + "start": 306.62, + "end": 308.22, + "words": [ + { + "word": " No,", + "start": 306.62, + "end": 306.98, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 307.04, + "end": 307.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 307.2, + "end": 307.28, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 307.28, + "end": 307.42, + "probability": 1.0 + }, + { + "word": " hurt", + "start": 307.42, + "end": 307.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 307.54, + "end": 307.68, + "probability": 1.0 + }, + { + "word": " rest", + "start": 307.68, + "end": 307.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 307.8, + "end": 307.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 307.92, + "end": 308.0, + "probability": 1.0 + }, + { + "word": " world.", + "start": 308.0, + "end": 308.22, + "probability": 1.0 + } + ] + }, + { + "id": 122, + "text": "Yeah.", + "start": 308.56, + "end": 308.92, + "words": [ + { + "word": " Yeah.", + "start": 308.56, + "end": 308.92, + "probability": 0.25927734375 + } + ] + }, + { + "id": 123, + "text": "And that's really the bigger problem here is that you don't know what you're saying.", + "start": 308.92, + "end": 313.96, + "words": [ + { + "word": " And", + "start": 308.92, + "end": 309.18, + "probability": 0.97265625 + }, + { + "word": " that's", + "start": 309.18, + "end": 309.66, + "probability": 0.998046875 + }, + { + "word": " really", + "start": 309.66, + "end": 309.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 309.86, + "end": 310.08, + "probability": 1.0 + }, + { + "word": " bigger", + "start": 310.08, + "end": 310.22, + "probability": 0.99951171875 + }, + { + "word": " problem", + "start": 310.22, + "end": 310.52, + "probability": 1.0 + }, + { + "word": " here", + "start": 310.52, + "end": 310.76, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 310.76, + "end": 311.0, + "probability": 0.84814453125 + }, + { + "word": " that", + "start": 311.0, + "end": 311.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 311.06, + "end": 312.4, + "probability": 0.99267578125 + }, + { + "word": " don't", + "start": 312.4, + "end": 313.22, + "probability": 1.0 + }, + { + "word": " know", + "start": 313.22, + "end": 313.42, + "probability": 1.0 + }, + { + "word": " what", + "start": 313.42, + "end": 313.56, + "probability": 1.0 + }, + { + "word": " you're", + "start": 313.56, + "end": 313.7, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 313.7, + "end": 313.96, + "probability": 1.0 + } + ] + }, + { + "id": 124, + "text": "Right?", + "start": 314.22, + "end": 314.66, + "words": [ + { + "word": " Right?", + "start": 314.22, + "end": 314.66, + "probability": 0.9892578125 + } + ] + }, + { + "id": 125, + "text": "And what happens is you end up being this mindless, this lemming, right, that is walking", + "start": 314.74, + "end": 321.4, + "words": [ + { + "word": " And", + "start": 314.74, + "end": 314.86, + "probability": 0.94775390625 + }, + { + "word": " what", + "start": 314.86, + "end": 315.36, + "probability": 0.9375 + }, + { + "word": " happens", + "start": 315.36, + "end": 315.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 315.82, + "end": 316.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 316.04, + "end": 316.34, + "probability": 0.99951171875 + }, + { + "word": " end", + "start": 316.34, + "end": 316.64, + "probability": 1.0 + }, + { + "word": " up", + "start": 316.64, + "end": 316.88, + "probability": 1.0 + }, + { + "word": " being", + "start": 316.88, + "end": 317.06, + "probability": 1.0 + }, + { + "word": " this", + "start": 317.06, + "end": 317.44, + "probability": 1.0 + }, + { + "word": " mindless,", + "start": 317.44, + "end": 318.3, + "probability": 1.0 + }, + { + "word": " this", + "start": 318.32, + "end": 318.78, + "probability": 1.0 + }, + { + "word": " lemming,", + "start": 318.78, + "end": 319.44, + "probability": 0.998046875 + }, + { + "word": " right,", + "start": 319.52, + "end": 319.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 320.04, + "end": 320.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 320.28, + "end": 320.62, + "probability": 1.0 + }, + { + "word": " walking", + "start": 320.62, + "end": 321.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 126, + "text": "around Congress, being lobbied by very large companies.", + "start": 321.4, + "end": 324.04, + "words": [ + { + "word": " around", + "start": 321.4, + "end": 321.66, + "probability": 1.0 + }, + { + "word": " Congress,", + "start": 321.66, + "end": 322.04, + "probability": 0.9990234375 + }, + { + "word": " being", + "start": 322.12, + "end": 322.28, + "probability": 0.99951171875 + }, + { + "word": " lobbied", + "start": 322.28, + "end": 322.82, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 322.82, + "end": 323.02, + "probability": 1.0 + }, + { + "word": " very", + "start": 323.02, + "end": 323.32, + "probability": 0.98388671875 + }, + { + "word": " large", + "start": 323.32, + "end": 323.7, + "probability": 1.0 + }, + { + "word": " companies.", + "start": 323.7, + "end": 324.04, + "probability": 0.8583984375 + } + ] + }, + { + "id": 127, + "text": "Well, it's lots of money being able to say, you know what?", + "start": 324.06, + "end": 326.5, + "words": [ + { + "word": " Well,", + "start": 324.06, + "end": 324.3, + "probability": 0.0089874267578125 + }, + { + "word": " it's", + "start": 324.38, + "end": 324.48, + "probability": 0.75439453125 + }, + { + "word": " lots", + "start": 324.48, + "end": 324.7, + "probability": 0.96484375 + }, + { + "word": " of", + "start": 324.7, + "end": 324.84, + "probability": 1.0 + }, + { + "word": " money", + "start": 324.84, + "end": 325.1, + "probability": 0.99951171875 + }, + { + "word": " being", + "start": 325.1, + "end": 325.68, + "probability": 0.8154296875 + }, + { + "word": " able", + "start": 325.68, + "end": 325.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 325.86, + "end": 325.98, + "probability": 1.0 + }, + { + "word": " say,", + "start": 325.98, + "end": 326.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 326.14, + "end": 326.26, + "probability": 0.98876953125 + }, + { + "word": " know", + "start": 326.26, + "end": 326.34, + "probability": 1.0 + }, + { + "word": " what?", + "start": 326.34, + "end": 326.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 128, + "text": "You know what we're going to do?", + "start": 326.62, + "end": 327.66, + "words": [ + { + "word": " You", + "start": 326.62, + "end": 327.04, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 327.04, + "end": 327.18, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 327.18, + "end": 327.24, + "probability": 0.9892578125 + }, + { + "word": " we're", + "start": 327.24, + "end": 327.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 327.36, + "end": 327.46, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 327.46, + "end": 327.54, + "probability": 1.0 + }, + { + "word": " do?", + "start": 327.54, + "end": 327.66, + "probability": 1.0 + } + ] + }, + { + "id": 129, + "text": "We are going to make it really hard for everybody on the planet to do anything because we've", + "start": 328.0, + "end": 331.82, + "words": [ + { + "word": " We", + "start": 328.0, + "end": 328.42, + "probability": 1.0 + }, + { + "word": " are", + "start": 328.42, + "end": 328.58, + "probability": 0.86865234375 + }, + { + "word": " going", + "start": 328.58, + "end": 328.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 328.74, + "end": 328.86, + "probability": 1.0 + }, + { + "word": " make", + "start": 328.86, + "end": 329.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 329.02, + "end": 329.16, + "probability": 1.0 + }, + { + "word": " really", + "start": 329.16, + "end": 329.44, + "probability": 1.0 + }, + { + "word": " hard", + "start": 329.44, + "end": 329.84, + "probability": 1.0 + }, + { + "word": " for", + "start": 329.84, + "end": 330.06, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 330.06, + "end": 330.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 330.42, + "end": 330.62, + "probability": 0.68603515625 + }, + { + "word": " the", + "start": 330.62, + "end": 330.74, + "probability": 1.0 + }, + { + "word": " planet", + "start": 330.74, + "end": 330.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 330.94, + "end": 331.06, + "probability": 1.0 + }, + { + "word": " do", + "start": 331.06, + "end": 331.18, + "probability": 1.0 + }, + { + "word": " anything", + "start": 331.18, + "end": 331.34, + "probability": 1.0 + }, + { + "word": " because", + "start": 331.34, + "end": 331.62, + "probability": 0.97705078125 + }, + { + "word": " we've", + "start": 331.62, + "end": 331.82, + "probability": 1.0 + } + ] + }, + { + "id": 130, + "text": "got deep pockets.", + "start": 331.82, + "end": 332.46, + "words": [ + { + "word": " got", + "start": 331.82, + "end": 331.96, + "probability": 1.0 + }, + { + "word": " deep", + "start": 331.96, + "end": 332.14, + "probability": 0.990234375 + }, + { + "word": " pockets.", + "start": 332.14, + "end": 332.46, + "probability": 1.0 + } + ] + }, + { + "id": 131, + "text": "Right.", + "start": 332.72, + "end": 333.14, + "words": [ + { + "word": " Right.", + "start": 332.72, + "end": 333.14, + "probability": 0.52490234375 + } + ] + }, + { + "id": 132, + "text": "They are going to convince a sheeple in Congress that they have no clue what they're doing.", + "start": 333.16, + "end": 341.16, + "words": [ + { + "word": " They", + "start": 333.16, + "end": 333.44, + "probability": 0.76025390625 + }, + { + "word": " are", + "start": 333.44, + "end": 333.62, + "probability": 0.9677734375 + }, + { + "word": " going", + "start": 333.62, + "end": 333.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 333.78, + "end": 333.98, + "probability": 1.0 + }, + { + "word": " convince", + "start": 333.98, + "end": 334.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 334.48, + "end": 335.52, + "probability": 0.994140625 + }, + { + "word": " sheeple", + "start": 335.52, + "end": 337.02, + "probability": 0.9814453125 + }, + { + "word": " in", + "start": 337.02, + "end": 337.4, + "probability": 1.0 + }, + { + "word": " Congress", + "start": 337.4, + "end": 337.84, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 337.84, + "end": 338.98, + "probability": 0.61962890625 + }, + { + "word": " they", + "start": 338.98, + "end": 339.4, + "probability": 0.63525390625 + }, + { + "word": " have", + "start": 339.4, + "end": 339.86, + "probability": 1.0 + }, + { + "word": " no", + "start": 339.86, + "end": 340.14, + "probability": 1.0 + }, + { + "word": " clue", + "start": 340.14, + "end": 340.46, + "probability": 1.0 + }, + { + "word": " what", + "start": 340.46, + "end": 340.7, + "probability": 1.0 + }, + { + "word": " they're", + "start": 340.7, + "end": 340.88, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 340.88, + "end": 341.16, + "probability": 1.0 + } + ] + }, + { + "id": 133, + "text": "Yeah, exactly.", + "start": 342.05999999999995, + "end": 342.9, + "words": [ + { + "word": " Yeah,", + "start": 342.05999999999995, + "end": 342.47999999999996, + "probability": 0.56787109375 + }, + { + "word": " exactly.", + "start": 342.47999999999996, + "end": 342.9, + "probability": 1.0 + } + ] + }, + { + "id": 134, + "text": "Right.", + "start": 343.06, + "end": 343.28, + "words": [ + { + "word": " Right.", + "start": 343.06, + "end": 343.28, + "probability": 0.38720703125 + } + ] + }, + { + "id": 135, + "text": "So they're going to convince these people that have the power over us to change it to", + "start": 343.36, + "end": 352.5, + "words": [ + { + "word": " So", + "start": 343.36, + "end": 343.74, + "probability": 0.98193359375 + }, + { + "word": " they're", + "start": 343.74, + "end": 344.82, + "probability": 0.962890625 + }, + { + "word": " going", + "start": 344.82, + "end": 345.32, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 345.32, + "end": 345.7, + "probability": 1.0 + }, + { + "word": " convince", + "start": 345.7, + "end": 346.38, + "probability": 0.904296875 + }, + { + "word": " these", + "start": 346.38, + "end": 347.82, + "probability": 1.0 + }, + { + "word": " people", + "start": 347.82, + "end": 348.52, + "probability": 0.97314453125 + }, + { + "word": " that", + "start": 348.52, + "end": 349.42, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 349.42, + "end": 349.94, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 349.94, + "end": 350.58, + "probability": 1.0 + }, + { + "word": " power", + "start": 350.58, + "end": 350.82, + "probability": 1.0 + }, + { + "word": " over", + "start": 350.82, + "end": 351.24, + "probability": 1.0 + }, + { + "word": " us", + "start": 351.24, + "end": 351.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 351.5, + "end": 351.64, + "probability": 1.0 + }, + { + "word": " change", + "start": 351.64, + "end": 351.94, + "probability": 1.0 + }, + { + "word": " it", + "start": 351.94, + "end": 352.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 352.16, + "end": 352.5, + "probability": 0.9873046875 + } + ] + }, + { + "id": 136, + "text": "a certain extent.", + "start": 352.5, + "end": 353.14, + "words": [ + { + "word": " a", + "start": 352.5, + "end": 352.6, + "probability": 1.0 + }, + { + "word": " certain", + "start": 352.6, + "end": 352.86, + "probability": 0.99951171875 + }, + { + "word": " extent.", + "start": 352.86, + "end": 353.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 137, + "text": "Right.", + "start": 353.42, + "end": 353.84, + "words": [ + { + "word": " Right.", + "start": 353.42, + "end": 353.84, + "probability": 0.036651611328125 + } + ] + }, + { + "id": 138, + "text": "Right.", + "start": 353.92, + "end": 354.02, + "words": [ + { + "word": " Right.", + "start": 353.92, + "end": 354.02, + "probability": 0.413818359375 + } + ] + }, + { + "id": 139, + "text": "Right.", + "start": 354.02, + "end": 354.04, + "words": [ + { + "word": " Right.", + "start": 354.02, + "end": 354.04, + "probability": 0.89111328125 + } + ] + }, + { + "id": 140, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 141, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 142, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 143, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 144, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 145, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 146, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 147, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 148, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 149, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 150, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 151, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 152, + "text": "", + "start": 354.04, + "end": 354.04, + "words": [] + }, + { + "id": 153, + "text": "As it pertains to the internet.", + "start": 354.06, + "end": 355.3, + "words": [ + { + "word": " As", + "start": 354.06, + "end": 354.3, + "probability": 0.049072265625 + }, + { + "word": " it", + "start": 354.3, + "end": 354.46, + "probability": 0.99365234375 + }, + { + "word": " pertains", + "start": 354.46, + "end": 354.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 354.88, + "end": 355.04, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 355.04, + "end": 355.08, + "probability": 0.99951171875 + }, + { + "word": " internet.", + "start": 355.08, + "end": 355.3, + "probability": 0.36279296875 + } + ] + }, + { + "id": 154, + "text": "They're going to convince them that they have to make these changes that are just detrimental", + "start": 355.54, + "end": 360.0, + "words": [ + { + "word": " They're", + "start": 355.54, + "end": 355.94, + "probability": 0.9921875 + }, + { + "word": " going", + "start": 355.94, + "end": 356.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 356.1, + "end": 356.3, + "probability": 1.0 + }, + { + "word": " convince", + "start": 356.3, + "end": 356.64, + "probability": 0.9990234375 + }, + { + "word": " them", + "start": 356.64, + "end": 356.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 356.98, + "end": 357.18, + "probability": 0.724609375 + }, + { + "word": " they", + "start": 357.18, + "end": 357.3, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 357.3, + "end": 357.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 357.48, + "end": 357.62, + "probability": 1.0 + }, + { + "word": " make", + "start": 357.62, + "end": 357.76, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 357.76, + "end": 357.92, + "probability": 0.99462890625 + }, + { + "word": " changes", + "start": 357.92, + "end": 358.18, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 358.18, + "end": 358.48, + "probability": 0.65625 + }, + { + "word": " are", + "start": 358.48, + "end": 358.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 358.7, + "end": 359.42, + "probability": 0.99658203125 + }, + { + "word": " detrimental", + "start": 359.42, + "end": 360.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 155, + "text": "to the way that the internet works.", + "start": 360.70000000000005, + "end": 363.08, + "words": [ + { + "word": " to", + "start": 360.70000000000005, + "end": 361.1, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 361.1, + "end": 361.5, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 361.5, + "end": 362.2, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 362.2, + "end": 362.38, + "probability": 0.78759765625 + }, + { + "word": " the", + "start": 362.38, + "end": 362.52, + "probability": 1.0 + }, + { + "word": " internet", + "start": 362.52, + "end": 362.72, + "probability": 0.99951171875 + }, + { + "word": " works.", + "start": 362.72, + "end": 363.08, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "They don't know what's in it until they pass it.", + "start": 363.42, + "end": 365.38, + "words": [ + { + "word": " They", + "start": 363.42, + "end": 363.82, + "probability": 0.8798828125 + }, + { + "word": " don't", + "start": 363.82, + "end": 364.02, + "probability": 1.0 + }, + { + "word": " know", + "start": 364.02, + "end": 364.12, + "probability": 1.0 + }, + { + "word": " what's", + "start": 364.12, + "end": 364.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 364.34, + "end": 364.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 364.44, + "end": 364.6, + "probability": 1.0 + }, + { + "word": " until", + "start": 364.6, + "end": 364.78, + "probability": 1.0 + }, + { + "word": " they", + "start": 364.78, + "end": 364.94, + "probability": 1.0 + }, + { + "word": " pass", + "start": 364.94, + "end": 365.16, + "probability": 1.0 + }, + { + "word": " it.", + "start": 365.16, + "end": 365.38, + "probability": 1.0 + } + ] + }, + { + "id": 157, + "text": "There's a certain part of that.", + "start": 366.88, + "end": 368.54, + "words": [ + { + "word": " There's", + "start": 366.88, + "end": 367.28, + "probability": 0.95263671875 + }, + { + "word": " a", + "start": 367.28, + "end": 367.32, + "probability": 1.0 + }, + { + "word": " certain", + "start": 367.32, + "end": 367.92, + "probability": 0.939453125 + }, + { + "word": " part", + "start": 367.92, + "end": 368.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 368.24, + "end": 368.38, + "probability": 1.0 + }, + { + "word": " that.", + "start": 368.38, + "end": 368.54, + "probability": 1.0 + } + ] + }, + { + "id": 158, + "text": "They should know the technology.", + "start": 368.9, + "end": 370.72, + "words": [ + { + "word": " They", + "start": 368.9, + "end": 369.22, + "probability": 0.99267578125 + }, + { + "word": " should", + "start": 369.22, + "end": 369.82, + "probability": 1.0 + }, + { + "word": " know", + "start": 369.82, + "end": 370.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 370.12, + "end": 370.34, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 370.34, + "end": 370.72, + "probability": 1.0 + } + ] + }, + { + "id": 159, + "text": "Yeah.", + "start": 371.18, + "end": 371.3, + "words": [ + { + "word": " Yeah.", + "start": 371.18, + "end": 371.3, + "probability": 0.9111328125 + } + ] + }, + { + "id": 160, + "text": "Well, with the internet stuff, they don't know what's in it after they pass it.", + "start": 371.32, + "end": 373.84, + "words": [ + { + "word": " Well,", + "start": 371.32, + "end": 371.46, + "probability": 0.98583984375 + }, + { + "word": " with", + "start": 371.5, + "end": 371.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 371.64, + "end": 371.74, + "probability": 1.0 + }, + { + "word": " internet", + "start": 371.74, + "end": 371.96, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 371.96, + "end": 372.18, + "probability": 0.98095703125 + }, + { + "word": " they", + "start": 372.24, + "end": 372.36, + "probability": 1.0 + }, + { + "word": " don't", + "start": 372.36, + "end": 372.5, + "probability": 1.0 + }, + { + "word": " know", + "start": 372.5, + "end": 372.6, + "probability": 1.0 + }, + { + "word": " what's", + "start": 372.6, + "end": 372.8, + "probability": 0.8603515625 + }, + { + "word": " in", + "start": 372.8, + "end": 372.84, + "probability": 0.99462890625 + }, + { + "word": " it", + "start": 372.84, + "end": 372.92, + "probability": 0.9990234375 + }, + { + "word": " after", + "start": 372.92, + "end": 373.22, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 373.22, + "end": 373.4, + "probability": 1.0 + }, + { + "word": " pass", + "start": 373.4, + "end": 373.62, + "probability": 1.0 + }, + { + "word": " it.", + "start": 373.62, + "end": 373.84, + "probability": 1.0 + } + ] + }, + { + "id": 161, + "text": "Right.", + "start": 373.88, + "end": 374.06, + "words": [ + { + "word": " Right.", + "start": 373.88, + "end": 374.06, + "probability": 0.80029296875 + } + ] + }, + { + "id": 162, + "text": "They never know what's in it because they're just so dumb.", + "start": 374.14, + "end": 377.44, + "words": [ + { + "word": " They", + "start": 374.14, + "end": 374.26, + "probability": 0.99462890625 + }, + { + "word": " never", + "start": 374.26, + "end": 374.6, + "probability": 1.0 + }, + { + "word": " know", + "start": 374.6, + "end": 375.08, + "probability": 1.0 + }, + { + "word": " what's", + "start": 375.08, + "end": 375.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 375.38, + "end": 375.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 375.52, + "end": 375.6, + "probability": 1.0 + }, + { + "word": " because", + "start": 375.6, + "end": 375.84, + "probability": 0.9765625 + }, + { + "word": " they're", + "start": 375.84, + "end": 376.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 376.06, + "end": 376.16, + "probability": 0.99658203125 + }, + { + "word": " so", + "start": 376.16, + "end": 376.94, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 376.94, + "end": 377.44, + "probability": 1.0 + } + ] + }, + { + "id": 163, + "text": "They've got to reach the end of the internet before they can figure it out.", + "start": 377.76, + "end": 380.24, + "words": [ + { + "word": " They've", + "start": 377.76, + "end": 377.98, + "probability": 0.76171875 + }, + { + "word": " got", + "start": 377.98, + "end": 378.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 378.04, + "end": 378.16, + "probability": 1.0 + }, + { + "word": " reach", + "start": 378.16, + "end": 378.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 378.28, + "end": 378.48, + "probability": 1.0 + }, + { + "word": " end", + "start": 378.48, + "end": 378.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 378.72, + "end": 378.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 378.84, + "end": 378.9, + "probability": 1.0 + }, + { + "word": " internet", + "start": 378.9, + "end": 379.18, + "probability": 1.0 + }, + { + "word": " before", + "start": 379.18, + "end": 379.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 379.44, + "end": 379.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 379.66, + "end": 379.76, + "probability": 0.99951171875 + }, + { + "word": " figure", + "start": 379.76, + "end": 379.98, + "probability": 1.0 + }, + { + "word": " it", + "start": 379.98, + "end": 380.14, + "probability": 1.0 + }, + { + "word": " out.", + "start": 380.14, + "end": 380.24, + "probability": 1.0 + } + ] + }, + { + "id": 164, + "text": "Oh, God.", + "start": 380.32, + "end": 380.68, + "words": [ + { + "word": " Oh,", + "start": 380.32, + "end": 380.48, + "probability": 0.99951171875 + }, + { + "word": " God.", + "start": 380.48, + "end": 380.68, + "probability": 0.98486328125 + } + ] + }, + { + "id": 165, + "text": "Don't go there.", + "start": 380.76, + "end": 381.32, + "words": [ + { + "word": " Don't", + "start": 380.76, + "end": 381.0, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 381.0, + "end": 381.14, + "probability": 1.0 + }, + { + "word": " there.", + "start": 381.14, + "end": 381.32, + "probability": 1.0 + } + ] + }, + { + "id": 166, + "text": "All right.", + "start": 381.52, + "end": 382.06, + "words": [ + { + "word": " All", + "start": 381.52, + "end": 381.92, + "probability": 0.98291015625 + }, + { + "word": " right.", + "start": 381.92, + "end": 382.06, + "probability": 1.0 + } + ] + }, + { + "id": 167, + "text": "All right.", + "start": 382.06, + "end": 382.24, + "words": [ + { + "word": " All", + "start": 382.06, + "end": 382.24, + "probability": 0.119140625 + }, + { + "word": " right.", + "start": 382.24, + "end": 382.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 168, + "text": "", + "start": 382.24, + "end": 382.24, + "words": [] + }, + { + "id": 169, + "text": "It's just mind-boggling the amount of idiocy that is involved in the government when it", + "start": 384.06, + "end": 392.68, + "words": [ + { + "word": " It's", + "start": 384.06, + "end": 384.26, + "probability": 0.96484375 + }, + { + "word": " just", + "start": 384.26, + "end": 384.52, + "probability": 0.66796875 + }, + { + "word": " mind", + "start": 384.52, + "end": 385.08, + "probability": 0.34033203125 + }, + { + "word": "-boggling", + "start": 385.08, + "end": 386.54, + "probability": 0.982421875 + }, + { + "word": " the", + "start": 386.54, + "end": 386.94, + "probability": 0.96044921875 + }, + { + "word": " amount", + "start": 386.94, + "end": 387.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 387.34, + "end": 388.0, + "probability": 1.0 + }, + { + "word": " idiocy", + "start": 388.0, + "end": 389.28, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 389.28, + "end": 390.1, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 390.1, + "end": 390.46, + "probability": 1.0 + }, + { + "word": " involved", + "start": 390.46, + "end": 391.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 391.36, + "end": 391.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 391.88, + "end": 392.0, + "probability": 1.0 + }, + { + "word": " government", + "start": 392.0, + "end": 392.24, + "probability": 1.0 + }, + { + "word": " when", + "start": 392.24, + "end": 392.56, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 392.56, + "end": 392.68, + "probability": 1.0 + } + ] + }, + { + "id": 170, + "text": "pertains to the internet.", + "start": 392.68, + "end": 393.38, + "words": [ + { + "word": " pertains", + "start": 392.68, + "end": 392.98, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 392.98, + "end": 393.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 393.12, + "end": 393.14, + "probability": 0.99462890625 + }, + { + "word": " internet.", + "start": 393.14, + "end": 393.38, + "probability": 0.250732421875 + } + ] + }, + { + "id": 171, + "text": "And the reason I get upset about it is because it's one of the few places now, the last refuges", + "start": 393.56, + "end": 401.24, + "words": [ + { + "word": " And", + "start": 393.56, + "end": 394.14, + "probability": 0.89306640625 + }, + { + "word": " the", + "start": 394.14, + "end": 394.46, + "probability": 0.9990234375 + }, + { + "word": " reason", + "start": 394.46, + "end": 394.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 394.72, + "end": 394.84, + "probability": 1.0 + }, + { + "word": " get", + "start": 394.84, + "end": 394.94, + "probability": 1.0 + }, + { + "word": " upset", + "start": 394.94, + "end": 395.1, + "probability": 1.0 + }, + { + "word": " about", + "start": 395.1, + "end": 395.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 395.4, + "end": 395.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 395.6, + "end": 396.0, + "probability": 0.78076171875 + }, + { + "word": " because", + "start": 396.0, + "end": 396.38, + "probability": 1.0 + }, + { + "word": " it's", + "start": 396.38, + "end": 397.44, + "probability": 1.0 + }, + { + "word": " one", + "start": 397.44, + "end": 397.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 397.56, + "end": 397.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 397.66, + "end": 397.7, + "probability": 1.0 + }, + { + "word": " few", + "start": 397.7, + "end": 397.92, + "probability": 1.0 + }, + { + "word": " places", + "start": 397.92, + "end": 398.32, + "probability": 1.0 + }, + { + "word": " now,", + "start": 398.32, + "end": 398.6, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 398.72, + "end": 399.04, + "probability": 0.9990234375 + }, + { + "word": " last", + "start": 399.04, + "end": 400.28, + "probability": 1.0 + }, + { + "word": " refuges", + "start": 400.28, + "end": 401.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 172, + "text": "of free speech.", + "start": 401.24, + "end": 403.84, + "words": [ + { + "word": " of", + "start": 401.24, + "end": 402.28, + "probability": 0.86962890625 + }, + { + "word": " free", + "start": 402.28, + "end": 403.52, + "probability": 1.0 + }, + { + "word": " speech.", + "start": 403.52, + "end": 403.84, + "probability": 1.0 + } + ] + }, + { + "id": 173, + "text": "Yeah.", + "start": 404.02, + "end": 404.32, + "words": [ + { + "word": " Yeah.", + "start": 404.02, + "end": 404.32, + "probability": 0.45947265625 + } + ] + }, + { + "id": 174, + "text": "And you're turning this into China when it comes to the internet.", + "start": 404.58, + "end": 409.64, + "words": [ + { + "word": " And", + "start": 404.58, + "end": 405.18, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 405.18, + "end": 406.66, + "probability": 1.0 + }, + { + "word": " turning", + "start": 406.66, + "end": 407.1, + "probability": 1.0 + }, + { + "word": " this", + "start": 407.1, + "end": 407.34, + "probability": 1.0 + }, + { + "word": " into", + "start": 407.34, + "end": 407.68, + "probability": 1.0 + }, + { + "word": " China", + "start": 407.68, + "end": 408.16, + "probability": 1.0 + }, + { + "word": " when", + "start": 408.16, + "end": 408.76, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 408.76, + "end": 408.9, + "probability": 1.0 + }, + { + "word": " comes", + "start": 408.9, + "end": 409.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 409.1, + "end": 409.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 409.26, + "end": 409.34, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 409.34, + "end": 409.64, + "probability": 1.0 + } + ] + }, + { + "id": 175, + "text": "Pretty much.", + "start": 409.86, + "end": 410.3, + "words": [ + { + "word": " Pretty", + "start": 409.86, + "end": 410.28, + "probability": 0.88427734375 + }, + { + "word": " much.", + "start": 410.28, + "end": 410.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 176, + "text": "All right.", + "start": 410.3, + "end": 410.36, + "words": [ + { + "word": " All", + "start": 410.3, + "end": 410.3, + "probability": 0.0066680908203125 + }, + { + "word": " right.", + "start": 410.3, + "end": 410.36, + "probability": 1.0 + } + ] + }, + { + "id": 177, + "text": "We want to be able to put our ideas.", + "start": 410.66, + "end": 413.76, + "words": [ + { + "word": " We", + "start": 410.66, + "end": 411.26, + "probability": 0.97265625 + }, + { + "word": " want", + "start": 411.26, + "end": 411.74, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 411.74, + "end": 411.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 411.9, + "end": 412.0, + "probability": 1.0 + }, + { + "word": " able", + "start": 412.0, + "end": 412.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 412.2, + "end": 412.44, + "probability": 1.0 + }, + { + "word": " put", + "start": 412.44, + "end": 412.72, + "probability": 1.0 + }, + { + "word": " our", + "start": 412.72, + "end": 413.04, + "probability": 1.0 + }, + { + "word": " ideas.", + "start": 413.04, + "end": 413.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 178, + "text": "Our ideas out into the world and not have them stifled, not have them recorded and used", + "start": 414.06, + "end": 418.78, + "words": [ + { + "word": " Our", + "start": 414.06, + "end": 414.16, + "probability": 0.00011676549911499023 + }, + { + "word": " ideas", + "start": 414.16, + "end": 414.16, + "probability": 0.00011396408081054688 + }, + { + "word": " out", + "start": 414.16, + "end": 414.2, + "probability": 0.78515625 + }, + { + "word": " into", + "start": 414.2, + "end": 414.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 414.58, + "end": 414.72, + "probability": 1.0 + }, + { + "word": " world", + "start": 414.72, + "end": 415.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 415.0, + "end": 415.7, + "probability": 0.8251953125 + }, + { + "word": " not", + "start": 415.7, + "end": 416.2, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 416.2, + "end": 416.42, + "probability": 1.0 + }, + { + "word": " them", + "start": 416.42, + "end": 416.58, + "probability": 1.0 + }, + { + "word": " stifled,", + "start": 416.58, + "end": 417.02, + "probability": 1.0 + }, + { + "word": " not", + "start": 417.06, + "end": 417.48, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 417.48, + "end": 417.7, + "probability": 1.0 + }, + { + "word": " them", + "start": 417.7, + "end": 417.94, + "probability": 1.0 + }, + { + "word": " recorded", + "start": 417.94, + "end": 418.36, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 418.36, + "end": 418.6, + "probability": 0.99951171875 + }, + { + "word": " used", + "start": 418.6, + "end": 418.78, + "probability": 1.0 + } + ] + }, + { + "id": 179, + "text": "against us.", + "start": 418.78, + "end": 419.4, + "words": [ + { + "word": " against", + "start": 418.78, + "end": 419.1, + "probability": 1.0 + }, + { + "word": " us.", + "start": 419.1, + "end": 419.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 180, + "text": "Right.", + "start": 419.52, + "end": 419.88, + "words": [ + { + "word": " Right.", + "start": 419.52, + "end": 419.88, + "probability": 0.399169921875 + } + ] + }, + { + "id": 181, + "text": "We want to be able to have the internet the way it's been for the last 20 years.", + "start": 419.94, + "end": 423.56, + "words": [ + { + "word": " We", + "start": 419.94, + "end": 420.1, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 420.1, + "end": 420.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 420.34, + "end": 420.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 420.5, + "end": 420.6, + "probability": 1.0 + }, + { + "word": " able", + "start": 420.6, + "end": 420.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 420.74, + "end": 420.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 420.92, + "end": 421.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 421.16, + "end": 421.4, + "probability": 1.0 + }, + { + "word": " internet", + "start": 421.4, + "end": 421.68, + "probability": 0.193603515625 + }, + { + "word": " the", + "start": 421.68, + "end": 421.88, + "probability": 0.99755859375 + }, + { + "word": " way", + "start": 421.88, + "end": 422.04, + "probability": 1.0 + }, + { + "word": " it's", + "start": 422.04, + "end": 422.28, + "probability": 1.0 + }, + { + "word": " been", + "start": 422.28, + "end": 422.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 422.42, + "end": 422.58, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 422.58, + "end": 422.68, + "probability": 1.0 + }, + { + "word": " last", + "start": 422.68, + "end": 422.82, + "probability": 1.0 + }, + { + "word": " 20", + "start": 422.82, + "end": 423.12, + "probability": 1.0 + }, + { + "word": " years.", + "start": 423.12, + "end": 423.56, + "probability": 1.0 + } + ] + }, + { + "id": 182, + "text": "And there's no need to change it.", + "start": 423.86, + "end": 425.62, + "words": [ + { + "word": " And", + "start": 423.86, + "end": 424.22, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 424.22, + "end": 424.44, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 424.44, + "end": 424.62, + "probability": 1.0 + }, + { + "word": " need", + "start": 424.62, + "end": 424.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 424.96, + "end": 425.16, + "probability": 1.0 + }, + { + "word": " change", + "start": 425.16, + "end": 425.42, + "probability": 1.0 + }, + { + "word": " it.", + "start": 425.42, + "end": 425.62, + "probability": 1.0 + } + ] + }, + { + "id": 183, + "text": "Right.", + "start": 425.68, + "end": 425.96, + "words": [ + { + "word": " Right.", + "start": 425.68, + "end": 425.96, + "probability": 0.99658203125 + } + ] + }, + { + "id": 184, + "text": "As far as the cybersecurity aspect of it, which is really what they're pushing.", + "start": 426.04, + "end": 429.5, + "words": [ + { + "word": " As", + "start": 426.04, + "end": 426.2, + "probability": 1.0 + }, + { + "word": " far", + "start": 426.2, + "end": 426.38, + "probability": 1.0 + }, + { + "word": " as", + "start": 426.38, + "end": 426.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 426.68, + "end": 427.0, + "probability": 1.0 + }, + { + "word": " cybersecurity", + "start": 427.0, + "end": 427.42, + "probability": 0.853515625 + }, + { + "word": " aspect", + "start": 427.42, + "end": 427.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 427.92, + "end": 428.22, + "probability": 1.0 + }, + { + "word": " it,", + "start": 428.22, + "end": 428.3, + "probability": 1.0 + }, + { + "word": " which", + "start": 428.36, + "end": 428.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 428.44, + "end": 428.54, + "probability": 1.0 + }, + { + "word": " really", + "start": 428.54, + "end": 428.86, + "probability": 1.0 + }, + { + "word": " what", + "start": 428.86, + "end": 429.06, + "probability": 1.0 + }, + { + "word": " they're", + "start": 429.06, + "end": 429.24, + "probability": 1.0 + }, + { + "word": " pushing.", + "start": 429.24, + "end": 429.5, + "probability": 1.0 + } + ] + }, + { + "id": 185, + "text": "They're saying, look, I got, here's what helped push it, by the way.", + "start": 429.76, + "end": 433.82, + "words": [ + { + "word": " They're", + "start": 429.76, + "end": 430.12, + "probability": 1.0 + }, + { + "word": " saying,", + "start": 430.12, + "end": 430.28, + "probability": 1.0 + }, + { + "word": " look,", + "start": 430.34, + "end": 430.54, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 430.68, + "end": 430.84, + "probability": 0.99951171875 + }, + { + "word": " got,", + "start": 430.84, + "end": 431.16, + "probability": 1.0 + }, + { + "word": " here's", + "start": 431.32, + "end": 432.66, + "probability": 1.0 + }, + { + "word": " what", + "start": 432.66, + "end": 432.8, + "probability": 1.0 + }, + { + "word": " helped", + "start": 432.8, + "end": 432.98, + "probability": 1.0 + }, + { + "word": " push", + "start": 432.98, + "end": 433.2, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 433.2, + "end": 433.38, + "probability": 1.0 + }, + { + "word": " by", + "start": 433.42, + "end": 433.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 433.54, + "end": 433.62, + "probability": 1.0 + }, + { + "word": " way.", + "start": 433.62, + "end": 433.82, + "probability": 1.0 + } + ] + }, + { + "id": 186, + "text": "You know what phishing is, everybody.", + "start": 434.28, + "end": 435.78, + "words": [ + { + "word": " You", + "start": 434.28, + "end": 434.64, + "probability": 1.0 + }, + { + "word": " know", + "start": 434.64, + "end": 434.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 434.82, + "end": 434.96, + "probability": 0.99755859375 + }, + { + "word": " phishing", + "start": 434.96, + "end": 435.28, + "probability": 0.99853515625 + }, + { + "word": " is,", + "start": 435.28, + "end": 435.48, + "probability": 1.0 + }, + { + "word": " everybody.", + "start": 435.56, + "end": 435.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 187, + "text": "Right.", + "start": 435.92, + "end": 436.1, + "words": [ + { + "word": " Right.", + "start": 435.92, + "end": 436.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 188, + "text": "And that's where you get that email.", + "start": 436.22, + "end": 437.12, + "words": [ + { + "word": " And", + "start": 436.22, + "end": 436.28, + "probability": 0.81982421875 + }, + { + "word": " that's", + "start": 436.28, + "end": 436.36, + "probability": 1.0 + }, + { + "word": " where", + "start": 436.36, + "end": 436.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 436.44, + "end": 436.54, + "probability": 1.0 + }, + { + "word": " get", + "start": 436.54, + "end": 436.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 436.68, + "end": 436.8, + "probability": 1.0 + }, + { + "word": " email.", + "start": 436.8, + "end": 437.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 189, + "text": "Yes.", + "start": 437.2, + "end": 437.5, + "words": [ + { + "word": " Yes.", + "start": 437.2, + "end": 437.5, + "probability": 0.0654296875 + } + ] + }, + { + "id": 190, + "text": "Right.", + "start": 437.52, + "end": 437.76, + "words": [ + { + "word": " Right.", + "start": 437.52, + "end": 437.76, + "probability": 0.99560546875 + } + ] + }, + { + "id": 191, + "text": "Then you accidentally click on the link.", + "start": 437.84, + "end": 439.34, + "words": [ + { + "word": " Then", + "start": 437.84, + "end": 437.98, + "probability": 0.9755859375 + }, + { + "word": " you", + "start": 437.98, + "end": 438.22, + "probability": 1.0 + }, + { + "word": " accidentally", + "start": 438.22, + "end": 438.52, + "probability": 0.99951171875 + }, + { + "word": " click", + "start": 438.52, + "end": 438.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 438.82, + "end": 438.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 438.98, + "end": 439.12, + "probability": 1.0 + }, + { + "word": " link.", + "start": 439.12, + "end": 439.34, + "probability": 1.0 + } + ] + }, + { + "id": 192, + "text": "Nigerian print.", + "start": 439.54, + "end": 440.1, + "words": [ + { + "word": " Nigerian", + "start": 439.54, + "end": 439.9, + "probability": 0.998046875 + }, + { + "word": " print.", + "start": 439.9, + "end": 440.1, + "probability": 0.74609375 + } + ] + }, + { + "id": 193, + "text": "Right.", + "start": 440.34, + "end": 440.7, + "words": [ + { + "word": " Right.", + "start": 440.34, + "end": 440.7, + "probability": 0.97802734375 + } + ] + }, + { + "id": 194, + "text": "That type of stuff.", + "start": 440.72, + "end": 441.64, + "words": [ + { + "word": " That", + "start": 440.72, + "end": 441.04, + "probability": 0.7802734375 + }, + { + "word": " type", + "start": 441.04, + "end": 441.32, + "probability": 0.81982421875 + }, + { + "word": " of", + "start": 441.32, + "end": 441.54, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 441.54, + "end": 441.64, + "probability": 1.0 + } + ] + }, + { + "id": 195, + "text": "Right.", + "start": 441.9, + "end": 442.26, + "words": [ + { + "word": " Right.", + "start": 441.9, + "end": 442.26, + "probability": 0.01174163818359375 + } + ] + }, + { + "id": 196, + "text": "Right.", + "start": 442.32, + "end": 442.68, + "words": [ + { + "word": " Right.", + "start": 442.32, + "end": 442.68, + "probability": 0.0030670166015625 + } + ] + }, + { + "id": 197, + "text": "Right.", + "start": 442.68, + "end": 442.7, + "words": [ + { + "word": " Right.", + "start": 442.68, + "end": 442.7, + "probability": 0.0241851806640625 + } + ] + }, + { + "id": 198, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 199, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 200, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 201, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 202, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 203, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 204, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 205, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 206, + "text": "", + "start": 442.7, + "end": 442.7, + "words": [] + }, + { + "id": 207, + "text": "Right.", + "start": 442.8, + "end": 443.16, + "words": [ + { + "word": " Right.", + "start": 442.8, + "end": 443.16, + "probability": 0.86767578125 + } + ] + }, + { + "id": 208, + "text": "Which is called spear phishing, which is, it's a very selected target group of people", + "start": 444.06, + "end": 450.76, + "words": [ + { + "word": " Which", + "start": 444.06, + "end": 444.14, + "probability": 0.042755126953125 + }, + { + "word": " is", + "start": 444.14, + "end": 444.2, + "probability": 1.0 + }, + { + "word": " called", + "start": 444.2, + "end": 444.4, + "probability": 0.98681640625 + }, + { + "word": " spear", + "start": 444.4, + "end": 444.84, + "probability": 0.91064453125 + }, + { + "word": " phishing,", + "start": 444.84, + "end": 445.36, + "probability": 0.95703125 + }, + { + "word": " which", + "start": 445.44, + "end": 445.94, + "probability": 1.0 + }, + { + "word": " is,", + "start": 445.94, + "end": 446.3, + "probability": 1.0 + }, + { + "word": " it's", + "start": 446.32, + "end": 447.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 447.1, + "end": 447.54, + "probability": 0.99755859375 + }, + { + "word": " very", + "start": 447.54, + "end": 447.96, + "probability": 1.0 + }, + { + "word": " selected", + "start": 447.96, + "end": 448.64, + "probability": 0.99853515625 + }, + { + "word": " target", + "start": 448.64, + "end": 449.2, + "probability": 0.99951171875 + }, + { + "word": " group", + "start": 449.2, + "end": 450.02, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 450.02, + "end": 450.44, + "probability": 1.0 + }, + { + "word": " people", + "start": 450.44, + "end": 450.76, + "probability": 1.0 + } + ] + }, + { + "id": 209, + "text": "that it's sent to using very specific content that's designed to make them click on it.", + "start": 450.76, + "end": 455.3, + "words": [ + { + "word": " that", + "start": 450.76, + "end": 450.98, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 450.98, + "end": 451.16, + "probability": 0.9814453125 + }, + { + "word": " sent", + "start": 451.16, + "end": 451.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 451.3, + "end": 451.48, + "probability": 1.0 + }, + { + "word": " using", + "start": 451.48, + "end": 451.74, + "probability": 0.88525390625 + }, + { + "word": " very", + "start": 451.74, + "end": 452.1, + "probability": 1.0 + }, + { + "word": " specific", + "start": 452.1, + "end": 452.42, + "probability": 1.0 + }, + { + "word": " content", + "start": 452.42, + "end": 452.9, + "probability": 1.0 + }, + { + "word": " that's", + "start": 452.9, + "end": 453.28, + "probability": 0.9873046875 + }, + { + "word": " designed", + "start": 453.28, + "end": 454.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 454.02, + "end": 454.38, + "probability": 1.0 + }, + { + "word": " make", + "start": 454.38, + "end": 454.56, + "probability": 1.0 + }, + { + "word": " them", + "start": 454.56, + "end": 454.76, + "probability": 1.0 + }, + { + "word": " click", + "start": 454.76, + "end": 454.94, + "probability": 1.0 + }, + { + "word": " on", + "start": 454.94, + "end": 455.12, + "probability": 1.0 + }, + { + "word": " it.", + "start": 455.12, + "end": 455.3, + "probability": 1.0 + } + ] + }, + { + "id": 210, + "text": "Somewhere around 80% of senators managed to pick up an infection very recently that basically", + "start": 456.28000000000003, + "end": 463.46, + "words": [ + { + "word": " Somewhere", + "start": 456.28000000000003, + "end": 456.8, + "probability": 0.99365234375 + }, + { + "word": " around", + "start": 456.8, + "end": 457.12, + "probability": 1.0 + }, + { + "word": " 80", + "start": 457.12, + "end": 457.42, + "probability": 0.99951171875 + }, + { + "word": "%", + "start": 457.42, + "end": 457.76, + "probability": 0.978515625 + }, + { + "word": " of", + "start": 457.76, + "end": 458.04, + "probability": 1.0 + }, + { + "word": " senators", + "start": 458.04, + "end": 458.48, + "probability": 0.9169921875 + }, + { + "word": " managed", + "start": 458.48, + "end": 459.72, + "probability": 0.916015625 + }, + { + "word": " to", + "start": 459.72, + "end": 460.0, + "probability": 1.0 + }, + { + "word": " pick", + "start": 460.0, + "end": 460.22, + "probability": 1.0 + }, + { + "word": " up", + "start": 460.22, + "end": 460.4, + "probability": 1.0 + }, + { + "word": " an", + "start": 460.4, + "end": 460.52, + "probability": 1.0 + }, + { + "word": " infection", + "start": 460.52, + "end": 460.86, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 460.86, + "end": 461.66, + "probability": 0.9990234375 + }, + { + "word": " recently", + "start": 461.66, + "end": 462.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 462.18, + "end": 462.72, + "probability": 0.9990234375 + }, + { + "word": " basically", + "start": 462.72, + "end": 463.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 211, + "text": "said, hey, you want to see, you know, a French princess naked?", + "start": 463.46, + "end": 465.86, + "words": [ + { + "word": " said,", + "start": 463.46, + "end": 463.8, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 463.88, + "end": 464.04, + "probability": 0.90966796875 + }, + { + "word": " you", + "start": 464.04, + "end": 464.2, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 464.2, + "end": 464.34, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 464.34, + "end": 464.44, + "probability": 1.0 + }, + { + "word": " see,", + "start": 464.44, + "end": 464.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 464.72, + "end": 464.86, + "probability": 1.0 + }, + { + "word": " know,", + "start": 464.86, + "end": 464.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 464.98, + "end": 465.06, + "probability": 0.76220703125 + }, + { + "word": " French", + "start": 465.06, + "end": 465.2, + "probability": 0.998046875 + }, + { + "word": " princess", + "start": 465.2, + "end": 465.5, + "probability": 0.99560546875 + }, + { + "word": " naked?", + "start": 465.5, + "end": 465.86, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "Oh.", + "start": 466.08, + "end": 466.56, + "words": [ + { + "word": " Oh.", + "start": 466.08, + "end": 466.56, + "probability": 0.3740234375 + } + ] + }, + { + "id": 213, + "text": "Mm-hmm.", + "start": 466.64, + "end": 467.2, + "words": [ + { + "word": " Mm", + "start": 466.64, + "end": 467.0, + "probability": 0.2398681640625 + }, + { + "word": "-hmm.", + "start": 467.0, + "end": 467.2, + "probability": 0.99072265625 + } + ] + }, + { + "id": 214, + "text": "Well, they clicked on the link and got malware on their computers.", + "start": 467.32, + "end": 470.46, + "words": [ + { + "word": " Well,", + "start": 467.32, + "end": 467.6, + "probability": 0.98974609375 + }, + { + "word": " they", + "start": 467.82, + "end": 468.32, + "probability": 1.0 + }, + { + "word": " clicked", + "start": 468.32, + "end": 468.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 468.58, + "end": 468.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 468.74, + "end": 468.84, + "probability": 1.0 + }, + { + "word": " link", + "start": 468.84, + "end": 469.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 469.02, + "end": 469.18, + "probability": 1.0 + }, + { + "word": " got", + "start": 469.18, + "end": 469.34, + "probability": 1.0 + }, + { + "word": " malware", + "start": 469.34, + "end": 469.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 469.74, + "end": 469.98, + "probability": 1.0 + }, + { + "word": " their", + "start": 469.98, + "end": 470.1, + "probability": 1.0 + }, + { + "word": " computers.", + "start": 470.1, + "end": 470.46, + "probability": 1.0 + } + ] + }, + { + "id": 215, + "text": "And it was, you know, specifically sent to Congress.", + "start": 470.96, + "end": 474.04, + "words": [ + { + "word": " And", + "start": 470.96, + "end": 471.48, + "probability": 0.88330078125 + }, + { + "word": " it", + "start": 471.48, + "end": 472.14, + "probability": 0.9833984375 + }, + { + "word": " was,", + "start": 472.14, + "end": 472.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 472.38, + "end": 472.56, + "probability": 1.0 + }, + { + "word": " know,", + "start": 472.56, + "end": 472.7, + "probability": 1.0 + }, + { + "word": " specifically", + "start": 472.7, + "end": 473.26, + "probability": 0.9990234375 + }, + { + "word": " sent", + "start": 473.26, + "end": 473.82, + "probability": 0.84375 + }, + { + "word": " to", + "start": 473.82, + "end": 473.94, + "probability": 0.9814453125 + }, + { + "word": " Congress.", + "start": 473.94, + "end": 474.04, + "probability": 0.32861328125 + } + ] + }, + { + "id": 216, + "text": "Congress and senators, you know, congressmen and senators.", + "start": 474.06, + "end": 476.0, + "words": [ + { + "word": " Congress", + "start": 474.06, + "end": 474.26, + "probability": 0.70849609375 + }, + { + "word": " and", + "start": 474.26, + "end": 474.44, + "probability": 0.9130859375 + }, + { + "word": " senators,", + "start": 474.44, + "end": 474.78, + "probability": 0.93798828125 + }, + { + "word": " you", + "start": 474.92, + "end": 475.06, + "probability": 0.88818359375 + }, + { + "word": " know,", + "start": 475.06, + "end": 475.16, + "probability": 1.0 + }, + { + "word": " congressmen", + "start": 475.2, + "end": 475.68, + "probability": 0.9345703125 + }, + { + "word": " and", + "start": 475.68, + "end": 475.78, + "probability": 0.6650390625 + }, + { + "word": " senators.", + "start": 475.78, + "end": 476.0, + "probability": 1.0 + } + ] + }, + { + "id": 217, + "text": "And, you know, they clicked on it.", + "start": 476.02, + "end": 478.64, + "words": [ + { + "word": " And,", + "start": 476.02, + "end": 476.34, + "probability": 0.84326171875 + }, + { + "word": " you", + "start": 476.44, + "end": 477.04, + "probability": 0.346435546875 + }, + { + "word": " know,", + "start": 477.04, + "end": 477.28, + "probability": 1.0 + }, + { + "word": " they", + "start": 477.32, + "end": 477.54, + "probability": 0.98291015625 + }, + { + "word": " clicked", + "start": 477.54, + "end": 478.12, + "probability": 0.99658203125 + }, + { + "word": " on", + "start": 478.12, + "end": 478.48, + "probability": 1.0 + }, + { + "word": " it.", + "start": 478.48, + "end": 478.64, + "probability": 1.0 + } + ] + }, + { + "id": 218, + "text": "Right.", + "start": 478.7, + "end": 478.94, + "words": [ + { + "word": " Right.", + "start": 478.7, + "end": 478.94, + "probability": 0.87548828125 + } + ] + }, + { + "id": 219, + "text": "And so now, right, now that they're the people that have to get their machines clean, they're", + "start": 479.02, + "end": 484.86, + "words": [ + { + "word": " And", + "start": 479.02, + "end": 479.32, + "probability": 0.984375 + }, + { + "word": " so", + "start": 479.32, + "end": 480.56, + "probability": 0.998046875 + }, + { + "word": " now,", + "start": 480.56, + "end": 481.0, + "probability": 0.99072265625 + }, + { + "word": " right,", + "start": 481.12, + "end": 481.42, + "probability": 1.0 + }, + { + "word": " now", + "start": 481.54, + "end": 481.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 481.68, + "end": 481.92, + "probability": 1.0 + }, + { + "word": " they're", + "start": 481.92, + "end": 482.12, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 482.12, + "end": 482.56, + "probability": 0.947265625 + }, + { + "word": " people", + "start": 482.56, + "end": 482.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 482.82, + "end": 483.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 483.06, + "end": 483.28, + "probability": 0.78271484375 + }, + { + "word": " to", + "start": 483.28, + "end": 483.5, + "probability": 0.94677734375 + }, + { + "word": " get", + "start": 483.5, + "end": 483.72, + "probability": 1.0 + }, + { + "word": " their", + "start": 483.72, + "end": 483.84, + "probability": 1.0 + }, + { + "word": " machines", + "start": 483.84, + "end": 484.32, + "probability": 1.0 + }, + { + "word": " clean,", + "start": 484.32, + "end": 484.66, + "probability": 0.75244140625 + }, + { + "word": " they're", + "start": 484.72, + "end": 484.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 220, + "text": "like, well, this, the cybersecurity stuff is out of control.", + "start": 484.86, + "end": 487.7, + "words": [ + { + "word": " like,", + "start": 484.86, + "end": 485.0, + "probability": 0.9990234375 + }, + { + "word": " well,", + "start": 485.08, + "end": 485.2, + "probability": 0.998046875 + }, + { + "word": " this,", + "start": 485.34, + "end": 485.54, + "probability": 0.6513671875 + }, + { + "word": " the", + "start": 485.64, + "end": 485.8, + "probability": 0.59912109375 + }, + { + "word": " cybersecurity", + "start": 485.8, + "end": 486.36, + "probability": 0.794921875 + }, + { + "word": " stuff", + "start": 486.36, + "end": 486.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 486.92, + "end": 487.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 487.1, + "end": 487.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 487.24, + "end": 487.34, + "probability": 1.0 + }, + { + "word": " control.", + "start": 487.34, + "end": 487.7, + "probability": 1.0 + } + ] + }, + { + "id": 221, + "text": "Right.", + "start": 488.1, + "end": 488.5, + "words": [ + { + "word": " Right.", + "start": 488.1, + "end": 488.5, + "probability": 0.9970703125 + } + ] + }, + { + "id": 222, + "text": "Look at what the internet did.", + "start": 488.56, + "end": 489.8, + "words": [ + { + "word": " Look", + "start": 488.56, + "end": 488.76, + "probability": 0.97412109375 + }, + { + "word": " at", + "start": 488.76, + "end": 488.96, + "probability": 1.0 + }, + { + "word": " what", + "start": 488.96, + "end": 489.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 489.06, + "end": 489.22, + "probability": 1.0 + }, + { + "word": " internet", + "start": 489.22, + "end": 489.52, + "probability": 0.7021484375 + }, + { + "word": " did.", + "start": 489.52, + "end": 489.8, + "probability": 1.0 + } + ] + }, + { + "id": 223, + "text": "It made me click on a link for naked pictures.", + "start": 489.88, + "end": 492.22, + "words": [ + { + "word": " It", + "start": 489.88, + "end": 489.94, + "probability": 0.99951171875 + }, + { + "word": " made", + "start": 489.94, + "end": 490.16, + "probability": 1.0 + }, + { + "word": " me", + "start": 490.16, + "end": 490.36, + "probability": 1.0 + }, + { + "word": " click", + "start": 490.36, + "end": 490.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 490.58, + "end": 490.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 490.88, + "end": 490.98, + "probability": 1.0 + }, + { + "word": " link", + "start": 490.98, + "end": 491.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 491.3, + "end": 491.5, + "probability": 1.0 + }, + { + "word": " naked", + "start": 491.5, + "end": 491.8, + "probability": 0.99560546875 + }, + { + "word": " pictures.", + "start": 491.8, + "end": 492.22, + "probability": 0.994140625 + } + ] + }, + { + "id": 224, + "text": "No, you're stupid.", + "start": 492.42, + "end": 493.94, + "words": [ + { + "word": " No,", + "start": 492.42, + "end": 492.72, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 492.84, + "end": 493.48, + "probability": 1.0 + }, + { + "word": " stupid.", + "start": 493.48, + "end": 493.94, + "probability": 1.0 + } + ] + }, + { + "id": 225, + "text": "That's what happened.", + "start": 494.14, + "end": 495.02, + "words": [ + { + "word": " That's", + "start": 494.14, + "end": 494.46, + "probability": 1.0 + }, + { + "word": " what", + "start": 494.46, + "end": 494.6, + "probability": 1.0 + }, + { + "word": " happened.", + "start": 494.6, + "end": 495.02, + "probability": 1.0 + } + ] + }, + { + "id": 226, + "text": "Yeah.", + "start": 495.2, + "end": 495.48, + "words": [ + { + "word": " Yeah.", + "start": 495.2, + "end": 495.48, + "probability": 0.79296875 + } + ] + }, + { + "id": 227, + "text": "And, oh, man, it really drives me bonkers that these people have the ability to pass laws.", + "start": 495.56, + "end": 501.94, + "words": [ + { + "word": " And,", + "start": 495.56, + "end": 495.96, + "probability": 0.93017578125 + }, + { + "word": " oh,", + "start": 496.08, + "end": 496.86, + "probability": 0.90771484375 + }, + { + "word": " man,", + "start": 497.2, + "end": 497.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 497.84, + "end": 498.04, + "probability": 0.6923828125 + }, + { + "word": " really", + "start": 498.04, + "end": 498.56, + "probability": 0.9990234375 + }, + { + "word": " drives", + "start": 498.56, + "end": 499.26, + "probability": 1.0 + }, + { + "word": " me", + "start": 499.26, + "end": 499.48, + "probability": 1.0 + }, + { + "word": " bonkers", + "start": 499.48, + "end": 500.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 500.02, + "end": 500.18, + "probability": 0.99853515625 + }, + { + "word": " these", + "start": 500.18, + "end": 500.34, + "probability": 1.0 + }, + { + "word": " people", + "start": 500.34, + "end": 500.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 500.58, + "end": 500.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 500.78, + "end": 500.96, + "probability": 1.0 + }, + { + "word": " ability", + "start": 500.96, + "end": 501.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 501.24, + "end": 501.42, + "probability": 1.0 + }, + { + "word": " pass", + "start": 501.42, + "end": 501.62, + "probability": 1.0 + }, + { + "word": " laws.", + "start": 501.62, + "end": 501.94, + "probability": 1.0 + } + ] + }, + { + "id": 228, + "text": "And, you know, I don't know.", + "start": 502.5, + "end": 503.64, + "words": [ + { + "word": " And,", + "start": 502.5, + "end": 502.9, + "probability": 0.9716796875 + }, + { + "word": " you", + "start": 502.9, + "end": 503.24, + "probability": 0.300537109375 + }, + { + "word": " know,", + "start": 503.24, + "end": 503.38, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 503.46, + "end": 503.64, + "probability": 0.57568359375 + }, + { + "word": " don't", + "start": 503.64, + "end": 503.64, + "probability": 0.6513671875 + }, + { + "word": " know.", + "start": 503.64, + "end": 503.64, + "probability": 0.734375 + } + ] + }, + { + "id": 229, + "text": "I will go.", + "start": 504.06, + "end": 504.62, + "words": [ + { + "word": " I", + "start": 504.06, + "end": 504.22, + "probability": 0.98779296875 + }, + { + "word": " will", + "start": 504.22, + "end": 504.48, + "probability": 1.0 + }, + { + "word": " go.", + "start": 504.48, + "end": 504.62, + "probability": 0.92724609375 + } + ] + }, + { + "id": 230, + "text": "I will just take it upon myself.", + "start": 504.78, + "end": 506.62, + "words": [ + { + "word": " I", + "start": 504.78, + "end": 505.14, + "probability": 0.99853515625 + }, + { + "word": " will", + "start": 505.14, + "end": 505.34, + "probability": 1.0 + }, + { + "word": " just", + "start": 505.34, + "end": 505.8, + "probability": 0.8505859375 + }, + { + "word": " take", + "start": 505.8, + "end": 506.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 506.08, + "end": 506.2, + "probability": 1.0 + }, + { + "word": " upon", + "start": 506.2, + "end": 506.32, + "probability": 0.99951171875 + }, + { + "word": " myself.", + "start": 506.32, + "end": 506.62, + "probability": 1.0 + } + ] + }, + { + "id": 231, + "text": "I will go to D.C.", + "start": 506.8, + "end": 507.52, + "words": [ + { + "word": " I", + "start": 506.8, + "end": 506.88, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 506.88, + "end": 506.96, + "probability": 1.0 + }, + { + "word": " go", + "start": 506.96, + "end": 507.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 507.1, + "end": 507.2, + "probability": 1.0 + }, + { + "word": " D", + "start": 507.2, + "end": 507.32, + "probability": 0.82177734375 + }, + { + "word": ".C.", + "start": 507.32, + "end": 507.52, + "probability": 1.0 + } + ] + }, + { + "id": 232, + "text": "All right.", + "start": 507.58, + "end": 508.04, + "words": [ + { + "word": " All", + "start": 507.58, + "end": 507.92, + "probability": 0.130126953125 + }, + { + "word": " right.", + "start": 507.92, + "end": 508.04, + "probability": 1.0 + } + ] + }, + { + "id": 233, + "text": "And help them.", + "start": 508.06, + "end": 508.58, + "words": [ + { + "word": " And", + "start": 508.06, + "end": 508.18, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 508.18, + "end": 508.4, + "probability": 0.9990234375 + }, + { + "word": " them.", + "start": 508.4, + "end": 508.58, + "probability": 1.0 + } + ] + }, + { + "id": 234, + "text": "All right.", + "start": 508.64, + "end": 509.04, + "words": [ + { + "word": " All", + "start": 508.64, + "end": 509.0, + "probability": 0.9775390625 + }, + { + "word": " right.", + "start": 509.0, + "end": 509.04, + "probability": 1.0 + } + ] + }, + { + "id": 235, + "text": "And just say, you know what?", + "start": 509.1, + "end": 509.74, + "words": [ + { + "word": " And", + "start": 509.1, + "end": 509.18, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 509.18, + "end": 509.3, + "probability": 1.0 + }, + { + "word": " say,", + "start": 509.3, + "end": 509.44, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 509.46, + "end": 509.56, + "probability": 0.99609375 + }, + { + "word": " know", + "start": 509.56, + "end": 509.58, + "probability": 1.0 + }, + { + "word": " what?", + "start": 509.58, + "end": 509.74, + "probability": 1.0 + } + ] + }, + { + "id": 236, + "text": "No.", + "start": 510.08, + "end": 510.44, + "words": [ + { + "word": " No.", + "start": 510.08, + "end": 510.44, + "probability": 1.0 + } + ] + }, + { + "id": 237, + "text": "No, don't do that.", + "start": 510.84, + "end": 511.66, + "words": [ + { + "word": " No,", + "start": 510.84, + "end": 511.2, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 511.24, + "end": 511.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 511.42, + "end": 511.52, + "probability": 1.0 + }, + { + "word": " that.", + "start": 511.52, + "end": 511.66, + "probability": 1.0 + } + ] + }, + { + "id": 238, + "text": "Because that's dumb.", + "start": 511.74, + "end": 512.52, + "words": [ + { + "word": " Because", + "start": 511.74, + "end": 512.1, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 512.1, + "end": 512.34, + "probability": 0.99755859375 + }, + { + "word": " dumb.", + "start": 512.34, + "end": 512.52, + "probability": 1.0 + } + ] + }, + { + "id": 239, + "text": "Really, there are other ways to deal with these problems.", + "start": 513.02, + "end": 515.86, + "words": [ + { + "word": " Really,", + "start": 513.02, + "end": 513.38, + "probability": 0.93603515625 + }, + { + "word": " there", + "start": 513.44, + "end": 513.72, + "probability": 0.97705078125 + }, + { + "word": " are", + "start": 513.72, + "end": 514.22, + "probability": 1.0 + }, + { + "word": " other", + "start": 514.22, + "end": 514.5, + "probability": 1.0 + }, + { + "word": " ways", + "start": 514.5, + "end": 514.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 514.8, + "end": 515.02, + "probability": 1.0 + }, + { + "word": " deal", + "start": 515.02, + "end": 515.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 515.22, + "end": 515.38, + "probability": 1.0 + }, + { + "word": " these", + "start": 515.38, + "end": 515.52, + "probability": 1.0 + }, + { + "word": " problems.", + "start": 515.52, + "end": 515.86, + "probability": 1.0 + } + ] + }, + { + "id": 240, + "text": "And it doesn't involve blacklisting everybody on the planet.", + "start": 516.22, + "end": 519.66, + "words": [ + { + "word": " And", + "start": 516.22, + "end": 516.58, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 516.58, + "end": 516.66, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 516.66, + "end": 516.94, + "probability": 1.0 + }, + { + "word": " involve", + "start": 516.94, + "end": 517.22, + "probability": 1.0 + }, + { + "word": " blacklisting", + "start": 517.22, + "end": 518.22, + "probability": 0.99951171875 + }, + { + "word": " everybody", + "start": 518.22, + "end": 518.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 518.86, + "end": 519.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 519.24, + "end": 519.34, + "probability": 1.0 + }, + { + "word": " planet.", + "start": 519.34, + "end": 519.66, + "probability": 1.0 + } + ] + }, + { + "id": 241, + "text": "Right.", + "start": 519.8, + "end": 520.1, + "words": [ + { + "word": " Right.", + "start": 519.8, + "end": 520.1, + "probability": 0.95849609375 + } + ] + }, + { + "id": 242, + "text": "Right.", + "start": 520.32, + "end": 520.56, + "words": [ + { + "word": " Right.", + "start": 520.32, + "end": 520.56, + "probability": 0.703125 + } + ] + }, + { + "id": 243, + "text": "What it really involves is being just a little bit, just a little bit smarter about the way", + "start": 520.6, + "end": 524.82, + "words": [ + { + "word": " What", + "start": 520.6, + "end": 520.78, + "probability": 0.990234375 + }, + { + "word": " it", + "start": 520.78, + "end": 520.9, + "probability": 1.0 + }, + { + "word": " really", + "start": 520.9, + "end": 521.2, + "probability": 1.0 + }, + { + "word": " involves", + "start": 521.2, + "end": 521.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 521.62, + "end": 521.84, + "probability": 1.0 + }, + { + "word": " being", + "start": 521.84, + "end": 521.98, + "probability": 1.0 + }, + { + "word": " just", + "start": 521.98, + "end": 522.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 522.16, + "end": 522.32, + "probability": 1.0 + }, + { + "word": " little", + "start": 522.32, + "end": 522.6, + "probability": 1.0 + }, + { + "word": " bit,", + "start": 522.6, + "end": 522.8, + "probability": 1.0 + }, + { + "word": " just", + "start": 522.84, + "end": 523.12, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 523.12, + "end": 523.26, + "probability": 1.0 + }, + { + "word": " little", + "start": 523.26, + "end": 523.52, + "probability": 1.0 + }, + { + "word": " bit", + "start": 523.52, + "end": 523.7, + "probability": 1.0 + }, + { + "word": " smarter", + "start": 523.7, + "end": 524.0, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 524.0, + "end": 524.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 524.5, + "end": 524.68, + "probability": 1.0 + }, + { + "word": " way", + "start": 524.68, + "end": 524.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 244, + "text": "you use technology.", + "start": 524.82, + "end": 525.54, + "words": [ + { + "word": " you", + "start": 524.82, + "end": 524.94, + "probability": 1.0 + }, + { + "word": " use", + "start": 524.94, + "end": 525.06, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 525.06, + "end": 525.54, + "probability": 1.0 + } + ] + }, + { + "id": 245, + "text": "All right.", + "start": 525.92, + "end": 526.38, + "words": [ + { + "word": " All", + "start": 525.92, + "end": 526.28, + "probability": 0.26904296875 + }, + { + "word": " right.", + "start": 526.28, + "end": 526.38, + "probability": 1.0 + } + ] + }, + { + "id": 246, + "text": "They should have some sort of class or something that they go to, especially if they're going", + "start": 526.44, + "end": 531.06, + "words": [ + { + "word": " They", + "start": 526.44, + "end": 526.56, + "probability": 0.99609375 + }, + { + "word": " should", + "start": 526.56, + "end": 526.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 526.68, + "end": 527.22, + "probability": 0.9521484375 + }, + { + "word": " some", + "start": 527.22, + "end": 527.76, + "probability": 1.0 + }, + { + "word": " sort", + "start": 527.76, + "end": 528.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 528.0, + "end": 528.1, + "probability": 1.0 + }, + { + "word": " class", + "start": 528.1, + "end": 528.36, + "probability": 1.0 + }, + { + "word": " or", + "start": 528.36, + "end": 528.64, + "probability": 1.0 + }, + { + "word": " something", + "start": 528.64, + "end": 528.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 528.9, + "end": 529.24, + "probability": 1.0 + }, + { + "word": " they", + "start": 529.24, + "end": 529.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 529.36, + "end": 529.52, + "probability": 1.0 + }, + { + "word": " to,", + "start": 529.52, + "end": 529.78, + "probability": 1.0 + }, + { + "word": " especially", + "start": 529.9, + "end": 530.56, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 530.56, + "end": 530.86, + "probability": 1.0 + }, + { + "word": " they're", + "start": 530.86, + "end": 530.98, + "probability": 1.0 + }, + { + "word": " going", + "start": 530.98, + "end": 531.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 247, + "text": "to be in a position that they're passing.", + "start": 531.06, + "end": 533.96, + "words": [ + { + "word": " to", + "start": 531.06, + "end": 531.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 531.18, + "end": 531.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 531.32, + "end": 531.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 531.54, + "end": 531.82, + "probability": 1.0 + }, + { + "word": " position", + "start": 531.82, + "end": 532.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 532.36, + "end": 533.32, + "probability": 1.0 + }, + { + "word": " they're", + "start": 533.32, + "end": 533.54, + "probability": 0.9970703125 + }, + { + "word": " passing.", + "start": 533.54, + "end": 533.96, + "probability": 0.47265625 + } + ] + }, + { + "id": 248, + "text": "They're passing laws with technology.", + "start": 533.96, + "end": 535.28, + "words": [ + { + "word": " They're", + "start": 533.96, + "end": 534.02, + "probability": 0.2158203125 + }, + { + "word": " passing", + "start": 534.02, + "end": 534.02, + "probability": 0.09814453125 + }, + { + "word": " laws", + "start": 534.02, + "end": 534.3, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 534.3, + "end": 534.82, + "probability": 0.998046875 + }, + { + "word": " technology.", + "start": 534.82, + "end": 535.28, + "probability": 1.0 + } + ] + }, + { + "id": 249, + "text": "Right.", + "start": 535.42, + "end": 535.56, + "words": [ + { + "word": " Right.", + "start": 535.42, + "end": 535.56, + "probability": 0.40087890625 + } + ] + }, + { + "id": 250, + "text": "Just a basic class that they could take at Pima Community College.", + "start": 535.56, + "end": 539.08, + "words": [ + { + "word": " Just", + "start": 535.56, + "end": 535.74, + "probability": 0.67138671875 + }, + { + "word": " a", + "start": 535.74, + "end": 535.76, + "probability": 1.0 + }, + { + "word": " basic", + "start": 535.76, + "end": 536.4, + "probability": 1.0 + }, + { + "word": " class", + "start": 536.4, + "end": 536.94, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 536.94, + "end": 537.34, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 537.34, + "end": 537.5, + "probability": 1.0 + }, + { + "word": " could", + "start": 537.5, + "end": 537.62, + "probability": 0.9892578125 + }, + { + "word": " take", + "start": 537.62, + "end": 537.88, + "probability": 1.0 + }, + { + "word": " at", + "start": 537.88, + "end": 538.06, + "probability": 0.99951171875 + }, + { + "word": " Pima", + "start": 538.06, + "end": 538.34, + "probability": 0.99267578125 + }, + { + "word": " Community", + "start": 538.34, + "end": 538.6, + "probability": 0.9990234375 + }, + { + "word": " College.", + "start": 538.6, + "end": 539.08, + "probability": 1.0 + } + ] + }, + { + "id": 251, + "text": "They can come down to my office.", + "start": 539.08, + "end": 540.18, + "words": [ + { + "word": " They", + "start": 539.08, + "end": 539.32, + "probability": 0.736328125 + }, + { + "word": " can", + "start": 539.32, + "end": 539.48, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 539.48, + "end": 539.58, + "probability": 1.0 + }, + { + "word": " down", + "start": 539.58, + "end": 539.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 539.7, + "end": 539.74, + "probability": 1.0 + }, + { + "word": " my", + "start": 539.74, + "end": 539.86, + "probability": 1.0 + }, + { + "word": " office.", + "start": 539.86, + "end": 540.18, + "probability": 1.0 + } + ] + }, + { + "id": 252, + "text": "Right.", + "start": 540.3, + "end": 540.62, + "words": [ + { + "word": " Right.", + "start": 540.3, + "end": 540.62, + "probability": 0.98095703125 + } + ] + }, + { + "id": 253, + "text": "I teach classes on how to stay safe on the Internet.", + "start": 540.66, + "end": 543.28, + "words": [ + { + "word": " I", + "start": 540.66, + "end": 540.92, + "probability": 0.99755859375 + }, + { + "word": " teach", + "start": 540.92, + "end": 541.22, + "probability": 0.99951171875 + }, + { + "word": " classes", + "start": 541.22, + "end": 541.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 541.58, + "end": 541.9, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 541.9, + "end": 542.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 542.12, + "end": 542.24, + "probability": 1.0 + }, + { + "word": " stay", + "start": 542.24, + "end": 542.44, + "probability": 1.0 + }, + { + "word": " safe", + "start": 542.44, + "end": 542.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 542.78, + "end": 542.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 542.94, + "end": 543.04, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 543.04, + "end": 543.28, + "probability": 0.488037109375 + } + ] + }, + { + "id": 254, + "text": "I do it almost every weekend.", + "start": 543.46, + "end": 545.16, + "words": [ + { + "word": " I", + "start": 543.46, + "end": 543.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 543.64, + "end": 543.76, + "probability": 1.0 + }, + { + "word": " it", + "start": 543.76, + "end": 543.86, + "probability": 1.0 + }, + { + "word": " almost", + "start": 543.86, + "end": 544.4, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 544.4, + "end": 544.72, + "probability": 1.0 + }, + { + "word": " weekend.", + "start": 544.72, + "end": 545.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 255, + "text": "They can come down, and I will teach them how not to get infections.", + "start": 545.62, + "end": 548.62, + "words": [ + { + "word": " They", + "start": 545.62, + "end": 545.98, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 545.98, + "end": 546.12, + "probability": 0.99609375 + }, + { + "word": " come", + "start": 546.12, + "end": 546.36, + "probability": 1.0 + }, + { + "word": " down,", + "start": 546.36, + "end": 546.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 546.72, + "end": 547.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 547.0, + "end": 547.1, + "probability": 1.0 + }, + { + "word": " will", + "start": 547.1, + "end": 547.24, + "probability": 1.0 + }, + { + "word": " teach", + "start": 547.24, + "end": 547.44, + "probability": 1.0 + }, + { + "word": " them", + "start": 547.44, + "end": 547.68, + "probability": 1.0 + }, + { + "word": " how", + "start": 547.68, + "end": 547.8, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 547.8, + "end": 548.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 548.0, + "end": 548.14, + "probability": 1.0 + }, + { + "word": " get", + "start": 548.14, + "end": 548.26, + "probability": 1.0 + }, + { + "word": " infections.", + "start": 548.26, + "end": 548.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 256, + "text": "We should send them a letter.", + "start": 548.94, + "end": 550.08, + "words": [ + { + "word": " We", + "start": 548.94, + "end": 549.26, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 549.26, + "end": 549.38, + "probability": 1.0 + }, + { + "word": " send", + "start": 549.38, + "end": 549.6, + "probability": 1.0 + }, + { + "word": " them", + "start": 549.6, + "end": 549.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 549.76, + "end": 549.86, + "probability": 1.0 + }, + { + "word": " letter.", + "start": 549.86, + "end": 550.08, + "probability": 1.0 + } + ] + }, + { + "id": 257, + "text": "We should.", + "start": 550.34, + "end": 550.96, + "words": [ + { + "word": " We", + "start": 550.34, + "end": 550.7, + "probability": 0.99951171875 + }, + { + "word": " should.", + "start": 550.7, + "end": 550.96, + "probability": 1.0 + } + ] + }, + { + "id": 258, + "text": "That's what we should really do.", + "start": 551.26, + "end": 552.44, + "words": [ + { + "word": " That's", + "start": 551.26, + "end": 551.62, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 551.62, + "end": 551.72, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 551.72, + "end": 551.86, + "probability": 1.0 + }, + { + "word": " should", + "start": 551.86, + "end": 552.04, + "probability": 1.0 + }, + { + "word": " really", + "start": 552.04, + "end": 552.3, + "probability": 0.99951171875 + }, + { + "word": " do.", + "start": 552.3, + "end": 552.44, + "probability": 0.998046875 + } + ] + }, + { + "id": 259, + "text": "Maybe a webinar.", + "start": 552.46, + "end": 553.04, + "words": [ + { + "word": " Maybe", + "start": 552.46, + "end": 552.56, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 552.56, + "end": 552.74, + "probability": 1.0 + }, + { + "word": " webinar.", + "start": 552.74, + "end": 553.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 260, + "text": "Ooh.", + "start": 553.72, + "end": 554.08, + "words": [ + { + "word": " Ooh.", + "start": 553.72, + "end": 554.08, + "probability": 0.94580078125 + } + ] + }, + { + "id": 261, + "text": "I don't know if they get it over the webinar.", + "start": 554.36, + "end": 555.96, + "words": [ + { + "word": " I", + "start": 554.36, + "end": 554.72, + "probability": 1.0 + }, + { + "word": " don't", + "start": 554.72, + "end": 555.04, + "probability": 1.0 + }, + { + "word": " know", + "start": 555.04, + "end": 555.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 555.1, + "end": 555.18, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 555.18, + "end": 555.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 555.26, + "end": 555.38, + "probability": 0.54248046875 + }, + { + "word": " it", + "start": 555.38, + "end": 555.5, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 555.5, + "end": 555.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 555.62, + "end": 555.72, + "probability": 1.0 + }, + { + "word": " webinar.", + "start": 555.72, + "end": 555.96, + "probability": 1.0 + } + ] + }, + { + "id": 262, + "text": "Right.", + "start": 556.18, + "end": 556.52, + "words": [ + { + "word": " Right.", + "start": 556.18, + "end": 556.52, + "probability": 0.947265625 + } + ] + }, + { + "id": 263, + "text": "They don't use email.", + "start": 556.56, + "end": 558.22, + "words": [ + { + "word": " They", + "start": 556.56, + "end": 556.74, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 556.74, + "end": 557.48, + "probability": 0.99609375 + }, + { + "word": " use", + "start": 557.48, + "end": 557.68, + "probability": 0.9951171875 + }, + { + "word": " email.", + "start": 557.68, + "end": 558.22, + "probability": 0.82568359375 + } + ] + }, + { + "id": 264, + "text": "I need to get right.", + "start": 558.26, + "end": 558.84, + "words": [ + { + "word": " I", + "start": 558.26, + "end": 558.38, + "probability": 0.998046875 + }, + { + "word": " need", + "start": 558.38, + "end": 558.44, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 558.44, + "end": 558.54, + "probability": 1.0 + }, + { + "word": " get", + "start": 558.54, + "end": 558.66, + "probability": 1.0 + }, + { + "word": " right.", + "start": 558.66, + "end": 558.84, + "probability": 0.876953125 + } + ] + }, + { + "id": 265, + "text": "Well, yeah, they're...", + "start": 558.86, + "end": 559.46, + "words": [ + { + "word": " Well,", + "start": 558.86, + "end": 559.04, + "probability": 0.72607421875 + }, + { + "word": " yeah,", + "start": 559.08, + "end": 559.1, + "probability": 0.92236328125 + }, + { + "word": " they're...", + "start": 559.16, + "end": 559.46, + "probability": 0.4423828125 + } + ] + }, + { + "id": 266, + "text": "I got to get it right in front of them.", + "start": 559.46, + "end": 560.9, + "words": [ + { + "word": " I", + "start": 559.46, + "end": 559.62, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 559.62, + "end": 559.62, + "probability": 0.74267578125 + }, + { + "word": " to", + "start": 559.62, + "end": 559.86, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 559.86, + "end": 560.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 560.4, + "end": 560.52, + "probability": 0.81298828125 + }, + { + "word": " right", + "start": 560.52, + "end": 560.6, + "probability": 1.0 + }, + { + "word": " in", + "start": 560.6, + "end": 560.72, + "probability": 0.9970703125 + }, + { + "word": " front", + "start": 560.72, + "end": 560.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 560.86, + "end": 560.9, + "probability": 0.98486328125 + }, + { + "word": " them.", + "start": 560.9, + "end": 560.9, + "probability": 0.919921875 + } + ] + }, + { + "id": 267, + "text": "Yeah, exactly.", + "start": 560.9, + "end": 561.34, + "words": [ + { + "word": " Yeah,", + "start": 560.9, + "end": 561.04, + "probability": 0.99072265625 + }, + { + "word": " exactly.", + "start": 561.04, + "end": 561.34, + "probability": 1.0 + } + ] + }, + { + "id": 268, + "text": "Right in their face.", + "start": 561.5, + "end": 562.3, + "words": [ + { + "word": " Right", + "start": 561.5, + "end": 561.74, + "probability": 0.994140625 + }, + { + "word": " in", + "start": 561.74, + "end": 561.86, + "probability": 0.95068359375 + }, + { + "word": " their", + "start": 561.86, + "end": 562.1, + "probability": 1.0 + }, + { + "word": " face.", + "start": 562.1, + "end": 562.3, + "probability": 1.0 + } + ] + }, + { + "id": 269, + "text": "Right in their face.", + "start": 562.34, + "end": 562.46, + "words": [ + { + "word": " Right", + "start": 562.34, + "end": 562.46, + "probability": 0.0234832763671875 + }, + { + "word": " in", + "start": 562.46, + "end": 562.46, + "probability": 0.86328125 + }, + { + "word": " their", + "start": 562.46, + "end": 562.46, + "probability": 0.9931640625 + }, + { + "word": " face.", + "start": 562.46, + "end": 562.46, + "probability": 0.99560546875 + } + ] + }, + { + "id": 270, + "text": "Because they are just...", + "start": 562.46, + "end": 563.2, + "words": [ + { + "word": " Because", + "start": 562.46, + "end": 562.56, + "probability": 0.978515625 + }, + { + "word": " they", + "start": 562.56, + "end": 562.7, + "probability": 1.0 + }, + { + "word": " are", + "start": 562.7, + "end": 562.84, + "probability": 0.9990234375 + }, + { + "word": " just...", + "start": 562.84, + "end": 563.2, + "probability": 0.9951171875 + } + ] + }, + { + "id": 271, + "text": "They don't know how to do this, and that's the part that bothers me.", + "start": 563.96, + "end": 567.62, + "words": [ + { + "word": " They", + "start": 563.96, + "end": 564.06, + "probability": 0.8232421875 + }, + { + "word": " don't", + "start": 564.06, + "end": 564.42, + "probability": 1.0 + }, + { + "word": " know", + "start": 564.42, + "end": 564.58, + "probability": 1.0 + }, + { + "word": " how", + "start": 564.58, + "end": 564.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 564.9, + "end": 565.16, + "probability": 1.0 + }, + { + "word": " do", + "start": 565.16, + "end": 565.36, + "probability": 1.0 + }, + { + "word": " this,", + "start": 565.36, + "end": 565.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 565.78, + "end": 566.06, + "probability": 1.0 + }, + { + "word": " that's", + "start": 566.06, + "end": 566.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 566.62, + "end": 566.72, + "probability": 1.0 + }, + { + "word": " part", + "start": 566.72, + "end": 566.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 566.96, + "end": 567.1, + "probability": 1.0 + }, + { + "word": " bothers", + "start": 567.1, + "end": 567.34, + "probability": 1.0 + }, + { + "word": " me.", + "start": 567.34, + "end": 567.62, + "probability": 1.0 + } + ] + }, + { + "id": 272, + "text": "You know what, Harry?", + "start": 567.78, + "end": 568.6, + "words": [ + { + "word": " You", + "start": 567.78, + "end": 568.1, + "probability": 0.99853515625 + }, + { + "word": " know", + "start": 568.1, + "end": 568.2, + "probability": 1.0 + }, + { + "word": " what,", + "start": 568.2, + "end": 568.36, + "probability": 1.0 + }, + { + "word": " Harry?", + "start": 568.42, + "end": 568.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 273, + "text": "You know what time it is?", + "start": 568.82, + "end": 569.6, + "words": [ + { + "word": " You", + "start": 568.82, + "end": 568.96, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 568.96, + "end": 569.02, + "probability": 1.0 + }, + { + "word": " what", + "start": 569.02, + "end": 569.12, + "probability": 1.0 + }, + { + "word": " time", + "start": 569.12, + "end": 569.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 569.26, + "end": 569.44, + "probability": 1.0 + }, + { + "word": " is?", + "start": 569.44, + "end": 569.6, + "probability": 1.0 + } + ] + }, + { + "id": 274, + "text": "It must be time for some music.", + "start": 569.7, + "end": 570.94, + "words": [ + { + "word": " It", + "start": 569.7, + "end": 569.84, + "probability": 0.9990234375 + }, + { + "word": " must", + "start": 569.84, + "end": 569.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 569.98, + "end": 570.14, + "probability": 1.0 + }, + { + "word": " time", + "start": 570.14, + "end": 570.34, + "probability": 1.0 + }, + { + "word": " for", + "start": 570.34, + "end": 570.5, + "probability": 1.0 + }, + { + "word": " some", + "start": 570.5, + "end": 570.64, + "probability": 1.0 + }, + { + "word": " music.", + "start": 570.64, + "end": 570.94, + "probability": 1.0 + } + ] + }, + { + "id": 275, + "text": "It is.", + "start": 570.96, + "end": 571.46, + "words": [ + { + "word": " It", + "start": 570.96, + "end": 571.18, + "probability": 0.998046875 + }, + { + "word": " is.", + "start": 571.18, + "end": 571.46, + "probability": 1.0 + } + ] + }, + { + "id": 276, + "text": "Hey.", + "start": 571.48, + "end": 571.8, + "words": [ + { + "word": " Hey.", + "start": 571.48, + "end": 571.8, + "probability": 0.1282958984375 + } + ] + }, + { + "id": 277, + "text": "Let's do it.", + "start": 572.22, + "end": 572.82, + "words": [ + { + "word": " Let's", + "start": 572.22, + "end": 572.54, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 572.54, + "end": 572.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 572.6, + "end": 572.82, + "probability": 1.0 + } + ] + }, + { + "id": 278, + "text": "All right.", + "start": 573.36, + "end": 573.82, + "words": [ + { + "word": " All", + "start": 573.36, + "end": 573.68, + "probability": 0.97802734375 + }, + { + "word": " right.", + "start": 573.68, + "end": 573.82, + "probability": 1.0 + } + ] + }, + { + "id": 279, + "text": "So when we get back, I will probably rant and complain a little bit more.", + "start": 573.84, + "end": 577.7, + "words": [ + { + "word": " So", + "start": 573.84, + "end": 573.98, + "probability": 0.962890625 + }, + { + "word": " when", + "start": 573.98, + "end": 574.1, + "probability": 0.83984375 + }, + { + "word": " we", + "start": 574.1, + "end": 574.2, + "probability": 1.0 + }, + { + "word": " get", + "start": 574.2, + "end": 574.34, + "probability": 1.0 + }, + { + "word": " back,", + "start": 574.34, + "end": 574.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 574.76, + "end": 575.36, + "probability": 1.0 + }, + { + "word": " will", + "start": 575.36, + "end": 575.74, + "probability": 1.0 + }, + { + "word": " probably", + "start": 575.74, + "end": 576.08, + "probability": 1.0 + }, + { + "word": " rant", + "start": 576.08, + "end": 576.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 576.52, + "end": 576.68, + "probability": 1.0 + }, + { + "word": " complain", + "start": 576.68, + "end": 576.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 576.94, + "end": 577.2, + "probability": 1.0 + }, + { + "word": " little", + "start": 577.2, + "end": 577.3, + "probability": 1.0 + }, + { + "word": " bit", + "start": 577.3, + "end": 577.44, + "probability": 1.0 + }, + { + "word": " more.", + "start": 577.44, + "end": 577.7, + "probability": 1.0 + } + ] + }, + { + "id": 280, + "text": "Also, we're going to talk about the specials of the week down at the shop.", + "start": 578.02, + "end": 580.08, + "words": [ + { + "word": " Also,", + "start": 578.02, + "end": 578.34, + "probability": 0.9990234375 + }, + { + "word": " we're", + "start": 578.4, + "end": 578.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 578.48, + "end": 578.54, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 578.54, + "end": 578.54, + "probability": 1.0 + }, + { + "word": " talk", + "start": 578.54, + "end": 578.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 578.7, + "end": 578.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 578.84, + "end": 578.96, + "probability": 1.0 + }, + { + "word": " specials", + "start": 578.96, + "end": 579.4, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 579.4, + "end": 579.4, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 579.4, + "end": 579.48, + "probability": 1.0 + }, + { + "word": " week", + "start": 579.48, + "end": 579.64, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 579.64, + "end": 579.8, + "probability": 0.99658203125 + }, + { + "word": " at", + "start": 579.8, + "end": 579.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 579.88, + "end": 579.94, + "probability": 0.99609375 + }, + { + "word": " shop.", + "start": 579.94, + "end": 580.08, + "probability": 0.99072265625 + } + ] + }, + { + "id": 281, + "text": "We're going to save you a bunch of money if you're looking to get your network looked", + "start": 580.14, + "end": 582.58, + "words": [ + { + "word": " We're", + "start": 580.14, + "end": 580.3, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 580.3, + "end": 580.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 580.36, + "end": 580.4, + "probability": 1.0 + }, + { + "word": " save", + "start": 580.4, + "end": 580.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 580.56, + "end": 580.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 580.68, + "end": 580.72, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 580.72, + "end": 580.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 580.94, + "end": 581.0, + "probability": 1.0 + }, + { + "word": " money", + "start": 581.0, + "end": 581.16, + "probability": 1.0 + }, + { + "word": " if", + "start": 581.16, + "end": 581.28, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 581.28, + "end": 581.36, + "probability": 1.0 + }, + { + "word": " looking", + "start": 581.36, + "end": 581.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 581.5, + "end": 581.64, + "probability": 1.0 + }, + { + "word": " get", + "start": 581.64, + "end": 581.72, + "probability": 1.0 + }, + { + "word": " your", + "start": 581.72, + "end": 581.88, + "probability": 1.0 + }, + { + "word": " network", + "start": 581.88, + "end": 582.34, + "probability": 1.0 + }, + { + "word": " looked", + "start": 582.34, + "end": 582.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 282, + "text": "at or if you want to build a website.", + "start": 582.58, + "end": 584.06, + "words": [ + { + "word": " at", + "start": 582.58, + "end": 582.78, + "probability": 1.0 + }, + { + "word": " or", + "start": 582.78, + "end": 583.06, + "probability": 0.86083984375 + }, + { + "word": " if", + "start": 583.06, + "end": 583.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 583.26, + "end": 583.36, + "probability": 1.0 + }, + { + "word": " want", + "start": 583.36, + "end": 583.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 583.48, + "end": 583.58, + "probability": 1.0 + }, + { + "word": " build", + "start": 583.58, + "end": 583.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 583.7, + "end": 583.82, + "probability": 1.0 + }, + { + "word": " website.", + "start": 583.82, + "end": 584.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 283, + "text": "Yeah.", + "start": 584.28, + "end": 584.58, + "words": [ + { + "word": " Yeah.", + "start": 584.28, + "end": 584.58, + "probability": 0.97509765625 + } + ] + }, + { + "id": 284, + "text": "So stick around, and we'll be right back.", + "start": 584.62, + "end": 586.42, + "words": [ + { + "word": " So", + "start": 584.62, + "end": 584.8, + "probability": 0.99462890625 + }, + { + "word": " stick", + "start": 584.8, + "end": 585.3, + "probability": 0.99951171875 + }, + { + "word": " around,", + "start": 585.3, + "end": 585.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 585.68, + "end": 585.84, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 585.84, + "end": 585.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 585.98, + "end": 586.08, + "probability": 1.0 + }, + { + "word": " right", + "start": 586.08, + "end": 586.2, + "probability": 1.0 + }, + { + "word": " back.", + "start": 586.2, + "end": 586.42, + "probability": 1.0 + } + ] + }, + { + "id": 285, + "text": "We're down.", + "start": 586.42, + "end": 587.42, + "words": [ + { + "word": " We're", + "start": 586.42, + "end": 587.16, + "probability": 0.472412109375 + }, + { + "word": " down.", + "start": 587.16, + "end": 587.42, + "probability": 0.44384765625 + } + ] + }, + { + "id": 286, + "text": "All right.", + "start": 587.74, + "end": 588.66, + "words": [ + { + "word": " All", + "start": 587.74, + "end": 588.34, + "probability": 0.8359375 + }, + { + "word": " right.", + "start": 588.34, + "end": 588.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 287, + "text": "Computer troubles?", + "start": 593.2, + "end": 594.28, + "words": [ + { + "word": " Computer", + "start": 593.2, + "end": 593.8, + "probability": 0.9580078125 + }, + { + "word": " troubles?", + "start": 593.8, + "end": 594.28, + "probability": 0.99267578125 + } + ] + }, + { + "id": 288, + "text": "Need some advice?", + "start": 594.58, + "end": 595.52, + "words": [ + { + "word": " Need", + "start": 594.58, + "end": 595.04, + "probability": 1.0 + }, + { + "word": " some", + "start": 595.04, + "end": 595.24, + "probability": 1.0 + }, + { + "word": " advice?", + "start": 595.24, + "end": 595.52, + "probability": 1.0 + } + ] + }, + { + "id": 289, + "text": "Call in now.", + "start": 595.84, + "end": 596.52, + "words": [ + { + "word": " Call", + "start": 595.84, + "end": 596.14, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 596.14, + "end": 596.32, + "probability": 0.99609375 + }, + { + "word": " now.", + "start": 596.32, + "end": 596.52, + "probability": 1.0 + } + ] + }, + { + "id": 290, + "text": "Mike Swanson will be back after these messages.", + "start": 596.74, + "end": 598.98, + "words": [ + { + "word": " Mike", + "start": 596.74, + "end": 597.06, + "probability": 0.99951171875 + }, + { + "word": " Swanson", + "start": 597.06, + "end": 597.4, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 597.4, + "end": 597.64, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 597.64, + "end": 597.74, + "probability": 1.0 + }, + { + "word": " back", + "start": 597.74, + "end": 597.98, + "probability": 1.0 + }, + { + "word": " after", + "start": 597.98, + "end": 598.36, + "probability": 1.0 + }, + { + "word": " these", + "start": 598.36, + "end": 598.56, + "probability": 1.0 + }, + { + "word": " messages.", + "start": 598.56, + "end": 598.98, + "probability": 1.0 + } + ] + }, + { + "id": 291, + "text": "The Computer Guru Show.", + "start": 599.3, + "end": 600.62, + "words": [ + { + "word": " The", + "start": 599.3, + "end": 599.62, + "probability": 0.99853515625 + }, + { + "word": " Computer", + "start": 599.62, + "end": 599.9, + "probability": 0.998046875 + }, + { + "word": " Guru", + "start": 599.9, + "end": 600.24, + "probability": 0.99560546875 + }, + { + "word": " Show.", + "start": 600.24, + "end": 600.62, + "probability": 0.99267578125 + } + ] + }, + { + "id": 292, + "text": "AM 1030.", + "start": 600.8, + "end": 601.82, + "words": [ + { + "word": " AM", + "start": 600.8, + "end": 601.22, + "probability": 0.98046875 + }, + { + "word": " 1030.", + "start": 601.22, + "end": 601.82, + "probability": 0.94140625 + } + ] + }, + { + "id": 293, + "text": "KVOY.", + "start": 602.04, + "end": 602.64, + "words": [ + { + "word": " KVOY.", + "start": 602.04, + "end": 602.64, + "probability": 0.72802734375 + } + ] + }, + { + "id": 294, + "text": "The Voice.", + "start": 602.9, + "end": 603.56, + "words": [ + { + "word": " The", + "start": 602.9, + "end": 603.28, + "probability": 1.0 + }, + { + "word": " Voice.", + "start": 603.28, + "end": 603.56, + "probability": 0.9951171875 + } + ] + }, + { + "id": 295, + "text": "Whether you're dealing with hardware installation or, heaven forbid, a virus...", + "start": 607.08, + "end": 611.14, + "words": [ + { + "word": " Whether", + "start": 607.08, + "end": 607.68, + "probability": 0.990234375 + }, + { + "word": " you're", + "start": 607.68, + "end": 607.94, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 607.94, + "end": 608.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 608.2, + "end": 608.42, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 608.42, + "end": 608.7, + "probability": 0.99951171875 + }, + { + "word": " installation", + "start": 608.7, + "end": 609.06, + "probability": 0.9990234375 + }, + { + "word": " or,", + "start": 609.06, + "end": 609.58, + "probability": 0.99755859375 + }, + { + "word": " heaven", + "start": 609.6, + "end": 609.8, + "probability": 0.99951171875 + }, + { + "word": " forbid,", + "start": 609.8, + "end": 610.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 610.34, + "end": 610.62, + "probability": 1.0 + }, + { + "word": " virus...", + "start": 610.62, + "end": 611.14, + "probability": 0.56689453125 + } + ] + }, + { + "id": 296, + "text": "No.", + "start": 611.14, + "end": 611.24, + "words": [ + { + "word": " No.", + "start": 611.14, + "end": 611.24, + "probability": 0.951171875 + } + ] + }, + { + "id": 297, + "text": "No.", + "start": 611.4, + "end": 612.0, + "words": [ + { + "word": " No.", + "start": 611.4, + "end": 612.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 298, + "text": "No!", + "start": 612.2, + "end": 612.52, + "words": [ + { + "word": " No!", + "start": 612.2, + "end": 612.52, + "probability": 0.927734375 + } + ] + }, + { + "id": 299, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 612.9, + "end": 616.24, + "words": [ + { + "word": " Mike", + "start": 612.9, + "end": 613.5, + "probability": 0.90869140625 + }, + { + "word": " Swanson", + "start": 613.5, + "end": 613.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 613.96, + "end": 614.2, + "probability": 0.99951171875 + }, + { + "word": " answering", + "start": 614.2, + "end": 614.5, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 614.5, + "end": 614.84, + "probability": 0.99755859375 + }, + { + "word": " your", + "start": 614.84, + "end": 615.04, + "probability": 0.9970703125 + }, + { + "word": " questions", + "start": 615.04, + "end": 615.4, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 615.4, + "end": 615.72, + "probability": 0.984375 + }, + { + "word": " by", + "start": 615.72, + "end": 615.94, + "probability": 0.984375 + }, + { + "word": " one.", + "start": 615.94, + "end": 616.24, + "probability": 1.0 + } + ] + }, + { + "id": 300, + "text": "So call in or chat in with yours.", + "start": 616.42, + "end": 618.3, + "words": [ + { + "word": " So", + "start": 616.42, + "end": 616.66, + "probability": 0.88623046875 + }, + { + "word": " call", + "start": 616.66, + "end": 616.82, + "probability": 0.92431640625 + }, + { + "word": " in", + "start": 616.82, + "end": 617.06, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 617.06, + "end": 617.3, + "probability": 0.98828125 + }, + { + "word": " chat", + "start": 617.3, + "end": 617.56, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 617.56, + "end": 617.8, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 617.8, + "end": 618.08, + "probability": 0.99951171875 + }, + { + "word": " yours.", + "start": 618.08, + "end": 618.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 301, + "text": "The website?", + "start": 618.58, + "end": 619.3, + "words": [ + { + "word": " The", + "start": 618.58, + "end": 618.96, + "probability": 0.9990234375 + }, + { + "word": " website?", + "start": 618.96, + "end": 619.3, + "probability": 0.99755859375 + } + ] + }, + { + "id": 302, + "text": "Gurushow.com.", + "start": 619.76, + "end": 620.82, + "words": [ + { + "word": " Gurushow", + "start": 619.76, + "end": 620.24, + "probability": 0.7734375 + }, + { + "word": ".com.", + "start": 620.24, + "end": 620.82, + "probability": 1.0 + } + ] + }, + { + "id": 303, + "text": "Tune in, click in, and kick back.", + "start": 621.18, + "end": 623.42, + "words": [ + { + "word": " Tune", + "start": 621.18, + "end": 621.66, + "probability": 1.0 + }, + { + "word": " in,", + "start": 621.66, + "end": 621.88, + "probability": 1.0 + }, + { + "word": " click", + "start": 621.96, + "end": 622.32, + "probability": 1.0 + }, + { + "word": " in,", + "start": 622.32, + "end": 622.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 622.68, + "end": 622.98, + "probability": 1.0 + }, + { + "word": " kick", + "start": 622.98, + "end": 623.12, + "probability": 0.998046875 + }, + { + "word": " back.", + "start": 623.12, + "end": 623.42, + "probability": 1.0 + } + ] + }, + { + "id": 304, + "text": "This is the Computer Guru Show on AM 1030.", + "start": 623.64, + "end": 626.94, + "words": [ + { + "word": " This", + "start": 623.64, + "end": 624.06, + "probability": 1.0 + }, + { + "word": " is", + "start": 624.06, + "end": 624.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 624.56, + "end": 624.66, + "probability": 0.8740234375 + }, + { + "word": " Computer", + "start": 624.66, + "end": 624.9, + "probability": 0.99365234375 + }, + { + "word": " Guru", + "start": 624.9, + "end": 625.24, + "probability": 0.98388671875 + }, + { + "word": " Show", + "start": 625.24, + "end": 625.62, + "probability": 0.98095703125 + }, + { + "word": " on", + "start": 625.62, + "end": 626.04, + "probability": 0.9990234375 + }, + { + "word": " AM", + "start": 626.04, + "end": 626.36, + "probability": 0.99951171875 + }, + { + "word": " 1030.", + "start": 626.36, + "end": 626.94, + "probability": 0.69677734375 + } + ] + }, + { + "id": 305, + "text": "KVOY.", + "start": 627.4, + "end": 627.88, + "words": [ + { + "word": " KVOY.", + "start": 627.4, + "end": 627.88, + "probability": 0.78955078125 + } + ] + }, + { + "id": 306, + "text": "The Voice.", + "start": 627.94, + "end": 628.46, + "words": [ + { + "word": " The", + "start": 627.94, + "end": 628.2, + "probability": 0.92578125 + }, + { + "word": " Voice.", + "start": 628.2, + "end": 628.46, + "probability": 0.8349609375 + } + ] + }, + { + "id": 307, + "text": "So if you want to be part of the show, 790-2040, that's 520-790-2040.", + "start": 628.98, + "end": 633.92, + "words": [ + { + "word": " So", + "start": 628.98, + "end": 629.46, + "probability": 0.99462890625 + }, + { + "word": " if", + "start": 629.46, + "end": 629.56, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 629.56, + "end": 629.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 629.6, + "end": 629.7, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 629.7, + "end": 629.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 629.8, + "end": 629.88, + "probability": 1.0 + }, + { + "word": " part", + "start": 629.88, + "end": 630.04, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 630.04, + "end": 630.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 630.14, + "end": 630.22, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 630.22, + "end": 630.34, + "probability": 0.99951171875 + }, + { + "word": " 790", + "start": 630.4, + "end": 630.82, + "probability": 0.9970703125 + }, + { + "word": "-2040,", + "start": 630.82, + "end": 631.46, + "probability": 0.85009765625 + }, + { + "word": " that's", + "start": 631.62, + "end": 631.9, + "probability": 0.99951171875 + }, + { + "word": " 520", + "start": 631.9, + "end": 632.28, + "probability": 0.9970703125 + }, + { + "word": "-790", + "start": 632.28, + "end": 633.16, + "probability": 0.99951171875 + }, + { + "word": "-2040.", + "start": 633.16, + "end": 633.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 308, + "text": "I'm going to go ahead and continue complaining, right?", + "start": 634.06, + "end": 636.74, + "words": [ + { + "word": " I'm", + "start": 634.06, + "end": 634.52, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 634.52, + "end": 634.56, + "probability": 0.98828125 + }, + { + "word": " to", + "start": 634.56, + "end": 634.6, + "probability": 1.0 + }, + { + "word": " go", + "start": 634.6, + "end": 634.64, + "probability": 0.99658203125 + }, + { + "word": " ahead", + "start": 634.64, + "end": 634.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 634.74, + "end": 634.82, + "probability": 1.0 + }, + { + "word": " continue", + "start": 634.82, + "end": 635.24, + "probability": 1.0 + }, + { + "word": " complaining,", + "start": 635.24, + "end": 635.92, + "probability": 1.0 + }, + { + "word": " right?", + "start": 636.1, + "end": 636.74, + "probability": 0.970703125 + } + ] + }, + { + "id": 309, + "text": "Because during the break, there was really harsh language going on because, you know,", + "start": 636.88, + "end": 641.96, + "words": [ + { + "word": " Because", + "start": 636.88, + "end": 637.36, + "probability": 0.99951171875 + }, + { + "word": " during", + "start": 637.36, + "end": 637.86, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 637.86, + "end": 638.02, + "probability": 1.0 + }, + { + "word": " break,", + "start": 638.02, + "end": 638.26, + "probability": 1.0 + }, + { + "word": " there", + "start": 638.3, + "end": 638.44, + "probability": 1.0 + }, + { + "word": " was", + "start": 638.44, + "end": 638.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 638.62, + "end": 639.06, + "probability": 0.8056640625 + }, + { + "word": " harsh", + "start": 639.06, + "end": 639.46, + "probability": 1.0 + }, + { + "word": " language", + "start": 639.46, + "end": 639.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 639.78, + "end": 640.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 640.18, + "end": 640.5, + "probability": 1.0 + }, + { + "word": " because,", + "start": 640.5, + "end": 640.82, + "probability": 0.625 + }, + { + "word": " you", + "start": 641.0, + "end": 641.76, + "probability": 1.0 + }, + { + "word": " know,", + "start": 641.76, + "end": 641.96, + "probability": 1.0 + } + ] + }, + { + "id": 310, + "text": "we've been talking about getting the cameras in the studio, and I'm not even going to complain", + "start": 642.66, + "end": 645.86, + "words": [ + { + "word": " we've", + "start": 642.66, + "end": 643.14, + "probability": 1.0 + }, + { + "word": " been", + "start": 643.14, + "end": 643.22, + "probability": 1.0 + }, + { + "word": " talking", + "start": 643.22, + "end": 643.5, + "probability": 1.0 + }, + { + "word": " about", + "start": 643.5, + "end": 643.62, + "probability": 1.0 + }, + { + "word": " getting", + "start": 643.62, + "end": 643.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 643.8, + "end": 643.96, + "probability": 1.0 + }, + { + "word": " cameras", + "start": 643.96, + "end": 644.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 644.24, + "end": 644.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 644.4, + "end": 644.48, + "probability": 1.0 + }, + { + "word": " studio,", + "start": 644.48, + "end": 644.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 644.84, + "end": 645.02, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 645.02, + "end": 645.18, + "probability": 1.0 + }, + { + "word": " not", + "start": 645.18, + "end": 645.28, + "probability": 1.0 + }, + { + "word": " even", + "start": 645.28, + "end": 645.44, + "probability": 1.0 + }, + { + "word": " going", + "start": 645.44, + "end": 645.54, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 645.54, + "end": 645.64, + "probability": 1.0 + }, + { + "word": " complain", + "start": 645.64, + "end": 645.86, + "probability": 0.99609375 + } + ] + }, + { + "id": 311, + "text": "about that because it's not here yet.", + "start": 645.86, + "end": 647.44, + "words": [ + { + "word": " about", + "start": 645.86, + "end": 646.08, + "probability": 0.0726318359375 + }, + { + "word": " that", + "start": 646.08, + "end": 646.42, + "probability": 0.99755859375 + }, + { + "word": " because", + "start": 646.42, + "end": 646.64, + "probability": 0.94970703125 + }, + { + "word": " it's", + "start": 646.64, + "end": 646.82, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 646.82, + "end": 646.94, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 646.94, + "end": 647.16, + "probability": 0.99951171875 + }, + { + "word": " yet.", + "start": 647.16, + "end": 647.44, + "probability": 1.0 + } + ] + }, + { + "id": 312, + "text": "But, you know, there's some type of radio bureaucracy going on that basically doesn't allow me to", + "start": 647.58, + "end": 652.78, + "words": [ + { + "word": " But,", + "start": 647.58, + "end": 647.96, + "probability": 0.89697265625 + }, + { + "word": " you", + "start": 648.12, + "end": 648.62, + "probability": 0.99560546875 + }, + { + "word": " know,", + "start": 648.62, + "end": 648.8, + "probability": 1.0 + }, + { + "word": " there's", + "start": 648.82, + "end": 649.04, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 649.04, + "end": 649.16, + "probability": 0.9423828125 + }, + { + "word": " type", + "start": 649.16, + "end": 649.7, + "probability": 0.9853515625 + }, + { + "word": " of", + "start": 649.7, + "end": 649.92, + "probability": 1.0 + }, + { + "word": " radio", + "start": 649.92, + "end": 650.1, + "probability": 0.9970703125 + }, + { + "word": " bureaucracy", + "start": 650.1, + "end": 650.84, + "probability": 1.0 + }, + { + "word": " going", + "start": 650.84, + "end": 651.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 651.26, + "end": 651.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 651.56, + "end": 651.76, + "probability": 0.99951171875 + }, + { + "word": " basically", + "start": 651.76, + "end": 652.06, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 652.06, + "end": 652.44, + "probability": 1.0 + }, + { + "word": " allow", + "start": 652.44, + "end": 652.6, + "probability": 0.9990234375 + }, + { + "word": " me", + "start": 652.6, + "end": 652.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 652.7, + "end": 652.78, + "probability": 1.0 + } + ] + }, + { + "id": 313, + "text": "put cameras in here.", + "start": 652.78, + "end": 653.38, + "words": [ + { + "word": " put", + "start": 652.78, + "end": 652.88, + "probability": 1.0 + }, + { + "word": " cameras", + "start": 652.88, + "end": 653.16, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 653.16, + "end": 653.28, + "probability": 1.0 + }, + { + "word": " here.", + "start": 653.28, + "end": 653.38, + "probability": 1.0 + } + ] + }, + { + "id": 314, + "text": "But here's the bigger issue for me, is that, you know, I've kind of said it's really important", + "start": 653.48, + "end": 658.46, + "words": [ + { + "word": " But", + "start": 653.48, + "end": 653.94, + "probability": 0.9990234375 + }, + { + "word": " here's", + "start": 653.94, + "end": 654.26, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 654.26, + "end": 654.38, + "probability": 1.0 + }, + { + "word": " bigger", + "start": 654.38, + "end": 654.58, + "probability": 0.99951171875 + }, + { + "word": " issue", + "start": 654.58, + "end": 654.88, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 654.88, + "end": 655.14, + "probability": 1.0 + }, + { + "word": " me,", + "start": 655.14, + "end": 655.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 655.46, + "end": 655.72, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 655.72, + "end": 655.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 655.96, + "end": 656.06, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 656.06, + "end": 656.18, + "probability": 1.0 + }, + { + "word": " I've", + "start": 656.2, + "end": 656.64, + "probability": 0.99755859375 + }, + { + "word": " kind", + "start": 656.64, + "end": 656.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 656.88, + "end": 657.12, + "probability": 1.0 + }, + { + "word": " said", + "start": 657.12, + "end": 657.3, + "probability": 1.0 + }, + { + "word": " it's", + "start": 657.3, + "end": 657.56, + "probability": 0.75390625 + }, + { + "word": " really", + "start": 657.56, + "end": 657.9, + "probability": 0.9970703125 + }, + { + "word": " important", + "start": 657.9, + "end": 658.46, + "probability": 1.0 + } + ] + }, + { + "id": 315, + "text": "that the internet work!", + "start": 658.46, + "end": 659.98, + "words": [ + { + "word": " that", + "start": 658.46, + "end": 659.14, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 659.14, + "end": 659.28, + "probability": 0.99951171875 + }, + { + "word": " internet", + "start": 659.28, + "end": 659.54, + "probability": 0.74853515625 + }, + { + "word": " work!", + "start": 659.54, + "end": 659.98, + "probability": 0.99755859375 + } + ] + }, + { + "id": 316, + "text": "Holy crap!", + "start": 660.8399999999999, + "end": 661.76, + "words": [ + { + "word": " Holy", + "start": 660.8399999999999, + "end": 661.3, + "probability": 0.99853515625 + }, + { + "word": " crap!", + "start": 661.3, + "end": 661.76, + "probability": 1.0 + } + ] + }, + { + "id": 317, + "text": "There's no internet in the studio, and it makes me nuts!", + "start": 661.96, + "end": 665.48, + "words": [ + { + "word": " There's", + "start": 661.96, + "end": 662.28, + "probability": 1.0 + }, + { + "word": " no", + "start": 662.28, + "end": 662.44, + "probability": 1.0 + }, + { + "word": " internet", + "start": 662.44, + "end": 662.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 662.86, + "end": 663.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 663.26, + "end": 663.44, + "probability": 0.99755859375 + }, + { + "word": " studio,", + "start": 663.44, + "end": 664.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 664.14, + "end": 664.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 664.44, + "end": 664.54, + "probability": 1.0 + }, + { + "word": " makes", + "start": 664.54, + "end": 664.84, + "probability": 1.0 + }, + { + "word": " me", + "start": 664.84, + "end": 665.02, + "probability": 1.0 + }, + { + "word": " nuts!", + "start": 665.02, + "end": 665.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 318, + "text": "Okay, so, now that I am done...", + "start": 666.7199999999999, + "end": 669.28, + "words": [ + { + "word": " Okay,", + "start": 666.7199999999999, + "end": 667.18, + "probability": 0.8486328125 + }, + { + "word": " so,", + "start": 667.46, + "end": 667.82, + "probability": 1.0 + }, + { + "word": " now", + "start": 667.96, + "end": 668.46, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 668.46, + "end": 668.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 668.74, + "end": 668.88, + "probability": 1.0 + }, + { + "word": " am", + "start": 668.88, + "end": 669.06, + "probability": 0.99072265625 + }, + { + "word": " done...", + "start": 669.06, + "end": 669.28, + "probability": 0.8037109375 + } + ] + }, + { + "id": 319, + "text": "Did you lose the password?", + "start": 669.28, + "end": 670.52, + "words": [ + { + "word": " Did", + "start": 669.28, + "end": 669.44, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 669.44, + "end": 669.56, + "probability": 1.0 + }, + { + "word": " lose", + "start": 669.56, + "end": 669.76, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 669.76, + "end": 669.98, + "probability": 1.0 + }, + { + "word": " password?", + "start": 669.98, + "end": 670.52, + "probability": 1.0 + } + ] + }, + { + "id": 320, + "text": "No, I'm firmly connected to it, but there is no...", + "start": 670.64, + "end": 674.66, + "words": [ + { + "word": " No,", + "start": 670.64, + "end": 670.88, + "probability": 0.99853515625 + }, + { + "word": " I'm", + "start": 671.04, + "end": 671.6, + "probability": 0.8388671875 + }, + { + "word": " firmly", + "start": 671.6, + "end": 672.2, + "probability": 0.99951171875 + }, + { + "word": " connected", + "start": 672.2, + "end": 672.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 672.54, + "end": 672.84, + "probability": 1.0 + }, + { + "word": " it,", + "start": 672.84, + "end": 673.0, + "probability": 1.0 + }, + { + "word": " but", + "start": 673.06, + "end": 673.24, + "probability": 1.0 + }, + { + "word": " there", + "start": 673.24, + "end": 673.74, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 673.74, + "end": 673.92, + "probability": 0.787109375 + }, + { + "word": " no...", + "start": 673.92, + "end": 674.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 321, + "text": "No, I've been running...", + "start": 674.66, + "end": 675.78, + "words": [ + { + "word": " No,", + "start": 674.66, + "end": 675.1, + "probability": 0.254150390625 + }, + { + "word": " I've", + "start": 675.12, + "end": 675.38, + "probability": 1.0 + }, + { + "word": " been", + "start": 675.38, + "end": 675.5, + "probability": 1.0 + }, + { + "word": " running...", + "start": 675.5, + "end": 675.78, + "probability": 0.52587890625 + } + ] + }, + { + "id": 322, + "text": "You're slow over here, too.", + "start": 675.86, + "end": 676.62, + "words": [ + { + "word": " You're", + "start": 675.86, + "end": 675.94, + "probability": 0.343994140625 + }, + { + "word": " slow", + "start": 675.94, + "end": 675.94, + "probability": 0.6513671875 + }, + { + "word": " over", + "start": 675.94, + "end": 676.22, + "probability": 0.99755859375 + }, + { + "word": " here,", + "start": 676.22, + "end": 676.38, + "probability": 1.0 + }, + { + "word": " too.", + "start": 676.46, + "end": 676.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 323, + "text": "See?", + "start": 677.98, + "end": 678.4, + "words": [ + { + "word": " See?", + "start": 677.98, + "end": 678.4, + "probability": 0.869140625 + } + ] + }, + { + "id": 324, + "text": "Take a deep breath.", + "start": 680.76, + "end": 681.66, + "words": [ + { + "word": " Take", + "start": 680.76, + "end": 681.18, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 681.18, + "end": 681.28, + "probability": 1.0 + }, + { + "word": " deep", + "start": 681.28, + "end": 681.42, + "probability": 0.99951171875 + }, + { + "word": " breath.", + "start": 681.42, + "end": 681.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 325, + "text": "It's very zen-like at the moment.", + "start": 681.66, + "end": 683.48, + "words": [ + { + "word": " It's", + "start": 681.66, + "end": 682.08, + "probability": 0.98486328125 + }, + { + "word": " very", + "start": 682.08, + "end": 682.22, + "probability": 1.0 + }, + { + "word": " zen", + "start": 682.22, + "end": 682.62, + "probability": 0.63671875 + }, + { + "word": "-like", + "start": 682.62, + "end": 682.96, + "probability": 0.99755859375 + }, + { + "word": " at", + "start": 682.96, + "end": 683.22, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 683.22, + "end": 683.28, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 683.28, + "end": 683.48, + "probability": 1.0 + } + ] + }, + { + "id": 326, + "text": "Breathe, count to ten.", + "start": 683.54, + "end": 685.02, + "words": [ + { + "word": " Breathe,", + "start": 683.54, + "end": 683.92, + "probability": 0.70361328125 + }, + { + "word": " count", + "start": 684.36, + "end": 684.6, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 684.6, + "end": 684.86, + "probability": 1.0 + }, + { + "word": " ten.", + "start": 684.86, + "end": 685.02, + "probability": 0.85791015625 + } + ] + }, + { + "id": 327, + "text": "I'm tethering off of my phone in a cellular black hole just because the internet doesn't", + "start": 685.02, + "end": 690.12, + "words": [ + { + "word": " I'm", + "start": 685.02, + "end": 685.18, + "probability": 0.99658203125 + }, + { + "word": " tethering", + "start": 685.18, + "end": 685.62, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 685.62, + "end": 685.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 685.78, + "end": 685.96, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 685.96, + "end": 686.18, + "probability": 1.0 + }, + { + "word": " phone", + "start": 686.18, + "end": 686.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 686.66, + "end": 686.9, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 686.9, + "end": 687.0, + "probability": 1.0 + }, + { + "word": " cellular", + "start": 687.0, + "end": 687.5, + "probability": 0.99951171875 + }, + { + "word": " black", + "start": 687.5, + "end": 687.84, + "probability": 1.0 + }, + { + "word": " hole", + "start": 687.84, + "end": 688.2, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 688.2, + "end": 688.54, + "probability": 0.947265625 + }, + { + "word": " because", + "start": 688.54, + "end": 688.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 688.92, + "end": 689.6, + "probability": 1.0 + }, + { + "word": " internet", + "start": 689.6, + "end": 689.78, + "probability": 0.56591796875 + }, + { + "word": " doesn't", + "start": 689.78, + "end": 690.12, + "probability": 1.0 + } + ] + }, + { + "id": 328, + "text": "work in the studio right now.", + "start": 690.12, + "end": 691.18, + "words": [ + { + "word": " work", + "start": 690.12, + "end": 690.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 690.32, + "end": 690.46, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 690.46, + "end": 690.5, + "probability": 1.0 + }, + { + "word": " studio", + "start": 690.5, + "end": 690.72, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 690.72, + "end": 690.96, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 690.96, + "end": 691.18, + "probability": 1.0 + } + ] + }, + { + "id": 329, + "text": "I can't tether off my phone, so you've got to one-up.", + "start": 692.5, + "end": 694.72, + "words": [ + { + "word": " I", + "start": 692.5, + "end": 692.92, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 692.92, + "end": 693.18, + "probability": 1.0 + }, + { + "word": " tether", + "start": 693.18, + "end": 693.38, + "probability": 1.0 + }, + { + "word": " off", + "start": 693.38, + "end": 693.54, + "probability": 1.0 + }, + { + "word": " my", + "start": 693.54, + "end": 693.68, + "probability": 1.0 + }, + { + "word": " phone,", + "start": 693.68, + "end": 693.92, + "probability": 1.0 + }, + { + "word": " so", + "start": 694.0, + "end": 694.1, + "probability": 1.0 + }, + { + "word": " you've", + "start": 694.1, + "end": 694.3, + "probability": 0.890625 + }, + { + "word": " got", + "start": 694.3, + "end": 694.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 694.38, + "end": 694.5, + "probability": 0.99365234375 + }, + { + "word": " one", + "start": 694.5, + "end": 694.6, + "probability": 0.31884765625 + }, + { + "word": "-up.", + "start": 694.6, + "end": 694.72, + "probability": 0.8955078125 + } + ] + }, + { + "id": 330, + "text": "Yeah, all right.", + "start": 694.74, + "end": 695.74, + "words": [ + { + "word": " Yeah,", + "start": 694.74, + "end": 695.06, + "probability": 0.95068359375 + }, + { + "word": " all", + "start": 695.12, + "end": 695.46, + "probability": 0.92138671875 + }, + { + "word": " right.", + "start": 695.46, + "end": 695.74, + "probability": 1.0 + } + ] + }, + { + "id": 331, + "text": "So, let's talk about something that's a little more fun, shall we?", + "start": 696.12, + "end": 698.32, + "words": [ + { + "word": " So,", + "start": 696.12, + "end": 696.54, + "probability": 0.94921875 + }, + { + "word": " let's", + "start": 696.56, + "end": 696.7, + "probability": 1.0 + }, + { + "word": " talk", + "start": 696.7, + "end": 696.84, + "probability": 1.0 + }, + { + "word": " about", + "start": 696.84, + "end": 696.96, + "probability": 1.0 + }, + { + "word": " something", + "start": 696.96, + "end": 697.2, + "probability": 1.0 + }, + { + "word": " that's", + "start": 697.2, + "end": 697.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 697.42, + "end": 697.5, + "probability": 1.0 + }, + { + "word": " little", + "start": 697.5, + "end": 697.58, + "probability": 1.0 + }, + { + "word": " more", + "start": 697.58, + "end": 697.72, + "probability": 0.9990234375 + }, + { + "word": " fun,", + "start": 697.72, + "end": 698.0, + "probability": 1.0 + }, + { + "word": " shall", + "start": 698.02, + "end": 698.16, + "probability": 0.99951171875 + }, + { + "word": " we?", + "start": 698.16, + "end": 698.32, + "probability": 1.0 + } + ] + }, + { + "id": 332, + "text": "How about popcorn time?", + "start": 698.4, + "end": 699.32, + "words": [ + { + "word": " How", + "start": 698.4, + "end": 698.62, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 698.62, + "end": 698.72, + "probability": 1.0 + }, + { + "word": " popcorn", + "start": 698.72, + "end": 699.02, + "probability": 0.84619140625 + }, + { + "word": " time?", + "start": 699.02, + "end": 699.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 333, + "text": "Ooh.", + "start": 699.9200000000001, + "end": 700.34, + "words": [ + { + "word": " Ooh.", + "start": 699.9200000000001, + "end": 700.34, + "probability": 0.94677734375 + } + ] + }, + { + "id": 334, + "text": "So, this is an interesting experiment.", + "start": 701.44, + "end": 703.9, + "words": [ + { + "word": " So,", + "start": 701.44, + "end": 701.86, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 701.86, + "end": 702.28, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 702.28, + "end": 702.46, + "probability": 1.0 + }, + { + "word": " an", + "start": 702.46, + "end": 702.58, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 702.58, + "end": 702.88, + "probability": 1.0 + }, + { + "word": " experiment.", + "start": 702.88, + "end": 703.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 335, + "text": "It has to be late.", + "start": 704.28, + "end": 705.84, + "words": [ + { + "word": " It", + "start": 704.28, + "end": 704.7, + "probability": 0.39111328125 + }, + { + "word": " has", + "start": 704.7, + "end": 705.38, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 705.38, + "end": 705.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 705.56, + "end": 705.66, + "probability": 0.99951171875 + }, + { + "word": " late.", + "start": 705.66, + "end": 705.84, + "probability": 0.259765625 + } + ] + }, + { + "id": 336, + "text": "It's labeled as an experiment because that's how it started.", + "start": 705.86, + "end": 707.58, + "words": [ + { + "word": " It's", + "start": 705.86, + "end": 705.92, + "probability": 0.26953125 + }, + { + "word": " labeled", + "start": 705.92, + "end": 705.92, + "probability": 0.134765625 + }, + { + "word": " as", + "start": 705.92, + "end": 706.14, + "probability": 0.9873046875 + }, + { + "word": " an", + "start": 706.14, + "end": 706.3, + "probability": 0.99560546875 + }, + { + "word": " experiment", + "start": 706.3, + "end": 706.56, + "probability": 0.9912109375 + }, + { + "word": " because", + "start": 706.56, + "end": 706.82, + "probability": 0.84619140625 + }, + { + "word": " that's", + "start": 706.82, + "end": 707.14, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 707.14, + "end": 707.2, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 707.2, + "end": 707.32, + "probability": 0.998046875 + }, + { + "word": " started.", + "start": 707.32, + "end": 707.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 337, + "text": "It was a group of friends that got together.", + "start": 707.68, + "end": 708.82, + "words": [ + { + "word": " It", + "start": 707.68, + "end": 707.72, + "probability": 0.72802734375 + }, + { + "word": " was", + "start": 707.72, + "end": 707.78, + "probability": 0.986328125 + }, + { + "word": " a", + "start": 707.78, + "end": 707.82, + "probability": 0.99755859375 + }, + { + "word": " group", + "start": 707.82, + "end": 707.98, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 707.98, + "end": 708.08, + "probability": 0.9990234375 + }, + { + "word": " friends", + "start": 708.08, + "end": 708.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 708.3, + "end": 708.4, + "probability": 0.953125 + }, + { + "word": " got", + "start": 708.4, + "end": 708.5, + "probability": 0.998046875 + }, + { + "word": " together.", + "start": 708.5, + "end": 708.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 338, + "text": "They put together this very interesting group of technologies, right, where they built a", + "start": 708.88, + "end": 713.92, + "words": [ + { + "word": " They", + "start": 708.88, + "end": 708.96, + "probability": 0.9990234375 + }, + { + "word": " put", + "start": 708.96, + "end": 709.1, + "probability": 0.9990234375 + }, + { + "word": " together", + "start": 709.1, + "end": 709.38, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 709.38, + "end": 709.6, + "probability": 0.99853515625 + }, + { + "word": " very", + "start": 709.6, + "end": 709.96, + "probability": 0.9990234375 + }, + { + "word": " interesting", + "start": 709.96, + "end": 710.56, + "probability": 1.0 + }, + { + "word": " group", + "start": 710.56, + "end": 711.52, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 711.52, + "end": 711.98, + "probability": 1.0 + }, + { + "word": " technologies,", + "start": 711.98, + "end": 712.56, + "probability": 0.99951171875 + }, + { + "word": " right,", + "start": 712.94, + "end": 713.2, + "probability": 0.91552734375 + }, + { + "word": " where", + "start": 713.32, + "end": 713.38, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 713.38, + "end": 713.6, + "probability": 1.0 + }, + { + "word": " built", + "start": 713.6, + "end": 713.78, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 713.78, + "end": 713.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 339, + "text": "little software program that ties together about five different pieces of technology.", + "start": 713.92, + "end": 717.52, + "words": [ + { + "word": " little", + "start": 713.92, + "end": 714.02, + "probability": 0.99951171875 + }, + { + "word": " software", + "start": 714.02, + "end": 714.42, + "probability": 1.0 + }, + { + "word": " program", + "start": 714.42, + "end": 714.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 714.8, + "end": 715.04, + "probability": 0.99951171875 + }, + { + "word": " ties", + "start": 715.04, + "end": 715.3, + "probability": 1.0 + }, + { + "word": " together", + "start": 715.3, + "end": 715.64, + "probability": 1.0 + }, + { + "word": " about", + "start": 715.64, + "end": 715.9, + "probability": 0.99951171875 + }, + { + "word": " five", + "start": 715.9, + "end": 716.3, + "probability": 0.99755859375 + }, + { + "word": " different", + "start": 716.3, + "end": 716.56, + "probability": 1.0 + }, + { + "word": " pieces", + "start": 716.56, + "end": 716.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 716.86, + "end": 717.1, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 717.1, + "end": 717.52, + "probability": 1.0 + } + ] + }, + { + "id": 340, + "text": "Okay.", + "start": 717.74, + "end": 718.16, + "words": [ + { + "word": " Okay.", + "start": 717.74, + "end": 718.16, + "probability": 0.9443359375 + } + ] + }, + { + "id": 341, + "text": "All sort of randomly, and you install a little client on your machine.", + "start": 718.38, + "end": 722.54, + "words": [ + { + "word": " All", + "start": 718.38, + "end": 718.64, + "probability": 0.9990234375 + }, + { + "word": " sort", + "start": 718.64, + "end": 718.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 718.9, + "end": 719.02, + "probability": 1.0 + }, + { + "word": " randomly,", + "start": 719.02, + "end": 719.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 719.58, + "end": 720.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 720.4, + "end": 721.04, + "probability": 1.0 + }, + { + "word": " install", + "start": 721.04, + "end": 721.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 721.42, + "end": 721.56, + "probability": 1.0 + }, + { + "word": " little", + "start": 721.56, + "end": 721.68, + "probability": 1.0 + }, + { + "word": " client", + "start": 721.68, + "end": 721.94, + "probability": 0.98974609375 + }, + { + "word": " on", + "start": 721.94, + "end": 722.18, + "probability": 1.0 + }, + { + "word": " your", + "start": 722.18, + "end": 722.3, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 722.3, + "end": 722.54, + "probability": 1.0 + } + ] + }, + { + "id": 342, + "text": "You say, I want to watch this movie.", + "start": 722.58, + "end": 724.46, + "words": [ + { + "word": " You", + "start": 722.58, + "end": 722.8, + "probability": 0.998046875 + }, + { + "word": " say,", + "start": 722.8, + "end": 722.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 723.02, + "end": 723.14, + "probability": 0.99609375 + }, + { + "word": " want", + "start": 723.14, + "end": 723.3, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 723.3, + "end": 723.38, + "probability": 1.0 + }, + { + "word": " watch", + "start": 723.38, + "end": 723.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 723.58, + "end": 724.02, + "probability": 1.0 + }, + { + "word": " movie.", + "start": 724.02, + "end": 724.46, + "probability": 1.0 + } + ] + }, + { + "id": 343, + "text": "Ooh.", + "start": 724.92, + "end": 725.4, + "words": [ + { + "word": " Ooh.", + "start": 724.92, + "end": 725.4, + "probability": 0.81884765625 + } + ] + }, + { + "id": 344, + "text": "Any movie.", + "start": 725.56, + "end": 726.46, + "words": [ + { + "word": " Any", + "start": 725.56, + "end": 725.76, + "probability": 0.99853515625 + }, + { + "word": " movie.", + "start": 725.76, + "end": 726.46, + "probability": 1.0 + } + ] + }, + { + "id": 345, + "text": "And it starts playing on your computer nearly instantly.", + "start": 727.54, + "end": 730.96, + "words": [ + { + "word": " And", + "start": 727.54, + "end": 728.02, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 728.02, + "end": 728.5, + "probability": 0.9990234375 + }, + { + "word": " starts", + "start": 728.5, + "end": 728.82, + "probability": 1.0 + }, + { + "word": " playing", + "start": 728.82, + "end": 729.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 729.18, + "end": 729.52, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 729.52, + "end": 729.66, + "probability": 1.0 + }, + { + "word": " computer", + "start": 729.66, + "end": 730.06, + "probability": 1.0 + }, + { + "word": " nearly", + "start": 730.06, + "end": 730.44, + "probability": 0.99755859375 + }, + { + "word": " instantly.", + "start": 730.44, + "end": 730.96, + "probability": 1.0 + } + ] + }, + { + "id": 346, + "text": "Sounds better than a couple other programs.", + "start": 731.8, + "end": 734.28, + "words": [ + { + "word": " Sounds", + "start": 731.8, + "end": 732.28, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 732.28, + "end": 732.6, + "probability": 1.0 + }, + { + "word": " than", + "start": 732.6, + "end": 732.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 732.8, + "end": 733.02, + "probability": 0.9853515625 + }, + { + "word": " couple", + "start": 733.02, + "end": 733.68, + "probability": 1.0 + }, + { + "word": " other", + "start": 733.68, + "end": 733.84, + "probability": 0.99658203125 + }, + { + "word": " programs.", + "start": 733.84, + "end": 734.28, + "probability": 1.0 + } + ] + }, + { + "id": 347, + "text": "You know?", + "start": 734.34, + "end": 734.62, + "words": [ + { + "word": " You", + "start": 734.34, + "end": 734.62, + "probability": 0.5888671875 + }, + { + "word": " know?", + "start": 734.62, + "end": 734.62, + "probability": 0.904296875 + } + ] + }, + { + "id": 348, + "text": "You know?", + "start": 734.8, + "end": 735.04, + "words": [ + { + "word": " You", + "start": 734.8, + "end": 735.04, + "probability": 0.1239013671875 + }, + { + "word": " know?", + "start": 735.04, + "end": 735.04, + "probability": 0.904296875 + } + ] + }, + { + "id": 349, + "text": "You know?", + "start": 735.18, + "end": 735.66, + "words": [ + { + "word": " You", + "start": 735.18, + "end": 735.66, + "probability": 0.254638671875 + }, + { + "word": " know?", + "start": 735.66, + "end": 735.66, + "probability": 0.982421875 + } + ] + }, + { + "id": 350, + "text": "You know?", + "start": 735.66, + "end": 735.84, + "words": [ + { + "word": " You", + "start": 735.66, + "end": 735.84, + "probability": 0.708984375 + }, + { + "word": " know?", + "start": 735.84, + "end": 735.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 351, + "text": "", + "start": 735.84, + "end": 735.84, + "words": [] + }, + { + "id": 352, + "text": "", + "start": 735.84, + "end": 735.84, + "words": [] + }, + { + "id": 353, + "text": "", + "start": 735.84, + "end": 735.84, + "words": [] + }, + { + "id": 354, + "text": "", + "start": 735.84, + "end": 735.84, + "words": [] + }, + { + "id": 355, + "text": "And then, when it gets done, it says, okay, I'm done with all that content.", + "start": 735.84, + "end": 739.38, + "words": [ + { + "word": " And", + "start": 735.84, + "end": 736.0, + "probability": 0.4423828125 + }, + { + "word": " then,", + "start": 736.0, + "end": 736.02, + "probability": 0.53515625 + }, + { + "word": " when", + "start": 736.02, + "end": 736.22, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 736.22, + "end": 736.36, + "probability": 0.9990234375 + }, + { + "word": " gets", + "start": 736.36, + "end": 736.54, + "probability": 0.99609375 + }, + { + "word": " done,", + "start": 736.54, + "end": 736.78, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 736.98, + "end": 737.16, + "probability": 0.99609375 + }, + { + "word": " says,", + "start": 737.16, + "end": 737.94, + "probability": 0.9970703125 + }, + { + "word": " okay,", + "start": 738.0, + "end": 738.34, + "probability": 0.6640625 + }, + { + "word": " I'm", + "start": 738.44, + "end": 738.56, + "probability": 0.99853515625 + }, + { + "word": " done", + "start": 738.56, + "end": 738.68, + "probability": 1.0 + }, + { + "word": " with", + "start": 738.68, + "end": 738.8, + "probability": 1.0 + }, + { + "word": " all", + "start": 738.8, + "end": 738.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 738.92, + "end": 739.02, + "probability": 0.73876953125 + }, + { + "word": " content.", + "start": 739.02, + "end": 739.38, + "probability": 1.0 + } + ] + }, + { + "id": 356, + "text": "And so, basically, it's Netflix for pirates.", + "start": 739.68, + "end": 743.16, + "words": [ + { + "word": " And", + "start": 739.68, + "end": 739.86, + "probability": 0.73583984375 + }, + { + "word": " so,", + "start": 739.86, + "end": 740.76, + "probability": 0.95068359375 + }, + { + "word": " basically,", + "start": 740.76, + "end": 741.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 741.7, + "end": 742.04, + "probability": 1.0 + }, + { + "word": " Netflix", + "start": 742.04, + "end": 742.36, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 742.36, + "end": 742.78, + "probability": 0.99951171875 + }, + { + "word": " pirates.", + "start": 742.78, + "end": 743.16, + "probability": 0.74365234375 + } + ] + }, + { + "id": 357, + "text": "Now, they are, you know, the people who wrote it, they're like, we don't expect any legal", + "start": 743.54, + "end": 748.26, + "words": [ + { + "word": " Now,", + "start": 743.54, + "end": 744.02, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 744.12, + "end": 744.26, + "probability": 0.9599609375 + }, + { + "word": " are,", + "start": 744.26, + "end": 744.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 744.8, + "end": 745.52, + "probability": 0.95166015625 + }, + { + "word": " know,", + "start": 745.52, + "end": 745.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 745.64, + "end": 745.7, + "probability": 1.0 + }, + { + "word": " people", + "start": 745.7, + "end": 745.9, + "probability": 1.0 + }, + { + "word": " who", + "start": 745.9, + "end": 746.02, + "probability": 1.0 + }, + { + "word": " wrote", + "start": 746.02, + "end": 746.26, + "probability": 1.0 + }, + { + "word": " it,", + "start": 746.26, + "end": 746.42, + "probability": 1.0 + }, + { + "word": " they're", + "start": 746.5, + "end": 746.56, + "probability": 1.0 + }, + { + "word": " like,", + "start": 746.56, + "end": 747.14, + "probability": 0.98876953125 + }, + { + "word": " we", + "start": 747.26, + "end": 747.34, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 747.34, + "end": 747.52, + "probability": 1.0 + }, + { + "word": " expect", + "start": 747.52, + "end": 747.76, + "probability": 1.0 + }, + { + "word": " any", + "start": 747.76, + "end": 748.0, + "probability": 1.0 + }, + { + "word": " legal", + "start": 748.0, + "end": 748.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 358, + "text": "implications.", + "start": 748.26, + "end": 749.04, + "words": [ + { + "word": " implications.", + "start": 748.26, + "end": 749.04, + "probability": 1.0 + } + ] + }, + { + "id": 359, + "text": "All right?", + "start": 749.94, + "end": 750.58, + "words": [ + { + "word": " All", + "start": 749.94, + "end": 750.42, + "probability": 0.51513671875 + }, + { + "word": " right?", + "start": 750.42, + "end": 750.58, + "probability": 1.0 + } + ] + }, + { + "id": 360, + "text": "They don't host anything.", + "start": 750.6, + "end": 751.66, + "words": [ + { + "word": " They", + "start": 750.6, + "end": 750.98, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 750.98, + "end": 751.22, + "probability": 1.0 + }, + { + "word": " host", + "start": 751.22, + "end": 751.42, + "probability": 0.99951171875 + }, + { + "word": " anything.", + "start": 751.42, + "end": 751.66, + "probability": 1.0 + } + ] + }, + { + "id": 361, + "text": "They don't charge any memberships.", + "start": 752.02, + "end": 754.0, + "words": [ + { + "word": " They", + "start": 752.02, + "end": 752.34, + "probability": 1.0 + }, + { + "word": " don't", + "start": 752.34, + "end": 752.8, + "probability": 1.0 + }, + { + "word": " charge", + "start": 752.8, + "end": 753.02, + "probability": 1.0 + }, + { + "word": " any", + "start": 753.02, + "end": 753.24, + "probability": 1.0 + }, + { + "word": " memberships.", + "start": 753.24, + "end": 754.0, + "probability": 1.0 + } + ] + }, + { + "id": 362, + "text": "Nobody gets paid.", + "start": 754.0, + "end": 754.82, + "words": [ + { + "word": " Nobody", + "start": 754.0, + "end": 754.26, + "probability": 1.0 + }, + { + "word": " gets", + "start": 754.26, + "end": 754.54, + "probability": 1.0 + }, + { + "word": " paid.", + "start": 754.54, + "end": 754.82, + "probability": 1.0 + } + ] + }, + { + "id": 363, + "text": "There's no advertising.", + "start": 754.9, + "end": 755.54, + "words": [ + { + "word": " There's", + "start": 754.9, + "end": 755.06, + "probability": 1.0 + }, + { + "word": " no", + "start": 755.06, + "end": 755.14, + "probability": 1.0 + }, + { + "word": " advertising.", + "start": 755.14, + "end": 755.54, + "probability": 1.0 + } + ] + }, + { + "id": 364, + "text": "It's completely experimental, as they put it.", + "start": 756.2199999999999, + "end": 759.5, + "words": [ + { + "word": " It's", + "start": 756.2199999999999, + "end": 756.6999999999999, + "probability": 0.94091796875 + }, + { + "word": " completely", + "start": 756.6999999999999, + "end": 757.18, + "probability": 1.0 + }, + { + "word": " experimental,", + "start": 757.18, + "end": 758.36, + "probability": 1.0 + }, + { + "word": " as", + "start": 758.6, + "end": 759.04, + "probability": 1.0 + }, + { + "word": " they", + "start": 759.04, + "end": 759.18, + "probability": 1.0 + }, + { + "word": " put", + "start": 759.18, + "end": 759.34, + "probability": 1.0 + }, + { + "word": " it.", + "start": 759.34, + "end": 759.5, + "probability": 1.0 + } + ] + }, + { + "id": 365, + "text": "And there's no monetary gain involved.", + "start": 759.74, + "end": 763.42, + "words": [ + { + "word": " And", + "start": 759.74, + "end": 760.22, + "probability": 0.94873046875 + }, + { + "word": " there's", + "start": 760.22, + "end": 761.68, + "probability": 0.8505859375 + }, + { + "word": " no", + "start": 761.68, + "end": 762.22, + "probability": 0.99951171875 + }, + { + "word": " monetary", + "start": 762.22, + "end": 762.72, + "probability": 0.99951171875 + }, + { + "word": " gain", + "start": 762.72, + "end": 763.12, + "probability": 1.0 + }, + { + "word": " involved.", + "start": 763.12, + "end": 763.42, + "probability": 1.0 + } + ] + }, + { + "id": 366, + "text": "So, basically, the laws don't apply to them.", + "start": 763.52, + "end": 765.82, + "words": [ + { + "word": " So,", + "start": 763.52, + "end": 763.7, + "probability": 0.99462890625 + }, + { + "word": " basically,", + "start": 763.72, + "end": 763.9, + "probability": 0.9677734375 + }, + { + "word": " the", + "start": 764.22, + "end": 764.36, + "probability": 1.0 + }, + { + "word": " laws", + "start": 764.36, + "end": 764.6, + "probability": 1.0 + }, + { + "word": " don't", + "start": 764.6, + "end": 765.0, + "probability": 1.0 + }, + { + "word": " apply", + "start": 765.0, + "end": 765.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 765.3, + "end": 765.64, + "probability": 0.99755859375 + }, + { + "word": " them.", + "start": 765.64, + "end": 765.82, + "probability": 0.65478515625 + } + ] + }, + { + "id": 367, + "text": "Right.", + "start": 765.84, + "end": 766.28, + "words": [ + { + "word": " Right.", + "start": 765.84, + "end": 766.28, + "probability": 0.07757568359375 + } + ] + }, + { + "id": 368, + "text": "And they don't host anything.", + "start": 766.74, + "end": 767.78, + "words": [ + { + "word": " And", + "start": 766.74, + "end": 766.98, + "probability": 0.69482421875 + }, + { + "word": " they", + "start": 766.98, + "end": 767.14, + "probability": 0.9892578125 + }, + { + "word": " don't", + "start": 767.14, + "end": 767.32, + "probability": 1.0 + }, + { + "word": " host", + "start": 767.32, + "end": 767.54, + "probability": 0.99853515625 + }, + { + "word": " anything.", + "start": 767.54, + "end": 767.78, + "probability": 1.0 + } + ] + }, + { + "id": 369, + "text": "Also, laws don't apply to them.", + "start": 767.94, + "end": 770.42, + "words": [ + { + "word": " Also,", + "start": 767.94, + "end": 768.32, + "probability": 0.99853515625 + }, + { + "word": " laws", + "start": 768.5, + "end": 768.74, + "probability": 0.94091796875 + }, + { + "word": " don't", + "start": 768.74, + "end": 769.82, + "probability": 1.0 + }, + { + "word": " apply", + "start": 769.82, + "end": 769.98, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 769.98, + "end": 770.24, + "probability": 1.0 + }, + { + "word": " them.", + "start": 770.24, + "end": 770.42, + "probability": 1.0 + } + ] + }, + { + "id": 370, + "text": "So, it's a very interesting setup.", + "start": 771.14, + "end": 773.08, + "words": [ + { + "word": " So,", + "start": 771.14, + "end": 771.54, + "probability": 0.9873046875 + }, + { + "word": " it's", + "start": 771.64, + "end": 771.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 771.76, + "end": 771.78, + "probability": 1.0 + }, + { + "word": " very", + "start": 771.78, + "end": 772.12, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 772.12, + "end": 772.56, + "probability": 1.0 + }, + { + "word": " setup.", + "start": 772.56, + "end": 773.08, + "probability": 0.98486328125 + } + ] + }, + { + "id": 371, + "text": "So, it's like a middleman software, then.", + "start": 773.28, + "end": 775.28, + "words": [ + { + "word": " So,", + "start": 773.28, + "end": 773.48, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 773.5, + "end": 773.58, + "probability": 1.0 + }, + { + "word": " like", + "start": 773.58, + "end": 773.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 773.74, + "end": 773.86, + "probability": 1.0 + }, + { + "word": " middleman", + "start": 773.86, + "end": 774.36, + "probability": 0.98876953125 + }, + { + "word": " software,", + "start": 774.36, + "end": 774.8, + "probability": 0.9990234375 + }, + { + "word": " then.", + "start": 774.96, + "end": 775.28, + "probability": 1.0 + } + ] + }, + { + "id": 372, + "text": "Yeah.", + "start": 775.56, + "end": 775.96, + "words": [ + { + "word": " Yeah.", + "start": 775.56, + "end": 775.96, + "probability": 0.99609375 + } + ] + }, + { + "id": 373, + "text": "Basically, all it is, it's like a scraper.", + "start": 776.14, + "end": 778.74, + "words": [ + { + "word": " Basically,", + "start": 776.14, + "end": 776.54, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 776.74, + "end": 776.98, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 776.98, + "end": 777.2, + "probability": 1.0 + }, + { + "word": " is,", + "start": 777.2, + "end": 777.48, + "probability": 1.0 + }, + { + "word": " it's", + "start": 777.52, + "end": 777.94, + "probability": 0.865234375 + }, + { + "word": " like", + "start": 777.94, + "end": 778.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 778.04, + "end": 778.18, + "probability": 1.0 + }, + { + "word": " scraper.", + "start": 778.18, + "end": 778.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 374, + "text": "Okay.", + "start": 778.84, + "end": 779.24, + "words": [ + { + "word": " Okay.", + "start": 778.84, + "end": 779.24, + "probability": 0.9599609375 + } + ] + }, + { + "id": 375, + "text": "It goes out there.", + "start": 779.24, + "end": 780.12, + "words": [ + { + "word": " It", + "start": 779.24, + "end": 779.5, + "probability": 0.94677734375 + }, + { + "word": " goes", + "start": 779.5, + "end": 779.66, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 779.66, + "end": 779.86, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 779.86, + "end": 780.12, + "probability": 1.0 + } + ] + }, + { + "id": 376, + "text": "It finds the stuff it needs to find in order for you to do what you want to do.", + "start": 780.16, + "end": 784.4, + "words": [ + { + "word": " It", + "start": 780.16, + "end": 780.32, + "probability": 1.0 + }, + { + "word": " finds", + "start": 780.32, + "end": 780.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 780.68, + "end": 780.86, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 780.86, + "end": 781.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 781.08, + "end": 781.24, + "probability": 1.0 + }, + { + "word": " needs", + "start": 781.24, + "end": 781.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 781.44, + "end": 781.62, + "probability": 1.0 + }, + { + "word": " find", + "start": 781.62, + "end": 781.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 781.9, + "end": 782.04, + "probability": 0.99755859375 + }, + { + "word": " order", + "start": 782.04, + "end": 782.2, + "probability": 1.0 + }, + { + "word": " for", + "start": 782.2, + "end": 782.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 782.32, + "end": 782.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 782.44, + "end": 782.72, + "probability": 1.0 + }, + { + "word": " do", + "start": 782.72, + "end": 783.28, + "probability": 1.0 + }, + { + "word": " what", + "start": 783.28, + "end": 783.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 783.58, + "end": 783.78, + "probability": 1.0 + }, + { + "word": " want", + "start": 783.78, + "end": 783.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 783.98, + "end": 784.14, + "probability": 0.99951171875 + }, + { + "word": " do.", + "start": 784.14, + "end": 784.4, + "probability": 1.0 + } + ] + }, + { + "id": 377, + "text": "And then, it erases itself when it's done.", + "start": 784.78, + "end": 787.26, + "words": [ + { + "word": " And", + "start": 784.78, + "end": 785.18, + "probability": 0.998046875 + }, + { + "word": " then,", + "start": 785.18, + "end": 785.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 785.56, + "end": 786.12, + "probability": 0.98974609375 + }, + { + "word": " erases", + "start": 786.12, + "end": 786.46, + "probability": 0.9990234375 + }, + { + "word": " itself", + "start": 786.46, + "end": 786.68, + "probability": 1.0 + }, + { + "word": " when", + "start": 786.68, + "end": 786.96, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 786.96, + "end": 787.12, + "probability": 1.0 + }, + { + "word": " done.", + "start": 787.12, + "end": 787.26, + "probability": 1.0 + } + ] + }, + { + "id": 378, + "text": "That sounds pretty cool to me.", + "start": 787.54, + "end": 789.06, + "words": [ + { + "word": " That", + "start": 787.54, + "end": 787.88, + "probability": 1.0 + }, + { + "word": " sounds", + "start": 787.88, + "end": 788.24, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 788.24, + "end": 788.52, + "probability": 1.0 + }, + { + "word": " cool", + "start": 788.52, + "end": 788.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 788.78, + "end": 788.9, + "probability": 0.99951171875 + }, + { + "word": " me.", + "start": 788.9, + "end": 789.06, + "probability": 1.0 + } + ] + }, + { + "id": 379, + "text": "It is very cool.", + "start": 789.12, + "end": 790.6, + "words": [ + { + "word": " It", + "start": 789.12, + "end": 789.28, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 789.28, + "end": 789.58, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 789.58, + "end": 790.22, + "probability": 0.9990234375 + }, + { + "word": " cool.", + "start": 790.22, + "end": 790.6, + "probability": 1.0 + } + ] + }, + { + "id": 380, + "text": "So, you should check it out if you want.", + "start": 790.78, + "end": 792.44, + "words": [ + { + "word": " So,", + "start": 790.78, + "end": 791.0, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 791.12, + "end": 791.42, + "probability": 1.0 + }, + { + "word": " should", + "start": 791.42, + "end": 791.6, + "probability": 1.0 + }, + { + "word": " check", + "start": 791.6, + "end": 791.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 791.8, + "end": 791.92, + "probability": 1.0 + }, + { + "word": " out", + "start": 791.92, + "end": 792.06, + "probability": 1.0 + }, + { + "word": " if", + "start": 792.06, + "end": 792.18, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 792.18, + "end": 792.26, + "probability": 1.0 + }, + { + "word": " want.", + "start": 792.26, + "end": 792.44, + "probability": 1.0 + } + ] + }, + { + "id": 381, + "text": "You can...", + "start": 792.56, + "end": 792.92, + "words": [ + { + "word": " You", + "start": 792.56, + "end": 792.6, + "probability": 0.1536865234375 + }, + { + "word": " can...", + "start": 792.6, + "end": 792.92, + "probability": 0.650390625 + } + ] + }, + { + "id": 382, + "text": "We'll post a link to it on the Guru Show.", + "start": 793.5, + "end": 795.82, + "words": [ + { + "word": " We'll", + "start": 793.5, + "end": 793.9, + "probability": 0.9892578125 + }, + { + "word": " post", + "start": 793.9, + "end": 794.1, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 794.1, + "end": 794.24, + "probability": 0.99951171875 + }, + { + "word": " link", + "start": 794.24, + "end": 794.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 794.42, + "end": 794.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 794.6, + "end": 794.76, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 794.76, + "end": 794.98, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 794.98, + "end": 795.34, + "probability": 0.994140625 + }, + { + "word": " Guru", + "start": 795.34, + "end": 795.62, + "probability": 0.8984375 + }, + { + "word": " Show.", + "start": 795.62, + "end": 795.82, + "probability": 0.32568359375 + } + ] + }, + { + "id": 383, + "text": "Guru Show site at the end.", + "start": 795.84, + "end": 796.6, + "words": [ + { + "word": " Guru", + "start": 795.84, + "end": 795.94, + "probability": 2.384185791015625e-07 + }, + { + "word": " Show", + "start": 795.94, + "end": 795.94, + "probability": 0.01349639892578125 + }, + { + "word": " site", + "start": 795.94, + "end": 796.1, + "probability": 0.36328125 + }, + { + "word": " at", + "start": 796.1, + "end": 796.28, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 796.28, + "end": 796.36, + "probability": 1.0 + }, + { + "word": " end.", + "start": 796.36, + "end": 796.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 384, + "text": "So, that is pretty nifty.", + "start": 796.82, + "end": 798.98, + "words": [ + { + "word": " So,", + "start": 796.82, + "end": 797.26, + "probability": 0.84228515625 + }, + { + "word": " that", + "start": 797.34, + "end": 797.78, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 797.78, + "end": 798.2, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 798.2, + "end": 798.58, + "probability": 0.99951171875 + }, + { + "word": " nifty.", + "start": 798.58, + "end": 798.98, + "probability": 1.0 + } + ] + }, + { + "id": 385, + "text": "It's a way for you to at least check out some movies if you want to.", + "start": 799.1, + "end": 801.94, + "words": [ + { + "word": " It's", + "start": 799.1, + "end": 799.34, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 799.34, + "end": 799.38, + "probability": 0.99462890625 + }, + { + "word": " way", + "start": 799.38, + "end": 799.74, + "probability": 0.994140625 + }, + { + "word": " for", + "start": 799.74, + "end": 799.88, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 799.88, + "end": 799.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 799.98, + "end": 800.1, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 800.1, + "end": 800.3, + "probability": 0.9990234375 + }, + { + "word": " least", + "start": 800.3, + "end": 800.48, + "probability": 0.99951171875 + }, + { + "word": " check", + "start": 800.48, + "end": 800.7, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 800.7, + "end": 800.9, + "probability": 1.0 + }, + { + "word": " some", + "start": 800.9, + "end": 801.02, + "probability": 0.9990234375 + }, + { + "word": " movies", + "start": 801.02, + "end": 801.24, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 801.24, + "end": 801.46, + "probability": 0.97998046875 + }, + { + "word": " you", + "start": 801.46, + "end": 801.56, + "probability": 1.0 + }, + { + "word": " want", + "start": 801.56, + "end": 801.76, + "probability": 1.0 + }, + { + "word": " to.", + "start": 801.76, + "end": 801.94, + "probability": 1.0 + } + ] + }, + { + "id": 386, + "text": "There is a questionable gray area as far as legality is concerned.", + "start": 802.5, + "end": 807.38, + "words": [ + { + "word": " There", + "start": 802.5, + "end": 802.94, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 802.94, + "end": 803.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 803.26, + "end": 803.58, + "probability": 1.0 + }, + { + "word": " questionable", + "start": 803.58, + "end": 804.3, + "probability": 0.99853515625 + }, + { + "word": " gray", + "start": 804.3, + "end": 804.7, + "probability": 0.98046875 + }, + { + "word": " area", + "start": 804.7, + "end": 805.12, + "probability": 1.0 + }, + { + "word": " as", + "start": 805.12, + "end": 805.34, + "probability": 0.9296875 + }, + { + "word": " far", + "start": 805.34, + "end": 805.46, + "probability": 1.0 + }, + { + "word": " as", + "start": 805.46, + "end": 805.68, + "probability": 1.0 + }, + { + "word": " legality", + "start": 805.68, + "end": 806.98, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 806.98, + "end": 807.16, + "probability": 1.0 + }, + { + "word": " concerned.", + "start": 807.16, + "end": 807.38, + "probability": 1.0 + } + ] + }, + { + "id": 387, + "text": "But they spell it out pretty easily.", + "start": 807.5, + "end": 808.7, + "words": [ + { + "word": " But", + "start": 807.5, + "end": 807.62, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 807.62, + "end": 807.72, + "probability": 0.91845703125 + }, + { + "word": " spell", + "start": 807.72, + "end": 807.92, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 807.92, + "end": 808.06, + "probability": 1.0 + }, + { + "word": " out", + "start": 808.06, + "end": 808.18, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 808.18, + "end": 808.36, + "probability": 1.0 + }, + { + "word": " easily.", + "start": 808.36, + "end": 808.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 388, + "text": "They basically say, listen, because you're not really hosting anything.", + "start": 808.94, + "end": 813.86, + "words": [ + { + "word": " They", + "start": 808.94, + "end": 809.36, + "probability": 0.7919921875 + }, + { + "word": " basically", + "start": 809.36, + "end": 809.84, + "probability": 0.99951171875 + }, + { + "word": " say,", + "start": 809.84, + "end": 810.16, + "probability": 1.0 + }, + { + "word": " listen,", + "start": 810.22, + "end": 810.42, + "probability": 0.97705078125 + }, + { + "word": " because", + "start": 810.62, + "end": 811.0, + "probability": 0.96826171875 + }, + { + "word": " you're", + "start": 811.0, + "end": 812.54, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 812.54, + "end": 812.8, + "probability": 1.0 + }, + { + "word": " really", + "start": 812.8, + "end": 813.18, + "probability": 1.0 + }, + { + "word": " hosting", + "start": 813.18, + "end": 813.6, + "probability": 0.99951171875 + }, + { + "word": " anything.", + "start": 813.6, + "end": 813.86, + "probability": 1.0 + } + ] + }, + { + "id": 389, + "text": "You're not storing.", + "start": 814.04, + "end": 815.18, + "words": [ + { + "word": " You're", + "start": 814.04, + "end": 814.38, + "probability": 1.0 + }, + { + "word": " not", + "start": 814.38, + "end": 814.8, + "probability": 1.0 + }, + { + "word": " storing.", + "start": 814.8, + "end": 815.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 390, + "text": "You're not sharing.", + "start": 815.36, + "end": 815.8, + "words": [ + { + "word": " You're", + "start": 815.36, + "end": 815.46, + "probability": 1.0 + }, + { + "word": " not", + "start": 815.46, + "end": 815.56, + "probability": 1.0 + }, + { + "word": " sharing.", + "start": 815.56, + "end": 815.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 391, + "text": "You're not seating.", + "start": 816.04, + "end": 816.8, + "words": [ + { + "word": " You're", + "start": 816.04, + "end": 816.14, + "probability": 1.0 + }, + { + "word": " not", + "start": 816.14, + "end": 816.36, + "probability": 1.0 + }, + { + "word": " seating.", + "start": 816.36, + "end": 816.8, + "probability": 0.55322265625 + } + ] + }, + { + "id": 392, + "text": "You're not doing any of these things that would be on the illegal list.", + "start": 816.96, + "end": 821.46, + "words": [ + { + "word": " You're", + "start": 816.96, + "end": 817.16, + "probability": 1.0 + }, + { + "word": " not", + "start": 817.16, + "end": 817.38, + "probability": 1.0 + }, + { + "word": " doing", + "start": 817.38, + "end": 818.14, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 818.14, + "end": 818.4, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 818.4, + "end": 818.58, + "probability": 1.0 + }, + { + "word": " these", + "start": 818.58, + "end": 818.74, + "probability": 1.0 + }, + { + "word": " things", + "start": 818.74, + "end": 819.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 819.08, + "end": 819.42, + "probability": 0.994140625 + }, + { + "word": " would", + "start": 819.42, + "end": 819.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 819.6, + "end": 819.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 819.88, + "end": 820.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 820.58, + "end": 820.76, + "probability": 1.0 + }, + { + "word": " illegal", + "start": 820.76, + "end": 821.0, + "probability": 0.986328125 + }, + { + "word": " list.", + "start": 821.0, + "end": 821.46, + "probability": 1.0 + } + ] + }, + { + "id": 393, + "text": "They're basically gray-airing the crap out of the movie industry.", + "start": 821.6, + "end": 825.76, + "words": [ + { + "word": " They're", + "start": 821.6, + "end": 821.8, + "probability": 0.83984375 + }, + { + "word": " basically", + "start": 821.8, + "end": 822.34, + "probability": 1.0 + }, + { + "word": " gray", + "start": 822.34, + "end": 822.94, + "probability": 0.99853515625 + }, + { + "word": "-airing", + "start": 822.94, + "end": 823.46, + "probability": 0.7470703125 + }, + { + "word": " the", + "start": 823.46, + "end": 823.72, + "probability": 1.0 + }, + { + "word": " crap", + "start": 823.72, + "end": 824.06, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 824.06, + "end": 824.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 824.36, + "end": 824.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 824.52, + "end": 824.6, + "probability": 1.0 + }, + { + "word": " movie", + "start": 824.6, + "end": 825.42, + "probability": 0.99951171875 + }, + { + "word": " industry.", + "start": 825.42, + "end": 825.76, + "probability": 0.9921875 + } + ] + }, + { + "id": 394, + "text": "So, there's no way at the moment until somebody goes in and lobbies an idiot in Congress to change the laws that really that they can do anything about it.", + "start": 826.24, + "end": 837.5, + "words": [ + { + "word": " So,", + "start": 826.24, + "end": 826.6, + "probability": 0.93408203125 + }, + { + "word": " there's", + "start": 826.68, + "end": 826.94, + "probability": 0.9990234375 + }, + { + "word": " no", + "start": 826.94, + "end": 827.28, + "probability": 0.99169921875 + }, + { + "word": " way", + "start": 827.28, + "end": 827.72, + "probability": 1.0 + }, + { + "word": " at", + "start": 827.72, + "end": 828.84, + "probability": 0.80029296875 + }, + { + "word": " the", + "start": 828.84, + "end": 828.96, + "probability": 1.0 + }, + { + "word": " moment", + "start": 828.96, + "end": 829.26, + "probability": 1.0 + }, + { + "word": " until", + "start": 829.26, + "end": 829.98, + "probability": 0.59521484375 + }, + { + "word": " somebody", + "start": 829.98, + "end": 830.86, + "probability": 0.9990234375 + }, + { + "word": " goes", + "start": 830.86, + "end": 831.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 831.12, + "end": 831.32, + "probability": 0.93310546875 + }, + { + "word": " and", + "start": 831.32, + "end": 831.38, + "probability": 1.0 + }, + { + "word": " lobbies", + "start": 831.38, + "end": 831.78, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 831.78, + "end": 831.9, + "probability": 1.0 + }, + { + "word": " idiot", + "start": 831.9, + "end": 832.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 832.12, + "end": 832.3, + "probability": 1.0 + }, + { + "word": " Congress", + "start": 832.3, + "end": 832.6, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 832.6, + "end": 833.34, + "probability": 0.99853515625 + }, + { + "word": " change", + "start": 833.34, + "end": 833.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 833.58, + "end": 833.8, + "probability": 1.0 + }, + { + "word": " laws", + "start": 833.8, + "end": 834.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 834.16, + "end": 835.48, + "probability": 0.8828125 + }, + { + "word": " really", + "start": 835.48, + "end": 836.08, + "probability": 0.984375 + }, + { + "word": " that", + "start": 836.08, + "end": 836.42, + "probability": 0.693359375 + }, + { + "word": " they", + "start": 836.42, + "end": 836.52, + "probability": 1.0 + }, + { + "word": " can", + "start": 836.52, + "end": 836.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 836.64, + "end": 836.76, + "probability": 1.0 + }, + { + "word": " anything", + "start": 836.76, + "end": 836.96, + "probability": 1.0 + }, + { + "word": " about", + "start": 836.96, + "end": 837.28, + "probability": 1.0 + }, + { + "word": " it.", + "start": 837.28, + "end": 837.5, + "probability": 1.0 + } + ] + }, + { + "id": 395, + "text": "Right.", + "start": 837.68, + "end": 837.9, + "words": [ + { + "word": " Right.", + "start": 837.68, + "end": 837.9, + "probability": 0.9404296875 + } + ] + }, + { + "id": 396, + "text": "Shall we talk to John?", + "start": 838.16, + "end": 839.08, + "words": [ + { + "word": " Shall", + "start": 838.16, + "end": 838.52, + "probability": 0.99658203125 + }, + { + "word": " we", + "start": 838.52, + "end": 838.66, + "probability": 1.0 + }, + { + "word": " talk", + "start": 838.66, + "end": 838.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 838.8, + "end": 838.94, + "probability": 1.0 + }, + { + "word": " John?", + "start": 838.94, + "end": 839.08, + "probability": 0.99658203125 + } + ] + }, + { + "id": 397, + "text": "I think we should talk to John.", + "start": 839.28, + "end": 840.38, + "words": [ + { + "word": " I", + "start": 839.28, + "end": 839.64, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 839.64, + "end": 839.76, + "probability": 1.0 + }, + { + "word": " we", + "start": 839.76, + "end": 839.86, + "probability": 1.0 + }, + { + "word": " should", + "start": 839.86, + "end": 839.92, + "probability": 1.0 + }, + { + "word": " talk", + "start": 839.92, + "end": 840.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 840.1, + "end": 840.22, + "probability": 1.0 + }, + { + "word": " John.", + "start": 840.22, + "end": 840.38, + "probability": 1.0 + } + ] + }, + { + "id": 398, + "text": "Hey, John.", + "start": 840.46, + "end": 840.78, + "words": [ + { + "word": " Hey,", + "start": 840.46, + "end": 840.6, + "probability": 0.9990234375 + }, + { + "word": " John.", + "start": 840.62, + "end": 840.78, + "probability": 1.0 + } + ] + }, + { + "id": 399, + "text": "How are you doing?", + "start": 840.82, + "end": 841.16, + "words": [ + { + "word": " How", + "start": 840.82, + "end": 840.92, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 840.92, + "end": 841.0, + "probability": 0.86328125 + }, + { + "word": " you", + "start": 841.0, + "end": 841.0, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 841.0, + "end": 841.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 400, + "text": "Hey, not bad.", + "start": 842.08, + "end": 842.84, + "words": [ + { + "word": " Hey,", + "start": 842.08, + "end": 842.44, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 842.48, + "end": 842.64, + "probability": 0.99951171875 + }, + { + "word": " bad.", + "start": 842.64, + "end": 842.84, + "probability": 1.0 + } + ] + }, + { + "id": 401, + "text": "Guru, how are you?", + "start": 842.88, + "end": 843.5, + "words": [ + { + "word": " Guru,", + "start": 842.88, + "end": 843.06, + "probability": 0.175048828125 + }, + { + "word": " how", + "start": 843.16, + "end": 843.28, + "probability": 1.0 + }, + { + "word": " are", + "start": 843.28, + "end": 843.4, + "probability": 1.0 + }, + { + "word": " you?", + "start": 843.4, + "end": 843.5, + "probability": 1.0 + } + ] + }, + { + "id": 402, + "text": "I'm kind of ranty today.", + "start": 844.26, + "end": 845.48, + "words": [ + { + "word": " I'm", + "start": 844.26, + "end": 844.62, + "probability": 0.984375 + }, + { + "word": " kind", + "start": 844.62, + "end": 844.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 844.8, + "end": 844.92, + "probability": 1.0 + }, + { + "word": " ranty", + "start": 844.92, + "end": 845.26, + "probability": 0.99951171875 + }, + { + "word": " today.", + "start": 845.26, + "end": 845.48, + "probability": 1.0 + } + ] + }, + { + "id": 403, + "text": "That's all right.", + "start": 846.08, + "end": 846.92, + "words": [ + { + "word": " That's", + "start": 846.08, + "end": 846.44, + "probability": 1.0 + }, + { + "word": " all", + "start": 846.44, + "end": 846.72, + "probability": 0.99267578125 + }, + { + "word": " right.", + "start": 846.72, + "end": 846.92, + "probability": 1.0 + } + ] + }, + { + "id": 404, + "text": "Ranty is when you're at your best.", + "start": 847.0, + "end": 848.2, + "words": [ + { + "word": " Ranty", + "start": 847.0, + "end": 847.36, + "probability": 0.939453125 + }, + { + "word": " is", + "start": 847.36, + "end": 847.46, + "probability": 1.0 + }, + { + "word": " when", + "start": 847.46, + "end": 847.6, + "probability": 1.0 + }, + { + "word": " you're", + "start": 847.6, + "end": 847.76, + "probability": 1.0 + }, + { + "word": " at", + "start": 847.76, + "end": 847.84, + "probability": 1.0 + }, + { + "word": " your", + "start": 847.84, + "end": 847.92, + "probability": 1.0 + }, + { + "word": " best.", + "start": 847.92, + "end": 848.2, + "probability": 1.0 + } + ] + }, + { + "id": 405, + "text": "Oh, nice.", + "start": 848.38, + "end": 848.98, + "words": [ + { + "word": " Oh,", + "start": 848.38, + "end": 848.7, + "probability": 0.9423828125 + }, + { + "word": " nice.", + "start": 848.76, + "end": 848.98, + "probability": 1.0 + } + ] + }, + { + "id": 406, + "text": "How can I help you?", + "start": 849.56, + "end": 850.28, + "words": [ + { + "word": " How", + "start": 849.56, + "end": 849.92, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 849.92, + "end": 850.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 850.04, + "end": 850.1, + "probability": 1.0 + }, + { + "word": " help", + "start": 850.1, + "end": 850.24, + "probability": 1.0 + }, + { + "word": " you?", + "start": 850.24, + "end": 850.28, + "probability": 1.0 + } + ] + }, + { + "id": 407, + "text": "Well, I actually have a question.", + "start": 850.92, + "end": 852.38, + "words": [ + { + "word": " Well,", + "start": 850.92, + "end": 851.28, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 851.4, + "end": 851.58, + "probability": 1.0 + }, + { + "word": " actually", + "start": 851.58, + "end": 851.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 851.86, + "end": 852.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 852.02, + "end": 852.1, + "probability": 1.0 + }, + { + "word": " question.", + "start": 852.1, + "end": 852.38, + "probability": 1.0 + } + ] + }, + { + "id": 408, + "text": "You were talking about security and the law.", + "start": 852.74, + "end": 855.3, + "words": [ + { + "word": " You", + "start": 852.74, + "end": 853.1, + "probability": 0.998046875 + }, + { + "word": " were", + "start": 853.1, + "end": 853.24, + "probability": 1.0 + }, + { + "word": " talking", + "start": 853.24, + "end": 853.44, + "probability": 1.0 + }, + { + "word": " about", + "start": 853.44, + "end": 853.76, + "probability": 1.0 + }, + { + "word": " security", + "start": 853.76, + "end": 854.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 854.38, + "end": 854.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 854.9, + "end": 855.08, + "probability": 0.6923828125 + }, + { + "word": " law.", + "start": 855.08, + "end": 855.3, + "probability": 1.0 + } + ] + }, + { + "id": 409, + "text": "And I kind of wonder about what the future of net neutrality is now that the FCC struck this down in the Verizon case.", + "start": 855.84, + "end": 863.06, + "words": [ + { + "word": " And", + "start": 855.84, + "end": 856.14, + "probability": 0.92138671875 + }, + { + "word": " I", + "start": 856.14, + "end": 856.62, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 856.62, + "end": 856.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 856.86, + "end": 857.02, + "probability": 1.0 + }, + { + "word": " wonder", + "start": 857.02, + "end": 857.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 857.6, + "end": 858.04, + "probability": 1.0 + }, + { + "word": " what", + "start": 858.04, + "end": 858.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 858.3, + "end": 858.44, + "probability": 1.0 + }, + { + "word": " future", + "start": 858.44, + "end": 858.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 858.72, + "end": 858.86, + "probability": 1.0 + }, + { + "word": " net", + "start": 858.86, + "end": 859.0, + "probability": 0.9970703125 + }, + { + "word": " neutrality", + "start": 859.0, + "end": 859.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 859.44, + "end": 859.7, + "probability": 1.0 + }, + { + "word": " now", + "start": 859.7, + "end": 859.92, + "probability": 0.9892578125 + }, + { + "word": " that", + "start": 859.92, + "end": 860.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 860.06, + "end": 860.14, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 860.14, + "end": 860.46, + "probability": 0.99951171875 + }, + { + "word": " struck", + "start": 860.46, + "end": 860.98, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 860.98, + "end": 861.26, + "probability": 1.0 + }, + { + "word": " down", + "start": 861.26, + "end": 861.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 861.54, + "end": 861.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 861.84, + "end": 862.08, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 862.08, + "end": 862.66, + "probability": 1.0 + }, + { + "word": " case.", + "start": 862.66, + "end": 863.06, + "probability": 1.0 + } + ] + }, + { + "id": 410, + "text": "And there have been reports.", + "start": 863.22, + "end": 864.06, + "words": [ + { + "word": " And", + "start": 863.22, + "end": 863.42, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 863.42, + "end": 863.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 863.56, + "end": 863.64, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 863.64, + "end": 863.78, + "probability": 1.0 + }, + { + "word": " reports.", + "start": 863.78, + "end": 864.06, + "probability": 1.0 + } + ] + }, + { + "id": 411, + "text": "I've had a lot of friends on the East Coast telling me that they can't access Netflix or everything they're streaming is just going really, really slow.", + "start": 864.22, + "end": 871.12, + "words": [ + { + "word": " I've", + "start": 864.22, + "end": 864.32, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 864.32, + "end": 864.36, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 864.36, + "end": 864.48, + "probability": 1.0 + }, + { + "word": " lot", + "start": 864.48, + "end": 864.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 864.58, + "end": 864.68, + "probability": 1.0 + }, + { + "word": " friends", + "start": 864.68, + "end": 864.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 864.86, + "end": 865.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 865.02, + "end": 865.1, + "probability": 1.0 + }, + { + "word": " East", + "start": 865.1, + "end": 865.24, + "probability": 0.99755859375 + }, + { + "word": " Coast", + "start": 865.24, + "end": 865.52, + "probability": 1.0 + }, + { + "word": " telling", + "start": 865.52, + "end": 866.28, + "probability": 1.0 + }, + { + "word": " me", + "start": 866.28, + "end": 866.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 866.5, + "end": 866.64, + "probability": 1.0 + }, + { + "word": " they", + "start": 866.64, + "end": 866.78, + "probability": 1.0 + }, + { + "word": " can't", + "start": 866.78, + "end": 867.1, + "probability": 1.0 + }, + { + "word": " access", + "start": 867.1, + "end": 867.42, + "probability": 1.0 + }, + { + "word": " Netflix", + "start": 867.42, + "end": 867.9, + "probability": 1.0 + }, + { + "word": " or", + "start": 867.9, + "end": 868.32, + "probability": 0.96337890625 + }, + { + "word": " everything", + "start": 868.32, + "end": 868.82, + "probability": 0.99365234375 + }, + { + "word": " they're", + "start": 868.82, + "end": 869.42, + "probability": 0.9990234375 + }, + { + "word": " streaming", + "start": 869.42, + "end": 869.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 869.76, + "end": 869.98, + "probability": 1.0 + }, + { + "word": " just", + "start": 869.98, + "end": 870.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 870.14, + "end": 870.32, + "probability": 1.0 + }, + { + "word": " really,", + "start": 870.32, + "end": 870.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 870.72, + "end": 870.84, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 870.84, + "end": 871.12, + "probability": 1.0 + } + ] + }, + { + "id": 412, + "text": "And that Verizon has basically been given carte blanche to pick and choose what traffic they let through at what pace.", + "start": 871.42, + "end": 879.4, + "words": [ + { + "word": " And", + "start": 871.42, + "end": 871.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 871.82, + "end": 871.96, + "probability": 0.99951171875 + }, + { + "word": " Verizon", + "start": 871.96, + "end": 872.36, + "probability": 1.0 + }, + { + "word": " has", + "start": 872.36, + "end": 872.64, + "probability": 1.0 + }, + { + "word": " basically", + "start": 872.64, + "end": 872.94, + "probability": 1.0 + }, + { + "word": " been", + "start": 872.94, + "end": 873.22, + "probability": 1.0 + }, + { + "word": " given", + "start": 873.22, + "end": 873.44, + "probability": 0.990234375 + }, + { + "word": " carte", + "start": 873.44, + "end": 873.74, + "probability": 0.99560546875 + }, + { + "word": " blanche", + "start": 873.74, + "end": 874.06, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 874.06, + "end": 874.48, + "probability": 1.0 + }, + { + "word": " pick", + "start": 874.48, + "end": 877.28, + "probability": 0.966796875 + }, + { + "word": " and", + "start": 877.28, + "end": 877.4, + "probability": 1.0 + }, + { + "word": " choose", + "start": 877.4, + "end": 877.6, + "probability": 1.0 + }, + { + "word": " what", + "start": 877.6, + "end": 877.86, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 877.86, + "end": 878.22, + "probability": 1.0 + }, + { + "word": " they", + "start": 878.22, + "end": 878.44, + "probability": 1.0 + }, + { + "word": " let", + "start": 878.44, + "end": 878.6, + "probability": 0.99951171875 + }, + { + "word": " through", + "start": 878.6, + "end": 878.78, + "probability": 1.0 + }, + { + "word": " at", + "start": 878.78, + "end": 878.98, + "probability": 0.998046875 + }, + { + "word": " what", + "start": 878.98, + "end": 879.12, + "probability": 1.0 + }, + { + "word": " pace.", + "start": 879.12, + "end": 879.4, + "probability": 1.0 + } + ] + }, + { + "id": 413, + "text": "So, I was wondering if you have any info on what's going on with the future of net neutrality.", + "start": 879.6, + "end": 883.36, + "words": [ + { + "word": " So,", + "start": 879.6, + "end": 880.0, + "probability": 0.9814453125 + }, + { + "word": " I", + "start": 880.04, + "end": 880.1, + "probability": 1.0 + }, + { + "word": " was", + "start": 880.1, + "end": 880.18, + "probability": 0.9755859375 + }, + { + "word": " wondering", + "start": 880.18, + "end": 880.28, + "probability": 1.0 + }, + { + "word": " if", + "start": 880.28, + "end": 880.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 880.46, + "end": 880.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 880.56, + "end": 880.7, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 880.7, + "end": 880.88, + "probability": 1.0 + }, + { + "word": " info", + "start": 880.88, + "end": 881.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 881.14, + "end": 881.38, + "probability": 1.0 + }, + { + "word": " what's", + "start": 881.38, + "end": 881.9, + "probability": 1.0 + }, + { + "word": " going", + "start": 881.9, + "end": 882.02, + "probability": 1.0 + }, + { + "word": " on", + "start": 882.02, + "end": 882.28, + "probability": 1.0 + }, + { + "word": " with", + "start": 882.28, + "end": 882.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 882.38, + "end": 882.48, + "probability": 1.0 + }, + { + "word": " future", + "start": 882.48, + "end": 882.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 882.68, + "end": 882.76, + "probability": 1.0 + }, + { + "word": " net", + "start": 882.76, + "end": 882.86, + "probability": 1.0 + }, + { + "word": " neutrality.", + "start": 882.86, + "end": 883.36, + "probability": 1.0 + } + ] + }, + { + "id": 414, + "text": "Well, we know that the FCC has sort of changed their tone a bit.", + "start": 883.46, + "end": 885.74, + "words": [ + { + "word": " Well,", + "start": 883.46, + "end": 883.58, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 883.62, + "end": 883.68, + "probability": 1.0 + }, + { + "word": " know", + "start": 883.68, + "end": 883.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 883.8, + "end": 883.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 883.94, + "end": 884.02, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 884.02, + "end": 884.32, + "probability": 1.0 + }, + { + "word": " has", + "start": 884.32, + "end": 884.54, + "probability": 0.9814453125 + }, + { + "word": " sort", + "start": 884.54, + "end": 884.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 884.66, + "end": 884.74, + "probability": 1.0 + }, + { + "word": " changed", + "start": 884.74, + "end": 884.96, + "probability": 1.0 + }, + { + "word": " their", + "start": 884.96, + "end": 885.14, + "probability": 0.9990234375 + }, + { + "word": " tone", + "start": 885.14, + "end": 885.42, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 885.42, + "end": 885.56, + "probability": 0.99951171875 + }, + { + "word": " bit.", + "start": 885.56, + "end": 885.74, + "probability": 1.0 + } + ] + }, + { + "id": 415, + "text": "Right.", + "start": 885.84, + "end": 886.48, + "words": [ + { + "word": " Right.", + "start": 885.84, + "end": 886.48, + "probability": 0.408935546875 + } + ] + }, + { + "id": 416, + "text": "Now, the FCC actually basically didn't sanction that, but it got passed anyway, this particular rule, despite what the FCC had said.", + "start": 886.54, + "end": 896.54, + "words": [ + { + "word": " Now,", + "start": 886.54, + "end": 886.7, + "probability": 0.71044921875 + }, + { + "word": " the", + "start": 886.72, + "end": 886.74, + "probability": 0.87255859375 + }, + { + "word": " FCC", + "start": 886.74, + "end": 886.96, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 886.96, + "end": 887.46, + "probability": 1.0 + }, + { + "word": " basically", + "start": 887.46, + "end": 888.66, + "probability": 0.99951171875 + }, + { + "word": " didn't", + "start": 888.66, + "end": 889.24, + "probability": 1.0 + }, + { + "word": " sanction", + "start": 889.24, + "end": 889.56, + "probability": 1.0 + }, + { + "word": " that,", + "start": 889.56, + "end": 889.92, + "probability": 1.0 + }, + { + "word": " but", + "start": 890.02, + "end": 890.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 890.34, + "end": 890.74, + "probability": 0.658203125 + }, + { + "word": " got", + "start": 890.74, + "end": 891.6, + "probability": 1.0 + }, + { + "word": " passed", + "start": 891.6, + "end": 891.88, + "probability": 0.99951171875 + }, + { + "word": " anyway,", + "start": 891.88, + "end": 892.18, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 892.4, + "end": 892.64, + "probability": 1.0 + }, + { + "word": " particular", + "start": 892.64, + "end": 892.9, + "probability": 1.0 + }, + { + "word": " rule,", + "start": 892.9, + "end": 893.32, + "probability": 1.0 + }, + { + "word": " despite", + "start": 893.46, + "end": 895.36, + "probability": 1.0 + }, + { + "word": " what", + "start": 895.36, + "end": 895.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 895.72, + "end": 895.86, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 895.86, + "end": 896.16, + "probability": 1.0 + }, + { + "word": " had", + "start": 896.16, + "end": 896.38, + "probability": 0.99560546875 + }, + { + "word": " said.", + "start": 896.38, + "end": 896.54, + "probability": 1.0 + } + ] + }, + { + "id": 417, + "text": "Now, the FCC basically said, well, we're not really going to change our stance on anything, right, previously to it getting passed.", + "start": 896.64, + "end": 902.14, + "words": [ + { + "word": " Now,", + "start": 896.64, + "end": 896.74, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 896.82, + "end": 896.88, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 896.88, + "end": 897.18, + "probability": 1.0 + }, + { + "word": " basically", + "start": 897.18, + "end": 897.6, + "probability": 1.0 + }, + { + "word": " said,", + "start": 897.6, + "end": 898.04, + "probability": 1.0 + }, + { + "word": " well,", + "start": 898.2, + "end": 898.34, + "probability": 0.9990234375 + }, + { + "word": " we're", + "start": 898.46, + "end": 898.62, + "probability": 1.0 + }, + { + "word": " not", + "start": 898.62, + "end": 898.7, + "probability": 1.0 + }, + { + "word": " really", + "start": 898.7, + "end": 898.9, + "probability": 1.0 + }, + { + "word": " going", + "start": 898.9, + "end": 899.04, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 899.04, + "end": 899.14, + "probability": 1.0 + }, + { + "word": " change", + "start": 899.14, + "end": 899.28, + "probability": 1.0 + }, + { + "word": " our", + "start": 899.28, + "end": 899.42, + "probability": 1.0 + }, + { + "word": " stance", + "start": 899.42, + "end": 899.62, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 899.62, + "end": 899.78, + "probability": 1.0 + }, + { + "word": " anything,", + "start": 899.78, + "end": 900.06, + "probability": 1.0 + }, + { + "word": " right,", + "start": 900.24, + "end": 900.58, + "probability": 0.99951171875 + }, + { + "word": " previously", + "start": 900.66, + "end": 901.2, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 901.2, + "end": 901.54, + "probability": 1.0 + }, + { + "word": " it", + "start": 901.54, + "end": 901.64, + "probability": 1.0 + }, + { + "word": " getting", + "start": 901.64, + "end": 901.78, + "probability": 1.0 + }, + { + "word": " passed.", + "start": 901.78, + "end": 902.14, + "probability": 1.0 + } + ] + }, + { + "id": 418, + "text": "They're like, we like the Internet the way it is, and we don't think that this should be happening.", + "start": 902.6, + "end": 907.58, + "words": [ + { + "word": " They're", + "start": 902.6, + "end": 903.0, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 903.0, + "end": 903.14, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 903.32, + "end": 903.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 903.46, + "end": 903.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 903.8, + "end": 904.0, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 904.0, + "end": 904.2, + "probability": 0.8330078125 + }, + { + "word": " the", + "start": 904.2, + "end": 904.46, + "probability": 1.0 + }, + { + "word": " way", + "start": 904.46, + "end": 904.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 904.64, + "end": 904.72, + "probability": 1.0 + }, + { + "word": " is,", + "start": 904.72, + "end": 905.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 905.1, + "end": 905.36, + "probability": 1.0 + }, + { + "word": " we", + "start": 905.36, + "end": 905.6, + "probability": 1.0 + }, + { + "word": " don't", + "start": 905.6, + "end": 905.8, + "probability": 1.0 + }, + { + "word": " think", + "start": 905.8, + "end": 905.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 905.88, + "end": 906.12, + "probability": 0.84521484375 + }, + { + "word": " this", + "start": 906.12, + "end": 906.94, + "probability": 1.0 + }, + { + "word": " should", + "start": 906.94, + "end": 907.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 907.08, + "end": 907.22, + "probability": 1.0 + }, + { + "word": " happening.", + "start": 907.22, + "end": 907.58, + "probability": 1.0 + } + ] + }, + { + "id": 419, + "text": "But basically, the government said, well, we're going to change this anyway.", + "start": 907.66, + "end": 911.08, + "words": [ + { + "word": " But", + "start": 907.66, + "end": 907.96, + "probability": 1.0 + }, + { + "word": " basically,", + "start": 907.96, + "end": 908.7, + "probability": 0.96923828125 + }, + { + "word": " the", + "start": 909.28, + "end": 909.44, + "probability": 1.0 + }, + { + "word": " government", + "start": 909.44, + "end": 909.68, + "probability": 1.0 + }, + { + "word": " said,", + "start": 909.68, + "end": 909.96, + "probability": 1.0 + }, + { + "word": " well,", + "start": 910.08, + "end": 910.18, + "probability": 1.0 + }, + { + "word": " we're", + "start": 910.24, + "end": 910.4, + "probability": 1.0 + }, + { + "word": " going", + "start": 910.4, + "end": 910.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 910.42, + "end": 910.52, + "probability": 1.0 + }, + { + "word": " change", + "start": 910.52, + "end": 910.72, + "probability": 1.0 + }, + { + "word": " this", + "start": 910.72, + "end": 910.88, + "probability": 0.99951171875 + }, + { + "word": " anyway.", + "start": 910.88, + "end": 911.08, + "probability": 1.0 + } + ] + }, + { + "id": 420, + "text": "So, they changed the law.", + "start": 911.24, + "end": 912.58, + "words": [ + { + "word": " So,", + "start": 911.24, + "end": 911.64, + "probability": 1.0 + }, + { + "word": " they", + "start": 911.68, + "end": 911.78, + "probability": 1.0 + }, + { + "word": " changed", + "start": 911.78, + "end": 912.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 912.22, + "end": 912.42, + "probability": 1.0 + }, + { + "word": " law.", + "start": 912.42, + "end": 912.58, + "probability": 1.0 + } + ] + }, + { + "id": 421, + "text": "So, now the FCC's rebuttal has been, okay.", + "start": 913.0, + "end": 915.82, + "words": [ + { + "word": " So,", + "start": 913.0, + "end": 913.4, + "probability": 1.0 + }, + { + "word": " now", + "start": 913.44, + "end": 913.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 913.58, + "end": 913.72, + "probability": 0.89892578125 + }, + { + "word": " FCC's", + "start": 913.72, + "end": 914.38, + "probability": 1.0 + }, + { + "word": " rebuttal", + "start": 914.38, + "end": 914.84, + "probability": 1.0 + }, + { + "word": " has", + "start": 914.84, + "end": 915.0, + "probability": 1.0 + }, + { + "word": " been,", + "start": 915.0, + "end": 915.22, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 915.38, + "end": 915.82, + "probability": 0.87890625 + } + ] + }, + { + "id": 422, + "text": "We're going to rewrite the rules now.", + "start": 915.84, + "end": 917.36, + "words": [ + { + "word": " We're", + "start": 915.84, + "end": 916.22, + "probability": 0.5029296875 + }, + { + "word": " going", + "start": 916.22, + "end": 916.32, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 916.32, + "end": 916.42, + "probability": 0.99951171875 + }, + { + "word": " rewrite", + "start": 916.42, + "end": 916.64, + "probability": 0.962890625 + }, + { + "word": " the", + "start": 916.64, + "end": 916.86, + "probability": 0.99951171875 + }, + { + "word": " rules", + "start": 916.86, + "end": 917.06, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 917.06, + "end": 917.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 423, + "text": "And we're going to do what we're supposed to do and basically be more involved in this process.", + "start": 917.5, + "end": 922.96, + "words": [ + { + "word": " And", + "start": 917.5, + "end": 917.98, + "probability": 0.2626953125 + }, + { + "word": " we're", + "start": 917.98, + "end": 918.36, + "probability": 0.99658203125 + }, + { + "word": " going", + "start": 918.36, + "end": 918.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 918.42, + "end": 918.5, + "probability": 1.0 + }, + { + "word": " do", + "start": 918.5, + "end": 918.66, + "probability": 1.0 + }, + { + "word": " what", + "start": 918.66, + "end": 918.8, + "probability": 0.99365234375 + }, + { + "word": " we're", + "start": 918.8, + "end": 918.98, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 918.98, + "end": 919.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 919.22, + "end": 919.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 919.56, + "end": 919.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 919.74, + "end": 920.12, + "probability": 0.91552734375 + }, + { + "word": " basically", + "start": 920.12, + "end": 920.84, + "probability": 0.99365234375 + }, + { + "word": " be", + "start": 920.84, + "end": 921.22, + "probability": 1.0 + }, + { + "word": " more", + "start": 921.22, + "end": 921.46, + "probability": 1.0 + }, + { + "word": " involved", + "start": 921.46, + "end": 922.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 922.02, + "end": 922.38, + "probability": 1.0 + }, + { + "word": " this", + "start": 922.38, + "end": 922.52, + "probability": 1.0 + }, + { + "word": " process.", + "start": 922.52, + "end": 922.96, + "probability": 1.0 + } + ] + }, + { + "id": 424, + "text": "And they're going to force neutrality upon basically everyone, which I think is a great thing.", + "start": 923.24, + "end": 929.58, + "words": [ + { + "word": " And", + "start": 923.24, + "end": 923.72, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 923.72, + "end": 923.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 923.94, + "end": 924.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 924.1, + "end": 924.28, + "probability": 1.0 + }, + { + "word": " force", + "start": 924.28, + "end": 924.72, + "probability": 1.0 + }, + { + "word": " neutrality", + "start": 924.72, + "end": 925.4, + "probability": 1.0 + }, + { + "word": " upon", + "start": 925.4, + "end": 925.9, + "probability": 0.99951171875 + }, + { + "word": " basically", + "start": 925.9, + "end": 927.44, + "probability": 0.9951171875 + }, + { + "word": " everyone,", + "start": 927.44, + "end": 927.88, + "probability": 1.0 + }, + { + "word": " which", + "start": 928.1, + "end": 928.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 928.68, + "end": 928.84, + "probability": 1.0 + }, + { + "word": " think", + "start": 928.84, + "end": 929.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 929.0, + "end": 929.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 929.16, + "end": 929.2, + "probability": 1.0 + }, + { + "word": " great", + "start": 929.2, + "end": 929.36, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 929.36, + "end": 929.58, + "probability": 1.0 + } + ] + }, + { + "id": 425, + "text": "Well, that's good news.", + "start": 930.28, + "end": 930.94, + "words": [ + { + "word": " Well,", + "start": 930.28, + "end": 930.54, + "probability": 0.64306640625 + }, + { + "word": " that's", + "start": 930.54, + "end": 930.68, + "probability": 1.0 + }, + { + "word": " good", + "start": 930.68, + "end": 930.72, + "probability": 1.0 + }, + { + "word": " news.", + "start": 930.72, + "end": 930.94, + "probability": 1.0 + } + ] + }, + { + "id": 426, + "text": "So, we'll see how far the FCC can get.", + "start": 931.02, + "end": 933.1, + "words": [ + { + "word": " So,", + "start": 931.02, + "end": 931.1, + "probability": 0.1273193359375 + }, + { + "word": " we'll", + "start": 931.1, + "end": 931.16, + "probability": 1.0 + }, + { + "word": " see", + "start": 931.16, + "end": 931.4, + "probability": 1.0 + }, + { + "word": " how", + "start": 931.4, + "end": 931.7, + "probability": 1.0 + }, + { + "word": " far", + "start": 931.7, + "end": 932.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 932.0, + "end": 932.2, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 932.2, + "end": 932.48, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 932.48, + "end": 932.88, + "probability": 1.0 + }, + { + "word": " get.", + "start": 932.88, + "end": 933.1, + "probability": 1.0 + } + ] + }, + { + "id": 427, + "text": "The thing is, is that people don't realize that the FCC is actually a rather powerful organization within the government.", + "start": 933.46, + "end": 939.18, + "words": [ + { + "word": " The", + "start": 933.46, + "end": 933.94, + "probability": 0.99365234375 + }, + { + "word": " thing", + "start": 933.94, + "end": 934.22, + "probability": 1.0 + }, + { + "word": " is,", + "start": 934.22, + "end": 934.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 934.48, + "end": 934.58, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 934.58, + "end": 934.7, + "probability": 1.0 + }, + { + "word": " people", + "start": 934.7, + "end": 934.98, + "probability": 1.0 + }, + { + "word": " don't", + "start": 934.98, + "end": 935.22, + "probability": 1.0 + }, + { + "word": " realize", + "start": 935.22, + "end": 935.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 935.48, + "end": 935.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 935.72, + "end": 935.78, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 935.78, + "end": 936.04, + "probability": 1.0 + }, + { + "word": " is", + "start": 936.04, + "end": 936.36, + "probability": 1.0 + }, + { + "word": " actually", + "start": 936.36, + "end": 936.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 936.6, + "end": 936.76, + "probability": 1.0 + }, + { + "word": " rather", + "start": 936.76, + "end": 937.02, + "probability": 0.99951171875 + }, + { + "word": " powerful", + "start": 937.02, + "end": 937.4, + "probability": 1.0 + }, + { + "word": " organization", + "start": 937.4, + "end": 938.02, + "probability": 1.0 + }, + { + "word": " within", + "start": 938.02, + "end": 938.72, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 938.72, + "end": 938.9, + "probability": 1.0 + }, + { + "word": " government.", + "start": 938.9, + "end": 939.18, + "probability": 1.0 + } + ] + }, + { + "id": 428, + "text": "I am.", + "start": 939.6, + "end": 940.18, + "words": [ + { + "word": " I", + "start": 939.6, + "end": 940.06, + "probability": 0.499755859375 + }, + { + "word": " am.", + "start": 940.06, + "end": 940.18, + "probability": 0.391845703125 + } + ] + }, + { + "id": 429, + "text": "And they really have a lot of juice.", + "start": 940.26, + "end": 944.2, + "words": [ + { + "word": " And", + "start": 940.26, + "end": 940.68, + "probability": 0.99267578125 + }, + { + "word": " they", + "start": 940.68, + "end": 942.3, + "probability": 0.9951171875 + }, + { + "word": " really", + "start": 942.3, + "end": 943.18, + "probability": 0.98779296875 + }, + { + "word": " have", + "start": 943.18, + "end": 943.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 943.54, + "end": 943.7, + "probability": 1.0 + }, + { + "word": " lot", + "start": 943.7, + "end": 943.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 943.88, + "end": 944.0, + "probability": 1.0 + }, + { + "word": " juice.", + "start": 944.0, + "end": 944.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 430, + "text": "I am.", + "start": 944.38, + "end": 944.7, + "words": [ + { + "word": " I", + "start": 944.38, + "end": 944.68, + "probability": 0.0067138671875 + }, + { + "word": " am.", + "start": 944.68, + "end": 944.7, + "probability": 0.06915283203125 + } + ] + }, + { + "id": 431, + "text": "And I think that if they...", + "start": 944.7, + "end": 945.66, + "words": [ + { + "word": " And", + "start": 944.7, + "end": 944.7, + "probability": 0.489013671875 + }, + { + "word": " I", + "start": 944.7, + "end": 944.74, + "probability": 0.9482421875 + }, + { + "word": " think", + "start": 944.74, + "end": 944.96, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 944.96, + "end": 945.1, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 945.1, + "end": 945.32, + "probability": 0.97998046875 + }, + { + "word": " they...", + "start": 945.32, + "end": 945.66, + "probability": 0.54541015625 + } + ] + }, + { + "id": 432, + "text": "If they flex their muscles properly, right, they can basically overturn that stuff with Verizon and Time Warner", + "start": 945.66, + "end": 952.98, + "words": [ + { + "word": " If", + "start": 945.66, + "end": 945.74, + "probability": 0.0023040771484375 + }, + { + "word": " they", + "start": 945.74, + "end": 945.74, + "probability": 0.92724609375 + }, + { + "word": " flex", + "start": 945.74, + "end": 945.8, + "probability": 0.9833984375 + }, + { + "word": " their", + "start": 945.8, + "end": 946.1, + "probability": 0.96484375 + }, + { + "word": " muscles", + "start": 946.1, + "end": 946.4, + "probability": 0.998046875 + }, + { + "word": " properly,", + "start": 946.4, + "end": 947.0, + "probability": 0.9990234375 + }, + { + "word": " right,", + "start": 947.3, + "end": 947.8, + "probability": 0.15771484375 + }, + { + "word": " they", + "start": 947.88, + "end": 948.02, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 948.02, + "end": 948.28, + "probability": 1.0 + }, + { + "word": " basically", + "start": 948.28, + "end": 948.98, + "probability": 0.99951171875 + }, + { + "word": " overturn", + "start": 948.98, + "end": 949.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 949.32, + "end": 949.7, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 949.7, + "end": 949.94, + "probability": 1.0 + }, + { + "word": " with", + "start": 949.94, + "end": 950.32, + "probability": 0.99951171875 + }, + { + "word": " Verizon", + "start": 950.32, + "end": 951.28, + "probability": 0.93603515625 + }, + { + "word": " and", + "start": 951.28, + "end": 952.34, + "probability": 0.97265625 + }, + { + "word": " Time", + "start": 952.34, + "end": 952.76, + "probability": 0.9990234375 + }, + { + "word": " Warner", + "start": 952.76, + "end": 952.98, + "probability": 0.99169921875 + } + ] + }, + { + "id": 433, + "text": "and all of these other people that have been pushing for the ability to throttle traffic on their networks at will.", + "start": 952.98, + "end": 959.94, + "words": [ + { + "word": " and", + "start": 952.98, + "end": 953.32, + "probability": 0.9853515625 + }, + { + "word": " all", + "start": 953.32, + "end": 953.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 953.48, + "end": 953.6, + "probability": 0.99853515625 + }, + { + "word": " these", + "start": 953.6, + "end": 953.72, + "probability": 1.0 + }, + { + "word": " other", + "start": 953.72, + "end": 953.9, + "probability": 1.0 + }, + { + "word": " people", + "start": 953.9, + "end": 954.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 954.2, + "end": 954.36, + "probability": 0.81640625 + }, + { + "word": " have", + "start": 954.36, + "end": 954.52, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 954.52, + "end": 954.86, + "probability": 1.0 + }, + { + "word": " pushing", + "start": 954.86, + "end": 955.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 955.32, + "end": 956.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 956.18, + "end": 956.8, + "probability": 1.0 + }, + { + "word": " ability", + "start": 956.8, + "end": 957.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 957.36, + "end": 957.7, + "probability": 1.0 + }, + { + "word": " throttle", + "start": 957.7, + "end": 957.96, + "probability": 0.99951171875 + }, + { + "word": " traffic", + "start": 957.96, + "end": 958.38, + "probability": 1.0 + }, + { + "word": " on", + "start": 958.38, + "end": 958.84, + "probability": 1.0 + }, + { + "word": " their", + "start": 958.84, + "end": 959.02, + "probability": 1.0 + }, + { + "word": " networks", + "start": 959.02, + "end": 959.36, + "probability": 1.0 + }, + { + "word": " at", + "start": 959.36, + "end": 959.68, + "probability": 0.99951171875 + }, + { + "word": " will.", + "start": 959.68, + "end": 959.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 434, + "text": "Can I ask a follow-up question?", + "start": 960.9599999999999, + "end": 962.84, + "words": [ + { + "word": " Can", + "start": 960.9599999999999, + "end": 961.4399999999999, + "probability": 0.78076171875 + }, + { + "word": " I", + "start": 961.4399999999999, + "end": 961.92, + "probability": 1.0 + }, + { + "word": " ask", + "start": 961.92, + "end": 962.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 962.08, + "end": 962.18, + "probability": 1.0 + }, + { + "word": " follow", + "start": 962.18, + "end": 962.44, + "probability": 1.0 + }, + { + "word": "-up", + "start": 962.44, + "end": 962.56, + "probability": 0.9892578125 + }, + { + "word": " question?", + "start": 962.56, + "end": 962.84, + "probability": 1.0 + } + ] + }, + { + "id": 435, + "text": "Sure.", + "start": 962.98, + "end": 963.1, + "words": [ + { + "word": " Sure.", + "start": 962.98, + "end": 963.1, + "probability": 0.97509765625 + } + ] + }, + { + "id": 436, + "text": "Since you brought that up.", + "start": 963.12, + "end": 964.08, + "words": [ + { + "word": " Since", + "start": 963.12, + "end": 963.16, + "probability": 0.428466796875 + }, + { + "word": " you", + "start": 963.16, + "end": 963.34, + "probability": 1.0 + }, + { + "word": " brought", + "start": 963.34, + "end": 963.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 963.64, + "end": 963.9, + "probability": 1.0 + }, + { + "word": " up.", + "start": 963.9, + "end": 964.08, + "probability": 1.0 + } + ] + }, + { + "id": 437, + "text": "You brought up Time Warner, and I know that they're trying to merge with Comcast.", + "start": 964.18, + "end": 968.28, + "words": [ + { + "word": " You", + "start": 964.18, + "end": 964.5, + "probability": 0.9990234375 + }, + { + "word": " brought", + "start": 964.5, + "end": 964.66, + "probability": 1.0 + }, + { + "word": " up", + "start": 964.66, + "end": 964.84, + "probability": 1.0 + }, + { + "word": " Time", + "start": 964.84, + "end": 965.1, + "probability": 1.0 + }, + { + "word": " Warner,", + "start": 965.1, + "end": 965.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 965.48, + "end": 965.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 965.7, + "end": 965.92, + "probability": 1.0 + }, + { + "word": " know", + "start": 965.92, + "end": 966.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 966.12, + "end": 966.26, + "probability": 1.0 + }, + { + "word": " they're", + "start": 966.26, + "end": 966.48, + "probability": 0.9990234375 + }, + { + "word": " trying", + "start": 966.48, + "end": 966.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 966.96, + "end": 967.26, + "probability": 1.0 + }, + { + "word": " merge", + "start": 967.26, + "end": 967.56, + "probability": 1.0 + }, + { + "word": " with", + "start": 967.56, + "end": 967.76, + "probability": 1.0 + }, + { + "word": " Comcast.", + "start": 967.76, + "end": 968.28, + "probability": 1.0 + } + ] + }, + { + "id": 438, + "text": "Comcast said that they would not throttle traffic.", + "start": 969.46, + "end": 971.88, + "words": [ + { + "word": " Comcast", + "start": 969.46, + "end": 969.94, + "probability": 0.9990234375 + }, + { + "word": " said", + "start": 969.94, + "end": 970.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 970.26, + "end": 970.48, + "probability": 1.0 + }, + { + "word": " they", + "start": 970.48, + "end": 970.64, + "probability": 1.0 + }, + { + "word": " would", + "start": 970.64, + "end": 970.76, + "probability": 1.0 + }, + { + "word": " not", + "start": 970.76, + "end": 971.12, + "probability": 1.0 + }, + { + "word": " throttle", + "start": 971.12, + "end": 971.44, + "probability": 0.99951171875 + }, + { + "word": " traffic.", + "start": 971.44, + "end": 971.88, + "probability": 1.0 + } + ] + }, + { + "id": 439, + "text": "They made that public a long time ago.", + "start": 972.32, + "end": 974.12, + "words": [ + { + "word": " They", + "start": 972.32, + "end": 972.8, + "probability": 0.99951171875 + }, + { + "word": " made", + "start": 972.8, + "end": 972.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 972.98, + "end": 973.14, + "probability": 1.0 + }, + { + "word": " public", + "start": 973.14, + "end": 973.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 973.4, + "end": 973.54, + "probability": 1.0 + }, + { + "word": " long", + "start": 973.54, + "end": 973.7, + "probability": 1.0 + }, + { + "word": " time", + "start": 973.7, + "end": 973.9, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 973.9, + "end": 974.12, + "probability": 1.0 + } + ] + }, + { + "id": 440, + "text": "Now, whether or not they stick to it.", + "start": 974.16, + "end": 975.48, + "words": [ + { + "word": " Now,", + "start": 974.16, + "end": 974.4, + "probability": 0.98974609375 + }, + { + "word": " whether", + "start": 974.4, + "end": 974.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 974.58, + "end": 974.68, + "probability": 1.0 + }, + { + "word": " not", + "start": 974.68, + "end": 974.78, + "probability": 1.0 + }, + { + "word": " they", + "start": 974.78, + "end": 974.9, + "probability": 1.0 + }, + { + "word": " stick", + "start": 974.9, + "end": 975.06, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 975.06, + "end": 975.3, + "probability": 1.0 + }, + { + "word": " it.", + "start": 975.3, + "end": 975.48, + "probability": 1.0 + } + ] + }, + { + "id": 441, + "text": "It is one thing or another.", + "start": 975.48, + "end": 976.1, + "words": [ + { + "word": " It", + "start": 975.48, + "end": 975.48, + "probability": 0.057037353515625 + }, + { + "word": " is", + "start": 975.48, + "end": 975.54, + "probability": 0.9423828125 + }, + { + "word": " one", + "start": 975.54, + "end": 975.66, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 975.66, + "end": 975.84, + "probability": 1.0 + }, + { + "word": " or", + "start": 975.84, + "end": 975.96, + "probability": 1.0 + }, + { + "word": " another.", + "start": 975.96, + "end": 976.1, + "probability": 1.0 + } + ] + }, + { + "id": 442, + "text": "But Time Warner's been a company that's kind of been, you know, wanting to throttle traffic to push their own content.", + "start": 976.24, + "end": 982.6, + "words": [ + { + "word": " But", + "start": 976.24, + "end": 976.34, + "probability": 0.96875 + }, + { + "word": " Time", + "start": 976.34, + "end": 976.54, + "probability": 0.99609375 + }, + { + "word": " Warner's", + "start": 976.54, + "end": 976.9, + "probability": 0.66748046875 + }, + { + "word": " been", + "start": 976.9, + "end": 977.1, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 977.1, + "end": 977.62, + "probability": 0.99951171875 + }, + { + "word": " company", + "start": 977.62, + "end": 977.94, + "probability": 1.0 + }, + { + "word": " that's", + "start": 977.94, + "end": 978.34, + "probability": 1.0 + }, + { + "word": " kind", + "start": 978.34, + "end": 978.66, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 978.66, + "end": 978.84, + "probability": 1.0 + }, + { + "word": " been,", + "start": 978.84, + "end": 979.08, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 979.14, + "end": 979.36, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 979.36, + "end": 979.5, + "probability": 1.0 + }, + { + "word": " wanting", + "start": 979.5, + "end": 980.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 980.0, + "end": 980.36, + "probability": 1.0 + }, + { + "word": " throttle", + "start": 980.36, + "end": 980.98, + "probability": 0.99951171875 + }, + { + "word": " traffic", + "start": 980.98, + "end": 981.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 981.4, + "end": 981.66, + "probability": 0.970703125 + }, + { + "word": " push", + "start": 981.66, + "end": 981.94, + "probability": 1.0 + }, + { + "word": " their", + "start": 981.94, + "end": 982.08, + "probability": 1.0 + }, + { + "word": " own", + "start": 982.08, + "end": 982.2, + "probability": 1.0 + }, + { + "word": " content.", + "start": 982.2, + "end": 982.6, + "probability": 1.0 + } + ] + }, + { + "id": 443, + "text": "If this merger goes through, do you see that becoming a giant problem for 56% of America that's going to rely on this company for its broadband internet?", + "start": 982.74, + "end": 990.4, + "words": [ + { + "word": " If", + "start": 982.74, + "end": 983.18, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 983.18, + "end": 983.38, + "probability": 1.0 + }, + { + "word": " merger", + "start": 983.38, + "end": 983.66, + "probability": 1.0 + }, + { + "word": " goes", + "start": 983.66, + "end": 983.88, + "probability": 1.0 + }, + { + "word": " through,", + "start": 983.88, + "end": 984.2, + "probability": 1.0 + }, + { + "word": " do", + "start": 984.3, + "end": 984.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 984.44, + "end": 984.52, + "probability": 1.0 + }, + { + "word": " see", + "start": 984.52, + "end": 984.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 984.76, + "end": 984.94, + "probability": 1.0 + }, + { + "word": " becoming", + "start": 984.94, + "end": 985.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 985.22, + "end": 985.66, + "probability": 1.0 + }, + { + "word": " giant", + "start": 985.66, + "end": 986.0, + "probability": 1.0 + }, + { + "word": " problem", + "start": 986.0, + "end": 986.34, + "probability": 1.0 + }, + { + "word": " for", + "start": 986.34, + "end": 986.8, + "probability": 1.0 + }, + { + "word": " 56", + "start": 986.8, + "end": 987.26, + "probability": 0.99951171875 + }, + { + "word": "%", + "start": 987.26, + "end": 987.66, + "probability": 0.83935546875 + }, + { + "word": " of", + "start": 987.66, + "end": 987.88, + "probability": 1.0 + }, + { + "word": " America", + "start": 987.88, + "end": 988.16, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 988.16, + "end": 988.54, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 988.54, + "end": 988.64, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 988.64, + "end": 988.72, + "probability": 1.0 + }, + { + "word": " rely", + "start": 988.72, + "end": 988.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 988.86, + "end": 989.04, + "probability": 1.0 + }, + { + "word": " this", + "start": 989.04, + "end": 989.18, + "probability": 1.0 + }, + { + "word": " company", + "start": 989.18, + "end": 989.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 989.44, + "end": 989.68, + "probability": 1.0 + }, + { + "word": " its", + "start": 989.68, + "end": 989.78, + "probability": 1.0 + }, + { + "word": " broadband", + "start": 989.78, + "end": 990.06, + "probability": 1.0 + }, + { + "word": " internet?", + "start": 990.06, + "end": 990.4, + "probability": 0.480224609375 + } + ] + }, + { + "id": 444, + "text": "First of all, I see the whole merger as a giant problem.", + "start": 990.6, + "end": 992.98, + "words": [ + { + "word": " First", + "start": 990.6, + "end": 990.96, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 990.96, + "end": 991.1, + "probability": 1.0 + }, + { + "word": " all,", + "start": 991.1, + "end": 991.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 991.22, + "end": 991.3, + "probability": 1.0 + }, + { + "word": " see", + "start": 991.3, + "end": 991.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 991.44, + "end": 991.56, + "probability": 1.0 + }, + { + "word": " whole", + "start": 991.56, + "end": 991.68, + "probability": 1.0 + }, + { + "word": " merger", + "start": 991.68, + "end": 991.98, + "probability": 1.0 + }, + { + "word": " as", + "start": 991.98, + "end": 992.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 992.24, + "end": 992.36, + "probability": 1.0 + }, + { + "word": " giant", + "start": 992.36, + "end": 992.66, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 992.66, + "end": 992.98, + "probability": 1.0 + } + ] + }, + { + "id": 445, + "text": "All right?", + "start": 993.34, + "end": 993.94, + "words": [ + { + "word": " All", + "start": 993.34, + "end": 993.82, + "probability": 0.462890625 + }, + { + "word": " right?", + "start": 993.82, + "end": 993.94, + "probability": 1.0 + } + ] + }, + { + "id": 446, + "text": "I see that much like the AT&T T-Mobile merger.", + "start": 994.06, + "end": 999.0, + "words": [ + { + "word": " I", + "start": 994.06, + "end": 994.54, + "probability": 0.99853515625 + }, + { + "word": " see", + "start": 994.54, + "end": 995.16, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 995.16, + "end": 995.54, + "probability": 0.8017578125 + }, + { + "word": " much", + "start": 995.54, + "end": 996.24, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 996.24, + "end": 996.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 996.54, + "end": 996.76, + "probability": 1.0 + }, + { + "word": " AT", + "start": 996.76, + "end": 997.0, + "probability": 0.99853515625 + }, + { + "word": "&T", + "start": 997.0, + "end": 997.3, + "probability": 0.99853515625 + }, + { + "word": " T", + "start": 997.3, + "end": 997.46, + "probability": 0.9306640625 + }, + { + "word": "-Mobile", + "start": 997.46, + "end": 997.76, + "probability": 0.99951171875 + }, + { + "word": " merger.", + "start": 997.76, + "end": 999.0, + "probability": 1.0 + } + ] + }, + { + "id": 447, + "text": "All right?", + "start": 999.4, + "end": 999.94, + "words": [ + { + "word": " All", + "start": 999.4, + "end": 999.88, + "probability": 0.9033203125 + }, + { + "word": " right?", + "start": 999.88, + "end": 999.94, + "probability": 1.0 + } + ] + }, + { + "id": 448, + "text": "I think that's terrible.", + "start": 1000.0, + "end": 1001.08, + "words": [ + { + "word": " I", + "start": 1000.0, + "end": 1000.34, + "probability": 0.9892578125 + }, + { + "word": " think", + "start": 1000.34, + "end": 1000.54, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1000.54, + "end": 1000.8, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 1000.8, + "end": 1001.08, + "probability": 1.0 + } + ] + }, + { + "id": 449, + "text": "Now, there is no direct competition between the cable companies.", + "start": 1002.16, + "end": 1005.12, + "words": [ + { + "word": " Now,", + "start": 1002.16, + "end": 1002.64, + "probability": 1.0 + }, + { + "word": " there", + "start": 1002.72, + "end": 1003.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 1003.16, + "end": 1003.38, + "probability": 1.0 + }, + { + "word": " no", + "start": 1003.38, + "end": 1003.52, + "probability": 1.0 + }, + { + "word": " direct", + "start": 1003.52, + "end": 1003.74, + "probability": 1.0 + }, + { + "word": " competition", + "start": 1003.74, + "end": 1004.12, + "probability": 1.0 + }, + { + "word": " between", + "start": 1004.12, + "end": 1004.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 1004.42, + "end": 1004.6, + "probability": 1.0 + }, + { + "word": " cable", + "start": 1004.6, + "end": 1004.78, + "probability": 1.0 + }, + { + "word": " companies.", + "start": 1004.78, + "end": 1005.12, + "probability": 1.0 + } + ] + }, + { + "id": 450, + "text": "We know this.", + "start": 1005.12, + "end": 1005.84, + "words": [ + { + "word": " We", + "start": 1005.12, + "end": 1005.34, + "probability": 0.5146484375 + }, + { + "word": " know", + "start": 1005.34, + "end": 1005.58, + "probability": 0.9990234375 + }, + { + "word": " this.", + "start": 1005.58, + "end": 1005.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 451, + "text": "However, I actually used this to my advantage about two weeks ago.", + "start": 1006.18, + "end": 1012.64, + "words": [ + { + "word": " However,", + "start": 1006.18, + "end": 1006.62, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 1006.9, + "end": 1007.86, + "probability": 0.89404296875 + }, + { + "word": " actually", + "start": 1007.86, + "end": 1009.4, + "probability": 1.0 + }, + { + "word": " used", + "start": 1009.4, + "end": 1009.8, + "probability": 0.98974609375 + }, + { + "word": " this", + "start": 1009.8, + "end": 1010.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 1010.06, + "end": 1010.22, + "probability": 1.0 + }, + { + "word": " my", + "start": 1010.22, + "end": 1010.36, + "probability": 1.0 + }, + { + "word": " advantage", + "start": 1010.36, + "end": 1010.82, + "probability": 1.0 + }, + { + "word": " about", + "start": 1010.82, + "end": 1011.74, + "probability": 0.9990234375 + }, + { + "word": " two", + "start": 1011.74, + "end": 1012.18, + "probability": 0.99853515625 + }, + { + "word": " weeks", + "start": 1012.18, + "end": 1012.36, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 1012.36, + "end": 1012.64, + "probability": 1.0 + } + ] + }, + { + "id": 452, + "text": "All right?", + "start": 1012.8, + "end": 1013.36, + "words": [ + { + "word": " All", + "start": 1012.8, + "end": 1013.24, + "probability": 0.2237548828125 + }, + { + "word": " right?", + "start": 1013.24, + "end": 1013.36, + "probability": 1.0 + } + ] + }, + { + "id": 453, + "text": "Where I was having an argument with Cox about how much I pay for internet.", + "start": 1013.4, + "end": 1017.16, + "words": [ + { + "word": " Where", + "start": 1013.4, + "end": 1013.46, + "probability": 0.87548828125 + }, + { + "word": " I", + "start": 1013.46, + "end": 1013.62, + "probability": 1.0 + }, + { + "word": " was", + "start": 1013.62, + "end": 1013.7, + "probability": 1.0 + }, + { + "word": " having", + "start": 1013.7, + "end": 1013.9, + "probability": 1.0 + }, + { + "word": " an", + "start": 1013.9, + "end": 1014.18, + "probability": 1.0 + }, + { + "word": " argument", + "start": 1014.18, + "end": 1014.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 1014.58, + "end": 1015.06, + "probability": 1.0 + }, + { + "word": " Cox", + "start": 1015.06, + "end": 1015.34, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 1015.34, + "end": 1015.78, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 1015.78, + "end": 1016.04, + "probability": 1.0 + }, + { + "word": " much", + "start": 1016.04, + "end": 1016.26, + "probability": 1.0 + }, + { + "word": " I", + "start": 1016.26, + "end": 1016.4, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1016.4, + "end": 1016.6, + "probability": 1.0 + }, + { + "word": " for", + "start": 1016.6, + "end": 1016.84, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 1016.84, + "end": 1017.16, + "probability": 0.72998046875 + } + ] + }, + { + "id": 454, + "text": "And they basically said, well, you can stick it.", + "start": 1017.36, + "end": 1019.84, + "words": [ + { + "word": " And", + "start": 1017.36, + "end": 1017.52, + "probability": 0.994140625 + }, + { + "word": " they", + "start": 1017.52, + "end": 1017.64, + "probability": 0.98876953125 + }, + { + "word": " basically", + "start": 1017.64, + "end": 1017.96, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1017.96, + "end": 1018.26, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1018.4, + "end": 1018.48, + "probability": 0.986328125 + }, + { + "word": " you", + "start": 1018.58, + "end": 1019.22, + "probability": 1.0 + }, + { + "word": " can", + "start": 1019.22, + "end": 1019.42, + "probability": 1.0 + }, + { + "word": " stick", + "start": 1019.42, + "end": 1019.64, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1019.64, + "end": 1019.84, + "probability": 1.0 + } + ] + }, + { + "id": 455, + "text": "And until I went to the sales rep and said, you know what?", + "start": 1021.1799999999998, + "end": 1025.28, + "words": [ + { + "word": " And", + "start": 1021.1799999999998, + "end": 1021.6199999999999, + "probability": 0.96923828125 + }, + { + "word": " until", + "start": 1021.6199999999999, + "end": 1022.06, + "probability": 0.99365234375 + }, + { + "word": " I", + "start": 1022.06, + "end": 1023.44, + "probability": 0.99951171875 + }, + { + "word": " went", + "start": 1023.44, + "end": 1023.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1023.68, + "end": 1023.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1023.78, + "end": 1023.9, + "probability": 1.0 + }, + { + "word": " sales", + "start": 1023.9, + "end": 1024.32, + "probability": 1.0 + }, + { + "word": " rep", + "start": 1024.32, + "end": 1024.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 1024.58, + "end": 1024.72, + "probability": 0.99951171875 + }, + { + "word": " said,", + "start": 1024.72, + "end": 1024.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 1024.9, + "end": 1025.0, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 1025.0, + "end": 1025.1, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1025.1, + "end": 1025.28, + "probability": 1.0 + } + ] + }, + { + "id": 456, + "text": "My other office is in Comcast, and I will move every one of my servers and cancel a contract and never pay you.", + "start": 1025.7, + "end": 1033.52, + "words": [ + { + "word": " My", + "start": 1025.7, + "end": 1026.14, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 1026.14, + "end": 1026.72, + "probability": 1.0 + }, + { + "word": " office", + "start": 1026.72, + "end": 1027.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 1027.26, + "end": 1027.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 1027.78, + "end": 1028.0, + "probability": 1.0 + }, + { + "word": " Comcast,", + "start": 1028.0, + "end": 1028.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 1028.58, + "end": 1028.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 1028.84, + "end": 1028.94, + "probability": 1.0 + }, + { + "word": " will", + "start": 1028.94, + "end": 1029.16, + "probability": 1.0 + }, + { + "word": " move", + "start": 1029.16, + "end": 1029.44, + "probability": 1.0 + }, + { + "word": " every", + "start": 1029.44, + "end": 1029.86, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 1029.86, + "end": 1030.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1030.06, + "end": 1030.2, + "probability": 1.0 + }, + { + "word": " my", + "start": 1030.2, + "end": 1030.34, + "probability": 1.0 + }, + { + "word": " servers", + "start": 1030.34, + "end": 1030.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 1030.78, + "end": 1031.32, + "probability": 0.99560546875 + }, + { + "word": " cancel", + "start": 1031.32, + "end": 1031.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1031.78, + "end": 1031.92, + "probability": 0.98974609375 + }, + { + "word": " contract", + "start": 1031.92, + "end": 1032.34, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1032.34, + "end": 1032.74, + "probability": 0.99755859375 + }, + { + "word": " never", + "start": 1032.74, + "end": 1032.96, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1032.96, + "end": 1033.24, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1033.24, + "end": 1033.52, + "probability": 1.0 + } + ] + }, + { + "id": 457, + "text": "If you guys don't figure out how to do that.", + "start": 1033.72, + "end": 1035.1, + "words": [ + { + "word": " If", + "start": 1033.72, + "end": 1034.16, + "probability": 0.75732421875 + }, + { + "word": " you", + "start": 1034.16, + "end": 1034.28, + "probability": 0.99951171875 + }, + { + "word": " guys", + "start": 1034.28, + "end": 1034.48, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1034.48, + "end": 1034.66, + "probability": 0.9990234375 + }, + { + "word": " figure", + "start": 1034.66, + "end": 1034.84, + "probability": 0.98828125 + }, + { + "word": " out", + "start": 1034.84, + "end": 1034.96, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 1034.96, + "end": 1035.0, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 1035.0, + "end": 1035.1, + "probability": 0.98828125 + }, + { + "word": " do", + "start": 1035.1, + "end": 1035.1, + "probability": 0.73291015625 + }, + { + "word": " that.", + "start": 1035.1, + "end": 1035.1, + "probability": 0.54443359375 + } + ] + }, + { + "id": 458, + "text": "I'm going to make it so that I can get a better rate.", + "start": 1035.1, + "end": 1037.04, + "words": [ + { + "word": " I'm", + "start": 1035.1, + "end": 1035.1, + "probability": 0.419677734375 + }, + { + "word": " going", + "start": 1035.1, + "end": 1035.1, + "probability": 0.8330078125 + }, + { + "word": " to", + "start": 1035.1, + "end": 1035.1, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 1035.1, + "end": 1035.26, + "probability": 0.984375 + }, + { + "word": " it", + "start": 1035.26, + "end": 1035.36, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 1035.36, + "end": 1035.46, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 1035.46, + "end": 1035.58, + "probability": 0.96630859375 + }, + { + "word": " I", + "start": 1035.58, + "end": 1035.78, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1035.78, + "end": 1035.96, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 1035.96, + "end": 1036.42, + "probability": 0.78662109375 + }, + { + "word": " a", + "start": 1036.42, + "end": 1036.62, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 1036.62, + "end": 1036.74, + "probability": 0.99853515625 + }, + { + "word": " rate.", + "start": 1036.74, + "end": 1037.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 459, + "text": "Fair enough.", + "start": 1037.92, + "end": 1038.58, + "words": [ + { + "word": " Fair", + "start": 1037.92, + "end": 1038.36, + "probability": 0.06903076171875 + }, + { + "word": " enough.", + "start": 1038.36, + "end": 1038.58, + "probability": 1.0 + } + ] + }, + { + "id": 460, + "text": "And basically, I'm getting \u2013 I can get almost the same speed out of Comcast for one quarter of the cost.", + "start": 1038.76, + "end": 1047.24, + "words": [ + { + "word": " And", + "start": 1038.76, + "end": 1038.9, + "probability": 0.509765625 + }, + { + "word": " basically,", + "start": 1038.9, + "end": 1039.46, + "probability": 0.93994140625 + }, + { + "word": " I'm", + "start": 1039.64, + "end": 1040.0, + "probability": 0.5751953125 + }, + { + "word": " getting", + "start": 1040.0, + "end": 1040.2, + "probability": 0.9990234375 + }, + { + "word": " \u2013", + "start": 1040.2, + "end": 1040.44, + "probability": 0.314453125 + }, + { + "word": " I", + "start": 1040.44, + "end": 1041.9, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1041.9, + "end": 1042.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 1042.36, + "end": 1042.58, + "probability": 1.0 + }, + { + "word": " almost", + "start": 1042.58, + "end": 1042.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1042.98, + "end": 1043.26, + "probability": 1.0 + }, + { + "word": " same", + "start": 1043.26, + "end": 1043.52, + "probability": 1.0 + }, + { + "word": " speed", + "start": 1043.52, + "end": 1043.86, + "probability": 1.0 + }, + { + "word": " out", + "start": 1043.86, + "end": 1044.08, + "probability": 0.265625 + }, + { + "word": " of", + "start": 1044.08, + "end": 1044.14, + "probability": 1.0 + }, + { + "word": " Comcast", + "start": 1044.14, + "end": 1044.64, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1044.64, + "end": 1045.24, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 1045.24, + "end": 1045.6, + "probability": 0.99951171875 + }, + { + "word": " quarter", + "start": 1045.6, + "end": 1046.16, + "probability": 0.96337890625 + }, + { + "word": " of", + "start": 1046.16, + "end": 1046.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 1046.56, + "end": 1046.76, + "probability": 1.0 + }, + { + "word": " cost.", + "start": 1046.76, + "end": 1047.24, + "probability": 1.0 + } + ] + }, + { + "id": 461, + "text": "And so I basically \u2013 I called them and I said, I'm going to move all of my servers.", + "start": 1047.54, + "end": 1053.12, + "words": [ + { + "word": " And", + "start": 1047.54, + "end": 1047.98, + "probability": 0.9873046875 + }, + { + "word": " so", + "start": 1047.98, + "end": 1048.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 1048.3, + "end": 1048.88, + "probability": 0.64501953125 + }, + { + "word": " basically", + "start": 1048.88, + "end": 1049.6, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1049.6, + "end": 1049.76, + "probability": 0.8623046875 + }, + { + "word": " I", + "start": 1049.76, + "end": 1050.1, + "probability": 1.0 + }, + { + "word": " called", + "start": 1050.1, + "end": 1050.46, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 1050.46, + "end": 1050.62, + "probability": 0.96435546875 + }, + { + "word": " and", + "start": 1050.62, + "end": 1050.76, + "probability": 0.67724609375 + }, + { + "word": " I", + "start": 1050.76, + "end": 1050.86, + "probability": 0.99951171875 + }, + { + "word": " said,", + "start": 1050.86, + "end": 1051.1, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1051.14, + "end": 1051.52, + "probability": 1.0 + }, + { + "word": " going", + "start": 1051.52, + "end": 1051.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1051.78, + "end": 1052.06, + "probability": 1.0 + }, + { + "word": " move", + "start": 1052.06, + "end": 1052.26, + "probability": 1.0 + }, + { + "word": " all", + "start": 1052.26, + "end": 1052.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1052.5, + "end": 1052.6, + "probability": 1.0 + }, + { + "word": " my", + "start": 1052.6, + "end": 1052.76, + "probability": 1.0 + }, + { + "word": " servers.", + "start": 1052.76, + "end": 1053.12, + "probability": 1.0 + } + ] + }, + { + "id": 462, + "text": "All right?", + "start": 1053.34, + "end": 1053.7, + "words": [ + { + "word": " All", + "start": 1053.34, + "end": 1053.58, + "probability": 0.25634765625 + }, + { + "word": " right?", + "start": 1053.58, + "end": 1053.7, + "probability": 1.0 + } + ] + }, + { + "id": 463, + "text": "I will move $700 a month off of your service.", + "start": 1053.74, + "end": 1058.1, + "words": [ + { + "word": " I", + "start": 1053.74, + "end": 1053.88, + "probability": 0.99658203125 + }, + { + "word": " will", + "start": 1053.88, + "end": 1054.04, + "probability": 1.0 + }, + { + "word": " move", + "start": 1054.04, + "end": 1054.46, + "probability": 1.0 + }, + { + "word": " $700", + "start": 1054.46, + "end": 1056.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1056.1, + "end": 1056.8, + "probability": 1.0 + }, + { + "word": " month", + "start": 1056.8, + "end": 1057.02, + "probability": 1.0 + }, + { + "word": " off", + "start": 1057.02, + "end": 1057.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 1057.3, + "end": 1057.48, + "probability": 1.0 + }, + { + "word": " your", + "start": 1057.48, + "end": 1057.64, + "probability": 1.0 + }, + { + "word": " service.", + "start": 1057.64, + "end": 1058.1, + "probability": 1.0 + } + ] + }, + { + "id": 464, + "text": "All right?", + "start": 1058.46, + "end": 1059.06, + "words": [ + { + "word": " All", + "start": 1058.46, + "end": 1058.9, + "probability": 0.95263671875 + }, + { + "word": " right?", + "start": 1058.9, + "end": 1059.06, + "probability": 1.0 + } + ] + }, + { + "id": 465, + "text": "If you guys can't figure out how to make it so that it's cheaper for me.", + "start": 1059.08, + "end": 1062.24, + "words": [ + { + "word": " If", + "start": 1059.08, + "end": 1059.26, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 1059.26, + "end": 1059.38, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1059.38, + "end": 1059.58, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1059.58, + "end": 1059.9, + "probability": 1.0 + }, + { + "word": " figure", + "start": 1059.9, + "end": 1060.16, + "probability": 1.0 + }, + { + "word": " out", + "start": 1060.16, + "end": 1060.38, + "probability": 1.0 + }, + { + "word": " how", + "start": 1060.38, + "end": 1060.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 1060.6, + "end": 1060.74, + "probability": 1.0 + }, + { + "word": " make", + "start": 1060.74, + "end": 1060.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 1060.92, + "end": 1061.04, + "probability": 1.0 + }, + { + "word": " so", + "start": 1061.04, + "end": 1061.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 1061.18, + "end": 1061.32, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1061.32, + "end": 1061.54, + "probability": 1.0 + }, + { + "word": " cheaper", + "start": 1061.54, + "end": 1061.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 1061.8, + "end": 1062.02, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1062.02, + "end": 1062.24, + "probability": 1.0 + } + ] + }, + { + "id": 466, + "text": "Now, this \u2013", + "start": 1063.0, + "end": 1064.1, + "words": [ + { + "word": " Now,", + "start": 1063.0, + "end": 1063.44, + "probability": 0.9638671875 + }, + { + "word": " this", + "start": 1063.44, + "end": 1063.88, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1063.88, + "end": 1064.1, + "probability": 0.99755859375 + } + ] + }, + { + "id": 467, + "text": "This is a lucky situation where I happen to have \u2013 I can have the ability to have the cable companies compete against each other, but most people are not.", + "start": 1065.1, + "end": 1071.42, + "words": [ + { + "word": " This", + "start": 1065.1, + "end": 1065.1, + "probability": 0.0013799667358398438 + }, + { + "word": " is", + "start": 1065.1, + "end": 1065.1, + "probability": 0.921875 + }, + { + "word": " a", + "start": 1065.1, + "end": 1065.1, + "probability": 0.7255859375 + }, + { + "word": " lucky", + "start": 1065.1, + "end": 1065.18, + "probability": 0.587890625 + }, + { + "word": " situation", + "start": 1065.18, + "end": 1065.56, + "probability": 0.998046875 + }, + { + "word": " where", + "start": 1065.56, + "end": 1066.06, + "probability": 0.84716796875 + }, + { + "word": " I", + "start": 1066.06, + "end": 1066.22, + "probability": 1.0 + }, + { + "word": " happen", + "start": 1066.22, + "end": 1066.44, + "probability": 0.5341796875 + }, + { + "word": " to", + "start": 1066.44, + "end": 1066.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 1066.62, + "end": 1067.1, + "probability": 0.99951171875 + }, + { + "word": " \u2013", + "start": 1067.1, + "end": 1067.3, + "probability": 0.1214599609375 + }, + { + "word": " I", + "start": 1067.3, + "end": 1067.5, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1067.5, + "end": 1067.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 1067.66, + "end": 1067.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1067.88, + "end": 1068.08, + "probability": 1.0 + }, + { + "word": " ability", + "start": 1068.08, + "end": 1068.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1068.38, + "end": 1068.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 1068.6, + "end": 1068.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1068.74, + "end": 1068.9, + "probability": 1.0 + }, + { + "word": " cable", + "start": 1068.9, + "end": 1069.1, + "probability": 0.99951171875 + }, + { + "word": " companies", + "start": 1069.1, + "end": 1069.4, + "probability": 1.0 + }, + { + "word": " compete", + "start": 1069.4, + "end": 1069.7, + "probability": 1.0 + }, + { + "word": " against", + "start": 1069.7, + "end": 1069.96, + "probability": 1.0 + }, + { + "word": " each", + "start": 1069.96, + "end": 1070.2, + "probability": 1.0 + }, + { + "word": " other,", + "start": 1070.2, + "end": 1070.4, + "probability": 1.0 + }, + { + "word": " but", + "start": 1070.44, + "end": 1070.5, + "probability": 1.0 + }, + { + "word": " most", + "start": 1070.5, + "end": 1070.78, + "probability": 1.0 + }, + { + "word": " people", + "start": 1070.78, + "end": 1071.1, + "probability": 1.0 + }, + { + "word": " are", + "start": 1071.1, + "end": 1071.24, + "probability": 1.0 + }, + { + "word": " not.", + "start": 1071.24, + "end": 1071.42, + "probability": 1.0 + } + ] + }, + { + "id": 468, + "text": "Yeah, I'm also in that situation where I live.", + "start": 1072.0, + "end": 1074.7, + "words": [ + { + "word": " Yeah,", + "start": 1072.0, + "end": 1072.4, + "probability": 0.9248046875 + }, + { + "word": " I'm", + "start": 1072.48, + "end": 1072.66, + "probability": 1.0 + }, + { + "word": " also", + "start": 1072.66, + "end": 1072.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 1072.96, + "end": 1073.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1073.14, + "end": 1073.24, + "probability": 1.0 + }, + { + "word": " situation", + "start": 1073.24, + "end": 1073.6, + "probability": 1.0 + }, + { + "word": " where", + "start": 1073.6, + "end": 1074.02, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1074.02, + "end": 1074.22, + "probability": 0.31005859375 + }, + { + "word": " live.", + "start": 1074.22, + "end": 1074.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 469, + "text": "It's Comcast or Usenet.", + "start": 1074.84, + "end": 1077.12, + "words": [ + { + "word": " It's", + "start": 1074.84, + "end": 1075.14, + "probability": 0.99951171875 + }, + { + "word": " Comcast", + "start": 1075.14, + "end": 1075.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 1075.58, + "end": 1076.08, + "probability": 1.0 + }, + { + "word": " Usenet.", + "start": 1076.08, + "end": 1077.12, + "probability": 0.7783203125 + } + ] + }, + { + "id": 470, + "text": "And, yeah, you can probably take a pick through there.", + "start": 1077.26, + "end": 1079.88, + "words": [ + { + "word": " And,", + "start": 1077.26, + "end": 1077.66, + "probability": 0.939453125 + }, + { + "word": " yeah,", + "start": 1077.8, + "end": 1078.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 1078.36, + "end": 1078.48, + "probability": 0.9970703125 + }, + { + "word": " can", + "start": 1078.48, + "end": 1078.62, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1078.62, + "end": 1078.82, + "probability": 1.0 + }, + { + "word": " take", + "start": 1078.82, + "end": 1079.26, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1079.26, + "end": 1079.38, + "probability": 0.92626953125 + }, + { + "word": " pick", + "start": 1079.38, + "end": 1079.54, + "probability": 0.9873046875 + }, + { + "word": " through", + "start": 1079.54, + "end": 1079.72, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1079.72, + "end": 1079.88, + "probability": 1.0 + } + ] + }, + { + "id": 471, + "text": "Yeah, that's pretty much \u2013 you've got the worst of both worlds to choose from.", + "start": 1080.04, + "end": 1083.38, + "words": [ + { + "word": " Yeah,", + "start": 1080.04, + "end": 1080.36, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1080.42, + "end": 1080.62, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1080.62, + "end": 1080.8, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 1080.8, + "end": 1081.02, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1081.02, + "end": 1081.12, + "probability": 0.46875 + }, + { + "word": " you've", + "start": 1081.12, + "end": 1081.26, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 1081.26, + "end": 1081.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1081.48, + "end": 1081.72, + "probability": 1.0 + }, + { + "word": " worst", + "start": 1081.72, + "end": 1082.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 1082.1, + "end": 1082.28, + "probability": 1.0 + }, + { + "word": " both", + "start": 1082.28, + "end": 1082.48, + "probability": 1.0 + }, + { + "word": " worlds", + "start": 1082.48, + "end": 1082.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1082.74, + "end": 1082.96, + "probability": 1.0 + }, + { + "word": " choose", + "start": 1082.96, + "end": 1083.18, + "probability": 1.0 + }, + { + "word": " from.", + "start": 1083.18, + "end": 1083.38, + "probability": 1.0 + } + ] + }, + { + "id": 472, + "text": "However, back to your original point, is that if the FCC does their job the way that we're hoping, that the whole throttling thing is not going to be an issue.", + "start": 1084.4599999999998, + "end": 1093.82, + "words": [ + { + "word": " However,", + "start": 1084.4599999999998, + "end": 1084.86, + "probability": 1.0 + }, + { + "word": " back", + "start": 1085.14, + "end": 1085.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1085.36, + "end": 1085.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 1085.58, + "end": 1085.68, + "probability": 1.0 + }, + { + "word": " original", + "start": 1085.68, + "end": 1085.96, + "probability": 1.0 + }, + { + "word": " point,", + "start": 1085.96, + "end": 1086.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 1086.44, + "end": 1086.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1086.72, + "end": 1087.06, + "probability": 1.0 + }, + { + "word": " if", + "start": 1087.06, + "end": 1087.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 1087.58, + "end": 1087.76, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 1087.76, + "end": 1088.06, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 1088.06, + "end": 1088.4, + "probability": 1.0 + }, + { + "word": " their", + "start": 1088.4, + "end": 1088.56, + "probability": 1.0 + }, + { + "word": " job", + "start": 1088.56, + "end": 1088.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1088.78, + "end": 1088.92, + "probability": 1.0 + }, + { + "word": " way", + "start": 1088.92, + "end": 1089.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 1089.04, + "end": 1089.16, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1089.16, + "end": 1089.3, + "probability": 1.0 + }, + { + "word": " hoping,", + "start": 1089.3, + "end": 1089.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1089.78, + "end": 1091.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1091.2, + "end": 1091.6, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1091.6, + "end": 1092.02, + "probability": 1.0 + }, + { + "word": " throttling", + "start": 1092.02, + "end": 1092.64, + "probability": 0.99853515625 + }, + { + "word": " thing", + "start": 1092.64, + "end": 1092.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 1092.88, + "end": 1093.02, + "probability": 1.0 + }, + { + "word": " not", + "start": 1093.02, + "end": 1093.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 1093.2, + "end": 1093.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1093.36, + "end": 1093.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 1093.42, + "end": 1093.52, + "probability": 1.0 + }, + { + "word": " an", + "start": 1093.52, + "end": 1093.62, + "probability": 1.0 + }, + { + "word": " issue.", + "start": 1093.62, + "end": 1093.82, + "probability": 1.0 + } + ] + }, + { + "id": 473, + "text": "Now, Comcast is already.", + "start": 1093.92, + "end": 1094.92, + "words": [ + { + "word": " Now,", + "start": 1093.92, + "end": 1094.06, + "probability": 0.9873046875 + }, + { + "word": " Comcast", + "start": 1094.12, + "end": 1094.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 1094.52, + "end": 1094.68, + "probability": 0.564453125 + }, + { + "word": " already.", + "start": 1094.68, + "end": 1094.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 474, + "text": "It's already been caught throttling traffic for Netflix and YouTube.", + "start": 1094.92, + "end": 1098.08, + "words": [ + { + "word": " It's", + "start": 1094.92, + "end": 1095.0, + "probability": 0.329833984375 + }, + { + "word": " already", + "start": 1095.0, + "end": 1095.0, + "probability": 0.54248046875 + }, + { + "word": " been", + "start": 1095.0, + "end": 1095.12, + "probability": 0.99755859375 + }, + { + "word": " caught", + "start": 1095.12, + "end": 1095.56, + "probability": 0.998046875 + }, + { + "word": " throttling", + "start": 1095.56, + "end": 1096.2, + "probability": 0.99951171875 + }, + { + "word": " traffic", + "start": 1096.2, + "end": 1096.6, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1096.6, + "end": 1097.1, + "probability": 0.9970703125 + }, + { + "word": " Netflix", + "start": 1097.1, + "end": 1097.34, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1097.34, + "end": 1097.78, + "probability": 0.998046875 + }, + { + "word": " YouTube.", + "start": 1097.78, + "end": 1098.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 475, + "text": "Even though they say we don't do that, there have been people have found out, right?", + "start": 1099.42, + "end": 1103.72, + "words": [ + { + "word": " Even", + "start": 1099.42, + "end": 1099.86, + "probability": 0.9404296875 + }, + { + "word": " though", + "start": 1099.86, + "end": 1100.04, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1100.04, + "end": 1100.18, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 1100.18, + "end": 1100.38, + "probability": 1.0 + }, + { + "word": " we", + "start": 1100.38, + "end": 1100.66, + "probability": 0.9052734375 + }, + { + "word": " don't", + "start": 1100.66, + "end": 1101.02, + "probability": 1.0 + }, + { + "word": " do", + "start": 1101.02, + "end": 1101.16, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1101.16, + "end": 1101.4, + "probability": 1.0 + }, + { + "word": " there", + "start": 1101.62, + "end": 1101.72, + "probability": 0.95654296875 + }, + { + "word": " have", + "start": 1101.72, + "end": 1101.82, + "probability": 0.99658203125 + }, + { + "word": " been", + "start": 1101.82, + "end": 1101.96, + "probability": 1.0 + }, + { + "word": " people", + "start": 1101.96, + "end": 1102.28, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 1102.28, + "end": 1102.46, + "probability": 0.53759765625 + }, + { + "word": " found", + "start": 1102.46, + "end": 1103.06, + "probability": 0.99951171875 + }, + { + "word": " out,", + "start": 1103.06, + "end": 1103.44, + "probability": 0.9990234375 + }, + { + "word": " right?", + "start": 1103.54, + "end": 1103.72, + "probability": 0.96533203125 + } + ] + }, + { + "id": 476, + "text": "They're tracing those packets and showing conclusively that there's throttling happening.", + "start": 1103.78, + "end": 1107.36, + "words": [ + { + "word": " They're", + "start": 1103.78, + "end": 1103.94, + "probability": 0.9990234375 + }, + { + "word": " tracing", + "start": 1103.94, + "end": 1104.26, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 1104.26, + "end": 1104.44, + "probability": 1.0 + }, + { + "word": " packets", + "start": 1104.44, + "end": 1104.74, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1104.74, + "end": 1105.0, + "probability": 0.9990234375 + }, + { + "word": " showing", + "start": 1105.0, + "end": 1105.38, + "probability": 1.0 + }, + { + "word": " conclusively", + "start": 1105.38, + "end": 1106.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1106.12, + "end": 1106.42, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1106.42, + "end": 1106.66, + "probability": 0.998046875 + }, + { + "word": " throttling", + "start": 1106.66, + "end": 1106.96, + "probability": 1.0 + }, + { + "word": " happening.", + "start": 1106.96, + "end": 1107.36, + "probability": 1.0 + } + ] + }, + { + "id": 477, + "text": "Now, it could be \u2013 I'm just going to throw it out there just for the disclaimer of it all that, you know, there could have been a bad switch.", + "start": 1107.94, + "end": 1114.26, + "words": [ + { + "word": " Now,", + "start": 1107.94, + "end": 1108.38, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 1108.44, + "end": 1108.64, + "probability": 1.0 + }, + { + "word": " could", + "start": 1108.64, + "end": 1108.94, + "probability": 1.0 + }, + { + "word": " be", + "start": 1108.94, + "end": 1109.26, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1109.26, + "end": 1109.44, + "probability": 0.08203125 + }, + { + "word": " I'm", + "start": 1109.44, + "end": 1109.82, + "probability": 1.0 + }, + { + "word": " just", + "start": 1109.82, + "end": 1109.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 1109.94, + "end": 1110.04, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1110.04, + "end": 1110.14, + "probability": 1.0 + }, + { + "word": " throw", + "start": 1110.14, + "end": 1110.32, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1110.32, + "end": 1110.44, + "probability": 1.0 + }, + { + "word": " out", + "start": 1110.44, + "end": 1110.54, + "probability": 1.0 + }, + { + "word": " there", + "start": 1110.54, + "end": 1110.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 1110.7, + "end": 1110.88, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 1110.88, + "end": 1111.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1111.14, + "end": 1111.26, + "probability": 1.0 + }, + { + "word": " disclaimer", + "start": 1111.26, + "end": 1111.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1111.78, + "end": 1112.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 1112.06, + "end": 1112.16, + "probability": 1.0 + }, + { + "word": " all", + "start": 1112.16, + "end": 1112.38, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1112.38, + "end": 1112.68, + "probability": 0.66748046875 + }, + { + "word": " you", + "start": 1112.74, + "end": 1113.04, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1113.04, + "end": 1113.16, + "probability": 1.0 + }, + { + "word": " there", + "start": 1113.16, + "end": 1113.38, + "probability": 1.0 + }, + { + "word": " could", + "start": 1113.38, + "end": 1113.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 1113.58, + "end": 1113.72, + "probability": 1.0 + }, + { + "word": " been", + "start": 1113.72, + "end": 1113.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 1113.8, + "end": 1113.9, + "probability": 1.0 + }, + { + "word": " bad", + "start": 1113.9, + "end": 1114.04, + "probability": 1.0 + }, + { + "word": " switch.", + "start": 1114.04, + "end": 1114.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 478, + "text": "Right?", + "start": 1114.66, + "end": 1115.1, + "words": [ + { + "word": " Right?", + "start": 1114.66, + "end": 1115.1, + "probability": 0.98486328125 + } + ] + }, + { + "id": 479, + "text": "They could have popped across a network at the time of testing, but it seems pretty unlikely based off of when the tests were done and the time differences between them.", + "start": 1115.26, + "end": 1124.36, + "words": [ + { + "word": " They", + "start": 1115.26, + "end": 1115.42, + "probability": 0.92578125 + }, + { + "word": " could", + "start": 1115.42, + "end": 1115.64, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1115.64, + "end": 1115.74, + "probability": 1.0 + }, + { + "word": " popped", + "start": 1115.74, + "end": 1115.94, + "probability": 0.6484375 + }, + { + "word": " across", + "start": 1115.94, + "end": 1116.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 1116.18, + "end": 1116.42, + "probability": 0.986328125 + }, + { + "word": " network", + "start": 1116.42, + "end": 1116.68, + "probability": 1.0 + }, + { + "word": " at", + "start": 1116.68, + "end": 1117.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1117.02, + "end": 1117.14, + "probability": 1.0 + }, + { + "word": " time", + "start": 1117.14, + "end": 1117.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1117.5, + "end": 1117.66, + "probability": 1.0 + }, + { + "word": " testing,", + "start": 1117.66, + "end": 1118.02, + "probability": 1.0 + }, + { + "word": " but", + "start": 1118.14, + "end": 1118.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 1118.84, + "end": 1119.2, + "probability": 1.0 + }, + { + "word": " seems", + "start": 1119.2, + "end": 1119.7, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1119.7, + "end": 1119.98, + "probability": 1.0 + }, + { + "word": " unlikely", + "start": 1119.98, + "end": 1120.4, + "probability": 1.0 + }, + { + "word": " based", + "start": 1120.4, + "end": 1120.84, + "probability": 0.99853515625 + }, + { + "word": " off", + "start": 1120.84, + "end": 1121.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 1121.12, + "end": 1121.48, + "probability": 1.0 + }, + { + "word": " when", + "start": 1121.48, + "end": 1121.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1121.98, + "end": 1122.12, + "probability": 1.0 + }, + { + "word": " tests", + "start": 1122.12, + "end": 1122.38, + "probability": 1.0 + }, + { + "word": " were", + "start": 1122.38, + "end": 1122.54, + "probability": 1.0 + }, + { + "word": " done", + "start": 1122.54, + "end": 1122.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1122.74, + "end": 1123.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1123.0, + "end": 1123.12, + "probability": 1.0 + }, + { + "word": " time", + "start": 1123.12, + "end": 1123.46, + "probability": 1.0 + }, + { + "word": " differences", + "start": 1123.46, + "end": 1123.84, + "probability": 0.99951171875 + }, + { + "word": " between", + "start": 1123.84, + "end": 1124.14, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1124.14, + "end": 1124.36, + "probability": 1.0 + } + ] + }, + { + "id": 480, + "text": "So.", + "start": 1124.4, + "end": 1124.58, + "words": [ + { + "word": " So.", + "start": 1124.4, + "end": 1124.58, + "probability": 0.64501953125 + } + ] + }, + { + "id": 481, + "text": "So, my answer is, is I don't like the idea of the merger at all.", + "start": 1124.92, + "end": 1128.98, + "words": [ + { + "word": " So,", + "start": 1124.92, + "end": 1125.04, + "probability": 0.1427001953125 + }, + { + "word": " my", + "start": 1125.04, + "end": 1126.32, + "probability": 0.96435546875 + }, + { + "word": " answer", + "start": 1126.32, + "end": 1126.98, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1126.98, + "end": 1127.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1127.32, + "end": 1127.44, + "probability": 0.6923828125 + }, + { + "word": " I", + "start": 1127.44, + "end": 1127.52, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1127.52, + "end": 1127.7, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1127.7, + "end": 1127.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1127.84, + "end": 1127.98, + "probability": 1.0 + }, + { + "word": " idea", + "start": 1127.98, + "end": 1128.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 1128.2, + "end": 1128.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1128.32, + "end": 1128.32, + "probability": 0.99755859375 + }, + { + "word": " merger", + "start": 1128.32, + "end": 1128.54, + "probability": 0.9970703125 + }, + { + "word": " at", + "start": 1128.54, + "end": 1128.78, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1128.78, + "end": 1128.98, + "probability": 1.0 + } + ] + }, + { + "id": 482, + "text": "And I think that the FCC really has to step in and make things happen in order for us to, you know, to make it so that we are not at the rule of government.", + "start": 1129.12, + "end": 1139.6, + "words": [ + { + "word": " And", + "start": 1129.12, + "end": 1129.6, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1129.6, + "end": 1129.72, + "probability": 0.974609375 + }, + { + "word": " think", + "start": 1129.72, + "end": 1129.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 1129.96, + "end": 1130.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1130.1, + "end": 1130.2, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 1130.2, + "end": 1130.48, + "probability": 0.99853515625 + }, + { + "word": " really", + "start": 1130.48, + "end": 1131.06, + "probability": 1.0 + }, + { + "word": " has", + "start": 1131.06, + "end": 1131.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1131.4, + "end": 1131.58, + "probability": 1.0 + }, + { + "word": " step", + "start": 1131.58, + "end": 1131.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 1131.84, + "end": 1132.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 1132.12, + "end": 1132.6, + "probability": 0.99560546875 + }, + { + "word": " make", + "start": 1132.6, + "end": 1132.8, + "probability": 1.0 + }, + { + "word": " things", + "start": 1132.8, + "end": 1133.06, + "probability": 1.0 + }, + { + "word": " happen", + "start": 1133.06, + "end": 1133.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 1133.46, + "end": 1134.04, + "probability": 0.98681640625 + }, + { + "word": " order", + "start": 1134.04, + "end": 1134.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 1134.32, + "end": 1134.58, + "probability": 1.0 + }, + { + "word": " us", + "start": 1134.58, + "end": 1134.88, + "probability": 1.0 + }, + { + "word": " to,", + "start": 1134.88, + "end": 1135.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 1135.18, + "end": 1135.48, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 1135.48, + "end": 1135.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1135.68, + "end": 1136.14, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 1136.14, + "end": 1137.48, + "probability": 0.96142578125 + }, + { + "word": " it", + "start": 1137.48, + "end": 1137.64, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1137.64, + "end": 1137.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 1137.76, + "end": 1137.9, + "probability": 1.0 + }, + { + "word": " we", + "start": 1137.9, + "end": 1138.14, + "probability": 1.0 + }, + { + "word": " are", + "start": 1138.14, + "end": 1138.22, + "probability": 1.0 + }, + { + "word": " not", + "start": 1138.22, + "end": 1138.44, + "probability": 1.0 + }, + { + "word": " at", + "start": 1138.44, + "end": 1138.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 1138.64, + "end": 1138.8, + "probability": 1.0 + }, + { + "word": " rule", + "start": 1138.8, + "end": 1139.06, + "probability": 0.99169921875 + }, + { + "word": " of", + "start": 1139.06, + "end": 1139.32, + "probability": 1.0 + }, + { + "word": " government.", + "start": 1139.32, + "end": 1139.6, + "probability": 1.0 + } + ] + }, + { + "id": 483, + "text": "I don't like the idea of the Internet as a whole being a government appliance, a utility.", + "start": 1139.74, + "end": 1146.0, + "words": [ + { + "word": " I", + "start": 1139.74, + "end": 1140.12, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1140.12, + "end": 1140.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 1140.48, + "end": 1140.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1140.72, + "end": 1140.88, + "probability": 1.0 + }, + { + "word": " idea", + "start": 1140.88, + "end": 1141.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 1141.28, + "end": 1142.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1142.02, + "end": 1142.36, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1142.36, + "end": 1142.74, + "probability": 0.603515625 + }, + { + "word": " as", + "start": 1142.74, + "end": 1143.1, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1143.1, + "end": 1143.2, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1143.2, + "end": 1143.42, + "probability": 1.0 + }, + { + "word": " being", + "start": 1143.42, + "end": 1143.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1143.68, + "end": 1144.0, + "probability": 1.0 + }, + { + "word": " government", + "start": 1144.0, + "end": 1144.4, + "probability": 1.0 + }, + { + "word": " appliance,", + "start": 1144.4, + "end": 1144.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 1145.28, + "end": 1145.56, + "probability": 1.0 + }, + { + "word": " utility.", + "start": 1145.56, + "end": 1146.0, + "probability": 1.0 + } + ] + }, + { + "id": 484, + "text": "No, no, no.", + "start": 1146.38, + "end": 1147.1, + "words": [ + { + "word": " No,", + "start": 1146.38, + "end": 1146.84, + "probability": 0.71337890625 + }, + { + "word": " no,", + "start": 1146.84, + "end": 1147.0, + "probability": 0.9990234375 + }, + { + "word": " no.", + "start": 1147.0, + "end": 1147.1, + "probability": 1.0 + } + ] + }, + { + "id": 485, + "text": "Yeah.", + "start": 1147.1, + "end": 1147.3, + "words": [ + { + "word": " Yeah.", + "start": 1147.1, + "end": 1147.3, + "probability": 0.9716796875 + } + ] + }, + { + "id": 486, + "text": "So, I mean, I think it needs to stay open and free.", + "start": 1147.56, + "end": 1150.44, + "words": [ + { + "word": " So,", + "start": 1147.56, + "end": 1148.04, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1148.28, + "end": 1148.52, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1148.52, + "end": 1148.92, + "probability": 0.96923828125 + }, + { + "word": " I", + "start": 1148.94, + "end": 1149.18, + "probability": 1.0 + }, + { + "word": " think", + "start": 1149.18, + "end": 1149.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 1149.46, + "end": 1149.54, + "probability": 1.0 + }, + { + "word": " needs", + "start": 1149.54, + "end": 1149.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1149.64, + "end": 1149.78, + "probability": 1.0 + }, + { + "word": " stay", + "start": 1149.78, + "end": 1149.94, + "probability": 1.0 + }, + { + "word": " open", + "start": 1149.94, + "end": 1150.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 1150.16, + "end": 1150.28, + "probability": 1.0 + }, + { + "word": " free.", + "start": 1150.28, + "end": 1150.44, + "probability": 1.0 + } + ] + }, + { + "id": 487, + "text": "I totally agree.", + "start": 1150.84, + "end": 1151.98, + "words": [ + { + "word": " I", + "start": 1150.84, + "end": 1151.32, + "probability": 0.998046875 + }, + { + "word": " totally", + "start": 1151.32, + "end": 1151.66, + "probability": 1.0 + }, + { + "word": " agree.", + "start": 1151.66, + "end": 1151.98, + "probability": 1.0 + } + ] + }, + { + "id": 488, + "text": "All right, Goomer.", + "start": 1152.5, + "end": 1153.28, + "words": [ + { + "word": " All", + "start": 1152.5, + "end": 1152.98, + "probability": 0.99365234375 + }, + { + "word": " right,", + "start": 1152.98, + "end": 1153.12, + "probability": 1.0 + }, + { + "word": " Goomer.", + "start": 1153.12, + "end": 1153.28, + "probability": 0.568359375 + } + ] + }, + { + "id": 489, + "text": "Well, I appreciate your time.", + "start": 1153.34, + "end": 1154.4, + "words": [ + { + "word": " Well,", + "start": 1153.34, + "end": 1153.48, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1153.56, + "end": 1153.6, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 1153.6, + "end": 1153.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 1153.9, + "end": 1154.14, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1154.14, + "end": 1154.4, + "probability": 1.0 + } + ] + }, + { + "id": 490, + "text": "Thank you.", + "start": 1154.48, + "end": 1154.9, + "words": [ + { + "word": " Thank", + "start": 1154.48, + "end": 1154.9, + "probability": 0.1160888671875 + }, + { + "word": " you.", + "start": 1154.9, + "end": 1154.9, + "probability": 1.0 + } + ] + }, + { + "id": 491, + "text": "And I'm a big fan of the fact that you guys are back on the air.", + "start": 1154.9, + "end": 1157.32, + "words": [ + { + "word": " And", + "start": 1154.9, + "end": 1154.98, + "probability": 0.78076171875 + }, + { + "word": " I'm", + "start": 1154.98, + "end": 1155.26, + "probability": 0.966796875 + }, + { + "word": " a", + "start": 1155.26, + "end": 1155.4, + "probability": 1.0 + }, + { + "word": " big", + "start": 1155.4, + "end": 1155.64, + "probability": 1.0 + }, + { + "word": " fan", + "start": 1155.64, + "end": 1155.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 1155.8, + "end": 1155.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1155.98, + "end": 1156.02, + "probability": 1.0 + }, + { + "word": " fact", + "start": 1156.02, + "end": 1156.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 1156.2, + "end": 1156.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 1156.36, + "end": 1156.44, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1156.44, + "end": 1156.56, + "probability": 1.0 + }, + { + "word": " are", + "start": 1156.56, + "end": 1156.64, + "probability": 1.0 + }, + { + "word": " back", + "start": 1156.64, + "end": 1156.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 1156.84, + "end": 1157.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1157.0, + "end": 1157.12, + "probability": 1.0 + }, + { + "word": " air.", + "start": 1157.12, + "end": 1157.32, + "probability": 1.0 + } + ] + }, + { + "id": 492, + "text": "It's excellent.", + "start": 1157.68, + "end": 1158.32, + "words": [ + { + "word": " It's", + "start": 1157.68, + "end": 1158.0, + "probability": 1.0 + }, + { + "word": " excellent.", + "start": 1158.0, + "end": 1158.32, + "probability": 1.0 + } + ] + }, + { + "id": 493, + "text": "I wish you could be at two hours again, but I'll take an hour a week and enjoy the living heck out of it.", + "start": 1158.38, + "end": 1162.94, + "words": [ + { + "word": " I", + "start": 1158.38, + "end": 1158.54, + "probability": 1.0 + }, + { + "word": " wish", + "start": 1158.54, + "end": 1158.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 1158.72, + "end": 1158.82, + "probability": 0.357177734375 + }, + { + "word": " could", + "start": 1158.82, + "end": 1158.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 1158.92, + "end": 1159.04, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1159.04, + "end": 1159.1, + "probability": 0.8271484375 + }, + { + "word": " two", + "start": 1159.1, + "end": 1159.22, + "probability": 0.98974609375 + }, + { + "word": " hours", + "start": 1159.22, + "end": 1159.5, + "probability": 1.0 + }, + { + "word": " again,", + "start": 1159.5, + "end": 1159.72, + "probability": 1.0 + }, + { + "word": " but", + "start": 1159.88, + "end": 1160.06, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 1160.06, + "end": 1160.66, + "probability": 1.0 + }, + { + "word": " take", + "start": 1160.66, + "end": 1160.8, + "probability": 1.0 + }, + { + "word": " an", + "start": 1160.8, + "end": 1160.94, + "probability": 1.0 + }, + { + "word": " hour", + "start": 1160.94, + "end": 1161.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1161.1, + "end": 1161.22, + "probability": 1.0 + }, + { + "word": " week", + "start": 1161.22, + "end": 1161.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 1161.4, + "end": 1161.62, + "probability": 0.99609375 + }, + { + "word": " enjoy", + "start": 1161.62, + "end": 1162.12, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1162.12, + "end": 1162.3, + "probability": 1.0 + }, + { + "word": " living", + "start": 1162.3, + "end": 1162.46, + "probability": 0.99951171875 + }, + { + "word": " heck", + "start": 1162.46, + "end": 1162.64, + "probability": 1.0 + }, + { + "word": " out", + "start": 1162.64, + "end": 1162.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1162.78, + "end": 1162.9, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1162.9, + "end": 1162.94, + "probability": 1.0 + } + ] + }, + { + "id": 494, + "text": "Well, we'll see what we can do about that.", + "start": 1163.02, + "end": 1164.12, + "words": [ + { + "word": " Well,", + "start": 1163.02, + "end": 1163.14, + "probability": 0.33740234375 + }, + { + "word": " we'll", + "start": 1163.14, + "end": 1163.24, + "probability": 0.998046875 + }, + { + "word": " see", + "start": 1163.24, + "end": 1163.36, + "probability": 1.0 + }, + { + "word": " what", + "start": 1163.36, + "end": 1163.46, + "probability": 1.0 + }, + { + "word": " we", + "start": 1163.46, + "end": 1163.56, + "probability": 1.0 + }, + { + "word": " can", + "start": 1163.56, + "end": 1163.62, + "probability": 1.0 + }, + { + "word": " do", + "start": 1163.62, + "end": 1163.74, + "probability": 1.0 + }, + { + "word": " about", + "start": 1163.74, + "end": 1163.94, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1163.94, + "end": 1164.12, + "probability": 1.0 + } + ] + }, + { + "id": 495, + "text": "So, we're working on that.", + "start": 1164.8400000000001, + "end": 1166.0, + "words": [ + { + "word": " So,", + "start": 1164.8400000000001, + "end": 1165.16, + "probability": 0.29541015625 + }, + { + "word": " we're", + "start": 1165.16, + "end": 1165.48, + "probability": 0.99951171875 + }, + { + "word": " working", + "start": 1165.48, + "end": 1165.68, + "probability": 1.0 + }, + { + "word": " on", + "start": 1165.68, + "end": 1165.9, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1165.9, + "end": 1166.0, + "probability": 0.8671875 + } + ] + }, + { + "id": 496, + "text": "But thanks for the call, man.", + "start": 1166.12, + "end": 1167.02, + "words": [ + { + "word": " But", + "start": 1166.12, + "end": 1166.26, + "probability": 0.99853515625 + }, + { + "word": " thanks", + "start": 1166.26, + "end": 1166.5, + "probability": 0.9912109375 + }, + { + "word": " for", + "start": 1166.5, + "end": 1166.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 1166.64, + "end": 1166.76, + "probability": 1.0 + }, + { + "word": " call,", + "start": 1166.76, + "end": 1166.88, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1166.92, + "end": 1167.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 497, + "text": "I appreciate it.", + "start": 1167.06, + "end": 1167.6, + "words": [ + { + "word": " I", + "start": 1167.06, + "end": 1167.14, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 1167.14, + "end": 1167.4, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1167.4, + "end": 1167.6, + "probability": 1.0 + } + ] + }, + { + "id": 498, + "text": "All right.", + "start": 1167.7, + "end": 1167.84, + "words": [ + { + "word": " All", + "start": 1167.7, + "end": 1167.7, + "probability": 0.6923828125 + }, + { + "word": " right.", + "start": 1167.7, + "end": 1167.84, + "probability": 1.0 + } + ] + }, + { + "id": 499, + "text": "All right, well, right on.", + "start": 1168.6200000000001, + "end": 1169.64, + "words": [ + { + "word": " All", + "start": 1168.6200000000001, + "end": 1168.94, + "probability": 0.1322021484375 + }, + { + "word": " right,", + "start": 1168.94, + "end": 1169.0, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1169.0, + "end": 1169.1, + "probability": 0.311767578125 + }, + { + "word": " right", + "start": 1169.18, + "end": 1169.46, + "probability": 0.986328125 + }, + { + "word": " on.", + "start": 1169.46, + "end": 1169.64, + "probability": 1.0 + } + ] + }, + { + "id": 500, + "text": "Hey, I had a question texted to me, and I think you talked about this last week, about security breach on the Apple iPhone apps.", + "start": 1169.78, + "end": 1176.38, + "words": [ + { + "word": " Hey,", + "start": 1169.78, + "end": 1169.92, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1169.94, + "end": 1170.0, + "probability": 1.0 + }, + { + "word": " had", + "start": 1170.0, + "end": 1170.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 1170.14, + "end": 1170.22, + "probability": 1.0 + }, + { + "word": " question", + "start": 1170.22, + "end": 1170.5, + "probability": 1.0 + }, + { + "word": " texted", + "start": 1170.5, + "end": 1170.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1170.84, + "end": 1171.1, + "probability": 1.0 + }, + { + "word": " me,", + "start": 1171.1, + "end": 1171.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 1171.32, + "end": 1171.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 1171.46, + "end": 1171.54, + "probability": 1.0 + }, + { + "word": " think", + "start": 1171.54, + "end": 1171.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 1171.76, + "end": 1171.86, + "probability": 1.0 + }, + { + "word": " talked", + "start": 1171.86, + "end": 1172.06, + "probability": 1.0 + }, + { + "word": " about", + "start": 1172.06, + "end": 1172.3, + "probability": 1.0 + }, + { + "word": " this", + "start": 1172.3, + "end": 1172.46, + "probability": 1.0 + }, + { + "word": " last", + "start": 1172.46, + "end": 1172.66, + "probability": 1.0 + }, + { + "word": " week,", + "start": 1172.66, + "end": 1173.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 1173.08, + "end": 1173.7, + "probability": 0.99951171875 + }, + { + "word": " security", + "start": 1173.7, + "end": 1174.74, + "probability": 0.99755859375 + }, + { + "word": " breach", + "start": 1174.74, + "end": 1175.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1175.1, + "end": 1175.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1175.36, + "end": 1175.46, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 1175.46, + "end": 1175.68, + "probability": 0.998046875 + }, + { + "word": " iPhone", + "start": 1175.68, + "end": 1175.94, + "probability": 1.0 + }, + { + "word": " apps.", + "start": 1175.94, + "end": 1176.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 501, + "text": "Right.", + "start": 1176.68, + "end": 1177.0, + "words": [ + { + "word": " Right.", + "start": 1176.68, + "end": 1177.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 502, + "text": "Specifically for banking?", + "start": 1177.14, + "end": 1178.28, + "words": [ + { + "word": " Specifically", + "start": 1177.14, + "end": 1177.46, + "probability": 0.99169921875 + }, + { + "word": " for", + "start": 1177.46, + "end": 1178.0, + "probability": 1.0 + }, + { + "word": " banking?", + "start": 1178.0, + "end": 1178.28, + "probability": 1.0 + } + ] + }, + { + "id": 503, + "text": "Well, SSL as a whole.", + "start": 1179.96, + "end": 1180.96, + "words": [ + { + "word": " Well,", + "start": 1179.96, + "end": 1180.28, + "probability": 0.9990234375 + }, + { + "word": " SSL", + "start": 1180.28, + "end": 1180.6, + "probability": 1.0 + }, + { + "word": " as", + "start": 1180.6, + "end": 1180.74, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1180.74, + "end": 1180.84, + "probability": 1.0 + }, + { + "word": " whole.", + "start": 1180.84, + "end": 1180.96, + "probability": 1.0 + } + ] + }, + { + "id": 504, + "text": "Okay.", + "start": 1181.28, + "end": 1181.6, + "words": [ + { + "word": " Okay.", + "start": 1181.28, + "end": 1181.6, + "probability": 0.97216796875 + } + ] + }, + { + "id": 505, + "text": "It's anything that's secured.", + "start": 1181.8, + "end": 1184.04, + "words": [ + { + "word": " It's", + "start": 1181.8, + "end": 1182.12, + "probability": 0.9970703125 + }, + { + "word": " anything", + "start": 1182.12, + "end": 1183.0, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1183.0, + "end": 1183.62, + "probability": 1.0 + }, + { + "word": " secured.", + "start": 1183.62, + "end": 1184.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 506, + "text": "So, like banking, like Google Mail, like FaceTime, like anything that Apple uses.", + "start": 1185.08, + "end": 1191.4, + "words": [ + { + "word": " So,", + "start": 1185.08, + "end": 1185.48, + "probability": 0.96435546875 + }, + { + "word": " like", + "start": 1185.48, + "end": 1185.88, + "probability": 0.98779296875 + }, + { + "word": " banking,", + "start": 1185.88, + "end": 1186.3, + "probability": 0.9931640625 + }, + { + "word": " like", + "start": 1186.5, + "end": 1187.16, + "probability": 1.0 + }, + { + "word": " Google", + "start": 1187.16, + "end": 1187.46, + "probability": 1.0 + }, + { + "word": " Mail,", + "start": 1187.46, + "end": 1187.8, + "probability": 0.990234375 + }, + { + "word": " like", + "start": 1187.98, + "end": 1188.28, + "probability": 1.0 + }, + { + "word": " FaceTime,", + "start": 1188.28, + "end": 1189.0, + "probability": 1.0 + }, + { + "word": " like", + "start": 1189.2, + "end": 1189.5, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1189.5, + "end": 1190.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 1190.18, + "end": 1190.7, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 1190.7, + "end": 1190.98, + "probability": 1.0 + }, + { + "word": " uses.", + "start": 1190.98, + "end": 1191.4, + "probability": 1.0 + } + ] + }, + { + "id": 507, + "text": "I think banking was the biggest issue, though.", + "start": 1191.58, + "end": 1193.88, + "words": [ + { + "word": " I", + "start": 1191.58, + "end": 1191.98, + "probability": 0.998046875 + }, + { + "word": " think", + "start": 1191.98, + "end": 1192.14, + "probability": 1.0 + }, + { + "word": " banking", + "start": 1192.14, + "end": 1192.52, + "probability": 1.0 + }, + { + "word": " was", + "start": 1192.52, + "end": 1192.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1192.7, + "end": 1192.86, + "probability": 1.0 + }, + { + "word": " biggest", + "start": 1192.86, + "end": 1193.12, + "probability": 1.0 + }, + { + "word": " issue,", + "start": 1193.12, + "end": 1193.72, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1193.82, + "end": 1193.88, + "probability": 1.0 + } + ] + }, + { + "id": 508, + "text": "Yeah, that's what I'm led to believe.", + "start": 1193.96, + "end": 1195.34, + "words": [ + { + "word": " Yeah,", + "start": 1193.96, + "end": 1194.1, + "probability": 0.99267578125 + }, + { + "word": " that's", + "start": 1194.12, + "end": 1194.32, + "probability": 1.0 + }, + { + "word": " what", + "start": 1194.32, + "end": 1194.4, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1194.4, + "end": 1194.56, + "probability": 0.99951171875 + }, + { + "word": " led", + "start": 1194.56, + "end": 1195.0, + "probability": 0.88232421875 + }, + { + "word": " to", + "start": 1195.0, + "end": 1195.1, + "probability": 1.0 + }, + { + "word": " believe.", + "start": 1195.1, + "end": 1195.34, + "probability": 1.0 + } + ] + }, + { + "id": 509, + "text": "Right.", + "start": 1195.68, + "end": 1195.96, + "words": [ + { + "word": " Right.", + "start": 1195.68, + "end": 1195.96, + "probability": 0.98583984375 + } + ] + }, + { + "id": 510, + "text": "Well, basically, anytime you think you're safe on a Mac, you're totally not right now.", + "start": 1196.0, + "end": 1200.24, + "words": [ + { + "word": " Well,", + "start": 1196.0, + "end": 1196.3, + "probability": 0.99267578125 + }, + { + "word": " basically,", + "start": 1196.42, + "end": 1196.74, + "probability": 1.0 + }, + { + "word": " anytime", + "start": 1196.94, + "end": 1197.26, + "probability": 0.673828125 + }, + { + "word": " you", + "start": 1197.26, + "end": 1197.88, + "probability": 1.0 + }, + { + "word": " think", + "start": 1197.88, + "end": 1198.02, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1198.02, + "end": 1198.16, + "probability": 1.0 + }, + { + "word": " safe", + "start": 1198.16, + "end": 1198.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 1198.42, + "end": 1198.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 1198.6, + "end": 1198.68, + "probability": 1.0 + }, + { + "word": " Mac,", + "start": 1198.68, + "end": 1199.06, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1199.2, + "end": 1199.4, + "probability": 0.8544921875 + }, + { + "word": " totally", + "start": 1199.4, + "end": 1199.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 1199.64, + "end": 1199.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 1199.84, + "end": 1200.04, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1200.04, + "end": 1200.24, + "probability": 1.0 + } + ] + }, + { + "id": 511, + "text": "And they have pushed out some patches, but none of them have strictly dealt with the SSL issue.", + "start": 1200.54, + "end": 1205.7, + "words": [ + { + "word": " And", + "start": 1200.54, + "end": 1200.94, + "probability": 0.90869140625 + }, + { + "word": " they", + "start": 1200.94, + "end": 1201.56, + "probability": 0.99365234375 + }, + { + "word": " have", + "start": 1201.56, + "end": 1201.84, + "probability": 1.0 + }, + { + "word": " pushed", + "start": 1201.84, + "end": 1202.12, + "probability": 1.0 + }, + { + "word": " out", + "start": 1202.12, + "end": 1202.28, + "probability": 1.0 + }, + { + "word": " some", + "start": 1202.28, + "end": 1202.42, + "probability": 1.0 + }, + { + "word": " patches,", + "start": 1202.42, + "end": 1202.78, + "probability": 1.0 + }, + { + "word": " but", + "start": 1202.88, + "end": 1203.22, + "probability": 1.0 + }, + { + "word": " none", + "start": 1203.22, + "end": 1203.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 1203.38, + "end": 1203.52, + "probability": 1.0 + }, + { + "word": " them", + "start": 1203.52, + "end": 1203.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 1203.64, + "end": 1203.84, + "probability": 1.0 + }, + { + "word": " strictly", + "start": 1203.84, + "end": 1204.36, + "probability": 1.0 + }, + { + "word": " dealt", + "start": 1204.36, + "end": 1204.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 1204.78, + "end": 1204.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1204.94, + "end": 1205.08, + "probability": 1.0 + }, + { + "word": " SSL", + "start": 1205.08, + "end": 1205.44, + "probability": 1.0 + }, + { + "word": " issue.", + "start": 1205.44, + "end": 1205.7, + "probability": 1.0 + } + ] + }, + { + "id": 512, + "text": "Basically, it's still in the wild at this point.", + "start": 1207.3999999999999, + "end": 1209.5, + "words": [ + { + "word": " Basically,", + "start": 1207.3999999999999, + "end": 1207.8, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1208.04, + "end": 1208.28, + "probability": 1.0 + }, + { + "word": " still", + "start": 1208.28, + "end": 1208.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 1208.5, + "end": 1208.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1208.66, + "end": 1208.7, + "probability": 1.0 + }, + { + "word": " wild", + "start": 1208.7, + "end": 1208.94, + "probability": 1.0 + }, + { + "word": " at", + "start": 1208.94, + "end": 1209.08, + "probability": 1.0 + }, + { + "word": " this", + "start": 1209.08, + "end": 1209.26, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1209.26, + "end": 1209.5, + "probability": 1.0 + } + ] + }, + { + "id": 513, + "text": "Now, if you have a mobile device and you've got your updates, you're cool.", + "start": 1209.58, + "end": 1213.68, + "words": [ + { + "word": " Now,", + "start": 1209.58, + "end": 1209.78, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1209.82, + "end": 1209.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 1209.94, + "end": 1210.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 1210.0, + "end": 1210.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 1210.14, + "end": 1210.26, + "probability": 1.0 + }, + { + "word": " mobile", + "start": 1210.26, + "end": 1210.92, + "probability": 1.0 + }, + { + "word": " device", + "start": 1210.92, + "end": 1211.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 1211.48, + "end": 1212.24, + "probability": 0.89599609375 + }, + { + "word": " you've", + "start": 1212.24, + "end": 1212.6, + "probability": 1.0 + }, + { + "word": " got", + "start": 1212.6, + "end": 1212.78, + "probability": 1.0 + }, + { + "word": " your", + "start": 1212.78, + "end": 1212.94, + "probability": 1.0 + }, + { + "word": " updates,", + "start": 1212.94, + "end": 1213.24, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1213.36, + "end": 1213.5, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 1213.5, + "end": 1213.68, + "probability": 1.0 + } + ] + }, + { + "id": 514, + "text": "Everything's fine.", + "start": 1214.0, + "end": 1214.56, + "words": [ + { + "word": " Everything's", + "start": 1214.0, + "end": 1214.4, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 1214.4, + "end": 1214.56, + "probability": 1.0 + } + ] + }, + { + "id": 515, + "text": "We're led to believe that anyway.", + "start": 1215.5600000000002, + "end": 1216.98, + "words": [ + { + "word": " We're", + "start": 1215.5600000000002, + "end": 1215.92, + "probability": 0.892578125 + }, + { + "word": " led", + "start": 1215.92, + "end": 1216.06, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1216.06, + "end": 1216.24, + "probability": 1.0 + }, + { + "word": " believe", + "start": 1216.24, + "end": 1216.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 1216.48, + "end": 1216.68, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 1216.68, + "end": 1216.98, + "probability": 0.9482421875 + } + ] + }, + { + "id": 516, + "text": "But as far as the desktop units, there's still not an official fix for that as of yet.", + "start": 1218.22, + "end": 1223.2, + "words": [ + { + "word": " But", + "start": 1218.22, + "end": 1218.58, + "probability": 0.966796875 + }, + { + "word": " as", + "start": 1218.58, + "end": 1218.76, + "probability": 0.99267578125 + }, + { + "word": " far", + "start": 1218.76, + "end": 1218.9, + "probability": 1.0 + }, + { + "word": " as", + "start": 1218.9, + "end": 1219.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1219.02, + "end": 1219.12, + "probability": 1.0 + }, + { + "word": " desktop", + "start": 1219.12, + "end": 1219.36, + "probability": 0.9990234375 + }, + { + "word": " units,", + "start": 1219.36, + "end": 1219.64, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1219.78, + "end": 1219.92, + "probability": 0.98291015625 + }, + { + "word": " still", + "start": 1219.92, + "end": 1220.14, + "probability": 1.0 + }, + { + "word": " not", + "start": 1220.14, + "end": 1220.38, + "probability": 1.0 + }, + { + "word": " an", + "start": 1220.38, + "end": 1220.86, + "probability": 0.99951171875 + }, + { + "word": " official", + "start": 1220.86, + "end": 1221.42, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1221.42, + "end": 1221.92, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 1221.92, + "end": 1222.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 1222.1, + "end": 1222.26, + "probability": 1.0 + }, + { + "word": " as", + "start": 1222.26, + "end": 1222.64, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 1222.64, + "end": 1222.88, + "probability": 1.0 + }, + { + "word": " yet.", + "start": 1222.88, + "end": 1223.2, + "probability": 1.0 + } + ] + }, + { + "id": 517, + "text": "We're still looking, though.", + "start": 1224.5600000000002, + "end": 1225.64, + "words": [ + { + "word": " We're", + "start": 1224.5600000000002, + "end": 1224.92, + "probability": 0.98486328125 + }, + { + "word": " still", + "start": 1224.92, + "end": 1225.02, + "probability": 1.0 + }, + { + "word": " looking,", + "start": 1225.02, + "end": 1225.4, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1225.44, + "end": 1225.64, + "probability": 1.0 + } + ] + }, + { + "id": 518, + "text": "We'll let you know.", + "start": 1226.0600000000002, + "end": 1227.12, + "words": [ + { + "word": " We'll", + "start": 1226.0600000000002, + "end": 1226.42, + "probability": 0.9912109375 + }, + { + "word": " let", + "start": 1226.42, + "end": 1226.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 1226.78, + "end": 1226.96, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1226.96, + "end": 1227.12, + "probability": 1.0 + } + ] + }, + { + "id": 519, + "text": "Yeah, well, you know, I think I'll just do some banking on the Mac.", + "start": 1227.3, + "end": 1230.38, + "words": [ + { + "word": " Yeah,", + "start": 1227.3, + "end": 1227.54, + "probability": 0.52587890625 + }, + { + "word": " well,", + "start": 1227.54, + "end": 1227.68, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1227.78, + "end": 1227.92, + "probability": 0.94970703125 + }, + { + "word": " know,", + "start": 1227.92, + "end": 1228.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 1228.08, + "end": 1228.26, + "probability": 1.0 + }, + { + "word": " think", + "start": 1228.26, + "end": 1228.94, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 1228.94, + "end": 1229.14, + "probability": 1.0 + }, + { + "word": " just", + "start": 1229.14, + "end": 1229.28, + "probability": 1.0 + }, + { + "word": " do", + "start": 1229.28, + "end": 1229.4, + "probability": 1.0 + }, + { + "word": " some", + "start": 1229.4, + "end": 1229.58, + "probability": 1.0 + }, + { + "word": " banking", + "start": 1229.58, + "end": 1229.78, + "probability": 0.7431640625 + }, + { + "word": " on", + "start": 1229.78, + "end": 1230.06, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 1230.06, + "end": 1230.2, + "probability": 1.0 + }, + { + "word": " Mac.", + "start": 1230.2, + "end": 1230.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 520, + "text": "That's what we're going to do.", + "start": 1231.2800000000002, + "end": 1232.34, + "words": [ + { + "word": " That's", + "start": 1231.2800000000002, + "end": 1231.64, + "probability": 1.0 + }, + { + "word": " what", + "start": 1231.64, + "end": 1231.74, + "probability": 0.99462890625 + }, + { + "word": " we're", + "start": 1231.74, + "end": 1231.98, + "probability": 1.0 + }, + { + "word": " going", + "start": 1231.98, + "end": 1232.06, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1232.06, + "end": 1232.2, + "probability": 1.0 + }, + { + "word": " do.", + "start": 1232.2, + "end": 1232.34, + "probability": 1.0 + } + ] + }, + { + "id": 521, + "text": "If you'd like to be part of the show, 7902040, that's 520-7902040.", + "start": 1233.7, + "end": 1239.22, + "words": [ + { + "word": " If", + "start": 1233.7, + "end": 1234.06, + "probability": 0.99755859375 + }, + { + "word": " you'd", + "start": 1234.06, + "end": 1234.24, + "probability": 1.0 + }, + { + "word": " like", + "start": 1234.24, + "end": 1234.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1234.28, + "end": 1234.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 1234.4, + "end": 1234.42, + "probability": 1.0 + }, + { + "word": " part", + "start": 1234.42, + "end": 1234.56, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1234.56, + "end": 1234.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1234.66, + "end": 1234.7, + "probability": 1.0 + }, + { + "word": " show,", + "start": 1234.7, + "end": 1234.94, + "probability": 1.0 + }, + { + "word": " 7902040,", + "start": 1235.06, + "end": 1236.62, + "probability": 0.9404296875 + }, + { + "word": " that's", + "start": 1236.7, + "end": 1236.86, + "probability": 1.0 + }, + { + "word": " 520", + "start": 1236.86, + "end": 1237.24, + "probability": 0.99462890625 + }, + { + "word": "-7902040.", + "start": 1237.24, + "end": 1239.22, + "probability": 0.90087890625 + } + ] + }, + { + "id": 522, + "text": "Yeah.", + "start": 1241.0400000000002, + "end": 1241.4, + "words": [ + { + "word": " Yeah.", + "start": 1241.0400000000002, + "end": 1241.4, + "probability": 0.99267578125 + } + ] + }, + { + "id": 523, + "text": "Yeah.", + "start": 1241.58, + "end": 1241.68, + "words": [ + { + "word": " Yeah.", + "start": 1241.58, + "end": 1241.68, + "probability": 0.0005397796630859375 + } + ] + }, + { + "id": 524, + "text": "The whole, what does the ISP mean thing?", + "start": 1242.1200000000001, + "end": 1244.38, + "words": [ + { + "word": " The", + "start": 1242.1200000000001, + "end": 1242.48, + "probability": 0.99951171875 + }, + { + "word": " whole,", + "start": 1242.48, + "end": 1242.7, + "probability": 1.0 + }, + { + "word": " what", + "start": 1242.82, + "end": 1243.02, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 1243.02, + "end": 1243.2, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1243.2, + "end": 1243.36, + "probability": 1.0 + }, + { + "word": " ISP", + "start": 1243.36, + "end": 1243.9, + "probability": 0.99951171875 + }, + { + "word": " mean", + "start": 1243.9, + "end": 1244.12, + "probability": 0.99951171875 + }, + { + "word": " thing?", + "start": 1244.12, + "end": 1244.38, + "probability": 0.9736328125 + } + ] + }, + { + "id": 525, + "text": "Just made me nuts.", + "start": 1244.38, + "end": 1245.44, + "words": [ + { + "word": " Just", + "start": 1244.38, + "end": 1244.6, + "probability": 0.117431640625 + }, + { + "word": " made", + "start": 1244.6, + "end": 1244.86, + "probability": 0.98974609375 + }, + { + "word": " me", + "start": 1244.86, + "end": 1245.08, + "probability": 1.0 + }, + { + "word": " nuts.", + "start": 1245.08, + "end": 1245.44, + "probability": 0.99658203125 + } + ] + }, + { + "id": 526, + "text": "I can tell.", + "start": 1245.64, + "end": 1246.48, + "words": [ + { + "word": " I", + "start": 1245.64, + "end": 1246.04, + "probability": 0.54443359375 + }, + { + "word": " can", + "start": 1246.04, + "end": 1246.24, + "probability": 0.5517578125 + }, + { + "word": " tell.", + "start": 1246.24, + "end": 1246.48, + "probability": 1.0 + } + ] + }, + { + "id": 527, + "text": "I was not, I wasn't even planning on being all that ranty today.", + "start": 1246.64, + "end": 1249.92, + "words": [ + { + "word": " I", + "start": 1246.64, + "end": 1246.78, + "probability": 0.98876953125 + }, + { + "word": " was", + "start": 1246.78, + "end": 1246.86, + "probability": 0.30029296875 + }, + { + "word": " not,", + "start": 1246.86, + "end": 1247.16, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1247.18, + "end": 1247.74, + "probability": 1.0 + }, + { + "word": " wasn't", + "start": 1247.74, + "end": 1248.04, + "probability": 1.0 + }, + { + "word": " even", + "start": 1248.04, + "end": 1248.18, + "probability": 1.0 + }, + { + "word": " planning", + "start": 1248.18, + "end": 1248.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 1248.42, + "end": 1248.64, + "probability": 0.99609375 + }, + { + "word": " being", + "start": 1248.64, + "end": 1248.78, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1248.78, + "end": 1249.08, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1249.08, + "end": 1249.3, + "probability": 1.0 + }, + { + "word": " ranty", + "start": 1249.3, + "end": 1249.78, + "probability": 0.99853515625 + }, + { + "word": " today.", + "start": 1249.78, + "end": 1249.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 528, + "text": "I was just like, let's see what's on the news.", + "start": 1249.98, + "end": 1252.18, + "words": [ + { + "word": " I", + "start": 1249.98, + "end": 1250.1, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 1250.1, + "end": 1250.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 1250.16, + "end": 1250.3, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1250.3, + "end": 1250.46, + "probability": 0.99951171875 + }, + { + "word": " let's", + "start": 1250.48, + "end": 1250.88, + "probability": 0.88671875 + }, + { + "word": " see", + "start": 1250.88, + "end": 1251.0, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 1251.0, + "end": 1251.74, + "probability": 0.9951171875 + }, + { + "word": " on", + "start": 1251.74, + "end": 1251.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1251.82, + "end": 1251.98, + "probability": 1.0 + }, + { + "word": " news.", + "start": 1251.98, + "end": 1252.18, + "probability": 1.0 + } + ] + }, + { + "id": 529, + "text": "We'll just go ahead.", + "start": 1252.26, + "end": 1252.74, + "words": [ + { + "word": " We'll", + "start": 1252.26, + "end": 1252.36, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 1252.36, + "end": 1252.46, + "probability": 1.0 + }, + { + "word": " go", + "start": 1252.46, + "end": 1252.58, + "probability": 1.0 + }, + { + "word": " ahead.", + "start": 1252.58, + "end": 1252.74, + "probability": 1.0 + } + ] + }, + { + "id": 530, + "text": "And then I saw that and I was just like, you know what?", + "start": 1252.88, + "end": 1254.98, + "words": [ + { + "word": " And", + "start": 1252.88, + "end": 1252.98, + "probability": 0.99609375 + }, + { + "word": " then", + "start": 1252.98, + "end": 1253.2, + "probability": 0.98828125 + }, + { + "word": " I", + "start": 1253.2, + "end": 1253.44, + "probability": 0.99755859375 + }, + { + "word": " saw", + "start": 1253.44, + "end": 1253.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 1253.7, + "end": 1253.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 1253.92, + "end": 1254.04, + "probability": 0.83984375 + }, + { + "word": " I", + "start": 1254.04, + "end": 1254.14, + "probability": 1.0 + }, + { + "word": " was", + "start": 1254.14, + "end": 1254.2, + "probability": 1.0 + }, + { + "word": " just", + "start": 1254.2, + "end": 1254.32, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1254.32, + "end": 1254.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1254.54, + "end": 1254.62, + "probability": 0.99853515625 + }, + { + "word": " know", + "start": 1254.62, + "end": 1254.78, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1254.78, + "end": 1254.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 531, + "text": "I found my first segment of the show because that was just, it's so ridiculous.", + "start": 1255.1, + "end": 1261.52, + "words": [ + { + "word": " I", + "start": 1255.1, + "end": 1255.24, + "probability": 0.99853515625 + }, + { + "word": " found", + "start": 1255.24, + "end": 1255.62, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 1255.62, + "end": 1255.84, + "probability": 1.0 + }, + { + "word": " first", + "start": 1255.84, + "end": 1256.12, + "probability": 1.0 + }, + { + "word": " segment", + "start": 1256.12, + "end": 1256.44, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1256.44, + "end": 1256.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1256.6, + "end": 1256.68, + "probability": 1.0 + }, + { + "word": " show", + "start": 1256.68, + "end": 1256.92, + "probability": 1.0 + }, + { + "word": " because", + "start": 1256.92, + "end": 1257.82, + "probability": 0.71044921875 + }, + { + "word": " that", + "start": 1257.82, + "end": 1258.62, + "probability": 1.0 + }, + { + "word": " was", + "start": 1258.62, + "end": 1259.12, + "probability": 1.0 + }, + { + "word": " just,", + "start": 1259.12, + "end": 1259.7, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1259.78, + "end": 1260.6, + "probability": 1.0 + }, + { + "word": " so", + "start": 1260.6, + "end": 1260.96, + "probability": 1.0 + }, + { + "word": " ridiculous.", + "start": 1260.96, + "end": 1261.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 532, + "text": "You would think that they'd have a basic knowledge.", + "start": 1262.52, + "end": 1264.72, + "words": [ + { + "word": " You", + "start": 1262.52, + "end": 1262.92, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 1262.92, + "end": 1263.04, + "probability": 1.0 + }, + { + "word": " think", + "start": 1263.04, + "end": 1263.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1263.26, + "end": 1263.4, + "probability": 1.0 + }, + { + "word": " they'd", + "start": 1263.4, + "end": 1263.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 1263.54, + "end": 1263.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 1263.74, + "end": 1264.06, + "probability": 0.99951171875 + }, + { + "word": " basic", + "start": 1264.06, + "end": 1264.36, + "probability": 0.99560546875 + }, + { + "word": " knowledge.", + "start": 1264.36, + "end": 1264.72, + "probability": 1.0 + } + ] + }, + { + "id": 533, + "text": "That's one of the first things you learn in computer class.", + "start": 1265.7, + "end": 1268.58, + "words": [ + { + "word": " That's", + "start": 1265.7, + "end": 1266.1, + "probability": 0.9755859375 + }, + { + "word": " one", + "start": 1266.1, + "end": 1266.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1266.22, + "end": 1266.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1266.3, + "end": 1266.34, + "probability": 0.9892578125 + }, + { + "word": " first", + "start": 1266.34, + "end": 1266.56, + "probability": 1.0 + }, + { + "word": " things", + "start": 1266.56, + "end": 1266.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 1266.94, + "end": 1267.16, + "probability": 0.99951171875 + }, + { + "word": " learn", + "start": 1267.16, + "end": 1267.42, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1267.42, + "end": 1267.9, + "probability": 0.55224609375 + }, + { + "word": " computer", + "start": 1267.9, + "end": 1268.3, + "probability": 0.94921875 + }, + { + "word": " class.", + "start": 1268.3, + "end": 1268.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 534, + "text": "The thing that bothers me about it.", + "start": 1268.96, + "end": 1270.72, + "words": [ + { + "word": " The", + "start": 1268.96, + "end": 1269.36, + "probability": 0.91064453125 + }, + { + "word": " thing", + "start": 1269.36, + "end": 1269.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 1269.84, + "end": 1269.96, + "probability": 1.0 + }, + { + "word": " bothers", + "start": 1269.96, + "end": 1270.18, + "probability": 1.0 + }, + { + "word": " me", + "start": 1270.18, + "end": 1270.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 1270.38, + "end": 1270.58, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1270.58, + "end": 1270.72, + "probability": 1.0 + } + ] + }, + { + "id": 535, + "text": "All right.", + "start": 1270.84, + "end": 1271.2, + "words": [ + { + "word": " All", + "start": 1270.84, + "end": 1271.06, + "probability": 0.83251953125 + }, + { + "word": " right.", + "start": 1271.06, + "end": 1271.2, + "probability": 1.0 + } + ] + }, + { + "id": 536, + "text": "A little micro rant going on here.", + "start": 1271.28, + "end": 1273.34, + "words": [ + { + "word": " A", + "start": 1271.28, + "end": 1271.5, + "probability": 0.82373046875 + }, + { + "word": " little", + "start": 1271.5, + "end": 1272.12, + "probability": 1.0 + }, + { + "word": " micro", + "start": 1272.12, + "end": 1272.4, + "probability": 0.998046875 + }, + { + "word": " rant", + "start": 1272.4, + "end": 1272.72, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 1272.72, + "end": 1272.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 1272.9, + "end": 1273.16, + "probability": 1.0 + }, + { + "word": " here.", + "start": 1273.16, + "end": 1273.34, + "probability": 1.0 + } + ] + }, + { + "id": 537, + "text": "I'm sorry.", + "start": 1273.34, + "end": 1274.36, + "words": [ + { + "word": " I'm", + "start": 1273.34, + "end": 1274.2, + "probability": 0.95361328125 + }, + { + "word": " sorry.", + "start": 1274.2, + "end": 1274.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 538, + "text": "Is that, you know, the whole thing coming out of government is, listen, we're trying to keep you safe.", + "start": 1274.74, + "end": 1280.68, + "words": [ + { + "word": " Is", + "start": 1274.74, + "end": 1275.18, + "probability": 0.81298828125 + }, + { + "word": " that,", + "start": 1275.18, + "end": 1275.38, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1275.56, + "end": 1276.18, + "probability": 0.99365234375 + }, + { + "word": " know,", + "start": 1276.18, + "end": 1276.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1276.36, + "end": 1276.46, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1276.46, + "end": 1277.36, + "probability": 0.9765625 + }, + { + "word": " thing", + "start": 1277.36, + "end": 1277.86, + "probability": 1.0 + }, + { + "word": " coming", + "start": 1277.86, + "end": 1278.12, + "probability": 1.0 + }, + { + "word": " out", + "start": 1278.12, + "end": 1278.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 1278.38, + "end": 1278.48, + "probability": 1.0 + }, + { + "word": " government", + "start": 1278.48, + "end": 1278.8, + "probability": 0.9990234375 + }, + { + "word": " is,", + "start": 1278.8, + "end": 1279.04, + "probability": 1.0 + }, + { + "word": " listen,", + "start": 1279.12, + "end": 1279.36, + "probability": 0.96875 + }, + { + "word": " we're", + "start": 1279.44, + "end": 1279.58, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1279.58, + "end": 1279.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1279.82, + "end": 1280.0, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1280.0, + "end": 1280.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 1280.18, + "end": 1280.36, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 1280.36, + "end": 1280.68, + "probability": 1.0 + } + ] + }, + { + "id": 539, + "text": "We just want to save you.", + "start": 1280.74, + "end": 1282.6, + "words": [ + { + "word": " We", + "start": 1280.74, + "end": 1280.88, + "probability": 1.0 + }, + { + "word": " just", + "start": 1280.88, + "end": 1281.08, + "probability": 1.0 + }, + { + "word": " want", + "start": 1281.08, + "end": 1281.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1281.36, + "end": 1281.64, + "probability": 1.0 + }, + { + "word": " save", + "start": 1281.64, + "end": 1282.16, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1282.16, + "end": 1282.6, + "probability": 1.0 + } + ] + }, + { + "id": 540, + "text": "We just want to save you.", + "start": 1282.76, + "end": 1284.18, + "words": [ + { + "word": " We", + "start": 1282.76, + "end": 1283.2, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1283.2, + "end": 1283.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 1283.4, + "end": 1283.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1283.64, + "end": 1283.78, + "probability": 1.0 + }, + { + "word": " save", + "start": 1283.78, + "end": 1284.0, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1284.0, + "end": 1284.18, + "probability": 1.0 + } + ] + }, + { + "id": 541, + "text": "And that's what one side of their face is saying.", + "start": 1284.2, + "end": 1286.26, + "words": [ + { + "word": " And", + "start": 1284.2, + "end": 1284.26, + "probability": 0.9921875 + }, + { + "word": " that's", + "start": 1284.26, + "end": 1284.38, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 1284.38, + "end": 1284.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 1284.46, + "end": 1284.68, + "probability": 1.0 + }, + { + "word": " side", + "start": 1284.68, + "end": 1285.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1285.06, + "end": 1285.24, + "probability": 1.0 + }, + { + "word": " their", + "start": 1285.24, + "end": 1285.36, + "probability": 1.0 + }, + { + "word": " face", + "start": 1285.36, + "end": 1285.7, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1285.7, + "end": 1285.92, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 1285.92, + "end": 1286.26, + "probability": 1.0 + } + ] + }, + { + "id": 542, + "text": "Where the other one's like, we just want to record everything about you and save it for future use in case you turn out to be a jerk.", + "start": 1286.38, + "end": 1293.76, + "words": [ + { + "word": " Where", + "start": 1286.38, + "end": 1286.82, + "probability": 0.951171875 + }, + { + "word": " the", + "start": 1286.82, + "end": 1286.96, + "probability": 1.0 + }, + { + "word": " other", + "start": 1286.96, + "end": 1287.12, + "probability": 1.0 + }, + { + "word": " one's", + "start": 1287.12, + "end": 1287.38, + "probability": 0.9794921875 + }, + { + "word": " like,", + "start": 1287.38, + "end": 1287.54, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 1287.72, + "end": 1287.92, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1287.92, + "end": 1288.14, + "probability": 1.0 + }, + { + "word": " want", + "start": 1288.14, + "end": 1288.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 1288.34, + "end": 1288.58, + "probability": 1.0 + }, + { + "word": " record", + "start": 1288.58, + "end": 1288.94, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1288.94, + "end": 1289.64, + "probability": 1.0 + }, + { + "word": " about", + "start": 1289.64, + "end": 1290.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1290.16, + "end": 1290.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 1290.5, + "end": 1290.7, + "probability": 0.99462890625 + }, + { + "word": " save", + "start": 1290.7, + "end": 1291.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 1291.04, + "end": 1291.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 1291.22, + "end": 1291.38, + "probability": 1.0 + }, + { + "word": " future", + "start": 1291.38, + "end": 1291.78, + "probability": 1.0 + }, + { + "word": " use", + "start": 1291.78, + "end": 1292.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 1292.12, + "end": 1292.3, + "probability": 0.9609375 + }, + { + "word": " case", + "start": 1292.3, + "end": 1292.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 1292.52, + "end": 1292.7, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1292.7, + "end": 1292.9, + "probability": 1.0 + }, + { + "word": " out", + "start": 1292.9, + "end": 1293.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1293.08, + "end": 1293.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 1293.18, + "end": 1293.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 1293.28, + "end": 1293.38, + "probability": 1.0 + }, + { + "word": " jerk.", + "start": 1293.38, + "end": 1293.76, + "probability": 1.0 + } + ] + }, + { + "id": 543, + "text": "Right.", + "start": 1294.26, + "end": 1294.58, + "words": [ + { + "word": " Right.", + "start": 1294.26, + "end": 1294.58, + "probability": 0.96533203125 + } + ] + }, + { + "id": 544, + "text": "That is stupid.", + "start": 1294.88, + "end": 1296.52, + "words": [ + { + "word": " That", + "start": 1294.88, + "end": 1295.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1295.32, + "end": 1295.7, + "probability": 1.0 + }, + { + "word": " stupid.", + "start": 1295.7, + "end": 1296.52, + "probability": 1.0 + } + ] + }, + { + "id": 545, + "text": "Right.", + "start": 1296.74, + "end": 1297.18, + "words": [ + { + "word": " Right.", + "start": 1296.74, + "end": 1297.18, + "probability": 0.98583984375 + } + ] + }, + { + "id": 546, + "text": "You know who else collected me to death?", + "start": 1298.3, + "end": 1300.76, + "words": [ + { + "word": " You", + "start": 1298.3, + "end": 1298.74, + "probability": 0.9873046875 + }, + { + "word": " know", + "start": 1298.74, + "end": 1299.18, + "probability": 1.0 + }, + { + "word": " who", + "start": 1299.18, + "end": 1299.38, + "probability": 0.99609375 + }, + { + "word": " else", + "start": 1299.38, + "end": 1299.7, + "probability": 1.0 + }, + { + "word": " collected", + "start": 1299.7, + "end": 1300.12, + "probability": 0.94677734375 + }, + { + "word": " me", + "start": 1300.12, + "end": 1300.36, + "probability": 0.6689453125 + }, + { + "word": " to", + "start": 1300.36, + "end": 1300.6, + "probability": 0.8232421875 + }, + { + "word": " death?", + "start": 1300.6, + "end": 1300.76, + "probability": 0.962890625 + } + ] + }, + { + "id": 547, + "text": "Let's think back to World War.", + "start": 1301.96, + "end": 1303.18, + "words": [ + { + "word": " Let's", + "start": 1301.96, + "end": 1302.4, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 1302.4, + "end": 1302.54, + "probability": 1.0 + }, + { + "word": " back", + "start": 1302.54, + "end": 1302.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1302.76, + "end": 1302.88, + "probability": 1.0 + }, + { + "word": " World", + "start": 1302.88, + "end": 1303.02, + "probability": 0.9912109375 + }, + { + "word": " War.", + "start": 1303.02, + "end": 1303.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 548, + "text": "Two, shall we?", + "start": 1303.34, + "end": 1304.04, + "words": [ + { + "word": " Two,", + "start": 1303.34, + "end": 1303.5, + "probability": 0.0158233642578125 + }, + { + "word": " shall", + "start": 1303.5, + "end": 1303.68, + "probability": 0.990234375 + }, + { + "word": " we?", + "start": 1303.68, + "end": 1304.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 549, + "text": "Yeah.", + "start": 1304.04, + "end": 1304.38, + "words": [ + { + "word": " Yeah.", + "start": 1304.04, + "end": 1304.38, + "probability": 0.393798828125 + } + ] + }, + { + "id": 550, + "text": "Metadata.", + "start": 1304.54, + "end": 1305.1, + "words": [ + { + "word": " Metadata.", + "start": 1304.54, + "end": 1305.1, + "probability": 0.927734375 + } + ] + }, + { + "id": 551, + "text": "Right.", + "start": 1305.2, + "end": 1305.76, + "words": [ + { + "word": " Right.", + "start": 1305.2, + "end": 1305.76, + "probability": 0.77197265625 + } + ] + }, + { + "id": 552, + "text": "Even though it didn't have the name back then.", + "start": 1305.86, + "end": 1307.66, + "words": [ + { + "word": " Even", + "start": 1305.86, + "end": 1306.1, + "probability": 0.99853515625 + }, + { + "word": " though", + "start": 1306.1, + "end": 1306.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 1306.24, + "end": 1306.3, + "probability": 0.9248046875 + }, + { + "word": " didn't", + "start": 1306.3, + "end": 1306.46, + "probability": 1.0 + }, + { + "word": " have", + "start": 1306.46, + "end": 1306.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 1306.58, + "end": 1306.72, + "probability": 0.9990234375 + }, + { + "word": " name", + "start": 1306.72, + "end": 1306.98, + "probability": 1.0 + }, + { + "word": " back", + "start": 1306.98, + "end": 1307.26, + "probability": 0.99951171875 + }, + { + "word": " then.", + "start": 1307.26, + "end": 1307.66, + "probability": 1.0 + } + ] + }, + { + "id": 553, + "text": "Yeah.", + "start": 1308.22, + "end": 1308.78, + "words": [ + { + "word": " Yeah.", + "start": 1308.22, + "end": 1308.78, + "probability": 0.69091796875 + } + ] + }, + { + "id": 554, + "text": "There was a certain country on the planet under a certain dictatorial leadership that was called a democratic that basically recorded everything about everyone and used it against them in a time of war.", + "start": 1309.42, + "end": 1322.58, + "words": [ + { + "word": " There", + "start": 1309.42, + "end": 1309.98, + "probability": 0.99365234375 + }, + { + "word": " was", + "start": 1309.98, + "end": 1310.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 1310.28, + "end": 1310.46, + "probability": 1.0 + }, + { + "word": " certain", + "start": 1310.46, + "end": 1310.96, + "probability": 1.0 + }, + { + "word": " country", + "start": 1310.96, + "end": 1311.5, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1311.5, + "end": 1311.8, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1311.8, + "end": 1311.92, + "probability": 1.0 + }, + { + "word": " planet", + "start": 1311.92, + "end": 1312.26, + "probability": 1.0 + }, + { + "word": " under", + "start": 1312.26, + "end": 1312.58, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 1312.58, + "end": 1312.72, + "probability": 1.0 + }, + { + "word": " certain", + "start": 1312.72, + "end": 1313.06, + "probability": 1.0 + }, + { + "word": " dictatorial", + "start": 1313.06, + "end": 1313.88, + "probability": 0.998046875 + }, + { + "word": " leadership", + "start": 1313.88, + "end": 1314.24, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1314.24, + "end": 1314.82, + "probability": 0.99658203125 + }, + { + "word": " was", + "start": 1314.82, + "end": 1315.04, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 1315.04, + "end": 1315.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1315.52, + "end": 1315.7, + "probability": 0.54931640625 + }, + { + "word": " democratic", + "start": 1315.7, + "end": 1316.04, + "probability": 0.88525390625 + }, + { + "word": " that", + "start": 1316.04, + "end": 1317.1, + "probability": 0.82421875 + }, + { + "word": " basically", + "start": 1317.1, + "end": 1317.8, + "probability": 0.99951171875 + }, + { + "word": " recorded", + "start": 1317.8, + "end": 1318.36, + "probability": 0.9990234375 + }, + { + "word": " everything", + "start": 1318.36, + "end": 1318.9, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1318.9, + "end": 1319.34, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 1319.34, + "end": 1319.78, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1319.78, + "end": 1320.14, + "probability": 0.99853515625 + }, + { + "word": " used", + "start": 1320.14, + "end": 1320.4, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1320.4, + "end": 1320.6, + "probability": 1.0 + }, + { + "word": " against", + "start": 1320.6, + "end": 1320.9, + "probability": 1.0 + }, + { + "word": " them", + "start": 1320.9, + "end": 1321.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 1321.3, + "end": 1321.62, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1321.62, + "end": 1321.72, + "probability": 1.0 + }, + { + "word": " time", + "start": 1321.72, + "end": 1322.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1322.0, + "end": 1322.28, + "probability": 1.0 + }, + { + "word": " war.", + "start": 1322.28, + "end": 1322.58, + "probability": 1.0 + } + ] + }, + { + "id": 555, + "text": "We don't need that.", + "start": 1323.56, + "end": 1324.86, + "words": [ + { + "word": " We", + "start": 1323.56, + "end": 1324.12, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1324.12, + "end": 1324.4, + "probability": 1.0 + }, + { + "word": " need", + "start": 1324.4, + "end": 1324.58, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1324.58, + "end": 1324.86, + "probability": 1.0 + } + ] + }, + { + "id": 556, + "text": "I don't know that I really have to spell it out any more plainly than that.", + "start": 1325.06, + "end": 1329.58, + "words": [ + { + "word": " I", + "start": 1325.06, + "end": 1325.62, + "probability": 0.529296875 + }, + { + "word": " don't", + "start": 1325.62, + "end": 1325.74, + "probability": 1.0 + }, + { + "word": " know", + "start": 1325.74, + "end": 1326.38, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 1326.38, + "end": 1326.76, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1326.76, + "end": 1326.84, + "probability": 0.9921875 + }, + { + "word": " really", + "start": 1326.84, + "end": 1326.98, + "probability": 0.99658203125 + }, + { + "word": " have", + "start": 1326.98, + "end": 1327.68, + "probability": 0.95654296875 + }, + { + "word": " to", + "start": 1327.68, + "end": 1327.98, + "probability": 1.0 + }, + { + "word": " spell", + "start": 1327.98, + "end": 1328.2, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1328.2, + "end": 1328.4, + "probability": 0.9970703125 + }, + { + "word": " out", + "start": 1328.4, + "end": 1328.48, + "probability": 0.5986328125 + }, + { + "word": " any", + "start": 1328.48, + "end": 1328.52, + "probability": 0.90234375 + }, + { + "word": " more", + "start": 1328.52, + "end": 1328.74, + "probability": 1.0 + }, + { + "word": " plainly", + "start": 1328.74, + "end": 1329.26, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 1329.26, + "end": 1329.46, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1329.46, + "end": 1329.58, + "probability": 0.998046875 + } + ] + }, + { + "id": 557, + "text": "I don't think I have to use the H word today.", + "start": 1329.6, + "end": 1332.1, + "words": [ + { + "word": " I", + "start": 1329.6, + "end": 1329.7, + "probability": 0.9970703125 + }, + { + "word": " don't", + "start": 1329.7, + "end": 1329.86, + "probability": 1.0 + }, + { + "word": " think", + "start": 1329.86, + "end": 1330.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 1330.0, + "end": 1330.14, + "probability": 1.0 + }, + { + "word": " have", + "start": 1330.14, + "end": 1330.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1330.28, + "end": 1330.48, + "probability": 1.0 + }, + { + "word": " use", + "start": 1330.48, + "end": 1330.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1330.7, + "end": 1330.9, + "probability": 1.0 + }, + { + "word": " H", + "start": 1330.9, + "end": 1331.04, + "probability": 0.99560546875 + }, + { + "word": " word", + "start": 1331.04, + "end": 1331.4, + "probability": 0.9931640625 + }, + { + "word": " today.", + "start": 1331.4, + "end": 1332.1, + "probability": 0.9921875 + } + ] + }, + { + "id": 558, + "text": "But I'm just.", + "start": 1332.22, + "end": 1333.24, + "words": [ + { + "word": " But", + "start": 1332.22, + "end": 1332.78, + "probability": 0.9755859375 + }, + { + "word": " I'm", + "start": 1332.78, + "end": 1333.1, + "probability": 0.9814453125 + }, + { + "word": " just.", + "start": 1333.1, + "end": 1333.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 559, + "text": "I'm just going to go ahead and say that there are historical instances that we can go back to and to conclusively prove that it's not a great idea to just record everything or let the government have all of the power.", + "start": 1333.34, + "end": 1347.8, + "words": [ + { + "word": " I'm", + "start": 1333.34, + "end": 1333.36, + "probability": 0.231689453125 + }, + { + "word": " just", + "start": 1333.36, + "end": 1333.36, + "probability": 0.974609375 + }, + { + "word": " going", + "start": 1333.36, + "end": 1333.36, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1333.36, + "end": 1333.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 1333.48, + "end": 1333.58, + "probability": 0.99853515625 + }, + { + "word": " ahead", + "start": 1333.58, + "end": 1333.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 1333.76, + "end": 1333.9, + "probability": 1.0 + }, + { + "word": " say", + "start": 1333.9, + "end": 1334.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1334.12, + "end": 1334.5, + "probability": 0.99658203125 + }, + { + "word": " there", + "start": 1334.5, + "end": 1335.22, + "probability": 0.99658203125 + }, + { + "word": " are", + "start": 1335.22, + "end": 1335.48, + "probability": 1.0 + }, + { + "word": " historical", + "start": 1335.48, + "end": 1336.54, + "probability": 1.0 + }, + { + "word": " instances", + "start": 1336.54, + "end": 1338.58, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1338.58, + "end": 1339.44, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 1339.44, + "end": 1339.58, + "probability": 1.0 + }, + { + "word": " can", + "start": 1339.58, + "end": 1339.72, + "probability": 1.0 + }, + { + "word": " go", + "start": 1339.72, + "end": 1339.86, + "probability": 1.0 + }, + { + "word": " back", + "start": 1339.86, + "end": 1340.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1340.14, + "end": 1340.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 1340.34, + "end": 1340.54, + "probability": 0.90966796875 + }, + { + "word": " to", + "start": 1340.54, + "end": 1341.02, + "probability": 0.892578125 + }, + { + "word": " conclusively", + "start": 1341.02, + "end": 1341.88, + "probability": 0.9990234375 + }, + { + "word": " prove", + "start": 1341.88, + "end": 1342.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1342.16, + "end": 1342.42, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1342.42, + "end": 1342.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 1342.64, + "end": 1342.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1342.78, + "end": 1342.96, + "probability": 1.0 + }, + { + "word": " great", + "start": 1342.96, + "end": 1343.2, + "probability": 1.0 + }, + { + "word": " idea", + "start": 1343.2, + "end": 1343.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1343.64, + "end": 1344.46, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1344.46, + "end": 1344.68, + "probability": 1.0 + }, + { + "word": " record", + "start": 1344.68, + "end": 1345.12, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1345.12, + "end": 1345.64, + "probability": 1.0 + }, + { + "word": " or", + "start": 1345.64, + "end": 1345.84, + "probability": 0.99609375 + }, + { + "word": " let", + "start": 1345.84, + "end": 1346.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 1346.04, + "end": 1346.26, + "probability": 1.0 + }, + { + "word": " government", + "start": 1346.26, + "end": 1346.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 1346.5, + "end": 1346.76, + "probability": 1.0 + }, + { + "word": " all", + "start": 1346.76, + "end": 1347.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 1347.1, + "end": 1347.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1347.24, + "end": 1347.36, + "probability": 1.0 + }, + { + "word": " power.", + "start": 1347.36, + "end": 1347.8, + "probability": 1.0 + } + ] + }, + { + "id": 560, + "text": "I think that's just probably a bad idea.", + "start": 1348.16, + "end": 1350.32, + "words": [ + { + "word": " I", + "start": 1348.16, + "end": 1348.64, + "probability": 0.9423828125 + }, + { + "word": " think", + "start": 1348.64, + "end": 1348.9, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1348.9, + "end": 1349.18, + "probability": 1.0 + }, + { + "word": " just", + "start": 1349.18, + "end": 1349.24, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1349.24, + "end": 1349.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 1349.56, + "end": 1349.66, + "probability": 1.0 + }, + { + "word": " bad", + "start": 1349.66, + "end": 1349.84, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 1349.84, + "end": 1350.32, + "probability": 1.0 + } + ] + }, + { + "id": 561, + "text": "Right.", + "start": 1350.4, + "end": 1350.68, + "words": [ + { + "word": " Right.", + "start": 1350.4, + "end": 1350.68, + "probability": 0.87548828125 + } + ] + }, + { + "id": 562, + "text": "Hey, Homer Simpson had had something to say about that.", + "start": 1350.8, + "end": 1354.3, + "words": [ + { + "word": " Hey,", + "start": 1350.8, + "end": 1351.22, + "probability": 0.900390625 + }, + { + "word": " Homer", + "start": 1351.3, + "end": 1351.54, + "probability": 1.0 + }, + { + "word": " Simpson", + "start": 1351.54, + "end": 1351.9, + "probability": 1.0 + }, + { + "word": " had", + "start": 1351.9, + "end": 1352.28, + "probability": 1.0 + }, + { + "word": " had", + "start": 1352.28, + "end": 1352.72, + "probability": 0.92138671875 + }, + { + "word": " something", + "start": 1352.72, + "end": 1353.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1353.5, + "end": 1353.68, + "probability": 1.0 + }, + { + "word": " say", + "start": 1353.68, + "end": 1353.84, + "probability": 1.0 + }, + { + "word": " about", + "start": 1353.84, + "end": 1354.06, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1354.06, + "end": 1354.3, + "probability": 1.0 + } + ] + }, + { + "id": 563, + "text": "Oh, yeah.", + "start": 1354.36, + "end": 1354.78, + "words": [ + { + "word": " Oh,", + "start": 1354.36, + "end": 1354.6, + "probability": 0.302490234375 + }, + { + "word": " yeah.", + "start": 1354.64, + "end": 1354.78, + "probability": 0.939453125 + } + ] + }, + { + "id": 564, + "text": "Press any key.", + "start": 1354.8, + "end": 1356.22, + "words": [ + { + "word": " Press", + "start": 1354.8, + "end": 1355.28, + "probability": 0.4931640625 + }, + { + "word": " any", + "start": 1355.28, + "end": 1355.86, + "probability": 0.998046875 + }, + { + "word": " key.", + "start": 1355.86, + "end": 1356.22, + "probability": 1.0 + } + ] + }, + { + "id": 565, + "text": "Where's the any key?", + "start": 1356.64, + "end": 1357.62, + "words": [ + { + "word": " Where's", + "start": 1356.64, + "end": 1357.12, + "probability": 0.978515625 + }, + { + "word": " the", + "start": 1357.12, + "end": 1357.2, + "probability": 0.99853515625 + }, + { + "word": " any", + "start": 1357.2, + "end": 1357.38, + "probability": 0.96875 + }, + { + "word": " key?", + "start": 1357.38, + "end": 1357.62, + "probability": 0.9970703125 + } + ] + }, + { + "id": 566, + "text": "I see.", + "start": 1357.9, + "end": 1358.68, + "words": [ + { + "word": " I", + "start": 1357.9, + "end": 1358.38, + "probability": 0.9990234375 + }, + { + "word": " see.", + "start": 1358.38, + "end": 1358.68, + "probability": 1.0 + } + ] + }, + { + "id": 567, + "text": "Ask.", + "start": 1358.82, + "end": 1359.3, + "words": [ + { + "word": " Ask.", + "start": 1358.82, + "end": 1359.3, + "probability": 0.59619140625 + } + ] + }, + { + "id": 568, + "text": "Katara.", + "start": 1359.88, + "end": 1360.36, + "words": [ + { + "word": " Katara.", + "start": 1359.88, + "end": 1360.36, + "probability": 0.5439453125 + } + ] + }, + { + "id": 569, + "text": "And pick up.", + "start": 1360.66, + "end": 1361.98, + "words": [ + { + "word": " And", + "start": 1360.66, + "end": 1361.14, + "probability": 0.91650390625 + }, + { + "word": " pick", + "start": 1361.14, + "end": 1361.54, + "probability": 0.708984375 + }, + { + "word": " up.", + "start": 1361.54, + "end": 1361.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 570, + "text": "It doesn't seem to be.", + "start": 1362.16, + "end": 1363.26, + "words": [ + { + "word": " It", + "start": 1362.16, + "end": 1362.64, + "probability": 0.98193359375 + }, + { + "word": " doesn't", + "start": 1362.64, + "end": 1362.9, + "probability": 1.0 + }, + { + "word": " seem", + "start": 1362.9, + "end": 1363.06, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1363.06, + "end": 1363.2, + "probability": 0.9990234375 + }, + { + "word": " be.", + "start": 1363.2, + "end": 1363.26, + "probability": 0.9951171875 + } + ] + }, + { + "id": 571, + "text": "It doesn't seem to be any key.", + "start": 1363.26, + "end": 1363.82, + "words": [ + { + "word": " It", + "start": 1363.26, + "end": 1363.34, + "probability": 0.1907958984375 + }, + { + "word": " doesn't", + "start": 1363.34, + "end": 1363.34, + "probability": 0.5029296875 + }, + { + "word": " seem", + "start": 1363.34, + "end": 1363.34, + "probability": 0.031005859375 + }, + { + "word": " to", + "start": 1363.34, + "end": 1363.34, + "probability": 0.93115234375 + }, + { + "word": " be", + "start": 1363.34, + "end": 1363.34, + "probability": 0.98828125 + }, + { + "word": " any", + "start": 1363.34, + "end": 1363.5, + "probability": 0.97705078125 + }, + { + "word": " key.", + "start": 1363.5, + "end": 1363.82, + "probability": 0.224853515625 + } + ] + }, + { + "id": 572, + "text": "Reminds me of the old show.", + "start": 1364.58, + "end": 1365.84, + "words": [ + { + "word": " Reminds", + "start": 1364.58, + "end": 1365.06, + "probability": 0.87158203125 + }, + { + "word": " me", + "start": 1365.06, + "end": 1365.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 1365.1, + "end": 1365.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 1365.28, + "end": 1365.38, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 1365.38, + "end": 1365.56, + "probability": 1.0 + }, + { + "word": " show.", + "start": 1365.56, + "end": 1365.84, + "probability": 1.0 + } + ] + }, + { + "id": 573, + "text": "All right.", + "start": 1366.3, + "end": 1366.66, + "words": [ + { + "word": " All", + "start": 1366.3, + "end": 1366.54, + "probability": 0.947265625 + }, + { + "word": " right.", + "start": 1366.54, + "end": 1366.66, + "probability": 1.0 + } + ] + }, + { + "id": 574, + "text": "Let's go ahead and talk to John.", + "start": 1366.68, + "end": 1367.82, + "words": [ + { + "word": " Let's", + "start": 1366.68, + "end": 1366.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 1366.92, + "end": 1367.0, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1367.0, + "end": 1367.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 1367.14, + "end": 1367.26, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1367.26, + "end": 1367.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 1367.44, + "end": 1367.58, + "probability": 1.0 + }, + { + "word": " John.", + "start": 1367.58, + "end": 1367.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 575, + "text": "Hello, John.", + "start": 1368.0, + "end": 1368.62, + "words": [ + { + "word": " Hello,", + "start": 1368.0, + "end": 1368.36, + "probability": 0.99951171875 + }, + { + "word": " John.", + "start": 1368.4, + "end": 1368.62, + "probability": 1.0 + } + ] + }, + { + "id": 576, + "text": "Thanks so much for taking my call.", + "start": 1369.82, + "end": 1371.64, + "words": [ + { + "word": " Thanks", + "start": 1369.82, + "end": 1370.3, + "probability": 0.99609375 + }, + { + "word": " so", + "start": 1370.3, + "end": 1370.48, + "probability": 1.0 + }, + { + "word": " much", + "start": 1370.48, + "end": 1370.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 1370.72, + "end": 1370.9, + "probability": 1.0 + }, + { + "word": " taking", + "start": 1370.9, + "end": 1371.12, + "probability": 1.0 + }, + { + "word": " my", + "start": 1371.12, + "end": 1371.36, + "probability": 1.0 + }, + { + "word": " call.", + "start": 1371.36, + "end": 1371.64, + "probability": 1.0 + } + ] + }, + { + "id": 577, + "text": "I had something happen this last week.", + "start": 1371.76, + "end": 1374.52, + "words": [ + { + "word": " I", + "start": 1371.76, + "end": 1371.9, + "probability": 0.99609375 + }, + { + "word": " had", + "start": 1371.9, + "end": 1372.44, + "probability": 0.998046875 + }, + { + "word": " something", + "start": 1372.44, + "end": 1373.02, + "probability": 0.998046875 + }, + { + "word": " happen", + "start": 1373.02, + "end": 1373.7, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 1373.7, + "end": 1373.92, + "probability": 0.99560546875 + }, + { + "word": " last", + "start": 1373.92, + "end": 1374.12, + "probability": 0.99951171875 + }, + { + "word": " week.", + "start": 1374.12, + "end": 1374.52, + "probability": 1.0 + } + ] + }, + { + "id": 578, + "text": "And I was just listening to you guys.", + "start": 1374.92, + "end": 1377.22, + "words": [ + { + "word": " And", + "start": 1374.92, + "end": 1375.4, + "probability": 0.9072265625 + }, + { + "word": " I", + "start": 1375.4, + "end": 1375.8, + "probability": 0.9970703125 + }, + { + "word": " was", + "start": 1375.8, + "end": 1376.22, + "probability": 1.0 + }, + { + "word": " just", + "start": 1376.22, + "end": 1376.34, + "probability": 1.0 + }, + { + "word": " listening", + "start": 1376.34, + "end": 1376.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1376.72, + "end": 1376.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 1376.86, + "end": 1376.98, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 1376.98, + "end": 1377.22, + "probability": 1.0 + } + ] + }, + { + "id": 579, + "text": "And I thought I'd see what you could tell me.", + "start": 1377.26, + "end": 1379.78, + "words": [ + { + "word": " And", + "start": 1377.26, + "end": 1377.42, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1377.42, + "end": 1377.52, + "probability": 1.0 + }, + { + "word": " thought", + "start": 1377.52, + "end": 1377.8, + "probability": 1.0 + }, + { + "word": " I'd", + "start": 1377.8, + "end": 1378.04, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 1378.04, + "end": 1378.82, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1378.82, + "end": 1379.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 1379.04, + "end": 1379.2, + "probability": 1.0 + }, + { + "word": " could", + "start": 1379.2, + "end": 1379.32, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1379.32, + "end": 1379.58, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1379.58, + "end": 1379.78, + "probability": 1.0 + } + ] + }, + { + "id": 580, + "text": "I got a message on my Verizon Motorola phone that said that my Verizon account, the question, the secret question had been changed.", + "start": 1380.06, + "end": 1393.04, + "words": [ + { + "word": " I", + "start": 1380.06, + "end": 1380.54, + "probability": 0.99560546875 + }, + { + "word": " got", + "start": 1380.54, + "end": 1380.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1380.72, + "end": 1380.84, + "probability": 1.0 + }, + { + "word": " message", + "start": 1380.84, + "end": 1381.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1381.2, + "end": 1381.5, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1381.5, + "end": 1381.74, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 1381.74, + "end": 1382.34, + "probability": 1.0 + }, + { + "word": " Motorola", + "start": 1382.34, + "end": 1383.04, + "probability": 0.99560546875 + }, + { + "word": " phone", + "start": 1383.04, + "end": 1383.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1383.54, + "end": 1385.4, + "probability": 0.90673828125 + }, + { + "word": " said", + "start": 1385.4, + "end": 1385.74, + "probability": 0.990234375 + }, + { + "word": " that", + "start": 1385.74, + "end": 1386.08, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 1386.08, + "end": 1386.9, + "probability": 0.9990234375 + }, + { + "word": " Verizon", + "start": 1386.9, + "end": 1387.4, + "probability": 1.0 + }, + { + "word": " account,", + "start": 1387.4, + "end": 1387.8, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1388.1, + "end": 1388.9, + "probability": 0.9990234375 + }, + { + "word": " question,", + "start": 1388.9, + "end": 1390.98, + "probability": 0.92919921875 + }, + { + "word": " the", + "start": 1391.24, + "end": 1391.44, + "probability": 1.0 + }, + { + "word": " secret", + "start": 1391.44, + "end": 1391.76, + "probability": 0.9990234375 + }, + { + "word": " question", + "start": 1391.76, + "end": 1392.18, + "probability": 1.0 + }, + { + "word": " had", + "start": 1392.18, + "end": 1392.42, + "probability": 0.95556640625 + }, + { + "word": " been", + "start": 1392.42, + "end": 1392.58, + "probability": 1.0 + }, + { + "word": " changed.", + "start": 1392.58, + "end": 1393.04, + "probability": 0.9951171875 + } + ] + }, + { + "id": 581, + "text": "So I called Verizon because I hadn't changed it.", + "start": 1393.68, + "end": 1397.02, + "words": [ + { + "word": " So", + "start": 1393.68, + "end": 1394.2, + "probability": 0.93359375 + }, + { + "word": " I", + "start": 1394.2, + "end": 1394.44, + "probability": 0.947265625 + }, + { + "word": " called", + "start": 1394.44, + "end": 1394.82, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 1394.82, + "end": 1395.34, + "probability": 1.0 + }, + { + "word": " because", + "start": 1395.34, + "end": 1395.76, + "probability": 0.91259765625 + }, + { + "word": " I", + "start": 1395.76, + "end": 1395.96, + "probability": 1.0 + }, + { + "word": " hadn't", + "start": 1395.96, + "end": 1396.3, + "probability": 1.0 + }, + { + "word": " changed", + "start": 1396.3, + "end": 1396.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1396.6, + "end": 1397.02, + "probability": 1.0 + } + ] + }, + { + "id": 582, + "text": "Right.", + "start": 1397.24, + "end": 1397.6, + "words": [ + { + "word": " Right.", + "start": 1397.24, + "end": 1397.6, + "probability": 0.60986328125 + } + ] + }, + { + "id": 583, + "text": "And the guy told me my phone had been hacked.", + "start": 1397.68, + "end": 1400.42, + "words": [ + { + "word": " And", + "start": 1397.68, + "end": 1397.9, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1397.9, + "end": 1398.02, + "probability": 1.0 + }, + { + "word": " guy", + "start": 1398.02, + "end": 1398.16, + "probability": 1.0 + }, + { + "word": " told", + "start": 1398.16, + "end": 1398.92, + "probability": 0.98486328125 + }, + { + "word": " me", + "start": 1398.92, + "end": 1399.26, + "probability": 1.0 + }, + { + "word": " my", + "start": 1399.26, + "end": 1399.42, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 1399.42, + "end": 1399.72, + "probability": 1.0 + }, + { + "word": " had", + "start": 1399.72, + "end": 1399.9, + "probability": 0.998046875 + }, + { + "word": " been", + "start": 1399.9, + "end": 1400.14, + "probability": 1.0 + }, + { + "word": " hacked.", + "start": 1400.14, + "end": 1400.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 584, + "text": "And I said, well, I'd like you to fix that.", + "start": 1401.42, + "end": 1404.72, + "words": [ + { + "word": " And", + "start": 1401.42, + "end": 1401.94, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1401.94, + "end": 1402.22, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1402.22, + "end": 1402.7, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1402.76, + "end": 1402.92, + "probability": 0.97021484375 + }, + { + "word": " I'd", + "start": 1402.94, + "end": 1403.12, + "probability": 1.0 + }, + { + "word": " like", + "start": 1403.12, + "end": 1403.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1403.32, + "end": 1403.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1403.54, + "end": 1403.74, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1403.74, + "end": 1404.46, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1404.46, + "end": 1404.72, + "probability": 1.0 + } + ] + }, + { + "id": 585, + "text": "And he proceeded to tell me I needed to hire somebody for $200 to come redo my phone.", + "start": 1404.9, + "end": 1411.16, + "words": [ + { + "word": " And", + "start": 1404.9, + "end": 1405.24, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 1405.24, + "end": 1405.38, + "probability": 1.0 + }, + { + "word": " proceeded", + "start": 1405.38, + "end": 1405.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1405.8, + "end": 1406.06, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1406.06, + "end": 1406.28, + "probability": 1.0 + }, + { + "word": " me", + "start": 1406.28, + "end": 1406.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 1406.44, + "end": 1406.6, + "probability": 1.0 + }, + { + "word": " needed", + "start": 1406.6, + "end": 1406.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1406.84, + "end": 1406.98, + "probability": 1.0 + }, + { + "word": " hire", + "start": 1406.98, + "end": 1407.24, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1407.24, + "end": 1407.68, + "probability": 1.0 + }, + { + "word": " for", + "start": 1407.68, + "end": 1408.56, + "probability": 0.99951171875 + }, + { + "word": " $200", + "start": 1408.56, + "end": 1409.26, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1409.26, + "end": 1409.58, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 1409.58, + "end": 1409.88, + "probability": 1.0 + }, + { + "word": " redo", + "start": 1409.88, + "end": 1410.42, + "probability": 0.99658203125 + }, + { + "word": " my", + "start": 1410.42, + "end": 1410.76, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 1410.76, + "end": 1411.16, + "probability": 1.0 + } + ] + }, + { + "id": 586, + "text": "I said, I wanted Verizon to fix it.", + "start": 1411.88, + "end": 1415.86, + "words": [ + { + "word": " I", + "start": 1411.88, + "end": 1412.4, + "probability": 0.99755859375 + }, + { + "word": " said,", + "start": 1412.4, + "end": 1412.6, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1412.7, + "end": 1413.76, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 1413.76, + "end": 1414.52, + "probability": 0.99951171875 + }, + { + "word": " Verizon", + "start": 1414.52, + "end": 1414.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1414.9, + "end": 1415.32, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1415.32, + "end": 1415.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1415.6, + "end": 1415.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 587, + "text": "And he kept trying to sell me this thing.", + "start": 1416.42, + "end": 1418.92, + "words": [ + { + "word": " And", + "start": 1416.42, + "end": 1416.94, + "probability": 1.0 + }, + { + "word": " he", + "start": 1416.94, + "end": 1417.28, + "probability": 1.0 + }, + { + "word": " kept", + "start": 1417.28, + "end": 1417.54, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1417.54, + "end": 1417.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1417.8, + "end": 1417.96, + "probability": 1.0 + }, + { + "word": " sell", + "start": 1417.96, + "end": 1418.2, + "probability": 1.0 + }, + { + "word": " me", + "start": 1418.2, + "end": 1418.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 1418.4, + "end": 1418.6, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1418.6, + "end": 1418.92, + "probability": 1.0 + } + ] + }, + { + "id": 588, + "text": "Right.", + "start": 1419.18, + "end": 1419.64, + "words": [ + { + "word": " Right.", + "start": 1419.18, + "end": 1419.64, + "probability": 0.86865234375 + } + ] + }, + { + "id": 589, + "text": "And finally, he said, okay, turn your phone off.", + "start": 1419.66, + "end": 1422.58, + "words": [ + { + "word": " And", + "start": 1419.66, + "end": 1419.76, + "probability": 0.998046875 + }, + { + "word": " finally,", + "start": 1419.76, + "end": 1420.2, + "probability": 0.9970703125 + }, + { + "word": " he", + "start": 1420.28, + "end": 1420.74, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1420.74, + "end": 1420.98, + "probability": 1.0 + }, + { + "word": " okay,", + "start": 1421.2, + "end": 1421.58, + "probability": 0.8486328125 + }, + { + "word": " turn", + "start": 1421.64, + "end": 1421.84, + "probability": 1.0 + }, + { + "word": " your", + "start": 1421.84, + "end": 1422.04, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1422.04, + "end": 1422.26, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1422.26, + "end": 1422.58, + "probability": 1.0 + } + ] + }, + { + "id": 590, + "text": "Turn it on in 15 minutes and it'll be okay.", + "start": 1423.26, + "end": 1425.54, + "words": [ + { + "word": " Turn", + "start": 1423.26, + "end": 1423.42, + "probability": 0.6279296875 + }, + { + "word": " it", + "start": 1423.42, + "end": 1423.58, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1423.58, + "end": 1423.8, + "probability": 1.0 + }, + { + "word": " in", + "start": 1423.8, + "end": 1423.94, + "probability": 0.98291015625 + }, + { + "word": " 15", + "start": 1423.94, + "end": 1424.26, + "probability": 1.0 + }, + { + "word": " minutes", + "start": 1424.26, + "end": 1424.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 1424.66, + "end": 1424.88, + "probability": 0.62841796875 + }, + { + "word": " it'll", + "start": 1424.88, + "end": 1425.08, + "probability": 0.896484375 + }, + { + "word": " be", + "start": 1425.08, + "end": 1425.2, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 1425.2, + "end": 1425.54, + "probability": 0.9755859375 + } + ] + }, + { + "id": 591, + "text": "Then another friend said I should get like a VPN on my phone.", + "start": 1427.2, + "end": 1432.44, + "words": [ + { + "word": " Then", + "start": 1427.2, + "end": 1427.68, + "probability": 0.9814453125 + }, + { + "word": " another", + "start": 1427.68, + "end": 1427.96, + "probability": 0.998046875 + }, + { + "word": " friend", + "start": 1427.96, + "end": 1428.36, + "probability": 0.99951171875 + }, + { + "word": " said", + "start": 1428.36, + "end": 1428.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 1428.58, + "end": 1428.84, + "probability": 0.99365234375 + }, + { + "word": " should", + "start": 1428.84, + "end": 1429.02, + "probability": 1.0 + }, + { + "word": " get", + "start": 1429.02, + "end": 1429.26, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 1429.26, + "end": 1429.74, + "probability": 0.49951171875 + }, + { + "word": " a", + "start": 1429.74, + "end": 1429.88, + "probability": 1.0 + }, + { + "word": " VPN", + "start": 1429.88, + "end": 1430.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 1430.3, + "end": 1431.58, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 1431.58, + "end": 1432.08, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 1432.08, + "end": 1432.44, + "probability": 1.0 + } + ] + }, + { + "id": 592, + "text": "And this is all strange to me.", + "start": 1432.72, + "end": 1436.18, + "words": [ + { + "word": " And", + "start": 1432.72, + "end": 1433.12, + "probability": 0.14990234375 + }, + { + "word": " this", + "start": 1433.12, + "end": 1433.36, + "probability": 0.95166015625 + }, + { + "word": " is", + "start": 1433.36, + "end": 1433.94, + "probability": 1.0 + }, + { + "word": " all", + "start": 1433.94, + "end": 1434.18, + "probability": 1.0 + }, + { + "word": " strange", + "start": 1434.18, + "end": 1435.68, + "probability": 0.955078125 + }, + { + "word": " to", + "start": 1435.68, + "end": 1436.0, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1436.0, + "end": 1436.18, + "probability": 1.0 + } + ] + }, + { + "id": 593, + "text": "Can you help me understand what's going on?", + "start": 1436.32, + "end": 1438.16, + "words": [ + { + "word": " Can", + "start": 1436.32, + "end": 1436.56, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 1436.56, + "end": 1436.68, + "probability": 1.0 + }, + { + "word": " help", + "start": 1436.68, + "end": 1436.9, + "probability": 1.0 + }, + { + "word": " me", + "start": 1436.9, + "end": 1437.02, + "probability": 1.0 + }, + { + "word": " understand", + "start": 1437.02, + "end": 1437.36, + "probability": 1.0 + }, + { + "word": " what's", + "start": 1437.36, + "end": 1437.76, + "probability": 1.0 + }, + { + "word": " going", + "start": 1437.76, + "end": 1437.86, + "probability": 1.0 + }, + { + "word": " on?", + "start": 1437.86, + "end": 1438.16, + "probability": 1.0 + } + ] + }, + { + "id": 594, + "text": "Right.", + "start": 1438.44, + "end": 1438.76, + "words": [ + { + "word": " Right.", + "start": 1438.44, + "end": 1438.76, + "probability": 0.953125 + } + ] + }, + { + "id": 595, + "text": "The whole thing is a scam, by the way.", + "start": 1438.82, + "end": 1440.4, + "words": [ + { + "word": " The", + "start": 1438.82, + "end": 1438.92, + "probability": 0.99951171875 + }, + { + "word": " whole", + "start": 1438.92, + "end": 1439.1, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1439.1, + "end": 1439.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 1439.38, + "end": 1439.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1439.52, + "end": 1439.64, + "probability": 1.0 + }, + { + "word": " scam,", + "start": 1439.64, + "end": 1439.84, + "probability": 1.0 + }, + { + "word": " by", + "start": 1439.92, + "end": 1440.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1440.12, + "end": 1440.22, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1440.22, + "end": 1440.4, + "probability": 1.0 + } + ] + }, + { + "id": 596, + "text": "Oh, is it?", + "start": 1440.94, + "end": 1441.66, + "words": [ + { + "word": " Oh,", + "start": 1440.94, + "end": 1441.42, + "probability": 0.9912109375 + }, + { + "word": " is", + "start": 1441.42, + "end": 1441.54, + "probability": 1.0 + }, + { + "word": " it?", + "start": 1441.54, + "end": 1441.66, + "probability": 1.0 + } + ] + }, + { + "id": 597, + "text": "Yeah.", + "start": 1441.74, + "end": 1441.96, + "words": [ + { + "word": " Yeah.", + "start": 1441.74, + "end": 1441.96, + "probability": 0.99462890625 + } + ] + }, + { + "id": 598, + "text": "The message that you got was a scam.", + "start": 1442.0, + "end": 1443.72, + "words": [ + { + "word": " The", + "start": 1442.0, + "end": 1442.22, + "probability": 0.9990234375 + }, + { + "word": " message", + "start": 1442.22, + "end": 1442.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 1442.66, + "end": 1442.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 1442.78, + "end": 1442.94, + "probability": 1.0 + }, + { + "word": " got", + "start": 1442.94, + "end": 1443.14, + "probability": 1.0 + }, + { + "word": " was", + "start": 1443.14, + "end": 1443.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 1443.38, + "end": 1443.52, + "probability": 1.0 + }, + { + "word": " scam.", + "start": 1443.52, + "end": 1443.72, + "probability": 1.0 + } + ] + }, + { + "id": 599, + "text": "Interestingly enough, the number that's listed in that message you get on your phone is the real number for Verizon.", + "start": 1444.4, + "end": 1451.04, + "words": [ + { + "word": " Interestingly", + "start": 1444.4, + "end": 1444.88, + "probability": 0.99853515625 + }, + { + "word": " enough,", + "start": 1444.88, + "end": 1445.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 1445.32, + "end": 1445.46, + "probability": 1.0 + }, + { + "word": " number", + "start": 1445.46, + "end": 1445.78, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1445.78, + "end": 1446.16, + "probability": 1.0 + }, + { + "word": " listed", + "start": 1446.16, + "end": 1446.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 1446.56, + "end": 1447.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 1447.22, + "end": 1447.42, + "probability": 1.0 + }, + { + "word": " message", + "start": 1447.42, + "end": 1447.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 1447.82, + "end": 1448.0, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1448.0, + "end": 1448.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 1448.08, + "end": 1448.2, + "probability": 1.0 + }, + { + "word": " your", + "start": 1448.2, + "end": 1448.3, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1448.3, + "end": 1448.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 1448.6, + "end": 1449.32, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1449.32, + "end": 1449.62, + "probability": 0.99853515625 + }, + { + "word": " real", + "start": 1449.62, + "end": 1449.96, + "probability": 1.0 + }, + { + "word": " number", + "start": 1449.96, + "end": 1450.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 1450.36, + "end": 1450.66, + "probability": 1.0 + }, + { + "word": " Verizon.", + "start": 1450.66, + "end": 1451.04, + "probability": 1.0 + } + ] + }, + { + "id": 600, + "text": "But somehow.", + "start": 1451.06, + "end": 1451.84, + "words": [ + { + "word": " But", + "start": 1451.06, + "end": 1451.42, + "probability": 0.95751953125 + }, + { + "word": " somehow.", + "start": 1451.42, + "end": 1451.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 601, + "text": "When you click on it or try to call them, you end up somewhere else, not necessarily with Verizon.", + "start": 1451.84, + "end": 1459.88, + "words": [ + { + "word": " When", + "start": 1451.84, + "end": 1452.1, + "probability": 0.11566162109375 + }, + { + "word": " you", + "start": 1452.1, + "end": 1453.36, + "probability": 0.9990234375 + }, + { + "word": " click", + "start": 1453.36, + "end": 1453.62, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 1453.62, + "end": 1453.8, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1453.8, + "end": 1453.96, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 1453.96, + "end": 1454.52, + "probability": 0.87158203125 + }, + { + "word": " try", + "start": 1454.52, + "end": 1455.04, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1455.04, + "end": 1455.16, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 1455.16, + "end": 1455.38, + "probability": 0.99853515625 + }, + { + "word": " them,", + "start": 1455.38, + "end": 1455.62, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1455.8, + "end": 1456.48, + "probability": 0.99853515625 + }, + { + "word": " end", + "start": 1456.48, + "end": 1456.9, + "probability": 0.998046875 + }, + { + "word": " up", + "start": 1456.9, + "end": 1457.2, + "probability": 0.99951171875 + }, + { + "word": " somewhere", + "start": 1457.2, + "end": 1457.6, + "probability": 0.9990234375 + }, + { + "word": " else,", + "start": 1457.6, + "end": 1458.04, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1458.18, + "end": 1458.6, + "probability": 0.9990234375 + }, + { + "word": " necessarily", + "start": 1458.6, + "end": 1459.14, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 1459.14, + "end": 1459.56, + "probability": 0.9990234375 + }, + { + "word": " Verizon.", + "start": 1459.56, + "end": 1459.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 602, + "text": "And it's actually been pretty big news for the last week where this is a big deal.", + "start": 1460.76, + "end": 1465.44, + "words": [ + { + "word": " And", + "start": 1460.76, + "end": 1461.28, + "probability": 0.42578125 + }, + { + "word": " it's", + "start": 1461.28, + "end": 1461.68, + "probability": 0.99609375 + }, + { + "word": " actually", + "start": 1461.68, + "end": 1461.9, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 1461.9, + "end": 1462.06, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 1462.06, + "end": 1462.24, + "probability": 0.99951171875 + }, + { + "word": " big", + "start": 1462.24, + "end": 1462.38, + "probability": 0.99951171875 + }, + { + "word": " news", + "start": 1462.38, + "end": 1462.6, + "probability": 1.0 + }, + { + "word": " for", + "start": 1462.6, + "end": 1462.94, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 1462.94, + "end": 1463.06, + "probability": 0.99951171875 + }, + { + "word": " last", + "start": 1463.06, + "end": 1463.24, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 1463.24, + "end": 1463.6, + "probability": 1.0 + }, + { + "word": " where", + "start": 1463.6, + "end": 1464.04, + "probability": 0.85888671875 + }, + { + "word": " this", + "start": 1464.04, + "end": 1464.46, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1464.46, + "end": 1464.62, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1464.62, + "end": 1464.72, + "probability": 0.99951171875 + }, + { + "word": " big", + "start": 1464.72, + "end": 1465.04, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 1465.04, + "end": 1465.44, + "probability": 1.0 + } + ] + }, + { + "id": 603, + "text": "And people should not give up their information.", + "start": 1465.54, + "end": 1467.98, + "words": [ + { + "word": " And", + "start": 1465.54, + "end": 1465.88, + "probability": 0.875 + }, + { + "word": " people", + "start": 1465.88, + "end": 1466.36, + "probability": 1.0 + }, + { + "word": " should", + "start": 1466.36, + "end": 1466.66, + "probability": 1.0 + }, + { + "word": " not", + "start": 1466.66, + "end": 1466.96, + "probability": 1.0 + }, + { + "word": " give", + "start": 1466.96, + "end": 1467.26, + "probability": 1.0 + }, + { + "word": " up", + "start": 1467.26, + "end": 1467.46, + "probability": 1.0 + }, + { + "word": " their", + "start": 1467.46, + "end": 1467.56, + "probability": 1.0 + }, + { + "word": " information.", + "start": 1467.56, + "end": 1467.98, + "probability": 1.0 + } + ] + }, + { + "id": 604, + "text": "You should not click on a link on your phone to call Verizon.", + "start": 1469.56, + "end": 1473.26, + "words": [ + { + "word": " You", + "start": 1469.56, + "end": 1470.08, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 1470.08, + "end": 1470.4, + "probability": 1.0 + }, + { + "word": " not", + "start": 1470.4, + "end": 1470.68, + "probability": 1.0 + }, + { + "word": " click", + "start": 1470.68, + "end": 1470.96, + "probability": 1.0 + }, + { + "word": " on", + "start": 1470.96, + "end": 1471.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1471.1, + "end": 1471.18, + "probability": 0.99072265625 + }, + { + "word": " link", + "start": 1471.18, + "end": 1471.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 1471.4, + "end": 1471.56, + "probability": 1.0 + }, + { + "word": " your", + "start": 1471.56, + "end": 1471.7, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1471.7, + "end": 1472.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1472.08, + "end": 1472.46, + "probability": 1.0 + }, + { + "word": " call", + "start": 1472.46, + "end": 1472.7, + "probability": 1.0 + }, + { + "word": " Verizon.", + "start": 1472.7, + "end": 1473.26, + "probability": 1.0 + } + ] + }, + { + "id": 605, + "text": "If you are going to call them, the best way to do it is to make sure you clear everything.", + "start": 1473.52, + "end": 1478.8, + "words": [ + { + "word": " If", + "start": 1473.52, + "end": 1473.84, + "probability": 0.95703125 + }, + { + "word": " you", + "start": 1473.84, + "end": 1474.22, + "probability": 1.0 + }, + { + "word": " are", + "start": 1474.22, + "end": 1474.42, + "probability": 1.0 + }, + { + "word": " going", + "start": 1474.42, + "end": 1474.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1474.7, + "end": 1474.9, + "probability": 1.0 + }, + { + "word": " call", + "start": 1474.9, + "end": 1475.1, + "probability": 1.0 + }, + { + "word": " them,", + "start": 1475.1, + "end": 1475.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1475.5, + "end": 1475.68, + "probability": 1.0 + }, + { + "word": " best", + "start": 1475.68, + "end": 1476.08, + "probability": 1.0 + }, + { + "word": " way", + "start": 1476.08, + "end": 1476.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1476.32, + "end": 1476.46, + "probability": 1.0 + }, + { + "word": " do", + "start": 1476.46, + "end": 1476.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 1476.64, + "end": 1476.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 1476.84, + "end": 1477.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1477.02, + "end": 1477.22, + "probability": 1.0 + }, + { + "word": " make", + "start": 1477.22, + "end": 1477.82, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1477.82, + "end": 1477.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 1477.98, + "end": 1478.14, + "probability": 1.0 + }, + { + "word": " clear", + "start": 1478.14, + "end": 1478.3, + "probability": 0.99072265625 + }, + { + "word": " everything.", + "start": 1478.3, + "end": 1478.8, + "probability": 1.0 + } + ] + }, + { + "id": 606, + "text": "Basically, do not click on that text message.", + "start": 1479.18, + "end": 1481.52, + "words": [ + { + "word": " Basically,", + "start": 1479.18, + "end": 1479.7, + "probability": 0.99560546875 + }, + { + "word": " do", + "start": 1479.76, + "end": 1480.06, + "probability": 1.0 + }, + { + "word": " not", + "start": 1480.06, + "end": 1480.32, + "probability": 1.0 + }, + { + "word": " click", + "start": 1480.32, + "end": 1480.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 1480.52, + "end": 1480.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 1480.66, + "end": 1480.76, + "probability": 0.97412109375 + }, + { + "word": " text", + "start": 1480.76, + "end": 1481.24, + "probability": 1.0 + }, + { + "word": " message.", + "start": 1481.24, + "end": 1481.52, + "probability": 1.0 + } + ] + }, + { + "id": 607, + "text": "Go to the phone and dial 611.", + "start": 1481.52, + "end": 1483.0, + "words": [ + { + "word": " Go", + "start": 1481.52, + "end": 1481.66, + "probability": 0.2119140625 + }, + { + "word": " to", + "start": 1481.66, + "end": 1481.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1481.82, + "end": 1481.88, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1481.88, + "end": 1482.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 1482.08, + "end": 1482.2, + "probability": 0.99951171875 + }, + { + "word": " dial", + "start": 1482.2, + "end": 1482.34, + "probability": 1.0 + }, + { + "word": " 611.", + "start": 1482.34, + "end": 1483.0, + "probability": 0.94140625 + } + ] + }, + { + "id": 608, + "text": "That way you end up directly at Verizon with no intermediary steps.", + "start": 1483.86, + "end": 1488.54, + "words": [ + { + "word": " That", + "start": 1483.86, + "end": 1484.3, + "probability": 0.99853515625 + }, + { + "word": " way", + "start": 1484.3, + "end": 1484.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 1484.5, + "end": 1484.84, + "probability": 0.56591796875 + }, + { + "word": " end", + "start": 1484.84, + "end": 1485.06, + "probability": 1.0 + }, + { + "word": " up", + "start": 1485.06, + "end": 1485.24, + "probability": 1.0 + }, + { + "word": " directly", + "start": 1485.24, + "end": 1485.66, + "probability": 1.0 + }, + { + "word": " at", + "start": 1485.66, + "end": 1485.92, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 1485.92, + "end": 1486.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 1486.26, + "end": 1486.94, + "probability": 0.98876953125 + }, + { + "word": " no", + "start": 1486.94, + "end": 1487.22, + "probability": 1.0 + }, + { + "word": " intermediary", + "start": 1487.22, + "end": 1488.28, + "probability": 1.0 + }, + { + "word": " steps.", + "start": 1488.28, + "end": 1488.54, + "probability": 1.0 + } + ] + }, + { + "id": 609, + "text": "And by the way, the 611 call is minutes free.", + "start": 1489.22, + "end": 1491.82, + "words": [ + { + "word": " And", + "start": 1489.22, + "end": 1489.66, + "probability": 0.2166748046875 + }, + { + "word": " by", + "start": 1489.66, + "end": 1489.88, + "probability": 0.83935546875 + }, + { + "word": " the", + "start": 1489.88, + "end": 1490.0, + "probability": 1.0 + }, + { + "word": " way,", + "start": 1490.0, + "end": 1490.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1490.1, + "end": 1490.16, + "probability": 0.99951171875 + }, + { + "word": " 611", + "start": 1490.16, + "end": 1490.6, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 1490.6, + "end": 1491.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1491.16, + "end": 1491.32, + "probability": 0.99951171875 + }, + { + "word": " minutes", + "start": 1491.32, + "end": 1491.56, + "probability": 0.998046875 + }, + { + "word": " free.", + "start": 1491.56, + "end": 1491.82, + "probability": 0.99169921875 + } + ] + }, + { + "id": 610, + "text": "So, yes, it is a scam.", + "start": 1494.0, + "end": 1495.6, + "words": [ + { + "word": " So,", + "start": 1494.0, + "end": 1494.44, + "probability": 0.9853515625 + }, + { + "word": " yes,", + "start": 1494.44, + "end": 1494.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 1495.0, + "end": 1495.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 1495.12, + "end": 1495.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1495.26, + "end": 1495.38, + "probability": 1.0 + }, + { + "word": " scam.", + "start": 1495.38, + "end": 1495.6, + "probability": 1.0 + } + ] + }, + { + "id": 611, + "text": "It's out there.", + "start": 1495.72, + "end": 1496.36, + "words": [ + { + "word": " It's", + "start": 1495.72, + "end": 1495.96, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 1495.96, + "end": 1496.1, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1496.1, + "end": 1496.36, + "probability": 1.0 + } + ] + }, + { + "id": 612, + "text": "The guy was trying to get you to give up money for no good reason.", + "start": 1496.42, + "end": 1499.44, + "words": [ + { + "word": " The", + "start": 1496.42, + "end": 1496.74, + "probability": 0.99755859375 + }, + { + "word": " guy", + "start": 1496.74, + "end": 1496.96, + "probability": 1.0 + }, + { + "word": " was", + "start": 1496.96, + "end": 1497.1, + "probability": 0.9970703125 + }, + { + "word": " trying", + "start": 1497.1, + "end": 1497.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 1497.34, + "end": 1497.48, + "probability": 1.0 + }, + { + "word": " get", + "start": 1497.48, + "end": 1497.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 1497.58, + "end": 1497.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1497.72, + "end": 1497.8, + "probability": 1.0 + }, + { + "word": " give", + "start": 1497.8, + "end": 1498.1, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 1498.1, + "end": 1498.36, + "probability": 1.0 + }, + { + "word": " money", + "start": 1498.36, + "end": 1498.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 1498.56, + "end": 1498.8, + "probability": 1.0 + }, + { + "word": " no", + "start": 1498.8, + "end": 1498.92, + "probability": 1.0 + }, + { + "word": " good", + "start": 1498.92, + "end": 1499.12, + "probability": 1.0 + }, + { + "word": " reason.", + "start": 1499.12, + "end": 1499.44, + "probability": 1.0 + } + ] + }, + { + "id": 613, + "text": "Your phone is not hacked.", + "start": 1499.66, + "end": 1501.02, + "words": [ + { + "word": " Your", + "start": 1499.66, + "end": 1500.1, + "probability": 0.9951171875 + }, + { + "word": " phone", + "start": 1500.1, + "end": 1500.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 1500.42, + "end": 1500.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 1500.54, + "end": 1500.7, + "probability": 1.0 + }, + { + "word": " hacked.", + "start": 1500.7, + "end": 1501.02, + "probability": 1.0 + } + ] + }, + { + "id": 614, + "text": "You don't have to worry about that part of it.", + "start": 1501.3, + "end": 1504.0, + "words": [ + { + "word": " You", + "start": 1501.3, + "end": 1501.74, + "probability": 0.95751953125 + }, + { + "word": " don't", + "start": 1501.74, + "end": 1501.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 1501.96, + "end": 1502.08, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1502.08, + "end": 1502.24, + "probability": 0.9990234375 + }, + { + "word": " worry", + "start": 1502.24, + "end": 1502.84, + "probability": 0.9970703125 + }, + { + "word": " about", + "start": 1502.84, + "end": 1503.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 1503.1, + "end": 1503.4, + "probability": 1.0 + }, + { + "word": " part", + "start": 1503.4, + "end": 1503.7, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1503.7, + "end": 1503.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1503.88, + "end": 1504.0, + "probability": 1.0 + } + ] + }, + { + "id": 615, + "text": "If you have concerns at all, right, and you have like an Android phone, you know, make sure everything is backed up.", + "start": 1504.26, + "end": 1511.28, + "words": [ + { + "word": " If", + "start": 1504.26, + "end": 1504.7, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 1504.7, + "end": 1504.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 1504.88, + "end": 1505.16, + "probability": 1.0 + }, + { + "word": " concerns", + "start": 1505.16, + "end": 1505.68, + "probability": 1.0 + }, + { + "word": " at", + "start": 1505.68, + "end": 1506.18, + "probability": 1.0 + }, + { + "word": " all,", + "start": 1506.18, + "end": 1506.56, + "probability": 1.0 + }, + { + "word": " right,", + "start": 1506.72, + "end": 1507.06, + "probability": 0.9228515625 + }, + { + "word": " and", + "start": 1507.14, + "end": 1507.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 1507.26, + "end": 1507.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 1507.38, + "end": 1507.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 1507.6, + "end": 1507.78, + "probability": 0.72998046875 + }, + { + "word": " an", + "start": 1507.78, + "end": 1507.92, + "probability": 1.0 + }, + { + "word": " Android", + "start": 1507.92, + "end": 1508.2, + "probability": 0.99951171875 + }, + { + "word": " phone,", + "start": 1508.2, + "end": 1508.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 1508.82, + "end": 1509.22, + "probability": 0.765625 + }, + { + "word": " know,", + "start": 1509.22, + "end": 1509.38, + "probability": 1.0 + }, + { + "word": " make", + "start": 1509.4, + "end": 1509.8, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1509.8, + "end": 1510.06, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1510.06, + "end": 1510.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 1510.32, + "end": 1510.64, + "probability": 1.0 + }, + { + "word": " backed", + "start": 1510.64, + "end": 1510.94, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1510.94, + "end": 1511.28, + "probability": 1.0 + } + ] + }, + { + "id": 616, + "text": "To either your Google account or some other method.", + "start": 1511.52, + "end": 1514.86, + "words": [ + { + "word": " To", + "start": 1511.52, + "end": 1511.96, + "probability": 0.0286102294921875 + }, + { + "word": " either", + "start": 1511.96, + "end": 1512.32, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1512.32, + "end": 1512.52, + "probability": 0.99853515625 + }, + { + "word": " Google", + "start": 1512.52, + "end": 1512.74, + "probability": 0.99462890625 + }, + { + "word": " account", + "start": 1512.74, + "end": 1513.04, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 1513.04, + "end": 1513.56, + "probability": 0.966796875 + }, + { + "word": " some", + "start": 1513.56, + "end": 1514.08, + "probability": 0.9970703125 + }, + { + "word": " other", + "start": 1514.08, + "end": 1514.44, + "probability": 0.99951171875 + }, + { + "word": " method.", + "start": 1514.44, + "end": 1514.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 617, + "text": "And format the phone, right?", + "start": 1515.4599999999998, + "end": 1517.34, + "words": [ + { + "word": " And", + "start": 1515.4599999999998, + "end": 1515.8999999999999, + "probability": 0.99072265625 + }, + { + "word": " format", + "start": 1515.8999999999999, + "end": 1516.34, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 1516.34, + "end": 1516.54, + "probability": 1.0 + }, + { + "word": " phone,", + "start": 1516.54, + "end": 1516.8, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1516.92, + "end": 1517.34, + "probability": 1.0 + } + ] + }, + { + "id": 618, + "text": "Just basically go into privacy settings.", + "start": 1517.42, + "end": 1518.98, + "words": [ + { + "word": " Just", + "start": 1517.42, + "end": 1517.6, + "probability": 0.99951171875 + }, + { + "word": " basically", + "start": 1517.6, + "end": 1517.86, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 1517.86, + "end": 1518.08, + "probability": 1.0 + }, + { + "word": " into", + "start": 1518.08, + "end": 1518.22, + "probability": 1.0 + }, + { + "word": " privacy", + "start": 1518.22, + "end": 1518.54, + "probability": 0.8857421875 + }, + { + "word": " settings.", + "start": 1518.54, + "end": 1518.98, + "probability": 1.0 + } + ] + }, + { + "id": 619, + "text": "Tell it you want to start over.", + "start": 1519.22, + "end": 1521.34, + "words": [ + { + "word": " Tell", + "start": 1519.22, + "end": 1519.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 1519.42, + "end": 1519.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 1519.56, + "end": 1519.64, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 1519.64, + "end": 1519.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1519.88, + "end": 1520.1, + "probability": 1.0 + }, + { + "word": " start", + "start": 1520.1, + "end": 1520.98, + "probability": 0.998046875 + }, + { + "word": " over.", + "start": 1520.98, + "end": 1521.34, + "probability": 1.0 + } + ] + }, + { + "id": 620, + "text": "And it will clear your phone completely.", + "start": 1521.48, + "end": 1523.22, + "words": [ + { + "word": " And", + "start": 1521.48, + "end": 1521.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1521.7, + "end": 1521.8, + "probability": 0.99755859375 + }, + { + "word": " will", + "start": 1521.8, + "end": 1521.9, + "probability": 0.399658203125 + }, + { + "word": " clear", + "start": 1521.9, + "end": 1522.2, + "probability": 1.0 + }, + { + "word": " your", + "start": 1522.2, + "end": 1522.44, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1522.44, + "end": 1522.72, + "probability": 1.0 + }, + { + "word": " completely.", + "start": 1522.72, + "end": 1523.22, + "probability": 1.0 + } + ] + }, + { + "id": 621, + "text": "And it does not cost $200.", + "start": 1524.1599999999999, + "end": 1526.7, + "words": [ + { + "word": " And", + "start": 1524.1599999999999, + "end": 1524.6, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1524.6, + "end": 1525.04, + "probability": 0.9921875 + }, + { + "word": " does", + "start": 1525.04, + "end": 1526.06, + "probability": 1.0 + }, + { + "word": " not", + "start": 1526.06, + "end": 1526.24, + "probability": 1.0 + }, + { + "word": " cost", + "start": 1526.24, + "end": 1526.44, + "probability": 1.0 + }, + { + "word": " $200.", + "start": 1526.44, + "end": 1526.7, + "probability": 0.89501953125 + } + ] + }, + { + "id": 622, + "text": "It takes 10 minutes of your time.", + "start": 1527.06, + "end": 1528.5, + "words": [ + { + "word": " It", + "start": 1527.06, + "end": 1527.28, + "probability": 1.0 + }, + { + "word": " takes", + "start": 1527.28, + "end": 1527.5, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1527.5, + "end": 1527.72, + "probability": 0.8330078125 + }, + { + "word": " minutes", + "start": 1527.72, + "end": 1527.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1527.92, + "end": 1528.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 1528.06, + "end": 1528.16, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1528.16, + "end": 1528.5, + "probability": 1.0 + } + ] + }, + { + "id": 623, + "text": "If your stuff is synchronized with Google properly, it will all come back.", + "start": 1528.74, + "end": 1531.82, + "words": [ + { + "word": " If", + "start": 1528.74, + "end": 1529.18, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 1529.18, + "end": 1529.36, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1529.36, + "end": 1529.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 1529.58, + "end": 1529.72, + "probability": 1.0 + }, + { + "word": " synchronized", + "start": 1529.72, + "end": 1530.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 1530.14, + "end": 1530.24, + "probability": 0.9931640625 + }, + { + "word": " Google", + "start": 1530.24, + "end": 1530.42, + "probability": 1.0 + }, + { + "word": " properly,", + "start": 1530.42, + "end": 1530.86, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1531.04, + "end": 1531.18, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 1531.18, + "end": 1531.26, + "probability": 0.994140625 + }, + { + "word": " all", + "start": 1531.26, + "end": 1531.42, + "probability": 1.0 + }, + { + "word": " come", + "start": 1531.42, + "end": 1531.54, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1531.54, + "end": 1531.82, + "probability": 1.0 + } + ] + }, + { + "id": 624, + "text": "Okay.", + "start": 1532.64, + "end": 1533.08, + "words": [ + { + "word": " Okay.", + "start": 1532.64, + "end": 1533.08, + "probability": 0.953125 + } + ] + }, + { + "id": 625, + "text": "So, basically, you know, don't listen to that.", + "start": 1533.26, + "end": 1535.96, + "words": [ + { + "word": " So,", + "start": 1533.26, + "end": 1533.62, + "probability": 0.9990234375 + }, + { + "word": " basically,", + "start": 1533.68, + "end": 1534.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 1534.82, + "end": 1534.96, + "probability": 0.80029296875 + }, + { + "word": " know,", + "start": 1534.96, + "end": 1535.16, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1535.16, + "end": 1535.58, + "probability": 1.0 + }, + { + "word": " listen", + "start": 1535.58, + "end": 1535.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1535.78, + "end": 1535.92, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1535.92, + "end": 1535.96, + "probability": 1.0 + } + ] + }, + { + "id": 626, + "text": "It's all bogus.", + "start": 1536.04, + "end": 1537.06, + "words": [ + { + "word": " It's", + "start": 1536.04, + "end": 1536.14, + "probability": 0.9951171875 + }, + { + "word": " all", + "start": 1536.14, + "end": 1536.18, + "probability": 1.0 + }, + { + "word": " bogus.", + "start": 1536.18, + "end": 1537.06, + "probability": 1.0 + } + ] + }, + { + "id": 627, + "text": "Thank you.", + "start": 1537.5, + "end": 1538.14, + "words": [ + { + "word": " Thank", + "start": 1537.5, + "end": 1537.94, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1537.94, + "end": 1538.14, + "probability": 1.0 + } + ] + }, + { + "id": 628, + "text": "That's very helpful.", + "start": 1538.16, + "end": 1538.88, + "words": [ + { + "word": " That's", + "start": 1538.16, + "end": 1538.38, + "probability": 0.9990234375 + }, + { + "word": " very", + "start": 1538.38, + "end": 1538.54, + "probability": 1.0 + }, + { + "word": " helpful.", + "start": 1538.54, + "end": 1538.88, + "probability": 1.0 + } + ] + }, + { + "id": 629, + "text": "It's obvious I've had my head in the sand.", + "start": 1539.0, + "end": 1540.86, + "words": [ + { + "word": " It's", + "start": 1539.0, + "end": 1539.2, + "probability": 0.9892578125 + }, + { + "word": " obvious", + "start": 1539.2, + "end": 1539.46, + "probability": 0.9990234375 + }, + { + "word": " I've", + "start": 1539.46, + "end": 1539.76, + "probability": 0.9892578125 + }, + { + "word": " had", + "start": 1539.76, + "end": 1539.9, + "probability": 0.99609375 + }, + { + "word": " my", + "start": 1539.9, + "end": 1540.06, + "probability": 1.0 + }, + { + "word": " head", + "start": 1540.06, + "end": 1540.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 1540.3, + "end": 1540.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1540.46, + "end": 1540.54, + "probability": 1.0 + }, + { + "word": " sand.", + "start": 1540.54, + "end": 1540.86, + "probability": 1.0 + } + ] + }, + { + "id": 630, + "text": "And not hear all the news.", + "start": 1540.86, + "end": 1542.1, + "words": [ + { + "word": " And", + "start": 1540.86, + "end": 1540.98, + "probability": 0.0184173583984375 + }, + { + "word": " not", + "start": 1540.98, + "end": 1541.22, + "probability": 0.459228515625 + }, + { + "word": " hear", + "start": 1541.22, + "end": 1541.5, + "probability": 0.99658203125 + }, + { + "word": " all", + "start": 1541.5, + "end": 1541.64, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 1541.64, + "end": 1541.8, + "probability": 0.990234375 + }, + { + "word": " news.", + "start": 1541.8, + "end": 1542.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 631, + "text": "Well, you know, I see the news because that's what we're looking for.", + "start": 1542.42, + "end": 1545.92, + "words": [ + { + "word": " Well,", + "start": 1542.42, + "end": 1542.86, + "probability": 0.869140625 + }, + { + "word": " you", + "start": 1542.92, + "end": 1543.08, + "probability": 0.9228515625 + }, + { + "word": " know,", + "start": 1543.08, + "end": 1543.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 1543.3, + "end": 1543.74, + "probability": 0.89111328125 + }, + { + "word": " see", + "start": 1543.74, + "end": 1544.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 1544.5, + "end": 1544.62, + "probability": 1.0 + }, + { + "word": " news", + "start": 1544.62, + "end": 1544.78, + "probability": 1.0 + }, + { + "word": " because", + "start": 1544.78, + "end": 1544.98, + "probability": 0.990234375 + }, + { + "word": " that's", + "start": 1544.98, + "end": 1545.24, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1545.24, + "end": 1545.28, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1545.28, + "end": 1545.42, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1545.42, + "end": 1545.62, + "probability": 1.0 + }, + { + "word": " for.", + "start": 1545.62, + "end": 1545.92, + "probability": 1.0 + } + ] + }, + { + "id": 632, + "text": "And I don't know that it's necessarily been out in mainstream news.", + "start": 1546.0, + "end": 1549.18, + "words": [ + { + "word": " And", + "start": 1546.0, + "end": 1546.1, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 1546.1, + "end": 1546.18, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1546.18, + "end": 1546.58, + "probability": 1.0 + }, + { + "word": " know", + "start": 1546.58, + "end": 1546.64, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1546.64, + "end": 1546.86, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1546.86, + "end": 1547.06, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 1547.06, + "end": 1547.32, + "probability": 1.0 + }, + { + "word": " been", + "start": 1547.32, + "end": 1547.74, + "probability": 1.0 + }, + { + "word": " out", + "start": 1547.74, + "end": 1547.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 1547.94, + "end": 1548.08, + "probability": 1.0 + }, + { + "word": " mainstream", + "start": 1548.08, + "end": 1548.56, + "probability": 0.9990234375 + }, + { + "word": " news.", + "start": 1548.56, + "end": 1549.18, + "probability": 1.0 + } + ] + }, + { + "id": 633, + "text": "Not really, no.", + "start": 1549.3, + "end": 1550.04, + "words": [ + { + "word": " Not", + "start": 1549.3, + "end": 1549.46, + "probability": 0.99658203125 + }, + { + "word": " really,", + "start": 1549.46, + "end": 1549.76, + "probability": 1.0 + }, + { + "word": " no.", + "start": 1549.88, + "end": 1550.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 634, + "text": "I think there was a mention of it on some national news stuff.", + "start": 1550.26, + "end": 1552.98, + "words": [ + { + "word": " I", + "start": 1550.26, + "end": 1550.6, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 1550.6, + "end": 1550.82, + "probability": 1.0 + }, + { + "word": " there", + "start": 1550.82, + "end": 1550.92, + "probability": 1.0 + }, + { + "word": " was", + "start": 1550.92, + "end": 1551.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1551.04, + "end": 1551.08, + "probability": 1.0 + }, + { + "word": " mention", + "start": 1551.08, + "end": 1551.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 1551.42, + "end": 1551.76, + "probability": 1.0 + }, + { + "word": " it", + "start": 1551.76, + "end": 1551.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 1551.88, + "end": 1552.02, + "probability": 1.0 + }, + { + "word": " some", + "start": 1552.02, + "end": 1552.18, + "probability": 1.0 + }, + { + "word": " national", + "start": 1552.18, + "end": 1552.5, + "probability": 0.99951171875 + }, + { + "word": " news", + "start": 1552.5, + "end": 1552.74, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 1552.74, + "end": 1552.98, + "probability": 1.0 + } + ] + }, + { + "id": 635, + "text": "And I know that a couple of the local TV stations had talked about it briefly.", + "start": 1553.12, + "end": 1557.72, + "words": [ + { + "word": " And", + "start": 1553.12, + "end": 1553.48, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1553.48, + "end": 1553.68, + "probability": 1.0 + }, + { + "word": " know", + "start": 1553.68, + "end": 1553.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 1553.9, + "end": 1554.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 1554.06, + "end": 1554.3, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 1554.3, + "end": 1555.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 1555.32, + "end": 1555.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 1555.42, + "end": 1555.54, + "probability": 1.0 + }, + { + "word": " local", + "start": 1555.54, + "end": 1555.8, + "probability": 1.0 + }, + { + "word": " TV", + "start": 1555.8, + "end": 1556.18, + "probability": 1.0 + }, + { + "word": " stations", + "start": 1556.18, + "end": 1556.7, + "probability": 1.0 + }, + { + "word": " had", + "start": 1556.7, + "end": 1556.9, + "probability": 0.8564453125 + }, + { + "word": " talked", + "start": 1556.9, + "end": 1557.12, + "probability": 1.0 + }, + { + "word": " about", + "start": 1557.12, + "end": 1557.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 1557.34, + "end": 1557.46, + "probability": 1.0 + }, + { + "word": " briefly.", + "start": 1557.46, + "end": 1557.72, + "probability": 1.0 + } + ] + }, + { + "id": 636, + "text": "But, you know, if you really want to keep track of this stuff, you follow gurushow.com.", + "start": 1558.8799999999999, + "end": 1563.44, + "words": [ + { + "word": " But,", + "start": 1558.8799999999999, + "end": 1559.32, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1559.32, + "end": 1559.76, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1559.76, + "end": 1559.94, + "probability": 1.0 + }, + { + "word": " if", + "start": 1559.94, + "end": 1560.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 1560.06, + "end": 1560.16, + "probability": 1.0 + }, + { + "word": " really", + "start": 1560.16, + "end": 1560.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 1560.4, + "end": 1560.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1560.68, + "end": 1560.92, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1560.92, + "end": 1561.42, + "probability": 1.0 + }, + { + "word": " track", + "start": 1561.42, + "end": 1561.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 1561.6, + "end": 1561.74, + "probability": 1.0 + }, + { + "word": " this", + "start": 1561.74, + "end": 1561.8, + "probability": 0.9990234375 + }, + { + "word": " stuff,", + "start": 1561.8, + "end": 1561.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 1561.96, + "end": 1562.06, + "probability": 0.98681640625 + }, + { + "word": " follow", + "start": 1562.06, + "end": 1562.28, + "probability": 0.99951171875 + }, + { + "word": " gurushow", + "start": 1562.28, + "end": 1562.92, + "probability": 0.8828125 + }, + { + "word": ".com.", + "start": 1562.92, + "end": 1563.44, + "probability": 1.0 + } + ] + }, + { + "id": 637, + "text": "Yes.", + "start": 1563.7, + "end": 1564.14, + "words": [ + { + "word": " Yes.", + "start": 1563.7, + "end": 1564.14, + "probability": 0.56787109375 + } + ] + }, + { + "id": 638, + "text": "Or go to our Facebook page.", + "start": 1564.14, + "end": 1566.3, + "words": [ + { + "word": " Or", + "start": 1564.14, + "end": 1564.36, + "probability": 0.99560546875 + }, + { + "word": " go", + "start": 1564.36, + "end": 1564.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1564.78, + "end": 1565.06, + "probability": 1.0 + }, + { + "word": " our", + "start": 1565.06, + "end": 1565.44, + "probability": 0.99951171875 + }, + { + "word": " Facebook", + "start": 1565.44, + "end": 1565.98, + "probability": 1.0 + }, + { + "word": " page.", + "start": 1565.98, + "end": 1566.3, + "probability": 1.0 + } + ] + }, + { + "id": 639, + "text": "Because as we get this type of information, we generally post it.", + "start": 1566.38, + "end": 1570.52, + "words": [ + { + "word": " Because", + "start": 1566.38, + "end": 1566.52, + "probability": 0.8671875 + }, + { + "word": " as", + "start": 1566.52, + "end": 1566.84, + "probability": 0.9619140625 + }, + { + "word": " we", + "start": 1566.84, + "end": 1567.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 1567.36, + "end": 1567.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 1567.58, + "end": 1567.8, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 1567.8, + "end": 1568.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 1568.28, + "end": 1568.56, + "probability": 1.0 + }, + { + "word": " information,", + "start": 1568.56, + "end": 1569.28, + "probability": 1.0 + }, + { + "word": " we", + "start": 1569.54, + "end": 1569.74, + "probability": 1.0 + }, + { + "word": " generally", + "start": 1569.74, + "end": 1569.96, + "probability": 1.0 + }, + { + "word": " post", + "start": 1569.96, + "end": 1570.34, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1570.34, + "end": 1570.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 640, + "text": "Everybody knows about it.", + "start": 1570.52, + "end": 1571.48, + "words": [ + { + "word": " Everybody", + "start": 1570.52, + "end": 1570.74, + "probability": 0.154052734375 + }, + { + "word": " knows", + "start": 1570.74, + "end": 1571.1, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1571.1, + "end": 1571.3, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 1571.3, + "end": 1571.48, + "probability": 0.9990234375 + } + ] + }, + { + "id": 641, + "text": "That's fantastic.", + "start": 1571.84, + "end": 1572.78, + "words": [ + { + "word": " That's", + "start": 1571.84, + "end": 1572.32, + "probability": 0.994140625 + }, + { + "word": " fantastic.", + "start": 1572.32, + "end": 1572.78, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "And then could you just real quickly, is it worthwhile to get like a VPN for your phone or for your home computer?", + "start": 1573.16, + "end": 1581.44, + "words": [ + { + "word": " And", + "start": 1573.16, + "end": 1573.32, + "probability": 0.81640625 + }, + { + "word": " then", + "start": 1573.32, + "end": 1573.5, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 1573.5, + "end": 1573.7, + "probability": 0.94775390625 + }, + { + "word": " you", + "start": 1573.7, + "end": 1573.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 1573.92, + "end": 1574.08, + "probability": 0.99951171875 + }, + { + "word": " real", + "start": 1574.08, + "end": 1574.32, + "probability": 0.9814453125 + }, + { + "word": " quickly,", + "start": 1574.32, + "end": 1574.62, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1574.9, + "end": 1575.36, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1575.36, + "end": 1575.62, + "probability": 1.0 + }, + { + "word": " worthwhile", + "start": 1575.62, + "end": 1576.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 1576.04, + "end": 1576.56, + "probability": 1.0 + }, + { + "word": " get", + "start": 1576.56, + "end": 1576.88, + "probability": 1.0 + }, + { + "word": " like", + "start": 1576.88, + "end": 1577.58, + "probability": 0.60302734375 + }, + { + "word": " a", + "start": 1577.58, + "end": 1577.84, + "probability": 1.0 + }, + { + "word": " VPN", + "start": 1577.84, + "end": 1578.28, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1578.28, + "end": 1579.64, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1579.64, + "end": 1580.08, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1580.08, + "end": 1580.38, + "probability": 1.0 + }, + { + "word": " or", + "start": 1580.38, + "end": 1580.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 1580.56, + "end": 1580.7, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1580.7, + "end": 1580.84, + "probability": 1.0 + }, + { + "word": " home", + "start": 1580.84, + "end": 1581.02, + "probability": 0.9951171875 + }, + { + "word": " computer?", + "start": 1581.02, + "end": 1581.44, + "probability": 1.0 + } + ] + }, + { + "id": 643, + "text": "Well, it depends on your tech savviness level.", + "start": 1582.72, + "end": 1585.42, + "words": [ + { + "word": " Well,", + "start": 1582.72, + "end": 1583.2, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1583.28, + "end": 1583.62, + "probability": 1.0 + }, + { + "word": " depends", + "start": 1583.62, + "end": 1584.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1584.2, + "end": 1584.36, + "probability": 1.0 + }, + { + "word": " your", + "start": 1584.36, + "end": 1584.48, + "probability": 1.0 + }, + { + "word": " tech", + "start": 1584.48, + "end": 1584.66, + "probability": 0.9990234375 + }, + { + "word": " savviness", + "start": 1584.66, + "end": 1585.1, + "probability": 0.9814453125 + }, + { + "word": " level.", + "start": 1585.1, + "end": 1585.42, + "probability": 1.0 + } + ] + }, + { + "id": 644, + "text": "All right.", + "start": 1585.88, + "end": 1586.46, + "words": [ + { + "word": " All", + "start": 1585.88, + "end": 1586.36, + "probability": 0.69970703125 + }, + { + "word": " right.", + "start": 1586.36, + "end": 1586.46, + "probability": 1.0 + } + ] + }, + { + "id": 645, + "text": "So, if you are comfortable with learning that type of, you know, the extra steps involved, absolutely.", + "start": 1586.52, + "end": 1592.1, + "words": [ + { + "word": " So,", + "start": 1586.52, + "end": 1586.72, + "probability": 0.94287109375 + }, + { + "word": " if", + "start": 1586.74, + "end": 1587.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1587.16, + "end": 1587.66, + "probability": 1.0 + }, + { + "word": " are", + "start": 1587.66, + "end": 1587.96, + "probability": 1.0 + }, + { + "word": " comfortable", + "start": 1587.96, + "end": 1588.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 1588.54, + "end": 1588.78, + "probability": 1.0 + }, + { + "word": " learning", + "start": 1588.78, + "end": 1588.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 1588.98, + "end": 1589.2, + "probability": 0.9990234375 + }, + { + "word": " type", + "start": 1589.2, + "end": 1589.38, + "probability": 1.0 + }, + { + "word": " of,", + "start": 1589.38, + "end": 1589.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 1589.68, + "end": 1589.82, + "probability": 0.9951171875 + }, + { + "word": " know,", + "start": 1589.82, + "end": 1589.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1589.96, + "end": 1590.2, + "probability": 0.9990234375 + }, + { + "word": " extra", + "start": 1590.2, + "end": 1590.6, + "probability": 1.0 + }, + { + "word": " steps", + "start": 1590.6, + "end": 1590.92, + "probability": 1.0 + }, + { + "word": " involved,", + "start": 1590.92, + "end": 1591.2, + "probability": 1.0 + }, + { + "word": " absolutely.", + "start": 1591.5, + "end": 1592.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 646, + "text": "The VPN stuff is great.", + "start": 1592.2, + "end": 1593.54, + "words": [ + { + "word": " The", + "start": 1592.2, + "end": 1592.58, + "probability": 0.82568359375 + }, + { + "word": " VPN", + "start": 1592.58, + "end": 1592.9, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1592.9, + "end": 1593.12, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1593.12, + "end": 1593.3, + "probability": 1.0 + }, + { + "word": " great.", + "start": 1593.3, + "end": 1593.54, + "probability": 1.0 + } + ] + }, + { + "id": 647, + "text": "All right.", + "start": 1593.7, + "end": 1594.32, + "words": [ + { + "word": " All", + "start": 1593.7, + "end": 1594.18, + "probability": 0.8369140625 + }, + { + "word": " right.", + "start": 1594.18, + "end": 1594.32, + "probability": 1.0 + } + ] + }, + { + "id": 648, + "text": "Okay.", + "start": 1594.38, + "end": 1594.66, + "words": [ + { + "word": " Okay.", + "start": 1594.38, + "end": 1594.66, + "probability": 0.583984375 + } + ] + }, + { + "id": 649, + "text": "But at the same time, you know, I don't like pushing people too far outside of their comfort limits.", + "start": 1594.9, + "end": 1599.82, + "words": [ + { + "word": " But", + "start": 1594.9, + "end": 1595.38, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1595.38, + "end": 1595.78, + "probability": 0.9599609375 + }, + { + "word": " the", + "start": 1595.78, + "end": 1596.14, + "probability": 1.0 + }, + { + "word": " same", + "start": 1596.14, + "end": 1596.32, + "probability": 1.0 + }, + { + "word": " time,", + "start": 1596.32, + "end": 1596.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 1596.6, + "end": 1596.74, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1596.74, + "end": 1596.8, + "probability": 1.0 + }, + { + "word": " I", + "start": 1596.82, + "end": 1596.9, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1596.9, + "end": 1597.0, + "probability": 1.0 + }, + { + "word": " like", + "start": 1597.0, + "end": 1597.14, + "probability": 1.0 + }, + { + "word": " pushing", + "start": 1597.14, + "end": 1597.36, + "probability": 1.0 + }, + { + "word": " people", + "start": 1597.36, + "end": 1597.66, + "probability": 1.0 + }, + { + "word": " too", + "start": 1597.66, + "end": 1598.2, + "probability": 0.99951171875 + }, + { + "word": " far", + "start": 1598.2, + "end": 1598.56, + "probability": 1.0 + }, + { + "word": " outside", + "start": 1598.56, + "end": 1598.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 1598.84, + "end": 1599.06, + "probability": 1.0 + }, + { + "word": " their", + "start": 1599.06, + "end": 1599.18, + "probability": 1.0 + }, + { + "word": " comfort", + "start": 1599.18, + "end": 1599.44, + "probability": 1.0 + }, + { + "word": " limits.", + "start": 1599.44, + "end": 1599.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 650, + "text": "We like to take little steps so that we can get you there without overwhelming you.", + "start": 1599.82, + "end": 1603.98, + "words": [ + { + "word": " We", + "start": 1599.82, + "end": 1600.04, + "probability": 0.9296875 + }, + { + "word": " like", + "start": 1600.04, + "end": 1600.18, + "probability": 0.93896484375 + }, + { + "word": " to", + "start": 1600.18, + "end": 1600.34, + "probability": 1.0 + }, + { + "word": " take", + "start": 1600.34, + "end": 1600.5, + "probability": 1.0 + }, + { + "word": " little", + "start": 1600.5, + "end": 1600.64, + "probability": 0.99462890625 + }, + { + "word": " steps", + "start": 1600.64, + "end": 1600.98, + "probability": 1.0 + }, + { + "word": " so", + "start": 1600.98, + "end": 1601.3, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 1601.3, + "end": 1601.46, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 1601.46, + "end": 1601.6, + "probability": 1.0 + }, + { + "word": " can", + "start": 1601.6, + "end": 1601.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 1601.7, + "end": 1601.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 1601.9, + "end": 1602.02, + "probability": 1.0 + }, + { + "word": " there", + "start": 1602.02, + "end": 1602.16, + "probability": 1.0 + }, + { + "word": " without", + "start": 1602.16, + "end": 1602.46, + "probability": 0.99951171875 + }, + { + "word": " overwhelming", + "start": 1602.46, + "end": 1603.62, + "probability": 0.998046875 + }, + { + "word": " you.", + "start": 1603.62, + "end": 1603.98, + "probability": 1.0 + } + ] + }, + { + "id": 651, + "text": "Perfect.", + "start": 1605.62, + "end": 1606.06, + "words": [ + { + "word": " Perfect.", + "start": 1605.62, + "end": 1606.06, + "probability": 0.95703125 + } + ] + }, + { + "id": 652, + "text": "But if you're already familiar with the VPN stuff, I say go for it.", + "start": 1606.48, + "end": 1609.9, + "words": [ + { + "word": " But", + "start": 1606.48, + "end": 1606.66, + "probability": 0.9345703125 + }, + { + "word": " if", + "start": 1606.66, + "end": 1606.88, + "probability": 0.9951171875 + }, + { + "word": " you're", + "start": 1606.88, + "end": 1607.08, + "probability": 0.9990234375 + }, + { + "word": " already", + "start": 1607.08, + "end": 1607.82, + "probability": 0.99755859375 + }, + { + "word": " familiar", + "start": 1607.82, + "end": 1608.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 1608.32, + "end": 1608.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 1608.56, + "end": 1608.64, + "probability": 0.9921875 + }, + { + "word": " VPN", + "start": 1608.64, + "end": 1608.9, + "probability": 0.998046875 + }, + { + "word": " stuff,", + "start": 1608.9, + "end": 1609.14, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1609.2, + "end": 1609.36, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 1609.36, + "end": 1609.44, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1609.44, + "end": 1609.58, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1609.58, + "end": 1609.74, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1609.74, + "end": 1609.9, + "probability": 1.0 + } + ] + }, + { + "id": 653, + "text": "Very good.", + "start": 1610.62, + "end": 1611.28, + "words": [ + { + "word": " Very", + "start": 1610.62, + "end": 1611.06, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 1611.06, + "end": 1611.28, + "probability": 1.0 + } + ] + }, + { + "id": 654, + "text": "Thanks, guys.", + "start": 1611.36, + "end": 1611.92, + "words": [ + { + "word": " Thanks,", + "start": 1611.36, + "end": 1611.62, + "probability": 0.99951171875 + }, + { + "word": " guys.", + "start": 1611.74, + "end": 1611.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 655, + "text": "This was really helpful.", + "start": 1612.0, + "end": 1612.92, + "words": [ + { + "word": " This", + "start": 1612.0, + "end": 1612.18, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 1612.18, + "end": 1612.34, + "probability": 0.488037109375 + }, + { + "word": " really", + "start": 1612.34, + "end": 1612.58, + "probability": 1.0 + }, + { + "word": " helpful.", + "start": 1612.58, + "end": 1612.92, + "probability": 1.0 + } + ] + }, + { + "id": 656, + "text": "Appreciate it.", + "start": 1613.08, + "end": 1613.7, + "words": [ + { + "word": " Appreciate", + "start": 1613.08, + "end": 1613.38, + "probability": 0.9462890625 + }, + { + "word": " it.", + "start": 1613.38, + "end": 1613.7, + "probability": 1.0 + } + ] + }, + { + "id": 657, + "text": "All right.", + "start": 1613.9, + "end": 1614.52, + "words": [ + { + "word": " All", + "start": 1613.9, + "end": 1614.34, + "probability": 0.9853515625 + }, + { + "word": " right.", + "start": 1614.34, + "end": 1614.52, + "probability": 1.0 + } + ] + }, + { + "id": 658, + "text": "Thanks, John.", + "start": 1614.56, + "end": 1615.06, + "words": [ + { + "word": " Thanks,", + "start": 1614.56, + "end": 1614.82, + "probability": 1.0 + }, + { + "word": " John.", + "start": 1614.94, + "end": 1615.06, + "probability": 0.998046875 + } + ] + }, + { + "id": 659, + "text": "I appreciate it.", + "start": 1615.14, + "end": 1615.76, + "words": [ + { + "word": " I", + "start": 1615.14, + "end": 1615.22, + "probability": 0.99658203125 + }, + { + "word": " appreciate", + "start": 1615.22, + "end": 1615.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1615.46, + "end": 1615.76, + "probability": 1.0 + } + ] + }, + { + "id": 660, + "text": "Your computer guru, Mike Swanson, is here to help you tame that beast of a machine.", + "start": 1619.08, + "end": 1623.18, + "words": [ + { + "word": " Your", + "start": 1619.08, + "end": 1619.52, + "probability": 0.9736328125 + }, + { + "word": " computer", + "start": 1619.52, + "end": 1619.92, + "probability": 0.99072265625 + }, + { + "word": " guru,", + "start": 1619.92, + "end": 1620.3, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 1620.4, + "end": 1620.6, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 1620.6, + "end": 1620.96, + "probability": 0.9892578125 + }, + { + "word": " is", + "start": 1621.08, + "end": 1621.26, + "probability": 1.0 + }, + { + "word": " here", + "start": 1621.26, + "end": 1621.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1621.38, + "end": 1621.5, + "probability": 1.0 + }, + { + "word": " help", + "start": 1621.5, + "end": 1621.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 1621.72, + "end": 1621.9, + "probability": 1.0 + }, + { + "word": " tame", + "start": 1621.9, + "end": 1622.1, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1622.1, + "end": 1622.3, + "probability": 1.0 + }, + { + "word": " beast", + "start": 1622.3, + "end": 1622.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 1622.6, + "end": 1622.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1622.82, + "end": 1622.9, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1622.9, + "end": 1623.18, + "probability": 1.0 + } + ] + }, + { + "id": 661, + "text": "Join the chat right now at gurushow.com or call in.", + "start": 1623.5, + "end": 1627.04, + "words": [ + { + "word": " Join", + "start": 1623.5, + "end": 1623.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1623.94, + "end": 1624.12, + "probability": 1.0 + }, + { + "word": " chat", + "start": 1624.12, + "end": 1624.32, + "probability": 1.0 + }, + { + "word": " right", + "start": 1624.32, + "end": 1624.56, + "probability": 1.0 + }, + { + "word": " now", + "start": 1624.56, + "end": 1624.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 1624.84, + "end": 1625.14, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 1625.14, + "end": 1625.7, + "probability": 0.87109375 + }, + { + "word": ".com", + "start": 1625.7, + "end": 1626.28, + "probability": 1.0 + }, + { + "word": " or", + "start": 1626.28, + "end": 1626.56, + "probability": 0.9970703125 + }, + { + "word": " call", + "start": 1626.56, + "end": 1626.78, + "probability": 1.0 + }, + { + "word": " in.", + "start": 1626.78, + "end": 1627.04, + "probability": 1.0 + } + ] + }, + { + "id": 662, + "text": "This is the Computer Guru Show on KVO.", + "start": 1627.1, + "end": 1629.68, + "words": [ + { + "word": " This", + "start": 1627.1, + "end": 1627.4, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1627.4, + "end": 1627.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1627.76, + "end": 1627.86, + "probability": 0.65869140625 + }, + { + "word": " Computer", + "start": 1627.86, + "end": 1628.1, + "probability": 0.99853515625 + }, + { + "word": " Guru", + "start": 1628.1, + "end": 1628.46, + "probability": 0.99853515625 + }, + { + "word": " Show", + "start": 1628.46, + "end": 1628.84, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1628.84, + "end": 1629.22, + "probability": 0.99609375 + }, + { + "word": " KVO.", + "start": 1629.22, + "end": 1629.68, + "probability": 0.85546875 + } + ] + }, + { + "id": 663, + "text": "Why?", + "start": 1629.82, + "end": 1629.98, + "words": [ + { + "word": " Why?", + "start": 1629.82, + "end": 1629.98, + "probability": 0.0323486328125 + } + ] + }, + { + "id": 664, + "text": "The Voice.", + "start": 1630.04, + "end": 1630.58, + "words": [ + { + "word": " The", + "start": 1630.04, + "end": 1630.3, + "probability": 0.994140625 + }, + { + "word": " Voice.", + "start": 1630.3, + "end": 1630.58, + "probability": 0.78662109375 + } + ] + }, + { + "id": 665, + "text": "You're listening to the Computer Guru Show on AM 1030.", + "start": 1633.92, + "end": 1637.12, + "words": [ + { + "word": " You're", + "start": 1633.92, + "end": 1634.28, + "probability": 0.9814453125 + }, + { + "word": " listening", + "start": 1634.28, + "end": 1634.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1634.54, + "end": 1634.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1634.82, + "end": 1634.98, + "probability": 0.44921875 + }, + { + "word": " Computer", + "start": 1634.98, + "end": 1635.26, + "probability": 0.99072265625 + }, + { + "word": " Guru", + "start": 1635.26, + "end": 1635.52, + "probability": 0.9912109375 + }, + { + "word": " Show", + "start": 1635.52, + "end": 1635.86, + "probability": 0.9755859375 + }, + { + "word": " on", + "start": 1635.86, + "end": 1636.28, + "probability": 0.98681640625 + }, + { + "word": " AM", + "start": 1636.28, + "end": 1636.56, + "probability": 0.9990234375 + }, + { + "word": " 1030.", + "start": 1636.56, + "end": 1637.12, + "probability": 0.88916015625 + } + ] + }, + { + "id": 666, + "text": "KVO.", + "start": 1637.36, + "end": 1637.72, + "words": [ + { + "word": " KVO.", + "start": 1637.36, + "end": 1637.72, + "probability": 0.415283203125 + } + ] + }, + { + "id": 667, + "text": "Why?", + "start": 1637.8, + "end": 1638.0, + "words": [ + { + "word": " Why?", + "start": 1637.8, + "end": 1638.0, + "probability": 0.9931640625 + } + ] + }, + { + "id": 668, + "text": "The Voice.", + "start": 1638.1, + "end": 1638.64, + "words": [ + { + "word": " The", + "start": 1638.1, + "end": 1638.38, + "probability": 0.99951171875 + }, + { + "word": " Voice.", + "start": 1638.38, + "end": 1638.64, + "probability": 1.0 + } + ] + }, + { + "id": 669, + "text": "Welcome back to the Computer Guru Show.", + "start": 1641.5600000000002, + "end": 1643.4, + "words": [ + { + "word": " Welcome", + "start": 1641.5600000000002, + "end": 1641.92, + "probability": 0.939453125 + }, + { + "word": " back", + "start": 1641.92, + "end": 1642.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1642.28, + "end": 1642.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1642.5, + "end": 1642.62, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 1642.62, + "end": 1642.88, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 1642.88, + "end": 1643.16, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 1643.16, + "end": 1643.4, + "probability": 1.0 + } + ] + }, + { + "id": 670, + "text": "Nothing like a little break to calm me down.", + "start": 1644.3600000000001, + "end": 1645.98, + "words": [ + { + "word": " Nothing", + "start": 1644.3600000000001, + "end": 1644.72, + "probability": 0.99609375 + }, + { + "word": " like", + "start": 1644.72, + "end": 1644.96, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1644.96, + "end": 1645.04, + "probability": 1.0 + }, + { + "word": " little", + "start": 1645.04, + "end": 1645.14, + "probability": 1.0 + }, + { + "word": " break", + "start": 1645.14, + "end": 1645.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1645.38, + "end": 1645.5, + "probability": 0.99951171875 + }, + { + "word": " calm", + "start": 1645.5, + "end": 1645.64, + "probability": 0.99169921875 + }, + { + "word": " me", + "start": 1645.64, + "end": 1645.8, + "probability": 0.98583984375 + }, + { + "word": " down.", + "start": 1645.8, + "end": 1645.98, + "probability": 1.0 + } + ] + }, + { + "id": 671, + "text": "Yeah, because, you know, I've been particularly kind of hateful today, mainly on government stuff.", + "start": 1647.4, + "end": 1653.54, + "words": [ + { + "word": " Yeah,", + "start": 1647.4, + "end": 1647.76, + "probability": 0.19921875 + }, + { + "word": " because,", + "start": 1647.78, + "end": 1647.92, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 1648.02, + "end": 1648.12, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1648.12, + "end": 1648.18, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1648.24, + "end": 1648.76, + "probability": 1.0 + }, + { + "word": " been", + "start": 1648.76, + "end": 1648.98, + "probability": 1.0 + }, + { + "word": " particularly", + "start": 1648.98, + "end": 1649.96, + "probability": 0.87646484375 + }, + { + "word": " kind", + "start": 1649.96, + "end": 1650.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 1650.8, + "end": 1651.34, + "probability": 1.0 + }, + { + "word": " hateful", + "start": 1651.34, + "end": 1651.6, + "probability": 1.0 + }, + { + "word": " today,", + "start": 1651.6, + "end": 1651.78, + "probability": 0.99951171875 + }, + { + "word": " mainly", + "start": 1651.9, + "end": 1652.72, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1652.72, + "end": 1652.94, + "probability": 1.0 + }, + { + "word": " government", + "start": 1652.94, + "end": 1653.26, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 1653.26, + "end": 1653.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 672, + "text": "Maybe not hateful enough.", + "start": 1653.56, + "end": 1654.58, + "words": [ + { + "word": " Maybe", + "start": 1653.56, + "end": 1653.78, + "probability": 0.99560546875 + }, + { + "word": " not", + "start": 1653.78, + "end": 1653.96, + "probability": 0.99951171875 + }, + { + "word": " hateful", + "start": 1653.96, + "end": 1654.34, + "probability": 1.0 + }, + { + "word": " enough.", + "start": 1654.34, + "end": 1654.58, + "probability": 1.0 + } + ] + }, + { + "id": 673, + "text": "I should probably crank it up a notch.", + "start": 1654.8, + "end": 1656.18, + "words": [ + { + "word": " I", + "start": 1654.8, + "end": 1655.12, + "probability": 0.98974609375 + }, + { + "word": " should", + "start": 1655.12, + "end": 1655.28, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 1655.28, + "end": 1655.48, + "probability": 1.0 + }, + { + "word": " crank", + "start": 1655.48, + "end": 1655.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1655.7, + "end": 1655.88, + "probability": 1.0 + }, + { + "word": " up", + "start": 1655.88, + "end": 1656.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1656.0, + "end": 1656.06, + "probability": 0.72509765625 + }, + { + "word": " notch.", + "start": 1656.06, + "end": 1656.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 674, + "text": "I'm going to turn it up to 11.", + "start": 1656.22, + "end": 1656.94, + "words": [ + { + "word": " I'm", + "start": 1656.22, + "end": 1656.34, + "probability": 1.0 + }, + { + "word": " going", + "start": 1656.34, + "end": 1656.36, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1656.36, + "end": 1656.4, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1656.4, + "end": 1656.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 1656.52, + "end": 1656.6, + "probability": 1.0 + }, + { + "word": " up", + "start": 1656.6, + "end": 1656.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1656.7, + "end": 1656.76, + "probability": 0.99951171875 + }, + { + "word": " 11.", + "start": 1656.76, + "end": 1656.94, + "probability": 0.99755859375 + } + ] + }, + { + "id": 675, + "text": "That's what we're going to do.", + "start": 1657.18, + "end": 1658.12, + "words": [ + { + "word": " That's", + "start": 1657.18, + "end": 1657.54, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 1657.54, + "end": 1657.6, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 1657.6, + "end": 1657.76, + "probability": 1.0 + }, + { + "word": " going", + "start": 1657.76, + "end": 1657.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1657.84, + "end": 1657.94, + "probability": 1.0 + }, + { + "word": " do.", + "start": 1657.94, + "end": 1658.12, + "probability": 1.0 + } + ] + }, + { + "id": 676, + "text": "All right.", + "start": 1658.24, + "end": 1658.56, + "words": [ + { + "word": " All", + "start": 1658.24, + "end": 1658.5, + "probability": 0.9833984375 + }, + { + "word": " right.", + "start": 1658.5, + "end": 1658.56, + "probability": 1.0 + } + ] + }, + { + "id": 677, + "text": "Give us a call.", + "start": 1658.58, + "end": 1659.0, + "words": [ + { + "word": " Give", + "start": 1658.58, + "end": 1658.7, + "probability": 0.990234375 + }, + { + "word": " us", + "start": 1658.7, + "end": 1658.82, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 1658.82, + "end": 1658.88, + "probability": 0.9951171875 + }, + { + "word": " call.", + "start": 1658.88, + "end": 1659.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 678, + "text": "Call 790-2040.", + "start": 1659.0, + "end": 1661.24, + "words": [ + { + "word": " Call", + "start": 1659.0, + "end": 1659.6, + "probability": 0.1527099609375 + }, + { + "word": " 790", + "start": 1659.6, + "end": 1660.42, + "probability": 0.9814453125 + }, + { + "word": "-2040.", + "start": 1660.42, + "end": 1661.24, + "probability": 0.9697265625 + } + ] + }, + { + "id": 679, + "text": "790-2040.", + "start": 1662.7, + "end": 1663.34, + "words": [ + { + "word": " 790", + "start": 1662.7, + "end": 1663.02, + "probability": 0.9970703125 + }, + { + "word": "-2040.", + "start": 1663.02, + "end": 1663.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 680, + "text": "In the 520 area code if you want to be calling from out of state.", + "start": 1663.52, + "end": 1666.86, + "words": [ + { + "word": " In", + "start": 1663.52, + "end": 1663.76, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 1663.76, + "end": 1663.88, + "probability": 0.99951171875 + }, + { + "word": " 520", + "start": 1663.88, + "end": 1664.34, + "probability": 0.98095703125 + }, + { + "word": " area", + "start": 1664.34, + "end": 1664.74, + "probability": 0.99853515625 + }, + { + "word": " code", + "start": 1664.74, + "end": 1665.12, + "probability": 0.9375 + }, + { + "word": " if", + "start": 1665.12, + "end": 1665.5, + "probability": 0.556640625 + }, + { + "word": " you", + "start": 1665.5, + "end": 1665.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 1665.66, + "end": 1665.82, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1665.82, + "end": 1665.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 1665.92, + "end": 1666.02, + "probability": 1.0 + }, + { + "word": " calling", + "start": 1666.02, + "end": 1666.22, + "probability": 1.0 + }, + { + "word": " from", + "start": 1666.22, + "end": 1666.46, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 1666.46, + "end": 1666.6, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1666.6, + "end": 1666.7, + "probability": 0.9814453125 + }, + { + "word": " state.", + "start": 1666.7, + "end": 1666.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 681, + "text": "We would love to hear from you.", + "start": 1666.98, + "end": 1668.02, + "words": [ + { + "word": " We", + "start": 1666.98, + "end": 1667.24, + "probability": 0.99755859375 + }, + { + "word": " would", + "start": 1667.24, + "end": 1667.36, + "probability": 0.99951171875 + }, + { + "word": " love", + "start": 1667.36, + "end": 1667.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 1667.6, + "end": 1667.68, + "probability": 1.0 + }, + { + "word": " hear", + "start": 1667.68, + "end": 1667.8, + "probability": 1.0 + }, + { + "word": " from", + "start": 1667.8, + "end": 1667.92, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1667.92, + "end": 1668.02, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "Also, we've got a chat room set up.", + "start": 1668.04, + "end": 1669.08, + "words": [ + { + "word": " Also,", + "start": 1668.04, + "end": 1668.2, + "probability": 0.99853515625 + }, + { + "word": " we've", + "start": 1668.24, + "end": 1668.36, + "probability": 0.92578125 + }, + { + "word": " got", + "start": 1668.36, + "end": 1668.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 1668.38, + "end": 1668.44, + "probability": 0.97900390625 + }, + { + "word": " chat", + "start": 1668.44, + "end": 1668.6, + "probability": 1.0 + }, + { + "word": " room", + "start": 1668.6, + "end": 1668.76, + "probability": 0.99609375 + }, + { + "word": " set", + "start": 1668.76, + "end": 1668.94, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1668.94, + "end": 1669.08, + "probability": 1.0 + } + ] + }, + { + "id": 683, + "text": "If you want to just ask us questions in the chat room, you can go on the Facebook site to see it there.", + "start": 1669.16, + "end": 1675.74, + "words": [ + { + "word": " If", + "start": 1669.16, + "end": 1669.48, + "probability": 0.82958984375 + }, + { + "word": " you", + "start": 1669.48, + "end": 1669.58, + "probability": 1.0 + }, + { + "word": " want", + "start": 1669.58, + "end": 1669.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1669.72, + "end": 1669.86, + "probability": 1.0 + }, + { + "word": " just", + "start": 1669.86, + "end": 1670.1, + "probability": 0.99755859375 + }, + { + "word": " ask", + "start": 1670.1, + "end": 1670.32, + "probability": 1.0 + }, + { + "word": " us", + "start": 1670.32, + "end": 1670.42, + "probability": 0.98876953125 + }, + { + "word": " questions", + "start": 1670.42, + "end": 1670.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 1670.72, + "end": 1670.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1670.88, + "end": 1670.96, + "probability": 1.0 + }, + { + "word": " chat", + "start": 1670.96, + "end": 1671.12, + "probability": 1.0 + }, + { + "word": " room,", + "start": 1671.12, + "end": 1671.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1671.44, + "end": 1671.92, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1671.92, + "end": 1672.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 1672.1, + "end": 1672.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 1672.3, + "end": 1672.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1672.46, + "end": 1672.58, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 1672.58, + "end": 1673.0, + "probability": 1.0 + }, + { + "word": " site", + "start": 1673.0, + "end": 1673.44, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1673.44, + "end": 1673.78, + "probability": 0.99560546875 + }, + { + "word": " see", + "start": 1673.78, + "end": 1675.0, + "probability": 0.978515625 + }, + { + "word": " it", + "start": 1675.0, + "end": 1675.42, + "probability": 0.99755859375 + }, + { + "word": " there.", + "start": 1675.42, + "end": 1675.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 684, + "text": "Basically, I'll add that as part of the Guru Show standard link after the show today, but there wasn't enough time before airtime today to pull that off.", + "start": 1677.5800000000002, + "end": 1685.46, + "words": [ + { + "word": " Basically,", + "start": 1677.5800000000002, + "end": 1677.9, + "probability": 0.98193359375 + }, + { + "word": " I'll", + "start": 1677.9, + "end": 1678.22, + "probability": 0.99951171875 + }, + { + "word": " add", + "start": 1678.22, + "end": 1678.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 1678.44, + "end": 1678.56, + "probability": 1.0 + }, + { + "word": " as", + "start": 1678.56, + "end": 1678.7, + "probability": 1.0 + }, + { + "word": " part", + "start": 1678.7, + "end": 1678.86, + "probability": 0.9755859375 + }, + { + "word": " of", + "start": 1678.86, + "end": 1679.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1679.02, + "end": 1679.06, + "probability": 0.99658203125 + }, + { + "word": " Guru", + "start": 1679.06, + "end": 1679.26, + "probability": 0.955078125 + }, + { + "word": " Show", + "start": 1679.26, + "end": 1679.5, + "probability": 0.939453125 + }, + { + "word": " standard", + "start": 1679.5, + "end": 1680.22, + "probability": 0.98681640625 + }, + { + "word": " link", + "start": 1680.22, + "end": 1680.78, + "probability": 1.0 + }, + { + "word": " after", + "start": 1680.78, + "end": 1681.1, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1681.1, + "end": 1681.26, + "probability": 1.0 + }, + { + "word": " show", + "start": 1681.26, + "end": 1681.42, + "probability": 1.0 + }, + { + "word": " today,", + "start": 1681.42, + "end": 1681.58, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 1681.72, + "end": 1681.86, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 1681.86, + "end": 1682.82, + "probability": 0.9990234375 + }, + { + "word": " wasn't", + "start": 1682.82, + "end": 1683.06, + "probability": 1.0 + }, + { + "word": " enough", + "start": 1683.06, + "end": 1683.22, + "probability": 1.0 + }, + { + "word": " time", + "start": 1683.22, + "end": 1683.46, + "probability": 0.9736328125 + }, + { + "word": " before", + "start": 1683.46, + "end": 1683.76, + "probability": 0.9990234375 + }, + { + "word": " airtime", + "start": 1683.76, + "end": 1684.48, + "probability": 0.775390625 + }, + { + "word": " today", + "start": 1684.48, + "end": 1684.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1684.76, + "end": 1684.92, + "probability": 0.998046875 + }, + { + "word": " pull", + "start": 1684.92, + "end": 1685.08, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1685.08, + "end": 1685.2, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1685.2, + "end": 1685.46, + "probability": 1.0 + } + ] + }, + { + "id": 685, + "text": "Because it's daughter weekend.", + "start": 1686.0, + "end": 1686.94, + "words": [ + { + "word": " Because", + "start": 1686.0, + "end": 1686.32, + "probability": 0.99267578125 + }, + { + "word": " it's", + "start": 1686.32, + "end": 1686.54, + "probability": 1.0 + }, + { + "word": " daughter", + "start": 1686.54, + "end": 1686.68, + "probability": 0.6474609375 + }, + { + "word": " weekend.", + "start": 1686.68, + "end": 1686.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 686, + "text": "I get to hang out with my daughter.", + "start": 1687.14, + "end": 1688.1, + "words": [ + { + "word": " I", + "start": 1687.14, + "end": 1687.24, + "probability": 1.0 + }, + { + "word": " get", + "start": 1687.24, + "end": 1687.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1687.3, + "end": 1687.4, + "probability": 1.0 + }, + { + "word": " hang", + "start": 1687.4, + "end": 1687.54, + "probability": 1.0 + }, + { + "word": " out", + "start": 1687.54, + "end": 1687.68, + "probability": 1.0 + }, + { + "word": " with", + "start": 1687.68, + "end": 1687.76, + "probability": 1.0 + }, + { + "word": " my", + "start": 1687.76, + "end": 1687.9, + "probability": 1.0 + }, + { + "word": " daughter.", + "start": 1687.9, + "end": 1688.1, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "Maybe that's what it is.", + "start": 1688.16, + "end": 1688.98, + "words": [ + { + "word": " Maybe", + "start": 1688.16, + "end": 1688.34, + "probability": 0.998046875 + }, + { + "word": " that's", + "start": 1688.34, + "end": 1688.6, + "probability": 1.0 + }, + { + "word": " what", + "start": 1688.6, + "end": 1688.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1688.7, + "end": 1688.82, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1688.82, + "end": 1688.98, + "probability": 1.0 + } + ] + }, + { + "id": 688, + "text": "I spend all this time not cursing and being nice and hanging out with the innocent 11-year-old.", + "start": 1688.98, + "end": 1697.5, + "words": [ + { + "word": " I", + "start": 1688.98, + "end": 1689.28, + "probability": 0.2266845703125 + }, + { + "word": " spend", + "start": 1689.28, + "end": 1689.28, + "probability": 0.73583984375 + }, + { + "word": " all", + "start": 1689.28, + "end": 1690.42, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1690.42, + "end": 1690.64, + "probability": 1.0 + }, + { + "word": " time", + "start": 1690.64, + "end": 1690.88, + "probability": 1.0 + }, + { + "word": " not", + "start": 1690.88, + "end": 1691.32, + "probability": 0.9423828125 + }, + { + "word": " cursing", + "start": 1691.32, + "end": 1692.3, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1692.3, + "end": 1692.62, + "probability": 0.9619140625 + }, + { + "word": " being", + "start": 1692.62, + "end": 1693.22, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1693.22, + "end": 1693.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1693.74, + "end": 1694.3, + "probability": 0.984375 + }, + { + "word": " hanging", + "start": 1694.3, + "end": 1695.36, + "probability": 0.9951171875 + }, + { + "word": " out", + "start": 1695.36, + "end": 1695.7, + "probability": 1.0 + }, + { + "word": " with", + "start": 1695.7, + "end": 1695.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1695.94, + "end": 1696.18, + "probability": 0.78759765625 + }, + { + "word": " innocent", + "start": 1696.18, + "end": 1696.64, + "probability": 1.0 + }, + { + "word": " 11", + "start": 1696.64, + "end": 1697.02, + "probability": 0.99951171875 + }, + { + "word": "-year", + "start": 1697.02, + "end": 1697.3, + "probability": 0.9775390625 + }, + { + "word": "-old.", + "start": 1697.3, + "end": 1697.5, + "probability": 1.0 + } + ] + }, + { + "id": 689, + "text": "Then I'm like, I've got to unbottle this.", + "start": 1697.6, + "end": 1699.24, + "words": [ + { + "word": " Then", + "start": 1697.6, + "end": 1697.72, + "probability": 0.1689453125 + }, + { + "word": " I'm", + "start": 1697.72, + "end": 1697.92, + "probability": 0.9765625 + }, + { + "word": " like,", + "start": 1697.92, + "end": 1698.08, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1698.12, + "end": 1698.5, + "probability": 0.8251953125 + }, + { + "word": " got", + "start": 1698.5, + "end": 1698.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 1698.58, + "end": 1698.68, + "probability": 1.0 + }, + { + "word": " unbottle", + "start": 1698.68, + "end": 1699.06, + "probability": 0.9931640625 + }, + { + "word": " this.", + "start": 1699.06, + "end": 1699.24, + "probability": 1.0 + } + ] + }, + { + "id": 690, + "text": "That article about them not knowing what ISP meant just made me crazy.", + "start": 1700.6599999999999, + "end": 1704.1, + "words": [ + { + "word": " That", + "start": 1700.6599999999999, + "end": 1701.1399999999999, + "probability": 0.89501953125 + }, + { + "word": " article", + "start": 1701.1399999999999, + "end": 1701.62, + "probability": 1.0 + }, + { + "word": " about", + "start": 1701.62, + "end": 1702.04, + "probability": 1.0 + }, + { + "word": " them", + "start": 1702.04, + "end": 1702.26, + "probability": 1.0 + }, + { + "word": " not", + "start": 1702.26, + "end": 1702.42, + "probability": 1.0 + }, + { + "word": " knowing", + "start": 1702.42, + "end": 1702.58, + "probability": 1.0 + }, + { + "word": " what", + "start": 1702.58, + "end": 1702.76, + "probability": 1.0 + }, + { + "word": " ISP", + "start": 1702.76, + "end": 1703.1, + "probability": 0.998046875 + }, + { + "word": " meant", + "start": 1703.1, + "end": 1703.32, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1703.32, + "end": 1703.52, + "probability": 0.99951171875 + }, + { + "word": " made", + "start": 1703.52, + "end": 1703.7, + "probability": 1.0 + }, + { + "word": " me", + "start": 1703.7, + "end": 1703.82, + "probability": 1.0 + }, + { + "word": " crazy.", + "start": 1703.82, + "end": 1704.1, + "probability": 1.0 + } + ] + }, + { + "id": 691, + "text": "Let's talk about things that are more fun, shall we?", + "start": 1705.3, + "end": 1707.48, + "words": [ + { + "word": " Let's", + "start": 1705.3, + "end": 1705.78, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 1705.78, + "end": 1705.9, + "probability": 1.0 + }, + { + "word": " about", + "start": 1705.9, + "end": 1706.08, + "probability": 1.0 + }, + { + "word": " things", + "start": 1706.08, + "end": 1706.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1706.26, + "end": 1706.4, + "probability": 1.0 + }, + { + "word": " are", + "start": 1706.4, + "end": 1706.44, + "probability": 1.0 + }, + { + "word": " more", + "start": 1706.44, + "end": 1706.56, + "probability": 1.0 + }, + { + "word": " fun,", + "start": 1706.56, + "end": 1706.78, + "probability": 1.0 + }, + { + "word": " shall", + "start": 1706.9, + "end": 1707.12, + "probability": 1.0 + }, + { + "word": " we?", + "start": 1707.12, + "end": 1707.48, + "probability": 1.0 + } + ] + }, + { + "id": 692, + "text": "Shall we?", + "start": 1707.58, + "end": 1708.18, + "words": [ + { + "word": " Shall", + "start": 1707.58, + "end": 1707.96, + "probability": 0.11102294921875 + }, + { + "word": " we?", + "start": 1707.96, + "end": 1708.18, + "probability": 1.0 + } + ] + }, + { + "id": 693, + "text": "Fun stuff.", + "start": 1708.38, + "end": 1709.04, + "words": [ + { + "word": " Fun", + "start": 1708.38, + "end": 1708.62, + "probability": 0.798828125 + }, + { + "word": " stuff.", + "start": 1708.62, + "end": 1709.04, + "probability": 1.0 + } + ] + }, + { + "id": 694, + "text": "How about lawsuits?", + "start": 1709.3, + "end": 1710.12, + "words": [ + { + "word": " How", + "start": 1709.3, + "end": 1709.38, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 1709.38, + "end": 1709.5, + "probability": 1.0 + }, + { + "word": " lawsuits?", + "start": 1709.5, + "end": 1710.12, + "probability": 1.0 + } + ] + }, + { + "id": 695, + "text": "So much more fun.", + "start": 1712.52, + "end": 1714.04, + "words": [ + { + "word": " So", + "start": 1712.52, + "end": 1713.0, + "probability": 0.7353515625 + }, + { + "word": " much", + "start": 1713.0, + "end": 1713.48, + "probability": 1.0 + }, + { + "word": " more", + "start": 1713.48, + "end": 1713.72, + "probability": 1.0 + }, + { + "word": " fun.", + "start": 1713.72, + "end": 1714.04, + "probability": 1.0 + } + ] + }, + { + "id": 696, + "text": "We should talk about WhatsApp for a second.", + "start": 1714.48, + "end": 1716.48, + "words": [ + { + "word": " We", + "start": 1714.48, + "end": 1714.94, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 1714.94, + "end": 1715.14, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1715.14, + "end": 1715.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 1715.3, + "end": 1715.54, + "probability": 1.0 + }, + { + "word": " WhatsApp", + "start": 1715.54, + "end": 1715.8, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 1715.8, + "end": 1716.12, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1716.12, + "end": 1716.22, + "probability": 1.0 + }, + { + "word": " second.", + "start": 1716.22, + "end": 1716.48, + "probability": 1.0 + } + ] + }, + { + "id": 697, + "text": "Yeah.", + "start": 1716.64, + "end": 1716.96, + "words": [ + { + "word": " Yeah.", + "start": 1716.64, + "end": 1716.96, + "probability": 0.80908203125 + } + ] + }, + { + "id": 698, + "text": "There's an issue.", + "start": 1717.1, + "end": 1718.7, + "words": [ + { + "word": " There's", + "start": 1717.1, + "end": 1717.58, + "probability": 0.9736328125 + }, + { + "word": " an", + "start": 1717.58, + "end": 1717.72, + "probability": 0.99951171875 + }, + { + "word": " issue.", + "start": 1717.72, + "end": 1718.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 699, + "text": "There's an issue with WhatsApp right now.", + "start": 1718.7, + "end": 1719.94, + "words": [ + { + "word": " There's", + "start": 1718.7, + "end": 1718.84, + "probability": 0.436279296875 + }, + { + "word": " an", + "start": 1718.84, + "end": 1718.84, + "probability": 0.73486328125 + }, + { + "word": " issue", + "start": 1718.84, + "end": 1718.84, + "probability": 0.9931640625 + }, + { + "word": " with", + "start": 1718.84, + "end": 1718.94, + "probability": 0.9990234375 + }, + { + "word": " WhatsApp", + "start": 1718.94, + "end": 1719.44, + "probability": 0.9912109375 + }, + { + "word": " right", + "start": 1719.44, + "end": 1719.7, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 1719.7, + "end": 1719.94, + "probability": 1.0 + } + ] + }, + { + "id": 700, + "text": "In case you haven't heard, Facebook is acquiring WhatsApp.", + "start": 1720.32, + "end": 1725.36, + "words": [ + { + "word": " In", + "start": 1720.32, + "end": 1720.76, + "probability": 0.9794921875 + }, + { + "word": " case", + "start": 1720.76, + "end": 1721.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 1721.08, + "end": 1721.28, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 1721.28, + "end": 1721.5, + "probability": 1.0 + }, + { + "word": " heard,", + "start": 1721.5, + "end": 1721.76, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 1722.12, + "end": 1722.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 1722.84, + "end": 1724.0, + "probability": 1.0 + }, + { + "word": " acquiring", + "start": 1724.0, + "end": 1724.44, + "probability": 1.0 + }, + { + "word": " WhatsApp.", + "start": 1724.44, + "end": 1725.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 701, + "text": "Yeah.", + "start": 1725.66, + "end": 1726.1, + "words": [ + { + "word": " Yeah.", + "start": 1725.66, + "end": 1726.1, + "probability": 0.55322265625 + } + ] + }, + { + "id": 702, + "text": "Are they still in process?", + "start": 1726.26, + "end": 1727.3, + "words": [ + { + "word": " Are", + "start": 1726.26, + "end": 1726.7, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1726.7, + "end": 1726.84, + "probability": 1.0 + }, + { + "word": " still", + "start": 1726.84, + "end": 1727.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 1727.0, + "end": 1727.1, + "probability": 0.92041015625 + }, + { + "word": " process?", + "start": 1727.1, + "end": 1727.3, + "probability": 0.91650390625 + } + ] + }, + { + "id": 703, + "text": "I thought it was done.", + "start": 1727.32, + "end": 1727.8, + "words": [ + { + "word": " I", + "start": 1727.32, + "end": 1727.46, + "probability": 0.99951171875 + }, + { + "word": " thought", + "start": 1727.46, + "end": 1727.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 1727.52, + "end": 1727.62, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1727.62, + "end": 1727.64, + "probability": 1.0 + }, + { + "word": " done.", + "start": 1727.64, + "end": 1727.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 704, + "text": "It may be done.", + "start": 1728.06, + "end": 1729.3, + "words": [ + { + "word": " It", + "start": 1728.06, + "end": 1728.24, + "probability": 0.9111328125 + }, + { + "word": " may", + "start": 1728.24, + "end": 1728.84, + "probability": 0.5927734375 + }, + { + "word": " be", + "start": 1728.84, + "end": 1729.04, + "probability": 1.0 + }, + { + "word": " done.", + "start": 1729.04, + "end": 1729.3, + "probability": 1.0 + } + ] + }, + { + "id": 705, + "text": "I'm not sure.", + "start": 1729.68, + "end": 1730.46, + "words": [ + { + "word": " I'm", + "start": 1729.68, + "end": 1730.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 1730.12, + "end": 1730.24, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 1730.24, + "end": 1730.46, + "probability": 1.0 + } + ] + }, + { + "id": 706, + "text": "I'd have to look.", + "start": 1730.5, + "end": 1731.02, + "words": [ + { + "word": " I'd", + "start": 1730.5, + "end": 1730.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 1730.68, + "end": 1730.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1730.68, + "end": 1730.86, + "probability": 1.0 + }, + { + "word": " look.", + "start": 1730.86, + "end": 1731.02, + "probability": 1.0 + } + ] + }, + { + "id": 707, + "text": "Do you remember the number?", + "start": 1731.06, + "end": 1732.56, + "words": [ + { + "word": " Do", + "start": 1731.06, + "end": 1731.44, + "probability": 0.80712890625 + }, + { + "word": " you", + "start": 1731.44, + "end": 1731.66, + "probability": 1.0 + }, + { + "word": " remember", + "start": 1731.66, + "end": 1731.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1731.96, + "end": 1732.18, + "probability": 1.0 + }, + { + "word": " number?", + "start": 1732.18, + "end": 1732.56, + "probability": 1.0 + } + ] + }, + { + "id": 708, + "text": "Oh.", + "start": 1732.66, + "end": 1733.06, + "words": [ + { + "word": " Oh.", + "start": 1732.66, + "end": 1733.06, + "probability": 0.93359375 + } + ] + }, + { + "id": 709, + "text": "How much they paid for that?", + "start": 1733.34, + "end": 1734.92, + "words": [ + { + "word": " How", + "start": 1733.34, + "end": 1733.78, + "probability": 0.99462890625 + }, + { + "word": " much", + "start": 1733.78, + "end": 1733.98, + "probability": 1.0 + }, + { + "word": " they", + "start": 1733.98, + "end": 1734.12, + "probability": 1.0 + }, + { + "word": " paid", + "start": 1734.12, + "end": 1734.32, + "probability": 0.986328125 + }, + { + "word": " for", + "start": 1734.32, + "end": 1734.72, + "probability": 1.0 + }, + { + "word": " that?", + "start": 1734.72, + "end": 1734.92, + "probability": 1.0 + } + ] + }, + { + "id": 710, + "text": "Yeah.", + "start": 1735.12, + "end": 1735.32, + "words": [ + { + "word": " Yeah.", + "start": 1735.12, + "end": 1735.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 711, + "text": "All right.", + "start": 1735.5, + "end": 1736.04, + "words": [ + { + "word": " All", + "start": 1735.5, + "end": 1735.94, + "probability": 0.935546875 + }, + { + "word": " right.", + "start": 1735.94, + "end": 1736.04, + "probability": 1.0 + } + ] + }, + { + "id": 712, + "text": "So it was, I believe, $15 billion?", + "start": 1736.06, + "end": 1739.1, + "words": [ + { + "word": " So", + "start": 1736.06, + "end": 1736.28, + "probability": 0.94873046875 + }, + { + "word": " it", + "start": 1736.28, + "end": 1736.72, + "probability": 0.79541015625 + }, + { + "word": " was,", + "start": 1736.72, + "end": 1737.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 1737.12, + "end": 1737.5, + "probability": 1.0 + }, + { + "word": " believe,", + "start": 1737.5, + "end": 1737.96, + "probability": 1.0 + }, + { + "word": " $15", + "start": 1738.16, + "end": 1738.6, + "probability": 0.87890625 + }, + { + "word": " billion?", + "start": 1738.6, + "end": 1739.1, + "probability": 1.0 + } + ] + }, + { + "id": 713, + "text": "Billion.", + "start": 1739.28, + "end": 1739.62, + "words": [ + { + "word": " Billion.", + "start": 1739.28, + "end": 1739.62, + "probability": 0.99462890625 + } + ] + }, + { + "id": 714, + "text": "Yeah.", + "start": 1739.62, + "end": 1740.04, + "words": [ + { + "word": " Yeah.", + "start": 1739.62, + "end": 1740.04, + "probability": 0.98388671875 + } + ] + }, + { + "id": 715, + "text": "With a D.", + "start": 1740.04, + "end": 1740.44, + "words": [ + { + "word": " With", + "start": 1740.04, + "end": 1740.2, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 1740.2, + "end": 1740.28, + "probability": 1.0 + }, + { + "word": " D.", + "start": 1740.28, + "end": 1740.44, + "probability": 0.94677734375 + } + ] + }, + { + "id": 716, + "text": "Yeah.", + "start": 1740.6, + "end": 1740.78, + "words": [ + { + "word": " Yeah.", + "start": 1740.6, + "end": 1740.78, + "probability": 0.9873046875 + } + ] + }, + { + "id": 717, + "text": "$15 billion.", + "start": 1740.84, + "end": 1741.78, + "words": [ + { + "word": " $15", + "start": 1740.84, + "end": 1741.28, + "probability": 1.0 + }, + { + "word": " billion.", + "start": 1741.28, + "end": 1741.78, + "probability": 1.0 + } + ] + }, + { + "id": 718, + "text": "Bravo.", + "start": 1742.26, + "end": 1742.7, + "words": [ + { + "word": " Bravo.", + "start": 1742.26, + "end": 1742.7, + "probability": 0.9931640625 + } + ] + }, + { + "id": 719, + "text": "$15 billion for an application Facebook has paid.", + "start": 1743.82, + "end": 1746.94, + "words": [ + { + "word": " $15", + "start": 1743.82, + "end": 1744.26, + "probability": 1.0 + }, + { + "word": " billion", + "start": 1744.26, + "end": 1744.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 1744.62, + "end": 1745.2, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1745.2, + "end": 1745.4, + "probability": 1.0 + }, + { + "word": " application", + "start": 1745.4, + "end": 1745.78, + "probability": 0.998046875 + }, + { + "word": " Facebook", + "start": 1745.78, + "end": 1746.36, + "probability": 0.93212890625 + }, + { + "word": " has", + "start": 1746.36, + "end": 1746.72, + "probability": 1.0 + }, + { + "word": " paid.", + "start": 1746.72, + "end": 1746.94, + "probability": 1.0 + } + ] + }, + { + "id": 720, + "text": "Yeah.", + "start": 1747.06, + "end": 1747.5, + "words": [ + { + "word": " Yeah.", + "start": 1747.06, + "end": 1747.5, + "probability": 0.98095703125 + } + ] + }, + { + "id": 721, + "text": "For WhatsApp.", + "start": 1747.5, + "end": 1747.92, + "words": [ + { + "word": " For", + "start": 1747.5, + "end": 1747.6, + "probability": 0.9853515625 + }, + { + "word": " WhatsApp.", + "start": 1747.6, + "end": 1747.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 722, + "text": "Yeah.", + "start": 1747.92, + "end": 1748.04, + "words": [ + { + "word": " Yeah.", + "start": 1747.92, + "end": 1748.04, + "probability": 0.31787109375 + } + ] + }, + { + "id": 723, + "text": "And they're not even using it, basically.", + "start": 1748.06, + "end": 1749.56, + "words": [ + { + "word": " And", + "start": 1748.06, + "end": 1748.5, + "probability": 0.79833984375 + }, + { + "word": " they're", + "start": 1748.5, + "end": 1748.64, + "probability": 0.99560546875 + }, + { + "word": " not", + "start": 1748.64, + "end": 1748.66, + "probability": 1.0 + }, + { + "word": " even", + "start": 1748.66, + "end": 1748.82, + "probability": 1.0 + }, + { + "word": " using", + "start": 1748.82, + "end": 1749.06, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1749.06, + "end": 1749.22, + "probability": 1.0 + }, + { + "word": " basically.", + "start": 1749.26, + "end": 1749.56, + "probability": 1.0 + } + ] + }, + { + "id": 724, + "text": "Yeah.", + "start": 1749.76, + "end": 1750.0, + "words": [ + { + "word": " Yeah.", + "start": 1749.76, + "end": 1750.0, + "probability": 0.98779296875 + } + ] + }, + { + "id": 725, + "text": "All right.", + "start": 1750.14, + "end": 1750.38, + "words": [ + { + "word": " All", + "start": 1750.14, + "end": 1750.28, + "probability": 0.8896484375 + }, + { + "word": " right.", + "start": 1750.28, + "end": 1750.38, + "probability": 1.0 + } + ] + }, + { + "id": 726, + "text": "Here's the problem with that, is that somebody put together a list of things that you could", + "start": 1750.5, + "end": 1756.3, + "words": [ + { + "word": " Here's", + "start": 1750.5, + "end": 1750.94, + "probability": 0.8525390625 + }, + { + "word": " the", + "start": 1750.94, + "end": 1751.04, + "probability": 0.99951171875 + }, + { + "word": " problem", + "start": 1751.04, + "end": 1751.58, + "probability": 0.95751953125 + }, + { + "word": " with", + "start": 1751.58, + "end": 1752.02, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1752.02, + "end": 1752.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 1752.32, + "end": 1752.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 1752.66, + "end": 1752.82, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1752.82, + "end": 1754.16, + "probability": 1.0 + }, + { + "word": " put", + "start": 1754.16, + "end": 1754.36, + "probability": 1.0 + }, + { + "word": " together", + "start": 1754.36, + "end": 1754.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 1754.64, + "end": 1754.9, + "probability": 1.0 + }, + { + "word": " list", + "start": 1754.9, + "end": 1755.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 1755.14, + "end": 1755.32, + "probability": 1.0 + }, + { + "word": " things", + "start": 1755.32, + "end": 1755.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 1755.56, + "end": 1755.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 1755.78, + "end": 1756.02, + "probability": 1.0 + }, + { + "word": " could", + "start": 1756.02, + "end": 1756.3, + "probability": 1.0 + } + ] + }, + { + "id": 727, + "text": "do with $15 billion.", + "start": 1756.3, + "end": 1757.64, + "words": [ + { + "word": " do", + "start": 1756.3, + "end": 1756.64, + "probability": 1.0 + }, + { + "word": " with", + "start": 1756.64, + "end": 1756.9, + "probability": 1.0 + }, + { + "word": " $15", + "start": 1756.9, + "end": 1757.16, + "probability": 0.99462890625 + }, + { + "word": " billion.", + "start": 1757.16, + "end": 1757.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 728, + "text": "You could buy an entire country.", + "start": 1757.92, + "end": 1759.36, + "words": [ + { + "word": " You", + "start": 1757.92, + "end": 1758.08, + "probability": 1.0 + }, + { + "word": " could", + "start": 1758.08, + "end": 1758.24, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1758.24, + "end": 1758.52, + "probability": 1.0 + }, + { + "word": " an", + "start": 1758.52, + "end": 1758.68, + "probability": 1.0 + }, + { + "word": " entire", + "start": 1758.68, + "end": 1758.92, + "probability": 1.0 + }, + { + "word": " country.", + "start": 1758.92, + "end": 1759.36, + "probability": 1.0 + } + ] + }, + { + "id": 729, + "text": "Yes.", + "start": 1759.7, + "end": 1760.14, + "words": [ + { + "word": " Yes.", + "start": 1759.7, + "end": 1760.14, + "probability": 0.98974609375 + } + ] + }, + { + "id": 730, + "text": "All right.", + "start": 1760.14, + "end": 1760.2, + "words": [ + { + "word": " All", + "start": 1760.14, + "end": 1760.18, + "probability": 0.461669921875 + }, + { + "word": " right.", + "start": 1760.18, + "end": 1760.2, + "probability": 1.0 + } + ] + }, + { + "id": 731, + "text": "For $15 billion.", + "start": 1760.26, + "end": 1761.24, + "words": [ + { + "word": " For", + "start": 1760.26, + "end": 1760.48, + "probability": 0.9990234375 + }, + { + "word": " $15", + "start": 1760.48, + "end": 1760.96, + "probability": 1.0 + }, + { + "word": " billion.", + "start": 1760.96, + "end": 1761.24, + "probability": 1.0 + } + ] + }, + { + "id": 732, + "text": "There's a list that all the things that you could buy for $15 billion.", + "start": 1762.22, + "end": 1765.74, + "words": [ + { + "word": " There's", + "start": 1762.22, + "end": 1762.66, + "probability": 0.93310546875 + }, + { + "word": " a", + "start": 1762.66, + "end": 1762.82, + "probability": 1.0 + }, + { + "word": " list", + "start": 1762.82, + "end": 1763.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1763.14, + "end": 1763.38, + "probability": 0.92529296875 + }, + { + "word": " all", + "start": 1763.38, + "end": 1763.78, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 1763.78, + "end": 1763.92, + "probability": 1.0 + }, + { + "word": " things", + "start": 1763.92, + "end": 1764.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1764.14, + "end": 1764.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1764.32, + "end": 1764.42, + "probability": 1.0 + }, + { + "word": " could", + "start": 1764.42, + "end": 1764.52, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1764.52, + "end": 1764.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 1764.74, + "end": 1764.96, + "probability": 0.99951171875 + }, + { + "word": " $15", + "start": 1764.96, + "end": 1765.38, + "probability": 0.98193359375 + }, + { + "word": " billion.", + "start": 1765.38, + "end": 1765.74, + "probability": 1.0 + } + ] + }, + { + "id": 733, + "text": "You could effectively end world hunger for $15 billion.", + "start": 1765.76, + "end": 1769.76, + "words": [ + { + "word": " You", + "start": 1765.76, + "end": 1765.94, + "probability": 0.77001953125 + }, + { + "word": " could", + "start": 1765.94, + "end": 1766.06, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 1766.06, + "end": 1767.22, + "probability": 0.99560546875 + }, + { + "word": " end", + "start": 1767.22, + "end": 1767.6, + "probability": 1.0 + }, + { + "word": " world", + "start": 1767.6, + "end": 1767.8, + "probability": 0.9921875 + }, + { + "word": " hunger", + "start": 1767.8, + "end": 1768.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 1768.12, + "end": 1768.82, + "probability": 0.89697265625 + }, + { + "word": " $15", + "start": 1768.82, + "end": 1769.46, + "probability": 1.0 + }, + { + "word": " billion.", + "start": 1769.46, + "end": 1769.76, + "probability": 1.0 + } + ] + }, + { + "id": 734, + "text": "And they paid that for a software that they're not even going to use.", + "start": 1770.56, + "end": 1773.58, + "words": [ + { + "word": " And", + "start": 1770.56, + "end": 1771.0, + "probability": 0.94970703125 + }, + { + "word": " they", + "start": 1771.0, + "end": 1771.24, + "probability": 1.0 + }, + { + "word": " paid", + "start": 1771.24, + "end": 1771.48, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1771.48, + "end": 1771.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 1771.64, + "end": 1771.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 1771.86, + "end": 1771.98, + "probability": 1.0 + }, + { + "word": " software", + "start": 1771.98, + "end": 1772.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 1772.3, + "end": 1772.5, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1772.5, + "end": 1772.66, + "probability": 1.0 + }, + { + "word": " not", + "start": 1772.66, + "end": 1772.82, + "probability": 1.0 + }, + { + "word": " even", + "start": 1772.82, + "end": 1773.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 1773.0, + "end": 1773.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 1773.18, + "end": 1773.32, + "probability": 1.0 + }, + { + "word": " use.", + "start": 1773.32, + "end": 1773.58, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "That's ridiculous.", + "start": 1773.74, + "end": 1774.56, + "words": [ + { + "word": " That's", + "start": 1773.74, + "end": 1774.18, + "probability": 0.9775390625 + }, + { + "word": " ridiculous.", + "start": 1774.18, + "end": 1774.56, + "probability": 1.0 + } + ] + }, + { + "id": 736, + "text": "All right.", + "start": 1775.0, + "end": 1775.56, + "words": [ + { + "word": " All", + "start": 1775.0, + "end": 1775.44, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 1775.44, + "end": 1775.56, + "probability": 1.0 + } + ] + }, + { + "id": 737, + "text": "Now, hey, whatever.", + "start": 1775.6, + "end": 1776.72, + "words": [ + { + "word": " Now,", + "start": 1775.6, + "end": 1775.94, + "probability": 0.99853515625 + }, + { + "word": " hey,", + "start": 1776.06, + "end": 1776.34, + "probability": 0.99853515625 + }, + { + "word": " whatever.", + "start": 1776.46, + "end": 1776.72, + "probability": 1.0 + } + ] + }, + { + "id": 738, + "text": "It's their money.", + "start": 1776.94, + "end": 1777.7, + "words": [ + { + "word": " It's", + "start": 1776.94, + "end": 1777.38, + "probability": 1.0 + }, + { + "word": " their", + "start": 1777.38, + "end": 1777.46, + "probability": 1.0 + }, + { + "word": " money.", + "start": 1777.46, + "end": 1777.7, + "probability": 1.0 + } + ] + }, + { + "id": 739, + "text": "It's their money.", + "start": 1777.7, + "end": 1777.8, + "words": [ + { + "word": " It's", + "start": 1777.7, + "end": 1777.8, + "probability": 0.4287109375 + }, + { + "word": " their", + "start": 1777.8, + "end": 1777.8, + "probability": 0.0102386474609375 + }, + { + "word": " money.", + "start": 1777.8, + "end": 1777.8, + "probability": 0.12261962890625 + } + ] + }, + { + "id": 740, + "text": "Do what they want with it.", + "start": 1777.8, + "end": 1778.52, + "words": [ + { + "word": " Do", + "start": 1777.8, + "end": 1777.88, + "probability": 0.95458984375 + }, + { + "word": " what", + "start": 1777.88, + "end": 1778.0, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1778.0, + "end": 1778.08, + "probability": 1.0 + }, + { + "word": " want", + "start": 1778.08, + "end": 1778.28, + "probability": 1.0 + }, + { + "word": " with", + "start": 1778.28, + "end": 1778.46, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1778.46, + "end": 1778.52, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "Yeah.", + "start": 1778.54, + "end": 1778.66, + "words": [ + { + "word": " Yeah.", + "start": 1778.54, + "end": 1778.66, + "probability": 0.30078125 + } + ] + }, + { + "id": 742, + "text": "But now there's a lawsuit.", + "start": 1778.66, + "end": 1780.42, + "words": [ + { + "word": " But", + "start": 1778.66, + "end": 1779.06, + "probability": 0.9951171875 + }, + { + "word": " now", + "start": 1779.06, + "end": 1779.78, + "probability": 0.94580078125 + }, + { + "word": " there's", + "start": 1779.78, + "end": 1780.06, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 1780.06, + "end": 1780.12, + "probability": 1.0 + }, + { + "word": " lawsuit.", + "start": 1780.12, + "end": 1780.42, + "probability": 1.0 + } + ] + }, + { + "id": 743, + "text": "Yeah.", + "start": 1780.78, + "end": 1781.2, + "words": [ + { + "word": " Yeah.", + "start": 1780.78, + "end": 1781.2, + "probability": 0.99658203125 + } + ] + }, + { + "id": 744, + "text": "Right.", + "start": 1781.42, + "end": 1781.94, + "words": [ + { + "word": " Right.", + "start": 1781.42, + "end": 1781.94, + "probability": 0.998046875 + } + ] + }, + { + "id": 745, + "text": "Because WhatsApp is all about, hey, we don't track anything.", + "start": 1782.0, + "end": 1785.16, + "words": [ + { + "word": " Because", + "start": 1782.0, + "end": 1782.26, + "probability": 0.99853515625 + }, + { + "word": " WhatsApp", + "start": 1782.26, + "end": 1782.52, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1782.52, + "end": 1782.78, + "probability": 1.0 + }, + { + "word": " all", + "start": 1782.78, + "end": 1782.9, + "probability": 1.0 + }, + { + "word": " about,", + "start": 1782.9, + "end": 1783.18, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 1783.4, + "end": 1783.54, + "probability": 0.9921875 + }, + { + "word": " we", + "start": 1783.72, + "end": 1784.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1784.2, + "end": 1784.62, + "probability": 1.0 + }, + { + "word": " track", + "start": 1784.62, + "end": 1784.8, + "probability": 1.0 + }, + { + "word": " anything.", + "start": 1784.8, + "end": 1785.16, + "probability": 1.0 + } + ] + }, + { + "id": 746, + "text": "Right.", + "start": 1785.44, + "end": 1785.68, + "words": [ + { + "word": " Right.", + "start": 1785.44, + "end": 1785.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 747, + "text": "They're very big on public security and not anonymity.", + "start": 1785.78, + "end": 1790.32, + "words": [ + { + "word": " They're", + "start": 1785.78, + "end": 1786.12, + "probability": 0.9990234375 + }, + { + "word": " very", + "start": 1786.12, + "end": 1786.32, + "probability": 1.0 + }, + { + "word": " big", + "start": 1786.32, + "end": 1786.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 1786.58, + "end": 1786.88, + "probability": 1.0 + }, + { + "word": " public", + "start": 1786.88, + "end": 1787.62, + "probability": 0.56201171875 + }, + { + "word": " security", + "start": 1787.62, + "end": 1788.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 1788.54, + "end": 1788.96, + "probability": 0.9921875 + }, + { + "word": " not", + "start": 1788.96, + "end": 1789.4, + "probability": 0.7626953125 + }, + { + "word": " anonymity.", + "start": 1789.4, + "end": 1790.32, + "probability": 0.85400390625 + } + ] + }, + { + "id": 748, + "text": "They're anti-NSA.", + "start": 1790.4, + "end": 1791.92, + "words": [ + { + "word": " They're", + "start": 1790.4, + "end": 1790.92, + "probability": 0.9853515625 + }, + { + "word": " anti", + "start": 1790.92, + "end": 1791.36, + "probability": 1.0 + }, + { + "word": "-NSA.", + "start": 1791.36, + "end": 1791.92, + "probability": 0.99609375 + } + ] + }, + { + "id": 749, + "text": "Yeah.", + "start": 1792.1, + "end": 1792.4, + "words": [ + { + "word": " Yeah.", + "start": 1792.1, + "end": 1792.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 750, + "text": "All right.", + "start": 1792.44, + "end": 1792.78, + "words": [ + { + "word": " All", + "start": 1792.44, + "end": 1792.64, + "probability": 0.5810546875 + }, + { + "word": " right.", + "start": 1792.64, + "end": 1792.78, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "And Facebook is definitely not that.", + "start": 1792.84, + "end": 1794.7, + "words": [ + { + "word": " And", + "start": 1792.84, + "end": 1793.02, + "probability": 0.9970703125 + }, + { + "word": " Facebook", + "start": 1793.02, + "end": 1793.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 1793.54, + "end": 1793.78, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 1793.78, + "end": 1794.0, + "probability": 1.0 + }, + { + "word": " not", + "start": 1794.0, + "end": 1794.38, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1794.38, + "end": 1794.7, + "probability": 1.0 + } + ] + }, + { + "id": 752, + "text": "Right.", + "start": 1794.9, + "end": 1795.32, + "words": [ + { + "word": " Right.", + "start": 1794.9, + "end": 1795.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 753, + "text": "So the Electronic Privacy Information Center, they actually put out an injunction complaint", + "start": 1795.44, + "end": 1802.1, + "words": [ + { + "word": " So", + "start": 1795.44, + "end": 1795.86, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 1795.86, + "end": 1796.06, + "probability": 0.88525390625 + }, + { + "word": " Electronic", + "start": 1796.06, + "end": 1796.36, + "probability": 0.94775390625 + }, + { + "word": " Privacy", + "start": 1796.36, + "end": 1797.16, + "probability": 1.0 + }, + { + "word": " Information", + "start": 1797.16, + "end": 1797.7, + "probability": 1.0 + }, + { + "word": " Center,", + "start": 1797.7, + "end": 1799.1, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1799.26, + "end": 1799.48, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1799.48, + "end": 1799.78, + "probability": 1.0 + }, + { + "word": " put", + "start": 1799.78, + "end": 1800.02, + "probability": 1.0 + }, + { + "word": " out", + "start": 1800.02, + "end": 1800.2, + "probability": 1.0 + }, + { + "word": " an", + "start": 1800.2, + "end": 1800.46, + "probability": 0.865234375 + }, + { + "word": " injunction", + "start": 1800.46, + "end": 1801.66, + "probability": 1.0 + }, + { + "word": " complaint", + "start": 1801.66, + "end": 1802.1, + "probability": 1.0 + } + ] + }, + { + "id": 754, + "text": "to the Federal Trade Commission.", + "start": 1802.1, + "end": 1806.12, + "words": [ + { + "word": " to", + "start": 1802.1, + "end": 1802.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1802.96, + "end": 1803.28, + "probability": 1.0 + }, + { + "word": " Federal", + "start": 1803.28, + "end": 1805.42, + "probability": 0.99951171875 + }, + { + "word": " Trade", + "start": 1805.42, + "end": 1805.74, + "probability": 1.0 + }, + { + "word": " Commission.", + "start": 1805.74, + "end": 1806.12, + "probability": 1.0 + } + ] + }, + { + "id": 755, + "text": "So we'll see.", + "start": 1806.38, + "end": 1807.52, + "words": [ + { + "word": " So", + "start": 1806.38, + "end": 1806.84, + "probability": 0.71728515625 + }, + { + "word": " we'll", + "start": 1806.84, + "end": 1807.36, + "probability": 0.98876953125 + }, + { + "word": " see.", + "start": 1807.36, + "end": 1807.52, + "probability": 1.0 + } + ] + }, + { + "id": 756, + "text": "We'll see how that turns out for them.", + "start": 1807.7, + "end": 1809.36, + "words": [ + { + "word": " We'll", + "start": 1807.7, + "end": 1807.72, + "probability": 0.365234375 + }, + { + "word": " see", + "start": 1807.72, + "end": 1807.72, + "probability": 0.82275390625 + }, + { + "word": " how", + "start": 1807.72, + "end": 1807.72, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 1807.72, + "end": 1807.94, + "probability": 0.998046875 + }, + { + "word": " turns", + "start": 1807.94, + "end": 1808.68, + "probability": 0.99609375 + }, + { + "word": " out", + "start": 1808.68, + "end": 1808.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 1808.96, + "end": 1809.14, + "probability": 0.99658203125 + }, + { + "word": " them.", + "start": 1809.14, + "end": 1809.36, + "probability": 1.0 + } + ] + }, + { + "id": 757, + "text": "I kind of hope that it works out.", + "start": 1809.44, + "end": 1811.66, + "words": [ + { + "word": " I", + "start": 1809.44, + "end": 1809.74, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 1809.74, + "end": 1810.2, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 1810.2, + "end": 1810.36, + "probability": 1.0 + }, + { + "word": " hope", + "start": 1810.36, + "end": 1810.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1810.6, + "end": 1811.46, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 1811.46, + "end": 1811.54, + "probability": 1.0 + }, + { + "word": " works", + "start": 1811.54, + "end": 1811.66, + "probability": 0.99609375 + }, + { + "word": " out.", + "start": 1811.66, + "end": 1811.66, + "probability": 0.99462890625 + } + ] + }, + { + "id": 758, + "text": "Well, it's going to stall.", + "start": 1811.66, + "end": 1812.32, + "words": [ + { + "word": " Well,", + "start": 1811.66, + "end": 1811.76, + "probability": 0.86572265625 + }, + { + "word": " it's", + "start": 1811.76, + "end": 1812.0, + "probability": 0.94873046875 + }, + { + "word": " going", + "start": 1812.0, + "end": 1812.0, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1812.0, + "end": 1812.08, + "probability": 1.0 + }, + { + "word": " stall.", + "start": 1812.08, + "end": 1812.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 759, + "text": "I don't think it's going to stop anything.", + "start": 1812.32, + "end": 1813.34, + "words": [ + { + "word": " I", + "start": 1812.32, + "end": 1812.56, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1812.56, + "end": 1812.6, + "probability": 1.0 + }, + { + "word": " think", + "start": 1812.6, + "end": 1812.7, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1812.7, + "end": 1812.82, + "probability": 1.0 + }, + { + "word": " going", + "start": 1812.82, + "end": 1812.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1812.9, + "end": 1812.94, + "probability": 1.0 + }, + { + "word": " stop", + "start": 1812.94, + "end": 1813.14, + "probability": 0.99853515625 + }, + { + "word": " anything.", + "start": 1813.14, + "end": 1813.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 760, + "text": "No.", + "start": 1813.48, + "end": 1813.6, + "words": [ + { + "word": " No.", + "start": 1813.48, + "end": 1813.6, + "probability": 0.548828125 + } + ] + }, + { + "id": 761, + "text": "But it's going to stall it out for a minute.", + "start": 1813.6, + "end": 1814.62, + "words": [ + { + "word": " But", + "start": 1813.6, + "end": 1813.6, + "probability": 0.78759765625 + }, + { + "word": " it's", + "start": 1813.6, + "end": 1813.7, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 1813.7, + "end": 1813.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1813.76, + "end": 1813.84, + "probability": 1.0 + }, + { + "word": " stall", + "start": 1813.84, + "end": 1814.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 1814.04, + "end": 1814.16, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 1814.16, + "end": 1814.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 1814.28, + "end": 1814.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 1814.4, + "end": 1814.48, + "probability": 1.0 + }, + { + "word": " minute.", + "start": 1814.48, + "end": 1814.62, + "probability": 1.0 + } + ] + }, + { + "id": 762, + "text": "Let's talk to Suzanne.", + "start": 1815.96, + "end": 1816.72, + "words": [ + { + "word": " Let's", + "start": 1815.96, + "end": 1816.28, + "probability": 0.99853515625 + }, + { + "word": " talk", + "start": 1816.28, + "end": 1816.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1816.42, + "end": 1816.54, + "probability": 1.0 + }, + { + "word": " Suzanne.", + "start": 1816.54, + "end": 1816.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 763, + "text": "Hey, Suzanne.", + "start": 1816.9, + "end": 1817.32, + "words": [ + { + "word": " Hey,", + "start": 1816.9, + "end": 1817.1, + "probability": 0.99609375 + }, + { + "word": " Suzanne.", + "start": 1817.14, + "end": 1817.32, + "probability": 1.0 + } + ] + }, + { + "id": 764, + "text": "How are you?", + "start": 1817.42, + "end": 1817.74, + "words": [ + { + "word": " How", + "start": 1817.42, + "end": 1817.52, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 1817.52, + "end": 1817.62, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1817.62, + "end": 1817.74, + "probability": 1.0 + } + ] + }, + { + "id": 765, + "text": "I'm good.", + "start": 1818.16, + "end": 1818.66, + "words": [ + { + "word": " I'm", + "start": 1818.16, + "end": 1818.48, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 1818.48, + "end": 1818.66, + "probability": 1.0 + } + ] + }, + { + "id": 766, + "text": "Thank you.", + "start": 1818.7, + "end": 1819.06, + "words": [ + { + "word": " Thank", + "start": 1818.7, + "end": 1818.86, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 1818.86, + "end": 1819.06, + "probability": 1.0 + } + ] + }, + { + "id": 767, + "text": "What can I do for you?", + "start": 1819.22, + "end": 1820.08, + "words": [ + { + "word": " What", + "start": 1819.22, + "end": 1819.54, + "probability": 0.9970703125 + }, + { + "word": " can", + "start": 1819.54, + "end": 1819.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 1819.66, + "end": 1819.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 1819.74, + "end": 1819.84, + "probability": 1.0 + }, + { + "word": " for", + "start": 1819.84, + "end": 1819.96, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1819.96, + "end": 1820.08, + "probability": 1.0 + } + ] + }, + { + "id": 768, + "text": "I have an app that's on my computer that I did not install, and I cannot find any way", + "start": 1820.5800000000002, + "end": 1826.8, + "words": [ + { + "word": " I", + "start": 1820.5800000000002, + "end": 1820.9, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1820.9, + "end": 1821.22, + "probability": 1.0 + }, + { + "word": " an", + "start": 1821.22, + "end": 1821.98, + "probability": 0.99658203125 + }, + { + "word": " app", + "start": 1821.98, + "end": 1822.66, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1822.66, + "end": 1822.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 1822.98, + "end": 1823.12, + "probability": 1.0 + }, + { + "word": " my", + "start": 1823.12, + "end": 1823.38, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1823.38, + "end": 1823.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 1823.84, + "end": 1824.18, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1824.18, + "end": 1824.32, + "probability": 1.0 + }, + { + "word": " did", + "start": 1824.32, + "end": 1824.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 1824.5, + "end": 1824.66, + "probability": 1.0 + }, + { + "word": " install,", + "start": 1824.66, + "end": 1825.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 1825.34, + "end": 1825.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 1825.5, + "end": 1825.6, + "probability": 1.0 + }, + { + "word": " cannot", + "start": 1825.6, + "end": 1825.98, + "probability": 1.0 + }, + { + "word": " find", + "start": 1825.98, + "end": 1826.34, + "probability": 1.0 + }, + { + "word": " any", + "start": 1826.34, + "end": 1826.64, + "probability": 1.0 + }, + { + "word": " way", + "start": 1826.64, + "end": 1826.8, + "probability": 1.0 + } + ] + }, + { + "id": 769, + "text": "to delete it.", + "start": 1826.8, + "end": 1827.46, + "words": [ + { + "word": " to", + "start": 1826.8, + "end": 1826.94, + "probability": 1.0 + }, + { + "word": " delete", + "start": 1826.94, + "end": 1827.22, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1827.22, + "end": 1827.46, + "probability": 1.0 + } + ] + }, + { + "id": 770, + "text": "What is this app?", + "start": 1827.68, + "end": 1828.52, + "words": [ + { + "word": " What", + "start": 1827.68, + "end": 1828.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 1828.0, + "end": 1828.16, + "probability": 1.0 + }, + { + "word": " this", + "start": 1828.16, + "end": 1828.32, + "probability": 1.0 + }, + { + "word": " app?", + "start": 1828.32, + "end": 1828.52, + "probability": 1.0 + } + ] + }, + { + "id": 771, + "text": "Zcom underscore ad.", + "start": 1829.92, + "end": 1831.2, + "words": [ + { + "word": " Zcom", + "start": 1829.92, + "end": 1830.24, + "probability": 0.79296875 + }, + { + "word": " underscore", + "start": 1830.24, + "end": 1830.56, + "probability": 0.92919921875 + }, + { + "word": " ad.", + "start": 1830.56, + "end": 1831.2, + "probability": 0.505859375 + } + ] + }, + { + "id": 772, + "text": "Zcom?", + "start": 1833.04, + "end": 1833.36, + "words": [ + { + "word": " Zcom?", + "start": 1833.04, + "end": 1833.36, + "probability": 0.7607421875 + } + ] + }, + { + "id": 773, + "text": "I don't know what that is.", + "start": 1833.72, + "end": 1834.56, + "words": [ + { + "word": " I", + "start": 1833.72, + "end": 1834.04, + "probability": 0.9658203125 + }, + { + "word": " don't", + "start": 1834.04, + "end": 1834.2, + "probability": 1.0 + }, + { + "word": " know", + "start": 1834.2, + "end": 1834.3, + "probability": 1.0 + }, + { + "word": " what", + "start": 1834.3, + "end": 1834.38, + "probability": 0.9853515625 + }, + { + "word": " that", + "start": 1834.38, + "end": 1834.54, + "probability": 0.9990234375 + }, + { + "word": " is.", + "start": 1834.54, + "end": 1834.56, + "probability": 0.99072265625 + } + ] + }, + { + "id": 774, + "text": "Z is in zebra.", + "start": 1834.56, + "end": 1835.34, + "words": [ + { + "word": " Z", + "start": 1834.56, + "end": 1834.76, + "probability": 0.9619140625 + }, + { + "word": " is", + "start": 1834.76, + "end": 1834.92, + "probability": 0.55712890625 + }, + { + "word": " in", + "start": 1834.92, + "end": 1835.08, + "probability": 0.99853515625 + }, + { + "word": " zebra.", + "start": 1835.08, + "end": 1835.34, + "probability": 0.8916015625 + } + ] + }, + { + "id": 775, + "text": "Oh, Zcom.", + "start": 1835.8400000000001, + "end": 1836.48, + "words": [ + { + "word": " Oh,", + "start": 1835.8400000000001, + "end": 1836.16, + "probability": 0.99365234375 + }, + { + "word": " Zcom.", + "start": 1836.16, + "end": 1836.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 776, + "text": "Zcom.", + "start": 1837.16, + "end": 1837.48, + "words": [ + { + "word": " Zcom.", + "start": 1837.16, + "end": 1837.48, + "probability": 0.496337890625 + } + ] + }, + { + "id": 777, + "text": "", + "start": 1837.48, + "end": 1837.48, + "words": [] + }, + { + "id": 778, + "text": "Zcom.", + "start": 1837.52, + "end": 1837.66, + "words": [ + { + "word": " Zcom.", + "start": 1837.52, + "end": 1837.66, + "probability": 0.822265625 + } + ] + }, + { + "id": 779, + "text": "", + "start": 1837.68, + "end": 1837.68, + "words": [] + }, + { + "id": 780, + "text": "", + "start": 1837.68, + "end": 1837.68, + "words": [] + }, + { + "id": 781, + "text": "", + "start": 1837.68, + "end": 1837.68, + "words": [] + }, + { + "id": 782, + "text": "", + "start": 1837.68, + "end": 1837.68, + "words": [] + }, + { + "id": 783, + "text": "", + "start": 1837.68, + "end": 1837.68, + "words": [] + }, + { + "id": 784, + "text": "", + "start": 1837.68, + "end": 1837.68, + "words": [] + }, + { + "id": 785, + "text": "Zcom doesn't help me.", + "start": 1837.68, + "end": 1837.96, + "words": [ + { + "word": " Zcom", + "start": 1837.68, + "end": 1837.72, + "probability": 9.5367431640625e-06 + }, + { + "word": " doesn't", + "start": 1837.72, + "end": 1837.72, + "probability": 0.51171875 + }, + { + "word": " help", + "start": 1837.72, + "end": 1837.84, + "probability": 0.958984375 + }, + { + "word": " me.", + "start": 1837.84, + "end": 1837.96, + "probability": 0.99365234375 + } + ] + }, + { + "id": 786, + "text": "I don't even know what that one is.", + "start": 1838.0, + "end": 1839.38, + "words": [ + { + "word": " I", + "start": 1838.0, + "end": 1838.1, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 1838.1, + "end": 1838.64, + "probability": 0.9931640625 + }, + { + "word": " even", + "start": 1838.64, + "end": 1838.78, + "probability": 0.99560546875 + }, + { + "word": " know", + "start": 1838.78, + "end": 1838.92, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 1838.92, + "end": 1839.0, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 1839.0, + "end": 1839.1, + "probability": 0.99755859375 + }, + { + "word": " one", + "start": 1839.1, + "end": 1839.22, + "probability": 0.99755859375 + }, + { + "word": " is.", + "start": 1839.22, + "end": 1839.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 787, + "text": "So where are you seeing it?", + "start": 1839.56, + "end": 1841.78, + "words": [ + { + "word": " So", + "start": 1839.56, + "end": 1839.96, + "probability": 0.67919921875 + }, + { + "word": " where", + "start": 1839.96, + "end": 1841.06, + "probability": 0.7666015625 + }, + { + "word": " are", + "start": 1841.06, + "end": 1841.22, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1841.22, + "end": 1841.32, + "probability": 0.99951171875 + }, + { + "word": " seeing", + "start": 1841.32, + "end": 1841.6, + "probability": 0.99951171875 + }, + { + "word": " it?", + "start": 1841.6, + "end": 1841.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 788, + "text": "When I shut down my computer, it says your computer's not shutting down because this", + "start": 1842.08, + "end": 1846.8, + "words": [ + { + "word": " When", + "start": 1842.08, + "end": 1842.36, + "probability": 0.91015625 + }, + { + "word": " I", + "start": 1842.36, + "end": 1842.48, + "probability": 0.99951171875 + }, + { + "word": " shut", + "start": 1842.48, + "end": 1842.66, + "probability": 0.98828125 + }, + { + "word": " down", + "start": 1842.66, + "end": 1842.84, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1842.84, + "end": 1843.0, + "probability": 0.9990234375 + }, + { + "word": " computer,", + "start": 1843.0, + "end": 1843.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 1843.66, + "end": 1844.18, + "probability": 0.99560546875 + }, + { + "word": " says", + "start": 1844.18, + "end": 1844.42, + "probability": 0.98974609375 + }, + { + "word": " your", + "start": 1844.42, + "end": 1844.62, + "probability": 0.95361328125 + }, + { + "word": " computer's", + "start": 1844.62, + "end": 1845.54, + "probability": 0.85546875 + }, + { + "word": " not", + "start": 1845.54, + "end": 1845.62, + "probability": 0.99951171875 + }, + { + "word": " shutting", + "start": 1845.62, + "end": 1845.88, + "probability": 1.0 + }, + { + "word": " down", + "start": 1845.88, + "end": 1846.12, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1846.12, + "end": 1846.42, + "probability": 0.98193359375 + }, + { + "word": " this", + "start": 1846.42, + "end": 1846.8, + "probability": 0.998046875 + } + ] + }, + { + "id": 789, + "text": "app is still running.", + "start": 1846.8, + "end": 1847.68, + "words": [ + { + "word": " app", + "start": 1846.8, + "end": 1847.0, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1847.0, + "end": 1847.18, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 1847.18, + "end": 1847.4, + "probability": 1.0 + }, + { + "word": " running.", + "start": 1847.4, + "end": 1847.68, + "probability": 1.0 + } + ] + }, + { + "id": 790, + "text": "What version of Windows do you have?", + "start": 1847.9, + "end": 1849.0, + "words": [ + { + "word": " What", + "start": 1847.9, + "end": 1848.1, + "probability": 0.9970703125 + }, + { + "word": " version", + "start": 1848.1, + "end": 1848.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 1848.34, + "end": 1848.46, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 1848.46, + "end": 1848.62, + "probability": 0.99755859375 + }, + { + "word": " do", + "start": 1848.62, + "end": 1848.78, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1848.78, + "end": 1848.88, + "probability": 1.0 + }, + { + "word": " have?", + "start": 1848.88, + "end": 1849.0, + "probability": 1.0 + } + ] + }, + { + "id": 791, + "text": "Windows 8.", + "start": 1849.32, + "end": 1849.98, + "words": [ + { + "word": " Windows", + "start": 1849.32, + "end": 1849.72, + "probability": 0.9990234375 + }, + { + "word": " 8.", + "start": 1849.72, + "end": 1849.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 792, + "text": "You have 8?", + "start": 1850.38, + "end": 1851.06, + "words": [ + { + "word": " You", + "start": 1850.38, + "end": 1850.78, + "probability": 0.99267578125 + }, + { + "word": " have", + "start": 1850.78, + "end": 1850.92, + "probability": 1.0 + }, + { + "word": " 8?", + "start": 1850.92, + "end": 1851.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 793, + "text": "Okay.", + "start": 1851.22, + "end": 1851.5, + "words": [ + { + "word": " Okay.", + "start": 1851.22, + "end": 1851.5, + "probability": 0.94482421875 + } + ] + }, + { + "id": 794, + "text": "All right.", + "start": 1852.32, + "end": 1852.9, + "words": [ + { + "word": " All", + "start": 1852.32, + "end": 1852.72, + "probability": 0.9580078125 + }, + { + "word": " right.", + "start": 1852.72, + "end": 1852.9, + "probability": 1.0 + } + ] + }, + { + "id": 795, + "text": "So let's see.", + "start": 1852.94, + "end": 1853.86, + "words": [ + { + "word": " So", + "start": 1852.94, + "end": 1853.16, + "probability": 0.984375 + }, + { + "word": " let's", + "start": 1853.16, + "end": 1853.74, + "probability": 0.9833984375 + }, + { + "word": " see.", + "start": 1853.74, + "end": 1853.86, + "probability": 1.0 + } + ] + }, + { + "id": 796, + "text": "Easy ways to at least get the larger or more prevalent items out of the way.", + "start": 1853.94, + "end": 1861.1, + "words": [ + { + "word": " Easy", + "start": 1853.94, + "end": 1854.32, + "probability": 0.99658203125 + }, + { + "word": " ways", + "start": 1854.32, + "end": 1854.66, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1854.66, + "end": 1854.86, + "probability": 1.0 + }, + { + "word": " at", + "start": 1854.86, + "end": 1854.96, + "probability": 1.0 + }, + { + "word": " least", + "start": 1854.96, + "end": 1855.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 1855.26, + "end": 1855.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1855.94, + "end": 1856.24, + "probability": 1.0 + }, + { + "word": " larger", + "start": 1856.24, + "end": 1857.38, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 1857.38, + "end": 1859.44, + "probability": 1.0 + }, + { + "word": " more", + "start": 1859.44, + "end": 1859.7, + "probability": 1.0 + }, + { + "word": " prevalent", + "start": 1859.7, + "end": 1860.1, + "probability": 0.99853515625 + }, + { + "word": " items", + "start": 1860.1, + "end": 1860.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 1860.48, + "end": 1860.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 1860.7, + "end": 1860.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1860.78, + "end": 1860.86, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1860.86, + "end": 1861.1, + "probability": 1.0 + } + ] + }, + { + "id": 797, + "text": "And by the way, if you're sort of a do-it-yourselfer and you want to check stuff out and try to", + "start": 1861.4, + "end": 1866.84, + "words": [ + { + "word": " And", + "start": 1861.4, + "end": 1861.8, + "probability": 0.72119140625 + }, + { + "word": " by", + "start": 1861.8, + "end": 1862.24, + "probability": 0.810546875 + }, + { + "word": " the", + "start": 1862.24, + "end": 1862.4, + "probability": 1.0 + }, + { + "word": " way,", + "start": 1862.4, + "end": 1862.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 1862.52, + "end": 1862.62, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1862.62, + "end": 1862.74, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1862.74, + "end": 1862.92, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1862.92, + "end": 1863.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1863.0, + "end": 1863.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 1863.1, + "end": 1863.26, + "probability": 1.0 + }, + { + "word": "-it", + "start": 1863.26, + "end": 1863.4, + "probability": 0.99951171875 + }, + { + "word": "-yourselfer", + "start": 1863.4, + "end": 1863.84, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1863.84, + "end": 1863.98, + "probability": 0.982421875 + }, + { + "word": " you", + "start": 1863.98, + "end": 1864.08, + "probability": 1.0 + }, + { + "word": " want", + "start": 1864.08, + "end": 1864.24, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1864.24, + "end": 1864.36, + "probability": 1.0 + }, + { + "word": " check", + "start": 1864.36, + "end": 1864.8, + "probability": 0.47998046875 + }, + { + "word": " stuff", + "start": 1864.8, + "end": 1865.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 1865.1, + "end": 1865.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 1865.44, + "end": 1865.74, + "probability": 0.9208984375 + }, + { + "word": " try", + "start": 1865.74, + "end": 1866.64, + "probability": 0.9912109375 + }, + { + "word": " to", + "start": 1866.64, + "end": 1866.84, + "probability": 1.0 + } + ] + }, + { + "id": 798, + "text": "clean your stuff.", + "start": 1866.84, + "end": 1867.36, + "words": [ + { + "word": " clean", + "start": 1866.84, + "end": 1867.04, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1867.04, + "end": 1867.14, + "probability": 0.9677734375 + }, + { + "word": " stuff.", + "start": 1867.14, + "end": 1867.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 799, + "text": "OK.", + "start": 1867.72, + "end": 1868.04, + "words": [ + { + "word": " OK.", + "start": 1867.72, + "end": 1868.04, + "probability": 5.9604644775390625e-06 + } + ] + }, + { + "id": 800, + "text": "OK.", + "start": 1878.52, + "end": 1878.84, + "words": [ + { + "word": " OK.", + "start": 1878.52, + "end": 1878.84, + "probability": 0.048004150390625 + } + ] + }, + { + "id": 801, + "text": "OK.", + "start": 1879.0, + "end": 1879.06, + "words": [ + { + "word": " OK.", + "start": 1879.0, + "end": 1879.06, + "probability": 0.25341796875 + } + ] + }, + { + "id": 802, + "text": "", + "start": 1879.06, + "end": 1879.06, + "words": [] + }, + { + "id": 803, + "text": "", + "start": 1879.2, + "end": 1879.2, + "words": [] + }, + { + "id": 804, + "text": "OK.", + "start": 1880.76, + "end": 1881.08, + "words": [ + { + "word": " OK.", + "start": 1880.76, + "end": 1881.08, + "probability": 0.8447265625 + } + ] + }, + { + "id": 805, + "text": "OK.", + "start": 1881.42, + "end": 1881.74, + "words": [ + { + "word": " OK.", + "start": 1881.42, + "end": 1881.74, + "probability": 0.853515625 + } + ] + }, + { + "id": 806, + "text": "", + "start": 1881.82, + "end": 1881.82, + "words": [] + }, + { + "id": 807, + "text": "", + "start": 1883.16, + "end": 1883.16, + "words": [] + }, + { + "id": 808, + "text": "OK.", + "start": 1883.16, + "end": 1883.26, + "words": [ + { + "word": " OK.", + "start": 1883.16, + "end": 1883.26, + "probability": 0.86376953125 + } + ] + }, + { + "id": 809, + "text": "", + "start": 1883.38, + "end": 1883.38, + "words": [] + }, + { + "id": 810, + "text": "OK.", + "start": 1883.46, + "end": 1883.74, + "words": [ + { + "word": " OK.", + "start": 1883.46, + "end": 1883.74, + "probability": 0.8740234375 + } + ] + }, + { + "id": 811, + "text": "OK.", + "start": 1886.0, + "end": 1886.32, + "words": [ + { + "word": " OK.", + "start": 1886.0, + "end": 1886.32, + "probability": 0.88232421875 + } + ] + }, + { + "id": 812, + "text": "OK.", + "start": 1886.88, + "end": 1887.06, + "words": [ + { + "word": " OK.", + "start": 1886.88, + "end": 1887.06, + "probability": 0.888671875 + } + ] + }, + { + "id": 813, + "text": "OK.", + "start": 1887.66, + "end": 1887.98, + "words": [ + { + "word": " OK.", + "start": 1887.66, + "end": 1887.98, + "probability": 0.89453125 + } + ] + }, + { + "id": 814, + "text": "OK.", + "start": 1888.06, + "end": 1888.26, + "words": [ + { + "word": " OK.", + "start": 1888.06, + "end": 1888.26, + "probability": 0.9013671875 + } + ] + }, + { + "id": 815, + "text": "OK.", + "start": 1888.4, + "end": 1888.56, + "words": [ + { + "word": " OK.", + "start": 1888.4, + "end": 1888.56, + "probability": 0.90576171875 + } + ] + }, + { + "id": 816, + "text": "", + "start": 1888.56, + "end": 1888.56, + "words": [] + }, + { + "id": 817, + "text": "OK.", + "start": 1888.8, + "end": 1888.82, + "words": [ + { + "word": " OK.", + "start": 1888.8, + "end": 1888.82, + "probability": 0.91455078125 + } + ] + }, + { + "id": 818, + "text": "", + "start": 1889.08, + "end": 1889.08, + "words": [] + }, + { + "id": 819, + "text": "", + "start": 1889.08, + "end": 1889.08, + "words": [] + }, + { + "id": 820, + "text": "", + "start": 1889.08, + "end": 1889.08, + "words": [] + }, + { + "id": 821, + "text": "", + "start": 1889.16, + "end": 1889.16, + "words": [] + }, + { + "id": 822, + "text": "", + "start": 1889.16, + "end": 1889.16, + "words": [] + }, + { + "id": 823, + "text": "", + "start": 1889.16, + "end": 1889.16, + "words": [] + }, + { + "id": 824, + "text": "", + "start": 1889.16, + "end": 1889.16, + "words": [] + }, + { + "id": 825, + "text": "", + "start": 1889.22, + "end": 1889.22, + "words": [] + }, + { + "id": 826, + "text": "", + "start": 1889.24, + "end": 1889.24, + "words": [] + }, + { + "id": 827, + "text": "", + "start": 1889.24, + "end": 1889.24, + "words": [] + }, + { + "id": 828, + "text": "", + "start": 1889.24, + "end": 1889.24, + "words": [] + }, + { + "id": 829, + "text": "", + "start": 1889.24, + "end": 1889.24, + "words": [] + }, + { + "id": 830, + "text": "", + "start": 1889.24, + "end": 1889.24, + "words": [] + }, + { + "id": 831, + "text": "", + "start": 1889.24, + "end": 1889.24, + "words": [] + }, + { + "id": 832, + "text": "OK.", + "start": 1889.26, + "end": 1889.28, + "words": [ + { + "word": " OK.", + "start": 1889.26, + "end": 1889.28, + "probability": 0.939453125 + } + ] + }, + { + "id": 833, + "text": "", + "start": 1889.3, + "end": 1889.3, + "words": [] + }, + { + "id": 834, + "text": "OK.", + "start": 1889.32, + "end": 1889.34, + "words": [ + { + "word": " OK.", + "start": 1889.32, + "end": 1889.34, + "probability": 0.94091796875 + } + ] + }, + { + "id": 835, + "text": "OK.", + "start": 1889.36, + "end": 1889.38, + "words": [ + { + "word": " OK.", + "start": 1889.36, + "end": 1889.38, + "probability": 0.94091796875 + } + ] + }, + { + "id": 836, + "text": "OK.", + "start": 1889.38, + "end": 1889.4, + "words": [ + { + "word": " OK.", + "start": 1889.38, + "end": 1889.4, + "probability": 0.94140625 + } + ] + }, + { + "id": 837, + "text": "OK.", + "start": 1889.48, + "end": 1889.5, + "words": [ + { + "word": " OK.", + "start": 1889.48, + "end": 1889.5, + "probability": 0.94189453125 + } + ] + }, + { + "id": 838, + "text": "", + "start": 1889.52, + "end": 1889.52, + "words": [] + }, + { + "id": 839, + "text": "", + "start": 1889.54, + "end": 1889.54, + "words": [] + }, + { + "id": 840, + "text": "", + "start": 1889.56, + "end": 1889.56, + "words": [] + }, + { + "id": 841, + "text": "OK.", + "start": 1889.56, + "end": 1889.58, + "words": [ + { + "word": " OK.", + "start": 1889.56, + "end": 1889.58, + "probability": 0.943359375 + } + ] + }, + { + "id": 842, + "text": "", + "start": 1889.58, + "end": 1889.58, + "words": [] + }, + { + "id": 843, + "text": "", + "start": 1889.58, + "end": 1889.58, + "words": [] + }, + { + "id": 844, + "text": "", + "start": 1889.58, + "end": 1889.58, + "words": [] + }, + { + "id": 845, + "text": "OK.", + "start": 1890.04, + "end": 1890.36, + "words": [ + { + "word": " OK.", + "start": 1890.04, + "end": 1890.36, + "probability": 0.94482421875 + } + ] + }, + { + "id": 846, + "text": "OK.", + "start": 1891.04, + "end": 1891.32, + "words": [ + { + "word": " OK.", + "start": 1891.04, + "end": 1891.32, + "probability": 0.9453125 + } + ] + }, + { + "id": 847, + "text": "OK.", + "start": 1891.46, + "end": 1891.78, + "words": [ + { + "word": " OK.", + "start": 1891.46, + "end": 1891.78, + "probability": 0.94482421875 + } + ] + }, + { + "id": 848, + "text": "OK.", + "start": 1892.56, + "end": 1892.72, + "words": [ + { + "word": " OK.", + "start": 1892.56, + "end": 1892.72, + "probability": 0.94482421875 + } + ] + }, + { + "id": 849, + "text": "OK.", + "start": 1893.96, + "end": 1894.28, + "words": [ + { + "word": " OK.", + "start": 1893.96, + "end": 1894.28, + "probability": 0.94482421875 + } + ] + }, + { + "id": 850, + "text": "OK.", + "start": 1895.3, + "end": 1895.42, + "words": [ + { + "word": " OK.", + "start": 1895.3, + "end": 1895.42, + "probability": 0.9453125 + } + ] + }, + { + "id": 851, + "text": "OK.", + "start": 1895.54, + "end": 1895.8, + "words": [ + { + "word": " OK.", + "start": 1895.54, + "end": 1895.8, + "probability": 0.9453125 + } + ] + }, + { + "id": 852, + "text": "OK.", + "start": 1896.08, + "end": 1896.24, + "words": [ + { + "word": " OK.", + "start": 1896.08, + "end": 1896.24, + "probability": 0.9462890625 + } + ] + }, + { + "id": 853, + "text": "OK.", + "start": 1896.48, + "end": 1896.8, + "words": [ + { + "word": " OK.", + "start": 1896.48, + "end": 1896.8, + "probability": 0.94580078125 + } + ] + }, + { + "id": 854, + "text": "The built-in Windows one.", + "start": 1896.8, + "end": 1897.6, + "words": [ + { + "word": " The", + "start": 1896.8, + "end": 1896.88, + "probability": 0.982421875 + }, + { + "word": " built", + "start": 1896.88, + "end": 1897.04, + "probability": 0.99951171875 + }, + { + "word": "-in", + "start": 1897.04, + "end": 1897.18, + "probability": 0.994140625 + }, + { + "word": " Windows", + "start": 1897.18, + "end": 1897.38, + "probability": 0.9970703125 + }, + { + "word": " one.", + "start": 1897.38, + "end": 1897.6, + "probability": 0.98974609375 + } + ] + }, + { + "id": 855, + "text": "Okay.", + "start": 1897.76, + "end": 1898.12, + "words": [ + { + "word": " Okay.", + "start": 1897.76, + "end": 1898.12, + "probability": 0.95556640625 + } + ] + }, + { + "id": 856, + "text": "Perfect.", + "start": 1898.5400000000002, + "end": 1898.9, + "words": [ + { + "word": " Perfect.", + "start": 1898.5400000000002, + "end": 1898.9, + "probability": 0.9970703125 + } + ] + }, + { + "id": 857, + "text": "That's a good one.", + "start": 1899.3000000000002, + "end": 1899.96, + "words": [ + { + "word": " That's", + "start": 1899.3000000000002, + "end": 1899.66, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1899.66, + "end": 1899.7, + "probability": 0.99853515625 + }, + { + "word": " good", + "start": 1899.7, + "end": 1899.82, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1899.82, + "end": 1899.96, + "probability": 1.0 + } + ] + }, + { + "id": 858, + "text": "Is it the paid version or the free version of Malwarebytes?", + "start": 1899.98, + "end": 1902.3, + "words": [ + { + "word": " Is", + "start": 1899.98, + "end": 1900.08, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 1900.08, + "end": 1900.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 1900.16, + "end": 1900.3, + "probability": 1.0 + }, + { + "word": " paid", + "start": 1900.3, + "end": 1900.62, + "probability": 1.0 + }, + { + "word": " version", + "start": 1900.62, + "end": 1900.88, + "probability": 1.0 + }, + { + "word": " or", + "start": 1900.88, + "end": 1901.02, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 1901.02, + "end": 1901.1, + "probability": 1.0 + }, + { + "word": " free", + "start": 1901.1, + "end": 1901.32, + "probability": 1.0 + }, + { + "word": " version", + "start": 1901.32, + "end": 1901.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 1901.6, + "end": 1901.8, + "probability": 1.0 + }, + { + "word": " Malwarebytes?", + "start": 1901.8, + "end": 1902.3, + "probability": 0.9833984375 + } + ] + }, + { + "id": 859, + "text": "Paid.", + "start": 1902.8600000000001, + "end": 1903.22, + "words": [ + { + "word": " Paid.", + "start": 1902.8600000000001, + "end": 1903.22, + "probability": 1.0 + } + ] + }, + { + "id": 860, + "text": "Paid version.", + "start": 1903.4, + "end": 1903.96, + "words": [ + { + "word": " Paid", + "start": 1903.4, + "end": 1903.76, + "probability": 1.0 + }, + { + "word": " version.", + "start": 1903.76, + "end": 1903.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 861, + "text": "Okay.", + "start": 1904.02, + "end": 1904.2, + "words": [ + { + "word": " Okay.", + "start": 1904.02, + "end": 1904.2, + "probability": 0.97607421875 + } + ] + }, + { + "id": 862, + "text": "So when you try to uninstall, do you see a place where you can uninstall this from the", + "start": 1904.26, + "end": 1907.62, + "words": [ + { + "word": " So", + "start": 1904.26, + "end": 1904.54, + "probability": 0.83984375 + }, + { + "word": " when", + "start": 1904.54, + "end": 1904.78, + "probability": 0.59033203125 + }, + { + "word": " you", + "start": 1904.78, + "end": 1904.88, + "probability": 1.0 + }, + { + "word": " try", + "start": 1904.88, + "end": 1905.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 1905.06, + "end": 1905.18, + "probability": 1.0 + }, + { + "word": " uninstall,", + "start": 1905.18, + "end": 1905.46, + "probability": 0.94921875 + }, + { + "word": " do", + "start": 1905.62, + "end": 1905.86, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1905.86, + "end": 1905.94, + "probability": 1.0 + }, + { + "word": " see", + "start": 1905.94, + "end": 1906.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 1906.12, + "end": 1906.2, + "probability": 1.0 + }, + { + "word": " place", + "start": 1906.2, + "end": 1906.42, + "probability": 1.0 + }, + { + "word": " where", + "start": 1906.42, + "end": 1906.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 1906.6, + "end": 1906.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 1906.68, + "end": 1906.8, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 1906.8, + "end": 1907.18, + "probability": 1.0 + }, + { + "word": " this", + "start": 1907.18, + "end": 1907.4, + "probability": 1.0 + }, + { + "word": " from", + "start": 1907.4, + "end": 1907.54, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1907.54, + "end": 1907.62, + "probability": 1.0 + } + ] + }, + { + "id": 863, + "text": "add or remove programs list?", + "start": 1907.62, + "end": 1908.4, + "words": [ + { + "word": " add", + "start": 1907.62, + "end": 1907.72, + "probability": 0.376708984375 + }, + { + "word": " or", + "start": 1907.72, + "end": 1907.8, + "probability": 0.580078125 + }, + { + "word": " remove", + "start": 1907.8, + "end": 1907.92, + "probability": 0.9951171875 + }, + { + "word": " programs", + "start": 1907.92, + "end": 1908.16, + "probability": 0.99951171875 + }, + { + "word": " list?", + "start": 1908.16, + "end": 1908.4, + "probability": 1.0 + } + ] + }, + { + "id": 864, + "text": "I can't find it anywhere.", + "start": 1909.14, + "end": 1910.5, + "words": [ + { + "word": " I", + "start": 1909.14, + "end": 1909.5, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1909.5, + "end": 1909.84, + "probability": 1.0 + }, + { + "word": " find", + "start": 1909.84, + "end": 1910.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 1910.08, + "end": 1910.22, + "probability": 1.0 + }, + { + "word": " anywhere.", + "start": 1910.22, + "end": 1910.5, + "probability": 1.0 + } + ] + }, + { + "id": 865, + "text": "Every time I've gone into the app and searched this app and stuff, I can't find it anywhere.", + "start": 1910.56, + "end": 1916.5, + "words": [ + { + "word": " Every", + "start": 1910.56, + "end": 1910.92, + "probability": 0.99609375 + }, + { + "word": " time", + "start": 1910.92, + "end": 1911.2, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1911.2, + "end": 1911.46, + "probability": 1.0 + }, + { + "word": " gone", + "start": 1911.46, + "end": 1911.64, + "probability": 1.0 + }, + { + "word": " into", + "start": 1911.64, + "end": 1911.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1911.98, + "end": 1912.32, + "probability": 1.0 + }, + { + "word": " app", + "start": 1912.32, + "end": 1912.66, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 1912.66, + "end": 1913.1, + "probability": 0.99951171875 + }, + { + "word": " searched", + "start": 1913.1, + "end": 1913.82, + "probability": 0.9970703125 + }, + { + "word": " this", + "start": 1913.82, + "end": 1914.16, + "probability": 0.99951171875 + }, + { + "word": " app", + "start": 1914.16, + "end": 1914.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 1914.84, + "end": 1915.02, + "probability": 0.99951171875 + }, + { + "word": " stuff,", + "start": 1915.02, + "end": 1915.22, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1915.32, + "end": 1915.6, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1915.6, + "end": 1915.86, + "probability": 1.0 + }, + { + "word": " find", + "start": 1915.86, + "end": 1916.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 1916.08, + "end": 1916.22, + "probability": 1.0 + }, + { + "word": " anywhere.", + "start": 1916.22, + "end": 1916.5, + "probability": 1.0 + } + ] + }, + { + "id": 866, + "text": "Okay.", + "start": 1917.6000000000001, + "end": 1917.96, + "words": [ + { + "word": " Okay.", + "start": 1917.6000000000001, + "end": 1917.96, + "probability": 0.8857421875 + } + ] + }, + { + "id": 867, + "text": "Except when I shut down my machine.", + "start": 1917.96, + "end": 1919.26, + "words": [ + { + "word": " Except", + "start": 1917.96, + "end": 1918.18, + "probability": 0.99609375 + }, + { + "word": " when", + "start": 1918.18, + "end": 1918.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 1918.4, + "end": 1918.5, + "probability": 1.0 + }, + { + "word": " shut", + "start": 1918.5, + "end": 1918.66, + "probability": 1.0 + }, + { + "word": " down", + "start": 1918.66, + "end": 1918.84, + "probability": 1.0 + }, + { + "word": " my", + "start": 1918.84, + "end": 1919.02, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1919.02, + "end": 1919.26, + "probability": 1.0 + } + ] + }, + { + "id": 868, + "text": "All right.", + "start": 1919.48, + "end": 1919.72, + "words": [ + { + "word": " All", + "start": 1919.48, + "end": 1919.64, + "probability": 0.98486328125 + }, + { + "word": " right.", + "start": 1919.64, + "end": 1919.72, + "probability": 1.0 + } + ] + }, + { + "id": 869, + "text": "Give me the spelling on that again because I'm going to look it up over this next break.", + "start": 1919.72, + "end": 1922.2, + "words": [ + { + "word": " Give", + "start": 1919.72, + "end": 1919.8, + "probability": 0.99267578125 + }, + { + "word": " me", + "start": 1919.8, + "end": 1919.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1919.88, + "end": 1919.96, + "probability": 1.0 + }, + { + "word": " spelling", + "start": 1919.96, + "end": 1920.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 1920.16, + "end": 1920.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 1920.34, + "end": 1920.44, + "probability": 1.0 + }, + { + "word": " again", + "start": 1920.44, + "end": 1920.64, + "probability": 1.0 + }, + { + "word": " because", + "start": 1920.64, + "end": 1920.8, + "probability": 0.681640625 + }, + { + "word": " I'm", + "start": 1920.8, + "end": 1920.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 1920.94, + "end": 1920.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1920.96, + "end": 1921.02, + "probability": 1.0 + }, + { + "word": " look", + "start": 1921.02, + "end": 1921.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 1921.14, + "end": 1921.22, + "probability": 1.0 + }, + { + "word": " up", + "start": 1921.22, + "end": 1921.34, + "probability": 1.0 + }, + { + "word": " over", + "start": 1921.34, + "end": 1921.54, + "probability": 1.0 + }, + { + "word": " this", + "start": 1921.54, + "end": 1921.78, + "probability": 1.0 + }, + { + "word": " next", + "start": 1921.78, + "end": 1921.96, + "probability": 1.0 + }, + { + "word": " break.", + "start": 1921.96, + "end": 1922.2, + "probability": 1.0 + } + ] + }, + { + "id": 870, + "text": "Z as in zebra.", + "start": 1922.8200000000002, + "end": 1924.1, + "words": [ + { + "word": " Z", + "start": 1922.8200000000002, + "end": 1923.18, + "probability": 0.9912109375 + }, + { + "word": " as", + "start": 1923.18, + "end": 1923.54, + "probability": 0.974609375 + }, + { + "word": " in", + "start": 1923.54, + "end": 1923.74, + "probability": 1.0 + }, + { + "word": " zebra.", + "start": 1923.74, + "end": 1924.1, + "probability": 0.982421875 + } + ] + }, + { + "id": 871, + "text": "Uh-huh.", + "start": 1924.24, + "end": 1924.58, + "words": [ + { + "word": " Uh", + "start": 1924.24, + "end": 1924.5, + "probability": 0.9287109375 + }, + { + "word": "-huh.", + "start": 1924.5, + "end": 1924.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 872, + "text": "Z-O-M underscore add.", + "start": 1924.58, + "end": 1928.36, + "words": [ + { + "word": " Z", + "start": 1924.58, + "end": 1925.18, + "probability": 0.0012054443359375 + }, + { + "word": "-O", + "start": 1925.18, + "end": 1925.36, + "probability": 0.9375 + }, + { + "word": "-M", + "start": 1925.36, + "end": 1925.78, + "probability": 0.9990234375 + }, + { + "word": " underscore", + "start": 1925.78, + "end": 1927.4, + "probability": 0.97021484375 + }, + { + "word": " add.", + "start": 1927.4, + "end": 1928.36, + "probability": 0.640625 + } + ] + }, + { + "id": 873, + "text": "Like A-D or A-D?", + "start": 1929.0, + "end": 1930.32, + "words": [ + { + "word": " Like", + "start": 1929.0, + "end": 1929.4, + "probability": 0.99609375 + }, + { + "word": " A", + "start": 1929.4, + "end": 1929.56, + "probability": 0.86474609375 + }, + { + "word": "-D", + "start": 1929.56, + "end": 1929.72, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 1929.72, + "end": 1930.0, + "probability": 0.69775390625 + }, + { + "word": " A", + "start": 1930.0, + "end": 1930.16, + "probability": 0.99365234375 + }, + { + "word": "-D?", + "start": 1930.16, + "end": 1930.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 874, + "text": "Okay.", + "start": 1930.52, + "end": 1930.72, + "words": [ + { + "word": " Okay.", + "start": 1930.52, + "end": 1930.72, + "probability": 0.280517578125 + } + ] + }, + { + "id": 875, + "text": "All right.", + "start": 1931.44, + "end": 1932.0, + "words": [ + { + "word": " All", + "start": 1931.44, + "end": 1931.84, + "probability": 0.9580078125 + }, + { + "word": " right.", + "start": 1931.84, + "end": 1932.0, + "probability": 1.0 + } + ] + }, + { + "id": 876, + "text": "Well, I'm going to look that up over the break and we're going to see what we can find for", + "start": 1932.04, + "end": 1934.42, + "words": [ + { + "word": " Well,", + "start": 1932.04, + "end": 1932.14, + "probability": 0.99853515625 + }, + { + "word": " I'm", + "start": 1932.22, + "end": 1932.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 1932.36, + "end": 1932.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1932.4, + "end": 1932.46, + "probability": 1.0 + }, + { + "word": " look", + "start": 1932.46, + "end": 1932.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1932.58, + "end": 1932.7, + "probability": 1.0 + }, + { + "word": " up", + "start": 1932.7, + "end": 1932.84, + "probability": 1.0 + }, + { + "word": " over", + "start": 1932.84, + "end": 1933.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1933.0, + "end": 1933.14, + "probability": 1.0 + }, + { + "word": " break", + "start": 1933.14, + "end": 1933.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 1933.34, + "end": 1933.44, + "probability": 0.2137451171875 + }, + { + "word": " we're", + "start": 1933.44, + "end": 1933.56, + "probability": 1.0 + }, + { + "word": " going", + "start": 1933.56, + "end": 1933.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 1933.6, + "end": 1933.66, + "probability": 1.0 + }, + { + "word": " see", + "start": 1933.66, + "end": 1933.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 1933.82, + "end": 1933.9, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 1933.9, + "end": 1934.0, + "probability": 1.0 + }, + { + "word": " can", + "start": 1934.0, + "end": 1934.06, + "probability": 1.0 + }, + { + "word": " find", + "start": 1934.06, + "end": 1934.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 1934.28, + "end": 1934.42, + "probability": 1.0 + } + ] + }, + { + "id": 877, + "text": "you.", + "start": 1934.42, + "end": 1934.56, + "words": [ + { + "word": " you.", + "start": 1934.42, + "end": 1934.56, + "probability": 1.0 + } + ] + }, + { + "id": 878, + "text": "Okay.", + "start": 1934.82, + "end": 1935.14, + "words": [ + { + "word": " Okay.", + "start": 1934.82, + "end": 1935.14, + "probability": 0.99853515625 + } + ] + }, + { + "id": 879, + "text": "Then can I ask you another question?", + "start": 1935.18, + "end": 1936.38, + "words": [ + { + "word": " Then", + "start": 1935.18, + "end": 1935.36, + "probability": 0.9619140625 + }, + { + "word": " can", + "start": 1935.36, + "end": 1935.52, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1935.52, + "end": 1935.64, + "probability": 1.0 + }, + { + "word": " ask", + "start": 1935.64, + "end": 1935.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 1935.8, + "end": 1935.9, + "probability": 1.0 + }, + { + "word": " another", + "start": 1935.9, + "end": 1936.0, + "probability": 1.0 + }, + { + "word": " question?", + "start": 1936.0, + "end": 1936.38, + "probability": 1.0 + } + ] + }, + { + "id": 880, + "text": "Yes.", + "start": 1936.42, + "end": 1936.58, + "words": [ + { + "word": " Yes.", + "start": 1936.42, + "end": 1936.58, + "probability": 0.99755859375 + } + ] + }, + { + "id": 881, + "text": "Go ahead.", + "start": 1936.58, + "end": 1936.82, + "words": [ + { + "word": " Go", + "start": 1936.58, + "end": 1936.7, + "probability": 0.99755859375 + }, + { + "word": " ahead.", + "start": 1936.7, + "end": 1936.82, + "probability": 1.0 + } + ] + }, + { + "id": 882, + "text": "Okay.", + "start": 1937.28, + "end": 1937.68, + "words": [ + { + "word": " Okay.", + "start": 1937.28, + "end": 1937.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 883, + "text": "I have a Microsoft Windows XP program on an old computer you worked on years ago.", + "start": 1937.74, + "end": 1943.1, + "words": [ + { + "word": " I", + "start": 1937.74, + "end": 1937.9, + "probability": 0.99658203125 + }, + { + "word": " have", + "start": 1937.9, + "end": 1938.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 1938.22, + "end": 1938.36, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 1938.36, + "end": 1939.12, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1939.12, + "end": 1940.14, + "probability": 1.0 + }, + { + "word": " XP", + "start": 1940.14, + "end": 1940.52, + "probability": 1.0 + }, + { + "word": " program", + "start": 1940.52, + "end": 1940.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 1940.98, + "end": 1941.28, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1941.28, + "end": 1941.38, + "probability": 1.0 + }, + { + "word": " old", + "start": 1941.38, + "end": 1941.6, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1941.6, + "end": 1941.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 1941.92, + "end": 1942.16, + "probability": 0.99951171875 + }, + { + "word": " worked", + "start": 1942.16, + "end": 1942.38, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1942.38, + "end": 1942.56, + "probability": 1.0 + }, + { + "word": " years", + "start": 1942.56, + "end": 1942.74, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 1942.74, + "end": 1943.1, + "probability": 1.0 + } + ] + }, + { + "id": 884, + "text": "And it says now that XP is no longer supported with updates.", + "start": 1943.84, + "end": 1947.98, + "words": [ + { + "word": " And", + "start": 1943.84, + "end": 1944.24, + "probability": 0.97802734375 + }, + { + "word": " it", + "start": 1944.24, + "end": 1944.52, + "probability": 0.9990234375 + }, + { + "word": " says", + "start": 1944.52, + "end": 1944.9, + "probability": 1.0 + }, + { + "word": " now", + "start": 1944.9, + "end": 1945.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1945.16, + "end": 1945.5, + "probability": 1.0 + }, + { + "word": " XP", + "start": 1945.5, + "end": 1946.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 1946.38, + "end": 1946.58, + "probability": 1.0 + }, + { + "word": " no", + "start": 1946.58, + "end": 1946.74, + "probability": 1.0 + }, + { + "word": " longer", + "start": 1946.74, + "end": 1946.98, + "probability": 1.0 + }, + { + "word": " supported", + "start": 1946.98, + "end": 1947.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 1947.32, + "end": 1947.64, + "probability": 1.0 + }, + { + "word": " updates.", + "start": 1947.64, + "end": 1947.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 885, + "text": "That is correct.", + "start": 1948.44, + "end": 1949.1, + "words": [ + { + "word": " That", + "start": 1948.44, + "end": 1948.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 1948.84, + "end": 1948.92, + "probability": 1.0 + }, + { + "word": " correct.", + "start": 1948.92, + "end": 1949.1, + "probability": 1.0 + } + ] + }, + { + "id": 886, + "text": "So how do I get the security essentials to not work anymore?", + "start": 1950.1, + "end": 1954.56, + "words": [ + { + "word": " So", + "start": 1950.1, + "end": 1950.5, + "probability": 0.99365234375 + }, + { + "word": " how", + "start": 1950.5, + "end": 1950.9, + "probability": 0.8544921875 + }, + { + "word": " do", + "start": 1950.9, + "end": 1951.32, + "probability": 1.0 + }, + { + "word": " I", + "start": 1951.32, + "end": 1951.46, + "probability": 1.0 + }, + { + "word": " get", + "start": 1951.46, + "end": 1951.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1951.76, + "end": 1952.28, + "probability": 0.99267578125 + }, + { + "word": " security", + "start": 1952.28, + "end": 1952.66, + "probability": 0.97119140625 + }, + { + "word": " essentials", + "start": 1952.66, + "end": 1953.06, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1953.06, + "end": 1953.5, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1953.5, + "end": 1953.96, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 1953.96, + "end": 1954.3, + "probability": 1.0 + }, + { + "word": " anymore?", + "start": 1954.3, + "end": 1954.56, + "probability": 0.88427734375 + } + ] + }, + { + "id": 887, + "text": "Well, security essentials is going to work for another year.", + "start": 1954.58, + "end": 1957.46, + "words": [ + { + "word": " Well,", + "start": 1954.58, + "end": 1954.84, + "probability": 0.369873046875 + }, + { + "word": " security", + "start": 1955.36, + "end": 1955.6, + "probability": 0.2288818359375 + }, + { + "word": " essentials", + "start": 1955.6, + "end": 1955.94, + "probability": 0.9892578125 + }, + { + "word": " is", + "start": 1955.94, + "end": 1956.3, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1956.3, + "end": 1956.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1956.56, + "end": 1956.72, + "probability": 1.0 + }, + { + "word": " work", + "start": 1956.72, + "end": 1956.88, + "probability": 1.0 + }, + { + "word": " for", + "start": 1956.88, + "end": 1957.0, + "probability": 1.0 + }, + { + "word": " another", + "start": 1957.0, + "end": 1957.1, + "probability": 1.0 + }, + { + "word": " year.", + "start": 1957.1, + "end": 1957.46, + "probability": 1.0 + } + ] + }, + { + "id": 888, + "text": "Uh-huh.", + "start": 1957.66, + "end": 1958.2, + "words": [ + { + "word": " Uh", + "start": 1957.66, + "end": 1958.04, + "probability": 0.7373046875 + }, + { + "word": "-huh.", + "start": 1958.04, + "end": 1958.2, + "probability": 0.9951171875 + } + ] + }, + { + "id": 889, + "text": "All right.", + "start": 1958.4, + "end": 1958.56, + "words": [ + { + "word": " All", + "start": 1958.4, + "end": 1958.5, + "probability": 0.4345703125 + }, + { + "word": " right.", + "start": 1958.5, + "end": 1958.56, + "probability": 1.0 + } + ] + }, + { + "id": 890, + "text": "So that part of it will work as far as updates are concerned.", + "start": 1958.6, + "end": 1962.28, + "words": [ + { + "word": " So", + "start": 1958.6, + "end": 1958.9, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1958.9, + "end": 1959.72, + "probability": 0.78759765625 + }, + { + "word": " part", + "start": 1959.72, + "end": 1960.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 1960.0, + "end": 1960.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 1960.22, + "end": 1960.3, + "probability": 1.0 + }, + { + "word": " will", + "start": 1960.3, + "end": 1960.46, + "probability": 1.0 + }, + { + "word": " work", + "start": 1960.46, + "end": 1960.88, + "probability": 1.0 + }, + { + "word": " as", + "start": 1960.88, + "end": 1961.24, + "probability": 0.943359375 + }, + { + "word": " far", + "start": 1961.24, + "end": 1961.44, + "probability": 1.0 + }, + { + "word": " as", + "start": 1961.44, + "end": 1961.58, + "probability": 1.0 + }, + { + "word": " updates", + "start": 1961.58, + "end": 1961.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 1961.82, + "end": 1962.0, + "probability": 1.0 + }, + { + "word": " concerned.", + "start": 1962.0, + "end": 1962.28, + "probability": 1.0 + } + ] + }, + { + "id": 891, + "text": "But that is it.", + "start": 1962.62, + "end": 1963.62, + "words": [ + { + "word": " But", + "start": 1962.62, + "end": 1963.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 1963.02, + "end": 1963.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 1963.24, + "end": 1963.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1963.44, + "end": 1963.62, + "probability": 1.0 + } + ] + }, + { + "id": 892, + "text": "Okay.", + "start": 1964.04, + "end": 1964.44, + "words": [ + { + "word": " Okay.", + "start": 1964.04, + "end": 1964.44, + "probability": 0.96826171875 + } + ] + }, + { + "id": 893, + "text": "I have malware on that computer also.", + "start": 1964.48, + "end": 1966.08, + "words": [ + { + "word": " I", + "start": 1964.48, + "end": 1964.56, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 1964.56, + "end": 1964.74, + "probability": 1.0 + }, + { + "word": " malware", + "start": 1964.74, + "end": 1965.0, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1965.0, + "end": 1965.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 1965.24, + "end": 1965.4, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 1965.4, + "end": 1965.72, + "probability": 1.0 + }, + { + "word": " also.", + "start": 1965.72, + "end": 1966.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 894, + "text": "As far as malware bytes?", + "start": 1966.86, + "end": 1967.84, + "words": [ + { + "word": " As", + "start": 1966.86, + "end": 1967.26, + "probability": 1.0 + }, + { + "word": " far", + "start": 1967.26, + "end": 1967.36, + "probability": 1.0 + }, + { + "word": " as", + "start": 1967.36, + "end": 1967.46, + "probability": 1.0 + }, + { + "word": " malware", + "start": 1967.46, + "end": 1967.62, + "probability": 0.95654296875 + }, + { + "word": " bytes?", + "start": 1967.62, + "end": 1967.84, + "probability": 0.87060546875 + } + ] + }, + { + "id": 895, + "text": "Yes.", + "start": 1968.06, + "end": 1968.38, + "words": [ + { + "word": " Yes.", + "start": 1968.06, + "end": 1968.38, + "probability": 0.98779296875 + } + ] + }, + { + "id": 896, + "text": "Yeah.", + "start": 1968.54, + "end": 1968.68, + "words": [ + { + "word": " Yeah.", + "start": 1968.54, + "end": 1968.68, + "probability": 0.98388671875 + } + ] + }, + { + "id": 897, + "text": "And that's fine.", + "start": 1968.74, + "end": 1969.64, + "words": [ + { + "word": " And", + "start": 1968.74, + "end": 1968.96, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 1968.96, + "end": 1969.42, + "probability": 0.9990234375 + }, + { + "word": " fine.", + "start": 1969.42, + "end": 1969.64, + "probability": 1.0 + } + ] + }, + { + "id": 898, + "text": "That one will continue to update because it has nothing to do with Windows.", + "start": 1969.72, + "end": 1972.02, + "words": [ + { + "word": " That", + "start": 1969.72, + "end": 1969.84, + "probability": 0.88330078125 + }, + { + "word": " one", + "start": 1969.84, + "end": 1969.98, + "probability": 1.0 + }, + { + "word": " will", + "start": 1969.98, + "end": 1970.14, + "probability": 0.9970703125 + }, + { + "word": " continue", + "start": 1970.14, + "end": 1970.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1970.46, + "end": 1970.64, + "probability": 1.0 + }, + { + "word": " update", + "start": 1970.64, + "end": 1970.84, + "probability": 1.0 + }, + { + "word": " because", + "start": 1970.84, + "end": 1971.04, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 1971.04, + "end": 1971.16, + "probability": 1.0 + }, + { + "word": " has", + "start": 1971.16, + "end": 1971.26, + "probability": 1.0 + }, + { + "word": " nothing", + "start": 1971.26, + "end": 1971.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1971.46, + "end": 1971.6, + "probability": 1.0 + }, + { + "word": " do", + "start": 1971.6, + "end": 1971.74, + "probability": 1.0 + }, + { + "word": " with", + "start": 1971.74, + "end": 1971.84, + "probability": 1.0 + }, + { + "word": " Windows.", + "start": 1971.84, + "end": 1972.02, + "probability": 0.9951171875 + } + ] + }, + { + "id": 899, + "text": "But as far as the built-in security updates for security essentials, you get one more year.", + "start": 1973.3199999999997, + "end": 1978.6, + "words": [ + { + "word": " But", + "start": 1973.3199999999997, + "end": 1973.7199999999998, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1973.7199999999998, + "end": 1974.12, + "probability": 0.99951171875 + }, + { + "word": " far", + "start": 1974.12, + "end": 1974.62, + "probability": 1.0 + }, + { + "word": " as", + "start": 1974.62, + "end": 1974.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1974.88, + "end": 1975.02, + "probability": 1.0 + }, + { + "word": " built", + "start": 1975.02, + "end": 1975.36, + "probability": 1.0 + }, + { + "word": "-in", + "start": 1975.36, + "end": 1975.7, + "probability": 0.99169921875 + }, + { + "word": " security", + "start": 1975.7, + "end": 1976.36, + "probability": 1.0 + }, + { + "word": " updates", + "start": 1976.36, + "end": 1976.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 1976.8, + "end": 1977.08, + "probability": 0.97998046875 + }, + { + "word": " security", + "start": 1977.08, + "end": 1977.38, + "probability": 0.99951171875 + }, + { + "word": " essentials,", + "start": 1977.38, + "end": 1977.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 1977.8, + "end": 1977.96, + "probability": 1.0 + }, + { + "word": " get", + "start": 1977.96, + "end": 1978.08, + "probability": 1.0 + }, + { + "word": " one", + "start": 1978.08, + "end": 1978.22, + "probability": 1.0 + }, + { + "word": " more", + "start": 1978.22, + "end": 1978.4, + "probability": 1.0 + }, + { + "word": " year.", + "start": 1978.4, + "end": 1978.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 900, + "text": "You shouldn't be in XP anymore.", + "start": 1979.22, + "end": 1980.62, + "words": [ + { + "word": " You", + "start": 1979.22, + "end": 1979.62, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 1979.62, + "end": 1979.94, + "probability": 1.0 + }, + { + "word": " be", + "start": 1979.94, + "end": 1980.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 1980.02, + "end": 1980.14, + "probability": 0.6787109375 + }, + { + "word": " XP", + "start": 1980.14, + "end": 1980.34, + "probability": 0.99853515625 + }, + { + "word": " anymore.", + "start": 1980.34, + "end": 1980.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 901, + "text": "Right.", + "start": 1981.04, + "end": 1981.44, + "words": [ + { + "word": " Right.", + "start": 1981.04, + "end": 1981.44, + "probability": 0.6123046875 + } + ] + }, + { + "id": 902, + "text": "Well, I have embroidery.", + "start": 1981.52, + "end": 1982.76, + "words": [ + { + "word": " Well,", + "start": 1981.52, + "end": 1981.84, + "probability": 0.7109375 + }, + { + "word": " I", + "start": 1981.88, + "end": 1981.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 1981.96, + "end": 1982.12, + "probability": 0.92333984375 + }, + { + "word": " embroidery.", + "start": 1982.12, + "end": 1982.76, + "probability": 0.90673828125 + } + ] + }, + { + "id": 903, + "text": "I'm the one with the embroidery machines.", + "start": 1982.88, + "end": 1984.38, + "words": [ + { + "word": " I'm", + "start": 1982.88, + "end": 1983.12, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1983.12, + "end": 1983.2, + "probability": 1.0 + }, + { + "word": " one", + "start": 1983.2, + "end": 1983.36, + "probability": 1.0 + }, + { + "word": " with", + "start": 1983.36, + "end": 1983.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1983.52, + "end": 1983.64, + "probability": 1.0 + }, + { + "word": " embroidery", + "start": 1983.64, + "end": 1983.94, + "probability": 1.0 + }, + { + "word": " machines.", + "start": 1983.94, + "end": 1984.38, + "probability": 0.73876953125 + } + ] + }, + { + "id": 904, + "text": "And that's where all my software is at.", + "start": 1984.58, + "end": 1986.12, + "words": [ + { + "word": " And", + "start": 1984.58, + "end": 1984.7, + "probability": 0.0826416015625 + }, + { + "word": " that's", + "start": 1984.7, + "end": 1984.92, + "probability": 0.9951171875 + }, + { + "word": " where", + "start": 1984.92, + "end": 1985.04, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1985.04, + "end": 1985.18, + "probability": 0.9931640625 + }, + { + "word": " my", + "start": 1985.18, + "end": 1985.34, + "probability": 0.99267578125 + }, + { + "word": " software", + "start": 1985.34, + "end": 1985.78, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1985.78, + "end": 1985.94, + "probability": 0.87646484375 + }, + { + "word": " at.", + "start": 1985.94, + "end": 1986.12, + "probability": 1.0 + } + ] + }, + { + "id": 905, + "text": "Okay.", + "start": 1987.26, + "end": 1987.7, + "words": [ + { + "word": " Okay.", + "start": 1987.26, + "end": 1987.7, + "probability": 0.77734375 + } + ] + }, + { + "id": 906, + "text": "And I can't update the software to anything newer that will work with anything other than XP.", + "start": 1988.38, + "end": 1993.66, + "words": [ + { + "word": " And", + "start": 1988.38, + "end": 1988.82, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1988.82, + "end": 1989.08, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 1989.08, + "end": 1989.54, + "probability": 1.0 + }, + { + "word": " update", + "start": 1989.54, + "end": 1989.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1989.84, + "end": 1990.74, + "probability": 0.94873046875 + }, + { + "word": " software", + "start": 1990.74, + "end": 1991.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 1991.1, + "end": 1991.48, + "probability": 0.99853515625 + }, + { + "word": " anything", + "start": 1991.48, + "end": 1991.72, + "probability": 1.0 + }, + { + "word": " newer", + "start": 1991.72, + "end": 1992.1, + "probability": 0.79736328125 + }, + { + "word": " that", + "start": 1992.1, + "end": 1992.26, + "probability": 0.57958984375 + }, + { + "word": " will", + "start": 1992.26, + "end": 1992.34, + "probability": 0.99755859375 + }, + { + "word": " work", + "start": 1992.34, + "end": 1992.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 1992.58, + "end": 1992.72, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1992.72, + "end": 1992.94, + "probability": 1.0 + }, + { + "word": " other", + "start": 1992.94, + "end": 1993.24, + "probability": 1.0 + }, + { + "word": " than", + "start": 1993.24, + "end": 1993.42, + "probability": 1.0 + }, + { + "word": " XP.", + "start": 1993.42, + "end": 1993.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 907, + "text": "Okay.", + "start": 1994.04, + "end": 1994.48, + "words": [ + { + "word": " Okay.", + "start": 1994.04, + "end": 1994.48, + "probability": 0.9951171875 + } + ] + }, + { + "id": 908, + "text": "Who is your internet provider, by the way?", + "start": 1994.5, + "end": 1995.88, + "words": [ + { + "word": " Who", + "start": 1994.5, + "end": 1994.64, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1994.64, + "end": 1994.76, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1994.76, + "end": 1994.88, + "probability": 1.0 + }, + { + "word": " internet", + "start": 1994.88, + "end": 1995.12, + "probability": 0.399658203125 + }, + { + "word": " provider,", + "start": 1995.12, + "end": 1995.4, + "probability": 1.0 + }, + { + "word": " by", + "start": 1995.52, + "end": 1995.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1995.66, + "end": 1995.78, + "probability": 1.0 + }, + { + "word": " way?", + "start": 1995.78, + "end": 1995.88, + "probability": 1.0 + } + ] + }, + { + "id": 909, + "text": "I just now got Verizon.", + "start": 1996.32, + "end": 1999.2, + "words": [ + { + "word": " I", + "start": 1996.32, + "end": 1996.76, + "probability": 1.0 + }, + { + "word": " just", + "start": 1996.76, + "end": 1997.08, + "probability": 1.0 + }, + { + "word": " now", + "start": 1997.08, + "end": 1997.52, + "probability": 1.0 + }, + { + "word": " got", + "start": 1997.52, + "end": 1998.0, + "probability": 1.0 + }, + { + "word": " Verizon.", + "start": 1998.0, + "end": 1999.2, + "probability": 1.0 + } + ] + }, + { + "id": 910, + "text": "Who did you have before?", + "start": 1999.72, + "end": 2000.5, + "words": [ + { + "word": " Who", + "start": 1999.72, + "end": 2000.02, + "probability": 0.88037109375 + }, + { + "word": " did", + "start": 2000.02, + "end": 2000.14, + "probability": 0.966796875 + }, + { + "word": " you", + "start": 2000.14, + "end": 2000.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 2000.18, + "end": 2000.28, + "probability": 1.0 + }, + { + "word": " before?", + "start": 2000.28, + "end": 2000.5, + "probability": 1.0 + } + ] + }, + { + "id": 911, + "text": "I was dial-up.", + "start": 2001.1, + "end": 2002.18, + "words": [ + { + "word": " I", + "start": 2001.1, + "end": 2001.54, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 2001.54, + "end": 2001.66, + "probability": 1.0 + }, + { + "word": " dial", + "start": 2001.66, + "end": 2001.94, + "probability": 0.87939453125 + }, + { + "word": "-up.", + "start": 2001.94, + "end": 2002.18, + "probability": 0.921875 + } + ] + }, + { + "id": 912, + "text": "On net zero, right?", + "start": 2002.32, + "end": 2003.34, + "words": [ + { + "word": " On", + "start": 2002.32, + "end": 2002.64, + "probability": 0.99853515625 + }, + { + "word": " net", + "start": 2002.64, + "end": 2002.86, + "probability": 0.669921875 + }, + { + "word": " zero,", + "start": 2002.86, + "end": 2003.1, + "probability": 0.9638671875 + }, + { + "word": " right?", + "start": 2003.2, + "end": 2003.34, + "probability": 0.9931640625 + } + ] + }, + { + "id": 913, + "text": "No.", + "start": 2003.62, + "end": 2004.06, + "words": [ + { + "word": " No.", + "start": 2003.62, + "end": 2004.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 914, + "text": "I was dial-up on Juno.", + "start": 2004.34, + "end": 2007.22, + "words": [ + { + "word": " I", + "start": 2004.34, + "end": 2004.78, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2004.78, + "end": 2004.96, + "probability": 1.0 + }, + { + "word": " dial", + "start": 2004.96, + "end": 2005.96, + "probability": 1.0 + }, + { + "word": "-up", + "start": 2005.96, + "end": 2006.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 2006.16, + "end": 2006.48, + "probability": 1.0 + }, + { + "word": " Juno.", + "start": 2006.48, + "end": 2007.22, + "probability": 0.98828125 + } + ] + }, + { + "id": 915, + "text": "That's pretty much the same thing.", + "start": 2008.06, + "end": 2009.26, + "words": [ + { + "word": " That's", + "start": 2008.06, + "end": 2008.5, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 2008.5, + "end": 2008.64, + "probability": 1.0 + }, + { + "word": " much", + "start": 2008.64, + "end": 2008.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2008.8, + "end": 2008.92, + "probability": 1.0 + }, + { + "word": " same", + "start": 2008.92, + "end": 2009.08, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 2009.08, + "end": 2009.26, + "probability": 1.0 + } + ] + }, + { + "id": 916, + "text": "So your program there, the ZCOM?", + "start": 2009.5, + "end": 2012.78, + "words": [ + { + "word": " So", + "start": 2009.5, + "end": 2009.94, + "probability": 0.97705078125 + }, + { + "word": " your", + "start": 2009.94, + "end": 2010.46, + "probability": 0.830078125 + }, + { + "word": " program", + "start": 2010.46, + "end": 2011.98, + "probability": 0.99951171875 + }, + { + "word": " there,", + "start": 2011.98, + "end": 2012.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 2012.34, + "end": 2012.4, + "probability": 1.0 + }, + { + "word": " ZCOM?", + "start": 2012.4, + "end": 2012.78, + "probability": 0.5712890625 + } + ] + }, + { + "id": 917, + "text": "Uh-huh.", + "start": 2013.4, + "end": 2013.84, + "words": [ + { + "word": " Uh", + "start": 2013.4, + "end": 2013.84, + "probability": 0.1741943359375 + }, + { + "word": "-huh.", + "start": 2013.84, + "end": 2013.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 918, + "text": "It is...", + "start": 2013.84, + "end": 2014.26, + "words": [ + { + "word": " It", + "start": 2013.84, + "end": 2014.06, + "probability": 0.89599609375 + }, + { + "word": " is...", + "start": 2014.06, + "end": 2014.26, + "probability": 0.491943359375 + } + ] + }, + { + "id": 919, + "text": "Part of the net zero dialer package.", + "start": 2014.58, + "end": 2015.86, + "words": [ + { + "word": " Part", + "start": 2014.58, + "end": 2014.58, + "probability": 0.285400390625 + }, + { + "word": " of", + "start": 2014.58, + "end": 2014.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2014.72, + "end": 2014.82, + "probability": 1.0 + }, + { + "word": " net", + "start": 2014.82, + "end": 2014.98, + "probability": 0.4482421875 + }, + { + "word": " zero", + "start": 2014.98, + "end": 2015.18, + "probability": 0.9638671875 + }, + { + "word": " dialer", + "start": 2015.18, + "end": 2015.6, + "probability": 0.9970703125 + }, + { + "word": " package.", + "start": 2015.6, + "end": 2015.86, + "probability": 1.0 + } + ] + }, + { + "id": 920, + "text": "Oh, is it?", + "start": 2016.32, + "end": 2017.08, + "words": [ + { + "word": " Oh,", + "start": 2016.32, + "end": 2016.66, + "probability": 0.9873046875 + }, + { + "word": " is", + "start": 2016.66, + "end": 2016.84, + "probability": 0.99951171875 + }, + { + "word": " it?", + "start": 2016.84, + "end": 2017.08, + "probability": 1.0 + } + ] + }, + { + "id": 921, + "text": "Yeah.", + "start": 2017.24, + "end": 2017.42, + "words": [ + { + "word": " Yeah.", + "start": 2017.24, + "end": 2017.42, + "probability": 0.986328125 + } + ] + }, + { + "id": 922, + "text": "So I would say that you go and uninstall anything that has anything to do with Juno off of your machine.", + "start": 2018.3199999999997, + "end": 2024.1, + "words": [ + { + "word": " So", + "start": 2018.3199999999997, + "end": 2018.7199999999998, + "probability": 0.953125 + }, + { + "word": " I", + "start": 2018.7199999999998, + "end": 2019.12, + "probability": 0.7021484375 + }, + { + "word": " would", + "start": 2019.12, + "end": 2019.34, + "probability": 1.0 + }, + { + "word": " say", + "start": 2019.34, + "end": 2019.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 2019.52, + "end": 2019.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 2019.64, + "end": 2019.72, + "probability": 1.0 + }, + { + "word": " go", + "start": 2019.72, + "end": 2019.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2019.88, + "end": 2020.0, + "probability": 0.9853515625 + }, + { + "word": " uninstall", + "start": 2020.0, + "end": 2020.46, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2020.46, + "end": 2020.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 2020.84, + "end": 2021.1, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 2021.1, + "end": 2021.26, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2021.26, + "end": 2021.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 2021.5, + "end": 2021.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 2021.82, + "end": 2022.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 2022.0, + "end": 2022.26, + "probability": 1.0 + }, + { + "word": " Juno", + "start": 2022.26, + "end": 2022.78, + "probability": 0.9638671875 + }, + { + "word": " off", + "start": 2022.78, + "end": 2023.62, + "probability": 0.99365234375 + }, + { + "word": " of", + "start": 2023.62, + "end": 2023.74, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 2023.74, + "end": 2023.82, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 2023.82, + "end": 2024.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 923, + "text": "Oh, okay.", + "start": 2024.44, + "end": 2024.9, + "words": [ + { + "word": " Oh,", + "start": 2024.44, + "end": 2024.84, + "probability": 0.56396484375 + }, + { + "word": " okay.", + "start": 2024.86, + "end": 2024.9, + "probability": 0.9755859375 + } + ] + }, + { + "id": 924, + "text": "Or net zero if you find it.", + "start": 2024.9, + "end": 2026.28, + "words": [ + { + "word": " Or", + "start": 2024.9, + "end": 2024.92, + "probability": 0.9736328125 + }, + { + "word": " net", + "start": 2024.92, + "end": 2025.36, + "probability": 0.98193359375 + }, + { + "word": " zero", + "start": 2025.36, + "end": 2025.66, + "probability": 1.0 + }, + { + "word": " if", + "start": 2025.66, + "end": 2025.82, + "probability": 0.9658203125 + }, + { + "word": " you", + "start": 2025.82, + "end": 2025.92, + "probability": 1.0 + }, + { + "word": " find", + "start": 2025.92, + "end": 2026.12, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2026.12, + "end": 2026.28, + "probability": 1.0 + } + ] + }, + { + "id": 925, + "text": "And that'll probably deal with that issue.", + "start": 2027.06, + "end": 2028.86, + "words": [ + { + "word": " And", + "start": 2027.06, + "end": 2027.46, + "probability": 0.99853515625 + }, + { + "word": " that'll", + "start": 2027.46, + "end": 2027.68, + "probability": 0.814453125 + }, + { + "word": " probably", + "start": 2027.68, + "end": 2028.0, + "probability": 1.0 + }, + { + "word": " deal", + "start": 2028.0, + "end": 2028.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 2028.34, + "end": 2028.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 2028.46, + "end": 2028.6, + "probability": 1.0 + }, + { + "word": " issue.", + "start": 2028.6, + "end": 2028.86, + "probability": 1.0 + } + ] + }, + { + "id": 926, + "text": "Yeah, because I'm all of a sudden having these pop-up ads that start talking to me.", + "start": 2029.4, + "end": 2033.12, + "words": [ + { + "word": " Yeah,", + "start": 2029.4, + "end": 2029.8, + "probability": 0.9716796875 + }, + { + "word": " because", + "start": 2029.8, + "end": 2029.94, + "probability": 0.99267578125 + }, + { + "word": " I'm", + "start": 2029.94, + "end": 2030.1, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 2030.1, + "end": 2030.64, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2030.64, + "end": 2030.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 2030.78, + "end": 2030.84, + "probability": 1.0 + }, + { + "word": " sudden", + "start": 2030.84, + "end": 2030.96, + "probability": 1.0 + }, + { + "word": " having", + "start": 2030.96, + "end": 2031.16, + "probability": 1.0 + }, + { + "word": " these", + "start": 2031.16, + "end": 2031.36, + "probability": 1.0 + }, + { + "word": " pop", + "start": 2031.36, + "end": 2031.64, + "probability": 1.0 + }, + { + "word": "-up", + "start": 2031.64, + "end": 2031.8, + "probability": 0.9765625 + }, + { + "word": " ads", + "start": 2031.8, + "end": 2032.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2032.06, + "end": 2032.22, + "probability": 0.95703125 + }, + { + "word": " start", + "start": 2032.22, + "end": 2032.44, + "probability": 1.0 + }, + { + "word": " talking", + "start": 2032.44, + "end": 2032.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2032.72, + "end": 2032.92, + "probability": 1.0 + }, + { + "word": " me.", + "start": 2032.92, + "end": 2033.12, + "probability": 1.0 + } + ] + }, + { + "id": 927, + "text": "Yeah, well, uninstall that stuff.", + "start": 2033.84, + "end": 2035.44, + "words": [ + { + "word": " Yeah,", + "start": 2033.84, + "end": 2034.24, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 2034.24, + "end": 2034.36, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 2034.5, + "end": 2035.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 2035.04, + "end": 2035.2, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2035.2, + "end": 2035.44, + "probability": 1.0 + } + ] + }, + { + "id": 928, + "text": "And that should probably help with that.", + "start": 2035.94, + "end": 2037.86, + "words": [ + { + "word": " And", + "start": 2035.94, + "end": 2036.34, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2036.34, + "end": 2036.6, + "probability": 1.0 + }, + { + "word": " should", + "start": 2036.6, + "end": 2036.92, + "probability": 1.0 + }, + { + "word": " probably", + "start": 2036.92, + "end": 2037.28, + "probability": 1.0 + }, + { + "word": " help", + "start": 2037.28, + "end": 2037.62, + "probability": 1.0 + }, + { + "word": " with", + "start": 2037.62, + "end": 2037.76, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2037.76, + "end": 2037.86, + "probability": 1.0 + } + ] + }, + { + "id": 929, + "text": "Now, as far as your embroidery machine is concerned,", + "start": 2037.94, + "end": 2040.26, + "words": [ + { + "word": " Now,", + "start": 2037.94, + "end": 2038.06, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 2038.1, + "end": 2038.2, + "probability": 1.0 + }, + { + "word": " far", + "start": 2038.2, + "end": 2038.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 2038.3, + "end": 2038.42, + "probability": 1.0 + }, + { + "word": " your", + "start": 2038.42, + "end": 2038.54, + "probability": 1.0 + }, + { + "word": " embroidery", + "start": 2038.54, + "end": 2038.84, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 2038.84, + "end": 2039.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 2039.68, + "end": 2039.98, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 2039.98, + "end": 2040.26, + "probability": 1.0 + } + ] + }, + { + "id": 930, + "text": "is there...", + "start": 2040.46, + "end": 2041.14, + "words": [ + { + "word": " is", + "start": 2040.46, + "end": 2040.76, + "probability": 0.44091796875 + }, + { + "word": " there...", + "start": 2040.76, + "end": 2041.14, + "probability": 0.5810546875 + } + ] + }, + { + "id": 931, + "text": "Uh-huh.", + "start": 2041.14, + "end": 2041.68, + "words": [ + { + "word": " Uh", + "start": 2041.14, + "end": 2041.68, + "probability": 0.035400390625 + }, + { + "word": "-huh.", + "start": 2041.68, + "end": 2041.68, + "probability": 0.99658203125 + } + ] + }, + { + "id": 932, + "text": "We could make it so that it's not connected to the internet.", + "start": 2041.68, + "end": 2044.48, + "words": [ + { + "word": " We", + "start": 2041.68, + "end": 2041.94, + "probability": 0.88330078125 + }, + { + "word": " could", + "start": 2041.94, + "end": 2042.52, + "probability": 1.0 + }, + { + "word": " make", + "start": 2042.52, + "end": 2042.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 2042.92, + "end": 2043.06, + "probability": 1.0 + }, + { + "word": " so", + "start": 2043.06, + "end": 2043.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 2043.2, + "end": 2043.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2043.36, + "end": 2043.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 2043.54, + "end": 2043.68, + "probability": 1.0 + }, + { + "word": " connected", + "start": 2043.68, + "end": 2043.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2043.96, + "end": 2044.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2044.18, + "end": 2044.26, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2044.26, + "end": 2044.48, + "probability": 0.5224609375 + } + ] + }, + { + "id": 933, + "text": "It's not connected to the internet anymore.", + "start": 2044.48, + "end": 2044.86, + "words": [ + { + "word": " It's", + "start": 2044.48, + "end": 2044.64, + "probability": 0.37890625 + }, + { + "word": " not", + "start": 2044.64, + "end": 2044.64, + "probability": 0.1077880859375 + }, + { + "word": " connected", + "start": 2044.64, + "end": 2044.64, + "probability": 0.00443267822265625 + }, + { + "word": " to", + "start": 2044.64, + "end": 2044.64, + "probability": 0.8955078125 + }, + { + "word": " the", + "start": 2044.64, + "end": 2044.64, + "probability": 0.9560546875 + }, + { + "word": " internet", + "start": 2044.64, + "end": 2044.64, + "probability": 0.65234375 + }, + { + "word": " anymore.", + "start": 2044.64, + "end": 2044.86, + "probability": 0.994140625 + } + ] + }, + { + "id": 934, + "text": "And then you don't have to worry about those updates,", + "start": 2045.8200000000002, + "end": 2047.26, + "words": [ + { + "word": " And", + "start": 2045.8200000000002, + "end": 2046.14, + "probability": 0.8681640625 + }, + { + "word": " then", + "start": 2046.14, + "end": 2046.24, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2046.24, + "end": 2046.34, + "probability": 0.99267578125 + }, + { + "word": " don't", + "start": 2046.34, + "end": 2046.44, + "probability": 1.0 + }, + { + "word": " have", + "start": 2046.44, + "end": 2046.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2046.54, + "end": 2046.56, + "probability": 1.0 + }, + { + "word": " worry", + "start": 2046.56, + "end": 2046.72, + "probability": 1.0 + }, + { + "word": " about", + "start": 2046.72, + "end": 2046.86, + "probability": 1.0 + }, + { + "word": " those", + "start": 2046.86, + "end": 2047.02, + "probability": 1.0 + }, + { + "word": " updates,", + "start": 2047.02, + "end": 2047.26, + "probability": 1.0 + } + ] + }, + { + "id": 935, + "text": "and you can run your embroidery stuff all day long off that computer.", + "start": 2047.34, + "end": 2049.64, + "words": [ + { + "word": " and", + "start": 2047.34, + "end": 2047.46, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2047.46, + "end": 2047.48, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2047.48, + "end": 2047.62, + "probability": 1.0 + }, + { + "word": " run", + "start": 2047.62, + "end": 2047.76, + "probability": 1.0 + }, + { + "word": " your", + "start": 2047.76, + "end": 2047.9, + "probability": 1.0 + }, + { + "word": " embroidery", + "start": 2047.9, + "end": 2048.18, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2048.18, + "end": 2048.52, + "probability": 1.0 + }, + { + "word": " all", + "start": 2048.52, + "end": 2048.74, + "probability": 1.0 + }, + { + "word": " day", + "start": 2048.74, + "end": 2048.84, + "probability": 1.0 + }, + { + "word": " long", + "start": 2048.84, + "end": 2049.02, + "probability": 1.0 + }, + { + "word": " off", + "start": 2049.02, + "end": 2049.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 2049.24, + "end": 2049.34, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 2049.34, + "end": 2049.64, + "probability": 1.0 + } + ] + }, + { + "id": 936, + "text": "Okay, great.", + "start": 2050.24, + "end": 2050.8, + "words": [ + { + "word": " Okay,", + "start": 2050.24, + "end": 2050.56, + "probability": 0.98193359375 + }, + { + "word": " great.", + "start": 2050.58, + "end": 2050.8, + "probability": 1.0 + } + ] + }, + { + "id": 937, + "text": "And then that way, you can just continue to use it that way.", + "start": 2051.02, + "end": 2053.3, + "words": [ + { + "word": " And", + "start": 2051.02, + "end": 2051.34, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 2051.34, + "end": 2051.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 2051.5, + "end": 2051.64, + "probability": 0.99560546875 + }, + { + "word": " way,", + "start": 2051.64, + "end": 2051.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 2051.92, + "end": 2052.08, + "probability": 1.0 + }, + { + "word": " can", + "start": 2052.08, + "end": 2052.22, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 2052.22, + "end": 2052.38, + "probability": 1.0 + }, + { + "word": " continue", + "start": 2052.38, + "end": 2052.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 2052.62, + "end": 2052.78, + "probability": 1.0 + }, + { + "word": " use", + "start": 2052.78, + "end": 2052.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 2052.92, + "end": 2053.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 2053.02, + "end": 2053.16, + "probability": 1.0 + }, + { + "word": " way.", + "start": 2053.16, + "end": 2053.3, + "probability": 1.0 + } + ] + }, + { + "id": 938, + "text": "Okay.", + "start": 2053.88, + "end": 2054.2, + "words": [ + { + "word": " Okay.", + "start": 2053.88, + "end": 2054.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 939, + "text": "All right?", + "start": 2054.4, + "end": 2054.66, + "words": [ + { + "word": " All", + "start": 2054.4, + "end": 2054.52, + "probability": 0.93310546875 + }, + { + "word": " right?", + "start": 2054.52, + "end": 2054.66, + "probability": 1.0 + } + ] + }, + { + "id": 940, + "text": "That sounds good.", + "start": 2055.0, + "end": 2055.2, + "words": [ + { + "word": " That", + "start": 2055.0, + "end": 2055.12, + "probability": 0.97802734375 + }, + { + "word": " sounds", + "start": 2055.12, + "end": 2055.2, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 2055.2, + "end": 2055.2, + "probability": 0.97607421875 + } + ] + }, + { + "id": 941, + "text": "So what you should do is call the shop and set up an appointment for that.", + "start": 2055.2, + "end": 2057.9, + "words": [ + { + "word": " So", + "start": 2055.2, + "end": 2055.22, + "probability": 0.9833984375 + }, + { + "word": " what", + "start": 2055.22, + "end": 2055.36, + "probability": 0.85595703125 + }, + { + "word": " you", + "start": 2055.36, + "end": 2055.54, + "probability": 1.0 + }, + { + "word": " should", + "start": 2055.54, + "end": 2055.72, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 2055.72, + "end": 2055.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 2055.96, + "end": 2056.12, + "probability": 1.0 + }, + { + "word": " call", + "start": 2056.12, + "end": 2056.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2056.3, + "end": 2056.48, + "probability": 0.9990234375 + }, + { + "word": " shop", + "start": 2056.48, + "end": 2056.66, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 2056.66, + "end": 2056.92, + "probability": 0.998046875 + }, + { + "word": " set", + "start": 2056.92, + "end": 2057.18, + "probability": 1.0 + }, + { + "word": " up", + "start": 2057.18, + "end": 2057.3, + "probability": 1.0 + }, + { + "word": " an", + "start": 2057.3, + "end": 2057.4, + "probability": 1.0 + }, + { + "word": " appointment", + "start": 2057.4, + "end": 2057.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 2057.56, + "end": 2057.8, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2057.8, + "end": 2057.9, + "probability": 1.0 + } + ] + }, + { + "id": 942, + "text": "We can make that happen for you.", + "start": 2057.96, + "end": 2059.04, + "words": [ + { + "word": " We", + "start": 2057.96, + "end": 2058.04, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2058.04, + "end": 2058.16, + "probability": 1.0 + }, + { + "word": " make", + "start": 2058.16, + "end": 2058.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 2058.34, + "end": 2058.48, + "probability": 1.0 + }, + { + "word": " happen", + "start": 2058.48, + "end": 2058.68, + "probability": 1.0 + }, + { + "word": " for", + "start": 2058.68, + "end": 2058.9, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2058.9, + "end": 2059.04, + "probability": 1.0 + } + ] + }, + { + "id": 943, + "text": "Right.", + "start": 2059.42, + "end": 2059.7, + "words": [ + { + "word": " Right.", + "start": 2059.42, + "end": 2059.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 944, + "text": "You've done wonderful things for my computers.", + "start": 2059.76, + "end": 2061.34, + "words": [ + { + "word": " You've", + "start": 2059.76, + "end": 2059.92, + "probability": 1.0 + }, + { + "word": " done", + "start": 2059.92, + "end": 2060.06, + "probability": 1.0 + }, + { + "word": " wonderful", + "start": 2060.06, + "end": 2060.34, + "probability": 1.0 + }, + { + "word": " things", + "start": 2060.34, + "end": 2060.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 2060.64, + "end": 2060.82, + "probability": 1.0 + }, + { + "word": " my", + "start": 2060.82, + "end": 2060.94, + "probability": 1.0 + }, + { + "word": " computers.", + "start": 2060.94, + "end": 2061.34, + "probability": 0.99267578125 + } + ] + }, + { + "id": 945, + "text": "Well, thank you.", + "start": 2061.86, + "end": 2062.56, + "words": [ + { + "word": " Well,", + "start": 2061.86, + "end": 2062.18, + "probability": 1.0 + }, + { + "word": " thank", + "start": 2062.18, + "end": 2062.38, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2062.38, + "end": 2062.56, + "probability": 1.0 + } + ] + }, + { + "id": 946, + "text": "I appreciate that.", + "start": 2062.58, + "end": 2063.26, + "words": [ + { + "word": " I", + "start": 2062.58, + "end": 2062.64, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 2062.64, + "end": 2062.92, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2062.92, + "end": 2063.26, + "probability": 1.0 + } + ] + }, + { + "id": 947, + "text": "I'm so glad you're back on the air.", + "start": 2063.34, + "end": 2064.9, + "words": [ + { + "word": " I'm", + "start": 2063.34, + "end": 2063.48, + "probability": 1.0 + }, + { + "word": " so", + "start": 2063.48, + "end": 2063.62, + "probability": 1.0 + }, + { + "word": " glad", + "start": 2063.62, + "end": 2063.92, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2063.92, + "end": 2064.16, + "probability": 1.0 + }, + { + "word": " back", + "start": 2064.16, + "end": 2064.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 2064.32, + "end": 2064.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2064.52, + "end": 2064.66, + "probability": 1.0 + }, + { + "word": " air.", + "start": 2064.66, + "end": 2064.9, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "Me too.", + "start": 2065.1, + "end": 2065.5, + "words": [ + { + "word": " Me", + "start": 2065.1, + "end": 2065.32, + "probability": 0.99951171875 + }, + { + "word": " too.", + "start": 2065.32, + "end": 2065.5, + "probability": 0.76904296875 + } + ] + }, + { + "id": 949, + "text": "So, yeah, call the shop, the 304-8300.", + "start": 2065.74, + "end": 2068.42, + "words": [ + { + "word": " So,", + "start": 2065.74, + "end": 2066.06, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 2066.14, + "end": 2066.64, + "probability": 0.99755859375 + }, + { + "word": " call", + "start": 2066.72, + "end": 2066.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2066.88, + "end": 2067.02, + "probability": 1.0 + }, + { + "word": " shop,", + "start": 2067.02, + "end": 2067.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2067.28, + "end": 2067.36, + "probability": 0.9912109375 + }, + { + "word": " 304", + "start": 2067.36, + "end": 2067.98, + "probability": 0.99853515625 + }, + { + "word": "-8300.", + "start": 2067.98, + "end": 2068.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 950, + "text": "Okay, great.", + "start": 2069.04, + "end": 2069.7, + "words": [ + { + "word": " Okay,", + "start": 2069.04, + "end": 2069.36, + "probability": 0.99951171875 + }, + { + "word": " great.", + "start": 2069.44, + "end": 2069.7, + "probability": 1.0 + } + ] + }, + { + "id": 951, + "text": "Thank you very much.", + "start": 2069.9, + "end": 2070.58, + "words": [ + { + "word": " Thank", + "start": 2069.9, + "end": 2070.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 2070.08, + "end": 2070.22, + "probability": 1.0 + }, + { + "word": " very", + "start": 2070.22, + "end": 2070.34, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 2070.34, + "end": 2070.58, + "probability": 1.0 + } + ] + }, + { + "id": 952, + "text": "Thank you so much.", + "start": 2070.62, + "end": 2071.5, + "words": [ + { + "word": " Thank", + "start": 2070.62, + "end": 2070.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2070.84, + "end": 2071.02, + "probability": 1.0 + }, + { + "word": " so", + "start": 2071.02, + "end": 2071.16, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 2071.16, + "end": 2071.5, + "probability": 1.0 + } + ] + }, + { + "id": 953, + "text": "Goodbye.", + "start": 2071.58, + "end": 2071.78, + "words": [ + { + "word": " Goodbye.", + "start": 2071.58, + "end": 2071.78, + "probability": 0.73046875 + } + ] + }, + { + "id": 954, + "text": "Bye.", + "start": 2071.96, + "end": 2072.28, + "words": [ + { + "word": " Bye.", + "start": 2071.96, + "end": 2072.28, + "probability": 0.95068359375 + } + ] + }, + { + "id": 955, + "text": "All right.", + "start": 2072.92, + "end": 2073.4, + "words": [ + { + "word": " All", + "start": 2072.92, + "end": 2073.24, + "probability": 0.83935546875 + }, + { + "word": " right.", + "start": 2073.24, + "end": 2073.4, + "probability": 1.0 + } + ] + }, + { + "id": 956, + "text": "So...", + "start": 2073.48, + "end": 2073.8, + "words": [ + { + "word": " So...", + "start": 2073.48, + "end": 2073.8, + "probability": 0.370849609375 + } + ] + }, + { + "id": 957, + "text": "Well, let's go ahead and throw out the specials for the week,", + "start": 2073.8, + "end": 2075.68, + "words": [ + { + "word": " Well,", + "start": 2073.8, + "end": 2073.9, + "probability": 0.814453125 + }, + { + "word": " let's", + "start": 2073.9, + "end": 2074.46, + "probability": 1.0 + }, + { + "word": " go", + "start": 2074.46, + "end": 2074.54, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 2074.54, + "end": 2074.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 2074.64, + "end": 2074.72, + "probability": 0.99951171875 + }, + { + "word": " throw", + "start": 2074.72, + "end": 2074.86, + "probability": 1.0 + }, + { + "word": " out", + "start": 2074.86, + "end": 2074.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2074.96, + "end": 2075.04, + "probability": 0.99951171875 + }, + { + "word": " specials", + "start": 2075.04, + "end": 2075.4, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 2075.4, + "end": 2075.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2075.48, + "end": 2075.52, + "probability": 1.0 + }, + { + "word": " week,", + "start": 2075.52, + "end": 2075.68, + "probability": 1.0 + } + ] + }, + { + "id": 958, + "text": "just because we're running out of time.", + "start": 2075.68, + "end": 2076.74, + "words": [ + { + "word": " just", + "start": 2075.68, + "end": 2075.8, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 2075.8, + "end": 2075.98, + "probability": 1.0 + }, + { + "word": " we're", + "start": 2075.98, + "end": 2076.2, + "probability": 0.99951171875 + }, + { + "word": " running", + "start": 2076.2, + "end": 2076.32, + "probability": 1.0 + }, + { + "word": " out", + "start": 2076.32, + "end": 2076.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 2076.46, + "end": 2076.56, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2076.56, + "end": 2076.74, + "probability": 1.0 + } + ] + }, + { + "id": 959, + "text": "An hour is not enough to do this show.", + "start": 2076.86, + "end": 2078.88, + "words": [ + { + "word": " An", + "start": 2076.86, + "end": 2077.16, + "probability": 0.97265625 + }, + { + "word": " hour", + "start": 2077.16, + "end": 2077.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 2077.42, + "end": 2077.66, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2077.66, + "end": 2077.82, + "probability": 1.0 + }, + { + "word": " enough", + "start": 2077.82, + "end": 2078.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 2078.1, + "end": 2078.32, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2078.32, + "end": 2078.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 2078.46, + "end": 2078.6, + "probability": 0.4921875 + }, + { + "word": " show.", + "start": 2078.6, + "end": 2078.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 960, + "text": "It really isn't.", + "start": 2078.96, + "end": 2079.44, + "words": [ + { + "word": " It", + "start": 2078.96, + "end": 2079.1, + "probability": 0.99560546875 + }, + { + "word": " really", + "start": 2079.1, + "end": 2079.28, + "probability": 1.0 + }, + { + "word": " isn't.", + "start": 2079.28, + "end": 2079.44, + "probability": 0.99755859375 + } + ] + }, + { + "id": 961, + "text": "I'm just saying.", + "start": 2079.46, + "end": 2079.68, + "words": [ + { + "word": " I'm", + "start": 2079.46, + "end": 2079.46, + "probability": 0.8701171875 + }, + { + "word": " just", + "start": 2079.46, + "end": 2079.46, + "probability": 0.99951171875 + }, + { + "word": " saying.", + "start": 2079.46, + "end": 2079.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 962, + "text": "Harry, make it happen.", + "start": 2079.78, + "end": 2080.74, + "words": [ + { + "word": " Harry,", + "start": 2079.78, + "end": 2079.98, + "probability": 0.98828125 + }, + { + "word": " make", + "start": 2080.16, + "end": 2080.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 2080.4, + "end": 2080.52, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 2080.52, + "end": 2080.74, + "probability": 1.0 + } + ] + }, + { + "id": 963, + "text": "I need an extra hour.", + "start": 2080.82, + "end": 2081.54, + "words": [ + { + "word": " I", + "start": 2080.82, + "end": 2080.96, + "probability": 1.0 + }, + { + "word": " need", + "start": 2080.96, + "end": 2081.04, + "probability": 1.0 + }, + { + "word": " an", + "start": 2081.04, + "end": 2081.14, + "probability": 1.0 + }, + { + "word": " extra", + "start": 2081.14, + "end": 2081.32, + "probability": 1.0 + }, + { + "word": " hour.", + "start": 2081.32, + "end": 2081.54, + "probability": 1.0 + } + ] + }, + { + "id": 964, + "text": "All right.", + "start": 2082.72, + "end": 2083.22, + "words": [ + { + "word": " All", + "start": 2082.72, + "end": 2083.08, + "probability": 0.9560546875 + }, + { + "word": " right.", + "start": 2083.08, + "end": 2083.22, + "probability": 1.0 + } + ] + }, + { + "id": 965, + "text": "So if you want to, get in contact with us, 304-8300.", + "start": 2083.26, + "end": 2087.24, + "words": [ + { + "word": " So", + "start": 2083.26, + "end": 2083.54, + "probability": 0.9228515625 + }, + { + "word": " if", + "start": 2083.54, + "end": 2084.08, + "probability": 0.68896484375 + }, + { + "word": " you", + "start": 2084.08, + "end": 2084.76, + "probability": 1.0 + }, + { + "word": " want", + "start": 2084.76, + "end": 2084.92, + "probability": 1.0 + }, + { + "word": " to,", + "start": 2084.92, + "end": 2085.1, + "probability": 1.0 + }, + { + "word": " get", + "start": 2085.14, + "end": 2085.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 2085.36, + "end": 2085.46, + "probability": 1.0 + }, + { + "word": " contact", + "start": 2085.46, + "end": 2085.96, + "probability": 1.0 + }, + { + "word": " with", + "start": 2085.96, + "end": 2086.14, + "probability": 1.0 + }, + { + "word": " us,", + "start": 2086.14, + "end": 2086.3, + "probability": 1.0 + }, + { + "word": " 304", + "start": 2086.34, + "end": 2086.84, + "probability": 0.9990234375 + }, + { + "word": "-8300.", + "start": 2086.84, + "end": 2087.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 966, + "text": "The special that we're running is,", + "start": 2087.42, + "end": 2088.9, + "words": [ + { + "word": " The", + "start": 2087.42, + "end": 2087.62, + "probability": 0.99951171875 + }, + { + "word": " special", + "start": 2087.62, + "end": 2087.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 2087.86, + "end": 2088.02, + "probability": 1.0 + }, + { + "word": " we're", + "start": 2088.02, + "end": 2088.14, + "probability": 1.0 + }, + { + "word": " running", + "start": 2088.14, + "end": 2088.38, + "probability": 1.0 + }, + { + "word": " is,", + "start": 2088.38, + "end": 2088.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 967, + "text": "if you are a member of our newsletter every week,", + "start": 2089.04, + "end": 2092.44, + "words": [ + { + "word": " if", + "start": 2089.04, + "end": 2089.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 2089.2, + "end": 2089.36, + "probability": 1.0 + }, + { + "word": " are", + "start": 2089.36, + "end": 2089.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 2089.54, + "end": 2089.8, + "probability": 1.0 + }, + { + "word": " member", + "start": 2089.8, + "end": 2090.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 2090.44, + "end": 2090.68, + "probability": 1.0 + }, + { + "word": " our", + "start": 2090.68, + "end": 2090.82, + "probability": 1.0 + }, + { + "word": " newsletter", + "start": 2090.82, + "end": 2091.38, + "probability": 1.0 + }, + { + "word": " every", + "start": 2091.38, + "end": 2092.12, + "probability": 0.99658203125 + }, + { + "word": " week,", + "start": 2092.12, + "end": 2092.44, + "probability": 1.0 + } + ] + }, + { + "id": 968, + "text": "you would know this already.", + "start": 2092.48, + "end": 2093.46, + "words": [ + { + "word": " you", + "start": 2092.48, + "end": 2092.62, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2092.62, + "end": 2092.78, + "probability": 1.0 + }, + { + "word": " know", + "start": 2092.78, + "end": 2092.98, + "probability": 1.0 + }, + { + "word": " this", + "start": 2092.98, + "end": 2093.16, + "probability": 1.0 + }, + { + "word": " already.", + "start": 2093.16, + "end": 2093.46, + "probability": 1.0 + } + ] + }, + { + "id": 969, + "text": "But in-shop labor is basically $20 an hour off.", + "start": 2094.18, + "end": 2097.34, + "words": [ + { + "word": " But", + "start": 2094.18, + "end": 2094.54, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 2094.54, + "end": 2094.76, + "probability": 0.62890625 + }, + { + "word": "-shop", + "start": 2094.76, + "end": 2094.92, + "probability": 0.9921875 + }, + { + "word": " labor", + "start": 2094.92, + "end": 2095.14, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2095.14, + "end": 2095.6, + "probability": 1.0 + }, + { + "word": " basically", + "start": 2095.6, + "end": 2096.28, + "probability": 0.99951171875 + }, + { + "word": " $20", + "start": 2096.28, + "end": 2096.64, + "probability": 1.0 + }, + { + "word": " an", + "start": 2096.64, + "end": 2096.98, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2096.98, + "end": 2097.14, + "probability": 1.0 + }, + { + "word": " off.", + "start": 2097.14, + "end": 2097.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 970, + "text": "It's $55 an hour instead of $75, as it normally would be.", + "start": 2097.42, + "end": 2100.64, + "words": [ + { + "word": " It's", + "start": 2097.42, + "end": 2097.54, + "probability": 1.0 + }, + { + "word": " $55", + "start": 2097.54, + "end": 2097.9, + "probability": 1.0 + }, + { + "word": " an", + "start": 2097.9, + "end": 2098.36, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 2098.36, + "end": 2098.5, + "probability": 1.0 + }, + { + "word": " instead", + "start": 2098.5, + "end": 2098.68, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 2098.68, + "end": 2098.86, + "probability": 1.0 + }, + { + "word": " $75,", + "start": 2098.86, + "end": 2099.3, + "probability": 0.98046875 + }, + { + "word": " as", + "start": 2099.4, + "end": 2099.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 2099.62, + "end": 2099.7, + "probability": 1.0 + }, + { + "word": " normally", + "start": 2099.7, + "end": 2100.04, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2100.04, + "end": 2100.38, + "probability": 1.0 + }, + { + "word": " be.", + "start": 2100.38, + "end": 2100.64, + "probability": 1.0 + } + ] + }, + { + "id": 971, + "text": "So if you come into the shop,", + "start": 2100.98, + "end": 2103.32, + "words": [ + { + "word": " So", + "start": 2100.98, + "end": 2101.34, + "probability": 0.9951171875 + }, + { + "word": " if", + "start": 2101.34, + "end": 2101.78, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2101.78, + "end": 2102.04, + "probability": 1.0 + }, + { + "word": " come", + "start": 2102.04, + "end": 2102.8, + "probability": 0.96044921875 + }, + { + "word": " into", + "start": 2102.8, + "end": 2103.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2103.0, + "end": 2103.12, + "probability": 1.0 + }, + { + "word": " shop,", + "start": 2103.12, + "end": 2103.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 972, + "text": "you can mention that you heard this on the show.", + "start": 2103.32, + "end": 2105.94, + "words": [ + { + "word": " you", + "start": 2103.32, + "end": 2103.6, + "probability": 0.460205078125 + }, + { + "word": " can", + "start": 2103.6, + "end": 2103.78, + "probability": 0.99853515625 + }, + { + "word": " mention", + "start": 2103.78, + "end": 2104.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2104.2, + "end": 2104.48, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2104.48, + "end": 2104.64, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2104.64, + "end": 2104.84, + "probability": 0.99755859375 + }, + { + "word": " this", + "start": 2104.84, + "end": 2105.06, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2105.06, + "end": 2105.32, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2105.32, + "end": 2105.54, + "probability": 1.0 + }, + { + "word": " show.", + "start": 2105.54, + "end": 2105.94, + "probability": 1.0 + } + ] + }, + { + "id": 973, + "text": "You have to mention it.", + "start": 2106.32, + "end": 2107.46, + "words": [ + { + "word": " You", + "start": 2106.32, + "end": 2106.68, + "probability": 0.74267578125 + }, + { + "word": " have", + "start": 2106.68, + "end": 2106.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 2106.88, + "end": 2107.02, + "probability": 1.0 + }, + { + "word": " mention", + "start": 2107.02, + "end": 2107.22, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2107.22, + "end": 2107.46, + "probability": 1.0 + } + ] + }, + { + "id": 974, + "text": "Otherwise, you don't get the deal, just so you know.", + "start": 2107.5, + "end": 2109.92, + "words": [ + { + "word": " Otherwise,", + "start": 2107.5, + "end": 2107.86, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 2107.98, + "end": 2108.14, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2108.14, + "end": 2108.28, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2108.28, + "end": 2108.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2108.42, + "end": 2108.6, + "probability": 1.0 + }, + { + "word": " deal,", + "start": 2108.6, + "end": 2108.86, + "probability": 1.0 + }, + { + "word": " just", + "start": 2108.98, + "end": 2109.44, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 2109.44, + "end": 2109.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 2109.58, + "end": 2109.74, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2109.74, + "end": 2109.92, + "probability": 1.0 + } + ] + }, + { + "id": 975, + "text": "Mention that you heard it on the show,", + "start": 2110.42, + "end": 2111.64, + "words": [ + { + "word": " Mention", + "start": 2110.42, + "end": 2110.78, + "probability": 0.990234375 + }, + { + "word": " that", + "start": 2110.78, + "end": 2110.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 2110.92, + "end": 2111.02, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2111.02, + "end": 2111.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 2111.16, + "end": 2111.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 2111.26, + "end": 2111.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2111.38, + "end": 2111.48, + "probability": 1.0 + }, + { + "word": " show,", + "start": 2111.48, + "end": 2111.64, + "probability": 1.0 + } + ] + }, + { + "id": 976, + "text": "and you get a discount for the service after check-in.", + "start": 2111.72, + "end": 2115.24, + "words": [ + { + "word": " and", + "start": 2111.72, + "end": 2112.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2112.04, + "end": 2112.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 2112.7, + "end": 2113.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 2113.02, + "end": 2113.16, + "probability": 1.0 + }, + { + "word": " discount", + "start": 2113.16, + "end": 2113.48, + "probability": 1.0 + }, + { + "word": " for", + "start": 2113.48, + "end": 2113.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2113.8, + "end": 2113.88, + "probability": 1.0 + }, + { + "word": " service", + "start": 2113.88, + "end": 2114.2, + "probability": 1.0 + }, + { + "word": " after", + "start": 2114.2, + "end": 2114.52, + "probability": 0.998046875 + }, + { + "word": " check", + "start": 2114.52, + "end": 2115.04, + "probability": 0.99072265625 + }, + { + "word": "-in.", + "start": 2115.04, + "end": 2115.24, + "probability": 0.99462890625 + } + ] + }, + { + "id": 977, + "text": "So go ahead and do that.", + "start": 2115.38, + "end": 2117.66, + "words": [ + { + "word": " So", + "start": 2115.38, + "end": 2115.66, + "probability": 0.76123046875 + }, + { + "word": " go", + "start": 2115.66, + "end": 2117.18, + "probability": 0.76904296875 + }, + { + "word": " ahead", + "start": 2117.18, + "end": 2117.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 2117.26, + "end": 2117.36, + "probability": 1.0 + }, + { + "word": " do", + "start": 2117.36, + "end": 2117.5, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2117.5, + "end": 2117.66, + "probability": 1.0 + } + ] + }, + { + "id": 978, + "text": "Also, if you are interested,", + "start": 2117.78, + "end": 2119.32, + "words": [ + { + "word": " Also,", + "start": 2117.78, + "end": 2118.0, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2118.14, + "end": 2118.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 2118.48, + "end": 2118.66, + "probability": 1.0 + }, + { + "word": " are", + "start": 2118.66, + "end": 2118.9, + "probability": 1.0 + }, + { + "word": " interested,", + "start": 2118.9, + "end": 2119.32, + "probability": 1.0 + } + ] + }, + { + "id": 979, + "text": "we're going to offer 50% off for one week only web development.", + "start": 2119.52, + "end": 2122.88, + "words": [ + { + "word": " we're", + "start": 2119.52, + "end": 2119.68, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2119.68, + "end": 2119.74, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2119.74, + "end": 2119.86, + "probability": 1.0 + }, + { + "word": " offer", + "start": 2119.86, + "end": 2120.14, + "probability": 1.0 + }, + { + "word": " 50", + "start": 2120.14, + "end": 2120.82, + "probability": 0.9912109375 + }, + { + "word": "%", + "start": 2120.82, + "end": 2121.22, + "probability": 0.99560546875 + }, + { + "word": " off", + "start": 2121.22, + "end": 2121.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 2121.46, + "end": 2121.6, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 2121.6, + "end": 2121.76, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 2121.76, + "end": 2121.96, + "probability": 0.7978515625 + }, + { + "word": " only", + "start": 2121.96, + "end": 2122.18, + "probability": 0.9990234375 + }, + { + "word": " web", + "start": 2122.18, + "end": 2122.42, + "probability": 0.935546875 + }, + { + "word": " development.", + "start": 2122.42, + "end": 2122.88, + "probability": 1.0 + } + ] + }, + { + "id": 980, + "text": "It'll make Rob happy.", + "start": 2123.12, + "end": 2123.84, + "words": [ + { + "word": " It'll", + "start": 2123.12, + "end": 2123.3, + "probability": 0.8544921875 + }, + { + "word": " make", + "start": 2123.3, + "end": 2123.46, + "probability": 1.0 + }, + { + "word": " Rob", + "start": 2123.46, + "end": 2123.68, + "probability": 1.0 + }, + { + "word": " happy.", + "start": 2123.68, + "end": 2123.84, + "probability": 1.0 + } + ] + }, + { + "id": 981, + "text": "So just if you want to talk about the web presence and how...", + "start": 2125.4599999999996, + "end": 2128.82, + "words": [ + { + "word": " So", + "start": 2125.4599999999996, + "end": 2125.8199999999997, + "probability": 0.98583984375 + }, + { + "word": " just", + "start": 2125.8199999999997, + "end": 2126.18, + "probability": 0.5087890625 + }, + { + "word": " if", + "start": 2126.18, + "end": 2126.62, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2126.62, + "end": 2126.8, + "probability": 1.0 + }, + { + "word": " want", + "start": 2126.8, + "end": 2126.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2126.98, + "end": 2127.1, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2127.1, + "end": 2127.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 2127.3, + "end": 2127.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 2127.54, + "end": 2127.72, + "probability": 1.0 + }, + { + "word": " web", + "start": 2127.72, + "end": 2127.86, + "probability": 0.99755859375 + }, + { + "word": " presence", + "start": 2127.86, + "end": 2128.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 2128.2, + "end": 2128.4, + "probability": 0.72802734375 + }, + { + "word": " how...", + "start": 2128.4, + "end": 2128.82, + "probability": 0.61083984375 + } + ] + }, + { + "id": 982, + "text": "You don't even know how important it is, right?", + "start": 2129.2999999999997, + "end": 2131.4, + "words": [ + { + "word": " You", + "start": 2129.2999999999997, + "end": 2129.66, + "probability": 0.9951171875 + }, + { + "word": " don't", + "start": 2129.66, + "end": 2129.96, + "probability": 1.0 + }, + { + "word": " even", + "start": 2129.96, + "end": 2130.06, + "probability": 1.0 + }, + { + "word": " know", + "start": 2130.06, + "end": 2130.24, + "probability": 1.0 + }, + { + "word": " how", + "start": 2130.24, + "end": 2130.38, + "probability": 1.0 + }, + { + "word": " important", + "start": 2130.38, + "end": 2130.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 2130.66, + "end": 2130.82, + "probability": 1.0 + }, + { + "word": " is,", + "start": 2130.82, + "end": 2131.02, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2131.08, + "end": 2131.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 983, + "text": "Because, Terry, when was the last time that you looked at a...", + "start": 2131.5, + "end": 2133.3, + "words": [ + { + "word": " Because,", + "start": 2131.5, + "end": 2131.76, + "probability": 0.92138671875 + }, + { + "word": " Terry,", + "start": 2131.76, + "end": 2131.98, + "probability": 0.444580078125 + }, + { + "word": " when", + "start": 2132.06, + "end": 2132.18, + "probability": 0.9951171875 + }, + { + "word": " was", + "start": 2132.18, + "end": 2132.34, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2132.34, + "end": 2132.4, + "probability": 1.0 + }, + { + "word": " last", + "start": 2132.4, + "end": 2132.58, + "probability": 1.0 + }, + { + "word": " time", + "start": 2132.58, + "end": 2132.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 2132.8, + "end": 2132.9, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 2132.9, + "end": 2132.96, + "probability": 1.0 + }, + { + "word": " looked", + "start": 2132.96, + "end": 2133.12, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2133.12, + "end": 2133.22, + "probability": 0.984375 + }, + { + "word": " a...", + "start": 2133.22, + "end": 2133.3, + "probability": 0.2197265625 + } + ] + }, + { + "id": 984, + "text": "Phone book?", + "start": 2133.32, + "end": 2133.52, + "words": [ + { + "word": " Phone", + "start": 2133.32, + "end": 2133.4, + "probability": 0.041046142578125 + }, + { + "word": " book?", + "start": 2133.4, + "end": 2133.52, + "probability": 0.68603515625 + } + ] + }, + { + "id": 985, + "text": "I was a child, and I used it to stand on something.", + "start": 2134.7999999999997, + "end": 2137.78, + "words": [ + { + "word": " I", + "start": 2134.7999999999997, + "end": 2135.2, + "probability": 0.86572265625 + }, + { + "word": " was", + "start": 2135.2, + "end": 2135.6, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2135.6, + "end": 2135.8, + "probability": 1.0 + }, + { + "word": " child,", + "start": 2135.8, + "end": 2136.2, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2136.24, + "end": 2136.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 2136.4, + "end": 2136.5, + "probability": 1.0 + }, + { + "word": " used", + "start": 2136.5, + "end": 2136.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 2136.74, + "end": 2136.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2136.84, + "end": 2136.94, + "probability": 1.0 + }, + { + "word": " stand", + "start": 2136.94, + "end": 2137.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 2137.2, + "end": 2137.46, + "probability": 1.0 + }, + { + "word": " something.", + "start": 2137.46, + "end": 2137.78, + "probability": 1.0 + } + ] + }, + { + "id": 986, + "text": "Right.", + "start": 2137.82, + "end": 2138.1, + "words": [ + { + "word": " Right.", + "start": 2137.82, + "end": 2138.1, + "probability": 0.88525390625 + } + ] + }, + { + "id": 987, + "text": "See, now that's the only reason that phone books exist anymore, right?", + "start": 2138.24, + "end": 2143.7, + "words": [ + { + "word": " See,", + "start": 2138.24, + "end": 2138.64, + "probability": 0.99072265625 + }, + { + "word": " now", + "start": 2138.78, + "end": 2138.94, + "probability": 0.994140625 + }, + { + "word": " that's", + "start": 2138.94, + "end": 2139.38, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 2139.38, + "end": 2139.9, + "probability": 0.99267578125 + }, + { + "word": " only", + "start": 2139.9, + "end": 2140.38, + "probability": 1.0 + }, + { + "word": " reason", + "start": 2140.38, + "end": 2141.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 2141.38, + "end": 2141.7, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2141.7, + "end": 2141.86, + "probability": 0.99951171875 + }, + { + "word": " books", + "start": 2141.86, + "end": 2142.02, + "probability": 1.0 + }, + { + "word": " exist", + "start": 2142.02, + "end": 2142.58, + "probability": 1.0 + }, + { + "word": " anymore,", + "start": 2142.58, + "end": 2143.14, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2143.38, + "end": 2143.7, + "probability": 1.0 + } + ] + }, + { + "id": 988, + "text": "If you're cold in the winter, you can set them on fire.", + "start": 2144.22, + "end": 2146.54, + "words": [ + { + "word": " If", + "start": 2144.22, + "end": 2144.62, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 2144.62, + "end": 2144.82, + "probability": 1.0 + }, + { + "word": " cold", + "start": 2144.82, + "end": 2145.08, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2145.08, + "end": 2145.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2145.3, + "end": 2145.34, + "probability": 1.0 + }, + { + "word": " winter,", + "start": 2145.34, + "end": 2145.56, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2145.64, + "end": 2145.76, + "probability": 1.0 + }, + { + "word": " can", + "start": 2145.76, + "end": 2145.88, + "probability": 1.0 + }, + { + "word": " set", + "start": 2145.88, + "end": 2146.04, + "probability": 1.0 + }, + { + "word": " them", + "start": 2146.04, + "end": 2146.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 2146.16, + "end": 2146.26, + "probability": 1.0 + }, + { + "word": " fire.", + "start": 2146.26, + "end": 2146.54, + "probability": 1.0 + } + ] + }, + { + "id": 989, + "text": "Otherwise, basically, I want to be able to cite, you know,", + "start": 2149.2, + "end": 2153.6, + "words": [ + { + "word": " Otherwise,", + "start": 2149.2, + "end": 2149.6, + "probability": 0.98193359375 + }, + { + "word": " basically,", + "start": 2149.6, + "end": 2150.0, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2150.02, + "end": 2150.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 2150.42, + "end": 2150.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 2150.7, + "end": 2150.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 2150.86, + "end": 2150.96, + "probability": 1.0 + }, + { + "word": " able", + "start": 2150.96, + "end": 2151.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 2151.1, + "end": 2151.34, + "probability": 1.0 + }, + { + "word": " cite,", + "start": 2151.34, + "end": 2151.98, + "probability": 0.98486328125 + }, + { + "word": " you", + "start": 2152.8, + "end": 2153.4, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2153.4, + "end": 2153.6, + "probability": 1.0 + } + ] + }, + { + "id": 990, + "text": "CenturyLink, your request, or whatever their name is these days,", + "start": 2154.62, + "end": 2157.46, + "words": [ + { + "word": " CenturyLink,", + "start": 2154.62, + "end": 2155.02, + "probability": 0.9873046875 + }, + { + "word": " your", + "start": 2155.02, + "end": 2155.42, + "probability": 0.92724609375 + }, + { + "word": " request,", + "start": 2155.42, + "end": 2155.84, + "probability": 0.95068359375 + }, + { + "word": " or", + "start": 2155.98, + "end": 2156.12, + "probability": 0.9990234375 + }, + { + "word": " whatever", + "start": 2156.12, + "end": 2156.4, + "probability": 1.0 + }, + { + "word": " their", + "start": 2156.4, + "end": 2156.62, + "probability": 1.0 + }, + { + "word": " name", + "start": 2156.62, + "end": 2156.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 2156.8, + "end": 2156.96, + "probability": 1.0 + }, + { + "word": " these", + "start": 2156.96, + "end": 2157.1, + "probability": 0.99951171875 + }, + { + "word": " days,", + "start": 2157.1, + "end": 2157.46, + "probability": 1.0 + } + ] + }, + { + "id": 991, + "text": "with a littering charge every time they drop a phone book at my place.", + "start": 2157.48, + "end": 2160.26, + "words": [ + { + "word": " with", + "start": 2157.48, + "end": 2157.86, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2157.86, + "end": 2158.0, + "probability": 0.99560546875 + }, + { + "word": " littering", + "start": 2158.0, + "end": 2158.36, + "probability": 0.9990234375 + }, + { + "word": " charge", + "start": 2158.36, + "end": 2158.52, + "probability": 1.0 + }, + { + "word": " every", + "start": 2158.52, + "end": 2158.82, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 2158.82, + "end": 2158.98, + "probability": 1.0 + }, + { + "word": " they", + "start": 2158.98, + "end": 2159.1, + "probability": 1.0 + }, + { + "word": " drop", + "start": 2159.1, + "end": 2159.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 2159.26, + "end": 2159.4, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2159.4, + "end": 2159.58, + "probability": 1.0 + }, + { + "word": " book", + "start": 2159.58, + "end": 2159.72, + "probability": 1.0 + }, + { + "word": " at", + "start": 2159.72, + "end": 2159.88, + "probability": 1.0 + }, + { + "word": " my", + "start": 2159.88, + "end": 2159.98, + "probability": 0.99951171875 + }, + { + "word": " place.", + "start": 2159.98, + "end": 2160.26, + "probability": 1.0 + } + ] + }, + { + "id": 992, + "text": "I never, ever open them.", + "start": 2160.38, + "end": 2161.7, + "words": [ + { + "word": " I", + "start": 2160.38, + "end": 2160.78, + "probability": 1.0 + }, + { + "word": " never,", + "start": 2160.78, + "end": 2160.94, + "probability": 1.0 + }, + { + "word": " ever", + "start": 2161.04, + "end": 2161.24, + "probability": 1.0 + }, + { + "word": " open", + "start": 2161.24, + "end": 2161.54, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2161.54, + "end": 2161.7, + "probability": 1.0 + } + ] + }, + { + "id": 993, + "text": "I don't advertise in them.", + "start": 2161.78, + "end": 2163.02, + "words": [ + { + "word": " I", + "start": 2161.78, + "end": 2162.08, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2162.08, + "end": 2162.24, + "probability": 1.0 + }, + { + "word": " advertise", + "start": 2162.24, + "end": 2162.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 2162.58, + "end": 2162.84, + "probability": 0.9990234375 + }, + { + "word": " them.", + "start": 2162.84, + "end": 2163.02, + "probability": 1.0 + } + ] + }, + { + "id": 994, + "text": "I refuse to even look at one, right?", + "start": 2163.32, + "end": 2165.44, + "words": [ + { + "word": " I", + "start": 2163.32, + "end": 2163.6, + "probability": 0.99365234375 + }, + { + "word": " refuse", + "start": 2163.6, + "end": 2163.88, + "probability": 0.97021484375 + }, + { + "word": " to", + "start": 2163.88, + "end": 2164.16, + "probability": 1.0 + }, + { + "word": " even", + "start": 2164.16, + "end": 2164.36, + "probability": 1.0 + }, + { + "word": " look", + "start": 2164.36, + "end": 2164.72, + "probability": 1.0 + }, + { + "word": " at", + "start": 2164.72, + "end": 2164.86, + "probability": 1.0 + }, + { + "word": " one,", + "start": 2164.86, + "end": 2165.08, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2165.18, + "end": 2165.44, + "probability": 0.9228515625 + } + ] + }, + { + "id": 995, + "text": "Just because it's this.", + "start": 2165.5, + "end": 2166.46, + "words": [ + { + "word": " Just", + "start": 2165.5, + "end": 2165.66, + "probability": 0.998046875 + }, + { + "word": " because", + "start": 2165.66, + "end": 2165.88, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2165.88, + "end": 2166.14, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2166.14, + "end": 2166.46, + "probability": 0.951171875 + } + ] + }, + { + "id": 996, + "text": "So it's like fax machines.", + "start": 2166.54, + "end": 2167.86, + "words": [ + { + "word": " So", + "start": 2166.54, + "end": 2166.84, + "probability": 0.876953125 + }, + { + "word": " it's", + "start": 2166.84, + "end": 2167.14, + "probability": 0.94873046875 + }, + { + "word": " like", + "start": 2167.14, + "end": 2167.32, + "probability": 1.0 + }, + { + "word": " fax", + "start": 2167.32, + "end": 2167.68, + "probability": 0.9990234375 + }, + { + "word": " machines.", + "start": 2167.68, + "end": 2167.86, + "probability": 1.0 + } + ] + }, + { + "id": 997, + "text": "They don't exist anymore.", + "start": 2168.08, + "end": 2168.92, + "words": [ + { + "word": " They", + "start": 2168.08, + "end": 2168.2, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2168.2, + "end": 2168.36, + "probability": 1.0 + }, + { + "word": " exist", + "start": 2168.36, + "end": 2168.54, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 2168.54, + "end": 2168.92, + "probability": 1.0 + } + ] + }, + { + "id": 998, + "text": "Yeah.", + "start": 2169.08, + "end": 2169.34, + "words": [ + { + "word": " Yeah.", + "start": 2169.08, + "end": 2169.34, + "probability": 0.344970703125 + } + ] + }, + { + "id": 999, + "text": "Stop using them because they don't exist.", + "start": 2169.42, + "end": 2171.04, + "words": [ + { + "word": " Stop", + "start": 2169.42, + "end": 2169.68, + "probability": 0.98193359375 + }, + { + "word": " using", + "start": 2169.68, + "end": 2170.0, + "probability": 1.0 + }, + { + "word": " them", + "start": 2170.0, + "end": 2170.2, + "probability": 1.0 + }, + { + "word": " because", + "start": 2170.2, + "end": 2170.42, + "probability": 0.9541015625 + }, + { + "word": " they", + "start": 2170.42, + "end": 2170.6, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2170.6, + "end": 2170.82, + "probability": 1.0 + }, + { + "word": " exist.", + "start": 2170.82, + "end": 2171.04, + "probability": 1.0 + } + ] + }, + { + "id": 1000, + "text": "That thing that you're sending paper through and sending facsimile images to other people,", + "start": 2171.1, + "end": 2175.34, + "words": [ + { + "word": " That", + "start": 2171.1, + "end": 2171.26, + "probability": 0.99853515625 + }, + { + "word": " thing", + "start": 2171.26, + "end": 2171.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2171.48, + "end": 2171.62, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2171.62, + "end": 2171.78, + "probability": 1.0 + }, + { + "word": " sending", + "start": 2171.78, + "end": 2172.06, + "probability": 1.0 + }, + { + "word": " paper", + "start": 2172.06, + "end": 2172.4, + "probability": 0.99951171875 + }, + { + "word": " through", + "start": 2172.4, + "end": 2172.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 2172.68, + "end": 2172.88, + "probability": 0.99951171875 + }, + { + "word": " sending", + "start": 2172.88, + "end": 2173.14, + "probability": 0.9990234375 + }, + { + "word": " facsimile", + "start": 2173.14, + "end": 2174.26, + "probability": 0.98388671875 + }, + { + "word": " images", + "start": 2174.26, + "end": 2174.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2174.54, + "end": 2174.84, + "probability": 1.0 + }, + { + "word": " other", + "start": 2174.84, + "end": 2175.02, + "probability": 1.0 + }, + { + "word": " people,", + "start": 2175.02, + "end": 2175.34, + "probability": 1.0 + } + ] + }, + { + "id": 1001, + "text": "it's a figment of your imagination.", + "start": 2175.42, + "end": 2177.24, + "words": [ + { + "word": " it's", + "start": 2175.42, + "end": 2176.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2176.06, + "end": 2176.12, + "probability": 1.0 + }, + { + "word": " figment", + "start": 2176.12, + "end": 2176.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2176.56, + "end": 2176.72, + "probability": 1.0 + }, + { + "word": " your", + "start": 2176.72, + "end": 2176.82, + "probability": 1.0 + }, + { + "word": " imagination.", + "start": 2176.82, + "end": 2177.24, + "probability": 1.0 + } + ] + }, + { + "id": 1002, + "text": "Stop using it, right?", + "start": 2177.24, + "end": 2178.58, + "words": [ + { + "word": " Stop", + "start": 2177.24, + "end": 2177.66, + "probability": 0.99951171875 + }, + { + "word": " using", + "start": 2177.66, + "end": 2177.92, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2177.92, + "end": 2178.18, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2178.2, + "end": 2178.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1003, + "text": "Get with the digital already.", + "start": 2178.64, + "end": 2179.9, + "words": [ + { + "word": " Get", + "start": 2178.64, + "end": 2179.04, + "probability": 0.99658203125 + }, + { + "word": " with", + "start": 2179.04, + "end": 2179.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2179.24, + "end": 2179.34, + "probability": 1.0 + }, + { + "word": " digital", + "start": 2179.34, + "end": 2179.58, + "probability": 1.0 + }, + { + "word": " already.", + "start": 2179.58, + "end": 2179.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1004, + "text": "All right.", + "start": 2180.28, + "end": 2180.96, + "words": [ + { + "word": " All", + "start": 2180.28, + "end": 2180.76, + "probability": 0.90380859375 + }, + { + "word": " right.", + "start": 2180.76, + "end": 2180.96, + "probability": 1.0 + } + ] + }, + { + "id": 1005, + "text": "Let's go ahead and take a break.", + "start": 2181.0, + "end": 2181.92, + "words": [ + { + "word": " Let's", + "start": 2181.0, + "end": 2181.36, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 2181.36, + "end": 2181.4, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 2181.4, + "end": 2181.52, + "probability": 0.97998046875 + }, + { + "word": " and", + "start": 2181.52, + "end": 2181.56, + "probability": 1.0 + }, + { + "word": " take", + "start": 2181.56, + "end": 2181.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 2181.66, + "end": 2181.78, + "probability": 1.0 + }, + { + "word": " break.", + "start": 2181.78, + "end": 2181.92, + "probability": 1.0 + } + ] + }, + { + "id": 1006, + "text": "Computer troubles?", + "start": 2183.86, + "end": 2184.78, + "words": [ + { + "word": " Computer", + "start": 2183.86, + "end": 2184.34, + "probability": 0.97216796875 + }, + { + "word": " troubles?", + "start": 2184.34, + "end": 2184.78, + "probability": 0.974609375 + } + ] + }, + { + "id": 1007, + "text": "Need some advice?", + "start": 2185.04, + "end": 2186.0, + "words": [ + { + "word": " Need", + "start": 2185.04, + "end": 2185.52, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 2185.52, + "end": 2185.72, + "probability": 1.0 + }, + { + "word": " advice?", + "start": 2185.72, + "end": 2186.0, + "probability": 1.0 + } + ] + }, + { + "id": 1008, + "text": "Call in now.", + "start": 2186.3, + "end": 2187.0, + "words": [ + { + "word": " Call", + "start": 2186.3, + "end": 2186.6, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 2186.6, + "end": 2186.8, + "probability": 0.99072265625 + }, + { + "word": " now.", + "start": 2186.8, + "end": 2187.0, + "probability": 1.0 + } + ] + }, + { + "id": 1009, + "text": "Mike Swanson will be back after these messages.", + "start": 2187.18, + "end": 2189.44, + "words": [ + { + "word": " Mike", + "start": 2187.18, + "end": 2187.54, + "probability": 0.99853515625 + }, + { + "word": " Swanson", + "start": 2187.54, + "end": 2187.88, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 2187.88, + "end": 2188.12, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 2188.12, + "end": 2188.22, + "probability": 1.0 + }, + { + "word": " back", + "start": 2188.22, + "end": 2188.46, + "probability": 1.0 + }, + { + "word": " after", + "start": 2188.46, + "end": 2188.82, + "probability": 1.0 + }, + { + "word": " these", + "start": 2188.82, + "end": 2189.04, + "probability": 1.0 + }, + { + "word": " messages.", + "start": 2189.04, + "end": 2189.44, + "probability": 1.0 + } + ] + }, + { + "id": 1010, + "text": "The Computer Guru Show.", + "start": 2189.72, + "end": 2191.08, + "words": [ + { + "word": " The", + "start": 2189.72, + "end": 2190.1, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 2190.1, + "end": 2190.38, + "probability": 0.99853515625 + }, + { + "word": " Guru", + "start": 2190.38, + "end": 2190.72, + "probability": 0.99462890625 + }, + { + "word": " Show.", + "start": 2190.72, + "end": 2191.08, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1011, + "text": "AM 1030.", + "start": 2191.28, + "end": 2192.3, + "words": [ + { + "word": " AM", + "start": 2191.28, + "end": 2191.7, + "probability": 0.96337890625 + }, + { + "word": " 1030.", + "start": 2191.7, + "end": 2192.3, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1012, + "text": "KVOY.", + "start": 2192.66, + "end": 2193.14, + "words": [ + { + "word": " KVOY.", + "start": 2192.66, + "end": 2193.14, + "probability": 0.78955078125 + } + ] + }, + { + "id": 1013, + "text": "The Voice.", + "start": 2193.32, + "end": 2194.04, + "words": [ + { + "word": " The", + "start": 2193.32, + "end": 2193.74, + "probability": 0.201171875 + }, + { + "word": " Voice.", + "start": 2193.74, + "end": 2194.04, + "probability": 0.96337890625 + } + ] + }, + { + "id": 1014, + "text": "Whether you're dealing with hardware installation or, heaven forbid, a virus,", + "start": 2197.68, + "end": 2201.52, + "words": [ + { + "word": " Whether", + "start": 2197.68, + "end": 2198.2, + "probability": 0.92529296875 + }, + { + "word": " you're", + "start": 2198.2, + "end": 2198.46, + "probability": 0.99755859375 + }, + { + "word": " dealing", + "start": 2198.46, + "end": 2198.72, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2198.72, + "end": 2198.94, + "probability": 0.9990234375 + }, + { + "word": " hardware", + "start": 2198.94, + "end": 2199.2, + "probability": 0.99658203125 + }, + { + "word": " installation", + "start": 2199.2, + "end": 2199.58, + "probability": 0.9990234375 + }, + { + "word": " or,", + "start": 2199.58, + "end": 2200.1, + "probability": 0.9794921875 + }, + { + "word": " heaven", + "start": 2200.12, + "end": 2200.32, + "probability": 0.99755859375 + }, + { + "word": " forbid,", + "start": 2200.32, + "end": 2200.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 2200.86, + "end": 2201.14, + "probability": 0.99951171875 + }, + { + "word": " virus,", + "start": 2201.14, + "end": 2201.52, + "probability": 1.0 + } + ] + }, + { + "id": 1015, + "text": "No!", + "start": 2201.66, + "end": 2201.72, + "words": [ + { + "word": " No!", + "start": 2201.66, + "end": 2201.72, + "probability": 0.2005615234375 + } + ] + }, + { + "id": 1016, + "text": "No!", + "start": 2202.1, + "end": 2202.62, + "words": [ + { + "word": " No!", + "start": 2202.1, + "end": 2202.62, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1017, + "text": "No!", + "start": 2202.76, + "end": 2202.94, + "words": [ + { + "word": " No!", + "start": 2202.76, + "end": 2202.94, + "probability": 0.7734375 + } + ] + }, + { + "id": 1018, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 2203.48, + "end": 2206.68, + "words": [ + { + "word": " Mike", + "start": 2203.48, + "end": 2204.0, + "probability": 0.9853515625 + }, + { + "word": " Swanson", + "start": 2204.0, + "end": 2204.46, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2204.46, + "end": 2204.7, + "probability": 1.0 + }, + { + "word": " answering", + "start": 2204.7, + "end": 2205.02, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2205.02, + "end": 2205.36, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2205.36, + "end": 2205.54, + "probability": 0.99853515625 + }, + { + "word": " questions", + "start": 2205.54, + "end": 2205.92, + "probability": 1.0 + }, + { + "word": " one", + "start": 2205.92, + "end": 2206.22, + "probability": 0.99658203125 + }, + { + "word": " by", + "start": 2206.22, + "end": 2206.44, + "probability": 0.97802734375 + }, + { + "word": " one.", + "start": 2206.44, + "end": 2206.68, + "probability": 1.0 + } + ] + }, + { + "id": 1019, + "text": "So call in or chat in with yours.", + "start": 2206.8, + "end": 2208.82, + "words": [ + { + "word": " So", + "start": 2206.8, + "end": 2207.12, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 2207.12, + "end": 2207.34, + "probability": 0.95458984375 + }, + { + "word": " in", + "start": 2207.34, + "end": 2207.56, + "probability": 1.0 + }, + { + "word": " or", + "start": 2207.56, + "end": 2207.8, + "probability": 0.939453125 + }, + { + "word": " chat", + "start": 2207.8, + "end": 2208.08, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 2208.08, + "end": 2208.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 2208.32, + "end": 2208.58, + "probability": 0.99951171875 + }, + { + "word": " yours.", + "start": 2208.58, + "end": 2208.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1020, + "text": "The website?", + "start": 2209.12, + "end": 2209.8, + "words": [ + { + "word": " The", + "start": 2209.12, + "end": 2209.46, + "probability": 0.9990234375 + }, + { + "word": " website?", + "start": 2209.46, + "end": 2209.8, + "probability": 0.998046875 + } + ] + }, + { + "id": 1021, + "text": "Gurushow.com.", + "start": 2210.24, + "end": 2211.32, + "words": [ + { + "word": " Gurushow", + "start": 2210.24, + "end": 2210.76, + "probability": 0.72998046875 + }, + { + "word": ".com.", + "start": 2210.76, + "end": 2211.32, + "probability": 1.0 + } + ] + }, + { + "id": 1022, + "text": "Tune in, click in, and kick back.", + "start": 2211.66, + "end": 2213.92, + "words": [ + { + "word": " Tune", + "start": 2211.66, + "end": 2212.18, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 2212.18, + "end": 2212.38, + "probability": 1.0 + }, + { + "word": " click", + "start": 2212.46, + "end": 2212.84, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 2212.84, + "end": 2213.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 2213.18, + "end": 2213.5, + "probability": 1.0 + }, + { + "word": " kick", + "start": 2213.5, + "end": 2213.62, + "probability": 0.99560546875 + }, + { + "word": " back.", + "start": 2213.62, + "end": 2213.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1023, + "text": "This is The Computer Guru Show on AM 1030.", + "start": 2214.18, + "end": 2217.44, + "words": [ + { + "word": " This", + "start": 2214.18, + "end": 2214.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 2214.7, + "end": 2215.02, + "probability": 1.0 + }, + { + "word": " The", + "start": 2215.02, + "end": 2215.16, + "probability": 0.303955078125 + }, + { + "word": " Computer", + "start": 2215.16, + "end": 2215.42, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 2215.42, + "end": 2215.74, + "probability": 0.990234375 + }, + { + "word": " Show", + "start": 2215.74, + "end": 2216.12, + "probability": 0.9892578125 + }, + { + "word": " on", + "start": 2216.12, + "end": 2216.56, + "probability": 0.99853515625 + }, + { + "word": " AM", + "start": 2216.56, + "end": 2216.86, + "probability": 0.9990234375 + }, + { + "word": " 1030.", + "start": 2216.86, + "end": 2217.44, + "probability": 0.8212890625 + } + ] + }, + { + "id": 1024, + "text": "KVOY.", + "start": 2217.86, + "end": 2218.38, + "words": [ + { + "word": " KVOY.", + "start": 2217.86, + "end": 2218.38, + "probability": 0.8515625 + } + ] + }, + { + "id": 1025, + "text": "The Voice.", + "start": 2218.46, + "end": 2218.96, + "words": [ + { + "word": " The", + "start": 2218.46, + "end": 2218.7, + "probability": 0.99658203125 + }, + { + "word": " Voice.", + "start": 2218.7, + "end": 2218.96, + "probability": 1.0 + } + ] + }, + { + "id": 1026, + "text": "790-2040 if you want to be part of the show.", + "start": 2220.08, + "end": 2222.16, + "words": [ + { + "word": " 790", + "start": 2220.08, + "end": 2220.6, + "probability": 0.9951171875 + }, + { + "word": "-2040", + "start": 2220.6, + "end": 2221.12, + "probability": 0.8662109375 + }, + { + "word": " if", + "start": 2221.12, + "end": 2221.26, + "probability": 0.943359375 + }, + { + "word": " you", + "start": 2221.26, + "end": 2221.36, + "probability": 1.0 + }, + { + "word": " want", + "start": 2221.36, + "end": 2221.48, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2221.48, + "end": 2221.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 2221.56, + "end": 2221.64, + "probability": 1.0 + }, + { + "word": " part", + "start": 2221.64, + "end": 2221.78, + "probability": 0.7431640625 + }, + { + "word": " of", + "start": 2221.78, + "end": 2221.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2221.94, + "end": 2221.96, + "probability": 0.99755859375 + }, + { + "word": " show.", + "start": 2221.96, + "end": 2222.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1027, + "text": "That's 520-790-2040.", + "start": 2222.22, + "end": 2223.3, + "words": [ + { + "word": " That's", + "start": 2222.22, + "end": 2222.4, + "probability": 0.9990234375 + }, + { + "word": " 520", + "start": 2222.4, + "end": 2222.84, + "probability": 0.9345703125 + }, + { + "word": "-790", + "start": 2222.84, + "end": 2223.3, + "probability": 0.61474609375 + }, + { + "word": "-2040.", + "start": 2223.3, + "end": 2223.3, + "probability": 0.78173828125 + } + ] + }, + { + "id": 1028, + "text": "790-2040 for the last segment of this week, just because we're almost out of time.", + "start": 2223.32, + "end": 2227.86, + "words": [ + { + "word": " 790", + "start": 2223.32, + "end": 2223.68, + "probability": 0.865234375 + }, + { + "word": "-2040", + "start": 2223.68, + "end": 2224.32, + "probability": 0.95556640625 + }, + { + "word": " for", + "start": 2224.32, + "end": 2224.48, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 2224.48, + "end": 2224.56, + "probability": 1.0 + }, + { + "word": " last", + "start": 2224.56, + "end": 2224.8, + "probability": 0.99951171875 + }, + { + "word": " segment", + "start": 2224.8, + "end": 2225.2, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2225.2, + "end": 2225.46, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 2225.46, + "end": 2225.64, + "probability": 0.9990234375 + }, + { + "word": " week,", + "start": 2225.64, + "end": 2225.94, + "probability": 1.0 + }, + { + "word": " just", + "start": 2226.04, + "end": 2226.34, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 2226.34, + "end": 2226.68, + "probability": 1.0 + }, + { + "word": " we're", + "start": 2226.68, + "end": 2227.12, + "probability": 1.0 + }, + { + "word": " almost", + "start": 2227.12, + "end": 2227.3, + "probability": 1.0 + }, + { + "word": " out", + "start": 2227.3, + "end": 2227.52, + "probability": 0.9814453125 + }, + { + "word": " of", + "start": 2227.52, + "end": 2227.58, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2227.58, + "end": 2227.86, + "probability": 1.0 + } + ] + }, + { + "id": 1029, + "text": "I know it's a darn shame.", + "start": 2228.24, + "end": 2229.54, + "words": [ + { + "word": " I", + "start": 2228.24, + "end": 2228.6, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 2228.6, + "end": 2228.74, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2228.74, + "end": 2228.96, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 2228.96, + "end": 2228.98, + "probability": 0.99462890625 + }, + { + "word": " darn", + "start": 2228.98, + "end": 2229.14, + "probability": 0.99951171875 + }, + { + "word": " shame.", + "start": 2229.14, + "end": 2229.54, + "probability": 1.0 + } + ] + }, + { + "id": 1030, + "text": "It really is.", + "start": 2229.54, + "end": 2230.24, + "words": [ + { + "word": " It", + "start": 2229.54, + "end": 2229.74, + "probability": 0.99853515625 + }, + { + "word": " really", + "start": 2229.74, + "end": 2229.96, + "probability": 0.99951171875 + }, + { + "word": " is.", + "start": 2229.96, + "end": 2230.24, + "probability": 1.0 + } + ] + }, + { + "id": 1031, + "text": "But, you know, some of us have weekend jobs.", + "start": 2230.36, + "end": 2232.98, + "words": [ + { + "word": " But,", + "start": 2230.36, + "end": 2230.66, + "probability": 0.9658203125 + }, + { + "word": " you", + "start": 2230.66, + "end": 2231.18, + "probability": 0.9931640625 + }, + { + "word": " know,", + "start": 2231.18, + "end": 2231.4, + "probability": 1.0 + }, + { + "word": " some", + "start": 2231.42, + "end": 2232.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2232.0, + "end": 2232.12, + "probability": 1.0 + }, + { + "word": " us", + "start": 2232.12, + "end": 2232.24, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2232.24, + "end": 2232.32, + "probability": 0.93310546875 + }, + { + "word": " weekend", + "start": 2232.32, + "end": 2232.58, + "probability": 0.99853515625 + }, + { + "word": " jobs.", + "start": 2232.58, + "end": 2232.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1032, + "text": "It's gone by really fast, though.", + "start": 2233.16, + "end": 2234.96, + "words": [ + { + "word": " It's", + "start": 2233.16, + "end": 2233.4, + "probability": 1.0 + }, + { + "word": " gone", + "start": 2233.4, + "end": 2233.56, + "probability": 0.9990234375 + }, + { + "word": " by", + "start": 2233.56, + "end": 2233.78, + "probability": 1.0 + }, + { + "word": " really", + "start": 2233.78, + "end": 2234.24, + "probability": 1.0 + }, + { + "word": " fast,", + "start": 2234.24, + "end": 2234.66, + "probability": 1.0 + }, + { + "word": " though.", + "start": 2234.76, + "end": 2234.96, + "probability": 1.0 + } + ] + }, + { + "id": 1033, + "text": "It does happen in a hurry.", + "start": 2234.98, + "end": 2236.22, + "words": [ + { + "word": " It", + "start": 2234.98, + "end": 2235.08, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 2235.08, + "end": 2235.28, + "probability": 0.99951171875 + }, + { + "word": " happen", + "start": 2235.28, + "end": 2235.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 2235.64, + "end": 2235.9, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2235.9, + "end": 2236.0, + "probability": 1.0 + }, + { + "word": " hurry.", + "start": 2236.0, + "end": 2236.22, + "probability": 1.0 + } + ] + }, + { + "id": 1034, + "text": "Except for the people who are bored.", + "start": 2236.8, + "end": 2238.08, + "words": [ + { + "word": " Except", + "start": 2236.8, + "end": 2237.16, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2237.16, + "end": 2237.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 2237.36, + "end": 2237.4, + "probability": 1.0 + }, + { + "word": " people", + "start": 2237.4, + "end": 2237.6, + "probability": 1.0 + }, + { + "word": " who", + "start": 2237.6, + "end": 2237.7, + "probability": 1.0 + }, + { + "word": " are", + "start": 2237.7, + "end": 2237.78, + "probability": 0.99951171875 + }, + { + "word": " bored.", + "start": 2237.78, + "end": 2238.08, + "probability": 1.0 + } + ] + }, + { + "id": 1035, + "text": "Then they're like, when is this show going to be over?", + "start": 2238.16, + "end": 2239.96, + "words": [ + { + "word": " Then", + "start": 2238.16, + "end": 2238.28, + "probability": 0.845703125 + }, + { + "word": " they're", + "start": 2238.28, + "end": 2238.4, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2238.4, + "end": 2238.54, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 2238.7, + "end": 2238.84, + "probability": 0.98779296875 + }, + { + "word": " is", + "start": 2238.84, + "end": 2239.02, + "probability": 1.0 + }, + { + "word": " this", + "start": 2239.02, + "end": 2239.16, + "probability": 0.98095703125 + }, + { + "word": " show", + "start": 2239.16, + "end": 2239.38, + "probability": 1.0 + }, + { + "word": " going", + "start": 2239.38, + "end": 2239.54, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2239.54, + "end": 2239.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 2239.62, + "end": 2239.74, + "probability": 1.0 + }, + { + "word": " over?", + "start": 2239.74, + "end": 2239.96, + "probability": 1.0 + } + ] + }, + { + "id": 1036, + "text": "Right?", + "start": 2240.14, + "end": 2240.5, + "words": [ + { + "word": " Right?", + "start": 2240.14, + "end": 2240.5, + "probability": 0.7568359375 + } + ] + }, + { + "id": 1037, + "text": "I want to talk about some horses and stuff.", + "start": 2240.72, + "end": 2242.44, + "words": [ + { + "word": " I", + "start": 2240.72, + "end": 2241.06, + "probability": 0.9951171875 + }, + { + "word": " want", + "start": 2241.06, + "end": 2241.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2241.16, + "end": 2241.26, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2241.26, + "end": 2241.42, + "probability": 1.0 + }, + { + "word": " about", + "start": 2241.42, + "end": 2241.58, + "probability": 1.0 + }, + { + "word": " some", + "start": 2241.58, + "end": 2241.72, + "probability": 1.0 + }, + { + "word": " horses", + "start": 2241.72, + "end": 2242.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 2242.0, + "end": 2242.22, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2242.22, + "end": 2242.44, + "probability": 1.0 + } + ] + }, + { + "id": 1038, + "text": "That's what's going to happen.", + "start": 2242.6, + "end": 2243.72, + "words": [ + { + "word": " That's", + "start": 2242.6, + "end": 2242.84, + "probability": 1.0 + }, + { + "word": " what's", + "start": 2242.84, + "end": 2243.3, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 2243.3, + "end": 2243.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2243.4, + "end": 2243.5, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 2243.5, + "end": 2243.72, + "probability": 1.0 + } + ] + }, + { + "id": 1039, + "text": "It's going to be an interesting conversation in the hallway here in a minute.", + "start": 2247.42, + "end": 2251.16, + "words": [ + { + "word": " It's", + "start": 2247.42, + "end": 2247.78, + "probability": 0.8564453125 + }, + { + "word": " going", + "start": 2247.78, + "end": 2247.86, + "probability": 0.52099609375 + }, + { + "word": " to", + "start": 2247.86, + "end": 2247.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 2247.96, + "end": 2248.04, + "probability": 1.0 + }, + { + "word": " an", + "start": 2248.04, + "end": 2248.82, + "probability": 0.9990234375 + }, + { + "word": " interesting", + "start": 2248.82, + "end": 2249.54, + "probability": 1.0 + }, + { + "word": " conversation", + "start": 2249.54, + "end": 2250.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 2250.06, + "end": 2250.32, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 2250.32, + "end": 2250.38, + "probability": 1.0 + }, + { + "word": " hallway", + "start": 2250.38, + "end": 2250.56, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 2250.56, + "end": 2250.82, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 2250.82, + "end": 2250.92, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 2250.92, + "end": 2251.0, + "probability": 1.0 + }, + { + "word": " minute.", + "start": 2251.0, + "end": 2251.16, + "probability": 1.0 + } + ] + }, + { + "id": 1040, + "text": "790-2040 if you want to be part of the show.", + "start": 2252.24, + "end": 2253.3, + "words": [ + { + "word": " 790", + "start": 2252.24, + "end": 2252.6, + "probability": 0.9970703125 + }, + { + "word": "-2040", + "start": 2252.6, + "end": 2252.96, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2252.96, + "end": 2253.1, + "probability": 0.072998046875 + }, + { + "word": " you", + "start": 2253.1, + "end": 2253.14, + "probability": 1.0 + }, + { + "word": " want", + "start": 2253.14, + "end": 2253.16, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2253.16, + "end": 2253.18, + "probability": 0.9697265625 + }, + { + "word": " be", + "start": 2253.18, + "end": 2253.3, + "probability": 0.2279052734375 + }, + { + "word": " part", + "start": 2253.3, + "end": 2253.3, + "probability": 0.02227783203125 + }, + { + "word": " of", + "start": 2253.3, + "end": 2253.3, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 2253.3, + "end": 2253.3, + "probability": 0.1129150390625 + }, + { + "word": " show.", + "start": 2253.3, + "end": 2253.3, + "probability": 0.385498046875 + } + ] + }, + { + "id": 1041, + "text": "Now, we talked about popcorn time, and I like this idea.", + "start": 2253.32, + "end": 2257.62, + "words": [ + { + "word": " Now,", + "start": 2253.32, + "end": 2253.68, + "probability": 0.0197296142578125 + }, + { + "word": " we", + "start": 2254.26, + "end": 2254.58, + "probability": 0.953125 + }, + { + "word": " talked", + "start": 2254.58, + "end": 2254.82, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 2254.82, + "end": 2255.0, + "probability": 1.0 + }, + { + "word": " popcorn", + "start": 2255.0, + "end": 2255.4, + "probability": 0.95263671875 + }, + { + "word": " time,", + "start": 2255.4, + "end": 2255.78, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2255.9, + "end": 2256.28, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2256.28, + "end": 2256.88, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2256.88, + "end": 2257.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 2257.14, + "end": 2257.32, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 2257.32, + "end": 2257.62, + "probability": 1.0 + } + ] + }, + { + "id": 1042, + "text": "I'm all about cord cutting.", + "start": 2257.78, + "end": 2258.88, + "words": [ + { + "word": " I'm", + "start": 2257.78, + "end": 2257.9, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 2257.9, + "end": 2258.02, + "probability": 1.0 + }, + { + "word": " about", + "start": 2258.02, + "end": 2258.32, + "probability": 1.0 + }, + { + "word": " cord", + "start": 2258.32, + "end": 2258.56, + "probability": 0.99951171875 + }, + { + "word": " cutting.", + "start": 2258.56, + "end": 2258.88, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1043, + "text": "So we're going to revisit this for a second.", + "start": 2259.12, + "end": 2261.0, + "words": [ + { + "word": " So", + "start": 2259.12, + "end": 2259.6, + "probability": 0.51806640625 + }, + { + "word": " we're", + "start": 2259.6, + "end": 2259.78, + "probability": 0.904296875 + }, + { + "word": " going", + "start": 2259.78, + "end": 2259.84, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2259.84, + "end": 2259.88, + "probability": 1.0 + }, + { + "word": " revisit", + "start": 2259.88, + "end": 2260.2, + "probability": 1.0 + }, + { + "word": " this", + "start": 2260.2, + "end": 2260.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 2260.46, + "end": 2260.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2260.62, + "end": 2260.76, + "probability": 1.0 + }, + { + "word": " second.", + "start": 2260.76, + "end": 2261.0, + "probability": 1.0 + } + ] + }, + { + "id": 1044, + "text": "There are other ways to pull this off.", + "start": 2261.12, + "end": 2263.18, + "words": [ + { + "word": " There", + "start": 2261.12, + "end": 2261.3, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2261.3, + "end": 2261.44, + "probability": 1.0 + }, + { + "word": " other", + "start": 2261.44, + "end": 2261.78, + "probability": 1.0 + }, + { + "word": " ways", + "start": 2261.78, + "end": 2262.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 2262.18, + "end": 2262.46, + "probability": 1.0 + }, + { + "word": " pull", + "start": 2262.46, + "end": 2262.66, + "probability": 1.0 + }, + { + "word": " this", + "start": 2262.66, + "end": 2262.9, + "probability": 1.0 + }, + { + "word": " off.", + "start": 2262.9, + "end": 2263.18, + "probability": 1.0 + } + ] + }, + { + "id": 1045, + "text": "And slightly more legitimate ways to do it.", + "start": 2264.86, + "end": 2267.6, + "words": [ + { + "word": " And", + "start": 2264.86, + "end": 2265.34, + "probability": 0.91650390625 + }, + { + "word": " slightly", + "start": 2265.34, + "end": 2265.82, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 2265.82, + "end": 2266.22, + "probability": 1.0 + }, + { + "word": " legitimate", + "start": 2266.22, + "end": 2266.68, + "probability": 1.0 + }, + { + "word": " ways", + "start": 2266.68, + "end": 2267.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 2267.06, + "end": 2267.28, + "probability": 1.0 + }, + { + "word": " do", + "start": 2267.28, + "end": 2267.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2267.44, + "end": 2267.6, + "probability": 1.0 + } + ] + }, + { + "id": 1046, + "text": "A lot of this stuff is available out there through various other services.", + "start": 2267.7, + "end": 2271.06, + "words": [ + { + "word": " A", + "start": 2267.7, + "end": 2268.14, + "probability": 0.998046875 + }, + { + "word": " lot", + "start": 2268.14, + "end": 2268.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 2268.46, + "end": 2268.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 2268.58, + "end": 2268.7, + "probability": 0.99853515625 + }, + { + "word": " stuff", + "start": 2268.7, + "end": 2268.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 2268.88, + "end": 2269.02, + "probability": 1.0 + }, + { + "word": " available", + "start": 2269.02, + "end": 2269.26, + "probability": 1.0 + }, + { + "word": " out", + "start": 2269.26, + "end": 2269.6, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 2269.6, + "end": 2269.8, + "probability": 1.0 + }, + { + "word": " through", + "start": 2269.8, + "end": 2270.1, + "probability": 0.99951171875 + }, + { + "word": " various", + "start": 2270.1, + "end": 2270.42, + "probability": 1.0 + }, + { + "word": " other", + "start": 2270.42, + "end": 2270.66, + "probability": 1.0 + }, + { + "word": " services.", + "start": 2270.66, + "end": 2271.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1047, + "text": "And we've complained a lot over the weeks about how it's not a good idea to legislate a business model.", + "start": 2272.22, + "end": 2278.8, + "words": [ + { + "word": " And", + "start": 2272.22, + "end": 2272.7, + "probability": 0.99169921875 + }, + { + "word": " we've", + "start": 2272.7, + "end": 2273.18, + "probability": 1.0 + }, + { + "word": " complained", + "start": 2273.18, + "end": 2273.66, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 2273.66, + "end": 2273.96, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2273.96, + "end": 2274.1, + "probability": 1.0 + }, + { + "word": " over", + "start": 2274.1, + "end": 2274.4, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2274.4, + "end": 2274.56, + "probability": 1.0 + }, + { + "word": " weeks", + "start": 2274.56, + "end": 2274.8, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 2274.8, + "end": 2275.04, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 2275.04, + "end": 2275.44, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2275.44, + "end": 2276.38, + "probability": 1.0 + }, + { + "word": " not", + "start": 2276.38, + "end": 2276.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 2276.58, + "end": 2276.76, + "probability": 1.0 + }, + { + "word": " good", + "start": 2276.76, + "end": 2276.88, + "probability": 1.0 + }, + { + "word": " idea", + "start": 2276.88, + "end": 2277.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 2277.22, + "end": 2277.52, + "probability": 0.9990234375 + }, + { + "word": " legislate", + "start": 2277.52, + "end": 2278.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 2278.14, + "end": 2278.2, + "probability": 0.99951171875 + }, + { + "word": " business", + "start": 2278.2, + "end": 2278.4, + "probability": 1.0 + }, + { + "word": " model.", + "start": 2278.4, + "end": 2278.8, + "probability": 1.0 + } + ] + }, + { + "id": 1048, + "text": "It's much better to adapt to the technology that's out there.", + "start": 2279.42, + "end": 2282.88, + "words": [ + { + "word": " It's", + "start": 2279.42, + "end": 2279.9, + "probability": 0.9970703125 + }, + { + "word": " much", + "start": 2279.9, + "end": 2280.12, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 2280.12, + "end": 2280.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 2280.48, + "end": 2281.24, + "probability": 0.99951171875 + }, + { + "word": " adapt", + "start": 2281.24, + "end": 2281.62, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2281.62, + "end": 2281.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2281.9, + "end": 2282.0, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2282.0, + "end": 2282.38, + "probability": 0.57666015625 + }, + { + "word": " that's", + "start": 2282.38, + "end": 2282.62, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 2282.62, + "end": 2282.72, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2282.72, + "end": 2282.88, + "probability": 1.0 + } + ] + }, + { + "id": 1049, + "text": "Right?", + "start": 2282.9, + "end": 2283.02, + "words": [ + { + "word": " Right?", + "start": 2282.9, + "end": 2283.02, + "probability": 0.00013005733489990234 + } + ] + }, + { + "id": 1050, + "text": "Right.", + "start": 2283.02, + "end": 2283.1, + "words": [ + { + "word": " Right.", + "start": 2283.02, + "end": 2283.1, + "probability": 0.10546875 + } + ] + }, + { + "id": 1051, + "text": "Right.", + "start": 2283.1, + "end": 2283.3, + "words": [ + { + "word": " Right.", + "start": 2283.1, + "end": 2283.3, + "probability": 0.407470703125 + } + ] + }, + { + "id": 1052, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1053, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1054, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1055, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1056, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1057, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1058, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1059, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1060, + "text": "", + "start": 2283.3, + "end": 2283.3, + "words": [] + }, + { + "id": 1061, + "text": "Popcorn time is sort of revolutionary in the way that it works.", + "start": 2283.32, + "end": 2287.16, + "words": [ + { + "word": " Popcorn", + "start": 2283.32, + "end": 2283.54, + "probability": 0.5458984375 + }, + { + "word": " time", + "start": 2283.54, + "end": 2283.78, + "probability": 0.80078125 + }, + { + "word": " is", + "start": 2283.78, + "end": 2284.66, + "probability": 0.99853515625 + }, + { + "word": " sort", + "start": 2284.66, + "end": 2285.28, + "probability": 0.95166015625 + }, + { + "word": " of", + "start": 2285.28, + "end": 2285.48, + "probability": 1.0 + }, + { + "word": " revolutionary", + "start": 2285.48, + "end": 2285.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 2285.96, + "end": 2286.36, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2286.36, + "end": 2286.44, + "probability": 1.0 + }, + { + "word": " way", + "start": 2286.44, + "end": 2286.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 2286.62, + "end": 2286.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 2286.8, + "end": 2286.9, + "probability": 1.0 + }, + { + "word": " works.", + "start": 2286.9, + "end": 2287.16, + "probability": 1.0 + } + ] + }, + { + "id": 1062, + "text": "And a lot of people come down on this type of technology.", + "start": 2287.26, + "end": 2290.4, + "words": [ + { + "word": " And", + "start": 2287.26, + "end": 2287.34, + "probability": 0.92138671875 + }, + { + "word": " a", + "start": 2287.34, + "end": 2287.6, + "probability": 0.99853515625 + }, + { + "word": " lot", + "start": 2287.6, + "end": 2287.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 2287.84, + "end": 2287.94, + "probability": 1.0 + }, + { + "word": " people", + "start": 2287.94, + "end": 2288.16, + "probability": 1.0 + }, + { + "word": " come", + "start": 2288.16, + "end": 2288.38, + "probability": 1.0 + }, + { + "word": " down", + "start": 2288.38, + "end": 2288.6, + "probability": 1.0 + }, + { + "word": " on", + "start": 2288.6, + "end": 2288.82, + "probability": 1.0 + }, + { + "word": " this", + "start": 2288.82, + "end": 2289.62, + "probability": 1.0 + }, + { + "word": " type", + "start": 2289.62, + "end": 2289.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 2289.8, + "end": 2290.0, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 2290.0, + "end": 2290.4, + "probability": 1.0 + } + ] + }, + { + "id": 1063, + "text": "And they're like, oh, you're just stealing from the movie companies or whatever.", + "start": 2290.4, + "end": 2293.66, + "words": [ + { + "word": " And", + "start": 2290.4, + "end": 2290.66, + "probability": 0.998046875 + }, + { + "word": " they're", + "start": 2290.66, + "end": 2290.76, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 2290.76, + "end": 2290.98, + "probability": 0.99658203125 + }, + { + "word": " oh,", + "start": 2291.04, + "end": 2291.16, + "probability": 0.98681640625 + }, + { + "word": " you're", + "start": 2291.22, + "end": 2291.36, + "probability": 1.0 + }, + { + "word": " just", + "start": 2291.36, + "end": 2291.56, + "probability": 1.0 + }, + { + "word": " stealing", + "start": 2291.56, + "end": 2291.9, + "probability": 1.0 + }, + { + "word": " from", + "start": 2291.9, + "end": 2292.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2292.18, + "end": 2292.3, + "probability": 1.0 + }, + { + "word": " movie", + "start": 2292.3, + "end": 2292.48, + "probability": 0.99951171875 + }, + { + "word": " companies", + "start": 2292.48, + "end": 2292.84, + "probability": 1.0 + }, + { + "word": " or", + "start": 2292.84, + "end": 2293.14, + "probability": 0.9912109375 + }, + { + "word": " whatever.", + "start": 2293.14, + "end": 2293.66, + "probability": 1.0 + } + ] + }, + { + "id": 1064, + "text": "Like they don't have enough money in the first place.", + "start": 2294.12, + "end": 2296.28, + "words": [ + { + "word": " Like", + "start": 2294.12, + "end": 2294.56, + "probability": 0.91357421875 + }, + { + "word": " they", + "start": 2294.56, + "end": 2294.78, + "probability": 0.841796875 + }, + { + "word": " don't", + "start": 2294.78, + "end": 2295.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 2295.0, + "end": 2295.14, + "probability": 1.0 + }, + { + "word": " enough", + "start": 2295.14, + "end": 2295.38, + "probability": 1.0 + }, + { + "word": " money", + "start": 2295.38, + "end": 2295.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 2295.66, + "end": 2295.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2295.8, + "end": 2295.82, + "probability": 1.0 + }, + { + "word": " first", + "start": 2295.82, + "end": 2296.06, + "probability": 1.0 + }, + { + "word": " place.", + "start": 2296.06, + "end": 2296.28, + "probability": 1.0 + } + ] + }, + { + "id": 1065, + "text": "But beyond that, these guys are the pioneers.", + "start": 2296.34, + "end": 2299.92, + "words": [ + { + "word": " But", + "start": 2296.34, + "end": 2296.58, + "probability": 0.99951171875 + }, + { + "word": " beyond", + "start": 2296.58, + "end": 2297.44, + "probability": 0.998046875 + }, + { + "word": " that,", + "start": 2297.44, + "end": 2297.88, + "probability": 1.0 + }, + { + "word": " these", + "start": 2298.04, + "end": 2298.6, + "probability": 1.0 + }, + { + "word": " guys", + "start": 2298.6, + "end": 2298.96, + "probability": 1.0 + }, + { + "word": " are", + "start": 2298.96, + "end": 2299.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2299.38, + "end": 2299.52, + "probability": 1.0 + }, + { + "word": " pioneers.", + "start": 2299.52, + "end": 2299.92, + "probability": 1.0 + } + ] + }, + { + "id": 1066, + "text": "Right?", + "start": 2300.14, + "end": 2300.4, + "words": [ + { + "word": " Right?", + "start": 2300.14, + "end": 2300.4, + "probability": 0.30712890625 + } + ] + }, + { + "id": 1067, + "text": "They're developing the technology that the movie industry and the music industry should adopt.", + "start": 2300.46, + "end": 2306.32, + "words": [ + { + "word": " They're", + "start": 2300.46, + "end": 2300.68, + "probability": 0.998046875 + }, + { + "word": " developing", + "start": 2300.68, + "end": 2301.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2301.14, + "end": 2301.4, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2301.4, + "end": 2301.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 2301.74, + "end": 2302.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2302.28, + "end": 2302.5, + "probability": 1.0 + }, + { + "word": " movie", + "start": 2302.5, + "end": 2303.28, + "probability": 0.9990234375 + }, + { + "word": " industry", + "start": 2303.28, + "end": 2303.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 2303.66, + "end": 2303.88, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2303.88, + "end": 2303.94, + "probability": 1.0 + }, + { + "word": " music", + "start": 2303.94, + "end": 2304.18, + "probability": 1.0 + }, + { + "word": " industry", + "start": 2304.18, + "end": 2304.46, + "probability": 1.0 + }, + { + "word": " should", + "start": 2304.46, + "end": 2305.78, + "probability": 0.98828125 + }, + { + "word": " adopt.", + "start": 2305.78, + "end": 2306.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1068, + "text": "Right?", + "start": 2307.22, + "end": 2307.62, + "words": [ + { + "word": " Right?", + "start": 2307.22, + "end": 2307.62, + "probability": 0.97607421875 + } + ] + }, + { + "id": 1069, + "text": "This is the stuff that we're going to be using in a completely legal fashion at some point.", + "start": 2307.7, + "end": 2311.9, + "words": [ + { + "word": " This", + "start": 2307.7, + "end": 2308.04, + "probability": 0.97119140625 + }, + { + "word": " is", + "start": 2308.04, + "end": 2308.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2308.18, + "end": 2308.28, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2308.28, + "end": 2308.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 2308.5, + "end": 2308.64, + "probability": 1.0 + }, + { + "word": " we're", + "start": 2308.64, + "end": 2308.8, + "probability": 1.0 + }, + { + "word": " going", + "start": 2308.8, + "end": 2309.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 2309.0, + "end": 2309.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 2309.22, + "end": 2309.3, + "probability": 1.0 + }, + { + "word": " using", + "start": 2309.3, + "end": 2309.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 2309.68, + "end": 2309.92, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2309.92, + "end": 2310.04, + "probability": 1.0 + }, + { + "word": " completely", + "start": 2310.04, + "end": 2310.4, + "probability": 1.0 + }, + { + "word": " legal", + "start": 2310.4, + "end": 2310.74, + "probability": 0.9951171875 + }, + { + "word": " fashion", + "start": 2310.74, + "end": 2311.08, + "probability": 1.0 + }, + { + "word": " at", + "start": 2311.08, + "end": 2311.38, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 2311.38, + "end": 2311.56, + "probability": 1.0 + }, + { + "word": " point.", + "start": 2311.56, + "end": 2311.9, + "probability": 1.0 + } + ] + }, + { + "id": 1070, + "text": "Because somebody took the time to build it.", + "start": 2311.96, + "end": 2313.3, + "words": [ + { + "word": " Because", + "start": 2311.96, + "end": 2312.18, + "probability": 0.9912109375 + }, + { + "word": " somebody", + "start": 2312.18, + "end": 2312.5, + "probability": 0.99853515625 + }, + { + "word": " took", + "start": 2312.5, + "end": 2312.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2312.72, + "end": 2312.88, + "probability": 1.0 + }, + { + "word": " time", + "start": 2312.88, + "end": 2313.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2313.04, + "end": 2313.18, + "probability": 0.98291015625 + }, + { + "word": " build", + "start": 2313.18, + "end": 2313.3, + "probability": 0.67626953125 + }, + { + "word": " it.", + "start": 2313.3, + "end": 2313.3, + "probability": 0.440185546875 + } + ] + }, + { + "id": 1071, + "text": "And they're going to build it now.", + "start": 2313.3, + "end": 2313.7, + "words": [ + { + "word": " And", + "start": 2313.3, + "end": 2313.34, + "probability": 0.046142578125 + }, + { + "word": " they're", + "start": 2313.34, + "end": 2313.34, + "probability": 0.1416015625 + }, + { + "word": " going", + "start": 2313.34, + "end": 2313.34, + "probability": 0.37841796875 + }, + { + "word": " to", + "start": 2313.34, + "end": 2313.34, + "probability": 0.99365234375 + }, + { + "word": " build", + "start": 2313.34, + "end": 2313.34, + "probability": 0.54443359375 + }, + { + "word": " it", + "start": 2313.34, + "end": 2313.52, + "probability": 0.998046875 + }, + { + "word": " now.", + "start": 2313.52, + "end": 2313.7, + "probability": 0.99609375 + } + ] + }, + { + "id": 1072, + "text": "Yeah.", + "start": 2313.96, + "end": 2314.24, + "words": [ + { + "word": " Yeah.", + "start": 2313.96, + "end": 2314.24, + "probability": 0.2568359375 + } + ] + }, + { + "id": 1073, + "text": "And so there needs to be a certain tip of the hat to them on that to say, well, listen, you guys are trailblazing as far as a technology that is going to make it a lot easier for everybody to get the content that they want.", + "start": 2314.48, + "end": 2328.6, + "words": [ + { + "word": " And", + "start": 2314.48, + "end": 2314.92, + "probability": 0.9296875 + }, + { + "word": " so", + "start": 2314.92, + "end": 2316.04, + "probability": 0.359130859375 + }, + { + "word": " there", + "start": 2316.04, + "end": 2316.32, + "probability": 0.95751953125 + }, + { + "word": " needs", + "start": 2316.32, + "end": 2316.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 2316.5, + "end": 2316.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 2316.62, + "end": 2316.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 2316.72, + "end": 2316.8, + "probability": 1.0 + }, + { + "word": " certain", + "start": 2316.8, + "end": 2317.06, + "probability": 1.0 + }, + { + "word": " tip", + "start": 2317.06, + "end": 2317.72, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 2317.72, + "end": 2317.92, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2317.92, + "end": 2317.94, + "probability": 0.99951171875 + }, + { + "word": " hat", + "start": 2317.94, + "end": 2318.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 2318.12, + "end": 2318.3, + "probability": 1.0 + }, + { + "word": " them", + "start": 2318.3, + "end": 2318.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 2318.5, + "end": 2318.9, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2318.9, + "end": 2319.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 2319.1, + "end": 2319.3, + "probability": 0.9892578125 + }, + { + "word": " say,", + "start": 2319.3, + "end": 2319.48, + "probability": 1.0 + }, + { + "word": " well,", + "start": 2319.52, + "end": 2319.66, + "probability": 0.99169921875 + }, + { + "word": " listen,", + "start": 2319.68, + "end": 2319.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 2319.96, + "end": 2320.06, + "probability": 1.0 + }, + { + "word": " guys", + "start": 2320.06, + "end": 2320.24, + "probability": 1.0 + }, + { + "word": " are", + "start": 2320.24, + "end": 2320.4, + "probability": 1.0 + }, + { + "word": " trailblazing", + "start": 2320.4, + "end": 2322.04, + "probability": 1.0 + }, + { + "word": " as", + "start": 2322.04, + "end": 2322.44, + "probability": 0.998046875 + }, + { + "word": " far", + "start": 2322.44, + "end": 2323.02, + "probability": 1.0 + }, + { + "word": " as", + "start": 2323.02, + "end": 2323.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 2323.28, + "end": 2323.38, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2323.38, + "end": 2323.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 2323.86, + "end": 2324.64, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2324.64, + "end": 2324.76, + "probability": 0.93994140625 + }, + { + "word": " going", + "start": 2324.76, + "end": 2324.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2324.98, + "end": 2325.64, + "probability": 1.0 + }, + { + "word": " make", + "start": 2325.64, + "end": 2325.82, + "probability": 1.0 + }, + { + "word": " it", + "start": 2325.82, + "end": 2326.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2326.04, + "end": 2326.28, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2326.28, + "end": 2326.52, + "probability": 1.0 + }, + { + "word": " easier", + "start": 2326.52, + "end": 2326.84, + "probability": 1.0 + }, + { + "word": " for", + "start": 2326.84, + "end": 2327.12, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 2327.12, + "end": 2327.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2327.4, + "end": 2327.62, + "probability": 1.0 + }, + { + "word": " get", + "start": 2327.62, + "end": 2327.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 2327.74, + "end": 2327.86, + "probability": 1.0 + }, + { + "word": " content", + "start": 2327.86, + "end": 2328.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 2328.14, + "end": 2328.3, + "probability": 1.0 + }, + { + "word": " they", + "start": 2328.3, + "end": 2328.42, + "probability": 1.0 + }, + { + "word": " want.", + "start": 2328.42, + "end": 2328.6, + "probability": 1.0 + } + ] + }, + { + "id": 1074, + "text": "And that is the main problem.", + "start": 2328.72, + "end": 2330.42, + "words": [ + { + "word": " And", + "start": 2328.72, + "end": 2329.08, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 2329.08, + "end": 2329.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 2329.32, + "end": 2329.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 2329.46, + "end": 2329.6, + "probability": 1.0 + }, + { + "word": " main", + "start": 2329.6, + "end": 2329.96, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 2329.96, + "end": 2330.42, + "probability": 1.0 + } + ] + }, + { + "id": 1075, + "text": "That's the reason that piracy really exists is because the delivery method is not good as far as the legitimate methods are concerned.", + "start": 2330.6, + "end": 2341.54, + "words": [ + { + "word": " That's", + "start": 2330.6, + "end": 2330.86, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2330.86, + "end": 2330.98, + "probability": 1.0 + }, + { + "word": " reason", + "start": 2330.98, + "end": 2331.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 2331.56, + "end": 2332.16, + "probability": 1.0 + }, + { + "word": " piracy", + "start": 2332.16, + "end": 2332.68, + "probability": 1.0 + }, + { + "word": " really", + "start": 2332.68, + "end": 2333.12, + "probability": 1.0 + }, + { + "word": " exists", + "start": 2333.12, + "end": 2333.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 2333.72, + "end": 2334.6, + "probability": 0.8828125 + }, + { + "word": " because", + "start": 2334.6, + "end": 2335.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 2335.02, + "end": 2336.0, + "probability": 1.0 + }, + { + "word": " delivery", + "start": 2336.0, + "end": 2336.52, + "probability": 1.0 + }, + { + "word": " method", + "start": 2336.52, + "end": 2337.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 2337.02, + "end": 2337.92, + "probability": 1.0 + }, + { + "word": " not", + "start": 2337.92, + "end": 2338.38, + "probability": 1.0 + }, + { + "word": " good", + "start": 2338.38, + "end": 2339.14, + "probability": 1.0 + }, + { + "word": " as", + "start": 2339.14, + "end": 2339.64, + "probability": 0.99951171875 + }, + { + "word": " far", + "start": 2339.64, + "end": 2339.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 2339.82, + "end": 2340.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 2340.04, + "end": 2340.18, + "probability": 1.0 + }, + { + "word": " legitimate", + "start": 2340.18, + "end": 2340.46, + "probability": 1.0 + }, + { + "word": " methods", + "start": 2340.46, + "end": 2340.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 2340.98, + "end": 2341.28, + "probability": 1.0 + }, + { + "word": " concerned.", + "start": 2341.28, + "end": 2341.54, + "probability": 1.0 + } + ] + }, + { + "id": 1076, + "text": "Right.", + "start": 2341.72, + "end": 2341.94, + "words": [ + { + "word": " Right.", + "start": 2341.72, + "end": 2341.94, + "probability": 0.998046875 + } + ] + }, + { + "id": 1077, + "text": "Right.", + "start": 2342.24, + "end": 2342.68, + "words": [ + { + "word": " Right.", + "start": 2342.24, + "end": 2342.68, + "probability": 0.31201171875 + } + ] + }, + { + "id": 1078, + "text": "And so they're going to have to use Pandora.", + "start": 2343.3, + "end": 2344.02, + "words": [ + { + "word": " And", + "start": 2343.3, + "end": 2343.66, + "probability": 0.11090087890625 + }, + { + "word": " so", + "start": 2343.66, + "end": 2343.7, + "probability": 0.0004589557647705078 + }, + { + "word": " they're", + "start": 2343.7, + "end": 2343.7, + "probability": 0.1636962890625 + }, + { + "word": " going", + "start": 2343.7, + "end": 2343.7, + "probability": 0.01100921630859375 + }, + { + "word": " to", + "start": 2343.7, + "end": 2343.7, + "probability": 0.955078125 + }, + { + "word": " have", + "start": 2343.7, + "end": 2343.7, + "probability": 0.0880126953125 + }, + { + "word": " to", + "start": 2343.7, + "end": 2343.7, + "probability": 0.34130859375 + }, + { + "word": " use", + "start": 2343.7, + "end": 2343.7, + "probability": 0.016754150390625 + }, + { + "word": " Pandora.", + "start": 2343.7, + "end": 2344.02, + "probability": 0.59375 + } + ] + }, + { + "id": 1079, + "text": "I mean, they're pretty successful.", + "start": 2344.84, + "end": 2347.34, + "words": [ + { + "word": " I", + "start": 2344.84, + "end": 2345.28, + "probability": 0.53076171875 + }, + { + "word": " mean,", + "start": 2345.28, + "end": 2345.28, + "probability": 1.0 + }, + { + "word": " they're", + "start": 2345.28, + "end": 2346.58, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 2346.58, + "end": 2346.8, + "probability": 0.99951171875 + }, + { + "word": " successful.", + "start": 2346.8, + "end": 2347.34, + "probability": 1.0 + } + ] + }, + { + "id": 1080, + "text": "Right?", + "start": 2347.48, + "end": 2347.72, + "words": [ + { + "word": " Right?", + "start": 2347.48, + "end": 2347.72, + "probability": 0.92578125 + } + ] + }, + { + "id": 1081, + "text": "As far as they have a free service that you can pay a dollar a month for if you really want the extra or less commercials.", + "start": 2347.8, + "end": 2354.28, + "words": [ + { + "word": " As", + "start": 2347.8, + "end": 2348.0, + "probability": 0.93017578125 + }, + { + "word": " far", + "start": 2348.0, + "end": 2348.12, + "probability": 1.0 + }, + { + "word": " as", + "start": 2348.12, + "end": 2348.38, + "probability": 1.0 + }, + { + "word": " they", + "start": 2348.38, + "end": 2348.7, + "probability": 0.81103515625 + }, + { + "word": " have", + "start": 2348.7, + "end": 2348.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 2348.82, + "end": 2348.94, + "probability": 1.0 + }, + { + "word": " free", + "start": 2348.94, + "end": 2349.18, + "probability": 1.0 + }, + { + "word": " service", + "start": 2349.18, + "end": 2349.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 2349.6, + "end": 2349.72, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2349.72, + "end": 2349.8, + "probability": 1.0 + }, + { + "word": " can", + "start": 2349.8, + "end": 2349.92, + "probability": 1.0 + }, + { + "word": " pay", + "start": 2349.92, + "end": 2350.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2350.06, + "end": 2350.14, + "probability": 0.94580078125 + }, + { + "word": " dollar", + "start": 2350.14, + "end": 2350.38, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2350.38, + "end": 2350.58, + "probability": 1.0 + }, + { + "word": " month", + "start": 2350.58, + "end": 2350.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 2350.74, + "end": 2350.98, + "probability": 1.0 + }, + { + "word": " if", + "start": 2350.98, + "end": 2351.22, + "probability": 0.8603515625 + }, + { + "word": " you", + "start": 2351.22, + "end": 2351.32, + "probability": 1.0 + }, + { + "word": " really", + "start": 2351.32, + "end": 2351.58, + "probability": 1.0 + }, + { + "word": " want", + "start": 2351.58, + "end": 2351.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2351.8, + "end": 2351.96, + "probability": 0.99951171875 + }, + { + "word": " extra", + "start": 2351.96, + "end": 2352.28, + "probability": 1.0 + }, + { + "word": " or", + "start": 2352.28, + "end": 2352.88, + "probability": 0.39794921875 + }, + { + "word": " less", + "start": 2352.88, + "end": 2353.68, + "probability": 1.0 + }, + { + "word": " commercials.", + "start": 2353.68, + "end": 2354.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1082, + "text": "Right.", + "start": 2354.48, + "end": 2354.84, + "words": [ + { + "word": " Right.", + "start": 2354.48, + "end": 2354.84, + "probability": 0.9462890625 + } + ] + }, + { + "id": 1083, + "text": "And they were getting sued up front.", + "start": 2356.46, + "end": 2358.42, + "words": [ + { + "word": " And", + "start": 2356.46, + "end": 2356.9, + "probability": 0.86181640625 + }, + { + "word": " they", + "start": 2356.9, + "end": 2357.34, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 2357.34, + "end": 2357.5, + "probability": 1.0 + }, + { + "word": " getting", + "start": 2357.5, + "end": 2357.66, + "probability": 1.0 + }, + { + "word": " sued", + "start": 2357.66, + "end": 2357.96, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 2357.96, + "end": 2358.18, + "probability": 0.99365234375 + }, + { + "word": " front.", + "start": 2358.18, + "end": 2358.42, + "probability": 1.0 + } + ] + }, + { + "id": 1084, + "text": "Right?", + "start": 2358.56, + "end": 2358.92, + "words": [ + { + "word": " Right?", + "start": 2358.56, + "end": 2358.92, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1085, + "text": "And they developed a technology that was pioneering at the time.", + "start": 2359.0, + "end": 2363.32, + "words": [ + { + "word": " And", + "start": 2359.0, + "end": 2359.2, + "probability": 0.99365234375 + }, + { + "word": " they", + "start": 2359.2, + "end": 2359.36, + "probability": 0.91357421875 + }, + { + "word": " developed", + "start": 2359.36, + "end": 2360.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 2360.3, + "end": 2360.46, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 2360.46, + "end": 2360.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 2360.86, + "end": 2361.28, + "probability": 1.0 + }, + { + "word": " was", + "start": 2361.28, + "end": 2361.48, + "probability": 1.0 + }, + { + "word": " pioneering", + "start": 2361.48, + "end": 2362.7, + "probability": 0.9794921875 + }, + { + "word": " at", + "start": 2362.7, + "end": 2362.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2362.96, + "end": 2363.06, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2363.06, + "end": 2363.32, + "probability": 1.0 + } + ] + }, + { + "id": 1086, + "text": "And they don't have all the music that I like to listen to because I have a very eclectic taste in music.", + "start": 2363.48, + "end": 2369.66, + "words": [ + { + "word": " And", + "start": 2363.48, + "end": 2363.9, + "probability": 0.9951171875 + }, + { + "word": " they", + "start": 2363.9, + "end": 2363.98, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2363.98, + "end": 2364.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 2364.18, + "end": 2364.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 2364.3, + "end": 2364.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2364.42, + "end": 2364.54, + "probability": 1.0 + }, + { + "word": " music", + "start": 2364.54, + "end": 2364.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 2364.78, + "end": 2364.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 2364.96, + "end": 2365.12, + "probability": 1.0 + }, + { + "word": " like", + "start": 2365.12, + "end": 2365.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 2365.34, + "end": 2365.46, + "probability": 1.0 + }, + { + "word": " listen", + "start": 2365.46, + "end": 2365.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 2365.68, + "end": 2365.92, + "probability": 1.0 + }, + { + "word": " because", + "start": 2365.92, + "end": 2366.54, + "probability": 0.94140625 + }, + { + "word": " I", + "start": 2366.54, + "end": 2367.14, + "probability": 1.0 + }, + { + "word": " have", + "start": 2367.14, + "end": 2367.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2367.56, + "end": 2367.72, + "probability": 1.0 + }, + { + "word": " very", + "start": 2367.72, + "end": 2367.92, + "probability": 1.0 + }, + { + "word": " eclectic", + "start": 2367.92, + "end": 2368.88, + "probability": 0.99951171875 + }, + { + "word": " taste", + "start": 2368.88, + "end": 2369.14, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2369.14, + "end": 2369.36, + "probability": 0.99951171875 + }, + { + "word": " music.", + "start": 2369.36, + "end": 2369.66, + "probability": 1.0 + } + ] + }, + { + "id": 1087, + "text": "Right.", + "start": 2369.84, + "end": 2370.28, + "words": [ + { + "word": " Right.", + "start": 2369.84, + "end": 2370.28, + "probability": 0.97021484375 + } + ] + }, + { + "id": 1088, + "text": "Right.", + "start": 2370.28, + "end": 2370.62, + "words": [ + { + "word": " Right.", + "start": 2370.28, + "end": 2370.62, + "probability": 0.033050537109375 + } + ] + }, + { + "id": 1089, + "text": "Right.", + "start": 2370.62, + "end": 2370.86, + "words": [ + { + "word": " Right.", + "start": 2370.62, + "end": 2370.86, + "probability": 0.06500244140625 + } + ] + }, + { + "id": 1090, + "text": "Right.", + "start": 2370.86, + "end": 2371.24, + "words": [ + { + "word": " Right.", + "start": 2370.86, + "end": 2371.24, + "probability": 0.353759765625 + } + ] + }, + { + "id": 1091, + "text": "Right.", + "start": 2371.24, + "end": 2371.44, + "words": [ + { + "word": " Right.", + "start": 2371.24, + "end": 2371.44, + "probability": 0.6279296875 + } + ] + }, + { + "id": 1092, + "text": "Right.", + "start": 2372.8, + "end": 2373.24, + "words": [ + { + "word": " Right.", + "start": 2372.8, + "end": 2373.24, + "probability": 0.7568359375 + } + ] + }, + { + "id": 1093, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1094, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1095, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1096, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1097, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1098, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1099, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1100, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1101, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1102, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1103, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1104, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1105, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1106, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1107, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1108, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1109, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1110, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1111, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1112, + "text": "", + "start": 2373.28, + "end": 2373.28, + "words": [] + }, + { + "id": 1113, + "text": "And I like Grooveshark.", + "start": 2373.3, + "end": 2373.42, + "words": [ + { + "word": " And", + "start": 2373.3, + "end": 2373.42, + "probability": 0.0017604827880859375 + }, + { + "word": " I", + "start": 2373.42, + "end": 2373.42, + "probability": 0.0589599609375 + }, + { + "word": " like", + "start": 2373.42, + "end": 2373.42, + "probability": 0.611328125 + }, + { + "word": " Grooveshark.", + "start": 2373.42, + "end": 2373.42, + "probability": 0.900390625 + } + ] + }, + { + "id": 1114, + "text": "Grooveshark is pretty awesome.", + "start": 2373.88, + "end": 2374.88, + "words": [ + { + "word": " Grooveshark", + "start": 2373.88, + "end": 2374.28, + "probability": 0.98876953125 + }, + { + "word": " is", + "start": 2374.28, + "end": 2374.4, + "probability": 0.99853515625 + }, + { + "word": " pretty", + "start": 2374.4, + "end": 2374.56, + "probability": 0.99951171875 + }, + { + "word": " awesome.", + "start": 2374.56, + "end": 2374.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1115, + "text": "Yeah.", + "start": 2374.98, + "end": 2375.08, + "words": [ + { + "word": " Yeah.", + "start": 2374.98, + "end": 2375.08, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1116, + "text": "I like Grooveshark a lot, too.", + "start": 2375.14, + "end": 2376.56, + "words": [ + { + "word": " I", + "start": 2375.14, + "end": 2375.28, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 2375.28, + "end": 2375.52, + "probability": 1.0 + }, + { + "word": " Grooveshark", + "start": 2375.52, + "end": 2375.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 2375.98, + "end": 2376.16, + "probability": 0.99951171875 + }, + { + "word": " lot,", + "start": 2376.16, + "end": 2376.32, + "probability": 1.0 + }, + { + "word": " too.", + "start": 2376.32, + "end": 2376.56, + "probability": 1.0 + } + ] + }, + { + "id": 1117, + "text": "Right.", + "start": 2376.78, + "end": 2377.12, + "words": [ + { + "word": " Right.", + "start": 2376.78, + "end": 2377.12, + "probability": 0.33740234375 + } + ] + }, + { + "id": 1118, + "text": "So there's lots of stuff that's out there.", + "start": 2377.16, + "end": 2379.08, + "words": [ + { + "word": " So", + "start": 2377.16, + "end": 2377.3, + "probability": 0.9794921875 + }, + { + "word": " there's", + "start": 2377.3, + "end": 2377.78, + "probability": 0.89453125 + }, + { + "word": " lots", + "start": 2377.78, + "end": 2378.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 2378.06, + "end": 2378.24, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2378.24, + "end": 2378.46, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2378.46, + "end": 2378.72, + "probability": 1.0 + }, + { + "word": " out", + "start": 2378.72, + "end": 2378.86, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2378.86, + "end": 2379.08, + "probability": 1.0 + } + ] + }, + { + "id": 1119, + "text": "And maybe one of the articles we can get you to write this week is about different places to get different types of media.", + "start": 2379.2, + "end": 2385.38, + "words": [ + { + "word": " And", + "start": 2379.2, + "end": 2379.6, + "probability": 0.99267578125 + }, + { + "word": " maybe", + "start": 2379.6, + "end": 2380.36, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 2380.36, + "end": 2380.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 2380.56, + "end": 2380.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 2380.68, + "end": 2380.74, + "probability": 1.0 + }, + { + "word": " articles", + "start": 2380.74, + "end": 2381.04, + "probability": 1.0 + }, + { + "word": " we", + "start": 2381.04, + "end": 2381.22, + "probability": 1.0 + }, + { + "word": " can", + "start": 2381.22, + "end": 2381.32, + "probability": 1.0 + }, + { + "word": " get", + "start": 2381.32, + "end": 2381.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2381.42, + "end": 2381.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2381.52, + "end": 2381.58, + "probability": 1.0 + }, + { + "word": " write", + "start": 2381.58, + "end": 2381.72, + "probability": 1.0 + }, + { + "word": " this", + "start": 2381.72, + "end": 2381.88, + "probability": 1.0 + }, + { + "word": " week", + "start": 2381.88, + "end": 2382.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 2382.08, + "end": 2382.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 2382.26, + "end": 2382.46, + "probability": 1.0 + }, + { + "word": " different", + "start": 2382.46, + "end": 2383.5, + "probability": 1.0 + }, + { + "word": " places", + "start": 2383.5, + "end": 2383.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2383.92, + "end": 2384.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 2384.18, + "end": 2384.38, + "probability": 1.0 + }, + { + "word": " different", + "start": 2384.38, + "end": 2384.68, + "probability": 1.0 + }, + { + "word": " types", + "start": 2384.68, + "end": 2384.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 2384.98, + "end": 2385.14, + "probability": 1.0 + }, + { + "word": " media.", + "start": 2385.14, + "end": 2385.38, + "probability": 1.0 + } + ] + }, + { + "id": 1120, + "text": "I can do that.", + "start": 2385.58, + "end": 2386.36, + "words": [ + { + "word": " I", + "start": 2385.58, + "end": 2385.82, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2385.82, + "end": 2385.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 2385.98, + "end": 2386.16, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2386.16, + "end": 2386.36, + "probability": 1.0 + } + ] + }, + { + "id": 1121, + "text": "Oh, and by the way, Tara is sort of in charge of social media now.", + "start": 2386.54, + "end": 2390.92, + "words": [ + { + "word": " Oh,", + "start": 2386.54, + "end": 2386.92, + "probability": 0.5263671875 + }, + { + "word": " and", + "start": 2387.3, + "end": 2387.36, + "probability": 0.8974609375 + }, + { + "word": " by", + "start": 2387.36, + "end": 2387.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2387.46, + "end": 2387.56, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2387.56, + "end": 2387.7, + "probability": 1.0 + }, + { + "word": " Tara", + "start": 2387.72, + "end": 2388.16, + "probability": 0.99560546875 + }, + { + "word": " is", + "start": 2388.16, + "end": 2388.36, + "probability": 0.90966796875 + }, + { + "word": " sort", + "start": 2388.36, + "end": 2388.52, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2388.52, + "end": 2388.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 2388.72, + "end": 2389.36, + "probability": 1.0 + }, + { + "word": " charge", + "start": 2389.36, + "end": 2389.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 2389.66, + "end": 2390.0, + "probability": 1.0 + }, + { + "word": " social", + "start": 2390.0, + "end": 2390.2, + "probability": 1.0 + }, + { + "word": " media", + "start": 2390.2, + "end": 2390.58, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2390.58, + "end": 2390.92, + "probability": 1.0 + } + ] + }, + { + "id": 1122, + "text": "Woo-hoo!", + "start": 2391.14, + "end": 2391.54, + "words": [ + { + "word": " Woo", + "start": 2391.14, + "end": 2391.54, + "probability": 0.9169921875 + }, + { + "word": "-hoo!", + "start": 2391.54, + "end": 2391.54, + "probability": 0.9052734375 + } + ] + }, + { + "id": 1123, + "text": "That's sort of her gig.", + "start": 2391.66, + "end": 2392.86, + "words": [ + { + "word": " That's", + "start": 2391.66, + "end": 2391.84, + "probability": 0.9990234375 + }, + { + "word": " sort", + "start": 2391.84, + "end": 2391.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 2391.96, + "end": 2392.1, + "probability": 1.0 + }, + { + "word": " her", + "start": 2392.1, + "end": 2392.24, + "probability": 1.0 + }, + { + "word": " gig.", + "start": 2392.24, + "end": 2392.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1124, + "text": "Go me!", + "start": 2393.14, + "end": 2393.6, + "words": [ + { + "word": " Go", + "start": 2393.14, + "end": 2393.42, + "probability": 0.99951171875 + }, + { + "word": " me!", + "start": 2393.42, + "end": 2393.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1125, + "text": "Right.", + "start": 2393.84, + "end": 2394.06, + "words": [ + { + "word": " Right.", + "start": 2393.84, + "end": 2394.06, + "probability": 0.294921875 + } + ] + }, + { + "id": 1126, + "text": "So she's going to be writing articles, as well as Rob, myself, for the Guru Show site.", + "start": 2394.08, + "end": 2399.6, + "words": [ + { + "word": " So", + "start": 2394.08, + "end": 2394.48, + "probability": 0.990234375 + }, + { + "word": " she's", + "start": 2394.48, + "end": 2395.38, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2395.38, + "end": 2395.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2395.5, + "end": 2395.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 2395.56, + "end": 2395.68, + "probability": 1.0 + }, + { + "word": " writing", + "start": 2395.68, + "end": 2396.32, + "probability": 0.955078125 + }, + { + "word": " articles,", + "start": 2396.32, + "end": 2396.74, + "probability": 1.0 + }, + { + "word": " as", + "start": 2396.8, + "end": 2397.02, + "probability": 1.0 + }, + { + "word": " well", + "start": 2397.02, + "end": 2397.14, + "probability": 1.0 + }, + { + "word": " as", + "start": 2397.14, + "end": 2397.28, + "probability": 1.0 + }, + { + "word": " Rob,", + "start": 2397.28, + "end": 2397.46, + "probability": 0.99951171875 + }, + { + "word": " myself,", + "start": 2397.64, + "end": 2397.88, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2398.18, + "end": 2398.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 2398.78, + "end": 2399.0, + "probability": 0.8740234375 + }, + { + "word": " Guru", + "start": 2399.0, + "end": 2399.12, + "probability": 0.80517578125 + }, + { + "word": " Show", + "start": 2399.12, + "end": 2399.34, + "probability": 0.97900390625 + }, + { + "word": " site.", + "start": 2399.34, + "end": 2399.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1127, + "text": "So they'll be on Facebook.", + "start": 2399.88, + "end": 2400.98, + "words": [ + { + "word": " So", + "start": 2399.88, + "end": 2400.28, + "probability": 0.99951171875 + }, + { + "word": " they'll", + "start": 2400.28, + "end": 2400.44, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2400.44, + "end": 2400.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 2400.52, + "end": 2400.64, + "probability": 1.0 + }, + { + "word": " Facebook.", + "start": 2400.64, + "end": 2400.98, + "probability": 1.0 + } + ] + }, + { + "id": 1128, + "text": "You should like the Computer Guru Radio Show.", + "start": 2401.0, + "end": 2403.28, + "words": [ + { + "word": " You", + "start": 2401.0, + "end": 2401.24, + "probability": 0.982421875 + }, + { + "word": " should", + "start": 2401.24, + "end": 2401.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 2401.44, + "end": 2401.9, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2401.9, + "end": 2402.14, + "probability": 0.91796875 + }, + { + "word": " Computer", + "start": 2402.14, + "end": 2402.4, + "probability": 0.99169921875 + }, + { + "word": " Guru", + "start": 2402.4, + "end": 2402.66, + "probability": 0.99853515625 + }, + { + "word": " Radio", + "start": 2402.66, + "end": 2402.96, + "probability": 0.8046875 + }, + { + "word": " Show.", + "start": 2402.96, + "end": 2403.28, + "probability": 0.939453125 + } + ] + }, + { + "id": 1129, + "text": "If you want to get updates as far as the stuff that we're generating and creating.", + "start": 2403.28, + "end": 2409.3, + "words": [ + { + "word": " If", + "start": 2403.28, + "end": 2403.82, + "probability": 0.052276611328125 + }, + { + "word": " you", + "start": 2403.82, + "end": 2404.14, + "probability": 0.994140625 + }, + { + "word": " want", + "start": 2404.14, + "end": 2404.32, + "probability": 0.966796875 + }, + { + "word": " to", + "start": 2404.32, + "end": 2404.48, + "probability": 0.994140625 + }, + { + "word": " get", + "start": 2404.48, + "end": 2405.04, + "probability": 0.95703125 + }, + { + "word": " updates", + "start": 2405.04, + "end": 2405.76, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 2405.76, + "end": 2406.24, + "probability": 0.94482421875 + }, + { + "word": " far", + "start": 2406.24, + "end": 2406.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 2406.82, + "end": 2407.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2407.02, + "end": 2407.2, + "probability": 0.9990234375 + }, + { + "word": " stuff", + "start": 2407.2, + "end": 2407.38, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2407.38, + "end": 2407.52, + "probability": 0.998046875 + }, + { + "word": " we're", + "start": 2407.52, + "end": 2407.72, + "probability": 0.9970703125 + }, + { + "word": " generating", + "start": 2407.72, + "end": 2408.36, + "probability": 0.96533203125 + }, + { + "word": " and", + "start": 2408.36, + "end": 2408.88, + "probability": 0.99951171875 + }, + { + "word": " creating.", + "start": 2408.88, + "end": 2409.3, + "probability": 1.0 + } + ] + }, + { + "id": 1130, + "text": "We want to be able to provide as much information as possible.", + "start": 2410.76, + "end": 2413.88, + "words": [ + { + "word": " We", + "start": 2410.76, + "end": 2411.16, + "probability": 0.65576171875 + }, + { + "word": " want", + "start": 2411.16, + "end": 2411.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2411.52, + "end": 2411.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 2411.62, + "end": 2411.66, + "probability": 1.0 + }, + { + "word": " able", + "start": 2411.66, + "end": 2411.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 2411.76, + "end": 2412.0, + "probability": 1.0 + }, + { + "word": " provide", + "start": 2412.0, + "end": 2412.52, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 2412.52, + "end": 2412.82, + "probability": 1.0 + }, + { + "word": " much", + "start": 2412.82, + "end": 2412.98, + "probability": 1.0 + }, + { + "word": " information", + "start": 2412.98, + "end": 2413.36, + "probability": 1.0 + }, + { + "word": " as", + "start": 2413.36, + "end": 2413.58, + "probability": 1.0 + }, + { + "word": " possible.", + "start": 2413.58, + "end": 2413.88, + "probability": 1.0 + } + ] + }, + { + "id": 1131, + "text": "That's what this show is about.", + "start": 2413.96, + "end": 2414.88, + "words": [ + { + "word": " That's", + "start": 2413.96, + "end": 2414.1, + "probability": 0.74169921875 + }, + { + "word": " what", + "start": 2414.1, + "end": 2414.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 2414.14, + "end": 2414.28, + "probability": 0.91845703125 + }, + { + "word": " show", + "start": 2414.28, + "end": 2414.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 2414.5, + "end": 2414.64, + "probability": 1.0 + }, + { + "word": " about.", + "start": 2414.64, + "end": 2414.88, + "probability": 1.0 + } + ] + }, + { + "id": 1132, + "text": "And even though I only have an hour to do it, we try to cram a bunch of information in here to keep you safe.", + "start": 2415.04, + "end": 2420.96, + "words": [ + { + "word": " And", + "start": 2415.04, + "end": 2415.1, + "probability": 0.452880859375 + }, + { + "word": " even", + "start": 2415.1, + "end": 2415.22, + "probability": 0.9970703125 + }, + { + "word": " though", + "start": 2415.22, + "end": 2415.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 2415.4, + "end": 2415.48, + "probability": 1.0 + }, + { + "word": " only", + "start": 2415.48, + "end": 2415.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 2415.62, + "end": 2415.78, + "probability": 1.0 + }, + { + "word": " an", + "start": 2415.78, + "end": 2415.88, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2415.88, + "end": 2416.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 2416.02, + "end": 2416.16, + "probability": 1.0 + }, + { + "word": " do", + "start": 2416.16, + "end": 2416.28, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2416.28, + "end": 2416.44, + "probability": 1.0 + }, + { + "word": " we", + "start": 2416.54, + "end": 2416.98, + "probability": 0.98876953125 + }, + { + "word": " try", + "start": 2416.98, + "end": 2417.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 2417.22, + "end": 2417.36, + "probability": 1.0 + }, + { + "word": " cram", + "start": 2417.36, + "end": 2417.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2417.96, + "end": 2418.08, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 2418.08, + "end": 2418.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2418.32, + "end": 2418.44, + "probability": 1.0 + }, + { + "word": " information", + "start": 2418.44, + "end": 2418.8, + "probability": 1.0 + }, + { + "word": " in", + "start": 2418.8, + "end": 2419.12, + "probability": 1.0 + }, + { + "word": " here", + "start": 2419.12, + "end": 2419.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2419.28, + "end": 2419.6, + "probability": 0.9970703125 + }, + { + "word": " keep", + "start": 2419.6, + "end": 2420.46, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2420.46, + "end": 2420.66, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 2420.66, + "end": 2420.96, + "probability": 1.0 + } + ] + }, + { + "id": 1133, + "text": "Knowledge is power.", + "start": 2421.56, + "end": 2422.58, + "words": [ + { + "word": " Knowledge", + "start": 2421.56, + "end": 2421.96, + "probability": 0.99267578125 + }, + { + "word": " is", + "start": 2421.96, + "end": 2422.16, + "probability": 1.0 + }, + { + "word": " power.", + "start": 2422.16, + "end": 2422.58, + "probability": 1.0 + } + ] + }, + { + "id": 1134, + "text": "Yeah.", + "start": 2423.14, + "end": 2423.54, + "words": [ + { + "word": " Yeah.", + "start": 2423.14, + "end": 2423.54, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1135, + "text": "As long as it's still allowed.", + "start": 2423.56, + "end": 2424.92, + "words": [ + { + "word": " As", + "start": 2423.56, + "end": 2423.76, + "probability": 0.99951171875 + }, + { + "word": " long", + "start": 2423.76, + "end": 2423.92, + "probability": 1.0 + }, + { + "word": " as", + "start": 2423.92, + "end": 2424.1, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2424.1, + "end": 2424.26, + "probability": 1.0 + }, + { + "word": " still", + "start": 2424.26, + "end": 2424.5, + "probability": 1.0 + }, + { + "word": " allowed.", + "start": 2424.5, + "end": 2424.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1136, + "text": "Yeah.", + "start": 2425.22, + "end": 2425.56, + "words": [ + { + "word": " Yeah.", + "start": 2425.22, + "end": 2425.56, + "probability": 0.998046875 + } + ] + }, + { + "id": 1137, + "text": "Exactly.", + "start": 2425.66, + "end": 2426.06, + "words": [ + { + "word": " Exactly.", + "start": 2425.66, + "end": 2426.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1138, + "text": "So we've got to hurry.", + "start": 2426.48, + "end": 2427.38, + "words": [ + { + "word": " So", + "start": 2426.48, + "end": 2426.88, + "probability": 0.9990234375 + }, + { + "word": " we've", + "start": 2426.88, + "end": 2427.02, + "probability": 0.794921875 + }, + { + "word": " got", + "start": 2427.02, + "end": 2427.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 2427.08, + "end": 2427.2, + "probability": 1.0 + }, + { + "word": " hurry.", + "start": 2427.2, + "end": 2427.38, + "probability": 1.0 + } + ] + }, + { + "id": 1139, + "text": "Right.", + "start": 2427.54, + "end": 2427.88, + "words": [ + { + "word": " Right.", + "start": 2427.54, + "end": 2427.88, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1140, + "text": "And one of the things that we do teach, and I recommend that everybody come down and at", + "start": 2427.94, + "end": 2433.0, + "words": [ + { + "word": " And", + "start": 2427.94, + "end": 2428.06, + "probability": 0.95166015625 + }, + { + "word": " one", + "start": 2428.06, + "end": 2428.2, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2428.2, + "end": 2428.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2428.3, + "end": 2428.4, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2428.4, + "end": 2429.52, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2429.52, + "end": 2430.16, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 2430.16, + "end": 2430.68, + "probability": 0.9970703125 + }, + { + "word": " do", + "start": 2430.68, + "end": 2431.04, + "probability": 0.99853515625 + }, + { + "word": " teach,", + "start": 2431.04, + "end": 2431.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 2431.4, + "end": 2431.46, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2431.46, + "end": 2431.52, + "probability": 1.0 + }, + { + "word": " recommend", + "start": 2431.52, + "end": 2431.8, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2431.8, + "end": 2431.98, + "probability": 0.99951171875 + }, + { + "word": " everybody", + "start": 2431.98, + "end": 2432.26, + "probability": 0.9990234375 + }, + { + "word": " come", + "start": 2432.26, + "end": 2432.54, + "probability": 0.99755859375 + }, + { + "word": " down", + "start": 2432.54, + "end": 2432.74, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2432.74, + "end": 2432.9, + "probability": 0.8037109375 + }, + { + "word": " at", + "start": 2432.9, + "end": 2433.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1141, + "text": "least take it once, is the internet safety class that we offer.", + "start": 2433.0, + "end": 2437.42, + "words": [ + { + "word": " least", + "start": 2433.0, + "end": 2433.08, + "probability": 0.06890869140625 + }, + { + "word": " take", + "start": 2433.08, + "end": 2433.34, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 2433.34, + "end": 2433.46, + "probability": 0.99951171875 + }, + { + "word": " once,", + "start": 2433.46, + "end": 2433.74, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2433.88, + "end": 2434.02, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 2434.02, + "end": 2434.28, + "probability": 0.99951171875 + }, + { + "word": " internet", + "start": 2434.28, + "end": 2434.94, + "probability": 0.8173828125 + }, + { + "word": " safety", + "start": 2434.94, + "end": 2436.1, + "probability": 0.99462890625 + }, + { + "word": " class", + "start": 2436.1, + "end": 2436.74, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2436.74, + "end": 2437.06, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 2437.06, + "end": 2437.18, + "probability": 1.0 + }, + { + "word": " offer.", + "start": 2437.18, + "end": 2437.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1142, + "text": "It's how to keep yourself safe online.", + "start": 2437.54, + "end": 2439.52, + "words": [ + { + "word": " It's", + "start": 2437.54, + "end": 2437.68, + "probability": 0.9228515625 + }, + { + "word": " how", + "start": 2437.68, + "end": 2437.8, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 2437.8, + "end": 2438.04, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2438.04, + "end": 2438.7, + "probability": 0.99951171875 + }, + { + "word": " yourself", + "start": 2438.7, + "end": 2438.92, + "probability": 0.99951171875 + }, + { + "word": " safe", + "start": 2438.92, + "end": 2439.2, + "probability": 0.99951171875 + }, + { + "word": " online.", + "start": 2439.2, + "end": 2439.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1143, + "text": "There are ways, using very simple little tweaks, that either you yourself, as far as how you", + "start": 2441.0, + "end": 2448.58, + "words": [ + { + "word": " There", + "start": 2441.0, + "end": 2441.52, + "probability": 0.994140625 + }, + { + "word": " are", + "start": 2441.52, + "end": 2441.82, + "probability": 1.0 + }, + { + "word": " ways,", + "start": 2441.82, + "end": 2442.24, + "probability": 1.0 + }, + { + "word": " using", + "start": 2442.3, + "end": 2443.0, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 2443.0, + "end": 2443.32, + "probability": 0.9990234375 + }, + { + "word": " simple", + "start": 2443.32, + "end": 2444.04, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 2444.04, + "end": 2444.4, + "probability": 0.98828125 + }, + { + "word": " tweaks,", + "start": 2444.4, + "end": 2445.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 2445.28, + "end": 2446.0, + "probability": 0.421875 + }, + { + "word": " either", + "start": 2446.0, + "end": 2446.72, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2446.72, + "end": 2447.2, + "probability": 0.9970703125 + }, + { + "word": " yourself,", + "start": 2447.2, + "end": 2447.66, + "probability": 0.677734375 + }, + { + "word": " as", + "start": 2447.84, + "end": 2448.04, + "probability": 0.9990234375 + }, + { + "word": " far", + "start": 2448.04, + "end": 2448.14, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2448.14, + "end": 2448.24, + "probability": 1.0 + }, + { + "word": " how", + "start": 2448.24, + "end": 2448.38, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2448.38, + "end": 2448.58, + "probability": 1.0 + } + ] + }, + { + "id": 1144, + "text": "use the internet, or very small changes that you can make to your computer, that will reduce", + "start": 2448.58, + "end": 2453.54, + "words": [ + { + "word": " use", + "start": 2448.58, + "end": 2448.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2448.8, + "end": 2448.94, + "probability": 0.99951171875 + }, + { + "word": " internet,", + "start": 2448.94, + "end": 2449.12, + "probability": 0.99658203125 + }, + { + "word": " or", + "start": 2449.28, + "end": 2449.8, + "probability": 0.9990234375 + }, + { + "word": " very", + "start": 2449.8, + "end": 2449.98, + "probability": 0.99951171875 + }, + { + "word": " small", + "start": 2449.98, + "end": 2450.32, + "probability": 0.99951171875 + }, + { + "word": " changes", + "start": 2450.32, + "end": 2450.94, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2450.94, + "end": 2451.18, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2451.18, + "end": 2451.28, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2451.28, + "end": 2451.4, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 2451.4, + "end": 2451.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2451.54, + "end": 2451.66, + "probability": 1.0 + }, + { + "word": " your", + "start": 2451.66, + "end": 2451.74, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 2451.74, + "end": 2452.16, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2452.28, + "end": 2452.78, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2452.78, + "end": 2453.06, + "probability": 1.0 + }, + { + "word": " reduce", + "start": 2453.06, + "end": 2453.54, + "probability": 1.0 + } + ] + }, + { + "id": 1145, + "text": "your likelihood of getting an infection or falling for a phishing attack by just infinite", + "start": 2453.54, + "end": 2460.14, + "words": [ + { + "word": " your", + "start": 2453.54, + "end": 2453.92, + "probability": 1.0 + }, + { + "word": " likelihood", + "start": 2453.92, + "end": 2454.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2454.8, + "end": 2455.24, + "probability": 1.0 + }, + { + "word": " getting", + "start": 2455.24, + "end": 2455.4, + "probability": 1.0 + }, + { + "word": " an", + "start": 2455.4, + "end": 2455.58, + "probability": 1.0 + }, + { + "word": " infection", + "start": 2455.58, + "end": 2455.84, + "probability": 1.0 + }, + { + "word": " or", + "start": 2455.84, + "end": 2456.28, + "probability": 0.828125 + }, + { + "word": " falling", + "start": 2456.28, + "end": 2456.74, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2456.74, + "end": 2457.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2457.04, + "end": 2457.2, + "probability": 0.99951171875 + }, + { + "word": " phishing", + "start": 2457.2, + "end": 2457.44, + "probability": 0.97265625 + }, + { + "word": " attack", + "start": 2457.44, + "end": 2457.72, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 2457.72, + "end": 2459.04, + "probability": 0.970703125 + }, + { + "word": " just", + "start": 2459.04, + "end": 2459.7, + "probability": 0.998046875 + }, + { + "word": " infinite", + "start": 2459.7, + "end": 2460.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1146, + "text": "degrees.", + "start": 2460.14, + "end": 2460.46, + "words": [ + { + "word": " degrees.", + "start": 2460.14, + "end": 2460.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 1147, + "text": "Right.", + "start": 2460.74, + "end": 2460.98, + "words": [ + { + "word": " Right.", + "start": 2460.74, + "end": 2460.98, + "probability": 0.12091064453125 + } + ] + }, + { + "id": 1148, + "text": "As far as you will be.", + "start": 2461.08, + "end": 2462.32, + "words": [ + { + "word": " As", + "start": 2461.08, + "end": 2461.24, + "probability": 0.990234375 + }, + { + "word": " far", + "start": 2461.24, + "end": 2461.38, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2461.38, + "end": 2461.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 2461.54, + "end": 2461.78, + "probability": 0.9658203125 + }, + { + "word": " will", + "start": 2461.78, + "end": 2462.08, + "probability": 0.998046875 + }, + { + "word": " be.", + "start": 2462.08, + "end": 2462.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1149, + "text": "It's going to be so much safer online.", + "start": 2462.32, + "end": 2463.66, + "words": [ + { + "word": " It's", + "start": 2462.32, + "end": 2462.32, + "probability": 0.1976318359375 + }, + { + "word": " going", + "start": 2462.32, + "end": 2462.32, + "probability": 0.80078125 + }, + { + "word": " to", + "start": 2462.32, + "end": 2462.32, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 2462.32, + "end": 2462.32, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 2462.32, + "end": 2462.7, + "probability": 0.9970703125 + }, + { + "word": " much", + "start": 2462.7, + "end": 2463.0, + "probability": 1.0 + }, + { + "word": " safer", + "start": 2463.0, + "end": 2463.32, + "probability": 0.99951171875 + }, + { + "word": " online.", + "start": 2463.32, + "end": 2463.66, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1150, + "text": "Now, on one of my machines, my primary machine in the car that I use all day long, I don't", + "start": 2464.7599999999998, + "end": 2470.1, + "words": [ + { + "word": " Now,", + "start": 2464.7599999999998, + "end": 2465.16, + "probability": 0.92724609375 + }, + { + "word": " on", + "start": 2465.16, + "end": 2465.56, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 2465.56, + "end": 2465.76, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2465.76, + "end": 2465.86, + "probability": 1.0 + }, + { + "word": " my", + "start": 2465.86, + "end": 2465.96, + "probability": 1.0 + }, + { + "word": " machines,", + "start": 2465.96, + "end": 2466.26, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 2466.42, + "end": 2466.66, + "probability": 0.95703125 + }, + { + "word": " primary", + "start": 2466.66, + "end": 2467.36, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2467.36, + "end": 2467.7, + "probability": 1.0 + }, + { + "word": " in", + "start": 2467.7, + "end": 2467.9, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2467.9, + "end": 2467.94, + "probability": 0.99951171875 + }, + { + "word": " car", + "start": 2467.94, + "end": 2468.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 2468.1, + "end": 2468.28, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2468.28, + "end": 2468.38, + "probability": 1.0 + }, + { + "word": " use", + "start": 2468.38, + "end": 2468.56, + "probability": 1.0 + }, + { + "word": " all", + "start": 2468.56, + "end": 2468.74, + "probability": 1.0 + }, + { + "word": " day", + "start": 2468.74, + "end": 2468.9, + "probability": 1.0 + }, + { + "word": " long,", + "start": 2468.9, + "end": 2469.12, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2469.36, + "end": 2469.96, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 2469.96, + "end": 2470.1, + "probability": 1.0 + } + ] + }, + { + "id": 1151, + "text": "even have antivirus on there.", + "start": 2470.1, + "end": 2471.04, + "words": [ + { + "word": " even", + "start": 2470.1, + "end": 2470.16, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 2470.16, + "end": 2470.32, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 2470.32, + "end": 2470.7, + "probability": 0.96875 + }, + { + "word": " on", + "start": 2470.7, + "end": 2470.86, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 2470.86, + "end": 2471.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1152, + "text": "Right.", + "start": 2471.14, + "end": 2471.54, + "words": [ + { + "word": " Right.", + "start": 2471.14, + "end": 2471.54, + "probability": 0.0634765625 + } + ] + }, + { + "id": 1153, + "text": "I don't need it.", + "start": 2471.6, + "end": 2472.14, + "words": [ + { + "word": " I", + "start": 2471.6, + "end": 2471.72, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 2471.72, + "end": 2471.86, + "probability": 1.0 + }, + { + "word": " need", + "start": 2471.86, + "end": 2471.98, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2471.98, + "end": 2472.14, + "probability": 1.0 + } + ] + }, + { + "id": 1154, + "text": "Right.", + "start": 2472.24, + "end": 2472.64, + "words": [ + { + "word": " Right.", + "start": 2472.24, + "end": 2472.64, + "probability": 0.828125 + } + ] + }, + { + "id": 1155, + "text": "Because I utilize some very unconventional ways of using the internet and configuring", + "start": 2472.76, + "end": 2480.2, + "words": [ + { + "word": " Because", + "start": 2472.76, + "end": 2472.94, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 2472.94, + "end": 2473.24, + "probability": 1.0 + }, + { + "word": " utilize", + "start": 2473.24, + "end": 2474.14, + "probability": 0.95703125 + }, + { + "word": " some", + "start": 2474.14, + "end": 2474.88, + "probability": 1.0 + }, + { + "word": " very", + "start": 2474.88, + "end": 2475.26, + "probability": 1.0 + }, + { + "word": " unconventional", + "start": 2475.26, + "end": 2477.36, + "probability": 0.998046875 + }, + { + "word": " ways", + "start": 2477.36, + "end": 2477.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 2477.72, + "end": 2478.1, + "probability": 1.0 + }, + { + "word": " using", + "start": 2478.1, + "end": 2478.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 2478.34, + "end": 2478.54, + "probability": 1.0 + }, + { + "word": " internet", + "start": 2478.54, + "end": 2478.74, + "probability": 0.1688232421875 + }, + { + "word": " and", + "start": 2478.74, + "end": 2479.38, + "probability": 0.99658203125 + }, + { + "word": " configuring", + "start": 2479.38, + "end": 2480.2, + "probability": 1.0 + } + ] + }, + { + "id": 1156, + "text": "the machine in such a way that I just don't get them.", + "start": 2480.2, + "end": 2482.28, + "words": [ + { + "word": " the", + "start": 2480.2, + "end": 2480.32, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2480.32, + "end": 2480.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 2480.54, + "end": 2480.88, + "probability": 1.0 + }, + { + "word": " such", + "start": 2480.88, + "end": 2481.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2481.06, + "end": 2481.12, + "probability": 1.0 + }, + { + "word": " way", + "start": 2481.12, + "end": 2481.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 2481.26, + "end": 2481.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 2481.4, + "end": 2481.58, + "probability": 1.0 + }, + { + "word": " just", + "start": 2481.58, + "end": 2481.74, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2481.74, + "end": 2481.92, + "probability": 1.0 + }, + { + "word": " get", + "start": 2481.92, + "end": 2482.08, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2482.08, + "end": 2482.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1157, + "text": "And even if I were, right, it would be very easy to remove because of that configuration.", + "start": 2482.38, + "end": 2486.92, + "words": [ + { + "word": " And", + "start": 2482.38, + "end": 2482.78, + "probability": 0.99755859375 + }, + { + "word": " even", + "start": 2482.78, + "end": 2483.48, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 2483.48, + "end": 2483.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 2483.68, + "end": 2483.78, + "probability": 1.0 + }, + { + "word": " were,", + "start": 2483.78, + "end": 2484.02, + "probability": 1.0 + }, + { + "word": " right,", + "start": 2484.16, + "end": 2484.46, + "probability": 0.98291015625 + }, + { + "word": " it", + "start": 2484.56, + "end": 2484.68, + "probability": 1.0 + }, + { + "word": " would", + "start": 2484.68, + "end": 2484.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 2484.78, + "end": 2484.94, + "probability": 1.0 + }, + { + "word": " very", + "start": 2484.94, + "end": 2485.18, + "probability": 1.0 + }, + { + "word": " easy", + "start": 2485.18, + "end": 2485.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 2485.38, + "end": 2485.54, + "probability": 1.0 + }, + { + "word": " remove", + "start": 2485.54, + "end": 2485.76, + "probability": 1.0 + }, + { + "word": " because", + "start": 2485.76, + "end": 2486.12, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2486.12, + "end": 2486.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 2486.38, + "end": 2486.5, + "probability": 1.0 + }, + { + "word": " configuration.", + "start": 2486.5, + "end": 2486.92, + "probability": 1.0 + } + ] + }, + { + "id": 1158, + "text": "Right.", + "start": 2487.26, + "end": 2487.56, + "words": [ + { + "word": " Right.", + "start": 2487.26, + "end": 2487.56, + "probability": 0.646484375 + } + ] + }, + { + "id": 1159, + "text": "So, you know, come down and take the class.", + "start": 2487.68, + "end": 2489.76, + "words": [ + { + "word": " So,", + "start": 2487.68, + "end": 2488.08, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2488.26, + "end": 2488.6, + "probability": 0.9853515625 + }, + { + "word": " know,", + "start": 2488.6, + "end": 2488.78, + "probability": 1.0 + }, + { + "word": " come", + "start": 2488.78, + "end": 2489.08, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 2489.08, + "end": 2489.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 2489.2, + "end": 2489.3, + "probability": 1.0 + }, + { + "word": " take", + "start": 2489.3, + "end": 2489.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 2489.44, + "end": 2489.56, + "probability": 1.0 + }, + { + "word": " class.", + "start": 2489.56, + "end": 2489.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1160, + "text": "It will save you a bunch of money.", + "start": 2489.94, + "end": 2491.62, + "words": [ + { + "word": " It", + "start": 2489.94, + "end": 2490.24, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 2490.24, + "end": 2490.48, + "probability": 1.0 + }, + { + "word": " save", + "start": 2490.48, + "end": 2490.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 2490.8, + "end": 2491.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 2491.02, + "end": 2491.1, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 2491.1, + "end": 2491.28, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2491.28, + "end": 2491.4, + "probability": 1.0 + }, + { + "word": " money.", + "start": 2491.4, + "end": 2491.62, + "probability": 1.0 + } + ] + }, + { + "id": 1161, + "text": "Right.", + "start": 2491.72, + "end": 2492.12, + "words": [ + { + "word": " Right.", + "start": 2491.72, + "end": 2492.12, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1162, + "text": "And a lot of times we get people in after they've brought their machine into the shop.", + "start": 2492.32, + "end": 2495.86, + "words": [ + { + "word": " And", + "start": 2492.32, + "end": 2492.32, + "probability": 0.8984375 + }, + { + "word": " a", + "start": 2492.32, + "end": 2492.44, + "probability": 0.9990234375 + }, + { + "word": " lot", + "start": 2492.44, + "end": 2492.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 2492.54, + "end": 2492.62, + "probability": 0.99951171875 + }, + { + "word": " times", + "start": 2492.62, + "end": 2493.1, + "probability": 0.99365234375 + }, + { + "word": " we", + "start": 2493.1, + "end": 2493.38, + "probability": 0.9482421875 + }, + { + "word": " get", + "start": 2493.38, + "end": 2493.54, + "probability": 1.0 + }, + { + "word": " people", + "start": 2493.54, + "end": 2493.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 2493.96, + "end": 2494.16, + "probability": 1.0 + }, + { + "word": " after", + "start": 2494.16, + "end": 2494.44, + "probability": 0.99951171875 + }, + { + "word": " they've", + "start": 2494.44, + "end": 2494.7, + "probability": 0.962890625 + }, + { + "word": " brought", + "start": 2494.7, + "end": 2494.88, + "probability": 1.0 + }, + { + "word": " their", + "start": 2494.88, + "end": 2495.04, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2495.04, + "end": 2495.28, + "probability": 1.0 + }, + { + "word": " into", + "start": 2495.28, + "end": 2495.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2495.5, + "end": 2495.62, + "probability": 1.0 + }, + { + "word": " shop.", + "start": 2495.62, + "end": 2495.86, + "probability": 1.0 + } + ] + }, + { + "id": 1163, + "text": "They're like, I've got this nasty infection.", + "start": 2495.92, + "end": 2497.34, + "words": [ + { + "word": " They're", + "start": 2495.92, + "end": 2496.06, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2496.06, + "end": 2496.14, + "probability": 0.9990234375 + }, + { + "word": " I've", + "start": 2496.22, + "end": 2496.38, + "probability": 1.0 + }, + { + "word": " got", + "start": 2496.38, + "end": 2496.52, + "probability": 1.0 + }, + { + "word": " this", + "start": 2496.52, + "end": 2496.72, + "probability": 1.0 + }, + { + "word": " nasty", + "start": 2496.72, + "end": 2497.02, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 2497.02, + "end": 2497.34, + "probability": 1.0 + } + ] + }, + { + "id": 1164, + "text": "And we're like, okay, that'll be $150 to clean it.", + "start": 2497.88, + "end": 2500.66, + "words": [ + { + "word": " And", + "start": 2497.88, + "end": 2498.28, + "probability": 0.99853515625 + }, + { + "word": " we're", + "start": 2498.28, + "end": 2498.4, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2498.4, + "end": 2498.54, + "probability": 1.0 + }, + { + "word": " okay,", + "start": 2498.66, + "end": 2498.84, + "probability": 0.91357421875 + }, + { + "word": " that'll", + "start": 2499.06, + "end": 2499.36, + "probability": 0.982421875 + }, + { + "word": " be", + "start": 2499.36, + "end": 2499.48, + "probability": 1.0 + }, + { + "word": " $150", + "start": 2499.48, + "end": 2499.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2499.96, + "end": 2500.34, + "probability": 1.0 + }, + { + "word": " clean", + "start": 2500.34, + "end": 2500.52, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2500.52, + "end": 2500.66, + "probability": 1.0 + } + ] + }, + { + "id": 1165, + "text": "Or you could have spent $25 to come down and sit with me for two hours and I teach you", + "start": 2500.86, + "end": 2506.24, + "words": [ + { + "word": " Or", + "start": 2500.86, + "end": 2501.26, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 2501.26, + "end": 2501.48, + "probability": 1.0 + }, + { + "word": " could", + "start": 2501.48, + "end": 2501.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 2501.66, + "end": 2501.76, + "probability": 1.0 + }, + { + "word": " spent", + "start": 2501.76, + "end": 2502.04, + "probability": 1.0 + }, + { + "word": " $25", + "start": 2502.04, + "end": 2502.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 2502.94, + "end": 2503.36, + "probability": 1.0 + }, + { + "word": " come", + "start": 2503.36, + "end": 2503.54, + "probability": 1.0 + }, + { + "word": " down", + "start": 2503.54, + "end": 2503.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 2503.76, + "end": 2503.92, + "probability": 1.0 + }, + { + "word": " sit", + "start": 2503.92, + "end": 2504.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 2504.1, + "end": 2504.24, + "probability": 1.0 + }, + { + "word": " me", + "start": 2504.24, + "end": 2504.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 2504.42, + "end": 2504.56, + "probability": 1.0 + }, + { + "word": " two", + "start": 2504.56, + "end": 2504.72, + "probability": 0.99658203125 + }, + { + "word": " hours", + "start": 2504.72, + "end": 2505.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 2505.12, + "end": 2505.5, + "probability": 0.69189453125 + }, + { + "word": " I", + "start": 2505.5, + "end": 2505.86, + "probability": 1.0 + }, + { + "word": " teach", + "start": 2505.86, + "end": 2506.02, + "probability": 0.984375 + }, + { + "word": " you", + "start": 2506.02, + "end": 2506.24, + "probability": 1.0 + } + ] + }, + { + "id": 1166, + "text": "about it.", + "start": 2506.24, + "end": 2506.62, + "words": [ + { + "word": " about", + "start": 2506.24, + "end": 2506.42, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2506.42, + "end": 2506.62, + "probability": 1.0 + } + ] + }, + { + "id": 1167, + "text": "Once again, knowledge is power.", + "start": 2506.8, + "end": 2508.62, + "words": [ + { + "word": " Once", + "start": 2506.8, + "end": 2507.1, + "probability": 0.9990234375 + }, + { + "word": " again,", + "start": 2507.1, + "end": 2507.3, + "probability": 1.0 + }, + { + "word": " knowledge", + "start": 2507.46, + "end": 2507.88, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2507.88, + "end": 2508.28, + "probability": 1.0 + }, + { + "word": " power.", + "start": 2508.28, + "end": 2508.62, + "probability": 1.0 + } + ] + }, + { + "id": 1168, + "text": "Right.", + "start": 2508.78, + "end": 2508.98, + "words": [ + { + "word": " Right.", + "start": 2508.78, + "end": 2508.98, + "probability": 0.83203125 + } + ] + }, + { + "id": 1169, + "text": "And knowledge is money saving.", + "start": 2509.02, + "end": 2510.74, + "words": [ + { + "word": " And", + "start": 2509.02, + "end": 2509.2, + "probability": 0.99951171875 + }, + { + "word": " knowledge", + "start": 2509.2, + "end": 2509.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 2509.68, + "end": 2509.98, + "probability": 1.0 + }, + { + "word": " money", + "start": 2509.98, + "end": 2510.38, + "probability": 1.0 + }, + { + "word": " saving.", + "start": 2510.38, + "end": 2510.74, + "probability": 0.91162109375 + } + ] + }, + { + "id": 1170, + "text": "Yes.", + "start": 2510.86, + "end": 2511.12, + "words": [ + { + "word": " Yes.", + "start": 2510.86, + "end": 2511.12, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1171, + "text": "Right.", + "start": 2511.26, + "end": 2511.36, + "words": [ + { + "word": " Right.", + "start": 2511.26, + "end": 2511.36, + "probability": 0.94677734375 + } + ] + }, + { + "id": 1172, + "text": "Knowledge is dollars still in your wallet.", + "start": 2511.66, + "end": 2514.0, + "words": [ + { + "word": " Knowledge", + "start": 2511.66, + "end": 2512.06, + "probability": 0.97412109375 + }, + { + "word": " is", + "start": 2512.06, + "end": 2512.46, + "probability": 1.0 + }, + { + "word": " dollars", + "start": 2512.46, + "end": 2513.02, + "probability": 0.96435546875 + }, + { + "word": " still", + "start": 2513.02, + "end": 2513.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 2513.36, + "end": 2513.56, + "probability": 1.0 + }, + { + "word": " your", + "start": 2513.56, + "end": 2513.7, + "probability": 1.0 + }, + { + "word": " wallet.", + "start": 2513.7, + "end": 2514.0, + "probability": 1.0 + } + ] + }, + { + "id": 1173, + "text": "So sign up for the classes.", + "start": 2514.52, + "end": 2515.88, + "words": [ + { + "word": " So", + "start": 2514.52, + "end": 2514.92, + "probability": 0.9970703125 + }, + { + "word": " sign", + "start": 2514.92, + "end": 2515.3, + "probability": 0.96484375 + }, + { + "word": " up", + "start": 2515.3, + "end": 2515.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 2515.42, + "end": 2515.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2515.52, + "end": 2515.56, + "probability": 1.0 + }, + { + "word": " classes.", + "start": 2515.56, + "end": 2515.88, + "probability": 1.0 + } + ] + }, + { + "id": 1174, + "text": "You can go to azcomputerguru.com in the classes section and sign up for those.", + "start": 2515.9, + "end": 2519.66, + "words": [ + { + "word": " You", + "start": 2515.9, + "end": 2516.08, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2516.08, + "end": 2516.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 2516.1, + "end": 2516.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 2516.2, + "end": 2516.3, + "probability": 1.0 + }, + { + "word": " azcomputerguru", + "start": 2516.3, + "end": 2517.04, + "probability": 0.9794921875 + }, + { + "word": ".com", + "start": 2517.04, + "end": 2517.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 2517.62, + "end": 2518.06, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2518.06, + "end": 2518.2, + "probability": 1.0 + }, + { + "word": " classes", + "start": 2518.2, + "end": 2518.44, + "probability": 0.998046875 + }, + { + "word": " section", + "start": 2518.44, + "end": 2518.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 2518.78, + "end": 2519.0, + "probability": 1.0 + }, + { + "word": " sign", + "start": 2519.0, + "end": 2519.16, + "probability": 1.0 + }, + { + "word": " up", + "start": 2519.16, + "end": 2519.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 2519.32, + "end": 2519.44, + "probability": 1.0 + }, + { + "word": " those.", + "start": 2519.44, + "end": 2519.66, + "probability": 1.0 + } + ] + }, + { + "id": 1175, + "text": "And we're also going to do a Guru.", + "start": 2520.08, + "end": 2522.1, + "words": [ + { + "word": " And", + "start": 2520.08, + "end": 2520.48, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 2520.48, + "end": 2520.74, + "probability": 1.0 + }, + { + "word": " also", + "start": 2520.74, + "end": 2520.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 2520.94, + "end": 2521.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 2521.22, + "end": 2521.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 2521.42, + "end": 2521.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 2521.58, + "end": 2521.8, + "probability": 1.0 + }, + { + "word": " Guru.", + "start": 2521.8, + "end": 2522.1, + "probability": 0.57275390625 + } + ] + }, + { + "id": 1176, + "text": "Guru Unleashed next week.", + "start": 2522.1, + "end": 2523.16, + "words": [ + { + "word": " Guru", + "start": 2522.1, + "end": 2522.16, + "probability": 3.2782554626464844e-06 + }, + { + "word": " Unleashed", + "start": 2522.16, + "end": 2522.54, + "probability": 0.98974609375 + }, + { + "word": " next", + "start": 2522.54, + "end": 2522.86, + "probability": 0.859375 + }, + { + "word": " week.", + "start": 2522.86, + "end": 2523.16, + "probability": 1.0 + } + ] + }, + { + "id": 1177, + "text": "And I didn't ask you about it, but if you want to show up for that.", + "start": 2523.96, + "end": 2526.94, + "words": [ + { + "word": " And", + "start": 2523.96, + "end": 2524.4, + "probability": 0.68408203125 + }, + { + "word": " I", + "start": 2524.4, + "end": 2524.58, + "probability": 0.95458984375 + }, + { + "word": " didn't", + "start": 2524.58, + "end": 2525.32, + "probability": 0.8583984375 + }, + { + "word": " ask", + "start": 2525.32, + "end": 2525.44, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2525.44, + "end": 2525.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 2525.6, + "end": 2525.74, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2525.74, + "end": 2525.86, + "probability": 1.0 + }, + { + "word": " but", + "start": 2525.9, + "end": 2525.96, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2525.96, + "end": 2526.08, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2526.08, + "end": 2526.12, + "probability": 1.0 + }, + { + "word": " want", + "start": 2526.12, + "end": 2526.26, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2526.26, + "end": 2526.38, + "probability": 1.0 + }, + { + "word": " show", + "start": 2526.38, + "end": 2526.56, + "probability": 1.0 + }, + { + "word": " up", + "start": 2526.56, + "end": 2526.7, + "probability": 0.98828125 + }, + { + "word": " for", + "start": 2526.7, + "end": 2526.82, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 2526.82, + "end": 2526.94, + "probability": 1.0 + } + ] + }, + { + "id": 1178, + "text": "Basically, it is sort of this show, right, but in person.", + "start": 2528.08, + "end": 2532.92, + "words": [ + { + "word": " Basically,", + "start": 2528.08, + "end": 2528.52, + "probability": 0.9775390625 + }, + { + "word": " it", + "start": 2528.7, + "end": 2529.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 2529.08, + "end": 2529.3, + "probability": 1.0 + }, + { + "word": " sort", + "start": 2529.3, + "end": 2529.84, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2529.84, + "end": 2530.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 2530.14, + "end": 2530.74, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 2530.74, + "end": 2531.28, + "probability": 1.0 + }, + { + "word": " right,", + "start": 2531.58, + "end": 2532.18, + "probability": 0.7978515625 + }, + { + "word": " but", + "start": 2532.24, + "end": 2532.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 2532.38, + "end": 2532.52, + "probability": 1.0 + }, + { + "word": " person.", + "start": 2532.52, + "end": 2532.92, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1179, + "text": "Oh, okay.", + "start": 2533.04, + "end": 2533.5, + "words": [ + { + "word": " Oh,", + "start": 2533.04, + "end": 2533.46, + "probability": 0.681640625 + }, + { + "word": " okay.", + "start": 2533.48, + "end": 2533.5, + "probability": 0.98046875 + } + ] + }, + { + "id": 1180, + "text": "Where you get to ask things that we can't normally answer on the air.", + "start": 2533.5, + "end": 2537.12, + "words": [ + { + "word": " Where", + "start": 2533.5, + "end": 2533.76, + "probability": 0.92822265625 + }, + { + "word": " you", + "start": 2533.76, + "end": 2533.86, + "probability": 1.0 + }, + { + "word": " get", + "start": 2533.86, + "end": 2533.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2533.98, + "end": 2534.08, + "probability": 1.0 + }, + { + "word": " ask", + "start": 2534.08, + "end": 2534.3, + "probability": 1.0 + }, + { + "word": " things", + "start": 2534.3, + "end": 2534.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2534.56, + "end": 2534.74, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2534.74, + "end": 2534.9, + "probability": 1.0 + }, + { + "word": " can't", + "start": 2534.9, + "end": 2535.18, + "probability": 1.0 + }, + { + "word": " normally", + "start": 2535.18, + "end": 2535.6, + "probability": 0.99951171875 + }, + { + "word": " answer", + "start": 2535.6, + "end": 2536.1, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2536.1, + "end": 2536.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2536.72, + "end": 2536.88, + "probability": 1.0 + }, + { + "word": " air.", + "start": 2536.88, + "end": 2537.12, + "probability": 1.0 + } + ] + }, + { + "id": 1181, + "text": "That includes gaming.", + "start": 2537.86, + "end": 2539.14, + "words": [ + { + "word": " That", + "start": 2537.86, + "end": 2538.3, + "probability": 1.0 + }, + { + "word": " includes", + "start": 2538.3, + "end": 2538.62, + "probability": 1.0 + }, + { + "word": " gaming.", + "start": 2538.62, + "end": 2539.14, + "probability": 1.0 + } + ] + }, + { + "id": 1182, + "text": "Right.", + "start": 2539.5, + "end": 2539.72, + "words": [ + { + "word": " Right.", + "start": 2539.5, + "end": 2539.72, + "probability": 0.96630859375 + } + ] + }, + { + "id": 1183, + "text": "Gaming, cord cutting, which is a big one that we always get because I will not talk about", + "start": 2539.74, + "end": 2543.96, + "words": [ + { + "word": " Gaming,", + "start": 2539.74, + "end": 2540.06, + "probability": 0.99365234375 + }, + { + "word": " cord", + "start": 2540.34, + "end": 2540.82, + "probability": 0.99169921875 + }, + { + "word": " cutting,", + "start": 2540.82, + "end": 2541.08, + "probability": 0.9853515625 + }, + { + "word": " which", + "start": 2541.22, + "end": 2541.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 2541.38, + "end": 2541.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 2541.5, + "end": 2541.6, + "probability": 1.0 + }, + { + "word": " big", + "start": 2541.6, + "end": 2541.84, + "probability": 1.0 + }, + { + "word": " one", + "start": 2541.84, + "end": 2542.04, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2542.04, + "end": 2542.24, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2542.24, + "end": 2542.32, + "probability": 1.0 + }, + { + "word": " always", + "start": 2542.32, + "end": 2542.56, + "probability": 1.0 + }, + { + "word": " get", + "start": 2542.56, + "end": 2542.72, + "probability": 1.0 + }, + { + "word": " because", + "start": 2542.72, + "end": 2542.88, + "probability": 0.513671875 + }, + { + "word": " I", + "start": 2542.88, + "end": 2543.02, + "probability": 1.0 + }, + { + "word": " will", + "start": 2543.02, + "end": 2543.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 2543.24, + "end": 2543.48, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2543.48, + "end": 2543.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 2543.7, + "end": 2543.96, + "probability": 1.0 + } + ] + }, + { + "id": 1184, + "text": "the actual specifics of cord cutting on air.", + "start": 2543.96, + "end": 2546.06, + "words": [ + { + "word": " the", + "start": 2543.96, + "end": 2544.2, + "probability": 1.0 + }, + { + "word": " actual", + "start": 2544.2, + "end": 2544.52, + "probability": 1.0 + }, + { + "word": " specifics", + "start": 2544.52, + "end": 2544.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 2544.92, + "end": 2545.28, + "probability": 1.0 + }, + { + "word": " cord", + "start": 2545.28, + "end": 2545.44, + "probability": 0.99951171875 + }, + { + "word": " cutting", + "start": 2545.44, + "end": 2545.62, + "probability": 1.0 + }, + { + "word": " on", + "start": 2545.62, + "end": 2545.86, + "probability": 0.99951171875 + }, + { + "word": " air.", + "start": 2545.86, + "end": 2546.06, + "probability": 1.0 + } + ] + }, + { + "id": 1185, + "text": "But there is some very cool information in that.", + "start": 2546.42, + "end": 2550.82, + "words": [ + { + "word": " But", + "start": 2546.42, + "end": 2546.86, + "probability": 0.0149383544921875 + }, + { + "word": " there", + "start": 2546.86, + "end": 2548.2, + "probability": 0.99658203125 + }, + { + "word": " is", + "start": 2548.2, + "end": 2548.56, + "probability": 0.9287109375 + }, + { + "word": " some", + "start": 2548.56, + "end": 2549.48, + "probability": 0.92431640625 + }, + { + "word": " very", + "start": 2549.48, + "end": 2549.78, + "probability": 1.0 + }, + { + "word": " cool", + "start": 2549.78, + "end": 2550.06, + "probability": 1.0 + }, + { + "word": " information", + "start": 2550.06, + "end": 2550.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 2550.5, + "end": 2550.72, + "probability": 0.99658203125 + }, + { + "word": " that.", + "start": 2550.72, + "end": 2550.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1186, + "text": "And you get an opportunity just to come down.", + "start": 2550.92, + "end": 2552.08, + "words": [ + { + "word": " And", + "start": 2550.92, + "end": 2550.98, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 2550.98, + "end": 2551.08, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2551.08, + "end": 2551.1, + "probability": 0.98193359375 + }, + { + "word": " an", + "start": 2551.1, + "end": 2551.2, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 2551.2, + "end": 2551.48, + "probability": 1.0 + }, + { + "word": " just", + "start": 2551.48, + "end": 2551.72, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2551.72, + "end": 2551.8, + "probability": 1.0 + }, + { + "word": " come", + "start": 2551.8, + "end": 2551.94, + "probability": 0.99951171875 + }, + { + "word": " down.", + "start": 2551.94, + "end": 2552.08, + "probability": 0.93359375 + } + ] + }, + { + "id": 1187, + "text": "Hang out with us.", + "start": 2552.1, + "end": 2552.72, + "words": [ + { + "word": " Hang", + "start": 2552.1, + "end": 2552.22, + "probability": 0.02044677734375 + }, + { + "word": " out", + "start": 2552.22, + "end": 2552.44, + "probability": 0.9765625 + }, + { + "word": " with", + "start": 2552.44, + "end": 2552.58, + "probability": 0.9990234375 + }, + { + "word": " us.", + "start": 2552.58, + "end": 2552.72, + "probability": 1.0 + } + ] + }, + { + "id": 1188, + "text": "Ask us anything you want.", + "start": 2552.76, + "end": 2553.78, + "words": [ + { + "word": " Ask", + "start": 2552.76, + "end": 2552.92, + "probability": 0.98974609375 + }, + { + "word": " us", + "start": 2552.92, + "end": 2553.04, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2553.04, + "end": 2553.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2553.22, + "end": 2553.52, + "probability": 0.99951171875 + }, + { + "word": " want.", + "start": 2553.52, + "end": 2553.78, + "probability": 1.0 + } + ] + }, + { + "id": 1189, + "text": "And it doesn't have the one hour time limit.", + "start": 2553.94, + "end": 2556.36, + "words": [ + { + "word": " And", + "start": 2553.94, + "end": 2554.26, + "probability": 0.4228515625 + }, + { + "word": " it", + "start": 2554.26, + "end": 2554.48, + "probability": 0.99169921875 + }, + { + "word": " doesn't", + "start": 2554.48, + "end": 2555.0, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2555.0, + "end": 2555.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 2555.22, + "end": 2555.42, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 2555.42, + "end": 2555.62, + "probability": 0.9931640625 + }, + { + "word": " hour", + "start": 2555.62, + "end": 2555.88, + "probability": 0.380859375 + }, + { + "word": " time", + "start": 2555.88, + "end": 2556.12, + "probability": 0.99951171875 + }, + { + "word": " limit.", + "start": 2556.12, + "end": 2556.36, + "probability": 1.0 + } + ] + }, + { + "id": 1190, + "text": "We're going to do that next Saturday.", + "start": 2556.5, + "end": 2557.8, + "words": [ + { + "word": " We're", + "start": 2556.5, + "end": 2556.62, + "probability": 0.99609375 + }, + { + "word": " going", + "start": 2556.62, + "end": 2556.66, + "probability": 0.98681640625 + }, + { + "word": " to", + "start": 2556.66, + "end": 2556.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 2556.74, + "end": 2556.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 2556.84, + "end": 2557.02, + "probability": 1.0 + }, + { + "word": " next", + "start": 2557.02, + "end": 2557.36, + "probability": 0.99951171875 + }, + { + "word": " Saturday.", + "start": 2557.36, + "end": 2557.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1191, + "text": "So if you want to show up for Guru Unleashed, it's also in the classes section on the website.", + "start": 2558.36, + "end": 2564.0, + "words": [ + { + "word": " So", + "start": 2558.36, + "end": 2558.76, + "probability": 0.99609375 + }, + { + "word": " if", + "start": 2558.76, + "end": 2559.12, + "probability": 0.916015625 + }, + { + "word": " you", + "start": 2559.12, + "end": 2559.26, + "probability": 1.0 + }, + { + "word": " want", + "start": 2559.26, + "end": 2559.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2559.4, + "end": 2559.48, + "probability": 1.0 + }, + { + "word": " show", + "start": 2559.48, + "end": 2559.64, + "probability": 1.0 + }, + { + "word": " up", + "start": 2559.64, + "end": 2559.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 2559.74, + "end": 2559.88, + "probability": 0.99462890625 + }, + { + "word": " Guru", + "start": 2559.88, + "end": 2560.06, + "probability": 0.951171875 + }, + { + "word": " Unleashed,", + "start": 2560.06, + "end": 2560.62, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2560.78, + "end": 2561.74, + "probability": 0.8818359375 + }, + { + "word": " also", + "start": 2561.74, + "end": 2561.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 2561.9, + "end": 2562.32, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 2562.32, + "end": 2562.64, + "probability": 1.0 + }, + { + "word": " classes", + "start": 2562.64, + "end": 2562.96, + "probability": 0.9970703125 + }, + { + "word": " section", + "start": 2562.96, + "end": 2563.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 2563.34, + "end": 2563.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2563.64, + "end": 2563.76, + "probability": 1.0 + }, + { + "word": " website.", + "start": 2563.76, + "end": 2564.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1192, + "text": "So azcomputerguru.com.", + "start": 2564.2, + "end": 2565.66, + "words": [ + { + "word": " So", + "start": 2564.2, + "end": 2564.3, + "probability": 0.99755859375 + }, + { + "word": " azcomputerguru", + "start": 2564.3, + "end": 2565.16, + "probability": 0.98681640625 + }, + { + "word": ".com.", + "start": 2565.16, + "end": 2565.66, + "probability": 1.0 + } + ] + }, + { + "id": 1193, + "text": "Check that out.", + "start": 2565.76, + "end": 2566.28, + "words": [ + { + "word": " Check", + "start": 2565.76, + "end": 2565.98, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2565.98, + "end": 2566.14, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2566.14, + "end": 2566.28, + "probability": 1.0 + } + ] + }, + { + "id": 1194, + "text": "Once again, our specials for the week.", + "start": 2566.72, + "end": 2568.2, + "words": [ + { + "word": " Once", + "start": 2566.72, + "end": 2567.12, + "probability": 0.99853515625 + }, + { + "word": " again,", + "start": 2567.12, + "end": 2567.3, + "probability": 1.0 + }, + { + "word": " our", + "start": 2567.32, + "end": 2567.42, + "probability": 0.99951171875 + }, + { + "word": " specials", + "start": 2567.42, + "end": 2567.82, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2567.82, + "end": 2567.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2567.88, + "end": 2567.94, + "probability": 1.0 + }, + { + "word": " week.", + "start": 2567.94, + "end": 2568.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1195, + "text": "$20 off per hour.", + "start": 2568.28, + "end": 2569.62, + "words": [ + { + "word": " $20", + "start": 2568.28, + "end": 2568.66, + "probability": 0.99462890625 + }, + { + "word": " off", + "start": 2568.66, + "end": 2568.98, + "probability": 1.0 + }, + { + "word": " per", + "start": 2568.98, + "end": 2569.2, + "probability": 1.0 + }, + { + "word": " hour.", + "start": 2569.2, + "end": 2569.62, + "probability": 1.0 + } + ] + }, + { + "id": 1196, + "text": "So $55 an hour for in-shop labor.", + "start": 2569.74, + "end": 2571.5, + "words": [ + { + "word": " So", + "start": 2569.74, + "end": 2569.9, + "probability": 0.99755859375 + }, + { + "word": " $55", + "start": 2569.9, + "end": 2570.3, + "probability": 1.0 + }, + { + "word": " an", + "start": 2570.3, + "end": 2570.68, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 2570.68, + "end": 2570.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 2570.8, + "end": 2570.96, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2570.96, + "end": 2571.08, + "probability": 0.998046875 + }, + { + "word": "-shop", + "start": 2571.08, + "end": 2571.24, + "probability": 0.98828125 + }, + { + "word": " labor.", + "start": 2571.24, + "end": 2571.5, + "probability": 1.0 + } + ] + }, + { + "id": 1197, + "text": "If you mention that you heard it on the show or you happen to have this week's newsletter.", + "start": 2571.68, + "end": 2576.24, + "words": [ + { + "word": " If", + "start": 2571.68, + "end": 2571.88, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 2571.88, + "end": 2572.0, + "probability": 1.0 + }, + { + "word": " mention", + "start": 2572.0, + "end": 2572.36, + "probability": 0.69189453125 + }, + { + "word": " that", + "start": 2572.36, + "end": 2572.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 2572.76, + "end": 2572.92, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2572.92, + "end": 2573.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 2573.16, + "end": 2573.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 2573.3, + "end": 2573.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2573.52, + "end": 2573.66, + "probability": 1.0 + }, + { + "word": " show", + "start": 2573.66, + "end": 2573.92, + "probability": 1.0 + }, + { + "word": " or", + "start": 2573.92, + "end": 2574.48, + "probability": 0.9033203125 + }, + { + "word": " you", + "start": 2574.48, + "end": 2574.9, + "probability": 0.99951171875 + }, + { + "word": " happen", + "start": 2574.9, + "end": 2575.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 2575.18, + "end": 2575.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 2575.32, + "end": 2575.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 2575.48, + "end": 2575.68, + "probability": 0.99951171875 + }, + { + "word": " week's", + "start": 2575.68, + "end": 2575.96, + "probability": 1.0 + }, + { + "word": " newsletter.", + "start": 2575.96, + "end": 2576.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1198, + "text": "And if you don't, you can send us an email.", + "start": 2576.46, + "end": 2578.68, + "words": [ + { + "word": " And", + "start": 2576.46, + "end": 2576.72, + "probability": 0.77392578125 + }, + { + "word": " if", + "start": 2576.72, + "end": 2576.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 2576.9, + "end": 2577.08, + "probability": 1.0 + }, + { + "word": " don't,", + "start": 2577.08, + "end": 2577.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 2577.58, + "end": 2577.76, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2577.76, + "end": 2577.98, + "probability": 1.0 + }, + { + "word": " send", + "start": 2577.98, + "end": 2578.26, + "probability": 1.0 + }, + { + "word": " us", + "start": 2578.26, + "end": 2578.38, + "probability": 1.0 + }, + { + "word": " an", + "start": 2578.38, + "end": 2578.5, + "probability": 1.0 + }, + { + "word": " email.", + "start": 2578.5, + "end": 2578.68, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1199, + "text": "Radio at azcomputerguru.com.", + "start": 2578.8, + "end": 2580.74, + "words": [ + { + "word": " Radio", + "start": 2578.8, + "end": 2579.18, + "probability": 0.95166015625 + }, + { + "word": " at", + "start": 2579.18, + "end": 2579.46, + "probability": 0.998046875 + }, + { + "word": " azcomputerguru", + "start": 2579.46, + "end": 2580.26, + "probability": 1.0 + }, + { + "word": ".com.", + "start": 2580.26, + "end": 2580.74, + "probability": 1.0 + } + ] + }, + { + "id": 1200, + "text": "And we'll even send you the Q&A.", + "start": 2580.96, + "end": 2582.08, + "words": [ + { + "word": " And", + "start": 2580.96, + "end": 2581.36, + "probability": 0.3984375 + }, + { + "word": " we'll", + "start": 2581.36, + "end": 2581.52, + "probability": 0.974609375 + }, + { + "word": " even", + "start": 2581.52, + "end": 2581.6, + "probability": 0.99853515625 + }, + { + "word": " send", + "start": 2581.6, + "end": 2581.8, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2581.8, + "end": 2581.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2581.94, + "end": 2582.02, + "probability": 0.9921875 + }, + { + "word": " Q", + "start": 2582.02, + "end": 2582.08, + "probability": 0.303955078125 + }, + { + "word": "&A.", + "start": 2582.08, + "end": 2582.08, + "probability": 0.9765625 + } + ] + }, + { + "id": 1201, + "text": "And then that way you can bring it in with you.", + "start": 2582.08, + "end": 2583.94, + "words": [ + { + "word": " And", + "start": 2582.08, + "end": 2582.34, + "probability": 0.09088134765625 + }, + { + "word": " then", + "start": 2582.34, + "end": 2582.88, + "probability": 0.95947265625 + }, + { + "word": " that", + "start": 2582.88, + "end": 2583.02, + "probability": 0.986328125 + }, + { + "word": " way", + "start": 2583.02, + "end": 2583.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 2583.16, + "end": 2583.26, + "probability": 0.97509765625 + }, + { + "word": " can", + "start": 2583.26, + "end": 2583.36, + "probability": 1.0 + }, + { + "word": " bring", + "start": 2583.36, + "end": 2583.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 2583.52, + "end": 2583.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 2583.64, + "end": 2583.72, + "probability": 1.0 + }, + { + "word": " with", + "start": 2583.72, + "end": 2583.84, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2583.84, + "end": 2583.94, + "probability": 1.0 + } + ] + }, + { + "id": 1202, + "text": "And we're going to offer for this particular week half off of web development for this upcoming week.", + "start": 2585.5199999999995, + "end": 2591.52, + "words": [ + { + "word": " And", + "start": 2585.5199999999995, + "end": 2585.8799999999997, + "probability": 0.7802734375 + }, + { + "word": " we're", + "start": 2585.8799999999997, + "end": 2586.24, + "probability": 0.9326171875 + }, + { + "word": " going", + "start": 2586.24, + "end": 2586.38, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 2586.38, + "end": 2586.52, + "probability": 1.0 + }, + { + "word": " offer", + "start": 2586.52, + "end": 2586.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 2586.72, + "end": 2587.08, + "probability": 0.65771484375 + }, + { + "word": " this", + "start": 2587.08, + "end": 2587.5, + "probability": 0.99658203125 + }, + { + "word": " particular", + "start": 2587.5, + "end": 2587.78, + "probability": 1.0 + }, + { + "word": " week", + "start": 2587.78, + "end": 2588.2, + "probability": 1.0 + }, + { + "word": " half", + "start": 2588.2, + "end": 2588.98, + "probability": 0.751953125 + }, + { + "word": " off", + "start": 2588.98, + "end": 2589.2, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 2589.2, + "end": 2589.36, + "probability": 1.0 + }, + { + "word": " web", + "start": 2589.36, + "end": 2589.5, + "probability": 0.95458984375 + }, + { + "word": " development", + "start": 2589.5, + "end": 2589.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 2589.94, + "end": 2590.48, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2590.48, + "end": 2590.6, + "probability": 0.9853515625 + }, + { + "word": " upcoming", + "start": 2590.6, + "end": 2591.04, + "probability": 1.0 + }, + { + "word": " week.", + "start": 2591.04, + "end": 2591.52, + "probability": 1.0 + } + ] + }, + { + "id": 1203, + "text": "So I think that's a good idea.", + "start": 2591.7, + "end": 2594.02, + "words": [ + { + "word": " So", + "start": 2591.7, + "end": 2591.88, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 2591.88, + "end": 2592.42, + "probability": 0.9111328125 + }, + { + "word": " think", + "start": 2592.42, + "end": 2593.26, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2593.26, + "end": 2593.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 2593.46, + "end": 2593.52, + "probability": 1.0 + }, + { + "word": " good", + "start": 2593.52, + "end": 2593.68, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 2593.68, + "end": 2594.02, + "probability": 1.0 + } + ] + }, + { + "id": 1204, + "text": "It's a good deal.", + "start": 2594.24, + "end": 2595.0, + "words": [ + { + "word": " It's", + "start": 2594.24, + "end": 2594.56, + "probability": 0.890625 + }, + { + "word": " a", + "start": 2594.56, + "end": 2594.58, + "probability": 1.0 + }, + { + "word": " good", + "start": 2594.58, + "end": 2594.7, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 2594.7, + "end": 2595.0, + "probability": 1.0 + } + ] + }, + { + "id": 1205, + "text": "Right.", + "start": 2595.16, + "end": 2595.36, + "words": [ + { + "word": " Right.", + "start": 2595.16, + "end": 2595.36, + "probability": 0.986328125 + } + ] + }, + { + "id": 1206, + "text": "So what do we got?", + "start": 2595.5, + "end": 2597.14, + "words": [ + { + "word": " So", + "start": 2595.5, + "end": 2595.86, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 2595.86, + "end": 2596.92, + "probability": 0.99658203125 + }, + { + "word": " do", + "start": 2596.92, + "end": 2596.98, + "probability": 0.99267578125 + }, + { + "word": " we", + "start": 2596.98, + "end": 2597.06, + "probability": 1.0 + }, + { + "word": " got?", + "start": 2597.06, + "end": 2597.14, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1207, + "text": "Like six minutes left.", + "start": 2597.16, + "end": 2597.98, + "words": [ + { + "word": " Like", + "start": 2597.16, + "end": 2597.26, + "probability": 0.998046875 + }, + { + "word": " six", + "start": 2597.26, + "end": 2597.58, + "probability": 0.9912109375 + }, + { + "word": " minutes", + "start": 2597.58, + "end": 2597.76, + "probability": 1.0 + }, + { + "word": " left.", + "start": 2597.76, + "end": 2597.98, + "probability": 1.0 + } + ] + }, + { + "id": 1208, + "text": "You can give us a call at 790-2040.", + "start": 2598.04, + "end": 2600.54, + "words": [ + { + "word": " You", + "start": 2598.04, + "end": 2598.14, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 2598.14, + "end": 2598.22, + "probability": 1.0 + }, + { + "word": " give", + "start": 2598.22, + "end": 2598.38, + "probability": 1.0 + }, + { + "word": " us", + "start": 2598.38, + "end": 2598.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 2598.52, + "end": 2598.58, + "probability": 1.0 + }, + { + "word": " call", + "start": 2598.58, + "end": 2598.76, + "probability": 1.0 + }, + { + "word": " at", + "start": 2598.76, + "end": 2598.9, + "probability": 1.0 + }, + { + "word": " 790", + "start": 2598.9, + "end": 2599.44, + "probability": 0.9931640625 + }, + { + "word": "-2040.", + "start": 2599.44, + "end": 2600.54, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1209, + "text": "And we'll see if we can quickly stuff an answer in.", + "start": 2600.8, + "end": 2604.66, + "words": [ + { + "word": " And", + "start": 2600.8, + "end": 2601.16, + "probability": 0.99951171875 + }, + { + "word": " we'll", + "start": 2601.16, + "end": 2601.88, + "probability": 1.0 + }, + { + "word": " see", + "start": 2601.88, + "end": 2602.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 2602.1, + "end": 2602.24, + "probability": 1.0 + }, + { + "word": " we", + "start": 2602.24, + "end": 2602.24, + "probability": 1.0 + }, + { + "word": " can", + "start": 2602.24, + "end": 2602.38, + "probability": 1.0 + }, + { + "word": " quickly", + "start": 2602.38, + "end": 2603.1, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2603.1, + "end": 2603.56, + "probability": 0.99462890625 + }, + { + "word": " an", + "start": 2603.56, + "end": 2603.82, + "probability": 0.9921875 + }, + { + "word": " answer", + "start": 2603.82, + "end": 2604.36, + "probability": 1.0 + }, + { + "word": " in.", + "start": 2604.36, + "end": 2604.66, + "probability": 1.0 + } + ] + }, + { + "id": 1210, + "text": "But I don't know if anybody's going to have time to do it just because I was wrong.", + "start": 2604.84, + "end": 2608.88, + "words": [ + { + "word": " But", + "start": 2604.84, + "end": 2605.2, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2605.2, + "end": 2605.74, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2605.74, + "end": 2605.94, + "probability": 1.0 + }, + { + "word": " know", + "start": 2605.94, + "end": 2606.02, + "probability": 1.0 + }, + { + "word": " if", + "start": 2606.02, + "end": 2606.08, + "probability": 1.0 + }, + { + "word": " anybody's", + "start": 2606.08, + "end": 2606.42, + "probability": 0.94921875 + }, + { + "word": " going", + "start": 2606.42, + "end": 2606.42, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2606.42, + "end": 2606.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 2606.5, + "end": 2606.58, + "probability": 1.0 + }, + { + "word": " time", + "start": 2606.58, + "end": 2606.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2606.74, + "end": 2606.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 2606.9, + "end": 2607.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 2607.04, + "end": 2607.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 2607.16, + "end": 2607.34, + "probability": 0.966796875 + }, + { + "word": " because", + "start": 2607.34, + "end": 2607.62, + "probability": 1.0 + }, + { + "word": " I", + "start": 2607.62, + "end": 2608.22, + "probability": 0.29541015625 + }, + { + "word": " was", + "start": 2608.22, + "end": 2608.68, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 2608.68, + "end": 2608.88, + "probability": 1.0 + } + ] + }, + { + "id": 1211, + "text": "We only have three minutes left.", + "start": 2608.92, + "end": 2609.92, + "words": [ + { + "word": " We", + "start": 2608.92, + "end": 2609.04, + "probability": 0.9990234375 + }, + { + "word": " only", + "start": 2609.04, + "end": 2609.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 2609.16, + "end": 2609.3, + "probability": 1.0 + }, + { + "word": " three", + "start": 2609.3, + "end": 2609.44, + "probability": 1.0 + }, + { + "word": " minutes", + "start": 2609.44, + "end": 2609.66, + "probability": 1.0 + }, + { + "word": " left.", + "start": 2609.66, + "end": 2609.92, + "probability": 1.0 + } + ] + }, + { + "id": 1212, + "text": "So four.", + "start": 2610.0, + "end": 2610.54, + "words": [ + { + "word": " So", + "start": 2610.0, + "end": 2610.26, + "probability": 0.73095703125 + }, + { + "word": " four.", + "start": 2610.26, + "end": 2610.54, + "probability": 0.97265625 + } + ] + }, + { + "id": 1213, + "text": "What was I going to talk about?", + "start": 2612.3599999999997, + "end": 2613.86, + "words": [ + { + "word": " What", + "start": 2612.3599999999997, + "end": 2612.7599999999998, + "probability": 0.79833984375 + }, + { + "word": " was", + "start": 2612.7599999999998, + "end": 2613.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 2613.16, + "end": 2613.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 2613.24, + "end": 2613.38, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2613.38, + "end": 2613.46, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2613.46, + "end": 2613.64, + "probability": 1.0 + }, + { + "word": " about?", + "start": 2613.64, + "end": 2613.86, + "probability": 1.0 + } + ] + }, + { + "id": 1214, + "text": "There was something on my list and I closed it.", + "start": 2614.12, + "end": 2616.42, + "words": [ + { + "word": " There", + "start": 2614.12, + "end": 2614.52, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 2614.52, + "end": 2614.64, + "probability": 1.0 + }, + { + "word": " something", + "start": 2614.64, + "end": 2614.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 2614.84, + "end": 2615.02, + "probability": 1.0 + }, + { + "word": " my", + "start": 2615.02, + "end": 2615.14, + "probability": 1.0 + }, + { + "word": " list", + "start": 2615.14, + "end": 2615.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 2615.4, + "end": 2615.52, + "probability": 0.4716796875 + }, + { + "word": " I", + "start": 2615.52, + "end": 2615.64, + "probability": 1.0 + }, + { + "word": " closed", + "start": 2615.64, + "end": 2616.02, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2616.02, + "end": 2616.42, + "probability": 1.0 + } + ] + }, + { + "id": 1215, + "text": "Oh, shame on you.", + "start": 2617.38, + "end": 2618.38, + "words": [ + { + "word": " Oh,", + "start": 2617.38, + "end": 2617.64, + "probability": 0.962890625 + }, + { + "word": " shame", + "start": 2617.64, + "end": 2617.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 2617.98, + "end": 2618.16, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2618.16, + "end": 2618.38, + "probability": 1.0 + } + ] + }, + { + "id": 1216, + "text": "I know.", + "start": 2618.4, + "end": 2618.74, + "words": [ + { + "word": " I", + "start": 2618.4, + "end": 2618.62, + "probability": 0.970703125 + }, + { + "word": " know.", + "start": 2618.62, + "end": 2618.74, + "probability": 1.0 + } + ] + }, + { + "id": 1217, + "text": "That's terrible.", + "start": 2618.78, + "end": 2619.34, + "words": [ + { + "word": " That's", + "start": 2618.78, + "end": 2619.02, + "probability": 0.99609375 + }, + { + "word": " terrible.", + "start": 2619.02, + "end": 2619.34, + "probability": 1.0 + } + ] + }, + { + "id": 1218, + "text": "And now there's a chat bubble in my way.", + "start": 2619.68, + "end": 2622.54, + "words": [ + { + "word": " And", + "start": 2619.68, + "end": 2620.02, + "probability": 0.2410888671875 + }, + { + "word": " now", + "start": 2620.02, + "end": 2620.28, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 2620.28, + "end": 2620.48, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2620.48, + "end": 2620.54, + "probability": 0.8515625 + }, + { + "word": " chat", + "start": 2620.54, + "end": 2621.62, + "probability": 0.68017578125 + }, + { + "word": " bubble", + "start": 2621.62, + "end": 2622.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 2622.06, + "end": 2622.26, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2622.26, + "end": 2622.36, + "probability": 1.0 + }, + { + "word": " way.", + "start": 2622.36, + "end": 2622.54, + "probability": 1.0 + } + ] + }, + { + "id": 1219, + "text": "I can't even click on the link I wanted to click on.", + "start": 2622.6, + "end": 2624.2, + "words": [ + { + "word": " I", + "start": 2622.6, + "end": 2622.68, + "probability": 0.9990234375 + }, + { + "word": " can't", + "start": 2622.68, + "end": 2622.74, + "probability": 0.9931640625 + }, + { + "word": " even", + "start": 2622.74, + "end": 2622.84, + "probability": 1.0 + }, + { + "word": " click", + "start": 2622.84, + "end": 2623.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 2623.04, + "end": 2623.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2623.14, + "end": 2623.26, + "probability": 1.0 + }, + { + "word": " link", + "start": 2623.26, + "end": 2623.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 2623.4, + "end": 2623.52, + "probability": 0.9990234375 + }, + { + "word": " wanted", + "start": 2623.52, + "end": 2623.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2623.72, + "end": 2623.84, + "probability": 1.0 + }, + { + "word": " click", + "start": 2623.84, + "end": 2624.0, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2624.0, + "end": 2624.2, + "probability": 1.0 + } + ] + }, + { + "id": 1220, + "text": "All right.", + "start": 2625.18, + "end": 2625.78, + "words": [ + { + "word": " All", + "start": 2625.18, + "end": 2625.58, + "probability": 0.90185546875 + }, + { + "word": " right.", + "start": 2625.58, + "end": 2625.78, + "probability": 1.0 + } + ] + }, + { + "id": 1221, + "text": "Got to love the internet.", + "start": 2625.98, + "end": 2626.98, + "words": [ + { + "word": " Got", + "start": 2625.98, + "end": 2626.36, + "probability": 0.347412109375 + }, + { + "word": " to", + "start": 2626.36, + "end": 2626.48, + "probability": 1.0 + }, + { + "word": " love", + "start": 2626.48, + "end": 2626.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 2626.6, + "end": 2626.72, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2626.72, + "end": 2626.98, + "probability": 0.53515625 + } + ] + }, + { + "id": 1222, + "text": "How about more scary stuff?", + "start": 2627.34, + "end": 2628.48, + "words": [ + { + "word": " How", + "start": 2627.34, + "end": 2627.74, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 2627.74, + "end": 2627.82, + "probability": 1.0 + }, + { + "word": " more", + "start": 2627.82, + "end": 2627.96, + "probability": 0.99951171875 + }, + { + "word": " scary", + "start": 2627.96, + "end": 2628.18, + "probability": 0.99951171875 + }, + { + "word": " stuff?", + "start": 2628.18, + "end": 2628.48, + "probability": 1.0 + } + ] + }, + { + "id": 1223, + "text": "Okay.", + "start": 2629.3, + "end": 2629.7, + "words": [ + { + "word": " Okay.", + "start": 2629.3, + "end": 2629.7, + "probability": 0.96826171875 + } + ] + }, + { + "id": 1224, + "text": "All right.", + "start": 2629.84, + "end": 2630.12, + "words": [ + { + "word": " All", + "start": 2629.84, + "end": 2630.04, + "probability": 0.99462890625 + }, + { + "word": " right.", + "start": 2630.04, + "end": 2630.12, + "probability": 1.0 + } + ] + }, + { + "id": 1225, + "text": "So this company has developed a drone, right?", + "start": 2630.16, + "end": 2634.76, + "words": [ + { + "word": " So", + "start": 2630.16, + "end": 2630.38, + "probability": 0.9775390625 + }, + { + "word": " this", + "start": 2630.38, + "end": 2631.6, + "probability": 0.82861328125 + }, + { + "word": " company", + "start": 2631.6, + "end": 2632.42, + "probability": 1.0 + }, + { + "word": " has", + "start": 2632.42, + "end": 2632.64, + "probability": 1.0 + }, + { + "word": " developed", + "start": 2632.64, + "end": 2633.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2633.06, + "end": 2633.4, + "probability": 1.0 + }, + { + "word": " drone,", + "start": 2633.4, + "end": 2634.08, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2634.24, + "end": 2634.76, + "probability": 1.0 + } + ] + }, + { + "id": 1226, + "text": "You know those flying drones?", + "start": 2634.9, + "end": 2636.12, + "words": [ + { + "word": " You", + "start": 2634.9, + "end": 2635.3, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 2635.3, + "end": 2635.42, + "probability": 1.0 + }, + { + "word": " those", + "start": 2635.42, + "end": 2635.56, + "probability": 0.95166015625 + }, + { + "word": " flying", + "start": 2635.56, + "end": 2635.76, + "probability": 1.0 + }, + { + "word": " drones?", + "start": 2635.76, + "end": 2636.12, + "probability": 1.0 + } + ] + }, + { + "id": 1227, + "text": "Oh, yeah.", + "start": 2636.22, + "end": 2637.16, + "words": [ + { + "word": " Oh,", + "start": 2636.22, + "end": 2636.58, + "probability": 0.9404296875 + }, + { + "word": " yeah.", + "start": 2636.98, + "end": 2637.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1228, + "text": "I know drones.", + "start": 2637.24, + "end": 2637.94, + "words": [ + { + "word": " I", + "start": 2637.24, + "end": 2637.64, + "probability": 0.607421875 + }, + { + "word": " know", + "start": 2637.64, + "end": 2637.64, + "probability": 1.0 + }, + { + "word": " drones.", + "start": 2637.64, + "end": 2637.94, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1229, + "text": "Multi-bladed helicopters?", + "start": 2637.94, + "end": 2638.5, + "words": [ + { + "word": " Multi", + "start": 2637.94, + "end": 2637.96, + "probability": 0.479736328125 + }, + { + "word": "-bladed", + "start": 2637.96, + "end": 2638.18, + "probability": 0.99853515625 + }, + { + "word": " helicopters?", + "start": 2638.18, + "end": 2638.5, + "probability": 1.0 + } + ] + }, + { + "id": 1230, + "text": "Yes.", + "start": 2639.16, + "end": 2639.42, + "words": [ + { + "word": " Yes.", + "start": 2639.16, + "end": 2639.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1231, + "text": "Well, this one's pretty interesting.", + "start": 2639.48, + "end": 2640.76, + "words": [ + { + "word": " Well,", + "start": 2639.48, + "end": 2639.76, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 2639.84, + "end": 2640.02, + "probability": 1.0 + }, + { + "word": " one's", + "start": 2640.02, + "end": 2640.26, + "probability": 0.9912109375 + }, + { + "word": " pretty", + "start": 2640.26, + "end": 2640.42, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 2640.42, + "end": 2640.76, + "probability": 1.0 + } + ] + }, + { + "id": 1232, + "text": "It gets activated.", + "start": 2640.82, + "end": 2641.46, + "words": [ + { + "word": " It", + "start": 2640.82, + "end": 2640.96, + "probability": 0.9921875 + }, + { + "word": " gets", + "start": 2640.96, + "end": 2641.08, + "probability": 0.998046875 + }, + { + "word": " activated.", + "start": 2641.08, + "end": 2641.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1233, + "text": "It gets activated when your house alarm goes off and it will find the perpetrator in your house.", + "start": 2641.46, + "end": 2648.18, + "words": [ + { + "word": " It", + "start": 2641.46, + "end": 2641.64, + "probability": 0.2587890625 + }, + { + "word": " gets", + "start": 2641.64, + "end": 2641.64, + "probability": 0.051513671875 + }, + { + "word": " activated", + "start": 2641.64, + "end": 2641.64, + "probability": 0.99267578125 + }, + { + "word": " when", + "start": 2641.64, + "end": 2641.84, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 2641.84, + "end": 2642.0, + "probability": 0.9990234375 + }, + { + "word": " house", + "start": 2642.0, + "end": 2642.24, + "probability": 0.99951171875 + }, + { + "word": " alarm", + "start": 2642.24, + "end": 2642.46, + "probability": 1.0 + }, + { + "word": " goes", + "start": 2642.46, + "end": 2642.74, + "probability": 1.0 + }, + { + "word": " off", + "start": 2642.74, + "end": 2643.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 2643.16, + "end": 2644.0, + "probability": 0.2333984375 + }, + { + "word": " it", + "start": 2644.0, + "end": 2644.58, + "probability": 0.9970703125 + }, + { + "word": " will", + "start": 2644.58, + "end": 2645.1, + "probability": 1.0 + }, + { + "word": " find", + "start": 2645.1, + "end": 2646.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2646.26, + "end": 2646.76, + "probability": 1.0 + }, + { + "word": " perpetrator", + "start": 2646.76, + "end": 2647.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 2647.34, + "end": 2647.66, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2647.66, + "end": 2647.8, + "probability": 1.0 + }, + { + "word": " house.", + "start": 2647.8, + "end": 2648.18, + "probability": 1.0 + } + ] + }, + { + "id": 1234, + "text": "And when it does, it sends you a picture and it asks you what do you want to do with them.", + "start": 2648.34, + "end": 2652.72, + "words": [ + { + "word": " And", + "start": 2648.34, + "end": 2648.78, + "probability": 0.93115234375 + }, + { + "word": " when", + "start": 2648.78, + "end": 2649.12, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 2649.12, + "end": 2649.32, + "probability": 1.0 + }, + { + "word": " does,", + "start": 2649.32, + "end": 2649.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 2649.98, + "end": 2650.12, + "probability": 1.0 + }, + { + "word": " sends", + "start": 2650.12, + "end": 2650.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 2650.4, + "end": 2650.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 2650.66, + "end": 2650.8, + "probability": 1.0 + }, + { + "word": " picture", + "start": 2650.8, + "end": 2651.08, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 2651.08, + "end": 2651.52, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 2651.52, + "end": 2651.66, + "probability": 0.99755859375 + }, + { + "word": " asks", + "start": 2651.66, + "end": 2651.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 2651.86, + "end": 2652.02, + "probability": 1.0 + }, + { + "word": " what", + "start": 2652.02, + "end": 2652.12, + "probability": 0.68603515625 + }, + { + "word": " do", + "start": 2652.12, + "end": 2652.2, + "probability": 0.66162109375 + }, + { + "word": " you", + "start": 2652.2, + "end": 2652.26, + "probability": 1.0 + }, + { + "word": " want", + "start": 2652.26, + "end": 2652.34, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2652.34, + "end": 2652.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 2652.42, + "end": 2652.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 2652.48, + "end": 2652.6, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2652.6, + "end": 2652.72, + "probability": 0.66162109375 + } + ] + }, + { + "id": 1235, + "text": "And you get to hit a button.", + "start": 2652.76, + "end": 2653.8, + "words": [ + { + "word": " And", + "start": 2652.76, + "end": 2653.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 2653.06, + "end": 2653.14, + "probability": 1.0 + }, + { + "word": " get", + "start": 2653.14, + "end": 2653.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2653.28, + "end": 2653.34, + "probability": 1.0 + }, + { + "word": " hit", + "start": 2653.34, + "end": 2653.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 2653.46, + "end": 2653.56, + "probability": 1.0 + }, + { + "word": " button.", + "start": 2653.56, + "end": 2653.8, + "probability": 1.0 + } + ] + }, + { + "id": 1236, + "text": "What's the button?", + "start": 2654.26, + "end": 2655.08, + "words": [ + { + "word": " What's", + "start": 2654.26, + "end": 2654.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 2654.7, + "end": 2654.78, + "probability": 0.98876953125 + }, + { + "word": " button?", + "start": 2654.78, + "end": 2655.08, + "probability": 1.0 + } + ] + }, + { + "id": 1237, + "text": "I want to know what the button is.", + "start": 2655.22, + "end": 2656.34, + "words": [ + { + "word": " I", + "start": 2655.22, + "end": 2655.44, + "probability": 0.9912109375 + }, + { + "word": " want", + "start": 2655.44, + "end": 2655.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2655.58, + "end": 2655.68, + "probability": 1.0 + }, + { + "word": " know", + "start": 2655.68, + "end": 2655.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 2655.82, + "end": 2655.98, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 2655.98, + "end": 2656.06, + "probability": 0.99951171875 + }, + { + "word": " button", + "start": 2656.06, + "end": 2656.3, + "probability": 0.99951171875 + }, + { + "word": " is.", + "start": 2656.3, + "end": 2656.34, + "probability": 0.7177734375 + } + ] + }, + { + "id": 1238, + "text": "There's a couple of buttons.", + "start": 2656.34, + "end": 2656.88, + "words": [ + { + "word": " There's", + "start": 2656.34, + "end": 2656.38, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2656.38, + "end": 2656.38, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2656.38, + "end": 2656.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 2656.5, + "end": 2656.6, + "probability": 1.0 + }, + { + "word": " buttons.", + "start": 2656.6, + "end": 2656.88, + "probability": 1.0 + } + ] + }, + { + "id": 1239, + "text": "One of them is like just maintain, just follow them around.", + "start": 2656.94, + "end": 2661.02, + "words": [ + { + "word": " One", + "start": 2656.94, + "end": 2657.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 2657.12, + "end": 2657.2, + "probability": 1.0 + }, + { + "word": " them", + "start": 2657.2, + "end": 2657.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 2657.34, + "end": 2657.5, + "probability": 0.9716796875 + }, + { + "word": " like", + "start": 2657.5, + "end": 2657.72, + "probability": 0.9248046875 + }, + { + "word": " just", + "start": 2657.72, + "end": 2658.62, + "probability": 0.86474609375 + }, + { + "word": " maintain,", + "start": 2658.62, + "end": 2659.44, + "probability": 0.81689453125 + }, + { + "word": " just", + "start": 2659.9, + "end": 2660.12, + "probability": 1.0 + }, + { + "word": " follow", + "start": 2660.12, + "end": 2660.58, + "probability": 1.0 + }, + { + "word": " them", + "start": 2660.58, + "end": 2660.76, + "probability": 1.0 + }, + { + "word": " around.", + "start": 2660.76, + "end": 2661.02, + "probability": 1.0 + } + ] + }, + { + "id": 1240, + "text": "The other one is detain.", + "start": 2661.52, + "end": 2662.9, + "words": [ + { + "word": " The", + "start": 2661.52, + "end": 2661.96, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 2661.96, + "end": 2662.1, + "probability": 1.0 + }, + { + "word": " one", + "start": 2662.1, + "end": 2662.22, + "probability": 1.0 + }, + { + "word": " is", + "start": 2662.22, + "end": 2662.34, + "probability": 1.0 + }, + { + "word": " detain.", + "start": 2662.34, + "end": 2662.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1241, + "text": "Now, first of all, you've got an eight-bladed helicopter that's flying around near you.", + "start": 2663.9, + "end": 2668.72, + "words": [ + { + "word": " Now,", + "start": 2663.9, + "end": 2664.34, + "probability": 0.97607421875 + }, + { + "word": " first", + "start": 2664.34, + "end": 2664.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 2664.78, + "end": 2665.02, + "probability": 1.0 + }, + { + "word": " all,", + "start": 2665.02, + "end": 2665.16, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2665.18, + "end": 2665.38, + "probability": 1.0 + }, + { + "word": " got", + "start": 2665.38, + "end": 2665.6, + "probability": 1.0 + }, + { + "word": " an", + "start": 2665.6, + "end": 2665.84, + "probability": 1.0 + }, + { + "word": " eight", + "start": 2665.84, + "end": 2666.08, + "probability": 0.99462890625 + }, + { + "word": "-bladed", + "start": 2666.08, + "end": 2666.48, + "probability": 0.9921875 + }, + { + "word": " helicopter", + "start": 2666.48, + "end": 2666.78, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2666.78, + "end": 2667.4, + "probability": 1.0 + }, + { + "word": " flying", + "start": 2667.4, + "end": 2667.62, + "probability": 1.0 + }, + { + "word": " around", + "start": 2667.62, + "end": 2667.94, + "probability": 1.0 + }, + { + "word": " near", + "start": 2667.94, + "end": 2668.42, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2668.42, + "end": 2668.72, + "probability": 1.0 + } + ] + }, + { + "id": 1242, + "text": "Does it have tiny little handcuffs?", + "start": 2668.94, + "end": 2670.4, + "words": [ + { + "word": " Does", + "start": 2668.94, + "end": 2669.12, + "probability": 0.99072265625 + }, + { + "word": " it", + "start": 2669.12, + "end": 2669.14, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2669.14, + "end": 2669.28, + "probability": 1.0 + }, + { + "word": " tiny", + "start": 2669.28, + "end": 2669.52, + "probability": 1.0 + }, + { + "word": " little", + "start": 2669.52, + "end": 2669.82, + "probability": 1.0 + }, + { + "word": " handcuffs?", + "start": 2669.82, + "end": 2670.4, + "probability": 1.0 + } + ] + }, + { + "id": 1243, + "text": "No.", + "start": 2670.66, + "end": 2670.98, + "words": [ + { + "word": " No.", + "start": 2670.66, + "end": 2670.98, + "probability": 1.0 + } + ] + }, + { + "id": 1244, + "text": "It has a stun gun built into it and it will tase your butt.", + "start": 2671.46, + "end": 2675.08, + "words": [ + { + "word": " It", + "start": 2671.46, + "end": 2671.46, + "probability": 0.73681640625 + }, + { + "word": " has", + "start": 2671.46, + "end": 2671.62, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 2671.62, + "end": 2671.86, + "probability": 1.0 + }, + { + "word": " stun", + "start": 2671.86, + "end": 2672.32, + "probability": 0.99951171875 + }, + { + "word": " gun", + "start": 2672.32, + "end": 2672.62, + "probability": 1.0 + }, + { + "word": " built", + "start": 2672.62, + "end": 2672.94, + "probability": 0.998046875 + }, + { + "word": " into", + "start": 2672.94, + "end": 2673.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 2673.28, + "end": 2673.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 2673.6, + "end": 2673.76, + "probability": 0.29052734375 + }, + { + "word": " it", + "start": 2673.76, + "end": 2673.92, + "probability": 1.0 + }, + { + "word": " will", + "start": 2673.92, + "end": 2674.08, + "probability": 1.0 + }, + { + "word": " tase", + "start": 2674.08, + "end": 2674.54, + "probability": 0.994140625 + }, + { + "word": " your", + "start": 2674.54, + "end": 2674.72, + "probability": 1.0 + }, + { + "word": " butt.", + "start": 2674.72, + "end": 2675.08, + "probability": 1.0 + } + ] + }, + { + "id": 1245, + "text": "I want one.", + "start": 2675.26, + "end": 2676.34, + "words": [ + { + "word": " I", + "start": 2675.26, + "end": 2675.62, + "probability": 0.99755859375 + }, + { + "word": " want", + "start": 2675.62, + "end": 2675.9, + "probability": 1.0 + }, + { + "word": " one.", + "start": 2675.9, + "end": 2676.34, + "probability": 1.0 + } + ] + }, + { + "id": 1246, + "text": "And then it will make sure that you do not move.", + "start": 2676.42, + "end": 2679.3, + "words": [ + { + "word": " And", + "start": 2676.42, + "end": 2676.6, + "probability": 0.68505859375 + }, + { + "word": " then", + "start": 2676.6, + "end": 2676.6, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2676.6, + "end": 2676.88, + "probability": 0.99853515625 + }, + { + "word": " will", + "start": 2676.88, + "end": 2677.12, + "probability": 1.0 + }, + { + "word": " make", + "start": 2677.12, + "end": 2677.7, + "probability": 0.96337890625 + }, + { + "word": " sure", + "start": 2677.7, + "end": 2678.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 2678.24, + "end": 2678.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2678.42, + "end": 2678.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 2678.56, + "end": 2678.66, + "probability": 1.0 + }, + { + "word": " not", + "start": 2678.66, + "end": 2678.92, + "probability": 1.0 + }, + { + "word": " move.", + "start": 2678.92, + "end": 2679.3, + "probability": 1.0 + } + ] + }, + { + "id": 1247, + "text": "Oh, I want one.", + "start": 2679.74, + "end": 2680.94, + "words": [ + { + "word": " Oh,", + "start": 2679.74, + "end": 2680.06, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 2680.1, + "end": 2680.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 2680.42, + "end": 2680.66, + "probability": 1.0 + }, + { + "word": " one.", + "start": 2680.66, + "end": 2680.94, + "probability": 1.0 + } + ] + }, + { + "id": 1248, + "text": "It's so bad.", + "start": 2680.94, + "end": 2681.08, + "words": [ + { + "word": " It's", + "start": 2680.94, + "end": 2681.08, + "probability": 0.83740234375 + }, + { + "word": " so", + "start": 2681.08, + "end": 2681.08, + "probability": 0.99951171875 + }, + { + "word": " bad.", + "start": 2681.08, + "end": 2681.08, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1249, + "text": "And so basically, if you try to get up and run away, it tases you again.", + "start": 2681.08, + "end": 2684.66, + "words": [ + { + "word": " And", + "start": 2681.08, + "end": 2681.12, + "probability": 0.9296875 + }, + { + "word": " so", + "start": 2681.12, + "end": 2681.4, + "probability": 0.9990234375 + }, + { + "word": " basically,", + "start": 2681.4, + "end": 2682.12, + "probability": 0.73974609375 + }, + { + "word": " if", + "start": 2682.22, + "end": 2682.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 2682.52, + "end": 2682.64, + "probability": 1.0 + }, + { + "word": " try", + "start": 2682.64, + "end": 2682.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 2682.82, + "end": 2682.9, + "probability": 1.0 + }, + { + "word": " get", + "start": 2682.9, + "end": 2683.02, + "probability": 1.0 + }, + { + "word": " up", + "start": 2683.02, + "end": 2683.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 2683.14, + "end": 2683.22, + "probability": 1.0 + }, + { + "word": " run", + "start": 2683.22, + "end": 2683.36, + "probability": 1.0 + }, + { + "word": " away,", + "start": 2683.36, + "end": 2683.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 2683.72, + "end": 2683.86, + "probability": 1.0 + }, + { + "word": " tases", + "start": 2683.86, + "end": 2684.18, + "probability": 0.9814453125 + }, + { + "word": " you", + "start": 2684.18, + "end": 2684.36, + "probability": 1.0 + }, + { + "word": " again.", + "start": 2684.36, + "end": 2684.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1250, + "text": "That would be awesome.", + "start": 2685.0, + "end": 2686.0, + "words": [ + { + "word": " That", + "start": 2685.0, + "end": 2685.38, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2685.38, + "end": 2685.52, + "probability": 1.0 + }, + { + "word": " be", + "start": 2685.52, + "end": 2685.7, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 2685.7, + "end": 2686.0, + "probability": 1.0 + } + ] + }, + { + "id": 1251, + "text": "And it calls the cops.", + "start": 2686.42, + "end": 2687.82, + "words": [ + { + "word": " And", + "start": 2686.42, + "end": 2686.82, + "probability": 0.99462890625 + }, + { + "word": " it", + "start": 2686.82, + "end": 2687.08, + "probability": 0.962890625 + }, + { + "word": " calls", + "start": 2687.08, + "end": 2687.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 2687.5, + "end": 2687.64, + "probability": 1.0 + }, + { + "word": " cops.", + "start": 2687.64, + "end": 2687.82, + "probability": 1.0 + } + ] + }, + { + "id": 1252, + "text": "I can't wait for the YouTube videos of these.", + "start": 2688.0, + "end": 2690.28, + "words": [ + { + "word": " I", + "start": 2688.0, + "end": 2688.4, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 2688.4, + "end": 2688.64, + "probability": 1.0 + }, + { + "word": " wait", + "start": 2688.64, + "end": 2688.76, + "probability": 1.0 + }, + { + "word": " for", + "start": 2688.76, + "end": 2688.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2688.96, + "end": 2689.08, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 2689.08, + "end": 2689.36, + "probability": 1.0 + }, + { + "word": " videos", + "start": 2689.36, + "end": 2689.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 2689.92, + "end": 2690.12, + "probability": 0.98583984375 + }, + { + "word": " these.", + "start": 2690.12, + "end": 2690.28, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1253, + "text": "There are a couple of YouTube videos of it in training.", + "start": 2690.7, + "end": 2693.24, + "words": [ + { + "word": " There", + "start": 2690.7, + "end": 2691.1, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 2691.1, + "end": 2691.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 2691.3, + "end": 2691.48, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2691.48, + "end": 2691.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 2691.7, + "end": 2691.76, + "probability": 0.88720703125 + }, + { + "word": " YouTube", + "start": 2691.76, + "end": 2691.94, + "probability": 1.0 + }, + { + "word": " videos", + "start": 2691.94, + "end": 2692.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 2692.26, + "end": 2692.54, + "probability": 1.0 + }, + { + "word": " it", + "start": 2692.54, + "end": 2692.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 2692.66, + "end": 2692.82, + "probability": 1.0 + }, + { + "word": " training.", + "start": 2692.82, + "end": 2693.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1254, + "text": "What's it cost?", + "start": 2693.44, + "end": 2694.08, + "words": [ + { + "word": " What's", + "start": 2693.44, + "end": 2693.78, + "probability": 0.98291015625 + }, + { + "word": " it", + "start": 2693.78, + "end": 2693.78, + "probability": 0.998046875 + }, + { + "word": " cost?", + "start": 2693.78, + "end": 2694.08, + "probability": 1.0 + } + ] + }, + { + "id": 1255, + "text": "You know, I don't know.", + "start": 2694.86, + "end": 2695.66, + "words": [ + { + "word": " You", + "start": 2694.86, + "end": 2695.26, + "probability": 0.66845703125 + }, + { + "word": " know,", + "start": 2695.26, + "end": 2695.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 2695.34, + "end": 2695.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2695.44, + "end": 2695.58, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2695.58, + "end": 2695.66, + "probability": 1.0 + } + ] + }, + { + "id": 1256, + "text": "They didn't put a cost on it.", + "start": 2695.68, + "end": 2696.62, + "words": [ + { + "word": " They", + "start": 2695.68, + "end": 2695.78, + "probability": 0.9990234375 + }, + { + "word": " didn't", + "start": 2695.78, + "end": 2696.0, + "probability": 1.0 + }, + { + "word": " put", + "start": 2696.0, + "end": 2696.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2696.1, + "end": 2696.2, + "probability": 0.99951171875 + }, + { + "word": " cost", + "start": 2696.2, + "end": 2696.44, + "probability": 1.0 + }, + { + "word": " on", + "start": 2696.44, + "end": 2696.62, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2696.62, + "end": 2696.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1257, + "text": "I don't even care.", + "start": 2696.62, + "end": 2697.26, + "words": [ + { + "word": " I", + "start": 2696.62, + "end": 2696.74, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 2696.74, + "end": 2696.8, + "probability": 1.0 + }, + { + "word": " even", + "start": 2696.8, + "end": 2696.94, + "probability": 1.0 + }, + { + "word": " care.", + "start": 2696.94, + "end": 2697.26, + "probability": 1.0 + } + ] + }, + { + "id": 1258, + "text": "Yeah.", + "start": 2697.7, + "end": 2698.1, + "words": [ + { + "word": " Yeah.", + "start": 2697.7, + "end": 2698.1, + "probability": 0.82958984375 + } + ] + }, + { + "id": 1259, + "text": "Right?", + "start": 2698.14, + "end": 2698.54, + "words": [ + { + "word": " Right?", + "start": 2698.14, + "end": 2698.54, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1260, + "text": "I think it's a great idea.", + "start": 2699.3199999999997, + "end": 2700.74, + "words": [ + { + "word": " I", + "start": 2699.3199999999997, + "end": 2699.72, + "probability": 0.9970703125 + }, + { + "word": " think", + "start": 2699.72, + "end": 2700.12, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2700.12, + "end": 2700.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 2700.26, + "end": 2700.3, + "probability": 1.0 + }, + { + "word": " great", + "start": 2700.3, + "end": 2700.46, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 2700.46, + "end": 2700.74, + "probability": 1.0 + } + ] + }, + { + "id": 1261, + "text": "I think it's slightly terrifying, though.", + "start": 2701.58, + "end": 2703.74, + "words": [ + { + "word": " I", + "start": 2701.58, + "end": 2702.02, + "probability": 0.82275390625 + }, + { + "word": " think", + "start": 2702.02, + "end": 2702.46, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2702.46, + "end": 2702.66, + "probability": 0.99951171875 + }, + { + "word": " slightly", + "start": 2702.66, + "end": 2702.9, + "probability": 0.99951171875 + }, + { + "word": " terrifying,", + "start": 2702.9, + "end": 2703.36, + "probability": 1.0 + }, + { + "word": " though.", + "start": 2703.56, + "end": 2703.74, + "probability": 1.0 + } + ] + }, + { + "id": 1262, + "text": "How many of those do you think Facebook could have bought?", + "start": 2703.88, + "end": 2706.1, + "words": [ + { + "word": " How", + "start": 2703.88, + "end": 2704.28, + "probability": 0.99755859375 + }, + { + "word": " many", + "start": 2704.28, + "end": 2704.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 2704.46, + "end": 2704.64, + "probability": 1.0 + }, + { + "word": " those", + "start": 2704.64, + "end": 2704.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 2704.82, + "end": 2704.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 2704.98, + "end": 2705.08, + "probability": 1.0 + }, + { + "word": " think", + "start": 2705.08, + "end": 2705.22, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2705.22, + "end": 2705.56, + "probability": 1.0 + }, + { + "word": " could", + "start": 2705.56, + "end": 2705.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 2705.8, + "end": 2705.92, + "probability": 1.0 + }, + { + "word": " bought?", + "start": 2705.92, + "end": 2706.1, + "probability": 1.0 + } + ] + }, + { + "id": 1263, + "text": "With $15 billion?", + "start": 2707.0, + "end": 2708.34, + "words": [ + { + "word": " With", + "start": 2707.0, + "end": 2707.44, + "probability": 0.9970703125 + }, + { + "word": " $15", + "start": 2707.44, + "end": 2707.88, + "probability": 0.98974609375 + }, + { + "word": " billion?", + "start": 2707.88, + "end": 2708.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1264, + "text": "Yeah, $16 billion.", + "start": 2708.64, + "end": 2709.52, + "words": [ + { + "word": " Yeah,", + "start": 2708.64, + "end": 2708.94, + "probability": 0.88916015625 + }, + { + "word": " $16", + "start": 2709.0, + "end": 2709.4, + "probability": 0.99755859375 + }, + { + "word": " billion.", + "start": 2709.4, + "end": 2709.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1265, + "text": "$16 billion.", + "start": 2709.52, + "end": 2710.18, + "words": [ + { + "word": " $16", + "start": 2709.52, + "end": 2709.88, + "probability": 0.9072265625 + }, + { + "word": " billion.", + "start": 2709.88, + "end": 2710.18, + "probability": 1.0 + } + ] + }, + { + "id": 1266, + "text": "Quite a few.", + "start": 2711.04, + "end": 2711.82, + "words": [ + { + "word": " Quite", + "start": 2711.04, + "end": 2711.48, + "probability": 0.96435546875 + }, + { + "word": " a", + "start": 2711.48, + "end": 2711.7, + "probability": 1.0 + }, + { + "word": " few.", + "start": 2711.7, + "end": 2711.82, + "probability": 1.0 + } + ] + }, + { + "id": 1267, + "text": "The Facebook drones.", + "start": 2713.2, + "end": 2714.54, + "words": [ + { + "word": " The", + "start": 2713.2, + "end": 2713.64, + "probability": 0.95654296875 + }, + { + "word": " Facebook", + "start": 2713.64, + "end": 2713.98, + "probability": 1.0 + }, + { + "word": " drones.", + "start": 2713.98, + "end": 2714.54, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1268, + "text": "You know, it used to be that you could just carry around a stake to distract the German shepherd.", + "start": 2714.86, + "end": 2718.66, + "words": [ + { + "word": " You", + "start": 2714.86, + "end": 2715.12, + "probability": 0.7119140625 + }, + { + "word": " know,", + "start": 2715.12, + "end": 2715.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 2715.2, + "end": 2715.28, + "probability": 1.0 + }, + { + "word": " used", + "start": 2715.28, + "end": 2715.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 2715.46, + "end": 2715.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 2715.56, + "end": 2715.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 2715.68, + "end": 2715.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 2715.8, + "end": 2715.88, + "probability": 1.0 + }, + { + "word": " could", + "start": 2715.88, + "end": 2715.98, + "probability": 1.0 + }, + { + "word": " just", + "start": 2715.98, + "end": 2716.14, + "probability": 1.0 + }, + { + "word": " carry", + "start": 2716.14, + "end": 2716.3, + "probability": 1.0 + }, + { + "word": " around", + "start": 2716.3, + "end": 2716.52, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 2716.52, + "end": 2716.7, + "probability": 0.99658203125 + }, + { + "word": " stake", + "start": 2716.7, + "end": 2716.88, + "probability": 0.68310546875 + }, + { + "word": " to", + "start": 2716.88, + "end": 2717.14, + "probability": 1.0 + }, + { + "word": " distract", + "start": 2717.14, + "end": 2717.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2717.74, + "end": 2718.14, + "probability": 1.0 + }, + { + "word": " German", + "start": 2718.14, + "end": 2718.3, + "probability": 1.0 + }, + { + "word": " shepherd.", + "start": 2718.3, + "end": 2718.66, + "probability": 0.58740234375 + } + ] + }, + { + "id": 1269, + "text": "Yeah.", + "start": 2718.82, + "end": 2719.04, + "words": [ + { + "word": " Yeah.", + "start": 2718.82, + "end": 2719.04, + "probability": 0.8662109375 + } + ] + }, + { + "id": 1270, + "text": "What are you going to do when you've got a multi-bladed helicopter with a stun gun chasing you?", + "start": 2719.1, + "end": 2723.5, + "words": [ + { + "word": " What", + "start": 2719.1, + "end": 2719.48, + "probability": 0.9931640625 + }, + { + "word": " are", + "start": 2719.48, + "end": 2719.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 2719.64, + "end": 2719.68, + "probability": 1.0 + }, + { + "word": " going", + "start": 2719.68, + "end": 2719.74, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2719.74, + "end": 2719.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 2719.8, + "end": 2719.98, + "probability": 1.0 + }, + { + "word": " when", + "start": 2719.98, + "end": 2720.22, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2720.22, + "end": 2720.38, + "probability": 1.0 + }, + { + "word": " got", + "start": 2720.38, + "end": 2720.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 2720.58, + "end": 2720.82, + "probability": 1.0 + }, + { + "word": " multi", + "start": 2720.82, + "end": 2721.32, + "probability": 0.9833984375 + }, + { + "word": "-bladed", + "start": 2721.32, + "end": 2721.72, + "probability": 0.99951171875 + }, + { + "word": " helicopter", + "start": 2721.72, + "end": 2722.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 2722.0, + "end": 2722.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 2722.46, + "end": 2722.56, + "probability": 1.0 + }, + { + "word": " stun", + "start": 2722.56, + "end": 2722.76, + "probability": 0.99951171875 + }, + { + "word": " gun", + "start": 2722.76, + "end": 2722.94, + "probability": 1.0 + }, + { + "word": " chasing", + "start": 2722.94, + "end": 2723.18, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2723.18, + "end": 2723.5, + "probability": 1.0 + } + ] + }, + { + "id": 1271, + "text": "It's terrifying, right?", + "start": 2726.08, + "end": 2727.8, + "words": [ + { + "word": " It's", + "start": 2726.08, + "end": 2726.52, + "probability": 0.958984375 + }, + { + "word": " terrifying,", + "start": 2726.52, + "end": 2726.96, + "probability": 0.9462890625 + }, + { + "word": " right?", + "start": 2727.38, + "end": 2727.8, + "probability": 1.0 + } + ] + }, + { + "id": 1272, + "text": "Wow.", + "start": 2729.78, + "end": 2730.22, + "words": [ + { + "word": " Wow.", + "start": 2729.78, + "end": 2730.22, + "probability": 0.81982421875 + } + ] + }, + { + "id": 1273, + "text": "Wow.", + "start": 2730.52, + "end": 2730.54, + "words": [ + { + "word": " Wow.", + "start": 2730.52, + "end": 2730.54, + "probability": 0.00699615478515625 + } + ] + }, + { + "id": 1274, + "text": "Wow.", + "start": 2730.82, + "end": 2731.26, + "words": [ + { + "word": " Wow.", + "start": 2730.82, + "end": 2731.26, + "probability": 0.1497802734375 + } + ] + }, + { + "id": 1275, + "text": "Wow.", + "start": 2731.26, + "end": 2731.44, + "words": [ + { + "word": " Wow.", + "start": 2731.26, + "end": 2731.44, + "probability": 0.615234375 + } + ] + }, + { + "id": 1276, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1277, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1278, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1279, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1280, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1281, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1282, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1283, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1284, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1285, + "text": "", + "start": 2731.44, + "end": 2731.44, + "words": [] + }, + { + "id": 1286, + "text": "Wait for the YouTube video.", + "start": 2731.46, + "end": 2732.42, + "words": [ + { + "word": " Wait", + "start": 2731.46, + "end": 2731.54, + "probability": 0.45703125 + }, + { + "word": " for", + "start": 2731.54, + "end": 2731.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2731.66, + "end": 2731.78, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 2731.78, + "end": 2732.02, + "probability": 0.99951171875 + }, + { + "word": " video.", + "start": 2732.02, + "end": 2732.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1287, + "text": "The thing is, is I'm so torn about it because I'm like, wow, that's really scary, but I want one.", + "start": 2732.92, + "end": 2737.0, + "words": [ + { + "word": " The", + "start": 2732.92, + "end": 2733.32, + "probability": 0.998046875 + }, + { + "word": " thing", + "start": 2733.32, + "end": 2733.64, + "probability": 1.0 + }, + { + "word": " is,", + "start": 2733.64, + "end": 2733.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 2733.86, + "end": 2733.98, + "probability": 0.861328125 + }, + { + "word": " I'm", + "start": 2733.98, + "end": 2734.14, + "probability": 1.0 + }, + { + "word": " so", + "start": 2734.14, + "end": 2734.26, + "probability": 1.0 + }, + { + "word": " torn", + "start": 2734.26, + "end": 2734.54, + "probability": 1.0 + }, + { + "word": " about", + "start": 2734.54, + "end": 2734.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 2734.74, + "end": 2734.88, + "probability": 1.0 + }, + { + "word": " because", + "start": 2734.88, + "end": 2735.02, + "probability": 0.880859375 + }, + { + "word": " I'm", + "start": 2735.02, + "end": 2735.22, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2735.22, + "end": 2735.38, + "probability": 0.99609375 + }, + { + "word": " wow,", + "start": 2735.46, + "end": 2735.6, + "probability": 0.98486328125 + }, + { + "word": " that's", + "start": 2735.68, + "end": 2735.82, + "probability": 1.0 + }, + { + "word": " really", + "start": 2735.82, + "end": 2735.96, + "probability": 1.0 + }, + { + "word": " scary,", + "start": 2735.96, + "end": 2736.16, + "probability": 1.0 + }, + { + "word": " but", + "start": 2736.32, + "end": 2736.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 2736.44, + "end": 2736.52, + "probability": 1.0 + }, + { + "word": " want", + "start": 2736.52, + "end": 2736.74, + "probability": 1.0 + }, + { + "word": " one.", + "start": 2736.74, + "end": 2737.0, + "probability": 1.0 + } + ] + }, + { + "id": 1288, + "text": "Yeah.", + "start": 2738.22, + "end": 2738.62, + "words": [ + { + "word": " Yeah.", + "start": 2738.22, + "end": 2738.62, + "probability": 0.82763671875 + } + ] + }, + { + "id": 1289, + "text": "But one of these days, right, something's going to happen.", + "start": 2738.98, + "end": 2741.74, + "words": [ + { + "word": " But", + "start": 2738.98, + "end": 2739.38, + "probability": 0.99267578125 + }, + { + "word": " one", + "start": 2739.38, + "end": 2739.98, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 2739.98, + "end": 2740.1, + "probability": 1.0 + }, + { + "word": " these", + "start": 2740.1, + "end": 2740.2, + "probability": 1.0 + }, + { + "word": " days,", + "start": 2740.2, + "end": 2740.5, + "probability": 1.0 + }, + { + "word": " right,", + "start": 2740.58, + "end": 2740.78, + "probability": 0.99853515625 + }, + { + "word": " something's", + "start": 2740.92, + "end": 2741.4, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2741.4, + "end": 2741.5, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2741.5, + "end": 2741.54, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 2741.54, + "end": 2741.74, + "probability": 1.0 + } + ] + }, + { + "id": 1290, + "text": "There's going to be an infection, right, that comes out.", + "start": 2741.8, + "end": 2743.8, + "words": [ + { + "word": " There's", + "start": 2741.8, + "end": 2741.9, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2741.9, + "end": 2741.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2741.98, + "end": 2742.06, + "probability": 1.0 + }, + { + "word": " be", + "start": 2742.06, + "end": 2742.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 2742.16, + "end": 2742.3, + "probability": 1.0 + }, + { + "word": " infection,", + "start": 2742.3, + "end": 2742.8, + "probability": 1.0 + }, + { + "word": " right,", + "start": 2742.96, + "end": 2743.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 2743.32, + "end": 2743.44, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 2743.44, + "end": 2743.62, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2743.62, + "end": 2743.8, + "probability": 1.0 + } + ] + }, + { + "id": 1291, + "text": "For a more update for a helicopter, it chases its owners down and stuns them.", + "start": 2743.92, + "end": 2747.34, + "words": [ + { + "word": " For", + "start": 2743.92, + "end": 2744.32, + "probability": 0.8193359375 + }, + { + "word": " a", + "start": 2744.32, + "end": 2744.46, + "probability": 0.83349609375 + }, + { + "word": " more", + "start": 2744.46, + "end": 2744.56, + "probability": 0.9921875 + }, + { + "word": " update", + "start": 2744.56, + "end": 2744.82, + "probability": 0.9892578125 + }, + { + "word": " for", + "start": 2744.82, + "end": 2745.0, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2745.0, + "end": 2745.06, + "probability": 0.83544921875 + }, + { + "word": " helicopter,", + "start": 2745.06, + "end": 2745.38, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2745.64, + "end": 2745.84, + "probability": 0.99951171875 + }, + { + "word": " chases", + "start": 2745.84, + "end": 2746.16, + "probability": 1.0 + }, + { + "word": " its", + "start": 2746.16, + "end": 2746.36, + "probability": 0.99951171875 + }, + { + "word": " owners", + "start": 2746.36, + "end": 2746.58, + "probability": 1.0 + }, + { + "word": " down", + "start": 2746.58, + "end": 2746.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 2746.8, + "end": 2746.94, + "probability": 1.0 + }, + { + "word": " stuns", + "start": 2746.94, + "end": 2747.26, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 2747.26, + "end": 2747.34, + "probability": 1.0 + } + ] + }, + { + "id": 1292, + "text": "Oh, yeah.", + "start": 2747.7, + "end": 2748.5, + "words": [ + { + "word": " Oh,", + "start": 2747.7, + "end": 2748.08, + "probability": 0.998046875 + }, + { + "word": " yeah.", + "start": 2748.12, + "end": 2748.5, + "probability": 1.0 + } + ] + }, + { + "id": 1293, + "text": "I didn't even think about that.", + "start": 2748.6, + "end": 2749.8, + "words": [ + { + "word": " I", + "start": 2748.6, + "end": 2748.76, + "probability": 0.99853515625 + }, + { + "word": " didn't", + "start": 2748.76, + "end": 2749.0, + "probability": 1.0 + }, + { + "word": " even", + "start": 2749.0, + "end": 2749.08, + "probability": 0.99755859375 + }, + { + "word": " think", + "start": 2749.08, + "end": 2749.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 2749.38, + "end": 2749.58, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2749.58, + "end": 2749.8, + "probability": 1.0 + } + ] + }, + { + "id": 1294, + "text": "Or all the helicopters are like, humans?", + "start": 2750.54, + "end": 2752.86, + "words": [ + { + "word": " Or", + "start": 2750.54, + "end": 2750.94, + "probability": 0.9873046875 + }, + { + "word": " all", + "start": 2750.94, + "end": 2751.34, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2751.34, + "end": 2751.5, + "probability": 1.0 + }, + { + "word": " helicopters", + "start": 2751.5, + "end": 2751.8, + "probability": 1.0 + }, + { + "word": " are", + "start": 2751.8, + "end": 2752.08, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2752.08, + "end": 2752.26, + "probability": 0.943359375 + }, + { + "word": " humans?", + "start": 2752.36, + "end": 2752.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1295, + "text": "Really?", + "start": 2753.12, + "end": 2753.46, + "words": [ + { + "word": " Really?", + "start": 2753.12, + "end": 2753.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1296, + "text": "That'd make a good Twilight Zone.", + "start": 2753.7, + "end": 2754.86, + "words": [ + { + "word": " That'd", + "start": 2753.7, + "end": 2753.84, + "probability": 0.59912109375 + }, + { + "word": " make", + "start": 2753.84, + "end": 2753.92, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 2753.92, + "end": 2754.02, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 2754.02, + "end": 2754.2, + "probability": 1.0 + }, + { + "word": " Twilight", + "start": 2754.2, + "end": 2754.52, + "probability": 0.99462890625 + }, + { + "word": " Zone.", + "start": 2754.52, + "end": 2754.86, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1297, + "text": "It's the latest Hollywood blockbuster.", + "start": 2756.96, + "end": 2759.56, + "words": [ + { + "word": " It's", + "start": 2756.96, + "end": 2757.36, + "probability": 0.91845703125 + }, + { + "word": " the", + "start": 2757.36, + "end": 2757.44, + "probability": 1.0 + }, + { + "word": " latest", + "start": 2757.44, + "end": 2758.12, + "probability": 0.998046875 + }, + { + "word": " Hollywood", + "start": 2758.12, + "end": 2758.64, + "probability": 1.0 + }, + { + "word": " blockbuster.", + "start": 2758.64, + "end": 2759.56, + "probability": 1.0 + } + ] + }, + { + "id": 1298, + "text": "Well, this...", + "start": 2759.84, + "end": 2760.4, + "words": [ + { + "word": " Well,", + "start": 2759.84, + "end": 2760.14, + "probability": 0.83251953125 + }, + { + "word": " this...", + "start": 2760.14, + "end": 2760.4, + "probability": 0.48974609375 + } + ] + }, + { + "id": 1299, + "text": "They're even...", + "start": 2760.4, + "end": 2761.28, + "words": [ + { + "word": " They're", + "start": 2760.4, + "end": 2761.0, + "probability": 0.6357421875 + }, + { + "word": " even...", + "start": 2761.0, + "end": 2761.28, + "probability": 0.7822265625 + } + ] + }, + { + "id": 1300, + "text": "They're even selling drones on parades.", + "start": 2761.28, + "end": 2762.34, + "words": [ + { + "word": " They're", + "start": 2761.28, + "end": 2761.6, + "probability": 0.541015625 + }, + { + "word": " even", + "start": 2761.6, + "end": 2761.6, + "probability": 0.87109375 + }, + { + "word": " selling", + "start": 2761.6, + "end": 2761.6, + "probability": 0.97509765625 + }, + { + "word": " drones", + "start": 2761.6, + "end": 2761.6, + "probability": 0.5146484375 + }, + { + "word": " on", + "start": 2761.6, + "end": 2761.84, + "probability": 0.97119140625 + }, + { + "word": " parades.", + "start": 2761.84, + "end": 2762.34, + "probability": 0.65087890625 + } + ] + }, + { + "id": 1301, + "text": "They're even selling those drones at Verizon.", + "start": 2762.34, + "end": 2764.76, + "words": [ + { + "word": " They're", + "start": 2762.34, + "end": 2762.58, + "probability": 0.9970703125 + }, + { + "word": " even", + "start": 2762.58, + "end": 2762.7, + "probability": 0.9951171875 + }, + { + "word": " selling", + "start": 2762.7, + "end": 2762.98, + "probability": 1.0 + }, + { + "word": " those", + "start": 2762.98, + "end": 2763.18, + "probability": 0.99951171875 + }, + { + "word": " drones", + "start": 2763.18, + "end": 2763.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 2763.58, + "end": 2763.88, + "probability": 0.99951171875 + }, + { + "word": " Verizon.", + "start": 2763.88, + "end": 2764.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1302, + "text": "Mm-hmm.", + "start": 2765.1, + "end": 2765.54, + "words": [ + { + "word": " Mm", + "start": 2765.1, + "end": 2765.42, + "probability": 0.2105712890625 + }, + { + "word": "-hmm.", + "start": 2765.42, + "end": 2765.54, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1303, + "text": "Right?", + "start": 2765.6, + "end": 2765.82, + "words": [ + { + "word": " Right?", + "start": 2765.6, + "end": 2765.82, + "probability": 0.974609375 + } + ] + }, + { + "id": 1304, + "text": "They're kind of cool.", + "start": 2766.0, + "end": 2767.16, + "words": [ + { + "word": " They're", + "start": 2766.0, + "end": 2766.4, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 2766.4, + "end": 2766.68, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2766.68, + "end": 2766.94, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 2766.94, + "end": 2767.16, + "probability": 1.0 + } + ] + }, + { + "id": 1305, + "text": "They really are.", + "start": 2767.34, + "end": 2768.1, + "words": [ + { + "word": " They", + "start": 2767.34, + "end": 2767.54, + "probability": 1.0 + }, + { + "word": " really", + "start": 2767.54, + "end": 2767.74, + "probability": 1.0 + }, + { + "word": " are.", + "start": 2767.74, + "end": 2768.1, + "probability": 1.0 + } + ] + }, + { + "id": 1306, + "text": "Probably get the little GoPro camera.", + "start": 2768.16, + "end": 2769.64, + "words": [ + { + "word": " Probably", + "start": 2768.16, + "end": 2768.3, + "probability": 0.26708984375 + }, + { + "word": " get", + "start": 2768.3, + "end": 2768.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 2768.46, + "end": 2768.6, + "probability": 1.0 + }, + { + "word": " little", + "start": 2768.6, + "end": 2768.74, + "probability": 1.0 + }, + { + "word": " GoPro", + "start": 2768.74, + "end": 2769.08, + "probability": 0.99951171875 + }, + { + "word": " camera.", + "start": 2769.08, + "end": 2769.64, + "probability": 1.0 + } + ] + }, + { + "id": 1307, + "text": "Right.", + "start": 2769.86, + "end": 2770.26, + "words": [ + { + "word": " Right.", + "start": 2769.86, + "end": 2770.26, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1308, + "text": "Pop it on there.", + "start": 2770.26, + "end": 2770.8, + "words": [ + { + "word": " Pop", + "start": 2770.26, + "end": 2770.48, + "probability": 0.95947265625 + }, + { + "word": " it", + "start": 2770.48, + "end": 2770.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 2770.5, + "end": 2770.68, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2770.68, + "end": 2770.8, + "probability": 1.0 + } + ] + }, + { + "id": 1309, + "text": "Get some really good footage.", + "start": 2770.8, + "end": 2770.96, + "words": [ + { + "word": " Get", + "start": 2770.8, + "end": 2770.96, + "probability": 0.7646484375 + }, + { + "word": " some", + "start": 2770.96, + "end": 2770.96, + "probability": 0.99609375 + }, + { + "word": " really", + "start": 2770.96, + "end": 2770.96, + "probability": 0.9990234375 + }, + { + "word": " good", + "start": 2770.96, + "end": 2770.96, + "probability": 0.9990234375 + }, + { + "word": " footage.", + "start": 2770.96, + "end": 2770.96, + "probability": 0.99609375 + } + ] + }, + { + "id": 1310, + "text": "Well, they have cameras built in.", + "start": 2770.96, + "end": 2772.34, + "words": [ + { + "word": " Well,", + "start": 2770.96, + "end": 2770.96, + "probability": 0.4736328125 + }, + { + "word": " they", + "start": 2770.96, + "end": 2770.96, + "probability": 0.9775390625 + }, + { + "word": " have", + "start": 2770.96, + "end": 2771.2, + "probability": 0.98388671875 + }, + { + "word": " cameras", + "start": 2771.2, + "end": 2771.78, + "probability": 0.99951171875 + }, + { + "word": " built", + "start": 2771.78, + "end": 2772.04, + "probability": 0.98828125 + }, + { + "word": " in.", + "start": 2772.04, + "end": 2772.34, + "probability": 0.998046875 + } + ] + }, + { + "id": 1311, + "text": "I have a friend that does it, and he's got some really great footage.", + "start": 2772.44, + "end": 2775.32, + "words": [ + { + "word": " I", + "start": 2772.44, + "end": 2772.78, + "probability": 0.99462890625 + }, + { + "word": " have", + "start": 2772.78, + "end": 2772.88, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2772.88, + "end": 2772.98, + "probability": 1.0 + }, + { + "word": " friend", + "start": 2772.98, + "end": 2773.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 2773.2, + "end": 2773.38, + "probability": 1.0 + }, + { + "word": " does", + "start": 2773.38, + "end": 2773.66, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2773.66, + "end": 2773.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 2773.8, + "end": 2773.88, + "probability": 1.0 + }, + { + "word": " he's", + "start": 2773.88, + "end": 2774.1, + "probability": 1.0 + }, + { + "word": " got", + "start": 2774.1, + "end": 2774.26, + "probability": 1.0 + }, + { + "word": " some", + "start": 2774.26, + "end": 2774.46, + "probability": 1.0 + }, + { + "word": " really", + "start": 2774.46, + "end": 2774.72, + "probability": 1.0 + }, + { + "word": " great", + "start": 2774.72, + "end": 2774.98, + "probability": 0.9990234375 + }, + { + "word": " footage.", + "start": 2774.98, + "end": 2775.32, + "probability": 1.0 + } + ] + }, + { + "id": 1312, + "text": "Yeah.", + "start": 2775.7, + "end": 2776.1, + "words": [ + { + "word": " Yeah.", + "start": 2775.7, + "end": 2776.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1313, + "text": "Well, I want the footage of him stunning somebody.", + "start": 2776.24, + "end": 2778.4, + "words": [ + { + "word": " Well,", + "start": 2776.24, + "end": 2776.64, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2776.8, + "end": 2777.06, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2777.06, + "end": 2777.26, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 2777.26, + "end": 2777.42, + "probability": 1.0 + }, + { + "word": " footage", + "start": 2777.42, + "end": 2777.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 2777.64, + "end": 2777.74, + "probability": 1.0 + }, + { + "word": " him", + "start": 2777.74, + "end": 2777.86, + "probability": 1.0 + }, + { + "word": " stunning", + "start": 2777.86, + "end": 2778.1, + "probability": 0.93017578125 + }, + { + "word": " somebody.", + "start": 2778.1, + "end": 2778.4, + "probability": 1.0 + } + ] + }, + { + "id": 1314, + "text": "Yeah, there you go.", + "start": 2778.52, + "end": 2779.24, + "words": [ + { + "word": " Yeah,", + "start": 2778.52, + "end": 2778.74, + "probability": 0.9970703125 + }, + { + "word": " there", + "start": 2778.74, + "end": 2778.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 2778.88, + "end": 2778.88, + "probability": 0.98779296875 + }, + { + "word": " go.", + "start": 2778.88, + "end": 2779.24, + "probability": 1.0 + } + ] + }, + { + "id": 1315, + "text": "Put a stun gun on there.", + "start": 2779.3, + "end": 2780.32, + "words": [ + { + "word": " Put", + "start": 2779.3, + "end": 2779.52, + "probability": 0.97412109375 + }, + { + "word": " a", + "start": 2779.52, + "end": 2779.66, + "probability": 0.99462890625 + }, + { + "word": " stun", + "start": 2779.66, + "end": 2779.82, + "probability": 0.9970703125 + }, + { + "word": " gun", + "start": 2779.82, + "end": 2780.0, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2780.0, + "end": 2780.3, + "probability": 0.978515625 + }, + { + "word": " there.", + "start": 2780.3, + "end": 2780.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1316, + "text": "I'll have to tell him about it.", + "start": 2780.34, + "end": 2780.96, + "words": [ + { + "word": " I'll", + "start": 2780.34, + "end": 2780.36, + "probability": 0.9873046875 + }, + { + "word": " have", + "start": 2780.36, + "end": 2780.36, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2780.36, + "end": 2780.36, + "probability": 1.0 + }, + { + "word": " tell", + "start": 2780.36, + "end": 2780.5, + "probability": 1.0 + }, + { + "word": " him", + "start": 2780.5, + "end": 2780.66, + "probability": 0.81298828125 + }, + { + "word": " about", + "start": 2780.66, + "end": 2780.78, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2780.78, + "end": 2780.96, + "probability": 1.0 + } + ] + }, + { + "id": 1317, + "text": "And the other thing that I saw that was kind of interesting is that somebody is loading shotgun shells with plant seed.", + "start": 2781.58, + "end": 2789.24, + "words": [ + { + "word": " And", + "start": 2781.58, + "end": 2781.98, + "probability": 0.96875 + }, + { + "word": " the", + "start": 2781.98, + "end": 2782.36, + "probability": 0.99853515625 + }, + { + "word": " other", + "start": 2782.36, + "end": 2782.56, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2782.56, + "end": 2783.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2783.0, + "end": 2783.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 2783.38, + "end": 2783.48, + "probability": 1.0 + }, + { + "word": " saw", + "start": 2783.48, + "end": 2783.66, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2783.66, + "end": 2783.8, + "probability": 1.0 + }, + { + "word": " was", + "start": 2783.8, + "end": 2783.9, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 2783.9, + "end": 2784.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 2784.46, + "end": 2784.58, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 2784.58, + "end": 2784.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 2784.92, + "end": 2785.16, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2785.16, + "end": 2785.26, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 2785.26, + "end": 2785.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 2785.5, + "end": 2785.66, + "probability": 0.99951171875 + }, + { + "word": " loading", + "start": 2785.66, + "end": 2786.02, + "probability": 0.99951171875 + }, + { + "word": " shotgun", + "start": 2786.02, + "end": 2787.44, + "probability": 0.99951171875 + }, + { + "word": " shells", + "start": 2787.44, + "end": 2787.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 2787.8, + "end": 2788.5, + "probability": 1.0 + }, + { + "word": " plant", + "start": 2788.5, + "end": 2788.98, + "probability": 0.998046875 + }, + { + "word": " seed.", + "start": 2788.98, + "end": 2789.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1318, + "text": "And basically, you go out...", + "start": 2789.72, + "end": 2791.16, + "words": [ + { + "word": " And", + "start": 2789.72, + "end": 2790.12, + "probability": 0.99755859375 + }, + { + "word": " basically,", + "start": 2790.12, + "end": 2790.42, + "probability": 0.96728515625 + }, + { + "word": " you", + "start": 2790.54, + "end": 2790.72, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2790.72, + "end": 2790.88, + "probability": 0.99951171875 + }, + { + "word": " out...", + "start": 2790.88, + "end": 2791.16, + "probability": 0.521484375 + } + ] + }, + { + "id": 1319, + "text": "Just go out and shoot the ground, I guess.", + "start": 2791.28, + "end": 2792.94, + "words": [ + { + "word": " Just", + "start": 2791.28, + "end": 2791.64, + "probability": 0.5205078125 + }, + { + "word": " go", + "start": 2791.64, + "end": 2791.92, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 2791.92, + "end": 2792.04, + "probability": 0.98974609375 + }, + { + "word": " and", + "start": 2792.04, + "end": 2792.12, + "probability": 0.998046875 + }, + { + "word": " shoot", + "start": 2792.12, + "end": 2792.3, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2792.3, + "end": 2792.42, + "probability": 1.0 + }, + { + "word": " ground,", + "start": 2792.42, + "end": 2792.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 2792.72, + "end": 2792.8, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 2792.8, + "end": 2792.94, + "probability": 1.0 + } + ] + }, + { + "id": 1320, + "text": "It's for when you're out doing shotgun-type things, like trap and skeet.", + "start": 2793.06, + "end": 2798.1, + "words": [ + { + "word": " It's", + "start": 2793.06, + "end": 2793.26, + "probability": 0.716796875 + }, + { + "word": " for", + "start": 2793.26, + "end": 2793.54, + "probability": 0.99853515625 + }, + { + "word": " when", + "start": 2793.54, + "end": 2793.74, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2793.74, + "end": 2793.9, + "probability": 1.0 + }, + { + "word": " out", + "start": 2793.9, + "end": 2794.02, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2794.02, + "end": 2794.26, + "probability": 1.0 + }, + { + "word": " shotgun", + "start": 2794.26, + "end": 2794.64, + "probability": 0.9560546875 + }, + { + "word": "-type", + "start": 2794.64, + "end": 2796.28, + "probability": 0.7978515625 + }, + { + "word": " things,", + "start": 2796.28, + "end": 2796.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 2796.72, + "end": 2796.9, + "probability": 1.0 + }, + { + "word": " trap", + "start": 2796.9, + "end": 2797.36, + "probability": 0.9931640625 + }, + { + "word": " and", + "start": 2797.36, + "end": 2797.58, + "probability": 0.99267578125 + }, + { + "word": " skeet.", + "start": 2797.58, + "end": 2798.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1321, + "text": "Okay.", + "start": 2798.18, + "end": 2798.54, + "words": [ + { + "word": " Okay.", + "start": 2798.18, + "end": 2798.54, + "probability": 0.6630859375 + } + ] + }, + { + "id": 1322, + "text": "All right?", + "start": 2798.54, + "end": 2798.8, + "words": [ + { + "word": " All", + "start": 2798.54, + "end": 2798.54, + "probability": 0.0679931640625 + }, + { + "word": " right?", + "start": 2798.54, + "end": 2798.8, + "probability": 1.0 + } + ] + }, + { + "id": 1323, + "text": "You're planting flowers every time you pull the trigger.", + "start": 2799.44, + "end": 2801.26, + "words": [ + { + "word": " You're", + "start": 2799.44, + "end": 2799.8, + "probability": 0.994140625 + }, + { + "word": " planting", + "start": 2799.8, + "end": 2799.98, + "probability": 1.0 + }, + { + "word": " flowers", + "start": 2799.98, + "end": 2800.28, + "probability": 1.0 + }, + { + "word": " every", + "start": 2800.28, + "end": 2800.58, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 2800.58, + "end": 2800.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 2800.72, + "end": 2800.84, + "probability": 1.0 + }, + { + "word": " pull", + "start": 2800.84, + "end": 2800.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2800.96, + "end": 2801.06, + "probability": 1.0 + }, + { + "word": " trigger.", + "start": 2801.06, + "end": 2801.26, + "probability": 1.0 + } + ] + }, + { + "id": 1324, + "text": "Oh, well, that's a green idea.", + "start": 2801.38, + "end": 2802.86, + "words": [ + { + "word": " Oh,", + "start": 2801.38, + "end": 2801.58, + "probability": 1.0 + }, + { + "word": " well,", + "start": 2801.68, + "end": 2801.8, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 2801.88, + "end": 2802.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2802.08, + "end": 2802.16, + "probability": 1.0 + }, + { + "word": " green", + "start": 2802.16, + "end": 2802.48, + "probability": 0.96630859375 + }, + { + "word": " idea.", + "start": 2802.48, + "end": 2802.86, + "probability": 1.0 + } + ] + }, + { + "id": 1325, + "text": "It's rather green, isn't it?", + "start": 2803.0, + "end": 2804.5, + "words": [ + { + "word": " It's", + "start": 2803.0, + "end": 2803.22, + "probability": 0.61572265625 + }, + { + "word": " rather", + "start": 2803.22, + "end": 2803.56, + "probability": 0.9951171875 + }, + { + "word": " green,", + "start": 2803.56, + "end": 2804.0, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 2804.12, + "end": 2804.36, + "probability": 1.0 + }, + { + "word": " it?", + "start": 2804.36, + "end": 2804.5, + "probability": 1.0 + } + ] + }, + { + "id": 1326, + "text": "Yes.", + "start": 2804.64, + "end": 2804.9, + "words": [ + { + "word": " Yes.", + "start": 2804.64, + "end": 2804.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1327, + "text": "All right.", + "start": 2805.16, + "end": 2805.66, + "words": [ + { + "word": " All", + "start": 2805.16, + "end": 2805.52, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 2805.52, + "end": 2805.66, + "probability": 1.0 + } + ] + }, + { + "id": 1328, + "text": "So, thanks for listening to the show this week.", + "start": 2805.72, + "end": 2807.2, + "words": [ + { + "word": " So,", + "start": 2805.72, + "end": 2805.88, + "probability": 0.8671875 + }, + { + "word": " thanks", + "start": 2805.94, + "end": 2806.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 2806.1, + "end": 2806.22, + "probability": 1.0 + }, + { + "word": " listening", + "start": 2806.22, + "end": 2806.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 2806.44, + "end": 2806.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2806.58, + "end": 2806.66, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 2806.66, + "end": 2806.84, + "probability": 1.0 + }, + { + "word": " this", + "start": 2806.84, + "end": 2807.0, + "probability": 0.99951171875 + }, + { + "word": " week.", + "start": 2807.0, + "end": 2807.2, + "probability": 1.0 + } + ] + }, + { + "id": 1329, + "text": "We really appreciate it.", + "start": 2807.26, + "end": 2808.0, + "words": [ + { + "word": " We", + "start": 2807.26, + "end": 2807.32, + "probability": 0.99658203125 + }, + { + "word": " really", + "start": 2807.32, + "end": 2807.44, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 2807.44, + "end": 2807.8, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2807.8, + "end": 2808.0, + "probability": 1.0 + } + ] + }, + { + "id": 1330, + "text": "Give us a call down at the shop at 304-8300, or come see us at 1st and Fort Lowell.", + "start": 2808.04, + "end": 2812.5, + "words": [ + { + "word": " Give", + "start": 2808.04, + "end": 2808.12, + "probability": 0.99072265625 + }, + { + "word": " us", + "start": 2808.12, + "end": 2808.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 2808.22, + "end": 2808.3, + "probability": 1.0 + }, + { + "word": " call", + "start": 2808.3, + "end": 2808.4, + "probability": 1.0 + }, + { + "word": " down", + "start": 2808.4, + "end": 2808.52, + "probability": 0.98291015625 + }, + { + "word": " at", + "start": 2808.52, + "end": 2808.62, + "probability": 0.98193359375 + }, + { + "word": " the", + "start": 2808.62, + "end": 2808.62, + "probability": 0.99169921875 + }, + { + "word": " shop", + "start": 2808.62, + "end": 2808.8, + "probability": 0.98388671875 + }, + { + "word": " at", + "start": 2808.8, + "end": 2808.96, + "probability": 1.0 + }, + { + "word": " 304", + "start": 2808.96, + "end": 2809.5, + "probability": 0.99951171875 + }, + { + "word": "-8300,", + "start": 2809.5, + "end": 2810.0, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2810.32, + "end": 2810.6, + "probability": 1.0 + }, + { + "word": " come", + "start": 2810.6, + "end": 2810.9, + "probability": 1.0 + }, + { + "word": " see", + "start": 2810.9, + "end": 2811.4, + "probability": 1.0 + }, + { + "word": " us", + "start": 2811.4, + "end": 2811.7, + "probability": 1.0 + }, + { + "word": " at", + "start": 2811.7, + "end": 2811.86, + "probability": 0.9990234375 + }, + { + "word": " 1st", + "start": 2811.86, + "end": 2812.1, + "probability": 0.83642578125 + }, + { + "word": " and", + "start": 2812.1, + "end": 2812.14, + "probability": 0.93701171875 + }, + { + "word": " Fort", + "start": 2812.14, + "end": 2812.32, + "probability": 0.869140625 + }, + { + "word": " Lowell.", + "start": 2812.32, + "end": 2812.5, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1331, + "text": "That's 510 East Fort Lowell.", + "start": 2812.56, + "end": 2814.1, + "words": [ + { + "word": " That's", + "start": 2812.56, + "end": 2812.68, + "probability": 0.998046875 + }, + { + "word": " 510", + "start": 2812.68, + "end": 2813.18, + "probability": 0.99951171875 + }, + { + "word": " East", + "start": 2813.18, + "end": 2813.54, + "probability": 1.0 + }, + { + "word": " Fort", + "start": 2813.54, + "end": 2813.76, + "probability": 0.9970703125 + }, + { + "word": " Lowell.", + "start": 2813.76, + "end": 2814.1, + "probability": 1.0 + } + ] + }, + { + "id": 1332, + "text": "We'll be very happy to take care of whatever technology issues are ailing you.", + "start": 2814.62, + "end": 2818.12, + "words": [ + { + "word": " We'll", + "start": 2814.62, + "end": 2814.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 2814.98, + "end": 2815.08, + "probability": 1.0 + }, + { + "word": " very", + "start": 2815.08, + "end": 2815.38, + "probability": 0.99951171875 + }, + { + "word": " happy", + "start": 2815.38, + "end": 2815.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2815.72, + "end": 2815.82, + "probability": 1.0 + }, + { + "word": " take", + "start": 2815.82, + "end": 2815.96, + "probability": 0.99951171875 + }, + { + "word": " care", + "start": 2815.96, + "end": 2816.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 2816.1, + "end": 2816.22, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 2816.22, + "end": 2816.42, + "probability": 0.9921875 + }, + { + "word": " technology", + "start": 2816.42, + "end": 2816.86, + "probability": 0.9990234375 + }, + { + "word": " issues", + "start": 2816.86, + "end": 2817.32, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 2817.32, + "end": 2817.6, + "probability": 0.9990234375 + }, + { + "word": " ailing", + "start": 2817.6, + "end": 2817.88, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2817.88, + "end": 2818.12, + "probability": 1.0 + } + ] + }, + { + "id": 1333, + "text": "In the meantime, we'll see you next week.", + "start": 2818.24, + "end": 2820.62, + "words": [ + { + "word": " In", + "start": 2818.24, + "end": 2818.54, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 2818.54, + "end": 2818.64, + "probability": 1.0 + }, + { + "word": " meantime,", + "start": 2818.64, + "end": 2818.92, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 2819.26, + "end": 2819.92, + "probability": 1.0 + }, + { + "word": " see", + "start": 2819.92, + "end": 2820.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 2820.08, + "end": 2820.18, + "probability": 1.0 + }, + { + "word": " next", + "start": 2820.18, + "end": 2820.36, + "probability": 0.99951171875 + }, + { + "word": " week.", + "start": 2820.36, + "end": 2820.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 1334, + "text": "And things will be great.", + "start": 2820.64, + "end": 2821.26, + "words": [ + { + "word": " And", + "start": 2820.64, + "end": 2820.88, + "probability": 0.67822265625 + }, + { + "word": " things", + "start": 2820.88, + "end": 2821.16, + "probability": 0.8994140625 + }, + { + "word": " will", + "start": 2821.16, + "end": 2821.26, + "probability": 0.89208984375 + }, + { + "word": " be", + "start": 2821.26, + "end": 2821.26, + "probability": 0.5263671875 + }, + { + "word": " great.", + "start": 2821.26, + "end": 2821.26, + "probability": 0.55029296875 + } + ] + }, + { + "id": 1335, + "text": "", + "start": 2821.26, + "end": 2821.26, + "words": [] + }, + { + "id": 1336, + "text": "", + "start": 2821.26, + "end": 2821.26, + "words": [] + }, + { + "id": 1337, + "text": "Things will be better, I hope.", + "start": 2821.28, + "end": 2821.9, + "words": [ + { + "word": " Things", + "start": 2821.28, + "end": 2821.28, + "probability": 0.00019276142120361328 + }, + { + "word": " will", + "start": 2821.28, + "end": 2821.28, + "probability": 0.98046875 + }, + { + "word": " be", + "start": 2821.28, + "end": 2821.34, + "probability": 0.99755859375 + }, + { + "word": " better,", + "start": 2821.34, + "end": 2821.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 2821.6, + "end": 2821.72, + "probability": 1.0 + }, + { + "word": " hope.", + "start": 2821.72, + "end": 2821.9, + "probability": 1.0 + } + ] + }, + { + "id": 1338, + "text": "I hope so.", + "start": 2822.0, + "end": 2822.74, + "words": [ + { + "word": " I", + "start": 2822.0, + "end": 2822.3, + "probability": 0.99609375 + }, + { + "word": " hope", + "start": 2822.3, + "end": 2822.58, + "probability": 1.0 + }, + { + "word": " so.", + "start": 2822.58, + "end": 2822.74, + "probability": 1.0 + } + ] + }, + { + "id": 1339, + "text": "I hope so.", + "start": 2825.76, + "end": 2840.44, + "words": [ + { + "word": " I", + "start": 2825.76, + "end": 2826.18, + "probability": 0.62060546875 + }, + { + "word": " hope", + "start": 2826.18, + "end": 2826.2, + "probability": 0.1761474609375 + }, + { + "word": " so.", + "start": 2826.2, + "end": 2840.44, + "probability": 0.98046875 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.srt new file mode 100644 index 0000000..038b84d --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.srt @@ -0,0 +1,5360 @@ +1 +00:00:02,100 --> 00:00:03,480 +Computer running slow? + +2 +00:00:04,100 --> 00:00:07,080 +Has your machine somehow acquired a life of its own? + +3 +00:00:07,380 --> 00:00:11,400 +Or do you simply desire a deeper and more meaningful connection? + +4 +00:00:11,940 --> 00:00:13,720 +Be one with your operating system. + +5 +00:00:14,100 --> 00:00:18,460 +It's Arizona's computer guru, Mike Swanson, and his show starts now. + +6 +00:00:18,920 --> 00:00:23,520 +Listen in, chat in, and watch live streaming at gurushow.com. + +7 +00:00:23,760 --> 00:00:25,340 +Want your voice to be heard instead? + +8 +00:00:25,340 --> 00:00:27,580 +Instead, call in with your questions and riddles. + +9 +00:00:27,680 --> 00:00:31,000 +The number is 520-790-2040. + +10 +00:00:31,460 --> 00:00:36,240 +This is the Computer Guru Show on AM 1030, KVOY, The Voice. + +11 +00:00:38,880 --> 00:00:40,540 +Hello and welcome to the Computer Guru Show. + +12 +00:00:40,600 --> 00:00:44,240 +My name is Mike, here to deal with your technology needs and treat you like a person in the process, + +13 +00:00:44,360 --> 00:00:45,080 +because that's what we do. + +14 +00:00:45,860 --> 00:00:49,240 +Give us a call down here at 790-2040. + +15 +00:00:49,280 --> 00:00:51,800 +That's 520-790-2040. + +16 +00:00:52,440 --> 00:00:55,260 +We'll be happy to take any of your calls and deal with them. + +17 +00:00:55,340 --> 00:00:57,760 +Whenever technology issues happen to be ailing you today. + +18 +00:00:58,780 --> 00:01:01,060 +As usual, we've got people over there. + +19 +00:01:01,360 --> 00:01:02,300 +Hey, Harry, how are you doing? + +20 +00:01:02,560 --> 00:01:03,720 +I am well. How about yourself? + +21 +00:01:03,760 --> 00:01:04,420 +I like the hat, man. + +22 +00:01:04,540 --> 00:01:05,840 +Thank you. It's flight cap day. + +23 +00:01:05,960 --> 00:01:06,560 +I can dig it. + +24 +00:01:07,140 --> 00:01:09,460 +All right. And, of course, Tara's in here. + +25 +00:01:09,660 --> 00:01:10,240 +Hello, hello. + +26 +00:01:10,260 --> 00:01:11,360 +She's backing things up. + +27 +00:01:11,500 --> 00:01:17,240 +And not so much in the gaming news today, but mainly she's just going to listen to me complain. + +28 +00:01:18,020 --> 00:01:19,740 +I'm stuck on Angry Birds. + +29 +00:01:20,300 --> 00:01:20,980 +Oh, yeah. + +30 +00:01:22,460 --> 00:01:23,880 +We're not talking about Angry Birds. + +31 +00:01:23,880 --> 00:01:24,500 +I know, I know. + +32 +00:01:24,520 --> 00:01:25,240 +Or Flappy Bird. + +33 +00:01:25,240 --> 00:01:25,540 +Flappy Birds. + +34 +00:01:25,540 --> 00:01:25,920 +Yeah, right. + +35 +00:01:25,980 --> 00:01:26,500 +Or Floppy Bird. + +36 +00:01:26,780 --> 00:01:27,640 +Or Floppy Bird. + +37 +00:01:27,740 --> 00:01:28,820 +No type of birds today. + +38 +00:01:28,820 --> 00:01:29,600 +No birds. No birds. + +39 +00:01:29,900 --> 00:01:32,800 +That is a foul subject, and we're not going to do it. + +40 +00:01:32,800 --> 00:01:33,100 +Thank you. + +41 +00:01:33,220 --> 00:01:33,720 +All right. + +42 +00:01:34,140 --> 00:01:36,520 +So if you'd like to be part of the show, we'd love to hear from you. + +43 +00:01:36,520 --> 00:01:37,580 +790-2040. + +44 +00:01:37,600 --> 00:01:39,940 +In the meantime, we're going to talk about stupidity. + +45 +00:01:41,000 --> 00:01:44,280 +And that's really the focus of the rant today. + +46 +00:01:44,400 --> 00:01:47,840 +Now, we've actually touched on this for three weeks in a row now, + +47 +00:01:47,940 --> 00:01:52,120 +which is there are stupid people making laws when it comes to the Internet. + +48 +00:01:52,740 --> 00:01:54,060 +And, you know, it's... + +49 +00:01:54,860 --> 00:01:56,840 +You know, next year I need to go to South by Southwest. + +50 +00:01:57,140 --> 00:01:57,880 +I really need to go. + +51 +00:01:58,060 --> 00:01:59,020 +I want to go, too. + +52 +00:01:59,260 --> 00:02:00,000 +Really badly. + +53 +00:02:00,140 --> 00:02:01,600 +Oh, man, I've got to go to South by Southwest. + +54 +00:02:02,860 --> 00:02:07,060 +There is a cybersecurity expert down at South by Southwest. + +55 +00:02:07,120 --> 00:02:13,720 +He was talking with a person who is basically going and negotiating cybersecurity with China. + +56 +00:02:14,200 --> 00:02:20,100 +Now, as a person who gets e-mails about every 20 minutes or so saying, + +57 +00:02:20,300 --> 00:02:21,100 +hey, guess what? + +58 +00:02:21,140 --> 00:02:23,840 +There's an intrusion attempt on your network from China. + +59 +00:02:24,060 --> 00:02:25,600 +Or Russia or wherever. + +60 +00:02:25,800 --> 00:02:26,460 +Mostly China. + +61 +00:02:27,840 --> 00:02:29,060 +You know, I kind of feel for... + +62 +00:02:29,060 --> 00:02:29,580 +Yeah. + +63 +00:02:29,820 --> 00:02:32,920 +I am invested in this particular topic. + +64 +00:02:33,240 --> 00:02:33,420 +Right. + +65 +00:02:33,480 --> 00:02:39,480 +And what happens here is that this guy, who happens to be a government official, + +66 +00:02:40,240 --> 00:02:43,640 +is asking the security advisor at South by Southwest, + +67 +00:02:44,060 --> 00:02:46,180 +hey, you know what ISP means? + +68 +00:02:46,880 --> 00:02:47,420 +Oh. + +69 +00:02:47,820 --> 00:02:48,180 +All right. + +70 +00:02:49,880 --> 00:02:51,080 +All right. + +71 +00:02:51,100 --> 00:02:53,460 +So this guy is going to China. + +72 +00:02:54,060 --> 00:02:59,000 +To negotiate over cybersecurity issues and has no idea what ISP means. + +73 +00:02:59,080 --> 00:03:04,500 +It's like going to Russia to negotiate with them and having no idea what ICBM means. + +74 +00:03:04,760 --> 00:03:05,320 +Or vodka. + +75 +00:03:05,740 --> 00:03:06,340 +Right. + +76 +00:03:06,340 --> 00:03:09,480 +It's just like, really, you're that dumb. + +77 +00:03:09,660 --> 00:03:17,240 +And that has been my problem for the last several years as the CISPA thing comes out, + +78 +00:03:17,260 --> 00:03:22,580 +all these new rules and laws and people trying to pass regulations on the Internet + +79 +00:03:22,580 --> 00:03:24,040 +and not a single... + +80 +00:03:24,060 --> 00:03:24,120 +Right. + +81 +00:03:24,120 --> 00:03:25,800 +Not a single one of them has a clue. + +82 +00:03:26,080 --> 00:03:28,520 +I mean, like, they just don't get it. + +83 +00:03:28,600 --> 00:03:28,960 +Right. + +84 +00:03:29,280 --> 00:03:34,460 +It would be me, right, a person who all I do is computers, right, + +85 +00:03:34,560 --> 00:03:38,040 +trying to tell somebody else how to build a car. + +86 +00:03:38,180 --> 00:03:38,580 +Yeah. + +87 +00:03:38,640 --> 00:03:38,740 +Right. + +88 +00:03:38,780 --> 00:03:40,200 +I'm not qualified. + +89 +00:03:40,580 --> 00:03:41,340 +I am not... + +90 +00:03:41,340 --> 00:03:43,040 +I'm absolutely not qualified to do that. + +91 +00:03:43,180 --> 00:03:45,620 +But if you worked for the government, you could. + +92 +00:03:46,580 --> 00:03:48,740 +Actually, they like those big words. + +93 +00:03:49,080 --> 00:03:49,980 +That's what it is. + +94 +00:03:50,500 --> 00:03:53,940 +Well, you know, the thing is, is that I think... + +95 +00:03:54,060 --> 00:04:00,280 +I think that you should not be able to have any control over Internet-related anything + +96 +00:04:00,280 --> 00:04:01,820 +if you don't use it. + +97 +00:04:02,000 --> 00:04:02,360 +Right. + +98 +00:04:02,400 --> 00:04:06,340 +As an example, Janet Napolitano, as we're all familiar with, + +99 +00:04:06,860 --> 00:04:10,520 +she was the head of cybersecurity for the United States for a while. + +100 +00:04:10,660 --> 00:04:10,980 +Yeah. + +101 +00:04:11,020 --> 00:04:11,340 +Right? + +102 +00:04:11,420 --> 00:04:13,360 +And she does not use email. + +103 +00:04:13,580 --> 00:04:13,900 +No. + +104 +00:04:13,940 --> 00:04:19,200 +And it's not because she's afraid there's no threat or anything like that. + +105 +00:04:19,260 --> 00:04:21,700 +She just hasn't gotten around to it. + +106 +00:04:21,840 --> 00:04:22,440 +Right. + +107 +00:04:22,440 --> 00:04:23,920 +Now, I don't think that... + +108 +00:04:24,060 --> 00:04:30,460 +You should be passing laws that affect the entire planet unless you've gotten around + +109 +00:04:30,460 --> 00:04:32,840 +to using email, maybe once or twice. + +110 +00:04:33,560 --> 00:04:41,320 +The thing is, is that if you are not about the technology, if you don't use it and see + +111 +00:04:41,320 --> 00:04:46,420 +how it can benefit the lives of yourself and everyone around you, if you don't see the + +112 +00:04:46,420 --> 00:04:53,500 +benefit in it at all or have no personal investment, then you should not be involved in the way + +113 +00:04:53,500 --> 00:04:54,040 +that it is. + +114 +00:04:54,060 --> 00:04:54,860 +Right. + +115 +00:04:55,200 --> 00:04:55,640 +Right. + +116 +00:04:55,640 --> 00:05:00,140 +Now, there is something to be said for being impartial. + +117 +00:05:00,360 --> 00:05:00,800 +Right? + +118 +00:05:00,900 --> 00:05:04,100 +To be able to say, well, I can pass laws because I don't use it. + +119 +00:05:04,140 --> 00:05:04,440 +Right? + +120 +00:05:04,520 --> 00:05:04,720 +Exactly. + +121 +00:05:04,740 --> 00:05:06,400 +I'm not going to benefit myself. + +122 +00:05:06,620 --> 00:05:08,220 +No, you're going to hurt the rest of the world. + +123 +00:05:08,560 --> 00:05:08,920 +Yeah. + +124 +00:05:08,920 --> 00:05:13,960 +And that's really the bigger problem here is that you don't know what you're saying. + +125 +00:05:14,220 --> 00:05:14,660 +Right? + +126 +00:05:14,740 --> 00:05:21,400 +And what happens is you end up being this mindless, this lemming, right, that is walking + +127 +00:05:21,400 --> 00:05:24,040 +around Congress, being lobbied by very large companies. + +128 +00:05:24,060 --> 00:05:26,500 +Well, it's lots of money being able to say, you know what? + +129 +00:05:26,620 --> 00:05:27,660 +You know what we're going to do? + +130 +00:05:28,000 --> 00:05:31,820 +We are going to make it really hard for everybody on the planet to do anything because we've + +131 +00:05:31,820 --> 00:05:32,460 +got deep pockets. + +132 +00:05:32,720 --> 00:05:33,140 +Right. + +133 +00:05:33,160 --> 00:05:41,160 +They are going to convince a sheeple in Congress that they have no clue what they're doing. + +134 +00:05:42,060 --> 00:05:42,900 +Yeah, exactly. + +135 +00:05:43,060 --> 00:05:43,280 +Right. + +136 +00:05:43,360 --> 00:05:52,500 +So they're going to convince these people that have the power over us to change it to + +137 +00:05:52,500 --> 00:05:53,140 +a certain extent. + +138 +00:05:53,420 --> 00:05:53,840 +Right. + +139 +00:05:53,920 --> 00:05:54,020 +Right. + +140 +00:05:54,020 --> 00:05:54,040 +Right. + +141 +00:05:54,040 --> 00:05:54,040 + + +142 +00:05:54,040 --> 00:05:54,040 + + +143 +00:05:54,040 --> 00:05:54,040 + + +144 +00:05:54,040 --> 00:05:54,040 + + +145 +00:05:54,040 --> 00:05:54,040 + + +146 +00:05:54,040 --> 00:05:54,040 + + +147 +00:05:54,040 --> 00:05:54,040 + + +148 +00:05:54,040 --> 00:05:54,040 + + +149 +00:05:54,040 --> 00:05:54,040 + + +150 +00:05:54,040 --> 00:05:54,040 + + +151 +00:05:54,040 --> 00:05:54,040 + + +152 +00:05:54,040 --> 00:05:54,040 + + +153 +00:05:54,040 --> 00:05:54,040 + + +154 +00:05:54,060 --> 00:05:55,300 +As it pertains to the internet. + +155 +00:05:55,540 --> 00:06:00,000 +They're going to convince them that they have to make these changes that are just detrimental + +156 +00:06:00,700 --> 00:06:03,080 +to the way that the internet works. + +157 +00:06:03,420 --> 00:06:05,380 +They don't know what's in it until they pass it. + +158 +00:06:06,880 --> 00:06:08,540 +There's a certain part of that. + +159 +00:06:08,900 --> 00:06:10,720 +They should know the technology. + +160 +00:06:11,180 --> 00:06:11,300 +Yeah. + +161 +00:06:11,320 --> 00:06:13,840 +Well, with the internet stuff, they don't know what's in it after they pass it. + +162 +00:06:13,880 --> 00:06:14,060 +Right. + +163 +00:06:14,140 --> 00:06:17,440 +They never know what's in it because they're just so dumb. + +164 +00:06:17,760 --> 00:06:20,240 +They've got to reach the end of the internet before they can figure it out. + +165 +00:06:20,320 --> 00:06:20,680 +Oh, God. + +166 +00:06:20,760 --> 00:06:21,320 +Don't go there. + +167 +00:06:21,520 --> 00:06:22,060 +All right. + +168 +00:06:22,060 --> 00:06:22,240 +All right. + +169 +00:06:22,240 --> 00:06:22,240 + + +170 +00:06:24,060 --> 00:06:32,680 +It's just mind-boggling the amount of idiocy that is involved in the government when it + +171 +00:06:32,680 --> 00:06:33,380 +pertains to the internet. + +172 +00:06:33,560 --> 00:06:41,240 +And the reason I get upset about it is because it's one of the few places now, the last refuges + +173 +00:06:41,240 --> 00:06:43,840 +of free speech. + +174 +00:06:44,020 --> 00:06:44,320 +Yeah. + +175 +00:06:44,580 --> 00:06:49,640 +And you're turning this into China when it comes to the internet. + +176 +00:06:49,860 --> 00:06:50,300 +Pretty much. + +177 +00:06:50,300 --> 00:06:50,360 +All right. + +178 +00:06:50,660 --> 00:06:53,760 +We want to be able to put our ideas. + +179 +00:06:54,060 --> 00:06:58,780 +Our ideas out into the world and not have them stifled, not have them recorded and used + +180 +00:06:58,780 --> 00:06:59,400 +against us. + +181 +00:06:59,520 --> 00:06:59,880 +Right. + +182 +00:06:59,940 --> 00:07:03,560 +We want to be able to have the internet the way it's been for the last 20 years. + +183 +00:07:03,860 --> 00:07:05,620 +And there's no need to change it. + +184 +00:07:05,680 --> 00:07:05,960 +Right. + +185 +00:07:06,040 --> 00:07:09,500 +As far as the cybersecurity aspect of it, which is really what they're pushing. + +186 +00:07:09,760 --> 00:07:13,820 +They're saying, look, I got, here's what helped push it, by the way. + +187 +00:07:14,280 --> 00:07:15,780 +You know what phishing is, everybody. + +188 +00:07:15,920 --> 00:07:16,100 +Right. + +189 +00:07:16,220 --> 00:07:17,120 +And that's where you get that email. + +190 +00:07:17,200 --> 00:07:17,500 +Yes. + +191 +00:07:17,520 --> 00:07:17,760 +Right. + +192 +00:07:17,840 --> 00:07:19,340 +Then you accidentally click on the link. + +193 +00:07:19,540 --> 00:07:20,100 +Nigerian print. + +194 +00:07:20,340 --> 00:07:20,700 +Right. + +195 +00:07:20,720 --> 00:07:21,640 +That type of stuff. + +196 +00:07:21,900 --> 00:07:22,260 +Right. + +197 +00:07:22,320 --> 00:07:22,680 +Right. + +198 +00:07:22,680 --> 00:07:22,700 +Right. + +199 +00:07:22,700 --> 00:07:22,700 + + +200 +00:07:22,700 --> 00:07:22,700 + + +201 +00:07:22,700 --> 00:07:22,700 + + +202 +00:07:22,700 --> 00:07:22,700 + + +203 +00:07:22,700 --> 00:07:22,700 + + +204 +00:07:22,700 --> 00:07:22,700 + + +205 +00:07:22,700 --> 00:07:22,700 + + +206 +00:07:22,700 --> 00:07:22,700 + + +207 +00:07:22,700 --> 00:07:22,700 + + +208 +00:07:22,800 --> 00:07:23,160 +Right. + +209 +00:07:24,060 --> 00:07:30,760 +Which is called spear phishing, which is, it's a very selected target group of people + +210 +00:07:30,760 --> 00:07:35,300 +that it's sent to using very specific content that's designed to make them click on it. + +211 +00:07:36,280 --> 00:07:43,460 +Somewhere around 80% of senators managed to pick up an infection very recently that basically + +212 +00:07:43,460 --> 00:07:45,860 +said, hey, you want to see, you know, a French princess naked? + +213 +00:07:46,080 --> 00:07:46,560 +Oh. + +214 +00:07:46,640 --> 00:07:47,200 +Mm-hmm. + +215 +00:07:47,320 --> 00:07:50,460 +Well, they clicked on the link and got malware on their computers. + +216 +00:07:50,960 --> 00:07:54,040 +And it was, you know, specifically sent to Congress. + +217 +00:07:54,060 --> 00:07:56,000 +Congress and senators, you know, congressmen and senators. + +218 +00:07:56,020 --> 00:07:58,640 +And, you know, they clicked on it. + +219 +00:07:58,700 --> 00:07:58,940 +Right. + +220 +00:07:59,020 --> 00:08:04,860 +And so now, right, now that they're the people that have to get their machines clean, they're + +221 +00:08:04,860 --> 00:08:07,700 +like, well, this, the cybersecurity stuff is out of control. + +222 +00:08:08,100 --> 00:08:08,500 +Right. + +223 +00:08:08,560 --> 00:08:09,800 +Look at what the internet did. + +224 +00:08:09,880 --> 00:08:12,220 +It made me click on a link for naked pictures. + +225 +00:08:12,420 --> 00:08:13,940 +No, you're stupid. + +226 +00:08:14,140 --> 00:08:15,020 +That's what happened. + +227 +00:08:15,200 --> 00:08:15,480 +Yeah. + +228 +00:08:15,560 --> 00:08:21,940 +And, oh, man, it really drives me bonkers that these people have the ability to pass laws. + +229 +00:08:22,500 --> 00:08:23,640 +And, you know, I don't know. + +230 +00:08:24,060 --> 00:08:24,620 +I will go. + +231 +00:08:24,780 --> 00:08:26,620 +I will just take it upon myself. + +232 +00:08:26,800 --> 00:08:27,520 +I will go to D.C. + +233 +00:08:27,580 --> 00:08:28,040 +All right. + +234 +00:08:28,060 --> 00:08:28,580 +And help them. + +235 +00:08:28,640 --> 00:08:29,040 +All right. + +236 +00:08:29,100 --> 00:08:29,740 +And just say, you know what? + +237 +00:08:30,080 --> 00:08:30,440 +No. + +238 +00:08:30,840 --> 00:08:31,660 +No, don't do that. + +239 +00:08:31,740 --> 00:08:32,520 +Because that's dumb. + +240 +00:08:33,020 --> 00:08:35,860 +Really, there are other ways to deal with these problems. + +241 +00:08:36,220 --> 00:08:39,660 +And it doesn't involve blacklisting everybody on the planet. + +242 +00:08:39,800 --> 00:08:40,100 +Right. + +243 +00:08:40,320 --> 00:08:40,560 +Right. + +244 +00:08:40,600 --> 00:08:44,820 +What it really involves is being just a little bit, just a little bit smarter about the way + +245 +00:08:44,820 --> 00:08:45,540 +you use technology. + +246 +00:08:45,920 --> 00:08:46,380 +All right. + +247 +00:08:46,440 --> 00:08:51,060 +They should have some sort of class or something that they go to, especially if they're going + +248 +00:08:51,060 --> 00:08:53,960 +to be in a position that they're passing. + +249 +00:08:53,960 --> 00:08:55,280 +They're passing laws with technology. + +250 +00:08:55,420 --> 00:08:55,560 +Right. + +251 +00:08:55,560 --> 00:08:59,080 +Just a basic class that they could take at Pima Community College. + +252 +00:08:59,080 --> 00:09:00,180 +They can come down to my office. + +253 +00:09:00,300 --> 00:09:00,620 +Right. + +254 +00:09:00,660 --> 00:09:03,280 +I teach classes on how to stay safe on the Internet. + +255 +00:09:03,460 --> 00:09:05,160 +I do it almost every weekend. + +256 +00:09:05,620 --> 00:09:08,620 +They can come down, and I will teach them how not to get infections. + +257 +00:09:08,940 --> 00:09:10,080 +We should send them a letter. + +258 +00:09:10,340 --> 00:09:10,960 +We should. + +259 +00:09:11,260 --> 00:09:12,440 +That's what we should really do. + +260 +00:09:12,460 --> 00:09:13,040 +Maybe a webinar. + +261 +00:09:13,720 --> 00:09:14,080 +Ooh. + +262 +00:09:14,360 --> 00:09:15,960 +I don't know if they get it over the webinar. + +263 +00:09:16,180 --> 00:09:16,520 +Right. + +264 +00:09:16,560 --> 00:09:18,220 +They don't use email. + +265 +00:09:18,260 --> 00:09:18,840 +I need to get right. + +266 +00:09:18,860 --> 00:09:19,460 +Well, yeah, they're... + +267 +00:09:19,460 --> 00:09:20,900 +I got to get it right in front of them. + +268 +00:09:20,900 --> 00:09:21,340 +Yeah, exactly. + +269 +00:09:21,500 --> 00:09:22,300 +Right in their face. + +270 +00:09:22,340 --> 00:09:22,460 +Right in their face. + +271 +00:09:22,460 --> 00:09:23,200 +Because they are just... + +272 +00:09:23,960 --> 00:09:27,620 +They don't know how to do this, and that's the part that bothers me. + +273 +00:09:27,780 --> 00:09:28,600 +You know what, Harry? + +274 +00:09:28,820 --> 00:09:29,600 +You know what time it is? + +275 +00:09:29,700 --> 00:09:30,940 +It must be time for some music. + +276 +00:09:30,960 --> 00:09:31,460 +It is. + +277 +00:09:31,480 --> 00:09:31,800 +Hey. + +278 +00:09:32,220 --> 00:09:32,820 +Let's do it. + +279 +00:09:33,360 --> 00:09:33,820 +All right. + +280 +00:09:33,840 --> 00:09:37,700 +So when we get back, I will probably rant and complain a little bit more. + +281 +00:09:38,020 --> 00:09:40,080 +Also, we're going to talk about the specials of the week down at the shop. + +282 +00:09:40,140 --> 00:09:42,580 +We're going to save you a bunch of money if you're looking to get your network looked + +283 +00:09:42,580 --> 00:09:44,060 +at or if you want to build a website. + +284 +00:09:44,280 --> 00:09:44,580 +Yeah. + +285 +00:09:44,620 --> 00:09:46,420 +So stick around, and we'll be right back. + +286 +00:09:46,420 --> 00:09:47,420 +We're down. + +287 +00:09:47,740 --> 00:09:48,660 +All right. + +288 +00:09:53,200 --> 00:09:54,280 +Computer troubles? + +289 +00:09:54,580 --> 00:09:55,520 +Need some advice? + +290 +00:09:55,840 --> 00:09:56,520 +Call in now. + +291 +00:09:56,740 --> 00:09:58,980 +Mike Swanson will be back after these messages. + +292 +00:09:59,300 --> 00:10:00,620 +The Computer Guru Show. + +293 +00:10:00,800 --> 00:10:01,820 +AM 1030. + +294 +00:10:02,040 --> 00:10:02,640 +KVOY. + +295 +00:10:02,900 --> 00:10:03,560 +The Voice. + +296 +00:10:07,080 --> 00:10:11,140 +Whether you're dealing with hardware installation or, heaven forbid, a virus... + +297 +00:10:11,140 --> 00:10:11,240 +No. + +298 +00:10:11,400 --> 00:10:12,000 +No. + +299 +00:10:12,200 --> 00:10:12,520 +No! + +300 +00:10:12,900 --> 00:10:16,240 +Mike Swanson is answering all your questions one by one. + +301 +00:10:16,420 --> 00:10:18,300 +So call in or chat in with yours. + +302 +00:10:18,580 --> 00:10:19,300 +The website? + +303 +00:10:19,760 --> 00:10:20,820 +Gurushow.com. + +304 +00:10:21,180 --> 00:10:23,420 +Tune in, click in, and kick back. + +305 +00:10:23,640 --> 00:10:26,940 +This is the Computer Guru Show on AM 1030. + +306 +00:10:27,400 --> 00:10:27,880 +KVOY. + +307 +00:10:27,940 --> 00:10:28,460 +The Voice. + +308 +00:10:28,980 --> 00:10:33,920 +So if you want to be part of the show, 790-2040, that's 520-790-2040. + +309 +00:10:34,060 --> 00:10:36,740 +I'm going to go ahead and continue complaining, right? + +310 +00:10:36,880 --> 00:10:41,960 +Because during the break, there was really harsh language going on because, you know, + +311 +00:10:42,660 --> 00:10:45,860 +we've been talking about getting the cameras in the studio, and I'm not even going to complain + +312 +00:10:45,860 --> 00:10:47,440 +about that because it's not here yet. + +313 +00:10:47,580 --> 00:10:52,780 +But, you know, there's some type of radio bureaucracy going on that basically doesn't allow me to + +314 +00:10:52,780 --> 00:10:53,380 +put cameras in here. + +315 +00:10:53,480 --> 00:10:58,460 +But here's the bigger issue for me, is that, you know, I've kind of said it's really important + +316 +00:10:58,460 --> 00:10:59,980 +that the internet work! + +317 +00:11:00,840 --> 00:11:01,760 +Holy crap! + +318 +00:11:01,960 --> 00:11:05,480 +There's no internet in the studio, and it makes me nuts! + +319 +00:11:06,720 --> 00:11:09,280 +Okay, so, now that I am done... + +320 +00:11:09,280 --> 00:11:10,520 +Did you lose the password? + +321 +00:11:10,640 --> 00:11:14,660 +No, I'm firmly connected to it, but there is no... + +322 +00:11:14,660 --> 00:11:15,780 +No, I've been running... + +323 +00:11:15,860 --> 00:11:16,620 +You're slow over here, too. + +324 +00:11:17,980 --> 00:11:18,400 +See? + +325 +00:11:20,760 --> 00:11:21,660 +Take a deep breath. + +326 +00:11:21,660 --> 00:11:23,480 +It's very zen-like at the moment. + +327 +00:11:23,540 --> 00:11:25,020 +Breathe, count to ten. + +328 +00:11:25,020 --> 00:11:30,120 +I'm tethering off of my phone in a cellular black hole just because the internet doesn't + +329 +00:11:30,120 --> 00:11:31,180 +work in the studio right now. + +330 +00:11:32,500 --> 00:11:34,720 +I can't tether off my phone, so you've got to one-up. + +331 +00:11:34,740 --> 00:11:35,740 +Yeah, all right. + +332 +00:11:36,120 --> 00:11:38,320 +So, let's talk about something that's a little more fun, shall we? + +333 +00:11:38,400 --> 00:11:39,320 +How about popcorn time? + +334 +00:11:39,920 --> 00:11:40,340 +Ooh. + +335 +00:11:41,440 --> 00:11:43,900 +So, this is an interesting experiment. + +336 +00:11:44,280 --> 00:11:45,840 +It has to be late. + +337 +00:11:45,860 --> 00:11:47,580 +It's labeled as an experiment because that's how it started. + +338 +00:11:47,680 --> 00:11:48,820 +It was a group of friends that got together. + +339 +00:11:48,880 --> 00:11:53,920 +They put together this very interesting group of technologies, right, where they built a + +340 +00:11:53,920 --> 00:11:57,520 +little software program that ties together about five different pieces of technology. + +341 +00:11:57,740 --> 00:11:58,160 +Okay. + +342 +00:11:58,380 --> 00:12:02,540 +All sort of randomly, and you install a little client on your machine. + +343 +00:12:02,580 --> 00:12:04,460 +You say, I want to watch this movie. + +344 +00:12:04,920 --> 00:12:05,400 +Ooh. + +345 +00:12:05,560 --> 00:12:06,460 +Any movie. + +346 +00:12:07,540 --> 00:12:10,960 +And it starts playing on your computer nearly instantly. + +347 +00:12:11,800 --> 00:12:14,280 +Sounds better than a couple other programs. + +348 +00:12:14,340 --> 00:12:14,620 +You know? + +349 +00:12:14,800 --> 00:12:15,040 +You know? + +350 +00:12:15,180 --> 00:12:15,660 +You know? + +351 +00:12:15,660 --> 00:12:15,840 +You know? + +352 +00:12:15,840 --> 00:12:15,840 + + +353 +00:12:15,840 --> 00:12:15,840 + + +354 +00:12:15,840 --> 00:12:15,840 + + +355 +00:12:15,840 --> 00:12:15,840 + + +356 +00:12:15,840 --> 00:12:19,380 +And then, when it gets done, it says, okay, I'm done with all that content. + +357 +00:12:19,680 --> 00:12:23,160 +And so, basically, it's Netflix for pirates. + +358 +00:12:23,540 --> 00:12:28,260 +Now, they are, you know, the people who wrote it, they're like, we don't expect any legal + +359 +00:12:28,260 --> 00:12:29,040 +implications. + +360 +00:12:29,940 --> 00:12:30,580 +All right? + +361 +00:12:30,600 --> 00:12:31,660 +They don't host anything. + +362 +00:12:32,020 --> 00:12:34,000 +They don't charge any memberships. + +363 +00:12:34,000 --> 00:12:34,820 +Nobody gets paid. + +364 +00:12:34,900 --> 00:12:35,540 +There's no advertising. + +365 +00:12:36,220 --> 00:12:39,500 +It's completely experimental, as they put it. + +366 +00:12:39,740 --> 00:12:43,420 +And there's no monetary gain involved. + +367 +00:12:43,520 --> 00:12:45,820 +So, basically, the laws don't apply to them. + +368 +00:12:45,840 --> 00:12:46,280 +Right. + +369 +00:12:46,740 --> 00:12:47,780 +And they don't host anything. + +370 +00:12:47,940 --> 00:12:50,420 +Also, laws don't apply to them. + +371 +00:12:51,140 --> 00:12:53,080 +So, it's a very interesting setup. + +372 +00:12:53,280 --> 00:12:55,280 +So, it's like a middleman software, then. + +373 +00:12:55,560 --> 00:12:55,960 +Yeah. + +374 +00:12:56,140 --> 00:12:58,740 +Basically, all it is, it's like a scraper. + +375 +00:12:58,840 --> 00:12:59,240 +Okay. + +376 +00:12:59,240 --> 00:13:00,120 +It goes out there. + +377 +00:13:00,160 --> 00:13:04,400 +It finds the stuff it needs to find in order for you to do what you want to do. + +378 +00:13:04,780 --> 00:13:07,260 +And then, it erases itself when it's done. + +379 +00:13:07,540 --> 00:13:09,060 +That sounds pretty cool to me. + +380 +00:13:09,120 --> 00:13:10,600 +It is very cool. + +381 +00:13:10,780 --> 00:13:12,440 +So, you should check it out if you want. + +382 +00:13:12,560 --> 00:13:12,920 +You can... + +383 +00:13:13,500 --> 00:13:15,820 +We'll post a link to it on the Guru Show. + +384 +00:13:15,840 --> 00:13:16,600 +Guru Show site at the end. + +385 +00:13:16,820 --> 00:13:18,980 +So, that is pretty nifty. + +386 +00:13:19,100 --> 00:13:21,940 +It's a way for you to at least check out some movies if you want to. + +387 +00:13:22,500 --> 00:13:27,380 +There is a questionable gray area as far as legality is concerned. + +388 +00:13:27,500 --> 00:13:28,700 +But they spell it out pretty easily. + +389 +00:13:28,940 --> 00:13:33,860 +They basically say, listen, because you're not really hosting anything. + +390 +00:13:34,040 --> 00:13:35,180 +You're not storing. + +391 +00:13:35,360 --> 00:13:35,800 +You're not sharing. + +392 +00:13:36,040 --> 00:13:36,800 +You're not seating. + +393 +00:13:36,960 --> 00:13:41,460 +You're not doing any of these things that would be on the illegal list. + +394 +00:13:41,600 --> 00:13:45,760 +They're basically gray-airing the crap out of the movie industry. + +395 +00:13:46,240 --> 00:13:57,500 +So, there's no way at the moment until somebody goes in and lobbies an idiot in Congress to change the laws that really that they can do anything about it. + +396 +00:13:57,680 --> 00:13:57,900 +Right. + +397 +00:13:58,160 --> 00:13:59,080 +Shall we talk to John? + +398 +00:13:59,280 --> 00:14:00,380 +I think we should talk to John. + +399 +00:14:00,460 --> 00:14:00,780 +Hey, John. + +400 +00:14:00,820 --> 00:14:01,160 +How are you doing? + +401 +00:14:02,080 --> 00:14:02,840 +Hey, not bad. + +402 +00:14:02,880 --> 00:14:03,500 +Guru, how are you? + +403 +00:14:04,260 --> 00:14:05,480 +I'm kind of ranty today. + +404 +00:14:06,080 --> 00:14:06,920 +That's all right. + +405 +00:14:07,000 --> 00:14:08,200 +Ranty is when you're at your best. + +406 +00:14:08,380 --> 00:14:08,980 +Oh, nice. + +407 +00:14:09,560 --> 00:14:10,280 +How can I help you? + +408 +00:14:10,920 --> 00:14:12,380 +Well, I actually have a question. + +409 +00:14:12,740 --> 00:14:15,300 +You were talking about security and the law. + +410 +00:14:15,840 --> 00:14:23,060 +And I kind of wonder about what the future of net neutrality is now that the FCC struck this down in the Verizon case. + +411 +00:14:23,220 --> 00:14:24,060 +And there have been reports. + +412 +00:14:24,220 --> 00:14:31,120 +I've had a lot of friends on the East Coast telling me that they can't access Netflix or everything they're streaming is just going really, really slow. + +413 +00:14:31,420 --> 00:14:39,400 +And that Verizon has basically been given carte blanche to pick and choose what traffic they let through at what pace. + +414 +00:14:39,600 --> 00:14:43,360 +So, I was wondering if you have any info on what's going on with the future of net neutrality. + +415 +00:14:43,460 --> 00:14:45,740 +Well, we know that the FCC has sort of changed their tone a bit. + +416 +00:14:45,840 --> 00:14:46,480 +Right. + +417 +00:14:46,540 --> 00:14:56,540 +Now, the FCC actually basically didn't sanction that, but it got passed anyway, this particular rule, despite what the FCC had said. + +418 +00:14:56,640 --> 00:15:02,140 +Now, the FCC basically said, well, we're not really going to change our stance on anything, right, previously to it getting passed. + +419 +00:15:02,600 --> 00:15:07,580 +They're like, we like the Internet the way it is, and we don't think that this should be happening. + +420 +00:15:07,660 --> 00:15:11,080 +But basically, the government said, well, we're going to change this anyway. + +421 +00:15:11,240 --> 00:15:12,580 +So, they changed the law. + +422 +00:15:13,000 --> 00:15:15,820 +So, now the FCC's rebuttal has been, okay. + +423 +00:15:15,840 --> 00:15:17,360 +We're going to rewrite the rules now. + +424 +00:15:17,500 --> 00:15:22,960 +And we're going to do what we're supposed to do and basically be more involved in this process. + +425 +00:15:23,240 --> 00:15:29,580 +And they're going to force neutrality upon basically everyone, which I think is a great thing. + +426 +00:15:30,280 --> 00:15:30,940 +Well, that's good news. + +427 +00:15:31,020 --> 00:15:33,100 +So, we'll see how far the FCC can get. + +428 +00:15:33,460 --> 00:15:39,180 +The thing is, is that people don't realize that the FCC is actually a rather powerful organization within the government. + +429 +00:15:39,600 --> 00:15:40,180 +I am. + +430 +00:15:40,260 --> 00:15:44,200 +And they really have a lot of juice. + +431 +00:15:44,380 --> 00:15:44,700 +I am. + +432 +00:15:44,700 --> 00:15:45,660 +And I think that if they... + +433 +00:15:45,660 --> 00:15:52,980 +If they flex their muscles properly, right, they can basically overturn that stuff with Verizon and Time Warner + +434 +00:15:52,980 --> 00:15:59,940 +and all of these other people that have been pushing for the ability to throttle traffic on their networks at will. + +435 +00:16:00,960 --> 00:16:02,840 +Can I ask a follow-up question? + +436 +00:16:02,980 --> 00:16:03,100 +Sure. + +437 +00:16:03,120 --> 00:16:04,080 +Since you brought that up. + +438 +00:16:04,180 --> 00:16:08,280 +You brought up Time Warner, and I know that they're trying to merge with Comcast. + +439 +00:16:09,460 --> 00:16:11,880 +Comcast said that they would not throttle traffic. + +440 +00:16:12,320 --> 00:16:14,120 +They made that public a long time ago. + +441 +00:16:14,160 --> 00:16:15,480 +Now, whether or not they stick to it. + +442 +00:16:15,480 --> 00:16:16,100 +It is one thing or another. + +443 +00:16:16,240 --> 00:16:22,600 +But Time Warner's been a company that's kind of been, you know, wanting to throttle traffic to push their own content. + +444 +00:16:22,740 --> 00:16:30,400 +If this merger goes through, do you see that becoming a giant problem for 56% of America that's going to rely on this company for its broadband internet? + +445 +00:16:30,600 --> 00:16:32,980 +First of all, I see the whole merger as a giant problem. + +446 +00:16:33,340 --> 00:16:33,940 +All right? + +447 +00:16:34,060 --> 00:16:39,000 +I see that much like the AT&T T-Mobile merger. + +448 +00:16:39,400 --> 00:16:39,940 +All right? + +449 +00:16:40,000 --> 00:16:41,080 +I think that's terrible. + +450 +00:16:42,160 --> 00:16:45,120 +Now, there is no direct competition between the cable companies. + +451 +00:16:45,120 --> 00:16:45,840 +We know this. + +452 +00:16:46,180 --> 00:16:52,640 +However, I actually used this to my advantage about two weeks ago. + +453 +00:16:52,800 --> 00:16:53,360 +All right? + +454 +00:16:53,400 --> 00:16:57,160 +Where I was having an argument with Cox about how much I pay for internet. + +455 +00:16:57,360 --> 00:16:59,840 +And they basically said, well, you can stick it. + +456 +00:17:01,180 --> 00:17:05,280 +And until I went to the sales rep and said, you know what? + +457 +00:17:05,700 --> 00:17:13,520 +My other office is in Comcast, and I will move every one of my servers and cancel a contract and never pay you. + +458 +00:17:13,720 --> 00:17:15,100 +If you guys don't figure out how to do that. + +459 +00:17:15,100 --> 00:17:17,040 +I'm going to make it so that I can get a better rate. + +460 +00:17:17,920 --> 00:17:18,580 +Fair enough. + +461 +00:17:18,760 --> 00:17:27,240 +And basically, I'm getting – I can get almost the same speed out of Comcast for one quarter of the cost. + +462 +00:17:27,540 --> 00:17:33,120 +And so I basically – I called them and I said, I'm going to move all of my servers. + +463 +00:17:33,340 --> 00:17:33,700 +All right? + +464 +00:17:33,740 --> 00:17:38,100 +I will move $700 a month off of your service. + +465 +00:17:38,460 --> 00:17:39,060 +All right? + +466 +00:17:39,080 --> 00:17:42,240 +If you guys can't figure out how to make it so that it's cheaper for me. + +467 +00:17:43,000 --> 00:17:44,100 +Now, this – + +468 +00:17:45,100 --> 00:17:51,420 +This is a lucky situation where I happen to have – I can have the ability to have the cable companies compete against each other, but most people are not. + +469 +00:17:52,000 --> 00:17:54,700 +Yeah, I'm also in that situation where I live. + +470 +00:17:54,840 --> 00:17:57,120 +It's Comcast or Usenet. + +471 +00:17:57,260 --> 00:17:59,880 +And, yeah, you can probably take a pick through there. + +472 +00:18:00,040 --> 00:18:03,380 +Yeah, that's pretty much – you've got the worst of both worlds to choose from. + +473 +00:18:04,460 --> 00:18:13,820 +However, back to your original point, is that if the FCC does their job the way that we're hoping, that the whole throttling thing is not going to be an issue. + +474 +00:18:13,920 --> 00:18:14,920 +Now, Comcast is already. + +475 +00:18:14,920 --> 00:18:18,080 +It's already been caught throttling traffic for Netflix and YouTube. + +476 +00:18:19,420 --> 00:18:23,720 +Even though they say we don't do that, there have been people have found out, right? + +477 +00:18:23,780 --> 00:18:27,360 +They're tracing those packets and showing conclusively that there's throttling happening. + +478 +00:18:27,940 --> 00:18:34,260 +Now, it could be – I'm just going to throw it out there just for the disclaimer of it all that, you know, there could have been a bad switch. + +479 +00:18:34,660 --> 00:18:35,100 +Right? + +480 +00:18:35,260 --> 00:18:44,360 +They could have popped across a network at the time of testing, but it seems pretty unlikely based off of when the tests were done and the time differences between them. + +481 +00:18:44,400 --> 00:18:44,580 +So. + +482 +00:18:44,920 --> 00:18:48,980 +So, my answer is, is I don't like the idea of the merger at all. + +483 +00:18:49,120 --> 00:18:59,600 +And I think that the FCC really has to step in and make things happen in order for us to, you know, to make it so that we are not at the rule of government. + +484 +00:18:59,740 --> 00:19:06,000 +I don't like the idea of the Internet as a whole being a government appliance, a utility. + +485 +00:19:06,380 --> 00:19:07,100 +No, no, no. + +486 +00:19:07,100 --> 00:19:07,300 +Yeah. + +487 +00:19:07,560 --> 00:19:10,440 +So, I mean, I think it needs to stay open and free. + +488 +00:19:10,840 --> 00:19:11,980 +I totally agree. + +489 +00:19:12,500 --> 00:19:13,280 +All right, Goomer. + +490 +00:19:13,340 --> 00:19:14,400 +Well, I appreciate your time. + +491 +00:19:14,480 --> 00:19:14,900 +Thank you. + +492 +00:19:14,900 --> 00:19:17,320 +And I'm a big fan of the fact that you guys are back on the air. + +493 +00:19:17,680 --> 00:19:18,320 +It's excellent. + +494 +00:19:18,380 --> 00:19:22,940 +I wish you could be at two hours again, but I'll take an hour a week and enjoy the living heck out of it. + +495 +00:19:23,020 --> 00:19:24,120 +Well, we'll see what we can do about that. + +496 +00:19:24,840 --> 00:19:26,000 +So, we're working on that. + +497 +00:19:26,120 --> 00:19:27,020 +But thanks for the call, man. + +498 +00:19:27,060 --> 00:19:27,600 +I appreciate it. + +499 +00:19:27,700 --> 00:19:27,840 +All right. + +500 +00:19:28,620 --> 00:19:29,640 +All right, well, right on. + +501 +00:19:29,780 --> 00:19:36,380 +Hey, I had a question texted to me, and I think you talked about this last week, about security breach on the Apple iPhone apps. + +502 +00:19:36,680 --> 00:19:37,000 +Right. + +503 +00:19:37,140 --> 00:19:38,280 +Specifically for banking? + +504 +00:19:39,960 --> 00:19:40,960 +Well, SSL as a whole. + +505 +00:19:41,280 --> 00:19:41,600 +Okay. + +506 +00:19:41,800 --> 00:19:44,040 +It's anything that's secured. + +507 +00:19:45,080 --> 00:19:51,400 +So, like banking, like Google Mail, like FaceTime, like anything that Apple uses. + +508 +00:19:51,580 --> 00:19:53,880 +I think banking was the biggest issue, though. + +509 +00:19:53,960 --> 00:19:55,340 +Yeah, that's what I'm led to believe. + +510 +00:19:55,680 --> 00:19:55,960 +Right. + +511 +00:19:56,000 --> 00:20:00,240 +Well, basically, anytime you think you're safe on a Mac, you're totally not right now. + +512 +00:20:00,540 --> 00:20:05,700 +And they have pushed out some patches, but none of them have strictly dealt with the SSL issue. + +513 +00:20:07,400 --> 00:20:09,500 +Basically, it's still in the wild at this point. + +514 +00:20:09,580 --> 00:20:13,680 +Now, if you have a mobile device and you've got your updates, you're cool. + +515 +00:20:14,000 --> 00:20:14,560 +Everything's fine. + +516 +00:20:15,560 --> 00:20:16,980 +We're led to believe that anyway. + +517 +00:20:18,220 --> 00:20:23,200 +But as far as the desktop units, there's still not an official fix for that as of yet. + +518 +00:20:24,560 --> 00:20:25,640 +We're still looking, though. + +519 +00:20:26,060 --> 00:20:27,120 +We'll let you know. + +520 +00:20:27,300 --> 00:20:30,380 +Yeah, well, you know, I think I'll just do some banking on the Mac. + +521 +00:20:31,280 --> 00:20:32,340 +That's what we're going to do. + +522 +00:20:33,700 --> 00:20:39,220 +If you'd like to be part of the show, 7902040, that's 520-7902040. + +523 +00:20:41,040 --> 00:20:41,400 +Yeah. + +524 +00:20:41,580 --> 00:20:41,680 +Yeah. + +525 +00:20:42,120 --> 00:20:44,380 +The whole, what does the ISP mean thing? + +526 +00:20:44,380 --> 00:20:45,440 +Just made me nuts. + +527 +00:20:45,640 --> 00:20:46,480 +I can tell. + +528 +00:20:46,640 --> 00:20:49,920 +I was not, I wasn't even planning on being all that ranty today. + +529 +00:20:49,980 --> 00:20:52,180 +I was just like, let's see what's on the news. + +530 +00:20:52,260 --> 00:20:52,740 +We'll just go ahead. + +531 +00:20:52,880 --> 00:20:54,980 +And then I saw that and I was just like, you know what? + +532 +00:20:55,100 --> 00:21:01,520 +I found my first segment of the show because that was just, it's so ridiculous. + +533 +00:21:02,520 --> 00:21:04,720 +You would think that they'd have a basic knowledge. + +534 +00:21:05,700 --> 00:21:08,580 +That's one of the first things you learn in computer class. + +535 +00:21:08,960 --> 00:21:10,720 +The thing that bothers me about it. + +536 +00:21:10,840 --> 00:21:11,200 +All right. + +537 +00:21:11,280 --> 00:21:13,340 +A little micro rant going on here. + +538 +00:21:13,340 --> 00:21:14,360 +I'm sorry. + +539 +00:21:14,740 --> 00:21:20,680 +Is that, you know, the whole thing coming out of government is, listen, we're trying to keep you safe. + +540 +00:21:20,740 --> 00:21:22,600 +We just want to save you. + +541 +00:21:22,760 --> 00:21:24,180 +We just want to save you. + +542 +00:21:24,200 --> 00:21:26,260 +And that's what one side of their face is saying. + +543 +00:21:26,380 --> 00:21:33,760 +Where the other one's like, we just want to record everything about you and save it for future use in case you turn out to be a jerk. + +544 +00:21:34,260 --> 00:21:34,580 +Right. + +545 +00:21:34,880 --> 00:21:36,520 +That is stupid. + +546 +00:21:36,740 --> 00:21:37,180 +Right. + +547 +00:21:38,300 --> 00:21:40,760 +You know who else collected me to death? + +548 +00:21:41,960 --> 00:21:43,180 +Let's think back to World War. + +549 +00:21:43,340 --> 00:21:44,040 +Two, shall we? + +550 +00:21:44,040 --> 00:21:44,380 +Yeah. + +551 +00:21:44,540 --> 00:21:45,100 +Metadata. + +552 +00:21:45,200 --> 00:21:45,760 +Right. + +553 +00:21:45,860 --> 00:21:47,660 +Even though it didn't have the name back then. + +554 +00:21:48,220 --> 00:21:48,780 +Yeah. + +555 +00:21:49,420 --> 00:22:02,580 +There was a certain country on the planet under a certain dictatorial leadership that was called a democratic that basically recorded everything about everyone and used it against them in a time of war. + +556 +00:22:03,560 --> 00:22:04,860 +We don't need that. + +557 +00:22:05,060 --> 00:22:09,580 +I don't know that I really have to spell it out any more plainly than that. + +558 +00:22:09,600 --> 00:22:12,100 +I don't think I have to use the H word today. + +559 +00:22:12,220 --> 00:22:13,240 +But I'm just. + +560 +00:22:13,340 --> 00:22:27,800 +I'm just going to go ahead and say that there are historical instances that we can go back to and to conclusively prove that it's not a great idea to just record everything or let the government have all of the power. + +561 +00:22:28,160 --> 00:22:30,320 +I think that's just probably a bad idea. + +562 +00:22:30,400 --> 00:22:30,680 +Right. + +563 +00:22:30,800 --> 00:22:34,300 +Hey, Homer Simpson had had something to say about that. + +564 +00:22:34,360 --> 00:22:34,780 +Oh, yeah. + +565 +00:22:34,800 --> 00:22:36,220 +Press any key. + +566 +00:22:36,640 --> 00:22:37,620 +Where's the any key? + +567 +00:22:37,900 --> 00:22:38,680 +I see. + +568 +00:22:38,820 --> 00:22:39,300 +Ask. + +569 +00:22:39,880 --> 00:22:40,360 +Katara. + +570 +00:22:40,660 --> 00:22:41,980 +And pick up. + +571 +00:22:42,160 --> 00:22:43,260 +It doesn't seem to be. + +572 +00:22:43,260 --> 00:22:43,820 +It doesn't seem to be any key. + +573 +00:22:44,580 --> 00:22:45,840 +Reminds me of the old show. + +574 +00:22:46,300 --> 00:22:46,660 +All right. + +575 +00:22:46,680 --> 00:22:47,820 +Let's go ahead and talk to John. + +576 +00:22:48,000 --> 00:22:48,620 +Hello, John. + +577 +00:22:49,820 --> 00:22:51,640 +Thanks so much for taking my call. + +578 +00:22:51,760 --> 00:22:54,520 +I had something happen this last week. + +579 +00:22:54,920 --> 00:22:57,220 +And I was just listening to you guys. + +580 +00:22:57,260 --> 00:22:59,780 +And I thought I'd see what you could tell me. + +581 +00:23:00,060 --> 00:23:13,040 +I got a message on my Verizon Motorola phone that said that my Verizon account, the question, the secret question had been changed. + +582 +00:23:13,680 --> 00:23:17,020 +So I called Verizon because I hadn't changed it. + +583 +00:23:17,240 --> 00:23:17,600 +Right. + +584 +00:23:17,680 --> 00:23:20,420 +And the guy told me my phone had been hacked. + +585 +00:23:21,420 --> 00:23:24,720 +And I said, well, I'd like you to fix that. + +586 +00:23:24,900 --> 00:23:31,160 +And he proceeded to tell me I needed to hire somebody for $200 to come redo my phone. + +587 +00:23:31,880 --> 00:23:35,860 +I said, I wanted Verizon to fix it. + +588 +00:23:36,420 --> 00:23:38,920 +And he kept trying to sell me this thing. + +589 +00:23:39,180 --> 00:23:39,640 +Right. + +590 +00:23:39,660 --> 00:23:42,580 +And finally, he said, okay, turn your phone off. + +591 +00:23:43,260 --> 00:23:45,540 +Turn it on in 15 minutes and it'll be okay. + +592 +00:23:47,200 --> 00:23:52,440 +Then another friend said I should get like a VPN on my phone. + +593 +00:23:52,720 --> 00:23:56,180 +And this is all strange to me. + +594 +00:23:56,320 --> 00:23:58,160 +Can you help me understand what's going on? + +595 +00:23:58,440 --> 00:23:58,760 +Right. + +596 +00:23:58,820 --> 00:24:00,400 +The whole thing is a scam, by the way. + +597 +00:24:00,940 --> 00:24:01,660 +Oh, is it? + +598 +00:24:01,740 --> 00:24:01,960 +Yeah. + +599 +00:24:02,000 --> 00:24:03,720 +The message that you got was a scam. + +600 +00:24:04,400 --> 00:24:11,040 +Interestingly enough, the number that's listed in that message you get on your phone is the real number for Verizon. + +601 +00:24:11,060 --> 00:24:11,840 +But somehow. + +602 +00:24:11,840 --> 00:24:19,880 +When you click on it or try to call them, you end up somewhere else, not necessarily with Verizon. + +603 +00:24:20,760 --> 00:24:25,440 +And it's actually been pretty big news for the last week where this is a big deal. + +604 +00:24:25,540 --> 00:24:27,980 +And people should not give up their information. + +605 +00:24:29,560 --> 00:24:33,260 +You should not click on a link on your phone to call Verizon. + +606 +00:24:33,520 --> 00:24:38,800 +If you are going to call them, the best way to do it is to make sure you clear everything. + +607 +00:24:39,180 --> 00:24:41,520 +Basically, do not click on that text message. + +608 +00:24:41,520 --> 00:24:43,000 +Go to the phone and dial 611. + +609 +00:24:43,860 --> 00:24:48,540 +That way you end up directly at Verizon with no intermediary steps. + +610 +00:24:49,220 --> 00:24:51,820 +And by the way, the 611 call is minutes free. + +611 +00:24:54,000 --> 00:24:55,600 +So, yes, it is a scam. + +612 +00:24:55,720 --> 00:24:56,360 +It's out there. + +613 +00:24:56,420 --> 00:24:59,440 +The guy was trying to get you to give up money for no good reason. + +614 +00:24:59,660 --> 00:25:01,020 +Your phone is not hacked. + +615 +00:25:01,300 --> 00:25:04,000 +You don't have to worry about that part of it. + +616 +00:25:04,260 --> 00:25:11,280 +If you have concerns at all, right, and you have like an Android phone, you know, make sure everything is backed up. + +617 +00:25:11,520 --> 00:25:14,860 +To either your Google account or some other method. + +618 +00:25:15,460 --> 00:25:17,340 +And format the phone, right? + +619 +00:25:17,420 --> 00:25:18,980 +Just basically go into privacy settings. + +620 +00:25:19,220 --> 00:25:21,340 +Tell it you want to start over. + +621 +00:25:21,480 --> 00:25:23,220 +And it will clear your phone completely. + +622 +00:25:24,160 --> 00:25:26,700 +And it does not cost $200. + +623 +00:25:27,060 --> 00:25:28,500 +It takes 10 minutes of your time. + +624 +00:25:28,740 --> 00:25:31,820 +If your stuff is synchronized with Google properly, it will all come back. + +625 +00:25:32,640 --> 00:25:33,080 +Okay. + +626 +00:25:33,260 --> 00:25:35,960 +So, basically, you know, don't listen to that. + +627 +00:25:36,040 --> 00:25:37,060 +It's all bogus. + +628 +00:25:37,500 --> 00:25:38,140 +Thank you. + +629 +00:25:38,160 --> 00:25:38,880 +That's very helpful. + +630 +00:25:39,000 --> 00:25:40,860 +It's obvious I've had my head in the sand. + +631 +00:25:40,860 --> 00:25:42,100 +And not hear all the news. + +632 +00:25:42,420 --> 00:25:45,920 +Well, you know, I see the news because that's what we're looking for. + +633 +00:25:46,000 --> 00:25:49,180 +And I don't know that it's necessarily been out in mainstream news. + +634 +00:25:49,300 --> 00:25:50,040 +Not really, no. + +635 +00:25:50,260 --> 00:25:52,980 +I think there was a mention of it on some national news stuff. + +636 +00:25:53,120 --> 00:25:57,720 +And I know that a couple of the local TV stations had talked about it briefly. + +637 +00:25:58,880 --> 00:26:03,440 +But, you know, if you really want to keep track of this stuff, you follow gurushow.com. + +638 +00:26:03,700 --> 00:26:04,140 +Yes. + +639 +00:26:04,140 --> 00:26:06,300 +Or go to our Facebook page. + +640 +00:26:06,380 --> 00:26:10,520 +Because as we get this type of information, we generally post it. + +641 +00:26:10,520 --> 00:26:11,480 +Everybody knows about it. + +642 +00:26:11,840 --> 00:26:12,780 +That's fantastic. + +643 +00:26:13,160 --> 00:26:21,440 +And then could you just real quickly, is it worthwhile to get like a VPN for your phone or for your home computer? + +644 +00:26:22,720 --> 00:26:25,420 +Well, it depends on your tech savviness level. + +645 +00:26:25,880 --> 00:26:26,460 +All right. + +646 +00:26:26,520 --> 00:26:32,100 +So, if you are comfortable with learning that type of, you know, the extra steps involved, absolutely. + +647 +00:26:32,200 --> 00:26:33,540 +The VPN stuff is great. + +648 +00:26:33,700 --> 00:26:34,320 +All right. + +649 +00:26:34,380 --> 00:26:34,660 +Okay. + +650 +00:26:34,900 --> 00:26:39,820 +But at the same time, you know, I don't like pushing people too far outside of their comfort limits. + +651 +00:26:39,820 --> 00:26:43,980 +We like to take little steps so that we can get you there without overwhelming you. + +652 +00:26:45,620 --> 00:26:46,060 +Perfect. + +653 +00:26:46,480 --> 00:26:49,900 +But if you're already familiar with the VPN stuff, I say go for it. + +654 +00:26:50,620 --> 00:26:51,280 +Very good. + +655 +00:26:51,360 --> 00:26:51,920 +Thanks, guys. + +656 +00:26:52,000 --> 00:26:52,920 +This was really helpful. + +657 +00:26:53,080 --> 00:26:53,700 +Appreciate it. + +658 +00:26:53,900 --> 00:26:54,520 +All right. + +659 +00:26:54,560 --> 00:26:55,060 +Thanks, John. + +660 +00:26:55,140 --> 00:26:55,760 +I appreciate it. + +661 +00:26:59,080 --> 00:27:03,180 +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. + +662 +00:27:03,500 --> 00:27:07,040 +Join the chat right now at gurushow.com or call in. + +663 +00:27:07,100 --> 00:27:09,680 +This is the Computer Guru Show on KVO. + +664 +00:27:09,820 --> 00:27:09,980 +Why? + +665 +00:27:10,040 --> 00:27:10,580 +The Voice. + +666 +00:27:13,920 --> 00:27:17,120 +You're listening to the Computer Guru Show on AM 1030. + +667 +00:27:17,360 --> 00:27:17,720 +KVO. + +668 +00:27:17,800 --> 00:27:18,000 +Why? + +669 +00:27:18,100 --> 00:27:18,640 +The Voice. + +670 +00:27:21,560 --> 00:27:23,400 +Welcome back to the Computer Guru Show. + +671 +00:27:24,360 --> 00:27:25,980 +Nothing like a little break to calm me down. + +672 +00:27:27,400 --> 00:27:33,540 +Yeah, because, you know, I've been particularly kind of hateful today, mainly on government stuff. + +673 +00:27:33,560 --> 00:27:34,580 +Maybe not hateful enough. + +674 +00:27:34,800 --> 00:27:36,180 +I should probably crank it up a notch. + +675 +00:27:36,220 --> 00:27:36,940 +I'm going to turn it up to 11. + +676 +00:27:37,180 --> 00:27:38,120 +That's what we're going to do. + +677 +00:27:38,240 --> 00:27:38,560 +All right. + +678 +00:27:38,580 --> 00:27:39,000 +Give us a call. + +679 +00:27:39,000 --> 00:27:41,240 +Call 790-2040. + +680 +00:27:42,700 --> 00:27:43,340 +790-2040. + +681 +00:27:43,520 --> 00:27:46,860 +In the 520 area code if you want to be calling from out of state. + +682 +00:27:46,980 --> 00:27:48,020 +We would love to hear from you. + +683 +00:27:48,040 --> 00:27:49,080 +Also, we've got a chat room set up. + +684 +00:27:49,160 --> 00:27:55,740 +If you want to just ask us questions in the chat room, you can go on the Facebook site to see it there. + +685 +00:27:57,580 --> 00:28:05,460 +Basically, I'll add that as part of the Guru Show standard link after the show today, but there wasn't enough time before airtime today to pull that off. + +686 +00:28:06,000 --> 00:28:06,940 +Because it's daughter weekend. + +687 +00:28:07,140 --> 00:28:08,100 +I get to hang out with my daughter. + +688 +00:28:08,160 --> 00:28:08,980 +Maybe that's what it is. + +689 +00:28:08,980 --> 00:28:17,500 +I spend all this time not cursing and being nice and hanging out with the innocent 11-year-old. + +690 +00:28:17,600 --> 00:28:19,240 +Then I'm like, I've got to unbottle this. + +691 +00:28:20,660 --> 00:28:24,100 +That article about them not knowing what ISP meant just made me crazy. + +692 +00:28:25,300 --> 00:28:27,480 +Let's talk about things that are more fun, shall we? + +693 +00:28:27,580 --> 00:28:28,180 +Shall we? + +694 +00:28:28,380 --> 00:28:29,040 +Fun stuff. + +695 +00:28:29,300 --> 00:28:30,120 +How about lawsuits? + +696 +00:28:32,520 --> 00:28:34,040 +So much more fun. + +697 +00:28:34,480 --> 00:28:36,480 +We should talk about WhatsApp for a second. + +698 +00:28:36,640 --> 00:28:36,960 +Yeah. + +699 +00:28:37,100 --> 00:28:38,700 +There's an issue. + +700 +00:28:38,700 --> 00:28:39,940 +There's an issue with WhatsApp right now. + +701 +00:28:40,320 --> 00:28:45,360 +In case you haven't heard, Facebook is acquiring WhatsApp. + +702 +00:28:45,660 --> 00:28:46,100 +Yeah. + +703 +00:28:46,260 --> 00:28:47,300 +Are they still in process? + +704 +00:28:47,320 --> 00:28:47,800 +I thought it was done. + +705 +00:28:48,060 --> 00:28:49,300 +It may be done. + +706 +00:28:49,680 --> 00:28:50,460 +I'm not sure. + +707 +00:28:50,500 --> 00:28:51,020 +I'd have to look. + +708 +00:28:51,060 --> 00:28:52,560 +Do you remember the number? + +709 +00:28:52,660 --> 00:28:53,060 +Oh. + +710 +00:28:53,340 --> 00:28:54,920 +How much they paid for that? + +711 +00:28:55,120 --> 00:28:55,320 +Yeah. + +712 +00:28:55,500 --> 00:28:56,040 +All right. + +713 +00:28:56,060 --> 00:28:59,100 +So it was, I believe, $15 billion? + +714 +00:28:59,280 --> 00:28:59,620 +Billion. + +715 +00:28:59,620 --> 00:29:00,040 +Yeah. + +716 +00:29:00,040 --> 00:29:00,440 +With a D. + +717 +00:29:00,600 --> 00:29:00,780 +Yeah. + +718 +00:29:00,840 --> 00:29:01,780 +$15 billion. + +719 +00:29:02,260 --> 00:29:02,700 +Bravo. + +720 +00:29:03,820 --> 00:29:06,940 +$15 billion for an application Facebook has paid. + +721 +00:29:07,060 --> 00:29:07,500 +Yeah. + +722 +00:29:07,500 --> 00:29:07,920 +For WhatsApp. + +723 +00:29:07,920 --> 00:29:08,040 +Yeah. + +724 +00:29:08,060 --> 00:29:09,560 +And they're not even using it, basically. + +725 +00:29:09,760 --> 00:29:10,000 +Yeah. + +726 +00:29:10,140 --> 00:29:10,380 +All right. + +727 +00:29:10,500 --> 00:29:16,300 +Here's the problem with that, is that somebody put together a list of things that you could + +728 +00:29:16,300 --> 00:29:17,640 +do with $15 billion. + +729 +00:29:17,920 --> 00:29:19,360 +You could buy an entire country. + +730 +00:29:19,700 --> 00:29:20,140 +Yes. + +731 +00:29:20,140 --> 00:29:20,200 +All right. + +732 +00:29:20,260 --> 00:29:21,240 +For $15 billion. + +733 +00:29:22,220 --> 00:29:25,740 +There's a list that all the things that you could buy for $15 billion. + +734 +00:29:25,760 --> 00:29:29,760 +You could effectively end world hunger for $15 billion. + +735 +00:29:30,560 --> 00:29:33,580 +And they paid that for a software that they're not even going to use. + +736 +00:29:33,740 --> 00:29:34,560 +That's ridiculous. + +737 +00:29:35,000 --> 00:29:35,560 +All right. + +738 +00:29:35,600 --> 00:29:36,720 +Now, hey, whatever. + +739 +00:29:36,940 --> 00:29:37,700 +It's their money. + +740 +00:29:37,700 --> 00:29:37,800 +It's their money. + +741 +00:29:37,800 --> 00:29:38,520 +Do what they want with it. + +742 +00:29:38,540 --> 00:29:38,660 +Yeah. + +743 +00:29:38,660 --> 00:29:40,420 +But now there's a lawsuit. + +744 +00:29:40,780 --> 00:29:41,200 +Yeah. + +745 +00:29:41,420 --> 00:29:41,940 +Right. + +746 +00:29:42,000 --> 00:29:45,160 +Because WhatsApp is all about, hey, we don't track anything. + +747 +00:29:45,440 --> 00:29:45,680 +Right. + +748 +00:29:45,780 --> 00:29:50,320 +They're very big on public security and not anonymity. + +749 +00:29:50,400 --> 00:29:51,920 +They're anti-NSA. + +750 +00:29:52,100 --> 00:29:52,400 +Yeah. + +751 +00:29:52,440 --> 00:29:52,780 +All right. + +752 +00:29:52,840 --> 00:29:54,700 +And Facebook is definitely not that. + +753 +00:29:54,900 --> 00:29:55,320 +Right. + +754 +00:29:55,440 --> 00:30:02,100 +So the Electronic Privacy Information Center, they actually put out an injunction complaint + +755 +00:30:02,100 --> 00:30:06,120 +to the Federal Trade Commission. + +756 +00:30:06,380 --> 00:30:07,520 +So we'll see. + +757 +00:30:07,700 --> 00:30:09,360 +We'll see how that turns out for them. + +758 +00:30:09,440 --> 00:30:11,660 +I kind of hope that it works out. + +759 +00:30:11,660 --> 00:30:12,320 +Well, it's going to stall. + +760 +00:30:12,320 --> 00:30:13,340 +I don't think it's going to stop anything. + +761 +00:30:13,480 --> 00:30:13,600 +No. + +762 +00:30:13,600 --> 00:30:14,620 +But it's going to stall it out for a minute. + +763 +00:30:15,960 --> 00:30:16,720 +Let's talk to Suzanne. + +764 +00:30:16,900 --> 00:30:17,320 +Hey, Suzanne. + +765 +00:30:17,420 --> 00:30:17,740 +How are you? + +766 +00:30:18,160 --> 00:30:18,660 +I'm good. + +767 +00:30:18,700 --> 00:30:19,060 +Thank you. + +768 +00:30:19,220 --> 00:30:20,080 +What can I do for you? + +769 +00:30:20,580 --> 00:30:26,800 +I have an app that's on my computer that I did not install, and I cannot find any way + +770 +00:30:26,800 --> 00:30:27,460 +to delete it. + +771 +00:30:27,680 --> 00:30:28,520 +What is this app? + +772 +00:30:29,920 --> 00:30:31,200 +Zcom underscore ad. + +773 +00:30:33,040 --> 00:30:33,360 +Zcom? + +774 +00:30:33,720 --> 00:30:34,560 +I don't know what that is. + +775 +00:30:34,560 --> 00:30:35,340 +Z is in zebra. + +776 +00:30:35,840 --> 00:30:36,480 +Oh, Zcom. + +777 +00:30:37,160 --> 00:30:37,480 +Zcom. + +778 +00:30:37,480 --> 00:30:37,480 + + +779 +00:30:37,520 --> 00:30:37,660 +Zcom. + +780 +00:30:37,680 --> 00:30:37,680 + + +781 +00:30:37,680 --> 00:30:37,680 + + +782 +00:30:37,680 --> 00:30:37,680 + + +783 +00:30:37,680 --> 00:30:37,680 + + +784 +00:30:37,680 --> 00:30:37,680 + + +785 +00:30:37,680 --> 00:30:37,680 + + +786 +00:30:37,680 --> 00:30:37,960 +Zcom doesn't help me. + +787 +00:30:38,000 --> 00:30:39,380 +I don't even know what that one is. + +788 +00:30:39,560 --> 00:30:41,780 +So where are you seeing it? + +789 +00:30:42,080 --> 00:30:46,800 +When I shut down my computer, it says your computer's not shutting down because this + +790 +00:30:46,800 --> 00:30:47,680 +app is still running. + +791 +00:30:47,900 --> 00:30:49,000 +What version of Windows do you have? + +792 +00:30:49,320 --> 00:30:49,980 +Windows 8. + +793 +00:30:50,380 --> 00:30:51,060 +You have 8? + +794 +00:30:51,220 --> 00:30:51,500 +Okay. + +795 +00:30:52,320 --> 00:30:52,900 +All right. + +796 +00:30:52,940 --> 00:30:53,860 +So let's see. + +797 +00:30:53,940 --> 00:31:01,100 +Easy ways to at least get the larger or more prevalent items out of the way. + +798 +00:31:01,400 --> 00:31:06,840 +And by the way, if you're sort of a do-it-yourselfer and you want to check stuff out and try to + +799 +00:31:06,840 --> 00:31:07,360 +clean your stuff. + +800 +00:31:07,720 --> 00:31:08,040 +OK. + +801 +00:31:18,520 --> 00:31:18,840 +OK. + +802 +00:31:19,000 --> 00:31:19,060 +OK. + +803 +00:31:19,060 --> 00:31:19,060 + + +804 +00:31:19,200 --> 00:31:19,200 + + +805 +00:31:20,760 --> 00:31:21,080 +OK. + +806 +00:31:21,420 --> 00:31:21,740 +OK. + +807 +00:31:21,820 --> 00:31:21,820 + + +808 +00:31:23,160 --> 00:31:23,160 + + +809 +00:31:23,160 --> 00:31:23,260 +OK. + +810 +00:31:23,380 --> 00:31:23,380 + + +811 +00:31:23,460 --> 00:31:23,740 +OK. + +812 +00:31:26,000 --> 00:31:26,320 +OK. + +813 +00:31:26,880 --> 00:31:27,060 +OK. + +814 +00:31:27,660 --> 00:31:27,980 +OK. + +815 +00:31:28,060 --> 00:31:28,260 +OK. + +816 +00:31:28,400 --> 00:31:28,560 +OK. + +817 +00:31:28,560 --> 00:31:28,560 + + +818 +00:31:28,800 --> 00:31:28,820 +OK. + +819 +00:31:29,080 --> 00:31:29,080 + + +820 +00:31:29,080 --> 00:31:29,080 + + +821 +00:31:29,080 --> 00:31:29,080 + + +822 +00:31:29,160 --> 00:31:29,160 + + +823 +00:31:29,160 --> 00:31:29,160 + + +824 +00:31:29,160 --> 00:31:29,160 + + +825 +00:31:29,160 --> 00:31:29,160 + + +826 +00:31:29,220 --> 00:31:29,220 + + +827 +00:31:29,240 --> 00:31:29,240 + + +828 +00:31:29,240 --> 00:31:29,240 + + +829 +00:31:29,240 --> 00:31:29,240 + + +830 +00:31:29,240 --> 00:31:29,240 + + +831 +00:31:29,240 --> 00:31:29,240 + + +832 +00:31:29,240 --> 00:31:29,240 + + +833 +00:31:29,260 --> 00:31:29,280 +OK. + +834 +00:31:29,300 --> 00:31:29,300 + + +835 +00:31:29,320 --> 00:31:29,340 +OK. + +836 +00:31:29,360 --> 00:31:29,380 +OK. + +837 +00:31:29,380 --> 00:31:29,400 +OK. + +838 +00:31:29,480 --> 00:31:29,500 +OK. + +839 +00:31:29,520 --> 00:31:29,520 + + +840 +00:31:29,540 --> 00:31:29,540 + + +841 +00:31:29,560 --> 00:31:29,560 + + +842 +00:31:29,560 --> 00:31:29,580 +OK. + +843 +00:31:29,580 --> 00:31:29,580 + + +844 +00:31:29,580 --> 00:31:29,580 + + +845 +00:31:29,580 --> 00:31:29,580 + + +846 +00:31:30,040 --> 00:31:30,360 +OK. + +847 +00:31:31,040 --> 00:31:31,320 +OK. + +848 +00:31:31,460 --> 00:31:31,780 +OK. + +849 +00:31:32,560 --> 00:31:32,720 +OK. + +850 +00:31:33,960 --> 00:31:34,280 +OK. + +851 +00:31:35,300 --> 00:31:35,420 +OK. + +852 +00:31:35,540 --> 00:31:35,800 +OK. + +853 +00:31:36,080 --> 00:31:36,240 +OK. + +854 +00:31:36,480 --> 00:31:36,800 +OK. + +855 +00:31:36,800 --> 00:31:37,600 +The built-in Windows one. + +856 +00:31:37,760 --> 00:31:38,120 +Okay. + +857 +00:31:38,540 --> 00:31:38,900 +Perfect. + +858 +00:31:39,300 --> 00:31:39,960 +That's a good one. + +859 +00:31:39,980 --> 00:31:42,300 +Is it the paid version or the free version of Malwarebytes? + +860 +00:31:42,860 --> 00:31:43,220 +Paid. + +861 +00:31:43,400 --> 00:31:43,960 +Paid version. + +862 +00:31:44,020 --> 00:31:44,200 +Okay. + +863 +00:31:44,260 --> 00:31:47,620 +So when you try to uninstall, do you see a place where you can uninstall this from the + +864 +00:31:47,620 --> 00:31:48,400 +add or remove programs list? + +865 +00:31:49,140 --> 00:31:50,500 +I can't find it anywhere. + +866 +00:31:50,560 --> 00:31:56,500 +Every time I've gone into the app and searched this app and stuff, I can't find it anywhere. + +867 +00:31:57,600 --> 00:31:57,960 +Okay. + +868 +00:31:57,960 --> 00:31:59,260 +Except when I shut down my machine. + +869 +00:31:59,480 --> 00:31:59,720 +All right. + +870 +00:31:59,720 --> 00:32:02,200 +Give me the spelling on that again because I'm going to look it up over this next break. + +871 +00:32:02,820 --> 00:32:04,100 +Z as in zebra. + +872 +00:32:04,240 --> 00:32:04,580 +Uh-huh. + +873 +00:32:04,580 --> 00:32:08,360 +Z-O-M underscore add. + +874 +00:32:09,000 --> 00:32:10,320 +Like A-D or A-D? + +875 +00:32:10,520 --> 00:32:10,720 +Okay. + +876 +00:32:11,440 --> 00:32:12,000 +All right. + +877 +00:32:12,040 --> 00:32:14,420 +Well, I'm going to look that up over the break and we're going to see what we can find for + +878 +00:32:14,420 --> 00:32:14,560 +you. + +879 +00:32:14,820 --> 00:32:15,140 +Okay. + +880 +00:32:15,180 --> 00:32:16,380 +Then can I ask you another question? + +881 +00:32:16,420 --> 00:32:16,580 +Yes. + +882 +00:32:16,580 --> 00:32:16,820 +Go ahead. + +883 +00:32:17,280 --> 00:32:17,680 +Okay. + +884 +00:32:17,740 --> 00:32:23,100 +I have a Microsoft Windows XP program on an old computer you worked on years ago. + +885 +00:32:23,840 --> 00:32:27,980 +And it says now that XP is no longer supported with updates. + +886 +00:32:28,440 --> 00:32:29,100 +That is correct. + +887 +00:32:30,100 --> 00:32:34,560 +So how do I get the security essentials to not work anymore? + +888 +00:32:34,580 --> 00:32:37,460 +Well, security essentials is going to work for another year. + +889 +00:32:37,660 --> 00:32:38,200 +Uh-huh. + +890 +00:32:38,400 --> 00:32:38,560 +All right. + +891 +00:32:38,600 --> 00:32:42,280 +So that part of it will work as far as updates are concerned. + +892 +00:32:42,620 --> 00:32:43,620 +But that is it. + +893 +00:32:44,040 --> 00:32:44,440 +Okay. + +894 +00:32:44,480 --> 00:32:46,080 +I have malware on that computer also. + +895 +00:32:46,860 --> 00:32:47,840 +As far as malware bytes? + +896 +00:32:48,060 --> 00:32:48,380 +Yes. + +897 +00:32:48,540 --> 00:32:48,680 +Yeah. + +898 +00:32:48,740 --> 00:32:49,640 +And that's fine. + +899 +00:32:49,720 --> 00:32:52,020 +That one will continue to update because it has nothing to do with Windows. + +900 +00:32:53,320 --> 00:32:58,600 +But as far as the built-in security updates for security essentials, you get one more year. + +901 +00:32:59,220 --> 00:33:00,620 +You shouldn't be in XP anymore. + +902 +00:33:01,040 --> 00:33:01,440 +Right. + +903 +00:33:01,520 --> 00:33:02,760 +Well, I have embroidery. + +904 +00:33:02,880 --> 00:33:04,380 +I'm the one with the embroidery machines. + +905 +00:33:04,580 --> 00:33:06,120 +And that's where all my software is at. + +906 +00:33:07,260 --> 00:33:07,700 +Okay. + +907 +00:33:08,380 --> 00:33:13,660 +And I can't update the software to anything newer that will work with anything other than XP. + +908 +00:33:14,040 --> 00:33:14,480 +Okay. + +909 +00:33:14,500 --> 00:33:15,880 +Who is your internet provider, by the way? + +910 +00:33:16,320 --> 00:33:19,200 +I just now got Verizon. + +911 +00:33:19,720 --> 00:33:20,500 +Who did you have before? + +912 +00:33:21,100 --> 00:33:22,180 +I was dial-up. + +913 +00:33:22,320 --> 00:33:23,340 +On net zero, right? + +914 +00:33:23,620 --> 00:33:24,060 +No. + +915 +00:33:24,340 --> 00:33:27,220 +I was dial-up on Juno. + +916 +00:33:28,060 --> 00:33:29,260 +That's pretty much the same thing. + +917 +00:33:29,500 --> 00:33:32,780 +So your program there, the ZCOM? + +918 +00:33:33,400 --> 00:33:33,840 +Uh-huh. + +919 +00:33:33,840 --> 00:33:34,260 +It is... + +920 +00:33:34,580 --> 00:33:35,860 +Part of the net zero dialer package. + +921 +00:33:36,320 --> 00:33:37,080 +Oh, is it? + +922 +00:33:37,240 --> 00:33:37,420 +Yeah. + +923 +00:33:38,320 --> 00:33:44,100 +So I would say that you go and uninstall anything that has anything to do with Juno off of your machine. + +924 +00:33:44,440 --> 00:33:44,900 +Oh, okay. + +925 +00:33:44,900 --> 00:33:46,280 +Or net zero if you find it. + +926 +00:33:47,060 --> 00:33:48,860 +And that'll probably deal with that issue. + +927 +00:33:49,400 --> 00:33:53,120 +Yeah, because I'm all of a sudden having these pop-up ads that start talking to me. + +928 +00:33:53,840 --> 00:33:55,440 +Yeah, well, uninstall that stuff. + +929 +00:33:55,940 --> 00:33:57,860 +And that should probably help with that. + +930 +00:33:57,940 --> 00:34:00,260 +Now, as far as your embroidery machine is concerned, + +931 +00:34:00,460 --> 00:34:01,140 +is there... + +932 +00:34:01,140 --> 00:34:01,680 +Uh-huh. + +933 +00:34:01,680 --> 00:34:04,480 +We could make it so that it's not connected to the internet. + +934 +00:34:04,480 --> 00:34:04,860 +It's not connected to the internet anymore. + +935 +00:34:05,820 --> 00:34:07,260 +And then you don't have to worry about those updates, + +936 +00:34:07,340 --> 00:34:09,640 +and you can run your embroidery stuff all day long off that computer. + +937 +00:34:10,240 --> 00:34:10,800 +Okay, great. + +938 +00:34:11,020 --> 00:34:13,300 +And then that way, you can just continue to use it that way. + +939 +00:34:13,880 --> 00:34:14,200 +Okay. + +940 +00:34:14,400 --> 00:34:14,660 +All right? + +941 +00:34:15,000 --> 00:34:15,200 +That sounds good. + +942 +00:34:15,200 --> 00:34:17,900 +So what you should do is call the shop and set up an appointment for that. + +943 +00:34:17,960 --> 00:34:19,040 +We can make that happen for you. + +944 +00:34:19,420 --> 00:34:19,700 +Right. + +945 +00:34:19,760 --> 00:34:21,340 +You've done wonderful things for my computers. + +946 +00:34:21,860 --> 00:34:22,560 +Well, thank you. + +947 +00:34:22,580 --> 00:34:23,260 +I appreciate that. + +948 +00:34:23,340 --> 00:34:24,900 +I'm so glad you're back on the air. + +949 +00:34:25,100 --> 00:34:25,500 +Me too. + +950 +00:34:25,740 --> 00:34:28,420 +So, yeah, call the shop, the 304-8300. + +951 +00:34:29,040 --> 00:34:29,700 +Okay, great. + +952 +00:34:29,900 --> 00:34:30,580 +Thank you very much. + +953 +00:34:30,620 --> 00:34:31,500 +Thank you so much. + +954 +00:34:31,580 --> 00:34:31,780 +Goodbye. + +955 +00:34:31,960 --> 00:34:32,280 +Bye. + +956 +00:34:32,920 --> 00:34:33,400 +All right. + +957 +00:34:33,480 --> 00:34:33,800 +So... + +958 +00:34:33,800 --> 00:34:35,680 +Well, let's go ahead and throw out the specials for the week, + +959 +00:34:35,680 --> 00:34:36,740 +just because we're running out of time. + +960 +00:34:36,860 --> 00:34:38,880 +An hour is not enough to do this show. + +961 +00:34:38,960 --> 00:34:39,440 +It really isn't. + +962 +00:34:39,460 --> 00:34:39,680 +I'm just saying. + +963 +00:34:39,780 --> 00:34:40,740 +Harry, make it happen. + +964 +00:34:40,820 --> 00:34:41,540 +I need an extra hour. + +965 +00:34:42,720 --> 00:34:43,220 +All right. + +966 +00:34:43,260 --> 00:34:47,240 +So if you want to, get in contact with us, 304-8300. + +967 +00:34:47,420 --> 00:34:48,900 +The special that we're running is, + +968 +00:34:49,040 --> 00:34:52,440 +if you are a member of our newsletter every week, + +969 +00:34:52,480 --> 00:34:53,460 +you would know this already. + +970 +00:34:54,180 --> 00:34:57,340 +But in-shop labor is basically $20 an hour off. + +971 +00:34:57,420 --> 00:35:00,640 +It's $55 an hour instead of $75, as it normally would be. + +972 +00:35:00,980 --> 00:35:03,320 +So if you come into the shop, + +973 +00:35:03,320 --> 00:35:05,940 +you can mention that you heard this on the show. + +974 +00:35:06,320 --> 00:35:07,460 +You have to mention it. + +975 +00:35:07,500 --> 00:35:09,920 +Otherwise, you don't get the deal, just so you know. + +976 +00:35:10,420 --> 00:35:11,640 +Mention that you heard it on the show, + +977 +00:35:11,720 --> 00:35:15,240 +and you get a discount for the service after check-in. + +978 +00:35:15,380 --> 00:35:17,660 +So go ahead and do that. + +979 +00:35:17,780 --> 00:35:19,320 +Also, if you are interested, + +980 +00:35:19,520 --> 00:35:22,880 +we're going to offer 50% off for one week only web development. + +981 +00:35:23,120 --> 00:35:23,840 +It'll make Rob happy. + +982 +00:35:25,460 --> 00:35:28,820 +So just if you want to talk about the web presence and how... + +983 +00:35:29,300 --> 00:35:31,400 +You don't even know how important it is, right? + +984 +00:35:31,500 --> 00:35:33,300 +Because, Terry, when was the last time that you looked at a... + +985 +00:35:33,320 --> 00:35:33,520 +Phone book? + +986 +00:35:34,800 --> 00:35:37,780 +I was a child, and I used it to stand on something. + +987 +00:35:37,820 --> 00:35:38,100 +Right. + +988 +00:35:38,240 --> 00:35:43,700 +See, now that's the only reason that phone books exist anymore, right? + +989 +00:35:44,220 --> 00:35:46,540 +If you're cold in the winter, you can set them on fire. + +990 +00:35:49,200 --> 00:35:53,600 +Otherwise, basically, I want to be able to cite, you know, + +991 +00:35:54,620 --> 00:35:57,460 +CenturyLink, your request, or whatever their name is these days, + +992 +00:35:57,480 --> 00:36:00,260 +with a littering charge every time they drop a phone book at my place. + +993 +00:36:00,380 --> 00:36:01,700 +I never, ever open them. + +994 +00:36:01,780 --> 00:36:03,020 +I don't advertise in them. + +995 +00:36:03,320 --> 00:36:05,440 +I refuse to even look at one, right? + +996 +00:36:05,500 --> 00:36:06,460 +Just because it's this. + +997 +00:36:06,540 --> 00:36:07,860 +So it's like fax machines. + +998 +00:36:08,080 --> 00:36:08,920 +They don't exist anymore. + +999 +00:36:09,080 --> 00:36:09,340 +Yeah. + +1000 +00:36:09,420 --> 00:36:11,040 +Stop using them because they don't exist. + +1001 +00:36:11,100 --> 00:36:15,340 +That thing that you're sending paper through and sending facsimile images to other people, + +1002 +00:36:15,420 --> 00:36:17,240 +it's a figment of your imagination. + +1003 +00:36:17,240 --> 00:36:18,580 +Stop using it, right? + +1004 +00:36:18,640 --> 00:36:19,900 +Get with the digital already. + +1005 +00:36:20,280 --> 00:36:20,960 +All right. + +1006 +00:36:21,000 --> 00:36:21,920 +Let's go ahead and take a break. + +1007 +00:36:23,860 --> 00:36:24,780 +Computer troubles? + +1008 +00:36:25,040 --> 00:36:26,000 +Need some advice? + +1009 +00:36:26,300 --> 00:36:27,000 +Call in now. + +1010 +00:36:27,180 --> 00:36:29,440 +Mike Swanson will be back after these messages. + +1011 +00:36:29,720 --> 00:36:31,080 +The Computer Guru Show. + +1012 +00:36:31,280 --> 00:36:32,300 +AM 1030. + +1013 +00:36:32,660 --> 00:36:33,140 +KVOY. + +1014 +00:36:33,320 --> 00:36:34,040 +The Voice. + +1015 +00:36:37,680 --> 00:36:41,520 +Whether you're dealing with hardware installation or, heaven forbid, a virus, + +1016 +00:36:41,660 --> 00:36:41,720 +No! + +1017 +00:36:42,100 --> 00:36:42,620 +No! + +1018 +00:36:42,760 --> 00:36:42,940 +No! + +1019 +00:36:43,480 --> 00:36:46,680 +Mike Swanson is answering all your questions one by one. + +1020 +00:36:46,800 --> 00:36:48,820 +So call in or chat in with yours. + +1021 +00:36:49,120 --> 00:36:49,800 +The website? + +1022 +00:36:50,240 --> 00:36:51,320 +Gurushow.com. + +1023 +00:36:51,660 --> 00:36:53,920 +Tune in, click in, and kick back. + +1024 +00:36:54,180 --> 00:36:57,440 +This is The Computer Guru Show on AM 1030. + +1025 +00:36:57,860 --> 00:36:58,380 +KVOY. + +1026 +00:36:58,460 --> 00:36:58,960 +The Voice. + +1027 +00:37:00,080 --> 00:37:02,160 +790-2040 if you want to be part of the show. + +1028 +00:37:02,220 --> 00:37:03,300 +That's 520-790-2040. + +1029 +00:37:03,320 --> 00:37:07,860 +790-2040 for the last segment of this week, just because we're almost out of time. + +1030 +00:37:08,240 --> 00:37:09,540 +I know it's a darn shame. + +1031 +00:37:09,540 --> 00:37:10,240 +It really is. + +1032 +00:37:10,360 --> 00:37:12,980 +But, you know, some of us have weekend jobs. + +1033 +00:37:13,160 --> 00:37:14,960 +It's gone by really fast, though. + +1034 +00:37:14,980 --> 00:37:16,220 +It does happen in a hurry. + +1035 +00:37:16,800 --> 00:37:18,080 +Except for the people who are bored. + +1036 +00:37:18,160 --> 00:37:19,960 +Then they're like, when is this show going to be over? + +1037 +00:37:20,140 --> 00:37:20,500 +Right? + +1038 +00:37:20,720 --> 00:37:22,440 +I want to talk about some horses and stuff. + +1039 +00:37:22,600 --> 00:37:23,720 +That's what's going to happen. + +1040 +00:37:27,420 --> 00:37:31,160 +It's going to be an interesting conversation in the hallway here in a minute. + +1041 +00:37:32,240 --> 00:37:33,300 +790-2040 if you want to be part of the show. + +1042 +00:37:33,320 --> 00:37:37,620 +Now, we talked about popcorn time, and I like this idea. + +1043 +00:37:37,780 --> 00:37:38,880 +I'm all about cord cutting. + +1044 +00:37:39,120 --> 00:37:41,000 +So we're going to revisit this for a second. + +1045 +00:37:41,120 --> 00:37:43,180 +There are other ways to pull this off. + +1046 +00:37:44,860 --> 00:37:47,600 +And slightly more legitimate ways to do it. + +1047 +00:37:47,700 --> 00:37:51,060 +A lot of this stuff is available out there through various other services. + +1048 +00:37:52,220 --> 00:37:58,800 +And we've complained a lot over the weeks about how it's not a good idea to legislate a business model. + +1049 +00:37:59,420 --> 00:38:02,880 +It's much better to adapt to the technology that's out there. + +1050 +00:38:02,900 --> 00:38:03,020 +Right? + +1051 +00:38:03,020 --> 00:38:03,100 +Right. + +1052 +00:38:03,100 --> 00:38:03,300 +Right. + +1053 +00:38:03,300 --> 00:38:03,300 + + +1054 +00:38:03,300 --> 00:38:03,300 + + +1055 +00:38:03,300 --> 00:38:03,300 + + +1056 +00:38:03,300 --> 00:38:03,300 + + +1057 +00:38:03,300 --> 00:38:03,300 + + +1058 +00:38:03,300 --> 00:38:03,300 + + +1059 +00:38:03,300 --> 00:38:03,300 + + +1060 +00:38:03,300 --> 00:38:03,300 + + +1061 +00:38:03,300 --> 00:38:03,300 + + +1062 +00:38:03,320 --> 00:38:07,160 +Popcorn time is sort of revolutionary in the way that it works. + +1063 +00:38:07,260 --> 00:38:10,400 +And a lot of people come down on this type of technology. + +1064 +00:38:10,400 --> 00:38:13,660 +And they're like, oh, you're just stealing from the movie companies or whatever. + +1065 +00:38:14,120 --> 00:38:16,280 +Like they don't have enough money in the first place. + +1066 +00:38:16,340 --> 00:38:19,920 +But beyond that, these guys are the pioneers. + +1067 +00:38:20,140 --> 00:38:20,400 +Right? + +1068 +00:38:20,460 --> 00:38:26,320 +They're developing the technology that the movie industry and the music industry should adopt. + +1069 +00:38:27,220 --> 00:38:27,620 +Right? + +1070 +00:38:27,700 --> 00:38:31,900 +This is the stuff that we're going to be using in a completely legal fashion at some point. + +1071 +00:38:31,960 --> 00:38:33,300 +Because somebody took the time to build it. + +1072 +00:38:33,300 --> 00:38:33,700 +And they're going to build it now. + +1073 +00:38:33,960 --> 00:38:34,240 +Yeah. + +1074 +00:38:34,480 --> 00:38:48,600 +And so there needs to be a certain tip of the hat to them on that to say, well, listen, you guys are trailblazing as far as a technology that is going to make it a lot easier for everybody to get the content that they want. + +1075 +00:38:48,720 --> 00:38:50,420 +And that is the main problem. + +1076 +00:38:50,600 --> 00:39:01,540 +That's the reason that piracy really exists is because the delivery method is not good as far as the legitimate methods are concerned. + +1077 +00:39:01,720 --> 00:39:01,940 +Right. + +1078 +00:39:02,240 --> 00:39:02,680 +Right. + +1079 +00:39:03,300 --> 00:39:04,020 +And so they're going to have to use Pandora. + +1080 +00:39:04,840 --> 00:39:07,340 +I mean, they're pretty successful. + +1081 +00:39:07,480 --> 00:39:07,720 +Right? + +1082 +00:39:07,800 --> 00:39:14,280 +As far as they have a free service that you can pay a dollar a month for if you really want the extra or less commercials. + +1083 +00:39:14,480 --> 00:39:14,840 +Right. + +1084 +00:39:16,460 --> 00:39:18,420 +And they were getting sued up front. + +1085 +00:39:18,560 --> 00:39:18,920 +Right? + +1086 +00:39:19,000 --> 00:39:23,320 +And they developed a technology that was pioneering at the time. + +1087 +00:39:23,480 --> 00:39:29,660 +And they don't have all the music that I like to listen to because I have a very eclectic taste in music. + +1088 +00:39:29,840 --> 00:39:30,280 +Right. + +1089 +00:39:30,280 --> 00:39:30,620 +Right. + +1090 +00:39:30,620 --> 00:39:30,860 +Right. + +1091 +00:39:30,860 --> 00:39:31,240 +Right. + +1092 +00:39:31,240 --> 00:39:31,440 +Right. + +1093 +00:39:32,800 --> 00:39:33,240 +Right. + +1094 +00:39:33,280 --> 00:39:33,280 + + +1095 +00:39:33,280 --> 00:39:33,280 + + +1096 +00:39:33,280 --> 00:39:33,280 + + +1097 +00:39:33,280 --> 00:39:33,280 + + +1098 +00:39:33,280 --> 00:39:33,280 + + +1099 +00:39:33,280 --> 00:39:33,280 + + +1100 +00:39:33,280 --> 00:39:33,280 + + +1101 +00:39:33,280 --> 00:39:33,280 + + +1102 +00:39:33,280 --> 00:39:33,280 + + +1103 +00:39:33,280 --> 00:39:33,280 + + +1104 +00:39:33,280 --> 00:39:33,280 + + +1105 +00:39:33,280 --> 00:39:33,280 + + +1106 +00:39:33,280 --> 00:39:33,280 + + +1107 +00:39:33,280 --> 00:39:33,280 + + +1108 +00:39:33,280 --> 00:39:33,280 + + +1109 +00:39:33,280 --> 00:39:33,280 + + +1110 +00:39:33,280 --> 00:39:33,280 + + +1111 +00:39:33,280 --> 00:39:33,280 + + +1112 +00:39:33,280 --> 00:39:33,280 + + +1113 +00:39:33,280 --> 00:39:33,280 + + +1114 +00:39:33,300 --> 00:39:33,420 +And I like Grooveshark. + +1115 +00:39:33,880 --> 00:39:34,880 +Grooveshark is pretty awesome. + +1116 +00:39:34,980 --> 00:39:35,080 +Yeah. + +1117 +00:39:35,140 --> 00:39:36,560 +I like Grooveshark a lot, too. + +1118 +00:39:36,780 --> 00:39:37,120 +Right. + +1119 +00:39:37,160 --> 00:39:39,080 +So there's lots of stuff that's out there. + +1120 +00:39:39,200 --> 00:39:45,380 +And maybe one of the articles we can get you to write this week is about different places to get different types of media. + +1121 +00:39:45,580 --> 00:39:46,360 +I can do that. + +1122 +00:39:46,540 --> 00:39:50,920 +Oh, and by the way, Tara is sort of in charge of social media now. + +1123 +00:39:51,140 --> 00:39:51,540 +Woo-hoo! + +1124 +00:39:51,660 --> 00:39:52,860 +That's sort of her gig. + +1125 +00:39:53,140 --> 00:39:53,600 +Go me! + +1126 +00:39:53,840 --> 00:39:54,060 +Right. + +1127 +00:39:54,080 --> 00:39:59,600 +So she's going to be writing articles, as well as Rob, myself, for the Guru Show site. + +1128 +00:39:59,880 --> 00:40:00,980 +So they'll be on Facebook. + +1129 +00:40:01,000 --> 00:40:03,280 +You should like the Computer Guru Radio Show. + +1130 +00:40:03,280 --> 00:40:09,300 +If you want to get updates as far as the stuff that we're generating and creating. + +1131 +00:40:10,760 --> 00:40:13,880 +We want to be able to provide as much information as possible. + +1132 +00:40:13,960 --> 00:40:14,880 +That's what this show is about. + +1133 +00:40:15,040 --> 00:40:20,960 +And even though I only have an hour to do it, we try to cram a bunch of information in here to keep you safe. + +1134 +00:40:21,560 --> 00:40:22,580 +Knowledge is power. + +1135 +00:40:23,140 --> 00:40:23,540 +Yeah. + +1136 +00:40:23,560 --> 00:40:24,920 +As long as it's still allowed. + +1137 +00:40:25,220 --> 00:40:25,560 +Yeah. + +1138 +00:40:25,660 --> 00:40:26,060 +Exactly. + +1139 +00:40:26,480 --> 00:40:27,380 +So we've got to hurry. + +1140 +00:40:27,540 --> 00:40:27,880 +Right. + +1141 +00:40:27,940 --> 00:40:33,000 +And one of the things that we do teach, and I recommend that everybody come down and at + +1142 +00:40:33,000 --> 00:40:37,420 +least take it once, is the internet safety class that we offer. + +1143 +00:40:37,540 --> 00:40:39,520 +It's how to keep yourself safe online. + +1144 +00:40:41,000 --> 00:40:48,580 +There are ways, using very simple little tweaks, that either you yourself, as far as how you + +1145 +00:40:48,580 --> 00:40:53,540 +use the internet, or very small changes that you can make to your computer, that will reduce + +1146 +00:40:53,540 --> 00:41:00,140 +your likelihood of getting an infection or falling for a phishing attack by just infinite + +1147 +00:41:00,140 --> 00:41:00,460 +degrees. + +1148 +00:41:00,740 --> 00:41:00,980 +Right. + +1149 +00:41:01,080 --> 00:41:02,320 +As far as you will be. + +1150 +00:41:02,320 --> 00:41:03,660 +It's going to be so much safer online. + +1151 +00:41:04,760 --> 00:41:10,100 +Now, on one of my machines, my primary machine in the car that I use all day long, I don't + +1152 +00:41:10,100 --> 00:41:11,040 +even have antivirus on there. + +1153 +00:41:11,140 --> 00:41:11,540 +Right. + +1154 +00:41:11,600 --> 00:41:12,140 +I don't need it. + +1155 +00:41:12,240 --> 00:41:12,640 +Right. + +1156 +00:41:12,760 --> 00:41:20,200 +Because I utilize some very unconventional ways of using the internet and configuring + +1157 +00:41:20,200 --> 00:41:22,280 +the machine in such a way that I just don't get them. + +1158 +00:41:22,380 --> 00:41:26,920 +And even if I were, right, it would be very easy to remove because of that configuration. + +1159 +00:41:27,260 --> 00:41:27,560 +Right. + +1160 +00:41:27,680 --> 00:41:29,760 +So, you know, come down and take the class. + +1161 +00:41:29,940 --> 00:41:31,620 +It will save you a bunch of money. + +1162 +00:41:31,720 --> 00:41:32,120 +Right. + +1163 +00:41:32,320 --> 00:41:35,860 +And a lot of times we get people in after they've brought their machine into the shop. + +1164 +00:41:35,920 --> 00:41:37,340 +They're like, I've got this nasty infection. + +1165 +00:41:37,880 --> 00:41:40,660 +And we're like, okay, that'll be $150 to clean it. + +1166 +00:41:40,860 --> 00:41:46,240 +Or you could have spent $25 to come down and sit with me for two hours and I teach you + +1167 +00:41:46,240 --> 00:41:46,620 +about it. + +1168 +00:41:46,800 --> 00:41:48,620 +Once again, knowledge is power. + +1169 +00:41:48,780 --> 00:41:48,980 +Right. + +1170 +00:41:49,020 --> 00:41:50,740 +And knowledge is money saving. + +1171 +00:41:50,860 --> 00:41:51,120 +Yes. + +1172 +00:41:51,260 --> 00:41:51,360 +Right. + +1173 +00:41:51,660 --> 00:41:54,000 +Knowledge is dollars still in your wallet. + +1174 +00:41:54,520 --> 00:41:55,880 +So sign up for the classes. + +1175 +00:41:55,900 --> 00:41:59,660 +You can go to azcomputerguru.com in the classes section and sign up for those. + +1176 +00:42:00,080 --> 00:42:02,100 +And we're also going to do a Guru. + +1177 +00:42:02,100 --> 00:42:03,160 +Guru Unleashed next week. + +1178 +00:42:03,960 --> 00:42:06,940 +And I didn't ask you about it, but if you want to show up for that. + +1179 +00:42:08,080 --> 00:42:12,920 +Basically, it is sort of this show, right, but in person. + +1180 +00:42:13,040 --> 00:42:13,500 +Oh, okay. + +1181 +00:42:13,500 --> 00:42:17,120 +Where you get to ask things that we can't normally answer on the air. + +1182 +00:42:17,860 --> 00:42:19,140 +That includes gaming. + +1183 +00:42:19,500 --> 00:42:19,720 +Right. + +1184 +00:42:19,740 --> 00:42:23,960 +Gaming, cord cutting, which is a big one that we always get because I will not talk about + +1185 +00:42:23,960 --> 00:42:26,060 +the actual specifics of cord cutting on air. + +1186 +00:42:26,420 --> 00:42:30,820 +But there is some very cool information in that. + +1187 +00:42:30,920 --> 00:42:32,080 +And you get an opportunity just to come down. + +1188 +00:42:32,100 --> 00:42:32,720 +Hang out with us. + +1189 +00:42:32,760 --> 00:42:33,780 +Ask us anything you want. + +1190 +00:42:33,940 --> 00:42:36,360 +And it doesn't have the one hour time limit. + +1191 +00:42:36,500 --> 00:42:37,800 +We're going to do that next Saturday. + +1192 +00:42:38,360 --> 00:42:44,000 +So if you want to show up for Guru Unleashed, it's also in the classes section on the website. + +1193 +00:42:44,200 --> 00:42:45,660 +So azcomputerguru.com. + +1194 +00:42:45,760 --> 00:42:46,280 +Check that out. + +1195 +00:42:46,720 --> 00:42:48,200 +Once again, our specials for the week. + +1196 +00:42:48,280 --> 00:42:49,620 +$20 off per hour. + +1197 +00:42:49,740 --> 00:42:51,500 +So $55 an hour for in-shop labor. + +1198 +00:42:51,680 --> 00:42:56,240 +If you mention that you heard it on the show or you happen to have this week's newsletter. + +1199 +00:42:56,460 --> 00:42:58,680 +And if you don't, you can send us an email. + +1200 +00:42:58,800 --> 00:43:00,740 +Radio at azcomputerguru.com. + +1201 +00:43:00,960 --> 00:43:02,080 +And we'll even send you the Q&A. + +1202 +00:43:02,080 --> 00:43:03,940 +And then that way you can bring it in with you. + +1203 +00:43:05,520 --> 00:43:11,520 +And we're going to offer for this particular week half off of web development for this upcoming week. + +1204 +00:43:11,700 --> 00:43:14,020 +So I think that's a good idea. + +1205 +00:43:14,240 --> 00:43:15,000 +It's a good deal. + +1206 +00:43:15,160 --> 00:43:15,360 +Right. + +1207 +00:43:15,500 --> 00:43:17,140 +So what do we got? + +1208 +00:43:17,160 --> 00:43:17,980 +Like six minutes left. + +1209 +00:43:18,040 --> 00:43:20,540 +You can give us a call at 790-2040. + +1210 +00:43:20,800 --> 00:43:24,660 +And we'll see if we can quickly stuff an answer in. + +1211 +00:43:24,840 --> 00:43:28,880 +But I don't know if anybody's going to have time to do it just because I was wrong. + +1212 +00:43:28,920 --> 00:43:29,920 +We only have three minutes left. + +1213 +00:43:30,000 --> 00:43:30,540 +So four. + +1214 +00:43:32,360 --> 00:43:33,860 +What was I going to talk about? + +1215 +00:43:34,120 --> 00:43:36,420 +There was something on my list and I closed it. + +1216 +00:43:37,380 --> 00:43:38,380 +Oh, shame on you. + +1217 +00:43:38,400 --> 00:43:38,740 +I know. + +1218 +00:43:38,780 --> 00:43:39,340 +That's terrible. + +1219 +00:43:39,680 --> 00:43:42,540 +And now there's a chat bubble in my way. + +1220 +00:43:42,600 --> 00:43:44,200 +I can't even click on the link I wanted to click on. + +1221 +00:43:45,180 --> 00:43:45,780 +All right. + +1222 +00:43:45,980 --> 00:43:46,980 +Got to love the internet. + +1223 +00:43:47,340 --> 00:43:48,480 +How about more scary stuff? + +1224 +00:43:49,300 --> 00:43:49,700 +Okay. + +1225 +00:43:49,840 --> 00:43:50,120 +All right. + +1226 +00:43:50,160 --> 00:43:54,760 +So this company has developed a drone, right? + +1227 +00:43:54,900 --> 00:43:56,120 +You know those flying drones? + +1228 +00:43:56,220 --> 00:43:57,160 +Oh, yeah. + +1229 +00:43:57,240 --> 00:43:57,940 +I know drones. + +1230 +00:43:57,940 --> 00:43:58,500 +Multi-bladed helicopters? + +1231 +00:43:59,160 --> 00:43:59,420 +Yes. + +1232 +00:43:59,480 --> 00:44:00,760 +Well, this one's pretty interesting. + +1233 +00:44:00,820 --> 00:44:01,460 +It gets activated. + +1234 +00:44:01,460 --> 00:44:08,180 +It gets activated when your house alarm goes off and it will find the perpetrator in your house. + +1235 +00:44:08,340 --> 00:44:12,720 +And when it does, it sends you a picture and it asks you what do you want to do with them. + +1236 +00:44:12,760 --> 00:44:13,800 +And you get to hit a button. + +1237 +00:44:14,260 --> 00:44:15,080 +What's the button? + +1238 +00:44:15,220 --> 00:44:16,340 +I want to know what the button is. + +1239 +00:44:16,340 --> 00:44:16,880 +There's a couple of buttons. + +1240 +00:44:16,940 --> 00:44:21,020 +One of them is like just maintain, just follow them around. + +1241 +00:44:21,520 --> 00:44:22,900 +The other one is detain. + +1242 +00:44:23,900 --> 00:44:28,720 +Now, first of all, you've got an eight-bladed helicopter that's flying around near you. + +1243 +00:44:28,940 --> 00:44:30,400 +Does it have tiny little handcuffs? + +1244 +00:44:30,660 --> 00:44:30,980 +No. + +1245 +00:44:31,460 --> 00:44:35,080 +It has a stun gun built into it and it will tase your butt. + +1246 +00:44:35,260 --> 00:44:36,340 +I want one. + +1247 +00:44:36,420 --> 00:44:39,300 +And then it will make sure that you do not move. + +1248 +00:44:39,740 --> 00:44:40,940 +Oh, I want one. + +1249 +00:44:40,940 --> 00:44:41,080 +It's so bad. + +1250 +00:44:41,080 --> 00:44:44,660 +And so basically, if you try to get up and run away, it tases you again. + +1251 +00:44:45,000 --> 00:44:46,000 +That would be awesome. + +1252 +00:44:46,420 --> 00:44:47,820 +And it calls the cops. + +1253 +00:44:48,000 --> 00:44:50,280 +I can't wait for the YouTube videos of these. + +1254 +00:44:50,700 --> 00:44:53,240 +There are a couple of YouTube videos of it in training. + +1255 +00:44:53,440 --> 00:44:54,080 +What's it cost? + +1256 +00:44:54,860 --> 00:44:55,660 +You know, I don't know. + +1257 +00:44:55,680 --> 00:44:56,620 +They didn't put a cost on it. + +1258 +00:44:56,620 --> 00:44:57,260 +I don't even care. + +1259 +00:44:57,700 --> 00:44:58,100 +Yeah. + +1260 +00:44:58,140 --> 00:44:58,540 +Right? + +1261 +00:44:59,320 --> 00:45:00,740 +I think it's a great idea. + +1262 +00:45:01,580 --> 00:45:03,740 +I think it's slightly terrifying, though. + +1263 +00:45:03,880 --> 00:45:06,100 +How many of those do you think Facebook could have bought? + +1264 +00:45:07,000 --> 00:45:08,340 +With $15 billion? + +1265 +00:45:08,640 --> 00:45:09,520 +Yeah, $16 billion. + +1266 +00:45:09,520 --> 00:45:10,180 +$16 billion. + +1267 +00:45:11,040 --> 00:45:11,820 +Quite a few. + +1268 +00:45:13,200 --> 00:45:14,540 +The Facebook drones. + +1269 +00:45:14,860 --> 00:45:18,660 +You know, it used to be that you could just carry around a stake to distract the German shepherd. + +1270 +00:45:18,820 --> 00:45:19,040 +Yeah. + +1271 +00:45:19,100 --> 00:45:23,500 +What are you going to do when you've got a multi-bladed helicopter with a stun gun chasing you? + +1272 +00:45:26,080 --> 00:45:27,800 +It's terrifying, right? + +1273 +00:45:29,780 --> 00:45:30,220 +Wow. + +1274 +00:45:30,520 --> 00:45:30,540 +Wow. + +1275 +00:45:30,820 --> 00:45:31,260 +Wow. + +1276 +00:45:31,260 --> 00:45:31,440 +Wow. + +1277 +00:45:31,440 --> 00:45:31,440 + + +1278 +00:45:31,440 --> 00:45:31,440 + + +1279 +00:45:31,440 --> 00:45:31,440 + + +1280 +00:45:31,440 --> 00:45:31,440 + + +1281 +00:45:31,440 --> 00:45:31,440 + + +1282 +00:45:31,440 --> 00:45:31,440 + + +1283 +00:45:31,440 --> 00:45:31,440 + + +1284 +00:45:31,440 --> 00:45:31,440 + + +1285 +00:45:31,440 --> 00:45:31,440 + + +1286 +00:45:31,440 --> 00:45:31,440 + + +1287 +00:45:31,460 --> 00:45:32,420 +Wait for the YouTube video. + +1288 +00:45:32,920 --> 00:45:37,000 +The thing is, is I'm so torn about it because I'm like, wow, that's really scary, but I want one. + +1289 +00:45:38,220 --> 00:45:38,620 +Yeah. + +1290 +00:45:38,980 --> 00:45:41,740 +But one of these days, right, something's going to happen. + +1291 +00:45:41,800 --> 00:45:43,800 +There's going to be an infection, right, that comes out. + +1292 +00:45:43,920 --> 00:45:47,340 +For a more update for a helicopter, it chases its owners down and stuns them. + +1293 +00:45:47,700 --> 00:45:48,500 +Oh, yeah. + +1294 +00:45:48,600 --> 00:45:49,800 +I didn't even think about that. + +1295 +00:45:50,540 --> 00:45:52,860 +Or all the helicopters are like, humans? + +1296 +00:45:53,120 --> 00:45:53,460 +Really? + +1297 +00:45:53,700 --> 00:45:54,860 +That'd make a good Twilight Zone. + +1298 +00:45:56,960 --> 00:45:59,560 +It's the latest Hollywood blockbuster. + +1299 +00:45:59,840 --> 00:46:00,400 +Well, this... + +1300 +00:46:00,400 --> 00:46:01,280 +They're even... + +1301 +00:46:01,280 --> 00:46:02,340 +They're even selling drones on parades. + +1302 +00:46:02,340 --> 00:46:04,760 +They're even selling those drones at Verizon. + +1303 +00:46:05,100 --> 00:46:05,540 +Mm-hmm. + +1304 +00:46:05,600 --> 00:46:05,820 +Right? + +1305 +00:46:06,000 --> 00:46:07,160 +They're kind of cool. + +1306 +00:46:07,340 --> 00:46:08,100 +They really are. + +1307 +00:46:08,160 --> 00:46:09,640 +Probably get the little GoPro camera. + +1308 +00:46:09,860 --> 00:46:10,260 +Right. + +1309 +00:46:10,260 --> 00:46:10,800 +Pop it on there. + +1310 +00:46:10,800 --> 00:46:10,960 +Get some really good footage. + +1311 +00:46:10,960 --> 00:46:12,340 +Well, they have cameras built in. + +1312 +00:46:12,440 --> 00:46:15,320 +I have a friend that does it, and he's got some really great footage. + +1313 +00:46:15,700 --> 00:46:16,100 +Yeah. + +1314 +00:46:16,240 --> 00:46:18,400 +Well, I want the footage of him stunning somebody. + +1315 +00:46:18,520 --> 00:46:19,240 +Yeah, there you go. + +1316 +00:46:19,300 --> 00:46:20,320 +Put a stun gun on there. + +1317 +00:46:20,340 --> 00:46:20,960 +I'll have to tell him about it. + +1318 +00:46:21,580 --> 00:46:29,240 +And the other thing that I saw that was kind of interesting is that somebody is loading shotgun shells with plant seed. + +1319 +00:46:29,720 --> 00:46:31,160 +And basically, you go out... + +1320 +00:46:31,280 --> 00:46:32,940 +Just go out and shoot the ground, I guess. + +1321 +00:46:33,060 --> 00:46:38,100 +It's for when you're out doing shotgun-type things, like trap and skeet. + +1322 +00:46:38,180 --> 00:46:38,540 +Okay. + +1323 +00:46:38,540 --> 00:46:38,800 +All right? + +1324 +00:46:39,440 --> 00:46:41,260 +You're planting flowers every time you pull the trigger. + +1325 +00:46:41,380 --> 00:46:42,860 +Oh, well, that's a green idea. + +1326 +00:46:43,000 --> 00:46:44,500 +It's rather green, isn't it? + +1327 +00:46:44,640 --> 00:46:44,900 +Yes. + +1328 +00:46:45,160 --> 00:46:45,660 +All right. + +1329 +00:46:45,720 --> 00:46:47,200 +So, thanks for listening to the show this week. + +1330 +00:46:47,260 --> 00:46:48,000 +We really appreciate it. + +1331 +00:46:48,040 --> 00:46:52,500 +Give us a call down at the shop at 304-8300, or come see us at 1st and Fort Lowell. + +1332 +00:46:52,560 --> 00:46:54,100 +That's 510 East Fort Lowell. + +1333 +00:46:54,620 --> 00:46:58,120 +We'll be very happy to take care of whatever technology issues are ailing you. + +1334 +00:46:58,240 --> 00:47:00,620 +In the meantime, we'll see you next week. + +1335 +00:47:00,640 --> 00:47:01,260 +And things will be great. + +1336 +00:47:01,260 --> 00:47:01,260 + + +1337 +00:47:01,260 --> 00:47:01,260 + + +1338 +00:47:01,280 --> 00:47:01,900 +Things will be better, I hope. + +1339 +00:47:02,000 --> 00:47:02,740 +I hope so. + +1340 +00:47:05,760 --> 00:47:20,440 +I hope so. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.txt new file mode 100644 index 0000000..1731d08 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2014-s6e05/transcript.txt @@ -0,0 +1,1340 @@ +Computer running slow? +Has your machine somehow acquired a life of its own? +Or do you simply desire a deeper and more meaningful connection? +Be one with your operating system. +It's Arizona's computer guru, Mike Swanson, and his show starts now. +Listen in, chat in, and watch live streaming at gurushow.com. +Want your voice to be heard instead? +Instead, call in with your questions and riddles. +The number is 520-790-2040. +This is the Computer Guru Show on AM 1030, KVOY, The Voice. +Hello and welcome to the Computer Guru Show. +My name is Mike, here to deal with your technology needs and treat you like a person in the process, +because that's what we do. +Give us a call down here at 790-2040. +That's 520-790-2040. +We'll be happy to take any of your calls and deal with them. +Whenever technology issues happen to be ailing you today. +As usual, we've got people over there. +Hey, Harry, how are you doing? +I am well. How about yourself? +I like the hat, man. +Thank you. It's flight cap day. +I can dig it. +All right. And, of course, Tara's in here. +Hello, hello. +She's backing things up. +And not so much in the gaming news today, but mainly she's just going to listen to me complain. +I'm stuck on Angry Birds. +Oh, yeah. +We're not talking about Angry Birds. +I know, I know. +Or Flappy Bird. +Flappy Birds. +Yeah, right. +Or Floppy Bird. +Or Floppy Bird. +No type of birds today. +No birds. No birds. +That is a foul subject, and we're not going to do it. +Thank you. +All right. +So if you'd like to be part of the show, we'd love to hear from you. +790-2040. +In the meantime, we're going to talk about stupidity. +And that's really the focus of the rant today. +Now, we've actually touched on this for three weeks in a row now, +which is there are stupid people making laws when it comes to the Internet. +And, you know, it's... +You know, next year I need to go to South by Southwest. +I really need to go. +I want to go, too. +Really badly. +Oh, man, I've got to go to South by Southwest. +There is a cybersecurity expert down at South by Southwest. +He was talking with a person who is basically going and negotiating cybersecurity with China. +Now, as a person who gets e-mails about every 20 minutes or so saying, +hey, guess what? +There's an intrusion attempt on your network from China. +Or Russia or wherever. +Mostly China. +You know, I kind of feel for... +Yeah. +I am invested in this particular topic. +Right. +And what happens here is that this guy, who happens to be a government official, +is asking the security advisor at South by Southwest, +hey, you know what ISP means? +Oh. +All right. +All right. +So this guy is going to China. +To negotiate over cybersecurity issues and has no idea what ISP means. +It's like going to Russia to negotiate with them and having no idea what ICBM means. +Or vodka. +Right. +It's just like, really, you're that dumb. +And that has been my problem for the last several years as the CISPA thing comes out, +all these new rules and laws and people trying to pass regulations on the Internet +and not a single... +Right. +Not a single one of them has a clue. +I mean, like, they just don't get it. +Right. +It would be me, right, a person who all I do is computers, right, +trying to tell somebody else how to build a car. +Yeah. +Right. +I'm not qualified. +I am not... +I'm absolutely not qualified to do that. +But if you worked for the government, you could. +Actually, they like those big words. +That's what it is. +Well, you know, the thing is, is that I think... +I think that you should not be able to have any control over Internet-related anything +if you don't use it. +Right. +As an example, Janet Napolitano, as we're all familiar with, +she was the head of cybersecurity for the United States for a while. +Yeah. +Right? +And she does not use email. +No. +And it's not because she's afraid there's no threat or anything like that. +She just hasn't gotten around to it. +Right. +Now, I don't think that... +You should be passing laws that affect the entire planet unless you've gotten around +to using email, maybe once or twice. +The thing is, is that if you are not about the technology, if you don't use it and see +how it can benefit the lives of yourself and everyone around you, if you don't see the +benefit in it at all or have no personal investment, then you should not be involved in the way +that it is. +Right. +Right. +Now, there is something to be said for being impartial. +Right? +To be able to say, well, I can pass laws because I don't use it. +Right? +Exactly. +I'm not going to benefit myself. +No, you're going to hurt the rest of the world. +Yeah. +And that's really the bigger problem here is that you don't know what you're saying. +Right? +And what happens is you end up being this mindless, this lemming, right, that is walking +around Congress, being lobbied by very large companies. +Well, it's lots of money being able to say, you know what? +You know what we're going to do? +We are going to make it really hard for everybody on the planet to do anything because we've +got deep pockets. +Right. +They are going to convince a sheeple in Congress that they have no clue what they're doing. +Yeah, exactly. +Right. +So they're going to convince these people that have the power over us to change it to +a certain extent. +Right. +Right. +Right. + + + + + + + + + + + + + +As it pertains to the internet. +They're going to convince them that they have to make these changes that are just detrimental +to the way that the internet works. +They don't know what's in it until they pass it. +There's a certain part of that. +They should know the technology. +Yeah. +Well, with the internet stuff, they don't know what's in it after they pass it. +Right. +They never know what's in it because they're just so dumb. +They've got to reach the end of the internet before they can figure it out. +Oh, God. +Don't go there. +All right. +All right. + +It's just mind-boggling the amount of idiocy that is involved in the government when it +pertains to the internet. +And the reason I get upset about it is because it's one of the few places now, the last refuges +of free speech. +Yeah. +And you're turning this into China when it comes to the internet. +Pretty much. +All right. +We want to be able to put our ideas. +Our ideas out into the world and not have them stifled, not have them recorded and used +against us. +Right. +We want to be able to have the internet the way it's been for the last 20 years. +And there's no need to change it. +Right. +As far as the cybersecurity aspect of it, which is really what they're pushing. +They're saying, look, I got, here's what helped push it, by the way. +You know what phishing is, everybody. +Right. +And that's where you get that email. +Yes. +Right. +Then you accidentally click on the link. +Nigerian print. +Right. +That type of stuff. +Right. +Right. +Right. + + + + + + + + + +Right. +Which is called spear phishing, which is, it's a very selected target group of people +that it's sent to using very specific content that's designed to make them click on it. +Somewhere around 80% of senators managed to pick up an infection very recently that basically +said, hey, you want to see, you know, a French princess naked? +Oh. +Mm-hmm. +Well, they clicked on the link and got malware on their computers. +And it was, you know, specifically sent to Congress. +Congress and senators, you know, congressmen and senators. +And, you know, they clicked on it. +Right. +And so now, right, now that they're the people that have to get their machines clean, they're +like, well, this, the cybersecurity stuff is out of control. +Right. +Look at what the internet did. +It made me click on a link for naked pictures. +No, you're stupid. +That's what happened. +Yeah. +And, oh, man, it really drives me bonkers that these people have the ability to pass laws. +And, you know, I don't know. +I will go. +I will just take it upon myself. +I will go to D.C. +All right. +And help them. +All right. +And just say, you know what? +No. +No, don't do that. +Because that's dumb. +Really, there are other ways to deal with these problems. +And it doesn't involve blacklisting everybody on the planet. +Right. +Right. +What it really involves is being just a little bit, just a little bit smarter about the way +you use technology. +All right. +They should have some sort of class or something that they go to, especially if they're going +to be in a position that they're passing. +They're passing laws with technology. +Right. +Just a basic class that they could take at Pima Community College. +They can come down to my office. +Right. +I teach classes on how to stay safe on the Internet. +I do it almost every weekend. +They can come down, and I will teach them how not to get infections. +We should send them a letter. +We should. +That's what we should really do. +Maybe a webinar. +Ooh. +I don't know if they get it over the webinar. +Right. +They don't use email. +I need to get right. +Well, yeah, they're... +I got to get it right in front of them. +Yeah, exactly. +Right in their face. +Right in their face. +Because they are just... +They don't know how to do this, and that's the part that bothers me. +You know what, Harry? +You know what time it is? +It must be time for some music. +It is. +Hey. +Let's do it. +All right. +So when we get back, I will probably rant and complain a little bit more. +Also, we're going to talk about the specials of the week down at the shop. +We're going to save you a bunch of money if you're looking to get your network looked +at or if you want to build a website. +Yeah. +So stick around, and we'll be right back. +We're down. +All right. +Computer troubles? +Need some advice? +Call in now. +Mike Swanson will be back after these messages. +The Computer Guru Show. +AM 1030. +KVOY. +The Voice. +Whether you're dealing with hardware installation or, heaven forbid, a virus... +No. +No. +No! +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours. +The website? +Gurushow.com. +Tune in, click in, and kick back. +This is the Computer Guru Show on AM 1030. +KVOY. +The Voice. +So if you want to be part of the show, 790-2040, that's 520-790-2040. +I'm going to go ahead and continue complaining, right? +Because during the break, there was really harsh language going on because, you know, +we've been talking about getting the cameras in the studio, and I'm not even going to complain +about that because it's not here yet. +But, you know, there's some type of radio bureaucracy going on that basically doesn't allow me to +put cameras in here. +But here's the bigger issue for me, is that, you know, I've kind of said it's really important +that the internet work! +Holy crap! +There's no internet in the studio, and it makes me nuts! +Okay, so, now that I am done... +Did you lose the password? +No, I'm firmly connected to it, but there is no... +No, I've been running... +You're slow over here, too. +See? +Take a deep breath. +It's very zen-like at the moment. +Breathe, count to ten. +I'm tethering off of my phone in a cellular black hole just because the internet doesn't +work in the studio right now. +I can't tether off my phone, so you've got to one-up. +Yeah, all right. +So, let's talk about something that's a little more fun, shall we? +How about popcorn time? +Ooh. +So, this is an interesting experiment. +It has to be late. +It's labeled as an experiment because that's how it started. +It was a group of friends that got together. +They put together this very interesting group of technologies, right, where they built a +little software program that ties together about five different pieces of technology. +Okay. +All sort of randomly, and you install a little client on your machine. +You say, I want to watch this movie. +Ooh. +Any movie. +And it starts playing on your computer nearly instantly. +Sounds better than a couple other programs. +You know? +You know? +You know? +You know? + + + + +And then, when it gets done, it says, okay, I'm done with all that content. +And so, basically, it's Netflix for pirates. +Now, they are, you know, the people who wrote it, they're like, we don't expect any legal +implications. +All right? +They don't host anything. +They don't charge any memberships. +Nobody gets paid. +There's no advertising. +It's completely experimental, as they put it. +And there's no monetary gain involved. +So, basically, the laws don't apply to them. +Right. +And they don't host anything. +Also, laws don't apply to them. +So, it's a very interesting setup. +So, it's like a middleman software, then. +Yeah. +Basically, all it is, it's like a scraper. +Okay. +It goes out there. +It finds the stuff it needs to find in order for you to do what you want to do. +And then, it erases itself when it's done. +That sounds pretty cool to me. +It is very cool. +So, you should check it out if you want. +You can... +We'll post a link to it on the Guru Show. +Guru Show site at the end. +So, that is pretty nifty. +It's a way for you to at least check out some movies if you want to. +There is a questionable gray area as far as legality is concerned. +But they spell it out pretty easily. +They basically say, listen, because you're not really hosting anything. +You're not storing. +You're not sharing. +You're not seating. +You're not doing any of these things that would be on the illegal list. +They're basically gray-airing the crap out of the movie industry. +So, there's no way at the moment until somebody goes in and lobbies an idiot in Congress to change the laws that really that they can do anything about it. +Right. +Shall we talk to John? +I think we should talk to John. +Hey, John. +How are you doing? +Hey, not bad. +Guru, how are you? +I'm kind of ranty today. +That's all right. +Ranty is when you're at your best. +Oh, nice. +How can I help you? +Well, I actually have a question. +You were talking about security and the law. +And I kind of wonder about what the future of net neutrality is now that the FCC struck this down in the Verizon case. +And there have been reports. +I've had a lot of friends on the East Coast telling me that they can't access Netflix or everything they're streaming is just going really, really slow. +And that Verizon has basically been given carte blanche to pick and choose what traffic they let through at what pace. +So, I was wondering if you have any info on what's going on with the future of net neutrality. +Well, we know that the FCC has sort of changed their tone a bit. +Right. +Now, the FCC actually basically didn't sanction that, but it got passed anyway, this particular rule, despite what the FCC had said. +Now, the FCC basically said, well, we're not really going to change our stance on anything, right, previously to it getting passed. +They're like, we like the Internet the way it is, and we don't think that this should be happening. +But basically, the government said, well, we're going to change this anyway. +So, they changed the law. +So, now the FCC's rebuttal has been, okay. +We're going to rewrite the rules now. +And we're going to do what we're supposed to do and basically be more involved in this process. +And they're going to force neutrality upon basically everyone, which I think is a great thing. +Well, that's good news. +So, we'll see how far the FCC can get. +The thing is, is that people don't realize that the FCC is actually a rather powerful organization within the government. +I am. +And they really have a lot of juice. +I am. +And I think that if they... +If they flex their muscles properly, right, they can basically overturn that stuff with Verizon and Time Warner +and all of these other people that have been pushing for the ability to throttle traffic on their networks at will. +Can I ask a follow-up question? +Sure. +Since you brought that up. +You brought up Time Warner, and I know that they're trying to merge with Comcast. +Comcast said that they would not throttle traffic. +They made that public a long time ago. +Now, whether or not they stick to it. +It is one thing or another. +But Time Warner's been a company that's kind of been, you know, wanting to throttle traffic to push their own content. +If this merger goes through, do you see that becoming a giant problem for 56% of America that's going to rely on this company for its broadband internet? +First of all, I see the whole merger as a giant problem. +All right? +I see that much like the AT&T T-Mobile merger. +All right? +I think that's terrible. +Now, there is no direct competition between the cable companies. +We know this. +However, I actually used this to my advantage about two weeks ago. +All right? +Where I was having an argument with Cox about how much I pay for internet. +And they basically said, well, you can stick it. +And until I went to the sales rep and said, you know what? +My other office is in Comcast, and I will move every one of my servers and cancel a contract and never pay you. +If you guys don't figure out how to do that. +I'm going to make it so that I can get a better rate. +Fair enough. +And basically, I'm getting – I can get almost the same speed out of Comcast for one quarter of the cost. +And so I basically – I called them and I said, I'm going to move all of my servers. +All right? +I will move $700 a month off of your service. +All right? +If you guys can't figure out how to make it so that it's cheaper for me. +Now, this – +This is a lucky situation where I happen to have – I can have the ability to have the cable companies compete against each other, but most people are not. +Yeah, I'm also in that situation where I live. +It's Comcast or Usenet. +And, yeah, you can probably take a pick through there. +Yeah, that's pretty much – you've got the worst of both worlds to choose from. +However, back to your original point, is that if the FCC does their job the way that we're hoping, that the whole throttling thing is not going to be an issue. +Now, Comcast is already. +It's already been caught throttling traffic for Netflix and YouTube. +Even though they say we don't do that, there have been people have found out, right? +They're tracing those packets and showing conclusively that there's throttling happening. +Now, it could be – I'm just going to throw it out there just for the disclaimer of it all that, you know, there could have been a bad switch. +Right? +They could have popped across a network at the time of testing, but it seems pretty unlikely based off of when the tests were done and the time differences between them. +So. +So, my answer is, is I don't like the idea of the merger at all. +And I think that the FCC really has to step in and make things happen in order for us to, you know, to make it so that we are not at the rule of government. +I don't like the idea of the Internet as a whole being a government appliance, a utility. +No, no, no. +Yeah. +So, I mean, I think it needs to stay open and free. +I totally agree. +All right, Goomer. +Well, I appreciate your time. +Thank you. +And I'm a big fan of the fact that you guys are back on the air. +It's excellent. +I wish you could be at two hours again, but I'll take an hour a week and enjoy the living heck out of it. +Well, we'll see what we can do about that. +So, we're working on that. +But thanks for the call, man. +I appreciate it. +All right. +All right, well, right on. +Hey, I had a question texted to me, and I think you talked about this last week, about security breach on the Apple iPhone apps. +Right. +Specifically for banking? +Well, SSL as a whole. +Okay. +It's anything that's secured. +So, like banking, like Google Mail, like FaceTime, like anything that Apple uses. +I think banking was the biggest issue, though. +Yeah, that's what I'm led to believe. +Right. +Well, basically, anytime you think you're safe on a Mac, you're totally not right now. +And they have pushed out some patches, but none of them have strictly dealt with the SSL issue. +Basically, it's still in the wild at this point. +Now, if you have a mobile device and you've got your updates, you're cool. +Everything's fine. +We're led to believe that anyway. +But as far as the desktop units, there's still not an official fix for that as of yet. +We're still looking, though. +We'll let you know. +Yeah, well, you know, I think I'll just do some banking on the Mac. +That's what we're going to do. +If you'd like to be part of the show, 7902040, that's 520-7902040. +Yeah. +Yeah. +The whole, what does the ISP mean thing? +Just made me nuts. +I can tell. +I was not, I wasn't even planning on being all that ranty today. +I was just like, let's see what's on the news. +We'll just go ahead. +And then I saw that and I was just like, you know what? +I found my first segment of the show because that was just, it's so ridiculous. +You would think that they'd have a basic knowledge. +That's one of the first things you learn in computer class. +The thing that bothers me about it. +All right. +A little micro rant going on here. +I'm sorry. +Is that, you know, the whole thing coming out of government is, listen, we're trying to keep you safe. +We just want to save you. +We just want to save you. +And that's what one side of their face is saying. +Where the other one's like, we just want to record everything about you and save it for future use in case you turn out to be a jerk. +Right. +That is stupid. +Right. +You know who else collected me to death? +Let's think back to World War. +Two, shall we? +Yeah. +Metadata. +Right. +Even though it didn't have the name back then. +Yeah. +There was a certain country on the planet under a certain dictatorial leadership that was called a democratic that basically recorded everything about everyone and used it against them in a time of war. +We don't need that. +I don't know that I really have to spell it out any more plainly than that. +I don't think I have to use the H word today. +But I'm just. +I'm just going to go ahead and say that there are historical instances that we can go back to and to conclusively prove that it's not a great idea to just record everything or let the government have all of the power. +I think that's just probably a bad idea. +Right. +Hey, Homer Simpson had had something to say about that. +Oh, yeah. +Press any key. +Where's the any key? +I see. +Ask. +Katara. +And pick up. +It doesn't seem to be. +It doesn't seem to be any key. +Reminds me of the old show. +All right. +Let's go ahead and talk to John. +Hello, John. +Thanks so much for taking my call. +I had something happen this last week. +And I was just listening to you guys. +And I thought I'd see what you could tell me. +I got a message on my Verizon Motorola phone that said that my Verizon account, the question, the secret question had been changed. +So I called Verizon because I hadn't changed it. +Right. +And the guy told me my phone had been hacked. +And I said, well, I'd like you to fix that. +And he proceeded to tell me I needed to hire somebody for $200 to come redo my phone. +I said, I wanted Verizon to fix it. +And he kept trying to sell me this thing. +Right. +And finally, he said, okay, turn your phone off. +Turn it on in 15 minutes and it'll be okay. +Then another friend said I should get like a VPN on my phone. +And this is all strange to me. +Can you help me understand what's going on? +Right. +The whole thing is a scam, by the way. +Oh, is it? +Yeah. +The message that you got was a scam. +Interestingly enough, the number that's listed in that message you get on your phone is the real number for Verizon. +But somehow. +When you click on it or try to call them, you end up somewhere else, not necessarily with Verizon. +And it's actually been pretty big news for the last week where this is a big deal. +And people should not give up their information. +You should not click on a link on your phone to call Verizon. +If you are going to call them, the best way to do it is to make sure you clear everything. +Basically, do not click on that text message. +Go to the phone and dial 611. +That way you end up directly at Verizon with no intermediary steps. +And by the way, the 611 call is minutes free. +So, yes, it is a scam. +It's out there. +The guy was trying to get you to give up money for no good reason. +Your phone is not hacked. +You don't have to worry about that part of it. +If you have concerns at all, right, and you have like an Android phone, you know, make sure everything is backed up. +To either your Google account or some other method. +And format the phone, right? +Just basically go into privacy settings. +Tell it you want to start over. +And it will clear your phone completely. +And it does not cost $200. +It takes 10 minutes of your time. +If your stuff is synchronized with Google properly, it will all come back. +Okay. +So, basically, you know, don't listen to that. +It's all bogus. +Thank you. +That's very helpful. +It's obvious I've had my head in the sand. +And not hear all the news. +Well, you know, I see the news because that's what we're looking for. +And I don't know that it's necessarily been out in mainstream news. +Not really, no. +I think there was a mention of it on some national news stuff. +And I know that a couple of the local TV stations had talked about it briefly. +But, you know, if you really want to keep track of this stuff, you follow gurushow.com. +Yes. +Or go to our Facebook page. +Because as we get this type of information, we generally post it. +Everybody knows about it. +That's fantastic. +And then could you just real quickly, is it worthwhile to get like a VPN for your phone or for your home computer? +Well, it depends on your tech savviness level. +All right. +So, if you are comfortable with learning that type of, you know, the extra steps involved, absolutely. +The VPN stuff is great. +All right. +Okay. +But at the same time, you know, I don't like pushing people too far outside of their comfort limits. +We like to take little steps so that we can get you there without overwhelming you. +Perfect. +But if you're already familiar with the VPN stuff, I say go for it. +Very good. +Thanks, guys. +This was really helpful. +Appreciate it. +All right. +Thanks, John. +I appreciate it. +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. +Join the chat right now at gurushow.com or call in. +This is the Computer Guru Show on KVO. +Why? +The Voice. +You're listening to the Computer Guru Show on AM 1030. +KVO. +Why? +The Voice. +Welcome back to the Computer Guru Show. +Nothing like a little break to calm me down. +Yeah, because, you know, I've been particularly kind of hateful today, mainly on government stuff. +Maybe not hateful enough. +I should probably crank it up a notch. +I'm going to turn it up to 11. +That's what we're going to do. +All right. +Give us a call. +Call 790-2040. +790-2040. +In the 520 area code if you want to be calling from out of state. +We would love to hear from you. +Also, we've got a chat room set up. +If you want to just ask us questions in the chat room, you can go on the Facebook site to see it there. +Basically, I'll add that as part of the Guru Show standard link after the show today, but there wasn't enough time before airtime today to pull that off. +Because it's daughter weekend. +I get to hang out with my daughter. +Maybe that's what it is. +I spend all this time not cursing and being nice and hanging out with the innocent 11-year-old. +Then I'm like, I've got to unbottle this. +That article about them not knowing what ISP meant just made me crazy. +Let's talk about things that are more fun, shall we? +Shall we? +Fun stuff. +How about lawsuits? +So much more fun. +We should talk about WhatsApp for a second. +Yeah. +There's an issue. +There's an issue with WhatsApp right now. +In case you haven't heard, Facebook is acquiring WhatsApp. +Yeah. +Are they still in process? +I thought it was done. +It may be done. +I'm not sure. +I'd have to look. +Do you remember the number? +Oh. +How much they paid for that? +Yeah. +All right. +So it was, I believe, $15 billion? +Billion. +Yeah. +With a D. +Yeah. +$15 billion. +Bravo. +$15 billion for an application Facebook has paid. +Yeah. +For WhatsApp. +Yeah. +And they're not even using it, basically. +Yeah. +All right. +Here's the problem with that, is that somebody put together a list of things that you could +do with $15 billion. +You could buy an entire country. +Yes. +All right. +For $15 billion. +There's a list that all the things that you could buy for $15 billion. +You could effectively end world hunger for $15 billion. +And they paid that for a software that they're not even going to use. +That's ridiculous. +All right. +Now, hey, whatever. +It's their money. +It's their money. +Do what they want with it. +Yeah. +But now there's a lawsuit. +Yeah. +Right. +Because WhatsApp is all about, hey, we don't track anything. +Right. +They're very big on public security and not anonymity. +They're anti-NSA. +Yeah. +All right. +And Facebook is definitely not that. +Right. +So the Electronic Privacy Information Center, they actually put out an injunction complaint +to the Federal Trade Commission. +So we'll see. +We'll see how that turns out for them. +I kind of hope that it works out. +Well, it's going to stall. +I don't think it's going to stop anything. +No. +But it's going to stall it out for a minute. +Let's talk to Suzanne. +Hey, Suzanne. +How are you? +I'm good. +Thank you. +What can I do for you? +I have an app that's on my computer that I did not install, and I cannot find any way +to delete it. +What is this app? +Zcom underscore ad. +Zcom? +I don't know what that is. +Z is in zebra. +Oh, Zcom. +Zcom. + +Zcom. + + + + + + +Zcom doesn't help me. +I don't even know what that one is. +So where are you seeing it? +When I shut down my computer, it says your computer's not shutting down because this +app is still running. +What version of Windows do you have? +Windows 8. +You have 8? +Okay. +All right. +So let's see. +Easy ways to at least get the larger or more prevalent items out of the way. +And by the way, if you're sort of a do-it-yourselfer and you want to check stuff out and try to +clean your stuff. +OK. +OK. +OK. + + +OK. +OK. + + +OK. + +OK. +OK. +OK. +OK. +OK. +OK. + +OK. + + + + + + + + + + + + + + +OK. + +OK. +OK. +OK. +OK. + + + +OK. + + + +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +The built-in Windows one. +Okay. +Perfect. +That's a good one. +Is it the paid version or the free version of Malwarebytes? +Paid. +Paid version. +Okay. +So when you try to uninstall, do you see a place where you can uninstall this from the +add or remove programs list? +I can't find it anywhere. +Every time I've gone into the app and searched this app and stuff, I can't find it anywhere. +Okay. +Except when I shut down my machine. +All right. +Give me the spelling on that again because I'm going to look it up over this next break. +Z as in zebra. +Uh-huh. +Z-O-M underscore add. +Like A-D or A-D? +Okay. +All right. +Well, I'm going to look that up over the break and we're going to see what we can find for +you. +Okay. +Then can I ask you another question? +Yes. +Go ahead. +Okay. +I have a Microsoft Windows XP program on an old computer you worked on years ago. +And it says now that XP is no longer supported with updates. +That is correct. +So how do I get the security essentials to not work anymore? +Well, security essentials is going to work for another year. +Uh-huh. +All right. +So that part of it will work as far as updates are concerned. +But that is it. +Okay. +I have malware on that computer also. +As far as malware bytes? +Yes. +Yeah. +And that's fine. +That one will continue to update because it has nothing to do with Windows. +But as far as the built-in security updates for security essentials, you get one more year. +You shouldn't be in XP anymore. +Right. +Well, I have embroidery. +I'm the one with the embroidery machines. +And that's where all my software is at. +Okay. +And I can't update the software to anything newer that will work with anything other than XP. +Okay. +Who is your internet provider, by the way? +I just now got Verizon. +Who did you have before? +I was dial-up. +On net zero, right? +No. +I was dial-up on Juno. +That's pretty much the same thing. +So your program there, the ZCOM? +Uh-huh. +It is... +Part of the net zero dialer package. +Oh, is it? +Yeah. +So I would say that you go and uninstall anything that has anything to do with Juno off of your machine. +Oh, okay. +Or net zero if you find it. +And that'll probably deal with that issue. +Yeah, because I'm all of a sudden having these pop-up ads that start talking to me. +Yeah, well, uninstall that stuff. +And that should probably help with that. +Now, as far as your embroidery machine is concerned, +is there... +Uh-huh. +We could make it so that it's not connected to the internet. +It's not connected to the internet anymore. +And then you don't have to worry about those updates, +and you can run your embroidery stuff all day long off that computer. +Okay, great. +And then that way, you can just continue to use it that way. +Okay. +All right? +That sounds good. +So what you should do is call the shop and set up an appointment for that. +We can make that happen for you. +Right. +You've done wonderful things for my computers. +Well, thank you. +I appreciate that. +I'm so glad you're back on the air. +Me too. +So, yeah, call the shop, the 304-8300. +Okay, great. +Thank you very much. +Thank you so much. +Goodbye. +Bye. +All right. +So... +Well, let's go ahead and throw out the specials for the week, +just because we're running out of time. +An hour is not enough to do this show. +It really isn't. +I'm just saying. +Harry, make it happen. +I need an extra hour. +All right. +So if you want to, get in contact with us, 304-8300. +The special that we're running is, +if you are a member of our newsletter every week, +you would know this already. +But in-shop labor is basically $20 an hour off. +It's $55 an hour instead of $75, as it normally would be. +So if you come into the shop, +you can mention that you heard this on the show. +You have to mention it. +Otherwise, you don't get the deal, just so you know. +Mention that you heard it on the show, +and you get a discount for the service after check-in. +So go ahead and do that. +Also, if you are interested, +we're going to offer 50% off for one week only web development. +It'll make Rob happy. +So just if you want to talk about the web presence and how... +You don't even know how important it is, right? +Because, Terry, when was the last time that you looked at a... +Phone book? +I was a child, and I used it to stand on something. +Right. +See, now that's the only reason that phone books exist anymore, right? +If you're cold in the winter, you can set them on fire. +Otherwise, basically, I want to be able to cite, you know, +CenturyLink, your request, or whatever their name is these days, +with a littering charge every time they drop a phone book at my place. +I never, ever open them. +I don't advertise in them. +I refuse to even look at one, right? +Just because it's this. +So it's like fax machines. +They don't exist anymore. +Yeah. +Stop using them because they don't exist. +That thing that you're sending paper through and sending facsimile images to other people, +it's a figment of your imagination. +Stop using it, right? +Get with the digital already. +All right. +Let's go ahead and take a break. +Computer troubles? +Need some advice? +Call in now. +Mike Swanson will be back after these messages. +The Computer Guru Show. +AM 1030. +KVOY. +The Voice. +Whether you're dealing with hardware installation or, heaven forbid, a virus, +No! +No! +No! +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours. +The website? +Gurushow.com. +Tune in, click in, and kick back. +This is The Computer Guru Show on AM 1030. +KVOY. +The Voice. +790-2040 if you want to be part of the show. +That's 520-790-2040. +790-2040 for the last segment of this week, just because we're almost out of time. +I know it's a darn shame. +It really is. +But, you know, some of us have weekend jobs. +It's gone by really fast, though. +It does happen in a hurry. +Except for the people who are bored. +Then they're like, when is this show going to be over? +Right? +I want to talk about some horses and stuff. +That's what's going to happen. +It's going to be an interesting conversation in the hallway here in a minute. +790-2040 if you want to be part of the show. +Now, we talked about popcorn time, and I like this idea. +I'm all about cord cutting. +So we're going to revisit this for a second. +There are other ways to pull this off. +And slightly more legitimate ways to do it. +A lot of this stuff is available out there through various other services. +And we've complained a lot over the weeks about how it's not a good idea to legislate a business model. +It's much better to adapt to the technology that's out there. +Right? +Right. +Right. + + + + + + + + + +Popcorn time is sort of revolutionary in the way that it works. +And a lot of people come down on this type of technology. +And they're like, oh, you're just stealing from the movie companies or whatever. +Like they don't have enough money in the first place. +But beyond that, these guys are the pioneers. +Right? +They're developing the technology that the movie industry and the music industry should adopt. +Right? +This is the stuff that we're going to be using in a completely legal fashion at some point. +Because somebody took the time to build it. +And they're going to build it now. +Yeah. +And so there needs to be a certain tip of the hat to them on that to say, well, listen, you guys are trailblazing as far as a technology that is going to make it a lot easier for everybody to get the content that they want. +And that is the main problem. +That's the reason that piracy really exists is because the delivery method is not good as far as the legitimate methods are concerned. +Right. +Right. +And so they're going to have to use Pandora. +I mean, they're pretty successful. +Right? +As far as they have a free service that you can pay a dollar a month for if you really want the extra or less commercials. +Right. +And they were getting sued up front. +Right? +And they developed a technology that was pioneering at the time. +And they don't have all the music that I like to listen to because I have a very eclectic taste in music. +Right. +Right. +Right. +Right. +Right. +Right. + + + + + + + + + + + + + + + + + + + + +And I like Grooveshark. +Grooveshark is pretty awesome. +Yeah. +I like Grooveshark a lot, too. +Right. +So there's lots of stuff that's out there. +And maybe one of the articles we can get you to write this week is about different places to get different types of media. +I can do that. +Oh, and by the way, Tara is sort of in charge of social media now. +Woo-hoo! +That's sort of her gig. +Go me! +Right. +So she's going to be writing articles, as well as Rob, myself, for the Guru Show site. +So they'll be on Facebook. +You should like the Computer Guru Radio Show. +If you want to get updates as far as the stuff that we're generating and creating. +We want to be able to provide as much information as possible. +That's what this show is about. +And even though I only have an hour to do it, we try to cram a bunch of information in here to keep you safe. +Knowledge is power. +Yeah. +As long as it's still allowed. +Yeah. +Exactly. +So we've got to hurry. +Right. +And one of the things that we do teach, and I recommend that everybody come down and at +least take it once, is the internet safety class that we offer. +It's how to keep yourself safe online. +There are ways, using very simple little tweaks, that either you yourself, as far as how you +use the internet, or very small changes that you can make to your computer, that will reduce +your likelihood of getting an infection or falling for a phishing attack by just infinite +degrees. +Right. +As far as you will be. +It's going to be so much safer online. +Now, on one of my machines, my primary machine in the car that I use all day long, I don't +even have antivirus on there. +Right. +I don't need it. +Right. +Because I utilize some very unconventional ways of using the internet and configuring +the machine in such a way that I just don't get them. +And even if I were, right, it would be very easy to remove because of that configuration. +Right. +So, you know, come down and take the class. +It will save you a bunch of money. +Right. +And a lot of times we get people in after they've brought their machine into the shop. +They're like, I've got this nasty infection. +And we're like, okay, that'll be $150 to clean it. +Or you could have spent $25 to come down and sit with me for two hours and I teach you +about it. +Once again, knowledge is power. +Right. +And knowledge is money saving. +Yes. +Right. +Knowledge is dollars still in your wallet. +So sign up for the classes. +You can go to azcomputerguru.com in the classes section and sign up for those. +And we're also going to do a Guru. +Guru Unleashed next week. +And I didn't ask you about it, but if you want to show up for that. +Basically, it is sort of this show, right, but in person. +Oh, okay. +Where you get to ask things that we can't normally answer on the air. +That includes gaming. +Right. +Gaming, cord cutting, which is a big one that we always get because I will not talk about +the actual specifics of cord cutting on air. +But there is some very cool information in that. +And you get an opportunity just to come down. +Hang out with us. +Ask us anything you want. +And it doesn't have the one hour time limit. +We're going to do that next Saturday. +So if you want to show up for Guru Unleashed, it's also in the classes section on the website. +So azcomputerguru.com. +Check that out. +Once again, our specials for the week. +$20 off per hour. +So $55 an hour for in-shop labor. +If you mention that you heard it on the show or you happen to have this week's newsletter. +And if you don't, you can send us an email. +Radio at azcomputerguru.com. +And we'll even send you the Q&A. +And then that way you can bring it in with you. +And we're going to offer for this particular week half off of web development for this upcoming week. +So I think that's a good idea. +It's a good deal. +Right. +So what do we got? +Like six minutes left. +You can give us a call at 790-2040. +And we'll see if we can quickly stuff an answer in. +But I don't know if anybody's going to have time to do it just because I was wrong. +We only have three minutes left. +So four. +What was I going to talk about? +There was something on my list and I closed it. +Oh, shame on you. +I know. +That's terrible. +And now there's a chat bubble in my way. +I can't even click on the link I wanted to click on. +All right. +Got to love the internet. +How about more scary stuff? +Okay. +All right. +So this company has developed a drone, right? +You know those flying drones? +Oh, yeah. +I know drones. +Multi-bladed helicopters? +Yes. +Well, this one's pretty interesting. +It gets activated. +It gets activated when your house alarm goes off and it will find the perpetrator in your house. +And when it does, it sends you a picture and it asks you what do you want to do with them. +And you get to hit a button. +What's the button? +I want to know what the button is. +There's a couple of buttons. +One of them is like just maintain, just follow them around. +The other one is detain. +Now, first of all, you've got an eight-bladed helicopter that's flying around near you. +Does it have tiny little handcuffs? +No. +It has a stun gun built into it and it will tase your butt. +I want one. +And then it will make sure that you do not move. +Oh, I want one. +It's so bad. +And so basically, if you try to get up and run away, it tases you again. +That would be awesome. +And it calls the cops. +I can't wait for the YouTube videos of these. +There are a couple of YouTube videos of it in training. +What's it cost? +You know, I don't know. +They didn't put a cost on it. +I don't even care. +Yeah. +Right? +I think it's a great idea. +I think it's slightly terrifying, though. +How many of those do you think Facebook could have bought? +With $15 billion? +Yeah, $16 billion. +$16 billion. +Quite a few. +The Facebook drones. +You know, it used to be that you could just carry around a stake to distract the German shepherd. +Yeah. +What are you going to do when you've got a multi-bladed helicopter with a stun gun chasing you? +It's terrifying, right? +Wow. +Wow. +Wow. +Wow. + + + + + + + + + + +Wait for the YouTube video. +The thing is, is I'm so torn about it because I'm like, wow, that's really scary, but I want one. +Yeah. +But one of these days, right, something's going to happen. +There's going to be an infection, right, that comes out. +For a more update for a helicopter, it chases its owners down and stuns them. +Oh, yeah. +I didn't even think about that. +Or all the helicopters are like, humans? +Really? +That'd make a good Twilight Zone. +It's the latest Hollywood blockbuster. +Well, this... +They're even... +They're even selling drones on parades. +They're even selling those drones at Verizon. +Mm-hmm. +Right? +They're kind of cool. +They really are. +Probably get the little GoPro camera. +Right. +Pop it on there. +Get some really good footage. +Well, they have cameras built in. +I have a friend that does it, and he's got some really great footage. +Yeah. +Well, I want the footage of him stunning somebody. +Yeah, there you go. +Put a stun gun on there. +I'll have to tell him about it. +And the other thing that I saw that was kind of interesting is that somebody is loading shotgun shells with plant seed. +And basically, you go out... +Just go out and shoot the ground, I guess. +It's for when you're out doing shotgun-type things, like trap and skeet. +Okay. +All right? +You're planting flowers every time you pull the trigger. +Oh, well, that's a green idea. +It's rather green, isn't it? +Yes. +All right. +So, thanks for listening to the show this week. +We really appreciate it. +Give us a call down at the shop at 304-8300, or come see us at 1st and Fort Lowell. +That's 510 East Fort Lowell. +We'll be very happy to take care of whatever technology issues are ailing you. +In the meantime, we'll see you next week. +And things will be great. + + +Things will be better, I hope. +I hope so. +I hope so. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.json new file mode 100644 index 0000000..3f22741 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.json @@ -0,0 +1,55512 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 2721.332, + "segments": [ + { + "id": 0, + "text": "Computer running slow?", + "start": 1.6000000000000028, + "end": 3.0, + "words": [ + { + "word": " Computer", + "start": 1.6000000000000028, + "end": 2.22, + "probability": 0.2122802734375 + }, + { + "word": " running", + "start": 2.22, + "end": 2.64, + "probability": 0.97802734375 + }, + { + "word": " slow?", + "start": 2.64, + "end": 3.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1, + "text": "Has your machine somehow acquired a life of its own?", + "start": 3.26, + "end": 6.46, + "words": [ + { + "word": " Has", + "start": 3.26, + "end": 3.88, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3.88, + "end": 4.04, + "probability": 1.0 + }, + { + "word": " machine", + "start": 4.04, + "end": 4.42, + "probability": 1.0 + }, + { + "word": " somehow", + "start": 4.42, + "end": 4.82, + "probability": 0.99951171875 + }, + { + "word": " acquired", + "start": 4.82, + "end": 5.34, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5.34, + "end": 5.64, + "probability": 1.0 + }, + { + "word": " life", + "start": 5.64, + "end": 5.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 5.9, + "end": 6.08, + "probability": 1.0 + }, + { + "word": " its", + "start": 6.08, + "end": 6.26, + "probability": 0.99755859375 + }, + { + "word": " own?", + "start": 6.26, + "end": 6.46, + "probability": 1.0 + } + ] + }, + { + "id": 2, + "text": "It's alive!", + "start": 6.48, + "end": 6.94, + "words": [ + { + "word": " It's", + "start": 6.48, + "end": 6.66, + "probability": 0.58642578125 + }, + { + "word": " alive!", + "start": 6.66, + "end": 6.94, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3, + "text": "Or do you simply desire a deeper and more meaningful connection?", + "start": 7.58, + "end": 11.14, + "words": [ + { + "word": " Or", + "start": 7.58, + "end": 8.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 8.0, + "end": 8.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 8.18, + "end": 8.36, + "probability": 1.0 + }, + { + "word": " simply", + "start": 8.36, + "end": 8.68, + "probability": 1.0 + }, + { + "word": " desire", + "start": 8.68, + "end": 9.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 9.08, + "end": 9.44, + "probability": 1.0 + }, + { + "word": " deeper", + "start": 9.44, + "end": 9.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 9.82, + "end": 10.04, + "probability": 1.0 + }, + { + "word": " more", + "start": 10.04, + "end": 10.24, + "probability": 1.0 + }, + { + "word": " meaningful", + "start": 10.24, + "end": 10.74, + "probability": 1.0 + }, + { + "word": " connection?", + "start": 10.74, + "end": 11.14, + "probability": 1.0 + } + ] + }, + { + "id": 4, + "text": "Be one with your operating system.", + "start": 11.68, + "end": 13.7, + "words": [ + { + "word": " Be", + "start": 11.68, + "end": 12.12, + "probability": 1.0 + }, + { + "word": " one", + "start": 12.12, + "end": 12.42, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 12.42, + "end": 12.7, + "probability": 1.0 + }, + { + "word": " your", + "start": 12.7, + "end": 12.84, + "probability": 1.0 + }, + { + "word": " operating", + "start": 12.84, + "end": 13.2, + "probability": 0.99951171875 + }, + { + "word": " system.", + "start": 13.2, + "end": 13.7, + "probability": 1.0 + } + ] + }, + { + "id": 5, + "text": "It's Arizona's computer guru, Mike Swanson, and his show starts now.", + "start": 14.560000000000006, + "end": 19.46, + "words": [ + { + "word": " It's", + "start": 14.560000000000006, + "end": 15.180000000000003, + "probability": 1.0 + }, + { + "word": " Arizona's", + "start": 15.180000000000003, + "end": 15.8, + "probability": 1.0 + }, + { + "word": " computer", + "start": 15.8, + "end": 16.04, + "probability": 0.94091796875 + }, + { + "word": " guru,", + "start": 16.04, + "end": 16.58, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 16.76, + "end": 17.08, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 17.08, + "end": 17.48, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 17.7, + "end": 18.06, + "probability": 1.0 + }, + { + "word": " his", + "start": 18.06, + "end": 18.22, + "probability": 1.0 + }, + { + "word": " show", + "start": 18.22, + "end": 18.52, + "probability": 1.0 + }, + { + "word": " starts", + "start": 18.52, + "end": 19.0, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 19.0, + "end": 19.46, + "probability": 1.0 + } + ] + }, + { + "id": 6, + "text": "Listen in, chat in, and watch live streaming at gurushow.com.", + "start": 19.78, + "end": 24.38, + "words": [ + { + "word": " Listen", + "start": 19.78, + "end": 20.28, + "probability": 1.0 + }, + { + "word": " in,", + "start": 20.28, + "end": 20.52, + "probability": 1.0 + }, + { + "word": " chat", + "start": 20.6, + "end": 21.06, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 21.06, + "end": 21.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 21.48, + "end": 21.82, + "probability": 1.0 + }, + { + "word": " watch", + "start": 21.82, + "end": 22.06, + "probability": 1.0 + }, + { + "word": " live", + "start": 22.06, + "end": 22.34, + "probability": 0.99951171875 + }, + { + "word": " streaming", + "start": 22.34, + "end": 22.66, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 22.66, + "end": 23.14, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 23.14, + "end": 23.78, + "probability": 0.8681640625 + }, + { + "word": ".com.", + "start": 23.78, + "end": 24.38, + "probability": 1.0 + } + ] + }, + { + "id": 7, + "text": "Want your voice to be heard?", + "start": 24.62, + "end": 26.04, + "words": [ + { + "word": " Want", + "start": 24.62, + "end": 25.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 25.06, + "end": 25.22, + "probability": 1.0 + }, + { + "word": " voice", + "start": 25.22, + "end": 25.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 25.48, + "end": 25.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 25.64, + "end": 25.78, + "probability": 1.0 + }, + { + "word": " heard?", + "start": 25.78, + "end": 26.04, + "probability": 1.0 + } + ] + }, + { + "id": 8, + "text": "Call in with your questions and riddles.", + "start": 26.2, + "end": 28.0, + "words": [ + { + "word": " Call", + "start": 26.2, + "end": 26.52, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 26.52, + "end": 26.74, + "probability": 0.99755859375 + }, + { + "word": " with", + "start": 26.74, + "end": 26.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 26.9, + "end": 27.04, + "probability": 1.0 + }, + { + "word": " questions", + "start": 27.04, + "end": 27.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 27.46, + "end": 27.66, + "probability": 0.99951171875 + }, + { + "word": " riddles.", + "start": 27.66, + "end": 28.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 9, + "text": "The number is 520-790-2040.", + "start": 28.0, + "end": 31.5, + "words": [ + { + "word": " The", + "start": 28.0, + "end": 28.44, + "probability": 0.9853515625 + }, + { + "word": " number", + "start": 28.44, + "end": 28.62, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 28.62, + "end": 28.76, + "probability": 0.99072265625 + }, + { + "word": " 520", + "start": 28.76, + "end": 29.36, + "probability": 0.99462890625 + }, + { + "word": "-790", + "start": 29.36, + "end": 30.44, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 30.44, + "end": 31.5, + "probability": 1.0 + } + ] + }, + { + "id": 10, + "text": "This is the Computer Guru Show on AM1030.", + "start": 31.74, + "end": 35.08, + "words": [ + { + "word": " This", + "start": 31.74, + "end": 32.22, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 32.22, + "end": 32.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 32.58, + "end": 32.7, + "probability": 0.9169921875 + }, + { + "word": " Computer", + "start": 32.7, + "end": 33.0, + "probability": 0.98974609375 + }, + { + "word": " Guru", + "start": 33.0, + "end": 33.32, + "probability": 0.99560546875 + }, + { + "word": " Show", + "start": 33.32, + "end": 33.68, + "probability": 0.96923828125 + }, + { + "word": " on", + "start": 33.68, + "end": 34.12, + "probability": 0.9970703125 + }, + { + "word": " AM1030.", + "start": 34.12, + "end": 35.08, + "probability": 0.89013671875 + } + ] + }, + { + "id": 11, + "text": "KBOI, The Voice.", + "start": 35.88, + "end": 37.02, + "words": [ + { + "word": " KBOI,", + "start": 35.88, + "end": 36.36, + "probability": 0.93310546875 + }, + { + "word": " The", + "start": 36.36, + "end": 36.66, + "probability": 0.79541015625 + }, + { + "word": " Voice.", + "start": 36.66, + "end": 37.02, + "probability": 1.0 + } + ] + }, + { + "id": 12, + "text": "I got microphone problems going on over here.", + "start": 42.5, + "end": 49.28, + "words": [ + { + "word": " I", + "start": 42.5, + "end": 42.98, + "probability": 0.92724609375 + }, + { + "word": " got", + "start": 42.98, + "end": 43.34, + "probability": 0.8193359375 + }, + { + "word": " microphone", + "start": 43.34, + "end": 47.92, + "probability": 1.0 + }, + { + "word": " problems", + "start": 47.92, + "end": 48.28, + "probability": 1.0 + }, + { + "word": " going", + "start": 48.28, + "end": 48.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 48.64, + "end": 48.9, + "probability": 1.0 + }, + { + "word": " over", + "start": 48.9, + "end": 49.08, + "probability": 1.0 + }, + { + "word": " here.", + "start": 49.08, + "end": 49.28, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "What's going on with that?", + "start": 49.38, + "end": 50.42, + "words": [ + { + "word": " What's", + "start": 49.38, + "end": 49.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 49.78, + "end": 49.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 49.92, + "end": 50.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 50.14, + "end": 50.26, + "probability": 1.0 + }, + { + "word": " that?", + "start": 50.26, + "end": 50.42, + "probability": 1.0 + } + ] + }, + { + "id": 14, + "text": "Alright.", + "start": 51.7, + "end": 52.18, + "words": [ + { + "word": " Alright.", + "start": 51.7, + "end": 52.18, + "probability": 0.35205078125 + } + ] + }, + { + "id": 15, + "text": "Want to try this one?", + "start": 52.48, + "end": 53.42, + "words": [ + { + "word": " Want", + "start": 52.48, + "end": 52.96, + "probability": 0.87060546875 + }, + { + "word": " to", + "start": 52.96, + "end": 53.06, + "probability": 1.0 + }, + { + "word": " try", + "start": 53.06, + "end": 53.18, + "probability": 1.0 + }, + { + "word": " this", + "start": 53.18, + "end": 53.32, + "probability": 1.0 + }, + { + "word": " one?", + "start": 53.32, + "end": 53.42, + "probability": 1.0 + } + ] + }, + { + "id": 16, + "text": "Ah, okay, there we go.", + "start": 53.58, + "end": 54.74, + "words": [ + { + "word": " Ah,", + "start": 53.58, + "end": 53.92, + "probability": 0.83740234375 + }, + { + "word": " okay,", + "start": 53.92, + "end": 54.2, + "probability": 0.9951171875 + }, + { + "word": " there", + "start": 54.26, + "end": 54.4, + "probability": 1.0 + }, + { + "word": " we", + "start": 54.4, + "end": 54.54, + "probability": 1.0 + }, + { + "word": " go.", + "start": 54.54, + "end": 54.74, + "probability": 1.0 + } + ] + }, + { + "id": 17, + "text": "Alright!", + "start": 55.34, + "end": 55.82, + "words": [ + { + "word": " Alright!", + "start": 55.34, + "end": 55.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 18, + "text": "Alright!", + "start": 55.96, + "end": 56.24, + "words": [ + { + "word": " Alright!", + "start": 55.96, + "end": 56.24, + "probability": 0.020721435546875 + } + ] + }, + { + "id": 19, + "text": "Now we know which microphone to use.", + "start": 56.26, + "end": 57.7, + "words": [ + { + "word": " Now", + "start": 56.26, + "end": 56.56, + "probability": 1.0 + }, + { + "word": " we", + "start": 56.56, + "end": 56.72, + "probability": 1.0 + }, + { + "word": " know", + "start": 56.72, + "end": 56.84, + "probability": 1.0 + }, + { + "word": " which", + "start": 56.84, + "end": 56.98, + "probability": 1.0 + }, + { + "word": " microphone", + "start": 56.98, + "end": 57.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 57.34, + "end": 57.52, + "probability": 1.0 + }, + { + "word": " use.", + "start": 57.52, + "end": 57.7, + "probability": 1.0 + } + ] + }, + { + "id": 20, + "text": "Ken's going to apologize.", + "start": 59.0, + "end": 59.88, + "words": [ + { + "word": " Ken's", + "start": 59.0, + "end": 59.36, + "probability": 0.98046875 + }, + { + "word": " going", + "start": 59.36, + "end": 59.44, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 59.44, + "end": 59.52, + "probability": 1.0 + }, + { + "word": " apologize.", + "start": 59.52, + "end": 59.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 21, + "text": "I'm sorry, Mr. Guru.", + "start": 60.76, + "end": 61.82, + "words": [ + { + "word": " I'm", + "start": 60.76, + "end": 61.12, + "probability": 0.99951171875 + }, + { + "word": " sorry,", + "start": 61.12, + "end": 61.3, + "probability": 1.0 + }, + { + "word": " Mr.", + "start": 61.4, + "end": 61.52, + "probability": 0.99951171875 + }, + { + "word": " Guru.", + "start": 61.6, + "end": 61.82, + "probability": 0.98974609375 + } + ] + }, + { + "id": 22, + "text": "Alright, this is the Computer Guru Show.", + "start": 63.24, + "end": 65.06, + "words": [ + { + "word": " Alright,", + "start": 63.24, + "end": 63.6, + "probability": 0.09735107421875 + }, + { + "word": " this", + "start": 63.78, + "end": 64.04, + "probability": 1.0 + }, + { + "word": " is", + "start": 64.04, + "end": 64.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 64.32, + "end": 64.42, + "probability": 0.73828125 + }, + { + "word": " Computer", + "start": 64.42, + "end": 64.6, + "probability": 0.99658203125 + }, + { + "word": " Guru", + "start": 64.6, + "end": 64.86, + "probability": 0.99755859375 + }, + { + "word": " Show.", + "start": 64.86, + "end": 65.06, + "probability": 0.953125 + } + ] + }, + { + "id": 23, + "text": "My name is Mike.", + "start": 65.12, + "end": 65.54, + "words": [ + { + "word": " My", + "start": 65.12, + "end": 65.2, + "probability": 0.99853515625 + }, + { + "word": " name", + "start": 65.2, + "end": 65.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 65.28, + "end": 65.36, + "probability": 0.95166015625 + }, + { + "word": " Mike.", + "start": 65.36, + "end": 65.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 24, + "text": "Here to deal with your technology problems and treat you like a person in the process.", + "start": 65.54, + "end": 69.8, + "words": [ + { + "word": " Here", + "start": 65.54, + "end": 65.68, + "probability": 0.5029296875 + }, + { + "word": " to", + "start": 65.68, + "end": 65.74, + "probability": 0.9990234375 + }, + { + "word": " deal", + "start": 65.74, + "end": 65.88, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 65.88, + "end": 65.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 65.94, + "end": 66.1, + "probability": 0.99560546875 + }, + { + "word": " technology", + "start": 66.1, + "end": 67.02, + "probability": 0.99609375 + }, + { + "word": " problems", + "start": 67.02, + "end": 68.12, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 68.12, + "end": 68.56, + "probability": 0.73193359375 + }, + { + "word": " treat", + "start": 68.56, + "end": 68.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 68.8, + "end": 68.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 68.98, + "end": 69.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 69.08, + "end": 69.16, + "probability": 1.0 + }, + { + "word": " person", + "start": 69.16, + "end": 69.4, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 69.4, + "end": 69.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 69.5, + "end": 69.54, + "probability": 1.0 + }, + { + "word": " process.", + "start": 69.54, + "end": 69.8, + "probability": 1.0 + } + ] + }, + { + "id": 25, + "text": "That's what I do.", + "start": 69.88, + "end": 70.88, + "words": [ + { + "word": " That's", + "start": 69.88, + "end": 70.24, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 70.24, + "end": 70.52, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 70.52, + "end": 70.74, + "probability": 1.0 + }, + { + "word": " do.", + "start": 70.74, + "end": 70.88, + "probability": 1.0 + } + ] + }, + { + "id": 26, + "text": "790-2040.", + "start": 71.18, + "end": 72.2, + "words": [ + { + "word": " 790", + "start": 71.18, + "end": 71.54, + "probability": 0.986328125 + }, + { + "word": "-2040.", + "start": 71.54, + "end": 72.2, + "probability": 0.83935546875 + } + ] + }, + { + "id": 27, + "text": "If you want to be a part of the show, that's 520-790-2040.", + "start": 72.3, + "end": 75.68, + "words": [ + { + "word": " If", + "start": 72.3, + "end": 72.4, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 72.4, + "end": 72.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 72.42, + "end": 72.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 72.52, + "end": 72.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 72.56, + "end": 72.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 72.68, + "end": 72.72, + "probability": 0.97314453125 + }, + { + "word": " part", + "start": 72.72, + "end": 72.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 72.84, + "end": 72.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 72.88, + "end": 72.92, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 72.92, + "end": 73.08, + "probability": 1.0 + }, + { + "word": " that's", + "start": 73.14, + "end": 73.26, + "probability": 0.99951171875 + }, + { + "word": " 520", + "start": 73.26, + "end": 73.58, + "probability": 0.990234375 + }, + { + "word": "-790", + "start": 73.58, + "end": 74.56, + "probability": 0.99609375 + }, + { + "word": "-2040.", + "start": 74.56, + "end": 75.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 28, + "text": "And we'll see what we can do to make all of your technology woes go away.", + "start": 76.2, + "end": 79.62, + "words": [ + { + "word": " And", + "start": 76.2, + "end": 76.56, + "probability": 0.8564453125 + }, + { + "word": " we'll", + "start": 76.56, + "end": 76.7, + "probability": 0.998046875 + }, + { + "word": " see", + "start": 76.7, + "end": 76.78, + "probability": 1.0 + }, + { + "word": " what", + "start": 76.78, + "end": 76.88, + "probability": 1.0 + }, + { + "word": " we", + "start": 76.88, + "end": 76.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 76.98, + "end": 77.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 77.04, + "end": 77.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 77.14, + "end": 77.3, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 77.3, + "end": 77.78, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 77.78, + "end": 78.04, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 78.04, + "end": 78.16, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 78.16, + "end": 78.3, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 78.3, + "end": 78.62, + "probability": 0.9990234375 + }, + { + "word": " woes", + "start": 78.62, + "end": 79.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 79.1, + "end": 79.28, + "probability": 1.0 + }, + { + "word": " away.", + "start": 79.28, + "end": 79.62, + "probability": 1.0 + } + ] + }, + { + "id": 29, + "text": "This is your one hour of free tech support that is for the masses.", + "start": 79.78, + "end": 83.34, + "words": [ + { + "word": " This", + "start": 79.78, + "end": 80.08, + "probability": 0.98583984375 + }, + { + "word": " is", + "start": 80.08, + "end": 80.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 80.22, + "end": 80.36, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 80.36, + "end": 80.5, + "probability": 0.998046875 + }, + { + "word": " hour", + "start": 80.5, + "end": 80.76, + "probability": 0.95458984375 + }, + { + "word": " of", + "start": 80.76, + "end": 80.9, + "probability": 0.359130859375 + }, + { + "word": " free", + "start": 80.9, + "end": 81.08, + "probability": 0.99951171875 + }, + { + "word": " tech", + "start": 81.08, + "end": 81.34, + "probability": 0.9990234375 + }, + { + "word": " support", + "start": 81.34, + "end": 81.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 81.58, + "end": 82.52, + "probability": 0.93359375 + }, + { + "word": " is", + "start": 82.52, + "end": 82.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 82.74, + "end": 82.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 82.94, + "end": 83.08, + "probability": 1.0 + }, + { + "word": " masses.", + "start": 83.08, + "end": 83.34, + "probability": 1.0 + } + ] + }, + { + "id": 30, + "text": "So if you are looking for answers to questions,", + "start": 83.72, + "end": 87.18, + "words": [ + { + "word": " So", + "start": 83.72, + "end": 84.08, + "probability": 0.97900390625 + }, + { + "word": " if", + "start": 84.08, + "end": 84.38, + "probability": 0.76611328125 + }, + { + "word": " you", + "start": 84.38, + "end": 84.58, + "probability": 1.0 + }, + { + "word": " are", + "start": 84.58, + "end": 84.8, + "probability": 0.99951171875 + }, + { + "word": " looking", + "start": 84.8, + "end": 85.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 85.18, + "end": 85.58, + "probability": 1.0 + }, + { + "word": " answers", + "start": 85.58, + "end": 86.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 86.4, + "end": 86.76, + "probability": 1.0 + }, + { + "word": " questions,", + "start": 86.76, + "end": 87.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 31, + "text": "that's what I'm here for.", + "start": 88.0, + "end": 88.78, + "words": [ + { + "word": " that's", + "start": 88.0, + "end": 88.18, + "probability": 0.50732421875 + }, + { + "word": " what", + "start": 88.18, + "end": 88.26, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 88.26, + "end": 88.4, + "probability": 0.9736328125 + }, + { + "word": " here", + "start": 88.4, + "end": 88.54, + "probability": 1.0 + }, + { + "word": " for.", + "start": 88.54, + "end": 88.78, + "probability": 1.0 + } + ] + }, + { + "id": 32, + "text": "So I heard at the office,", + "start": 89.66, + "end": 92.96, + "words": [ + { + "word": " So", + "start": 89.66, + "end": 90.06, + "probability": 0.9482421875 + }, + { + "word": " I", + "start": 90.06, + "end": 90.42, + "probability": 0.76025390625 + }, + { + "word": " heard", + "start": 90.42, + "end": 90.94, + "probability": 0.89208984375 + }, + { + "word": " at", + "start": 90.94, + "end": 91.68, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 91.68, + "end": 91.9, + "probability": 1.0 + }, + { + "word": " office,", + "start": 91.9, + "end": 92.96, + "probability": 0.900390625 + } + ] + }, + { + "id": 33, + "text": "I stopped by the office on the way over here,", + "start": 93.14, + "end": 94.92, + "words": [ + { + "word": " I", + "start": 93.14, + "end": 93.36, + "probability": 0.99658203125 + }, + { + "word": " stopped", + "start": 93.36, + "end": 93.54, + "probability": 0.998046875 + }, + { + "word": " by", + "start": 93.54, + "end": 93.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 93.74, + "end": 93.88, + "probability": 1.0 + }, + { + "word": " office", + "start": 93.88, + "end": 94.14, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 94.14, + "end": 94.32, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 94.32, + "end": 94.4, + "probability": 1.0 + }, + { + "word": " way", + "start": 94.4, + "end": 94.54, + "probability": 1.0 + }, + { + "word": " over", + "start": 94.54, + "end": 94.7, + "probability": 1.0 + }, + { + "word": " here,", + "start": 94.7, + "end": 94.92, + "probability": 1.0 + } + ] + }, + { + "id": 34, + "text": "and I was told that apparently I've been talking about phones too much.", + "start": 95.08, + "end": 99.32, + "words": [ + { + "word": " and", + "start": 95.08, + "end": 95.28, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 95.28, + "end": 95.48, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 95.48, + "end": 95.68, + "probability": 1.0 + }, + { + "word": " told", + "start": 95.68, + "end": 96.44, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 96.44, + "end": 96.92, + "probability": 0.99951171875 + }, + { + "word": " apparently", + "start": 96.92, + "end": 97.46, + "probability": 0.98583984375 + }, + { + "word": " I've", + "start": 97.46, + "end": 97.82, + "probability": 0.990234375 + }, + { + "word": " been", + "start": 97.82, + "end": 97.92, + "probability": 1.0 + }, + { + "word": " talking", + "start": 97.92, + "end": 98.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 98.2, + "end": 98.46, + "probability": 0.99951171875 + }, + { + "word": " phones", + "start": 98.46, + "end": 98.8, + "probability": 0.9990234375 + }, + { + "word": " too", + "start": 98.8, + "end": 99.02, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 99.02, + "end": 99.32, + "probability": 1.0 + } + ] + }, + { + "id": 35, + "text": "So somebody called in and said that I should stop talking about phones.", + "start": 101.32, + "end": 105.22, + "words": [ + { + "word": " So", + "start": 101.32, + "end": 101.72, + "probability": 0.99169921875 + }, + { + "word": " somebody", + "start": 101.72, + "end": 102.12, + "probability": 0.96240234375 + }, + { + "word": " called", + "start": 102.12, + "end": 102.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 102.32, + "end": 102.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 102.6, + "end": 102.82, + "probability": 0.99951171875 + }, + { + "word": " said", + "start": 102.82, + "end": 103.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 103.14, + "end": 103.6, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 103.6, + "end": 103.74, + "probability": 1.0 + }, + { + "word": " should", + "start": 103.74, + "end": 103.9, + "probability": 1.0 + }, + { + "word": " stop", + "start": 103.9, + "end": 104.16, + "probability": 1.0 + }, + { + "word": " talking", + "start": 104.16, + "end": 104.66, + "probability": 1.0 + }, + { + "word": " about", + "start": 104.66, + "end": 104.9, + "probability": 1.0 + }, + { + "word": " phones.", + "start": 104.9, + "end": 105.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 36, + "text": "But it's your show.", + "start": 105.82, + "end": 107.68, + "words": [ + { + "word": " But", + "start": 105.82, + "end": 106.22, + "probability": 0.9970703125 + }, + { + "word": " it's", + "start": 106.22, + "end": 106.62, + "probability": 1.0 + }, + { + "word": " your", + "start": 106.62, + "end": 107.4, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 107.4, + "end": 107.68, + "probability": 1.0 + } + ] + }, + { + "id": 37, + "text": "Well, I know, but it is my show.", + "start": 108.22, + "end": 110.04, + "words": [ + { + "word": " Well,", + "start": 108.22, + "end": 108.62, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 108.66, + "end": 108.8, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 108.8, + "end": 109.0, + "probability": 1.0 + }, + { + "word": " but", + "start": 109.12, + "end": 109.26, + "probability": 0.98876953125 + }, + { + "word": " it", + "start": 109.26, + "end": 109.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 109.5, + "end": 109.64, + "probability": 1.0 + }, + { + "word": " my", + "start": 109.64, + "end": 109.82, + "probability": 1.0 + }, + { + "word": " show.", + "start": 109.82, + "end": 110.04, + "probability": 1.0 + } + ] + }, + { + "id": 38, + "text": "But at the same time, you know,", + "start": 110.16, + "end": 111.18, + "words": [ + { + "word": " But", + "start": 110.16, + "end": 110.3, + "probability": 0.9951171875 + }, + { + "word": " at", + "start": 110.3, + "end": 110.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 110.46, + "end": 110.56, + "probability": 1.0 + }, + { + "word": " same", + "start": 110.56, + "end": 110.72, + "probability": 1.0 + }, + { + "word": " time,", + "start": 110.72, + "end": 111.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 111.0, + "end": 111.08, + "probability": 0.71826171875 + }, + { + "word": " know,", + "start": 111.08, + "end": 111.18, + "probability": 1.0 + } + ] + }, + { + "id": 39, + "text": "I want to make sure that the listeners know that I am listening.", + "start": 111.28, + "end": 114.98, + "words": [ + { + "word": " I", + "start": 111.28, + "end": 111.7, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 111.7, + "end": 111.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 111.86, + "end": 111.92, + "probability": 1.0 + }, + { + "word": " make", + "start": 111.92, + "end": 112.0, + "probability": 1.0 + }, + { + "word": " sure", + "start": 112.0, + "end": 112.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 112.16, + "end": 112.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 112.32, + "end": 112.44, + "probability": 1.0 + }, + { + "word": " listeners", + "start": 112.44, + "end": 113.88, + "probability": 0.99853515625 + }, + { + "word": " know", + "start": 113.88, + "end": 114.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 114.22, + "end": 114.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 114.42, + "end": 114.52, + "probability": 1.0 + }, + { + "word": " am", + "start": 114.52, + "end": 114.64, + "probability": 0.9990234375 + }, + { + "word": " listening.", + "start": 114.64, + "end": 114.98, + "probability": 1.0 + } + ] + }, + { + "id": 40, + "text": "Right?", + "start": 115.52, + "end": 115.92, + "words": [ + { + "word": " Right?", + "start": 115.52, + "end": 115.92, + "probability": 0.97607421875 + } + ] + }, + { + "id": 41, + "text": "So we're not going to talk about it.", + "start": 117.0, + "end": 117.98, + "words": [ + { + "word": " So", + "start": 117.0, + "end": 117.4, + "probability": 0.990234375 + }, + { + "word": " we're", + "start": 117.4, + "end": 117.52, + "probability": 0.99267578125 + }, + { + "word": " not", + "start": 117.52, + "end": 117.56, + "probability": 1.0 + }, + { + "word": " going", + "start": 117.56, + "end": 117.68, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 117.68, + "end": 117.72, + "probability": 1.0 + }, + { + "word": " talk", + "start": 117.72, + "end": 117.86, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 117.86, + "end": 117.98, + "probability": 0.93701171875 + }, + { + "word": " it.", + "start": 117.98, + "end": 117.98, + "probability": 0.407470703125 + } + ] + }, + { + "id": 42, + "text": "We're going to talk about phones today.", + "start": 118.0, + "end": 118.44, + "words": [ + { + "word": " We're", + "start": 118.0, + "end": 118.08, + "probability": 0.1090087890625 + }, + { + "word": " going", + "start": 118.08, + "end": 118.08, + "probability": 0.630859375 + }, + { + "word": " to", + "start": 118.08, + "end": 118.08, + "probability": 0.98974609375 + }, + { + "word": " talk", + "start": 118.08, + "end": 118.08, + "probability": 0.7529296875 + }, + { + "word": " about", + "start": 118.08, + "end": 118.08, + "probability": 0.99072265625 + }, + { + "word": " phones", + "start": 118.08, + "end": 118.2, + "probability": 0.043212890625 + }, + { + "word": " today.", + "start": 118.2, + "end": 118.44, + "probability": 0.95361328125 + } + ] + }, + { + "id": 43, + "text": "Okay.", + "start": 118.64, + "end": 119.04, + "words": [ + { + "word": " Okay.", + "start": 118.64, + "end": 119.04, + "probability": 0.8486328125 + } + ] + }, + { + "id": 44, + "text": "Even though I still have Verizon issues.", + "start": 119.16, + "end": 120.86, + "words": [ + { + "word": " Even", + "start": 119.16, + "end": 119.42, + "probability": 0.9990234375 + }, + { + "word": " though", + "start": 119.42, + "end": 119.54, + "probability": 1.0 + }, + { + "word": " I", + "start": 119.54, + "end": 119.66, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 119.66, + "end": 119.88, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 119.88, + "end": 120.14, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 120.14, + "end": 120.4, + "probability": 0.99609375 + }, + { + "word": " issues.", + "start": 120.4, + "end": 120.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 45, + "text": "That'll be next week then.", + "start": 123.54, + "end": 124.6, + "words": [ + { + "word": " That'll", + "start": 123.54, + "end": 123.94, + "probability": 0.94970703125 + }, + { + "word": " be", + "start": 123.94, + "end": 124.02, + "probability": 1.0 + }, + { + "word": " next", + "start": 124.02, + "end": 124.18, + "probability": 1.0 + }, + { + "word": " week", + "start": 124.18, + "end": 124.42, + "probability": 1.0 + }, + { + "word": " then.", + "start": 124.42, + "end": 124.6, + "probability": 0.73388671875 + } + ] + }, + { + "id": 46, + "text": "I did have Verizon issues, but I switched.", + "start": 125.04, + "end": 129.08, + "words": [ + { + "word": " I", + "start": 125.04, + "end": 125.44, + "probability": 1.0 + }, + { + "word": " did", + "start": 125.44, + "end": 125.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 125.68, + "end": 126.0, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 126.0, + "end": 126.38, + "probability": 1.0 + }, + { + "word": " issues,", + "start": 126.38, + "end": 126.74, + "probability": 1.0 + }, + { + "word": " but", + "start": 126.9, + "end": 127.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 127.06, + "end": 128.0, + "probability": 0.98681640625 + }, + { + "word": " switched.", + "start": 128.0, + "end": 129.08, + "probability": 1.0 + } + ] + }, + { + "id": 47, + "text": "You switched?", + "start": 129.3, + "end": 129.84, + "words": [ + { + "word": " You", + "start": 129.3, + "end": 129.52, + "probability": 1.0 + }, + { + "word": " switched?", + "start": 129.52, + "end": 129.84, + "probability": 1.0 + } + ] + }, + { + "id": 48, + "text": "What did you switch to?", + "start": 130.04, + "end": 130.68, + "words": [ + { + "word": " What", + "start": 130.04, + "end": 130.26, + "probability": 0.97802734375 + }, + { + "word": " did", + "start": 130.26, + "end": 130.34, + "probability": 0.70556640625 + }, + { + "word": " you", + "start": 130.34, + "end": 130.38, + "probability": 1.0 + }, + { + "word": " switch", + "start": 130.38, + "end": 130.56, + "probability": 1.0 + }, + { + "word": " to?", + "start": 130.56, + "end": 130.68, + "probability": 1.0 + } + ] + }, + { + "id": 49, + "text": "T-Mobile.", + "start": 130.82, + "end": 131.22, + "words": [ + { + "word": " T", + "start": 130.82, + "end": 131.02, + "probability": 0.99755859375 + }, + { + "word": "-Mobile.", + "start": 131.02, + "end": 131.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 50, + "text": "T-Mobile?", + "start": 131.38, + "end": 131.78, + "words": [ + { + "word": " T", + "start": 131.38, + "end": 131.64, + "probability": 0.99609375 + }, + { + "word": "-Mobile?", + "start": 131.64, + "end": 131.78, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "Okay.", + "start": 131.86, + "end": 132.02, + "words": [ + { + "word": " Okay.", + "start": 131.86, + "end": 132.02, + "probability": 0.998046875 + } + ] + }, + { + "id": 52, + "text": "All right.", + "start": 132.1, + "end": 132.38, + "words": [ + { + "word": " All", + "start": 132.1, + "end": 132.26, + "probability": 0.9091796875 + }, + { + "word": " right.", + "start": 132.26, + "end": 132.38, + "probability": 1.0 + } + ] + }, + { + "id": 53, + "text": "That's it.", + "start": 132.4, + "end": 132.74, + "words": [ + { + "word": " That's", + "start": 132.4, + "end": 132.64, + "probability": 1.0 + }, + { + "word": " it.", + "start": 132.64, + "end": 132.74, + "probability": 1.0 + } + ] + }, + { + "id": 54, + "text": "That's all we're talking about phones.", + "start": 132.8, + "end": 133.7, + "words": [ + { + "word": " That's", + "start": 132.8, + "end": 132.96, + "probability": 1.0 + }, + { + "word": " all", + "start": 132.96, + "end": 133.0, + "probability": 1.0 + }, + { + "word": " we're", + "start": 133.0, + "end": 133.16, + "probability": 1.0 + }, + { + "word": " talking", + "start": 133.16, + "end": 133.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 133.28, + "end": 133.44, + "probability": 1.0 + }, + { + "word": " phones.", + "start": 133.44, + "end": 133.7, + "probability": 0.95703125 + } + ] + }, + { + "id": 55, + "text": "All right.", + "start": 134.4, + "end": 134.94, + "words": [ + { + "word": " All", + "start": 134.4, + "end": 134.8, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 134.8, + "end": 134.94, + "probability": 1.0 + } + ] + }, + { + "id": 56, + "text": "So now we're going to talk about viruses.", + "start": 134.96, + "end": 137.42, + "words": [ + { + "word": " So", + "start": 134.96, + "end": 135.22, + "probability": 0.91552734375 + }, + { + "word": " now", + "start": 135.22, + "end": 135.72, + "probability": 0.8125 + }, + { + "word": " we're", + "start": 135.72, + "end": 136.68, + "probability": 0.921875 + }, + { + "word": " going", + "start": 136.68, + "end": 136.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 136.78, + "end": 136.82, + "probability": 1.0 + }, + { + "word": " talk", + "start": 136.82, + "end": 136.96, + "probability": 1.0 + }, + { + "word": " about", + "start": 136.96, + "end": 137.1, + "probability": 1.0 + }, + { + "word": " viruses.", + "start": 137.1, + "end": 137.42, + "probability": 1.0 + } + ] + }, + { + "id": 57, + "text": "And we do one of these shows about once a year or so where it's time to explain how the viruses work.", + "start": 138.78, + "end": 146.42, + "words": [ + { + "word": " And", + "start": 138.78, + "end": 139.18, + "probability": 0.93798828125 + }, + { + "word": " we", + "start": 139.18, + "end": 139.58, + "probability": 1.0 + }, + { + "word": " do", + "start": 139.58, + "end": 139.94, + "probability": 1.0 + }, + { + "word": " one", + "start": 139.94, + "end": 140.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 140.32, + "end": 140.42, + "probability": 1.0 + }, + { + "word": " these", + "start": 140.42, + "end": 140.52, + "probability": 1.0 + }, + { + "word": " shows", + "start": 140.52, + "end": 140.78, + "probability": 1.0 + }, + { + "word": " about", + "start": 140.78, + "end": 141.02, + "probability": 1.0 + }, + { + "word": " once", + "start": 141.02, + "end": 141.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 141.46, + "end": 141.6, + "probability": 1.0 + }, + { + "word": " year", + "start": 141.6, + "end": 141.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 141.8, + "end": 141.94, + "probability": 1.0 + }, + { + "word": " so", + "start": 141.94, + "end": 142.14, + "probability": 1.0 + }, + { + "word": " where", + "start": 142.14, + "end": 142.46, + "probability": 0.90673828125 + }, + { + "word": " it's", + "start": 142.46, + "end": 143.98, + "probability": 1.0 + }, + { + "word": " time", + "start": 143.98, + "end": 144.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 144.16, + "end": 144.38, + "probability": 1.0 + }, + { + "word": " explain", + "start": 144.38, + "end": 144.82, + "probability": 0.99658203125 + }, + { + "word": " how", + "start": 144.82, + "end": 145.6, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 145.6, + "end": 145.82, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 145.82, + "end": 146.12, + "probability": 0.99609375 + }, + { + "word": " work.", + "start": 146.12, + "end": 146.42, + "probability": 1.0 + } + ] + }, + { + "id": 58, + "text": "Okay.", + "start": 146.5, + "end": 146.62, + "words": [ + { + "word": " Okay.", + "start": 146.5, + "end": 146.62, + "probability": 0.004299163818359375 + } + ] + }, + { + "id": 59, + "text": "Okay.", + "start": 146.9, + "end": 147.3, + "words": [ + { + "word": " Okay.", + "start": 146.9, + "end": 147.3, + "probability": 0.06842041015625 + } + ] + }, + { + "id": 60, + "text": "Okay.", + "start": 147.58, + "end": 147.98, + "words": [ + { + "word": " Okay.", + "start": 147.58, + "end": 147.98, + "probability": 0.58544921875 + } + ] + }, + { + "id": 61, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 62, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 63, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 64, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 65, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 66, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 67, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 68, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 69, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 70, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 71, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 72, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 73, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 74, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 75, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 76, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 77, + "text": "", + "start": 147.98, + "end": 147.98, + "words": [] + }, + { + "id": 78, + "text": "Specifically what the motivation is because every so often I hear, and this is sort of a quote,", + "start": 148.0, + "end": 153.6, + "words": [ + { + "word": " Specifically", + "start": 148.0, + "end": 148.32, + "probability": 0.220703125 + }, + { + "word": " what", + "start": 148.32, + "end": 148.56, + "probability": 0.56640625 + }, + { + "word": " the", + "start": 148.56, + "end": 148.68, + "probability": 0.99951171875 + }, + { + "word": " motivation", + "start": 148.68, + "end": 149.0, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 149.0, + "end": 149.36, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 149.36, + "end": 149.62, + "probability": 0.30615234375 + }, + { + "word": " every", + "start": 149.62, + "end": 150.28, + "probability": 0.9912109375 + }, + { + "word": " so", + "start": 150.28, + "end": 150.48, + "probability": 0.9990234375 + }, + { + "word": " often", + "start": 150.48, + "end": 150.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 150.86, + "end": 151.0, + "probability": 0.96044921875 + }, + { + "word": " hear,", + "start": 151.0, + "end": 151.26, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 151.42, + "end": 152.74, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 152.74, + "end": 153.0, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 153.0, + "end": 153.1, + "probability": 1.0 + }, + { + "word": " sort", + "start": 153.1, + "end": 153.26, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 153.26, + "end": 153.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 153.36, + "end": 153.38, + "probability": 1.0 + }, + { + "word": " quote,", + "start": 153.38, + "end": 153.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 79, + "text": "really, why do these people do this?", + "start": 156.3, + "end": 158.02, + "words": [ + { + "word": " really,", + "start": 156.3, + "end": 156.8, + "probability": 0.8798828125 + }, + { + "word": " why", + "start": 156.98, + "end": 157.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 157.1, + "end": 157.22, + "probability": 1.0 + }, + { + "word": " these", + "start": 157.22, + "end": 157.34, + "probability": 1.0 + }, + { + "word": " people", + "start": 157.34, + "end": 157.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 157.56, + "end": 157.72, + "probability": 1.0 + }, + { + "word": " this?", + "start": 157.72, + "end": 158.02, + "probability": 1.0 + } + ] + }, + { + "id": 80, + "text": "Are they just getting their jollies off is what I heard yesterday by writing these viruses.", + "start": 158.1, + "end": 164.86, + "words": [ + { + "word": " Are", + "start": 158.1, + "end": 158.42, + "probability": 0.89697265625 + }, + { + "word": " they", + "start": 158.42, + "end": 158.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 158.56, + "end": 159.64, + "probability": 1.0 + }, + { + "word": " getting", + "start": 159.64, + "end": 159.94, + "probability": 1.0 + }, + { + "word": " their", + "start": 159.94, + "end": 160.22, + "probability": 1.0 + }, + { + "word": " jollies", + "start": 160.22, + "end": 161.14, + "probability": 0.99755859375 + }, + { + "word": " off", + "start": 161.14, + "end": 161.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 161.32, + "end": 161.62, + "probability": 0.650390625 + }, + { + "word": " what", + "start": 161.62, + "end": 161.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 161.84, + "end": 161.96, + "probability": 1.0 + }, + { + "word": " heard", + "start": 161.96, + "end": 162.14, + "probability": 1.0 + }, + { + "word": " yesterday", + "start": 162.14, + "end": 162.52, + "probability": 1.0 + }, + { + "word": " by", + "start": 162.52, + "end": 163.38, + "probability": 0.71142578125 + }, + { + "word": " writing", + "start": 163.38, + "end": 164.26, + "probability": 0.98681640625 + }, + { + "word": " these", + "start": 164.26, + "end": 164.52, + "probability": 1.0 + }, + { + "word": " viruses.", + "start": 164.52, + "end": 164.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 81, + "text": "And I will tell you right now that there may be some jolly involved, but not much at all.", + "start": 165.64, + "end": 171.94, + "words": [ + { + "word": " And", + "start": 165.64, + "end": 165.98, + "probability": 0.8837890625 + }, + { + "word": " I", + "start": 165.98, + "end": 166.16, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 166.16, + "end": 166.3, + "probability": 1.0 + }, + { + "word": " tell", + "start": 166.3, + "end": 166.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 166.46, + "end": 166.6, + "probability": 1.0 + }, + { + "word": " right", + "start": 166.6, + "end": 166.72, + "probability": 1.0 + }, + { + "word": " now", + "start": 166.72, + "end": 166.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 166.96, + "end": 167.2, + "probability": 1.0 + }, + { + "word": " there", + "start": 167.2, + "end": 167.34, + "probability": 1.0 + }, + { + "word": " may", + "start": 167.34, + "end": 167.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 167.48, + "end": 167.72, + "probability": 1.0 + }, + { + "word": " some", + "start": 167.72, + "end": 167.94, + "probability": 1.0 + }, + { + "word": " jolly", + "start": 167.94, + "end": 168.44, + "probability": 0.99755859375 + }, + { + "word": " involved,", + "start": 168.44, + "end": 168.7, + "probability": 1.0 + }, + { + "word": " but", + "start": 169.08, + "end": 169.88, + "probability": 1.0 + }, + { + "word": " not", + "start": 169.88, + "end": 170.82, + "probability": 1.0 + }, + { + "word": " much", + "start": 170.82, + "end": 171.2, + "probability": 1.0 + }, + { + "word": " at", + "start": 171.2, + "end": 171.64, + "probability": 0.99951171875 + }, + { + "word": " all.", + "start": 171.64, + "end": 171.94, + "probability": 1.0 + } + ] + }, + { + "id": 82, + "text": "Most of it's money.", + "start": 172.24, + "end": 173.3, + "words": [ + { + "word": " Most", + "start": 172.24, + "end": 172.74, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 172.74, + "end": 172.92, + "probability": 1.0 + }, + { + "word": " it's", + "start": 172.92, + "end": 173.04, + "probability": 0.9833984375 + }, + { + "word": " money.", + "start": 173.04, + "end": 173.3, + "probability": 1.0 + } + ] + }, + { + "id": 83, + "text": "Lots and lots of money.", + "start": 174.16, + "end": 175.82, + "words": [ + { + "word": " Lots", + "start": 174.16, + "end": 174.66, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 174.66, + "end": 174.86, + "probability": 1.0 + }, + { + "word": " lots", + "start": 174.86, + "end": 175.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 175.2, + "end": 175.46, + "probability": 1.0 + }, + { + "word": " money.", + "start": 175.46, + "end": 175.82, + "probability": 1.0 + } + ] + }, + { + "id": 84, + "text": "Ridiculous amounts of money is really what it comes down to.", + "start": 176.76, + "end": 179.08, + "words": [ + { + "word": " Ridiculous", + "start": 176.76, + "end": 177.2, + "probability": 0.958984375 + }, + { + "word": " amounts", + "start": 177.2, + "end": 177.5, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 177.5, + "end": 177.7, + "probability": 1.0 + }, + { + "word": " money", + "start": 177.7, + "end": 177.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 177.9, + "end": 178.06, + "probability": 0.9921875 + }, + { + "word": " really", + "start": 178.06, + "end": 178.2, + "probability": 0.99853515625 + }, + { + "word": " what", + "start": 178.2, + "end": 178.38, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 178.38, + "end": 178.48, + "probability": 1.0 + }, + { + "word": " comes", + "start": 178.48, + "end": 178.64, + "probability": 1.0 + }, + { + "word": " down", + "start": 178.64, + "end": 178.86, + "probability": 1.0 + }, + { + "word": " to.", + "start": 178.86, + "end": 179.08, + "probability": 1.0 + } + ] + }, + { + "id": 85, + "text": "It's really, yeah, there's a lot of dollar signs.", + "start": 181.26, + "end": 185.46, + "words": [ + { + "word": " It's", + "start": 181.26, + "end": 181.7, + "probability": 0.85400390625 + }, + { + "word": " really,", + "start": 181.7, + "end": 182.14, + "probability": 0.9462890625 + }, + { + "word": " yeah,", + "start": 182.86, + "end": 184.06, + "probability": 0.327880859375 + }, + { + "word": " there's", + "start": 184.06, + "end": 184.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 184.92, + "end": 184.94, + "probability": 1.0 + }, + { + "word": " lot", + "start": 184.94, + "end": 185.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 185.04, + "end": 185.1, + "probability": 1.0 + }, + { + "word": " dollar", + "start": 185.1, + "end": 185.26, + "probability": 0.99951171875 + }, + { + "word": " signs.", + "start": 185.26, + "end": 185.46, + "probability": 1.0 + } + ] + }, + { + "id": 86, + "text": "How does that work?", + "start": 186.32, + "end": 187.16, + "words": [ + { + "word": " How", + "start": 186.32, + "end": 186.76, + "probability": 0.9990234375 + }, + { + "word": " does", + "start": 186.76, + "end": 186.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 186.84, + "end": 186.98, + "probability": 1.0 + }, + { + "word": " work?", + "start": 186.98, + "end": 187.16, + "probability": 1.0 + } + ] + }, + { + "id": 87, + "text": "All right.", + "start": 187.32, + "end": 187.46, + "words": [ + { + "word": " All", + "start": 187.32, + "end": 187.4, + "probability": 0.81884765625 + }, + { + "word": " right.", + "start": 187.4, + "end": 187.46, + "probability": 1.0 + } + ] + }, + { + "id": 88, + "text": "So if you, most of the viruses these days tend to be the crypto locker infections.", + "start": 187.5, + "end": 193.34, + "words": [ + { + "word": " So", + "start": 187.5, + "end": 187.64, + "probability": 0.84619140625 + }, + { + "word": " if", + "start": 187.64, + "end": 187.78, + "probability": 0.58349609375 + }, + { + "word": " you,", + "start": 187.78, + "end": 188.0, + "probability": 1.0 + }, + { + "word": " most", + "start": 188.18, + "end": 189.34, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 189.34, + "end": 190.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 190.8, + "end": 190.86, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 190.86, + "end": 191.12, + "probability": 1.0 + }, + { + "word": " these", + "start": 191.12, + "end": 191.36, + "probability": 1.0 + }, + { + "word": " days", + "start": 191.36, + "end": 191.58, + "probability": 1.0 + }, + { + "word": " tend", + "start": 191.58, + "end": 191.8, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 191.8, + "end": 191.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 191.96, + "end": 192.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 192.08, + "end": 192.2, + "probability": 1.0 + }, + { + "word": " crypto", + "start": 192.2, + "end": 192.42, + "probability": 0.293212890625 + }, + { + "word": " locker", + "start": 192.42, + "end": 192.74, + "probability": 0.9267578125 + }, + { + "word": " infections.", + "start": 192.74, + "end": 193.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 89, + "text": "They're the ones that are, you know, they take your stuff, they take your information and encrypt it while you're not looking.", + "start": 194.48, + "end": 204.82, + "words": [ + { + "word": " They're", + "start": 194.48, + "end": 194.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 194.92, + "end": 195.02, + "probability": 1.0 + }, + { + "word": " ones", + "start": 195.02, + "end": 195.82, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 195.82, + "end": 196.14, + "probability": 1.0 + }, + { + "word": " are,", + "start": 196.14, + "end": 196.32, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 196.66, + "end": 197.66, + "probability": 0.916015625 + }, + { + "word": " know,", + "start": 197.66, + "end": 197.78, + "probability": 1.0 + }, + { + "word": " they", + "start": 197.82, + "end": 197.92, + "probability": 1.0 + }, + { + "word": " take", + "start": 197.92, + "end": 198.2, + "probability": 1.0 + }, + { + "word": " your", + "start": 198.2, + "end": 198.48, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 198.48, + "end": 199.02, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 199.3, + "end": 200.06, + "probability": 1.0 + }, + { + "word": " take", + "start": 200.06, + "end": 200.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 200.3, + "end": 201.0, + "probability": 1.0 + }, + { + "word": " information", + "start": 201.0, + "end": 201.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 201.48, + "end": 202.18, + "probability": 0.99560546875 + }, + { + "word": " encrypt", + "start": 202.18, + "end": 202.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 202.74, + "end": 202.9, + "probability": 1.0 + }, + { + "word": " while", + "start": 202.9, + "end": 204.06, + "probability": 0.98681640625 + }, + { + "word": " you're", + "start": 204.06, + "end": 204.26, + "probability": 1.0 + }, + { + "word": " not", + "start": 204.26, + "end": 204.44, + "probability": 1.0 + }, + { + "word": " looking.", + "start": 204.44, + "end": 204.82, + "probability": 1.0 + } + ] + }, + { + "id": 90, + "text": "Right.", + "start": 205.16, + "end": 205.6, + "words": [ + { + "word": " Right.", + "start": 205.16, + "end": 205.6, + "probability": 0.07366943359375 + } + ] + }, + { + "id": 91, + "text": "Right.", + "start": 205.6, + "end": 205.8, + "words": [ + { + "word": " Right.", + "start": 205.6, + "end": 205.8, + "probability": 0.20166015625 + } + ] + }, + { + "id": 92, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 93, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 94, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 95, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 96, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 97, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 98, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 99, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 100, + "text": "", + "start": 205.8, + "end": 205.8, + "words": [] + }, + { + "id": 101, + "text": "And, uh, you know, once, once you get that infection, it takes all of your documents, your pictures, and it, it makes it so you can't view it anymore.", + "start": 205.82, + "end": 214.52, + "words": [ + { + "word": " And,", + "start": 205.82, + "end": 205.9, + "probability": 0.943359375 + }, + { + "word": " uh,", + "start": 205.9, + "end": 206.0, + "probability": 0.0301971435546875 + }, + { + "word": " you", + "start": 206.34, + "end": 206.58, + "probability": 1.0 + }, + { + "word": " know,", + "start": 206.58, + "end": 206.74, + "probability": 1.0 + }, + { + "word": " once,", + "start": 206.76, + "end": 207.06, + "probability": 1.0 + }, + { + "word": " once", + "start": 207.14, + "end": 207.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 207.74, + "end": 207.96, + "probability": 1.0 + }, + { + "word": " get", + "start": 207.96, + "end": 208.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 208.14, + "end": 208.62, + "probability": 1.0 + }, + { + "word": " infection,", + "start": 208.62, + "end": 209.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 209.2, + "end": 209.36, + "probability": 1.0 + }, + { + "word": " takes", + "start": 209.36, + "end": 209.56, + "probability": 0.85546875 + }, + { + "word": " all", + "start": 209.56, + "end": 209.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 209.84, + "end": 209.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 209.94, + "end": 210.04, + "probability": 1.0 + }, + { + "word": " documents,", + "start": 210.04, + "end": 210.38, + "probability": 1.0 + }, + { + "word": " your", + "start": 210.46, + "end": 210.58, + "probability": 0.99951171875 + }, + { + "word": " pictures,", + "start": 210.58, + "end": 210.92, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 210.98, + "end": 211.7, + "probability": 1.0 + }, + { + "word": " it,", + "start": 211.7, + "end": 212.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 212.1, + "end": 212.32, + "probability": 1.0 + }, + { + "word": " makes", + "start": 212.32, + "end": 213.58, + "probability": 0.7265625 + }, + { + "word": " it", + "start": 213.58, + "end": 213.76, + "probability": 0.9755859375 + }, + { + "word": " so", + "start": 213.76, + "end": 213.84, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 213.84, + "end": 213.92, + "probability": 1.0 + }, + { + "word": " can't", + "start": 213.92, + "end": 214.1, + "probability": 1.0 + }, + { + "word": " view", + "start": 214.1, + "end": 214.2, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 214.2, + "end": 214.28, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 214.28, + "end": 214.52, + "probability": 1.0 + } + ] + }, + { + "id": 102, + "text": "And then when it gets done with all of that, it's pops up a message on your screen and says, Hey, you want your stuff back?", + "start": 214.7, + "end": 220.54, + "words": [ + { + "word": " And", + "start": 214.7, + "end": 214.88, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 214.88, + "end": 215.0, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 215.0, + "end": 215.12, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 215.12, + "end": 215.2, + "probability": 1.0 + }, + { + "word": " gets", + "start": 215.2, + "end": 215.34, + "probability": 1.0 + }, + { + "word": " done", + "start": 215.34, + "end": 215.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 215.54, + "end": 215.8, + "probability": 1.0 + }, + { + "word": " all", + "start": 215.8, + "end": 216.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 216.0, + "end": 216.18, + "probability": 1.0 + }, + { + "word": " that,", + "start": 216.18, + "end": 216.44, + "probability": 1.0 + }, + { + "word": " it's", + "start": 216.58, + "end": 217.4, + "probability": 0.9287109375 + }, + { + "word": " pops", + "start": 217.4, + "end": 217.68, + "probability": 1.0 + }, + { + "word": " up", + "start": 217.68, + "end": 217.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 217.88, + "end": 218.0, + "probability": 1.0 + }, + { + "word": " message", + "start": 218.0, + "end": 218.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 218.2, + "end": 218.34, + "probability": 1.0 + }, + { + "word": " your", + "start": 218.34, + "end": 218.46, + "probability": 1.0 + }, + { + "word": " screen", + "start": 218.46, + "end": 218.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 218.7, + "end": 218.82, + "probability": 0.99951171875 + }, + { + "word": " says,", + "start": 218.82, + "end": 218.94, + "probability": 0.77392578125 + }, + { + "word": " Hey,", + "start": 219.16, + "end": 219.34, + "probability": 0.96875 + }, + { + "word": " you", + "start": 219.44, + "end": 219.8, + "probability": 1.0 + }, + { + "word": " want", + "start": 219.8, + "end": 219.96, + "probability": 1.0 + }, + { + "word": " your", + "start": 219.96, + "end": 220.08, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 220.08, + "end": 220.28, + "probability": 1.0 + }, + { + "word": " back?", + "start": 220.28, + "end": 220.54, + "probability": 1.0 + } + ] + }, + { + "id": 103, + "text": "That'll be two bitcoins, please.", + "start": 221.38, + "end": 223.04, + "words": [ + { + "word": " That'll", + "start": 221.38, + "end": 221.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 221.74, + "end": 221.86, + "probability": 1.0 + }, + { + "word": " two", + "start": 221.86, + "end": 222.06, + "probability": 1.0 + }, + { + "word": " bitcoins,", + "start": 222.06, + "end": 222.64, + "probability": 0.7373046875 + }, + { + "word": " please.", + "start": 222.7, + "end": 223.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 104, + "text": "Or, uh, they'll have you get on the Walgreens and get a prepaid visa card where you can pay them with that.", + "start": 224.03999999999996, + "end": 230.9, + "words": [ + { + "word": " Or,", + "start": 224.03999999999996, + "end": 224.39999999999998, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 224.39999999999998, + "end": 224.76, + "probability": 0.99951171875 + }, + { + "word": " they'll", + "start": 225.0, + "end": 225.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 225.5, + "end": 225.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 225.64, + "end": 225.74, + "probability": 1.0 + }, + { + "word": " get", + "start": 225.74, + "end": 225.84, + "probability": 0.98095703125 + }, + { + "word": " on", + "start": 225.84, + "end": 226.0, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 226.0, + "end": 226.08, + "probability": 0.99853515625 + }, + { + "word": " Walgreens", + "start": 226.08, + "end": 226.44, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 226.44, + "end": 226.6, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 226.6, + "end": 226.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 226.8, + "end": 226.96, + "probability": 1.0 + }, + { + "word": " prepaid", + "start": 226.96, + "end": 227.88, + "probability": 0.9912109375 + }, + { + "word": " visa", + "start": 227.88, + "end": 228.4, + "probability": 0.76318359375 + }, + { + "word": " card", + "start": 228.4, + "end": 228.76, + "probability": 1.0 + }, + { + "word": " where", + "start": 228.76, + "end": 229.76, + "probability": 0.9912109375 + }, + { + "word": " you", + "start": 229.76, + "end": 229.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 229.94, + "end": 230.12, + "probability": 1.0 + }, + { + "word": " pay", + "start": 230.12, + "end": 230.36, + "probability": 1.0 + }, + { + "word": " them", + "start": 230.36, + "end": 230.52, + "probability": 1.0 + }, + { + "word": " with", + "start": 230.52, + "end": 230.68, + "probability": 1.0 + }, + { + "word": " that.", + "start": 230.68, + "end": 230.9, + "probability": 1.0 + } + ] + }, + { + "id": 105, + "text": "And generally it's not cheap.", + "start": 232.06, + "end": 233.58, + "words": [ + { + "word": " And", + "start": 232.06, + "end": 232.42000000000002, + "probability": 1.0 + }, + { + "word": " generally", + "start": 232.42000000000002, + "end": 232.78, + "probability": 1.0 + }, + { + "word": " it's", + "start": 232.78, + "end": 233.1, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 233.1, + "end": 233.26, + "probability": 1.0 + }, + { + "word": " cheap.", + "start": 233.26, + "end": 233.58, + "probability": 1.0 + } + ] + }, + { + "id": 106, + "text": "I would say on average, it's around.", + "start": 233.8, + "end": 235.7, + "words": [ + { + "word": " I", + "start": 233.8, + "end": 234.16, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 234.16, + "end": 234.3, + "probability": 1.0 + }, + { + "word": " say", + "start": 234.3, + "end": 234.42, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 234.42, + "end": 234.6, + "probability": 1.0 + }, + { + "word": " average,", + "start": 234.6, + "end": 234.96, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 235.08, + "end": 235.48, + "probability": 1.0 + }, + { + "word": " around.", + "start": 235.48, + "end": 235.7, + "probability": 0.70361328125 + } + ] + }, + { + "id": 107, + "text": "$800 to get your data back.", + "start": 235.82, + "end": 238.16, + "words": [ + { + "word": " $800", + "start": 235.82, + "end": 236.42, + "probability": 0.5244140625 + }, + { + "word": " to", + "start": 236.42, + "end": 237.02, + "probability": 0.98583984375 + }, + { + "word": " get", + "start": 237.02, + "end": 237.6, + "probability": 1.0 + }, + { + "word": " your", + "start": 237.6, + "end": 237.74, + "probability": 1.0 + }, + { + "word": " data", + "start": 237.74, + "end": 237.94, + "probability": 1.0 + }, + { + "word": " back.", + "start": 237.94, + "end": 238.16, + "probability": 1.0 + } + ] + }, + { + "id": 108, + "text": "And yeah, that's no joke.", + "start": 241.02, + "end": 242.5, + "words": [ + { + "word": " And", + "start": 241.02, + "end": 241.46, + "probability": 0.7900390625 + }, + { + "word": " yeah,", + "start": 241.46, + "end": 241.9, + "probability": 0.5732421875 + }, + { + "word": " that's", + "start": 241.96, + "end": 242.1, + "probability": 0.99609375 + }, + { + "word": " no", + "start": 242.1, + "end": 242.22, + "probability": 0.99951171875 + }, + { + "word": " joke.", + "start": 242.22, + "end": 242.5, + "probability": 1.0 + } + ] + }, + { + "id": 109, + "text": "Now to be, to credit these guys, they tend to honor their word business wise.", + "start": 244.16, + "end": 249.16, + "words": [ + { + "word": " Now", + "start": 244.16, + "end": 244.6, + "probability": 0.95361328125 + }, + { + "word": " to", + "start": 244.6, + "end": 244.84, + "probability": 0.53125 + }, + { + "word": " be,", + "start": 244.84, + "end": 245.0, + "probability": 0.48291015625 + }, + { + "word": " to", + "start": 245.02, + "end": 245.18, + "probability": 0.99951171875 + }, + { + "word": " credit", + "start": 245.18, + "end": 245.44, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 245.44, + "end": 245.68, + "probability": 0.9990234375 + }, + { + "word": " guys,", + "start": 245.68, + "end": 246.04, + "probability": 1.0 + }, + { + "word": " they", + "start": 246.12, + "end": 246.8, + "probability": 0.99951171875 + }, + { + "word": " tend", + "start": 246.8, + "end": 247.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 247.1, + "end": 247.36, + "probability": 1.0 + }, + { + "word": " honor", + "start": 247.36, + "end": 247.8, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 247.8, + "end": 248.08, + "probability": 1.0 + }, + { + "word": " word", + "start": 248.08, + "end": 248.4, + "probability": 1.0 + }, + { + "word": " business", + "start": 248.4, + "end": 248.74, + "probability": 0.99755859375 + }, + { + "word": " wise.", + "start": 248.74, + "end": 249.16, + "probability": 0.740234375 + } + ] + }, + { + "id": 110, + "text": "Right.", + "start": 249.32, + "end": 249.76, + "words": [ + { + "word": " Right.", + "start": 249.32, + "end": 249.76, + "probability": 0.865234375 + } + ] + }, + { + "id": 111, + "text": "So if you happen to get the crypto locker infection and all of your data gets, gets taken away from you and you don't have any backups, you know, that every week we go, you need a backup.", + "start": 249.86, + "end": 260.48, + "words": [ + { + "word": " So", + "start": 249.86, + "end": 250.0, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 250.0, + "end": 250.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 250.22, + "end": 250.4, + "probability": 1.0 + }, + { + "word": " happen", + "start": 250.4, + "end": 250.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 250.66, + "end": 250.82, + "probability": 1.0 + }, + { + "word": " get", + "start": 250.82, + "end": 250.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 250.96, + "end": 251.14, + "probability": 0.99951171875 + }, + { + "word": " crypto", + "start": 251.14, + "end": 251.36, + "probability": 0.6396484375 + }, + { + "word": " locker", + "start": 251.36, + "end": 251.68, + "probability": 0.9794921875 + }, + { + "word": " infection", + "start": 251.68, + "end": 251.92, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 251.92, + "end": 252.94, + "probability": 0.994140625 + }, + { + "word": " all", + "start": 252.94, + "end": 253.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 253.24, + "end": 253.4, + "probability": 1.0 + }, + { + "word": " your", + "start": 253.4, + "end": 253.54, + "probability": 1.0 + }, + { + "word": " data", + "start": 253.54, + "end": 253.84, + "probability": 0.99951171875 + }, + { + "word": " gets,", + "start": 253.84, + "end": 254.26, + "probability": 0.99755859375 + }, + { + "word": " gets", + "start": 254.26, + "end": 254.98, + "probability": 0.83935546875 + }, + { + "word": " taken", + "start": 254.98, + "end": 255.28, + "probability": 1.0 + }, + { + "word": " away", + "start": 255.28, + "end": 255.5, + "probability": 1.0 + }, + { + "word": " from", + "start": 255.5, + "end": 255.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 255.74, + "end": 256.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 256.0, + "end": 256.34, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 256.34, + "end": 256.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 256.44, + "end": 256.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 256.62, + "end": 256.74, + "probability": 1.0 + }, + { + "word": " any", + "start": 256.74, + "end": 256.84, + "probability": 0.99853515625 + }, + { + "word": " backups,", + "start": 256.84, + "end": 257.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 257.42, + "end": 257.54, + "probability": 0.93115234375 + }, + { + "word": " know,", + "start": 257.54, + "end": 258.12, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 258.16, + "end": 258.28, + "probability": 0.99462890625 + }, + { + "word": " every", + "start": 258.28, + "end": 258.5, + "probability": 1.0 + }, + { + "word": " week", + "start": 258.5, + "end": 258.84, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 258.84, + "end": 259.02, + "probability": 0.99853515625 + }, + { + "word": " go,", + "start": 259.02, + "end": 259.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 259.34, + "end": 259.94, + "probability": 1.0 + }, + { + "word": " need", + "start": 259.94, + "end": 260.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 260.12, + "end": 260.22, + "probability": 0.92626953125 + }, + { + "word": " backup.", + "start": 260.22, + "end": 260.48, + "probability": 1.0 + } + ] + }, + { + "id": 112, + "text": "You need to have a backup.", + "start": 260.64, + "end": 261.66, + "words": [ + { + "word": " You", + "start": 260.64, + "end": 260.94, + "probability": 1.0 + }, + { + "word": " need", + "start": 260.94, + "end": 261.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 261.1, + "end": 261.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 261.18, + "end": 261.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 261.3, + "end": 261.4, + "probability": 1.0 + }, + { + "word": " backup.", + "start": 261.4, + "end": 261.66, + "probability": 1.0 + } + ] + }, + { + "id": 113, + "text": "You must have backups.", + "start": 261.76, + "end": 262.76, + "words": [ + { + "word": " You", + "start": 261.76, + "end": 261.88, + "probability": 1.0 + }, + { + "word": " must", + "start": 261.88, + "end": 262.12, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 262.12, + "end": 262.34, + "probability": 1.0 + }, + { + "word": " backups.", + "start": 262.34, + "end": 262.76, + "probability": 1.0 + } + ] + }, + { + "id": 114, + "text": "Uh, so if you don't have a backup.", + "start": 263.62, + "end": 265.24, + "words": [ + { + "word": " Uh,", + "start": 263.62, + "end": 264.06, + "probability": 0.271240234375 + }, + { + "word": " so", + "start": 264.22, + "end": 264.44, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 264.44, + "end": 264.58, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 264.58, + "end": 264.68, + "probability": 1.0 + }, + { + "word": " don't", + "start": 264.68, + "end": 264.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 264.78, + "end": 264.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 264.84, + "end": 264.98, + "probability": 1.0 + }, + { + "word": " backup.", + "start": 264.98, + "end": 265.24, + "probability": 1.0 + } + ] + }, + { + "id": 115, + "text": "And then you're forced to pay the ransom.", + "start": 265.82, + "end": 267.74, + "words": [ + { + "word": " And", + "start": 265.82, + "end": 265.96, + "probability": 0.123046875 + }, + { + "word": " then", + "start": 265.96, + "end": 266.08, + "probability": 0.9931640625 + }, + { + "word": " you're", + "start": 266.08, + "end": 266.32, + "probability": 0.99609375 + }, + { + "word": " forced", + "start": 266.32, + "end": 266.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 266.64, + "end": 266.86, + "probability": 0.99853515625 + }, + { + "word": " pay", + "start": 266.86, + "end": 267.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 267.16, + "end": 267.4, + "probability": 0.9990234375 + }, + { + "word": " ransom.", + "start": 267.4, + "end": 267.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 116, + "text": "Then, uh, I would say that most of the time, uh, with the experience that we've had with it, where we've directly paid people to get other people's data back, uh, about, um, I don't know, nine out of 10 times we get the data back.", + "start": 268.44, + "end": 286.5, + "words": [ + { + "word": " Then,", + "start": 268.44, + "end": 268.92, + "probability": 0.90087890625 + }, + { + "word": " uh,", + "start": 268.92, + "end": 269.4, + "probability": 0.51904296875 + }, + { + "word": " I", + "start": 269.62, + "end": 270.6, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 270.6, + "end": 270.82, + "probability": 1.0 + }, + { + "word": " say", + "start": 270.82, + "end": 271.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 271.02, + "end": 271.26, + "probability": 1.0 + }, + { + "word": " most", + "start": 271.26, + "end": 271.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 271.72, + "end": 271.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 271.98, + "end": 272.06, + "probability": 1.0 + }, + { + "word": " time,", + "start": 272.06, + "end": 272.34, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 272.42, + "end": 273.08, + "probability": 0.9931640625 + }, + { + "word": " with", + "start": 273.26, + "end": 273.82, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 273.82, + "end": 274.06, + "probability": 0.99951171875 + }, + { + "word": " experience", + "start": 274.06, + "end": 274.48, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 274.48, + "end": 274.68, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 274.68, + "end": 274.94, + "probability": 1.0 + }, + { + "word": " had", + "start": 274.94, + "end": 275.12, + "probability": 1.0 + }, + { + "word": " with", + "start": 275.12, + "end": 275.28, + "probability": 0.9990234375 + }, + { + "word": " it,", + "start": 275.28, + "end": 275.42, + "probability": 0.99853515625 + }, + { + "word": " where", + "start": 275.46, + "end": 275.52, + "probability": 0.99853515625 + }, + { + "word": " we've", + "start": 275.52, + "end": 275.74, + "probability": 1.0 + }, + { + "word": " directly", + "start": 275.74, + "end": 276.1, + "probability": 0.99951171875 + }, + { + "word": " paid", + "start": 276.1, + "end": 276.6, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 276.6, + "end": 276.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 276.96, + "end": 277.14, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 277.14, + "end": 277.28, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 277.28, + "end": 277.56, + "probability": 0.99951171875 + }, + { + "word": " people's", + "start": 277.56, + "end": 277.96, + "probability": 1.0 + }, + { + "word": " data", + "start": 277.96, + "end": 278.08, + "probability": 0.99951171875 + }, + { + "word": " back,", + "start": 278.08, + "end": 278.34, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 278.52, + "end": 279.76, + "probability": 0.99853515625 + }, + { + "word": " about,", + "start": 279.98, + "end": 280.88, + "probability": 0.98681640625 + }, + { + "word": " um,", + "start": 281.14, + "end": 281.7, + "probability": 0.50390625 + }, + { + "word": " I", + "start": 281.8, + "end": 281.98, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 281.98, + "end": 282.14, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 282.14, + "end": 282.24, + "probability": 1.0 + }, + { + "word": " nine", + "start": 282.28, + "end": 283.34, + "probability": 0.9892578125 + }, + { + "word": " out", + "start": 283.34, + "end": 283.6, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 283.6, + "end": 283.68, + "probability": 1.0 + }, + { + "word": " 10", + "start": 283.68, + "end": 283.82, + "probability": 0.9951171875 + }, + { + "word": " times", + "start": 283.82, + "end": 284.68, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 284.68, + "end": 285.86, + "probability": 0.904296875 + }, + { + "word": " get", + "start": 285.86, + "end": 286.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 286.0, + "end": 286.1, + "probability": 0.99951171875 + }, + { + "word": " data", + "start": 286.1, + "end": 286.22, + "probability": 0.99951171875 + }, + { + "word": " back.", + "start": 286.22, + "end": 286.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 117, + "text": "It's not bad.", + "start": 287.36, + "end": 288.5, + "words": [ + { + "word": " It's", + "start": 287.36, + "end": 287.84, + "probability": 0.8720703125 + }, + { + "word": " not", + "start": 287.84, + "end": 287.94, + "probability": 0.83056640625 + }, + { + "word": " bad.", + "start": 287.94, + "end": 288.5, + "probability": 0.99609375 + } + ] + }, + { + "id": 118, + "text": "It's pretty good.", + "start": 288.66, + "end": 289.34, + "words": [ + { + "word": " It's", + "start": 288.66, + "end": 289.02, + "probability": 0.9990234375 + }, + { + "word": " pretty", + "start": 289.02, + "end": 289.16, + "probability": 1.0 + }, + { + "word": " good.", + "start": 289.16, + "end": 289.34, + "probability": 1.0 + } + ] + }, + { + "id": 119, + "text": "Yeah.", + "start": 289.44, + "end": 289.8, + "words": [ + { + "word": " Yeah.", + "start": 289.44, + "end": 289.8, + "probability": 0.982421875 + } + ] + }, + { + "id": 120, + "text": "Uh, only one time, uh, have we paid and not.", + "start": 290.34, + "end": 295.64, + "words": [ + { + "word": " Uh,", + "start": 290.34, + "end": 290.82, + "probability": 0.9931640625 + }, + { + "word": " only", + "start": 290.94, + "end": 291.32, + "probability": 0.9951171875 + }, + { + "word": " one", + "start": 291.32, + "end": 291.5, + "probability": 0.99951171875 + }, + { + "word": " time,", + "start": 291.5, + "end": 292.0, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 292.12, + "end": 292.9, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 293.08, + "end": 293.48, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 293.48, + "end": 293.72, + "probability": 1.0 + }, + { + "word": " paid", + "start": 293.72, + "end": 294.34, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 294.34, + "end": 294.86, + "probability": 0.9970703125 + }, + { + "word": " not.", + "start": 294.86, + "end": 295.64, + "probability": 0.99609375 + } + ] + }, + { + "id": 121, + "text": "Gotten the data back, which was kind of unfortunate.", + "start": 295.82, + "end": 298.0, + "words": [ + { + "word": " Gotten", + "start": 295.82, + "end": 296.02, + "probability": 0.496337890625 + }, + { + "word": " the", + "start": 296.02, + "end": 296.1, + "probability": 0.9921875 + }, + { + "word": " data", + "start": 296.1, + "end": 296.3, + "probability": 0.98828125 + }, + { + "word": " back,", + "start": 296.3, + "end": 296.52, + "probability": 0.982421875 + }, + { + "word": " which", + "start": 296.7, + "end": 297.32, + "probability": 0.982421875 + }, + { + "word": " was", + "start": 297.32, + "end": 297.44, + "probability": 0.9970703125 + }, + { + "word": " kind", + "start": 297.44, + "end": 297.62, + "probability": 0.9873046875 + }, + { + "word": " of", + "start": 297.62, + "end": 297.7, + "probability": 0.99609375 + }, + { + "word": " unfortunate.", + "start": 297.7, + "end": 298.0, + "probability": 0.9130859375 + } + ] + }, + { + "id": 122, + "text": "Um, but this is why we, we harp on the whole backup thing.", + "start": 299.66, + "end": 302.76, + "words": [ + { + "word": " Um,", + "start": 299.66, + "end": 300.06, + "probability": 0.06793212890625 + }, + { + "word": " but", + "start": 300.06, + "end": 300.46, + "probability": 0.9970703125 + }, + { + "word": " this", + "start": 300.46, + "end": 300.78, + "probability": 0.98583984375 + }, + { + "word": " is", + "start": 300.78, + "end": 300.9, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 300.9, + "end": 301.06, + "probability": 0.99951171875 + }, + { + "word": " we,", + "start": 301.06, + "end": 301.24, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 301.26, + "end": 301.58, + "probability": 0.98828125 + }, + { + "word": " harp", + "start": 301.58, + "end": 301.86, + "probability": 0.9921875 + }, + { + "word": " on", + "start": 301.86, + "end": 302.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 302.0, + "end": 302.12, + "probability": 1.0 + }, + { + "word": " whole", + "start": 302.12, + "end": 302.2, + "probability": 0.99951171875 + }, + { + "word": " backup", + "start": 302.2, + "end": 302.54, + "probability": 0.9990234375 + }, + { + "word": " thing.", + "start": 302.54, + "end": 302.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 123, + "text": "You must have backups.", + "start": 302.9, + "end": 304.0, + "words": [ + { + "word": " You", + "start": 302.9, + "end": 303.1, + "probability": 0.99951171875 + }, + { + "word": " must", + "start": 303.1, + "end": 303.38, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 303.38, + "end": 303.6, + "probability": 1.0 + }, + { + "word": " backups.", + "start": 303.6, + "end": 304.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 124, + "text": "You need a backup.", + "start": 304.14, + "end": 305.02, + "words": [ + { + "word": " You", + "start": 304.14, + "end": 304.38, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 304.38, + "end": 304.6, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 304.6, + "end": 304.72, + "probability": 0.9990234375 + }, + { + "word": " backup.", + "start": 304.72, + "end": 305.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 125, + "text": "That's just, that's just how it works.", + "start": 305.52000000000004, + "end": 307.32, + "words": [ + { + "word": " That's", + "start": 305.52000000000004, + "end": 305.92, + "probability": 0.9560546875 + }, + { + "word": " just,", + "start": 305.92, + "end": 306.12, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 306.14, + "end": 306.36, + "probability": 0.97216796875 + }, + { + "word": " just", + "start": 306.36, + "end": 306.54, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 306.54, + "end": 306.72, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 306.72, + "end": 306.88, + "probability": 0.99951171875 + }, + { + "word": " works.", + "start": 306.88, + "end": 307.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 126, + "text": "I mean, in, in every aspect of your life, there's, there's a plan B, right?", + "start": 307.98, + "end": 313.02, + "words": [ + { + "word": " I", + "start": 307.98, + "end": 308.38, + "probability": 0.9443359375 + }, + { + "word": " mean,", + "start": 308.38, + "end": 308.54, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 308.62, + "end": 308.78, + "probability": 0.99169921875 + }, + { + "word": " in", + "start": 308.78, + "end": 309.7, + "probability": 0.9990234375 + }, + { + "word": " every", + "start": 309.7, + "end": 310.08, + "probability": 0.998046875 + }, + { + "word": " aspect", + "start": 310.08, + "end": 310.48, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 310.48, + "end": 310.66, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 310.66, + "end": 310.72, + "probability": 1.0 + }, + { + "word": " life,", + "start": 310.72, + "end": 310.96, + "probability": 1.0 + }, + { + "word": " there's,", + "start": 311.04, + "end": 311.3, + "probability": 1.0 + }, + { + "word": " there's", + "start": 311.3, + "end": 311.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 311.54, + "end": 311.62, + "probability": 0.99951171875 + }, + { + "word": " plan", + "start": 311.62, + "end": 311.78, + "probability": 0.9990234375 + }, + { + "word": " B,", + "start": 311.78, + "end": 312.02, + "probability": 0.9990234375 + }, + { + "word": " right?", + "start": 312.14, + "end": 313.02, + "probability": 1.0 + } + ] + }, + { + "id": 127, + "text": "And you need to have that with your computer as well.", + "start": 313.14, + "end": 315.48, + "words": [ + { + "word": " And", + "start": 313.14, + "end": 313.34, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 313.34, + "end": 313.6, + "probability": 0.9990234375 + }, + { + "word": " need", + "start": 313.6, + "end": 313.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 313.8, + "end": 313.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 313.88, + "end": 314.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 314.06, + "end": 314.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 314.32, + "end": 314.66, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 314.66, + "end": 314.82, + "probability": 1.0 + }, + { + "word": " computer", + "start": 314.82, + "end": 315.08, + "probability": 1.0 + }, + { + "word": " as", + "start": 315.08, + "end": 315.3, + "probability": 0.99853515625 + }, + { + "word": " well.", + "start": 315.3, + "end": 315.48, + "probability": 1.0 + } + ] + }, + { + "id": 128, + "text": "So you either have a separate copy of the data or you synchronize to the cloud.", + "start": 315.6, + "end": 319.5, + "words": [ + { + "word": " So", + "start": 315.6, + "end": 316.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 316.0, + "end": 316.18, + "probability": 0.9931640625 + }, + { + "word": " either", + "start": 316.18, + "end": 316.42, + "probability": 1.0 + }, + { + "word": " have", + "start": 316.42, + "end": 316.82, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 316.82, + "end": 317.0, + "probability": 1.0 + }, + { + "word": " separate", + "start": 317.0, + "end": 317.32, + "probability": 0.998046875 + }, + { + "word": " copy", + "start": 317.32, + "end": 317.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 317.68, + "end": 317.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 317.82, + "end": 317.9, + "probability": 1.0 + }, + { + "word": " data", + "start": 317.9, + "end": 318.18, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 318.18, + "end": 318.42, + "probability": 0.8818359375 + }, + { + "word": " you", + "start": 318.42, + "end": 318.52, + "probability": 0.99951171875 + }, + { + "word": " synchronize", + "start": 318.52, + "end": 319.02, + "probability": 0.9873046875 + }, + { + "word": " to", + "start": 319.02, + "end": 319.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 319.18, + "end": 319.24, + "probability": 0.99951171875 + }, + { + "word": " cloud.", + "start": 319.24, + "end": 319.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 129, + "text": "You synchronize to us over at computer guru.", + "start": 319.7, + "end": 322.12, + "words": [ + { + "word": " You", + "start": 319.7, + "end": 319.82, + "probability": 0.99658203125 + }, + { + "word": " synchronize", + "start": 319.82, + "end": 320.22, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 320.22, + "end": 320.44, + "probability": 1.0 + }, + { + "word": " us", + "start": 320.44, + "end": 320.82, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 320.82, + "end": 321.5, + "probability": 0.9951171875 + }, + { + "word": " at", + "start": 321.5, + "end": 321.62, + "probability": 0.888671875 + }, + { + "word": " computer", + "start": 321.62, + "end": 321.84, + "probability": 0.7626953125 + }, + { + "word": " guru.", + "start": 321.84, + "end": 322.12, + "probability": 0.80517578125 + } + ] + }, + { + "id": 130, + "text": "Uh, we would love to make sure that your data.", + "start": 323.08000000000004, + "end": 325.64, + "words": [ + { + "word": " Uh,", + "start": 323.08000000000004, + "end": 323.48, + "probability": 0.9892578125 + }, + { + "word": " we", + "start": 323.48, + "end": 323.88, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 323.88, + "end": 324.08, + "probability": 0.9951171875 + }, + { + "word": " love", + "start": 324.08, + "end": 324.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 324.64, + "end": 324.84, + "probability": 1.0 + }, + { + "word": " make", + "start": 324.84, + "end": 325.0, + "probability": 1.0 + }, + { + "word": " sure", + "start": 325.0, + "end": 325.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 325.2, + "end": 325.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 325.32, + "end": 325.42, + "probability": 0.9951171875 + }, + { + "word": " data.", + "start": 325.42, + "end": 325.64, + "probability": 0.998046875 + } + ] + }, + { + "id": 131, + "text": "Just does not go away.", + "start": 325.82, + "end": 326.86, + "words": [ + { + "word": " Just", + "start": 325.82, + "end": 325.9, + "probability": 0.052703857421875 + }, + { + "word": " does", + "start": 325.9, + "end": 325.96, + "probability": 0.96044921875 + }, + { + "word": " not", + "start": 325.96, + "end": 326.24, + "probability": 1.0 + }, + { + "word": " go", + "start": 326.24, + "end": 326.44, + "probability": 0.9990234375 + }, + { + "word": " away.", + "start": 326.44, + "end": 326.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 132, + "text": "Get me safe people backups.", + "start": 327.8, + "end": 329.64, + "words": [ + { + "word": " Get", + "start": 327.8, + "end": 328.2, + "probability": 0.7568359375 + }, + { + "word": " me", + "start": 328.2, + "end": 328.38, + "probability": 0.94482421875 + }, + { + "word": " safe", + "start": 328.38, + "end": 328.6, + "probability": 0.96875 + }, + { + "word": " people", + "start": 328.6, + "end": 328.84, + "probability": 0.29150390625 + }, + { + "word": " backups.", + "start": 328.84, + "end": 329.64, + "probability": 0.35693359375 + } + ] + }, + { + "id": 133, + "text": "So anyway, yes, there's lots of money involved.", + "start": 330.68, + "end": 332.7, + "words": [ + { + "word": " So", + "start": 330.68, + "end": 331.08, + "probability": 0.99560546875 + }, + { + "word": " anyway,", + "start": 331.08, + "end": 331.26, + "probability": 0.98974609375 + }, + { + "word": " yes,", + "start": 331.28, + "end": 331.42, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 331.46, + "end": 331.62, + "probability": 1.0 + }, + { + "word": " lots", + "start": 331.62, + "end": 331.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 331.82, + "end": 331.98, + "probability": 1.0 + }, + { + "word": " money", + "start": 331.98, + "end": 332.28, + "probability": 1.0 + }, + { + "word": " involved.", + "start": 332.28, + "end": 332.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 134, + "text": "In fact, there's, there's websites now that you can go out and it's effectively like, uh, it's almost like a franchise, right?", + "start": 332.92, + "end": 340.5, + "words": [ + { + "word": " In", + "start": 332.92, + "end": 333.14, + "probability": 0.9990234375 + }, + { + "word": " fact,", + "start": 333.14, + "end": 333.36, + "probability": 1.0 + }, + { + "word": " there's,", + "start": 333.38, + "end": 333.7, + "probability": 1.0 + }, + { + "word": " there's", + "start": 333.7, + "end": 334.02, + "probability": 1.0 + }, + { + "word": " websites", + "start": 334.02, + "end": 334.28, + "probability": 0.99853515625 + }, + { + "word": " now", + "start": 334.28, + "end": 334.64, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 334.64, + "end": 334.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 334.84, + "end": 334.96, + "probability": 1.0 + }, + { + "word": " can", + "start": 334.96, + "end": 335.06, + "probability": 1.0 + }, + { + "word": " go", + "start": 335.06, + "end": 335.2, + "probability": 1.0 + }, + { + "word": " out", + "start": 335.2, + "end": 335.48, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 335.48, + "end": 336.52, + "probability": 0.974609375 + }, + { + "word": " it's", + "start": 336.52, + "end": 336.98, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 336.98, + "end": 337.26, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 337.26, + "end": 337.76, + "probability": 0.99853515625 + }, + { + "word": " uh,", + "start": 337.88, + "end": 338.06, + "probability": 0.84130859375 + }, + { + "word": " it's", + "start": 338.2, + "end": 338.74, + "probability": 0.99951171875 + }, + { + "word": " almost", + "start": 338.74, + "end": 338.9, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 338.9, + "end": 339.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 339.02, + "end": 339.1, + "probability": 1.0 + }, + { + "word": " franchise,", + "start": 339.1, + "end": 339.58, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 339.66, + "end": 340.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 135, + "text": "Where you give them, you give them $3,000, I think is the amount.", + "start": 340.6, + "end": 343.92, + "words": [ + { + "word": " Where", + "start": 340.6, + "end": 340.7, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 340.7, + "end": 340.86, + "probability": 1.0 + }, + { + "word": " give", + "start": 340.86, + "end": 341.1, + "probability": 1.0 + }, + { + "word": " them,", + "start": 341.1, + "end": 341.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 341.4, + "end": 341.9, + "probability": 0.99951171875 + }, + { + "word": " give", + "start": 341.9, + "end": 342.06, + "probability": 1.0 + }, + { + "word": " them", + "start": 342.06, + "end": 342.18, + "probability": 0.99951171875 + }, + { + "word": " $3", + "start": 342.18, + "end": 342.26, + "probability": 1.0 + }, + { + "word": ",000,", + "start": 342.26, + "end": 342.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 342.88, + "end": 343.26, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 343.26, + "end": 343.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 343.44, + "end": 343.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 343.56, + "end": 343.68, + "probability": 1.0 + }, + { + "word": " amount.", + "start": 343.68, + "end": 343.92, + "probability": 1.0 + } + ] + }, + { + "id": 136, + "text": "And, uh, they basically set you up with your own infection that you can send out to the masses, right?", + "start": 344.44, + "end": 352.86, + "words": [ + { + "word": " And,", + "start": 344.44, + "end": 344.84, + "probability": 0.998046875 + }, + { + "word": " uh,", + "start": 344.86, + "end": 345.16, + "probability": 0.90234375 + }, + { + "word": " they", + "start": 345.34, + "end": 345.54, + "probability": 0.9990234375 + }, + { + "word": " basically", + "start": 345.54, + "end": 346.08, + "probability": 0.99951171875 + }, + { + "word": " set", + "start": 346.08, + "end": 346.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 346.44, + "end": 346.68, + "probability": 1.0 + }, + { + "word": " up", + "start": 346.68, + "end": 346.92, + "probability": 1.0 + }, + { + "word": " with", + "start": 346.92, + "end": 347.12, + "probability": 1.0 + }, + { + "word": " your", + "start": 347.12, + "end": 347.3, + "probability": 1.0 + }, + { + "word": " own", + "start": 347.3, + "end": 347.64, + "probability": 1.0 + }, + { + "word": " infection", + "start": 347.64, + "end": 348.72, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 348.72, + "end": 349.5, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 349.5, + "end": 349.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 349.68, + "end": 349.96, + "probability": 1.0 + }, + { + "word": " send", + "start": 349.96, + "end": 351.76, + "probability": 0.96875 + }, + { + "word": " out", + "start": 351.76, + "end": 351.94, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 351.94, + "end": 352.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 352.06, + "end": 352.1, + "probability": 0.99951171875 + }, + { + "word": " masses,", + "start": 352.1, + "end": 352.46, + "probability": 0.99853515625 + }, + { + "word": " right?", + "start": 352.5, + "end": 352.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 137, + "text": "With the, with this crypto locker stuff.", + "start": 352.92, + "end": 354.32, + "words": [ + { + "word": " With", + "start": 352.92, + "end": 353.06, + "probability": 0.998046875 + }, + { + "word": " the,", + "start": 353.06, + "end": 353.24, + "probability": 0.9921875 + }, + { + "word": " with", + "start": 353.24, + "end": 353.42, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 353.42, + "end": 353.6, + "probability": 0.99951171875 + }, + { + "word": " crypto", + "start": 353.6, + "end": 353.84, + "probability": 0.775390625 + }, + { + "word": " locker", + "start": 353.84, + "end": 354.08, + "probability": 0.98193359375 + }, + { + "word": " stuff.", + "start": 354.08, + "end": 354.32, + "probability": 1.0 + } + ] + }, + { + "id": 138, + "text": "They set you up with the.", + "start": 354.4, + "end": 355.34, + "words": [ + { + "word": " They", + "start": 354.4, + "end": 354.54, + "probability": 0.99755859375 + }, + { + "word": " set", + "start": 354.54, + "end": 354.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 354.72, + "end": 354.9, + "probability": 1.0 + }, + { + "word": " up", + "start": 354.9, + "end": 355.04, + "probability": 1.0 + }, + { + "word": " with", + "start": 355.04, + "end": 355.2, + "probability": 1.0 + }, + { + "word": " the.", + "start": 355.2, + "end": 355.34, + "probability": 0.2149658203125 + } + ] + }, + { + "id": 139, + "text": "With a, a Bitcoin wallet and they, they tell you how it's like a class.", + "start": 355.34, + "end": 360.4, + "words": [ + { + "word": " With", + "start": 355.34, + "end": 355.62, + "probability": 0.03558349609375 + }, + { + "word": " a,", + "start": 355.62, + "end": 355.92, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 355.92, + "end": 356.68, + "probability": 0.66162109375 + }, + { + "word": " Bitcoin", + "start": 356.68, + "end": 357.0, + "probability": 0.986328125 + }, + { + "word": " wallet", + "start": 357.0, + "end": 357.46, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 357.46, + "end": 358.0, + "probability": 0.39697265625 + }, + { + "word": " they,", + "start": 358.0, + "end": 358.4, + "probability": 1.0 + }, + { + "word": " they", + "start": 358.52, + "end": 358.86, + "probability": 1.0 + }, + { + "word": " tell", + "start": 358.86, + "end": 359.32, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 359.32, + "end": 359.44, + "probability": 1.0 + }, + { + "word": " how", + "start": 359.44, + "end": 359.56, + "probability": 1.0 + }, + { + "word": " it's", + "start": 359.56, + "end": 359.86, + "probability": 0.70751953125 + }, + { + "word": " like", + "start": 359.86, + "end": 359.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 359.96, + "end": 360.08, + "probability": 1.0 + }, + { + "word": " class.", + "start": 360.08, + "end": 360.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 140, + "text": "They teach you how to, you know, put it on the server and how to, to send it out to the, uh, via email usually, or put it onto websites so that you can get, you know, people, you can infect people and you get tech support for the, for basically ransoming people's software, their documents.", + "start": 360.56, + "end": 378.52, + "words": [ + { + "word": " They", + "start": 360.56, + "end": 360.68, + "probability": 0.99951171875 + }, + { + "word": " teach", + "start": 360.68, + "end": 360.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 360.92, + "end": 361.06, + "probability": 1.0 + }, + { + "word": " how", + "start": 361.06, + "end": 361.24, + "probability": 1.0 + }, + { + "word": " to,", + "start": 361.24, + "end": 361.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 361.5, + "end": 361.86, + "probability": 1.0 + }, + { + "word": " know,", + "start": 361.86, + "end": 362.0, + "probability": 1.0 + }, + { + "word": " put", + "start": 362.0, + "end": 362.24, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 362.24, + "end": 362.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 362.36, + "end": 362.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 362.48, + "end": 362.58, + "probability": 0.970703125 + }, + { + "word": " server", + "start": 362.58, + "end": 362.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 362.92, + "end": 363.18, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 363.18, + "end": 363.34, + "probability": 1.0 + }, + { + "word": " to,", + "start": 363.34, + "end": 363.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 363.58, + "end": 363.78, + "probability": 0.99951171875 + }, + { + "word": " send", + "start": 363.78, + "end": 364.06, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 364.06, + "end": 364.18, + "probability": 1.0 + }, + { + "word": " out", + "start": 364.18, + "end": 364.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 364.4, + "end": 364.56, + "probability": 0.99951171875 + }, + { + "word": " the,", + "start": 364.56, + "end": 364.72, + "probability": 0.485595703125 + }, + { + "word": " uh,", + "start": 364.72, + "end": 365.2, + "probability": 0.86962890625 + }, + { + "word": " via", + "start": 365.2, + "end": 365.4, + "probability": 0.99755859375 + }, + { + "word": " email", + "start": 365.4, + "end": 365.82, + "probability": 1.0 + }, + { + "word": " usually,", + "start": 365.82, + "end": 366.28, + "probability": 0.9931640625 + }, + { + "word": " or", + "start": 366.32, + "end": 366.96, + "probability": 1.0 + }, + { + "word": " put", + "start": 366.96, + "end": 367.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 367.14, + "end": 367.24, + "probability": 1.0 + }, + { + "word": " onto", + "start": 367.24, + "end": 367.36, + "probability": 0.740234375 + }, + { + "word": " websites", + "start": 367.36, + "end": 367.64, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 367.64, + "end": 368.04, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 368.04, + "end": 368.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 368.22, + "end": 368.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 368.36, + "end": 368.5, + "probability": 1.0 + }, + { + "word": " get,", + "start": 368.5, + "end": 368.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 368.74, + "end": 369.08, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 369.08, + "end": 369.22, + "probability": 1.0 + }, + { + "word": " people,", + "start": 369.22, + "end": 369.38, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 369.56, + "end": 369.84, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 369.84, + "end": 369.98, + "probability": 1.0 + }, + { + "word": " infect", + "start": 369.98, + "end": 370.16, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 370.16, + "end": 370.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 370.54, + "end": 371.54, + "probability": 0.94140625 + }, + { + "word": " you", + "start": 371.54, + "end": 371.94, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 371.94, + "end": 372.18, + "probability": 0.99951171875 + }, + { + "word": " tech", + "start": 372.18, + "end": 372.4, + "probability": 1.0 + }, + { + "word": " support", + "start": 372.4, + "end": 372.68, + "probability": 1.0 + }, + { + "word": " for", + "start": 372.68, + "end": 373.36, + "probability": 0.99169921875 + }, + { + "word": " the,", + "start": 373.36, + "end": 373.68, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 373.76, + "end": 374.5, + "probability": 0.9990234375 + }, + { + "word": " basically", + "start": 374.5, + "end": 375.16, + "probability": 0.9990234375 + }, + { + "word": " ransoming", + "start": 375.16, + "end": 376.18, + "probability": 0.998046875 + }, + { + "word": " people's", + "start": 376.18, + "end": 377.12, + "probability": 1.0 + }, + { + "word": " software,", + "start": 377.12, + "end": 377.6, + "probability": 1.0 + }, + { + "word": " their", + "start": 377.66, + "end": 377.94, + "probability": 0.9990234375 + }, + { + "word": " documents.", + "start": 377.94, + "end": 378.52, + "probability": 1.0 + } + ] + }, + { + "id": 141, + "text": "And so that's, that's how big this, this money is right now.", + "start": 379.34, + "end": 383.44, + "words": [ + { + "word": " And", + "start": 379.34, + "end": 379.82, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 379.82, + "end": 380.3, + "probability": 0.9990234375 + }, + { + "word": " that's,", + "start": 380.3, + "end": 380.72, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 380.72, + "end": 380.92, + "probability": 1.0 + }, + { + "word": " how", + "start": 380.92, + "end": 381.0, + "probability": 1.0 + }, + { + "word": " big", + "start": 381.0, + "end": 381.3, + "probability": 1.0 + }, + { + "word": " this,", + "start": 381.3, + "end": 381.64, + "probability": 1.0 + }, + { + "word": " this", + "start": 381.64, + "end": 382.0, + "probability": 1.0 + }, + { + "word": " money", + "start": 382.0, + "end": 382.62, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 382.62, + "end": 382.92, + "probability": 1.0 + }, + { + "word": " right", + "start": 382.92, + "end": 383.18, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 383.18, + "end": 383.44, + "probability": 1.0 + } + ] + }, + { + "id": 142, + "text": "It's to the point where.", + "start": 383.52, + "end": 384.5, + "words": [ + { + "word": " It's", + "start": 383.52, + "end": 383.86, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 383.86, + "end": 383.98, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 383.98, + "end": 384.06, + "probability": 1.0 + }, + { + "word": " point", + "start": 384.06, + "end": 384.32, + "probability": 1.0 + }, + { + "word": " where.", + "start": 384.32, + "end": 384.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 143, + "text": "Yeah.", + "start": 384.74, + "end": 385.22, + "words": [ + { + "word": " Yeah.", + "start": 384.74, + "end": 385.22, + "probability": 0.243896484375 + } + ] + }, + { + "id": 144, + "text": "Yeah.", + "start": 385.22, + "end": 385.32, + "words": [ + { + "word": " Yeah.", + "start": 385.22, + "end": 385.32, + "probability": 0.479736328125 + } + ] + }, + { + "id": 145, + "text": "", + "start": 385.32, + "end": 385.32, + "words": [] + }, + { + "id": 146, + "text": "", + "start": 385.32, + "end": 385.32, + "words": [] + }, + { + "id": 147, + "text": "These people have enough money that they can just basically say, well, we're not going to ransom individuals anymore.", + "start": 385.34, + "end": 389.38, + "words": [ + { + "word": " These", + "start": 385.34, + "end": 385.4, + "probability": 0.0161285400390625 + }, + { + "word": " people", + "start": 385.4, + "end": 385.4, + "probability": 0.99365234375 + }, + { + "word": " have", + "start": 385.4, + "end": 385.62, + "probability": 0.9990234375 + }, + { + "word": " enough", + "start": 385.62, + "end": 385.9, + "probability": 0.99951171875 + }, + { + "word": " money", + "start": 385.9, + "end": 386.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 386.2, + "end": 386.56, + "probability": 0.98828125 + }, + { + "word": " they", + "start": 386.56, + "end": 386.76, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 386.76, + "end": 386.86, + "probability": 0.8671875 + }, + { + "word": " just", + "start": 386.86, + "end": 387.04, + "probability": 0.9970703125 + }, + { + "word": " basically", + "start": 387.04, + "end": 387.38, + "probability": 0.998046875 + }, + { + "word": " say,", + "start": 387.38, + "end": 387.66, + "probability": 1.0 + }, + { + "word": " well,", + "start": 387.74, + "end": 387.84, + "probability": 0.97119140625 + }, + { + "word": " we're", + "start": 387.88, + "end": 388.06, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 388.06, + "end": 388.12, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 388.12, + "end": 388.24, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 388.24, + "end": 388.32, + "probability": 1.0 + }, + { + "word": " ransom", + "start": 388.32, + "end": 388.56, + "probability": 0.9990234375 + }, + { + "word": " individuals", + "start": 388.56, + "end": 388.96, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 388.96, + "end": 389.38, + "probability": 1.0 + } + ] + }, + { + "id": 148, + "text": "We're going to teach you how to ransom people.", + "start": 389.48, + "end": 391.32, + "words": [ + { + "word": " We're", + "start": 389.48, + "end": 389.8, + "probability": 1.0 + }, + { + "word": " going", + "start": 389.8, + "end": 389.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 389.84, + "end": 389.96, + "probability": 1.0 + }, + { + "word": " teach", + "start": 389.96, + "end": 390.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 390.18, + "end": 390.44, + "probability": 1.0 + }, + { + "word": " how", + "start": 390.44, + "end": 390.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 390.68, + "end": 390.78, + "probability": 1.0 + }, + { + "word": " ransom", + "start": 390.78, + "end": 391.02, + "probability": 1.0 + }, + { + "word": " people.", + "start": 391.02, + "end": 391.32, + "probability": 1.0 + } + ] + }, + { + "id": 149, + "text": "And, uh, I don't know.", + "start": 392.36, + "end": 394.14, + "words": [ + { + "word": " And,", + "start": 392.36, + "end": 392.72, + "probability": 0.8984375 + }, + { + "word": " uh,", + "start": 392.76, + "end": 393.04, + "probability": 0.3623046875 + }, + { + "word": " I", + "start": 393.36, + "end": 393.84, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 393.84, + "end": 394.06, + "probability": 0.9912109375 + }, + { + "word": " know.", + "start": 394.06, + "end": 394.14, + "probability": 1.0 + } + ] + }, + { + "id": 150, + "text": "It's next to send me some sort of pyramid scheme, I'm sure.", + "start": 394.42, + "end": 396.68, + "words": [ + { + "word": " It's", + "start": 394.42, + "end": 394.78, + "probability": 0.8251953125 + }, + { + "word": " next", + "start": 394.78, + "end": 394.92, + "probability": 0.53857421875 + }, + { + "word": " to", + "start": 394.92, + "end": 395.1, + "probability": 0.6904296875 + }, + { + "word": " send", + "start": 395.1, + "end": 395.24, + "probability": 0.2454833984375 + }, + { + "word": " me", + "start": 395.24, + "end": 395.34, + "probability": 0.99755859375 + }, + { + "word": " some", + "start": 395.34, + "end": 395.42, + "probability": 1.0 + }, + { + "word": " sort", + "start": 395.42, + "end": 395.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 395.6, + "end": 395.7, + "probability": 1.0 + }, + { + "word": " pyramid", + "start": 395.7, + "end": 395.94, + "probability": 1.0 + }, + { + "word": " scheme,", + "start": 395.94, + "end": 396.2, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 396.34, + "end": 396.48, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 396.48, + "end": 396.68, + "probability": 1.0 + } + ] + }, + { + "id": 151, + "text": "Right.", + "start": 396.8, + "end": 397.16, + "words": [ + { + "word": " Right.", + "start": 396.8, + "end": 397.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 152, + "text": "But it's, these are the big viruses that are out there right now.", + "start": 397.28, + "end": 401.44, + "words": [ + { + "word": " But", + "start": 397.28, + "end": 397.62, + "probability": 0.99853515625 + }, + { + "word": " it's,", + "start": 397.62, + "end": 398.12, + "probability": 1.0 + }, + { + "word": " these", + "start": 398.12, + "end": 399.58, + "probability": 0.98388671875 + }, + { + "word": " are", + "start": 399.58, + "end": 400.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 400.0, + "end": 400.1, + "probability": 1.0 + }, + { + "word": " big", + "start": 400.1, + "end": 400.28, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 400.28, + "end": 400.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 400.62, + "end": 400.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 400.86, + "end": 400.94, + "probability": 1.0 + }, + { + "word": " out", + "start": 400.94, + "end": 401.06, + "probability": 1.0 + }, + { + "word": " there", + "start": 401.06, + "end": 401.2, + "probability": 1.0 + }, + { + "word": " right", + "start": 401.2, + "end": 401.32, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 401.32, + "end": 401.44, + "probability": 1.0 + } + ] + }, + { + "id": 153, + "text": "These are the ones that are the most dangerous, right?", + "start": 401.5, + "end": 403.42, + "words": [ + { + "word": " These", + "start": 401.5, + "end": 401.58, + "probability": 0.99462890625 + }, + { + "word": " are", + "start": 401.58, + "end": 401.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 401.72, + "end": 401.76, + "probability": 1.0 + }, + { + "word": " ones", + "start": 401.76, + "end": 401.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 401.9, + "end": 401.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 401.98, + "end": 402.04, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 402.04, + "end": 402.14, + "probability": 1.0 + }, + { + "word": " most", + "start": 402.14, + "end": 402.32, + "probability": 1.0 + }, + { + "word": " dangerous,", + "start": 402.32, + "end": 402.82, + "probability": 1.0 + }, + { + "word": " right?", + "start": 402.98, + "end": 403.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 154, + "text": "Cause we hear people talking about all the time.", + "start": 403.48, + "end": 405.7, + "words": [ + { + "word": " Cause", + "start": 403.48, + "end": 403.64, + "probability": 0.57470703125 + }, + { + "word": " we", + "start": 403.64, + "end": 404.46, + "probability": 0.99951171875 + }, + { + "word": " hear", + "start": 404.46, + "end": 404.64, + "probability": 1.0 + }, + { + "word": " people", + "start": 404.64, + "end": 404.8, + "probability": 1.0 + }, + { + "word": " talking", + "start": 404.8, + "end": 405.1, + "probability": 1.0 + }, + { + "word": " about", + "start": 405.1, + "end": 405.24, + "probability": 1.0 + }, + { + "word": " all", + "start": 405.24, + "end": 405.36, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 405.36, + "end": 405.44, + "probability": 1.0 + }, + { + "word": " time.", + "start": 405.44, + "end": 405.7, + "probability": 1.0 + } + ] + }, + { + "id": 155, + "text": "Uh, yesterday I was having a conversation with somebody and they're like, yeah, well, you know, we're not really all like concerned with people hacking in.", + "start": 405.74, + "end": 411.06, + "words": [ + { + "word": " Uh,", + "start": 405.74, + "end": 405.96, + "probability": 0.513671875 + }, + { + "word": " yesterday", + "start": 405.98, + "end": 406.28, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 406.28, + "end": 406.52, + "probability": 0.9892578125 + }, + { + "word": " was", + "start": 406.52, + "end": 406.56, + "probability": 1.0 + }, + { + "word": " having", + "start": 406.56, + "end": 406.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 406.74, + "end": 406.84, + "probability": 0.99951171875 + }, + { + "word": " conversation", + "start": 406.84, + "end": 407.18, + "probability": 1.0 + }, + { + "word": " with", + "start": 407.18, + "end": 407.42, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 407.42, + "end": 407.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 407.64, + "end": 407.78, + "probability": 1.0 + }, + { + "word": " they're", + "start": 407.78, + "end": 407.9, + "probability": 1.0 + }, + { + "word": " like,", + "start": 407.9, + "end": 408.04, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 408.1, + "end": 408.24, + "probability": 0.990234375 + }, + { + "word": " well,", + "start": 408.24, + "end": 408.38, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 408.48, + "end": 408.68, + "probability": 0.93017578125 + }, + { + "word": " know,", + "start": 408.68, + "end": 408.84, + "probability": 1.0 + }, + { + "word": " we're", + "start": 408.84, + "end": 409.24, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 409.24, + "end": 409.32, + "probability": 1.0 + }, + { + "word": " really", + "start": 409.32, + "end": 409.56, + "probability": 1.0 + }, + { + "word": " all", + "start": 409.56, + "end": 409.66, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 409.66, + "end": 409.78, + "probability": 0.9560546875 + }, + { + "word": " concerned", + "start": 409.78, + "end": 410.02, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 410.02, + "end": 410.2, + "probability": 1.0 + }, + { + "word": " people", + "start": 410.2, + "end": 410.44, + "probability": 0.99951171875 + }, + { + "word": " hacking", + "start": 410.44, + "end": 410.84, + "probability": 0.998046875 + }, + { + "word": " in.", + "start": 410.84, + "end": 411.06, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "So we don't need this, you know, super fancy firewall.", + "start": 411.16, + "end": 413.42, + "words": [ + { + "word": " So", + "start": 411.16, + "end": 411.28, + "probability": 0.9912109375 + }, + { + "word": " we", + "start": 411.28, + "end": 411.46, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 411.46, + "end": 411.62, + "probability": 1.0 + }, + { + "word": " need", + "start": 411.62, + "end": 411.76, + "probability": 0.99951171875 + }, + { + "word": " this,", + "start": 411.76, + "end": 412.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 412.06, + "end": 412.26, + "probability": 1.0 + }, + { + "word": " know,", + "start": 412.26, + "end": 412.4, + "probability": 1.0 + }, + { + "word": " super", + "start": 412.4, + "end": 412.66, + "probability": 0.998046875 + }, + { + "word": " fancy", + "start": 412.66, + "end": 413.02, + "probability": 1.0 + }, + { + "word": " firewall.", + "start": 413.02, + "end": 413.42, + "probability": 0.99658203125 + } + ] + }, + { + "id": 157, + "text": "And I was like, well, yeah, but that's not the part you're really worried about anyway.", + "start": 415.34, + "end": 418.98, + "words": [ + { + "word": " And", + "start": 415.34, + "end": 415.56, + "probability": 0.95458984375 + }, + { + "word": " I", + "start": 415.56, + "end": 415.84, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 415.84, + "end": 416.04, + "probability": 1.0 + }, + { + "word": " like,", + "start": 416.04, + "end": 416.32, + "probability": 0.99853515625 + }, + { + "word": " well,", + "start": 416.38, + "end": 416.52, + "probability": 0.98779296875 + }, + { + "word": " yeah,", + "start": 416.64, + "end": 416.94, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 416.94, + "end": 417.32, + "probability": 1.0 + }, + { + "word": " that's", + "start": 417.32, + "end": 417.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 417.54, + "end": 417.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 417.64, + "end": 417.76, + "probability": 1.0 + }, + { + "word": " part", + "start": 417.76, + "end": 417.94, + "probability": 1.0 + }, + { + "word": " you're", + "start": 417.94, + "end": 418.12, + "probability": 1.0 + }, + { + "word": " really", + "start": 418.12, + "end": 418.28, + "probability": 1.0 + }, + { + "word": " worried", + "start": 418.28, + "end": 418.5, + "probability": 1.0 + }, + { + "word": " about", + "start": 418.5, + "end": 418.68, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 418.68, + "end": 418.98, + "probability": 0.9794921875 + } + ] + }, + { + "id": 158, + "text": "Right.", + "start": 419.32, + "end": 419.68, + "words": [ + { + "word": " Right.", + "start": 419.32, + "end": 419.68, + "probability": 0.232177734375 + } + ] + }, + { + "id": 159, + "text": "You should be worried about it.", + "start": 419.78, + "end": 421.14, + "words": [ + { + "word": " You", + "start": 419.78, + "end": 420.1, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 420.1, + "end": 420.46, + "probability": 1.0 + }, + { + "word": " be", + "start": 420.46, + "end": 420.6, + "probability": 1.0 + }, + { + "word": " worried", + "start": 420.6, + "end": 420.82, + "probability": 1.0 + }, + { + "word": " about", + "start": 420.82, + "end": 421.0, + "probability": 1.0 + }, + { + "word": " it.", + "start": 421.0, + "end": 421.14, + "probability": 0.70947265625 + } + ] + }, + { + "id": 160, + "text": "You should be worried more about email infections and email just needs to go away.", + "start": 421.14, + "end": 427.76, + "words": [ + { + "word": " You", + "start": 421.14, + "end": 421.24, + "probability": 0.99609375 + }, + { + "word": " should", + "start": 421.24, + "end": 421.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 421.42, + "end": 421.56, + "probability": 1.0 + }, + { + "word": " worried", + "start": 421.56, + "end": 421.82, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 421.82, + "end": 422.08, + "probability": 1.0 + }, + { + "word": " about", + "start": 422.08, + "end": 422.5, + "probability": 1.0 + }, + { + "word": " email", + "start": 422.5, + "end": 423.12, + "probability": 0.92578125 + }, + { + "word": " infections", + "start": 423.12, + "end": 423.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 423.64, + "end": 424.6, + "probability": 0.459716796875 + }, + { + "word": " email", + "start": 424.6, + "end": 426.46, + "probability": 0.9951171875 + }, + { + "word": " just", + "start": 426.46, + "end": 427.16, + "probability": 0.9990234375 + }, + { + "word": " needs", + "start": 427.16, + "end": 427.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 427.28, + "end": 427.42, + "probability": 1.0 + }, + { + "word": " go", + "start": 427.42, + "end": 427.54, + "probability": 1.0 + }, + { + "word": " away.", + "start": 427.54, + "end": 427.76, + "probability": 1.0 + } + ] + }, + { + "id": 161, + "text": "But, um, at the very least the zip file extension needs to go away just because so many people fall for it.", + "start": 428.72, + "end": 437.1, + "words": [ + { + "word": " But,", + "start": 428.72, + "end": 429.16, + "probability": 0.9990234375 + }, + { + "word": " um,", + "start": 429.16, + "end": 429.6, + "probability": 0.947265625 + }, + { + "word": " at", + "start": 429.9, + "end": 430.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 430.66, + "end": 430.8, + "probability": 1.0 + }, + { + "word": " very", + "start": 430.8, + "end": 431.0, + "probability": 1.0 + }, + { + "word": " least", + "start": 431.0, + "end": 431.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 431.36, + "end": 431.7, + "probability": 0.763671875 + }, + { + "word": " zip", + "start": 431.7, + "end": 431.98, + "probability": 0.9990234375 + }, + { + "word": " file", + "start": 431.98, + "end": 432.3, + "probability": 1.0 + }, + { + "word": " extension", + "start": 432.3, + "end": 432.74, + "probability": 1.0 + }, + { + "word": " needs", + "start": 432.74, + "end": 433.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 433.22, + "end": 433.44, + "probability": 1.0 + }, + { + "word": " go", + "start": 433.44, + "end": 433.62, + "probability": 1.0 + }, + { + "word": " away", + "start": 433.62, + "end": 433.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 433.96, + "end": 434.68, + "probability": 0.97900390625 + }, + { + "word": " because", + "start": 434.68, + "end": 435.0, + "probability": 1.0 + }, + { + "word": " so", + "start": 435.0, + "end": 435.94, + "probability": 0.9990234375 + }, + { + "word": " many", + "start": 435.94, + "end": 436.22, + "probability": 1.0 + }, + { + "word": " people", + "start": 436.22, + "end": 436.48, + "probability": 1.0 + }, + { + "word": " fall", + "start": 436.48, + "end": 436.72, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 436.72, + "end": 436.94, + "probability": 1.0 + }, + { + "word": " it.", + "start": 436.94, + "end": 437.1, + "probability": 1.0 + } + ] + }, + { + "id": 162, + "text": "They get these infections.", + "start": 437.14, + "end": 437.94, + "words": [ + { + "word": " They", + "start": 437.14, + "end": 437.26, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 437.26, + "end": 437.38, + "probability": 1.0 + }, + { + "word": " these", + "start": 437.38, + "end": 437.54, + "probability": 1.0 + }, + { + "word": " infections.", + "start": 437.54, + "end": 437.94, + "probability": 1.0 + } + ] + }, + { + "id": 163, + "text": "They, you know, they get this message in their mail.", + "start": 438.08, + "end": 440.44, + "words": [ + { + "word": " They,", + "start": 438.08, + "end": 438.46, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 438.56, + "end": 439.2, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 439.2, + "end": 439.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 439.34, + "end": 439.4, + "probability": 0.99755859375 + }, + { + "word": " get", + "start": 439.4, + "end": 439.52, + "probability": 1.0 + }, + { + "word": " this", + "start": 439.52, + "end": 439.64, + "probability": 1.0 + }, + { + "word": " message", + "start": 439.64, + "end": 439.96, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 439.96, + "end": 440.14, + "probability": 1.0 + }, + { + "word": " their", + "start": 440.14, + "end": 440.24, + "probability": 1.0 + }, + { + "word": " mail.", + "start": 440.24, + "end": 440.44, + "probability": 0.99658203125 + } + ] + }, + { + "id": 164, + "text": "It says your, your package wasn't sent from UPS or, um.", + "start": 440.46, + "end": 444.6, + "words": [ + { + "word": " It", + "start": 440.46, + "end": 440.58, + "probability": 0.984375 + }, + { + "word": " says", + "start": 440.58, + "end": 440.7, + "probability": 0.99951171875 + }, + { + "word": " your,", + "start": 440.7, + "end": 440.94, + "probability": 0.994140625 + }, + { + "word": " your", + "start": 440.98, + "end": 441.16, + "probability": 1.0 + }, + { + "word": " package", + "start": 441.16, + "end": 441.56, + "probability": 0.99951171875 + }, + { + "word": " wasn't", + "start": 441.56, + "end": 441.96, + "probability": 1.0 + }, + { + "word": " sent", + "start": 441.96, + "end": 442.2, + "probability": 1.0 + }, + { + "word": " from", + "start": 442.2, + "end": 442.46, + "probability": 0.99951171875 + }, + { + "word": " UPS", + "start": 442.46, + "end": 442.9, + "probability": 0.998046875 + }, + { + "word": " or,", + "start": 442.9, + "end": 443.64, + "probability": 0.9951171875 + }, + { + "word": " um.", + "start": 443.7, + "end": 444.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 165, + "text": "Um, let's see, what are the other big ones?", + "start": 445.80000000000007, + "end": 447.76, + "words": [ + { + "word": " Um,", + "start": 445.80000000000007, + "end": 446.20000000000005, + "probability": 0.0029582977294921875 + }, + { + "word": " let's", + "start": 446.20000000000005, + "end": 446.6, + "probability": 0.9931640625 + }, + { + "word": " see,", + "start": 446.6, + "end": 446.7, + "probability": 1.0 + }, + { + "word": " what", + "start": 446.72, + "end": 446.8, + "probability": 0.99267578125 + }, + { + "word": " are", + "start": 446.8, + "end": 446.9, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 446.9, + "end": 446.96, + "probability": 1.0 + }, + { + "word": " other", + "start": 446.96, + "end": 447.18, + "probability": 1.0 + }, + { + "word": " big", + "start": 447.18, + "end": 447.46, + "probability": 1.0 + }, + { + "word": " ones?", + "start": 447.46, + "end": 447.76, + "probability": 1.0 + } + ] + }, + { + "id": 166, + "text": "Uh, you know, any of them off the top of your head?", + "start": 447.98, + "end": 450.24, + "words": [ + { + "word": " Uh,", + "start": 447.98, + "end": 448.34, + "probability": 0.853515625 + }, + { + "word": " you", + "start": 449.08, + "end": 449.28, + "probability": 0.9873046875 + }, + { + "word": " know,", + "start": 449.28, + "end": 449.42, + "probability": 0.90673828125 + }, + { + "word": " any", + "start": 449.44, + "end": 449.5, + "probability": 0.91259765625 + }, + { + "word": " of", + "start": 449.5, + "end": 449.62, + "probability": 1.0 + }, + { + "word": " them", + "start": 449.62, + "end": 449.66, + "probability": 1.0 + }, + { + "word": " off", + "start": 449.66, + "end": 449.78, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 449.78, + "end": 449.86, + "probability": 0.99755859375 + }, + { + "word": " top", + "start": 449.86, + "end": 449.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 449.96, + "end": 450.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 450.06, + "end": 450.08, + "probability": 1.0 + }, + { + "word": " head?", + "start": 450.08, + "end": 450.24, + "probability": 1.0 + } + ] + }, + { + "id": 167, + "text": "Have you seen any of them?", + "start": 450.3, + "end": 451.02, + "words": [ + { + "word": " Have", + "start": 450.3, + "end": 450.38, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 450.38, + "end": 450.44, + "probability": 1.0 + }, + { + "word": " seen", + "start": 450.44, + "end": 450.62, + "probability": 1.0 + }, + { + "word": " any", + "start": 450.62, + "end": 450.76, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 450.76, + "end": 450.88, + "probability": 0.97900390625 + }, + { + "word": " them?", + "start": 450.88, + "end": 451.02, + "probability": 1.0 + } + ] + }, + { + "id": 168, + "text": "No, I haven't.", + "start": 451.24, + "end": 452.06, + "words": [ + { + "word": " No,", + "start": 451.24, + "end": 451.64, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 451.68, + "end": 451.76, + "probability": 1.0 + }, + { + "word": " haven't.", + "start": 451.76, + "end": 452.06, + "probability": 1.0 + } + ] + }, + { + "id": 169, + "text": "I just, what was going through my mind is obviously this is very prevalent out here.", + "start": 452.06, + "end": 456.8, + "words": [ + { + "word": " I", + "start": 452.06, + "end": 452.18, + "probability": 0.994140625 + }, + { + "word": " just,", + "start": 452.18, + "end": 452.4, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 452.48, + "end": 453.32, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 453.32, + "end": 453.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 453.5, + "end": 453.64, + "probability": 1.0 + }, + { + "word": " through", + "start": 453.64, + "end": 453.78, + "probability": 1.0 + }, + { + "word": " my", + "start": 453.78, + "end": 453.92, + "probability": 1.0 + }, + { + "word": " mind", + "start": 453.92, + "end": 454.22, + "probability": 1.0 + }, + { + "word": " is", + "start": 454.22, + "end": 454.46, + "probability": 1.0 + }, + { + "word": " obviously", + "start": 454.46, + "end": 455.38, + "probability": 0.84765625 + }, + { + "word": " this", + "start": 455.38, + "end": 455.7, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 455.7, + "end": 455.84, + "probability": 1.0 + }, + { + "word": " very", + "start": 455.84, + "end": 456.0, + "probability": 0.99951171875 + }, + { + "word": " prevalent", + "start": 456.0, + "end": 456.34, + "probability": 1.0 + }, + { + "word": " out", + "start": 456.34, + "end": 456.54, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 456.54, + "end": 456.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 170, + "text": "A lot of people pray on, or they would not be doing it.", + "start": 456.86, + "end": 460.8, + "words": [ + { + "word": " A", + "start": 456.86, + "end": 457.2, + "probability": 0.97314453125 + }, + { + "word": " lot", + "start": 457.2, + "end": 457.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 457.46, + "end": 457.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 457.52, + "end": 457.72, + "probability": 1.0 + }, + { + "word": " pray", + "start": 457.72, + "end": 457.94, + "probability": 0.81103515625 + }, + { + "word": " on,", + "start": 457.94, + "end": 458.26, + "probability": 1.0 + }, + { + "word": " or", + "start": 458.32, + "end": 458.44, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 458.44, + "end": 458.56, + "probability": 1.0 + }, + { + "word": " would", + "start": 458.56, + "end": 458.76, + "probability": 1.0 + }, + { + "word": " not", + "start": 458.76, + "end": 458.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 458.96, + "end": 459.18, + "probability": 1.0 + }, + { + "word": " doing", + "start": 459.18, + "end": 460.58, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 460.58, + "end": 460.8, + "probability": 1.0 + } + ] + }, + { + "id": 171, + "text": "Yeah.", + "start": 460.92, + "end": 461.26, + "words": [ + { + "word": " Yeah.", + "start": 460.92, + "end": 461.26, + "probability": 0.986328125 + } + ] + }, + { + "id": 172, + "text": "I mean, there is, there is a lot of that.", + "start": 461.3, + "end": 463.08, + "words": [ + { + "word": " I", + "start": 461.3, + "end": 461.52, + "probability": 0.998046875 + }, + { + "word": " mean,", + "start": 461.52, + "end": 461.68, + "probability": 1.0 + }, + { + "word": " there", + "start": 461.7, + "end": 461.84, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 461.84, + "end": 462.08, + "probability": 1.0 + }, + { + "word": " there", + "start": 462.08, + "end": 462.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 462.26, + "end": 462.42, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 462.42, + "end": 462.5, + "probability": 1.0 + }, + { + "word": " lot", + "start": 462.5, + "end": 462.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 462.68, + "end": 462.82, + "probability": 1.0 + }, + { + "word": " that.", + "start": 462.82, + "end": 463.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 173, + "text": "You, and you have different sort of subcategories of bad people out there that are preying on different demographics.", + "start": 463.44, + "end": 470.56, + "words": [ + { + "word": " You,", + "start": 463.44, + "end": 463.84, + "probability": 0.85693359375 + }, + { + "word": " and", + "start": 463.98, + "end": 464.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 464.22, + "end": 464.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 464.4, + "end": 464.5, + "probability": 1.0 + }, + { + "word": " different", + "start": 464.5, + "end": 464.76, + "probability": 1.0 + }, + { + "word": " sort", + "start": 464.76, + "end": 465.26, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 465.26, + "end": 465.46, + "probability": 1.0 + }, + { + "word": " subcategories", + "start": 465.46, + "end": 466.84, + "probability": 0.9443359375 + }, + { + "word": " of", + "start": 466.84, + "end": 467.32, + "probability": 0.99951171875 + }, + { + "word": " bad", + "start": 467.32, + "end": 467.7, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 467.7, + "end": 468.14, + "probability": 1.0 + }, + { + "word": " out", + "start": 468.14, + "end": 468.64, + "probability": 0.99267578125 + }, + { + "word": " there", + "start": 468.64, + "end": 468.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 468.88, + "end": 469.08, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 469.08, + "end": 469.18, + "probability": 0.9990234375 + }, + { + "word": " preying", + "start": 469.18, + "end": 469.42, + "probability": 0.8876953125 + }, + { + "word": " on", + "start": 469.42, + "end": 469.56, + "probability": 1.0 + }, + { + "word": " different", + "start": 469.56, + "end": 469.88, + "probability": 0.99853515625 + }, + { + "word": " demographics.", + "start": 469.88, + "end": 470.56, + "probability": 0.9951171875 + } + ] + }, + { + "id": 174, + "text": "Um, and those targeted phishing messages.", + "start": 472.26000000000005, + "end": 474.84, + "words": [ + { + "word": " Um,", + "start": 472.26000000000005, + "end": 472.66, + "probability": 0.97900390625 + }, + { + "word": " and", + "start": 472.66, + "end": 473.06, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 473.06, + "end": 473.48, + "probability": 0.998046875 + }, + { + "word": " targeted", + "start": 473.48, + "end": 474.04, + "probability": 0.9990234375 + }, + { + "word": " phishing", + "start": 474.04, + "end": 474.48, + "probability": 0.83203125 + }, + { + "word": " messages.", + "start": 474.48, + "end": 474.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 175, + "text": "Are, are, you know, they're the ones that most people will fall for, right?", + "start": 475.34, + "end": 479.38, + "words": [ + { + "word": " Are,", + "start": 475.34, + "end": 475.44, + "probability": 0.0185089111328125 + }, + { + "word": " are,", + "start": 475.6, + "end": 476.08, + "probability": 0.255126953125 + }, + { + "word": " you", + "start": 476.2, + "end": 476.64, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 476.64, + "end": 476.8, + "probability": 1.0 + }, + { + "word": " they're", + "start": 476.8, + "end": 476.9, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 476.9, + "end": 476.96, + "probability": 1.0 + }, + { + "word": " ones", + "start": 476.96, + "end": 477.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 477.14, + "end": 477.32, + "probability": 0.9990234375 + }, + { + "word": " most", + "start": 477.32, + "end": 477.54, + "probability": 0.99755859375 + }, + { + "word": " people", + "start": 477.54, + "end": 477.96, + "probability": 1.0 + }, + { + "word": " will", + "start": 477.96, + "end": 478.22, + "probability": 1.0 + }, + { + "word": " fall", + "start": 478.22, + "end": 478.58, + "probability": 1.0 + }, + { + "word": " for,", + "start": 478.58, + "end": 478.94, + "probability": 1.0 + }, + { + "word": " right?", + "start": 479.06, + "end": 479.38, + "probability": 1.0 + } + ] + }, + { + "id": 176, + "text": "You're, there's a lot of ones that are like PayPal.", + "start": 479.5, + "end": 482.38, + "words": [ + { + "word": " You're,", + "start": 479.5, + "end": 479.9, + "probability": 0.98193359375 + }, + { + "word": " there's", + "start": 479.9, + "end": 480.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 480.98, + "end": 481.04, + "probability": 1.0 + }, + { + "word": " lot", + "start": 481.04, + "end": 481.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 481.2, + "end": 481.24, + "probability": 1.0 + }, + { + "word": " ones", + "start": 481.24, + "end": 481.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 481.46, + "end": 481.62, + "probability": 1.0 + }, + { + "word": " are", + "start": 481.62, + "end": 481.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 481.74, + "end": 481.98, + "probability": 0.9833984375 + }, + { + "word": " PayPal.", + "start": 481.98, + "end": 482.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 177, + "text": "Like, you know, your PayPal account has been suspended or, uh, there's some really good ones from Chase.", + "start": 482.9, + "end": 488.78, + "words": [ + { + "word": " Like,", + "start": 482.9, + "end": 483.32, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 483.38, + "end": 483.5, + "probability": 1.0 + }, + { + "word": " know,", + "start": 483.5, + "end": 483.7, + "probability": 1.0 + }, + { + "word": " your", + "start": 483.7, + "end": 483.92, + "probability": 0.99951171875 + }, + { + "word": " PayPal", + "start": 483.92, + "end": 484.22, + "probability": 1.0 + }, + { + "word": " account", + "start": 484.22, + "end": 484.44, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 484.44, + "end": 484.58, + "probability": 1.0 + }, + { + "word": " been", + "start": 484.58, + "end": 484.7, + "probability": 1.0 + }, + { + "word": " suspended", + "start": 484.7, + "end": 485.12, + "probability": 1.0 + }, + { + "word": " or,", + "start": 485.12, + "end": 485.64, + "probability": 0.450439453125 + }, + { + "word": " uh,", + "start": 485.72, + "end": 486.4, + "probability": 0.990234375 + }, + { + "word": " there's", + "start": 486.62, + "end": 487.44, + "probability": 1.0 + }, + { + "word": " some", + "start": 487.44, + "end": 487.54, + "probability": 1.0 + }, + { + "word": " really", + "start": 487.54, + "end": 487.88, + "probability": 1.0 + }, + { + "word": " good", + "start": 487.88, + "end": 488.16, + "probability": 1.0 + }, + { + "word": " ones", + "start": 488.16, + "end": 488.36, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 488.36, + "end": 488.52, + "probability": 0.99951171875 + }, + { + "word": " Chase.", + "start": 488.52, + "end": 488.78, + "probability": 0.9130859375 + } + ] + }, + { + "id": 178, + "text": "I mean, they are convincing.", + "start": 488.98, + "end": 490.5, + "words": [ + { + "word": " I", + "start": 488.98, + "end": 489.4, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 489.4, + "end": 489.58, + "probability": 1.0 + }, + { + "word": " they", + "start": 489.6, + "end": 489.72, + "probability": 1.0 + }, + { + "word": " are", + "start": 489.72, + "end": 489.92, + "probability": 1.0 + }, + { + "word": " convincing.", + "start": 489.92, + "end": 490.5, + "probability": 1.0 + } + ] + }, + { + "id": 179, + "text": "Western Union.", + "start": 490.98, + "end": 491.7, + "words": [ + { + "word": " Western", + "start": 490.98, + "end": 491.4, + "probability": 0.99951171875 + }, + { + "word": " Union.", + "start": 491.4, + "end": 491.7, + "probability": 0.966796875 + } + ] + }, + { + "id": 180, + "text": "They don't do the Western Union as much anymore.", + "start": 492.26, + "end": 494.1, + "words": [ + { + "word": " They", + "start": 492.26, + "end": 492.68, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 492.68, + "end": 492.86, + "probability": 1.0 + }, + { + "word": " do", + "start": 492.86, + "end": 492.98, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 492.98, + "end": 493.12, + "probability": 1.0 + }, + { + "word": " Western", + "start": 493.12, + "end": 493.38, + "probability": 1.0 + }, + { + "word": " Union", + "start": 493.38, + "end": 493.62, + "probability": 0.716796875 + }, + { + "word": " as", + "start": 493.62, + "end": 493.72, + "probability": 0.9580078125 + }, + { + "word": " much", + "start": 493.72, + "end": 493.88, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 493.88, + "end": 494.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 181, + "text": "Not so much.", + "start": 494.22, + "end": 494.68, + "words": [ + { + "word": " Not", + "start": 494.22, + "end": 494.44, + "probability": 0.90576171875 + }, + { + "word": " so", + "start": 494.44, + "end": 494.56, + "probability": 1.0 + }, + { + "word": " much.", + "start": 494.56, + "end": 494.68, + "probability": 1.0 + } + ] + }, + { + "id": 182, + "text": "Uh, but the, the Chase ones right now are, wow, they're, they're convincing.", + "start": 494.74, + "end": 499.16, + "words": [ + { + "word": " Uh,", + "start": 494.74, + "end": 495.16, + "probability": 0.84326171875 + }, + { + "word": " but", + "start": 495.28, + "end": 495.5, + "probability": 1.0 + }, + { + "word": " the,", + "start": 495.5, + "end": 495.68, + "probability": 0.970703125 + }, + { + "word": " the", + "start": 495.72, + "end": 495.88, + "probability": 1.0 + }, + { + "word": " Chase", + "start": 495.88, + "end": 496.16, + "probability": 0.9970703125 + }, + { + "word": " ones", + "start": 496.16, + "end": 496.42, + "probability": 1.0 + }, + { + "word": " right", + "start": 496.42, + "end": 496.64, + "probability": 1.0 + }, + { + "word": " now", + "start": 496.64, + "end": 496.9, + "probability": 1.0 + }, + { + "word": " are,", + "start": 496.9, + "end": 497.32, + "probability": 1.0 + }, + { + "word": " wow,", + "start": 497.4, + "end": 498.06, + "probability": 0.9990234375 + }, + { + "word": " they're,", + "start": 498.16, + "end": 498.4, + "probability": 1.0 + }, + { + "word": " they're", + "start": 498.4, + "end": 498.62, + "probability": 1.0 + }, + { + "word": " convincing.", + "start": 498.62, + "end": 499.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 183, + "text": "Cause I looked at one and I can, I can spot these things just immediately looking at them going, oh, that's, that's, that's.", + "start": 499.22, + "end": 504.58, + "words": [ + { + "word": " Cause", + "start": 499.22, + "end": 499.42, + "probability": 0.8486328125 + }, + { + "word": " I", + "start": 499.42, + "end": 499.54, + "probability": 1.0 + }, + { + "word": " looked", + "start": 499.54, + "end": 499.82, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 499.82, + "end": 499.98, + "probability": 1.0 + }, + { + "word": " one", + "start": 499.98, + "end": 500.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 500.14, + "end": 500.4, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 500.4, + "end": 500.54, + "probability": 1.0 + }, + { + "word": " can,", + "start": 500.54, + "end": 500.8, + "probability": 1.0 + }, + { + "word": " I", + "start": 500.8, + "end": 500.96, + "probability": 1.0 + }, + { + "word": " can", + "start": 500.96, + "end": 501.12, + "probability": 1.0 + }, + { + "word": " spot", + "start": 501.12, + "end": 501.36, + "probability": 0.99853515625 + }, + { + "word": " these", + "start": 501.36, + "end": 501.6, + "probability": 1.0 + }, + { + "word": " things", + "start": 501.6, + "end": 501.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 501.92, + "end": 502.18, + "probability": 0.998046875 + }, + { + "word": " immediately", + "start": 502.18, + "end": 502.62, + "probability": 0.99951171875 + }, + { + "word": " looking", + "start": 502.62, + "end": 503.08, + "probability": 0.9970703125 + }, + { + "word": " at", + "start": 503.08, + "end": 503.28, + "probability": 1.0 + }, + { + "word": " them", + "start": 503.28, + "end": 503.38, + "probability": 0.85595703125 + }, + { + "word": " going,", + "start": 503.38, + "end": 503.5, + "probability": 0.89697265625 + }, + { + "word": " oh,", + "start": 503.58, + "end": 503.72, + "probability": 0.8681640625 + }, + { + "word": " that's,", + "start": 503.76, + "end": 504.1, + "probability": 1.0 + }, + { + "word": " that's,", + "start": 504.1, + "end": 504.52, + "probability": 1.0 + }, + { + "word": " that's.", + "start": 504.52, + "end": 504.58, + "probability": 1.0 + } + ] + }, + { + "id": 184, + "text": "That's not even real.", + "start": 504.58, + "end": 505.84, + "words": [ + { + "word": " That's", + "start": 504.58, + "end": 505.2, + "probability": 0.64990234375 + }, + { + "word": " not", + "start": 505.2, + "end": 505.34, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 505.34, + "end": 505.58, + "probability": 1.0 + }, + { + "word": " real.", + "start": 505.58, + "end": 505.84, + "probability": 1.0 + } + ] + }, + { + "id": 185, + "text": "And I looked at it and I was just like, really?", + "start": 506.22, + "end": 508.46, + "words": [ + { + "word": " And", + "start": 506.22, + "end": 506.6, + "probability": 0.91845703125 + }, + { + "word": " I", + "start": 506.6, + "end": 506.72, + "probability": 0.99755859375 + }, + { + "word": " looked", + "start": 506.72, + "end": 506.96, + "probability": 1.0 + }, + { + "word": " at", + "start": 506.96, + "end": 507.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 507.14, + "end": 507.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 507.32, + "end": 507.38, + "probability": 0.5166015625 + }, + { + "word": " I", + "start": 507.38, + "end": 507.44, + "probability": 1.0 + }, + { + "word": " was", + "start": 507.44, + "end": 507.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 507.56, + "end": 507.68, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 507.68, + "end": 507.86, + "probability": 0.9990234375 + }, + { + "word": " really?", + "start": 507.96, + "end": 508.46, + "probability": 0.96337890625 + } + ] + }, + { + "id": 186, + "text": "You know, and there was, there was like a good five seconds where I was like, wow, this is legit.", + "start": 508.88, + "end": 513.94, + "words": [ + { + "word": " You", + "start": 508.88, + "end": 509.26, + "probability": 0.55712890625 + }, + { + "word": " know,", + "start": 509.26, + "end": 509.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 509.44, + "end": 509.54, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 509.54, + "end": 509.92, + "probability": 1.0 + }, + { + "word": " was,", + "start": 509.92, + "end": 510.1, + "probability": 1.0 + }, + { + "word": " there", + "start": 510.1, + "end": 510.32, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 510.32, + "end": 510.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 510.46, + "end": 510.62, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 510.62, + "end": 510.72, + "probability": 1.0 + }, + { + "word": " good", + "start": 510.72, + "end": 510.9, + "probability": 1.0 + }, + { + "word": " five", + "start": 510.9, + "end": 511.26, + "probability": 0.99951171875 + }, + { + "word": " seconds", + "start": 511.26, + "end": 511.76, + "probability": 1.0 + }, + { + "word": " where", + "start": 511.76, + "end": 511.94, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 511.94, + "end": 512.04, + "probability": 1.0 + }, + { + "word": " was", + "start": 512.04, + "end": 512.1, + "probability": 1.0 + }, + { + "word": " like,", + "start": 512.1, + "end": 512.32, + "probability": 1.0 + }, + { + "word": " wow,", + "start": 512.46, + "end": 513.16, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 513.28, + "end": 513.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 513.4, + "end": 513.54, + "probability": 1.0 + }, + { + "word": " legit.", + "start": 513.54, + "end": 513.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 187, + "text": "Right.", + "start": 514.46, + "end": 514.84, + "words": [ + { + "word": " Right.", + "start": 514.46, + "end": 514.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 188, + "text": "And I was like, this is not even possible.", + "start": 514.96, + "end": 516.76, + "words": [ + { + "word": " And", + "start": 514.96, + "end": 515.2, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 515.2, + "end": 515.42, + "probability": 1.0 + }, + { + "word": " was", + "start": 515.42, + "end": 515.68, + "probability": 1.0 + }, + { + "word": " like,", + "start": 515.68, + "end": 515.76, + "probability": 1.0 + }, + { + "word": " this", + "start": 515.8, + "end": 515.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 515.88, + "end": 516.02, + "probability": 1.0 + }, + { + "word": " not", + "start": 516.02, + "end": 516.18, + "probability": 1.0 + }, + { + "word": " even", + "start": 516.18, + "end": 516.36, + "probability": 1.0 + }, + { + "word": " possible.", + "start": 516.36, + "end": 516.76, + "probability": 1.0 + } + ] + }, + { + "id": 189, + "text": "And, uh, upon, upon further inspection, I mean, yes, it was fake, but you couldn't tell by looking at it.", + "start": 517.44, + "end": 524.56, + "words": [ + { + "word": " And,", + "start": 517.44, + "end": 517.82, + "probability": 0.9990234375 + }, + { + "word": " uh,", + "start": 518.02, + "end": 518.24, + "probability": 0.994140625 + }, + { + "word": " upon,", + "start": 518.42, + "end": 518.74, + "probability": 0.99853515625 + }, + { + "word": " upon", + "start": 518.8, + "end": 519.04, + "probability": 1.0 + }, + { + "word": " further", + "start": 519.04, + "end": 519.48, + "probability": 1.0 + }, + { + "word": " inspection,", + "start": 519.48, + "end": 520.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 520.08, + "end": 520.26, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 520.26, + "end": 520.48, + "probability": 1.0 + }, + { + "word": " yes,", + "start": 520.52, + "end": 520.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 521.1, + "end": 521.26, + "probability": 1.0 + }, + { + "word": " was", + "start": 521.26, + "end": 521.48, + "probability": 1.0 + }, + { + "word": " fake,", + "start": 521.48, + "end": 521.96, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 522.02, + "end": 522.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 522.24, + "end": 522.76, + "probability": 0.99951171875 + }, + { + "word": " couldn't", + "start": 522.76, + "end": 523.26, + "probability": 1.0 + }, + { + "word": " tell", + "start": 523.26, + "end": 523.48, + "probability": 1.0 + }, + { + "word": " by", + "start": 523.48, + "end": 523.68, + "probability": 0.99951171875 + }, + { + "word": " looking", + "start": 523.68, + "end": 524.04, + "probability": 1.0 + }, + { + "word": " at", + "start": 524.04, + "end": 524.32, + "probability": 1.0 + }, + { + "word": " it.", + "start": 524.32, + "end": 524.56, + "probability": 1.0 + } + ] + }, + { + "id": 190, + "text": "It was just, I knew it was fake by circumstance.", + "start": 524.76, + "end": 526.88, + "words": [ + { + "word": " It", + "start": 524.76, + "end": 525.14, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 525.14, + "end": 525.3, + "probability": 1.0 + }, + { + "word": " just,", + "start": 525.3, + "end": 525.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 525.54, + "end": 525.68, + "probability": 1.0 + }, + { + "word": " knew", + "start": 525.68, + "end": 525.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 525.88, + "end": 525.94, + "probability": 1.0 + }, + { + "word": " was", + "start": 525.94, + "end": 526.1, + "probability": 1.0 + }, + { + "word": " fake", + "start": 526.1, + "end": 526.24, + "probability": 0.99755859375 + }, + { + "word": " by", + "start": 526.24, + "end": 526.44, + "probability": 0.99951171875 + }, + { + "word": " circumstance.", + "start": 526.44, + "end": 526.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 191, + "text": "So there's some really, really good, uh, phishing emails that are out there that are trying to infect you.", + "start": 528.12, + "end": 533.8, + "words": [ + { + "word": " So", + "start": 528.12, + "end": 528.5, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 528.5, + "end": 528.88, + "probability": 0.9453125 + }, + { + "word": " some", + "start": 528.88, + "end": 529.0, + "probability": 1.0 + }, + { + "word": " really,", + "start": 529.0, + "end": 529.48, + "probability": 1.0 + }, + { + "word": " really", + "start": 529.48, + "end": 530.04, + "probability": 1.0 + }, + { + "word": " good,", + "start": 530.04, + "end": 530.66, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 530.68, + "end": 531.44, + "probability": 0.99951171875 + }, + { + "word": " phishing", + "start": 531.54, + "end": 531.88, + "probability": 0.98974609375 + }, + { + "word": " emails", + "start": 531.88, + "end": 532.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 532.18, + "end": 532.4, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 532.4, + "end": 532.44, + "probability": 1.0 + }, + { + "word": " out", + "start": 532.44, + "end": 532.58, + "probability": 1.0 + }, + { + "word": " there", + "start": 532.58, + "end": 532.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 532.72, + "end": 532.88, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 532.88, + "end": 532.96, + "probability": 1.0 + }, + { + "word": " trying", + "start": 532.96, + "end": 533.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 533.2, + "end": 533.36, + "probability": 1.0 + }, + { + "word": " infect", + "start": 533.36, + "end": 533.6, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 533.6, + "end": 533.8, + "probability": 1.0 + } + ] + }, + { + "id": 192, + "text": "Um, but a lot of them have to do with something like, you know, there's a package or, um, uh, right now they're doing a bunch of tax ones.", + "start": 534.64, + "end": 542.38, + "words": [ + { + "word": " Um,", + "start": 534.64, + "end": 535.0, + "probability": 0.2210693359375 + }, + { + "word": " but", + "start": 535.0, + "end": 535.36, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 535.36, + "end": 535.62, + "probability": 0.9951171875 + }, + { + "word": " lot", + "start": 535.62, + "end": 535.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 535.84, + "end": 535.94, + "probability": 1.0 + }, + { + "word": " them", + "start": 535.94, + "end": 536.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 536.06, + "end": 536.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 536.18, + "end": 536.34, + "probability": 1.0 + }, + { + "word": " do", + "start": 536.34, + "end": 536.48, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 536.48, + "end": 536.62, + "probability": 0.98828125 + }, + { + "word": " something", + "start": 536.62, + "end": 537.02, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 537.02, + "end": 537.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 537.4, + "end": 537.52, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 537.52, + "end": 537.6, + "probability": 1.0 + }, + { + "word": " there's", + "start": 537.62, + "end": 537.86, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 537.86, + "end": 537.9, + "probability": 1.0 + }, + { + "word": " package", + "start": 537.9, + "end": 538.28, + "probability": 0.99951171875 + }, + { + "word": " or,", + "start": 538.28, + "end": 538.8, + "probability": 0.9921875 + }, + { + "word": " um,", + "start": 538.94, + "end": 539.54, + "probability": 0.85888671875 + }, + { + "word": " uh,", + "start": 539.7, + "end": 540.56, + "probability": 0.9931640625 + }, + { + "word": " right", + "start": 540.64, + "end": 540.98, + "probability": 0.9970703125 + }, + { + "word": " now", + "start": 540.98, + "end": 541.22, + "probability": 1.0 + }, + { + "word": " they're", + "start": 541.22, + "end": 541.4, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 541.4, + "end": 541.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 541.5, + "end": 541.6, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 541.6, + "end": 541.72, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 541.72, + "end": 541.82, + "probability": 1.0 + }, + { + "word": " tax", + "start": 541.82, + "end": 542.1, + "probability": 0.99951171875 + }, + { + "word": " ones.", + "start": 542.1, + "end": 542.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 193, + "text": "You know, like you're, uh, you're to collect your tax payment.", + "start": 543.06, + "end": 546.84, + "words": [ + { + "word": " You", + "start": 543.06, + "end": 543.42, + "probability": 0.994140625 + }, + { + "word": " know,", + "start": 543.42, + "end": 543.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 543.6, + "end": 543.82, + "probability": 0.99951171875 + }, + { + "word": " you're,", + "start": 543.82, + "end": 544.26, + "probability": 0.8330078125 + }, + { + "word": " uh,", + "start": 544.26, + "end": 544.56, + "probability": 0.9921875 + }, + { + "word": " you're", + "start": 544.68, + "end": 545.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 545.18, + "end": 545.94, + "probability": 0.9873046875 + }, + { + "word": " collect", + "start": 545.94, + "end": 546.26, + "probability": 1.0 + }, + { + "word": " your", + "start": 546.26, + "end": 546.4, + "probability": 1.0 + }, + { + "word": " tax", + "start": 546.4, + "end": 546.6, + "probability": 1.0 + }, + { + "word": " payment.", + "start": 546.6, + "end": 546.84, + "probability": 1.0 + } + ] + }, + { + "id": 194, + "text": "We need you to fill out this form or whatever.", + "start": 546.9, + "end": 549.74, + "words": [ + { + "word": " We", + "start": 546.9, + "end": 547.02, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 547.02, + "end": 547.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 547.18, + "end": 547.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 547.3, + "end": 547.34, + "probability": 1.0 + }, + { + "word": " fill", + "start": 547.34, + "end": 547.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 547.48, + "end": 547.58, + "probability": 0.97802734375 + }, + { + "word": " this", + "start": 547.58, + "end": 547.72, + "probability": 1.0 + }, + { + "word": " form", + "start": 547.72, + "end": 548.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 548.0, + "end": 549.02, + "probability": 0.99560546875 + }, + { + "word": " whatever.", + "start": 549.02, + "end": 549.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 195, + "text": "And, uh, so just be, be careful, be careful about just if it's in a zip file at all.", + "start": 550.32, + "end": 555.72, + "words": [ + { + "word": " And,", + "start": 550.32, + "end": 550.68, + "probability": 0.9912109375 + }, + { + "word": " uh,", + "start": 550.78, + "end": 551.04, + "probability": 0.99462890625 + }, + { + "word": " so", + "start": 551.24, + "end": 551.56, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 551.56, + "end": 551.78, + "probability": 1.0 + }, + { + "word": " be,", + "start": 551.78, + "end": 551.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 552.0, + "end": 552.18, + "probability": 1.0 + }, + { + "word": " careful,", + "start": 552.18, + "end": 552.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 552.66, + "end": 553.06, + "probability": 1.0 + }, + { + "word": " careful", + "start": 553.06, + "end": 553.34, + "probability": 1.0 + }, + { + "word": " about", + "start": 553.34, + "end": 553.6, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 553.6, + "end": 554.0, + "probability": 0.71630859375 + }, + { + "word": " if", + "start": 554.0, + "end": 554.34, + "probability": 0.94970703125 + }, + { + "word": " it's", + "start": 554.34, + "end": 554.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 554.5, + "end": 554.6, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 554.6, + "end": 554.66, + "probability": 1.0 + }, + { + "word": " zip", + "start": 554.66, + "end": 554.84, + "probability": 0.990234375 + }, + { + "word": " file", + "start": 554.84, + "end": 555.1, + "probability": 1.0 + }, + { + "word": " at", + "start": 555.1, + "end": 555.4, + "probability": 0.99853515625 + }, + { + "word": " all.", + "start": 555.4, + "end": 555.72, + "probability": 1.0 + } + ] + }, + { + "id": 196, + "text": "Yeah.", + "start": 557.18, + "end": 557.54, + "words": [ + { + "word": " Yeah.", + "start": 557.18, + "end": 557.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 197, + "text": "Just don't even open it.", + "start": 557.7, + "end": 558.66, + "words": [ + { + "word": " Just", + "start": 557.7, + "end": 557.94, + "probability": 0.876953125 + }, + { + "word": " don't", + "start": 557.94, + "end": 558.16, + "probability": 1.0 + }, + { + "word": " even", + "start": 558.16, + "end": 558.3, + "probability": 1.0 + }, + { + "word": " open", + "start": 558.3, + "end": 558.54, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 558.54, + "end": 558.66, + "probability": 1.0 + } + ] + }, + { + "id": 198, + "text": "Delete it.", + "start": 558.7, + "end": 559.18, + "words": [ + { + "word": " Delete", + "start": 558.7, + "end": 559.0, + "probability": 0.9951171875 + }, + { + "word": " it.", + "start": 559.0, + "end": 559.18, + "probability": 1.0 + } + ] + }, + { + "id": 199, + "text": "What about the rule of thumb?", + "start": 559.24, + "end": 560.26, + "words": [ + { + "word": " What", + "start": 559.24, + "end": 559.56, + "probability": 0.99658203125 + }, + { + "word": " about", + "start": 559.56, + "end": 559.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 559.74, + "end": 559.82, + "probability": 1.0 + }, + { + "word": " rule", + "start": 559.82, + "end": 559.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 559.96, + "end": 560.08, + "probability": 1.0 + }, + { + "word": " thumb?", + "start": 560.08, + "end": 560.26, + "probability": 1.0 + } + ] + }, + { + "id": 200, + "text": "If you don't recognize the sender?", + "start": 560.52, + "end": 562.02, + "words": [ + { + "word": " If", + "start": 560.52, + "end": 560.88, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 560.88, + "end": 561.02, + "probability": 1.0 + }, + { + "word": " don't", + "start": 561.02, + "end": 561.14, + "probability": 1.0 + }, + { + "word": " recognize", + "start": 561.14, + "end": 561.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 561.42, + "end": 561.66, + "probability": 1.0 + }, + { + "word": " sender?", + "start": 561.66, + "end": 562.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 201, + "text": "Well, they're phishing this.", + "start": 562.5, + "end": 563.66, + "words": [ + { + "word": " Well,", + "start": 562.5, + "end": 562.86, + "probability": 0.9951171875 + }, + { + "word": " they're", + "start": 562.96, + "end": 563.18, + "probability": 0.99951171875 + }, + { + "word": " phishing", + "start": 563.18, + "end": 563.5, + "probability": 0.6591796875 + }, + { + "word": " this.", + "start": 563.5, + "end": 563.66, + "probability": 0.783203125 + } + ] + }, + { + "id": 202, + "text": "The, the sender.", + "start": 563.7, + "end": 564.56, + "words": [ + { + "word": " The,", + "start": 563.7, + "end": 563.82, + "probability": 0.98095703125 + }, + { + "word": " the", + "start": 563.92, + "end": 564.18, + "probability": 0.998046875 + }, + { + "word": " sender.", + "start": 564.18, + "end": 564.56, + "probability": 0.8212890625 + } + ] + }, + { + "id": 203, + "text": "The sender name.", + "start": 564.58, + "end": 564.78, + "words": [ + { + "word": " The", + "start": 564.58, + "end": 564.66, + "probability": 0.014373779296875 + }, + { + "word": " sender", + "start": 564.66, + "end": 564.66, + "probability": 0.90380859375 + }, + { + "word": " name.", + "start": 564.66, + "end": 564.78, + "probability": 0.98681640625 + } + ] + }, + { + "id": 204, + "text": "A lot of times.", + "start": 564.94, + "end": 565.82, + "words": [ + { + "word": " A", + "start": 564.94, + "end": 565.24, + "probability": 0.75634765625 + }, + { + "word": " lot", + "start": 565.24, + "end": 565.4, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 565.4, + "end": 565.5, + "probability": 0.9990234375 + }, + { + "word": " times.", + "start": 565.5, + "end": 565.82, + "probability": 0.97705078125 + } + ] + }, + { + "id": 205, + "text": "I mean, the sender name looks legit unless you, you know, do some investigation.", + "start": 565.84, + "end": 569.54, + "words": [ + { + "word": " I", + "start": 565.84, + "end": 566.08, + "probability": 0.4326171875 + }, + { + "word": " mean,", + "start": 566.08, + "end": 566.1, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 566.12, + "end": 566.22, + "probability": 0.9931640625 + }, + { + "word": " sender", + "start": 566.22, + "end": 566.54, + "probability": 0.9990234375 + }, + { + "word": " name", + "start": 566.54, + "end": 566.68, + "probability": 0.99853515625 + }, + { + "word": " looks", + "start": 566.68, + "end": 567.08, + "probability": 0.9912109375 + }, + { + "word": " legit", + "start": 567.08, + "end": 567.56, + "probability": 0.99853515625 + }, + { + "word": " unless", + "start": 567.56, + "end": 567.94, + "probability": 0.92333984375 + }, + { + "word": " you,", + "start": 567.94, + "end": 568.28, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 568.38, + "end": 568.7, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 568.7, + "end": 568.86, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 568.86, + "end": 568.92, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 568.92, + "end": 569.08, + "probability": 0.99951171875 + }, + { + "word": " investigation.", + "start": 569.08, + "end": 569.54, + "probability": 0.9912109375 + } + ] + }, + { + "id": 206, + "text": "Um, but what it really comes down to is that, uh, you know, it's, it's about the type of file that they're sending you.", + "start": 570.52, + "end": 577.92, + "words": [ + { + "word": " Um,", + "start": 570.52, + "end": 571.0, + "probability": 0.1727294921875 + }, + { + "word": " but", + "start": 571.18, + "end": 571.58, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 571.58, + "end": 571.76, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 571.76, + "end": 571.92, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 571.92, + "end": 572.04, + "probability": 1.0 + }, + { + "word": " comes", + "start": 572.04, + "end": 572.26, + "probability": 1.0 + }, + { + "word": " down", + "start": 572.26, + "end": 572.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 572.52, + "end": 572.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 572.68, + "end": 572.86, + "probability": 0.99658203125 + }, + { + "word": " that,", + "start": 572.86, + "end": 573.22, + "probability": 0.9990234375 + }, + { + "word": " uh,", + "start": 573.26, + "end": 573.48, + "probability": 0.91015625 + }, + { + "word": " you", + "start": 573.74, + "end": 574.28, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 574.28, + "end": 574.4, + "probability": 1.0 + }, + { + "word": " it's,", + "start": 574.4, + "end": 574.8, + "probability": 1.0 + }, + { + "word": " it's", + "start": 574.8, + "end": 576.0, + "probability": 0.99609375 + }, + { + "word": " about", + "start": 576.0, + "end": 576.16, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 576.16, + "end": 576.4, + "probability": 1.0 + }, + { + "word": " type", + "start": 576.4, + "end": 576.68, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 576.68, + "end": 576.86, + "probability": 1.0 + }, + { + "word": " file", + "start": 576.86, + "end": 577.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 577.14, + "end": 577.36, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 577.36, + "end": 577.5, + "probability": 1.0 + }, + { + "word": " sending", + "start": 577.5, + "end": 577.72, + "probability": 1.0 + }, + { + "word": " you.", + "start": 577.72, + "end": 577.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 207, + "text": "As an example, um, for most of the people we host email for bunches of people in town, um, and all over the world, actually, we host a lot of email accounts.", + "start": 578.4, + "end": 590.22, + "words": [ + { + "word": " As", + "start": 578.4, + "end": 578.88, + "probability": 0.99072265625 + }, + { + "word": " an", + "start": 578.88, + "end": 579.06, + "probability": 1.0 + }, + { + "word": " example,", + "start": 579.06, + "end": 579.42, + "probability": 1.0 + }, + { + "word": " um,", + "start": 579.56, + "end": 579.92, + "probability": 0.99365234375 + }, + { + "word": " for", + "start": 580.18, + "end": 580.84, + "probability": 0.99951171875 + }, + { + "word": " most", + "start": 580.84, + "end": 581.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 581.2, + "end": 581.32, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 581.32, + "end": 581.38, + "probability": 1.0 + }, + { + "word": " people", + "start": 581.38, + "end": 581.66, + "probability": 1.0 + }, + { + "word": " we", + "start": 581.66, + "end": 582.2, + "probability": 0.262451171875 + }, + { + "word": " host", + "start": 582.2, + "end": 582.74, + "probability": 0.998046875 + }, + { + "word": " email", + "start": 582.74, + "end": 583.28, + "probability": 0.99658203125 + }, + { + "word": " for", + "start": 583.28, + "end": 583.6, + "probability": 0.99951171875 + }, + { + "word": " bunches", + "start": 583.6, + "end": 584.84, + "probability": 0.97705078125 + }, + { + "word": " of", + "start": 584.84, + "end": 584.88, + "probability": 1.0 + }, + { + "word": " people", + "start": 584.88, + "end": 585.16, + "probability": 1.0 + }, + { + "word": " in", + "start": 585.16, + "end": 585.8, + "probability": 0.974609375 + }, + { + "word": " town,", + "start": 585.8, + "end": 586.14, + "probability": 0.99951171875 + }, + { + "word": " um,", + "start": 586.28, + "end": 586.62, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 586.74, + "end": 587.06, + "probability": 1.0 + }, + { + "word": " all", + "start": 587.06, + "end": 587.24, + "probability": 1.0 + }, + { + "word": " over", + "start": 587.24, + "end": 587.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 587.38, + "end": 587.5, + "probability": 1.0 + }, + { + "word": " world,", + "start": 587.5, + "end": 587.64, + "probability": 1.0 + }, + { + "word": " actually,", + "start": 587.66, + "end": 587.9, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 587.94, + "end": 588.58, + "probability": 0.998046875 + }, + { + "word": " host", + "start": 588.58, + "end": 588.76, + "probability": 0.88720703125 + }, + { + "word": " a", + "start": 588.76, + "end": 589.18, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 589.18, + "end": 589.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 589.48, + "end": 589.64, + "probability": 1.0 + }, + { + "word": " email", + "start": 589.64, + "end": 589.82, + "probability": 0.99951171875 + }, + { + "word": " accounts.", + "start": 589.82, + "end": 590.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 208, + "text": "And for the majority of them by default, we just deny.", + "start": 590.38, + "end": 594.42, + "words": [ + { + "word": " And", + "start": 590.38, + "end": 590.68, + "probability": 0.99365234375 + }, + { + "word": " for", + "start": 590.68, + "end": 591.04, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 591.04, + "end": 591.38, + "probability": 0.99853515625 + }, + { + "word": " majority", + "start": 591.38, + "end": 591.78, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 591.78, + "end": 592.12, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 592.12, + "end": 592.36, + "probability": 0.9970703125 + }, + { + "word": " by", + "start": 592.36, + "end": 592.78, + "probability": 0.48388671875 + }, + { + "word": " default,", + "start": 592.78, + "end": 593.24, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 593.34, + "end": 593.76, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 593.76, + "end": 594.0, + "probability": 0.994140625 + }, + { + "word": " deny.", + "start": 594.0, + "end": 594.42, + "probability": 0.93310546875 + } + ] + }, + { + "id": 209, + "text": "We just deny zip accounts or zip files just right out of the box.", + "start": 594.58, + "end": 597.74, + "words": [ + { + "word": " We", + "start": 594.58, + "end": 594.66, + "probability": 9.059906005859375e-05 + }, + { + "word": " just", + "start": 594.66, + "end": 594.66, + "probability": 0.0198974609375 + }, + { + "word": " deny", + "start": 594.66, + "end": 594.66, + "probability": 0.0020351409912109375 + }, + { + "word": " zip", + "start": 594.66, + "end": 594.8, + "probability": 0.7958984375 + }, + { + "word": " accounts", + "start": 594.8, + "end": 595.1, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 595.1, + "end": 595.38, + "probability": 0.99267578125 + }, + { + "word": " zip", + "start": 595.38, + "end": 595.6, + "probability": 0.99951171875 + }, + { + "word": " files", + "start": 595.6, + "end": 596.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 596.0, + "end": 596.34, + "probability": 0.96630859375 + }, + { + "word": " right", + "start": 596.34, + "end": 597.14, + "probability": 1.0 + }, + { + "word": " out", + "start": 597.14, + "end": 597.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 597.32, + "end": 597.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 597.42, + "end": 597.44, + "probability": 1.0 + }, + { + "word": " box.", + "start": 597.44, + "end": 597.74, + "probability": 1.0 + } + ] + }, + { + "id": 210, + "text": "Just don't even try because the zip file will never get there.", + "start": 597.86, + "end": 601.8, + "words": [ + { + "word": " Just", + "start": 597.86, + "end": 598.18, + "probability": 0.93212890625 + }, + { + "word": " don't", + "start": 598.18, + "end": 599.04, + "probability": 0.9970703125 + }, + { + "word": " even", + "start": 599.04, + "end": 599.14, + "probability": 1.0 + }, + { + "word": " try", + "start": 599.14, + "end": 599.4, + "probability": 1.0 + }, + { + "word": " because", + "start": 599.4, + "end": 600.34, + "probability": 0.59716796875 + }, + { + "word": " the", + "start": 600.34, + "end": 600.64, + "probability": 1.0 + }, + { + "word": " zip", + "start": 600.64, + "end": 600.82, + "probability": 1.0 + }, + { + "word": " file", + "start": 600.82, + "end": 601.0, + "probability": 1.0 + }, + { + "word": " will", + "start": 601.0, + "end": 601.16, + "probability": 1.0 + }, + { + "word": " never", + "start": 601.16, + "end": 601.38, + "probability": 1.0 + }, + { + "word": " get", + "start": 601.38, + "end": 601.58, + "probability": 1.0 + }, + { + "word": " there.", + "start": 601.58, + "end": 601.8, + "probability": 1.0 + } + ] + }, + { + "id": 211, + "text": "I'll just say good rule of thumb.", + "start": 602.14, + "end": 603.22, + "words": [ + { + "word": " I'll", + "start": 602.14, + "end": 602.38, + "probability": 0.9208984375 + }, + { + "word": " just", + "start": 602.38, + "end": 602.46, + "probability": 1.0 + }, + { + "word": " say", + "start": 602.46, + "end": 602.62, + "probability": 0.9990234375 + }, + { + "word": " good", + "start": 602.62, + "end": 602.74, + "probability": 0.344970703125 + }, + { + "word": " rule", + "start": 602.74, + "end": 602.94, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 602.94, + "end": 603.06, + "probability": 1.0 + }, + { + "word": " thumb.", + "start": 603.06, + "end": 603.22, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "If there's an attachment, be suspicious.", + "start": 603.58, + "end": 606.32, + "words": [ + { + "word": " If", + "start": 603.58, + "end": 604.02, + "probability": 1.0 + }, + { + "word": " there's", + "start": 604.02, + "end": 604.24, + "probability": 1.0 + }, + { + "word": " an", + "start": 604.24, + "end": 604.3, + "probability": 1.0 + }, + { + "word": " attachment,", + "start": 604.3, + "end": 604.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 604.88, + "end": 605.94, + "probability": 1.0 + }, + { + "word": " suspicious.", + "start": 605.94, + "end": 606.32, + "probability": 1.0 + } + ] + }, + { + "id": 213, + "text": "I don't know.", + "start": 606.8, + "end": 607.48, + "words": [ + { + "word": " I", + "start": 606.8, + "end": 607.24, + "probability": 0.625 + }, + { + "word": " don't", + "start": 607.24, + "end": 607.42, + "probability": 0.99951171875 + }, + { + "word": " know.", + "start": 607.42, + "end": 607.48, + "probability": 0.9951171875 + } + ] + }, + { + "id": 214, + "text": "Yeah.", + "start": 607.48, + "end": 607.84, + "words": [ + { + "word": " Yeah.", + "start": 607.48, + "end": 607.84, + "probability": 0.5986328125 + } + ] + }, + { + "id": 215, + "text": "That's me.", + "start": 608.18, + "end": 608.76, + "words": [ + { + "word": " That's", + "start": 608.18, + "end": 608.62, + "probability": 0.9912109375 + }, + { + "word": " me.", + "start": 608.62, + "end": 608.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 216, + "text": "And that's, that's a very good thing to be.", + "start": 609.02, + "end": 612.14, + "words": [ + { + "word": " And", + "start": 609.02, + "end": 609.44, + "probability": 0.8427734375 + }, + { + "word": " that's,", + "start": 609.44, + "end": 609.86, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 609.86, + "end": 610.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 610.1, + "end": 610.16, + "probability": 1.0 + }, + { + "word": " very", + "start": 610.16, + "end": 610.4, + "probability": 1.0 + }, + { + "word": " good", + "start": 610.4, + "end": 610.66, + "probability": 1.0 + }, + { + "word": " thing", + "start": 610.66, + "end": 611.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 611.6, + "end": 611.92, + "probability": 1.0 + }, + { + "word": " be.", + "start": 611.92, + "end": 612.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 217, + "text": "Um, and, and luckily Outlook has fixed a lot of the problems that they used to have with, uh, auto opening attachments and infecting the machine and stuff like that.", + "start": 612.4, + "end": 620.4, + "words": [ + { + "word": " Um,", + "start": 612.4, + "end": 612.82, + "probability": 0.38720703125 + }, + { + "word": " and,", + "start": 613.02, + "end": 613.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 613.44, + "end": 613.92, + "probability": 1.0 + }, + { + "word": " luckily", + "start": 613.92, + "end": 614.26, + "probability": 0.99951171875 + }, + { + "word": " Outlook", + "start": 614.26, + "end": 614.74, + "probability": 0.8603515625 + }, + { + "word": " has", + "start": 614.74, + "end": 614.88, + "probability": 0.99853515625 + }, + { + "word": " fixed", + "start": 614.88, + "end": 615.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 615.1, + "end": 615.22, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 615.22, + "end": 615.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 615.34, + "end": 615.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 615.42, + "end": 615.48, + "probability": 1.0 + }, + { + "word": " problems", + "start": 615.48, + "end": 615.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 615.74, + "end": 615.84, + "probability": 1.0 + }, + { + "word": " they", + "start": 615.84, + "end": 615.98, + "probability": 1.0 + }, + { + "word": " used", + "start": 615.98, + "end": 616.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 616.1, + "end": 616.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 616.24, + "end": 616.38, + "probability": 1.0 + }, + { + "word": " with,", + "start": 616.38, + "end": 616.82, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 616.84, + "end": 617.1, + "probability": 0.998046875 + }, + { + "word": " auto", + "start": 617.22, + "end": 617.6, + "probability": 0.99951171875 + }, + { + "word": " opening", + "start": 617.6, + "end": 617.88, + "probability": 0.962890625 + }, + { + "word": " attachments", + "start": 617.88, + "end": 618.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 618.24, + "end": 618.74, + "probability": 0.9990234375 + }, + { + "word": " infecting", + "start": 618.74, + "end": 619.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 619.3, + "end": 619.36, + "probability": 1.0 + }, + { + "word": " machine", + "start": 619.36, + "end": 619.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 619.58, + "end": 619.8, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 619.8, + "end": 619.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 619.94, + "end": 620.18, + "probability": 1.0 + }, + { + "word": " that.", + "start": 620.18, + "end": 620.4, + "probability": 1.0 + } + ] + }, + { + "id": 218, + "text": "But there are some things that we're going to talk about after the break.", + "start": 620.84, + "end": 623.84, + "words": [ + { + "word": " But", + "start": 620.84, + "end": 621.28, + "probability": 0.99267578125 + }, + { + "word": " there", + "start": 621.28, + "end": 622.1, + "probability": 0.97705078125 + }, + { + "word": " are", + "start": 622.1, + "end": 622.22, + "probability": 1.0 + }, + { + "word": " some", + "start": 622.22, + "end": 622.34, + "probability": 1.0 + }, + { + "word": " things", + "start": 622.34, + "end": 622.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 622.58, + "end": 622.74, + "probability": 1.0 + }, + { + "word": " we're", + "start": 622.74, + "end": 622.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 622.88, + "end": 622.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 622.96, + "end": 623.06, + "probability": 1.0 + }, + { + "word": " talk", + "start": 623.06, + "end": 623.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 623.2, + "end": 623.36, + "probability": 1.0 + }, + { + "word": " after", + "start": 623.36, + "end": 623.52, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 623.52, + "end": 623.62, + "probability": 0.99951171875 + }, + { + "word": " break.", + "start": 623.62, + "end": 623.84, + "probability": 1.0 + } + ] + }, + { + "id": 219, + "text": "Which is, uh, ways that we can make sure that you are very safe.", + "start": 624.58, + "end": 629.34, + "words": [ + { + "word": " Which", + "start": 624.58, + "end": 624.96, + "probability": 0.1966552734375 + }, + { + "word": " is,", + "start": 624.96, + "end": 625.3, + "probability": 0.99755859375 + }, + { + "word": " uh,", + "start": 625.38, + "end": 625.66, + "probability": 0.8583984375 + }, + { + "word": " ways", + "start": 625.88, + "end": 626.34, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 626.34, + "end": 626.64, + "probability": 1.0 + }, + { + "word": " we", + "start": 626.64, + "end": 626.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 626.94, + "end": 627.22, + "probability": 1.0 + }, + { + "word": " make", + "start": 627.22, + "end": 627.76, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 627.76, + "end": 628.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 628.04, + "end": 628.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 628.22, + "end": 628.36, + "probability": 1.0 + }, + { + "word": " are", + "start": 628.36, + "end": 628.54, + "probability": 1.0 + }, + { + "word": " very", + "start": 628.54, + "end": 628.86, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 628.86, + "end": 629.34, + "probability": 1.0 + } + ] + }, + { + "id": 220, + "text": "And as usual, this episode, this first segment brought to you by Perfection Auto Works.", + "start": 629.46, + "end": 634.28, + "words": [ + { + "word": " And", + "start": 629.46, + "end": 629.78, + "probability": 0.9970703125 + }, + { + "word": " as", + "start": 629.78, + "end": 630.46, + "probability": 0.355712890625 + }, + { + "word": " usual,", + "start": 630.46, + "end": 630.76, + "probability": 1.0 + }, + { + "word": " this", + "start": 630.78, + "end": 631.0, + "probability": 1.0 + }, + { + "word": " episode,", + "start": 631.0, + "end": 631.52, + "probability": 1.0 + }, + { + "word": " this", + "start": 631.6, + "end": 632.34, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 632.34, + "end": 632.56, + "probability": 1.0 + }, + { + "word": " segment", + "start": 632.56, + "end": 632.92, + "probability": 1.0 + }, + { + "word": " brought", + "start": 632.92, + "end": 633.16, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 633.16, + "end": 633.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 633.34, + "end": 633.4, + "probability": 1.0 + }, + { + "word": " by", + "start": 633.4, + "end": 633.52, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 633.52, + "end": 633.94, + "probability": 0.8447265625 + }, + { + "word": " Auto", + "start": 633.94, + "end": 634.04, + "probability": 0.79443359375 + }, + { + "word": " Works.", + "start": 634.04, + "end": 634.28, + "probability": 0.90478515625 + } + ] + }, + { + "id": 221, + "text": "If you want somebody who really takes the time to get invested in you, you, the customer, you should get on and see Mike Emery down at Perfection Auto Works.", + "start": 634.68, + "end": 643.04, + "words": [ + { + "word": " If", + "start": 634.68, + "end": 635.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 635.16, + "end": 635.28, + "probability": 1.0 + }, + { + "word": " want", + "start": 635.28, + "end": 635.4, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 635.4, + "end": 635.6, + "probability": 1.0 + }, + { + "word": " who", + "start": 635.6, + "end": 635.9, + "probability": 1.0 + }, + { + "word": " really", + "start": 635.9, + "end": 636.72, + "probability": 0.99951171875 + }, + { + "word": " takes", + "start": 636.72, + "end": 637.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 637.16, + "end": 637.36, + "probability": 1.0 + }, + { + "word": " time", + "start": 637.36, + "end": 637.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 637.68, + "end": 637.92, + "probability": 1.0 + }, + { + "word": " get", + "start": 637.92, + "end": 638.1, + "probability": 1.0 + }, + { + "word": " invested", + "start": 638.1, + "end": 638.6, + "probability": 1.0 + }, + { + "word": " in", + "start": 638.6, + "end": 639.1, + "probability": 1.0 + }, + { + "word": " you,", + "start": 639.1, + "end": 639.4, + "probability": 1.0 + }, + { + "word": " you,", + "start": 639.48, + "end": 639.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 639.82, + "end": 639.92, + "probability": 0.9990234375 + }, + { + "word": " customer,", + "start": 639.92, + "end": 640.32, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 640.42, + "end": 641.0, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 641.0, + "end": 641.1, + "probability": 1.0 + }, + { + "word": " get", + "start": 641.1, + "end": 641.18, + "probability": 0.93408203125 + }, + { + "word": " on", + "start": 641.18, + "end": 641.3, + "probability": 0.55859375 + }, + { + "word": " and", + "start": 641.3, + "end": 641.4, + "probability": 1.0 + }, + { + "word": " see", + "start": 641.4, + "end": 641.52, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 641.52, + "end": 641.7, + "probability": 0.97412109375 + }, + { + "word": " Emery", + "start": 641.7, + "end": 641.94, + "probability": 0.8544921875 + }, + { + "word": " down", + "start": 641.94, + "end": 642.04, + "probability": 0.8671875 + }, + { + "word": " at", + "start": 642.04, + "end": 642.12, + "probability": 0.99755859375 + }, + { + "word": " Perfection", + "start": 642.12, + "end": 642.6, + "probability": 0.99853515625 + }, + { + "word": " Auto", + "start": 642.6, + "end": 642.74, + "probability": 0.99951171875 + }, + { + "word": " Works.", + "start": 642.74, + "end": 643.04, + "probability": 1.0 + } + ] + }, + { + "id": 222, + "text": "Listen to the commercials this break because he's in there for contact information.", + "start": 643.22, + "end": 646.6, + "words": [ + { + "word": " Listen", + "start": 643.22, + "end": 643.7, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 643.7, + "end": 643.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 643.94, + "end": 644.0, + "probability": 1.0 + }, + { + "word": " commercials", + "start": 644.0, + "end": 644.36, + "probability": 1.0 + }, + { + "word": " this", + "start": 644.36, + "end": 644.56, + "probability": 0.998046875 + }, + { + "word": " break", + "start": 644.56, + "end": 644.76, + "probability": 0.99755859375 + }, + { + "word": " because", + "start": 644.76, + "end": 644.98, + "probability": 0.91845703125 + }, + { + "word": " he's", + "start": 644.98, + "end": 645.26, + "probability": 1.0 + }, + { + "word": " in", + "start": 645.26, + "end": 645.32, + "probability": 1.0 + }, + { + "word": " there", + "start": 645.32, + "end": 645.48, + "probability": 1.0 + }, + { + "word": " for", + "start": 645.48, + "end": 645.74, + "probability": 0.99853515625 + }, + { + "word": " contact", + "start": 645.74, + "end": 646.18, + "probability": 0.99951171875 + }, + { + "word": " information.", + "start": 646.18, + "end": 646.6, + "probability": 1.0 + } + ] + }, + { + "id": 223, + "text": "This is the Computer Guru Show.", + "start": 646.9, + "end": 648.3, + "words": [ + { + "word": " This", + "start": 646.9, + "end": 647.34, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 647.34, + "end": 647.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 647.5, + "end": 647.58, + "probability": 0.75 + }, + { + "word": " Computer", + "start": 647.58, + "end": 647.78, + "probability": 0.8466796875 + }, + { + "word": " Guru", + "start": 647.78, + "end": 648.04, + "probability": 0.99853515625 + }, + { + "word": " Show.", + "start": 648.04, + "end": 648.3, + "probability": 0.94384765625 + } + ] + }, + { + "id": 224, + "text": "We'll be right back.", + "start": 648.42, + "end": 649.26, + "words": [ + { + "word": " We'll", + "start": 648.42, + "end": 648.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 648.76, + "end": 648.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 648.84, + "end": 648.98, + "probability": 1.0 + }, + { + "word": " back.", + "start": 648.98, + "end": 649.26, + "probability": 1.0 + } + ] + }, + { + "id": 225, + "text": "Music.", + "start": 650.24, + "end": 650.72, + "words": [ + { + "word": " Music.", + "start": 650.24, + "end": 650.72, + "probability": 0.1611328125 + } + ] + }, + { + "id": 226, + "text": "Computer troubles?", + "start": 656.46, + "end": 657.38, + "words": [ + { + "word": " Computer", + "start": 656.46, + "end": 657.02, + "probability": 0.79736328125 + }, + { + "word": " troubles?", + "start": 657.02, + "end": 657.38, + "probability": 0.9853515625 + } + ] + }, + { + "id": 227, + "text": "Need some advice?", + "start": 657.64, + "end": 658.6, + "words": [ + { + "word": " Need", + "start": 657.64, + "end": 658.12, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 658.12, + "end": 658.32, + "probability": 1.0 + }, + { + "word": " advice?", + "start": 658.32, + "end": 658.6, + "probability": 1.0 + } + ] + }, + { + "id": 228, + "text": "Call in now.", + "start": 658.9, + "end": 659.62, + "words": [ + { + "word": " Call", + "start": 658.9, + "end": 659.2, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 659.2, + "end": 659.38, + "probability": 0.99658203125 + }, + { + "word": " now.", + "start": 659.38, + "end": 659.62, + "probability": 1.0 + } + ] + }, + { + "id": 229, + "text": "Mike Swanson will be back after these messages.", + "start": 659.8, + "end": 662.04, + "words": [ + { + "word": " Mike", + "start": 659.8, + "end": 660.14, + "probability": 0.99951171875 + }, + { + "word": " Swanson", + "start": 660.14, + "end": 660.46, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 660.46, + "end": 660.7, + "probability": 1.0 + }, + { + "word": " be", + "start": 660.7, + "end": 660.82, + "probability": 1.0 + }, + { + "word": " back", + "start": 660.82, + "end": 661.06, + "probability": 1.0 + }, + { + "word": " after", + "start": 661.06, + "end": 661.44, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 661.44, + "end": 661.64, + "probability": 0.99951171875 + }, + { + "word": " messages.", + "start": 661.64, + "end": 662.04, + "probability": 1.0 + } + ] + }, + { + "id": 230, + "text": "The Computer Guru Show.", + "start": 662.34, + "end": 663.66, + "words": [ + { + "word": " The", + "start": 662.34, + "end": 662.68, + "probability": 0.99755859375 + }, + { + "word": " Computer", + "start": 662.68, + "end": 662.98, + "probability": 0.9970703125 + }, + { + "word": " Guru", + "start": 662.98, + "end": 663.3, + "probability": 0.994140625 + }, + { + "word": " Show.", + "start": 663.3, + "end": 663.66, + "probability": 0.99609375 + } + ] + }, + { + "id": 231, + "text": "AM 1030.", + "start": 663.86, + "end": 664.88, + "words": [ + { + "word": " AM", + "start": 663.86, + "end": 664.3, + "probability": 0.978515625 + }, + { + "word": " 1030.", + "start": 664.3, + "end": 664.88, + "probability": 0.9169921875 + } + ] + }, + { + "id": 232, + "text": "KVOY.", + "start": 665.16, + "end": 665.72, + "words": [ + { + "word": " KVOY.", + "start": 665.16, + "end": 665.72, + "probability": 0.9052734375 + } + ] + }, + { + "id": 233, + "text": "The Voice.", + "start": 665.98, + "end": 666.64, + "words": [ + { + "word": " The", + "start": 665.98, + "end": 666.36, + "probability": 0.99951171875 + }, + { + "word": " Voice.", + "start": 666.36, + "end": 666.64, + "probability": 0.99169921875 + } + ] + }, + { + "id": 234, + "text": "Your technology guru, Mike Swanson, is answering all your questions one by one.", + "start": 669.8800000000001, + "end": 674.38, + "words": [ + { + "word": " Your", + "start": 669.8800000000001, + "end": 670.44, + "probability": 0.9951171875 + }, + { + "word": " technology", + "start": 670.44, + "end": 670.92, + "probability": 0.9970703125 + }, + { + "word": " guru,", + "start": 670.92, + "end": 671.4, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 671.56, + "end": 671.76, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 671.76, + "end": 672.14, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 672.26, + "end": 672.4, + "probability": 1.0 + }, + { + "word": " answering", + "start": 672.4, + "end": 672.7, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 672.7, + "end": 673.0, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 673.0, + "end": 673.2, + "probability": 0.9990234375 + }, + { + "word": " questions", + "start": 673.2, + "end": 673.6, + "probability": 1.0 + }, + { + "word": " one", + "start": 673.6, + "end": 673.86, + "probability": 0.994140625 + }, + { + "word": " by", + "start": 673.86, + "end": 674.06, + "probability": 0.990234375 + }, + { + "word": " one.", + "start": 674.06, + "end": 674.38, + "probability": 1.0 + } + ] + }, + { + "id": 235, + "text": "Yes, science.", + "start": 674.42, + "end": 675.04, + "words": [ + { + "word": " Yes,", + "start": 674.42, + "end": 674.62, + "probability": 0.9267578125 + }, + { + "word": " science.", + "start": 674.62, + "end": 675.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 236, + "text": "So chime in with yours.", + "start": 675.28, + "end": 676.4, + "words": [ + { + "word": " So", + "start": 675.28, + "end": 675.48, + "probability": 0.99951171875 + }, + { + "word": " chime", + "start": 675.48, + "end": 675.72, + "probability": 0.9921875 + }, + { + "word": " in", + "start": 675.72, + "end": 675.96, + "probability": 1.0 + }, + { + "word": " with", + "start": 675.96, + "end": 676.16, + "probability": 0.9990234375 + }, + { + "word": " yours.", + "start": 676.16, + "end": 676.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 237, + "text": "The website is gurushow.com.", + "start": 676.64, + "end": 678.74, + "words": [ + { + "word": " The", + "start": 676.64, + "end": 676.96, + "probability": 0.99951171875 + }, + { + "word": " website", + "start": 676.96, + "end": 677.28, + "probability": 0.994140625 + }, + { + "word": " is", + "start": 677.28, + "end": 677.64, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 677.64, + "end": 678.22, + "probability": 0.7939453125 + }, + { + "word": ".com.", + "start": 678.22, + "end": 678.74, + "probability": 1.0 + } + ] + }, + { + "id": 238, + "text": "Tune in, click in, and kick back.", + "start": 678.9, + "end": 681.12, + "words": [ + { + "word": " Tune", + "start": 678.9, + "end": 679.4, + "probability": 1.0 + }, + { + "word": " in,", + "start": 679.4, + "end": 679.62, + "probability": 1.0 + }, + { + "word": " click", + "start": 679.72, + "end": 680.08, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 680.08, + "end": 680.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 680.4, + "end": 680.68, + "probability": 1.0 + }, + { + "word": " kick", + "start": 680.68, + "end": 680.82, + "probability": 0.98876953125 + }, + { + "word": " back.", + "start": 680.82, + "end": 681.12, + "probability": 1.0 + } + ] + }, + { + "id": 239, + "text": "This is the Computer Guru Show.", + "start": 681.34, + "end": 683.28, + "words": [ + { + "word": " This", + "start": 681.34, + "end": 681.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 681.88, + "end": 682.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 682.16, + "end": 682.32, + "probability": 0.45166015625 + }, + { + "word": " Computer", + "start": 682.32, + "end": 682.56, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 682.56, + "end": 682.9, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 682.9, + "end": 683.28, + "probability": 1.0 + } + ] + }, + { + "id": 240, + "text": "If you'd like to be part of the show, give us a call.", + "start": 686.46, + "end": 688.28, + "words": [ + { + "word": " If", + "start": 686.46, + "end": 686.82, + "probability": 0.3271484375 + }, + { + "word": " you'd", + "start": 686.82, + "end": 687.02, + "probability": 0.9931640625 + }, + { + "word": " like", + "start": 687.02, + "end": 687.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 687.14, + "end": 687.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 687.2, + "end": 687.28, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 687.28, + "end": 687.44, + "probability": 0.97802734375 + }, + { + "word": " of", + "start": 687.44, + "end": 687.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 687.54, + "end": 687.56, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 687.56, + "end": 687.74, + "probability": 0.99951171875 + }, + { + "word": " give", + "start": 687.78, + "end": 687.9, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 687.9, + "end": 688.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 688.04, + "end": 688.08, + "probability": 1.0 + }, + { + "word": " call.", + "start": 688.08, + "end": 688.28, + "probability": 1.0 + } + ] + }, + { + "id": 241, + "text": "790-2040.", + "start": 688.52, + "end": 689.6, + "words": [ + { + "word": " 790", + "start": 688.52, + "end": 688.88, + "probability": 0.97509765625 + }, + { + "word": "-2040.", + "start": 688.88, + "end": 689.6, + "probability": 0.974609375 + } + ] + }, + { + "id": 242, + "text": "That's 520-790-2040.", + "start": 689.68, + "end": 691.52, + "words": [ + { + "word": " That's", + "start": 689.68, + "end": 689.88, + "probability": 0.994140625 + }, + { + "word": " 520", + "start": 689.88, + "end": 690.26, + "probability": 0.9794921875 + }, + { + "word": "-790", + "start": 690.26, + "end": 690.94, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 690.94, + "end": 691.52, + "probability": 1.0 + } + ] + }, + { + "id": 243, + "text": "Or you can join us in the chat room at gurushow.com.", + "start": 691.58, + "end": 693.86, + "words": [ + { + "word": " Or", + "start": 691.58, + "end": 691.76, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 691.76, + "end": 691.84, + "probability": 0.99169921875 + }, + { + "word": " can", + "start": 691.84, + "end": 691.94, + "probability": 1.0 + }, + { + "word": " join", + "start": 691.94, + "end": 692.12, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 692.12, + "end": 692.22, + "probability": 1.0 + }, + { + "word": " in", + "start": 692.22, + "end": 692.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 692.3, + "end": 692.38, + "probability": 1.0 + }, + { + "word": " chat", + "start": 692.38, + "end": 692.58, + "probability": 1.0 + }, + { + "word": " room", + "start": 692.58, + "end": 692.84, + "probability": 0.96728515625 + }, + { + "word": " at", + "start": 692.84, + "end": 693.0, + "probability": 0.998046875 + }, + { + "word": " gurushow", + "start": 693.0, + "end": 693.4, + "probability": 0.88232421875 + }, + { + "word": ".com.", + "start": 693.4, + "end": 693.86, + "probability": 1.0 + } + ] + }, + { + "id": 244, + "text": "If you go to the Listen Live link, there is absolutely a chat room that you can participate in.", + "start": 693.98, + "end": 698.5, + "words": [ + { + "word": " If", + "start": 693.98, + "end": 694.12, + "probability": 0.98046875 + }, + { + "word": " you", + "start": 694.12, + "end": 694.2, + "probability": 1.0 + }, + { + "word": " go", + "start": 694.2, + "end": 694.26, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 694.26, + "end": 694.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 694.34, + "end": 694.4, + "probability": 0.99951171875 + }, + { + "word": " Listen", + "start": 694.4, + "end": 694.58, + "probability": 0.67138671875 + }, + { + "word": " Live", + "start": 694.58, + "end": 694.86, + "probability": 0.96728515625 + }, + { + "word": " link,", + "start": 694.86, + "end": 695.22, + "probability": 1.0 + }, + { + "word": " there", + "start": 695.42, + "end": 696.18, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 696.18, + "end": 696.36, + "probability": 0.99951171875 + }, + { + "word": " absolutely", + "start": 696.36, + "end": 696.72, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 696.72, + "end": 697.0, + "probability": 1.0 + }, + { + "word": " chat", + "start": 697.0, + "end": 697.18, + "probability": 0.99951171875 + }, + { + "word": " room", + "start": 697.18, + "end": 697.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 697.38, + "end": 697.52, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 697.52, + "end": 697.62, + "probability": 1.0 + }, + { + "word": " can", + "start": 697.62, + "end": 697.82, + "probability": 1.0 + }, + { + "word": " participate", + "start": 697.82, + "end": 698.22, + "probability": 0.99853515625 + }, + { + "word": " in.", + "start": 698.22, + "end": 698.5, + "probability": 1.0 + } + ] + }, + { + "id": 245, + "text": "One of the questions in there was asking about if we could solder something back onto a motherboard that got broken off.", + "start": 698.68, + "end": 703.76, + "words": [ + { + "word": " One", + "start": 698.68, + "end": 699.04, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 699.04, + "end": 699.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 699.12, + "end": 699.14, + "probability": 1.0 + }, + { + "word": " questions", + "start": 699.14, + "end": 699.42, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 699.42, + "end": 699.6, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 699.6, + "end": 699.68, + "probability": 1.0 + }, + { + "word": " was", + "start": 699.68, + "end": 699.82, + "probability": 0.9990234375 + }, + { + "word": " asking", + "start": 699.82, + "end": 700.04, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 700.04, + "end": 700.26, + "probability": 0.9970703125 + }, + { + "word": " if", + "start": 700.26, + "end": 700.44, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 700.44, + "end": 700.54, + "probability": 1.0 + }, + { + "word": " could", + "start": 700.54, + "end": 700.62, + "probability": 1.0 + }, + { + "word": " solder", + "start": 700.62, + "end": 700.98, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 700.98, + "end": 701.32, + "probability": 0.978515625 + }, + { + "word": " back", + "start": 701.32, + "end": 702.0, + "probability": 1.0 + }, + { + "word": " onto", + "start": 702.0, + "end": 702.26, + "probability": 0.98828125 + }, + { + "word": " a", + "start": 702.26, + "end": 702.42, + "probability": 0.99951171875 + }, + { + "word": " motherboard", + "start": 702.42, + "end": 702.74, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 702.74, + "end": 703.04, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 703.04, + "end": 703.16, + "probability": 0.93896484375 + }, + { + "word": " broken", + "start": 703.16, + "end": 703.34, + "probability": 1.0 + }, + { + "word": " off.", + "start": 703.34, + "end": 703.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 246, + "text": "And the answer is yes.", + "start": 704.42, + "end": 705.86, + "words": [ + { + "word": " And", + "start": 704.42, + "end": 704.78, + "probability": 0.86865234375 + }, + { + "word": " the", + "start": 704.78, + "end": 705.14, + "probability": 0.99755859375 + }, + { + "word": " answer", + "start": 705.14, + "end": 705.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 705.58, + "end": 705.68, + "probability": 0.99951171875 + }, + { + "word": " yes.", + "start": 705.68, + "end": 705.86, + "probability": 1.0 + } + ] + }, + { + "id": 247, + "text": "And just so I don't have to type while I'm in the middle of talking here.", + "start": 707.5, + "end": 711.06, + "words": [ + { + "word": " And", + "start": 707.5, + "end": 707.86, + "probability": 0.9638671875 + }, + { + "word": " just", + "start": 707.86, + "end": 708.22, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 708.22, + "end": 708.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 708.34, + "end": 708.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 708.44, + "end": 708.52, + "probability": 1.0 + }, + { + "word": " have", + "start": 708.52, + "end": 708.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 708.62, + "end": 708.76, + "probability": 1.0 + }, + { + "word": " type", + "start": 708.76, + "end": 709.02, + "probability": 0.994140625 + }, + { + "word": " while", + "start": 709.02, + "end": 709.22, + "probability": 0.99853515625 + }, + { + "word": " I'm", + "start": 709.22, + "end": 709.38, + "probability": 0.984375 + }, + { + "word": " in", + "start": 709.38, + "end": 709.46, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 709.46, + "end": 709.52, + "probability": 1.0 + }, + { + "word": " middle", + "start": 709.52, + "end": 709.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 709.6, + "end": 709.7, + "probability": 1.0 + }, + { + "word": " talking", + "start": 709.7, + "end": 709.9, + "probability": 0.76318359375 + }, + { + "word": " here.", + "start": 709.9, + "end": 711.06, + "probability": 1.0 + } + ] + }, + { + "id": 248, + "text": "By the description given.", + "start": 712.04, + "end": 713.36, + "words": [ + { + "word": " By", + "start": 712.04, + "end": 712.4, + "probability": 0.97216796875 + }, + { + "word": " the", + "start": 712.4, + "end": 712.6, + "probability": 0.99951171875 + }, + { + "word": " description", + "start": 712.6, + "end": 712.96, + "probability": 0.994140625 + }, + { + "word": " given.", + "start": 712.96, + "end": 713.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 249, + "text": "Which is?", + "start": 713.96, + "end": 714.56, + "words": [ + { + "word": " Which", + "start": 713.96, + "end": 714.32, + "probability": 0.8984375 + }, + { + "word": " is?", + "start": 714.32, + "end": 714.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 250, + "text": "That it looks like all the traces are probably okay.", + "start": 714.56, + "end": 717.74, + "words": [ + { + "word": " That", + "start": 714.56, + "end": 714.82, + "probability": 0.017822265625 + }, + { + "word": " it", + "start": 714.82, + "end": 715.08, + "probability": 0.96728515625 + }, + { + "word": " looks", + "start": 715.08, + "end": 715.32, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 715.32, + "end": 715.46, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 715.46, + "end": 715.58, + "probability": 0.97216796875 + }, + { + "word": " the", + "start": 715.58, + "end": 715.7, + "probability": 0.9990234375 + }, + { + "word": " traces", + "start": 715.7, + "end": 715.92, + "probability": 0.99072265625 + }, + { + "word": " are", + "start": 715.92, + "end": 716.24, + "probability": 0.9072265625 + }, + { + "word": " probably", + "start": 716.24, + "end": 716.92, + "probability": 0.6845703125 + }, + { + "word": " okay.", + "start": 716.92, + "end": 717.74, + "probability": 0.931640625 + } + ] + }, + { + "id": 251, + "text": "Yeah, I can probably fix that for you.", + "start": 717.86, + "end": 719.26, + "words": [ + { + "word": " Yeah,", + "start": 717.86, + "end": 718.18, + "probability": 0.99072265625 + }, + { + "word": " I", + "start": 718.22, + "end": 718.3, + "probability": 1.0 + }, + { + "word": " can", + "start": 718.3, + "end": 718.42, + "probability": 1.0 + }, + { + "word": " probably", + "start": 718.42, + "end": 718.58, + "probability": 1.0 + }, + { + "word": " fix", + "start": 718.58, + "end": 718.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 718.84, + "end": 718.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 718.96, + "end": 719.12, + "probability": 1.0 + }, + { + "word": " you.", + "start": 719.12, + "end": 719.26, + "probability": 1.0 + } + ] + }, + { + "id": 252, + "text": "Bring it on down.", + "start": 719.28, + "end": 719.86, + "words": [ + { + "word": " Bring", + "start": 719.28, + "end": 719.44, + "probability": 0.9931640625 + }, + { + "word": " it", + "start": 719.44, + "end": 719.56, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 719.56, + "end": 719.64, + "probability": 1.0 + }, + { + "word": " down.", + "start": 719.64, + "end": 719.86, + "probability": 1.0 + } + ] + }, + { + "id": 253, + "text": "We're open until 5 o'clock today.", + "start": 720.36, + "end": 722.18, + "words": [ + { + "word": " We're", + "start": 720.36, + "end": 720.68, + "probability": 0.99658203125 + }, + { + "word": " open", + "start": 720.68, + "end": 720.78, + "probability": 0.96435546875 + }, + { + "word": " until", + "start": 720.78, + "end": 720.98, + "probability": 0.96875 + }, + { + "word": " 5", + "start": 720.98, + "end": 721.58, + "probability": 0.85546875 + }, + { + "word": " o", + "start": 721.58, + "end": 721.72, + "probability": 0.9990234375 + }, + { + "word": "'clock", + "start": 721.72, + "end": 721.9, + "probability": 1.0 + }, + { + "word": " today.", + "start": 721.9, + "end": 722.18, + "probability": 1.0 + } + ] + }, + { + "id": 254, + "text": "And 9 to 6 Monday through Friday.", + "start": 722.9199999999998, + "end": 725.9, + "words": [ + { + "word": " And", + "start": 722.9199999999998, + "end": 723.2399999999999, + "probability": 0.9970703125 + }, + { + "word": " 9", + "start": 723.2399999999999, + "end": 723.56, + "probability": 0.9892578125 + }, + { + "word": " to", + "start": 723.56, + "end": 723.78, + "probability": 0.9580078125 + }, + { + "word": " 6", + "start": 723.78, + "end": 724.02, + "probability": 1.0 + }, + { + "word": " Monday", + "start": 724.02, + "end": 724.92, + "probability": 0.8720703125 + }, + { + "word": " through", + "start": 724.92, + "end": 725.6, + "probability": 1.0 + }, + { + "word": " Friday.", + "start": 725.6, + "end": 725.9, + "probability": 1.0 + } + ] + }, + { + "id": 255, + "text": "So once again, give us a call.", + "start": 726.56, + "end": 727.46, + "words": [ + { + "word": " So", + "start": 726.56, + "end": 726.88, + "probability": 0.9970703125 + }, + { + "word": " once", + "start": 726.88, + "end": 726.96, + "probability": 0.74267578125 + }, + { + "word": " again,", + "start": 726.96, + "end": 727.08, + "probability": 1.0 + }, + { + "word": " give", + "start": 727.1, + "end": 727.22, + "probability": 1.0 + }, + { + "word": " us", + "start": 727.22, + "end": 727.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 727.34, + "end": 727.34, + "probability": 1.0 + }, + { + "word": " call.", + "start": 727.34, + "end": 727.46, + "probability": 1.0 + } + ] + }, + { + "id": 256, + "text": "790-2040 if you'd like to be part of the show and get some free tech support on.", + "start": 727.52, + "end": 730.7, + "words": [ + { + "word": " 790", + "start": 727.52, + "end": 727.82, + "probability": 0.9794921875 + }, + { + "word": "-2040", + "start": 727.82, + "end": 728.36, + "probability": 0.97216796875 + }, + { + "word": " if", + "start": 728.36, + "end": 728.52, + "probability": 0.67236328125 + }, + { + "word": " you'd", + "start": 728.52, + "end": 728.62, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 728.62, + "end": 728.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 728.72, + "end": 728.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 728.82, + "end": 728.86, + "probability": 1.0 + }, + { + "word": " part", + "start": 728.86, + "end": 729.02, + "probability": 0.97900390625 + }, + { + "word": " of", + "start": 729.02, + "end": 729.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 729.08, + "end": 729.16, + "probability": 1.0 + }, + { + "word": " show", + "start": 729.16, + "end": 729.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 729.28, + "end": 729.4, + "probability": 0.14404296875 + }, + { + "word": " get", + "start": 729.4, + "end": 729.52, + "probability": 1.0 + }, + { + "word": " some", + "start": 729.52, + "end": 729.62, + "probability": 1.0 + }, + { + "word": " free", + "start": 729.62, + "end": 729.92, + "probability": 1.0 + }, + { + "word": " tech", + "start": 729.92, + "end": 730.16, + "probability": 0.9970703125 + }, + { + "word": " support", + "start": 730.16, + "end": 730.34, + "probability": 1.0 + }, + { + "word": " on.", + "start": 730.34, + "end": 730.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 257, + "text": "Now, infections.", + "start": 733.0399999999998, + "end": 733.68, + "words": [ + { + "word": " Now,", + "start": 733.0399999999998, + "end": 733.3599999999999, + "probability": 0.9951171875 + }, + { + "word": " infections.", + "start": 733.3599999999999, + "end": 733.68, + "probability": 0.98974609375 + } + ] + }, + { + "id": 258, + "text": "There's a lot of people that switch over to the Mac platform because they're trying to avoid the infections.", + "start": 735.16, + "end": 739.32, + "words": [ + { + "word": " There's", + "start": 735.16, + "end": 735.48, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 735.48, + "end": 735.52, + "probability": 1.0 + }, + { + "word": " lot", + "start": 735.52, + "end": 735.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 735.62, + "end": 735.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 735.68, + "end": 735.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 735.86, + "end": 735.96, + "probability": 1.0 + }, + { + "word": " switch", + "start": 735.96, + "end": 736.1, + "probability": 1.0 + }, + { + "word": " over", + "start": 736.1, + "end": 736.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 736.26, + "end": 736.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 736.4, + "end": 736.44, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 736.44, + "end": 736.64, + "probability": 0.998046875 + }, + { + "word": " platform", + "start": 736.64, + "end": 737.16, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 737.16, + "end": 737.6, + "probability": 0.387939453125 + }, + { + "word": " they're", + "start": 737.6, + "end": 737.86, + "probability": 1.0 + }, + { + "word": " trying", + "start": 737.86, + "end": 738.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 738.16, + "end": 738.32, + "probability": 1.0 + }, + { + "word": " avoid", + "start": 738.32, + "end": 738.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 738.66, + "end": 738.94, + "probability": 1.0 + }, + { + "word": " infections.", + "start": 738.94, + "end": 739.32, + "probability": 1.0 + } + ] + }, + { + "id": 259, + "text": "And I'm glad that works for some people for right now.", + "start": 741.3399999999999, + "end": 743.58, + "words": [ + { + "word": " And", + "start": 741.3399999999999, + "end": 741.66, + "probability": 0.9658203125 + }, + { + "word": " I'm", + "start": 741.66, + "end": 741.98, + "probability": 0.9052734375 + }, + { + "word": " glad", + "start": 741.98, + "end": 742.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 742.12, + "end": 742.26, + "probability": 1.0 + }, + { + "word": " works", + "start": 742.26, + "end": 742.48, + "probability": 1.0 + }, + { + "word": " for", + "start": 742.48, + "end": 742.64, + "probability": 1.0 + }, + { + "word": " some", + "start": 742.64, + "end": 742.78, + "probability": 1.0 + }, + { + "word": " people", + "start": 742.78, + "end": 743.02, + "probability": 1.0 + }, + { + "word": " for", + "start": 743.02, + "end": 743.2, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 743.2, + "end": 743.36, + "probability": 1.0 + }, + { + "word": " now.", + "start": 743.36, + "end": 743.58, + "probability": 1.0 + } + ] + }, + { + "id": 260, + "text": "And the chat.", + "start": 744.04, + "end": 744.54, + "words": [ + { + "word": " And", + "start": 744.04, + "end": 744.36, + "probability": 0.89599609375 + }, + { + "word": " the", + "start": 744.36, + "end": 744.48, + "probability": 0.98828125 + }, + { + "word": " chat.", + "start": 744.48, + "end": 744.54, + "probability": 0.01357269287109375 + } + ] + }, + { + "id": 261, + "text": "This is like, you know, I have a Mac in front of me right now.", + "start": 744.54, + "end": 746.88, + "words": [ + { + "word": " This", + "start": 744.54, + "end": 744.62, + "probability": 0.0290679931640625 + }, + { + "word": " is", + "start": 744.62, + "end": 744.82, + "probability": 0.9775390625 + }, + { + "word": " like,", + "start": 744.82, + "end": 745.08, + "probability": 0.9873046875 + }, + { + "word": " you", + "start": 745.16, + "end": 745.28, + "probability": 0.900390625 + }, + { + "word": " know,", + "start": 745.28, + "end": 745.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 745.4, + "end": 745.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 745.66, + "end": 745.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 745.76, + "end": 745.88, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 745.88, + "end": 745.98, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 745.98, + "end": 746.12, + "probability": 1.0 + }, + { + "word": " front", + "start": 746.12, + "end": 746.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 746.28, + "end": 746.36, + "probability": 1.0 + }, + { + "word": " me", + "start": 746.36, + "end": 746.44, + "probability": 1.0 + }, + { + "word": " right", + "start": 746.44, + "end": 746.6, + "probability": 1.0 + }, + { + "word": " now.", + "start": 746.6, + "end": 746.88, + "probability": 1.0 + } + ] + }, + { + "id": 262, + "text": "And a PC.", + "start": 747.5, + "end": 748.18, + "words": [ + { + "word": " And", + "start": 747.5, + "end": 747.9, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 747.9, + "end": 748.02, + "probability": 0.99951171875 + }, + { + "word": " PC.", + "start": 748.02, + "end": 748.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 263, + "text": "But you can't run far when it comes to that stuff.", + "start": 748.38, + "end": 754.48, + "words": [ + { + "word": " But", + "start": 748.38, + "end": 748.78, + "probability": 0.95458984375 + }, + { + "word": " you", + "start": 748.78, + "end": 751.42, + "probability": 0.8447265625 + }, + { + "word": " can't", + "start": 751.42, + "end": 752.22, + "probability": 0.99609375 + }, + { + "word": " run", + "start": 752.22, + "end": 752.4, + "probability": 1.0 + }, + { + "word": " far", + "start": 752.4, + "end": 752.92, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 752.92, + "end": 753.78, + "probability": 0.99169921875 + }, + { + "word": " it", + "start": 753.78, + "end": 753.94, + "probability": 1.0 + }, + { + "word": " comes", + "start": 753.94, + "end": 754.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 754.1, + "end": 754.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 754.22, + "end": 754.32, + "probability": 0.9990234375 + }, + { + "word": " stuff.", + "start": 754.32, + "end": 754.48, + "probability": 0.99755859375 + } + ] + }, + { + "id": 264, + "text": "There's new infections coming out every day for Mac, which is kind of unfortunate.", + "start": 754.54, + "end": 759.82, + "words": [ + { + "word": " There's", + "start": 754.54, + "end": 754.74, + "probability": 0.9951171875 + }, + { + "word": " new", + "start": 754.74, + "end": 755.64, + "probability": 0.99951171875 + }, + { + "word": " infections", + "start": 755.64, + "end": 756.0, + "probability": 0.99951171875 + }, + { + "word": " coming", + "start": 756.0, + "end": 756.26, + "probability": 1.0 + }, + { + "word": " out", + "start": 756.26, + "end": 756.4, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 756.4, + "end": 756.58, + "probability": 0.99951171875 + }, + { + "word": " day", + "start": 756.58, + "end": 756.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 756.72, + "end": 756.84, + "probability": 0.99658203125 + }, + { + "word": " Mac,", + "start": 756.84, + "end": 757.0, + "probability": 1.0 + }, + { + "word": " which", + "start": 757.18, + "end": 757.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 757.48, + "end": 757.72, + "probability": 1.0 + }, + { + "word": " kind", + "start": 757.72, + "end": 759.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 759.4, + "end": 759.54, + "probability": 1.0 + }, + { + "word": " unfortunate.", + "start": 759.54, + "end": 759.82, + "probability": 1.0 + } + ] + }, + { + "id": 265, + "text": "But they attack in a different way.", + "start": 761.7, + "end": 763.42, + "words": [ + { + "word": " But", + "start": 761.7, + "end": 762.1, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 762.1, + "end": 762.44, + "probability": 1.0 + }, + { + "word": " attack", + "start": 762.44, + "end": 762.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 762.82, + "end": 763.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 763.02, + "end": 763.08, + "probability": 1.0 + }, + { + "word": " different", + "start": 763.08, + "end": 763.24, + "probability": 1.0 + }, + { + "word": " way.", + "start": 763.24, + "end": 763.42, + "probability": 1.0 + } + ] + }, + { + "id": 266, + "text": "They attack the weak link, which is you, the user.", + "start": 763.48, + "end": 766.3, + "words": [ + { + "word": " They", + "start": 763.48, + "end": 763.58, + "probability": 0.99951171875 + }, + { + "word": " attack", + "start": 763.58, + "end": 763.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 763.84, + "end": 764.06, + "probability": 1.0 + }, + { + "word": " weak", + "start": 764.06, + "end": 764.24, + "probability": 0.99951171875 + }, + { + "word": " link,", + "start": 764.24, + "end": 764.56, + "probability": 1.0 + }, + { + "word": " which", + "start": 764.72, + "end": 765.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 765.0, + "end": 765.2, + "probability": 1.0 + }, + { + "word": " you,", + "start": 765.2, + "end": 765.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 765.68, + "end": 765.96, + "probability": 1.0 + }, + { + "word": " user.", + "start": 765.96, + "end": 766.3, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "So much like with those phishing emails where people basically click on a link.", + "start": 767.44, + "end": 774.32, + "words": [ + { + "word": " So", + "start": 767.44, + "end": 767.84, + "probability": 0.998046875 + }, + { + "word": " much", + "start": 767.84, + "end": 768.06, + "probability": 0.94482421875 + }, + { + "word": " like", + "start": 768.06, + "end": 768.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 768.26, + "end": 768.46, + "probability": 1.0 + }, + { + "word": " those", + "start": 768.46, + "end": 769.64, + "probability": 0.92724609375 + }, + { + "word": " phishing", + "start": 769.64, + "end": 770.92, + "probability": 0.9990234375 + }, + { + "word": " emails", + "start": 770.92, + "end": 771.2, + "probability": 0.96630859375 + }, + { + "word": " where", + "start": 771.2, + "end": 771.56, + "probability": 0.7998046875 + }, + { + "word": " people", + "start": 771.56, + "end": 771.88, + "probability": 1.0 + }, + { + "word": " basically", + "start": 771.88, + "end": 773.58, + "probability": 0.99951171875 + }, + { + "word": " click", + "start": 773.58, + "end": 773.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 773.9, + "end": 774.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 774.06, + "end": 774.14, + "probability": 1.0 + }, + { + "word": " link.", + "start": 774.14, + "end": 774.32, + "probability": 1.0 + } + ] + }, + { + "id": 268, + "text": "Or open a program in order to install it.", + "start": 774.54, + "end": 777.94, + "words": [ + { + "word": " Or", + "start": 774.54, + "end": 775.02, + "probability": 0.06512451171875 + }, + { + "word": " open", + "start": 775.02, + "end": 775.36, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 775.36, + "end": 775.52, + "probability": 0.99853515625 + }, + { + "word": " program", + "start": 775.52, + "end": 775.84, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 775.84, + "end": 776.18, + "probability": 0.9892578125 + }, + { + "word": " order", + "start": 776.18, + "end": 776.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 776.38, + "end": 776.66, + "probability": 0.9990234375 + }, + { + "word": " install", + "start": 776.66, + "end": 777.62, + "probability": 0.99169921875 + }, + { + "word": " it.", + "start": 777.62, + "end": 777.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 269, + "text": "Same thing is happening on the Mac now.", + "start": 778.46, + "end": 780.1, + "words": [ + { + "word": " Same", + "start": 778.46, + "end": 778.92, + "probability": 0.97412109375 + }, + { + "word": " thing", + "start": 778.92, + "end": 779.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 779.12, + "end": 779.24, + "probability": 0.99853515625 + }, + { + "word": " happening", + "start": 779.24, + "end": 779.44, + "probability": 1.0 + }, + { + "word": " on", + "start": 779.44, + "end": 779.64, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 779.64, + "end": 779.72, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 779.72, + "end": 779.88, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 779.88, + "end": 780.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 270, + "text": "Because instead of trying to hack the operating system, which for a long time was really where they were going.", + "start": 780.74, + "end": 785.94, + "words": [ + { + "word": " Because", + "start": 780.74, + "end": 781.2, + "probability": 0.95556640625 + }, + { + "word": " instead", + "start": 781.2, + "end": 781.5, + "probability": 0.990234375 + }, + { + "word": " of", + "start": 781.5, + "end": 782.48, + "probability": 1.0 + }, + { + "word": " trying", + "start": 782.48, + "end": 782.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 782.66, + "end": 782.82, + "probability": 0.99951171875 + }, + { + "word": " hack", + "start": 782.82, + "end": 782.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 782.96, + "end": 783.06, + "probability": 0.99951171875 + }, + { + "word": " operating", + "start": 783.06, + "end": 783.34, + "probability": 0.9970703125 + }, + { + "word": " system,", + "start": 783.34, + "end": 783.6, + "probability": 1.0 + }, + { + "word": " which", + "start": 783.74, + "end": 783.92, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 783.92, + "end": 784.06, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 784.06, + "end": 784.16, + "probability": 1.0 + }, + { + "word": " long", + "start": 784.16, + "end": 784.38, + "probability": 1.0 + }, + { + "word": " time", + "start": 784.38, + "end": 784.62, + "probability": 1.0 + }, + { + "word": " was", + "start": 784.62, + "end": 784.88, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 784.88, + "end": 785.18, + "probability": 1.0 + }, + { + "word": " where", + "start": 785.18, + "end": 785.42, + "probability": 1.0 + }, + { + "word": " they", + "start": 785.42, + "end": 785.58, + "probability": 1.0 + }, + { + "word": " were", + "start": 785.58, + "end": 785.74, + "probability": 1.0 + }, + { + "word": " going.", + "start": 785.74, + "end": 785.94, + "probability": 1.0 + } + ] + }, + { + "id": 271, + "text": "They were exploiting the weaknesses of the operating system itself.", + "start": 786.0, + "end": 788.84, + "words": [ + { + "word": " They", + "start": 786.0, + "end": 786.14, + "probability": 0.9990234375 + }, + { + "word": " were", + "start": 786.14, + "end": 786.28, + "probability": 1.0 + }, + { + "word": " exploiting", + "start": 786.28, + "end": 786.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 786.92, + "end": 787.06, + "probability": 1.0 + }, + { + "word": " weaknesses", + "start": 787.06, + "end": 787.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 787.42, + "end": 787.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 787.78, + "end": 787.9, + "probability": 1.0 + }, + { + "word": " operating", + "start": 787.9, + "end": 788.22, + "probability": 1.0 + }, + { + "word": " system", + "start": 788.22, + "end": 788.52, + "probability": 1.0 + }, + { + "word": " itself.", + "start": 788.52, + "end": 788.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 272, + "text": "Once they've gotten to the point where that just doesn't work anymore.", + "start": 790.32, + "end": 793.36, + "words": [ + { + "word": " Once", + "start": 790.32, + "end": 790.78, + "probability": 0.99951171875 + }, + { + "word": " they've", + "start": 790.78, + "end": 791.06, + "probability": 0.9990234375 + }, + { + "word": " gotten", + "start": 791.06, + "end": 791.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 791.76, + "end": 791.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 791.9, + "end": 791.96, + "probability": 1.0 + }, + { + "word": " point", + "start": 791.96, + "end": 792.14, + "probability": 1.0 + }, + { + "word": " where", + "start": 792.14, + "end": 792.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 792.26, + "end": 792.4, + "probability": 1.0 + }, + { + "word": " just", + "start": 792.4, + "end": 792.56, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 792.56, + "end": 792.8, + "probability": 1.0 + }, + { + "word": " work", + "start": 792.8, + "end": 793.02, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 793.02, + "end": 793.36, + "probability": 1.0 + } + ] + }, + { + "id": 273, + "text": "Or it's not reliable enough.", + "start": 793.56, + "end": 795.3, + "words": [ + { + "word": " Or", + "start": 793.56, + "end": 793.7, + "probability": 0.72021484375 + }, + { + "word": " it's", + "start": 793.7, + "end": 793.88, + "probability": 1.0 + }, + { + "word": " not", + "start": 793.88, + "end": 794.28, + "probability": 1.0 + }, + { + "word": " reliable", + "start": 794.28, + "end": 794.88, + "probability": 1.0 + }, + { + "word": " enough.", + "start": 794.88, + "end": 795.3, + "probability": 1.0 + } + ] + }, + { + "id": 274, + "text": "Or it doesn't generate enough income for them.", + "start": 795.34, + "end": 797.74, + "words": [ + { + "word": " Or", + "start": 795.34, + "end": 795.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 795.56, + "end": 795.66, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 795.66, + "end": 795.96, + "probability": 1.0 + }, + { + "word": " generate", + "start": 795.96, + "end": 796.5, + "probability": 1.0 + }, + { + "word": " enough", + "start": 796.5, + "end": 796.82, + "probability": 1.0 + }, + { + "word": " income", + "start": 796.82, + "end": 797.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 797.16, + "end": 797.52, + "probability": 1.0 + }, + { + "word": " them.", + "start": 797.52, + "end": 797.74, + "probability": 1.0 + } + ] + }, + { + "id": 275, + "text": "Because they're not getting enough people.", + "start": 797.98, + "end": 800.02, + "words": [ + { + "word": " Because", + "start": 797.98, + "end": 798.44, + "probability": 0.9716796875 + }, + { + "word": " they're", + "start": 798.44, + "end": 798.7, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 798.7, + "end": 798.86, + "probability": 1.0 + }, + { + "word": " getting", + "start": 798.86, + "end": 799.32, + "probability": 1.0 + }, + { + "word": " enough", + "start": 799.32, + "end": 799.6, + "probability": 1.0 + }, + { + "word": " people.", + "start": 799.6, + "end": 800.02, + "probability": 1.0 + } + ] + }, + { + "id": 276, + "text": "They had to switch tactics.", + "start": 800.36, + "end": 801.56, + "words": [ + { + "word": " They", + "start": 800.36, + "end": 800.82, + "probability": 1.0 + }, + { + "word": " had", + "start": 800.82, + "end": 800.96, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 800.96, + "end": 801.0, + "probability": 1.0 + }, + { + "word": " switch", + "start": 801.0, + "end": 801.18, + "probability": 1.0 + }, + { + "word": " tactics.", + "start": 801.18, + "end": 801.56, + "probability": 1.0 + } + ] + }, + { + "id": 277, + "text": "And so a couple of different tactics.", + "start": 801.96, + "end": 804.52, + "words": [ + { + "word": " And", + "start": 801.96, + "end": 802.26, + "probability": 0.931640625 + }, + { + "word": " so", + "start": 802.26, + "end": 802.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 802.56, + "end": 802.82, + "probability": 0.56591796875 + }, + { + "word": " couple", + "start": 802.82, + "end": 803.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 803.9, + "end": 804.0, + "probability": 1.0 + }, + { + "word": " different", + "start": 804.0, + "end": 804.18, + "probability": 1.0 + }, + { + "word": " tactics.", + "start": 804.18, + "end": 804.52, + "probability": 0.96728515625 + } + ] + }, + { + "id": 278, + "text": "That they use is they basically emotionally fool you.", + "start": 804.54, + "end": 810.2, + "words": [ + { + "word": " That", + "start": 804.54, + "end": 804.86, + "probability": 0.01055145263671875 + }, + { + "word": " they", + "start": 804.86, + "end": 805.02, + "probability": 0.55322265625 + }, + { + "word": " use", + "start": 805.02, + "end": 805.42, + "probability": 0.9853515625 + }, + { + "word": " is", + "start": 805.42, + "end": 805.8, + "probability": 0.83349609375 + }, + { + "word": " they", + "start": 805.8, + "end": 806.64, + "probability": 0.86181640625 + }, + { + "word": " basically", + "start": 806.64, + "end": 808.46, + "probability": 0.69677734375 + }, + { + "word": " emotionally", + "start": 808.46, + "end": 809.38, + "probability": 0.99560546875 + }, + { + "word": " fool", + "start": 809.38, + "end": 809.92, + "probability": 0.99462890625 + }, + { + "word": " you.", + "start": 809.92, + "end": 810.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 279, + "text": "So they send you an email that for whatever reason.", + "start": 810.96, + "end": 815.66, + "words": [ + { + "word": " So", + "start": 810.96, + "end": 811.42, + "probability": 0.486572265625 + }, + { + "word": " they", + "start": 811.42, + "end": 811.72, + "probability": 0.87744140625 + }, + { + "word": " send", + "start": 811.72, + "end": 812.24, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 812.24, + "end": 812.4, + "probability": 1.0 + }, + { + "word": " an", + "start": 812.4, + "end": 812.5, + "probability": 1.0 + }, + { + "word": " email", + "start": 812.5, + "end": 812.66, + "probability": 0.93310546875 + }, + { + "word": " that", + "start": 812.66, + "end": 813.2, + "probability": 0.974609375 + }, + { + "word": " for", + "start": 813.2, + "end": 814.6, + "probability": 0.505859375 + }, + { + "word": " whatever", + "start": 814.6, + "end": 815.3, + "probability": 1.0 + }, + { + "word": " reason.", + "start": 815.3, + "end": 815.66, + "probability": 1.0 + } + ] + }, + { + "id": 280, + "text": "Whatever the reasoning is within that email that makes you click on it.", + "start": 815.72, + "end": 819.6, + "words": [ + { + "word": " Whatever", + "start": 815.72, + "end": 816.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 816.12, + "end": 816.42, + "probability": 1.0 + }, + { + "word": " reasoning", + "start": 816.42, + "end": 817.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 817.38, + "end": 817.78, + "probability": 1.0 + }, + { + "word": " within", + "start": 817.78, + "end": 818.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 818.2, + "end": 818.42, + "probability": 1.0 + }, + { + "word": " email", + "start": 818.42, + "end": 818.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 818.66, + "end": 818.84, + "probability": 0.8974609375 + }, + { + "word": " makes", + "start": 818.84, + "end": 818.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 818.98, + "end": 819.1, + "probability": 1.0 + }, + { + "word": " click", + "start": 819.1, + "end": 819.28, + "probability": 1.0 + }, + { + "word": " on", + "start": 819.28, + "end": 819.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 819.46, + "end": 819.6, + "probability": 1.0 + } + ] + }, + { + "id": 281, + "text": "You'll click on it.", + "start": 819.66, + "end": 820.26, + "words": [ + { + "word": " You'll", + "start": 819.66, + "end": 819.82, + "probability": 0.998046875 + }, + { + "word": " click", + "start": 819.82, + "end": 820.0, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 820.0, + "end": 820.16, + "probability": 1.0 + }, + { + "word": " it.", + "start": 820.16, + "end": 820.26, + "probability": 1.0 + } + ] + }, + { + "id": 282, + "text": "You'll open the application.", + "start": 820.32, + "end": 821.0, + "words": [ + { + "word": " You'll", + "start": 820.32, + "end": 820.4, + "probability": 1.0 + }, + { + "word": " open", + "start": 820.4, + "end": 820.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 820.56, + "end": 820.68, + "probability": 1.0 + }, + { + "word": " application.", + "start": 820.68, + "end": 821.0, + "probability": 1.0 + } + ] + }, + { + "id": 283, + "text": "And suddenly you're infected.", + "start": 821.92, + "end": 823.34, + "words": [ + { + "word": " And", + "start": 821.92, + "end": 822.38, + "probability": 0.9990234375 + }, + { + "word": " suddenly", + "start": 822.38, + "end": 822.84, + "probability": 0.99755859375 + }, + { + "word": " you're", + "start": 822.84, + "end": 823.1, + "probability": 0.984375 + }, + { + "word": " infected.", + "start": 823.1, + "end": 823.34, + "probability": 1.0 + } + ] + }, + { + "id": 284, + "text": "And a lot of times it's so fast.", + "start": 823.66, + "end": 825.64, + "words": [ + { + "word": " And", + "start": 823.66, + "end": 823.92, + "probability": 0.93359375 + }, + { + "word": " a", + "start": 823.92, + "end": 824.06, + "probability": 1.0 + }, + { + "word": " lot", + "start": 824.06, + "end": 824.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 824.16, + "end": 824.2, + "probability": 1.0 + }, + { + "word": " times", + "start": 824.2, + "end": 824.4, + "probability": 1.0 + }, + { + "word": " it's", + "start": 824.4, + "end": 824.64, + "probability": 0.9970703125 + }, + { + "word": " so", + "start": 824.64, + "end": 824.92, + "probability": 1.0 + }, + { + "word": " fast.", + "start": 824.92, + "end": 825.64, + "probability": 1.0 + } + ] + }, + { + "id": 285, + "text": "And it doesn't do anything overt.", + "start": 825.82, + "end": 828.12, + "words": [ + { + "word": " And", + "start": 825.82, + "end": 826.28, + "probability": 0.662109375 + }, + { + "word": " it", + "start": 826.28, + "end": 827.24, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 827.24, + "end": 827.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 827.54, + "end": 827.62, + "probability": 1.0 + }, + { + "word": " anything", + "start": 827.62, + "end": 827.8, + "probability": 1.0 + }, + { + "word": " overt.", + "start": 827.8, + "end": 828.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 286, + "text": "You just click on it and nothing happens.", + "start": 828.36, + "end": 829.88, + "words": [ + { + "word": " You", + "start": 828.36, + "end": 828.82, + "probability": 0.99267578125 + }, + { + "word": " just", + "start": 828.82, + "end": 828.94, + "probability": 1.0 + }, + { + "word": " click", + "start": 828.94, + "end": 829.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 829.1, + "end": 829.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 829.24, + "end": 829.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 829.36, + "end": 829.44, + "probability": 0.93115234375 + }, + { + "word": " nothing", + "start": 829.44, + "end": 829.56, + "probability": 1.0 + }, + { + "word": " happens.", + "start": 829.56, + "end": 829.88, + "probability": 1.0 + } + ] + }, + { + "id": 287, + "text": "It's already done.", + "start": 830.54, + "end": 831.34, + "words": [ + { + "word": " It's", + "start": 830.54, + "end": 831.0, + "probability": 0.9990234375 + }, + { + "word": " already", + "start": 831.0, + "end": 831.16, + "probability": 1.0 + }, + { + "word": " done.", + "start": 831.16, + "end": 831.34, + "probability": 0.99072265625 + } + ] + }, + { + "id": 288, + "text": "It's already done what it needs to do.", + "start": 831.72, + "end": 833.56, + "words": [ + { + "word": " It's", + "start": 831.72, + "end": 832.18, + "probability": 0.990234375 + }, + { + "word": " already", + "start": 832.18, + "end": 832.28, + "probability": 0.99951171875 + }, + { + "word": " done", + "start": 832.28, + "end": 832.52, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 832.52, + "end": 832.72, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 832.72, + "end": 832.86, + "probability": 1.0 + }, + { + "word": " needs", + "start": 832.86, + "end": 833.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 833.04, + "end": 833.3, + "probability": 1.0 + }, + { + "word": " do.", + "start": 833.3, + "end": 833.56, + "probability": 1.0 + } + ] + }, + { + "id": 289, + "text": "It's just instant.", + "start": 834.54, + "end": 836.02, + "words": [ + { + "word": " It's", + "start": 834.54, + "end": 834.68, + "probability": 0.95703125 + }, + { + "word": " just", + "start": 834.68, + "end": 835.18, + "probability": 0.9765625 + }, + { + "word": " instant.", + "start": 835.18, + "end": 836.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 290, + "text": "And basically then it waits.", + "start": 837.5400000000001, + "end": 839.18, + "words": [ + { + "word": " And", + "start": 837.5400000000001, + "end": 837.94, + "probability": 0.8740234375 + }, + { + "word": " basically", + "start": 837.94, + "end": 838.34, + "probability": 0.966796875 + }, + { + "word": " then", + "start": 838.34, + "end": 838.68, + "probability": 0.61181640625 + }, + { + "word": " it", + "start": 838.68, + "end": 838.86, + "probability": 0.99853515625 + }, + { + "word": " waits.", + "start": 838.86, + "end": 839.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 291, + "text": "Now if it's one of those CryptoLocker ones.", + "start": 839.36, + "end": 841.02, + "words": [ + { + "word": " Now", + "start": 839.36, + "end": 839.7, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 839.7, + "end": 839.84, + "probability": 0.2069091796875 + }, + { + "word": " it's", + "start": 839.84, + "end": 839.98, + "probability": 1.0 + }, + { + "word": " one", + "start": 839.98, + "end": 840.08, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 840.08, + "end": 840.12, + "probability": 1.0 + }, + { + "word": " those", + "start": 840.12, + "end": 840.26, + "probability": 1.0 + }, + { + "word": " CryptoLocker", + "start": 840.26, + "end": 840.76, + "probability": 0.93359375 + }, + { + "word": " ones.", + "start": 840.76, + "end": 841.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 292, + "text": "It's in the background.", + "start": 841.18, + "end": 842.02, + "words": [ + { + "word": " It's", + "start": 841.18, + "end": 841.44, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 841.44, + "end": 841.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 841.58, + "end": 841.68, + "probability": 1.0 + }, + { + "word": " background.", + "start": 841.68, + "end": 842.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 293, + "text": "It is.", + "start": 842.24, + "end": 842.52, + "words": [ + { + "word": " It", + "start": 842.24, + "end": 842.34, + "probability": 0.99755859375 + }, + { + "word": " is.", + "start": 842.34, + "end": 842.52, + "probability": 0.0182647705078125 + } + ] + }, + { + "id": 294, + "text": "It's encrypting all of your documents.", + "start": 842.82, + "end": 844.44, + "words": [ + { + "word": " It's", + "start": 842.82, + "end": 843.22, + "probability": 0.99609375 + }, + { + "word": " encrypting", + "start": 843.22, + "end": 843.66, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 843.66, + "end": 843.76, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 843.76, + "end": 843.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 843.9, + "end": 844.02, + "probability": 1.0 + }, + { + "word": " documents.", + "start": 844.02, + "end": 844.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 295, + "text": "You don't even know it.", + "start": 844.98, + "end": 846.24, + "words": [ + { + "word": " You", + "start": 844.98, + "end": 845.38, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 845.38, + "end": 845.56, + "probability": 0.97607421875 + }, + { + "word": " even", + "start": 845.56, + "end": 845.9, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 845.9, + "end": 846.1, + "probability": 1.0 + }, + { + "word": " it.", + "start": 846.1, + "end": 846.24, + "probability": 1.0 + } + ] + }, + { + "id": 296, + "text": "So if you notice that your machine is just unreasonably slow after opening an email.", + "start": 847.62, + "end": 852.42, + "words": [ + { + "word": " So", + "start": 847.62, + "end": 848.02, + "probability": 0.99609375 + }, + { + "word": " if", + "start": 848.02, + "end": 848.42, + "probability": 0.80517578125 + }, + { + "word": " you", + "start": 848.42, + "end": 848.58, + "probability": 1.0 + }, + { + "word": " notice", + "start": 848.58, + "end": 848.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 848.8, + "end": 848.92, + "probability": 0.99267578125 + }, + { + "word": " your", + "start": 848.92, + "end": 849.0, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 849.0, + "end": 849.28, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 849.28, + "end": 849.48, + "probability": 0.810546875 + }, + { + "word": " just", + "start": 849.48, + "end": 849.68, + "probability": 0.99951171875 + }, + { + "word": " unreasonably", + "start": 849.68, + "end": 850.66, + "probability": 0.99267578125 + }, + { + "word": " slow", + "start": 850.66, + "end": 850.94, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 850.94, + "end": 851.6, + "probability": 0.0792236328125 + }, + { + "word": " opening", + "start": 851.6, + "end": 852.02, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 852.02, + "end": 852.24, + "probability": 1.0 + }, + { + "word": " email.", + "start": 852.24, + "end": 852.42, + "probability": 0.9892578125 + } + ] + }, + { + "id": 297, + "text": "Just really, really slow for no apparent reason.", + "start": 853.44, + "end": 856.58, + "words": [ + { + "word": " Just", + "start": 853.44, + "end": 853.84, + "probability": 0.998046875 + }, + { + "word": " really,", + "start": 853.84, + "end": 854.24, + "probability": 1.0 + }, + { + "word": " really", + "start": 854.32, + "end": 854.7, + "probability": 1.0 + }, + { + "word": " slow", + "start": 854.7, + "end": 855.16, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 855.16, + "end": 855.44, + "probability": 0.2017822265625 + }, + { + "word": " no", + "start": 855.44, + "end": 855.64, + "probability": 1.0 + }, + { + "word": " apparent", + "start": 855.64, + "end": 856.18, + "probability": 1.0 + }, + { + "word": " reason.", + "start": 856.18, + "end": 856.58, + "probability": 1.0 + } + ] + }, + { + "id": 298, + "text": "Right.", + "start": 856.64, + "end": 856.86, + "words": [ + { + "word": " Right.", + "start": 856.64, + "end": 856.86, + "probability": 0.828125 + } + ] + }, + { + "id": 299, + "text": "It used to be run nice and fast.", + "start": 856.92, + "end": 858.28, + "words": [ + { + "word": " It", + "start": 856.92, + "end": 857.04, + "probability": 0.998046875 + }, + { + "word": " used", + "start": 857.04, + "end": 857.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 857.26, + "end": 857.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 857.34, + "end": 857.46, + "probability": 1.0 + }, + { + "word": " run", + "start": 857.46, + "end": 857.6, + "probability": 0.2252197265625 + }, + { + "word": " nice", + "start": 857.6, + "end": 857.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 857.82, + "end": 857.98, + "probability": 1.0 + }, + { + "word": " fast.", + "start": 857.98, + "end": 858.28, + "probability": 1.0 + } + ] + }, + { + "id": 300, + "text": "And then suddenly there's this huge delay.", + "start": 858.44, + "end": 861.14, + "words": [ + { + "word": " And", + "start": 858.44, + "end": 858.64, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 858.64, + "end": 858.78, + "probability": 1.0 + }, + { + "word": " suddenly", + "start": 858.78, + "end": 859.24, + "probability": 1.0 + }, + { + "word": " there's", + "start": 859.24, + "end": 860.48, + "probability": 0.68359375 + }, + { + "word": " this", + "start": 860.48, + "end": 860.6, + "probability": 0.99951171875 + }, + { + "word": " huge", + "start": 860.6, + "end": 860.88, + "probability": 1.0 + }, + { + "word": " delay.", + "start": 860.88, + "end": 861.14, + "probability": 1.0 + } + ] + }, + { + "id": 301, + "text": "Yeah.", + "start": 861.66, + "end": 862.06, + "words": [ + { + "word": " Yeah.", + "start": 861.66, + "end": 862.06, + "probability": 0.98681640625 + } + ] + }, + { + "id": 302, + "text": "You need to turn that computer off.", + "start": 862.14, + "end": 863.5, + "words": [ + { + "word": " You", + "start": 862.14, + "end": 862.22, + "probability": 0.99365234375 + }, + { + "word": " need", + "start": 862.22, + "end": 862.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 862.36, + "end": 862.44, + "probability": 0.99951171875 + }, + { + "word": " turn", + "start": 862.44, + "end": 862.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 862.56, + "end": 862.74, + "probability": 1.0 + }, + { + "word": " computer", + "start": 862.74, + "end": 863.08, + "probability": 0.60498046875 + }, + { + "word": " off.", + "start": 863.08, + "end": 863.5, + "probability": 1.0 + } + ] + }, + { + "id": 303, + "text": "Right.", + "start": 863.86, + "end": 864.26, + "words": [ + { + "word": " Right.", + "start": 863.86, + "end": 864.26, + "probability": 0.998046875 + } + ] + }, + { + "id": 304, + "text": "And bring it down immediately.", + "start": 864.54, + "end": 866.0, + "words": [ + { + "word": " And", + "start": 864.54, + "end": 864.66, + "probability": 0.44921875 + }, + { + "word": " bring", + "start": 864.66, + "end": 865.14, + "probability": 0.97021484375 + }, + { + "word": " it", + "start": 865.14, + "end": 865.4, + "probability": 1.0 + }, + { + "word": " down", + "start": 865.4, + "end": 865.58, + "probability": 1.0 + }, + { + "word": " immediately.", + "start": 865.58, + "end": 866.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 305, + "text": "Get down to the guru.", + "start": 866.6600000000001, + "end": 867.92, + "words": [ + { + "word": " Get", + "start": 866.6600000000001, + "end": 867.22, + "probability": 0.99609375 + }, + { + "word": " down", + "start": 867.22, + "end": 867.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 867.42, + "end": 867.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 867.54, + "end": 867.64, + "probability": 0.99951171875 + }, + { + "word": " guru.", + "start": 867.64, + "end": 867.92, + "probability": 0.96044921875 + } + ] + }, + { + "id": 306, + "text": "That's right.", + "start": 868.14, + "end": 868.46, + "words": [ + { + "word": " That's", + "start": 868.14, + "end": 868.36, + "probability": 0.998046875 + }, + { + "word": " right.", + "start": 868.36, + "end": 868.46, + "probability": 1.0 + } + ] + }, + { + "id": 307, + "text": "But that way we can stop it.", + "start": 869.0600000000001, + "end": 871.96, + "words": [ + { + "word": " But", + "start": 869.0600000000001, + "end": 869.62, + "probability": 0.94970703125 + }, + { + "word": " that", + "start": 869.62, + "end": 869.78, + "probability": 0.99609375 + }, + { + "word": " way", + "start": 869.78, + "end": 869.94, + "probability": 1.0 + }, + { + "word": " we", + "start": 869.94, + "end": 870.12, + "probability": 0.96240234375 + }, + { + "word": " can", + "start": 870.12, + "end": 870.3, + "probability": 1.0 + }, + { + "word": " stop", + "start": 870.3, + "end": 871.58, + "probability": 0.626953125 + }, + { + "word": " it.", + "start": 871.58, + "end": 871.96, + "probability": 1.0 + } + ] + }, + { + "id": 308, + "text": "Because the encryption process itself is resource intensive.", + "start": 872.04, + "end": 875.3, + "words": [ + { + "word": " Because", + "start": 872.04, + "end": 872.46, + "probability": 0.9853515625 + }, + { + "word": " the", + "start": 872.46, + "end": 872.88, + "probability": 0.99951171875 + }, + { + "word": " encryption", + "start": 872.88, + "end": 873.3, + "probability": 1.0 + }, + { + "word": " process", + "start": 873.3, + "end": 873.62, + "probability": 1.0 + }, + { + "word": " itself", + "start": 873.62, + "end": 874.08, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 874.08, + "end": 874.46, + "probability": 0.9638671875 + }, + { + "word": " resource", + "start": 874.46, + "end": 874.96, + "probability": 0.99951171875 + }, + { + "word": " intensive.", + "start": 874.96, + "end": 875.3, + "probability": 0.88037109375 + } + ] + }, + { + "id": 309, + "text": "It takes a lot of sort of horsepower to make that happen.", + "start": 876.1400000000001, + "end": 880.06, + "words": [ + { + "word": " It", + "start": 876.1400000000001, + "end": 876.7, + "probability": 0.99951171875 + }, + { + "word": " takes", + "start": 876.7, + "end": 876.9, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 876.9, + "end": 877.08, + "probability": 1.0 + }, + { + "word": " lot", + "start": 877.08, + "end": 877.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 877.3, + "end": 877.52, + "probability": 1.0 + }, + { + "word": " sort", + "start": 877.52, + "end": 878.44, + "probability": 0.509765625 + }, + { + "word": " of", + "start": 878.44, + "end": 878.54, + "probability": 1.0 + }, + { + "word": " horsepower", + "start": 878.54, + "end": 878.9, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 878.9, + "end": 879.42, + "probability": 0.99755859375 + }, + { + "word": " make", + "start": 879.42, + "end": 879.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 879.6, + "end": 879.74, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 879.74, + "end": 880.06, + "probability": 1.0 + } + ] + }, + { + "id": 310, + "text": "So it's going to be sucking all of the performance out of your machine while it's trying to do this encryption in the background.", + "start": 880.66, + "end": 887.76, + "words": [ + { + "word": " So", + "start": 880.66, + "end": 881.16, + "probability": 0.98388671875 + }, + { + "word": " it's", + "start": 881.16, + "end": 882.32, + "probability": 0.916015625 + }, + { + "word": " going", + "start": 882.32, + "end": 882.4, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 882.4, + "end": 882.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 882.5, + "end": 882.64, + "probability": 1.0 + }, + { + "word": " sucking", + "start": 882.64, + "end": 883.02, + "probability": 1.0 + }, + { + "word": " all", + "start": 883.02, + "end": 883.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 883.36, + "end": 883.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 883.6, + "end": 883.8, + "probability": 1.0 + }, + { + "word": " performance", + "start": 883.8, + "end": 884.78, + "probability": 1.0 + }, + { + "word": " out", + "start": 884.78, + "end": 885.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 885.24, + "end": 885.34, + "probability": 1.0 + }, + { + "word": " your", + "start": 885.34, + "end": 885.4, + "probability": 1.0 + }, + { + "word": " machine", + "start": 885.4, + "end": 885.66, + "probability": 1.0 + }, + { + "word": " while", + "start": 885.66, + "end": 885.9, + "probability": 0.93994140625 + }, + { + "word": " it's", + "start": 885.9, + "end": 886.12, + "probability": 1.0 + }, + { + "word": " trying", + "start": 886.12, + "end": 886.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 886.42, + "end": 886.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 886.54, + "end": 886.7, + "probability": 1.0 + }, + { + "word": " this", + "start": 886.7, + "end": 886.84, + "probability": 0.9111328125 + }, + { + "word": " encryption", + "start": 886.84, + "end": 887.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 887.12, + "end": 887.4, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 887.4, + "end": 887.44, + "probability": 1.0 + }, + { + "word": " background.", + "start": 887.44, + "end": 887.76, + "probability": 1.0 + } + ] + }, + { + "id": 311, + "text": "So yeah.", + "start": 888.4000000000001, + "end": 889.52, + "words": [ + { + "word": " So", + "start": 888.4000000000001, + "end": 888.96, + "probability": 0.99560546875 + }, + { + "word": " yeah.", + "start": 888.96, + "end": 889.52, + "probability": 0.385498046875 + } + ] + }, + { + "id": 312, + "text": "If your machine is just real slow.", + "start": 889.6, + "end": 892.3, + "words": [ + { + "word": " If", + "start": 889.6, + "end": 889.88, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 889.88, + "end": 890.18, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 890.18, + "end": 890.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 890.46, + "end": 890.64, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 890.64, + "end": 890.82, + "probability": 1.0 + }, + { + "word": " real", + "start": 890.82, + "end": 891.98, + "probability": 0.99951171875 + }, + { + "word": " slow.", + "start": 891.98, + "end": 892.3, + "probability": 1.0 + } + ] + }, + { + "id": 313, + "text": "Like unreasonably.", + "start": 893.4000000000001, + "end": 894.52, + "words": [ + { + "word": " Like", + "start": 893.4000000000001, + "end": 893.96, + "probability": 0.9931640625 + }, + { + "word": " unreasonably.", + "start": 893.96, + "end": 894.52, + "probability": 0.8486328125 + } + ] + }, + { + "id": 314, + "text": "Uncharacteristically slow.", + "start": 895.6199999999999, + "end": 896.4, + "words": [ + { + "word": " Uncharacteristically", + "start": 895.6199999999999, + "end": 896.06, + "probability": 0.6435546875 + }, + { + "word": " slow.", + "start": 896.06, + "end": 896.4, + "probability": 0.9736328125 + } + ] + }, + { + "id": 315, + "text": "Then yeah.", + "start": 896.74, + "end": 897.46, + "words": [ + { + "word": " Then", + "start": 896.74, + "end": 897.18, + "probability": 0.98486328125 + }, + { + "word": " yeah.", + "start": 897.18, + "end": 897.46, + "probability": 0.7900390625 + } + ] + }, + { + "id": 316, + "text": "You've got a problem.", + "start": 897.54, + "end": 898.58, + "words": [ + { + "word": " You've", + "start": 897.54, + "end": 897.96, + "probability": 0.994140625 + }, + { + "word": " got", + "start": 897.96, + "end": 898.12, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 898.12, + "end": 898.22, + "probability": 0.99951171875 + }, + { + "word": " problem.", + "start": 898.22, + "end": 898.58, + "probability": 1.0 + } + ] + }, + { + "id": 317, + "text": "And even if it isn't an infection.", + "start": 899.04, + "end": 900.66, + "words": [ + { + "word": " And", + "start": 899.04, + "end": 899.48, + "probability": 0.9375 + }, + { + "word": " even", + "start": 899.48, + "end": 899.9, + "probability": 0.982421875 + }, + { + "word": " if", + "start": 899.9, + "end": 900.06, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 900.06, + "end": 900.14, + "probability": 0.99853515625 + }, + { + "word": " isn't", + "start": 900.14, + "end": 900.4, + "probability": 0.70166015625 + }, + { + "word": " an", + "start": 900.4, + "end": 900.44, + "probability": 0.94384765625 + }, + { + "word": " infection.", + "start": 900.44, + "end": 900.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 318, + "text": "Right.", + "start": 901.1, + "end": 901.52, + "words": [ + { + "word": " Right.", + "start": 901.1, + "end": 901.52, + "probability": 0.2109375 + } + ] + }, + { + "id": 319, + "text": "The only other time that your computer is really going to be like that.", + "start": 901.6, + "end": 904.02, + "words": [ + { + "word": " The", + "start": 901.6, + "end": 901.78, + "probability": 0.9794921875 + }, + { + "word": " only", + "start": 901.78, + "end": 902.1, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 902.1, + "end": 902.36, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 902.36, + "end": 902.6, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 902.6, + "end": 902.74, + "probability": 0.6142578125 + }, + { + "word": " your", + "start": 902.74, + "end": 902.84, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 902.84, + "end": 903.08, + "probability": 0.990234375 + }, + { + "word": " is", + "start": 903.08, + "end": 903.24, + "probability": 0.8056640625 + }, + { + "word": " really", + "start": 903.24, + "end": 903.38, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 903.38, + "end": 903.5, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 903.5, + "end": 903.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 903.56, + "end": 903.62, + "probability": 1.0 + }, + { + "word": " like", + "start": 903.62, + "end": 903.78, + "probability": 1.0 + }, + { + "word": " that.", + "start": 903.78, + "end": 904.02, + "probability": 1.0 + } + ] + }, + { + "id": 320, + "text": "Where it's just very, very slow.", + "start": 904.12, + "end": 907.6, + "words": [ + { + "word": " Where", + "start": 904.12, + "end": 904.26, + "probability": 0.9775390625 + }, + { + "word": " it's", + "start": 904.26, + "end": 904.44, + "probability": 0.9970703125 + }, + { + "word": " just", + "start": 904.44, + "end": 904.7, + "probability": 1.0 + }, + { + "word": " very,", + "start": 904.7, + "end": 906.9, + "probability": 0.0694580078125 + }, + { + "word": " very", + "start": 907.08, + "end": 907.28, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 907.28, + "end": 907.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 321, + "text": "Then you're probably have a failing hard drive or you've got a bad RAM chip or something that needs to be looked at anyway.", + "start": 907.76, + "end": 914.58, + "words": [ + { + "word": " Then", + "start": 907.76, + "end": 908.08, + "probability": 0.9951171875 + }, + { + "word": " you're", + "start": 908.08, + "end": 908.32, + "probability": 0.5283203125 + }, + { + "word": " probably", + "start": 908.32, + "end": 908.5, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 908.5, + "end": 908.66, + "probability": 0.5380859375 + }, + { + "word": " a", + "start": 908.66, + "end": 908.78, + "probability": 1.0 + }, + { + "word": " failing", + "start": 908.78, + "end": 908.94, + "probability": 0.99853515625 + }, + { + "word": " hard", + "start": 908.94, + "end": 909.2, + "probability": 1.0 + }, + { + "word": " drive", + "start": 909.2, + "end": 909.54, + "probability": 1.0 + }, + { + "word": " or", + "start": 909.54, + "end": 910.42, + "probability": 0.03564453125 + }, + { + "word": " you've", + "start": 910.42, + "end": 910.94, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 910.94, + "end": 911.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 911.0, + "end": 911.1, + "probability": 0.99951171875 + }, + { + "word": " bad", + "start": 911.1, + "end": 911.2, + "probability": 0.9990234375 + }, + { + "word": " RAM", + "start": 911.2, + "end": 911.46, + "probability": 0.884765625 + }, + { + "word": " chip", + "start": 911.46, + "end": 911.76, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 911.76, + "end": 912.08, + "probability": 0.98388671875 + }, + { + "word": " something", + "start": 912.08, + "end": 912.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 912.46, + "end": 913.0, + "probability": 0.95849609375 + }, + { + "word": " needs", + "start": 913.0, + "end": 913.62, + "probability": 0.96435546875 + }, + { + "word": " to", + "start": 913.62, + "end": 913.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 913.86, + "end": 913.94, + "probability": 1.0 + }, + { + "word": " looked", + "start": 913.94, + "end": 914.14, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 914.14, + "end": 914.3, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 914.3, + "end": 914.58, + "probability": 0.998046875 + } + ] + }, + { + "id": 322, + "text": "So if you notice that stuff, then it's time to bring it in.", + "start": 915.32, + "end": 919.7, + "words": [ + { + "word": " So", + "start": 915.32, + "end": 915.76, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 915.76, + "end": 916.16, + "probability": 0.982421875 + }, + { + "word": " you", + "start": 916.16, + "end": 916.42, + "probability": 0.83544921875 + }, + { + "word": " notice", + "start": 916.42, + "end": 917.04, + "probability": 0.9560546875 + }, + { + "word": " that", + "start": 917.04, + "end": 917.24, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 917.24, + "end": 917.46, + "probability": 1.0 + }, + { + "word": " then", + "start": 917.5, + "end": 917.7, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 917.7, + "end": 918.54, + "probability": 1.0 + }, + { + "word": " time", + "start": 918.54, + "end": 918.98, + "probability": 0.7041015625 + }, + { + "word": " to", + "start": 918.98, + "end": 919.26, + "probability": 1.0 + }, + { + "word": " bring", + "start": 919.26, + "end": 919.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 919.42, + "end": 919.54, + "probability": 1.0 + }, + { + "word": " in.", + "start": 919.54, + "end": 919.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 323, + "text": "Now, one of the other ways that you can avoid this is that.", + "start": 920.54, + "end": 923.68, + "words": [ + { + "word": " Now,", + "start": 920.54, + "end": 920.98, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 921.02, + "end": 921.12, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 921.12, + "end": 921.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 921.22, + "end": 921.22, + "probability": 1.0 + }, + { + "word": " other", + "start": 921.22, + "end": 921.36, + "probability": 1.0 + }, + { + "word": " ways", + "start": 921.36, + "end": 921.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 921.58, + "end": 921.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 921.74, + "end": 921.86, + "probability": 1.0 + }, + { + "word": " can", + "start": 921.86, + "end": 922.04, + "probability": 1.0 + }, + { + "word": " avoid", + "start": 922.04, + "end": 922.28, + "probability": 1.0 + }, + { + "word": " this", + "start": 922.28, + "end": 922.64, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 922.64, + "end": 923.3, + "probability": 0.97705078125 + }, + { + "word": " that.", + "start": 923.3, + "end": 923.68, + "probability": 0.99609375 + } + ] + }, + { + "id": 324, + "text": "Instead of going the Mac route.", + "start": 924.56, + "end": 925.82, + "words": [ + { + "word": " Instead", + "start": 924.56, + "end": 924.92, + "probability": 0.759765625 + }, + { + "word": " of", + "start": 924.92, + "end": 925.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 925.14, + "end": 925.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 925.26, + "end": 925.44, + "probability": 0.99951171875 + }, + { + "word": " Mac", + "start": 925.44, + "end": 925.6, + "probability": 0.89501953125 + }, + { + "word": " route.", + "start": 925.6, + "end": 925.82, + "probability": 1.0 + } + ] + }, + { + "id": 325, + "text": "Right.", + "start": 926.0, + "end": 926.14, + "words": [ + { + "word": " Right.", + "start": 926.0, + "end": 926.14, + "probability": 0.0262603759765625 + } + ] + }, + { + "id": 326, + "text": "If you want to pay four times too much for a machine, that's cool.", + "start": 926.24, + "end": 928.18, + "words": [ + { + "word": " If", + "start": 926.24, + "end": 926.34, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 926.34, + "end": 926.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 926.4, + "end": 926.52, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 926.52, + "end": 926.6, + "probability": 1.0 + }, + { + "word": " pay", + "start": 926.6, + "end": 926.7, + "probability": 0.99951171875 + }, + { + "word": " four", + "start": 926.7, + "end": 926.88, + "probability": 0.9912109375 + }, + { + "word": " times", + "start": 926.88, + "end": 927.04, + "probability": 1.0 + }, + { + "word": " too", + "start": 927.04, + "end": 927.22, + "probability": 0.99169921875 + }, + { + "word": " much", + "start": 927.22, + "end": 927.38, + "probability": 1.0 + }, + { + "word": " for", + "start": 927.38, + "end": 927.52, + "probability": 0.986328125 + }, + { + "word": " a", + "start": 927.52, + "end": 927.6, + "probability": 0.998046875 + }, + { + "word": " machine,", + "start": 927.6, + "end": 927.78, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 927.86, + "end": 928.02, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 928.02, + "end": 928.18, + "probability": 1.0 + } + ] + }, + { + "id": 327, + "text": "All right.", + "start": 928.42, + "end": 928.94, + "words": [ + { + "word": " All", + "start": 928.42, + "end": 928.78, + "probability": 0.8994140625 + }, + { + "word": " right.", + "start": 928.78, + "end": 928.94, + "probability": 1.0 + } + ] + }, + { + "id": 328, + "text": "If you've got the money, you can absolutely do that.", + "start": 929.0, + "end": 932.1, + "words": [ + { + "word": " If", + "start": 929.0, + "end": 929.12, + "probability": 0.79833984375 + }, + { + "word": " you've", + "start": 929.12, + "end": 929.16, + "probability": 0.8212890625 + }, + { + "word": " got", + "start": 929.16, + "end": 929.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 929.26, + "end": 929.4, + "probability": 1.0 + }, + { + "word": " money,", + "start": 929.4, + "end": 929.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 929.68, + "end": 930.26, + "probability": 1.0 + }, + { + "word": " can", + "start": 930.26, + "end": 930.54, + "probability": 1.0 + }, + { + "word": " absolutely", + "start": 930.54, + "end": 931.08, + "probability": 0.54541015625 + }, + { + "word": " do", + "start": 931.08, + "end": 931.84, + "probability": 1.0 + }, + { + "word": " that.", + "start": 931.84, + "end": 932.1, + "probability": 1.0 + } + ] + }, + { + "id": 329, + "text": "Just know that you're not completely safe.", + "start": 932.24, + "end": 934.18, + "words": [ + { + "word": " Just", + "start": 932.24, + "end": 932.6, + "probability": 0.99853515625 + }, + { + "word": " know", + "start": 932.6, + "end": 932.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 932.84, + "end": 933.0, + "probability": 1.0 + }, + { + "word": " you're", + "start": 933.0, + "end": 933.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 933.12, + "end": 933.28, + "probability": 1.0 + }, + { + "word": " completely", + "start": 933.28, + "end": 933.64, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 933.64, + "end": 934.18, + "probability": 1.0 + } + ] + }, + { + "id": 330, + "text": "And you still have to have some type of skepticism about the things that you click on.", + "start": 934.62, + "end": 939.3, + "words": [ + { + "word": " And", + "start": 934.62, + "end": 934.98, + "probability": 0.9736328125 + }, + { + "word": " you", + "start": 934.98, + "end": 935.06, + "probability": 0.9931640625 + }, + { + "word": " still", + "start": 935.06, + "end": 935.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 935.24, + "end": 935.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 935.4, + "end": 935.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 935.6, + "end": 935.76, + "probability": 1.0 + }, + { + "word": " some", + "start": 935.76, + "end": 936.0, + "probability": 1.0 + }, + { + "word": " type", + "start": 936.0, + "end": 936.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 936.32, + "end": 936.68, + "probability": 1.0 + }, + { + "word": " skepticism", + "start": 936.68, + "end": 937.94, + "probability": 1.0 + }, + { + "word": " about", + "start": 937.94, + "end": 938.34, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 938.34, + "end": 938.5, + "probability": 1.0 + }, + { + "word": " things", + "start": 938.5, + "end": 938.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 938.72, + "end": 938.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 938.82, + "end": 938.9, + "probability": 1.0 + }, + { + "word": " click", + "start": 938.9, + "end": 939.1, + "probability": 1.0 + }, + { + "word": " on.", + "start": 939.1, + "end": 939.3, + "probability": 1.0 + } + ] + }, + { + "id": 331, + "text": "About the places that you go.", + "start": 939.36, + "end": 941.78, + "words": [ + { + "word": " About", + "start": 939.36, + "end": 939.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 939.58, + "end": 939.86, + "probability": 1.0 + }, + { + "word": " places", + "start": 939.86, + "end": 940.96, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 940.96, + "end": 941.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 941.34, + "end": 941.54, + "probability": 1.0 + }, + { + "word": " go.", + "start": 941.54, + "end": 941.78, + "probability": 1.0 + } + ] + }, + { + "id": 332, + "text": "And make sure that you keep yourself safe.", + "start": 942.88, + "end": 945.74, + "words": [ + { + "word": " And", + "start": 942.88, + "end": 943.24, + "probability": 1.0 + }, + { + "word": " make", + "start": 943.24, + "end": 943.6, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 943.6, + "end": 943.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 943.84, + "end": 943.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 943.98, + "end": 944.1, + "probability": 1.0 + }, + { + "word": " keep", + "start": 944.1, + "end": 944.6, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 944.6, + "end": 945.38, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 945.38, + "end": 945.74, + "probability": 1.0 + } + ] + }, + { + "id": 333, + "text": "And have backups.", + "start": 945.88, + "end": 946.84, + "words": [ + { + "word": " And", + "start": 945.88, + "end": 946.18, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 946.18, + "end": 946.42, + "probability": 1.0 + }, + { + "word": " backups.", + "start": 946.42, + "end": 946.84, + "probability": 1.0 + } + ] + }, + { + "id": 334, + "text": "Always have backups.", + "start": 947.54, + "end": 948.82, + "words": [ + { + "word": " Always", + "start": 947.54, + "end": 947.9, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 947.9, + "end": 948.26, + "probability": 1.0 + }, + { + "word": " backups.", + "start": 948.26, + "end": 948.82, + "probability": 1.0 + } + ] + }, + { + "id": 335, + "text": "It's like every break I have to say it.", + "start": 949.64, + "end": 951.0, + "words": [ + { + "word": " It's", + "start": 949.64, + "end": 950.0, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 950.0, + "end": 950.04, + "probability": 0.9990234375 + }, + { + "word": " every", + "start": 950.04, + "end": 950.22, + "probability": 1.0 + }, + { + "word": " break", + "start": 950.22, + "end": 950.48, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 950.48, + "end": 950.6, + "probability": 0.8671875 + }, + { + "word": " have", + "start": 950.6, + "end": 950.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 950.7, + "end": 950.74, + "probability": 1.0 + }, + { + "word": " say", + "start": 950.74, + "end": 950.92, + "probability": 1.0 + }, + { + "word": " it.", + "start": 950.92, + "end": 951.0, + "probability": 1.0 + } + ] + }, + { + "id": 336, + "text": "Um.", + "start": 951.44, + "end": 951.8, + "words": [ + { + "word": " Um.", + "start": 951.44, + "end": 951.8, + "probability": 0.004703521728515625 + } + ] + }, + { + "id": 337, + "text": "But there are some things that you can do.", + "start": 953.08, + "end": 954.34, + "words": [ + { + "word": " But", + "start": 953.08, + "end": 953.44, + "probability": 0.99462890625 + }, + { + "word": " there", + "start": 953.44, + "end": 953.64, + "probability": 0.99462890625 + }, + { + "word": " are", + "start": 953.64, + "end": 953.72, + "probability": 0.71240234375 + }, + { + "word": " some", + "start": 953.72, + "end": 953.8, + "probability": 1.0 + }, + { + "word": " things", + "start": 953.8, + "end": 953.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 953.96, + "end": 954.06, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 954.06, + "end": 954.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 954.14, + "end": 954.22, + "probability": 1.0 + }, + { + "word": " do.", + "start": 954.22, + "end": 954.34, + "probability": 1.0 + } + ] + }, + { + "id": 338, + "text": "On the PC side.", + "start": 954.34, + "end": 954.94, + "words": [ + { + "word": " On", + "start": 954.34, + "end": 954.42, + "probability": 0.00592041015625 + }, + { + "word": " the", + "start": 954.42, + "end": 954.5, + "probability": 0.9951171875 + }, + { + "word": " PC", + "start": 954.5, + "end": 954.68, + "probability": 0.9873046875 + }, + { + "word": " side.", + "start": 954.68, + "end": 954.94, + "probability": 0.9921875 + } + ] + }, + { + "id": 339, + "text": "To really straighten that out.", + "start": 955.06, + "end": 956.86, + "words": [ + { + "word": " To", + "start": 955.06, + "end": 955.4, + "probability": 0.99169921875 + }, + { + "word": " really", + "start": 955.4, + "end": 955.72, + "probability": 0.99560546875 + }, + { + "word": " straighten", + "start": 955.72, + "end": 956.38, + "probability": 0.79833984375 + }, + { + "word": " that", + "start": 956.38, + "end": 956.62, + "probability": 0.99609375 + }, + { + "word": " out.", + "start": 956.62, + "end": 956.86, + "probability": 1.0 + } + ] + }, + { + "id": 340, + "text": "", + "start": 957.3, + "end": 957.3, + "words": [] + }, + { + "id": 341, + "text": "PCs have a weakness.", + "start": 958.56, + "end": 959.76, + "words": [ + { + "word": " PCs", + "start": 958.56, + "end": 959.04, + "probability": 0.85888671875 + }, + { + "word": " have", + "start": 959.04, + "end": 959.38, + "probability": 0.98486328125 + }, + { + "word": " a", + "start": 959.38, + "end": 959.52, + "probability": 0.99951171875 + }, + { + "word": " weakness.", + "start": 959.52, + "end": 959.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 342, + "text": "Right.", + "start": 960.04, + "end": 960.42, + "words": [ + { + "word": " Right.", + "start": 960.04, + "end": 960.42, + "probability": 0.97900390625 + } + ] + }, + { + "id": 343, + "text": "Everybody's like, well, they're so vulnerable.", + "start": 960.5, + "end": 961.92, + "words": [ + { + "word": " Everybody's", + "start": 960.5, + "end": 960.98, + "probability": 0.9658203125 + }, + { + "word": " like,", + "start": 960.98, + "end": 961.1, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 961.2, + "end": 961.3, + "probability": 0.89794921875 + }, + { + "word": " they're", + "start": 961.32, + "end": 961.4, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 961.4, + "end": 961.52, + "probability": 1.0 + }, + { + "word": " vulnerable.", + "start": 961.52, + "end": 961.92, + "probability": 1.0 + } + ] + }, + { + "id": 344, + "text": "And the reason that it is, is because back in Vista.", + "start": 962.44, + "end": 965.66, + "words": [ + { + "word": " And", + "start": 962.44, + "end": 962.92, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 962.92, + "end": 963.08, + "probability": 0.97119140625 + }, + { + "word": " reason", + "start": 963.08, + "end": 963.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 963.36, + "end": 963.46, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 963.46, + "end": 963.6, + "probability": 0.607421875 + }, + { + "word": " is,", + "start": 963.6, + "end": 963.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 963.84, + "end": 963.92, + "probability": 0.9970703125 + }, + { + "word": " because", + "start": 963.92, + "end": 964.24, + "probability": 1.0 + }, + { + "word": " back", + "start": 964.24, + "end": 965.06, + "probability": 0.759765625 + }, + { + "word": " in", + "start": 965.06, + "end": 965.32, + "probability": 1.0 + }, + { + "word": " Vista.", + "start": 965.32, + "end": 965.66, + "probability": 0.9931640625 + } + ] + }, + { + "id": 345, + "text": "When they decided to not make your machine vulnerable.", + "start": 965.72, + "end": 968.22, + "words": [ + { + "word": " When", + "start": 965.72, + "end": 966.14, + "probability": 0.9951171875 + }, + { + "word": " they", + "start": 966.14, + "end": 966.32, + "probability": 1.0 + }, + { + "word": " decided", + "start": 966.32, + "end": 966.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 966.62, + "end": 966.88, + "probability": 1.0 + }, + { + "word": " not", + "start": 966.88, + "end": 967.12, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 967.12, + "end": 967.46, + "probability": 1.0 + }, + { + "word": " your", + "start": 967.46, + "end": 967.66, + "probability": 1.0 + }, + { + "word": " machine", + "start": 967.66, + "end": 967.96, + "probability": 0.99951171875 + }, + { + "word": " vulnerable.", + "start": 967.96, + "end": 968.22, + "probability": 1.0 + } + ] + }, + { + "id": 346, + "text": "Everybody complained.", + "start": 968.62, + "end": 969.48, + "words": [ + { + "word": " Everybody", + "start": 968.62, + "end": 969.02, + "probability": 0.99951171875 + }, + { + "word": " complained.", + "start": 969.02, + "end": 969.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 347, + "text": "Right.", + "start": 970.16, + "end": 970.64, + "words": [ + { + "word": " Right.", + "start": 970.16, + "end": 970.64, + "probability": 0.9716796875 + } + ] + }, + { + "id": 348, + "text": "They were like, oh, I don't want to have to click.", + "start": 970.68, + "end": 972.22, + "words": [ + { + "word": " They", + "start": 970.68, + "end": 970.82, + "probability": 0.9951171875 + }, + { + "word": " were", + "start": 970.82, + "end": 970.96, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 970.96, + "end": 971.18, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 971.3, + "end": 971.42, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 971.44, + "end": 971.54, + "probability": 1.0 + }, + { + "word": " don't", + "start": 971.54, + "end": 971.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 971.66, + "end": 971.74, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 971.74, + "end": 971.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 971.82, + "end": 971.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 971.92, + "end": 972.04, + "probability": 1.0 + }, + { + "word": " click.", + "start": 972.04, + "end": 972.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 349, + "text": "Okay.", + "start": 972.26, + "end": 972.52, + "words": [ + { + "word": " Okay.", + "start": 972.26, + "end": 972.52, + "probability": 0.9609375 + } + ] + }, + { + "id": 350, + "text": "All the time.", + "start": 972.58, + "end": 973.22, + "words": [ + { + "word": " All", + "start": 972.58, + "end": 972.7, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 972.7, + "end": 972.84, + "probability": 1.0 + }, + { + "word": " time.", + "start": 972.84, + "end": 973.22, + "probability": 1.0 + } + ] + }, + { + "id": 351, + "text": "We're typing a password every time something dangerous could potentially be happening.", + "start": 973.22, + "end": 978.56, + "words": [ + { + "word": " We're", + "start": 973.22, + "end": 973.44, + "probability": 0.748046875 + }, + { + "word": " typing", + "start": 973.44, + "end": 973.8, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 973.8, + "end": 973.94, + "probability": 0.998046875 + }, + { + "word": " password", + "start": 973.94, + "end": 974.3, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 974.3, + "end": 974.82, + "probability": 0.341552734375 + }, + { + "word": " time", + "start": 974.82, + "end": 975.04, + "probability": 1.0 + }, + { + "word": " something", + "start": 975.04, + "end": 975.48, + "probability": 0.74609375 + }, + { + "word": " dangerous", + "start": 975.48, + "end": 976.78, + "probability": 0.86474609375 + }, + { + "word": " could", + "start": 976.78, + "end": 977.34, + "probability": 0.98291015625 + }, + { + "word": " potentially", + "start": 977.34, + "end": 977.82, + "probability": 0.99755859375 + }, + { + "word": " be", + "start": 977.82, + "end": 978.16, + "probability": 0.99951171875 + }, + { + "word": " happening.", + "start": 978.16, + "end": 978.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 352, + "text": "Because it was popping up that there was even a famous sort of commercial that Mac did.", + "start": 978.7, + "end": 983.34, + "words": [ + { + "word": " Because", + "start": 978.7, + "end": 979.12, + "probability": 0.77294921875 + }, + { + "word": " it", + "start": 979.12, + "end": 979.22, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 979.22, + "end": 979.34, + "probability": 1.0 + }, + { + "word": " popping", + "start": 979.34, + "end": 979.58, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 979.58, + "end": 979.9, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 979.9, + "end": 980.04, + "probability": 0.77197265625 + }, + { + "word": " there", + "start": 980.04, + "end": 980.58, + "probability": 0.92236328125 + }, + { + "word": " was", + "start": 980.58, + "end": 980.68, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 980.68, + "end": 980.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 980.84, + "end": 980.98, + "probability": 1.0 + }, + { + "word": " famous", + "start": 980.98, + "end": 981.28, + "probability": 0.99951171875 + }, + { + "word": " sort", + "start": 981.28, + "end": 982.14, + "probability": 0.7392578125 + }, + { + "word": " of", + "start": 982.14, + "end": 982.24, + "probability": 1.0 + }, + { + "word": " commercial", + "start": 982.24, + "end": 982.56, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 982.56, + "end": 982.82, + "probability": 0.98095703125 + }, + { + "word": " Mac", + "start": 982.82, + "end": 983.04, + "probability": 0.99560546875 + }, + { + "word": " did.", + "start": 983.04, + "end": 983.34, + "probability": 0.99267578125 + } + ] + }, + { + "id": 353, + "text": "Based on.", + "start": 983.5, + "end": 984.22, + "words": [ + { + "word": " Based", + "start": 983.5, + "end": 983.98, + "probability": 0.923828125 + }, + { + "word": " on.", + "start": 983.98, + "end": 984.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 354, + "text": "That the Mac PC commercials.", + "start": 984.34, + "end": 986.08, + "words": [ + { + "word": " That", + "start": 984.34, + "end": 984.48, + "probability": 0.0166015625 + }, + { + "word": " the", + "start": 984.48, + "end": 984.74, + "probability": 0.1085205078125 + }, + { + "word": " Mac", + "start": 984.74, + "end": 985.14, + "probability": 0.9228515625 + }, + { + "word": " PC", + "start": 985.14, + "end": 985.46, + "probability": 0.97705078125 + }, + { + "word": " commercials.", + "start": 985.46, + "end": 986.08, + "probability": 0.98828125 + } + ] + }, + { + "id": 355, + "text": "Where it was like, are you sure you want to do that?", + "start": 986.76, + "end": 988.52, + "words": [ + { + "word": " Where", + "start": 986.76, + "end": 987.12, + "probability": 0.93115234375 + }, + { + "word": " it", + "start": 987.12, + "end": 987.28, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 987.28, + "end": 987.4, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 987.4, + "end": 987.6, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 987.66, + "end": 987.74, + "probability": 0.9775390625 + }, + { + "word": " you", + "start": 987.74, + "end": 987.86, + "probability": 1.0 + }, + { + "word": " sure", + "start": 987.86, + "end": 987.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 987.98, + "end": 988.08, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 988.08, + "end": 988.18, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 988.18, + "end": 988.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 988.26, + "end": 988.38, + "probability": 1.0 + }, + { + "word": " that?", + "start": 988.38, + "end": 988.52, + "probability": 1.0 + } + ] + }, + { + "id": 356, + "text": "Yes.", + "start": 989.02, + "end": 989.38, + "words": [ + { + "word": " Yes.", + "start": 989.02, + "end": 989.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 357, + "text": "All right.", + "start": 989.86, + "end": 990.36, + "words": [ + { + "word": " All", + "start": 989.86, + "end": 990.22, + "probability": 0.45751953125 + }, + { + "word": " right.", + "start": 990.22, + "end": 990.36, + "probability": 1.0 + } + ] + }, + { + "id": 358, + "text": "That is the mechanism that keeps you safe.", + "start": 991.4399999999999, + "end": 994.26, + "words": [ + { + "word": " That", + "start": 991.4399999999999, + "end": 991.8, + "probability": 0.99072265625 + }, + { + "word": " is", + "start": 991.8, + "end": 992.16, + "probability": 0.9501953125 + }, + { + "word": " the", + "start": 992.16, + "end": 992.58, + "probability": 1.0 + }, + { + "word": " mechanism", + "start": 992.58, + "end": 993.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 993.12, + "end": 993.52, + "probability": 0.99755859375 + }, + { + "word": " keeps", + "start": 993.52, + "end": 993.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 993.74, + "end": 993.98, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 993.98, + "end": 994.26, + "probability": 1.0 + } + ] + }, + { + "id": 359, + "text": "And the problem is, is that now Microsoft sort of back that off a little bit.", + "start": 994.84, + "end": 999.98, + "words": [ + { + "word": " And", + "start": 994.84, + "end": 995.2, + "probability": 0.974609375 + }, + { + "word": " the", + "start": 995.2, + "end": 995.3, + "probability": 0.9990234375 + }, + { + "word": " problem", + "start": 995.3, + "end": 995.54, + "probability": 1.0 + }, + { + "word": " is,", + "start": 995.54, + "end": 995.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 995.76, + "end": 995.82, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 995.82, + "end": 995.92, + "probability": 1.0 + }, + { + "word": " now", + "start": 995.92, + "end": 996.24, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 996.24, + "end": 997.1, + "probability": 0.9306640625 + }, + { + "word": " sort", + "start": 997.1, + "end": 997.44, + "probability": 0.9814453125 + }, + { + "word": " of", + "start": 997.44, + "end": 997.64, + "probability": 1.0 + }, + { + "word": " back", + "start": 997.64, + "end": 999.02, + "probability": 0.345947265625 + }, + { + "word": " that", + "start": 999.02, + "end": 999.24, + "probability": 1.0 + }, + { + "word": " off", + "start": 999.24, + "end": 999.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 999.42, + "end": 999.54, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 999.54, + "end": 999.68, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 999.68, + "end": 999.98, + "probability": 1.0 + } + ] + }, + { + "id": 360, + "text": "Right.", + "start": 1000.26, + "end": 1000.62, + "words": [ + { + "word": " Right.", + "start": 1000.26, + "end": 1000.62, + "probability": 0.833984375 + } + ] + }, + { + "id": 361, + "text": "For Windows 7.", + "start": 1000.72, + "end": 1002.1, + "words": [ + { + "word": " For", + "start": 1000.72, + "end": 1000.9, + "probability": 0.99169921875 + }, + { + "word": " Windows", + "start": 1000.9, + "end": 1001.4, + "probability": 0.837890625 + }, + { + "word": " 7.", + "start": 1001.4, + "end": 1002.1, + "probability": 0.98486328125 + } + ] + }, + { + "id": 362, + "text": "Just to kind of make people shut up.", + "start": 1002.26, + "end": 1004.22, + "words": [ + { + "word": " Just", + "start": 1002.26, + "end": 1002.62, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1002.62, + "end": 1002.86, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1002.86, + "end": 1003.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 1003.34, + "end": 1003.44, + "probability": 1.0 + }, + { + "word": " make", + "start": 1003.44, + "end": 1003.56, + "probability": 1.0 + }, + { + "word": " people", + "start": 1003.56, + "end": 1003.8, + "probability": 1.0 + }, + { + "word": " shut", + "start": 1003.8, + "end": 1004.02, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1004.02, + "end": 1004.22, + "probability": 1.0 + } + ] + }, + { + "id": 363, + "text": "They were complaining so much about, well, why do I always have to click on this thing?", + "start": 1004.8, + "end": 1008.62, + "words": [ + { + "word": " They", + "start": 1004.8, + "end": 1005.16, + "probability": 0.9990234375 + }, + { + "word": " were", + "start": 1005.16, + "end": 1005.3, + "probability": 0.86376953125 + }, + { + "word": " complaining", + "start": 1005.3, + "end": 1005.6, + "probability": 1.0 + }, + { + "word": " so", + "start": 1005.6, + "end": 1006.0, + "probability": 1.0 + }, + { + "word": " much", + "start": 1006.0, + "end": 1006.28, + "probability": 1.0 + }, + { + "word": " about,", + "start": 1006.28, + "end": 1006.48, + "probability": 0.9990234375 + }, + { + "word": " well,", + "start": 1006.56, + "end": 1006.68, + "probability": 0.96533203125 + }, + { + "word": " why", + "start": 1006.7, + "end": 1007.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 1007.0, + "end": 1007.14, + "probability": 1.0 + }, + { + "word": " I", + "start": 1007.14, + "end": 1007.24, + "probability": 1.0 + }, + { + "word": " always", + "start": 1007.24, + "end": 1007.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 1007.38, + "end": 1007.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1007.5, + "end": 1007.64, + "probability": 1.0 + }, + { + "word": " click", + "start": 1007.64, + "end": 1008.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1008.1, + "end": 1008.26, + "probability": 1.0 + }, + { + "word": " this", + "start": 1008.26, + "end": 1008.44, + "probability": 1.0 + }, + { + "word": " thing?", + "start": 1008.44, + "end": 1008.62, + "probability": 1.0 + } + ] + }, + { + "id": 364, + "text": "It makes the screen flash.", + "start": 1008.68, + "end": 1009.74, + "words": [ + { + "word": " It", + "start": 1008.68, + "end": 1008.74, + "probability": 0.99609375 + }, + { + "word": " makes", + "start": 1008.74, + "end": 1008.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1008.86, + "end": 1008.96, + "probability": 1.0 + }, + { + "word": " screen", + "start": 1008.96, + "end": 1009.28, + "probability": 1.0 + }, + { + "word": " flash.", + "start": 1009.28, + "end": 1009.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 365, + "text": "And then I have to click on yes.", + "start": 1009.94, + "end": 1011.3, + "words": [ + { + "word": " And", + "start": 1009.94, + "end": 1010.28, + "probability": 1.0 + }, + { + "word": " then", + "start": 1010.28, + "end": 1010.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 1010.36, + "end": 1010.5, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1010.5, + "end": 1010.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 1010.62, + "end": 1010.74, + "probability": 1.0 + }, + { + "word": " click", + "start": 1010.74, + "end": 1010.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 1010.9, + "end": 1011.06, + "probability": 1.0 + }, + { + "word": " yes.", + "start": 1011.06, + "end": 1011.3, + "probability": 0.95458984375 + } + ] + }, + { + "id": 366, + "text": "And the answer is you don't have to click.", + "start": 1012.26, + "end": 1014.32, + "words": [ + { + "word": " And", + "start": 1012.26, + "end": 1012.62, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1012.62, + "end": 1012.94, + "probability": 0.9990234375 + }, + { + "word": " answer", + "start": 1012.94, + "end": 1013.48, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1013.48, + "end": 1013.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 1013.68, + "end": 1013.82, + "probability": 0.330078125 + }, + { + "word": " don't", + "start": 1013.82, + "end": 1013.94, + "probability": 1.0 + }, + { + "word": " have", + "start": 1013.94, + "end": 1014.04, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1014.04, + "end": 1014.16, + "probability": 0.99951171875 + }, + { + "word": " click.", + "start": 1014.16, + "end": 1014.32, + "probability": 0.9228515625 + } + ] + }, + { + "id": 367, + "text": "On yes.", + "start": 1014.32, + "end": 1014.58, + "words": [ + { + "word": " On", + "start": 1014.32, + "end": 1014.42, + "probability": 0.009429931640625 + }, + { + "word": " yes.", + "start": 1014.42, + "end": 1014.58, + "probability": 0.2275390625 + } + ] + }, + { + "id": 368, + "text": "Really.", + "start": 1015.86, + "end": 1016.22, + "words": [ + { + "word": " Really.", + "start": 1015.86, + "end": 1016.22, + "probability": 0.962890625 + } + ] + }, + { + "id": 369, + "text": "If you use a Mac and you're very familiar with this already, then which is anytime you try to install a piece of software, it pops up a box and says, hey, what's your password?", + "start": 1016.86, + "end": 1025.66, + "words": [ + { + "word": " If", + "start": 1016.86, + "end": 1017.22, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 1017.22, + "end": 1017.4, + "probability": 0.50537109375 + }, + { + "word": " use", + "start": 1017.4, + "end": 1017.84, + "probability": 0.97607421875 + }, + { + "word": " a", + "start": 1017.84, + "end": 1017.94, + "probability": 0.98583984375 + }, + { + "word": " Mac", + "start": 1017.94, + "end": 1018.12, + "probability": 0.95947265625 + }, + { + "word": " and", + "start": 1018.12, + "end": 1018.62, + "probability": 0.09674072265625 + }, + { + "word": " you're", + "start": 1018.62, + "end": 1018.8, + "probability": 0.9892578125 + }, + { + "word": " very", + "start": 1018.8, + "end": 1019.02, + "probability": 0.97314453125 + }, + { + "word": " familiar", + "start": 1019.02, + "end": 1019.36, + "probability": 0.96923828125 + }, + { + "word": " with", + "start": 1019.36, + "end": 1019.62, + "probability": 0.9658203125 + }, + { + "word": " this", + "start": 1019.62, + "end": 1019.78, + "probability": 0.99462890625 + }, + { + "word": " already,", + "start": 1019.78, + "end": 1020.06, + "probability": 0.98681640625 + }, + { + "word": " then", + "start": 1020.18, + "end": 1020.38, + "probability": 0.98388671875 + }, + { + "word": " which", + "start": 1020.38, + "end": 1020.88, + "probability": 0.70263671875 + }, + { + "word": " is", + "start": 1020.88, + "end": 1021.04, + "probability": 0.99951171875 + }, + { + "word": " anytime", + "start": 1021.04, + "end": 1021.32, + "probability": 0.724609375 + }, + { + "word": " you", + "start": 1021.32, + "end": 1021.58, + "probability": 0.99951171875 + }, + { + "word": " try", + "start": 1021.58, + "end": 1021.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1021.7, + "end": 1021.84, + "probability": 0.99951171875 + }, + { + "word": " install", + "start": 1021.84, + "end": 1022.04, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1022.04, + "end": 1022.16, + "probability": 0.99951171875 + }, + { + "word": " piece", + "start": 1022.16, + "end": 1022.28, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1022.28, + "end": 1022.38, + "probability": 0.99951171875 + }, + { + "word": " software,", + "start": 1022.38, + "end": 1022.74, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1022.88, + "end": 1023.04, + "probability": 0.9990234375 + }, + { + "word": " pops", + "start": 1023.04, + "end": 1023.26, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 1023.26, + "end": 1023.48, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1023.48, + "end": 1023.54, + "probability": 0.998046875 + }, + { + "word": " box", + "start": 1023.54, + "end": 1023.8, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1023.8, + "end": 1023.94, + "probability": 0.99609375 + }, + { + "word": " says,", + "start": 1023.94, + "end": 1024.14, + "probability": 0.99853515625 + }, + { + "word": " hey,", + "start": 1024.26, + "end": 1024.8, + "probability": 0.47412109375 + }, + { + "word": " what's", + "start": 1024.96, + "end": 1025.2, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1025.2, + "end": 1025.26, + "probability": 0.99951171875 + }, + { + "word": " password?", + "start": 1025.26, + "end": 1025.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 370, + "text": "Right.", + "start": 1026.7, + "end": 1027.06, + "words": [ + { + "word": " Right.", + "start": 1026.7, + "end": 1027.06, + "probability": 0.86328125 + } + ] + }, + { + "id": 371, + "text": "It's not just clicking.", + "start": 1027.14, + "end": 1027.68, + "words": [ + { + "word": " It's", + "start": 1027.14, + "end": 1027.2, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 1027.2, + "end": 1027.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 1027.26, + "end": 1027.42, + "probability": 1.0 + }, + { + "word": " clicking.", + "start": 1027.42, + "end": 1027.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 372, + "text": "Yes.", + "start": 1027.76, + "end": 1027.94, + "words": [ + { + "word": " Yes.", + "start": 1027.76, + "end": 1027.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 373, + "text": "You actually have to type a password in in order to make it happen.", + "start": 1028.0, + "end": 1030.8, + "words": [ + { + "word": " You", + "start": 1028.0, + "end": 1028.16, + "probability": 0.99755859375 + }, + { + "word": " actually", + "start": 1028.16, + "end": 1028.26, + "probability": 0.78955078125 + }, + { + "word": " have", + "start": 1028.26, + "end": 1028.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1028.4, + "end": 1028.52, + "probability": 1.0 + }, + { + "word": " type", + "start": 1028.52, + "end": 1028.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1028.72, + "end": 1028.84, + "probability": 0.9990234375 + }, + { + "word": " password", + "start": 1028.84, + "end": 1029.26, + "probability": 1.0 + }, + { + "word": " in", + "start": 1029.26, + "end": 1029.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 1029.56, + "end": 1029.98, + "probability": 0.9384765625 + }, + { + "word": " order", + "start": 1029.98, + "end": 1030.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1030.14, + "end": 1030.24, + "probability": 1.0 + }, + { + "word": " make", + "start": 1030.24, + "end": 1030.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 1030.4, + "end": 1030.52, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 1030.52, + "end": 1030.8, + "probability": 1.0 + } + ] + }, + { + "id": 374, + "text": "And you can do that in Windows.", + "start": 1032.0200000000002, + "end": 1033.78, + "words": [ + { + "word": " And", + "start": 1032.0200000000002, + "end": 1032.38, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1032.38, + "end": 1032.74, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1032.74, + "end": 1032.94, + "probability": 1.0 + }, + { + "word": " do", + "start": 1032.94, + "end": 1033.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1033.16, + "end": 1033.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 1033.36, + "end": 1033.56, + "probability": 0.99853515625 + }, + { + "word": " Windows.", + "start": 1033.56, + "end": 1033.78, + "probability": 0.95947265625 + } + ] + }, + { + "id": 375, + "text": "There's some settings that you can.", + "start": 1034.1, + "end": 1036.52, + "words": [ + { + "word": " There's", + "start": 1034.1, + "end": 1034.46, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 1034.46, + "end": 1034.62, + "probability": 0.99951171875 + }, + { + "word": " settings", + "start": 1034.62, + "end": 1035.34, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1035.34, + "end": 1036.02, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1036.02, + "end": 1036.24, + "probability": 1.0 + }, + { + "word": " can.", + "start": 1036.24, + "end": 1036.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 376, + "text": "That you can put in the machine to make it behave just like a Mac when it comes to how you install software.", + "start": 1037.7800000000002, + "end": 1043.64, + "words": [ + { + "word": " That", + "start": 1037.7800000000002, + "end": 1038.14, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1038.14, + "end": 1038.32, + "probability": 1.0 + }, + { + "word": " can", + "start": 1038.32, + "end": 1038.44, + "probability": 1.0 + }, + { + "word": " put", + "start": 1038.44, + "end": 1038.6, + "probability": 1.0 + }, + { + "word": " in", + "start": 1038.6, + "end": 1038.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1038.7, + "end": 1038.78, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1038.78, + "end": 1039.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 1039.2, + "end": 1039.52, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 1039.52, + "end": 1039.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 1039.72, + "end": 1039.88, + "probability": 1.0 + }, + { + "word": " behave", + "start": 1039.88, + "end": 1040.32, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1040.32, + "end": 1041.46, + "probability": 0.986328125 + }, + { + "word": " like", + "start": 1041.46, + "end": 1041.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1041.68, + "end": 1041.76, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 1041.76, + "end": 1041.92, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 1041.92, + "end": 1042.1, + "probability": 0.9931640625 + }, + { + "word": " it", + "start": 1042.1, + "end": 1042.2, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1042.2, + "end": 1042.36, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1042.36, + "end": 1042.54, + "probability": 1.0 + }, + { + "word": " how", + "start": 1042.54, + "end": 1042.7, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 1042.7, + "end": 1042.92, + "probability": 1.0 + }, + { + "word": " install", + "start": 1042.92, + "end": 1043.22, + "probability": 1.0 + }, + { + "word": " software.", + "start": 1043.22, + "end": 1043.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 377, + "text": "Which includes infections.", + "start": 1043.64, + "end": 1044.68, + "words": [ + { + "word": " Which", + "start": 1043.64, + "end": 1043.82, + "probability": 0.04339599609375 + }, + { + "word": " includes", + "start": 1043.82, + "end": 1044.28, + "probability": 0.99951171875 + }, + { + "word": " infections.", + "start": 1044.28, + "end": 1044.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 378, + "text": "So rather than, you know, you're just surfing around and then suddenly you get a password box that says, hey, enter your password.", + "start": 1045.4, + "end": 1051.48, + "words": [ + { + "word": " So", + "start": 1045.4, + "end": 1045.8, + "probability": 0.958984375 + }, + { + "word": " rather", + "start": 1045.8, + "end": 1046.12, + "probability": 0.849609375 + }, + { + "word": " than,", + "start": 1046.12, + "end": 1046.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 1046.62, + "end": 1047.22, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1047.22, + "end": 1047.38, + "probability": 0.9755859375 + }, + { + "word": " you're", + "start": 1047.38, + "end": 1047.54, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1047.54, + "end": 1047.68, + "probability": 1.0 + }, + { + "word": " surfing", + "start": 1047.68, + "end": 1047.94, + "probability": 0.99951171875 + }, + { + "word": " around", + "start": 1047.94, + "end": 1048.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 1048.18, + "end": 1048.48, + "probability": 0.6796875 + }, + { + "word": " then", + "start": 1048.48, + "end": 1048.6, + "probability": 0.99951171875 + }, + { + "word": " suddenly", + "start": 1048.6, + "end": 1048.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 1048.9, + "end": 1049.08, + "probability": 1.0 + }, + { + "word": " get", + "start": 1049.08, + "end": 1049.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1049.2, + "end": 1049.26, + "probability": 1.0 + }, + { + "word": " password", + "start": 1049.26, + "end": 1049.66, + "probability": 1.0 + }, + { + "word": " box", + "start": 1049.66, + "end": 1050.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 1050.04, + "end": 1050.2, + "probability": 0.98876953125 + }, + { + "word": " says,", + "start": 1050.2, + "end": 1050.34, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 1050.4, + "end": 1050.52, + "probability": 0.8916015625 + }, + { + "word": " enter", + "start": 1050.6, + "end": 1051.04, + "probability": 0.97509765625 + }, + { + "word": " your", + "start": 1051.04, + "end": 1051.14, + "probability": 0.99951171875 + }, + { + "word": " password.", + "start": 1051.14, + "end": 1051.48, + "probability": 1.0 + } + ] + }, + { + "id": 379, + "text": "And all you're doing is surfing the web or checking your email.", + "start": 1051.7, + "end": 1054.04, + "words": [ + { + "word": " And", + "start": 1051.7, + "end": 1052.1, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1052.1, + "end": 1052.22, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1052.22, + "end": 1052.38, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1052.38, + "end": 1052.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 1052.54, + "end": 1052.68, + "probability": 1.0 + }, + { + "word": " surfing", + "start": 1052.68, + "end": 1053.08, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1053.08, + "end": 1053.24, + "probability": 1.0 + }, + { + "word": " web", + "start": 1053.24, + "end": 1053.38, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 1053.38, + "end": 1053.48, + "probability": 1.0 + }, + { + "word": " checking", + "start": 1053.48, + "end": 1053.7, + "probability": 1.0 + }, + { + "word": " your", + "start": 1053.7, + "end": 1053.82, + "probability": 1.0 + }, + { + "word": " email.", + "start": 1053.82, + "end": 1054.04, + "probability": 0.97509765625 + } + ] + }, + { + "id": 380, + "text": "It shouldn't be asking for that.", + "start": 1055.64, + "end": 1057.02, + "words": [ + { + "word": " It", + "start": 1055.64, + "end": 1056.04, + "probability": 0.87744140625 + }, + { + "word": " shouldn't", + "start": 1056.04, + "end": 1056.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 1056.34, + "end": 1056.42, + "probability": 1.0 + }, + { + "word": " asking", + "start": 1056.42, + "end": 1056.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 1056.62, + "end": 1056.84, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1056.84, + "end": 1057.02, + "probability": 1.0 + } + ] + }, + { + "id": 381, + "text": "That should be a giant red flag that says, oh, something bad's happening here.", + "start": 1057.16, + "end": 1061.5, + "words": [ + { + "word": " That", + "start": 1057.16, + "end": 1057.26, + "probability": 0.71826171875 + }, + { + "word": " should", + "start": 1057.26, + "end": 1057.4, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1057.4, + "end": 1057.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 1057.48, + "end": 1057.56, + "probability": 1.0 + }, + { + "word": " giant", + "start": 1057.56, + "end": 1057.92, + "probability": 1.0 + }, + { + "word": " red", + "start": 1057.92, + "end": 1058.14, + "probability": 1.0 + }, + { + "word": " flag", + "start": 1058.14, + "end": 1058.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 1058.5, + "end": 1058.76, + "probability": 1.0 + }, + { + "word": " says,", + "start": 1058.76, + "end": 1059.02, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 1059.12, + "end": 1059.96, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 1060.1, + "end": 1060.34, + "probability": 1.0 + }, + { + "word": " bad's", + "start": 1060.34, + "end": 1060.82, + "probability": 0.947265625 + }, + { + "word": " happening", + "start": 1060.82, + "end": 1061.12, + "probability": 1.0 + }, + { + "word": " here.", + "start": 1061.12, + "end": 1061.5, + "probability": 1.0 + } + ] + }, + { + "id": 382, + "text": "And and you have the opportunity to stop it at that moment.", + "start": 1061.94, + "end": 1065.34, + "words": [ + { + "word": " And", + "start": 1061.94, + "end": 1062.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 1062.34, + "end": 1062.54, + "probability": 0.0131988525390625 + }, + { + "word": " you", + "start": 1062.54, + "end": 1062.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 1062.96, + "end": 1063.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1063.14, + "end": 1063.24, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 1063.24, + "end": 1063.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1063.66, + "end": 1063.96, + "probability": 1.0 + }, + { + "word": " stop", + "start": 1063.96, + "end": 1064.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 1064.28, + "end": 1064.48, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1064.48, + "end": 1064.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 1064.72, + "end": 1064.98, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 1064.98, + "end": 1065.34, + "probability": 1.0 + } + ] + }, + { + "id": 383, + "text": "So we have a couple of different options for that down at Computer Guru.", + "start": 1066.5399999999997, + "end": 1069.76, + "words": [ + { + "word": " So", + "start": 1066.5399999999997, + "end": 1066.9399999999998, + "probability": 1.0 + }, + { + "word": " we", + "start": 1066.9399999999998, + "end": 1067.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 1067.34, + "end": 1067.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 1067.48, + "end": 1067.58, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1067.58, + "end": 1067.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1067.78, + "end": 1067.86, + "probability": 1.0 + }, + { + "word": " different", + "start": 1067.86, + "end": 1068.0, + "probability": 1.0 + }, + { + "word": " options", + "start": 1068.0, + "end": 1068.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 1068.36, + "end": 1068.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1068.54, + "end": 1068.68, + "probability": 1.0 + }, + { + "word": " down", + "start": 1068.68, + "end": 1068.9, + "probability": 1.0 + }, + { + "word": " at", + "start": 1068.9, + "end": 1069.14, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 1069.14, + "end": 1069.48, + "probability": 0.966796875 + }, + { + "word": " Guru.", + "start": 1069.48, + "end": 1069.76, + "probability": 0.921875 + } + ] + }, + { + "id": 384, + "text": "Right.", + "start": 1070.08, + "end": 1070.48, + "words": [ + { + "word": " Right.", + "start": 1070.08, + "end": 1070.48, + "probability": 0.1748046875 + } + ] + }, + { + "id": 385, + "text": "So we can we can basically you can sign up for the GPS package.", + "start": 1070.54, + "end": 1073.5, + "words": [ + { + "word": " So", + "start": 1070.54, + "end": 1070.66, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 1070.66, + "end": 1070.84, + "probability": 1.0 + }, + { + "word": " can", + "start": 1070.84, + "end": 1071.12, + "probability": 1.0 + }, + { + "word": " we", + "start": 1071.12, + "end": 1071.44, + "probability": 0.9931640625 + }, + { + "word": " can", + "start": 1071.44, + "end": 1071.58, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1071.58, + "end": 1071.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 1071.94, + "end": 1072.12, + "probability": 1.0 + }, + { + "word": " can", + "start": 1072.12, + "end": 1072.22, + "probability": 1.0 + }, + { + "word": " sign", + "start": 1072.22, + "end": 1072.4, + "probability": 0.9921875 + }, + { + "word": " up", + "start": 1072.4, + "end": 1072.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 1072.5, + "end": 1072.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1072.6, + "end": 1072.7, + "probability": 1.0 + }, + { + "word": " GPS", + "start": 1072.7, + "end": 1072.98, + "probability": 0.99951171875 + }, + { + "word": " package.", + "start": 1072.98, + "end": 1073.5, + "probability": 0.97216796875 + } + ] + }, + { + "id": 386, + "text": "It's Guru Protection Services, which basically we lock down your machine.", + "start": 1073.5, + "end": 1078.54, + "words": [ + { + "word": " It's", + "start": 1073.5, + "end": 1074.24, + "probability": 0.8271484375 + }, + { + "word": " Guru", + "start": 1074.24, + "end": 1074.4, + "probability": 0.60205078125 + }, + { + "word": " Protection", + "start": 1074.4, + "end": 1074.64, + "probability": 0.99658203125 + }, + { + "word": " Services,", + "start": 1074.64, + "end": 1075.1, + "probability": 0.99853515625 + }, + { + "word": " which", + "start": 1075.48, + "end": 1076.28, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1076.28, + "end": 1077.22, + "probability": 0.97998046875 + }, + { + "word": " we", + "start": 1077.22, + "end": 1077.6, + "probability": 0.970703125 + }, + { + "word": " lock", + "start": 1077.6, + "end": 1077.86, + "probability": 0.994140625 + }, + { + "word": " down", + "start": 1077.86, + "end": 1078.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 1078.06, + "end": 1078.24, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1078.24, + "end": 1078.54, + "probability": 1.0 + } + ] + }, + { + "id": 387, + "text": "Right.", + "start": 1079.1, + "end": 1079.56, + "words": [ + { + "word": " Right.", + "start": 1079.1, + "end": 1079.56, + "probability": 0.0092315673828125 + } + ] + }, + { + "id": 388, + "text": "It's $30 a month.", + "start": 1079.72, + "end": 1080.98, + "words": [ + { + "word": " It's", + "start": 1079.72, + "end": 1079.92, + "probability": 0.71826171875 + }, + { + "word": " $30", + "start": 1079.92, + "end": 1080.54, + "probability": 0.93408203125 + }, + { + "word": " a", + "start": 1080.54, + "end": 1080.74, + "probability": 1.0 + }, + { + "word": " month.", + "start": 1080.74, + "end": 1080.98, + "probability": 1.0 + } + ] + }, + { + "id": 389, + "text": "You get antivirus and anti malware included and we lock your machine down.", + "start": 1081.14, + "end": 1086.16, + "words": [ + { + "word": " You", + "start": 1081.14, + "end": 1081.6, + "probability": 1.0 + }, + { + "word": " get", + "start": 1081.6, + "end": 1081.84, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1081.84, + "end": 1082.58, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1082.58, + "end": 1082.8, + "probability": 1.0 + }, + { + "word": " anti", + "start": 1082.8, + "end": 1083.02, + "probability": 0.998046875 + }, + { + "word": " malware", + "start": 1083.02, + "end": 1083.28, + "probability": 0.05828857421875 + }, + { + "word": " included", + "start": 1083.28, + "end": 1083.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 1083.76, + "end": 1084.16, + "probability": 0.73193359375 + }, + { + "word": " we", + "start": 1084.16, + "end": 1084.46, + "probability": 1.0 + }, + { + "word": " lock", + "start": 1084.46, + "end": 1085.12, + "probability": 1.0 + }, + { + "word": " your", + "start": 1085.12, + "end": 1085.36, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1085.36, + "end": 1085.72, + "probability": 1.0 + }, + { + "word": " down.", + "start": 1085.72, + "end": 1086.16, + "probability": 1.0 + } + ] + }, + { + "id": 390, + "text": "You're not going to get any infections.", + "start": 1087.02, + "end": 1088.28, + "words": [ + { + "word": " You're", + "start": 1087.02, + "end": 1087.48, + "probability": 1.0 + }, + { + "word": " not", + "start": 1087.48, + "end": 1087.58, + "probability": 1.0 + }, + { + "word": " going", + "start": 1087.58, + "end": 1087.68, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 1087.68, + "end": 1087.76, + "probability": 1.0 + }, + { + "word": " get", + "start": 1087.76, + "end": 1087.84, + "probability": 1.0 + }, + { + "word": " any", + "start": 1087.84, + "end": 1087.92, + "probability": 1.0 + }, + { + "word": " infections.", + "start": 1087.92, + "end": 1088.28, + "probability": 1.0 + } + ] + }, + { + "id": 391, + "text": "And if you do, I'll fix it.", + "start": 1088.4, + "end": 1089.86, + "words": [ + { + "word": " And", + "start": 1088.4, + "end": 1088.72, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1088.72, + "end": 1088.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 1088.84, + "end": 1088.96, + "probability": 1.0 + }, + { + "word": " do,", + "start": 1088.96, + "end": 1089.14, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 1089.16, + "end": 1089.36, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1089.36, + "end": 1089.66, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1089.66, + "end": 1089.86, + "probability": 1.0 + } + ] + }, + { + "id": 392, + "text": "That's just how it works.", + "start": 1090.2, + "end": 1091.38, + "words": [ + { + "word": " That's", + "start": 1090.2, + "end": 1090.66, + "probability": 0.5712890625 + }, + { + "word": " just", + "start": 1090.66, + "end": 1090.8, + "probability": 1.0 + }, + { + "word": " how", + "start": 1090.8, + "end": 1090.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 1090.96, + "end": 1091.1, + "probability": 1.0 + }, + { + "word": " works.", + "start": 1091.1, + "end": 1091.38, + "probability": 1.0 + } + ] + }, + { + "id": 393, + "text": "Right.", + "start": 1091.64, + "end": 1092.1, + "words": [ + { + "word": " Right.", + "start": 1091.64, + "end": 1092.1, + "probability": 0.85302734375 + } + ] + }, + { + "id": 394, + "text": "I am confident enough to say that I can prevent you from getting an infection.", + "start": 1092.2, + "end": 1096.1, + "words": [ + { + "word": " I", + "start": 1092.2, + "end": 1092.34, + "probability": 0.99755859375 + }, + { + "word": " am", + "start": 1092.34, + "end": 1092.52, + "probability": 1.0 + }, + { + "word": " confident", + "start": 1092.52, + "end": 1092.98, + "probability": 1.0 + }, + { + "word": " enough", + "start": 1092.98, + "end": 1093.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1093.3, + "end": 1093.5, + "probability": 1.0 + }, + { + "word": " say", + "start": 1093.5, + "end": 1093.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 1093.72, + "end": 1094.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 1094.0, + "end": 1094.68, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1094.68, + "end": 1094.82, + "probability": 1.0 + }, + { + "word": " prevent", + "start": 1094.82, + "end": 1095.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 1095.1, + "end": 1095.36, + "probability": 1.0 + }, + { + "word": " from", + "start": 1095.36, + "end": 1095.5, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1095.5, + "end": 1095.66, + "probability": 1.0 + }, + { + "word": " an", + "start": 1095.66, + "end": 1095.84, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 1095.84, + "end": 1096.1, + "probability": 1.0 + } + ] + }, + { + "id": 395, + "text": "And if you get one, I will solve that problem because you're not getting one.", + "start": 1096.24, + "end": 1101.56, + "words": [ + { + "word": " And", + "start": 1096.24, + "end": 1096.4, + "probability": 1.0 + }, + { + "word": " if", + "start": 1096.4, + "end": 1096.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 1096.5, + "end": 1096.6, + "probability": 1.0 + }, + { + "word": " get", + "start": 1096.6, + "end": 1096.76, + "probability": 0.99951171875 + }, + { + "word": " one,", + "start": 1096.76, + "end": 1096.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 1097.06, + "end": 1097.56, + "probability": 1.0 + }, + { + "word": " will", + "start": 1097.56, + "end": 1098.02, + "probability": 1.0 + }, + { + "word": " solve", + "start": 1098.02, + "end": 1098.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 1098.64, + "end": 1098.96, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1098.96, + "end": 1099.44, + "probability": 1.0 + }, + { + "word": " because", + "start": 1099.44, + "end": 1100.82, + "probability": 0.97119140625 + }, + { + "word": " you're", + "start": 1100.82, + "end": 1101.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 1101.12, + "end": 1101.22, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1101.22, + "end": 1101.4, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1101.4, + "end": 1101.56, + "probability": 1.0 + } + ] + }, + { + "id": 396, + "text": "That's just how it works.", + "start": 1101.66, + "end": 1103.04, + "words": [ + { + "word": " That's", + "start": 1101.66, + "end": 1102.1, + "probability": 0.9951171875 + }, + { + "word": " just", + "start": 1102.1, + "end": 1102.3, + "probability": 1.0 + }, + { + "word": " how", + "start": 1102.3, + "end": 1102.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 1102.6, + "end": 1102.76, + "probability": 1.0 + }, + { + "word": " works.", + "start": 1102.76, + "end": 1103.04, + "probability": 1.0 + } + ] + }, + { + "id": 397, + "text": "So on my machine, as an example, my PC, I use all the time.", + "start": 1103.7600000000002, + "end": 1107.54, + "words": [ + { + "word": " So", + "start": 1103.7600000000002, + "end": 1104.1200000000001, + "probability": 0.037750244140625 + }, + { + "word": " on", + "start": 1104.1200000000001, + "end": 1104.48, + "probability": 0.82763671875 + }, + { + "word": " my", + "start": 1104.48, + "end": 1104.7, + "probability": 0.9990234375 + }, + { + "word": " machine,", + "start": 1104.7, + "end": 1105.0, + "probability": 1.0 + }, + { + "word": " as", + "start": 1105.06, + "end": 1105.26, + "probability": 1.0 + }, + { + "word": " an", + "start": 1105.26, + "end": 1105.38, + "probability": 1.0 + }, + { + "word": " example,", + "start": 1105.38, + "end": 1105.66, + "probability": 1.0 + }, + { + "word": " my", + "start": 1105.78, + "end": 1105.94, + "probability": 1.0 + }, + { + "word": " PC,", + "start": 1105.94, + "end": 1106.28, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1106.42, + "end": 1106.58, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 1106.58, + "end": 1107.04, + "probability": 1.0 + }, + { + "word": " all", + "start": 1107.04, + "end": 1107.18, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 1107.18, + "end": 1107.3, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1107.3, + "end": 1107.54, + "probability": 1.0 + } + ] + }, + { + "id": 398, + "text": "I haven't had antivirus on that thing in three years.", + "start": 1107.74, + "end": 1109.8, + "words": [ + { + "word": " I", + "start": 1107.74, + "end": 1108.1, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 1108.1, + "end": 1108.26, + "probability": 1.0 + }, + { + "word": " had", + "start": 1108.26, + "end": 1108.38, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1108.38, + "end": 1108.8, + "probability": 0.9951171875 + }, + { + "word": " on", + "start": 1108.8, + "end": 1108.94, + "probability": 0.95556640625 + }, + { + "word": " that", + "start": 1108.94, + "end": 1109.04, + "probability": 0.9658203125 + }, + { + "word": " thing", + "start": 1109.04, + "end": 1109.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 1109.2, + "end": 1109.28, + "probability": 0.99951171875 + }, + { + "word": " three", + "start": 1109.28, + "end": 1109.48, + "probability": 0.99462890625 + }, + { + "word": " years.", + "start": 1109.48, + "end": 1109.8, + "probability": 1.0 + } + ] + }, + { + "id": 399, + "text": "Zero infections.", + "start": 1110.5200000000002, + "end": 1111.24, + "words": [ + { + "word": " Zero", + "start": 1110.5200000000002, + "end": 1110.88, + "probability": 0.9990234375 + }, + { + "word": " infections.", + "start": 1110.88, + "end": 1111.24, + "probability": 1.0 + } + ] + }, + { + "id": 400, + "text": "And I go all kinds of places.", + "start": 1111.32, + "end": 1112.64, + "words": [ + { + "word": " And", + "start": 1111.32, + "end": 1111.52, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 1111.52, + "end": 1111.64, + "probability": 1.0 + }, + { + "word": " go", + "start": 1111.64, + "end": 1111.82, + "probability": 1.0 + }, + { + "word": " all", + "start": 1111.82, + "end": 1111.98, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 1111.98, + "end": 1112.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 1112.2, + "end": 1112.4, + "probability": 1.0 + }, + { + "word": " places.", + "start": 1112.4, + "end": 1112.64, + "probability": 1.0 + } + ] + }, + { + "id": 401, + "text": "I shouldn't because I'm following you guys around as far as, you know, I went to this website and got an infection.", + "start": 1112.68, + "end": 1117.66, + "words": [ + { + "word": " I", + "start": 1112.68, + "end": 1112.88, + "probability": 0.99755859375 + }, + { + "word": " shouldn't", + "start": 1112.88, + "end": 1113.12, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1113.12, + "end": 1113.24, + "probability": 0.92919921875 + }, + { + "word": " I'm", + "start": 1113.24, + "end": 1113.5, + "probability": 1.0 + }, + { + "word": " following", + "start": 1113.5, + "end": 1113.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 1113.76, + "end": 1113.96, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1113.96, + "end": 1114.1, + "probability": 1.0 + }, + { + "word": " around", + "start": 1114.1, + "end": 1114.36, + "probability": 1.0 + }, + { + "word": " as", + "start": 1114.36, + "end": 1115.08, + "probability": 0.06365966796875 + }, + { + "word": " far", + "start": 1115.08, + "end": 1115.36, + "probability": 1.0 + }, + { + "word": " as,", + "start": 1115.36, + "end": 1115.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 1115.7, + "end": 1115.78, + "probability": 0.96240234375 + }, + { + "word": " know,", + "start": 1115.78, + "end": 1115.88, + "probability": 1.0 + }, + { + "word": " I", + "start": 1115.92, + "end": 1116.28, + "probability": 0.9990234375 + }, + { + "word": " went", + "start": 1116.28, + "end": 1116.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1116.46, + "end": 1116.56, + "probability": 1.0 + }, + { + "word": " this", + "start": 1116.56, + "end": 1116.68, + "probability": 1.0 + }, + { + "word": " website", + "start": 1116.68, + "end": 1117.02, + "probability": 0.970703125 + }, + { + "word": " and", + "start": 1117.02, + "end": 1117.18, + "probability": 0.99462890625 + }, + { + "word": " got", + "start": 1117.18, + "end": 1117.28, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1117.28, + "end": 1117.38, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 1117.38, + "end": 1117.66, + "probability": 1.0 + } + ] + }, + { + "id": 402, + "text": "Oh, yeah, let me try it out.", + "start": 1117.8, + "end": 1118.68, + "words": [ + { + "word": " Oh,", + "start": 1117.8, + "end": 1117.94, + "probability": 0.99365234375 + }, + { + "word": " yeah,", + "start": 1117.96, + "end": 1118.06, + "probability": 1.0 + }, + { + "word": " let", + "start": 1118.1, + "end": 1118.2, + "probability": 1.0 + }, + { + "word": " me", + "start": 1118.2, + "end": 1118.32, + "probability": 1.0 + }, + { + "word": " try", + "start": 1118.32, + "end": 1118.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 1118.44, + "end": 1118.52, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1118.52, + "end": 1118.68, + "probability": 1.0 + } + ] + }, + { + "id": 403, + "text": "I want to see what happens.", + "start": 1119.3000000000002, + "end": 1120.48, + "words": [ + { + "word": " I", + "start": 1119.3000000000002, + "end": 1119.66, + "probability": 0.998046875 + }, + { + "word": " want", + "start": 1119.66, + "end": 1119.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1119.8, + "end": 1119.9, + "probability": 1.0 + }, + { + "word": " see", + "start": 1119.9, + "end": 1120.02, + "probability": 1.0 + }, + { + "word": " what", + "start": 1120.02, + "end": 1120.16, + "probability": 1.0 + }, + { + "word": " happens.", + "start": 1120.16, + "end": 1120.48, + "probability": 1.0 + } + ] + }, + { + "id": 404, + "text": "So there there are ways to protect yourself.", + "start": 1121.1600000000003, + "end": 1124.2, + "words": [ + { + "word": " So", + "start": 1121.1600000000003, + "end": 1121.5200000000002, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 1121.5200000000002, + "end": 1121.88, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1121.88, + "end": 1122.3, + "probability": 0.1077880859375 + }, + { + "word": " are", + "start": 1122.3, + "end": 1122.54, + "probability": 1.0 + }, + { + "word": " ways", + "start": 1122.54, + "end": 1122.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1122.88, + "end": 1123.28, + "probability": 1.0 + }, + { + "word": " protect", + "start": 1123.28, + "end": 1123.64, + "probability": 0.9814453125 + }, + { + "word": " yourself.", + "start": 1123.64, + "end": 1124.2, + "probability": 1.0 + } + ] + }, + { + "id": 405, + "text": "There are ways to keep yourself from getting an infection.", + "start": 1124.5, + "end": 1127.02, + "words": [ + { + "word": " There", + "start": 1124.5, + "end": 1124.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 1124.86, + "end": 1125.0, + "probability": 1.0 + }, + { + "word": " ways", + "start": 1125.0, + "end": 1125.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 1125.18, + "end": 1125.46, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1125.46, + "end": 1125.66, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 1125.66, + "end": 1125.98, + "probability": 1.0 + }, + { + "word": " from", + "start": 1125.98, + "end": 1126.34, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1126.34, + "end": 1126.56, + "probability": 1.0 + }, + { + "word": " an", + "start": 1126.56, + "end": 1126.74, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 1126.74, + "end": 1127.02, + "probability": 1.0 + } + ] + }, + { + "id": 406, + "text": "And if you've got especially if you've got like kids, right, that are doing the most dangerous.", + "start": 1127.5, + "end": 1133.06, + "words": [ + { + "word": " And", + "start": 1127.5, + "end": 1127.86, + "probability": 0.99755859375 + }, + { + "word": " if", + "start": 1127.86, + "end": 1127.96, + "probability": 0.9990234375 + }, + { + "word": " you've", + "start": 1127.96, + "end": 1128.1, + "probability": 1.0 + }, + { + "word": " got", + "start": 1128.1, + "end": 1128.3, + "probability": 0.99951171875 + }, + { + "word": " especially", + "start": 1128.3, + "end": 1128.62, + "probability": 0.9521484375 + }, + { + "word": " if", + "start": 1128.62, + "end": 1128.9, + "probability": 0.8466796875 + }, + { + "word": " you've", + "start": 1128.9, + "end": 1128.96, + "probability": 1.0 + }, + { + "word": " got", + "start": 1128.96, + "end": 1129.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 1129.1, + "end": 1129.24, + "probability": 0.99072265625 + }, + { + "word": " kids,", + "start": 1129.24, + "end": 1129.7, + "probability": 1.0 + }, + { + "word": " right,", + "start": 1129.76, + "end": 1130.4, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1130.48, + "end": 1130.6, + "probability": 0.90576171875 + }, + { + "word": " are", + "start": 1130.6, + "end": 1130.7, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1130.7, + "end": 1132.12, + "probability": 0.96826171875 + }, + { + "word": " the", + "start": 1132.12, + "end": 1132.42, + "probability": 1.0 + }, + { + "word": " most", + "start": 1132.42, + "end": 1132.72, + "probability": 1.0 + }, + { + "word": " dangerous.", + "start": 1132.72, + "end": 1133.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 407, + "text": "Thing in the world, which is searching for song lyrics.", + "start": 1133.06, + "end": 1136.28, + "words": [ + { + "word": " Thing", + "start": 1133.06, + "end": 1133.3, + "probability": 0.004878997802734375 + }, + { + "word": " in", + "start": 1133.3, + "end": 1133.5, + "probability": 0.9580078125 + }, + { + "word": " the", + "start": 1133.5, + "end": 1133.6, + "probability": 0.99755859375 + }, + { + "word": " world,", + "start": 1133.6, + "end": 1133.88, + "probability": 0.98388671875 + }, + { + "word": " which", + "start": 1133.94, + "end": 1134.14, + "probability": 0.9794921875 + }, + { + "word": " is", + "start": 1134.14, + "end": 1134.4, + "probability": 0.99853515625 + }, + { + "word": " searching", + "start": 1134.4, + "end": 1135.58, + "probability": 0.658203125 + }, + { + "word": " for", + "start": 1135.58, + "end": 1135.82, + "probability": 0.998046875 + }, + { + "word": " song", + "start": 1135.82, + "end": 1136.0, + "probability": 0.99560546875 + }, + { + "word": " lyrics.", + "start": 1136.0, + "end": 1136.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 408, + "text": "Yeah, that is the number one way to get an infection.", + "start": 1137.5, + "end": 1139.84, + "words": [ + { + "word": " Yeah,", + "start": 1137.5, + "end": 1137.9, + "probability": 0.984375 + }, + { + "word": " that", + "start": 1138.02, + "end": 1138.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 1138.26, + "end": 1138.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 1138.54, + "end": 1138.72, + "probability": 0.99951171875 + }, + { + "word": " number", + "start": 1138.72, + "end": 1139.02, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 1139.02, + "end": 1139.16, + "probability": 0.9990234375 + }, + { + "word": " way", + "start": 1139.16, + "end": 1139.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1139.36, + "end": 1139.46, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 1139.46, + "end": 1139.56, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1139.56, + "end": 1139.62, + "probability": 0.99853515625 + }, + { + "word": " infection.", + "start": 1139.62, + "end": 1139.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 409, + "text": "By the way, if you are looking for the lyrics to a song, chances are you're infected already.", + "start": 1139.96, + "end": 1146.64, + "words": [ + { + "word": " By", + "start": 1139.96, + "end": 1140.16, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 1140.16, + "end": 1140.28, + "probability": 1.0 + }, + { + "word": " way,", + "start": 1140.28, + "end": 1140.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 1140.52, + "end": 1141.16, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1141.16, + "end": 1141.72, + "probability": 0.9970703125 + }, + { + "word": " are", + "start": 1141.72, + "end": 1142.12, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1142.12, + "end": 1142.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 1142.52, + "end": 1142.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1142.86, + "end": 1143.04, + "probability": 1.0 + }, + { + "word": " lyrics", + "start": 1143.04, + "end": 1143.94, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1143.94, + "end": 1144.24, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1144.24, + "end": 1144.34, + "probability": 1.0 + }, + { + "word": " song,", + "start": 1144.34, + "end": 1144.68, + "probability": 1.0 + }, + { + "word": " chances", + "start": 1144.86, + "end": 1145.4, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1145.4, + "end": 1145.68, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1145.68, + "end": 1145.92, + "probability": 0.998046875 + }, + { + "word": " infected", + "start": 1145.92, + "end": 1146.22, + "probability": 0.9990234375 + }, + { + "word": " already.", + "start": 1146.22, + "end": 1146.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 410, + "text": "It's it's that dangerous.", + "start": 1147.2, + "end": 1148.66, + "words": [ + { + "word": " It's", + "start": 1147.2, + "end": 1147.6, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1147.6, + "end": 1147.88, + "probability": 0.7666015625 + }, + { + "word": " that", + "start": 1147.88, + "end": 1148.1, + "probability": 0.99951171875 + }, + { + "word": " dangerous.", + "start": 1148.1, + "end": 1148.66, + "probability": 1.0 + } + ] + }, + { + "id": 411, + "text": "But if you've got kids, it's great because you can set an account up for the kids and completely lock that account down.", + "start": 1149.5, + "end": 1155.66, + "words": [ + { + "word": " But", + "start": 1149.5, + "end": 1149.9, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1149.9, + "end": 1150.08, + "probability": 1.0 + }, + { + "word": " you've", + "start": 1150.08, + "end": 1150.18, + "probability": 1.0 + }, + { + "word": " got", + "start": 1150.18, + "end": 1150.28, + "probability": 1.0 + }, + { + "word": " kids,", + "start": 1150.28, + "end": 1150.54, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1150.66, + "end": 1151.32, + "probability": 1.0 + }, + { + "word": " great", + "start": 1151.32, + "end": 1151.72, + "probability": 1.0 + }, + { + "word": " because", + "start": 1151.72, + "end": 1151.94, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 1151.94, + "end": 1152.08, + "probability": 1.0 + }, + { + "word": " can", + "start": 1152.08, + "end": 1152.26, + "probability": 1.0 + }, + { + "word": " set", + "start": 1152.26, + "end": 1152.6, + "probability": 1.0 + }, + { + "word": " an", + "start": 1152.6, + "end": 1152.78, + "probability": 1.0 + }, + { + "word": " account", + "start": 1152.78, + "end": 1153.0, + "probability": 1.0 + }, + { + "word": " up", + "start": 1153.0, + "end": 1153.2, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1153.2, + "end": 1153.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1153.32, + "end": 1153.38, + "probability": 1.0 + }, + { + "word": " kids", + "start": 1153.38, + "end": 1153.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 1153.7, + "end": 1153.94, + "probability": 0.99755859375 + }, + { + "word": " completely", + "start": 1153.94, + "end": 1154.46, + "probability": 1.0 + }, + { + "word": " lock", + "start": 1154.46, + "end": 1154.94, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1154.94, + "end": 1155.1, + "probability": 1.0 + }, + { + "word": " account", + "start": 1155.1, + "end": 1155.32, + "probability": 1.0 + }, + { + "word": " down.", + "start": 1155.32, + "end": 1155.66, + "probability": 1.0 + } + ] + }, + { + "id": 412, + "text": "Right?", + "start": 1155.86, + "end": 1156.26, + "words": [ + { + "word": " Right?", + "start": 1155.86, + "end": 1156.26, + "probability": 0.6728515625 + } + ] + }, + { + "id": 413, + "text": "You're not you're not saying, well, you can't go to certain places or you're not saying that you're not.", + "start": 1156.34, + "end": 1160.72, + "words": [ + { + "word": " You're", + "start": 1156.34, + "end": 1156.52, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 1156.52, + "end": 1156.66, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1156.66, + "end": 1156.92, + "probability": 0.9599609375 + }, + { + "word": " not", + "start": 1156.92, + "end": 1157.04, + "probability": 1.0 + }, + { + "word": " saying,", + "start": 1157.04, + "end": 1157.26, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 1157.28, + "end": 1157.46, + "probability": 0.93212890625 + }, + { + "word": " you", + "start": 1157.48, + "end": 1157.54, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1157.54, + "end": 1157.76, + "probability": 1.0 + }, + { + "word": " go", + "start": 1157.76, + "end": 1157.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1157.92, + "end": 1158.06, + "probability": 1.0 + }, + { + "word": " certain", + "start": 1158.06, + "end": 1158.24, + "probability": 1.0 + }, + { + "word": " places", + "start": 1158.24, + "end": 1158.66, + "probability": 1.0 + }, + { + "word": " or", + "start": 1158.66, + "end": 1158.92, + "probability": 0.86865234375 + }, + { + "word": " you're", + "start": 1158.92, + "end": 1159.04, + "probability": 1.0 + }, + { + "word": " not", + "start": 1159.04, + "end": 1159.16, + "probability": 1.0 + }, + { + "word": " saying", + "start": 1159.16, + "end": 1159.36, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1159.36, + "end": 1159.6, + "probability": 0.9970703125 + }, + { + "word": " you're", + "start": 1159.6, + "end": 1160.46, + "probability": 0.97802734375 + }, + { + "word": " not.", + "start": 1160.46, + "end": 1160.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 414, + "text": "You don't have to be 1984 with them.", + "start": 1160.76, + "end": 1162.66, + "words": [ + { + "word": " You", + "start": 1160.76, + "end": 1160.88, + "probability": 0.9970703125 + }, + { + "word": " don't", + "start": 1160.88, + "end": 1161.04, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1161.04, + "end": 1161.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1161.16, + "end": 1161.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 1161.34, + "end": 1161.46, + "probability": 1.0 + }, + { + "word": " 1984", + "start": 1161.46, + "end": 1161.9, + "probability": 0.98828125 + }, + { + "word": " with", + "start": 1161.9, + "end": 1162.48, + "probability": 0.99560546875 + }, + { + "word": " them.", + "start": 1162.48, + "end": 1162.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 415, + "text": "You have to be overly Orwellian, but you can make it so that no matter what they do, they're not going to infect the computer.", + "start": 1163.06, + "end": 1169.12, + "words": [ + { + "word": " You", + "start": 1163.06, + "end": 1163.2, + "probability": 0.94091796875 + }, + { + "word": " have", + "start": 1163.2, + "end": 1163.28, + "probability": 0.0006165504455566406 + }, + { + "word": " to", + "start": 1163.28, + "end": 1163.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 1163.4, + "end": 1163.52, + "probability": 0.99951171875 + }, + { + "word": " overly", + "start": 1163.52, + "end": 1163.86, + "probability": 1.0 + }, + { + "word": " Orwellian,", + "start": 1163.86, + "end": 1164.68, + "probability": 0.9990234375 + }, + { + "word": " but", + "start": 1164.74, + "end": 1165.72, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1165.72, + "end": 1166.1, + "probability": 1.0 + }, + { + "word": " can", + "start": 1166.1, + "end": 1166.26, + "probability": 1.0 + }, + { + "word": " make", + "start": 1166.26, + "end": 1166.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 1166.46, + "end": 1166.58, + "probability": 1.0 + }, + { + "word": " so", + "start": 1166.58, + "end": 1166.7, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1166.7, + "end": 1166.84, + "probability": 1.0 + }, + { + "word": " no", + "start": 1166.84, + "end": 1166.98, + "probability": 0.99951171875 + }, + { + "word": " matter", + "start": 1166.98, + "end": 1167.14, + "probability": 1.0 + }, + { + "word": " what", + "start": 1167.14, + "end": 1167.36, + "probability": 1.0 + }, + { + "word": " they", + "start": 1167.36, + "end": 1167.5, + "probability": 1.0 + }, + { + "word": " do,", + "start": 1167.5, + "end": 1167.66, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1167.8, + "end": 1168.08, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 1168.08, + "end": 1168.22, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1168.22, + "end": 1168.36, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1168.36, + "end": 1168.46, + "probability": 1.0 + }, + { + "word": " infect", + "start": 1168.46, + "end": 1168.62, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1168.62, + "end": 1168.84, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1168.84, + "end": 1169.12, + "probability": 1.0 + } + ] + }, + { + "id": 416, + "text": "And that's that's a pretty good deal.", + "start": 1170.5800000000002, + "end": 1172.4, + "words": [ + { + "word": " And", + "start": 1170.5800000000002, + "end": 1170.94, + "probability": 0.91552734375 + }, + { + "word": " that's", + "start": 1170.94, + "end": 1171.3, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 1171.3, + "end": 1171.76, + "probability": 0.564453125 + }, + { + "word": " a", + "start": 1171.76, + "end": 1171.82, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1171.82, + "end": 1172.04, + "probability": 1.0 + }, + { + "word": " good", + "start": 1172.04, + "end": 1172.2, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 1172.2, + "end": 1172.4, + "probability": 1.0 + } + ] + }, + { + "id": 417, + "text": "So we either offer it as a monthly service or we do it as a one time.", + "start": 1172.48, + "end": 1177.38, + "words": [ + { + "word": " So", + "start": 1172.48, + "end": 1172.58, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 1172.58, + "end": 1172.72, + "probability": 0.99951171875 + }, + { + "word": " either", + "start": 1172.72, + "end": 1172.94, + "probability": 1.0 + }, + { + "word": " offer", + "start": 1172.94, + "end": 1173.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 1173.26, + "end": 1173.4, + "probability": 1.0 + }, + { + "word": " as", + "start": 1173.4, + "end": 1173.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 1173.62, + "end": 1173.96, + "probability": 1.0 + }, + { + "word": " monthly", + "start": 1173.96, + "end": 1175.2, + "probability": 1.0 + }, + { + "word": " service", + "start": 1175.2, + "end": 1175.52, + "probability": 1.0 + }, + { + "word": " or", + "start": 1175.52, + "end": 1176.0, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 1176.0, + "end": 1176.38, + "probability": 1.0 + }, + { + "word": " do", + "start": 1176.38, + "end": 1176.54, + "probability": 1.0 + }, + { + "word": " it", + "start": 1176.54, + "end": 1176.6, + "probability": 1.0 + }, + { + "word": " as", + "start": 1176.6, + "end": 1176.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1176.72, + "end": 1176.72, + "probability": 1.0 + }, + { + "word": " one", + "start": 1176.72, + "end": 1176.92, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1176.92, + "end": 1177.38, + "probability": 0.99755859375 + } + ] + }, + { + "id": 418, + "text": "All right.", + "start": 1177.62, + "end": 1178.14, + "words": [ + { + "word": " All", + "start": 1177.62, + "end": 1177.98, + "probability": 0.64306640625 + }, + { + "word": " right.", + "start": 1177.98, + "end": 1178.14, + "probability": 1.0 + } + ] + }, + { + "id": 419, + "text": "It's just you want to do the one time thing.", + "start": 1178.2, + "end": 1180.06, + "words": [ + { + "word": " It's", + "start": 1178.2, + "end": 1178.48, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1178.48, + "end": 1178.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 1178.78, + "end": 1178.98, + "probability": 0.99853515625 + }, + { + "word": " want", + "start": 1178.98, + "end": 1179.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1179.16, + "end": 1179.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 1179.26, + "end": 1179.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 1179.38, + "end": 1179.46, + "probability": 0.99365234375 + }, + { + "word": " one", + "start": 1179.46, + "end": 1179.58, + "probability": 1.0 + }, + { + "word": " time", + "start": 1179.58, + "end": 1179.8, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1179.8, + "end": 1180.06, + "probability": 1.0 + } + ] + }, + { + "id": 420, + "text": "It's 300 bucks and I'll make sure that you never get an infection again on that computer.", + "start": 1180.16, + "end": 1185.4, + "words": [ + { + "word": " It's", + "start": 1180.16, + "end": 1180.46, + "probability": 0.9951171875 + }, + { + "word": " 300", + "start": 1180.46, + "end": 1180.66, + "probability": 0.90283203125 + }, + { + "word": " bucks", + "start": 1180.66, + "end": 1181.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 1181.0, + "end": 1181.54, + "probability": 0.45263671875 + }, + { + "word": " I'll", + "start": 1181.54, + "end": 1181.72, + "probability": 1.0 + }, + { + "word": " make", + "start": 1181.72, + "end": 1181.84, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1181.84, + "end": 1181.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 1181.98, + "end": 1182.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 1182.12, + "end": 1182.26, + "probability": 1.0 + }, + { + "word": " never", + "start": 1182.26, + "end": 1182.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 1182.88, + "end": 1183.3, + "probability": 1.0 + }, + { + "word": " an", + "start": 1183.3, + "end": 1183.52, + "probability": 1.0 + }, + { + "word": " infection", + "start": 1183.52, + "end": 1183.8, + "probability": 1.0 + }, + { + "word": " again", + "start": 1183.8, + "end": 1184.52, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 1184.52, + "end": 1184.94, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1184.94, + "end": 1185.12, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1185.12, + "end": 1185.4, + "probability": 1.0 + } + ] + }, + { + "id": 421, + "text": "So if you're interested in that type of stuff, give me a call.", + "start": 1186.7000000000003, + "end": 1189.86, + "words": [ + { + "word": " So", + "start": 1186.7000000000003, + "end": 1187.0600000000002, + "probability": 1.0 + }, + { + "word": " if", + "start": 1187.0600000000002, + "end": 1187.42, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1187.42, + "end": 1187.82, + "probability": 1.0 + }, + { + "word": " interested", + "start": 1187.82, + "end": 1188.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 1188.08, + "end": 1188.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1188.26, + "end": 1188.38, + "probability": 1.0 + }, + { + "word": " type", + "start": 1188.38, + "end": 1188.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 1188.58, + "end": 1188.72, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 1188.72, + "end": 1188.94, + "probability": 1.0 + }, + { + "word": " give", + "start": 1189.1, + "end": 1189.54, + "probability": 0.98291015625 + }, + { + "word": " me", + "start": 1189.54, + "end": 1189.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1189.7, + "end": 1189.72, + "probability": 0.9990234375 + }, + { + "word": " call.", + "start": 1189.72, + "end": 1189.86, + "probability": 1.0 + } + ] + }, + { + "id": 422, + "text": "You can either call me here at the show.", + "start": 1190.88, + "end": 1192.16, + "words": [ + { + "word": " You", + "start": 1190.88, + "end": 1191.24, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1191.24, + "end": 1191.36, + "probability": 0.998046875 + }, + { + "word": " either", + "start": 1191.36, + "end": 1191.46, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 1191.46, + "end": 1191.64, + "probability": 1.0 + }, + { + "word": " me", + "start": 1191.64, + "end": 1191.72, + "probability": 1.0 + }, + { + "word": " here", + "start": 1191.72, + "end": 1191.86, + "probability": 1.0 + }, + { + "word": " at", + "start": 1191.86, + "end": 1191.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1191.98, + "end": 1191.98, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 1191.98, + "end": 1192.16, + "probability": 1.0 + } + ] + }, + { + "id": 423, + "text": "790.", + "start": 1192.5200000000002, + "end": 1192.88, + "words": [ + { + "word": " 790.", + "start": 1192.5200000000002, + "end": 1192.88, + "probability": 0.81787109375 + } + ] + }, + { + "id": 424, + "text": "2040 or down shop 304.", + "start": 1192.88, + "end": 1194.96, + "words": [ + { + "word": " 2040", + "start": 1192.88, + "end": 1193.34, + "probability": 0.55615234375 + }, + { + "word": " or", + "start": 1193.34, + "end": 1193.8, + "probability": 0.759765625 + }, + { + "word": " down", + "start": 1193.8, + "end": 1193.98, + "probability": 0.9970703125 + }, + { + "word": " shop", + "start": 1193.98, + "end": 1194.14, + "probability": 0.21240234375 + }, + { + "word": " 304.", + "start": 1194.14, + "end": 1194.96, + "probability": 0.8671875 + } + ] + }, + { + "id": 425, + "text": "8300.", + "start": 1195.16, + "end": 1195.52, + "words": [ + { + "word": " 8300.", + "start": 1195.16, + "end": 1195.52, + "probability": 0.9013671875 + } + ] + }, + { + "id": 426, + "text": "Howard's down there today.", + "start": 1196.4, + "end": 1197.22, + "words": [ + { + "word": " Howard's", + "start": 1196.4, + "end": 1196.76, + "probability": 0.9912109375 + }, + { + "word": " down", + "start": 1196.76, + "end": 1196.9, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1196.9, + "end": 1197.04, + "probability": 0.9990234375 + }, + { + "word": " today.", + "start": 1197.04, + "end": 1197.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 427, + "text": "He'd be happy to talk with you about it if you want to.", + "start": 1197.3, + "end": 1199.06, + "words": [ + { + "word": " He'd", + "start": 1197.3, + "end": 1197.66, + "probability": 0.9951171875 + }, + { + "word": " be", + "start": 1197.66, + "end": 1197.68, + "probability": 1.0 + }, + { + "word": " happy", + "start": 1197.68, + "end": 1197.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1197.9, + "end": 1197.98, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1197.98, + "end": 1198.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 1198.14, + "end": 1198.26, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 1198.26, + "end": 1198.34, + "probability": 1.0 + }, + { + "word": " about", + "start": 1198.34, + "end": 1198.5, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1198.5, + "end": 1198.66, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1198.66, + "end": 1198.78, + "probability": 0.8056640625 + }, + { + "word": " you", + "start": 1198.78, + "end": 1198.84, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 1198.84, + "end": 1198.98, + "probability": 0.97802734375 + }, + { + "word": " to.", + "start": 1198.98, + "end": 1199.06, + "probability": 0.98876953125 + } + ] + }, + { + "id": 428, + "text": "I'm sure he just loves the extra phone call.", + "start": 1199.26, + "end": 1201.76, + "words": [ + { + "word": " I'm", + "start": 1199.26, + "end": 1199.62, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1199.62, + "end": 1199.76, + "probability": 1.0 + }, + { + "word": " he", + "start": 1199.76, + "end": 1199.94, + "probability": 1.0 + }, + { + "word": " just", + "start": 1199.94, + "end": 1200.22, + "probability": 1.0 + }, + { + "word": " loves", + "start": 1200.22, + "end": 1200.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1200.82, + "end": 1201.06, + "probability": 0.99951171875 + }, + { + "word": " extra", + "start": 1201.06, + "end": 1201.28, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1201.28, + "end": 1201.54, + "probability": 1.0 + }, + { + "word": " call.", + "start": 1201.54, + "end": 1201.76, + "probability": 0.98095703125 + } + ] + }, + { + "id": 429, + "text": "So 304 8300 if you want to if you want to irritate him, get ready.", + "start": 1201.9, + "end": 1206.4, + "words": [ + { + "word": " So", + "start": 1201.9, + "end": 1202.12, + "probability": 0.77001953125 + }, + { + "word": " 304", + "start": 1202.12, + "end": 1202.96, + "probability": 0.9443359375 + }, + { + "word": " 8300", + "start": 1202.96, + "end": 1203.32, + "probability": 0.6591796875 + }, + { + "word": " if", + "start": 1203.32, + "end": 1203.66, + "probability": 0.94287109375 + }, + { + "word": " you", + "start": 1203.66, + "end": 1203.74, + "probability": 1.0 + }, + { + "word": " want", + "start": 1203.74, + "end": 1203.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1203.88, + "end": 1204.02, + "probability": 1.0 + }, + { + "word": " if", + "start": 1204.02, + "end": 1204.28, + "probability": 0.1614990234375 + }, + { + "word": " you", + "start": 1204.28, + "end": 1204.76, + "probability": 1.0 + }, + { + "word": " want", + "start": 1204.76, + "end": 1204.84, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1204.84, + "end": 1204.86, + "probability": 1.0 + }, + { + "word": " irritate", + "start": 1204.86, + "end": 1205.2, + "probability": 0.9970703125 + }, + { + "word": " him,", + "start": 1205.2, + "end": 1205.4, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1205.46, + "end": 1206.18, + "probability": 0.99951171875 + }, + { + "word": " ready.", + "start": 1206.18, + "end": 1206.4, + "probability": 0.99462890625 + } + ] + }, + { + "id": 430, + "text": "Howard.", + "start": 1206.5, + "end": 1206.74, + "words": [ + { + "word": " Howard.", + "start": 1206.5, + "end": 1206.74, + "probability": 0.9404296875 + } + ] + }, + { + "id": 431, + "text": "Yeah, he's just he wants to, I don't know, get things done.", + "start": 1206.98, + "end": 1210.46, + "words": [ + { + "word": " Yeah,", + "start": 1206.98, + "end": 1207.34, + "probability": 0.92236328125 + }, + { + "word": " he's", + "start": 1207.34, + "end": 1207.8, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1207.8, + "end": 1208.0, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 1208.0, + "end": 1208.28, + "probability": 0.98779296875 + }, + { + "word": " wants", + "start": 1208.28, + "end": 1208.72, + "probability": 0.99853515625 + }, + { + "word": " to,", + "start": 1208.72, + "end": 1208.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 1209.0, + "end": 1209.36, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 1209.36, + "end": 1209.5, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 1209.5, + "end": 1209.58, + "probability": 1.0 + }, + { + "word": " get", + "start": 1209.6, + "end": 1209.72, + "probability": 1.0 + }, + { + "word": " things", + "start": 1209.72, + "end": 1210.0, + "probability": 0.99951171875 + }, + { + "word": " done.", + "start": 1210.0, + "end": 1210.46, + "probability": 1.0 + } + ] + }, + { + "id": 432, + "text": "And then the phone's ringing and I think he's there by himself today.", + "start": 1210.56, + "end": 1213.48, + "words": [ + { + "word": " And", + "start": 1210.56, + "end": 1210.92, + "probability": 0.99658203125 + }, + { + "word": " then", + "start": 1210.92, + "end": 1211.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1211.06, + "end": 1211.18, + "probability": 1.0 + }, + { + "word": " phone's", + "start": 1211.18, + "end": 1211.54, + "probability": 0.98291015625 + }, + { + "word": " ringing", + "start": 1211.54, + "end": 1211.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 1211.78, + "end": 1212.2, + "probability": 0.5244140625 + }, + { + "word": " I", + "start": 1212.2, + "end": 1212.3, + "probability": 1.0 + }, + { + "word": " think", + "start": 1212.3, + "end": 1212.48, + "probability": 1.0 + }, + { + "word": " he's", + "start": 1212.48, + "end": 1212.64, + "probability": 1.0 + }, + { + "word": " there", + "start": 1212.64, + "end": 1212.76, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 1212.76, + "end": 1212.92, + "probability": 1.0 + }, + { + "word": " himself", + "start": 1212.92, + "end": 1213.12, + "probability": 0.99951171875 + }, + { + "word": " today.", + "start": 1213.12, + "end": 1213.48, + "probability": 0.9990234375 + } + ] + }, + { + "id": 433, + "text": "So yeah, he's the I'm sure he's going to love that.", + "start": 1213.64, + "end": 1217.88, + "words": [ + { + "word": " So", + "start": 1213.64, + "end": 1214.0, + "probability": 0.99755859375 + }, + { + "word": " yeah,", + "start": 1214.0, + "end": 1215.1, + "probability": 0.681640625 + }, + { + "word": " he's", + "start": 1215.2, + "end": 1215.56, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1215.56, + "end": 1215.7, + "probability": 0.18359375 + }, + { + "word": " I'm", + "start": 1215.7, + "end": 1217.08, + "probability": 0.982421875 + }, + { + "word": " sure", + "start": 1217.08, + "end": 1217.16, + "probability": 1.0 + }, + { + "word": " he's", + "start": 1217.16, + "end": 1217.4, + "probability": 1.0 + }, + { + "word": " going", + "start": 1217.4, + "end": 1217.42, + "probability": 0.90576171875 + }, + { + "word": " to", + "start": 1217.42, + "end": 1217.5, + "probability": 1.0 + }, + { + "word": " love", + "start": 1217.5, + "end": 1217.68, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1217.68, + "end": 1217.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 434, + "text": "Let's see chat room stuff.", + "start": 1220.1200000000001, + "end": 1221.22, + "words": [ + { + "word": " Let's", + "start": 1220.1200000000001, + "end": 1220.48, + "probability": 0.931640625 + }, + { + "word": " see", + "start": 1220.48, + "end": 1220.56, + "probability": 0.99951171875 + }, + { + "word": " chat", + "start": 1220.56, + "end": 1220.74, + "probability": 0.8056640625 + }, + { + "word": " room", + "start": 1220.74, + "end": 1220.94, + "probability": 0.955078125 + }, + { + "word": " stuff.", + "start": 1220.94, + "end": 1221.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 435, + "text": "We're going to.", + "start": 1221.8000000000002, + "end": 1222.3, + "words": [ + { + "word": " We're", + "start": 1221.8000000000002, + "end": 1222.16, + "probability": 0.79638671875 + }, + { + "word": " going", + "start": 1222.16, + "end": 1222.18, + "probability": 0.8095703125 + }, + { + "word": " to.", + "start": 1222.18, + "end": 1222.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 436, + "text": "Oh, yeah, we're talking about song lyrics in there.", + "start": 1222.3, + "end": 1224.8, + "words": [ + { + "word": " Oh,", + "start": 1222.3, + "end": 1222.38, + "probability": 0.736328125 + }, + { + "word": " yeah,", + "start": 1222.56, + "end": 1222.96, + "probability": 0.994140625 + }, + { + "word": " we're", + "start": 1223.04, + "end": 1223.16, + "probability": 0.513671875 + }, + { + "word": " talking", + "start": 1223.16, + "end": 1223.5, + "probability": 0.9150390625 + }, + { + "word": " about", + "start": 1223.5, + "end": 1223.84, + "probability": 0.99951171875 + }, + { + "word": " song", + "start": 1223.84, + "end": 1224.06, + "probability": 0.99072265625 + }, + { + "word": " lyrics", + "start": 1224.06, + "end": 1224.34, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1224.34, + "end": 1224.62, + "probability": 0.9990234375 + }, + { + "word": " there.", + "start": 1224.62, + "end": 1224.8, + "probability": 1.0 + } + ] + }, + { + "id": 437, + "text": "I know what you should do is if you're really looking for the song lyrics, listen to the song.", + "start": 1226.4, + "end": 1230.24, + "words": [ + { + "word": " I", + "start": 1226.4, + "end": 1226.8, + "probability": 0.9970703125 + }, + { + "word": " know", + "start": 1226.8, + "end": 1226.98, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1226.98, + "end": 1227.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 1227.08, + "end": 1227.18, + "probability": 1.0 + }, + { + "word": " should", + "start": 1227.18, + "end": 1227.3, + "probability": 1.0 + }, + { + "word": " do", + "start": 1227.3, + "end": 1227.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 1227.46, + "end": 1227.6, + "probability": 0.7109375 + }, + { + "word": " if", + "start": 1227.6, + "end": 1227.7, + "probability": 0.908203125 + }, + { + "word": " you're", + "start": 1227.7, + "end": 1227.86, + "probability": 1.0 + }, + { + "word": " really", + "start": 1227.86, + "end": 1228.04, + "probability": 0.9990234375 + }, + { + "word": " looking", + "start": 1228.04, + "end": 1228.26, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1228.26, + "end": 1228.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1228.42, + "end": 1228.5, + "probability": 0.99951171875 + }, + { + "word": " song", + "start": 1228.5, + "end": 1228.68, + "probability": 0.99951171875 + }, + { + "word": " lyrics,", + "start": 1228.68, + "end": 1228.94, + "probability": 0.99951171875 + }, + { + "word": " listen", + "start": 1229.12, + "end": 1229.7, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1229.7, + "end": 1229.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1229.9, + "end": 1229.98, + "probability": 1.0 + }, + { + "word": " song.", + "start": 1229.98, + "end": 1230.24, + "probability": 1.0 + } + ] + }, + { + "id": 438, + "text": "There you go.", + "start": 1230.5, + "end": 1231.22, + "words": [ + { + "word": " There", + "start": 1230.5, + "end": 1230.9, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 1230.9, + "end": 1231.04, + "probability": 1.0 + }, + { + "word": " go.", + "start": 1231.04, + "end": 1231.22, + "probability": 1.0 + } + ] + }, + { + "id": 439, + "text": "No, actually, there's there's some ways there's a couple of places that you can go.", + "start": 1233.08, + "end": 1236.1, + "words": [ + { + "word": " No,", + "start": 1233.08, + "end": 1233.48, + "probability": 0.99072265625 + }, + { + "word": " actually,", + "start": 1233.56, + "end": 1233.78, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1233.84, + "end": 1234.0, + "probability": 0.998046875 + }, + { + "word": " there's", + "start": 1234.0, + "end": 1234.3, + "probability": 0.5498046875 + }, + { + "word": " some", + "start": 1234.3, + "end": 1234.4, + "probability": 0.99560546875 + }, + { + "word": " ways", + "start": 1234.4, + "end": 1234.6, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1234.6, + "end": 1234.9, + "probability": 0.7587890625 + }, + { + "word": " a", + "start": 1234.9, + "end": 1234.96, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1234.96, + "end": 1235.22, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1235.22, + "end": 1235.3, + "probability": 0.99951171875 + }, + { + "word": " places", + "start": 1235.3, + "end": 1235.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1235.54, + "end": 1235.76, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1235.76, + "end": 1235.82, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1235.82, + "end": 1235.96, + "probability": 1.0 + }, + { + "word": " go.", + "start": 1235.96, + "end": 1236.1, + "probability": 0.966796875 + } + ] + }, + { + "id": 440, + "text": "There are like two different easy lyrics is one of them.", + "start": 1236.14, + "end": 1240.1, + "words": [ + { + "word": " There", + "start": 1236.14, + "end": 1236.22, + "probability": 0.97998046875 + }, + { + "word": " are", + "start": 1236.22, + "end": 1236.5, + "probability": 1.0 + }, + { + "word": " like", + "start": 1236.5, + "end": 1237.0, + "probability": 0.99853515625 + }, + { + "word": " two", + "start": 1237.0, + "end": 1237.48, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 1237.48, + "end": 1237.92, + "probability": 1.0 + }, + { + "word": " easy", + "start": 1237.92, + "end": 1238.96, + "probability": 0.509765625 + }, + { + "word": " lyrics", + "start": 1238.96, + "end": 1239.4, + "probability": 0.9931640625 + }, + { + "word": " is", + "start": 1239.4, + "end": 1239.64, + "probability": 0.99609375 + }, + { + "word": " one", + "start": 1239.64, + "end": 1239.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 1239.84, + "end": 1239.92, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1239.92, + "end": 1240.1, + "probability": 1.0 + } + ] + }, + { + "id": 441, + "text": "Easy lyrics is a good.", + "start": 1241.18, + "end": 1242.48, + "words": [ + { + "word": " Easy", + "start": 1241.18, + "end": 1241.58, + "probability": 0.927734375 + }, + { + "word": " lyrics", + "start": 1241.58, + "end": 1241.88, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1241.88, + "end": 1242.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 1242.06, + "end": 1242.16, + "probability": 1.0 + }, + { + "word": " good.", + "start": 1242.16, + "end": 1242.48, + "probability": 1.0 + } + ] + }, + { + "id": 442, + "text": "Okay site to go to now they have advertising on their site, which is where most of these infections come from.", + "start": 1243.02, + "end": 1249.08, + "words": [ + { + "word": " Okay", + "start": 1243.02, + "end": 1243.42, + "probability": 0.5947265625 + }, + { + "word": " site", + "start": 1243.42, + "end": 1243.76, + "probability": 0.062103271484375 + }, + { + "word": " to", + "start": 1243.76, + "end": 1244.0, + "probability": 1.0 + }, + { + "word": " go", + "start": 1244.0, + "end": 1244.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1244.16, + "end": 1244.32, + "probability": 1.0 + }, + { + "word": " now", + "start": 1244.32, + "end": 1245.14, + "probability": 0.04534912109375 + }, + { + "word": " they", + "start": 1245.14, + "end": 1245.4, + "probability": 0.77294921875 + }, + { + "word": " have", + "start": 1245.4, + "end": 1245.64, + "probability": 1.0 + }, + { + "word": " advertising", + "start": 1245.64, + "end": 1246.0, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1246.0, + "end": 1246.42, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 1246.42, + "end": 1246.58, + "probability": 1.0 + }, + { + "word": " site,", + "start": 1246.58, + "end": 1246.86, + "probability": 1.0 + }, + { + "word": " which", + "start": 1246.94, + "end": 1247.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 1247.26, + "end": 1247.5, + "probability": 1.0 + }, + { + "word": " where", + "start": 1247.5, + "end": 1247.72, + "probability": 1.0 + }, + { + "word": " most", + "start": 1247.72, + "end": 1248.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1248.0, + "end": 1248.16, + "probability": 1.0 + }, + { + "word": " these", + "start": 1248.16, + "end": 1248.26, + "probability": 1.0 + }, + { + "word": " infections", + "start": 1248.26, + "end": 1248.54, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 1248.54, + "end": 1248.82, + "probability": 0.99951171875 + }, + { + "word": " from.", + "start": 1248.82, + "end": 1249.08, + "probability": 1.0 + } + ] + }, + { + "id": 443, + "text": "And a lot of people just don't understand.", + "start": 1250.26, + "end": 1251.94, + "words": [ + { + "word": " And", + "start": 1250.26, + "end": 1250.66, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 1250.66, + "end": 1250.98, + "probability": 0.998046875 + }, + { + "word": " lot", + "start": 1250.98, + "end": 1251.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 1251.16, + "end": 1251.24, + "probability": 1.0 + }, + { + "word": " people", + "start": 1251.24, + "end": 1251.4, + "probability": 1.0 + }, + { + "word": " just", + "start": 1251.4, + "end": 1251.56, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1251.56, + "end": 1251.7, + "probability": 1.0 + }, + { + "word": " understand.", + "start": 1251.7, + "end": 1251.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 444, + "text": "How that works.", + "start": 1251.94, + "end": 1252.62, + "words": [ + { + "word": " How", + "start": 1251.94, + "end": 1252.14, + "probability": 0.034698486328125 + }, + { + "word": " that", + "start": 1252.14, + "end": 1252.28, + "probability": 0.64013671875 + }, + { + "word": " works.", + "start": 1252.28, + "end": 1252.62, + "probability": 0.87548828125 + } + ] + }, + { + "id": 445, + "text": "But basically, it's let's imagine that all the websites are like individual properties and on some of these properties.", + "start": 1252.76, + "end": 1260.56, + "words": [ + { + "word": " But", + "start": 1252.76, + "end": 1252.9, + "probability": 0.83203125 + }, + { + "word": " basically,", + "start": 1252.9, + "end": 1253.8, + "probability": 0.955078125 + }, + { + "word": " it's", + "start": 1254.1, + "end": 1254.44, + "probability": 0.7099609375 + }, + { + "word": " let's", + "start": 1254.44, + "end": 1255.8, + "probability": 0.8291015625 + }, + { + "word": " imagine", + "start": 1255.8, + "end": 1256.0, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 1256.0, + "end": 1256.44, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 1256.44, + "end": 1256.96, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 1256.96, + "end": 1257.22, + "probability": 0.99951171875 + }, + { + "word": " websites", + "start": 1257.22, + "end": 1257.46, + "probability": 0.94140625 + }, + { + "word": " are", + "start": 1257.46, + "end": 1257.84, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1257.84, + "end": 1258.06, + "probability": 0.9990234375 + }, + { + "word": " individual", + "start": 1258.06, + "end": 1258.4, + "probability": 0.99853515625 + }, + { + "word": " properties", + "start": 1258.4, + "end": 1258.96, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1258.96, + "end": 1259.66, + "probability": 0.144287109375 + }, + { + "word": " on", + "start": 1259.66, + "end": 1259.86, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 1259.86, + "end": 1260.08, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1260.08, + "end": 1260.16, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 1260.16, + "end": 1260.24, + "probability": 0.99951171875 + }, + { + "word": " properties.", + "start": 1260.24, + "end": 1260.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 446, + "text": "They have these big giant billboards on them and they hire another company to come and put things on that billboard.", + "start": 1260.66, + "end": 1268.48, + "words": [ + { + "word": " They", + "start": 1260.66, + "end": 1260.84, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1260.84, + "end": 1261.02, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 1261.02, + "end": 1261.2, + "probability": 0.9970703125 + }, + { + "word": " big", + "start": 1261.2, + "end": 1261.6, + "probability": 0.99267578125 + }, + { + "word": " giant", + "start": 1261.6, + "end": 1261.96, + "probability": 0.89013671875 + }, + { + "word": " billboards", + "start": 1261.96, + "end": 1262.58, + "probability": 0.994140625 + }, + { + "word": " on", + "start": 1262.58, + "end": 1262.84, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 1262.84, + "end": 1263.1, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1263.1, + "end": 1264.06, + "probability": 0.9326171875 + }, + { + "word": " they", + "start": 1264.06, + "end": 1264.7, + "probability": 0.9873046875 + }, + { + "word": " hire", + "start": 1264.7, + "end": 1265.18, + "probability": 0.99853515625 + }, + { + "word": " another", + "start": 1265.18, + "end": 1265.72, + "probability": 0.998046875 + }, + { + "word": " company", + "start": 1265.72, + "end": 1266.2, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1266.2, + "end": 1266.74, + "probability": 0.99462890625 + }, + { + "word": " come", + "start": 1266.74, + "end": 1266.92, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1266.92, + "end": 1267.02, + "probability": 0.99609375 + }, + { + "word": " put", + "start": 1267.02, + "end": 1267.18, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 1267.18, + "end": 1267.44, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 1267.44, + "end": 1267.74, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1267.74, + "end": 1267.98, + "probability": 0.9990234375 + }, + { + "word": " billboard.", + "start": 1267.98, + "end": 1268.48, + "probability": 0.99609375 + } + ] + }, + { + "id": 447, + "text": "And so the property managers themselves don't necessarily have any control over the advertising that's happening there.", + "start": 1268.58, + "end": 1274.26, + "words": [ + { + "word": " And", + "start": 1268.58, + "end": 1269.08, + "probability": 0.98974609375 + }, + { + "word": " so", + "start": 1269.08, + "end": 1269.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1269.5, + "end": 1269.82, + "probability": 0.97802734375 + }, + { + "word": " property", + "start": 1269.82, + "end": 1270.14, + "probability": 0.99951171875 + }, + { + "word": " managers", + "start": 1270.14, + "end": 1270.42, + "probability": 0.99560546875 + }, + { + "word": " themselves", + "start": 1270.42, + "end": 1270.76, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1270.76, + "end": 1271.7, + "probability": 0.998046875 + }, + { + "word": " necessarily", + "start": 1271.7, + "end": 1271.94, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1271.94, + "end": 1272.28, + "probability": 1.0 + }, + { + "word": " any", + "start": 1272.28, + "end": 1272.46, + "probability": 1.0 + }, + { + "word": " control", + "start": 1272.46, + "end": 1272.72, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 1272.72, + "end": 1272.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1272.96, + "end": 1273.08, + "probability": 0.99951171875 + }, + { + "word": " advertising", + "start": 1273.08, + "end": 1273.42, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 1273.42, + "end": 1273.68, + "probability": 0.99365234375 + }, + { + "word": " happening", + "start": 1273.68, + "end": 1274.0, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1274.0, + "end": 1274.26, + "probability": 0.99658203125 + } + ] + }, + { + "id": 448, + "text": "They're just saying this space for rent and you go ahead and manage that.", + "start": 1274.4, + "end": 1278.26, + "words": [ + { + "word": " They're", + "start": 1274.4, + "end": 1274.92, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1274.92, + "end": 1275.04, + "probability": 0.9990234375 + }, + { + "word": " saying", + "start": 1275.04, + "end": 1275.32, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1275.32, + "end": 1275.76, + "probability": 0.529296875 + }, + { + "word": " space", + "start": 1275.76, + "end": 1276.0, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 1276.0, + "end": 1276.22, + "probability": 0.99951171875 + }, + { + "word": " rent", + "start": 1276.22, + "end": 1276.46, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1276.46, + "end": 1276.94, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 1276.94, + "end": 1277.38, + "probability": 1.0 + }, + { + "word": " go", + "start": 1277.38, + "end": 1277.52, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1277.52, + "end": 1277.68, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1277.68, + "end": 1277.8, + "probability": 0.99951171875 + }, + { + "word": " manage", + "start": 1277.8, + "end": 1278.04, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 1278.04, + "end": 1278.26, + "probability": 1.0 + } + ] + }, + { + "id": 449, + "text": "So the ad brokers will go out and.", + "start": 1278.5, + "end": 1281.5, + "words": [ + { + "word": " So", + "start": 1278.5, + "end": 1279.02, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1279.02, + "end": 1279.4, + "probability": 0.99462890625 + }, + { + "word": " ad", + "start": 1279.4, + "end": 1279.82, + "probability": 0.998046875 + }, + { + "word": " brokers", + "start": 1279.82, + "end": 1280.28, + "probability": 0.99658203125 + }, + { + "word": " will", + "start": 1280.28, + "end": 1280.8, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 1280.8, + "end": 1280.94, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 1280.94, + "end": 1281.16, + "probability": 0.99951171875 + }, + { + "word": " and.", + "start": 1281.16, + "end": 1281.5, + "probability": 0.99462890625 + } + ] + }, + { + "id": 450, + "text": "Find advertisers and sometimes those are those infectious people.", + "start": 1281.94, + "end": 1284.92, + "words": [ + { + "word": " Find", + "start": 1281.94, + "end": 1282.16, + "probability": 0.057861328125 + }, + { + "word": " advertisers", + "start": 1282.16, + "end": 1282.42, + "probability": 0.994140625 + }, + { + "word": " and", + "start": 1282.42, + "end": 1283.12, + "probability": 0.058380126953125 + }, + { + "word": " sometimes", + "start": 1283.12, + "end": 1283.48, + "probability": 0.99755859375 + }, + { + "word": " those", + "start": 1283.48, + "end": 1283.82, + "probability": 0.9814453125 + }, + { + "word": " are", + "start": 1283.82, + "end": 1283.98, + "probability": 0.98486328125 + }, + { + "word": " those", + "start": 1283.98, + "end": 1284.12, + "probability": 0.98583984375 + }, + { + "word": " infectious", + "start": 1284.12, + "end": 1284.48, + "probability": 0.994140625 + }, + { + "word": " people.", + "start": 1284.48, + "end": 1284.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 451, + "text": "I had the people that are causing infections.", + "start": 1285.08, + "end": 1287.12, + "words": [ + { + "word": " I", + "start": 1285.08, + "end": 1285.58, + "probability": 0.0053253173828125 + }, + { + "word": " had", + "start": 1285.58, + "end": 1285.74, + "probability": 0.371826171875 + }, + { + "word": " the", + "start": 1285.74, + "end": 1285.8, + "probability": 0.9921875 + }, + { + "word": " people", + "start": 1285.8, + "end": 1286.02, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1286.02, + "end": 1286.2, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 1286.2, + "end": 1286.3, + "probability": 0.9990234375 + }, + { + "word": " causing", + "start": 1286.3, + "end": 1286.66, + "probability": 0.9990234375 + }, + { + "word": " infections.", + "start": 1286.66, + "end": 1287.12, + "probability": 0.5087890625 + } + ] + }, + { + "id": 452, + "text": "So they just buy legitimate advertising.", + "start": 1287.2, + "end": 1289.14, + "words": [ + { + "word": " So", + "start": 1287.2, + "end": 1287.48, + "probability": 0.93115234375 + }, + { + "word": " they", + "start": 1287.48, + "end": 1288.02, + "probability": 0.93212890625 + }, + { + "word": " just", + "start": 1288.02, + "end": 1288.16, + "probability": 0.99560546875 + }, + { + "word": " buy", + "start": 1288.16, + "end": 1288.38, + "probability": 0.8701171875 + }, + { + "word": " legitimate", + "start": 1288.38, + "end": 1288.72, + "probability": 0.9638671875 + }, + { + "word": " advertising.", + "start": 1288.72, + "end": 1289.14, + "probability": 0.99755859375 + } + ] + }, + { + "id": 453, + "text": "There was an instance where they heavily invested in PBS and MSNBC and basically millions of people got infected from the PBS website because of an ad banner that was on the website.", + "start": 1289.34, + "end": 1303.26, + "words": [ + { + "word": " There", + "start": 1289.34, + "end": 1289.48, + "probability": 0.9970703125 + }, + { + "word": " was", + "start": 1289.48, + "end": 1289.66, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1289.66, + "end": 1289.84, + "probability": 0.6142578125 + }, + { + "word": " instance", + "start": 1289.84, + "end": 1290.4, + "probability": 0.99560546875 + }, + { + "word": " where", + "start": 1290.4, + "end": 1290.72, + "probability": 0.99267578125 + }, + { + "word": " they", + "start": 1290.72, + "end": 1291.62, + "probability": 0.94873046875 + }, + { + "word": " heavily", + "start": 1291.62, + "end": 1292.08, + "probability": 0.99560546875 + }, + { + "word": " invested", + "start": 1292.08, + "end": 1292.6, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 1292.6, + "end": 1293.08, + "probability": 0.99755859375 + }, + { + "word": " PBS", + "start": 1293.08, + "end": 1294.02, + "probability": 0.94384765625 + }, + { + "word": " and", + "start": 1294.02, + "end": 1294.58, + "probability": 0.98388671875 + }, + { + "word": " MSNBC", + "start": 1294.58, + "end": 1295.08, + "probability": 0.97216796875 + }, + { + "word": " and", + "start": 1295.08, + "end": 1296.18, + "probability": 0.67236328125 + }, + { + "word": " basically", + "start": 1296.18, + "end": 1297.54, + "probability": 0.95361328125 + }, + { + "word": " millions", + "start": 1297.54, + "end": 1298.26, + "probability": 0.97900390625 + }, + { + "word": " of", + "start": 1298.26, + "end": 1298.6, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 1298.6, + "end": 1298.84, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 1298.84, + "end": 1299.0, + "probability": 0.99462890625 + }, + { + "word": " infected", + "start": 1299.0, + "end": 1299.3, + "probability": 0.99609375 + }, + { + "word": " from", + "start": 1299.3, + "end": 1299.54, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1299.54, + "end": 1299.66, + "probability": 0.9990234375 + }, + { + "word": " PBS", + "start": 1299.66, + "end": 1299.88, + "probability": 0.9970703125 + }, + { + "word": " website", + "start": 1299.88, + "end": 1300.2, + "probability": 0.9814453125 + }, + { + "word": " because", + "start": 1300.2, + "end": 1301.26, + "probability": 0.955078125 + }, + { + "word": " of", + "start": 1301.26, + "end": 1301.42, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1301.42, + "end": 1301.52, + "probability": 0.99853515625 + }, + { + "word": " ad", + "start": 1301.52, + "end": 1301.7, + "probability": 0.9951171875 + }, + { + "word": " banner", + "start": 1301.7, + "end": 1301.94, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 1301.94, + "end": 1302.46, + "probability": 0.9775390625 + }, + { + "word": " was", + "start": 1302.46, + "end": 1302.64, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1302.64, + "end": 1302.82, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1302.82, + "end": 1302.96, + "probability": 0.9990234375 + }, + { + "word": " website.", + "start": 1302.96, + "end": 1303.26, + "probability": 0.994140625 + } + ] + }, + { + "id": 454, + "text": "Now wasn't PBS's fault.", + "start": 1303.4, + "end": 1304.78, + "words": [ + { + "word": " Now", + "start": 1303.4, + "end": 1303.82, + "probability": 0.97509765625 + }, + { + "word": " wasn't", + "start": 1303.82, + "end": 1304.12, + "probability": 0.58203125 + }, + { + "word": " PBS's", + "start": 1304.12, + "end": 1304.52, + "probability": 0.630859375 + }, + { + "word": " fault.", + "start": 1304.52, + "end": 1304.78, + "probability": 0.99658203125 + } + ] + }, + { + "id": 455, + "text": "They don't have any control over the advertising.", + "start": 1304.86, + "end": 1306.58, + "words": [ + { + "word": " They", + "start": 1304.86, + "end": 1305.36, + "probability": 0.8642578125 + }, + { + "word": " don't", + "start": 1305.36, + "end": 1305.5, + "probability": 0.978515625 + }, + { + "word": " have", + "start": 1305.5, + "end": 1305.58, + "probability": 0.88818359375 + }, + { + "word": " any", + "start": 1305.58, + "end": 1305.66, + "probability": 0.9150390625 + }, + { + "word": " control", + "start": 1305.66, + "end": 1305.88, + "probability": 0.99853515625 + }, + { + "word": " over", + "start": 1305.88, + "end": 1306.1, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1306.1, + "end": 1306.2, + "probability": 0.99755859375 + }, + { + "word": " advertising.", + "start": 1306.2, + "end": 1306.58, + "probability": 0.998046875 + } + ] + }, + { + "id": 456, + "text": "But for a while there PBS was a dangerous place to go.", + "start": 1307.24, + "end": 1310.96, + "words": [ + { + "word": " But", + "start": 1307.24, + "end": 1307.76, + "probability": 0.99267578125 + }, + { + "word": " for", + "start": 1307.76, + "end": 1307.96, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1307.96, + "end": 1308.06, + "probability": 0.8603515625 + }, + { + "word": " while", + "start": 1308.06, + "end": 1308.34, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1308.34, + "end": 1308.6, + "probability": 0.92724609375 + }, + { + "word": " PBS", + "start": 1308.6, + "end": 1309.2, + "probability": 0.31640625 + }, + { + "word": " was", + "start": 1309.2, + "end": 1309.82, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 1309.82, + "end": 1309.94, + "probability": 0.99609375 + }, + { + "word": " dangerous", + "start": 1309.94, + "end": 1310.26, + "probability": 0.998046875 + }, + { + "word": " place", + "start": 1310.26, + "end": 1310.58, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1310.58, + "end": 1310.78, + "probability": 0.9990234375 + }, + { + "word": " go.", + "start": 1310.78, + "end": 1310.96, + "probability": 0.99609375 + } + ] + }, + { + "id": 457, + "text": "Until they figured out how to get rid of that ad banner.", + "start": 1310.96, + "end": 1313.6, + "words": [ + { + "word": " Until", + "start": 1310.96, + "end": 1311.22, + "probability": 0.054962158203125 + }, + { + "word": " they", + "start": 1311.22, + "end": 1311.96, + "probability": 0.99951171875 + }, + { + "word": " figured", + "start": 1311.96, + "end": 1312.22, + "probability": 0.99755859375 + }, + { + "word": " out", + "start": 1312.22, + "end": 1312.4, + "probability": 1.0 + }, + { + "word": " how", + "start": 1312.4, + "end": 1312.58, + "probability": 0.98828125 + }, + { + "word": " to", + "start": 1312.58, + "end": 1312.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 1312.7, + "end": 1312.82, + "probability": 0.99951171875 + }, + { + "word": " rid", + "start": 1312.82, + "end": 1312.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 1312.96, + "end": 1313.06, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1313.06, + "end": 1313.16, + "probability": 0.99951171875 + }, + { + "word": " ad", + "start": 1313.16, + "end": 1313.38, + "probability": 0.9833984375 + }, + { + "word": " banner.", + "start": 1313.38, + "end": 1313.6, + "probability": 0.97607421875 + } + ] + }, + { + "id": 458, + "text": "So no bueno.", + "start": 1314.4, + "end": 1315.4, + "words": [ + { + "word": " So", + "start": 1314.4, + "end": 1314.6, + "probability": 0.25146484375 + }, + { + "word": " no", + "start": 1314.6, + "end": 1315.04, + "probability": 0.1895751953125 + }, + { + "word": " bueno.", + "start": 1315.04, + "end": 1315.4, + "probability": 0.9384765625 + } + ] + }, + { + "id": 459, + "text": "Yeah.", + "start": 1315.6, + "end": 1316.0, + "words": [ + { + "word": " Yeah.", + "start": 1315.6, + "end": 1316.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 460, + "text": "So it was it was bad news.", + "start": 1316.08, + "end": 1318.32, + "words": [ + { + "word": " So", + "start": 1316.08, + "end": 1316.22, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1316.22, + "end": 1316.42, + "probability": 1.0 + }, + { + "word": " was", + "start": 1316.42, + "end": 1316.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 1316.72, + "end": 1316.92, + "probability": 0.11700439453125 + }, + { + "word": " was", + "start": 1316.92, + "end": 1317.76, + "probability": 1.0 + }, + { + "word": " bad", + "start": 1317.76, + "end": 1318.04, + "probability": 1.0 + }, + { + "word": " news.", + "start": 1318.04, + "end": 1318.32, + "probability": 1.0 + } + ] + }, + { + "id": 461, + "text": "They should have done a whole episode of Sesame Street about, you know, viruses and infections and stuff.", + "start": 1318.7, + "end": 1324.28, + "words": [ + { + "word": " They", + "start": 1318.7, + "end": 1319.1, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 1319.1, + "end": 1319.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 1319.28, + "end": 1319.36, + "probability": 1.0 + }, + { + "word": " done", + "start": 1319.36, + "end": 1319.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 1319.5, + "end": 1319.56, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1319.56, + "end": 1319.72, + "probability": 1.0 + }, + { + "word": " episode", + "start": 1319.72, + "end": 1320.06, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1320.06, + "end": 1320.32, + "probability": 1.0 + }, + { + "word": " Sesame", + "start": 1320.32, + "end": 1320.54, + "probability": 1.0 + }, + { + "word": " Street", + "start": 1320.54, + "end": 1320.82, + "probability": 1.0 + }, + { + "word": " about,", + "start": 1320.82, + "end": 1321.1, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1321.14, + "end": 1321.36, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 1321.36, + "end": 1321.54, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 1321.54, + "end": 1323.0, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1323.0, + "end": 1323.34, + "probability": 1.0 + }, + { + "word": " infections", + "start": 1323.34, + "end": 1323.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 1323.7, + "end": 1324.06, + "probability": 0.9990234375 + }, + { + "word": " stuff.", + "start": 1324.06, + "end": 1324.28, + "probability": 1.0 + } + ] + }, + { + "id": 462, + "text": "That's how you know the times are changing, man.", + "start": 1325.92, + "end": 1327.5, + "words": [ + { + "word": " That's", + "start": 1325.92, + "end": 1326.32, + "probability": 1.0 + }, + { + "word": " how", + "start": 1326.32, + "end": 1326.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 1326.38, + "end": 1326.52, + "probability": 0.8310546875 + }, + { + "word": " know", + "start": 1326.52, + "end": 1326.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 1326.62, + "end": 1326.72, + "probability": 0.98828125 + }, + { + "word": " times", + "start": 1326.72, + "end": 1326.92, + "probability": 1.0 + }, + { + "word": " are", + "start": 1326.92, + "end": 1327.04, + "probability": 1.0 + }, + { + "word": " changing,", + "start": 1327.04, + "end": 1327.28, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1327.32, + "end": 1327.5, + "probability": 1.0 + } + ] + }, + { + "id": 463, + "text": "All right.", + "start": 1327.64, + "end": 1328.08, + "words": [ + { + "word": " All", + "start": 1327.64, + "end": 1327.96, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 1327.96, + "end": 1328.08, + "probability": 1.0 + } + ] + }, + { + "id": 464, + "text": "Let's go ahead and take a quick break.", + "start": 1328.1, + "end": 1329.08, + "words": [ + { + "word": " Let's", + "start": 1328.1, + "end": 1328.28, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1328.28, + "end": 1328.32, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 1328.32, + "end": 1328.44, + "probability": 0.81689453125 + }, + { + "word": " and", + "start": 1328.44, + "end": 1328.48, + "probability": 1.0 + }, + { + "word": " take", + "start": 1328.48, + "end": 1328.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1328.58, + "end": 1328.66, + "probability": 1.0 + }, + { + "word": " quick", + "start": 1328.66, + "end": 1328.78, + "probability": 1.0 + }, + { + "word": " break.", + "start": 1328.78, + "end": 1329.08, + "probability": 1.0 + } + ] + }, + { + "id": 465, + "text": "And when we come back, we're going to talk more about ways that you can make your computer go faster and keep yourself safe today in the Internet age.", + "start": 1329.14, + "end": 1337.28, + "words": [ + { + "word": " And", + "start": 1329.14, + "end": 1329.46, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 1329.46, + "end": 1329.7, + "probability": 0.99462890625 + }, + { + "word": " we", + "start": 1329.7, + "end": 1329.82, + "probability": 1.0 + }, + { + "word": " come", + "start": 1329.82, + "end": 1329.96, + "probability": 1.0 + }, + { + "word": " back,", + "start": 1329.96, + "end": 1330.3, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1330.4, + "end": 1330.86, + "probability": 1.0 + }, + { + "word": " going", + "start": 1330.86, + "end": 1330.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1330.94, + "end": 1331.0, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1331.0, + "end": 1331.24, + "probability": 1.0 + }, + { + "word": " more", + "start": 1331.24, + "end": 1331.98, + "probability": 1.0 + }, + { + "word": " about", + "start": 1331.98, + "end": 1332.22, + "probability": 1.0 + }, + { + "word": " ways", + "start": 1332.22, + "end": 1332.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 1332.46, + "end": 1332.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 1332.58, + "end": 1332.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 1332.68, + "end": 1332.78, + "probability": 1.0 + }, + { + "word": " make", + "start": 1332.78, + "end": 1332.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 1332.94, + "end": 1333.06, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1333.06, + "end": 1333.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 1333.32, + "end": 1333.5, + "probability": 1.0 + }, + { + "word": " faster", + "start": 1333.5, + "end": 1333.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1333.98, + "end": 1334.54, + "probability": 0.9873046875 + }, + { + "word": " keep", + "start": 1334.54, + "end": 1334.8, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 1334.8, + "end": 1335.06, + "probability": 1.0 + }, + { + "word": " safe", + "start": 1335.06, + "end": 1335.5, + "probability": 1.0 + }, + { + "word": " today", + "start": 1335.5, + "end": 1336.46, + "probability": 0.65478515625 + }, + { + "word": " in", + "start": 1336.46, + "end": 1336.72, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 1336.72, + "end": 1336.8, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1336.8, + "end": 1337.02, + "probability": 0.99267578125 + }, + { + "word": " age.", + "start": 1337.02, + "end": 1337.28, + "probability": 0.97314453125 + } + ] + }, + { + "id": 466, + "text": "This is Computer Guru Show.", + "start": 1337.32, + "end": 1338.26, + "words": [ + { + "word": " This", + "start": 1337.32, + "end": 1337.52, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1337.52, + "end": 1337.66, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 1337.66, + "end": 1337.9, + "probability": 0.96240234375 + }, + { + "word": " Guru", + "start": 1337.9, + "end": 1338.08, + "probability": 0.99609375 + }, + { + "word": " Show.", + "start": 1338.08, + "end": 1338.26, + "probability": 0.978515625 + } + ] + }, + { + "id": 467, + "text": "We'll be right back.", + "start": 1338.34, + "end": 1338.92, + "words": [ + { + "word": " We'll", + "start": 1338.34, + "end": 1338.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 1338.58, + "end": 1338.62, + "probability": 1.0 + }, + { + "word": " right", + "start": 1338.62, + "end": 1338.76, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1338.76, + "end": 1338.92, + "probability": 1.0 + } + ] + }, + { + "id": 468, + "text": "Your computer guru, Mike Swanson, is here to help you tame that beast of a machine.", + "start": 1351.78, + "end": 1355.92, + "words": [ + { + "word": " Your", + "start": 1351.78, + "end": 1352.26, + "probability": 0.0712890625 + }, + { + "word": " computer", + "start": 1352.26, + "end": 1352.6, + "probability": 0.98486328125 + }, + { + "word": " guru,", + "start": 1352.6, + "end": 1353.06, + "probability": 0.9990234375 + }, + { + "word": " Mike", + "start": 1353.14, + "end": 1353.34, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 1353.34, + "end": 1353.7, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1353.82, + "end": 1353.98, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 1353.98, + "end": 1354.12, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1354.12, + "end": 1354.24, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 1354.24, + "end": 1354.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1354.48, + "end": 1354.64, + "probability": 1.0 + }, + { + "word": " tame", + "start": 1354.64, + "end": 1354.86, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1354.86, + "end": 1355.04, + "probability": 0.99951171875 + }, + { + "word": " beast", + "start": 1355.04, + "end": 1355.32, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1355.32, + "end": 1355.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1355.56, + "end": 1355.66, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1355.66, + "end": 1355.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 469, + "text": "Join the chat right now at gurushow.com or call in.", + "start": 1356.22, + "end": 1359.78, + "words": [ + { + "word": " Join", + "start": 1356.22, + "end": 1356.7, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1356.7, + "end": 1356.88, + "probability": 0.99951171875 + }, + { + "word": " chat", + "start": 1356.88, + "end": 1357.08, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 1357.08, + "end": 1357.3, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 1357.3, + "end": 1357.6, + "probability": 1.0 + }, + { + "word": " at", + "start": 1357.6, + "end": 1357.92, + "probability": 0.99755859375 + }, + { + "word": " gurushow", + "start": 1357.92, + "end": 1358.44, + "probability": 0.87451171875 + }, + { + "word": ".com", + "start": 1358.44, + "end": 1359.02, + "probability": 1.0 + }, + { + "word": " or", + "start": 1359.02, + "end": 1359.3, + "probability": 0.9833984375 + }, + { + "word": " call", + "start": 1359.3, + "end": 1359.5, + "probability": 0.99951171875 + }, + { + "word": " in.", + "start": 1359.5, + "end": 1359.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 470, + "text": "This is the Computer Guru Show on KVOY, The Voice.", + "start": 1359.86, + "end": 1363.34, + "words": [ + { + "word": " This", + "start": 1359.86, + "end": 1360.16, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1360.16, + "end": 1360.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1360.52, + "end": 1360.62, + "probability": 0.75341796875 + }, + { + "word": " Computer", + "start": 1360.62, + "end": 1360.86, + "probability": 0.98779296875 + }, + { + "word": " Guru", + "start": 1360.86, + "end": 1361.2, + "probability": 0.99951171875 + }, + { + "word": " Show", + "start": 1361.2, + "end": 1361.58, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1361.58, + "end": 1361.98, + "probability": 0.994140625 + }, + { + "word": " KVOY,", + "start": 1361.98, + "end": 1362.58, + "probability": 0.91748046875 + }, + { + "word": " The", + "start": 1362.8, + "end": 1363.04, + "probability": 0.98291015625 + }, + { + "word": " Voice.", + "start": 1363.04, + "end": 1363.34, + "probability": 1.0 + } + ] + }, + { + "id": 471, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 1366.36, + "end": 1369.42, + "words": [ + { + "word": " Mike", + "start": 1366.36, + "end": 1366.84, + "probability": 0.98828125 + }, + { + "word": " Swanson,", + "start": 1366.84, + "end": 1367.24, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1367.38, + "end": 1367.54, + "probability": 0.99755859375 + }, + { + "word": " computer", + "start": 1367.54, + "end": 1367.9, + "probability": 0.9990234375 + }, + { + "word": " guru,", + "start": 1367.9, + "end": 1368.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1368.42, + "end": 1368.64, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1368.64, + "end": 1368.86, + "probability": 0.9453125 + }, + { + "word": " a", + "start": 1368.86, + "end": 1369.02, + "probability": 1.0 + }, + { + "word": " click", + "start": 1369.02, + "end": 1369.18, + "probability": 0.9970703125 + }, + { + "word": " away.", + "start": 1369.18, + "end": 1369.42, + "probability": 1.0 + } + ] + }, + { + "id": 472, + "text": "Listen and watch.", + "start": 1369.62, + "end": 1370.54, + "words": [ + { + "word": " Listen", + "start": 1369.62, + "end": 1370.1, + "probability": 0.97509765625 + }, + { + "word": " and", + "start": 1370.1, + "end": 1370.26, + "probability": 0.96337890625 + }, + { + "word": " watch.", + "start": 1370.26, + "end": 1370.54, + "probability": 0.9853515625 + } + ] + }, + { + "id": 473, + "text": "Watch at gurushow.com.", + "start": 1370.54, + "end": 1371.78, + "words": [ + { + "word": " Watch", + "start": 1370.54, + "end": 1370.62, + "probability": 0.0261077880859375 + }, + { + "word": " at", + "start": 1370.62, + "end": 1370.7, + "probability": 0.693359375 + }, + { + "word": " gurushow", + "start": 1370.7, + "end": 1371.26, + "probability": 0.83447265625 + }, + { + "word": ".com.", + "start": 1371.26, + "end": 1371.78, + "probability": 1.0 + } + ] + }, + { + "id": 474, + "text": "This is the Computer Guru Show on KVOY, The Voice.", + "start": 1372.18, + "end": 1375.74, + "words": [ + { + "word": " This", + "start": 1372.18, + "end": 1372.52, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1372.52, + "end": 1372.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1372.84, + "end": 1372.94, + "probability": 0.599609375 + }, + { + "word": " Computer", + "start": 1372.94, + "end": 1373.2, + "probability": 0.9951171875 + }, + { + "word": " Guru", + "start": 1373.2, + "end": 1373.54, + "probability": 0.99072265625 + }, + { + "word": " Show", + "start": 1373.54, + "end": 1373.88, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 1373.88, + "end": 1374.32, + "probability": 0.99658203125 + }, + { + "word": " KVOY,", + "start": 1374.32, + "end": 1374.98, + "probability": 0.3466796875 + }, + { + "word": " The", + "start": 1375.16, + "end": 1375.44, + "probability": 0.99267578125 + }, + { + "word": " Voice.", + "start": 1375.44, + "end": 1375.74, + "probability": 1.0 + } + ] + }, + { + "id": 475, + "text": "Welcome back to the Computer Guru Show.", + "start": 1378.5400000000002, + "end": 1380.08, + "words": [ + { + "word": " Welcome", + "start": 1378.5400000000002, + "end": 1378.88, + "probability": 0.99658203125 + }, + { + "word": " back", + "start": 1378.88, + "end": 1379.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 1379.22, + "end": 1379.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 1379.38, + "end": 1379.48, + "probability": 0.99169921875 + }, + { + "word": " Computer", + "start": 1379.48, + "end": 1379.68, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 1379.68, + "end": 1379.9, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 1379.9, + "end": 1380.08, + "probability": 1.0 + } + ] + }, + { + "id": 476, + "text": "My name is Mike.", + "start": 1380.12, + "end": 1380.56, + "words": [ + { + "word": " My", + "start": 1380.12, + "end": 1380.22, + "probability": 0.99853515625 + }, + { + "word": " name", + "start": 1380.22, + "end": 1380.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1380.3, + "end": 1380.4, + "probability": 0.98876953125 + }, + { + "word": " Mike.", + "start": 1380.4, + "end": 1380.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 477, + "text": "Here to do what your technology needs and treat you like a person in the process.", + "start": 1380.58, + "end": 1383.86, + "words": [ + { + "word": " Here", + "start": 1380.58, + "end": 1380.72, + "probability": 0.90771484375 + }, + { + "word": " to", + "start": 1380.72, + "end": 1380.84, + "probability": 1.0 + }, + { + "word": " do", + "start": 1380.84, + "end": 1380.94, + "probability": 0.34130859375 + }, + { + "word": " what", + "start": 1380.94, + "end": 1381.02, + "probability": 0.6767578125 + }, + { + "word": " your", + "start": 1381.02, + "end": 1381.1, + "probability": 0.99169921875 + }, + { + "word": " technology", + "start": 1381.1, + "end": 1381.4, + "probability": 1.0 + }, + { + "word": " needs", + "start": 1381.4, + "end": 1381.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1381.74, + "end": 1382.06, + "probability": 0.994140625 + }, + { + "word": " treat", + "start": 1382.06, + "end": 1382.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 1382.42, + "end": 1382.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 1382.64, + "end": 1382.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1382.78, + "end": 1382.94, + "probability": 1.0 + }, + { + "word": " person", + "start": 1382.94, + "end": 1383.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 1383.28, + "end": 1383.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1383.44, + "end": 1383.5, + "probability": 1.0 + }, + { + "word": " process.", + "start": 1383.5, + "end": 1383.86, + "probability": 1.0 + } + ] + }, + { + "id": 478, + "text": "790-2040.", + "start": 1385.7400000000002, + "end": 1386.42, + "words": [ + { + "word": " 790", + "start": 1385.7400000000002, + "end": 1386.0800000000002, + "probability": 0.99658203125 + }, + { + "word": "-2040.", + "start": 1386.0800000000002, + "end": 1386.42, + "probability": 0.86474609375 + } + ] + }, + { + "id": 479, + "text": "That's 520-790-2040.", + "start": 1386.44, + "end": 1387.94, + "words": [ + { + "word": " That's", + "start": 1386.44, + "end": 1386.6, + "probability": 0.9990234375 + }, + { + "word": " 520", + "start": 1386.6, + "end": 1386.9, + "probability": 0.99560546875 + }, + { + "word": "-790", + "start": 1386.9, + "end": 1387.42, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 1387.42, + "end": 1387.94, + "probability": 1.0 + } + ] + }, + { + "id": 480, + "text": "If you'd like to be part of the show, let's talk to Fernando.", + "start": 1387.96, + "end": 1390.18, + "words": [ + { + "word": " If", + "start": 1387.96, + "end": 1388.12, + "probability": 0.98876953125 + }, + { + "word": " you'd", + "start": 1388.12, + "end": 1388.2, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1388.2, + "end": 1388.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1388.26, + "end": 1388.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 1388.34, + "end": 1388.44, + "probability": 1.0 + }, + { + "word": " part", + "start": 1388.44, + "end": 1388.7, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 1388.7, + "end": 1388.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1388.84, + "end": 1388.9, + "probability": 1.0 + }, + { + "word": " show,", + "start": 1388.9, + "end": 1389.14, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1389.26, + "end": 1389.54, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1389.54, + "end": 1389.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1389.72, + "end": 1389.88, + "probability": 1.0 + }, + { + "word": " Fernando.", + "start": 1389.88, + "end": 1390.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 481, + "text": "Hey, Fernando.", + "start": 1391.02, + "end": 1391.52, + "words": [ + { + "word": " Hey,", + "start": 1391.02, + "end": 1391.36, + "probability": 0.9658203125 + }, + { + "word": " Fernando.", + "start": 1391.38, + "end": 1391.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 482, + "text": "How are you doing?", + "start": 1391.6, + "end": 1391.9, + "words": [ + { + "word": " How", + "start": 1391.6, + "end": 1391.72, + "probability": 0.99755859375 + }, + { + "word": " are", + "start": 1391.72, + "end": 1391.78, + "probability": 0.91455078125 + }, + { + "word": " you", + "start": 1391.78, + "end": 1391.78, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 1391.78, + "end": 1391.9, + "probability": 1.0 + } + ] + }, + { + "id": 483, + "text": "Hi.", + "start": 1392.6200000000001, + "end": 1392.96, + "words": [ + { + "word": " Hi.", + "start": 1392.6200000000001, + "end": 1392.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 484, + "text": "I'm doing pretty good.", + "start": 1393.0, + "end": 1393.78, + "words": [ + { + "word": " I'm", + "start": 1393.0, + "end": 1393.16, + "probability": 0.99951171875 + }, + { + "word": " doing", + "start": 1393.16, + "end": 1393.3, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1393.3, + "end": 1393.54, + "probability": 1.0 + }, + { + "word": " good.", + "start": 1393.54, + "end": 1393.78, + "probability": 1.0 + } + ] + }, + { + "id": 485, + "text": "Thank you.", + "start": 1393.84, + "end": 1394.22, + "words": [ + { + "word": " Thank", + "start": 1393.84, + "end": 1394.0, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 1394.0, + "end": 1394.22, + "probability": 1.0 + } + ] + }, + { + "id": 486, + "text": "So a couple of things.", + "start": 1394.3, + "end": 1395.72, + "words": [ + { + "word": " So", + "start": 1394.3, + "end": 1394.44, + "probability": 0.00926971435546875 + }, + { + "word": " a", + "start": 1394.44, + "end": 1394.48, + "probability": 0.63525390625 + }, + { + "word": " couple", + "start": 1394.48, + "end": 1395.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 1395.42, + "end": 1395.52, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1395.52, + "end": 1395.72, + "probability": 1.0 + } + ] + }, + { + "id": 487, + "text": "I have a we have wireless modem, you know, in our office.", + "start": 1396.02, + "end": 1400.52, + "words": [ + { + "word": " I", + "start": 1396.02, + "end": 1396.02, + "probability": 0.054962158203125 + }, + { + "word": " have", + "start": 1396.02, + "end": 1396.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 1396.34, + "end": 1396.48, + "probability": 0.8388671875 + }, + { + "word": " we", + "start": 1396.48, + "end": 1396.76, + "probability": 0.037689208984375 + }, + { + "word": " have", + "start": 1396.76, + "end": 1396.94, + "probability": 1.0 + }, + { + "word": " wireless", + "start": 1396.94, + "end": 1397.36, + "probability": 0.9951171875 + }, + { + "word": " modem,", + "start": 1397.36, + "end": 1399.58, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 1399.58, + "end": 1399.74, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1399.74, + "end": 1399.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 1399.88, + "end": 1400.04, + "probability": 0.9931640625 + }, + { + "word": " our", + "start": 1400.04, + "end": 1400.36, + "probability": 0.99169921875 + }, + { + "word": " office.", + "start": 1400.36, + "end": 1400.52, + "probability": 0.5322265625 + } + ] + }, + { + "id": 488, + "text": "And my computer seems the only one that sometimes will turn it on and there's no connection,", + "start": 1400.54, + "end": 1409.12, + "words": [ + { + "word": " And", + "start": 1400.54, + "end": 1401.18, + "probability": 0.040435791015625 + }, + { + "word": " my", + "start": 1401.18, + "end": 1401.78, + "probability": 0.86083984375 + }, + { + "word": " computer", + "start": 1401.78, + "end": 1402.88, + "probability": 0.99951171875 + }, + { + "word": " seems", + "start": 1402.88, + "end": 1403.16, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1403.16, + "end": 1403.36, + "probability": 0.7451171875 + }, + { + "word": " only", + "start": 1403.36, + "end": 1403.58, + "probability": 1.0 + }, + { + "word": " one", + "start": 1403.58, + "end": 1403.86, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1403.86, + "end": 1404.08, + "probability": 0.99658203125 + }, + { + "word": " sometimes", + "start": 1404.08, + "end": 1404.5, + "probability": 0.9970703125 + }, + { + "word": " will", + "start": 1404.5, + "end": 1404.92, + "probability": 0.87451171875 + }, + { + "word": " turn", + "start": 1404.92, + "end": 1405.84, + "probability": 0.97021484375 + }, + { + "word": " it", + "start": 1405.84, + "end": 1406.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 1406.12, + "end": 1406.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 1406.32, + "end": 1406.6, + "probability": 0.880859375 + }, + { + "word": " there's", + "start": 1406.6, + "end": 1408.62, + "probability": 0.99560546875 + }, + { + "word": " no", + "start": 1408.62, + "end": 1408.74, + "probability": 1.0 + }, + { + "word": " connection,", + "start": 1408.74, + "end": 1409.12, + "probability": 0.98291015625 + } + ] + }, + { + "id": 489, + "text": "internet connection.", + "start": 1409.34, + "end": 1410.06, + "words": [ + { + "word": " internet", + "start": 1409.34, + "end": 1409.58, + "probability": 0.52294921875 + }, + { + "word": " connection.", + "start": 1409.58, + "end": 1410.06, + "probability": 1.0 + } + ] + }, + { + "id": 490, + "text": "Everybody else is fine except me.", + "start": 1410.34, + "end": 1412.2, + "words": [ + { + "word": " Everybody", + "start": 1410.34, + "end": 1410.6, + "probability": 0.99609375 + }, + { + "word": " else", + "start": 1410.6, + "end": 1411.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 1411.12, + "end": 1411.32, + "probability": 1.0 + }, + { + "word": " fine", + "start": 1411.32, + "end": 1411.56, + "probability": 0.99951171875 + }, + { + "word": " except", + "start": 1411.56, + "end": 1411.78, + "probability": 0.9990234375 + }, + { + "word": " me.", + "start": 1411.78, + "end": 1412.2, + "probability": 1.0 + } + ] + }, + { + "id": 491, + "text": "And so what we have to do is we have to turn off the modem, let it sit for a while,", + "start": 1412.44, + "end": 1417.5, + "words": [ + { + "word": " And", + "start": 1412.44, + "end": 1412.9, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 1412.9, + "end": 1413.12, + "probability": 1.0 + }, + { + "word": " what", + "start": 1413.12, + "end": 1413.38, + "probability": 0.95654296875 + }, + { + "word": " we", + "start": 1413.38, + "end": 1413.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 1413.62, + "end": 1413.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1413.8, + "end": 1413.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 1413.98, + "end": 1414.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 1414.2, + "end": 1414.3, + "probability": 1.0 + }, + { + "word": " we", + "start": 1414.3, + "end": 1414.38, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1414.38, + "end": 1414.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 1414.52, + "end": 1414.7, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1414.7, + "end": 1414.92, + "probability": 1.0 + }, + { + "word": " off", + "start": 1414.92, + "end": 1415.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1415.12, + "end": 1415.36, + "probability": 1.0 + }, + { + "word": " modem,", + "start": 1415.36, + "end": 1415.86, + "probability": 1.0 + }, + { + "word": " let", + "start": 1415.92, + "end": 1416.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 1416.46, + "end": 1416.64, + "probability": 1.0 + }, + { + "word": " sit", + "start": 1416.64, + "end": 1416.84, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 1416.84, + "end": 1417.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1417.0, + "end": 1417.08, + "probability": 1.0 + }, + { + "word": " while,", + "start": 1417.08, + "end": 1417.5, + "probability": 1.0 + } + ] + }, + { + "id": 492, + "text": "and then turn it back on and then I'm connected again.", + "start": 1417.64, + "end": 1420.96, + "words": [ + { + "word": " and", + "start": 1417.64, + "end": 1417.84, + "probability": 1.0 + }, + { + "word": " then", + "start": 1417.84, + "end": 1417.98, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1417.98, + "end": 1418.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 1418.88, + "end": 1419.04, + "probability": 1.0 + }, + { + "word": " back", + "start": 1419.04, + "end": 1419.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1419.2, + "end": 1419.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 1419.5, + "end": 1419.7, + "probability": 0.373046875 + }, + { + "word": " then", + "start": 1419.7, + "end": 1419.84, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1419.84, + "end": 1420.08, + "probability": 0.998046875 + }, + { + "word": " connected", + "start": 1420.08, + "end": 1420.48, + "probability": 1.0 + }, + { + "word": " again.", + "start": 1420.48, + "end": 1420.96, + "probability": 1.0 + } + ] + }, + { + "id": 493, + "text": "What can I do to kind of resolve that issue?", + "start": 1421.3, + "end": 1424.1, + "words": [ + { + "word": " What", + "start": 1421.3, + "end": 1421.76, + "probability": 0.99560546875 + }, + { + "word": " can", + "start": 1421.76, + "end": 1421.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 1421.94, + "end": 1422.12, + "probability": 1.0 + }, + { + "word": " do", + "start": 1422.12, + "end": 1422.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1422.28, + "end": 1422.44, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1422.44, + "end": 1422.7, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1422.7, + "end": 1422.86, + "probability": 1.0 + }, + { + "word": " resolve", + "start": 1422.86, + "end": 1423.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 1423.2, + "end": 1423.64, + "probability": 1.0 + }, + { + "word": " issue?", + "start": 1423.64, + "end": 1424.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 494, + "text": "And the other question that I had, I caught the end part of the viruses", + "start": 1424.68, + "end": 1429.28, + "words": [ + { + "word": " And", + "start": 1424.68, + "end": 1425.14, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1425.14, + "end": 1425.5, + "probability": 1.0 + }, + { + "word": " other", + "start": 1425.5, + "end": 1425.7, + "probability": 1.0 + }, + { + "word": " question", + "start": 1425.7, + "end": 1426.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1426.12, + "end": 1426.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 1426.48, + "end": 1426.64, + "probability": 1.0 + }, + { + "word": " had,", + "start": 1426.64, + "end": 1426.84, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 1426.94, + "end": 1427.02, + "probability": 0.998046875 + }, + { + "word": " caught", + "start": 1427.02, + "end": 1427.36, + "probability": 0.94189453125 + }, + { + "word": " the", + "start": 1427.36, + "end": 1427.6, + "probability": 0.99462890625 + }, + { + "word": " end", + "start": 1427.6, + "end": 1427.82, + "probability": 0.94091796875 + }, + { + "word": " part", + "start": 1427.82, + "end": 1428.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 1428.04, + "end": 1428.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 1428.28, + "end": 1428.44, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 1428.44, + "end": 1429.28, + "probability": 0.99072265625 + } + ] + }, + { + "id": 495, + "text": "and how can I solve that issue?", + "start": 1429.84, + "end": 1430.52, + "words": [ + { + "word": " and", + "start": 1429.84, + "end": 1430.3, + "probability": 0.173828125 + }, + { + "word": " how", + "start": 1430.3, + "end": 1430.52, + "probability": 0.93896484375 + }, + { + "word": " can", + "start": 1430.52, + "end": 1430.52, + "probability": 0.0084686279296875 + }, + { + "word": " I", + "start": 1430.52, + "end": 1430.52, + "probability": 0.865234375 + }, + { + "word": " solve", + "start": 1430.52, + "end": 1430.52, + "probability": 0.1519775390625 + }, + { + "word": " that", + "start": 1430.52, + "end": 1430.52, + "probability": 0.56982421875 + }, + { + "word": " issue?", + "start": 1430.52, + "end": 1430.52, + "probability": 0.55517578125 + } + ] + }, + { + "id": 496, + "text": "Now, you guys can go ahead and guarantee that, I guess, install something that would prevent viruses", + "start": 1430.52, + "end": 1439.04, + "words": [ + { + "word": " Now,", + "start": 1430.52, + "end": 1430.58, + "probability": 0.7109375 + }, + { + "word": " you", + "start": 1430.58, + "end": 1430.72, + "probability": 0.9921875 + }, + { + "word": " guys", + "start": 1430.72, + "end": 1430.96, + "probability": 1.0 + }, + { + "word": " can", + "start": 1430.96, + "end": 1431.2, + "probability": 1.0 + }, + { + "word": " go", + "start": 1431.2, + "end": 1431.46, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1431.46, + "end": 1431.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 1431.68, + "end": 1431.98, + "probability": 1.0 + }, + { + "word": " guarantee", + "start": 1431.98, + "end": 1432.42, + "probability": 0.9970703125 + }, + { + "word": " that,", + "start": 1432.42, + "end": 1432.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 1432.84, + "end": 1434.0, + "probability": 0.9951171875 + }, + { + "word": " guess,", + "start": 1434.0, + "end": 1434.46, + "probability": 1.0 + }, + { + "word": " install", + "start": 1434.56, + "end": 1436.04, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1436.04, + "end": 1436.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 1436.4, + "end": 1436.82, + "probability": 1.0 + }, + { + "word": " would", + "start": 1436.82, + "end": 1437.4, + "probability": 0.998046875 + }, + { + "word": " prevent", + "start": 1437.4, + "end": 1438.48, + "probability": 1.0 + }, + { + "word": " viruses", + "start": 1438.48, + "end": 1439.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 497, + "text": "from getting into your computer.", + "start": 1439.04, + "end": 1440.9, + "words": [ + { + "word": " from", + "start": 1439.04, + "end": 1439.42, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1439.42, + "end": 1440.0, + "probability": 1.0 + }, + { + "word": " into", + "start": 1440.0, + "end": 1440.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 1440.3, + "end": 1440.52, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1440.52, + "end": 1440.9, + "probability": 1.0 + } + ] + }, + { + "id": 498, + "text": "Yeah, and it's not actually an install.", + "start": 1441.48, + "end": 1443.22, + "words": [ + { + "word": " Yeah,", + "start": 1441.48, + "end": 1442.04, + "probability": 0.96728515625 + }, + { + "word": " and", + "start": 1442.06, + "end": 1442.1, + "probability": 0.99755859375 + }, + { + "word": " it's", + "start": 1442.1, + "end": 1442.28, + "probability": 0.93505859375 + }, + { + "word": " not", + "start": 1442.28, + "end": 1442.38, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1442.38, + "end": 1442.66, + "probability": 1.0 + }, + { + "word": " an", + "start": 1442.66, + "end": 1442.88, + "probability": 1.0 + }, + { + "word": " install.", + "start": 1442.88, + "end": 1443.22, + "probability": 1.0 + } + ] + }, + { + "id": 499, + "text": "Well, I mean, it's sort of an install, but it's mostly a we prevent installation.", + "start": 1443.5, + "end": 1448.2, + "words": [ + { + "word": " Well,", + "start": 1443.5, + "end": 1443.76, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 1443.82, + "end": 1443.92, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1443.92, + "end": 1444.0, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1444.02, + "end": 1444.16, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1444.16, + "end": 1444.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 1444.34, + "end": 1444.5, + "probability": 1.0 + }, + { + "word": " an", + "start": 1444.5, + "end": 1444.6, + "probability": 1.0 + }, + { + "word": " install,", + "start": 1444.6, + "end": 1444.88, + "probability": 1.0 + }, + { + "word": " but", + "start": 1445.02, + "end": 1445.22, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1445.22, + "end": 1445.76, + "probability": 1.0 + }, + { + "word": " mostly", + "start": 1445.76, + "end": 1446.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 1446.12, + "end": 1446.5, + "probability": 1.0 + }, + { + "word": " we", + "start": 1446.5, + "end": 1446.88, + "probability": 0.97900390625 + }, + { + "word": " prevent", + "start": 1446.88, + "end": 1447.32, + "probability": 0.7685546875 + }, + { + "word": " installation.", + "start": 1447.32, + "end": 1448.2, + "probability": 1.0 + } + ] + }, + { + "id": 500, + "text": "Okay.", + "start": 1448.92, + "end": 1449.48, + "words": [ + { + "word": " Okay.", + "start": 1448.92, + "end": 1449.48, + "probability": 0.97021484375 + } + ] + }, + { + "id": 501, + "text": "So as far as the virus stuff is concerned, we put some settings on the computer that disallows execution", + "start": 1449.58, + "end": 1456.38, + "words": [ + { + "word": " So", + "start": 1449.58, + "end": 1450.1, + "probability": 0.97265625 + }, + { + "word": " as", + "start": 1450.1, + "end": 1450.98, + "probability": 0.611328125 + }, + { + "word": " far", + "start": 1450.98, + "end": 1451.32, + "probability": 1.0 + }, + { + "word": " as", + "start": 1451.32, + "end": 1451.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1451.46, + "end": 1451.62, + "probability": 1.0 + }, + { + "word": " virus", + "start": 1451.62, + "end": 1452.12, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1452.12, + "end": 1452.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 1452.34, + "end": 1452.48, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 1452.48, + "end": 1452.72, + "probability": 1.0 + }, + { + "word": " we", + "start": 1452.9, + "end": 1453.04, + "probability": 1.0 + }, + { + "word": " put", + "start": 1453.04, + "end": 1453.56, + "probability": 1.0 + }, + { + "word": " some", + "start": 1453.56, + "end": 1453.74, + "probability": 1.0 + }, + { + "word": " settings", + "start": 1453.74, + "end": 1454.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 1454.06, + "end": 1454.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 1454.26, + "end": 1454.32, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1454.32, + "end": 1454.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1454.58, + "end": 1454.86, + "probability": 1.0 + }, + { + "word": " disallows", + "start": 1454.86, + "end": 1455.5, + "probability": 0.9951171875 + }, + { + "word": " execution", + "start": 1455.5, + "end": 1456.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 502, + "text": "of any program outside of where we tell it.", + "start": 1457.1000000000001, + "end": 1460.5, + "words": [ + { + "word": " of", + "start": 1457.1000000000001, + "end": 1457.66, + "probability": 0.9990234375 + }, + { + "word": " any", + "start": 1457.66, + "end": 1457.98, + "probability": 1.0 + }, + { + "word": " program", + "start": 1457.98, + "end": 1458.42, + "probability": 1.0 + }, + { + "word": " outside", + "start": 1458.42, + "end": 1459.36, + "probability": 0.9912109375 + }, + { + "word": " of", + "start": 1459.36, + "end": 1459.74, + "probability": 1.0 + }, + { + "word": " where", + "start": 1459.74, + "end": 1459.92, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 1459.92, + "end": 1460.16, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 1460.16, + "end": 1460.36, + "probability": 0.56103515625 + }, + { + "word": " it.", + "start": 1460.36, + "end": 1460.5, + "probability": 0.7255859375 + } + ] + }, + { + "id": 503, + "text": "", + "start": 1460.5, + "end": 1460.5, + "words": [] + }, + { + "id": 504, + "text": "It's okay.", + "start": 1460.52, + "end": 1461.08, + "words": [ + { + "word": " It's", + "start": 1460.52, + "end": 1460.8, + "probability": 0.546875 + }, + { + "word": " okay.", + "start": 1460.8, + "end": 1461.08, + "probability": 0.89404296875 + } + ] + }, + { + "id": 505, + "text": "Okay.", + "start": 1461.88, + "end": 1462.36, + "words": [ + { + "word": " Okay.", + "start": 1461.88, + "end": 1462.36, + "probability": 0.7646484375 + } + ] + }, + { + "id": 506, + "text": "So there is some discomfort if you're one of those users that likes to install lots of software.", + "start": 1462.94, + "end": 1468.98, + "words": [ + { + "word": " So", + "start": 1462.94, + "end": 1463.42, + "probability": 0.8564453125 + }, + { + "word": " there", + "start": 1463.42, + "end": 1463.82, + "probability": 0.79541015625 + }, + { + "word": " is", + "start": 1463.82, + "end": 1464.28, + "probability": 1.0 + }, + { + "word": " some", + "start": 1464.28, + "end": 1464.54, + "probability": 1.0 + }, + { + "word": " discomfort", + "start": 1464.54, + "end": 1465.22, + "probability": 1.0 + }, + { + "word": " if", + "start": 1465.22, + "end": 1465.52, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 1465.52, + "end": 1465.66, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 1465.66, + "end": 1465.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 1465.76, + "end": 1465.86, + "probability": 1.0 + }, + { + "word": " those", + "start": 1465.86, + "end": 1465.94, + "probability": 1.0 + }, + { + "word": " users", + "start": 1465.94, + "end": 1466.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 1466.28, + "end": 1466.58, + "probability": 0.9990234375 + }, + { + "word": " likes", + "start": 1466.58, + "end": 1466.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1466.92, + "end": 1467.16, + "probability": 1.0 + }, + { + "word": " install", + "start": 1467.16, + "end": 1467.76, + "probability": 1.0 + }, + { + "word": " lots", + "start": 1467.76, + "end": 1468.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 1468.18, + "end": 1468.44, + "probability": 1.0 + }, + { + "word": " software.", + "start": 1468.44, + "end": 1468.98, + "probability": 1.0 + } + ] + }, + { + "id": 507, + "text": "However, if you're one of those users where you like the way your computer is right now", + "start": 1469.26, + "end": 1474.48, + "words": [ + { + "word": " However,", + "start": 1469.26, + "end": 1469.74, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1469.86, + "end": 1471.0, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1471.0, + "end": 1471.2, + "probability": 1.0 + }, + { + "word": " one", + "start": 1471.2, + "end": 1471.74, + "probability": 0.98193359375 + }, + { + "word": " of", + "start": 1471.74, + "end": 1471.88, + "probability": 1.0 + }, + { + "word": " those", + "start": 1471.88, + "end": 1471.96, + "probability": 1.0 + }, + { + "word": " users", + "start": 1471.96, + "end": 1472.2, + "probability": 1.0 + }, + { + "word": " where", + "start": 1472.2, + "end": 1472.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 1472.44, + "end": 1472.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 1472.74, + "end": 1473.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1473.24, + "end": 1473.36, + "probability": 1.0 + }, + { + "word": " way", + "start": 1473.36, + "end": 1473.46, + "probability": 1.0 + }, + { + "word": " your", + "start": 1473.46, + "end": 1473.58, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1473.58, + "end": 1473.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 1473.8, + "end": 1474.04, + "probability": 1.0 + }, + { + "word": " right", + "start": 1474.04, + "end": 1474.24, + "probability": 1.0 + }, + { + "word": " now", + "start": 1474.24, + "end": 1474.48, + "probability": 1.0 + } + ] + }, + { + "id": 508, + "text": "and you're okay with it not changing, then that's an excellent way for you to make sure", + "start": 1474.48, + "end": 1480.28, + "words": [ + { + "word": " and", + "start": 1474.48, + "end": 1474.66, + "probability": 0.88916015625 + }, + { + "word": " you're", + "start": 1474.66, + "end": 1474.76, + "probability": 1.0 + }, + { + "word": " okay", + "start": 1474.76, + "end": 1475.38, + "probability": 0.9931640625 + }, + { + "word": " with", + "start": 1475.38, + "end": 1475.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 1475.62, + "end": 1475.76, + "probability": 1.0 + }, + { + "word": " not", + "start": 1475.76, + "end": 1475.92, + "probability": 1.0 + }, + { + "word": " changing,", + "start": 1475.92, + "end": 1476.38, + "probability": 1.0 + }, + { + "word": " then", + "start": 1476.6, + "end": 1477.4, + "probability": 0.998046875 + }, + { + "word": " that's", + "start": 1477.4, + "end": 1478.18, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1478.18, + "end": 1478.34, + "probability": 1.0 + }, + { + "word": " excellent", + "start": 1478.34, + "end": 1479.2, + "probability": 1.0 + }, + { + "word": " way", + "start": 1479.2, + "end": 1479.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 1479.52, + "end": 1479.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1479.78, + "end": 1479.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1479.88, + "end": 1480.0, + "probability": 1.0 + }, + { + "word": " make", + "start": 1480.0, + "end": 1480.1, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1480.1, + "end": 1480.28, + "probability": 1.0 + } + ] + }, + { + "id": 509, + "text": "that you don't get any type of infection.", + "start": 1480.28, + "end": 1481.56, + "words": [ + { + "word": " that", + "start": 1480.28, + "end": 1480.4, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1480.4, + "end": 1480.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1480.44, + "end": 1480.62, + "probability": 1.0 + }, + { + "word": " get", + "start": 1480.62, + "end": 1480.72, + "probability": 1.0 + }, + { + "word": " any", + "start": 1480.72, + "end": 1480.84, + "probability": 1.0 + }, + { + "word": " type", + "start": 1480.84, + "end": 1481.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1481.06, + "end": 1481.2, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 1481.2, + "end": 1481.56, + "probability": 1.0 + } + ] + }, + { + "id": 510, + "text": "Okay, and that's me right there.", + "start": 1481.8, + "end": 1483.2, + "words": [ + { + "word": " Okay,", + "start": 1481.8, + "end": 1482.08, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1482.12, + "end": 1482.28, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1482.28, + "end": 1482.54, + "probability": 1.0 + }, + { + "word": " me", + "start": 1482.54, + "end": 1482.72, + "probability": 1.0 + }, + { + "word": " right", + "start": 1482.72, + "end": 1482.96, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1482.96, + "end": 1483.2, + "probability": 1.0 + } + ] + }, + { + "id": 511, + "text": "I don't really like to install apps or anything like that on my computer anyway, so.", + "start": 1483.36, + "end": 1488.48, + "words": [ + { + "word": " I", + "start": 1483.36, + "end": 1483.66, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1483.66, + "end": 1484.06, + "probability": 1.0 + }, + { + "word": " really", + "start": 1484.06, + "end": 1484.22, + "probability": 1.0 + }, + { + "word": " like", + "start": 1484.22, + "end": 1484.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1484.54, + "end": 1484.7, + "probability": 0.99755859375 + }, + { + "word": " install", + "start": 1484.7, + "end": 1484.92, + "probability": 0.97802734375 + }, + { + "word": " apps", + "start": 1484.92, + "end": 1485.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 1485.8, + "end": 1486.34, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1486.34, + "end": 1486.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 1486.66, + "end": 1486.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 1486.94, + "end": 1487.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 1487.12, + "end": 1487.26, + "probability": 1.0 + }, + { + "word": " my", + "start": 1487.26, + "end": 1487.38, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1487.38, + "end": 1487.78, + "probability": 1.0 + }, + { + "word": " anyway,", + "start": 1487.78, + "end": 1488.14, + "probability": 0.99658203125 + }, + { + "word": " so.", + "start": 1488.3, + "end": 1488.48, + "probability": 0.95751953125 + } + ] + }, + { + "id": 512, + "text": "Good.", + "start": 1488.9, + "end": 1489.38, + "words": [ + { + "word": " Good.", + "start": 1488.9, + "end": 1489.38, + "probability": 0.99755859375 + } + ] + }, + { + "id": 513, + "text": "But you're exactly the person I need to talk to you for that, then.", + "start": 1489.38, + "end": 1492.26, + "words": [ + { + "word": " But", + "start": 1489.38, + "end": 1489.5, + "probability": 0.5205078125 + }, + { + "word": " you're", + "start": 1489.5, + "end": 1489.98, + "probability": 0.9404296875 + }, + { + "word": " exactly", + "start": 1489.98, + "end": 1490.54, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1490.54, + "end": 1490.8, + "probability": 1.0 + }, + { + "word": " person", + "start": 1490.8, + "end": 1491.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 1491.08, + "end": 1491.24, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 1491.24, + "end": 1491.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 1491.34, + "end": 1491.44, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1491.44, + "end": 1491.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1491.64, + "end": 1491.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 1491.76, + "end": 1491.8, + "probability": 0.97802734375 + }, + { + "word": " for", + "start": 1491.8, + "end": 1491.92, + "probability": 0.99853515625 + }, + { + "word": " that,", + "start": 1491.92, + "end": 1492.1, + "probability": 1.0 + }, + { + "word": " then.", + "start": 1492.1, + "end": 1492.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 514, + "text": "Okay, and where are you guys located?", + "start": 1492.78, + "end": 1494.92, + "words": [ + { + "word": " Okay,", + "start": 1492.78, + "end": 1493.18, + "probability": 0.9716796875 + }, + { + "word": " and", + "start": 1493.26, + "end": 1493.54, + "probability": 1.0 + }, + { + "word": " where", + "start": 1493.54, + "end": 1493.86, + "probability": 0.79345703125 + }, + { + "word": " are", + "start": 1493.86, + "end": 1494.0, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1494.0, + "end": 1494.04, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1494.04, + "end": 1494.26, + "probability": 0.99951171875 + }, + { + "word": " located?", + "start": 1494.26, + "end": 1494.92, + "probability": 1.0 + } + ] + }, + { + "id": 515, + "text": "We're at 510 East Fort Lowell.", + "start": 1495.34, + "end": 1497.04, + "words": [ + { + "word": " We're", + "start": 1495.34, + "end": 1495.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 1495.74, + "end": 1495.84, + "probability": 0.99951171875 + }, + { + "word": " 510", + "start": 1495.84, + "end": 1496.22, + "probability": 0.99951171875 + }, + { + "word": " East", + "start": 1496.22, + "end": 1496.46, + "probability": 1.0 + }, + { + "word": " Fort", + "start": 1496.46, + "end": 1496.76, + "probability": 0.9970703125 + }, + { + "word": " Lowell.", + "start": 1496.76, + "end": 1497.04, + "probability": 0.99609375 + } + ] + }, + { + "id": 516, + "text": "Okay, 510.", + "start": 1497.6999999999998, + "end": 1498.5, + "words": [ + { + "word": " Okay,", + "start": 1497.6999999999998, + "end": 1498.1, + "probability": 0.99365234375 + }, + { + "word": " 510.", + "start": 1498.1, + "end": 1498.5, + "probability": 1.0 + } + ] + }, + { + "id": 517, + "text": "That's first in Fort Lowell.", + "start": 1498.58, + "end": 1499.48, + "words": [ + { + "word": " That's", + "start": 1498.58, + "end": 1498.72, + "probability": 0.998046875 + }, + { + "word": " first", + "start": 1498.72, + "end": 1498.96, + "probability": 0.48681640625 + }, + { + "word": " in", + "start": 1498.96, + "end": 1499.1, + "probability": 0.826171875 + }, + { + "word": " Fort", + "start": 1499.1, + "end": 1499.28, + "probability": 0.99951171875 + }, + { + "word": " Lowell.", + "start": 1499.28, + "end": 1499.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 518, + "text": "So tell me more about your computer, though, as far as the Wi-Fi stuff is concerned.", + "start": 1499.58, + "end": 1503.56, + "words": [ + { + "word": " So", + "start": 1499.58, + "end": 1499.72, + "probability": 0.307861328125 + }, + { + "word": " tell", + "start": 1499.72, + "end": 1500.28, + "probability": 0.8037109375 + }, + { + "word": " me", + "start": 1500.28, + "end": 1500.94, + "probability": 1.0 + }, + { + "word": " more", + "start": 1500.94, + "end": 1501.08, + "probability": 1.0 + }, + { + "word": " about", + "start": 1501.08, + "end": 1501.24, + "probability": 1.0 + }, + { + "word": " your", + "start": 1501.24, + "end": 1501.4, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 1501.4, + "end": 1501.7, + "probability": 1.0 + }, + { + "word": " though,", + "start": 1501.76, + "end": 1501.94, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1501.94, + "end": 1502.28, + "probability": 0.99951171875 + }, + { + "word": " far", + "start": 1502.28, + "end": 1502.46, + "probability": 1.0 + }, + { + "word": " as", + "start": 1502.46, + "end": 1502.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 1502.58, + "end": 1502.7, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1502.7, + "end": 1502.86, + "probability": 0.98388671875 + }, + { + "word": "-Fi", + "start": 1502.86, + "end": 1503.02, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1503.02, + "end": 1503.22, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1503.22, + "end": 1503.4, + "probability": 1.0 + }, + { + "word": " concerned.", + "start": 1503.4, + "end": 1503.56, + "probability": 1.0 + } + ] + }, + { + "id": 519, + "text": "And it's happened with several of the computers that I've had, but what happens is that, you know,", + "start": 1503.74, + "end": 1510.8, + "words": [ + { + "word": " And", + "start": 1503.74, + "end": 1504.06, + "probability": 0.96337890625 + }, + { + "word": " it's", + "start": 1504.06, + "end": 1504.46, + "probability": 0.99609375 + }, + { + "word": " happened", + "start": 1504.46, + "end": 1504.7, + "probability": 1.0 + }, + { + "word": " with", + "start": 1504.7, + "end": 1505.02, + "probability": 1.0 + }, + { + "word": " several", + "start": 1505.02, + "end": 1506.08, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1506.08, + "end": 1506.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1506.46, + "end": 1506.66, + "probability": 1.0 + }, + { + "word": " computers", + "start": 1506.66, + "end": 1507.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 1507.34, + "end": 1507.68, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1507.68, + "end": 1507.86, + "probability": 1.0 + }, + { + "word": " had,", + "start": 1507.86, + "end": 1508.08, + "probability": 1.0 + }, + { + "word": " but", + "start": 1508.16, + "end": 1508.32, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 1508.32, + "end": 1509.44, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 1509.44, + "end": 1509.82, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1509.82, + "end": 1510.08, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1510.08, + "end": 1510.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1510.36, + "end": 1510.64, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1510.64, + "end": 1510.8, + "probability": 1.0 + } + ] + }, + { + "id": 520, + "text": "I turn it off every evening.", + "start": 1510.88, + "end": 1513.54, + "words": [ + { + "word": " I", + "start": 1510.88, + "end": 1511.1, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1511.1, + "end": 1511.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 1511.58, + "end": 1512.24, + "probability": 1.0 + }, + { + "word": " off", + "start": 1512.24, + "end": 1512.44, + "probability": 1.0 + }, + { + "word": " every", + "start": 1512.44, + "end": 1512.82, + "probability": 1.0 + }, + { + "word": " evening.", + "start": 1512.82, + "end": 1513.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 521, + "text": "I didn't used to do that.", + "start": 1513.9, + "end": 1515.28, + "words": [ + { + "word": " I", + "start": 1513.9, + "end": 1514.16, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 1514.16, + "end": 1514.62, + "probability": 1.0 + }, + { + "word": " used", + "start": 1514.62, + "end": 1514.72, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 1514.72, + "end": 1514.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 1514.9, + "end": 1515.1, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1515.1, + "end": 1515.28, + "probability": 1.0 + } + ] + }, + { + "id": 522, + "text": "I would leave it on.", + "start": 1515.34, + "end": 1516.0, + "words": [ + { + "word": " I", + "start": 1515.34, + "end": 1515.44, + "probability": 0.9970703125 + }, + { + "word": " would", + "start": 1515.44, + "end": 1515.54, + "probability": 0.99853515625 + }, + { + "word": " leave", + "start": 1515.54, + "end": 1515.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1515.7, + "end": 1515.82, + "probability": 1.0 + }, + { + "word": " on.", + "start": 1515.82, + "end": 1516.0, + "probability": 1.0 + } + ] + }, + { + "id": 523, + "text": "But I just started turning off the computer.", + "start": 1516.28, + "end": 1519.36, + "words": [ + { + "word": " But", + "start": 1516.28, + "end": 1516.68, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1516.68, + "end": 1516.9, + "probability": 1.0 + }, + { + "word": " just", + "start": 1516.9, + "end": 1517.26, + "probability": 1.0 + }, + { + "word": " started", + "start": 1517.26, + "end": 1517.52, + "probability": 1.0 + }, + { + "word": " turning", + "start": 1517.52, + "end": 1518.0, + "probability": 1.0 + }, + { + "word": " off", + "start": 1518.0, + "end": 1518.82, + "probability": 0.97802734375 + }, + { + "word": " the", + "start": 1518.82, + "end": 1519.02, + "probability": 0.998046875 + }, + { + "word": " computer.", + "start": 1519.02, + "end": 1519.36, + "probability": 0.84765625 + } + ] + }, + { + "id": 524, + "text": "And so sometimes when we turn it back on, what happens is that it'll say that it's not connected into the website.", + "start": 1519.38, + "end": 1529.56, + "words": [ + { + "word": " And", + "start": 1519.38, + "end": 1519.92, + "probability": 0.7763671875 + }, + { + "word": " so", + "start": 1519.92, + "end": 1520.16, + "probability": 0.99853515625 + }, + { + "word": " sometimes", + "start": 1520.16, + "end": 1520.56, + "probability": 0.95458984375 + }, + { + "word": " when", + "start": 1520.56, + "end": 1520.84, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 1520.84, + "end": 1521.04, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1521.04, + "end": 1521.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 1521.24, + "end": 1521.42, + "probability": 1.0 + }, + { + "word": " back", + "start": 1521.42, + "end": 1521.64, + "probability": 1.0 + }, + { + "word": " on,", + "start": 1521.64, + "end": 1522.1, + "probability": 1.0 + }, + { + "word": " what", + "start": 1522.28, + "end": 1522.96, + "probability": 0.9990234375 + }, + { + "word": " happens", + "start": 1522.96, + "end": 1523.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 1523.36, + "end": 1523.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 1523.62, + "end": 1523.84, + "probability": 0.99951171875 + }, + { + "word": " it'll", + "start": 1523.84, + "end": 1526.14, + "probability": 0.72314453125 + }, + { + "word": " say", + "start": 1526.14, + "end": 1526.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 1526.4, + "end": 1526.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1526.62, + "end": 1526.82, + "probability": 1.0 + }, + { + "word": " not", + "start": 1526.82, + "end": 1526.98, + "probability": 1.0 + }, + { + "word": " connected", + "start": 1526.98, + "end": 1527.48, + "probability": 1.0 + }, + { + "word": " into", + "start": 1527.48, + "end": 1527.82, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1527.82, + "end": 1528.52, + "probability": 0.99951171875 + }, + { + "word": " website.", + "start": 1528.52, + "end": 1529.56, + "probability": 0.97021484375 + } + ] + }, + { + "id": 525, + "text": "There's no Internet connection.", + "start": 1529.68, + "end": 1531.04, + "words": [ + { + "word": " There's", + "start": 1529.68, + "end": 1529.98, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 1529.98, + "end": 1530.08, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1530.08, + "end": 1530.58, + "probability": 0.67578125 + }, + { + "word": " connection.", + "start": 1530.58, + "end": 1531.04, + "probability": 0.99658203125 + } + ] + }, + { + "id": 526, + "text": "So then I have to go over there and shut the modem off and turn everything off, basically, for, you know, a couple of minutes.", + "start": 1531.36, + "end": 1540.54, + "words": [ + { + "word": " So", + "start": 1531.36, + "end": 1531.84, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1531.84, + "end": 1532.04, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1532.04, + "end": 1532.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 1532.16, + "end": 1532.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1532.32, + "end": 1532.5, + "probability": 1.0 + }, + { + "word": " go", + "start": 1532.5, + "end": 1532.62, + "probability": 1.0 + }, + { + "word": " over", + "start": 1532.62, + "end": 1532.9, + "probability": 1.0 + }, + { + "word": " there", + "start": 1532.9, + "end": 1533.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 1533.14, + "end": 1533.56, + "probability": 1.0 + }, + { + "word": " shut", + "start": 1533.56, + "end": 1533.88, + "probability": 0.96337890625 + }, + { + "word": " the", + "start": 1533.88, + "end": 1534.82, + "probability": 1.0 + }, + { + "word": " modem", + "start": 1534.82, + "end": 1535.46, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 1535.46, + "end": 1536.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 1536.22, + "end": 1536.52, + "probability": 0.99755859375 + }, + { + "word": " turn", + "start": 1536.52, + "end": 1536.74, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1536.74, + "end": 1537.1, + "probability": 1.0 + }, + { + "word": " off,", + "start": 1537.1, + "end": 1537.46, + "probability": 1.0 + }, + { + "word": " basically,", + "start": 1537.52, + "end": 1537.94, + "probability": 0.99951171875 + }, + { + "word": " for,", + "start": 1538.08, + "end": 1538.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 1539.14, + "end": 1539.58, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1539.58, + "end": 1539.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 1539.76, + "end": 1539.88, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1539.88, + "end": 1540.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 1540.12, + "end": 1540.24, + "probability": 1.0 + }, + { + "word": " minutes.", + "start": 1540.24, + "end": 1540.54, + "probability": 1.0 + } + ] + }, + { + "id": 527, + "text": "Click it back on, and then there it is.", + "start": 1540.66, + "end": 1543.7, + "words": [ + { + "word": " Click", + "start": 1540.66, + "end": 1541.14, + "probability": 0.98876953125 + }, + { + "word": " it", + "start": 1541.14, + "end": 1541.4, + "probability": 1.0 + }, + { + "word": " back", + "start": 1541.4, + "end": 1541.6, + "probability": 1.0 + }, + { + "word": " on,", + "start": 1541.6, + "end": 1541.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 1542.08, + "end": 1542.34, + "probability": 1.0 + }, + { + "word": " then", + "start": 1542.34, + "end": 1542.52, + "probability": 0.4111328125 + }, + { + "word": " there", + "start": 1542.52, + "end": 1543.26, + "probability": 0.9853515625 + }, + { + "word": " it", + "start": 1543.26, + "end": 1543.5, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1543.5, + "end": 1543.7, + "probability": 1.0 + } + ] + }, + { + "id": 528, + "text": "And you're saying that while yours is unable to connect, other computers are?", + "start": 1543.84, + "end": 1547.0, + "words": [ + { + "word": " And", + "start": 1543.84, + "end": 1544.2, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1544.2, + "end": 1544.32, + "probability": 1.0 + }, + { + "word": " saying", + "start": 1544.32, + "end": 1544.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1544.54, + "end": 1544.76, + "probability": 1.0 + }, + { + "word": " while", + "start": 1544.76, + "end": 1545.0, + "probability": 1.0 + }, + { + "word": " yours", + "start": 1545.0, + "end": 1545.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 1545.34, + "end": 1545.52, + "probability": 1.0 + }, + { + "word": " unable", + "start": 1545.52, + "end": 1545.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1545.74, + "end": 1545.92, + "probability": 1.0 + }, + { + "word": " connect,", + "start": 1545.92, + "end": 1546.14, + "probability": 1.0 + }, + { + "word": " other", + "start": 1546.24, + "end": 1546.38, + "probability": 1.0 + }, + { + "word": " computers", + "start": 1546.38, + "end": 1546.76, + "probability": 1.0 + }, + { + "word": " are?", + "start": 1546.76, + "end": 1547.0, + "probability": 1.0 + } + ] + }, + { + "id": 529, + "text": "Are, yes.", + "start": 1547.3, + "end": 1548.18, + "words": [ + { + "word": " Are,", + "start": 1547.3, + "end": 1547.78, + "probability": 0.95068359375 + }, + { + "word": " yes.", + "start": 1547.88, + "end": 1548.18, + "probability": 1.0 + } + ] + }, + { + "id": 530, + "text": "Okay.", + "start": 1548.22, + "end": 1548.68, + "words": [ + { + "word": " Okay.", + "start": 1548.22, + "end": 1548.68, + "probability": 0.73681640625 + } + ] + }, + { + "id": 531, + "text": "And what kind of antivirus do you have on your computer right now?", + "start": 1549.38, + "end": 1551.5, + "words": [ + { + "word": " And", + "start": 1549.38, + "end": 1549.52, + "probability": 0.8212890625 + }, + { + "word": " what", + "start": 1549.52, + "end": 1549.74, + "probability": 0.99169921875 + }, + { + "word": " kind", + "start": 1549.74, + "end": 1549.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 1549.94, + "end": 1550.04, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1550.04, + "end": 1550.38, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 1550.38, + "end": 1550.52, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1550.52, + "end": 1550.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 1550.58, + "end": 1550.7, + "probability": 1.0 + }, + { + "word": " on", + "start": 1550.7, + "end": 1550.82, + "probability": 0.9912109375 + }, + { + "word": " your", + "start": 1550.82, + "end": 1550.88, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1550.88, + "end": 1551.12, + "probability": 1.0 + }, + { + "word": " right", + "start": 1551.12, + "end": 1551.3, + "probability": 0.99951171875 + }, + { + "word": " now?", + "start": 1551.3, + "end": 1551.5, + "probability": 1.0 + } + ] + }, + { + "id": 532, + "text": "Norton.", + "start": 1552.72, + "end": 1553.16, + "words": [ + { + "word": " Norton.", + "start": 1552.72, + "end": 1553.16, + "probability": 0.9111328125 + } + ] + }, + { + "id": 533, + "text": "Yeah.", + "start": 1553.52, + "end": 1553.96, + "words": [ + { + "word": " Yeah.", + "start": 1553.52, + "end": 1553.96, + "probability": 0.92724609375 + } + ] + }, + { + "id": 534, + "text": "That's, yeah, baby.", + "start": 1556.08, + "end": 1557.22, + "words": [ + { + "word": " That's,", + "start": 1556.08, + "end": 1556.52, + "probability": 0.74853515625 + }, + { + "word": " yeah,", + "start": 1556.52, + "end": 1556.96, + "probability": 0.9736328125 + }, + { + "word": " baby.", + "start": 1556.96, + "end": 1557.22, + "probability": 0.98388671875 + } + ] + }, + { + "id": 535, + "text": "Well, see, that was happening before anyway.", + "start": 1557.22, + "end": 1558.78, + "words": [ + { + "word": " Well,", + "start": 1557.22, + "end": 1557.24, + "probability": 0.6005859375 + }, + { + "word": " see,", + "start": 1557.24, + "end": 1557.24, + "probability": 0.8037109375 + }, + { + "word": " that", + "start": 1557.24, + "end": 1557.24, + "probability": 1.0 + }, + { + "word": " was", + "start": 1557.24, + "end": 1557.36, + "probability": 0.9990234375 + }, + { + "word": " happening", + "start": 1557.36, + "end": 1557.84, + "probability": 1.0 + }, + { + "word": " before", + "start": 1557.84, + "end": 1558.36, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 1558.36, + "end": 1558.78, + "probability": 0.7939453125 + } + ] + }, + { + "id": 536, + "text": "Yeah, well, still, that's not helping your problem at all.", + "start": 1559.5, + "end": 1562.4, + "words": [ + { + "word": " Yeah,", + "start": 1559.5, + "end": 1559.94, + "probability": 0.9892578125 + }, + { + "word": " well,", + "start": 1559.94, + "end": 1560.16, + "probability": 1.0 + }, + { + "word": " still,", + "start": 1560.3, + "end": 1560.6, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1560.7, + "end": 1560.98, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1560.98, + "end": 1561.22, + "probability": 1.0 + }, + { + "word": " helping", + "start": 1561.22, + "end": 1561.6, + "probability": 1.0 + }, + { + "word": " your", + "start": 1561.6, + "end": 1561.76, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1561.76, + "end": 1561.96, + "probability": 0.99755859375 + }, + { + "word": " at", + "start": 1561.96, + "end": 1562.14, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1562.14, + "end": 1562.4, + "probability": 1.0 + } + ] + }, + { + "id": 537, + "text": "Okay.", + "start": 1562.6, + "end": 1562.92, + "words": [ + { + "word": " Okay.", + "start": 1562.6, + "end": 1562.92, + "probability": 0.9609375 + } + ] + }, + { + "id": 538, + "text": "So I would say first thing I would do is, especially if it's the Norton Internet Security, is that's got to go.", + "start": 1563.38, + "end": 1571.38, + "words": [ + { + "word": " So", + "start": 1563.38, + "end": 1563.82, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 1563.82, + "end": 1563.98, + "probability": 0.7548828125 + }, + { + "word": " would", + "start": 1563.98, + "end": 1564.12, + "probability": 1.0 + }, + { + "word": " say", + "start": 1564.12, + "end": 1564.34, + "probability": 1.0 + }, + { + "word": " first", + "start": 1564.34, + "end": 1565.28, + "probability": 0.6123046875 + }, + { + "word": " thing", + "start": 1565.28, + "end": 1566.12, + "probability": 1.0 + }, + { + "word": " I", + "start": 1566.12, + "end": 1566.44, + "probability": 1.0 + }, + { + "word": " would", + "start": 1566.44, + "end": 1566.66, + "probability": 1.0 + }, + { + "word": " do", + "start": 1566.66, + "end": 1566.9, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1566.9, + "end": 1567.26, + "probability": 0.76318359375 + }, + { + "word": " especially", + "start": 1567.34, + "end": 1567.7, + "probability": 1.0 + }, + { + "word": " if", + "start": 1567.7, + "end": 1567.9, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1567.9, + "end": 1568.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 1568.08, + "end": 1568.18, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1568.18, + "end": 1568.4, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1568.4, + "end": 1568.8, + "probability": 0.70849609375 + }, + { + "word": " Security,", + "start": 1568.8, + "end": 1569.32, + "probability": 0.76513671875 + }, + { + "word": " is", + "start": 1569.72, + "end": 1570.72, + "probability": 0.85009765625 + }, + { + "word": " that's", + "start": 1570.72, + "end": 1570.96, + "probability": 1.0 + }, + { + "word": " got", + "start": 1570.96, + "end": 1571.1, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1571.1, + "end": 1571.2, + "probability": 1.0 + }, + { + "word": " go.", + "start": 1571.2, + "end": 1571.38, + "probability": 1.0 + } + ] + }, + { + "id": 539, + "text": "Oh, okay.", + "start": 1572.24, + "end": 1572.96, + "words": [ + { + "word": " Oh,", + "start": 1572.24, + "end": 1572.68, + "probability": 0.9609375 + }, + { + "word": " okay.", + "start": 1572.72, + "end": 1572.96, + "probability": 1.0 + } + ] + }, + { + "id": 540, + "text": "All right.", + "start": 1573.1, + "end": 1573.32, + "words": [ + { + "word": " All", + "start": 1573.1, + "end": 1573.26, + "probability": 0.77197265625 + }, + { + "word": " right.", + "start": 1573.26, + "end": 1573.32, + "probability": 1.0 + } + ] + }, + { + "id": 541, + "text": "We like antivirus.", + "start": 1573.36, + "end": 1574.1, + "words": [ + { + "word": " We", + "start": 1573.36, + "end": 1573.46, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 1573.46, + "end": 1573.66, + "probability": 0.9990234375 + }, + { + "word": " antivirus.", + "start": 1573.66, + "end": 1574.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 542, + "text": "It's just antivirus.", + "start": 1574.1, + "end": 1574.9, + "words": [ + { + "word": " It's", + "start": 1574.1, + "end": 1574.3, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1574.3, + "end": 1574.4, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 1574.4, + "end": 1574.9, + "probability": 1.0 + } + ] + }, + { + "id": 543, + "text": "We don't like antivirus that does anything else.", + "start": 1575.02, + "end": 1577.14, + "words": [ + { + "word": " We", + "start": 1575.02, + "end": 1575.44, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 1575.44, + "end": 1575.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 1575.54, + "end": 1575.68, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1575.68, + "end": 1576.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1576.12, + "end": 1576.28, + "probability": 0.98876953125 + }, + { + "word": " does", + "start": 1576.28, + "end": 1576.5, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1576.5, + "end": 1576.76, + "probability": 1.0 + }, + { + "word": " else.", + "start": 1576.76, + "end": 1577.14, + "probability": 1.0 + } + ] + }, + { + "id": 544, + "text": "Okay.", + "start": 1577.16, + "end": 1577.38, + "words": [ + { + "word": " Okay.", + "start": 1577.16, + "end": 1577.38, + "probability": 0.0007910728454589844 + } + ] + }, + { + "id": 545, + "text": "As far as we don't like it being a firewall.", + "start": 1577.38, + "end": 1579.32, + "words": [ + { + "word": " As", + "start": 1577.38, + "end": 1577.38, + "probability": 0.39208984375 + }, + { + "word": " far", + "start": 1577.38, + "end": 1577.46, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1577.46, + "end": 1577.68, + "probability": 1.0 + }, + { + "word": " we", + "start": 1577.68, + "end": 1578.28, + "probability": 0.52001953125 + }, + { + "word": " don't", + "start": 1578.28, + "end": 1578.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 1578.44, + "end": 1578.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 1578.58, + "end": 1578.72, + "probability": 1.0 + }, + { + "word": " being", + "start": 1578.72, + "end": 1578.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1578.84, + "end": 1579.04, + "probability": 0.998046875 + }, + { + "word": " firewall.", + "start": 1579.04, + "end": 1579.32, + "probability": 0.94921875 + } + ] + }, + { + "id": 546, + "text": "Not a big fan of it, you know, basically trying to dominate your online presence.", + "start": 1579.38, + "end": 1585.44, + "words": [ + { + "word": " Not", + "start": 1579.38, + "end": 1579.78, + "probability": 0.0090179443359375 + }, + { + "word": " a", + "start": 1579.78, + "end": 1580.34, + "probability": 0.99951171875 + }, + { + "word": " big", + "start": 1580.34, + "end": 1580.52, + "probability": 0.9990234375 + }, + { + "word": " fan", + "start": 1580.52, + "end": 1580.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 1580.74, + "end": 1580.9, + "probability": 0.99853515625 + }, + { + "word": " it,", + "start": 1580.9, + "end": 1581.02, + "probability": 0.93115234375 + }, + { + "word": " you", + "start": 1581.06, + "end": 1581.26, + "probability": 0.414306640625 + }, + { + "word": " know,", + "start": 1581.26, + "end": 1581.48, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1581.48, + "end": 1582.06, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1582.06, + "end": 1582.62, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1582.62, + "end": 1582.92, + "probability": 1.0 + }, + { + "word": " dominate", + "start": 1582.92, + "end": 1584.14, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 1584.14, + "end": 1584.56, + "probability": 1.0 + }, + { + "word": " online", + "start": 1584.56, + "end": 1584.96, + "probability": 1.0 + }, + { + "word": " presence.", + "start": 1584.96, + "end": 1585.44, + "probability": 1.0 + } + ] + }, + { + "id": 547, + "text": "Just be antivirus and be good antivirus.", + "start": 1585.66, + "end": 1588.04, + "words": [ + { + "word": " Just", + "start": 1585.66, + "end": 1586.14, + "probability": 0.99755859375 + }, + { + "word": " be", + "start": 1586.14, + "end": 1586.38, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1586.38, + "end": 1587.02, + "probability": 0.99169921875 + }, + { + "word": " and", + "start": 1587.02, + "end": 1587.14, + "probability": 0.99365234375 + }, + { + "word": " be", + "start": 1587.14, + "end": 1587.24, + "probability": 1.0 + }, + { + "word": " good", + "start": 1587.24, + "end": 1587.5, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 1587.5, + "end": 1588.04, + "probability": 0.99267578125 + } + ] + }, + { + "id": 548, + "text": "That's really the criteria.", + "start": 1588.12, + "end": 1589.48, + "words": [ + { + "word": " That's", + "start": 1588.12, + "end": 1588.34, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 1588.34, + "end": 1588.7, + "probability": 0.92724609375 + }, + { + "word": " the", + "start": 1588.7, + "end": 1589.1, + "probability": 1.0 + }, + { + "word": " criteria.", + "start": 1589.1, + "end": 1589.48, + "probability": 1.0 + } + ] + }, + { + "id": 549, + "text": "Uh-huh.", + "start": 1590.24, + "end": 1590.72, + "words": [ + { + "word": " Uh", + "start": 1590.24, + "end": 1590.6, + "probability": 0.712890625 + }, + { + "word": "-huh.", + "start": 1590.6, + "end": 1590.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 550, + "text": "Is McAfee a good one?", + "start": 1591.76, + "end": 1593.34, + "words": [ + { + "word": " Is", + "start": 1591.76, + "end": 1592.28, + "probability": 0.9931640625 + }, + { + "word": " McAfee", + "start": 1592.28, + "end": 1592.8, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1592.8, + "end": 1592.9, + "probability": 1.0 + }, + { + "word": " good", + "start": 1592.9, + "end": 1593.08, + "probability": 0.9794921875 + }, + { + "word": " one?", + "start": 1593.08, + "end": 1593.34, + "probability": 1.0 + } + ] + }, + { + "id": 551, + "text": "Nope.", + "start": 1593.44, + "end": 1593.68, + "words": [ + { + "word": " Nope.", + "start": 1593.44, + "end": 1593.68, + "probability": 0.92919921875 + } + ] + }, + { + "id": 552, + "text": "No, it's not.", + "start": 1593.88, + "end": 1594.82, + "words": [ + { + "word": " No,", + "start": 1593.88, + "end": 1594.4, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1594.5, + "end": 1594.7, + "probability": 1.0 + }, + { + "word": " not.", + "start": 1594.7, + "end": 1594.82, + "probability": 1.0 + } + ] + }, + { + "id": 553, + "text": "McAfee and Norton both are, basically, kill it with fire.", + "start": 1595.06, + "end": 1601.34, + "words": [ + { + "word": " McAfee", + "start": 1595.06, + "end": 1595.56, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 1595.56, + "end": 1595.76, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1595.76, + "end": 1596.12, + "probability": 0.99951171875 + }, + { + "word": " both", + "start": 1596.12, + "end": 1596.36, + "probability": 0.990234375 + }, + { + "word": " are,", + "start": 1596.36, + "end": 1597.04, + "probability": 0.97900390625 + }, + { + "word": " basically,", + "start": 1597.16, + "end": 1599.5, + "probability": 0.9814453125 + }, + { + "word": " kill", + "start": 1600.56, + "end": 1600.88, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1600.88, + "end": 1601.02, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1601.02, + "end": 1601.06, + "probability": 1.0 + }, + { + "word": " fire.", + "start": 1601.06, + "end": 1601.34, + "probability": 1.0 + } + ] + }, + { + "id": 554, + "text": "Right?", + "start": 1601.48, + "end": 1602.0, + "words": [ + { + "word": " Right?", + "start": 1601.48, + "end": 1602.0, + "probability": 0.8037109375 + } + ] + }, + { + "id": 555, + "text": "Okay.", + "start": 1602.12, + "end": 1602.38, + "words": [ + { + "word": " Okay.", + "start": 1602.12, + "end": 1602.38, + "probability": 0.5048828125 + } + ] + }, + { + "id": 556, + "text": "We just, we don't like either of those.", + "start": 1602.38, + "end": 1605.56, + "words": [ + { + "word": " We", + "start": 1602.38, + "end": 1602.7, + "probability": 0.9990234375 + }, + { + "word": " just,", + "start": 1602.7, + "end": 1602.88, + "probability": 0.403564453125 + }, + { + "word": " we", + "start": 1602.98, + "end": 1603.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1603.44, + "end": 1603.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 1603.78, + "end": 1604.08, + "probability": 0.99951171875 + }, + { + "word": " either", + "start": 1604.08, + "end": 1604.96, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1604.96, + "end": 1605.28, + "probability": 0.99951171875 + }, + { + "word": " those.", + "start": 1605.28, + "end": 1605.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 557, + "text": "Okay.", + "start": 1605.98, + "end": 1606.5, + "words": [ + { + "word": " Okay.", + "start": 1605.98, + "end": 1606.5, + "probability": 0.9912109375 + } + ] + }, + { + "id": 558, + "text": "McAfee's problem is that they have just miserable detection.", + "start": 1606.66, + "end": 1609.36, + "words": [ + { + "word": " McAfee's", + "start": 1606.66, + "end": 1607.18, + "probability": 0.99365234375 + }, + { + "word": " problem", + "start": 1607.18, + "end": 1607.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 1607.42, + "end": 1607.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 1607.66, + "end": 1607.86, + "probability": 0.8955078125 + }, + { + "word": " they", + "start": 1607.86, + "end": 1608.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 1608.02, + "end": 1608.12, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1608.12, + "end": 1608.3, + "probability": 0.9990234375 + }, + { + "word": " miserable", + "start": 1608.3, + "end": 1608.94, + "probability": 0.99853515625 + }, + { + "word": " detection.", + "start": 1608.94, + "end": 1609.36, + "probability": 0.3173828125 + } + ] + }, + { + "id": 559, + "text": "", + "start": 1609.36, + "end": 1609.36, + "words": [] + }, + { + "id": 560, + "text": "", + "start": 1609.36, + "end": 1609.36, + "words": [] + }, + { + "id": 561, + "text": "", + "start": 1609.36, + "end": 1609.36, + "words": [] + }, + { + "id": 562, + "text": "Okay.", + "start": 1609.38, + "end": 1609.7, + "words": [ + { + "word": " Okay.", + "start": 1609.38, + "end": 1609.7, + "probability": 0.29541015625 + } + ] + }, + { + "id": 563, + "text": "", + "start": 1610.36, + "end": 1610.36, + "words": [] + }, + { + "id": 564, + "text": "They are a decent antivirus when they are being just antivirus, but they're slow as far as being able to catch infections while they're still relevant.", + "start": 1610.5, + "end": 1622.54, + "words": [ + { + "word": " They", + "start": 1610.5, + "end": 1610.6, + "probability": 0.65673828125 + }, + { + "word": " are", + "start": 1610.6, + "end": 1611.36, + "probability": 0.96435546875 + }, + { + "word": " a", + "start": 1611.36, + "end": 1612.66, + "probability": 0.99951171875 + }, + { + "word": " decent", + "start": 1612.66, + "end": 1613.12, + "probability": 0.99951171875 + }, + { + "word": " antivirus", + "start": 1613.12, + "end": 1613.98, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 1613.98, + "end": 1614.24, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 1614.24, + "end": 1614.42, + "probability": 1.0 + }, + { + "word": " are", + "start": 1614.42, + "end": 1614.64, + "probability": 1.0 + }, + { + "word": " being", + "start": 1614.64, + "end": 1614.94, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1614.94, + "end": 1615.26, + "probability": 0.9990234375 + }, + { + "word": " antivirus,", + "start": 1615.26, + "end": 1615.68, + "probability": 0.99462890625 + }, + { + "word": " but", + "start": 1615.74, + "end": 1615.9, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1615.9, + "end": 1616.08, + "probability": 0.99951171875 + }, + { + "word": " slow", + "start": 1616.08, + "end": 1616.44, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1616.44, + "end": 1617.72, + "probability": 0.890625 + }, + { + "word": " far", + "start": 1617.72, + "end": 1618.18, + "probability": 1.0 + }, + { + "word": " as", + "start": 1618.18, + "end": 1618.42, + "probability": 1.0 + }, + { + "word": " being", + "start": 1618.42, + "end": 1618.7, + "probability": 1.0 + }, + { + "word": " able", + "start": 1618.7, + "end": 1618.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 1618.98, + "end": 1619.3, + "probability": 1.0 + }, + { + "word": " catch", + "start": 1619.3, + "end": 1620.18, + "probability": 0.99951171875 + }, + { + "word": " infections", + "start": 1620.18, + "end": 1620.56, + "probability": 0.99951171875 + }, + { + "word": " while", + "start": 1620.56, + "end": 1621.3, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 1621.3, + "end": 1621.74, + "probability": 1.0 + }, + { + "word": " still", + "start": 1621.74, + "end": 1622.02, + "probability": 1.0 + }, + { + "word": " relevant.", + "start": 1622.02, + "end": 1622.54, + "probability": 1.0 + } + ] + }, + { + "id": 565, + "text": "Right.", + "start": 1623.0, + "end": 1623.42, + "words": [ + { + "word": " Right.", + "start": 1623.0, + "end": 1623.42, + "probability": 0.931640625 + } + ] + }, + { + "id": 566, + "text": "Now-", + "start": 1623.64, + "end": 1624.28, + "words": [ + { + "word": " Now", + "start": 1623.64, + "end": 1624.02, + "probability": 0.533203125 + }, + { + "word": "-", + "start": 1624.02, + "end": 1624.28, + "probability": 0.1522216796875 + } + ] + }, + { + "id": 567, + "text": "Well, that's what I didn't understand because if I had these, you know, why were they not working, you know?", + "start": 1624.28, + "end": 1628.92, + "words": [ + { + "word": " Well,", + "start": 1624.28, + "end": 1624.46, + "probability": 0.99365234375 + }, + { + "word": " that's", + "start": 1624.48, + "end": 1624.78, + "probability": 1.0 + }, + { + "word": " what", + "start": 1624.78, + "end": 1624.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 1624.82, + "end": 1625.0, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 1625.0, + "end": 1625.22, + "probability": 1.0 + }, + { + "word": " understand", + "start": 1625.22, + "end": 1625.62, + "probability": 1.0 + }, + { + "word": " because", + "start": 1625.62, + "end": 1626.02, + "probability": 0.576171875 + }, + { + "word": " if", + "start": 1626.02, + "end": 1626.3, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1626.3, + "end": 1626.44, + "probability": 1.0 + }, + { + "word": " had", + "start": 1626.44, + "end": 1626.68, + "probability": 1.0 + }, + { + "word": " these,", + "start": 1626.68, + "end": 1626.92, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1627.06, + "end": 1627.16, + "probability": 0.7119140625 + }, + { + "word": " know,", + "start": 1627.16, + "end": 1627.28, + "probability": 1.0 + }, + { + "word": " why", + "start": 1627.32, + "end": 1627.52, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 1627.52, + "end": 1627.8, + "probability": 0.88818359375 + }, + { + "word": " they", + "start": 1627.8, + "end": 1627.98, + "probability": 1.0 + }, + { + "word": " not", + "start": 1627.98, + "end": 1628.18, + "probability": 1.0 + }, + { + "word": " working,", + "start": 1628.18, + "end": 1628.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 1628.7, + "end": 1628.82, + "probability": 1.0 + }, + { + "word": " know?", + "start": 1628.82, + "end": 1628.92, + "probability": 1.0 + } + ] + }, + { + "id": 568, + "text": "So that you answered my question there.", + "start": 1629.02, + "end": 1630.72, + "words": [ + { + "word": " So", + "start": 1629.02, + "end": 1629.22, + "probability": 0.99365234375 + }, + { + "word": " that", + "start": 1629.22, + "end": 1629.4, + "probability": 0.3173828125 + }, + { + "word": " you", + "start": 1629.4, + "end": 1629.62, + "probability": 0.9599609375 + }, + { + "word": " answered", + "start": 1629.62, + "end": 1629.86, + "probability": 0.99755859375 + }, + { + "word": " my", + "start": 1629.86, + "end": 1630.08, + "probability": 1.0 + }, + { + "word": " question", + "start": 1630.08, + "end": 1630.4, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1630.4, + "end": 1630.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 569, + "text": "Now, Norton is very good at basically first-line defense.", + "start": 1630.9, + "end": 1635.76, + "words": [ + { + "word": " Now,", + "start": 1630.9, + "end": 1631.3, + "probability": 0.998046875 + }, + { + "word": " Norton", + "start": 1631.34, + "end": 1631.7, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1631.7, + "end": 1632.22, + "probability": 1.0 + }, + { + "word": " very", + "start": 1632.22, + "end": 1632.66, + "probability": 1.0 + }, + { + "word": " good", + "start": 1632.66, + "end": 1633.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 1633.02, + "end": 1633.32, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1633.32, + "end": 1634.18, + "probability": 0.99267578125 + }, + { + "word": " first", + "start": 1634.18, + "end": 1635.24, + "probability": 1.0 + }, + { + "word": "-line", + "start": 1635.24, + "end": 1635.48, + "probability": 0.88427734375 + }, + { + "word": " defense.", + "start": 1635.48, + "end": 1635.76, + "probability": 1.0 + } + ] + }, + { + "id": 570, + "text": "Right?", + "start": 1636.04, + "end": 1636.54, + "words": [ + { + "word": " Right?", + "start": 1636.04, + "end": 1636.54, + "probability": 0.350830078125 + } + ] + }, + { + "id": 571, + "text": "They catch those infections quick.", + "start": 1636.62, + "end": 1638.9, + "words": [ + { + "word": " They", + "start": 1636.62, + "end": 1636.82, + "probability": 0.97998046875 + }, + { + "word": " catch", + "start": 1636.82, + "end": 1637.5, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 1637.5, + "end": 1637.78, + "probability": 1.0 + }, + { + "word": " infections", + "start": 1637.78, + "end": 1638.16, + "probability": 1.0 + }, + { + "word": " quick.", + "start": 1638.16, + "end": 1638.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 572, + "text": "So as soon as something's out in the wild within 48 to 72 hours, they generally have something out there for it that's been pushed out to all of their clients.", + "start": 1639.4, + "end": 1648.2, + "words": [ + { + "word": " So", + "start": 1639.4, + "end": 1639.88, + "probability": 0.8994140625 + }, + { + "word": " as", + "start": 1639.88, + "end": 1640.22, + "probability": 0.86328125 + }, + { + "word": " soon", + "start": 1640.22, + "end": 1640.46, + "probability": 1.0 + }, + { + "word": " as", + "start": 1640.46, + "end": 1640.6, + "probability": 1.0 + }, + { + "word": " something's", + "start": 1640.6, + "end": 1640.9, + "probability": 0.9716796875 + }, + { + "word": " out", + "start": 1640.9, + "end": 1641.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 1641.04, + "end": 1641.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1641.18, + "end": 1641.22, + "probability": 1.0 + }, + { + "word": " wild", + "start": 1641.22, + "end": 1641.54, + "probability": 0.99951171875 + }, + { + "word": " within", + "start": 1641.54, + "end": 1641.88, + "probability": 0.92529296875 + }, + { + "word": " 48", + "start": 1641.88, + "end": 1642.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1642.86, + "end": 1643.08, + "probability": 0.99951171875 + }, + { + "word": " 72", + "start": 1643.08, + "end": 1643.32, + "probability": 1.0 + }, + { + "word": " hours,", + "start": 1643.32, + "end": 1643.8, + "probability": 1.0 + }, + { + "word": " they", + "start": 1643.92, + "end": 1644.14, + "probability": 1.0 + }, + { + "word": " generally", + "start": 1644.14, + "end": 1644.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 1644.56, + "end": 1645.0, + "probability": 1.0 + }, + { + "word": " something", + "start": 1645.0, + "end": 1645.3, + "probability": 1.0 + }, + { + "word": " out", + "start": 1645.3, + "end": 1645.62, + "probability": 1.0 + }, + { + "word": " there", + "start": 1645.62, + "end": 1645.82, + "probability": 1.0 + }, + { + "word": " for", + "start": 1645.82, + "end": 1646.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 1646.18, + "end": 1646.38, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1646.38, + "end": 1646.72, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 1646.72, + "end": 1646.84, + "probability": 1.0 + }, + { + "word": " pushed", + "start": 1646.84, + "end": 1647.08, + "probability": 1.0 + }, + { + "word": " out", + "start": 1647.08, + "end": 1647.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1647.26, + "end": 1647.46, + "probability": 1.0 + }, + { + "word": " all", + "start": 1647.46, + "end": 1647.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 1647.54, + "end": 1647.68, + "probability": 1.0 + }, + { + "word": " their", + "start": 1647.68, + "end": 1647.8, + "probability": 1.0 + }, + { + "word": " clients.", + "start": 1647.8, + "end": 1648.2, + "probability": 1.0 + } + ] + }, + { + "id": 573, + "text": "Uh-huh.", + "start": 1648.4, + "end": 1648.98, + "words": [ + { + "word": " Uh", + "start": 1648.4, + "end": 1648.82, + "probability": 0.0034580230712890625 + }, + { + "word": "-huh.", + "start": 1648.82, + "end": 1648.98, + "probability": 0.99755859375 + } + ] + }, + { + "id": 574, + "text": "However, the Norton products tend to be overly ambitious, and they like to basically just rule the computer.", + "start": 1649.24, + "end": 1658.68, + "words": [ + { + "word": " However,", + "start": 1649.24, + "end": 1649.72, + "probability": 0.958984375 + }, + { + "word": " the", + "start": 1650.06, + "end": 1650.38, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1650.38, + "end": 1650.88, + "probability": 1.0 + }, + { + "word": " products", + "start": 1650.88, + "end": 1651.32, + "probability": 1.0 + }, + { + "word": " tend", + "start": 1651.32, + "end": 1651.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1651.88, + "end": 1652.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 1652.08, + "end": 1652.34, + "probability": 1.0 + }, + { + "word": " overly", + "start": 1652.34, + "end": 1653.42, + "probability": 1.0 + }, + { + "word": " ambitious,", + "start": 1653.42, + "end": 1654.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 1654.16, + "end": 1655.04, + "probability": 1.0 + }, + { + "word": " they", + "start": 1655.04, + "end": 1655.62, + "probability": 1.0 + }, + { + "word": " like", + "start": 1655.62, + "end": 1655.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1655.94, + "end": 1656.2, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1656.2, + "end": 1657.16, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 1657.16, + "end": 1657.9, + "probability": 1.0 + }, + { + "word": " rule", + "start": 1657.9, + "end": 1658.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1658.18, + "end": 1658.38, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1658.38, + "end": 1658.68, + "probability": 1.0 + } + ] + }, + { + "id": 575, + "text": "Okay.", + "start": 1659.14, + "end": 1659.62, + "words": [ + { + "word": " Okay.", + "start": 1659.14, + "end": 1659.62, + "probability": 0.82861328125 + } + ] + }, + { + "id": 576, + "text": "A lot of times, they are tweaking with settings that Windows is trying to tweak back.", + "start": 1659.62, + "end": 1663.68, + "words": [ + { + "word": " A", + "start": 1659.62, + "end": 1660.02, + "probability": 0.0848388671875 + }, + { + "word": " lot", + "start": 1660.02, + "end": 1660.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1660.22, + "end": 1660.34, + "probability": 1.0 + }, + { + "word": " times,", + "start": 1660.34, + "end": 1660.62, + "probability": 1.0 + }, + { + "word": " they", + "start": 1660.62, + "end": 1660.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 1660.82, + "end": 1661.08, + "probability": 1.0 + }, + { + "word": " tweaking", + "start": 1661.08, + "end": 1661.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 1661.58, + "end": 1661.76, + "probability": 0.96533203125 + }, + { + "word": " settings", + "start": 1661.76, + "end": 1662.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 1662.08, + "end": 1662.32, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1662.32, + "end": 1662.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 1662.6, + "end": 1662.82, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1662.82, + "end": 1663.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1663.02, + "end": 1663.18, + "probability": 1.0 + }, + { + "word": " tweak", + "start": 1663.18, + "end": 1663.4, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1663.4, + "end": 1663.68, + "probability": 1.0 + } + ] + }, + { + "id": 577, + "text": "So you end up with a lot of conflict.", + "start": 1664.8999999999999, + "end": 1666.92, + "words": [ + { + "word": " So", + "start": 1664.8999999999999, + "end": 1665.3799999999999, + "probability": 0.9912109375 + }, + { + "word": " you", + "start": 1665.3799999999999, + "end": 1665.86, + "probability": 0.99755859375 + }, + { + "word": " end", + "start": 1665.86, + "end": 1666.06, + "probability": 1.0 + }, + { + "word": " up", + "start": 1666.06, + "end": 1666.18, + "probability": 1.0 + }, + { + "word": " with", + "start": 1666.18, + "end": 1666.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1666.26, + "end": 1666.3, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1666.3, + "end": 1666.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 1666.4, + "end": 1666.46, + "probability": 1.0 + }, + { + "word": " conflict.", + "start": 1666.46, + "end": 1666.92, + "probability": 1.0 + } + ] + }, + { + "id": 578, + "text": "Right.", + "start": 1667.02, + "end": 1667.36, + "words": [ + { + "word": " Right.", + "start": 1667.02, + "end": 1667.36, + "probability": 0.52294921875 + } + ] + }, + { + "id": 579, + "text": "And many times, you'll end up with no internet.", + "start": 1667.36, + "end": 1669.24, + "words": [ + { + "word": " And", + "start": 1667.36, + "end": 1667.36, + "probability": 0.8955078125 + }, + { + "word": " many", + "start": 1667.36, + "end": 1667.58, + "probability": 0.98388671875 + }, + { + "word": " times,", + "start": 1667.58, + "end": 1668.04, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1668.04, + "end": 1668.28, + "probability": 1.0 + }, + { + "word": " end", + "start": 1668.28, + "end": 1668.4, + "probability": 1.0 + }, + { + "word": " up", + "start": 1668.4, + "end": 1668.52, + "probability": 1.0 + }, + { + "word": " with", + "start": 1668.52, + "end": 1668.66, + "probability": 1.0 + }, + { + "word": " no", + "start": 1668.66, + "end": 1668.9, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 1668.9, + "end": 1669.24, + "probability": 0.5107421875 + } + ] + }, + { + "id": 580, + "text": "Right.", + "start": 1669.38, + "end": 1670.14, + "words": [ + { + "word": " Right.", + "start": 1669.38, + "end": 1670.14, + "probability": 0.08050537109375 + } + ] + }, + { + "id": 581, + "text": "And that's my big problem with Norton is that it makes your computer really slow.", + "start": 1670.14, + "end": 1674.94, + "words": [ + { + "word": " And", + "start": 1670.14, + "end": 1670.14, + "probability": 0.051971435546875 + }, + { + "word": " that's", + "start": 1670.14, + "end": 1670.46, + "probability": 0.939453125 + }, + { + "word": " my", + "start": 1670.46, + "end": 1671.06, + "probability": 0.978515625 + }, + { + "word": " big", + "start": 1671.06, + "end": 1671.44, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1671.44, + "end": 1671.84, + "probability": 1.0 + }, + { + "word": " with", + "start": 1671.84, + "end": 1672.02, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1672.02, + "end": 1672.28, + "probability": 0.99658203125 + }, + { + "word": " is", + "start": 1672.28, + "end": 1672.5, + "probability": 0.87158203125 + }, + { + "word": " that", + "start": 1672.5, + "end": 1672.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1672.7, + "end": 1673.32, + "probability": 0.99951171875 + }, + { + "word": " makes", + "start": 1673.32, + "end": 1673.56, + "probability": 1.0 + }, + { + "word": " your", + "start": 1673.56, + "end": 1673.72, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1673.72, + "end": 1674.02, + "probability": 1.0 + }, + { + "word": " really", + "start": 1674.02, + "end": 1674.52, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1674.52, + "end": 1674.94, + "probability": 1.0 + } + ] + }, + { + "id": 582, + "text": "Okay.", + "start": 1675.18, + "end": 1675.72, + "words": [ + { + "word": " Okay.", + "start": 1675.18, + "end": 1675.72, + "probability": 0.74560546875 + } + ] + }, + { + "id": 583, + "text": "And then on top of which, a lot of times, you'll end up with just no internet access for no reason at all.", + "start": 1675.72, + "end": 1682.88, + "words": [ + { + "word": " And", + "start": 1675.72, + "end": 1675.72, + "probability": 0.85400390625 + }, + { + "word": " then", + "start": 1675.72, + "end": 1675.92, + "probability": 0.85302734375 + }, + { + "word": " on", + "start": 1675.92, + "end": 1676.18, + "probability": 0.9794921875 + }, + { + "word": " top", + "start": 1676.18, + "end": 1676.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 1676.48, + "end": 1676.7, + "probability": 1.0 + }, + { + "word": " which,", + "start": 1676.7, + "end": 1677.1, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1677.14, + "end": 1677.78, + "probability": 0.998046875 + }, + { + "word": " lot", + "start": 1677.78, + "end": 1678.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 1678.32, + "end": 1678.44, + "probability": 1.0 + }, + { + "word": " times,", + "start": 1678.44, + "end": 1678.78, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1678.88, + "end": 1679.36, + "probability": 1.0 + }, + { + "word": " end", + "start": 1679.36, + "end": 1679.54, + "probability": 1.0 + }, + { + "word": " up", + "start": 1679.54, + "end": 1679.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 1679.78, + "end": 1679.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 1679.96, + "end": 1680.2, + "probability": 0.9990234375 + }, + { + "word": " no", + "start": 1680.2, + "end": 1680.68, + "probability": 0.6396484375 + }, + { + "word": " internet", + "start": 1680.68, + "end": 1681.42, + "probability": 0.59228515625 + }, + { + "word": " access", + "start": 1681.42, + "end": 1681.76, + "probability": 1.0 + }, + { + "word": " for", + "start": 1681.76, + "end": 1682.14, + "probability": 0.998046875 + }, + { + "word": " no", + "start": 1682.14, + "end": 1682.28, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1682.28, + "end": 1682.56, + "probability": 1.0 + }, + { + "word": " at", + "start": 1682.56, + "end": 1682.68, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1682.68, + "end": 1682.88, + "probability": 1.0 + } + ] + }, + { + "id": 584, + "text": "Right.", + "start": 1683.3, + "end": 1683.86, + "words": [ + { + "word": " Right.", + "start": 1683.3, + "end": 1683.86, + "probability": 0.99755859375 + } + ] + }, + { + "id": 585, + "text": "And then you have to unplug the wire or reset the cable modem or the router or something to get back online.", + "start": 1684.06, + "end": 1689.42, + "words": [ + { + "word": " And", + "start": 1684.06, + "end": 1684.3, + "probability": 0.7216796875 + }, + { + "word": " then", + "start": 1684.3, + "end": 1684.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 1684.8, + "end": 1684.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 1684.9, + "end": 1685.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1685.02, + "end": 1685.14, + "probability": 1.0 + }, + { + "word": " unplug", + "start": 1685.14, + "end": 1685.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1685.34, + "end": 1685.58, + "probability": 1.0 + }, + { + "word": " wire", + "start": 1685.58, + "end": 1685.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 1685.8, + "end": 1686.1, + "probability": 0.974609375 + }, + { + "word": " reset", + "start": 1686.1, + "end": 1686.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1686.72, + "end": 1686.92, + "probability": 1.0 + }, + { + "word": " cable", + "start": 1686.92, + "end": 1687.14, + "probability": 1.0 + }, + { + "word": " modem", + "start": 1687.14, + "end": 1687.54, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 1687.54, + "end": 1687.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1687.64, + "end": 1687.78, + "probability": 1.0 + }, + { + "word": " router", + "start": 1687.78, + "end": 1688.08, + "probability": 1.0 + }, + { + "word": " or", + "start": 1688.08, + "end": 1688.36, + "probability": 0.9912109375 + }, + { + "word": " something", + "start": 1688.36, + "end": 1688.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1688.66, + "end": 1688.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 1688.88, + "end": 1689.0, + "probability": 1.0 + }, + { + "word": " back", + "start": 1689.0, + "end": 1689.12, + "probability": 1.0 + }, + { + "word": " online.", + "start": 1689.12, + "end": 1689.42, + "probability": 1.0 + } + ] + }, + { + "id": 586, + "text": "So I'm going to suggest that at least a contributing factor to what's going on with your not being able to connect is some sort of configuration.", + "start": 1689.92, + "end": 1699.1, + "words": [ + { + "word": " So", + "start": 1689.92, + "end": 1690.48, + "probability": 0.96484375 + }, + { + "word": " I'm", + "start": 1690.48, + "end": 1691.2, + "probability": 0.873046875 + }, + { + "word": " going", + "start": 1691.2, + "end": 1691.3, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1691.3, + "end": 1691.48, + "probability": 1.0 + }, + { + "word": " suggest", + "start": 1691.48, + "end": 1691.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 1691.76, + "end": 1692.18, + "probability": 1.0 + }, + { + "word": " at", + "start": 1692.18, + "end": 1692.42, + "probability": 1.0 + }, + { + "word": " least", + "start": 1692.42, + "end": 1693.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1693.04, + "end": 1693.14, + "probability": 0.9931640625 + }, + { + "word": " contributing", + "start": 1693.14, + "end": 1693.42, + "probability": 1.0 + }, + { + "word": " factor", + "start": 1693.42, + "end": 1693.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1693.78, + "end": 1694.36, + "probability": 1.0 + }, + { + "word": " what's", + "start": 1694.36, + "end": 1694.64, + "probability": 1.0 + }, + { + "word": " going", + "start": 1694.64, + "end": 1694.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 1694.74, + "end": 1695.02, + "probability": 1.0 + }, + { + "word": " with", + "start": 1695.02, + "end": 1695.18, + "probability": 1.0 + }, + { + "word": " your", + "start": 1695.18, + "end": 1695.34, + "probability": 0.9921875 + }, + { + "word": " not", + "start": 1695.34, + "end": 1696.04, + "probability": 1.0 + }, + { + "word": " being", + "start": 1696.04, + "end": 1696.32, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 1696.32, + "end": 1696.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1696.56, + "end": 1696.68, + "probability": 1.0 + }, + { + "word": " connect", + "start": 1696.68, + "end": 1696.94, + "probability": 1.0 + }, + { + "word": " is", + "start": 1696.94, + "end": 1697.36, + "probability": 1.0 + }, + { + "word": " some", + "start": 1697.36, + "end": 1697.98, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1697.98, + "end": 1698.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 1698.4, + "end": 1698.68, + "probability": 1.0 + }, + { + "word": " configuration.", + "start": 1698.68, + "end": 1699.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 587, + "text": "Okay.", + "start": 1699.88, + "end": 1700.24, + "words": [ + { + "word": " Okay.", + "start": 1699.88, + "end": 1700.24, + "probability": 0.410888671875 + } + ] + }, + { + "id": 588, + "text": "So start with getting rid of that and putting something else on there.", + "start": 1701.4800000000002, + "end": 1704.2, + "words": [ + { + "word": " So", + "start": 1701.4800000000002, + "end": 1701.8400000000001, + "probability": 0.26904296875 + }, + { + "word": " start", + "start": 1701.8400000000001, + "end": 1702.2, + "probability": 0.76171875 + }, + { + "word": " with", + "start": 1702.2, + "end": 1702.48, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1702.48, + "end": 1702.68, + "probability": 0.99951171875 + }, + { + "word": " rid", + "start": 1702.68, + "end": 1702.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1702.92, + "end": 1703.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 1703.04, + "end": 1703.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 1703.22, + "end": 1703.38, + "probability": 0.9951171875 + }, + { + "word": " putting", + "start": 1703.38, + "end": 1703.54, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1703.54, + "end": 1703.68, + "probability": 1.0 + }, + { + "word": " else", + "start": 1703.68, + "end": 1703.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 1703.9, + "end": 1704.04, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1704.04, + "end": 1704.2, + "probability": 1.0 + } + ] + }, + { + "id": 589, + "text": "Okay.", + "start": 1704.6200000000001, + "end": 1704.98, + "words": [ + { + "word": " Okay.", + "start": 1704.6200000000001, + "end": 1704.98, + "probability": 0.2305908203125 + } + ] + }, + { + "id": 590, + "text": "I would imagine that you'll have that problem less frequently.", + "start": 1704.98, + "end": 1708.58, + "words": [ + { + "word": " I", + "start": 1704.98, + "end": 1704.98, + "probability": 0.95654296875 + }, + { + "word": " would", + "start": 1704.98, + "end": 1705.16, + "probability": 0.9990234375 + }, + { + "word": " imagine", + "start": 1705.16, + "end": 1705.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 1705.44, + "end": 1705.9, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1705.9, + "end": 1707.48, + "probability": 0.798828125 + }, + { + "word": " have", + "start": 1707.48, + "end": 1707.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1707.6, + "end": 1707.76, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1707.76, + "end": 1708.0, + "probability": 1.0 + }, + { + "word": " less", + "start": 1708.0, + "end": 1708.2, + "probability": 1.0 + }, + { + "word": " frequently.", + "start": 1708.2, + "end": 1708.58, + "probability": 1.0 + } + ] + }, + { + "id": 591, + "text": "Now, how old is this machine?", + "start": 1708.76, + "end": 1709.76, + "words": [ + { + "word": " Now,", + "start": 1708.76, + "end": 1708.94, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 1708.96, + "end": 1709.06, + "probability": 1.0 + }, + { + "word": " old", + "start": 1709.06, + "end": 1709.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 1709.26, + "end": 1709.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 1709.4, + "end": 1709.52, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 1709.52, + "end": 1709.76, + "probability": 1.0 + } + ] + }, + { + "id": 592, + "text": "I just got that.", + "start": 1710.6200000000001, + "end": 1712.04, + "words": [ + { + "word": " I", + "start": 1710.6200000000001, + "end": 1710.98, + "probability": 0.869140625 + }, + { + "word": " just", + "start": 1710.98, + "end": 1711.34, + "probability": 0.98486328125 + }, + { + "word": " got", + "start": 1711.34, + "end": 1711.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1711.66, + "end": 1712.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 593, + "text": "It's six months.", + "start": 1712.46, + "end": 1713.62, + "words": [ + { + "word": " It's", + "start": 1712.46, + "end": 1712.82, + "probability": 0.99609375 + }, + { + "word": " six", + "start": 1712.82, + "end": 1713.04, + "probability": 0.98388671875 + }, + { + "word": " months.", + "start": 1713.04, + "end": 1713.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 594, + "text": "So it's a Windows 8 machine?", + "start": 1714.3400000000001, + "end": 1715.48, + "words": [ + { + "word": " So", + "start": 1714.3400000000001, + "end": 1714.7, + "probability": 0.99560546875 + }, + { + "word": " it's", + "start": 1714.7, + "end": 1714.86, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1714.86, + "end": 1714.88, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1714.88, + "end": 1715.06, + "probability": 1.0 + }, + { + "word": " 8", + "start": 1715.06, + "end": 1715.24, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 1715.24, + "end": 1715.48, + "probability": 1.0 + } + ] + }, + { + "id": 595, + "text": "Yes, it is.", + "start": 1716.3200000000002, + "end": 1717.02, + "words": [ + { + "word": " Yes,", + "start": 1716.3200000000002, + "end": 1716.68, + "probability": 0.92626953125 + }, + { + "word": " it", + "start": 1716.72, + "end": 1716.86, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1716.86, + "end": 1717.02, + "probability": 1.0 + } + ] + }, + { + "id": 596, + "text": "And I don't really particularly like it, probably because I don't really understand a lot of the stuff.", + "start": 1717.18, + "end": 1721.76, + "words": [ + { + "word": " And", + "start": 1717.18, + "end": 1717.5, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 1717.5, + "end": 1717.62, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1717.62, + "end": 1717.84, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1717.84, + "end": 1718.0, + "probability": 0.99951171875 + }, + { + "word": " particularly", + "start": 1718.0, + "end": 1718.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 1718.38, + "end": 1718.92, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1718.92, + "end": 1719.1, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1719.14, + "end": 1719.36, + "probability": 0.998046875 + }, + { + "word": " because", + "start": 1719.36, + "end": 1719.78, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 1719.78, + "end": 1719.98, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1719.98, + "end": 1720.14, + "probability": 1.0 + }, + { + "word": " really", + "start": 1720.14, + "end": 1720.34, + "probability": 1.0 + }, + { + "word": " understand", + "start": 1720.34, + "end": 1720.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 1720.76, + "end": 1721.04, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1721.04, + "end": 1721.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1721.22, + "end": 1721.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1721.34, + "end": 1721.48, + "probability": 0.99951171875 + }, + { + "word": " stuff.", + "start": 1721.48, + "end": 1721.76, + "probability": 1.0 + } + ] + }, + { + "id": 597, + "text": "All right.", + "start": 1721.98, + "end": 1722.42, + "words": [ + { + "word": " All", + "start": 1721.98, + "end": 1722.34, + "probability": 0.98193359375 + }, + { + "word": " right.", + "start": 1722.34, + "end": 1722.42, + "probability": 1.0 + } + ] + }, + { + "id": 598, + "text": "So here's what I'm going to tell you to do.", + "start": 1722.44, + "end": 1724.42, + "words": [ + { + "word": " So", + "start": 1722.44, + "end": 1722.56, + "probability": 0.99658203125 + }, + { + "word": " here's", + "start": 1722.56, + "end": 1722.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 1722.82, + "end": 1722.82, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1722.82, + "end": 1723.86, + "probability": 1.0 + }, + { + "word": " going", + "start": 1723.86, + "end": 1723.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1723.92, + "end": 1723.94, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1723.94, + "end": 1724.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 1724.08, + "end": 1724.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 1724.18, + "end": 1724.3, + "probability": 1.0 + }, + { + "word": " do.", + "start": 1724.3, + "end": 1724.42, + "probability": 1.0 + } + ] + }, + { + "id": 599, + "text": "You either sign up for the lockdown service or the GPS, one of the two.", + "start": 1724.88, + "end": 1728.46, + "words": [ + { + "word": " You", + "start": 1724.88, + "end": 1725.24, + "probability": 0.998046875 + }, + { + "word": " either", + "start": 1725.24, + "end": 1725.54, + "probability": 1.0 + }, + { + "word": " sign", + "start": 1725.54, + "end": 1726.18, + "probability": 1.0 + }, + { + "word": " up", + "start": 1726.18, + "end": 1726.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 1726.36, + "end": 1726.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1726.46, + "end": 1726.48, + "probability": 1.0 + }, + { + "word": " lockdown", + "start": 1726.48, + "end": 1726.76, + "probability": 0.990234375 + }, + { + "word": " service", + "start": 1726.76, + "end": 1727.08, + "probability": 1.0 + }, + { + "word": " or", + "start": 1727.08, + "end": 1727.36, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 1727.36, + "end": 1727.5, + "probability": 1.0 + }, + { + "word": " GPS,", + "start": 1727.5, + "end": 1727.8, + "probability": 1.0 + }, + { + "word": " one", + "start": 1727.98, + "end": 1728.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 1728.14, + "end": 1728.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1728.22, + "end": 1728.32, + "probability": 1.0 + }, + { + "word": " two.", + "start": 1728.32, + "end": 1728.46, + "probability": 1.0 + } + ] + }, + { + "id": 600, + "text": "Or you are going to uninstall Norton utterly.", + "start": 1729.1, + "end": 1732.3, + "words": [ + { + "word": " Or", + "start": 1729.1, + "end": 1729.26, + "probability": 0.78369140625 + }, + { + "word": " you", + "start": 1729.26, + "end": 1730.3, + "probability": 0.73974609375 + }, + { + "word": " are", + "start": 1730.3, + "end": 1730.52, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 1730.52, + "end": 1730.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1730.74, + "end": 1731.02, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 1731.02, + "end": 1731.62, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1731.62, + "end": 1731.9, + "probability": 0.9990234375 + }, + { + "word": " utterly.", + "start": 1731.9, + "end": 1732.3, + "probability": 0.95556640625 + } + ] + }, + { + "id": 601, + "text": "You will, I would say, download something called the Norton removal tool.", + "start": 1733.1999999999998, + "end": 1736.74, + "words": [ + { + "word": " You", + "start": 1732.94, + "end": 1733.2, + "probability": 0.84130859375 + }, + { + "word": " will,", + "start": 1733.2, + "end": 1733.48, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1733.64, + "end": 1734.1, + "probability": 0.98681640625 + }, + { + "word": " would", + "start": 1734.1, + "end": 1734.4, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1734.4, + "end": 1734.56, + "probability": 1.0 + }, + { + "word": " download", + "start": 1734.58, + "end": 1734.82, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1734.82, + "end": 1735.14, + "probability": 1.0 + }, + { + "word": " called", + "start": 1735.14, + "end": 1735.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1735.46, + "end": 1735.66, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1735.66, + "end": 1735.94, + "probability": 1.0 + }, + { + "word": " removal", + "start": 1735.94, + "end": 1736.28, + "probability": 0.3291015625 + }, + { + "word": " tool.", + "start": 1736.28, + "end": 1736.74, + "probability": 1.0 + } + ] + }, + { + "id": 602, + "text": "Uh-huh.", + "start": 1737.2, + "end": 1737.84, + "words": [ + { + "word": " Uh", + "start": 1737.2, + "end": 1737.72, + "probability": 0.39794921875 + }, + { + "word": "-huh.", + "start": 1737.72, + "end": 1737.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 603, + "text": "So after you've uninstalled Norton using the regular uninstall, you run this Norton removal tool.", + "start": 1737.88, + "end": 1743.52, + "words": [ + { + "word": " So", + "start": 1737.88, + "end": 1738.04, + "probability": 0.990234375 + }, + { + "word": " after", + "start": 1738.04, + "end": 1738.42, + "probability": 0.89306640625 + }, + { + "word": " you've", + "start": 1738.42, + "end": 1738.74, + "probability": 0.99853515625 + }, + { + "word": " uninstalled", + "start": 1738.74, + "end": 1739.16, + "probability": 0.9990234375 + }, + { + "word": " Norton", + "start": 1739.16, + "end": 1739.42, + "probability": 1.0 + }, + { + "word": " using", + "start": 1739.42, + "end": 1739.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1739.68, + "end": 1739.98, + "probability": 1.0 + }, + { + "word": " regular", + "start": 1739.98, + "end": 1740.52, + "probability": 1.0 + }, + { + "word": " uninstall,", + "start": 1740.52, + "end": 1741.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 1741.4, + "end": 1742.14, + "probability": 1.0 + }, + { + "word": " run", + "start": 1742.14, + "end": 1742.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 1742.4, + "end": 1742.64, + "probability": 1.0 + }, + { + "word": " Norton", + "start": 1742.64, + "end": 1742.92, + "probability": 1.0 + }, + { + "word": " removal", + "start": 1742.92, + "end": 1743.18, + "probability": 1.0 + }, + { + "word": " tool.", + "start": 1743.18, + "end": 1743.52, + "probability": 1.0 + } + ] + }, + { + "id": 604, + "text": "And it eradicates Norton products from your computer.", + "start": 1743.68, + "end": 1747.6, + "words": [ + { + "word": " And", + "start": 1743.68, + "end": 1744.06, + "probability": 0.315673828125 + }, + { + "word": " it", + "start": 1744.06, + "end": 1744.28, + "probability": 1.0 + }, + { + "word": " eradicates", + "start": 1744.28, + "end": 1745.84, + "probability": 0.99560546875 + }, + { + "word": " Norton", + "start": 1745.84, + "end": 1746.28, + "probability": 1.0 + }, + { + "word": " products", + "start": 1746.28, + "end": 1746.64, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1746.64, + "end": 1747.04, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1747.04, + "end": 1747.22, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1747.22, + "end": 1747.6, + "probability": 1.0 + } + ] + }, + { + "id": 605, + "text": "Okay.", + "start": 1747.98, + "end": 1748.5, + "words": [ + { + "word": " Okay.", + "start": 1747.98, + "end": 1748.5, + "probability": 0.9541015625 + } + ] + }, + { + "id": 606, + "text": "And all of the settings.", + "start": 1748.54, + "end": 1749.62, + "words": [ + { + "word": " And", + "start": 1748.54, + "end": 1748.88, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1748.88, + "end": 1749.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 1749.12, + "end": 1749.26, + "probability": 0.9423828125 + }, + { + "word": " the", + "start": 1749.26, + "end": 1749.34, + "probability": 1.0 + }, + { + "word": " settings.", + "start": 1749.34, + "end": 1749.62, + "probability": 1.0 + } + ] + }, + { + "id": 607, + "text": "So put your computer back to default.", + "start": 1749.76, + "end": 1751.4, + "words": [ + { + "word": " So", + "start": 1749.76, + "end": 1750.26, + "probability": 0.9931640625 + }, + { + "word": " put", + "start": 1750.26, + "end": 1750.42, + "probability": 0.9736328125 + }, + { + "word": " your", + "start": 1750.42, + "end": 1750.56, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1750.56, + "end": 1750.8, + "probability": 1.0 + }, + { + "word": " back", + "start": 1750.8, + "end": 1750.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1750.96, + "end": 1751.12, + "probability": 1.0 + }, + { + "word": " default.", + "start": 1751.12, + "end": 1751.4, + "probability": 1.0 + } + ] + }, + { + "id": 608, + "text": "Then you are going to get the paid version of Malwarebytes.", + "start": 1751.56, + "end": 1754.52, + "words": [ + { + "word": " Then", + "start": 1751.56, + "end": 1751.78, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1751.78, + "end": 1752.02, + "probability": 1.0 + }, + { + "word": " are", + "start": 1752.02, + "end": 1752.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 1752.2, + "end": 1752.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1752.4, + "end": 1752.6, + "probability": 1.0 + }, + { + "word": " get", + "start": 1752.6, + "end": 1752.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1752.72, + "end": 1752.88, + "probability": 1.0 + }, + { + "word": " paid", + "start": 1752.88, + "end": 1753.2, + "probability": 1.0 + }, + { + "word": " version", + "start": 1753.2, + "end": 1753.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 1753.54, + "end": 1753.82, + "probability": 1.0 + }, + { + "word": " Malwarebytes.", + "start": 1753.82, + "end": 1754.52, + "probability": 0.98486328125 + } + ] + }, + { + "id": 609, + "text": "You can start off with a free trial if you want.", + "start": 1755.18, + "end": 1757.16, + "words": [ + { + "word": " You", + "start": 1755.18, + "end": 1755.7, + "probability": 1.0 + }, + { + "word": " can", + "start": 1755.7, + "end": 1755.8, + "probability": 1.0 + }, + { + "word": " start", + "start": 1755.8, + "end": 1755.98, + "probability": 1.0 + }, + { + "word": " off", + "start": 1755.98, + "end": 1756.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 1756.14, + "end": 1756.26, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1756.26, + "end": 1756.28, + "probability": 0.9931640625 + }, + { + "word": " free", + "start": 1756.28, + "end": 1756.42, + "probability": 1.0 + }, + { + "word": " trial", + "start": 1756.42, + "end": 1756.7, + "probability": 1.0 + }, + { + "word": " if", + "start": 1756.7, + "end": 1756.9, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1756.9, + "end": 1756.98, + "probability": 1.0 + }, + { + "word": " want.", + "start": 1756.98, + "end": 1757.16, + "probability": 1.0 + } + ] + }, + { + "id": 610, + "text": "But the paid version.", + "start": 1757.28, + "end": 1758.7, + "words": [ + { + "word": " But", + "start": 1757.28, + "end": 1757.54, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1757.54, + "end": 1758.08, + "probability": 1.0 + }, + { + "word": " paid", + "start": 1758.08, + "end": 1758.36, + "probability": 1.0 + }, + { + "word": " version.", + "start": 1758.36, + "end": 1758.7, + "probability": 1.0 + } + ] + }, + { + "id": 611, + "text": "Is what is required.", + "start": 1759.1, + "end": 1759.86, + "words": [ + { + "word": " Is", + "start": 1759.1, + "end": 1759.1, + "probability": 0.0198974609375 + }, + { + "word": " what", + "start": 1759.1, + "end": 1759.28, + "probability": 0.9599609375 + }, + { + "word": " is", + "start": 1759.28, + "end": 1759.48, + "probability": 0.99169921875 + }, + { + "word": " required.", + "start": 1759.48, + "end": 1759.86, + "probability": 0.99755859375 + } + ] + }, + { + "id": 612, + "text": "Everybody listening to the show should have the paid version of Malwarebytes on their computer.", + "start": 1760.88, + "end": 1764.22, + "words": [ + { + "word": " Everybody", + "start": 1760.88, + "end": 1761.32, + "probability": 0.99072265625 + }, + { + "word": " listening", + "start": 1761.32, + "end": 1761.68, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1761.68, + "end": 1761.8, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1761.8, + "end": 1761.88, + "probability": 0.958984375 + }, + { + "word": " show", + "start": 1761.88, + "end": 1762.08, + "probability": 1.0 + }, + { + "word": " should", + "start": 1762.08, + "end": 1762.36, + "probability": 0.3642578125 + }, + { + "word": " have", + "start": 1762.36, + "end": 1762.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 1762.56, + "end": 1762.7, + "probability": 0.99853515625 + }, + { + "word": " paid", + "start": 1762.7, + "end": 1762.84, + "probability": 0.99853515625 + }, + { + "word": " version", + "start": 1762.84, + "end": 1763.08, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1763.08, + "end": 1763.24, + "probability": 0.94482421875 + }, + { + "word": " Malwarebytes", + "start": 1763.24, + "end": 1763.66, + "probability": 0.9697265625 + }, + { + "word": " on", + "start": 1763.66, + "end": 1763.84, + "probability": 0.9462890625 + }, + { + "word": " their", + "start": 1763.84, + "end": 1763.96, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1763.96, + "end": 1764.22, + "probability": 1.0 + } + ] + }, + { + "id": 613, + "text": "Unless they're Macs.", + "start": 1764.5, + "end": 1765.5, + "words": [ + { + "word": " Unless", + "start": 1764.5, + "end": 1764.94, + "probability": 0.998046875 + }, + { + "word": " they're", + "start": 1764.94, + "end": 1765.12, + "probability": 0.94140625 + }, + { + "word": " Macs.", + "start": 1765.12, + "end": 1765.5, + "probability": 0.9794921875 + } + ] + }, + { + "id": 614, + "text": "Uh-huh.", + "start": 1765.94, + "end": 1766.58, + "words": [ + { + "word": " Uh", + "start": 1765.94, + "end": 1766.38, + "probability": 0.0246429443359375 + }, + { + "word": "-huh.", + "start": 1766.38, + "end": 1766.58, + "probability": 0.8330078125 + } + ] + }, + { + "id": 615, + "text": "And that way, you are much more likely to keep yourself out of trouble.", + "start": 1766.96, + "end": 1771.26, + "words": [ + { + "word": " And", + "start": 1766.96, + "end": 1767.2, + "probability": 0.83544921875 + }, + { + "word": " that", + "start": 1767.2, + "end": 1767.34, + "probability": 0.98828125 + }, + { + "word": " way,", + "start": 1767.34, + "end": 1767.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 1767.78, + "end": 1768.82, + "probability": 0.91748046875 + }, + { + "word": " are", + "start": 1768.82, + "end": 1769.16, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 1769.16, + "end": 1769.58, + "probability": 1.0 + }, + { + "word": " more", + "start": 1769.58, + "end": 1769.84, + "probability": 1.0 + }, + { + "word": " likely", + "start": 1769.84, + "end": 1770.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1770.14, + "end": 1770.38, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1770.38, + "end": 1770.52, + "probability": 0.99951171875 + }, + { + "word": " yourself", + "start": 1770.52, + "end": 1770.74, + "probability": 1.0 + }, + { + "word": " out", + "start": 1770.74, + "end": 1770.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 1770.96, + "end": 1771.0, + "probability": 1.0 + }, + { + "word": " trouble.", + "start": 1771.0, + "end": 1771.26, + "probability": 1.0 + } + ] + }, + { + "id": 616, + "text": "So.", + "start": 1772.0, + "end": 1772.44, + "words": [ + { + "word": " So.", + "start": 1772.0, + "end": 1772.44, + "probability": 0.270751953125 + } + ] + }, + { + "id": 617, + "text": "Okay.", + "start": 1772.44, + "end": 1772.78, + "words": [ + { + "word": " Okay.", + "start": 1772.44, + "end": 1772.78, + "probability": 0.95361328125 + } + ] + }, + { + "id": 618, + "text": "I would suggest.", + "start": 1772.96, + "end": 1773.7, + "words": [ + { + "word": " I", + "start": 1772.96, + "end": 1773.26, + "probability": 0.9931640625 + }, + { + "word": " would", + "start": 1773.26, + "end": 1773.44, + "probability": 1.0 + }, + { + "word": " suggest.", + "start": 1773.44, + "end": 1773.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 619, + "text": "So what's it called again?", + "start": 1773.7, + "end": 1774.52, + "words": [ + { + "word": " So", + "start": 1773.7, + "end": 1773.74, + "probability": 0.416015625 + }, + { + "word": " what's", + "start": 1773.74, + "end": 1773.92, + "probability": 0.92724609375 + }, + { + "word": " it", + "start": 1773.92, + "end": 1773.92, + "probability": 0.99658203125 + }, + { + "word": " called", + "start": 1773.92, + "end": 1774.26, + "probability": 1.0 + }, + { + "word": " again?", + "start": 1774.26, + "end": 1774.52, + "probability": 1.0 + } + ] + }, + { + "id": 620, + "text": "The Malware, what?", + "start": 1774.64, + "end": 1775.76, + "words": [ + { + "word": " The", + "start": 1774.64, + "end": 1774.9, + "probability": 0.76904296875 + }, + { + "word": " Malware,", + "start": 1774.9, + "end": 1775.52, + "probability": 0.89453125 + }, + { + "word": " what?", + "start": 1775.52, + "end": 1775.76, + "probability": 1.0 + } + ] + }, + { + "id": 621, + "text": "Malwarebytes.", + "start": 1776.42, + "end": 1776.86, + "words": [ + { + "word": " Malwarebytes.", + "start": 1776.42, + "end": 1776.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 622, + "text": "B-Y-T-E-S.", + "start": 1776.88, + "end": 1777.96, + "words": [ + { + "word": " B", + "start": 1776.88, + "end": 1777.16, + "probability": 0.986328125 + }, + { + "word": "-Y", + "start": 1777.16, + "end": 1777.48, + "probability": 0.99560546875 + }, + { + "word": "-T", + "start": 1777.48, + "end": 1777.72, + "probability": 1.0 + }, + { + "word": "-E", + "start": 1777.72, + "end": 1777.84, + "probability": 1.0 + }, + { + "word": "-S.", + "start": 1777.84, + "end": 1777.96, + "probability": 1.0 + } + ] + }, + { + "id": 623, + "text": "Okay.", + "start": 1778.26, + "end": 1778.44, + "words": [ + { + "word": " Okay.", + "start": 1778.26, + "end": 1778.44, + "probability": 0.818359375 + } + ] + }, + { + "id": 624, + "text": "All right.", + "start": 1778.54, + "end": 1779.12, + "words": [ + { + "word": " All", + "start": 1778.54, + "end": 1778.94, + "probability": 0.7001953125 + }, + { + "word": " right.", + "start": 1778.94, + "end": 1779.12, + "probability": 1.0 + } + ] + }, + { + "id": 625, + "text": "So you can go to Malwarebytes.org.", + "start": 1779.32, + "end": 1781.28, + "words": [ + { + "word": " So", + "start": 1779.32, + "end": 1779.76, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1779.76, + "end": 1779.92, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 1779.92, + "end": 1780.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 1780.02, + "end": 1780.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 1780.1, + "end": 1780.16, + "probability": 1.0 + }, + { + "word": " Malwarebytes", + "start": 1780.16, + "end": 1780.84, + "probability": 0.9765625 + }, + { + "word": ".org.", + "start": 1780.84, + "end": 1781.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 626, + "text": "And you can get a copy there.", + "start": 1781.74, + "end": 1783.08, + "words": [ + { + "word": " And", + "start": 1781.74, + "end": 1782.18, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1782.18, + "end": 1782.4, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1782.4, + "end": 1782.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 1782.52, + "end": 1782.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 1782.6, + "end": 1782.68, + "probability": 1.0 + }, + { + "word": " copy", + "start": 1782.68, + "end": 1782.88, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1782.88, + "end": 1783.08, + "probability": 0.9931640625 + } + ] + }, + { + "id": 627, + "text": "Okay.", + "start": 1783.78, + "end": 1784.14, + "words": [ + { + "word": " Okay.", + "start": 1783.78, + "end": 1784.14, + "probability": 0.96728515625 + } + ] + }, + { + "id": 628, + "text": "Please do not Google search for Malwarebytes and then download the first thing you find.", + "start": 1784.36, + "end": 1787.78, + "words": [ + { + "word": " Please", + "start": 1784.36, + "end": 1784.8, + "probability": 0.9912109375 + }, + { + "word": " do", + "start": 1784.8, + "end": 1784.92, + "probability": 1.0 + }, + { + "word": " not", + "start": 1784.92, + "end": 1785.14, + "probability": 1.0 + }, + { + "word": " Google", + "start": 1785.14, + "end": 1785.34, + "probability": 0.9990234375 + }, + { + "word": " search", + "start": 1785.34, + "end": 1785.7, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1785.7, + "end": 1785.94, + "probability": 1.0 + }, + { + "word": " Malwarebytes", + "start": 1785.94, + "end": 1786.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 1786.52, + "end": 1786.64, + "probability": 0.7861328125 + }, + { + "word": " then", + "start": 1786.64, + "end": 1786.72, + "probability": 0.99951171875 + }, + { + "word": " download", + "start": 1786.72, + "end": 1787.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1787.0, + "end": 1787.14, + "probability": 1.0 + }, + { + "word": " first", + "start": 1787.14, + "end": 1787.28, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1787.28, + "end": 1787.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 1787.44, + "end": 1787.58, + "probability": 1.0 + }, + { + "word": " find.", + "start": 1787.58, + "end": 1787.78, + "probability": 1.0 + } + ] + }, + { + "id": 629, + "text": "Okay.", + "start": 1788.24, + "end": 1788.68, + "words": [ + { + "word": " Okay.", + "start": 1788.24, + "end": 1788.68, + "probability": 0.9287109375 + } + ] + }, + { + "id": 630, + "text": "Okay.", + "start": 1788.68, + "end": 1789.08, + "words": [ + { + "word": " Okay.", + "start": 1788.68, + "end": 1789.08, + "probability": 0.34619140625 + } + ] + }, + { + "id": 631, + "text": "", + "start": 1789.08, + "end": 1789.08, + "words": [] + }, + { + "id": 632, + "text": "", + "start": 1789.08, + "end": 1789.08, + "words": [] + }, + { + "id": 633, + "text": "", + "start": 1789.08, + "end": 1789.08, + "words": [] + }, + { + "id": 634, + "text": "", + "start": 1789.08, + "end": 1789.08, + "words": [] + }, + { + "id": 635, + "text": "You can also go to my website.", + "start": 1789.1, + "end": 1791.42, + "words": [ + { + "word": " You", + "start": 1789.1, + "end": 1789.14, + "probability": 0.93505859375 + }, + { + "word": " can", + "start": 1789.14, + "end": 1789.14, + "probability": 0.9990234375 + }, + { + "word": " also", + "start": 1789.14, + "end": 1789.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 1789.36, + "end": 1789.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1789.64, + "end": 1789.84, + "probability": 1.0 + }, + { + "word": " my", + "start": 1789.84, + "end": 1791.06, + "probability": 0.98583984375 + }, + { + "word": " website.", + "start": 1791.06, + "end": 1791.42, + "probability": 0.99755859375 + } + ] + }, + { + "id": 636, + "text": "Go to gurushow.com.", + "start": 1791.56, + "end": 1792.72, + "words": [ + { + "word": " Go", + "start": 1791.56, + "end": 1791.8, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1791.8, + "end": 1791.88, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 1791.88, + "end": 1792.24, + "probability": 0.8828125 + }, + { + "word": ".com.", + "start": 1792.24, + "end": 1792.72, + "probability": 1.0 + } + ] + }, + { + "id": 637, + "text": "And there's a useful link section with links to the Malwarebytes website.", + "start": 1792.78, + "end": 1796.04, + "words": [ + { + "word": " And", + "start": 1792.78, + "end": 1793.04, + "probability": 0.81005859375 + }, + { + "word": " there's", + "start": 1793.04, + "end": 1793.26, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 1793.26, + "end": 1793.26, + "probability": 1.0 + }, + { + "word": " useful", + "start": 1793.26, + "end": 1793.52, + "probability": 0.99951171875 + }, + { + "word": " link", + "start": 1793.52, + "end": 1793.82, + "probability": 0.48388671875 + }, + { + "word": " section", + "start": 1793.82, + "end": 1794.12, + "probability": 1.0 + }, + { + "word": " with", + "start": 1794.12, + "end": 1794.54, + "probability": 0.99609375 + }, + { + "word": " links", + "start": 1794.54, + "end": 1794.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1794.8, + "end": 1795.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1795.02, + "end": 1795.28, + "probability": 0.9794921875 + }, + { + "word": " Malwarebytes", + "start": 1795.28, + "end": 1795.84, + "probability": 0.75048828125 + }, + { + "word": " website.", + "start": 1795.84, + "end": 1796.04, + "probability": 0.98974609375 + } + ] + }, + { + "id": 638, + "text": "Oh, okay.", + "start": 1796.72, + "end": 1797.36, + "words": [ + { + "word": " Oh,", + "start": 1796.72, + "end": 1797.1, + "probability": 0.984375 + }, + { + "word": " okay.", + "start": 1797.1, + "end": 1797.36, + "probability": 0.9697265625 + } + ] + }, + { + "id": 639, + "text": "Cool.", + "start": 1797.44, + "end": 1797.7, + "words": [ + { + "word": " Cool.", + "start": 1797.44, + "end": 1797.7, + "probability": 0.98779296875 + } + ] + }, + { + "id": 640, + "text": "So that will probably help quite a bit.", + "start": 1798.12, + "end": 1800.48, + "words": [ + { + "word": " So", + "start": 1798.12, + "end": 1798.56, + "probability": 0.990234375 + }, + { + "word": " that", + "start": 1798.56, + "end": 1798.84, + "probability": 0.73095703125 + }, + { + "word": " will", + "start": 1798.84, + "end": 1799.24, + "probability": 0.48828125 + }, + { + "word": " probably", + "start": 1799.24, + "end": 1799.5, + "probability": 1.0 + }, + { + "word": " help", + "start": 1799.5, + "end": 1799.74, + "probability": 1.0 + }, + { + "word": " quite", + "start": 1799.74, + "end": 1800.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1800.1, + "end": 1800.28, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 1800.28, + "end": 1800.48, + "probability": 1.0 + } + ] + }, + { + "id": 641, + "text": "Now, the only other thing that I have to ask is how old is this router?", + "start": 1800.54, + "end": 1803.6, + "words": [ + { + "word": " Now,", + "start": 1800.54, + "end": 1800.74, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1800.9, + "end": 1801.2, + "probability": 1.0 + }, + { + "word": " only", + "start": 1801.2, + "end": 1801.5, + "probability": 1.0 + }, + { + "word": " other", + "start": 1801.5, + "end": 1801.72, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1801.72, + "end": 1802.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 1802.0, + "end": 1802.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 1802.18, + "end": 1802.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 1802.28, + "end": 1802.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1802.46, + "end": 1802.62, + "probability": 1.0 + }, + { + "word": " ask", + "start": 1802.62, + "end": 1802.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 1802.8, + "end": 1802.92, + "probability": 1.0 + }, + { + "word": " how", + "start": 1802.92, + "end": 1803.02, + "probability": 0.8740234375 + }, + { + "word": " old", + "start": 1803.02, + "end": 1803.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1803.18, + "end": 1803.28, + "probability": 1.0 + }, + { + "word": " this", + "start": 1803.28, + "end": 1803.42, + "probability": 1.0 + }, + { + "word": " router?", + "start": 1803.42, + "end": 1803.6, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "It's probably a couple of years old.", + "start": 1806.26, + "end": 1808.4, + "words": [ + { + "word": " It's", + "start": 1806.26, + "end": 1806.7, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 1806.7, + "end": 1807.14, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1807.14, + "end": 1807.36, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1807.36, + "end": 1807.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1807.78, + "end": 1807.9, + "probability": 1.0 + }, + { + "word": " years", + "start": 1807.9, + "end": 1808.08, + "probability": 1.0 + }, + { + "word": " old.", + "start": 1808.08, + "end": 1808.4, + "probability": 1.0 + } + ] + }, + { + "id": 643, + "text": "All right.", + "start": 1808.62, + "end": 1809.0, + "words": [ + { + "word": " All", + "start": 1808.62, + "end": 1808.94, + "probability": 0.87451171875 + }, + { + "word": " right.", + "start": 1808.94, + "end": 1809.0, + "probability": 1.0 + } + ] + }, + { + "id": 644, + "text": "If it's more than four or five years old, then one of the reasons that your other people may be able to connect and you can't is that they might have older machines.", + "start": 1809.04, + "end": 1819.02, + "words": [ + { + "word": " If", + "start": 1809.04, + "end": 1809.18, + "probability": 0.98828125 + }, + { + "word": " it's", + "start": 1809.18, + "end": 1809.38, + "probability": 1.0 + }, + { + "word": " more", + "start": 1809.38, + "end": 1809.56, + "probability": 1.0 + }, + { + "word": " than", + "start": 1809.56, + "end": 1809.76, + "probability": 1.0 + }, + { + "word": " four", + "start": 1809.76, + "end": 1809.98, + "probability": 0.98876953125 + }, + { + "word": " or", + "start": 1809.98, + "end": 1810.12, + "probability": 1.0 + }, + { + "word": " five", + "start": 1810.12, + "end": 1810.28, + "probability": 1.0 + }, + { + "word": " years", + "start": 1810.28, + "end": 1810.64, + "probability": 1.0 + }, + { + "word": " old,", + "start": 1810.64, + "end": 1811.06, + "probability": 1.0 + }, + { + "word": " then", + "start": 1811.22, + "end": 1812.28, + "probability": 0.998046875 + }, + { + "word": " one", + "start": 1812.28, + "end": 1812.6, + "probability": 0.98388671875 + }, + { + "word": " of", + "start": 1812.6, + "end": 1813.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1813.46, + "end": 1813.5, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 1813.5, + "end": 1813.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 1813.8, + "end": 1814.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 1814.06, + "end": 1814.22, + "probability": 0.99658203125 + }, + { + "word": " other", + "start": 1814.22, + "end": 1814.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 1814.52, + "end": 1814.84, + "probability": 1.0 + }, + { + "word": " may", + "start": 1814.84, + "end": 1815.0, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1815.0, + "end": 1815.14, + "probability": 0.998046875 + }, + { + "word": " able", + "start": 1815.14, + "end": 1815.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1815.26, + "end": 1815.34, + "probability": 1.0 + }, + { + "word": " connect", + "start": 1815.34, + "end": 1815.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 1815.56, + "end": 1815.76, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1815.76, + "end": 1815.92, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1815.92, + "end": 1816.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 1816.76, + "end": 1816.94, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 1816.94, + "end": 1817.26, + "probability": 1.0 + }, + { + "word": " they", + "start": 1817.26, + "end": 1818.0, + "probability": 1.0 + }, + { + "word": " might", + "start": 1818.0, + "end": 1818.2, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1818.2, + "end": 1818.38, + "probability": 1.0 + }, + { + "word": " older", + "start": 1818.38, + "end": 1818.62, + "probability": 1.0 + }, + { + "word": " machines.", + "start": 1818.62, + "end": 1819.02, + "probability": 0.98681640625 + } + ] + }, + { + "id": 645, + "text": "And it's operating on an older standard.", + "start": 1819.1, + "end": 1820.58, + "words": [ + { + "word": " And", + "start": 1819.1, + "end": 1819.36, + "probability": 0.0136566162109375 + }, + { + "word": " it's", + "start": 1819.36, + "end": 1819.52, + "probability": 0.9951171875 + }, + { + "word": " operating", + "start": 1819.52, + "end": 1819.78, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1819.78, + "end": 1819.98, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1819.98, + "end": 1820.1, + "probability": 1.0 + }, + { + "word": " older", + "start": 1820.1, + "end": 1820.26, + "probability": 1.0 + }, + { + "word": " standard.", + "start": 1820.26, + "end": 1820.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 646, + "text": "Okay.", + "start": 1821.32, + "end": 1821.8, + "words": [ + { + "word": " Okay.", + "start": 1821.32, + "end": 1821.8, + "probability": 0.340087890625 + } + ] + }, + { + "id": 647, + "text": "So the only other thing to look at there is you might need a newer router.", + "start": 1822.14, + "end": 1826.12, + "words": [ + { + "word": " So", + "start": 1822.14, + "end": 1822.62, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 1822.62, + "end": 1823.02, + "probability": 0.7841796875 + }, + { + "word": " only", + "start": 1823.02, + "end": 1823.38, + "probability": 1.0 + }, + { + "word": " other", + "start": 1823.38, + "end": 1823.56, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1823.56, + "end": 1823.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1823.76, + "end": 1823.86, + "probability": 1.0 + }, + { + "word": " look", + "start": 1823.86, + "end": 1824.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 1824.02, + "end": 1824.16, + "probability": 1.0 + }, + { + "word": " there", + "start": 1824.16, + "end": 1824.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 1824.44, + "end": 1824.74, + "probability": 0.97265625 + }, + { + "word": " you", + "start": 1824.74, + "end": 1824.9, + "probability": 0.9970703125 + }, + { + "word": " might", + "start": 1824.9, + "end": 1825.14, + "probability": 1.0 + }, + { + "word": " need", + "start": 1825.14, + "end": 1825.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1825.32, + "end": 1825.5, + "probability": 1.0 + }, + { + "word": " newer", + "start": 1825.5, + "end": 1825.68, + "probability": 1.0 + }, + { + "word": " router.", + "start": 1825.68, + "end": 1826.12, + "probability": 1.0 + } + ] + }, + { + "id": 648, + "text": "Now, the flip side to that is if you get one of the fancy, brand new, stupid, expensive ones.", + "start": 1826.26, + "end": 1832.72, + "words": [ + { + "word": " Now,", + "start": 1826.26, + "end": 1826.58, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1826.66, + "end": 1826.82, + "probability": 1.0 + }, + { + "word": " flip", + "start": 1826.82, + "end": 1827.2, + "probability": 1.0 + }, + { + "word": " side", + "start": 1827.2, + "end": 1827.44, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1827.44, + "end": 1827.62, + "probability": 0.93701171875 + }, + { + "word": " that", + "start": 1827.62, + "end": 1827.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 1827.74, + "end": 1828.06, + "probability": 1.0 + }, + { + "word": " if", + "start": 1828.06, + "end": 1828.44, + "probability": 0.9462890625 + }, + { + "word": " you", + "start": 1828.44, + "end": 1828.84, + "probability": 1.0 + }, + { + "word": " get", + "start": 1828.84, + "end": 1829.06, + "probability": 1.0 + }, + { + "word": " one", + "start": 1829.06, + "end": 1829.24, + "probability": 0.99462890625 + }, + { + "word": " of", + "start": 1829.24, + "end": 1829.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1829.78, + "end": 1829.84, + "probability": 1.0 + }, + { + "word": " fancy,", + "start": 1829.84, + "end": 1830.3, + "probability": 1.0 + }, + { + "word": " brand", + "start": 1830.38, + "end": 1830.62, + "probability": 1.0 + }, + { + "word": " new,", + "start": 1830.62, + "end": 1831.02, + "probability": 0.429931640625 + }, + { + "word": " stupid,", + "start": 1831.06, + "end": 1831.92, + "probability": 1.0 + }, + { + "word": " expensive", + "start": 1832.02, + "end": 1832.34, + "probability": 1.0 + }, + { + "word": " ones.", + "start": 1832.34, + "end": 1832.72, + "probability": 1.0 + } + ] + }, + { + "id": 649, + "text": "Yeah.", + "start": 1833.08, + "end": 1833.56, + "words": [ + { + "word": " Yeah.", + "start": 1833.08, + "end": 1833.56, + "probability": 0.99462890625 + } + ] + }, + { + "id": 650, + "text": "Your older machines might not be able to connect all that well.", + "start": 1834.1, + "end": 1837.18, + "words": [ + { + "word": " Your", + "start": 1834.1, + "end": 1834.58, + "probability": 0.99853515625 + }, + { + "word": " older", + "start": 1834.58, + "end": 1835.02, + "probability": 1.0 + }, + { + "word": " machines", + "start": 1835.02, + "end": 1835.36, + "probability": 1.0 + }, + { + "word": " might", + "start": 1835.36, + "end": 1835.72, + "probability": 1.0 + }, + { + "word": " not", + "start": 1835.72, + "end": 1835.88, + "probability": 1.0 + }, + { + "word": " be", + "start": 1835.88, + "end": 1836.08, + "probability": 1.0 + }, + { + "word": " able", + "start": 1836.08, + "end": 1836.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 1836.22, + "end": 1836.34, + "probability": 1.0 + }, + { + "word": " connect", + "start": 1836.34, + "end": 1836.54, + "probability": 1.0 + }, + { + "word": " all", + "start": 1836.54, + "end": 1836.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1836.78, + "end": 1836.9, + "probability": 1.0 + }, + { + "word": " well.", + "start": 1836.9, + "end": 1837.18, + "probability": 1.0 + } + ] + }, + { + "id": 651, + "text": "So you want to find something that's sort of in the middle.", + "start": 1837.38, + "end": 1840.18, + "words": [ + { + "word": " So", + "start": 1837.38, + "end": 1837.86, + "probability": 0.95263671875 + }, + { + "word": " you", + "start": 1837.86, + "end": 1838.46, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 1838.46, + "end": 1838.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1838.6, + "end": 1838.7, + "probability": 1.0 + }, + { + "word": " find", + "start": 1838.7, + "end": 1838.96, + "probability": 1.0 + }, + { + "word": " something", + "start": 1838.96, + "end": 1839.3, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1839.3, + "end": 1839.48, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1839.48, + "end": 1839.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 1839.64, + "end": 1839.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 1839.74, + "end": 1839.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1839.84, + "end": 1839.96, + "probability": 1.0 + }, + { + "word": " middle.", + "start": 1839.96, + "end": 1840.18, + "probability": 1.0 + } + ] + }, + { + "id": 652, + "text": "The ones that we like, if you're looking locally, is there's these white Asus, the RT-16s.", + "start": 1840.5, + "end": 1848.28, + "words": [ + { + "word": " The", + "start": 1840.5, + "end": 1840.98, + "probability": 0.9990234375 + }, + { + "word": " ones", + "start": 1840.98, + "end": 1841.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1841.26, + "end": 1841.38, + "probability": 1.0 + }, + { + "word": " we", + "start": 1841.38, + "end": 1841.52, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1841.52, + "end": 1841.82, + "probability": 1.0 + }, + { + "word": " if", + "start": 1841.82, + "end": 1841.96, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1841.96, + "end": 1842.06, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1842.06, + "end": 1842.26, + "probability": 1.0 + }, + { + "word": " locally,", + "start": 1842.26, + "end": 1842.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 1842.98, + "end": 1843.3, + "probability": 0.93212890625 + }, + { + "word": " there's", + "start": 1843.3, + "end": 1844.66, + "probability": 0.94921875 + }, + { + "word": " these", + "start": 1844.66, + "end": 1844.9, + "probability": 1.0 + }, + { + "word": " white", + "start": 1844.9, + "end": 1845.34, + "probability": 0.99560546875 + }, + { + "word": " Asus,", + "start": 1845.34, + "end": 1846.0, + "probability": 0.8056640625 + }, + { + "word": " the", + "start": 1846.06, + "end": 1846.32, + "probability": 1.0 + }, + { + "word": " RT", + "start": 1846.32, + "end": 1847.34, + "probability": 0.99462890625 + }, + { + "word": "-16s.", + "start": 1847.34, + "end": 1848.28, + "probability": 0.85107421875 + } + ] + }, + { + "id": 653, + "text": "Mm-hmm.", + "start": 1849.1, + "end": 1849.64, + "words": [ + { + "word": " Mm", + "start": 1849.1, + "end": 1849.4, + "probability": 0.21142578125 + }, + { + "word": "-hmm.", + "start": 1849.4, + "end": 1849.64, + "probability": 0.9931640625 + } + ] + }, + { + "id": 654, + "text": "They tend to be very nice routers that work with just about every computer that we've put them in front of.", + "start": 1849.96, + "end": 1855.58, + "words": [ + { + "word": " They", + "start": 1849.96, + "end": 1850.4, + "probability": 0.9345703125 + }, + { + "word": " tend", + "start": 1850.4, + "end": 1850.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1850.8, + "end": 1850.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 1850.98, + "end": 1851.12, + "probability": 1.0 + }, + { + "word": " very", + "start": 1851.12, + "end": 1851.48, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1851.48, + "end": 1851.84, + "probability": 1.0 + }, + { + "word": " routers", + "start": 1851.84, + "end": 1852.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 1852.32, + "end": 1852.62, + "probability": 0.9990234375 + }, + { + "word": " work", + "start": 1852.62, + "end": 1852.86, + "probability": 1.0 + }, + { + "word": " with", + "start": 1852.86, + "end": 1853.14, + "probability": 1.0 + }, + { + "word": " just", + "start": 1853.14, + "end": 1853.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 1853.38, + "end": 1853.58, + "probability": 1.0 + }, + { + "word": " every", + "start": 1853.58, + "end": 1853.84, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1853.84, + "end": 1854.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 1854.2, + "end": 1854.48, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 1854.48, + "end": 1854.66, + "probability": 1.0 + }, + { + "word": " put", + "start": 1854.66, + "end": 1854.82, + "probability": 1.0 + }, + { + "word": " them", + "start": 1854.82, + "end": 1854.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 1854.92, + "end": 1855.04, + "probability": 1.0 + }, + { + "word": " front", + "start": 1855.04, + "end": 1855.24, + "probability": 1.0 + }, + { + "word": " of.", + "start": 1855.24, + "end": 1855.58, + "probability": 1.0 + } + ] + }, + { + "id": 655, + "text": "And they have very nice reliability.", + "start": 1855.72, + "end": 1858.18, + "words": [ + { + "word": " And", + "start": 1855.72, + "end": 1856.16, + "probability": 0.63916015625 + }, + { + "word": " they", + "start": 1856.16, + "end": 1856.42, + "probability": 0.99658203125 + }, + { + "word": " have", + "start": 1856.42, + "end": 1856.52, + "probability": 1.0 + }, + { + "word": " very", + "start": 1856.52, + "end": 1857.02, + "probability": 0.9296875 + }, + { + "word": " nice", + "start": 1857.02, + "end": 1857.74, + "probability": 1.0 + }, + { + "word": " reliability.", + "start": 1857.74, + "end": 1858.18, + "probability": 1.0 + } + ] + }, + { + "id": 656, + "text": "Okay.", + "start": 1859.44, + "end": 1859.88, + "words": [ + { + "word": " Okay.", + "start": 1859.44, + "end": 1859.88, + "probability": 0.97021484375 + } + ] + }, + { + "id": 657, + "text": "Well, thank you very much.", + "start": 1860.5, + "end": 1861.78, + "words": [ + { + "word": " Well,", + "start": 1860.5, + "end": 1860.94, + "probability": 0.998046875 + }, + { + "word": " thank", + "start": 1861.0, + "end": 1861.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1861.16, + "end": 1861.34, + "probability": 1.0 + }, + { + "word": " very", + "start": 1861.34, + "end": 1861.46, + "probability": 1.0 + }, + { + "word": " much.", + "start": 1861.46, + "end": 1861.78, + "probability": 1.0 + } + ] + }, + { + "id": 658, + "text": "I appreciate that.", + "start": 1861.78, + "end": 1862.88, + "words": [ + { + "word": " I", + "start": 1861.78, + "end": 1861.96, + "probability": 0.9990234375 + }, + { + "word": " appreciate", + "start": 1861.96, + "end": 1862.36, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1862.36, + "end": 1862.88, + "probability": 0.986328125 + } + ] + }, + { + "id": 659, + "text": "I'm probably going to be swinging by your place anyway.", + "start": 1863.32, + "end": 1866.14, + "words": [ + { + "word": " I'm", + "start": 1863.32, + "end": 1863.76, + "probability": 0.95556640625 + }, + { + "word": " probably", + "start": 1863.76, + "end": 1864.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 1864.04, + "end": 1864.36, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 1864.36, + "end": 1864.56, + "probability": 1.0 + }, + { + "word": " be", + "start": 1864.56, + "end": 1864.74, + "probability": 1.0 + }, + { + "word": " swinging", + "start": 1864.74, + "end": 1865.02, + "probability": 0.99853515625 + }, + { + "word": " by", + "start": 1865.02, + "end": 1865.26, + "probability": 1.0 + }, + { + "word": " your", + "start": 1865.26, + "end": 1865.5, + "probability": 1.0 + }, + { + "word": " place", + "start": 1865.5, + "end": 1865.8, + "probability": 0.998046875 + }, + { + "word": " anyway.", + "start": 1865.8, + "end": 1866.14, + "probability": 1.0 + } + ] + }, + { + "id": 660, + "text": "But, yeah, thank you so much for the help.", + "start": 1866.3, + "end": 1868.84, + "words": [ + { + "word": " But,", + "start": 1866.3, + "end": 1866.6, + "probability": 0.998046875 + }, + { + "word": " yeah,", + "start": 1866.62, + "end": 1867.18, + "probability": 0.998046875 + }, + { + "word": " thank", + "start": 1867.34, + "end": 1867.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 1867.62, + "end": 1867.86, + "probability": 1.0 + }, + { + "word": " so", + "start": 1867.86, + "end": 1867.96, + "probability": 1.0 + }, + { + "word": " much", + "start": 1867.96, + "end": 1868.2, + "probability": 1.0 + }, + { + "word": " for", + "start": 1868.2, + "end": 1868.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 1868.38, + "end": 1868.52, + "probability": 1.0 + }, + { + "word": " help.", + "start": 1868.52, + "end": 1868.84, + "probability": 1.0 + } + ] + }, + { + "id": 661, + "text": "I appreciate that.", + "start": 1868.96, + "end": 1870.06, + "words": [ + { + "word": " I", + "start": 1868.96, + "end": 1869.4, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 1869.4, + "end": 1869.72, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1869.72, + "end": 1870.06, + "probability": 1.0 + } + ] + }, + { + "id": 662, + "text": "It's what I do, man.", + "start": 1870.06, + "end": 1870.84, + "words": [ + { + "word": " It's", + "start": 1870.06, + "end": 1870.2, + "probability": 0.99853515625 + }, + { + "word": " what", + "start": 1870.2, + "end": 1870.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 1870.34, + "end": 1870.52, + "probability": 1.0 + }, + { + "word": " do,", + "start": 1870.52, + "end": 1870.68, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1870.76, + "end": 1870.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 663, + "text": "Thank you for the call.", + "start": 1870.92, + "end": 1871.62, + "words": [ + { + "word": " Thank", + "start": 1870.92, + "end": 1871.08, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1871.08, + "end": 1871.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 1871.24, + "end": 1871.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1871.34, + "end": 1871.44, + "probability": 1.0 + }, + { + "word": " call.", + "start": 1871.44, + "end": 1871.62, + "probability": 1.0 + } + ] + }, + { + "id": 664, + "text": "I appreciate it.", + "start": 1871.66, + "end": 1872.36, + "words": [ + { + "word": " I", + "start": 1871.66, + "end": 1871.78, + "probability": 0.958984375 + }, + { + "word": " appreciate", + "start": 1871.78, + "end": 1872.08, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1872.08, + "end": 1872.36, + "probability": 1.0 + } + ] + }, + { + "id": 665, + "text": "Thank you.", + "start": 1872.4, + "end": 1872.72, + "words": [ + { + "word": " Thank", + "start": 1872.4, + "end": 1872.5, + "probability": 0.572265625 + }, + { + "word": " you.", + "start": 1872.5, + "end": 1872.72, + "probability": 1.0 + } + ] + }, + { + "id": 666, + "text": "Bye.", + "start": 1872.82, + "end": 1873.26, + "words": [ + { + "word": " Bye.", + "start": 1872.82, + "end": 1873.26, + "probability": 0.97705078125 + } + ] + }, + { + "id": 667, + "text": "Thank you.", + "start": 1873.4, + "end": 1874.0, + "words": [ + { + "word": " Thank", + "start": 1873.4, + "end": 1873.84, + "probability": 0.98876953125 + }, + { + "word": " you.", + "start": 1873.84, + "end": 1874.0, + "probability": 1.0 + } + ] + }, + { + "id": 668, + "text": "Thank you.", + "start": 1874.1, + "end": 1874.34, + "words": [ + { + "word": " Thank", + "start": 1874.1, + "end": 1874.34, + "probability": 0.00913238525390625 + }, + { + "word": " you.", + "start": 1874.34, + "end": 1874.34, + "probability": 1.0 + } + ] + }, + { + "id": 669, + "text": "So, yeah, if you have infections.", + "start": 1874.36, + "end": 1877.12, + "words": [ + { + "word": " So,", + "start": 1874.36, + "end": 1874.8, + "probability": 0.9931640625 + }, + { + "word": " yeah,", + "start": 1874.88, + "end": 1875.02, + "probability": 1.0 + }, + { + "word": " if", + "start": 1875.06, + "end": 1875.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 1875.24, + "end": 1875.76, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1875.76, + "end": 1876.12, + "probability": 1.0 + }, + { + "word": " infections.", + "start": 1876.12, + "end": 1877.12, + "probability": 1.0 + } + ] + }, + { + "id": 670, + "text": "Infections, you know, and most everybody does.", + "start": 1877.12, + "end": 1881.1, + "words": [ + { + "word": " Infections,", + "start": 1877.12, + "end": 1877.4, + "probability": 0.6904296875 + }, + { + "word": " you", + "start": 1877.4, + "end": 1878.14, + "probability": 0.7939453125 + }, + { + "word": " know,", + "start": 1878.14, + "end": 1878.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 1878.32, + "end": 1878.48, + "probability": 0.994140625 + }, + { + "word": " most", + "start": 1878.48, + "end": 1879.6, + "probability": 0.97412109375 + }, + { + "word": " everybody", + "start": 1879.6, + "end": 1880.68, + "probability": 1.0 + }, + { + "word": " does.", + "start": 1880.68, + "end": 1881.1, + "probability": 1.0 + } + ] + }, + { + "id": 671, + "text": "I mean, that's one of the reasons that you'll notice that we occasionally will say,", + "start": 1881.4, + "end": 1886.04, + "words": [ + { + "word": " I", + "start": 1881.4, + "end": 1881.86, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 1881.86, + "end": 1882.0, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1882.0, + "end": 1882.16, + "probability": 1.0 + }, + { + "word": " one", + "start": 1882.16, + "end": 1882.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 1882.36, + "end": 1882.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1882.46, + "end": 1882.48, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 1882.48, + "end": 1882.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1882.78, + "end": 1883.06, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1883.06, + "end": 1883.6, + "probability": 0.9970703125 + }, + { + "word": " notice", + "start": 1883.6, + "end": 1883.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 1883.8, + "end": 1883.96, + "probability": 1.0 + }, + { + "word": " we", + "start": 1883.96, + "end": 1884.14, + "probability": 1.0 + }, + { + "word": " occasionally", + "start": 1884.14, + "end": 1885.14, + "probability": 1.0 + }, + { + "word": " will", + "start": 1885.14, + "end": 1885.58, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1885.58, + "end": 1886.04, + "probability": 1.0 + } + ] + }, + { + "id": 672, + "text": "hey, guess what?", + "start": 1886.24, + "end": 1886.96, + "words": [ + { + "word": " hey,", + "start": 1886.24, + "end": 1886.68, + "probability": 0.95458984375 + }, + { + "word": " guess", + "start": 1886.7, + "end": 1886.84, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1886.84, + "end": 1886.96, + "probability": 1.0 + } + ] + }, + { + "id": 673, + "text": "We're doing basically free tune-ups on machines.", + "start": 1887.02, + "end": 1891.54, + "words": [ + { + "word": " We're", + "start": 1887.02, + "end": 1887.18, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1887.18, + "end": 1887.72, + "probability": 0.99951171875 + }, + { + "word": " basically", + "start": 1887.72, + "end": 1889.24, + "probability": 0.998046875 + }, + { + "word": " free", + "start": 1889.24, + "end": 1889.66, + "probability": 0.99951171875 + }, + { + "word": " tune", + "start": 1889.66, + "end": 1889.98, + "probability": 0.99951171875 + }, + { + "word": "-ups", + "start": 1889.98, + "end": 1890.32, + "probability": 0.9794921875 + }, + { + "word": " on", + "start": 1890.32, + "end": 1891.26, + "probability": 0.998046875 + }, + { + "word": " machines.", + "start": 1891.26, + "end": 1891.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 674, + "text": "It's because every machine that comes in, nearly all of them, I would say greater than 80% have infections on them.", + "start": 1891.58, + "end": 1901.16, + "words": [ + { + "word": " It's", + "start": 1891.58, + "end": 1891.84, + "probability": 0.9921875 + }, + { + "word": " because", + "start": 1891.84, + "end": 1892.16, + "probability": 1.0 + }, + { + "word": " every", + "start": 1892.16, + "end": 1893.3, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1893.3, + "end": 1893.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 1893.74, + "end": 1893.94, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1893.94, + "end": 1894.14, + "probability": 1.0 + }, + { + "word": " in,", + "start": 1894.14, + "end": 1894.48, + "probability": 1.0 + }, + { + "word": " nearly", + "start": 1894.58, + "end": 1895.6, + "probability": 1.0 + }, + { + "word": " all", + "start": 1895.6, + "end": 1896.98, + "probability": 0.6884765625 + }, + { + "word": " of", + "start": 1896.98, + "end": 1897.2, + "probability": 1.0 + }, + { + "word": " them,", + "start": 1897.2, + "end": 1897.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 1897.4, + "end": 1897.76, + "probability": 0.9423828125 + }, + { + "word": " would", + "start": 1897.76, + "end": 1897.98, + "probability": 1.0 + }, + { + "word": " say", + "start": 1897.98, + "end": 1898.14, + "probability": 1.0 + }, + { + "word": " greater", + "start": 1898.14, + "end": 1898.68, + "probability": 0.97412109375 + }, + { + "word": " than", + "start": 1898.68, + "end": 1899.0, + "probability": 1.0 + }, + { + "word": " 80", + "start": 1899.0, + "end": 1899.2, + "probability": 1.0 + }, + { + "word": "%", + "start": 1899.2, + "end": 1899.56, + "probability": 0.955078125 + }, + { + "word": " have", + "start": 1899.56, + "end": 1900.32, + "probability": 1.0 + }, + { + "word": " infections", + "start": 1900.32, + "end": 1900.7, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1900.7, + "end": 1901.0, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 1901.0, + "end": 1901.16, + "probability": 1.0 + } + ] + }, + { + "id": 675, + "text": "And a lot of them are sort of innocuous.", + "start": 1901.56, + "end": 1903.8, + "words": [ + { + "word": " And", + "start": 1901.56, + "end": 1902.02, + "probability": 0.94873046875 + }, + { + "word": " a", + "start": 1902.02, + "end": 1902.7, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 1902.7, + "end": 1902.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 1902.86, + "end": 1902.9, + "probability": 1.0 + }, + { + "word": " them", + "start": 1902.9, + "end": 1902.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 1902.98, + "end": 1903.1, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1903.1, + "end": 1903.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1903.22, + "end": 1903.32, + "probability": 1.0 + }, + { + "word": " innocuous.", + "start": 1903.32, + "end": 1903.8, + "probability": 1.0 + } + ] + }, + { + "id": 676, + "text": "They're the ones that are just, like, advertising infections.", + "start": 1903.8, + "end": 1905.88, + "words": [ + { + "word": " They're", + "start": 1903.8, + "end": 1904.04, + "probability": 0.908203125 + }, + { + "word": " the", + "start": 1904.04, + "end": 1904.1, + "probability": 0.9990234375 + }, + { + "word": " ones", + "start": 1904.1, + "end": 1904.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 1904.3, + "end": 1904.44, + "probability": 1.0 + }, + { + "word": " are", + "start": 1904.44, + "end": 1904.54, + "probability": 1.0 + }, + { + "word": " just,", + "start": 1904.54, + "end": 1904.74, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1904.74, + "end": 1904.92, + "probability": 1.0 + }, + { + "word": " advertising", + "start": 1904.92, + "end": 1905.36, + "probability": 0.99951171875 + }, + { + "word": " infections.", + "start": 1905.36, + "end": 1905.88, + "probability": 1.0 + } + ] + }, + { + "id": 677, + "text": "Or whatever.", + "start": 1905.96, + "end": 1906.76, + "words": [ + { + "word": " Or", + "start": 1905.96, + "end": 1906.42, + "probability": 0.8671875 + }, + { + "word": " whatever.", + "start": 1906.42, + "end": 1906.76, + "probability": 0.26708984375 + } + ] + }, + { + "id": 678, + "text": "Or things that aren't terrible.", + "start": 1907.12, + "end": 1908.24, + "words": [ + { + "word": " Or", + "start": 1907.12, + "end": 1907.2, + "probability": 0.3115234375 + }, + { + "word": " things", + "start": 1907.2, + "end": 1907.34, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 1907.34, + "end": 1907.48, + "probability": 1.0 + }, + { + "word": " aren't", + "start": 1907.48, + "end": 1907.7, + "probability": 0.99853515625 + }, + { + "word": " terrible.", + "start": 1907.7, + "end": 1908.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 679, + "text": "Right?", + "start": 1908.54, + "end": 1908.92, + "words": [ + { + "word": " Right?", + "start": 1908.54, + "end": 1908.92, + "probability": 0.09912109375 + } + ] + }, + { + "id": 680, + "text": "They're not necessarily stealing your data or encrypting your stuff.", + "start": 1909.0, + "end": 1912.66, + "words": [ + { + "word": " They're", + "start": 1909.0, + "end": 1909.12, + "probability": 0.9970703125 + }, + { + "word": " not", + "start": 1909.12, + "end": 1909.22, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 1909.22, + "end": 1909.5, + "probability": 0.99951171875 + }, + { + "word": " stealing", + "start": 1909.5, + "end": 1909.98, + "probability": 0.99267578125 + }, + { + "word": " your", + "start": 1909.98, + "end": 1910.24, + "probability": 0.99951171875 + }, + { + "word": " data", + "start": 1910.24, + "end": 1910.52, + "probability": 1.0 + }, + { + "word": " or", + "start": 1910.52, + "end": 1911.16, + "probability": 0.70166015625 + }, + { + "word": " encrypting", + "start": 1911.16, + "end": 1912.22, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1912.22, + "end": 1912.36, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 1912.36, + "end": 1912.66, + "probability": 1.0 + } + ] + }, + { + "id": 681, + "text": "But it's just so prevalent.", + "start": 1914.0199999999998, + "end": 1915.8, + "words": [ + { + "word": " But", + "start": 1914.0199999999998, + "end": 1914.4199999999998, + "probability": 0.99609375 + }, + { + "word": " it's", + "start": 1914.4199999999998, + "end": 1914.82, + "probability": 0.9697265625 + }, + { + "word": " just", + "start": 1914.82, + "end": 1914.96, + "probability": 1.0 + }, + { + "word": " so", + "start": 1914.96, + "end": 1915.28, + "probability": 1.0 + }, + { + "word": " prevalent.", + "start": 1915.28, + "end": 1915.8, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "And people just get used to it.", + "start": 1916.02, + "end": 1917.18, + "words": [ + { + "word": " And", + "start": 1916.02, + "end": 1916.22, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 1916.22, + "end": 1916.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 1916.44, + "end": 1916.64, + "probability": 1.0 + }, + { + "word": " get", + "start": 1916.64, + "end": 1916.76, + "probability": 1.0 + }, + { + "word": " used", + "start": 1916.76, + "end": 1916.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1916.9, + "end": 1917.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1917.06, + "end": 1917.18, + "probability": 1.0 + } + ] + }, + { + "id": 683, + "text": "They're like, yeah, you know, all that advertising, all the extra spam or the email worm that I have on my computer.", + "start": 1917.2, + "end": 1923.82, + "words": [ + { + "word": " They're", + "start": 1917.2, + "end": 1917.28, + "probability": 0.9951171875 + }, + { + "word": " like,", + "start": 1917.28, + "end": 1917.38, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 1917.48, + "end": 1917.64, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 1917.68, + "end": 1917.8, + "probability": 0.95458984375 + }, + { + "word": " know,", + "start": 1917.8, + "end": 1917.92, + "probability": 1.0 + }, + { + "word": " all", + "start": 1917.94, + "end": 1918.04, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1918.04, + "end": 1918.18, + "probability": 0.99951171875 + }, + { + "word": " advertising,", + "start": 1918.18, + "end": 1918.6, + "probability": 1.0 + }, + { + "word": " all", + "start": 1918.76, + "end": 1918.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1918.92, + "end": 1919.08, + "probability": 0.99658203125 + }, + { + "word": " extra", + "start": 1919.08, + "end": 1919.9, + "probability": 0.99755859375 + }, + { + "word": " spam", + "start": 1919.9, + "end": 1920.76, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1920.76, + "end": 1921.42, + "probability": 0.81005859375 + }, + { + "word": " the", + "start": 1921.42, + "end": 1921.68, + "probability": 1.0 + }, + { + "word": " email", + "start": 1921.68, + "end": 1922.34, + "probability": 0.80029296875 + }, + { + "word": " worm", + "start": 1922.34, + "end": 1922.72, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1922.72, + "end": 1922.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 1922.94, + "end": 1923.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 1923.04, + "end": 1923.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 1923.16, + "end": 1923.3, + "probability": 1.0 + }, + { + "word": " my", + "start": 1923.3, + "end": 1923.46, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1923.46, + "end": 1923.82, + "probability": 1.0 + } + ] + }, + { + "id": 684, + "text": "I just got used to it.", + "start": 1924.12, + "end": 1925.18, + "words": [ + { + "word": " I", + "start": 1924.12, + "end": 1924.52, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1924.52, + "end": 1924.66, + "probability": 1.0 + }, + { + "word": " got", + "start": 1924.66, + "end": 1924.74, + "probability": 0.9482421875 + }, + { + "word": " used", + "start": 1924.74, + "end": 1924.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1924.88, + "end": 1925.08, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1925.08, + "end": 1925.18, + "probability": 1.0 + } + ] + }, + { + "id": 685, + "text": "So, no need to fix it.", + "start": 1925.22, + "end": 1926.88, + "words": [ + { + "word": " So,", + "start": 1925.22, + "end": 1925.32, + "probability": 0.98681640625 + }, + { + "word": " no", + "start": 1925.34, + "end": 1925.68, + "probability": 0.99560546875 + }, + { + "word": " need", + "start": 1925.68, + "end": 1926.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1926.36, + "end": 1926.5, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1926.5, + "end": 1926.72, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1926.72, + "end": 1926.88, + "probability": 1.0 + } + ] + }, + { + "id": 686, + "text": "Come on now.", + "start": 1927.18, + "end": 1928.04, + "words": [ + { + "word": " Come", + "start": 1927.18, + "end": 1927.58, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1927.58, + "end": 1927.82, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1927.82, + "end": 1928.04, + "probability": 0.85205078125 + } + ] + }, + { + "id": 687, + "text": "Drives me crazy.", + "start": 1928.36, + "end": 1929.46, + "words": [ + { + "word": " Drives", + "start": 1928.36, + "end": 1928.76, + "probability": 0.99560546875 + }, + { + "word": " me", + "start": 1928.76, + "end": 1928.96, + "probability": 1.0 + }, + { + "word": " crazy.", + "start": 1928.96, + "end": 1929.46, + "probability": 1.0 + } + ] + }, + { + "id": 688, + "text": "Just fix it.", + "start": 1929.82, + "end": 1930.88, + "words": [ + { + "word": " Just", + "start": 1929.82, + "end": 1930.1, + "probability": 0.99951171875 + }, + { + "word": " fix", + "start": 1930.1, + "end": 1930.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1930.6, + "end": 1930.88, + "probability": 1.0 + } + ] + }, + { + "id": 689, + "text": "Right?", + "start": 1931.1, + "end": 1931.5, + "words": [ + { + "word": " Right?", + "start": 1931.1, + "end": 1931.5, + "probability": 0.90625 + } + ] + }, + { + "id": 690, + "text": "And then listen.", + "start": 1931.58, + "end": 1932.76, + "words": [ + { + "word": " And", + "start": 1931.58, + "end": 1931.82, + "probability": 0.9951171875 + }, + { + "word": " then", + "start": 1931.82, + "end": 1932.3, + "probability": 0.998046875 + }, + { + "word": " listen.", + "start": 1932.3, + "end": 1932.76, + "probability": 0.98486328125 + } + ] + }, + { + "id": 691, + "text": "Because any time that you bring your computer into Computer Guru.", + "start": 1932.92, + "end": 1936.16, + "words": [ + { + "word": " Because", + "start": 1932.92, + "end": 1933.06, + "probability": 0.92626953125 + }, + { + "word": " any", + "start": 1933.06, + "end": 1933.84, + "probability": 0.72119140625 + }, + { + "word": " time", + "start": 1933.84, + "end": 1934.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1934.16, + "end": 1934.34, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1934.34, + "end": 1934.42, + "probability": 1.0 + }, + { + "word": " bring", + "start": 1934.42, + "end": 1934.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 1934.58, + "end": 1934.76, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1934.76, + "end": 1935.34, + "probability": 1.0 + }, + { + "word": " into", + "start": 1935.34, + "end": 1935.62, + "probability": 0.99365234375 + }, + { + "word": " Computer", + "start": 1935.62, + "end": 1935.88, + "probability": 0.5458984375 + }, + { + "word": " Guru.", + "start": 1935.88, + "end": 1936.16, + "probability": 0.73583984375 + } + ] + }, + { + "id": 692, + "text": "If you bring your computer in.", + "start": 1936.16, + "end": 1937.62, + "words": [ + { + "word": " If", + "start": 1936.16, + "end": 1936.64, + "probability": 0.54833984375 + }, + { + "word": " you", + "start": 1936.64, + "end": 1936.74, + "probability": 1.0 + }, + { + "word": " bring", + "start": 1936.74, + "end": 1936.96, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1936.96, + "end": 1937.08, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1937.08, + "end": 1937.34, + "probability": 1.0 + }, + { + "word": " in.", + "start": 1937.34, + "end": 1937.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 693, + "text": "When you pick it up, we're going to be like, okay, this is what you need to do to not have this happen again.", + "start": 1937.9, + "end": 1943.26, + "words": [ + { + "word": " When", + "start": 1937.9, + "end": 1938.3, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 1938.3, + "end": 1938.46, + "probability": 1.0 + }, + { + "word": " pick", + "start": 1938.46, + "end": 1938.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 1938.6, + "end": 1938.7, + "probability": 1.0 + }, + { + "word": " up,", + "start": 1938.7, + "end": 1938.9, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1938.92, + "end": 1939.28, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1939.28, + "end": 1939.34, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 1939.34, + "end": 1939.44, + "probability": 1.0 + }, + { + "word": " be", + "start": 1939.44, + "end": 1939.52, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1939.52, + "end": 1939.72, + "probability": 0.9990234375 + }, + { + "word": " okay,", + "start": 1939.84, + "end": 1940.18, + "probability": 0.90869140625 + }, + { + "word": " this", + "start": 1940.24, + "end": 1940.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 1940.74, + "end": 1940.92, + "probability": 1.0 + }, + { + "word": " what", + "start": 1940.92, + "end": 1941.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 1941.1, + "end": 1941.24, + "probability": 1.0 + }, + { + "word": " need", + "start": 1941.24, + "end": 1941.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1941.42, + "end": 1941.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 1941.54, + "end": 1941.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1941.7, + "end": 1942.02, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 1942.02, + "end": 1942.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 1942.22, + "end": 1942.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 1942.48, + "end": 1942.74, + "probability": 1.0 + }, + { + "word": " happen", + "start": 1942.74, + "end": 1942.96, + "probability": 1.0 + }, + { + "word": " again.", + "start": 1942.96, + "end": 1943.26, + "probability": 1.0 + } + ] + }, + { + "id": 694, + "text": "And a lot of times, this is free advice.", + "start": 1943.54, + "end": 1945.78, + "words": [ + { + "word": " And", + "start": 1943.54, + "end": 1943.78, + "probability": 0.931640625 + }, + { + "word": " a", + "start": 1943.78, + "end": 1944.1, + "probability": 0.9931640625 + }, + { + "word": " lot", + "start": 1944.1, + "end": 1944.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 1944.28, + "end": 1944.34, + "probability": 1.0 + }, + { + "word": " times,", + "start": 1944.34, + "end": 1944.54, + "probability": 1.0 + }, + { + "word": " this", + "start": 1944.56, + "end": 1944.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 1944.9, + "end": 1945.1, + "probability": 1.0 + }, + { + "word": " free", + "start": 1945.1, + "end": 1945.38, + "probability": 1.0 + }, + { + "word": " advice.", + "start": 1945.38, + "end": 1945.78, + "probability": 1.0 + } + ] + }, + { + "id": 695, + "text": "Right?", + "start": 1946.0, + "end": 1946.3, + "words": [ + { + "word": " Right?", + "start": 1946.0, + "end": 1946.3, + "probability": 0.2919921875 + } + ] + }, + { + "id": 696, + "text": "It's like, you should install this piece of software.", + "start": 1946.34, + "end": 1949.6, + "words": [ + { + "word": " It's", + "start": 1946.34, + "end": 1946.58, + "probability": 0.9970703125 + }, + { + "word": " like,", + "start": 1946.58, + "end": 1946.76, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1946.86, + "end": 1947.82, + "probability": 1.0 + }, + { + "word": " should", + "start": 1947.82, + "end": 1948.18, + "probability": 1.0 + }, + { + "word": " install", + "start": 1948.18, + "end": 1948.72, + "probability": 1.0 + }, + { + "word": " this", + "start": 1948.72, + "end": 1948.98, + "probability": 1.0 + }, + { + "word": " piece", + "start": 1948.98, + "end": 1949.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 1949.16, + "end": 1949.28, + "probability": 1.0 + }, + { + "word": " software.", + "start": 1949.28, + "end": 1949.6, + "probability": 1.0 + } + ] + }, + { + "id": 697, + "text": "You should take these cautionary steps to make sure that you don't get this infection again.", + "start": 1949.86, + "end": 1956.84, + "words": [ + { + "word": " You", + "start": 1949.86, + "end": 1950.26, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 1950.26, + "end": 1950.64, + "probability": 1.0 + }, + { + "word": " take", + "start": 1950.64, + "end": 1951.08, + "probability": 1.0 + }, + { + "word": " these", + "start": 1951.08, + "end": 1951.72, + "probability": 1.0 + }, + { + "word": " cautionary", + "start": 1951.72, + "end": 1953.04, + "probability": 1.0 + }, + { + "word": " steps", + "start": 1953.04, + "end": 1953.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1953.42, + "end": 1954.54, + "probability": 0.499755859375 + }, + { + "word": " make", + "start": 1954.54, + "end": 1955.12, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1955.12, + "end": 1955.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 1955.28, + "end": 1955.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 1955.44, + "end": 1955.52, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1955.52, + "end": 1955.82, + "probability": 1.0 + }, + { + "word": " get", + "start": 1955.82, + "end": 1956.18, + "probability": 1.0 + }, + { + "word": " this", + "start": 1956.18, + "end": 1956.36, + "probability": 1.0 + }, + { + "word": " infection", + "start": 1956.36, + "end": 1956.56, + "probability": 1.0 + }, + { + "word": " again.", + "start": 1956.56, + "end": 1956.84, + "probability": 1.0 + } + ] + }, + { + "id": 698, + "text": "You should have a backup.", + "start": 1957.04, + "end": 1958.14, + "words": [ + { + "word": " You", + "start": 1957.04, + "end": 1957.44, + "probability": 0.99853515625 + }, + { + "word": " should", + "start": 1957.44, + "end": 1957.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 1957.64, + "end": 1957.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 1957.78, + "end": 1957.92, + "probability": 1.0 + }, + { + "word": " backup.", + "start": 1957.92, + "end": 1958.14, + "probability": 1.0 + } + ] + }, + { + "id": 699, + "text": "You should have all of these different things.", + "start": 1958.32, + "end": 1959.78, + "words": [ + { + "word": " You", + "start": 1958.32, + "end": 1958.44, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 1958.44, + "end": 1958.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 1958.62, + "end": 1958.76, + "probability": 1.0 + }, + { + "word": " all", + "start": 1958.76, + "end": 1958.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 1958.98, + "end": 1959.06, + "probability": 1.0 + }, + { + "word": " these", + "start": 1959.06, + "end": 1959.22, + "probability": 1.0 + }, + { + "word": " different", + "start": 1959.22, + "end": 1959.46, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1959.46, + "end": 1959.78, + "probability": 1.0 + } + ] + }, + { + "id": 700, + "text": "And we're going to tell you, this is what you need to do.", + "start": 1959.82, + "end": 1962.06, + "words": [ + { + "word": " And", + "start": 1959.82, + "end": 1959.92, + "probability": 0.99658203125 + }, + { + "word": " we're", + "start": 1959.92, + "end": 1960.02, + "probability": 1.0 + }, + { + "word": " going", + "start": 1960.02, + "end": 1960.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1960.08, + "end": 1960.16, + "probability": 1.0 + }, + { + "word": " tell", + "start": 1960.16, + "end": 1960.38, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1960.38, + "end": 1960.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 1960.64, + "end": 1960.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 1960.82, + "end": 1960.96, + "probability": 1.0 + }, + { + "word": " what", + "start": 1960.96, + "end": 1961.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 1961.2, + "end": 1961.4, + "probability": 1.0 + }, + { + "word": " need", + "start": 1961.4, + "end": 1961.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1961.66, + "end": 1961.84, + "probability": 1.0 + }, + { + "word": " do.", + "start": 1961.84, + "end": 1962.06, + "probability": 1.0 + } + ] + }, + { + "id": 701, + "text": "But if you don't listen, you're going to get an infection again.", + "start": 1963.4999999999998, + "end": 1966.14, + "words": [ + { + "word": " But", + "start": 1963.4999999999998, + "end": 1963.8999999999999, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1963.8999999999999, + "end": 1964.3, + "probability": 0.8720703125 + }, + { + "word": " you", + "start": 1964.3, + "end": 1964.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1964.44, + "end": 1964.54, + "probability": 1.0 + }, + { + "word": " listen,", + "start": 1964.54, + "end": 1964.78, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1964.96, + "end": 1965.36, + "probability": 0.939453125 + }, + { + "word": " going", + "start": 1965.36, + "end": 1965.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 1965.44, + "end": 1965.5, + "probability": 1.0 + }, + { + "word": " get", + "start": 1965.5, + "end": 1965.62, + "probability": 1.0 + }, + { + "word": " an", + "start": 1965.62, + "end": 1965.68, + "probability": 0.96923828125 + }, + { + "word": " infection", + "start": 1965.68, + "end": 1965.88, + "probability": 1.0 + }, + { + "word": " again.", + "start": 1965.88, + "end": 1966.14, + "probability": 0.9384765625 + } + ] + }, + { + "id": 702, + "text": "And you just, you don't have to, it doesn't have to be that way.", + "start": 1966.14, + "end": 1969.24, + "words": [ + { + "word": " And", + "start": 1966.14, + "end": 1966.34, + "probability": 0.11798095703125 + }, + { + "word": " you", + "start": 1966.34, + "end": 1966.68, + "probability": 0.423828125 + }, + { + "word": " just,", + "start": 1966.68, + "end": 1967.06, + "probability": 0.59765625 + }, + { + "word": " you", + "start": 1967.14, + "end": 1967.68, + "probability": 0.98681640625 + }, + { + "word": " don't", + "start": 1967.68, + "end": 1967.84, + "probability": 1.0 + }, + { + "word": " have", + "start": 1967.84, + "end": 1967.98, + "probability": 1.0 + }, + { + "word": " to,", + "start": 1967.98, + "end": 1968.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 1968.2, + "end": 1968.42, + "probability": 0.99609375 + }, + { + "word": " doesn't", + "start": 1968.42, + "end": 1968.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 1968.6, + "end": 1968.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1968.72, + "end": 1968.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 1968.82, + "end": 1968.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 1968.94, + "end": 1969.08, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1969.08, + "end": 1969.24, + "probability": 1.0 + } + ] + }, + { + "id": 703, + "text": "Your computer doesn't have to be slow.", + "start": 1969.3, + "end": 1970.58, + "words": [ + { + "word": " Your", + "start": 1969.3, + "end": 1969.46, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 1969.46, + "end": 1969.72, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1969.72, + "end": 1969.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 1969.98, + "end": 1970.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1970.08, + "end": 1970.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 1970.18, + "end": 1970.28, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1970.28, + "end": 1970.58, + "probability": 1.0 + } + ] + }, + { + "id": 704, + "text": "You don't have to be afraid of using your computer online.", + "start": 1970.78, + "end": 1973.34, + "words": [ + { + "word": " You", + "start": 1970.78, + "end": 1971.02, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1971.02, + "end": 1971.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 1971.18, + "end": 1971.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1971.28, + "end": 1971.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 1971.42, + "end": 1971.52, + "probability": 0.99853515625 + }, + { + "word": " afraid", + "start": 1971.52, + "end": 1971.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 1971.86, + "end": 1972.2, + "probability": 1.0 + }, + { + "word": " using", + "start": 1972.2, + "end": 1972.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 1972.44, + "end": 1972.76, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1972.76, + "end": 1973.0, + "probability": 1.0 + }, + { + "word": " online.", + "start": 1973.0, + "end": 1973.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 705, + "text": "You don't have to worry about your data getting stolen or your passwords being stolen.", + "start": 1973.82, + "end": 1980.86, + "words": [ + { + "word": " You", + "start": 1973.82, + "end": 1974.22, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1974.22, + "end": 1974.42, + "probability": 1.0 + }, + { + "word": " have", + "start": 1974.42, + "end": 1974.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1974.56, + "end": 1974.84, + "probability": 1.0 + }, + { + "word": " worry", + "start": 1974.84, + "end": 1975.42, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1975.42, + "end": 1975.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 1975.88, + "end": 1976.32, + "probability": 0.994140625 + }, + { + "word": " data", + "start": 1976.32, + "end": 1977.32, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 1977.32, + "end": 1977.54, + "probability": 1.0 + }, + { + "word": " stolen", + "start": 1977.54, + "end": 1977.92, + "probability": 1.0 + }, + { + "word": " or", + "start": 1977.92, + "end": 1978.4, + "probability": 0.9794921875 + }, + { + "word": " your", + "start": 1978.4, + "end": 1978.62, + "probability": 1.0 + }, + { + "word": " passwords", + "start": 1978.62, + "end": 1979.84, + "probability": 0.88037109375 + }, + { + "word": " being", + "start": 1979.84, + "end": 1980.5, + "probability": 1.0 + }, + { + "word": " stolen.", + "start": 1980.5, + "end": 1980.86, + "probability": 1.0 + } + ] + }, + { + "id": 706, + "text": "You don't have to worry about any of that stuff.", + "start": 1981.06, + "end": 1982.46, + "words": [ + { + "word": " You", + "start": 1981.06, + "end": 1981.46, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1981.46, + "end": 1981.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 1981.56, + "end": 1981.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1981.64, + "end": 1981.64, + "probability": 1.0 + }, + { + "word": " worry", + "start": 1981.64, + "end": 1981.76, + "probability": 1.0 + }, + { + "word": " about", + "start": 1981.76, + "end": 1981.92, + "probability": 1.0 + }, + { + "word": " any", + "start": 1981.92, + "end": 1982.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 1982.1, + "end": 1982.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1982.14, + "end": 1982.26, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 1982.26, + "end": 1982.46, + "probability": 1.0 + } + ] + }, + { + "id": 707, + "text": "It just takes a bit of planning.", + "start": 1982.58, + "end": 1986.46, + "words": [ + { + "word": " It", + "start": 1982.58, + "end": 1982.82, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1982.82, + "end": 1983.06, + "probability": 1.0 + }, + { + "word": " takes", + "start": 1983.06, + "end": 1983.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 1983.36, + "end": 1984.12, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1984.12, + "end": 1984.42, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1984.42, + "end": 1985.06, + "probability": 1.0 + }, + { + "word": " planning.", + "start": 1985.06, + "end": 1986.46, + "probability": 1.0 + } + ] + }, + { + "id": 708, + "text": "Right?", + "start": 1987.1, + "end": 1987.5, + "words": [ + { + "word": " Right?", + "start": 1987.1, + "end": 1987.5, + "probability": 0.9453125 + } + ] + }, + { + "id": 709, + "text": "And a little bit of advice.", + "start": 1987.6, + "end": 1988.94, + "words": [ + { + "word": " And", + "start": 1987.6, + "end": 1987.78, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1987.78, + "end": 1988.12, + "probability": 0.99853515625 + }, + { + "word": " little", + "start": 1988.12, + "end": 1988.46, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1988.46, + "end": 1988.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 1988.62, + "end": 1988.7, + "probability": 1.0 + }, + { + "word": " advice.", + "start": 1988.7, + "end": 1988.94, + "probability": 1.0 + } + ] + }, + { + "id": 710, + "text": "All right.", + "start": 1991.2799999999997, + "end": 1992.08, + "words": [ + { + "word": " All", + "start": 1991.2799999999997, + "end": 1991.6799999999998, + "probability": 0.83349609375 + }, + { + "word": " right.", + "start": 1991.6799999999998, + "end": 1992.08, + "probability": 1.0 + } + ] + }, + { + "id": 711, + "text": "Let's go and talk to Charles.", + "start": 1992.1, + "end": 1992.82, + "words": [ + { + "word": " Let's", + "start": 1992.1, + "end": 1992.3, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1992.3, + "end": 1992.32, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 1992.32, + "end": 1992.4, + "probability": 0.045654296875 + }, + { + "word": " talk", + "start": 1992.4, + "end": 1992.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1992.54, + "end": 1992.62, + "probability": 1.0 + }, + { + "word": " Charles.", + "start": 1992.62, + "end": 1992.82, + "probability": 1.0 + } + ] + }, + { + "id": 712, + "text": "Hey, Charles.", + "start": 1992.96, + "end": 1993.44, + "words": [ + { + "word": " Hey,", + "start": 1992.96, + "end": 1993.28, + "probability": 0.99853515625 + }, + { + "word": " Charles.", + "start": 1993.28, + "end": 1993.44, + "probability": 1.0 + } + ] + }, + { + "id": 713, + "text": "How are you today?", + "start": 1993.5, + "end": 1994.02, + "words": [ + { + "word": " How", + "start": 1993.5, + "end": 1993.58, + "probability": 0.9951171875 + }, + { + "word": " are", + "start": 1993.58, + "end": 1993.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 1993.72, + "end": 1993.84, + "probability": 1.0 + }, + { + "word": " today?", + "start": 1993.84, + "end": 1994.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 714, + "text": "Hey, good.", + "start": 1995.28, + "end": 1995.86, + "words": [ + { + "word": " Hey,", + "start": 1995.28, + "end": 1995.68, + "probability": 0.99462890625 + }, + { + "word": " good.", + "start": 1995.7, + "end": 1995.86, + "probability": 0.99853515625 + } + ] + }, + { + "id": 715, + "text": "Good morning.", + "start": 1995.86, + "end": 1997.0, + "words": [ + { + "word": " Good", + "start": 1995.86, + "end": 1996.0, + "probability": 0.943359375 + }, + { + "word": " morning.", + "start": 1996.0, + "end": 1997.0, + "probability": 0.9892578125 + } + ] + }, + { + "id": 716, + "text": "How are you?", + "start": 1997.26, + "end": 1997.88, + "words": [ + { + "word": " How", + "start": 1997.26, + "end": 1997.62, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 1997.62, + "end": 1997.76, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1997.76, + "end": 1997.88, + "probability": 1.0 + } + ] + }, + { + "id": 717, + "text": "I'm doing well.", + "start": 1998.06, + "end": 1998.72, + "words": [ + { + "word": " I'm", + "start": 1998.06, + "end": 1998.28, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 1998.28, + "end": 1998.46, + "probability": 1.0 + }, + { + "word": " well.", + "start": 1998.46, + "end": 1998.72, + "probability": 1.0 + } + ] + }, + { + "id": 718, + "text": "Thank you.", + "start": 1998.76, + "end": 1999.08, + "words": [ + { + "word": " Thank", + "start": 1998.76, + "end": 1998.9, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 1998.9, + "end": 1999.08, + "probability": 1.0 + } + ] + }, + { + "id": 719, + "text": "Thank you.", + "start": 1999.6, + "end": 2000.26, + "words": [ + { + "word": " Thank", + "start": 1999.6, + "end": 2000.08, + "probability": 0.9951171875 + }, + { + "word": " you.", + "start": 2000.08, + "end": 2000.26, + "probability": 1.0 + } + ] + }, + { + "id": 720, + "text": "Well, my problem's kind of weird.", + "start": 2000.28, + "end": 2002.42, + "words": [ + { + "word": " Well,", + "start": 2000.28, + "end": 2000.48, + "probability": 0.99609375 + }, + { + "word": " my", + "start": 2000.6, + "end": 2001.3, + "probability": 1.0 + }, + { + "word": " problem's", + "start": 2001.3, + "end": 2001.9, + "probability": 0.83935546875 + }, + { + "word": " kind", + "start": 2001.9, + "end": 2002.02, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2002.02, + "end": 2002.18, + "probability": 1.0 + }, + { + "word": " weird.", + "start": 2002.18, + "end": 2002.42, + "probability": 1.0 + } + ] + }, + { + "id": 721, + "text": "I've got a new Windows 8.1 machine here in ACES.", + "start": 2002.58, + "end": 2005.88, + "words": [ + { + "word": " I've", + "start": 2002.58, + "end": 2003.06, + "probability": 1.0 + }, + { + "word": " got", + "start": 2003.06, + "end": 2003.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 2003.24, + "end": 2003.38, + "probability": 1.0 + }, + { + "word": " new", + "start": 2003.38, + "end": 2003.68, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 2003.68, + "end": 2004.04, + "probability": 1.0 + }, + { + "word": " 8", + "start": 2004.04, + "end": 2004.32, + "probability": 0.97216796875 + }, + { + "word": ".1", + "start": 2004.32, + "end": 2004.58, + "probability": 0.98193359375 + }, + { + "word": " machine", + "start": 2004.58, + "end": 2004.98, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 2004.98, + "end": 2005.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 2005.28, + "end": 2005.4, + "probability": 0.99462890625 + }, + { + "word": " ACES.", + "start": 2005.4, + "end": 2005.88, + "probability": 0.751953125 + } + ] + }, + { + "id": 722, + "text": "My wife likes to use Thunderbird as her mail client.", + "start": 2006.74, + "end": 2010.3, + "words": [ + { + "word": " My", + "start": 2006.74, + "end": 2007.22, + "probability": 0.9970703125 + }, + { + "word": " wife", + "start": 2007.22, + "end": 2007.7, + "probability": 1.0 + }, + { + "word": " likes", + "start": 2007.7, + "end": 2007.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2007.96, + "end": 2008.16, + "probability": 1.0 + }, + { + "word": " use", + "start": 2008.16, + "end": 2008.38, + "probability": 1.0 + }, + { + "word": " Thunderbird", + "start": 2008.38, + "end": 2009.0, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 2009.0, + "end": 2009.62, + "probability": 0.99169921875 + }, + { + "word": " her", + "start": 2009.62, + "end": 2009.76, + "probability": 0.99951171875 + }, + { + "word": " mail", + "start": 2009.76, + "end": 2009.94, + "probability": 0.970703125 + }, + { + "word": " client.", + "start": 2009.94, + "end": 2010.3, + "probability": 1.0 + } + ] + }, + { + "id": 723, + "text": "Okay.", + "start": 2010.52, + "end": 2010.78, + "words": [ + { + "word": " Okay.", + "start": 2010.52, + "end": 2010.78, + "probability": 0.8212890625 + } + ] + }, + { + "id": 724, + "text": "And since we installed it on this machine, it just doesn't play well.", + "start": 2011.48, + "end": 2015.48, + "words": [ + { + "word": " And", + "start": 2011.48, + "end": 2011.96, + "probability": 0.97314453125 + }, + { + "word": " since", + "start": 2011.96, + "end": 2012.2, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 2012.2, + "end": 2012.38, + "probability": 1.0 + }, + { + "word": " installed", + "start": 2012.38, + "end": 2012.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 2012.7, + "end": 2013.0, + "probability": 1.0 + }, + { + "word": " on", + "start": 2013.0, + "end": 2013.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 2013.12, + "end": 2013.32, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 2013.32, + "end": 2013.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 2013.78, + "end": 2013.98, + "probability": 1.0 + }, + { + "word": " just", + "start": 2013.98, + "end": 2014.32, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 2014.32, + "end": 2014.9, + "probability": 1.0 + }, + { + "word": " play", + "start": 2014.9, + "end": 2015.16, + "probability": 1.0 + }, + { + "word": " well.", + "start": 2015.16, + "end": 2015.48, + "probability": 1.0 + } + ] + }, + { + "id": 725, + "text": "It continually goes into not responding mode and we have to shut it down.", + "start": 2015.88, + "end": 2020.18, + "words": [ + { + "word": " It", + "start": 2015.88, + "end": 2016.36, + "probability": 0.99951171875 + }, + { + "word": " continually", + "start": 2016.36, + "end": 2016.98, + "probability": 0.9970703125 + }, + { + "word": " goes", + "start": 2016.98, + "end": 2017.26, + "probability": 1.0 + }, + { + "word": " into", + "start": 2017.26, + "end": 2017.48, + "probability": 1.0 + }, + { + "word": " not", + "start": 2017.48, + "end": 2018.18, + "probability": 0.99853515625 + }, + { + "word": " responding", + "start": 2018.18, + "end": 2018.64, + "probability": 0.9775390625 + }, + { + "word": " mode", + "start": 2018.64, + "end": 2019.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 2019.12, + "end": 2019.3, + "probability": 0.267822265625 + }, + { + "word": " we", + "start": 2019.3, + "end": 2019.44, + "probability": 1.0 + }, + { + "word": " have", + "start": 2019.44, + "end": 2019.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2019.54, + "end": 2019.68, + "probability": 1.0 + }, + { + "word": " shut", + "start": 2019.68, + "end": 2019.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 2019.84, + "end": 2019.98, + "probability": 1.0 + }, + { + "word": " down.", + "start": 2019.98, + "end": 2020.18, + "probability": 1.0 + } + ] + }, + { + "id": 726, + "text": "And she can't delete stuff from the inbox as easily.", + "start": 2020.44, + "end": 2025.32, + "words": [ + { + "word": " And", + "start": 2020.44, + "end": 2020.6, + "probability": 0.406982421875 + }, + { + "word": " she", + "start": 2020.6, + "end": 2021.48, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 2021.48, + "end": 2021.78, + "probability": 1.0 + }, + { + "word": " delete", + "start": 2021.78, + "end": 2022.0, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2022.0, + "end": 2022.42, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 2022.42, + "end": 2022.78, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 2022.78, + "end": 2024.42, + "probability": 1.0 + }, + { + "word": " inbox", + "start": 2024.42, + "end": 2024.68, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 2024.68, + "end": 2025.0, + "probability": 0.984375 + }, + { + "word": " easily.", + "start": 2025.0, + "end": 2025.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 727, + "text": "And so, I'm going to tell you a little bit about this.", + "start": 2025.38, + "end": 2025.84, + "words": [ + { + "word": " And", + "start": 2025.38, + "end": 2025.6, + "probability": 0.6162109375 + }, + { + "word": " so,", + "start": 2025.6, + "end": 2025.84, + "probability": 0.08526611328125 + }, + { + "word": " I'm", + "start": 2025.84, + "end": 2025.84, + "probability": 0.449951171875 + }, + { + "word": " going", + "start": 2025.84, + "end": 2025.84, + "probability": 0.4677734375 + }, + { + "word": " to", + "start": 2025.84, + "end": 2025.84, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 2025.84, + "end": 2025.84, + "probability": 0.050628662109375 + }, + { + "word": " you", + "start": 2025.84, + "end": 2025.84, + "probability": 0.81494140625 + }, + { + "word": " a", + "start": 2025.84, + "end": 2025.84, + "probability": 0.525390625 + }, + { + "word": " little", + "start": 2025.84, + "end": 2025.84, + "probability": 0.74267578125 + }, + { + "word": " bit", + "start": 2025.84, + "end": 2025.84, + "probability": 0.9033203125 + }, + { + "word": " about", + "start": 2025.84, + "end": 2025.84, + "probability": 0.91650390625 + }, + { + "word": " this.", + "start": 2025.84, + "end": 2025.84, + "probability": 0.091064453125 + } + ] + }, + { + "id": 728, + "text": "I'm just wondering, is that something you've heard of?", + "start": 2025.86, + "end": 2028.48, + "words": [ + { + "word": " I'm", + "start": 2025.86, + "end": 2026.26, + "probability": 0.96826171875 + }, + { + "word": " just", + "start": 2026.26, + "end": 2026.36, + "probability": 0.99951171875 + }, + { + "word": " wondering,", + "start": 2026.36, + "end": 2026.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 2026.76, + "end": 2026.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 2026.94, + "end": 2027.4, + "probability": 0.99853515625 + }, + { + "word": " something", + "start": 2027.4, + "end": 2027.7, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2027.7, + "end": 2028.0, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2028.0, + "end": 2028.22, + "probability": 1.0 + }, + { + "word": " of?", + "start": 2028.22, + "end": 2028.48, + "probability": 1.0 + } + ] + }, + { + "id": 729, + "text": "Are there better mail clients out there that'll work?", + "start": 2028.56, + "end": 2030.98, + "words": [ + { + "word": " Are", + "start": 2028.56, + "end": 2028.82, + "probability": 0.98876953125 + }, + { + "word": " there", + "start": 2028.82, + "end": 2029.14, + "probability": 1.0 + }, + { + "word": " better", + "start": 2029.14, + "end": 2029.4, + "probability": 1.0 + }, + { + "word": " mail", + "start": 2029.4, + "end": 2029.7, + "probability": 0.97900390625 + }, + { + "word": " clients", + "start": 2029.7, + "end": 2030.0, + "probability": 1.0 + }, + { + "word": " out", + "start": 2030.0, + "end": 2030.36, + "probability": 1.0 + }, + { + "word": " there", + "start": 2030.36, + "end": 2030.56, + "probability": 1.0 + }, + { + "word": " that'll", + "start": 2030.56, + "end": 2030.78, + "probability": 0.7841796875 + }, + { + "word": " work?", + "start": 2030.78, + "end": 2030.98, + "probability": 1.0 + } + ] + }, + { + "id": 730, + "text": "Anytime you use any of the Mozilla products, I die a little bit inside.", + "start": 2031.2, + "end": 2035.56, + "words": [ + { + "word": " Anytime", + "start": 2031.2, + "end": 2031.46, + "probability": 0.93115234375 + }, + { + "word": " you", + "start": 2031.46, + "end": 2031.68, + "probability": 1.0 + }, + { + "word": " use", + "start": 2031.68, + "end": 2031.82, + "probability": 1.0 + }, + { + "word": " any", + "start": 2031.82, + "end": 2032.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 2032.0, + "end": 2032.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2032.14, + "end": 2032.28, + "probability": 1.0 + }, + { + "word": " Mozilla", + "start": 2032.28, + "end": 2032.6, + "probability": 0.99560546875 + }, + { + "word": " products,", + "start": 2032.6, + "end": 2033.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 2033.5, + "end": 2033.7, + "probability": 0.99951171875 + }, + { + "word": " die", + "start": 2033.7, + "end": 2034.66, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 2034.66, + "end": 2034.84, + "probability": 1.0 + }, + { + "word": " little", + "start": 2034.84, + "end": 2034.96, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2034.96, + "end": 2035.14, + "probability": 1.0 + }, + { + "word": " inside.", + "start": 2035.14, + "end": 2035.56, + "probability": 1.0 + } + ] + }, + { + "id": 731, + "text": "So, who's your mail provider?", + "start": 2039.32, + "end": 2040.56, + "words": [ + { + "word": " So,", + "start": 2039.32, + "end": 2039.76, + "probability": 0.361572265625 + }, + { + "word": " who's", + "start": 2039.76, + "end": 2040.2, + "probability": 0.99755859375 + }, + { + "word": " your", + "start": 2040.2, + "end": 2040.22, + "probability": 0.96875 + }, + { + "word": " mail", + "start": 2040.22, + "end": 2040.38, + "probability": 0.99951171875 + }, + { + "word": " provider?", + "start": 2040.38, + "end": 2040.56, + "probability": 1.0 + } + ] + }, + { + "id": 732, + "text": "Well, we have three of them.", + "start": 2041.78, + "end": 2043.52, + "words": [ + { + "word": " Well,", + "start": 2041.78, + "end": 2042.22, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 2042.34, + "end": 2042.76, + "probability": 1.0 + }, + { + "word": " have", + "start": 2042.76, + "end": 2042.94, + "probability": 1.0 + }, + { + "word": " three", + "start": 2042.94, + "end": 2043.22, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 2043.22, + "end": 2043.34, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2043.34, + "end": 2043.52, + "probability": 1.0 + } + ] + }, + { + "id": 733, + "text": "She has three of them.", + "start": 2043.56, + "end": 2044.46, + "words": [ + { + "word": " She", + "start": 2043.56, + "end": 2043.78, + "probability": 0.9990234375 + }, + { + "word": " has", + "start": 2043.78, + "end": 2043.96, + "probability": 1.0 + }, + { + "word": " three", + "start": 2043.96, + "end": 2044.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 2044.18, + "end": 2044.28, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2044.28, + "end": 2044.46, + "probability": 1.0 + } + ] + }, + { + "id": 734, + "text": "You know, Gmail, Yahoo, and another one.", + "start": 2044.5, + "end": 2046.9, + "words": [ + { + "word": " You", + "start": 2044.5, + "end": 2044.56, + "probability": 0.68603515625 + }, + { + "word": " know,", + "start": 2044.56, + "end": 2044.7, + "probability": 0.99951171875 + }, + { + "word": " Gmail,", + "start": 2044.72, + "end": 2045.08, + "probability": 0.99853515625 + }, + { + "word": " Yahoo,", + "start": 2045.48, + "end": 2045.68, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2046.08, + "end": 2046.36, + "probability": 1.0 + }, + { + "word": " another", + "start": 2046.36, + "end": 2046.6, + "probability": 1.0 + }, + { + "word": " one.", + "start": 2046.6, + "end": 2046.9, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "Does it tend to happen where she's able to delete from one of the accounts but not the other?", + "start": 2047.12, + "end": 2051.46, + "words": [ + { + "word": " Does", + "start": 2047.12, + "end": 2047.32, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2047.32, + "end": 2047.46, + "probability": 1.0 + }, + { + "word": " tend", + "start": 2047.46, + "end": 2047.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 2047.66, + "end": 2047.76, + "probability": 1.0 + }, + { + "word": " happen", + "start": 2047.76, + "end": 2048.1, + "probability": 1.0 + }, + { + "word": " where", + "start": 2048.1, + "end": 2048.56, + "probability": 1.0 + }, + { + "word": " she's", + "start": 2048.56, + "end": 2048.86, + "probability": 1.0 + }, + { + "word": " able", + "start": 2048.86, + "end": 2049.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2049.4, + "end": 2049.68, + "probability": 1.0 + }, + { + "word": " delete", + "start": 2049.68, + "end": 2049.98, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 2049.98, + "end": 2050.22, + "probability": 1.0 + }, + { + "word": " one", + "start": 2050.22, + "end": 2050.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 2050.44, + "end": 2050.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 2050.54, + "end": 2050.58, + "probability": 1.0 + }, + { + "word": " accounts", + "start": 2050.58, + "end": 2050.84, + "probability": 1.0 + }, + { + "word": " but", + "start": 2050.84, + "end": 2051.04, + "probability": 0.921875 + }, + { + "word": " not", + "start": 2051.04, + "end": 2051.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 2051.16, + "end": 2051.28, + "probability": 1.0 + }, + { + "word": " other?", + "start": 2051.28, + "end": 2051.46, + "probability": 1.0 + } + ] + }, + { + "id": 736, + "text": "No.", + "start": 2052.02, + "end": 2052.38, + "words": [ + { + "word": " No.", + "start": 2052.02, + "end": 2052.38, + "probability": 0.99658203125 + } + ] + }, + { + "id": 737, + "text": "So, it's all of them?", + "start": 2053.0, + "end": 2054.1, + "words": [ + { + "word": " So,", + "start": 2053.0, + "end": 2053.44, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2053.54, + "end": 2053.64, + "probability": 1.0 + }, + { + "word": " all", + "start": 2053.64, + "end": 2053.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 2053.82, + "end": 2053.96, + "probability": 1.0 + }, + { + "word": " them?", + "start": 2053.96, + "end": 2054.1, + "probability": 1.0 + } + ] + }, + { + "id": 738, + "text": "Yeah.", + "start": 2054.58, + "end": 2055.02, + "words": [ + { + "word": " Yeah.", + "start": 2054.58, + "end": 2055.02, + "probability": 0.99560546875 + } + ] + }, + { + "id": 739, + "text": "It's the program.", + "start": 2055.02, + "end": 2056.04, + "words": [ + { + "word": " It's", + "start": 2055.02, + "end": 2055.52, + "probability": 0.51611328125 + }, + { + "word": " the", + "start": 2055.52, + "end": 2055.6, + "probability": 0.95361328125 + }, + { + "word": " program.", + "start": 2055.6, + "end": 2056.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 740, + "text": "And I don't know if there's a fix for it other than just to change the mail client.", + "start": 2057.3399999999997, + "end": 2062.88, + "words": [ + { + "word": " And", + "start": 2057.3399999999997, + "end": 2057.72, + "probability": 0.3525390625 + }, + { + "word": " I", + "start": 2057.72, + "end": 2058.1, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 2058.1, + "end": 2058.32, + "probability": 1.0 + }, + { + "word": " know", + "start": 2058.32, + "end": 2058.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 2058.48, + "end": 2058.84, + "probability": 0.94775390625 + }, + { + "word": " there's", + "start": 2058.84, + "end": 2059.6, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2059.6, + "end": 2059.66, + "probability": 1.0 + }, + { + "word": " fix", + "start": 2059.66, + "end": 2059.88, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2059.88, + "end": 2060.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 2060.08, + "end": 2060.24, + "probability": 1.0 + }, + { + "word": " other", + "start": 2060.24, + "end": 2060.36, + "probability": 0.97705078125 + }, + { + "word": " than", + "start": 2060.36, + "end": 2060.54, + "probability": 1.0 + }, + { + "word": " just", + "start": 2060.54, + "end": 2060.76, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2060.76, + "end": 2060.9, + "probability": 0.9970703125 + }, + { + "word": " change", + "start": 2060.9, + "end": 2061.98, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2061.98, + "end": 2062.26, + "probability": 0.54345703125 + }, + { + "word": " mail", + "start": 2062.26, + "end": 2062.6, + "probability": 0.91552734375 + }, + { + "word": " client.", + "start": 2062.6, + "end": 2062.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 741, + "text": "All right.", + "start": 2063.1, + "end": 2063.32, + "words": [ + { + "word": " All", + "start": 2063.1, + "end": 2063.2, + "probability": 0.775390625 + }, + { + "word": " right.", + "start": 2063.2, + "end": 2063.32, + "probability": 1.0 + } + ] + }, + { + "id": 742, + "text": "Tell me a little bit more about the computer.", + "start": 2063.38, + "end": 2064.7, + "words": [ + { + "word": " Tell", + "start": 2063.38, + "end": 2063.54, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 2063.54, + "end": 2063.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 2063.64, + "end": 2063.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 2063.78, + "end": 2063.82, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2063.82, + "end": 2063.98, + "probability": 1.0 + }, + { + "word": " more", + "start": 2063.98, + "end": 2064.1, + "probability": 1.0 + }, + { + "word": " about", + "start": 2064.1, + "end": 2064.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2064.3, + "end": 2064.44, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 2064.44, + "end": 2064.7, + "probability": 1.0 + } + ] + }, + { + "id": 743, + "text": "So, typical questions.", + "start": 2065.7599999999998, + "end": 2066.86, + "words": [ + { + "word": " So,", + "start": 2065.7599999999998, + "end": 2066.14, + "probability": 0.97412109375 + }, + { + "word": " typical", + "start": 2066.14, + "end": 2066.52, + "probability": 0.99951171875 + }, + { + "word": " questions.", + "start": 2066.52, + "end": 2066.86, + "probability": 0.99072265625 + } + ] + }, + { + "id": 744, + "text": "How old is it?", + "start": 2066.94, + "end": 2067.42, + "words": [ + { + "word": " How", + "start": 2066.94, + "end": 2067.06, + "probability": 1.0 + }, + { + "word": " old", + "start": 2067.06, + "end": 2067.22, + "probability": 1.0 + }, + { + "word": " is", + "start": 2067.22, + "end": 2067.32, + "probability": 1.0 + }, + { + "word": " it?", + "start": 2067.32, + "end": 2067.42, + "probability": 1.0 + } + ] + }, + { + "id": 745, + "text": "About two months.", + "start": 2068.54, + "end": 2069.42, + "words": [ + { + "word": " About", + "start": 2068.54, + "end": 2068.92, + "probability": 0.99755859375 + }, + { + "word": " two", + "start": 2068.92, + "end": 2069.18, + "probability": 0.994140625 + }, + { + "word": " months.", + "start": 2069.18, + "end": 2069.42, + "probability": 1.0 + } + ] + }, + { + "id": 746, + "text": "Oh, it's a brand new one.", + "start": 2069.94, + "end": 2071.0, + "words": [ + { + "word": " Oh,", + "start": 2069.94, + "end": 2070.32, + "probability": 0.91162109375 + }, + { + "word": " it's", + "start": 2070.32, + "end": 2070.44, + "probability": 0.91796875 + }, + { + "word": " a", + "start": 2070.44, + "end": 2070.48, + "probability": 1.0 + }, + { + "word": " brand", + "start": 2070.48, + "end": 2070.68, + "probability": 1.0 + }, + { + "word": " new", + "start": 2070.68, + "end": 2070.84, + "probability": 0.9111328125 + }, + { + "word": " one.", + "start": 2070.84, + "end": 2071.0, + "probability": 1.0 + } + ] + }, + { + "id": 747, + "text": "Okay.", + "start": 2071.14, + "end": 2071.46, + "words": [ + { + "word": " Okay.", + "start": 2071.14, + "end": 2071.46, + "probability": 0.98974609375 + } + ] + }, + { + "id": 748, + "text": "And antivirus that's installed?", + "start": 2071.76, + "end": 2073.78, + "words": [ + { + "word": " And", + "start": 2071.76, + "end": 2072.14, + "probability": 0.998046875 + }, + { + "word": " antivirus", + "start": 2072.14, + "end": 2073.36, + "probability": 0.99658203125 + }, + { + "word": " that's", + "start": 2073.36, + "end": 2073.58, + "probability": 0.9765625 + }, + { + "word": " installed?", + "start": 2073.58, + "end": 2073.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 749, + "text": "I took off Panda the other day because I was reading where someone said that could be an issue for it.", + "start": 2074.58, + "end": 2081.52, + "words": [ + { + "word": " I", + "start": 2074.58, + "end": 2074.96, + "probability": 0.99951171875 + }, + { + "word": " took", + "start": 2074.96, + "end": 2075.14, + "probability": 1.0 + }, + { + "word": " off", + "start": 2075.14, + "end": 2076.26, + "probability": 1.0 + }, + { + "word": " Panda", + "start": 2076.26, + "end": 2076.6, + "probability": 0.98046875 + }, + { + "word": " the", + "start": 2076.6, + "end": 2076.92, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 2076.92, + "end": 2077.12, + "probability": 1.0 + }, + { + "word": " day", + "start": 2077.12, + "end": 2077.3, + "probability": 1.0 + }, + { + "word": " because", + "start": 2077.3, + "end": 2077.48, + "probability": 0.97314453125 + }, + { + "word": " I", + "start": 2077.48, + "end": 2077.62, + "probability": 1.0 + }, + { + "word": " was", + "start": 2077.62, + "end": 2077.8, + "probability": 1.0 + }, + { + "word": " reading", + "start": 2077.8, + "end": 2078.34, + "probability": 1.0 + }, + { + "word": " where", + "start": 2078.34, + "end": 2078.56, + "probability": 0.998046875 + }, + { + "word": " someone", + "start": 2078.56, + "end": 2078.82, + "probability": 1.0 + }, + { + "word": " said", + "start": 2078.82, + "end": 2079.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 2079.06, + "end": 2079.24, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 2079.24, + "end": 2079.46, + "probability": 1.0 + }, + { + "word": " be", + "start": 2079.46, + "end": 2079.68, + "probability": 1.0 + }, + { + "word": " an", + "start": 2079.68, + "end": 2079.88, + "probability": 0.99951171875 + }, + { + "word": " issue", + "start": 2079.88, + "end": 2081.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 2081.14, + "end": 2081.4, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 2081.4, + "end": 2081.52, + "probability": 1.0 + } + ] + }, + { + "id": 750, + "text": "So, I took it off to see if the problem would go away.", + "start": 2081.56, + "end": 2083.26, + "words": [ + { + "word": " So,", + "start": 2081.56, + "end": 2081.64, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 2081.64, + "end": 2081.7, + "probability": 0.99951171875 + }, + { + "word": " took", + "start": 2081.7, + "end": 2081.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 2081.86, + "end": 2081.92, + "probability": 1.0 + }, + { + "word": " off", + "start": 2081.92, + "end": 2082.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 2082.02, + "end": 2082.16, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 2082.16, + "end": 2082.32, + "probability": 1.0 + }, + { + "word": " if", + "start": 2082.32, + "end": 2082.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2082.42, + "end": 2082.54, + "probability": 0.99951171875 + }, + { + "word": " problem", + "start": 2082.54, + "end": 2082.78, + "probability": 1.0 + }, + { + "word": " would", + "start": 2082.78, + "end": 2082.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 2082.92, + "end": 2083.06, + "probability": 1.0 + }, + { + "word": " away.", + "start": 2083.06, + "end": 2083.26, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "It did not.", + "start": 2083.32, + "end": 2083.78, + "words": [ + { + "word": " It", + "start": 2083.32, + "end": 2083.44, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 2083.44, + "end": 2083.56, + "probability": 1.0 + }, + { + "word": " not.", + "start": 2083.56, + "end": 2083.78, + "probability": 1.0 + } + ] + }, + { + "id": 752, + "text": "It did not, right?", + "start": 2083.78, + "end": 2084.58, + "words": [ + { + "word": " It", + "start": 2083.78, + "end": 2084.04, + "probability": 0.288818359375 + }, + { + "word": " did", + "start": 2084.04, + "end": 2084.18, + "probability": 0.98388671875 + }, + { + "word": " not,", + "start": 2084.18, + "end": 2084.36, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 2084.38, + "end": 2084.58, + "probability": 0.990234375 + } + ] + }, + { + "id": 753, + "text": "Anything else on there?", + "start": 2084.84, + "end": 2085.74, + "words": [ + { + "word": " Anything", + "start": 2084.84, + "end": 2085.2, + "probability": 0.97412109375 + }, + { + "word": " else", + "start": 2085.2, + "end": 2085.48, + "probability": 1.0 + }, + { + "word": " on", + "start": 2085.48, + "end": 2085.62, + "probability": 1.0 + }, + { + "word": " there?", + "start": 2085.62, + "end": 2085.74, + "probability": 1.0 + } + ] + }, + { + "id": 754, + "text": "The free version of Malwarebytes.", + "start": 2086.96, + "end": 2088.76, + "words": [ + { + "word": " The", + "start": 2086.96, + "end": 2087.32, + "probability": 0.8251953125 + }, + { + "word": " free", + "start": 2087.32, + "end": 2087.68, + "probability": 0.9990234375 + }, + { + "word": " version", + "start": 2087.68, + "end": 2087.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2087.94, + "end": 2088.1, + "probability": 0.95556640625 + }, + { + "word": " Malwarebytes.", + "start": 2088.1, + "end": 2088.76, + "probability": 0.9814453125 + } + ] + }, + { + "id": 755, + "text": "Okay.", + "start": 2089.0, + "end": 2089.26, + "words": [ + { + "word": " Okay.", + "start": 2089.0, + "end": 2089.26, + "probability": 0.951171875 + } + ] + }, + { + "id": 756, + "text": "Is it in trial mode or no?", + "start": 2089.3, + "end": 2090.32, + "words": [ + { + "word": " Is", + "start": 2089.3, + "end": 2089.44, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2089.44, + "end": 2089.52, + "probability": 1.0 + }, + { + "word": " in", + "start": 2089.52, + "end": 2089.64, + "probability": 1.0 + }, + { + "word": " trial", + "start": 2089.64, + "end": 2089.86, + "probability": 0.9990234375 + }, + { + "word": " mode", + "start": 2089.86, + "end": 2090.06, + "probability": 1.0 + }, + { + "word": " or", + "start": 2090.06, + "end": 2090.24, + "probability": 0.99365234375 + }, + { + "word": " no?", + "start": 2090.24, + "end": 2090.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 757, + "text": "It's the free version.", + "start": 2091.68, + "end": 2092.88, + "words": [ + { + "word": " It's", + "start": 2091.68, + "end": 2092.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2092.04, + "end": 2092.12, + "probability": 1.0 + }, + { + "word": " free", + "start": 2092.12, + "end": 2092.52, + "probability": 1.0 + }, + { + "word": " version.", + "start": 2092.52, + "end": 2092.88, + "probability": 1.0 + } + ] + }, + { + "id": 758, + "text": "Yeah, but for the first month, it's going to run in trial mode.", + "start": 2093.18, + "end": 2096.06, + "words": [ + { + "word": " Yeah,", + "start": 2093.18, + "end": 2093.54, + "probability": 0.9775390625 + }, + { + "word": " but", + "start": 2093.58, + "end": 2093.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 2093.72, + "end": 2093.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2093.88, + "end": 2093.98, + "probability": 1.0 + }, + { + "word": " first", + "start": 2093.98, + "end": 2094.16, + "probability": 1.0 + }, + { + "word": " month,", + "start": 2094.16, + "end": 2094.42, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2094.48, + "end": 2094.62, + "probability": 1.0 + }, + { + "word": " going", + "start": 2094.62, + "end": 2094.7, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2094.7, + "end": 2094.8, + "probability": 1.0 + }, + { + "word": " run", + "start": 2094.8, + "end": 2094.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 2094.94, + "end": 2095.16, + "probability": 1.0 + }, + { + "word": " trial", + "start": 2095.16, + "end": 2095.7, + "probability": 1.0 + }, + { + "word": " mode.", + "start": 2095.7, + "end": 2096.06, + "probability": 1.0 + } + ] + }, + { + "id": 759, + "text": "Oh, okay.", + "start": 2096.7, + "end": 2097.36, + "words": [ + { + "word": " Oh,", + "start": 2096.7, + "end": 2097.06, + "probability": 0.9990234375 + }, + { + "word": " okay.", + "start": 2097.08, + "end": 2097.36, + "probability": 1.0 + } + ] + }, + { + "id": 760, + "text": "So, I'm curious.", + "start": 2097.64, + "end": 2098.68, + "words": [ + { + "word": " So,", + "start": 2097.64, + "end": 2098.0, + "probability": 0.9716796875 + }, + { + "word": " I'm", + "start": 2098.0, + "end": 2098.36, + "probability": 1.0 + }, + { + "word": " curious.", + "start": 2098.36, + "end": 2098.68, + "probability": 1.0 + } + ] + }, + { + "id": 761, + "text": "Is it still in trial mode?", + "start": 2098.78, + "end": 2099.76, + "words": [ + { + "word": " Is", + "start": 2098.78, + "end": 2098.94, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2098.94, + "end": 2099.04, + "probability": 1.0 + }, + { + "word": " still", + "start": 2099.04, + "end": 2099.22, + "probability": 1.0 + }, + { + "word": " in", + "start": 2099.22, + "end": 2099.36, + "probability": 1.0 + }, + { + "word": " trial", + "start": 2099.36, + "end": 2099.54, + "probability": 1.0 + }, + { + "word": " mode?", + "start": 2099.54, + "end": 2099.76, + "probability": 1.0 + } + ] + }, + { + "id": 762, + "text": "I haven't used it in some time, so I can't honestly say.", + "start": 2101.2599999999998, + "end": 2104.9, + "words": [ + { + "word": " I", + "start": 2101.2599999999998, + "end": 2101.62, + "probability": 0.99951171875 + }, + { + "word": " haven't", + "start": 2101.62, + "end": 2101.98, + "probability": 1.0 + }, + { + "word": " used", + "start": 2101.98, + "end": 2102.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 2102.16, + "end": 2102.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 2102.34, + "end": 2102.42, + "probability": 1.0 + }, + { + "word": " some", + "start": 2102.42, + "end": 2102.62, + "probability": 0.99951171875 + }, + { + "word": " time,", + "start": 2102.62, + "end": 2102.94, + "probability": 0.99462890625 + }, + { + "word": " so", + "start": 2102.98, + "end": 2103.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 2103.2, + "end": 2103.4, + "probability": 1.0 + }, + { + "word": " can't", + "start": 2103.4, + "end": 2104.08, + "probability": 0.99951171875 + }, + { + "word": " honestly", + "start": 2104.08, + "end": 2104.44, + "probability": 0.89013671875 + }, + { + "word": " say.", + "start": 2104.44, + "end": 2104.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 763, + "text": "Probably not.", + "start": 2105.0, + "end": 2105.22, + "words": [ + { + "word": " Probably", + "start": 2105.0, + "end": 2105.22, + "probability": 0.7802734375 + }, + { + "word": " not.", + "start": 2105.22, + "end": 2105.22, + "probability": 1.0 + } + ] + }, + { + "id": 764, + "text": "Okay.", + "start": 2105.22, + "end": 2105.26, + "words": [ + { + "word": " Okay.", + "start": 2105.22, + "end": 2105.26, + "probability": 0.74072265625 + } + ] + }, + { + "id": 765, + "text": "Probably not.", + "start": 2105.36, + "end": 2105.9, + "words": [ + { + "word": " Probably", + "start": 2105.36, + "end": 2105.64, + "probability": 0.9814453125 + }, + { + "word": " not.", + "start": 2105.64, + "end": 2105.9, + "probability": 1.0 + } + ] + }, + { + "id": 766, + "text": "All right.", + "start": 2106.3, + "end": 2106.84, + "words": [ + { + "word": " All", + "start": 2106.3, + "end": 2106.66, + "probability": 0.962890625 + }, + { + "word": " right.", + "start": 2106.66, + "end": 2106.84, + "probability": 1.0 + } + ] + }, + { + "id": 767, + "text": "And so, since day one, when you put that on there, it's been that way?", + "start": 2106.9, + "end": 2109.82, + "words": [ + { + "word": " And", + "start": 2106.9, + "end": 2107.2, + "probability": 0.7060546875 + }, + { + "word": " so,", + "start": 2107.2, + "end": 2107.66, + "probability": 0.99755859375 + }, + { + "word": " since", + "start": 2107.74, + "end": 2108.08, + "probability": 1.0 + }, + { + "word": " day", + "start": 2108.08, + "end": 2108.24, + "probability": 0.99658203125 + }, + { + "word": " one,", + "start": 2108.24, + "end": 2108.52, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 2108.6, + "end": 2108.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 2108.76, + "end": 2108.86, + "probability": 1.0 + }, + { + "word": " put", + "start": 2108.86, + "end": 2108.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 2108.96, + "end": 2109.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 2109.1, + "end": 2109.24, + "probability": 1.0 + }, + { + "word": " there,", + "start": 2109.24, + "end": 2109.34, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2109.4, + "end": 2109.46, + "probability": 1.0 + }, + { + "word": " been", + "start": 2109.46, + "end": 2109.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 2109.54, + "end": 2109.66, + "probability": 1.0 + }, + { + "word": " way?", + "start": 2109.66, + "end": 2109.82, + "probability": 1.0 + } + ] + }, + { + "id": 768, + "text": "Pretty much, yes.", + "start": 2111.04, + "end": 2111.76, + "words": [ + { + "word": " Pretty", + "start": 2111.04, + "end": 2111.4, + "probability": 0.99951171875 + }, + { + "word": " much,", + "start": 2111.4, + "end": 2111.56, + "probability": 1.0 + }, + { + "word": " yes.", + "start": 2111.62, + "end": 2111.76, + "probability": 1.0 + } + ] + }, + { + "id": 769, + "text": "Okay.", + "start": 2112.02, + "end": 2112.34, + "words": [ + { + "word": " Okay.", + "start": 2112.02, + "end": 2112.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 770, + "text": "The mail accounts that you have, the Yahoo and Gmail ones, are they POP or IMAP?", + "start": 2113.6, + "end": 2117.96, + "words": [ + { + "word": " The", + "start": 2113.6, + "end": 2114.08, + "probability": 0.13818359375 + }, + { + "word": " mail", + "start": 2114.08, + "end": 2114.56, + "probability": 0.9638671875 + }, + { + "word": " accounts", + "start": 2114.56, + "end": 2114.76, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2114.76, + "end": 2114.94, + "probability": 0.69873046875 + }, + { + "word": " you", + "start": 2114.94, + "end": 2114.96, + "probability": 1.0 + }, + { + "word": " have,", + "start": 2114.96, + "end": 2115.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2115.18, + "end": 2115.22, + "probability": 0.9990234375 + }, + { + "word": " Yahoo", + "start": 2115.22, + "end": 2115.48, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2115.48, + "end": 2115.66, + "probability": 0.982421875 + }, + { + "word": " Gmail", + "start": 2115.66, + "end": 2115.9, + "probability": 0.99853515625 + }, + { + "word": " ones,", + "start": 2115.9, + "end": 2116.18, + "probability": 0.9970703125 + }, + { + "word": " are", + "start": 2116.38, + "end": 2116.56, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 2116.56, + "end": 2116.76, + "probability": 1.0 + }, + { + "word": " POP", + "start": 2116.76, + "end": 2117.16, + "probability": 0.9208984375 + }, + { + "word": " or", + "start": 2117.16, + "end": 2117.44, + "probability": 0.99951171875 + }, + { + "word": " IMAP?", + "start": 2117.44, + "end": 2117.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 771, + "text": "Both those, I believe, are POP.", + "start": 2120.28, + "end": 2122.6, + "words": [ + { + "word": " Both", + "start": 2120.28, + "end": 2120.76, + "probability": 0.99755859375 + }, + { + "word": " those,", + "start": 2120.76, + "end": 2121.08, + "probability": 0.87158203125 + }, + { + "word": " I", + "start": 2121.18, + "end": 2121.48, + "probability": 1.0 + }, + { + "word": " believe,", + "start": 2121.48, + "end": 2121.8, + "probability": 1.0 + }, + { + "word": " are", + "start": 2121.88, + "end": 2122.04, + "probability": 1.0 + }, + { + "word": " POP.", + "start": 2122.04, + "end": 2122.6, + "probability": 1.0 + } + ] + }, + { + "id": 772, + "text": "Okay.", + "start": 2123.06, + "end": 2123.54, + "words": [ + { + "word": " Okay.", + "start": 2123.06, + "end": 2123.54, + "probability": 0.6240234375 + } + ] + }, + { + "id": 773, + "text": "POP should be the faster one.", + "start": 2123.58, + "end": 2124.94, + "words": [ + { + "word": " POP", + "start": 2123.58, + "end": 2124.06, + "probability": 0.94677734375 + }, + { + "word": " should", + "start": 2124.06, + "end": 2124.18, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2124.18, + "end": 2124.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 2124.32, + "end": 2124.44, + "probability": 1.0 + }, + { + "word": " faster", + "start": 2124.44, + "end": 2124.72, + "probability": 1.0 + }, + { + "word": " one.", + "start": 2124.72, + "end": 2124.94, + "probability": 1.0 + } + ] + }, + { + "id": 774, + "text": "All right.", + "start": 2125.24, + "end": 2125.68, + "words": [ + { + "word": " All", + "start": 2125.24, + "end": 2125.58, + "probability": 0.36083984375 + }, + { + "word": " right.", + "start": 2125.58, + "end": 2125.68, + "probability": 1.0 + } + ] + }, + { + "id": 775, + "text": "So, IMAP is nicer.", + "start": 2125.72, + "end": 2128.12, + "words": [ + { + "word": " So,", + "start": 2125.72, + "end": 2126.04, + "probability": 0.853515625 + }, + { + "word": " IMAP", + "start": 2126.04, + "end": 2127.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 2127.54, + "end": 2127.76, + "probability": 1.0 + }, + { + "word": " nicer.", + "start": 2127.76, + "end": 2128.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 776, + "text": "We generally tell people to set your accounts up as IMAP so that there's some type of server-side synchronization.", + "start": 2128.22, + "end": 2133.96, + "words": [ + { + "word": " We", + "start": 2128.22, + "end": 2128.64, + "probability": 0.9990234375 + }, + { + "word": " generally", + "start": 2128.64, + "end": 2129.12, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 2129.12, + "end": 2129.42, + "probability": 1.0 + }, + { + "word": " people", + "start": 2129.42, + "end": 2129.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2129.74, + "end": 2129.98, + "probability": 0.9892578125 + }, + { + "word": " set", + "start": 2129.98, + "end": 2130.62, + "probability": 1.0 + }, + { + "word": " your", + "start": 2130.62, + "end": 2130.76, + "probability": 0.99951171875 + }, + { + "word": " accounts", + "start": 2130.76, + "end": 2131.02, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2131.02, + "end": 2131.2, + "probability": 1.0 + }, + { + "word": " as", + "start": 2131.2, + "end": 2131.34, + "probability": 1.0 + }, + { + "word": " IMAP", + "start": 2131.34, + "end": 2131.66, + "probability": 1.0 + }, + { + "word": " so", + "start": 2131.66, + "end": 2131.86, + "probability": 0.9921875 + }, + { + "word": " that", + "start": 2131.86, + "end": 2132.0, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2132.0, + "end": 2132.28, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 2132.28, + "end": 2132.4, + "probability": 1.0 + }, + { + "word": " type", + "start": 2132.4, + "end": 2132.58, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2132.58, + "end": 2132.78, + "probability": 1.0 + }, + { + "word": " server", + "start": 2132.78, + "end": 2133.02, + "probability": 0.99951171875 + }, + { + "word": "-side", + "start": 2133.02, + "end": 2133.28, + "probability": 0.98095703125 + }, + { + "word": " synchronization.", + "start": 2133.28, + "end": 2133.96, + "probability": 1.0 + } + ] + }, + { + "id": 777, + "text": "Okay.", + "start": 2134.76, + "end": 2135.24, + "words": [ + { + "word": " Okay.", + "start": 2134.76, + "end": 2135.24, + "probability": 0.990234375 + } + ] + }, + { + "id": 778, + "text": "But...", + "start": 2136.02, + "end": 2136.5, + "words": [ + { + "word": " But...", + "start": 2136.02, + "end": 2136.5, + "probability": 0.49951171875 + } + ] + }, + { + "id": 779, + "text": "Okay.", + "start": 2136.5, + "end": 2136.72, + "words": [ + { + "word": " Okay.", + "start": 2136.5, + "end": 2136.72, + "probability": 0.99609375 + } + ] + }, + { + "id": 780, + "text": "The Gmail is an IMAP.", + "start": 2136.78, + "end": 2138.06, + "words": [ + { + "word": " The", + "start": 2136.78, + "end": 2136.86, + "probability": 0.9814453125 + }, + { + "word": " Gmail", + "start": 2136.86, + "end": 2137.16, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 2137.16, + "end": 2137.42, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 2137.42, + "end": 2137.62, + "probability": 0.9990234375 + }, + { + "word": " IMAP.", + "start": 2137.62, + "end": 2138.06, + "probability": 1.0 + } + ] + }, + { + "id": 781, + "text": "Okay.", + "start": 2138.16, + "end": 2138.58, + "words": [ + { + "word": " Okay.", + "start": 2138.16, + "end": 2138.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 782, + "text": "Good.", + "start": 2138.6, + "end": 2138.76, + "words": [ + { + "word": " Good.", + "start": 2138.6, + "end": 2138.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 783, + "text": "But the Yahoo is not.", + "start": 2141.36, + "end": 2142.32, + "words": [ + { + "word": " But", + "start": 2141.36, + "end": 2141.84, + "probability": 0.87939453125 + }, + { + "word": " the", + "start": 2141.84, + "end": 2142.04, + "probability": 0.9921875 + }, + { + "word": " Yahoo", + "start": 2142.04, + "end": 2142.3, + "probability": 0.9873046875 + }, + { + "word": " is", + "start": 2142.3, + "end": 2142.32, + "probability": 0.11541748046875 + }, + { + "word": " not.", + "start": 2142.32, + "end": 2142.32, + "probability": 0.1353759765625 + } + ] + }, + { + "id": 784, + "text": "Yahoo is a POP.", + "start": 2142.32, + "end": 2142.76, + "words": [ + { + "word": " Yahoo", + "start": 2142.32, + "end": 2142.4, + "probability": 0.0026569366455078125 + }, + { + "word": " is", + "start": 2142.4, + "end": 2142.44, + "probability": 0.0653076171875 + }, + { + "word": " a", + "start": 2142.44, + "end": 2142.52, + "probability": 0.990234375 + }, + { + "word": " POP.", + "start": 2142.52, + "end": 2142.76, + "probability": 0.474853515625 + } + ] + }, + { + "id": 785, + "text": "Yahoo is a POP.", + "start": 2142.86, + "end": 2143.62, + "words": [ + { + "word": " Yahoo", + "start": 2142.86, + "end": 2143.2, + "probability": 0.83251953125 + }, + { + "word": " is", + "start": 2143.2, + "end": 2143.34, + "probability": 0.98876953125 + }, + { + "word": " a", + "start": 2143.34, + "end": 2143.4, + "probability": 1.0 + }, + { + "word": " POP.", + "start": 2143.4, + "end": 2143.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 786, + "text": "All right.", + "start": 2143.7, + "end": 2144.0, + "words": [ + { + "word": " All", + "start": 2143.7, + "end": 2143.84, + "probability": 0.90966796875 + }, + { + "word": " right.", + "start": 2143.84, + "end": 2144.0, + "probability": 1.0 + } + ] + }, + { + "id": 787, + "text": "Basically, just without knowing anything more about the machine or its configuration, and", + "start": 2145.5, + "end": 2150.46, + "words": [ + { + "word": " Basically,", + "start": 2145.5, + "end": 2145.9, + "probability": 0.99267578125 + }, + { + "word": " just", + "start": 2145.9, + "end": 2146.3, + "probability": 0.97998046875 + }, + { + "word": " without", + "start": 2146.3, + "end": 2146.96, + "probability": 0.64501953125 + }, + { + "word": " knowing", + "start": 2146.96, + "end": 2147.34, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2147.34, + "end": 2147.64, + "probability": 1.0 + }, + { + "word": " more", + "start": 2147.64, + "end": 2147.94, + "probability": 1.0 + }, + { + "word": " about", + "start": 2147.94, + "end": 2148.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2148.2, + "end": 2148.36, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2148.36, + "end": 2148.58, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 2148.58, + "end": 2148.92, + "probability": 0.998046875 + }, + { + "word": " its", + "start": 2148.92, + "end": 2149.42, + "probability": 0.9990234375 + }, + { + "word": " configuration,", + "start": 2149.42, + "end": 2149.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 2150.0, + "end": 2150.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 788, + "text": "you're saying that it's been that way since day one, I would suggest that it's probably", + "start": 2150.46, + "end": 2155.22, + "words": [ + { + "word": " you're", + "start": 2150.46, + "end": 2150.68, + "probability": 0.9990234375 + }, + { + "word": " saying", + "start": 2150.68, + "end": 2150.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 2150.88, + "end": 2151.04, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2151.04, + "end": 2151.2, + "probability": 1.0 + }, + { + "word": " been", + "start": 2151.2, + "end": 2151.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 2151.32, + "end": 2151.46, + "probability": 1.0 + }, + { + "word": " way", + "start": 2151.46, + "end": 2151.64, + "probability": 1.0 + }, + { + "word": " since", + "start": 2151.64, + "end": 2151.88, + "probability": 0.99951171875 + }, + { + "word": " day", + "start": 2151.88, + "end": 2152.38, + "probability": 0.99951171875 + }, + { + "word": " one,", + "start": 2152.38, + "end": 2152.72, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2152.98, + "end": 2153.76, + "probability": 1.0 + }, + { + "word": " would", + "start": 2153.76, + "end": 2153.98, + "probability": 1.0 + }, + { + "word": " suggest", + "start": 2153.98, + "end": 2154.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 2154.3, + "end": 2154.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2154.62, + "end": 2154.8, + "probability": 1.0 + }, + { + "word": " probably", + "start": 2154.8, + "end": 2155.22, + "probability": 1.0 + } + ] + }, + { + "id": 789, + "text": "going to be a Thunderbird problem rather than a communication issue or some other type of", + "start": 2155.22, + "end": 2159.68, + "words": [ + { + "word": " going", + "start": 2155.22, + "end": 2155.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2155.52, + "end": 2155.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 2155.6, + "end": 2155.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 2155.68, + "end": 2155.76, + "probability": 1.0 + }, + { + "word": " Thunderbird", + "start": 2155.76, + "end": 2156.1, + "probability": 0.97705078125 + }, + { + "word": " problem", + "start": 2156.1, + "end": 2156.34, + "probability": 0.9990234375 + }, + { + "word": " rather", + "start": 2156.34, + "end": 2156.6, + "probability": 0.97900390625 + }, + { + "word": " than", + "start": 2156.6, + "end": 2156.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 2156.94, + "end": 2157.08, + "probability": 0.334228515625 + }, + { + "word": " communication", + "start": 2157.08, + "end": 2157.44, + "probability": 1.0 + }, + { + "word": " issue", + "start": 2157.44, + "end": 2158.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 2158.0, + "end": 2158.52, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 2158.52, + "end": 2159.16, + "probability": 1.0 + }, + { + "word": " other", + "start": 2159.16, + "end": 2159.34, + "probability": 1.0 + }, + { + "word": " type", + "start": 2159.34, + "end": 2159.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 2159.54, + "end": 2159.68, + "probability": 1.0 + } + ] + }, + { + "id": 790, + "text": "infection that's going on.", + "start": 2159.68, + "end": 2160.74, + "words": [ + { + "word": " infection", + "start": 2159.68, + "end": 2160.0, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2160.0, + "end": 2160.34, + "probability": 1.0 + }, + { + "word": " going", + "start": 2160.34, + "end": 2160.48, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2160.48, + "end": 2160.74, + "probability": 1.0 + } + ] + }, + { + "id": 791, + "text": "Because we have to look at those things first.", + "start": 2162.24, + "end": 2163.68, + "words": [ + { + "word": " Because", + "start": 2162.24, + "end": 2162.64, + "probability": 0.92919921875 + }, + { + "word": " we", + "start": 2162.64, + "end": 2162.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 2162.82, + "end": 2162.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 2162.9, + "end": 2162.96, + "probability": 1.0 + }, + { + "word": " look", + "start": 2162.96, + "end": 2163.08, + "probability": 1.0 + }, + { + "word": " at", + "start": 2163.08, + "end": 2163.2, + "probability": 1.0 + }, + { + "word": " those", + "start": 2163.2, + "end": 2163.28, + "probability": 1.0 + }, + { + "word": " things", + "start": 2163.28, + "end": 2163.44, + "probability": 1.0 + }, + { + "word": " first.", + "start": 2163.44, + "end": 2163.68, + "probability": 1.0 + } + ] + }, + { + "id": 792, + "text": "Whenever we hear, well, my mail client locks up all the time, first thing that jumps to", + "start": 2163.72, + "end": 2167.72, + "words": [ + { + "word": " Whenever", + "start": 2163.72, + "end": 2163.9, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 2163.9, + "end": 2164.12, + "probability": 0.9990234375 + }, + { + "word": " hear,", + "start": 2164.12, + "end": 2164.32, + "probability": 1.0 + }, + { + "word": " well,", + "start": 2164.44, + "end": 2164.68, + "probability": 0.99755859375 + }, + { + "word": " my", + "start": 2164.74, + "end": 2164.94, + "probability": 1.0 + }, + { + "word": " mail", + "start": 2164.94, + "end": 2165.28, + "probability": 0.998046875 + }, + { + "word": " client", + "start": 2165.28, + "end": 2165.52, + "probability": 1.0 + }, + { + "word": " locks", + "start": 2165.52, + "end": 2165.78, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2165.78, + "end": 2166.0, + "probability": 1.0 + }, + { + "word": " all", + "start": 2166.0, + "end": 2166.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2166.14, + "end": 2166.22, + "probability": 1.0 + }, + { + "word": " time,", + "start": 2166.22, + "end": 2166.46, + "probability": 1.0 + }, + { + "word": " first", + "start": 2166.58, + "end": 2167.04, + "probability": 0.1402587890625 + }, + { + "word": " thing", + "start": 2167.04, + "end": 2167.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 2167.3, + "end": 2167.4, + "probability": 1.0 + }, + { + "word": " jumps", + "start": 2167.4, + "end": 2167.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2167.56, + "end": 2167.72, + "probability": 0.99267578125 + } + ] + }, + { + "id": 793, + "text": "mind to me is there might be an email worm, right?", + "start": 2167.72, + "end": 2170.32, + "words": [ + { + "word": " mind", + "start": 2167.72, + "end": 2167.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2167.86, + "end": 2168.02, + "probability": 1.0 + }, + { + "word": " me", + "start": 2168.02, + "end": 2168.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 2168.12, + "end": 2168.32, + "probability": 1.0 + }, + { + "word": " there", + "start": 2168.32, + "end": 2168.64, + "probability": 0.9931640625 + }, + { + "word": " might", + "start": 2168.64, + "end": 2168.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 2168.76, + "end": 2168.9, + "probability": 1.0 + }, + { + "word": " an", + "start": 2168.9, + "end": 2169.02, + "probability": 1.0 + }, + { + "word": " email", + "start": 2169.02, + "end": 2169.24, + "probability": 0.974609375 + }, + { + "word": " worm,", + "start": 2169.24, + "end": 2169.6, + "probability": 0.9990234375 + }, + { + "word": " right?", + "start": 2169.7, + "end": 2170.32, + "probability": 0.85986328125 + } + ] + }, + { + "id": 794, + "text": "Where it's hijacking the mail program in the background and saying, hey, send out 10,000", + "start": 2170.32, + "end": 2174.52, + "words": [ + { + "word": " Where", + "start": 2170.32, + "end": 2170.44, + "probability": 0.048187255859375 + }, + { + "word": " it's", + "start": 2170.44, + "end": 2170.8, + "probability": 0.9951171875 + }, + { + "word": " hijacking", + "start": 2170.8, + "end": 2171.36, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 2171.36, + "end": 2171.52, + "probability": 0.99560546875 + }, + { + "word": " mail", + "start": 2171.52, + "end": 2171.66, + "probability": 0.9921875 + }, + { + "word": " program", + "start": 2171.66, + "end": 2171.88, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 2171.88, + "end": 2172.2, + "probability": 0.96435546875 + }, + { + "word": " the", + "start": 2172.2, + "end": 2172.24, + "probability": 1.0 + }, + { + "word": " background", + "start": 2172.24, + "end": 2172.6, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2172.6, + "end": 2172.9, + "probability": 0.90478515625 + }, + { + "word": " saying,", + "start": 2172.9, + "end": 2173.14, + "probability": 0.99951171875 + }, + { + "word": " hey,", + "start": 2173.2, + "end": 2173.32, + "probability": 0.923828125 + }, + { + "word": " send", + "start": 2173.36, + "end": 2173.56, + "probability": 1.0 + }, + { + "word": " out", + "start": 2173.56, + "end": 2173.84, + "probability": 1.0 + }, + { + "word": " 10", + "start": 2173.84, + "end": 2174.12, + "probability": 0.9990234375 + }, + { + "word": ",000", + "start": 2174.12, + "end": 2174.52, + "probability": 1.0 + } + ] + }, + { + "id": 795, + "text": "emails.", + "start": 2174.52, + "end": 2174.74, + "words": [ + { + "word": " emails.", + "start": 2174.52, + "end": 2174.74, + "probability": 0.9345703125 + } + ] + }, + { + "id": 796, + "text": "However, if you have Malwarebytes on there and you had Panda on there, that's pretty", + "start": 2176.94, + "end": 2181.12, + "words": [ + { + "word": " However,", + "start": 2176.94, + "end": 2177.38, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2177.38, + "end": 2177.82, + "probability": 0.8701171875 + }, + { + "word": " you", + "start": 2177.82, + "end": 2178.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 2178.04, + "end": 2178.3, + "probability": 1.0 + }, + { + "word": " Malwarebytes", + "start": 2178.3, + "end": 2179.02, + "probability": 0.95166015625 + }, + { + "word": " on", + "start": 2179.02, + "end": 2179.16, + "probability": 1.0 + }, + { + "word": " there", + "start": 2179.16, + "end": 2179.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 2179.34, + "end": 2179.54, + "probability": 0.9697265625 + }, + { + "word": " you", + "start": 2179.54, + "end": 2179.68, + "probability": 1.0 + }, + { + "word": " had", + "start": 2179.68, + "end": 2179.84, + "probability": 0.9931640625 + }, + { + "word": " Panda", + "start": 2179.84, + "end": 2180.16, + "probability": 0.9794921875 + }, + { + "word": " on", + "start": 2180.16, + "end": 2180.32, + "probability": 1.0 + }, + { + "word": " there,", + "start": 2180.32, + "end": 2180.5, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2180.56, + "end": 2180.74, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 2180.74, + "end": 2181.12, + "probability": 1.0 + } + ] + }, + { + "id": 797, + "text": "unlikely, especially on a Windows 8 machine.", + "start": 2181.12, + "end": 2183.44, + "words": [ + { + "word": " unlikely,", + "start": 2181.12, + "end": 2181.56, + "probability": 1.0 + }, + { + "word": " especially", + "start": 2181.9, + "end": 2182.68, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2182.68, + "end": 2182.9, + "probability": 0.98046875 + }, + { + "word": " a", + "start": 2182.9, + "end": 2182.94, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 2182.94, + "end": 2183.08, + "probability": 1.0 + }, + { + "word": " 8", + "start": 2183.08, + "end": 2183.26, + "probability": 0.9990234375 + }, + { + "word": " machine.", + "start": 2183.26, + "end": 2183.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 798, + "text": "Can you recommend a different aggregating mail client of some kind?", + "start": 2184.16, + "end": 2189.46, + "words": [ + { + "word": " Can", + "start": 2184.16, + "end": 2184.6, + "probability": 0.91552734375 + }, + { + "word": " you", + "start": 2184.6, + "end": 2184.74, + "probability": 1.0 + }, + { + "word": " recommend", + "start": 2184.74, + "end": 2185.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 2185.14, + "end": 2185.44, + "probability": 1.0 + }, + { + "word": " different", + "start": 2185.44, + "end": 2185.7, + "probability": 1.0 + }, + { + "word": " aggregating", + "start": 2185.7, + "end": 2187.4, + "probability": 1.0 + }, + { + "word": " mail", + "start": 2187.4, + "end": 2187.98, + "probability": 0.9990234375 + }, + { + "word": " client", + "start": 2187.98, + "end": 2188.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2188.9, + "end": 2189.08, + "probability": 1.0 + }, + { + "word": " some", + "start": 2189.08, + "end": 2189.18, + "probability": 1.0 + }, + { + "word": " kind?", + "start": 2189.18, + "end": 2189.46, + "probability": 1.0 + } + ] + }, + { + "id": 799, + "text": "Well, I'm a big fan of Outlook myself.", + "start": 2189.76, + "end": 2191.3, + "words": [ + { + "word": " Well,", + "start": 2189.76, + "end": 2190.0, + "probability": 0.97900390625 + }, + { + "word": " I'm", + "start": 2190.02, + "end": 2190.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 2190.16, + "end": 2190.18, + "probability": 1.0 + }, + { + "word": " big", + "start": 2190.18, + "end": 2190.36, + "probability": 1.0 + }, + { + "word": " fan", + "start": 2190.36, + "end": 2190.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 2190.56, + "end": 2190.7, + "probability": 0.9990234375 + }, + { + "word": " Outlook", + "start": 2190.7, + "end": 2191.04, + "probability": 1.0 + }, + { + "word": " myself.", + "start": 2191.04, + "end": 2191.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 800, + "text": "But the built-in mail client for 8, even though it's got kind of a weird interface, is also", + "start": 2193.3599999999997, + "end": 2198.44, + "words": [ + { + "word": " But", + "start": 2193.3599999999997, + "end": 2193.7999999999997, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 2193.7999999999997, + "end": 2194.24, + "probability": 0.99560546875 + }, + { + "word": " built", + "start": 2194.24, + "end": 2195.12, + "probability": 1.0 + }, + { + "word": "-in", + "start": 2195.12, + "end": 2195.26, + "probability": 0.99560546875 + }, + { + "word": " mail", + "start": 2195.26, + "end": 2195.44, + "probability": 0.9990234375 + }, + { + "word": " client", + "start": 2195.44, + "end": 2195.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 2195.7, + "end": 2195.9, + "probability": 1.0 + }, + { + "word": " 8,", + "start": 2195.9, + "end": 2196.04, + "probability": 0.98974609375 + }, + { + "word": " even", + "start": 2196.22, + "end": 2196.5, + "probability": 1.0 + }, + { + "word": " though", + "start": 2196.5, + "end": 2196.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2196.64, + "end": 2196.7, + "probability": 1.0 + }, + { + "word": " got", + "start": 2196.7, + "end": 2196.8, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2196.8, + "end": 2196.98, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2196.98, + "end": 2197.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2197.08, + "end": 2197.16, + "probability": 1.0 + }, + { + "word": " weird", + "start": 2197.16, + "end": 2197.4, + "probability": 1.0 + }, + { + "word": " interface,", + "start": 2197.4, + "end": 2197.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 2198.0, + "end": 2198.18, + "probability": 1.0 + }, + { + "word": " also", + "start": 2198.18, + "end": 2198.44, + "probability": 1.0 + } + ] + }, + { + "id": 801, + "text": "an aggregating mail client.", + "start": 2198.44, + "end": 2199.46, + "words": [ + { + "word": " an", + "start": 2198.44, + "end": 2198.58, + "probability": 1.0 + }, + { + "word": " aggregating", + "start": 2198.58, + "end": 2199.0, + "probability": 1.0 + }, + { + "word": " mail", + "start": 2199.0, + "end": 2199.18, + "probability": 0.99951171875 + }, + { + "word": " client.", + "start": 2199.18, + "end": 2199.46, + "probability": 1.0 + } + ] + }, + { + "id": 802, + "text": "So you can have multiple accounts in there.", + "start": 2199.46, + "end": 2201.28, + "words": [ + { + "word": " So", + "start": 2199.46, + "end": 2199.8, + "probability": 0.55908203125 + }, + { + "word": " you", + "start": 2199.8, + "end": 2199.94, + "probability": 0.92529296875 + }, + { + "word": " can", + "start": 2199.94, + "end": 2200.08, + "probability": 1.0 + }, + { + "word": " have", + "start": 2200.08, + "end": 2200.28, + "probability": 1.0 + }, + { + "word": " multiple", + "start": 2200.28, + "end": 2200.6, + "probability": 1.0 + }, + { + "word": " accounts", + "start": 2200.6, + "end": 2200.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 2200.94, + "end": 2201.16, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2201.16, + "end": 2201.28, + "probability": 1.0 + } + ] + }, + { + "id": 803, + "text": "Really, if you're looking for a decent email client, all the free ones are kind of terrible.", + "start": 2203.26, + "end": 2210.0, + "words": [ + { + "word": " Really,", + "start": 2203.26, + "end": 2203.82, + "probability": 0.947265625 + }, + { + "word": " if", + "start": 2203.82, + "end": 2204.38, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2204.38, + "end": 2204.5, + "probability": 0.99951171875 + }, + { + "word": " looking", + "start": 2204.5, + "end": 2204.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 2204.7, + "end": 2204.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2204.96, + "end": 2205.06, + "probability": 0.99560546875 + }, + { + "word": " decent", + "start": 2205.06, + "end": 2205.48, + "probability": 1.0 + }, + { + "word": " email", + "start": 2205.48, + "end": 2207.14, + "probability": 0.9560546875 + }, + { + "word": " client,", + "start": 2207.14, + "end": 2207.54, + "probability": 1.0 + }, + { + "word": " all", + "start": 2207.9, + "end": 2208.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2208.18, + "end": 2208.78, + "probability": 1.0 + }, + { + "word": " free", + "start": 2208.78, + "end": 2208.96, + "probability": 1.0 + }, + { + "word": " ones", + "start": 2208.96, + "end": 2209.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 2209.18, + "end": 2209.38, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2209.38, + "end": 2209.52, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2209.52, + "end": 2209.62, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 2209.62, + "end": 2210.0, + "probability": 1.0 + } + ] + }, + { + "id": 804, + "text": "So there's something called EM client, which is if you're anti-Microsoft is okay.", + "start": 2210.48, + "end": 2218.12, + "words": [ + { + "word": " So", + "start": 2210.48, + "end": 2211.04, + "probability": 0.5224609375 + }, + { + "word": " there's", + "start": 2211.04, + "end": 2213.74, + "probability": 0.98828125 + }, + { + "word": " something", + "start": 2213.74, + "end": 2214.0, + "probability": 1.0 + }, + { + "word": " called", + "start": 2214.0, + "end": 2214.26, + "probability": 1.0 + }, + { + "word": " EM", + "start": 2214.26, + "end": 2214.54, + "probability": 0.98681640625 + }, + { + "word": " client,", + "start": 2214.54, + "end": 2214.92, + "probability": 0.19677734375 + }, + { + "word": " which", + "start": 2215.2, + "end": 2215.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 2215.5, + "end": 2215.72, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2215.72, + "end": 2215.98, + "probability": 0.9091796875 + }, + { + "word": " you're", + "start": 2215.98, + "end": 2216.18, + "probability": 1.0 + }, + { + "word": " anti", + "start": 2216.18, + "end": 2216.5, + "probability": 1.0 + }, + { + "word": "-Microsoft", + "start": 2216.5, + "end": 2217.02, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 2217.02, + "end": 2217.4, + "probability": 0.433837890625 + }, + { + "word": " okay.", + "start": 2217.4, + "end": 2218.12, + "probability": 0.9306640625 + } + ] + }, + { + "id": 805, + "text": "It's kind of an Outlook clone.", + "start": 2218.22, + "end": 2219.44, + "words": [ + { + "word": " It's", + "start": 2218.22, + "end": 2218.48, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2218.48, + "end": 2218.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 2218.62, + "end": 2218.72, + "probability": 1.0 + }, + { + "word": " an", + "start": 2218.72, + "end": 2218.82, + "probability": 1.0 + }, + { + "word": " Outlook", + "start": 2218.82, + "end": 2219.1, + "probability": 0.9970703125 + }, + { + "word": " clone.", + "start": 2219.1, + "end": 2219.44, + "probability": 1.0 + } + ] + }, + { + "id": 806, + "text": "But really, I like Outlook.", + "start": 2220.96, + "end": 2223.12, + "words": [ + { + "word": " But", + "start": 2220.96, + "end": 2221.52, + "probability": 0.99951171875 + }, + { + "word": " really,", + "start": 2221.52, + "end": 2222.08, + "probability": 0.94482421875 + }, + { + "word": " I", + "start": 2222.26, + "end": 2222.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 2222.44, + "end": 2222.7, + "probability": 1.0 + }, + { + "word": " Outlook.", + "start": 2222.7, + "end": 2223.12, + "probability": 1.0 + } + ] + }, + { + "id": 807, + "text": "If you have Office, then chances are you've got like a 365 subscription.", + "start": 2223.32, + "end": 2229.04, + "words": [ + { + "word": " If", + "start": 2223.32, + "end": 2223.88, + "probability": 0.68408203125 + }, + { + "word": " you", + "start": 2223.88, + "end": 2224.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 2224.6, + "end": 2224.78, + "probability": 1.0 + }, + { + "word": " Office,", + "start": 2224.78, + "end": 2225.14, + "probability": 0.99658203125 + }, + { + "word": " then", + "start": 2225.4, + "end": 2225.92, + "probability": 0.86474609375 + }, + { + "word": " chances", + "start": 2225.92, + "end": 2227.06, + "probability": 0.9794921875 + }, + { + "word": " are", + "start": 2227.06, + "end": 2227.6, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2227.6, + "end": 2227.76, + "probability": 1.0 + }, + { + "word": " got", + "start": 2227.76, + "end": 2227.88, + "probability": 1.0 + }, + { + "word": " like", + "start": 2227.88, + "end": 2228.02, + "probability": 0.58203125 + }, + { + "word": " a", + "start": 2228.02, + "end": 2228.14, + "probability": 1.0 + }, + { + "word": " 365", + "start": 2228.14, + "end": 2228.42, + "probability": 0.9951171875 + }, + { + "word": " subscription.", + "start": 2228.42, + "end": 2229.04, + "probability": 1.0 + } + ] + }, + { + "id": 808, + "text": "It's not a big deal.", + "start": 2229.14, + "end": 2229.44, + "words": [ + { + "word": " It's", + "start": 2229.14, + "end": 2229.44, + "probability": 0.61376953125 + }, + { + "word": " not", + "start": 2229.44, + "end": 2229.44, + "probability": 0.07452392578125 + }, + { + "word": " a", + "start": 2229.44, + "end": 2229.44, + "probability": 0.249267578125 + }, + { + "word": " big", + "start": 2229.44, + "end": 2229.44, + "probability": 0.1566162109375 + }, + { + "word": " deal.", + "start": 2229.44, + "end": 2229.44, + "probability": 0.912109375 + } + ] + }, + { + "id": 809, + "text": "", + "start": 2229.44, + "end": 2229.44, + "words": [] + }, + { + "id": 810, + "text": "And you have Outlook.", + "start": 2229.46, + "end": 2230.18, + "words": [ + { + "word": " And", + "start": 2229.46, + "end": 2229.52, + "probability": 0.5634765625 + }, + { + "word": " you", + "start": 2229.52, + "end": 2229.6, + "probability": 0.99560546875 + }, + { + "word": " have", + "start": 2229.6, + "end": 2229.78, + "probability": 1.0 + }, + { + "word": " Outlook.", + "start": 2229.78, + "end": 2230.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 811, + "text": "Just use it.", + "start": 2230.22, + "end": 2231.02, + "words": [ + { + "word": " Just", + "start": 2230.22, + "end": 2230.58, + "probability": 0.9990234375 + }, + { + "word": " use", + "start": 2230.58, + "end": 2230.84, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2230.84, + "end": 2231.02, + "probability": 1.0 + } + ] + }, + { + "id": 812, + "text": "It's a decent mail program.", + "start": 2231.08, + "end": 2232.5, + "words": [ + { + "word": " It's", + "start": 2231.08, + "end": 2231.4, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 2231.4, + "end": 2231.5, + "probability": 1.0 + }, + { + "word": " decent", + "start": 2231.5, + "end": 2231.94, + "probability": 0.99951171875 + }, + { + "word": " mail", + "start": 2231.94, + "end": 2232.22, + "probability": 0.998046875 + }, + { + "word": " program.", + "start": 2232.22, + "end": 2232.5, + "probability": 1.0 + } + ] + }, + { + "id": 813, + "text": "All righty.", + "start": 2233.34, + "end": 2234.38, + "words": [ + { + "word": " All", + "start": 2233.34, + "end": 2233.86, + "probability": 0.1705322265625 + }, + { + "word": " righty.", + "start": 2233.86, + "end": 2234.38, + "probability": 0.9892578125 + } + ] + }, + { + "id": 814, + "text": "Well, thank you for the information.", + "start": 2235.42, + "end": 2237.1, + "words": [ + { + "word": " Well,", + "start": 2235.42, + "end": 2235.94, + "probability": 0.99853515625 + }, + { + "word": " thank", + "start": 2236.04, + "end": 2236.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 2236.28, + "end": 2236.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 2236.44, + "end": 2236.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2236.58, + "end": 2236.66, + "probability": 1.0 + }, + { + "word": " information.", + "start": 2236.66, + "end": 2237.1, + "probability": 1.0 + } + ] + }, + { + "id": 815, + "text": "I'll check into that EM one there and maybe even try the built-in one.", + "start": 2237.34, + "end": 2241.24, + "words": [ + { + "word": " I'll", + "start": 2237.34, + "end": 2237.6, + "probability": 0.99951171875 + }, + { + "word": " check", + "start": 2237.6, + "end": 2238.22, + "probability": 0.9990234375 + }, + { + "word": " into", + "start": 2238.22, + "end": 2238.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 2238.44, + "end": 2238.58, + "probability": 1.0 + }, + { + "word": " EM", + "start": 2238.58, + "end": 2238.84, + "probability": 0.99267578125 + }, + { + "word": " one", + "start": 2238.84, + "end": 2239.1, + "probability": 0.96533203125 + }, + { + "word": " there", + "start": 2239.1, + "end": 2239.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 2239.34, + "end": 2239.62, + "probability": 0.908203125 + }, + { + "word": " maybe", + "start": 2239.62, + "end": 2240.04, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 2240.04, + "end": 2240.2, + "probability": 1.0 + }, + { + "word": " try", + "start": 2240.2, + "end": 2240.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2240.42, + "end": 2240.56, + "probability": 1.0 + }, + { + "word": " built", + "start": 2240.56, + "end": 2240.82, + "probability": 1.0 + }, + { + "word": "-in", + "start": 2240.82, + "end": 2240.98, + "probability": 0.99560546875 + }, + { + "word": " one.", + "start": 2240.98, + "end": 2241.24, + "probability": 1.0 + } + ] + }, + { + "id": 816, + "text": "I'm going to suggest one other thing.", + "start": 2241.42, + "end": 2243.06, + "words": [ + { + "word": " I'm", + "start": 2241.42, + "end": 2241.7, + "probability": 0.8369140625 + }, + { + "word": " going", + "start": 2241.7, + "end": 2242.1, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2242.1, + "end": 2242.1, + "probability": 1.0 + }, + { + "word": " suggest", + "start": 2242.1, + "end": 2242.36, + "probability": 1.0 + }, + { + "word": " one", + "start": 2242.36, + "end": 2242.64, + "probability": 1.0 + }, + { + "word": " other", + "start": 2242.64, + "end": 2242.8, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 2242.8, + "end": 2243.06, + "probability": 1.0 + } + ] + }, + { + "id": 817, + "text": "You have Thunderbird installed, which means that you probably have Firefox installed.", + "start": 2243.2, + "end": 2246.28, + "words": [ + { + "word": " You", + "start": 2243.2, + "end": 2243.58, + "probability": 0.99560546875 + }, + { + "word": " have", + "start": 2243.58, + "end": 2243.74, + "probability": 1.0 + }, + { + "word": " Thunderbird", + "start": 2243.74, + "end": 2244.12, + "probability": 0.9990234375 + }, + { + "word": " installed,", + "start": 2244.12, + "end": 2244.36, + "probability": 0.97265625 + }, + { + "word": " which", + "start": 2244.5, + "end": 2244.68, + "probability": 0.9990234375 + }, + { + "word": " means", + "start": 2244.68, + "end": 2244.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 2244.8, + "end": 2244.96, + "probability": 0.89501953125 + }, + { + "word": " you", + "start": 2244.96, + "end": 2244.98, + "probability": 1.0 + }, + { + "word": " probably", + "start": 2244.98, + "end": 2245.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 2245.24, + "end": 2245.56, + "probability": 1.0 + }, + { + "word": " Firefox", + "start": 2245.56, + "end": 2245.9, + "probability": 0.99755859375 + }, + { + "word": " installed.", + "start": 2245.9, + "end": 2246.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 818, + "text": "I would say uninstall Firefox and see if it gets better.", + "start": 2248.0, + "end": 2251.08, + "words": [ + { + "word": " I", + "start": 2248.0, + "end": 2248.52, + "probability": 0.7958984375 + }, + { + "word": " would", + "start": 2248.52, + "end": 2249.04, + "probability": 1.0 + }, + { + "word": " say", + "start": 2249.04, + "end": 2249.22, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 2249.22, + "end": 2249.54, + "probability": 0.9990234375 + }, + { + "word": " Firefox", + "start": 2249.54, + "end": 2249.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2249.88, + "end": 2250.28, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 2250.28, + "end": 2250.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 2250.5, + "end": 2250.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 2250.62, + "end": 2250.74, + "probability": 1.0 + }, + { + "word": " gets", + "start": 2250.74, + "end": 2250.86, + "probability": 1.0 + }, + { + "word": " better.", + "start": 2250.86, + "end": 2251.08, + "probability": 1.0 + } + ] + }, + { + "id": 819, + "text": "Firefox has this weird issue.", + "start": 2251.84, + "end": 2253.68, + "words": [ + { + "word": " Firefox", + "start": 2251.84, + "end": 2252.36, + "probability": 0.9990234375 + }, + { + "word": " has", + "start": 2252.36, + "end": 2252.64, + "probability": 1.0 + }, + { + "word": " this", + "start": 2252.64, + "end": 2252.84, + "probability": 1.0 + }, + { + "word": " weird", + "start": 2252.84, + "end": 2253.18, + "probability": 1.0 + }, + { + "word": " issue.", + "start": 2253.18, + "end": 2253.68, + "probability": 1.0 + } + ] + }, + { + "id": 820, + "text": "And this is the reason I hate Firefox, is that on some machines, for no apparent reason,", + "start": 2254.02, + "end": 2259.44, + "words": [ + { + "word": " And", + "start": 2254.02, + "end": 2254.54, + "probability": 0.9970703125 + }, + { + "word": " this", + "start": 2254.54, + "end": 2254.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 2254.68, + "end": 2254.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 2254.78, + "end": 2254.9, + "probability": 1.0 + }, + { + "word": " reason", + "start": 2254.9, + "end": 2255.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 2255.1, + "end": 2255.24, + "probability": 1.0 + }, + { + "word": " hate", + "start": 2255.24, + "end": 2255.42, + "probability": 1.0 + }, + { + "word": " Firefox,", + "start": 2255.42, + "end": 2255.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 2256.06, + "end": 2256.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 2256.46, + "end": 2256.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 2256.86, + "end": 2257.36, + "probability": 1.0 + }, + { + "word": " some", + "start": 2257.36, + "end": 2257.92, + "probability": 1.0 + }, + { + "word": " machines,", + "start": 2257.92, + "end": 2258.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 2258.42, + "end": 2258.78, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 2258.78, + "end": 2259.1, + "probability": 0.99951171875 + }, + { + "word": " apparent", + "start": 2259.1, + "end": 2259.44, + "probability": 0.353759765625 + }, + { + "word": " reason,", + "start": 2259.44, + "end": 2259.44, + "probability": 0.6337890625 + } + ] + }, + { + "id": 821, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 822, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 823, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 824, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 825, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 826, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 827, + "text": "", + "start": 2259.44, + "end": 2259.44, + "words": [] + }, + { + "id": 828, + "text": "whatsoever, it just makes the machines slow for certain functions.", + "start": 2259.44, + "end": 2263.8, + "words": [ + { + "word": " whatsoever,", + "start": 2259.44, + "end": 2259.96, + "probability": 0.0014276504516601562 + }, + { + "word": " it", + "start": 2260.7, + "end": 2261.48, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 2261.48, + "end": 2261.66, + "probability": 0.998046875 + }, + { + "word": " makes", + "start": 2261.66, + "end": 2261.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 2261.84, + "end": 2261.94, + "probability": 0.9990234375 + }, + { + "word": " machines", + "start": 2261.94, + "end": 2262.08, + "probability": 0.0004172325134277344 + }, + { + "word": " slow", + "start": 2262.08, + "end": 2262.38, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 2262.38, + "end": 2263.1, + "probability": 0.90771484375 + }, + { + "word": " certain", + "start": 2263.1, + "end": 2263.4, + "probability": 0.9990234375 + }, + { + "word": " functions.", + "start": 2263.4, + "end": 2263.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 829, + "text": "All right?", + "start": 2264.14, + "end": 2264.54, + "words": [ + { + "word": " All", + "start": 2264.14, + "end": 2264.54, + "probability": 0.046478271484375 + }, + { + "word": " right?", + "start": 2264.54, + "end": 2264.54, + "probability": 0.927734375 + } + ] + }, + { + "id": 830, + "text": "A lot of times, it's when you're typing.", + "start": 2264.62, + "end": 2265.88, + "words": [ + { + "word": " A", + "start": 2264.62, + "end": 2264.76, + "probability": 0.9814453125 + }, + { + "word": " lot", + "start": 2264.76, + "end": 2264.88, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2264.88, + "end": 2264.94, + "probability": 0.998046875 + }, + { + "word": " times,", + "start": 2264.94, + "end": 2265.2, + "probability": 0.99267578125 + }, + { + "word": " it's", + "start": 2265.2, + "end": 2265.34, + "probability": 0.9892578125 + }, + { + "word": " when", + "start": 2265.34, + "end": 2265.44, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 2265.44, + "end": 2265.56, + "probability": 0.9951171875 + }, + { + "word": " typing.", + "start": 2265.56, + "end": 2265.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 831, + "text": "And I have no idea why it would be that way.", + "start": 2266.58, + "end": 2268.92, + "words": [ + { + "word": " And", + "start": 2266.58, + "end": 2266.98, + "probability": 0.77734375 + }, + { + "word": " I", + "start": 2266.98, + "end": 2267.1, + "probability": 0.982421875 + }, + { + "word": " have", + "start": 2267.1, + "end": 2267.32, + "probability": 0.99853515625 + }, + { + "word": " no", + "start": 2267.32, + "end": 2267.48, + "probability": 0.9990234375 + }, + { + "word": " idea", + "start": 2267.48, + "end": 2267.82, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 2267.82, + "end": 2268.08, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2268.08, + "end": 2268.26, + "probability": 0.99755859375 + }, + { + "word": " would", + "start": 2268.26, + "end": 2268.36, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2268.36, + "end": 2268.52, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2268.52, + "end": 2268.68, + "probability": 0.99951171875 + }, + { + "word": " way.", + "start": 2268.68, + "end": 2268.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 832, + "text": "But we find all the time that people will have Thunderbird installed and they're really", + "start": 2269.3, + "end": 2272.86, + "words": [ + { + "word": " But", + "start": 2269.3, + "end": 2269.7, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 2269.7, + "end": 2270.18, + "probability": 0.9697265625 + }, + { + "word": " find", + "start": 2270.18, + "end": 2270.48, + "probability": 0.99609375 + }, + { + "word": " all", + "start": 2270.48, + "end": 2270.98, + "probability": 0.958984375 + }, + { + "word": " the", + "start": 2270.98, + "end": 2271.16, + "probability": 0.9990234375 + }, + { + "word": " time", + "start": 2271.16, + "end": 2271.38, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2271.38, + "end": 2271.5, + "probability": 0.9853515625 + }, + { + "word": " people", + "start": 2271.5, + "end": 2271.7, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2271.7, + "end": 2271.8, + "probability": 0.1844482421875 + }, + { + "word": " have", + "start": 2271.8, + "end": 2271.9, + "probability": 0.998046875 + }, + { + "word": " Thunderbird", + "start": 2271.9, + "end": 2272.3, + "probability": 0.99169921875 + }, + { + "word": " installed", + "start": 2272.3, + "end": 2272.56, + "probability": 0.994140625 + }, + { + "word": " and", + "start": 2272.56, + "end": 2272.76, + "probability": 0.423828125 + }, + { + "word": " they're", + "start": 2272.76, + "end": 2272.82, + "probability": 0.89599609375 + }, + { + "word": " really", + "start": 2272.82, + "end": 2272.86, + "probability": 0.039886474609375 + } + ] + }, + { + "id": 833, + "text": "like, my computer's so slow.", + "start": 2272.86, + "end": 2274.1, + "words": [ + { + "word": " like,", + "start": 2272.86, + "end": 2273.04, + "probability": 0.86669921875 + }, + { + "word": " my", + "start": 2273.14, + "end": 2273.3, + "probability": 0.66845703125 + }, + { + "word": " computer's", + "start": 2273.3, + "end": 2273.68, + "probability": 0.7919921875 + }, + { + "word": " so", + "start": 2273.68, + "end": 2273.78, + "probability": 0.9970703125 + }, + { + "word": " slow.", + "start": 2273.78, + "end": 2274.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 834, + "text": "It can't even keep up with me typing.", + "start": 2274.2, + "end": 2276.02, + "words": [ + { + "word": " It", + "start": 2274.2, + "end": 2274.3, + "probability": 0.9853515625 + }, + { + "word": " can't", + "start": 2274.3, + "end": 2274.86, + "probability": 0.9921875 + }, + { + "word": " even", + "start": 2274.86, + "end": 2275.0, + "probability": 0.998046875 + }, + { + "word": " keep", + "start": 2275.0, + "end": 2275.24, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2275.24, + "end": 2275.42, + "probability": 1.0 + }, + { + "word": " with", + "start": 2275.42, + "end": 2275.54, + "probability": 1.0 + }, + { + "word": " me", + "start": 2275.54, + "end": 2275.68, + "probability": 0.9912109375 + }, + { + "word": " typing.", + "start": 2275.68, + "end": 2276.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 835, + "text": "And not even in Firefox.", + "start": 2277.1, + "end": 2279.32, + "words": [ + { + "word": " And", + "start": 2277.1, + "end": 2277.5, + "probability": 0.9873046875 + }, + { + "word": " not", + "start": 2277.5, + "end": 2277.9, + "probability": 0.98876953125 + }, + { + "word": " even", + "start": 2277.9, + "end": 2278.14, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2278.14, + "end": 2278.38, + "probability": 0.9990234375 + }, + { + "word": " Firefox.", + "start": 2278.38, + "end": 2279.32, + "probability": 0.9921875 + } + ] + }, + { + "id": 836, + "text": "All right?", + "start": 2279.56, + "end": 2279.66, + "words": [ + { + "word": " All", + "start": 2279.56, + "end": 2279.64, + "probability": 0.036041259765625 + }, + { + "word": " right?", + "start": 2279.64, + "end": 2279.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 837, + "text": "Firefox isn't even running.", + "start": 2279.68, + "end": 2280.54, + "words": [ + { + "word": " Firefox", + "start": 2279.68, + "end": 2279.88, + "probability": 0.9736328125 + }, + { + "word": " isn't", + "start": 2279.88, + "end": 2280.14, + "probability": 0.99755859375 + }, + { + "word": " even", + "start": 2280.14, + "end": 2280.26, + "probability": 0.99951171875 + }, + { + "word": " running.", + "start": 2280.26, + "end": 2280.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 838, + "text": "It's just installed on the computer.", + "start": 2280.62, + "end": 2281.76, + "words": [ + { + "word": " It's", + "start": 2280.62, + "end": 2280.74, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2280.74, + "end": 2280.86, + "probability": 0.9990234375 + }, + { + "word": " installed", + "start": 2280.86, + "end": 2281.22, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 2281.22, + "end": 2281.38, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2281.38, + "end": 2281.48, + "probability": 0.99951171875 + }, + { + "word": " computer.", + "start": 2281.48, + "end": 2281.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 839, + "text": "All right?", + "start": 2282.1, + "end": 2282.52, + "words": [ + { + "word": " All", + "start": 2282.1, + "end": 2282.5, + "probability": 0.63525390625 + }, + { + "word": " right?", + "start": 2282.5, + "end": 2282.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 840, + "text": "And they're typing in Word or in their email program.", + "start": 2282.6, + "end": 2285.76, + "words": [ + { + "word": " And", + "start": 2282.6, + "end": 2282.8, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 2282.8, + "end": 2282.94, + "probability": 0.82568359375 + }, + { + "word": " typing", + "start": 2282.94, + "end": 2283.24, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 2283.24, + "end": 2283.56, + "probability": 0.99755859375 + }, + { + "word": " Word", + "start": 2283.56, + "end": 2283.98, + "probability": 0.96923828125 + }, + { + "word": " or", + "start": 2283.98, + "end": 2284.4, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 2284.4, + "end": 2284.98, + "probability": 0.99853515625 + }, + { + "word": " their", + "start": 2284.98, + "end": 2285.1, + "probability": 0.99951171875 + }, + { + "word": " email", + "start": 2285.1, + "end": 2285.4, + "probability": 0.96875 + }, + { + "word": " program.", + "start": 2285.4, + "end": 2285.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 841, + "text": "And it's just dragging along.", + "start": 2285.94, + "end": 2287.0, + "words": [ + { + "word": " And", + "start": 2285.94, + "end": 2286.08, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2286.08, + "end": 2286.3, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 2286.3, + "end": 2286.42, + "probability": 0.99951171875 + }, + { + "word": " dragging", + "start": 2286.42, + "end": 2286.78, + "probability": 0.99951171875 + }, + { + "word": " along.", + "start": 2286.78, + "end": 2287.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 842, + "text": "And it's like not responding.", + "start": 2287.16, + "end": 2288.0, + "words": [ + { + "word": " And", + "start": 2287.16, + "end": 2287.24, + "probability": 0.300537109375 + }, + { + "word": " it's", + "start": 2287.24, + "end": 2287.26, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 2287.26, + "end": 2287.38, + "probability": 0.85400390625 + }, + { + "word": " not", + "start": 2287.38, + "end": 2287.58, + "probability": 0.97216796875 + }, + { + "word": " responding.", + "start": 2287.58, + "end": 2288.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 843, + "text": "Or they'll type in some language language language language language language language language", + "start": 2288.3, + "end": 2289.42, + "words": [ + { + "word": " Or", + "start": 2288.3, + "end": 2288.5, + "probability": 0.578125 + }, + { + "word": " they'll", + "start": 2288.5, + "end": 2289.28, + "probability": 0.9970703125 + }, + { + "word": " type", + "start": 2289.28, + "end": 2289.42, + "probability": 0.94189453125 + }, + { + "word": " in", + "start": 2289.42, + "end": 2289.42, + "probability": 0.6865234375 + }, + { + "word": " some", + "start": 2289.42, + "end": 2289.42, + "probability": 0.02288818359375 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.01120758056640625 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.00012743473052978516 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.00899505615234375 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.189697265625 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.58984375 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.81884765625 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.90087890625 + }, + { + "word": " language", + "start": 2289.42, + "end": 2289.42, + "probability": 0.9326171875 + } + ] + }, + { + "id": 844, + "text": "", + "start": 2289.42, + "end": 2289.42, + "words": [] + }, + { + "id": 845, + "text": "", + "start": 2289.42, + "end": 2289.42, + "words": [] + }, + { + "id": 846, + "text": "", + "start": 2289.42, + "end": 2289.42, + "words": [] + }, + { + "id": 847, + "text": "and then the words will catch up to them.", + "start": 2289.42, + "end": 2291.14, + "words": [ + { + "word": " and", + "start": 2289.42, + "end": 2289.64, + "probability": 0.43017578125 + }, + { + "word": " then", + "start": 2289.64, + "end": 2289.9, + "probability": 0.9189453125 + }, + { + "word": " the", + "start": 2289.9, + "end": 2290.06, + "probability": 0.998046875 + }, + { + "word": " words", + "start": 2290.06, + "end": 2290.32, + "probability": 0.9970703125 + }, + { + "word": " will", + "start": 2290.32, + "end": 2290.44, + "probability": 0.99755859375 + }, + { + "word": " catch", + "start": 2290.44, + "end": 2290.66, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2290.66, + "end": 2290.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 2290.88, + "end": 2291.02, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 2291.02, + "end": 2291.14, + "probability": 0.97412109375 + } + ] + }, + { + "id": 848, + "text": "It's Firefox.", + "start": 2291.72, + "end": 2292.6, + "words": [ + { + "word": " It's", + "start": 2291.72, + "end": 2292.16, + "probability": 0.99853515625 + }, + { + "word": " Firefox.", + "start": 2292.16, + "end": 2292.6, + "probability": 0.998046875 + } + ] + }, + { + "id": 849, + "text": "And all you do is uninstall Firefox,", + "start": 2292.98, + "end": 2294.18, + "words": [ + { + "word": " And", + "start": 2292.98, + "end": 2293.16, + "probability": 0.82080078125 + }, + { + "word": " all", + "start": 2293.16, + "end": 2293.24, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2293.24, + "end": 2293.36, + "probability": 1.0 + }, + { + "word": " do", + "start": 2293.36, + "end": 2293.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 2293.48, + "end": 2293.6, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 2293.6, + "end": 2293.92, + "probability": 0.9990234375 + }, + { + "word": " Firefox,", + "start": 2293.92, + "end": 2294.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 850, + "text": "the machine goes back to normal, right?", + "start": 2294.36, + "end": 2296.74, + "words": [ + { + "word": " the", + "start": 2294.36, + "end": 2294.48, + "probability": 0.8701171875 + }, + { + "word": " machine", + "start": 2294.48, + "end": 2294.64, + "probability": 1.0 + }, + { + "word": " goes", + "start": 2294.64, + "end": 2294.86, + "probability": 0.890625 + }, + { + "word": " back", + "start": 2294.86, + "end": 2295.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2295.98, + "end": 2296.08, + "probability": 0.9970703125 + }, + { + "word": " normal,", + "start": 2296.08, + "end": 2296.26, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2296.38, + "end": 2296.74, + "probability": 0.97216796875 + } + ] + }, + { + "id": 851, + "text": "Instant typing again.", + "start": 2296.84, + "end": 2298.12, + "words": [ + { + "word": " Instant", + "start": 2296.84, + "end": 2297.28, + "probability": 0.99755859375 + }, + { + "word": " typing", + "start": 2297.28, + "end": 2297.8, + "probability": 1.0 + }, + { + "word": " again.", + "start": 2297.8, + "end": 2298.12, + "probability": 1.0 + } + ] + }, + { + "id": 852, + "text": "So we don't know why it does that with Firefox.", + "start": 2298.56, + "end": 2300.68, + "words": [ + { + "word": " So", + "start": 2298.56, + "end": 2299.0, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 2299.0, + "end": 2299.1, + "probability": 0.91943359375 + }, + { + "word": " don't", + "start": 2299.1, + "end": 2299.26, + "probability": 1.0 + }, + { + "word": " know", + "start": 2299.26, + "end": 2299.36, + "probability": 1.0 + }, + { + "word": " why", + "start": 2299.36, + "end": 2299.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 2299.56, + "end": 2299.76, + "probability": 1.0 + }, + { + "word": " does", + "start": 2299.76, + "end": 2300.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 2300.02, + "end": 2300.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 2300.22, + "end": 2300.4, + "probability": 1.0 + }, + { + "word": " Firefox.", + "start": 2300.4, + "end": 2300.68, + "probability": 1.0 + } + ] + }, + { + "id": 853, + "text": "I honestly have not been invested enough to care.", + "start": 2302.06, + "end": 2304.82, + "words": [ + { + "word": " I", + "start": 2302.06, + "end": 2302.5, + "probability": 0.99853515625 + }, + { + "word": " honestly", + "start": 2302.5, + "end": 2302.94, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 2302.94, + "end": 2303.26, + "probability": 1.0 + }, + { + "word": " not", + "start": 2303.26, + "end": 2303.46, + "probability": 1.0 + }, + { + "word": " been", + "start": 2303.46, + "end": 2303.66, + "probability": 1.0 + }, + { + "word": " invested", + "start": 2303.66, + "end": 2303.98, + "probability": 1.0 + }, + { + "word": " enough", + "start": 2303.98, + "end": 2304.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2304.28, + "end": 2304.52, + "probability": 1.0 + }, + { + "word": " care.", + "start": 2304.52, + "end": 2304.82, + "probability": 1.0 + } + ] + }, + { + "id": 854, + "text": "So it's just been like uninstall Firefox", + "start": 2305.14, + "end": 2307.16, + "words": [ + { + "word": " So", + "start": 2305.14, + "end": 2305.58, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 2305.58, + "end": 2306.08, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2306.08, + "end": 2306.22, + "probability": 1.0 + }, + { + "word": " been", + "start": 2306.22, + "end": 2306.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 2306.36, + "end": 2306.52, + "probability": 0.87353515625 + }, + { + "word": " uninstall", + "start": 2306.52, + "end": 2306.96, + "probability": 0.95263671875 + }, + { + "word": " Firefox", + "start": 2306.96, + "end": 2307.16, + "probability": 1.0 + } + ] + }, + { + "id": 855, + "text": "and problem solved.", + "start": 2307.16, + "end": 2309.74, + "words": [ + { + "word": " and", + "start": 2307.16, + "end": 2308.0, + "probability": 0.9794921875 + }, + { + "word": " problem", + "start": 2308.0, + "end": 2309.42, + "probability": 0.9990234375 + }, + { + "word": " solved.", + "start": 2309.42, + "end": 2309.74, + "probability": 1.0 + } + ] + }, + { + "id": 856, + "text": "So I would say...", + "start": 2310.18, + "end": 2311.44, + "words": [ + { + "word": " So", + "start": 2310.18, + "end": 2310.62, + "probability": 0.9033203125 + }, + { + "word": " I", + "start": 2310.62, + "end": 2310.98, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2310.98, + "end": 2311.14, + "probability": 1.0 + }, + { + "word": " say...", + "start": 2311.14, + "end": 2311.44, + "probability": 0.8173828125 + } + ] + }, + { + "id": 857, + "text": "What's that?", + "start": 2312.12, + "end": 2312.58, + "words": [ + { + "word": " What's", + "start": 2312.12, + "end": 2312.56, + "probability": 0.845703125 + }, + { + "word": " that?", + "start": 2312.56, + "end": 2312.58, + "probability": 1.0 + } + ] + }, + { + "id": 858, + "text": "Go with Chrome.", + "start": 2313.2, + "end": 2314.0, + "words": [ + { + "word": " Go", + "start": 2313.2, + "end": 2313.42, + "probability": 0.876953125 + }, + { + "word": " with", + "start": 2313.42, + "end": 2313.66, + "probability": 0.99951171875 + }, + { + "word": " Chrome.", + "start": 2313.66, + "end": 2314.0, + "probability": 1.0 + } + ] + }, + { + "id": 859, + "text": "Yeah, we like Chrome.", + "start": 2314.36, + "end": 2315.3, + "words": [ + { + "word": " Yeah,", + "start": 2314.36, + "end": 2314.62, + "probability": 0.99365234375 + }, + { + "word": " we", + "start": 2314.64, + "end": 2314.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 2314.74, + "end": 2315.0, + "probability": 1.0 + }, + { + "word": " Chrome.", + "start": 2315.0, + "end": 2315.3, + "probability": 1.0 + } + ] + }, + { + "id": 860, + "text": "Chrome's a good browser.", + "start": 2315.86, + "end": 2316.8, + "words": [ + { + "word": " Chrome's", + "start": 2315.86, + "end": 2316.3, + "probability": 0.9931640625 + }, + { + "word": " a", + "start": 2316.3, + "end": 2316.3, + "probability": 1.0 + }, + { + "word": " good", + "start": 2316.3, + "end": 2316.46, + "probability": 1.0 + }, + { + "word": " browser.", + "start": 2316.46, + "end": 2316.8, + "probability": 1.0 + } + ] + }, + { + "id": 861, + "text": "I can dig it.", + "start": 2316.94, + "end": 2317.66, + "words": [ + { + "word": " I", + "start": 2316.94, + "end": 2317.24, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 2317.24, + "end": 2317.34, + "probability": 1.0 + }, + { + "word": " dig", + "start": 2317.34, + "end": 2317.52, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2317.52, + "end": 2317.66, + "probability": 1.0 + } + ] + }, + { + "id": 862, + "text": "So I would say go with that and see what happens.", + "start": 2317.66, + "end": 2320.82, + "words": [ + { + "word": " So", + "start": 2317.66, + "end": 2318.28, + "probability": 0.82373046875 + }, + { + "word": " I", + "start": 2318.28, + "end": 2318.62, + "probability": 0.8310546875 + }, + { + "word": " would", + "start": 2318.62, + "end": 2318.8, + "probability": 1.0 + }, + { + "word": " say", + "start": 2318.8, + "end": 2318.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 2318.92, + "end": 2319.46, + "probability": 0.98681640625 + }, + { + "word": " with", + "start": 2319.46, + "end": 2319.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 2319.66, + "end": 2319.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2319.88, + "end": 2320.12, + "probability": 0.9873046875 + }, + { + "word": " see", + "start": 2320.12, + "end": 2320.38, + "probability": 1.0 + }, + { + "word": " what", + "start": 2320.38, + "end": 2320.54, + "probability": 1.0 + }, + { + "word": " happens.", + "start": 2320.54, + "end": 2320.82, + "probability": 1.0 + } + ] + }, + { + "id": 863, + "text": "All right.", + "start": 2322.22, + "end": 2322.9, + "words": [ + { + "word": " All", + "start": 2322.22, + "end": 2322.66, + "probability": 0.9765625 + }, + { + "word": " right.", + "start": 2322.66, + "end": 2322.9, + "probability": 1.0 + } + ] + }, + { + "id": 864, + "text": "Well, thank you.", + "start": 2323.04, + "end": 2323.78, + "words": [ + { + "word": " Well,", + "start": 2323.04, + "end": 2323.42, + "probability": 0.99853515625 + }, + { + "word": " thank", + "start": 2323.44, + "end": 2323.6, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2323.6, + "end": 2323.78, + "probability": 1.0 + } + ] + }, + { + "id": 865, + "text": "No problem.", + "start": 2323.86, + "end": 2324.28, + "words": [ + { + "word": " No", + "start": 2323.86, + "end": 2324.06, + "probability": 0.9990234375 + }, + { + "word": " problem.", + "start": 2324.06, + "end": 2324.28, + "probability": 1.0 + } + ] + }, + { + "id": 866, + "text": "Have yourself a lovely, lovely day.", + "start": 2324.38, + "end": 2326.44, + "words": [ + { + "word": " Have", + "start": 2324.38, + "end": 2324.6, + "probability": 0.99658203125 + }, + { + "word": " yourself", + "start": 2324.6, + "end": 2324.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 2324.82, + "end": 2325.06, + "probability": 1.0 + }, + { + "word": " lovely,", + "start": 2325.06, + "end": 2325.54, + "probability": 1.0 + }, + { + "word": " lovely", + "start": 2325.76, + "end": 2326.08, + "probability": 1.0 + }, + { + "word": " day.", + "start": 2326.08, + "end": 2326.44, + "probability": 1.0 + } + ] + }, + { + "id": 867, + "text": "You too.", + "start": 2326.8, + "end": 2327.48, + "words": [ + { + "word": " You", + "start": 2326.8, + "end": 2327.22, + "probability": 0.99853515625 + }, + { + "word": " too.", + "start": 2327.22, + "end": 2327.48, + "probability": 0.9326171875 + } + ] + }, + { + "id": 868, + "text": "All right.", + "start": 2327.64, + "end": 2328.0, + "words": [ + { + "word": " All", + "start": 2327.64, + "end": 2327.8, + "probability": 0.99853515625 + }, + { + "word": " right.", + "start": 2327.8, + "end": 2328.0, + "probability": 1.0 + } + ] + }, + { + "id": 869, + "text": "So we're going to take a quick break", + "start": 2328.06, + "end": 2329.36, + "words": [ + { + "word": " So", + "start": 2328.06, + "end": 2328.46, + "probability": 0.9931640625 + }, + { + "word": " we're", + "start": 2328.46, + "end": 2328.76, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 2328.76, + "end": 2328.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2328.82, + "end": 2328.84, + "probability": 1.0 + }, + { + "word": " take", + "start": 2328.84, + "end": 2328.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2328.96, + "end": 2329.0, + "probability": 1.0 + }, + { + "word": " quick", + "start": 2329.0, + "end": 2329.14, + "probability": 1.0 + }, + { + "word": " break", + "start": 2329.14, + "end": 2329.36, + "probability": 1.0 + } + ] + }, + { + "id": 870, + "text": "and then we are going to come back to more phone calls", + "start": 2329.36, + "end": 2332.04, + "words": [ + { + "word": " and", + "start": 2329.36, + "end": 2329.94, + "probability": 0.1329345703125 + }, + { + "word": " then", + "start": 2329.94, + "end": 2330.16, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2330.16, + "end": 2330.3, + "probability": 1.0 + }, + { + "word": " are", + "start": 2330.3, + "end": 2330.42, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 2330.42, + "end": 2330.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2330.54, + "end": 2330.7, + "probability": 1.0 + }, + { + "word": " come", + "start": 2330.7, + "end": 2330.92, + "probability": 1.0 + }, + { + "word": " back", + "start": 2330.92, + "end": 2331.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2331.16, + "end": 2331.32, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 2331.32, + "end": 2331.46, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2331.46, + "end": 2331.72, + "probability": 1.0 + }, + { + "word": " calls", + "start": 2331.72, + "end": 2332.04, + "probability": 1.0 + } + ] + }, + { + "id": 871, + "text": "and more helping you with free tech support", + "start": 2332.04, + "end": 2334.52, + "words": [ + { + "word": " and", + "start": 2332.04, + "end": 2332.4, + "probability": 0.99853515625 + }, + { + "word": " more", + "start": 2332.4, + "end": 2332.78, + "probability": 0.99951171875 + }, + { + "word": " helping", + "start": 2332.78, + "end": 2333.28, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 2333.28, + "end": 2333.52, + "probability": 1.0 + }, + { + "word": " with", + "start": 2333.52, + "end": 2333.88, + "probability": 0.99755859375 + }, + { + "word": " free", + "start": 2333.88, + "end": 2334.16, + "probability": 1.0 + }, + { + "word": " tech", + "start": 2334.16, + "end": 2334.36, + "probability": 0.97314453125 + }, + { + "word": " support", + "start": 2334.36, + "end": 2334.52, + "probability": 1.0 + } + ] + }, + { + "id": 872, + "text": "right here on the Computer Guru Show.", + "start": 2334.52, + "end": 2335.66, + "words": [ + { + "word": " right", + "start": 2334.52, + "end": 2334.76, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 2334.76, + "end": 2334.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 2334.92, + "end": 2335.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 2335.04, + "end": 2335.06, + "probability": 0.61865234375 + }, + { + "word": " Computer", + "start": 2335.06, + "end": 2335.26, + "probability": 0.970703125 + }, + { + "word": " Guru", + "start": 2335.26, + "end": 2335.46, + "probability": 0.92724609375 + }, + { + "word": " Show.", + "start": 2335.46, + "end": 2335.66, + "probability": 0.97412109375 + } + ] + }, + { + "id": 873, + "text": "790-2040.", + "start": 2336.04, + "end": 2337.04, + "words": [ + { + "word": " 790", + "start": 2336.04, + "end": 2336.48, + "probability": 0.9892578125 + }, + { + "word": "-2040.", + "start": 2336.48, + "end": 2337.04, + "probability": 0.96337890625 + } + ] + }, + { + "id": 874, + "text": "We'll be right back.", + "start": 2337.14, + "end": 2337.76, + "words": [ + { + "word": " We'll", + "start": 2337.14, + "end": 2337.42, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2337.42, + "end": 2337.46, + "probability": 1.0 + }, + { + "word": " right", + "start": 2337.46, + "end": 2337.58, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2337.58, + "end": 2337.76, + "probability": 1.0 + } + ] + }, + { + "id": 875, + "text": "Whether you're dealing with", + "start": 2346.26, + "end": 2347.52, + "words": [ + { + "word": " Whether", + "start": 2346.26, + "end": 2346.7, + "probability": 0.05206298828125 + }, + { + "word": " you're", + "start": 2346.7, + "end": 2347.04, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 2347.04, + "end": 2347.3, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2347.3, + "end": 2347.52, + "probability": 1.0 + } + ] + }, + { + "id": 876, + "text": "hardware installation or heaven forbid,", + "start": 2347.52, + "end": 2349.12, + "words": [ + { + "word": " hardware", + "start": 2347.52, + "end": 2347.64, + "probability": 0.30859375 + }, + { + "word": " installation", + "start": 2347.64, + "end": 2348.14, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 2348.14, + "end": 2348.66, + "probability": 0.73583984375 + }, + { + "word": " heaven", + "start": 2348.66, + "end": 2348.88, + "probability": 0.654296875 + }, + { + "word": " forbid,", + "start": 2348.88, + "end": 2349.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 877, + "text": "a virus...", + "start": 2349.42, + "end": 2350.24, + "words": [ + { + "word": " a", + "start": 2349.42, + "end": 2349.72, + "probability": 0.99951171875 + }, + { + "word": " virus...", + "start": 2349.72, + "end": 2350.24, + "probability": 0.5283203125 + } + ] + }, + { + "id": 878, + "text": "No! No! No!", + "start": 2350.24, + "end": 2351.52, + "words": [ + { + "word": " No!", + "start": 2350.24, + "end": 2350.38, + "probability": 0.7119140625 + }, + { + "word": " No!", + "start": 2350.6, + "end": 2351.2, + "probability": 0.98681640625 + }, + { + "word": " No!", + "start": 2351.26, + "end": 2351.52, + "probability": 0.7998046875 + } + ] + }, + { + "id": 879, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 2351.98, + "end": 2355.24, + "words": [ + { + "word": " Mike", + "start": 2351.98, + "end": 2352.58, + "probability": 0.943359375 + }, + { + "word": " Swanson", + "start": 2352.58, + "end": 2353.04, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2353.04, + "end": 2353.28, + "probability": 1.0 + }, + { + "word": " answering", + "start": 2353.28, + "end": 2353.62, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2353.62, + "end": 2353.94, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2353.94, + "end": 2354.14, + "probability": 0.9990234375 + }, + { + "word": " questions", + "start": 2354.14, + "end": 2354.5, + "probability": 1.0 + }, + { + "word": " one", + "start": 2354.5, + "end": 2354.8, + "probability": 0.998046875 + }, + { + "word": " by", + "start": 2354.8, + "end": 2355.0, + "probability": 0.990234375 + }, + { + "word": " one.", + "start": 2355.0, + "end": 2355.24, + "probability": 1.0 + } + ] + }, + { + "id": 880, + "text": "So call in or chat in with yours.", + "start": 2355.38, + "end": 2357.38, + "words": [ + { + "word": " So", + "start": 2355.38, + "end": 2355.7, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 2355.7, + "end": 2355.9, + "probability": 0.9814453125 + }, + { + "word": " in", + "start": 2355.9, + "end": 2356.14, + "probability": 1.0 + }, + { + "word": " or", + "start": 2356.14, + "end": 2356.38, + "probability": 0.9931640625 + }, + { + "word": " chat", + "start": 2356.38, + "end": 2356.66, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 2356.66, + "end": 2356.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 2356.9, + "end": 2357.16, + "probability": 0.99951171875 + }, + { + "word": " yours.", + "start": 2357.16, + "end": 2357.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 881, + "text": "The website?", + "start": 2357.68, + "end": 2358.38, + "words": [ + { + "word": " The", + "start": 2357.68, + "end": 2358.04, + "probability": 0.99853515625 + }, + { + "word": " website?", + "start": 2358.04, + "end": 2358.38, + "probability": 0.99853515625 + } + ] + }, + { + "id": 882, + "text": "Gurushow.com.", + "start": 2358.74, + "end": 2359.92, + "words": [ + { + "word": " Gurushow", + "start": 2358.74, + "end": 2359.34, + "probability": 0.7919921875 + }, + { + "word": ".com.", + "start": 2359.34, + "end": 2359.92, + "probability": 1.0 + } + ] + }, + { + "id": 883, + "text": "Tune in, click in, and kick back.", + "start": 2360.16, + "end": 2362.52, + "words": [ + { + "word": " Tune", + "start": 2360.16, + "end": 2360.76, + "probability": 1.0 + }, + { + "word": " in,", + "start": 2360.76, + "end": 2360.96, + "probability": 1.0 + }, + { + "word": " click", + "start": 2361.06, + "end": 2361.42, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 2361.42, + "end": 2361.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 2361.76, + "end": 2362.06, + "probability": 1.0 + }, + { + "word": " kick", + "start": 2362.06, + "end": 2362.2, + "probability": 0.99755859375 + }, + { + "word": " back.", + "start": 2362.2, + "end": 2362.52, + "probability": 1.0 + } + ] + }, + { + "id": 884, + "text": "This is the Computer Guru Show", + "start": 2362.74, + "end": 2364.72, + "words": [ + { + "word": " This", + "start": 2362.74, + "end": 2363.22, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2363.22, + "end": 2363.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 2363.64, + "end": 2363.74, + "probability": 0.77978515625 + }, + { + "word": " Computer", + "start": 2363.74, + "end": 2364.0, + "probability": 0.99560546875 + }, + { + "word": " Guru", + "start": 2364.0, + "end": 2364.32, + "probability": 0.98974609375 + }, + { + "word": " Show", + "start": 2364.32, + "end": 2364.72, + "probability": 0.97998046875 + } + ] + }, + { + "id": 885, + "text": "on AM1030, KVOY The Voice.", + "start": 2364.72, + "end": 2367.54, + "words": [ + { + "word": " on", + "start": 2364.72, + "end": 2365.14, + "probability": 0.99853515625 + }, + { + "word": " AM1030,", + "start": 2365.14, + "end": 2366.04, + "probability": 0.81787109375 + }, + { + "word": " KVOY", + "start": 2366.24, + "end": 2366.94, + "probability": 0.83056640625 + }, + { + "word": " The", + "start": 2366.94, + "end": 2367.32, + "probability": 0.54443359375 + }, + { + "word": " Voice.", + "start": 2367.32, + "end": 2367.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 886, + "text": "Mike Swanson, your computer guru,", + "start": 2379.34, + "end": 2381.3, + "words": [ + { + "word": " Mike", + "start": 2379.34, + "end": 2379.86, + "probability": 0.88134765625 + }, + { + "word": " Swanson,", + "start": 2379.86, + "end": 2380.26, + "probability": 0.99169921875 + }, + { + "word": " your", + "start": 2380.36, + "end": 2380.54, + "probability": 0.99365234375 + }, + { + "word": " computer", + "start": 2380.54, + "end": 2380.92, + "probability": 0.9521484375 + }, + { + "word": " guru,", + "start": 2380.92, + "end": 2381.3, + "probability": 1.0 + } + ] + }, + { + "id": 887, + "text": "is just a click away.", + "start": 2381.4, + "end": 2382.42, + "words": [ + { + "word": " is", + "start": 2381.4, + "end": 2381.62, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 2381.62, + "end": 2381.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 2381.88, + "end": 2382.02, + "probability": 1.0 + }, + { + "word": " click", + "start": 2382.02, + "end": 2382.18, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 2382.18, + "end": 2382.42, + "probability": 1.0 + } + ] + }, + { + "id": 888, + "text": "Listen and watch at gurushow.com.", + "start": 2382.64, + "end": 2384.94, + "words": [ + { + "word": " Listen", + "start": 2382.64, + "end": 2383.1, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2383.1, + "end": 2383.28, + "probability": 1.0 + }, + { + "word": " watch", + "start": 2383.28, + "end": 2383.56, + "probability": 1.0 + }, + { + "word": " at", + "start": 2383.56, + "end": 2383.72, + "probability": 0.955078125 + }, + { + "word": " gurushow", + "start": 2383.72, + "end": 2384.3, + "probability": 0.87548828125 + }, + { + "word": ".com.", + "start": 2384.3, + "end": 2384.94, + "probability": 1.0 + } + ] + }, + { + "id": 889, + "text": "This is the Computer Guru Show.", + "start": 2385.2, + "end": 2387.18, + "words": [ + { + "word": " This", + "start": 2385.2, + "end": 2385.72, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2385.72, + "end": 2386.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 2386.06, + "end": 2386.24, + "probability": 0.73095703125 + }, + { + "word": " Computer", + "start": 2386.24, + "end": 2386.5, + "probability": 0.994140625 + }, + { + "word": " Guru", + "start": 2386.5, + "end": 2386.82, + "probability": 0.99755859375 + }, + { + "word": " Show.", + "start": 2386.82, + "end": 2387.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 890, + "text": "Welcome to my world.", + "start": 2387.68, + "end": 2389.32, + "words": [ + { + "word": " Welcome", + "start": 2387.68, + "end": 2388.2, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2388.2, + "end": 2388.54, + "probability": 0.33447265625 + }, + { + "word": " my", + "start": 2388.54, + "end": 2388.92, + "probability": 0.48095703125 + }, + { + "word": " world.", + "start": 2388.92, + "end": 2389.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 891, + "text": "Welcome back to the Computer Guru Show.", + "start": 2389.36, + "end": 2390.88, + "words": [ + { + "word": " Welcome", + "start": 2389.36, + "end": 2389.88, + "probability": 0.99658203125 + }, + { + "word": " back", + "start": 2389.88, + "end": 2390.08, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2390.08, + "end": 2390.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2390.24, + "end": 2390.34, + "probability": 0.9990234375 + }, + { + "word": " Computer", + "start": 2390.34, + "end": 2390.52, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 2390.52, + "end": 2390.72, + "probability": 0.99951171875 + }, + { + "word": " Show.", + "start": 2390.72, + "end": 2390.88, + "probability": 1.0 + } + ] + }, + { + "id": 892, + "text": "My name is Mike.", + "start": 2390.92, + "end": 2391.4, + "words": [ + { + "word": " My", + "start": 2390.92, + "end": 2391.0, + "probability": 0.99755859375 + }, + { + "word": " name", + "start": 2391.0, + "end": 2391.1, + "probability": 1.0 + }, + { + "word": " is", + "start": 2391.1, + "end": 2391.16, + "probability": 0.99609375 + }, + { + "word": " Mike.", + "start": 2391.16, + "end": 2391.4, + "probability": 1.0 + } + ] + }, + { + "id": 893, + "text": "Here to deal with your technology problems", + "start": 2391.4, + "end": 2392.5, + "words": [ + { + "word": " Here", + "start": 2391.4, + "end": 2391.52, + "probability": 0.65576171875 + }, + { + "word": " to", + "start": 2391.52, + "end": 2391.58, + "probability": 0.99853515625 + }, + { + "word": " deal", + "start": 2391.58, + "end": 2391.7, + "probability": 0.99658203125 + }, + { + "word": " with", + "start": 2391.7, + "end": 2391.8, + "probability": 1.0 + }, + { + "word": " your", + "start": 2391.8, + "end": 2391.9, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 2391.9, + "end": 2392.24, + "probability": 1.0 + }, + { + "word": " problems", + "start": 2392.24, + "end": 2392.5, + "probability": 1.0 + } + ] + }, + { + "id": 894, + "text": "and treat you like a person in the process.", + "start": 2392.5, + "end": 2394.52, + "words": [ + { + "word": " and", + "start": 2392.5, + "end": 2392.86, + "probability": 0.9873046875 + }, + { + "word": " treat", + "start": 2392.86, + "end": 2393.24, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2393.24, + "end": 2393.5, + "probability": 1.0 + }, + { + "word": " like", + "start": 2393.5, + "end": 2393.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 2393.66, + "end": 2393.78, + "probability": 1.0 + }, + { + "word": " person", + "start": 2393.78, + "end": 2394.04, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2394.04, + "end": 2394.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2394.14, + "end": 2394.18, + "probability": 1.0 + }, + { + "word": " process.", + "start": 2394.18, + "end": 2394.52, + "probability": 1.0 + } + ] + }, + { + "id": 895, + "text": "I guess a lot of people don't realize that", + "start": 2396.56, + "end": 2398.4, + "words": [ + { + "word": " I", + "start": 2396.56, + "end": 2397.08, + "probability": 0.99658203125 + }, + { + "word": " guess", + "start": 2397.08, + "end": 2397.48, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2397.48, + "end": 2397.6, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2397.6, + "end": 2397.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 2397.68, + "end": 2397.72, + "probability": 1.0 + }, + { + "word": " people", + "start": 2397.72, + "end": 2397.9, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2397.9, + "end": 2398.02, + "probability": 0.9990234375 + }, + { + "word": " realize", + "start": 2398.02, + "end": 2398.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 2398.22, + "end": 2398.4, + "probability": 0.93701171875 + } + ] + }, + { + "id": 896, + "text": "I started Computer Guru almost 17 years ago", + "start": 2398.4, + "end": 2402.34, + "words": [ + { + "word": " I", + "start": 2398.4, + "end": 2398.9, + "probability": 0.99169921875 + }, + { + "word": " started", + "start": 2398.9, + "end": 2399.16, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 2399.16, + "end": 2399.62, + "probability": 0.92626953125 + }, + { + "word": " Guru", + "start": 2399.62, + "end": 2399.98, + "probability": 0.9990234375 + }, + { + "word": " almost", + "start": 2399.98, + "end": 2401.28, + "probability": 0.9716796875 + }, + { + "word": " 17", + "start": 2401.28, + "end": 2401.78, + "probability": 1.0 + }, + { + "word": " years", + "start": 2401.78, + "end": 2402.1, + "probability": 1.0 + }, + { + "word": " ago", + "start": 2402.1, + "end": 2402.34, + "probability": 1.0 + } + ] + }, + { + "id": 897, + "text": "because I heard people, of people,", + "start": 2402.34, + "end": 2407.28, + "words": [ + { + "word": " because", + "start": 2402.34, + "end": 2402.76, + "probability": 0.93701171875 + }, + { + "word": " I", + "start": 2402.76, + "end": 2404.54, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2404.54, + "end": 2404.94, + "probability": 0.99951171875 + }, + { + "word": " people,", + "start": 2404.94, + "end": 2405.3, + "probability": 0.96435546875 + }, + { + "word": " of", + "start": 2405.38, + "end": 2406.92, + "probability": 0.9990234375 + }, + { + "word": " people,", + "start": 2406.92, + "end": 2407.28, + "probability": 1.0 + } + ] + }, + { + "id": 898, + "text": "getting just remarkably ripped off", + "start": 2407.52, + "end": 2409.52, + "words": [ + { + "word": " getting", + "start": 2407.52, + "end": 2407.58, + "probability": 0.60546875 + }, + { + "word": " just", + "start": 2407.58, + "end": 2408.02, + "probability": 0.97607421875 + }, + { + "word": " remarkably", + "start": 2408.02, + "end": 2408.9, + "probability": 0.99951171875 + }, + { + "word": " ripped", + "start": 2408.9, + "end": 2409.28, + "probability": 1.0 + }, + { + "word": " off", + "start": 2409.28, + "end": 2409.52, + "probability": 1.0 + } + ] + }, + { + "id": 899, + "text": "by computer companies.", + "start": 2409.52, + "end": 2410.68, + "words": [ + { + "word": " by", + "start": 2409.52, + "end": 2409.76, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 2409.76, + "end": 2410.26, + "probability": 0.9970703125 + }, + { + "word": " companies.", + "start": 2410.26, + "end": 2410.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 900, + "text": "By the local guys.", + "start": 2411.24, + "end": 2412.46, + "words": [ + { + "word": " By", + "start": 2411.24, + "end": 2411.64, + "probability": 0.55517578125 + }, + { + "word": " the", + "start": 2411.64, + "end": 2411.92, + "probability": 1.0 + }, + { + "word": " local", + "start": 2411.92, + "end": 2412.12, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 2412.12, + "end": 2412.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 901, + "text": "Because they're like car mechanics, right?", + "start": 2412.56, + "end": 2413.76, + "words": [ + { + "word": " Because", + "start": 2412.56, + "end": 2412.74, + "probability": 0.99560546875 + }, + { + "word": " they're", + "start": 2412.74, + "end": 2412.92, + "probability": 0.99609375 + }, + { + "word": " like", + "start": 2412.92, + "end": 2413.0, + "probability": 0.99755859375 + }, + { + "word": " car", + "start": 2413.0, + "end": 2413.18, + "probability": 0.99951171875 + }, + { + "word": " mechanics,", + "start": 2413.18, + "end": 2413.52, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2413.68, + "end": 2413.76, + "probability": 0.99462890625 + } + ] + }, + { + "id": 902, + "text": "You don't know what they're doing.", + "start": 2413.82, + "end": 2414.46, + "words": [ + { + "word": " You", + "start": 2413.82, + "end": 2413.9, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 2413.9, + "end": 2414.02, + "probability": 1.0 + }, + { + "word": " know", + "start": 2414.02, + "end": 2414.08, + "probability": 1.0 + }, + { + "word": " what", + "start": 2414.08, + "end": 2414.18, + "probability": 1.0 + }, + { + "word": " they're", + "start": 2414.18, + "end": 2414.32, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 2414.32, + "end": 2414.46, + "probability": 1.0 + } + ] + }, + { + "id": 903, + "text": "It's some voodoo that happens", + "start": 2416.1, + "end": 2418.26, + "words": [ + { + "word": " It's", + "start": 2416.1, + "end": 2416.5, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 2416.5, + "end": 2416.76, + "probability": 1.0 + }, + { + "word": " voodoo", + "start": 2416.76, + "end": 2417.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 2417.68, + "end": 2417.82, + "probability": 1.0 + }, + { + "word": " happens", + "start": 2417.82, + "end": 2418.26, + "probability": 1.0 + } + ] + }, + { + "id": 904, + "text": "and you have to take their word for it.", + "start": 2419.14, + "end": 2421.04, + "words": [ + { + "word": " and", + "start": 2419.14, + "end": 2419.54, + "probability": 0.5 + }, + { + "word": " you", + "start": 2419.54, + "end": 2419.94, + "probability": 1.0 + }, + { + "word": " have", + "start": 2419.94, + "end": 2420.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 2420.14, + "end": 2420.24, + "probability": 1.0 + }, + { + "word": " take", + "start": 2420.24, + "end": 2420.4, + "probability": 1.0 + }, + { + "word": " their", + "start": 2420.4, + "end": 2420.5, + "probability": 1.0 + }, + { + "word": " word", + "start": 2420.5, + "end": 2420.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 2420.64, + "end": 2420.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2420.88, + "end": 2421.04, + "probability": 1.0 + } + ] + }, + { + "id": 905, + "text": "And so the company has been built,", + "start": 2421.48, + "end": 2424.28, + "words": [ + { + "word": " And", + "start": 2421.48, + "end": 2421.48, + "probability": 0.82177734375 + }, + { + "word": " so", + "start": 2421.48, + "end": 2421.82, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2421.82, + "end": 2423.04, + "probability": 0.8125 + }, + { + "word": " company", + "start": 2423.04, + "end": 2423.64, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 2423.64, + "end": 2423.84, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 2423.84, + "end": 2423.98, + "probability": 1.0 + }, + { + "word": " built,", + "start": 2423.98, + "end": 2424.28, + "probability": 1.0 + } + ] + }, + { + "id": 906, + "text": "Computer Guru has been built,", + "start": 2424.4, + "end": 2425.42, + "words": [ + { + "word": " Computer", + "start": 2424.4, + "end": 2424.68, + "probability": 0.93310546875 + }, + { + "word": " Guru", + "start": 2424.68, + "end": 2424.92, + "probability": 0.92236328125 + }, + { + "word": " has", + "start": 2424.92, + "end": 2425.08, + "probability": 0.9970703125 + }, + { + "word": " been", + "start": 2425.08, + "end": 2425.18, + "probability": 1.0 + }, + { + "word": " built,", + "start": 2425.18, + "end": 2425.42, + "probability": 1.0 + } + ] + }, + { + "id": 907, + "text": "on this idea that you are going to get treated fairly", + "start": 2425.46, + "end": 2429.26, + "words": [ + { + "word": " on", + "start": 2425.46, + "end": 2425.82, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2425.82, + "end": 2426.68, + "probability": 1.0 + }, + { + "word": " idea", + "start": 2426.68, + "end": 2426.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 2426.96, + "end": 2427.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 2427.44, + "end": 2428.02, + "probability": 1.0 + }, + { + "word": " are", + "start": 2428.02, + "end": 2428.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 2428.26, + "end": 2428.4, + "probability": 0.9921875 + }, + { + "word": " to", + "start": 2428.4, + "end": 2428.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 2428.52, + "end": 2428.64, + "probability": 1.0 + }, + { + "word": " treated", + "start": 2428.64, + "end": 2428.94, + "probability": 0.99853515625 + }, + { + "word": " fairly", + "start": 2428.94, + "end": 2429.26, + "probability": 1.0 + } + ] + }, + { + "id": 908, + "text": "no matter what.", + "start": 2429.26, + "end": 2429.96, + "words": [ + { + "word": " no", + "start": 2429.26, + "end": 2429.54, + "probability": 0.982421875 + }, + { + "word": " matter", + "start": 2429.54, + "end": 2429.7, + "probability": 1.0 + }, + { + "word": " what.", + "start": 2429.7, + "end": 2429.96, + "probability": 1.0 + } + ] + }, + { + "id": 909, + "text": "We are not here to rip you off.", + "start": 2430.34, + "end": 2433.32, + "words": [ + { + "word": " We", + "start": 2430.34, + "end": 2430.74, + "probability": 0.9814453125 + }, + { + "word": " are", + "start": 2430.74, + "end": 2431.26, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 2431.26, + "end": 2431.44, + "probability": 1.0 + }, + { + "word": " here", + "start": 2431.44, + "end": 2431.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 2431.62, + "end": 2431.82, + "probability": 1.0 + }, + { + "word": " rip", + "start": 2431.82, + "end": 2432.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 2432.96, + "end": 2433.08, + "probability": 1.0 + }, + { + "word": " off.", + "start": 2433.08, + "end": 2433.32, + "probability": 1.0 + } + ] + }, + { + "id": 910, + "text": "Of course we want to make money", + "start": 2433.46, + "end": 2434.56, + "words": [ + { + "word": " Of", + "start": 2433.46, + "end": 2433.6, + "probability": 0.998046875 + }, + { + "word": " course", + "start": 2433.6, + "end": 2433.8, + "probability": 1.0 + }, + { + "word": " we", + "start": 2433.8, + "end": 2433.94, + "probability": 0.55078125 + }, + { + "word": " want", + "start": 2433.94, + "end": 2434.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 2434.1, + "end": 2434.22, + "probability": 1.0 + }, + { + "word": " make", + "start": 2434.22, + "end": 2434.34, + "probability": 1.0 + }, + { + "word": " money", + "start": 2434.34, + "end": 2434.56, + "probability": 1.0 + } + ] + }, + { + "id": 911, + "text": "and stay in business,", + "start": 2434.56, + "end": 2435.12, + "words": [ + { + "word": " and", + "start": 2434.56, + "end": 2434.68, + "probability": 1.0 + }, + { + "word": " stay", + "start": 2434.68, + "end": 2434.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 2434.84, + "end": 2434.92, + "probability": 1.0 + }, + { + "word": " business,", + "start": 2434.92, + "end": 2435.12, + "probability": 1.0 + } + ] + }, + { + "id": 912, + "text": "but we do so at...", + "start": 2435.8999999999996, + "end": 2437.5, + "words": [ + { + "word": " but", + "start": 2435.8999999999996, + "end": 2436.2999999999997, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2436.2999999999997, + "end": 2436.7, + "probability": 1.0 + }, + { + "word": " do", + "start": 2436.7, + "end": 2436.92, + "probability": 1.0 + }, + { + "word": " so", + "start": 2436.92, + "end": 2437.18, + "probability": 1.0 + }, + { + "word": " at...", + "start": 2437.18, + "end": 2437.5, + "probability": 0.50732421875 + } + ] + }, + { + "id": 913, + "text": "mostly a minimum.", + "start": 2437.52, + "end": 2438.68, + "words": [ + { + "word": " mostly", + "start": 2437.52, + "end": 2437.98, + "probability": 0.12469482421875 + }, + { + "word": " a", + "start": 2437.98, + "end": 2438.36, + "probability": 0.98974609375 + }, + { + "word": " minimum.", + "start": 2438.36, + "end": 2438.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 914, + "text": "Just see my stress on payroll day", + "start": 2438.82, + "end": 2440.98, + "words": [ + { + "word": " Just", + "start": 2438.82, + "end": 2439.3, + "probability": 0.970703125 + }, + { + "word": " see", + "start": 2439.3, + "end": 2439.66, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2439.66, + "end": 2439.86, + "probability": 0.99951171875 + }, + { + "word": " stress", + "start": 2439.86, + "end": 2440.22, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 2440.22, + "end": 2440.44, + "probability": 0.99951171875 + }, + { + "word": " payroll", + "start": 2440.44, + "end": 2440.74, + "probability": 0.9931640625 + }, + { + "word": " day", + "start": 2440.74, + "end": 2440.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 915, + "text": "and you will know exactly what's going on there.", + "start": 2440.98, + "end": 2443.36, + "words": [ + { + "word": " and", + "start": 2440.98, + "end": 2441.16, + "probability": 0.8271484375 + }, + { + "word": " you", + "start": 2441.16, + "end": 2441.26, + "probability": 1.0 + }, + { + "word": " will", + "start": 2441.26, + "end": 2441.36, + "probability": 0.6923828125 + }, + { + "word": " know", + "start": 2441.36, + "end": 2441.54, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 2441.54, + "end": 2441.92, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 2441.92, + "end": 2442.52, + "probability": 0.8662109375 + }, + { + "word": " going", + "start": 2442.52, + "end": 2442.9, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2442.9, + "end": 2443.16, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2443.16, + "end": 2443.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 916, + "text": "But it's like, you know,", + "start": 2445.24, + "end": 2446.76, + "words": [ + { + "word": " But", + "start": 2445.24, + "end": 2445.72, + "probability": 0.68115234375 + }, + { + "word": " it's", + "start": 2445.72, + "end": 2445.96, + "probability": 0.9921875 + }, + { + "word": " like,", + "start": 2445.96, + "end": 2446.2, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2446.22, + "end": 2446.62, + "probability": 0.61865234375 + }, + { + "word": " know,", + "start": 2446.62, + "end": 2446.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 917, + "text": "we want to have good techs", + "start": 2446.76, + "end": 2448.24, + "words": [ + { + "word": " we", + "start": 2446.76, + "end": 2446.82, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2446.82, + "end": 2446.98, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 2446.98, + "end": 2447.08, + "probability": 1.0 + }, + { + "word": " have", + "start": 2447.08, + "end": 2447.24, + "probability": 1.0 + }, + { + "word": " good", + "start": 2447.24, + "end": 2447.68, + "probability": 1.0 + }, + { + "word": " techs", + "start": 2447.68, + "end": 2448.24, + "probability": 0.99462890625 + } + ] + }, + { + "id": 918, + "text": "that have good people skills", + "start": 2448.24, + "end": 2449.6, + "words": [ + { + "word": " that", + "start": 2448.24, + "end": 2448.44, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2448.44, + "end": 2448.66, + "probability": 1.0 + }, + { + "word": " good", + "start": 2448.66, + "end": 2449.06, + "probability": 1.0 + }, + { + "word": " people", + "start": 2449.06, + "end": 2449.32, + "probability": 1.0 + }, + { + "word": " skills", + "start": 2449.32, + "end": 2449.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 919, + "text": "that are able to solve your problems", + "start": 2449.6, + "end": 2452.12, + "words": [ + { + "word": " that", + "start": 2449.6, + "end": 2450.42, + "probability": 0.99462890625 + }, + { + "word": " are", + "start": 2450.42, + "end": 2450.62, + "probability": 1.0 + }, + { + "word": " able", + "start": 2450.62, + "end": 2450.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2450.98, + "end": 2451.22, + "probability": 1.0 + }, + { + "word": " solve", + "start": 2451.22, + "end": 2451.46, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2451.46, + "end": 2451.64, + "probability": 1.0 + }, + { + "word": " problems", + "start": 2451.64, + "end": 2452.12, + "probability": 1.0 + } + ] + }, + { + "id": 920, + "text": "and explain to you in a way that you understand", + "start": 2452.12, + "end": 2454.96, + "words": [ + { + "word": " and", + "start": 2452.12, + "end": 2452.78, + "probability": 0.99951171875 + }, + { + "word": " explain", + "start": 2452.78, + "end": 2453.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 2453.36, + "end": 2453.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 2453.68, + "end": 2453.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 2453.9, + "end": 2454.14, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2454.14, + "end": 2454.24, + "probability": 1.0 + }, + { + "word": " way", + "start": 2454.24, + "end": 2454.38, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2454.38, + "end": 2454.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 2454.52, + "end": 2454.64, + "probability": 0.9990234375 + }, + { + "word": " understand", + "start": 2454.64, + "end": 2454.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 921, + "text": "that things are fixed, right?", + "start": 2455.54, + "end": 2459.02, + "words": [ + { + "word": " that", + "start": 2455.54, + "end": 2456.02, + "probability": 0.9990234375 + }, + { + "word": " things", + "start": 2456.02, + "end": 2456.5, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2456.5, + "end": 2457.26, + "probability": 1.0 + }, + { + "word": " fixed,", + "start": 2457.26, + "end": 2458.22, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 2458.4, + "end": 2459.02, + "probability": 0.9970703125 + } + ] + }, + { + "id": 922, + "text": "And that it's not extraneous.", + "start": 2459.16, + "end": 2461.08, + "words": [ + { + "word": " And", + "start": 2459.16, + "end": 2459.34, + "probability": 0.98583984375 + }, + { + "word": " that", + "start": 2459.34, + "end": 2459.46, + "probability": 0.9853515625 + }, + { + "word": " it's", + "start": 2459.46, + "end": 2460.06, + "probability": 0.76708984375 + }, + { + "word": " not", + "start": 2460.06, + "end": 2460.54, + "probability": 0.99951171875 + }, + { + "word": " extraneous.", + "start": 2460.54, + "end": 2461.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 923, + "text": "We're not going to do anything that is wasteful.", + "start": 2461.18, + "end": 2464.22, + "words": [ + { + "word": " We're", + "start": 2461.18, + "end": 2461.42, + "probability": 1.0 + }, + { + "word": " not", + "start": 2461.42, + "end": 2461.48, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2461.48, + "end": 2461.6, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 2461.6, + "end": 2461.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 2461.64, + "end": 2461.78, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2461.78, + "end": 2461.98, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2461.98, + "end": 2462.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 2462.26, + "end": 2462.38, + "probability": 1.0 + }, + { + "word": " wasteful.", + "start": 2462.38, + "end": 2464.22, + "probability": 0.94921875 + } + ] + }, + { + "id": 924, + "text": "We're not going to...", + "start": 2464.38, + "end": 2465.22, + "words": [ + { + "word": " We're", + "start": 2464.38, + "end": 2464.64, + "probability": 0.9462890625 + }, + { + "word": " not", + "start": 2464.64, + "end": 2464.76, + "probability": 0.60107421875 + }, + { + "word": " going", + "start": 2464.76, + "end": 2464.92, + "probability": 0.9951171875 + }, + { + "word": " to...", + "start": 2464.92, + "end": 2465.22, + "probability": 0.609375 + } + ] + }, + { + "id": 925, + "text": "We're basically...", + "start": 2465.22, + "end": 2465.88, + "words": [ + { + "word": " We're", + "start": 2465.22, + "end": 2465.38, + "probability": 0.63525390625 + }, + { + "word": " basically...", + "start": 2465.38, + "end": 2465.88, + "probability": 0.9638671875 + } + ] + }, + { + "id": 926, + "text": "We want...", + "start": 2465.88, + "end": 2466.92, + "words": [ + { + "word": " We", + "start": 2465.88, + "end": 2466.36, + "probability": 0.9873046875 + }, + { + "word": " want...", + "start": 2466.36, + "end": 2466.92, + "probability": 0.609375 + } + ] + }, + { + "id": 927, + "text": "We want to be able to get customers", + "start": 2467.52, + "end": 2467.76, + "words": [ + { + "word": " We", + "start": 2467.52, + "end": 2467.76, + "probability": 0.001445770263671875 + }, + { + "word": " want", + "start": 2467.76, + "end": 2467.76, + "probability": 0.0200042724609375 + }, + { + "word": " to", + "start": 2467.76, + "end": 2467.76, + "probability": 0.13037109375 + }, + { + "word": " be", + "start": 2467.76, + "end": 2467.76, + "probability": 0.091552734375 + }, + { + "word": " able", + "start": 2467.76, + "end": 2467.76, + "probability": 0.0654296875 + }, + { + "word": " to", + "start": 2467.76, + "end": 2467.76, + "probability": 0.9921875 + }, + { + "word": " get", + "start": 2467.76, + "end": 2467.76, + "probability": 0.216796875 + }, + { + "word": " customers", + "start": 2467.76, + "end": 2467.76, + "probability": 0.1719970703125 + } + ] + }, + { + "id": 928, + "text": "to give us a little bit of money forever, right?", + "start": 2467.76, + "end": 2471.32, + "words": [ + { + "word": " to", + "start": 2467.76, + "end": 2468.02, + "probability": 0.99267578125 + }, + { + "word": " give", + "start": 2468.02, + "end": 2468.26, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 2468.26, + "end": 2468.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 2468.46, + "end": 2468.64, + "probability": 0.9990234375 + }, + { + "word": " little", + "start": 2468.64, + "end": 2468.86, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2468.86, + "end": 2469.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 2469.02, + "end": 2469.1, + "probability": 1.0 + }, + { + "word": " money", + "start": 2469.1, + "end": 2469.32, + "probability": 1.0 + }, + { + "word": " forever,", + "start": 2469.32, + "end": 2470.24, + "probability": 0.97314453125 + }, + { + "word": " right?", + "start": 2470.54, + "end": 2471.32, + "probability": 0.75927734375 + } + ] + }, + { + "id": 929, + "text": "As far as I want you to trust me enough", + "start": 2471.36, + "end": 2473.14, + "words": [ + { + "word": " As", + "start": 2471.36, + "end": 2471.54, + "probability": 0.99853515625 + }, + { + "word": " far", + "start": 2471.54, + "end": 2471.7, + "probability": 1.0 + }, + { + "word": " as", + "start": 2471.7, + "end": 2471.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 2471.96, + "end": 2472.04, + "probability": 0.91455078125 + }, + { + "word": " want", + "start": 2472.04, + "end": 2472.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 2472.22, + "end": 2472.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 2472.36, + "end": 2472.46, + "probability": 1.0 + }, + { + "word": " trust", + "start": 2472.46, + "end": 2472.7, + "probability": 1.0 + }, + { + "word": " me", + "start": 2472.7, + "end": 2472.84, + "probability": 1.0 + }, + { + "word": " enough", + "start": 2472.84, + "end": 2473.14, + "probability": 1.0 + } + ] + }, + { + "id": 930, + "text": "that you are a lifer customer,", + "start": 2473.14, + "end": 2474.46, + "words": [ + { + "word": " that", + "start": 2473.14, + "end": 2473.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 2473.36, + "end": 2473.5, + "probability": 1.0 + }, + { + "word": " are", + "start": 2473.5, + "end": 2473.62, + "probability": 0.9765625 + }, + { + "word": " a", + "start": 2473.62, + "end": 2473.78, + "probability": 1.0 + }, + { + "word": " lifer", + "start": 2473.78, + "end": 2474.2, + "probability": 0.984375 + }, + { + "word": " customer,", + "start": 2474.2, + "end": 2474.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 931, + "text": "that you don't have to shop around,", + "start": 2474.98, + "end": 2477.12, + "words": [ + { + "word": " that", + "start": 2474.98, + "end": 2475.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2475.42, + "end": 2475.64, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2475.64, + "end": 2476.44, + "probability": 0.90234375 + }, + { + "word": " have", + "start": 2476.44, + "end": 2476.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 2476.56, + "end": 2476.7, + "probability": 1.0 + }, + { + "word": " shop", + "start": 2476.7, + "end": 2476.88, + "probability": 1.0 + }, + { + "word": " around,", + "start": 2476.88, + "end": 2477.12, + "probability": 1.0 + } + ] + }, + { + "id": 932, + "text": "that you'll always come back to me", + "start": 2477.34, + "end": 2478.82, + "words": [ + { + "word": " that", + "start": 2477.34, + "end": 2477.46, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 2477.46, + "end": 2477.7, + "probability": 0.99951171875 + }, + { + "word": " always", + "start": 2477.7, + "end": 2478.04, + "probability": 1.0 + }, + { + "word": " come", + "start": 2478.04, + "end": 2478.3, + "probability": 1.0 + }, + { + "word": " back", + "start": 2478.3, + "end": 2478.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2478.52, + "end": 2478.68, + "probability": 1.0 + }, + { + "word": " me", + "start": 2478.68, + "end": 2478.82, + "probability": 1.0 + } + ] + }, + { + "id": 933, + "text": "because I treated you well", + "start": 2478.82, + "end": 2480.36, + "words": [ + { + "word": " because", + "start": 2478.82, + "end": 2479.12, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 2479.12, + "end": 2479.4, + "probability": 1.0 + }, + { + "word": " treated", + "start": 2479.4, + "end": 2479.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 2479.78, + "end": 2480.04, + "probability": 1.0 + }, + { + "word": " well", + "start": 2480.04, + "end": 2480.36, + "probability": 1.0 + } + ] + }, + { + "id": 934, + "text": "every time that you were in there.", + "start": 2480.36, + "end": 2481.96, + "words": [ + { + "word": " every", + "start": 2480.36, + "end": 2481.02, + "probability": 0.9990234375 + }, + { + "word": " time", + "start": 2481.02, + "end": 2481.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 2481.3, + "end": 2481.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 2481.48, + "end": 2481.56, + "probability": 1.0 + }, + { + "word": " were", + "start": 2481.56, + "end": 2481.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 2481.66, + "end": 2481.8, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2481.8, + "end": 2481.96, + "probability": 1.0 + } + ] + }, + { + "id": 935, + "text": "The golden rule.", + "start": 2482.08, + "end": 2482.68, + "words": [ + { + "word": " The", + "start": 2482.08, + "end": 2482.24, + "probability": 0.99365234375 + }, + { + "word": " golden", + "start": 2482.24, + "end": 2482.44, + "probability": 0.9912109375 + }, + { + "word": " rule.", + "start": 2482.44, + "end": 2482.68, + "probability": 1.0 + } + ] + }, + { + "id": 936, + "text": "Right.", + "start": 2482.92, + "end": 2483.36, + "words": [ + { + "word": " Right.", + "start": 2482.92, + "end": 2483.36, + "probability": 0.9912109375 + } + ] + }, + { + "id": 937, + "text": "And the show itself, right?", + "start": 2483.52, + "end": 2486.62, + "words": [ + { + "word": " And", + "start": 2483.52, + "end": 2483.96, + "probability": 0.93994140625 + }, + { + "word": " the", + "start": 2483.96, + "end": 2484.66, + "probability": 0.9931640625 + }, + { + "word": " show", + "start": 2484.66, + "end": 2485.34, + "probability": 1.0 + }, + { + "word": " itself,", + "start": 2485.34, + "end": 2485.66, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2486.18, + "end": 2486.62, + "probability": 0.96630859375 + } + ] + }, + { + "id": 938, + "text": "This radio show,", + "start": 2486.84, + "end": 2488.08, + "words": [ + { + "word": " This", + "start": 2486.84, + "end": 2487.28, + "probability": 0.99755859375 + }, + { + "word": " radio", + "start": 2487.28, + "end": 2487.76, + "probability": 1.0 + }, + { + "word": " show,", + "start": 2487.76, + "end": 2488.08, + "probability": 1.0 + } + ] + }, + { + "id": 939, + "text": "it's...", + "start": 2488.7799999999997, + "end": 2489.22, + "words": [ + { + "word": " it's...", + "start": 2488.7799999999997, + "end": 2489.22, + "probability": 0.441162109375 + } + ] + }, + { + "id": 940, + "text": "You would be surprised", + "start": 2489.22, + "end": 2490.54, + "words": [ + { + "word": " You", + "start": 2489.22, + "end": 2489.78, + "probability": 0.8974609375 + }, + { + "word": " would", + "start": 2489.78, + "end": 2490.02, + "probability": 1.0 + }, + { + "word": " be", + "start": 2490.02, + "end": 2490.16, + "probability": 1.0 + }, + { + "word": " surprised", + "start": 2490.16, + "end": 2490.54, + "probability": 1.0 + } + ] + }, + { + "id": 941, + "text": "how many people think I make money off of this.", + "start": 2490.54, + "end": 2492.28, + "words": [ + { + "word": " how", + "start": 2490.54, + "end": 2490.78, + "probability": 1.0 + }, + { + "word": " many", + "start": 2490.78, + "end": 2490.92, + "probability": 1.0 + }, + { + "word": " people", + "start": 2490.92, + "end": 2491.12, + "probability": 1.0 + }, + { + "word": " think", + "start": 2491.12, + "end": 2491.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 2491.3, + "end": 2491.48, + "probability": 1.0 + }, + { + "word": " make", + "start": 2491.48, + "end": 2491.58, + "probability": 1.0 + }, + { + "word": " money", + "start": 2491.58, + "end": 2491.84, + "probability": 1.0 + }, + { + "word": " off", + "start": 2491.84, + "end": 2492.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 2492.0, + "end": 2492.08, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2492.08, + "end": 2492.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 942, + "text": "And it is way, way the opposite, right?", + "start": 2492.34, + "end": 2495.36, + "words": [ + { + "word": " And", + "start": 2492.34, + "end": 2492.5, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 2492.5, + "end": 2492.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 2492.68, + "end": 2492.86, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2492.86, + "end": 2493.16, + "probability": 1.0 + }, + { + "word": " way", + "start": 2493.38, + "end": 2493.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2493.9, + "end": 2494.2, + "probability": 0.99951171875 + }, + { + "word": " opposite,", + "start": 2494.2, + "end": 2494.62, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2494.76, + "end": 2495.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 943, + "text": "As far as...", + "start": 2495.44, + "end": 2496.3, + "words": [ + { + "word": " As", + "start": 2495.44, + "end": 2495.64, + "probability": 0.98828125 + }, + { + "word": " far", + "start": 2495.64, + "end": 2495.86, + "probability": 0.9990234375 + }, + { + "word": " as...", + "start": 2495.86, + "end": 2496.3, + "probability": 0.6201171875 + } + ] + }, + { + "id": 944, + "text": "As...", + "start": 2496.7799999999997, + "end": 2497.22, + "words": [ + { + "word": " As...", + "start": 2496.7799999999997, + "end": 2497.22, + "probability": 0.5087890625 + } + ] + }, + { + "id": 945, + "text": "As...", + "start": 2497.22, + "end": 2497.28, + "words": [ + { + "word": " As...", + "start": 2497.22, + "end": 2497.28, + "probability": 0.00202178955078125 + } + ] + }, + { + "id": 946, + "text": "For me, there's no money in this, right?", + "start": 2497.28, + "end": 2499.88, + "words": [ + { + "word": " For", + "start": 2497.28, + "end": 2498.2, + "probability": 0.88623046875 + }, + { + "word": " me,", + "start": 2498.2, + "end": 2498.5, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2498.5, + "end": 2498.68, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 2498.68, + "end": 2498.76, + "probability": 1.0 + }, + { + "word": " money", + "start": 2498.76, + "end": 2498.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 2498.98, + "end": 2499.14, + "probability": 1.0 + }, + { + "word": " this,", + "start": 2499.14, + "end": 2499.36, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2499.48, + "end": 2499.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 947, + "text": "Even with the sponsors I have right now,", + "start": 2499.94, + "end": 2502.3, + "words": [ + { + "word": " Even", + "start": 2499.94, + "end": 2500.28, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 2500.28, + "end": 2500.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 2500.56, + "end": 2500.7, + "probability": 1.0 + }, + { + "word": " sponsors", + "start": 2500.7, + "end": 2501.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 2501.08, + "end": 2501.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 2501.38, + "end": 2501.68, + "probability": 1.0 + }, + { + "word": " right", + "start": 2501.68, + "end": 2502.0, + "probability": 1.0 + }, + { + "word": " now,", + "start": 2502.0, + "end": 2502.3, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "I lose money every week on this.", + "start": 2502.5, + "end": 2503.98, + "words": [ + { + "word": " I", + "start": 2502.5, + "end": 2502.7, + "probability": 1.0 + }, + { + "word": " lose", + "start": 2502.7, + "end": 2502.94, + "probability": 1.0 + }, + { + "word": " money", + "start": 2502.94, + "end": 2503.12, + "probability": 1.0 + }, + { + "word": " every", + "start": 2503.12, + "end": 2503.4, + "probability": 1.0 + }, + { + "word": " week", + "start": 2503.4, + "end": 2503.62, + "probability": 1.0 + }, + { + "word": " on", + "start": 2503.62, + "end": 2503.76, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2503.76, + "end": 2503.98, + "probability": 1.0 + } + ] + }, + { + "id": 949, + "text": "But I do it because one day I was driving around town", + "start": 2504.1, + "end": 2506.84, + "words": [ + { + "word": " But", + "start": 2504.1, + "end": 2504.38, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2504.38, + "end": 2504.46, + "probability": 0.99609375 + }, + { + "word": " do", + "start": 2504.46, + "end": 2504.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 2504.64, + "end": 2504.8, + "probability": 1.0 + }, + { + "word": " because", + "start": 2504.8, + "end": 2505.12, + "probability": 0.998046875 + }, + { + "word": " one", + "start": 2505.12, + "end": 2505.58, + "probability": 0.97607421875 + }, + { + "word": " day", + "start": 2505.58, + "end": 2505.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 2505.86, + "end": 2506.02, + "probability": 0.91357421875 + }, + { + "word": " was", + "start": 2506.02, + "end": 2506.14, + "probability": 1.0 + }, + { + "word": " driving", + "start": 2506.14, + "end": 2506.36, + "probability": 1.0 + }, + { + "word": " around", + "start": 2506.36, + "end": 2506.6, + "probability": 1.0 + }, + { + "word": " town", + "start": 2506.6, + "end": 2506.84, + "probability": 1.0 + } + ] + }, + { + "id": 950, + "text": "and I was listening to another radio show about computers,", + "start": 2506.84, + "end": 2510.9, + "words": [ + { + "word": " and", + "start": 2506.84, + "end": 2507.74, + "probability": 0.6728515625 + }, + { + "word": " I", + "start": 2507.74, + "end": 2507.86, + "probability": 1.0 + }, + { + "word": " was", + "start": 2507.86, + "end": 2507.92, + "probability": 1.0 + }, + { + "word": " listening", + "start": 2507.92, + "end": 2508.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 2508.2, + "end": 2508.48, + "probability": 1.0 + }, + { + "word": " another", + "start": 2508.48, + "end": 2509.14, + "probability": 1.0 + }, + { + "word": " radio", + "start": 2509.14, + "end": 2509.82, + "probability": 1.0 + }, + { + "word": " show", + "start": 2509.82, + "end": 2510.18, + "probability": 1.0 + }, + { + "word": " about", + "start": 2510.18, + "end": 2510.46, + "probability": 0.99951171875 + }, + { + "word": " computers,", + "start": 2510.46, + "end": 2510.9, + "probability": 1.0 + } + ] + }, + { + "id": 951, + "text": "which isn't even on the air anymore.", + "start": 2511.02, + "end": 2512.04, + "words": [ + { + "word": " which", + "start": 2511.02, + "end": 2511.14, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 2511.14, + "end": 2511.36, + "probability": 1.0 + }, + { + "word": " even", + "start": 2511.36, + "end": 2511.48, + "probability": 1.0 + }, + { + "word": " on", + "start": 2511.48, + "end": 2511.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 2511.62, + "end": 2511.68, + "probability": 1.0 + }, + { + "word": " air", + "start": 2511.68, + "end": 2511.82, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 2511.82, + "end": 2512.04, + "probability": 1.0 + } + ] + }, + { + "id": 952, + "text": "And they were...", + "start": 2512.62, + "end": 2514.18, + "words": [ + { + "word": " And", + "start": 2512.62, + "end": 2513.14, + "probability": 0.994140625 + }, + { + "word": " they", + "start": 2513.14, + "end": 2513.66, + "probability": 1.0 + }, + { + "word": " were...", + "start": 2513.66, + "end": 2514.18, + "probability": 0.83935546875 + } + ] + }, + { + "id": 953, + "text": "They were giving out just these lazy, terrible answers.", + "start": 2514.18, + "end": 2517.58, + "words": [ + { + "word": " They", + "start": 2514.18, + "end": 2514.96, + "probability": 0.9912109375 + }, + { + "word": " were", + "start": 2514.96, + "end": 2515.06, + "probability": 1.0 + }, + { + "word": " giving", + "start": 2515.06, + "end": 2515.2, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 2515.2, + "end": 2515.46, + "probability": 1.0 + }, + { + "word": " just", + "start": 2515.46, + "end": 2515.74, + "probability": 1.0 + }, + { + "word": " these", + "start": 2515.74, + "end": 2515.94, + "probability": 1.0 + }, + { + "word": " lazy,", + "start": 2515.94, + "end": 2516.5, + "probability": 0.9990234375 + }, + { + "word": " terrible", + "start": 2516.58, + "end": 2517.08, + "probability": 0.99951171875 + }, + { + "word": " answers.", + "start": 2517.08, + "end": 2517.58, + "probability": 1.0 + } + ] + }, + { + "id": 954, + "text": "And quite frankly, the wrong answers every time.", + "start": 2517.88, + "end": 2521.54, + "words": [ + { + "word": " And", + "start": 2517.88, + "end": 2518.4, + "probability": 1.0 + }, + { + "word": " quite", + "start": 2518.4, + "end": 2518.8, + "probability": 0.98291015625 + }, + { + "word": " frankly,", + "start": 2518.8, + "end": 2519.46, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 2519.6, + "end": 2519.76, + "probability": 0.99951171875 + }, + { + "word": " wrong", + "start": 2519.76, + "end": 2520.04, + "probability": 1.0 + }, + { + "word": " answers", + "start": 2520.04, + "end": 2520.44, + "probability": 1.0 + }, + { + "word": " every", + "start": 2520.44, + "end": 2521.02, + "probability": 0.697265625 + }, + { + "word": " time.", + "start": 2521.02, + "end": 2521.54, + "probability": 1.0 + } + ] + }, + { + "id": 955, + "text": "And I just...", + "start": 2521.8, + "end": 2522.98, + "words": [ + { + "word": " And", + "start": 2521.8, + "end": 2522.32, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2522.32, + "end": 2522.58, + "probability": 1.0 + }, + { + "word": " just...", + "start": 2522.58, + "end": 2522.98, + "probability": 0.99560546875 + } + ] + }, + { + "id": 956, + "text": "I lost my mind.", + "start": 2522.98, + "end": 2524.46, + "words": [ + { + "word": " I", + "start": 2522.98, + "end": 2523.54, + "probability": 1.0 + }, + { + "word": " lost", + "start": 2523.54, + "end": 2523.8, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 2523.8, + "end": 2524.02, + "probability": 1.0 + }, + { + "word": " mind.", + "start": 2524.02, + "end": 2524.46, + "probability": 1.0 + } + ] + }, + { + "id": 957, + "text": "I just drove across town,", + "start": 2524.6, + "end": 2526.66, + "words": [ + { + "word": " I", + "start": 2524.6, + "end": 2524.94, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2524.94, + "end": 2525.44, + "probability": 0.99267578125 + }, + { + "word": " drove", + "start": 2525.44, + "end": 2525.88, + "probability": 0.99560546875 + }, + { + "word": " across", + "start": 2525.88, + "end": 2526.16, + "probability": 1.0 + }, + { + "word": " town,", + "start": 2526.16, + "end": 2526.66, + "probability": 1.0 + } + ] + }, + { + "id": 958, + "text": "found the nearest radio station", + "start": 2526.66, + "end": 2528.24, + "words": [ + { + "word": " found", + "start": 2526.66, + "end": 2526.86, + "probability": 0.64990234375 + }, + { + "word": " the", + "start": 2526.86, + "end": 2527.18, + "probability": 0.99853515625 + }, + { + "word": " nearest", + "start": 2527.18, + "end": 2527.46, + "probability": 0.998046875 + }, + { + "word": " radio", + "start": 2527.46, + "end": 2527.78, + "probability": 0.9990234375 + }, + { + "word": " station", + "start": 2527.78, + "end": 2528.24, + "probability": 1.0 + } + ] + }, + { + "id": 959, + "text": "that didn't have a computer show on it,", + "start": 2528.24, + "end": 2531.84, + "words": [ + { + "word": " that", + "start": 2528.24, + "end": 2528.68, + "probability": 0.99755859375 + }, + { + "word": " didn't", + "start": 2528.68, + "end": 2530.22, + "probability": 0.91455078125 + }, + { + "word": " have", + "start": 2530.22, + "end": 2530.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 2530.36, + "end": 2530.48, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 2530.48, + "end": 2530.76, + "probability": 1.0 + }, + { + "word": " show", + "start": 2530.76, + "end": 2531.36, + "probability": 0.99462890625 + }, + { + "word": " on", + "start": 2531.36, + "end": 2531.62, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2531.62, + "end": 2531.84, + "probability": 1.0 + } + ] + }, + { + "id": 960, + "text": "and I said,", + "start": 2531.9, + "end": 2532.34, + "words": [ + { + "word": " and", + "start": 2531.9, + "end": 2532.02, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2532.02, + "end": 2532.12, + "probability": 0.99951171875 + }, + { + "word": " said,", + "start": 2532.12, + "end": 2532.34, + "probability": 1.0 + } + ] + }, + { + "id": 961, + "text": "I have to compete with this.", + "start": 2532.4, + "end": 2533.54, + "words": [ + { + "word": " I", + "start": 2532.4, + "end": 2532.64, + "probability": 0.98876953125 + }, + { + "word": " have", + "start": 2532.64, + "end": 2532.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2532.82, + "end": 2533.0, + "probability": 1.0 + }, + { + "word": " compete", + "start": 2533.0, + "end": 2533.18, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 2533.18, + "end": 2533.34, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2533.34, + "end": 2533.54, + "probability": 0.99267578125 + } + ] + }, + { + "id": 962, + "text": "And so it's my civic obligation", + "start": 2533.88, + "end": 2538.04, + "words": [ + { + "word": " And", + "start": 2533.88, + "end": 2534.3, + "probability": 0.853515625 + }, + { + "word": " so", + "start": 2534.3, + "end": 2534.56, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2534.56, + "end": 2535.34, + "probability": 0.96484375 + }, + { + "word": " my", + "start": 2535.34, + "end": 2535.84, + "probability": 0.99951171875 + }, + { + "word": " civic", + "start": 2535.84, + "end": 2537.3, + "probability": 1.0 + }, + { + "word": " obligation", + "start": 2537.3, + "end": 2538.04, + "probability": 1.0 + } + ] + }, + { + "id": 963, + "text": "to make sure that I am helping people,", + "start": 2538.04, + "end": 2540.12, + "words": [ + { + "word": " to", + "start": 2538.04, + "end": 2538.82, + "probability": 1.0 + }, + { + "word": " make", + "start": 2538.82, + "end": 2539.04, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2539.04, + "end": 2539.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 2539.22, + "end": 2539.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 2539.36, + "end": 2539.44, + "probability": 1.0 + }, + { + "word": " am", + "start": 2539.44, + "end": 2539.56, + "probability": 0.94970703125 + }, + { + "word": " helping", + "start": 2539.56, + "end": 2539.8, + "probability": 1.0 + }, + { + "word": " people,", + "start": 2539.8, + "end": 2540.12, + "probability": 1.0 + } + ] + }, + { + "id": 964, + "text": "to make sure that I am helping in some way", + "start": 2540.24, + "end": 2543.16, + "words": [ + { + "word": " to", + "start": 2540.24, + "end": 2540.44, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 2540.44, + "end": 2540.58, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2540.58, + "end": 2540.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 2540.76, + "end": 2540.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 2540.92, + "end": 2541.0, + "probability": 1.0 + }, + { + "word": " am", + "start": 2541.0, + "end": 2541.2, + "probability": 1.0 + }, + { + "word": " helping", + "start": 2541.2, + "end": 2542.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 2542.28, + "end": 2542.68, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 2542.68, + "end": 2542.88, + "probability": 1.0 + }, + { + "word": " way", + "start": 2542.88, + "end": 2543.16, + "probability": 1.0 + } + ] + }, + { + "id": 965, + "text": "to make the world of computers a little bit better", + "start": 2543.16, + "end": 2545.88, + "words": [ + { + "word": " to", + "start": 2543.16, + "end": 2543.5, + "probability": 0.99853515625 + }, + { + "word": " make", + "start": 2543.5, + "end": 2543.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2543.72, + "end": 2544.08, + "probability": 1.0 + }, + { + "word": " world", + "start": 2544.08, + "end": 2544.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 2544.54, + "end": 2544.78, + "probability": 1.0 + }, + { + "word": " computers", + "start": 2544.78, + "end": 2545.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2545.1, + "end": 2545.34, + "probability": 1.0 + }, + { + "word": " little", + "start": 2545.34, + "end": 2545.44, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2545.44, + "end": 2545.58, + "probability": 1.0 + }, + { + "word": " better", + "start": 2545.58, + "end": 2545.88, + "probability": 1.0 + } + ] + }, + { + "id": 966, + "text": "when it comes to users.", + "start": 2545.88, + "end": 2546.84, + "words": [ + { + "word": " when", + "start": 2545.88, + "end": 2546.16, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2546.16, + "end": 2546.3, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2546.3, + "end": 2546.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2546.46, + "end": 2546.64, + "probability": 1.0 + }, + { + "word": " users.", + "start": 2546.64, + "end": 2546.84, + "probability": 1.0 + } + ] + }, + { + "id": 967, + "text": "Because we want to treat you well.", + "start": 2548.14, + "end": 2550.32, + "words": [ + { + "word": " Because", + "start": 2548.14, + "end": 2548.58, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2548.58, + "end": 2549.02, + "probability": 1.0 + }, + { + "word": " want", + "start": 2549.02, + "end": 2549.2, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2549.2, + "end": 2549.32, + "probability": 0.9970703125 + }, + { + "word": " treat", + "start": 2549.32, + "end": 2549.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 2549.98, + "end": 2550.14, + "probability": 1.0 + }, + { + "word": " well.", + "start": 2550.14, + "end": 2550.32, + "probability": 0.99658203125 + } + ] + }, + { + "id": 968, + "text": "We want to make sure that you're treated fairly", + "start": 2550.44, + "end": 2553.12, + "words": [ + { + "word": " We", + "start": 2550.44, + "end": 2550.84, + "probability": 0.8564453125 + }, + { + "word": " want", + "start": 2550.84, + "end": 2550.98, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2550.98, + "end": 2551.0, + "probability": 1.0 + }, + { + "word": " make", + "start": 2551.0, + "end": 2551.12, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2551.12, + "end": 2551.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 2551.26, + "end": 2551.4, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2551.4, + "end": 2551.58, + "probability": 0.99658203125 + }, + { + "word": " treated", + "start": 2551.58, + "end": 2552.56, + "probability": 1.0 + }, + { + "word": " fairly", + "start": 2552.56, + "end": 2553.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 969, + "text": "and that you are well-informed", + "start": 2553.12, + "end": 2555.42, + "words": [ + { + "word": " and", + "start": 2553.12, + "end": 2553.54, + "probability": 0.68212890625 + }, + { + "word": " that", + "start": 2553.54, + "end": 2553.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 2553.82, + "end": 2554.1, + "probability": 1.0 + }, + { + "word": " are", + "start": 2554.1, + "end": 2554.34, + "probability": 1.0 + }, + { + "word": " well", + "start": 2554.34, + "end": 2554.8, + "probability": 1.0 + }, + { + "word": "-informed", + "start": 2554.8, + "end": 2555.42, + "probability": 0.7919921875 + } + ] + }, + { + "id": 970, + "text": "as to what...", + "start": 2555.42, + "end": 2556.62, + "words": [ + { + "word": " as", + "start": 2555.42, + "end": 2555.8, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2555.8, + "end": 2555.98, + "probability": 1.0 + }, + { + "word": " what...", + "start": 2555.98, + "end": 2556.62, + "probability": 0.5498046875 + } + ] + }, + { + "id": 971, + "text": "is actually happening.", + "start": 2556.66, + "end": 2557.5, + "words": [ + { + "word": " is", + "start": 2556.66, + "end": 2556.8, + "probability": 0.9091796875 + }, + { + "word": " actually", + "start": 2556.8, + "end": 2557.08, + "probability": 0.9990234375 + }, + { + "word": " happening.", + "start": 2557.08, + "end": 2557.5, + "probability": 1.0 + } + ] + }, + { + "id": 972, + "text": "So that's what the two components of my life", + "start": 2558.1, + "end": 2561.1, + "words": [ + { + "word": " So", + "start": 2558.1, + "end": 2558.5, + "probability": 0.84326171875 + }, + { + "word": " that's", + "start": 2558.5, + "end": 2558.7, + "probability": 0.9501953125 + }, + { + "word": " what", + "start": 2558.7, + "end": 2558.76, + "probability": 0.9892578125 + }, + { + "word": " the", + "start": 2558.76, + "end": 2558.94, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 2558.94, + "end": 2559.34, + "probability": 0.9521484375 + }, + { + "word": " components", + "start": 2559.34, + "end": 2560.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 2560.2, + "end": 2560.58, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2560.58, + "end": 2560.76, + "probability": 0.9970703125 + }, + { + "word": " life", + "start": 2560.76, + "end": 2561.1, + "probability": 1.0 + } + ] + }, + { + "id": 973, + "text": "are all about, right?", + "start": 2561.1, + "end": 2562.2, + "words": [ + { + "word": " are", + "start": 2561.1, + "end": 2561.36, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 2561.36, + "end": 2561.54, + "probability": 1.0 + }, + { + "word": " about,", + "start": 2561.54, + "end": 2561.84, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2562.0, + "end": 2562.2, + "probability": 0.96923828125 + } + ] + }, + { + "id": 974, + "text": "Either the shop during the week", + "start": 2562.28, + "end": 2563.56, + "words": [ + { + "word": " Either", + "start": 2562.28, + "end": 2562.54, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 2562.54, + "end": 2562.66, + "probability": 0.99951171875 + }, + { + "word": " shop", + "start": 2562.66, + "end": 2562.92, + "probability": 0.99951171875 + }, + { + "word": " during", + "start": 2562.92, + "end": 2563.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2563.2, + "end": 2563.34, + "probability": 1.0 + }, + { + "word": " week", + "start": 2563.34, + "end": 2563.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 975, + "text": "where we fix your computers and we do it right.", + "start": 2563.56, + "end": 2566.22, + "words": [ + { + "word": " where", + "start": 2563.56, + "end": 2564.3, + "probability": 0.849609375 + }, + { + "word": " we", + "start": 2564.3, + "end": 2564.56, + "probability": 1.0 + }, + { + "word": " fix", + "start": 2564.56, + "end": 2564.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 2564.9, + "end": 2565.0, + "probability": 0.99169921875 + }, + { + "word": " computers", + "start": 2565.0, + "end": 2565.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 2565.38, + "end": 2565.58, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 2565.58, + "end": 2565.7, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2565.7, + "end": 2565.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 2565.88, + "end": 2565.96, + "probability": 1.0 + }, + { + "word": " right.", + "start": 2565.96, + "end": 2566.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 976, + "text": "Or this radio show", + "start": 2567.52, + "end": 2568.82, + "words": [ + { + "word": " Or", + "start": 2567.52, + "end": 2567.92, + "probability": 0.9482421875 + }, + { + "word": " this", + "start": 2567.92, + "end": 2568.32, + "probability": 0.98876953125 + }, + { + "word": " radio", + "start": 2568.32, + "end": 2568.58, + "probability": 1.0 + }, + { + "word": " show", + "start": 2568.58, + "end": 2568.82, + "probability": 1.0 + } + ] + }, + { + "id": 977, + "text": "where you get an opportunity to fix it yourself", + "start": 2568.82, + "end": 2570.22, + "words": [ + { + "word": " where", + "start": 2568.82, + "end": 2568.98, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 2568.98, + "end": 2569.08, + "probability": 1.0 + }, + { + "word": " get", + "start": 2569.08, + "end": 2569.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 2569.16, + "end": 2569.22, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 2569.22, + "end": 2569.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2569.52, + "end": 2569.74, + "probability": 1.0 + }, + { + "word": " fix", + "start": 2569.74, + "end": 2569.94, + "probability": 1.0 + }, + { + "word": " it", + "start": 2569.94, + "end": 2570.0, + "probability": 0.99951171875 + }, + { + "word": " yourself", + "start": 2570.0, + "end": 2570.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 978, + "text": "with a little bit of guidance.", + "start": 2570.22, + "end": 2571.44, + "words": [ + { + "word": " with", + "start": 2570.22, + "end": 2570.66, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2570.66, + "end": 2570.76, + "probability": 1.0 + }, + { + "word": " little", + "start": 2570.76, + "end": 2570.86, + "probability": 0.99951171875 + }, + { + "word": " bit", + "start": 2570.86, + "end": 2571.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 2571.02, + "end": 2571.1, + "probability": 1.0 + }, + { + "word": " guidance.", + "start": 2571.1, + "end": 2571.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 979, + "text": "So you have an opportunity here.", + "start": 2572.36, + "end": 2574.02, + "words": [ + { + "word": " So", + "start": 2572.36, + "end": 2572.76, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2572.76, + "end": 2572.88, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2572.88, + "end": 2573.08, + "probability": 1.0 + }, + { + "word": " an", + "start": 2573.08, + "end": 2573.24, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 2573.24, + "end": 2573.62, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2573.62, + "end": 2574.02, + "probability": 1.0 + } + ] + }, + { + "id": 980, + "text": "If you want the help,", + "start": 2574.48, + "end": 2576.24, + "words": [ + { + "word": " If", + "start": 2574.48, + "end": 2574.88, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2574.88, + "end": 2575.1, + "probability": 1.0 + }, + { + "word": " want", + "start": 2575.1, + "end": 2575.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 2575.78, + "end": 2576.0, + "probability": 0.9970703125 + }, + { + "word": " help,", + "start": 2576.0, + "end": 2576.24, + "probability": 1.0 + } + ] + }, + { + "id": 981, + "text": "you give us a call.", + "start": 2576.32, + "end": 2576.96, + "words": [ + { + "word": " you", + "start": 2576.32, + "end": 2576.5, + "probability": 0.9970703125 + }, + { + "word": " give", + "start": 2576.5, + "end": 2576.64, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2576.64, + "end": 2576.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 2576.76, + "end": 2576.8, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2576.8, + "end": 2576.96, + "probability": 1.0 + } + ] + }, + { + "id": 982, + "text": "All right?", + "start": 2577.18, + "end": 2577.72, + "words": [ + { + "word": " All", + "start": 2577.18, + "end": 2577.58, + "probability": 0.5859375 + }, + { + "word": " right?", + "start": 2577.58, + "end": 2577.72, + "probability": 1.0 + } + ] + }, + { + "id": 983, + "text": "If you want us to do it for you,", + "start": 2577.76, + "end": 2579.92, + "words": [ + { + "word": " If", + "start": 2577.76, + "end": 2577.98, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2577.98, + "end": 2578.18, + "probability": 1.0 + }, + { + "word": " want", + "start": 2578.18, + "end": 2578.66, + "probability": 1.0 + }, + { + "word": " us", + "start": 2578.66, + "end": 2578.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2578.96, + "end": 2579.14, + "probability": 1.0 + }, + { + "word": " do", + "start": 2579.14, + "end": 2579.3, + "probability": 1.0 + }, + { + "word": " it", + "start": 2579.3, + "end": 2579.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 2579.4, + "end": 2579.64, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2579.64, + "end": 2579.92, + "probability": 1.0 + } + ] + }, + { + "id": 984, + "text": "then you give us a call.", + "start": 2580.46, + "end": 2581.82, + "words": [ + { + "word": " then", + "start": 2580.46, + "end": 2580.86, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2580.86, + "end": 2581.24, + "probability": 1.0 + }, + { + "word": " give", + "start": 2581.24, + "end": 2581.44, + "probability": 1.0 + }, + { + "word": " us", + "start": 2581.44, + "end": 2581.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 2581.58, + "end": 2581.66, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2581.66, + "end": 2581.82, + "probability": 1.0 + } + ] + }, + { + "id": 985, + "text": "So you can either show up down at the shop", + "start": 2581.98, + "end": 2583.94, + "words": [ + { + "word": " So", + "start": 2581.98, + "end": 2582.38, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 2582.38, + "end": 2582.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 2582.66, + "end": 2582.84, + "probability": 1.0 + }, + { + "word": " either", + "start": 2582.84, + "end": 2583.02, + "probability": 1.0 + }, + { + "word": " show", + "start": 2583.02, + "end": 2583.38, + "probability": 1.0 + }, + { + "word": " up", + "start": 2583.38, + "end": 2583.48, + "probability": 1.0 + }, + { + "word": " down", + "start": 2583.48, + "end": 2583.6, + "probability": 0.69921875 + }, + { + "word": " at", + "start": 2583.6, + "end": 2583.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2583.72, + "end": 2583.72, + "probability": 1.0 + }, + { + "word": " shop", + "start": 2583.72, + "end": 2583.94, + "probability": 1.0 + } + ] + }, + { + "id": 986, + "text": "or you can give us a call here on the weekend.", + "start": 2583.94, + "end": 2586.54, + "words": [ + { + "word": " or", + "start": 2583.94, + "end": 2584.28, + "probability": 0.96875 + }, + { + "word": " you", + "start": 2584.28, + "end": 2584.48, + "probability": 1.0 + }, + { + "word": " can", + "start": 2584.48, + "end": 2584.64, + "probability": 1.0 + }, + { + "word": " give", + "start": 2584.64, + "end": 2585.16, + "probability": 0.9716796875 + }, + { + "word": " us", + "start": 2585.16, + "end": 2585.6, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2585.6, + "end": 2585.66, + "probability": 1.0 + }, + { + "word": " call", + "start": 2585.66, + "end": 2585.76, + "probability": 1.0 + }, + { + "word": " here", + "start": 2585.76, + "end": 2585.92, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2585.92, + "end": 2586.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2586.1, + "end": 2586.32, + "probability": 1.0 + }, + { + "word": " weekend.", + "start": 2586.32, + "end": 2586.54, + "probability": 0.9951171875 + } + ] + }, + { + "id": 987, + "text": "I highly suggest that if you are a user", + "start": 2587.9, + "end": 2590.44, + "words": [ + { + "word": " I", + "start": 2587.9, + "end": 2588.36, + "probability": 0.9814453125 + }, + { + "word": " highly", + "start": 2588.36, + "end": 2588.74, + "probability": 0.99951171875 + }, + { + "word": " suggest", + "start": 2588.74, + "end": 2589.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 2589.14, + "end": 2589.44, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 2589.44, + "end": 2589.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2589.6, + "end": 2589.76, + "probability": 1.0 + }, + { + "word": " are", + "start": 2589.76, + "end": 2590.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2590.0, + "end": 2590.16, + "probability": 1.0 + }, + { + "word": " user", + "start": 2590.16, + "end": 2590.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 988, + "text": "that has some paranoia about viruses", + "start": 2590.44, + "end": 2594.16, + "words": [ + { + "word": " that", + "start": 2590.44, + "end": 2590.78, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 2590.78, + "end": 2591.66, + "probability": 0.654296875 + }, + { + "word": " some", + "start": 2591.66, + "end": 2592.16, + "probability": 1.0 + }, + { + "word": " paranoia", + "start": 2592.16, + "end": 2592.84, + "probability": 1.0 + }, + { + "word": " about", + "start": 2592.84, + "end": 2593.3, + "probability": 0.99853515625 + }, + { + "word": " viruses", + "start": 2593.3, + "end": 2594.16, + "probability": 0.99462890625 + } + ] + }, + { + "id": 989, + "text": "or you want to make sure that you're protected and safe", + "start": 2594.16, + "end": 2597.8, + "words": [ + { + "word": " or", + "start": 2594.16, + "end": 2594.74, + "probability": 0.8271484375 + }, + { + "word": " you", + "start": 2594.74, + "end": 2595.3, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2595.3, + "end": 2595.48, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 2595.48, + "end": 2595.58, + "probability": 1.0 + }, + { + "word": " make", + "start": 2595.58, + "end": 2595.72, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2595.72, + "end": 2595.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 2595.9, + "end": 2596.06, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 2596.06, + "end": 2596.26, + "probability": 0.9970703125 + }, + { + "word": " protected", + "start": 2596.26, + "end": 2597.02, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2597.02, + "end": 2597.44, + "probability": 1.0 + }, + { + "word": " safe", + "start": 2597.44, + "end": 2597.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 990, + "text": "and you just want to make sure that you're doing well,", + "start": 2597.8, + "end": 2600.86, + "words": [ + { + "word": " and", + "start": 2597.8, + "end": 2598.24, + "probability": 0.98388671875 + }, + { + "word": " you", + "start": 2598.24, + "end": 2599.4, + "probability": 0.99169921875 + }, + { + "word": " just", + "start": 2599.4, + "end": 2599.74, + "probability": 0.99560546875 + }, + { + "word": " want", + "start": 2599.74, + "end": 2599.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2599.96, + "end": 2600.04, + "probability": 1.0 + }, + { + "word": " make", + "start": 2600.04, + "end": 2600.16, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2600.16, + "end": 2600.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 2600.3, + "end": 2600.42, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 2600.42, + "end": 2600.5, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2600.5, + "end": 2600.62, + "probability": 1.0 + }, + { + "word": " well,", + "start": 2600.62, + "end": 2600.86, + "probability": 1.0 + } + ] + }, + { + "id": 991, + "text": "then you sign up for the group protection services", + "start": 2601.0, + "end": 2602.76, + "words": [ + { + "word": " then", + "start": 2601.0, + "end": 2601.28, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2601.28, + "end": 2601.58, + "probability": 1.0 + }, + { + "word": " sign", + "start": 2601.58, + "end": 2601.78, + "probability": 1.0 + }, + { + "word": " up", + "start": 2601.78, + "end": 2601.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 2601.9, + "end": 2602.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 2602.0, + "end": 2602.02, + "probability": 0.99951171875 + }, + { + "word": " group", + "start": 2602.02, + "end": 2602.16, + "probability": 0.8896484375 + }, + { + "word": " protection", + "start": 2602.16, + "end": 2602.34, + "probability": 1.0 + }, + { + "word": " services", + "start": 2602.34, + "end": 2602.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 992, + "text": "or the lockdown service", + "start": 2602.76, + "end": 2604.1, + "words": [ + { + "word": " or", + "start": 2602.76, + "end": 2603.38, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 2603.38, + "end": 2603.56, + "probability": 1.0 + }, + { + "word": " lockdown", + "start": 2603.56, + "end": 2603.76, + "probability": 0.9970703125 + }, + { + "word": " service", + "start": 2603.76, + "end": 2604.1, + "probability": 1.0 + } + ] + }, + { + "id": 993, + "text": "and we make sure that you don't have those problems", + "start": 2604.1, + "end": 2606.82, + "words": [ + { + "word": " and", + "start": 2604.1, + "end": 2604.62, + "probability": 0.60302734375 + }, + { + "word": " we", + "start": 2604.62, + "end": 2604.76, + "probability": 0.994140625 + }, + { + "word": " make", + "start": 2604.76, + "end": 2604.94, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 2604.94, + "end": 2605.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 2605.38, + "end": 2605.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 2605.58, + "end": 2605.72, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2605.72, + "end": 2606.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 2606.02, + "end": 2606.18, + "probability": 1.0 + }, + { + "word": " those", + "start": 2606.18, + "end": 2606.42, + "probability": 1.0 + }, + { + "word": " problems", + "start": 2606.42, + "end": 2606.82, + "probability": 1.0 + } + ] + }, + { + "id": 994, + "text": "in the future.", + "start": 2606.82, + "end": 2608.04, + "words": [ + { + "word": " in", + "start": 2606.82, + "end": 2607.52, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2607.52, + "end": 2607.72, + "probability": 1.0 + }, + { + "word": " future.", + "start": 2607.72, + "end": 2608.04, + "probability": 1.0 + } + ] + }, + { + "id": 995, + "text": "And you know that you have some place that you can call.", + "start": 2608.44, + "end": 2611.88, + "words": [ + { + "word": " And", + "start": 2608.44, + "end": 2608.9, + "probability": 0.75439453125 + }, + { + "word": " you", + "start": 2608.9, + "end": 2609.24, + "probability": 0.99755859375 + }, + { + "word": " know", + "start": 2609.24, + "end": 2609.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2609.7, + "end": 2609.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 2609.9, + "end": 2610.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 2610.54, + "end": 2610.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 2610.84, + "end": 2611.0, + "probability": 0.6923828125 + }, + { + "word": " place", + "start": 2611.0, + "end": 2611.22, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2611.22, + "end": 2611.32, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2611.32, + "end": 2611.4, + "probability": 1.0 + }, + { + "word": " can", + "start": 2611.4, + "end": 2611.54, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2611.54, + "end": 2611.88, + "probability": 1.0 + } + ] + }, + { + "id": 996, + "text": "We'll answer questions generally for free.", + "start": 2612.6, + "end": 2615.28, + "words": [ + { + "word": " We'll", + "start": 2612.6, + "end": 2613.06, + "probability": 0.978515625 + }, + { + "word": " answer", + "start": 2613.06, + "end": 2613.46, + "probability": 1.0 + }, + { + "word": " questions", + "start": 2613.46, + "end": 2613.82, + "probability": 1.0 + }, + { + "word": " generally", + "start": 2613.82, + "end": 2614.5, + "probability": 0.9306640625 + }, + { + "word": " for", + "start": 2614.5, + "end": 2614.92, + "probability": 1.0 + }, + { + "word": " free.", + "start": 2614.92, + "end": 2615.28, + "probability": 1.0 + } + ] + }, + { + "id": 997, + "text": "All right?", + "start": 2615.38, + "end": 2615.78, + "words": [ + { + "word": " All", + "start": 2615.38, + "end": 2615.78, + "probability": 0.0019683837890625 + }, + { + "word": " right?", + "start": 2615.78, + "end": 2615.78, + "probability": 0.998046875 + } + ] + }, + { + "id": 998, + "text": "As long as you don't...", + "start": 2615.86, + "end": 2616.58, + "words": [ + { + "word": " As", + "start": 2615.86, + "end": 2616.0, + "probability": 0.8427734375 + }, + { + "word": " long", + "start": 2616.0, + "end": 2616.16, + "probability": 1.0 + }, + { + "word": " as", + "start": 2616.16, + "end": 2616.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 2616.28, + "end": 2616.38, + "probability": 0.99072265625 + }, + { + "word": " don't...", + "start": 2616.38, + "end": 2616.58, + "probability": 0.671875 + } + ] + }, + { + "id": 999, + "text": "I try to monopolize all of my time.", + "start": 2616.66, + "end": 2618.3, + "words": [ + { + "word": " I", + "start": 2616.66, + "end": 2616.7, + "probability": 0.1500244140625 + }, + { + "word": " try", + "start": 2616.7, + "end": 2616.7, + "probability": 0.6357421875 + }, + { + "word": " to", + "start": 2616.7, + "end": 2616.84, + "probability": 0.99951171875 + }, + { + "word": " monopolize", + "start": 2616.84, + "end": 2617.46, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2617.46, + "end": 2617.66, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2617.66, + "end": 2617.8, + "probability": 1.0 + }, + { + "word": " my", + "start": 2617.8, + "end": 2617.94, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2617.94, + "end": 2618.3, + "probability": 1.0 + } + ] + }, + { + "id": 1000, + "text": "But if you call the shop and say,", + "start": 2618.8, + "end": 2620.16, + "words": [ + { + "word": " But", + "start": 2618.8, + "end": 2619.0, + "probability": 0.69189453125 + }, + { + "word": " if", + "start": 2619.0, + "end": 2619.14, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2619.14, + "end": 2619.2, + "probability": 1.0 + }, + { + "word": " call", + "start": 2619.2, + "end": 2619.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 2619.4, + "end": 2619.52, + "probability": 0.99951171875 + }, + { + "word": " shop", + "start": 2619.52, + "end": 2619.72, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2619.72, + "end": 2619.98, + "probability": 0.994140625 + }, + { + "word": " say,", + "start": 2619.98, + "end": 2620.16, + "probability": 1.0 + } + ] + }, + { + "id": 1001, + "text": "hey, I just have a question.", + "start": 2620.22, + "end": 2620.94, + "words": [ + { + "word": " hey,", + "start": 2620.22, + "end": 2620.32, + "probability": 0.86572265625 + }, + { + "word": " I", + "start": 2620.34, + "end": 2620.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 2620.42, + "end": 2620.52, + "probability": 1.0 + }, + { + "word": " have", + "start": 2620.52, + "end": 2620.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 2620.64, + "end": 2620.7, + "probability": 1.0 + }, + { + "word": " question.", + "start": 2620.7, + "end": 2620.94, + "probability": 1.0 + } + ] + }, + { + "id": 1002, + "text": "I just want to know how this works", + "start": 2621.26, + "end": 2623.58, + "words": [ + { + "word": " I", + "start": 2621.26, + "end": 2621.66, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2621.66, + "end": 2621.8, + "probability": 1.0 + }, + { + "word": " want", + "start": 2621.8, + "end": 2621.94, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 2621.94, + "end": 2622.04, + "probability": 1.0 + }, + { + "word": " know", + "start": 2622.04, + "end": 2622.28, + "probability": 1.0 + }, + { + "word": " how", + "start": 2622.28, + "end": 2622.88, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2622.88, + "end": 2623.18, + "probability": 1.0 + }, + { + "word": " works", + "start": 2623.18, + "end": 2623.58, + "probability": 1.0 + } + ] + }, + { + "id": 1003, + "text": "or if I can do this", + "start": 2623.58, + "end": 2625.18, + "words": [ + { + "word": " or", + "start": 2623.58, + "end": 2623.92, + "probability": 0.85107421875 + }, + { + "word": " if", + "start": 2623.92, + "end": 2624.5, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2624.5, + "end": 2624.62, + "probability": 1.0 + }, + { + "word": " can", + "start": 2624.62, + "end": 2624.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 2624.8, + "end": 2624.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 2624.94, + "end": 2625.18, + "probability": 1.0 + } + ] + }, + { + "id": 1004, + "text": "or what our advice is for whatever,", + "start": 2625.18, + "end": 2627.84, + "words": [ + { + "word": " or", + "start": 2625.18, + "end": 2625.46, + "probability": 0.9921875 + }, + { + "word": " what", + "start": 2625.46, + "end": 2626.08, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 2626.08, + "end": 2626.62, + "probability": 0.9365234375 + }, + { + "word": " advice", + "start": 2626.62, + "end": 2626.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 2626.92, + "end": 2627.2, + "probability": 1.0 + }, + { + "word": " for", + "start": 2627.2, + "end": 2627.42, + "probability": 0.9990234375 + }, + { + "word": " whatever,", + "start": 2627.42, + "end": 2627.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1005, + "text": "you call us,", + "start": 2628.4, + "end": 2629.26, + "words": [ + { + "word": " you", + "start": 2628.4, + "end": 2628.8, + "probability": 0.99853515625 + }, + { + "word": " call", + "start": 2628.8, + "end": 2629.02, + "probability": 1.0 + }, + { + "word": " us,", + "start": 2629.02, + "end": 2629.26, + "probability": 1.0 + } + ] + }, + { + "id": 1006, + "text": "we'll pick up the phone,", + "start": 2629.36, + "end": 2630.28, + "words": [ + { + "word": " we'll", + "start": 2629.36, + "end": 2629.7, + "probability": 0.9990234375 + }, + { + "word": " pick", + "start": 2629.7, + "end": 2629.86, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2629.86, + "end": 2629.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2629.96, + "end": 2630.06, + "probability": 1.0 + }, + { + "word": " phone,", + "start": 2630.06, + "end": 2630.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1007, + "text": "we will talk to you kindly for free.", + "start": 2630.38, + "end": 2634.22, + "words": [ + { + "word": " we", + "start": 2630.38, + "end": 2630.52, + "probability": 0.8232421875 + }, + { + "word": " will", + "start": 2630.52, + "end": 2630.66, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 2630.66, + "end": 2630.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2630.86, + "end": 2631.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 2631.0, + "end": 2631.24, + "probability": 1.0 + }, + { + "word": " kindly", + "start": 2631.24, + "end": 2632.26, + "probability": 0.9951171875 + }, + { + "word": " for", + "start": 2632.26, + "end": 2634.0, + "probability": 0.9921875 + }, + { + "word": " free.", + "start": 2634.0, + "end": 2634.22, + "probability": 1.0 + } + ] + }, + { + "id": 1008, + "text": "Not too many businesses like that anymore.", + "start": 2634.54, + "end": 2636.46, + "words": [ + { + "word": " Not", + "start": 2634.54, + "end": 2634.94, + "probability": 0.99755859375 + }, + { + "word": " too", + "start": 2634.94, + "end": 2635.08, + "probability": 0.99267578125 + }, + { + "word": " many", + "start": 2635.08, + "end": 2635.22, + "probability": 1.0 + }, + { + "word": " businesses", + "start": 2635.22, + "end": 2635.56, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2635.56, + "end": 2635.92, + "probability": 0.99072265625 + }, + { + "word": " that", + "start": 2635.92, + "end": 2636.1, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 2636.1, + "end": 2636.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1009, + "text": "Not in the computer world anyway.", + "start": 2636.82, + "end": 2638.24, + "words": [ + { + "word": " Not", + "start": 2636.82, + "end": 2637.1, + "probability": 0.98583984375 + }, + { + "word": " in", + "start": 2637.1, + "end": 2637.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2637.42, + "end": 2637.44, + "probability": 1.0 + }, + { + "word": " computer", + "start": 2637.44, + "end": 2637.68, + "probability": 1.0 + }, + { + "word": " world", + "start": 2637.68, + "end": 2637.98, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 2637.98, + "end": 2638.24, + "probability": 0.9033203125 + } + ] + }, + { + "id": 1010, + "text": "So, I mean, if you...", + "start": 2639.12, + "end": 2640.54, + "words": [ + { + "word": " So,", + "start": 2639.12, + "end": 2639.52, + "probability": 0.53466796875 + }, + { + "word": " I", + "start": 2639.58, + "end": 2639.78, + "probability": 0.986328125 + }, + { + "word": " mean,", + "start": 2639.78, + "end": 2639.96, + "probability": 1.0 + }, + { + "word": " if", + "start": 2640.02, + "end": 2640.08, + "probability": 0.0161285400390625 + }, + { + "word": " you...", + "start": 2640.08, + "end": 2640.54, + "probability": 0.56787109375 + } + ] + }, + { + "id": 1011, + "text": "That's my commitment to you, the user, right?", + "start": 2641.44, + "end": 2644.52, + "words": [ + { + "word": " That's", + "start": 2641.44, + "end": 2641.84, + "probability": 0.98388671875 + }, + { + "word": " my", + "start": 2641.84, + "end": 2642.0, + "probability": 1.0 + }, + { + "word": " commitment", + "start": 2642.0, + "end": 2642.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 2642.6, + "end": 2643.14, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2643.14, + "end": 2643.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2643.46, + "end": 2643.64, + "probability": 1.0 + }, + { + "word": " user,", + "start": 2643.64, + "end": 2643.96, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2644.08, + "end": 2644.52, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1012, + "text": "To you, my customers.", + "start": 2644.6, + "end": 2645.62, + "words": [ + { + "word": " To", + "start": 2644.6, + "end": 2644.78, + "probability": 0.998046875 + }, + { + "word": " you,", + "start": 2644.78, + "end": 2645.0, + "probability": 1.0 + }, + { + "word": " my", + "start": 2645.04, + "end": 2645.2, + "probability": 1.0 + }, + { + "word": " customers.", + "start": 2645.2, + "end": 2645.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1013, + "text": "To you, my listeners.", + "start": 2645.62, + "end": 2647.14, + "words": [ + { + "word": " To", + "start": 2645.62, + "end": 2646.24, + "probability": 0.203369140625 + }, + { + "word": " you,", + "start": 2646.24, + "end": 2646.52, + "probability": 0.9892578125 + }, + { + "word": " my", + "start": 2646.56, + "end": 2646.68, + "probability": 0.9990234375 + }, + { + "word": " listeners.", + "start": 2646.68, + "end": 2647.14, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1014, + "text": "All right?", + "start": 2647.36, + "end": 2647.84, + "words": [ + { + "word": " All", + "start": 2647.36, + "end": 2647.68, + "probability": 0.18603515625 + }, + { + "word": " right?", + "start": 2647.68, + "end": 2647.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1015, + "text": "I want to make sure that you are treated fairly all the time.", + "start": 2647.84, + "end": 2651.36, + "words": [ + { + "word": " I", + "start": 2647.84, + "end": 2647.98, + "probability": 0.994140625 + }, + { + "word": " want", + "start": 2647.98, + "end": 2648.2, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 2648.2, + "end": 2648.3, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 2648.3, + "end": 2648.44, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 2648.44, + "end": 2648.64, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2648.64, + "end": 2648.88, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2648.88, + "end": 2649.06, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2649.06, + "end": 2649.42, + "probability": 0.99951171875 + }, + { + "word": " treated", + "start": 2649.42, + "end": 2649.96, + "probability": 0.99853515625 + }, + { + "word": " fairly", + "start": 2649.96, + "end": 2650.28, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 2650.28, + "end": 2651.0, + "probability": 0.98681640625 + }, + { + "word": " the", + "start": 2651.0, + "end": 2651.12, + "probability": 0.99951171875 + }, + { + "word": " time.", + "start": 2651.12, + "end": 2651.36, + "probability": 1.0 + } + ] + }, + { + "id": 1016, + "text": "So give us a call down at the shop, 304-8300,", + "start": 2651.74, + "end": 2654.2, + "words": [ + { + "word": " So", + "start": 2651.74, + "end": 2652.18, + "probability": 0.9755859375 + }, + { + "word": " give", + "start": 2652.18, + "end": 2652.3, + "probability": 0.796875 + }, + { + "word": " us", + "start": 2652.3, + "end": 2652.46, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2652.46, + "end": 2652.48, + "probability": 0.99853515625 + }, + { + "word": " call", + "start": 2652.48, + "end": 2652.6, + "probability": 1.0 + }, + { + "word": " down", + "start": 2652.6, + "end": 2652.72, + "probability": 0.9775390625 + }, + { + "word": " at", + "start": 2652.72, + "end": 2652.82, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 2652.82, + "end": 2652.82, + "probability": 0.99853515625 + }, + { + "word": " shop,", + "start": 2652.82, + "end": 2653.02, + "probability": 0.99169921875 + }, + { + "word": " 304", + "start": 2653.14, + "end": 2653.7, + "probability": 0.9990234375 + }, + { + "word": "-8300,", + "start": 2653.7, + "end": 2654.2, + "probability": 0.998046875 + } + ] + }, + { + "id": 1017, + "text": "if you have any questions", + "start": 2654.48, + "end": 2655.22, + "words": [ + { + "word": " if", + "start": 2654.48, + "end": 2654.62, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2654.62, + "end": 2654.7, + "probability": 1.0 + }, + { + "word": " have", + "start": 2654.7, + "end": 2654.78, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 2654.78, + "end": 2654.88, + "probability": 0.99951171875 + }, + { + "word": " questions", + "start": 2654.88, + "end": 2655.22, + "probability": 1.0 + } + ] + }, + { + "id": 1018, + "text": "or if you want to...", + "start": 2655.22, + "end": 2656.48, + "words": [ + { + "word": " or", + "start": 2655.22, + "end": 2655.84, + "probability": 0.76220703125 + }, + { + "word": " if", + "start": 2655.84, + "end": 2656.02, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2656.02, + "end": 2656.06, + "probability": 1.0 + }, + { + "word": " want", + "start": 2656.06, + "end": 2656.22, + "probability": 0.34716796875 + }, + { + "word": " to...", + "start": 2656.22, + "end": 2656.48, + "probability": 0.556640625 + } + ] + }, + { + "id": 1019, + "text": "Or if you're interested in signing up", + "start": 2657.0, + "end": 2658.56, + "words": [ + { + "word": " Or", + "start": 2657.0, + "end": 2657.44, + "probability": 0.607421875 + }, + { + "word": " if", + "start": 2657.44, + "end": 2657.6, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 2657.6, + "end": 2657.68, + "probability": 0.9990234375 + }, + { + "word": " interested", + "start": 2657.68, + "end": 2657.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 2657.98, + "end": 2658.2, + "probability": 1.0 + }, + { + "word": " signing", + "start": 2658.2, + "end": 2658.4, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2658.4, + "end": 2658.56, + "probability": 1.0 + } + ] + }, + { + "id": 1020, + "text": "for any of the services that we have.", + "start": 2658.56, + "end": 2659.78, + "words": [ + { + "word": " for", + "start": 2658.56, + "end": 2658.66, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 2658.66, + "end": 2658.76, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2658.76, + "end": 2658.86, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2658.86, + "end": 2658.92, + "probability": 1.0 + }, + { + "word": " services", + "start": 2658.92, + "end": 2659.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 2659.2, + "end": 2659.46, + "probability": 1.0 + }, + { + "word": " we", + "start": 2659.46, + "end": 2659.58, + "probability": 1.0 + }, + { + "word": " have.", + "start": 2659.58, + "end": 2659.78, + "probability": 1.0 + } + ] + }, + { + "id": 1021, + "text": "That's what we're here for.", + "start": 2661.14, + "end": 2662.56, + "words": [ + { + "word": " That's", + "start": 2661.14, + "end": 2661.58, + "probability": 0.9970703125 + }, + { + "word": " what", + "start": 2661.58, + "end": 2661.98, + "probability": 0.9931640625 + }, + { + "word": " we're", + "start": 2661.98, + "end": 2662.16, + "probability": 1.0 + }, + { + "word": " here", + "start": 2662.16, + "end": 2662.32, + "probability": 1.0 + }, + { + "word": " for.", + "start": 2662.32, + "end": 2662.56, + "probability": 1.0 + } + ] + }, + { + "id": 1022, + "text": "And we want to keep it fun.", + "start": 2663.3199999999997, + "end": 2665.26, + "words": [ + { + "word": " And", + "start": 2663.3199999999997, + "end": 2663.7599999999998, + "probability": 0.58251953125 + }, + { + "word": " we", + "start": 2663.7599999999998, + "end": 2664.2, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2664.2, + "end": 2664.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2664.6, + "end": 2664.7, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2664.7, + "end": 2664.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 2664.86, + "end": 2664.98, + "probability": 1.0 + }, + { + "word": " fun.", + "start": 2664.98, + "end": 2665.26, + "probability": 1.0 + } + ] + }, + { + "id": 1023, + "text": "All right?", + "start": 2665.52, + "end": 2665.9, + "words": [ + { + "word": " All", + "start": 2665.52, + "end": 2665.88, + "probability": 0.382568359375 + }, + { + "word": " right?", + "start": 2665.88, + "end": 2665.9, + "probability": 1.0 + } + ] + }, + { + "id": 1024, + "text": "It's like...", + "start": 2665.96, + "end": 2666.72, + "words": [ + { + "word": " It's", + "start": 2665.96, + "end": 2666.2, + "probability": 0.96875 + }, + { + "word": " like...", + "start": 2666.2, + "end": 2666.72, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1025, + "text": "To me, it's important that every day is a learning experience", + "start": 2667.58, + "end": 2671.06, + "words": [ + { + "word": " To", + "start": 2667.58, + "end": 2668.02, + "probability": 0.9990234375 + }, + { + "word": " me,", + "start": 2668.02, + "end": 2668.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2668.22, + "end": 2668.38, + "probability": 1.0 + }, + { + "word": " important", + "start": 2668.38, + "end": 2668.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 2668.66, + "end": 2668.96, + "probability": 0.9990234375 + }, + { + "word": " every", + "start": 2668.96, + "end": 2669.32, + "probability": 0.99560546875 + }, + { + "word": " day", + "start": 2669.32, + "end": 2669.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 2669.54, + "end": 2669.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2669.86, + "end": 2670.26, + "probability": 0.99951171875 + }, + { + "word": " learning", + "start": 2670.26, + "end": 2670.74, + "probability": 1.0 + }, + { + "word": " experience", + "start": 2670.74, + "end": 2671.06, + "probability": 1.0 + } + ] + }, + { + "id": 1026, + "text": "and that it's fun", + "start": 2671.06, + "end": 2672.24, + "words": [ + { + "word": " and", + "start": 2671.06, + "end": 2671.48, + "probability": 0.96240234375 + }, + { + "word": " that", + "start": 2671.48, + "end": 2671.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2671.62, + "end": 2671.88, + "probability": 1.0 + }, + { + "word": " fun", + "start": 2671.88, + "end": 2672.24, + "probability": 1.0 + } + ] + }, + { + "id": 1027, + "text": "and that, you know, we're...", + "start": 2672.24, + "end": 2675.02, + "words": [ + { + "word": " and", + "start": 2672.24, + "end": 2672.64, + "probability": 0.763671875 + }, + { + "word": " that,", + "start": 2672.64, + "end": 2673.5, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2673.66, + "end": 2674.4, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 2674.4, + "end": 2674.62, + "probability": 1.0 + }, + { + "word": " we're...", + "start": 2674.62, + "end": 2675.02, + "probability": 0.9228515625 + } + ] + }, + { + "id": 1028, + "text": "We shouldn't be afraid of our technology.", + "start": 2675.62, + "end": 2676.96, + "words": [ + { + "word": " We", + "start": 2675.62, + "end": 2675.9, + "probability": 0.87060546875 + }, + { + "word": " shouldn't", + "start": 2675.9, + "end": 2676.12, + "probability": 1.0 + }, + { + "word": " be", + "start": 2676.12, + "end": 2676.18, + "probability": 0.9990234375 + }, + { + "word": " afraid", + "start": 2676.18, + "end": 2676.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 2676.38, + "end": 2676.54, + "probability": 0.9970703125 + }, + { + "word": " our", + "start": 2676.54, + "end": 2676.62, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 2676.62, + "end": 2676.96, + "probability": 1.0 + } + ] + }, + { + "id": 1029, + "text": "We shouldn't be...", + "start": 2677.22, + "end": 2677.8, + "words": [ + { + "word": " We", + "start": 2677.22, + "end": 2677.34, + "probability": 0.9970703125 + }, + { + "word": " shouldn't", + "start": 2677.34, + "end": 2677.64, + "probability": 0.9990234375 + }, + { + "word": " be...", + "start": 2677.64, + "end": 2677.8, + "probability": 0.11004638671875 + } + ] + }, + { + "id": 1030, + "text": "We shouldn't hate our technology.", + "start": 2677.8, + "end": 2679.46, + "words": [ + { + "word": " We", + "start": 2677.8, + "end": 2678.1, + "probability": 0.96142578125 + }, + { + "word": " shouldn't", + "start": 2678.1, + "end": 2678.44, + "probability": 1.0 + }, + { + "word": " hate", + "start": 2678.44, + "end": 2678.68, + "probability": 0.9970703125 + }, + { + "word": " our", + "start": 2678.68, + "end": 2678.98, + "probability": 0.99951171875 + }, + { + "word": " technology.", + "start": 2678.98, + "end": 2679.46, + "probability": 1.0 + } + ] + }, + { + "id": 1031, + "text": "And so if you've got, you know,", + "start": 2680.16, + "end": 2681.64, + "words": [ + { + "word": " And", + "start": 2680.16, + "end": 2680.56, + "probability": 0.98095703125 + }, + { + "word": " so", + "start": 2680.56, + "end": 2680.7, + "probability": 0.994140625 + }, + { + "word": " if", + "start": 2680.7, + "end": 2680.94, + "probability": 0.57275390625 + }, + { + "word": " you've", + "start": 2680.94, + "end": 2681.14, + "probability": 1.0 + }, + { + "word": " got,", + "start": 2681.14, + "end": 2681.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 2681.34, + "end": 2681.52, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 2681.52, + "end": 2681.64, + "probability": 1.0 + } + ] + }, + { + "id": 1032, + "text": "if you've got a business", + "start": 2681.64, + "end": 2682.22, + "words": [ + { + "word": " if", + "start": 2681.64, + "end": 2681.74, + "probability": 0.99267578125 + }, + { + "word": " you've", + "start": 2681.74, + "end": 2681.84, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2681.84, + "end": 2681.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 2681.94, + "end": 2682.02, + "probability": 1.0 + }, + { + "word": " business", + "start": 2682.02, + "end": 2682.22, + "probability": 1.0 + } + ] + }, + { + "id": 1033, + "text": "where you're just hating on your computers every day, right?", + "start": 2682.22, + "end": 2684.78, + "words": [ + { + "word": " where", + "start": 2682.22, + "end": 2682.46, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 2682.46, + "end": 2682.62, + "probability": 1.0 + }, + { + "word": " just", + "start": 2682.62, + "end": 2682.78, + "probability": 0.99951171875 + }, + { + "word": " hating", + "start": 2682.78, + "end": 2682.98, + "probability": 0.99462890625 + }, + { + "word": " on", + "start": 2682.98, + "end": 2683.16, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2683.16, + "end": 2683.28, + "probability": 0.99951171875 + }, + { + "word": " computers", + "start": 2683.28, + "end": 2683.6, + "probability": 0.9990234375 + }, + { + "word": " every", + "start": 2683.6, + "end": 2683.88, + "probability": 0.99853515625 + }, + { + "word": " day,", + "start": 2683.88, + "end": 2684.16, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2684.26, + "end": 2684.78, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1034, + "text": "Or you got computers at home, right?", + "start": 2684.86, + "end": 2687.8, + "words": [ + { + "word": " Or", + "start": 2684.86, + "end": 2685.14, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2685.14, + "end": 2685.66, + "probability": 0.99755859375 + }, + { + "word": " got", + "start": 2685.66, + "end": 2685.98, + "probability": 0.60009765625 + }, + { + "word": " computers", + "start": 2685.98, + "end": 2686.42, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2686.42, + "end": 2686.98, + "probability": 0.99951171875 + }, + { + "word": " home,", + "start": 2686.98, + "end": 2687.34, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2687.4, + "end": 2687.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1035, + "text": "And you're afraid of them", + "start": 2687.9, + "end": 2688.94, + "words": [ + { + "word": " And", + "start": 2687.9, + "end": 2688.02, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 2688.02, + "end": 2688.22, + "probability": 1.0 + }, + { + "word": " afraid", + "start": 2688.22, + "end": 2688.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 2688.58, + "end": 2688.76, + "probability": 1.0 + }, + { + "word": " them", + "start": 2688.76, + "end": 2688.94, + "probability": 1.0 + } + ] + }, + { + "id": 1036, + "text": "or you just don't like it.", + "start": 2688.94, + "end": 2692.02, + "words": [ + { + "word": " or", + "start": 2688.94, + "end": 2689.22, + "probability": 0.51806640625 + }, + { + "word": " you", + "start": 2689.22, + "end": 2690.14, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 2690.14, + "end": 2690.68, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 2690.68, + "end": 2691.5, + "probability": 0.9326171875 + }, + { + "word": " like", + "start": 2691.5, + "end": 2691.76, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2691.76, + "end": 2692.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1037, + "text": "Or if it came installed with Vista XP on it,", + "start": 2692.06, + "end": 2694.48, + "words": [ + { + "word": " Or", + "start": 2692.06, + "end": 2692.2, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2692.2, + "end": 2692.46, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2692.46, + "end": 2692.58, + "probability": 1.0 + }, + { + "word": " came", + "start": 2692.58, + "end": 2692.8, + "probability": 0.99951171875 + }, + { + "word": " installed", + "start": 2692.8, + "end": 2693.1, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 2693.1, + "end": 2693.38, + "probability": 1.0 + }, + { + "word": " Vista", + "start": 2693.38, + "end": 2693.66, + "probability": 0.947265625 + }, + { + "word": " XP", + "start": 2693.66, + "end": 2694.0, + "probability": 0.771484375 + }, + { + "word": " on", + "start": 2694.0, + "end": 2694.32, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 2694.32, + "end": 2694.48, + "probability": 1.0 + } + ] + }, + { + "id": 1038, + "text": "you should...", + "start": 2694.54, + "end": 2694.88, + "words": [ + { + "word": " you", + "start": 2694.54, + "end": 2694.58, + "probability": 0.99072265625 + }, + { + "word": " should...", + "start": 2694.58, + "end": 2694.88, + "probability": 0.853515625 + } + ] + }, + { + "id": 1039, + "text": "Really, you should just take that thing out back", + "start": 2695.52, + "end": 2697.64, + "words": [ + { + "word": " Really,", + "start": 2695.52, + "end": 2695.92, + "probability": 0.98046875 + }, + { + "word": " you", + "start": 2695.96, + "end": 2696.1, + "probability": 1.0 + }, + { + "word": " should", + "start": 2696.1, + "end": 2696.32, + "probability": 1.0 + }, + { + "word": " just", + "start": 2696.32, + "end": 2696.58, + "probability": 1.0 + }, + { + "word": " take", + "start": 2696.58, + "end": 2697.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 2697.04, + "end": 2697.16, + "probability": 0.9853515625 + }, + { + "word": " thing", + "start": 2697.16, + "end": 2697.34, + "probability": 1.0 + }, + { + "word": " out", + "start": 2697.34, + "end": 2697.44, + "probability": 1.0 + }, + { + "word": " back", + "start": 2697.44, + "end": 2697.64, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1040, + "text": "and office space it.", + "start": 2697.64, + "end": 2698.5, + "words": [ + { + "word": " and", + "start": 2697.64, + "end": 2697.86, + "probability": 0.99462890625 + }, + { + "word": " office", + "start": 2697.86, + "end": 2698.06, + "probability": 0.9736328125 + }, + { + "word": " space", + "start": 2698.06, + "end": 2698.3, + "probability": 0.99609375 + }, + { + "word": " it.", + "start": 2698.3, + "end": 2698.5, + "probability": 1.0 + } + ] + }, + { + "id": 1041, + "text": "It's just...", + "start": 2698.88, + "end": 2699.48, + "words": [ + { + "word": " It's", + "start": 2698.88, + "end": 2699.28, + "probability": 0.99609375 + }, + { + "word": " just...", + "start": 2699.28, + "end": 2699.48, + "probability": 0.9658203125 + } + ] + }, + { + "id": 1042, + "text": "It's no good.", + "start": 2699.48, + "end": 2700.06, + "words": [ + { + "word": " It's", + "start": 2699.48, + "end": 2699.72, + "probability": 0.998046875 + }, + { + "word": " no", + "start": 2699.72, + "end": 2699.82, + "probability": 1.0 + }, + { + "word": " good.", + "start": 2699.82, + "end": 2700.06, + "probability": 1.0 + } + ] + }, + { + "id": 1043, + "text": "But give us a call.", + "start": 2700.22, + "end": 2701.42, + "words": [ + { + "word": " But", + "start": 2700.22, + "end": 2700.62, + "probability": 0.9990234375 + }, + { + "word": " give", + "start": 2700.62, + "end": 2701.1, + "probability": 0.99169921875 + }, + { + "word": " us", + "start": 2701.1, + "end": 2701.26, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2701.26, + "end": 2701.28, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2701.28, + "end": 2701.42, + "probability": 1.0 + } + ] + }, + { + "id": 1044, + "text": "We're happy to help you out.", + "start": 2701.54, + "end": 2702.7, + "words": [ + { + "word": " We're", + "start": 2701.54, + "end": 2701.86, + "probability": 1.0 + }, + { + "word": " happy", + "start": 2701.86, + "end": 2702.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2702.04, + "end": 2702.22, + "probability": 1.0 + }, + { + "word": " help", + "start": 2702.22, + "end": 2702.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 2702.36, + "end": 2702.5, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2702.5, + "end": 2702.7, + "probability": 1.0 + } + ] + }, + { + "id": 1045, + "text": "Also, you should visit our Patreon.", + "start": 2703.5, + "end": 2705.3, + "words": [ + { + "word": " Also,", + "start": 2703.5, + "end": 2703.9, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2704.0, + "end": 2704.2, + "probability": 1.0 + }, + { + "word": " should", + "start": 2704.2, + "end": 2704.38, + "probability": 1.0 + }, + { + "word": " visit", + "start": 2704.38, + "end": 2704.82, + "probability": 1.0 + }, + { + "word": " our", + "start": 2704.82, + "end": 2704.98, + "probability": 1.0 + }, + { + "word": " Patreon.", + "start": 2704.98, + "end": 2705.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 1046, + "text": "It's page...", + "start": 2705.62, + "end": 2706.0, + "words": [ + { + "word": " It's", + "start": 2705.62, + "end": 2705.8, + "probability": 0.52099609375 + }, + { + "word": " page...", + "start": 2705.8, + "end": 2706.0, + "probability": 0.0516357421875 + } + ] + }, + { + "id": 1047, + "text": "It's patreon.com slash gurushow", + "start": 2706.52, + "end": 2708.42, + "words": [ + { + "word": " It's", + "start": 2706.52, + "end": 2706.92, + "probability": 0.88671875 + }, + { + "word": " patreon", + "start": 2706.92, + "end": 2707.18, + "probability": 0.9697265625 + }, + { + "word": ".com", + "start": 2707.18, + "end": 2707.68, + "probability": 1.0 + }, + { + "word": " slash", + "start": 2707.68, + "end": 2707.88, + "probability": 0.966796875 + }, + { + "word": " gurushow", + "start": 2707.88, + "end": 2708.42, + "probability": 0.88427734375 + } + ] + }, + { + "id": 1048, + "text": "and help us support the show.", + "start": 2708.42, + "end": 2710.56, + "words": [ + { + "word": " and", + "start": 2708.42, + "end": 2709.1, + "probability": 0.355712890625 + }, + { + "word": " help", + "start": 2709.1, + "end": 2709.78, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 2709.78, + "end": 2709.94, + "probability": 1.0 + }, + { + "word": " support", + "start": 2709.94, + "end": 2710.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2710.2, + "end": 2710.42, + "probability": 1.0 + }, + { + "word": " show.", + "start": 2710.42, + "end": 2710.56, + "probability": 1.0 + } + ] + }, + { + "id": 1049, + "text": "Thank you very much for listening once again", + "start": 2710.78, + "end": 2712.54, + "words": [ + { + "word": " Thank", + "start": 2710.78, + "end": 2711.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2711.18, + "end": 2711.34, + "probability": 1.0 + }, + { + "word": " very", + "start": 2711.34, + "end": 2711.46, + "probability": 1.0 + }, + { + "word": " much", + "start": 2711.46, + "end": 2711.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 2711.62, + "end": 2711.74, + "probability": 1.0 + }, + { + "word": " listening", + "start": 2711.74, + "end": 2711.96, + "probability": 1.0 + }, + { + "word": " once", + "start": 2711.96, + "end": 2712.32, + "probability": 0.84130859375 + }, + { + "word": " again", + "start": 2712.32, + "end": 2712.54, + "probability": 1.0 + } + ] + }, + { + "id": 1050, + "text": "to the Computer Guru Show.", + "start": 2712.54, + "end": 2713.2, + "words": [ + { + "word": " to", + "start": 2712.54, + "end": 2712.68, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2712.68, + "end": 2712.7, + "probability": 0.453857421875 + }, + { + "word": " Computer", + "start": 2712.7, + "end": 2712.9, + "probability": 0.9921875 + }, + { + "word": " Guru", + "start": 2712.9, + "end": 2713.04, + "probability": 0.96533203125 + }, + { + "word": " Show.", + "start": 2713.04, + "end": 2713.2, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1051, + "text": "We'll be back next week.", + "start": 2713.3, + "end": 2714.54, + "words": [ + { + "word": " We'll", + "start": 2713.3, + "end": 2713.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 2713.6, + "end": 2713.66, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 2713.66, + "end": 2713.9, + "probability": 0.9833984375 + }, + { + "word": " next", + "start": 2713.9, + "end": 2714.36, + "probability": 1.0 + }, + { + "word": " week.", + "start": 2714.36, + "end": 2714.54, + "probability": 1.0 + } + ] + }, + { + "id": 1052, + "text": "Thank you.", + "start": 2714.9, + "end": 2715.64, + "words": [ + { + "word": " Thank", + "start": 2714.9, + "end": 2714.92, + "probability": 0.1142578125 + }, + { + "word": " you.", + "start": 2714.92, + "end": 2715.64, + "probability": 1.0 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.srt new file mode 100644 index 0000000..a505119 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.srt @@ -0,0 +1,4212 @@ +1 +00:00:01,600 --> 00:00:03,000 +Computer running slow? + +2 +00:00:03,260 --> 00:00:06,460 +Has your machine somehow acquired a life of its own? + +3 +00:00:06,480 --> 00:00:06,940 +It's alive! + +4 +00:00:07,580 --> 00:00:11,140 +Or do you simply desire a deeper and more meaningful connection? + +5 +00:00:11,680 --> 00:00:13,700 +Be one with your operating system. + +6 +00:00:14,560 --> 00:00:19,460 +It's Arizona's computer guru, Mike Swanson, and his show starts now. + +7 +00:00:19,780 --> 00:00:24,380 +Listen in, chat in, and watch live streaming at gurushow.com. + +8 +00:00:24,620 --> 00:00:26,040 +Want your voice to be heard? + +9 +00:00:26,200 --> 00:00:28,000 +Call in with your questions and riddles. + +10 +00:00:28,000 --> 00:00:31,500 +The number is 520-790-2040. + +11 +00:00:31,740 --> 00:00:35,080 +This is the Computer Guru Show on AM1030. + +12 +00:00:35,880 --> 00:00:37,020 +KBOI, The Voice. + +13 +00:00:42,500 --> 00:00:49,280 +I got microphone problems going on over here. + +14 +00:00:49,380 --> 00:00:50,420 +What's going on with that? + +15 +00:00:51,700 --> 00:00:52,180 +Alright. + +16 +00:00:52,480 --> 00:00:53,420 +Want to try this one? + +17 +00:00:53,580 --> 00:00:54,740 +Ah, okay, there we go. + +18 +00:00:55,340 --> 00:00:55,820 +Alright! + +19 +00:00:55,960 --> 00:00:56,240 +Alright! + +20 +00:00:56,260 --> 00:00:57,700 +Now we know which microphone to use. + +21 +00:00:59,000 --> 00:00:59,880 +Ken's going to apologize. + +22 +00:01:00,760 --> 00:01:01,820 +I'm sorry, Mr. Guru. + +23 +00:01:03,240 --> 00:01:05,060 +Alright, this is the Computer Guru Show. + +24 +00:01:05,120 --> 00:01:05,540 +My name is Mike. + +25 +00:01:05,540 --> 00:01:09,800 +Here to deal with your technology problems and treat you like a person in the process. + +26 +00:01:09,880 --> 00:01:10,880 +That's what I do. + +27 +00:01:11,180 --> 00:01:12,200 +790-2040. + +28 +00:01:12,300 --> 00:01:15,680 +If you want to be a part of the show, that's 520-790-2040. + +29 +00:01:16,200 --> 00:01:19,620 +And we'll see what we can do to make all of your technology woes go away. + +30 +00:01:19,780 --> 00:01:23,340 +This is your one hour of free tech support that is for the masses. + +31 +00:01:23,720 --> 00:01:27,180 +So if you are looking for answers to questions, + +32 +00:01:28,000 --> 00:01:28,780 +that's what I'm here for. + +33 +00:01:29,660 --> 00:01:32,960 +So I heard at the office, + +34 +00:01:33,140 --> 00:01:34,920 +I stopped by the office on the way over here, + +35 +00:01:35,080 --> 00:01:39,320 +and I was told that apparently I've been talking about phones too much. + +36 +00:01:41,320 --> 00:01:45,220 +So somebody called in and said that I should stop talking about phones. + +37 +00:01:45,820 --> 00:01:47,680 +But it's your show. + +38 +00:01:48,220 --> 00:01:50,040 +Well, I know, but it is my show. + +39 +00:01:50,160 --> 00:01:51,180 +But at the same time, you know, + +40 +00:01:51,280 --> 00:01:54,980 +I want to make sure that the listeners know that I am listening. + +41 +00:01:55,520 --> 00:01:55,920 +Right? + +42 +00:01:57,000 --> 00:01:57,980 +So we're not going to talk about it. + +43 +00:01:58,000 --> 00:01:58,440 +We're going to talk about phones today. + +44 +00:01:58,640 --> 00:01:59,040 +Okay. + +45 +00:01:59,160 --> 00:02:00,860 +Even though I still have Verizon issues. + +46 +00:02:03,540 --> 00:02:04,600 +That'll be next week then. + +47 +00:02:05,040 --> 00:02:09,080 +I did have Verizon issues, but I switched. + +48 +00:02:09,300 --> 00:02:09,840 +You switched? + +49 +00:02:10,040 --> 00:02:10,680 +What did you switch to? + +50 +00:02:10,820 --> 00:02:11,220 +T-Mobile. + +51 +00:02:11,380 --> 00:02:11,780 +T-Mobile? + +52 +00:02:11,860 --> 00:02:12,020 +Okay. + +53 +00:02:12,100 --> 00:02:12,380 +All right. + +54 +00:02:12,400 --> 00:02:12,740 +That's it. + +55 +00:02:12,800 --> 00:02:13,700 +That's all we're talking about phones. + +56 +00:02:14,400 --> 00:02:14,940 +All right. + +57 +00:02:14,960 --> 00:02:17,420 +So now we're going to talk about viruses. + +58 +00:02:18,780 --> 00:02:26,420 +And we do one of these shows about once a year or so where it's time to explain how the viruses work. + +59 +00:02:26,500 --> 00:02:26,620 +Okay. + +60 +00:02:26,900 --> 00:02:27,300 +Okay. + +61 +00:02:27,580 --> 00:02:27,980 +Okay. + +62 +00:02:27,980 --> 00:02:27,980 + + +63 +00:02:27,980 --> 00:02:27,980 + + +64 +00:02:27,980 --> 00:02:27,980 + + +65 +00:02:27,980 --> 00:02:27,980 + + +66 +00:02:27,980 --> 00:02:27,980 + + +67 +00:02:27,980 --> 00:02:27,980 + + +68 +00:02:27,980 --> 00:02:27,980 + + +69 +00:02:27,980 --> 00:02:27,980 + + +70 +00:02:27,980 --> 00:02:27,980 + + +71 +00:02:27,980 --> 00:02:27,980 + + +72 +00:02:27,980 --> 00:02:27,980 + + +73 +00:02:27,980 --> 00:02:27,980 + + +74 +00:02:27,980 --> 00:02:27,980 + + +75 +00:02:27,980 --> 00:02:27,980 + + +76 +00:02:27,980 --> 00:02:27,980 + + +77 +00:02:27,980 --> 00:02:27,980 + + +78 +00:02:27,980 --> 00:02:27,980 + + +79 +00:02:28,000 --> 00:02:33,600 +Specifically what the motivation is because every so often I hear, and this is sort of a quote, + +80 +00:02:36,300 --> 00:02:38,020 +really, why do these people do this? + +81 +00:02:38,100 --> 00:02:44,860 +Are they just getting their jollies off is what I heard yesterday by writing these viruses. + +82 +00:02:45,640 --> 00:02:51,940 +And I will tell you right now that there may be some jolly involved, but not much at all. + +83 +00:02:52,240 --> 00:02:53,300 +Most of it's money. + +84 +00:02:54,160 --> 00:02:55,820 +Lots and lots of money. + +85 +00:02:56,760 --> 00:02:59,080 +Ridiculous amounts of money is really what it comes down to. + +86 +00:03:01,260 --> 00:03:05,460 +It's really, yeah, there's a lot of dollar signs. + +87 +00:03:06,320 --> 00:03:07,160 +How does that work? + +88 +00:03:07,320 --> 00:03:07,460 +All right. + +89 +00:03:07,500 --> 00:03:13,340 +So if you, most of the viruses these days tend to be the crypto locker infections. + +90 +00:03:14,480 --> 00:03:24,820 +They're the ones that are, you know, they take your stuff, they take your information and encrypt it while you're not looking. + +91 +00:03:25,160 --> 00:03:25,600 +Right. + +92 +00:03:25,600 --> 00:03:25,800 +Right. + +93 +00:03:25,800 --> 00:03:25,800 + + +94 +00:03:25,800 --> 00:03:25,800 + + +95 +00:03:25,800 --> 00:03:25,800 + + +96 +00:03:25,800 --> 00:03:25,800 + + +97 +00:03:25,800 --> 00:03:25,800 + + +98 +00:03:25,800 --> 00:03:25,800 + + +99 +00:03:25,800 --> 00:03:25,800 + + +100 +00:03:25,800 --> 00:03:25,800 + + +101 +00:03:25,800 --> 00:03:25,800 + + +102 +00:03:25,820 --> 00:03:34,520 +And, uh, you know, once, once you get that infection, it takes all of your documents, your pictures, and it, it makes it so you can't view it anymore. + +103 +00:03:34,700 --> 00:03:40,540 +And then when it gets done with all of that, it's pops up a message on your screen and says, Hey, you want your stuff back? + +104 +00:03:41,380 --> 00:03:43,040 +That'll be two bitcoins, please. + +105 +00:03:44,040 --> 00:03:50,900 +Or, uh, they'll have you get on the Walgreens and get a prepaid visa card where you can pay them with that. + +106 +00:03:52,060 --> 00:03:53,580 +And generally it's not cheap. + +107 +00:03:53,800 --> 00:03:55,700 +I would say on average, it's around. + +108 +00:03:55,820 --> 00:03:58,160 +$800 to get your data back. + +109 +00:04:01,020 --> 00:04:02,500 +And yeah, that's no joke. + +110 +00:04:04,160 --> 00:04:09,160 +Now to be, to credit these guys, they tend to honor their word business wise. + +111 +00:04:09,320 --> 00:04:09,760 +Right. + +112 +00:04:09,860 --> 00:04:20,480 +So if you happen to get the crypto locker infection and all of your data gets, gets taken away from you and you don't have any backups, you know, that every week we go, you need a backup. + +113 +00:04:20,640 --> 00:04:21,660 +You need to have a backup. + +114 +00:04:21,760 --> 00:04:22,760 +You must have backups. + +115 +00:04:23,620 --> 00:04:25,240 +Uh, so if you don't have a backup. + +116 +00:04:25,820 --> 00:04:27,740 +And then you're forced to pay the ransom. + +117 +00:04:28,440 --> 00:04:46,500 +Then, uh, I would say that most of the time, uh, with the experience that we've had with it, where we've directly paid people to get other people's data back, uh, about, um, I don't know, nine out of 10 times we get the data back. + +118 +00:04:47,360 --> 00:04:48,500 +It's not bad. + +119 +00:04:48,660 --> 00:04:49,340 +It's pretty good. + +120 +00:04:49,440 --> 00:04:49,800 +Yeah. + +121 +00:04:50,340 --> 00:04:55,640 +Uh, only one time, uh, have we paid and not. + +122 +00:04:55,820 --> 00:04:58,000 +Gotten the data back, which was kind of unfortunate. + +123 +00:04:59,660 --> 00:05:02,760 +Um, but this is why we, we harp on the whole backup thing. + +124 +00:05:02,900 --> 00:05:04,000 +You must have backups. + +125 +00:05:04,140 --> 00:05:05,020 +You need a backup. + +126 +00:05:05,520 --> 00:05:07,320 +That's just, that's just how it works. + +127 +00:05:07,980 --> 00:05:13,020 +I mean, in, in every aspect of your life, there's, there's a plan B, right? + +128 +00:05:13,140 --> 00:05:15,480 +And you need to have that with your computer as well. + +129 +00:05:15,600 --> 00:05:19,500 +So you either have a separate copy of the data or you synchronize to the cloud. + +130 +00:05:19,700 --> 00:05:22,120 +You synchronize to us over at computer guru. + +131 +00:05:23,080 --> 00:05:25,640 +Uh, we would love to make sure that your data. + +132 +00:05:25,820 --> 00:05:26,860 +Just does not go away. + +133 +00:05:27,800 --> 00:05:29,640 +Get me safe people backups. + +134 +00:05:30,680 --> 00:05:32,700 +So anyway, yes, there's lots of money involved. + +135 +00:05:32,920 --> 00:05:40,500 +In fact, there's, there's websites now that you can go out and it's effectively like, uh, it's almost like a franchise, right? + +136 +00:05:40,600 --> 00:05:43,920 +Where you give them, you give them $3,000, I think is the amount. + +137 +00:05:44,440 --> 00:05:52,860 +And, uh, they basically set you up with your own infection that you can send out to the masses, right? + +138 +00:05:52,920 --> 00:05:54,320 +With the, with this crypto locker stuff. + +139 +00:05:54,400 --> 00:05:55,340 +They set you up with the. + +140 +00:05:55,340 --> 00:06:00,400 +With a, a Bitcoin wallet and they, they tell you how it's like a class. + +141 +00:06:00,560 --> 00:06:18,520 +They teach you how to, you know, put it on the server and how to, to send it out to the, uh, via email usually, or put it onto websites so that you can get, you know, people, you can infect people and you get tech support for the, for basically ransoming people's software, their documents. + +142 +00:06:19,340 --> 00:06:23,440 +And so that's, that's how big this, this money is right now. + +143 +00:06:23,520 --> 00:06:24,500 +It's to the point where. + +144 +00:06:24,740 --> 00:06:25,220 +Yeah. + +145 +00:06:25,220 --> 00:06:25,320 +Yeah. + +146 +00:06:25,320 --> 00:06:25,320 + + +147 +00:06:25,320 --> 00:06:25,320 + + +148 +00:06:25,340 --> 00:06:29,380 +These people have enough money that they can just basically say, well, we're not going to ransom individuals anymore. + +149 +00:06:29,480 --> 00:06:31,320 +We're going to teach you how to ransom people. + +150 +00:06:32,360 --> 00:06:34,140 +And, uh, I don't know. + +151 +00:06:34,420 --> 00:06:36,680 +It's next to send me some sort of pyramid scheme, I'm sure. + +152 +00:06:36,800 --> 00:06:37,160 +Right. + +153 +00:06:37,280 --> 00:06:41,440 +But it's, these are the big viruses that are out there right now. + +154 +00:06:41,500 --> 00:06:43,420 +These are the ones that are the most dangerous, right? + +155 +00:06:43,480 --> 00:06:45,700 +Cause we hear people talking about all the time. + +156 +00:06:45,740 --> 00:06:51,060 +Uh, yesterday I was having a conversation with somebody and they're like, yeah, well, you know, we're not really all like concerned with people hacking in. + +157 +00:06:51,160 --> 00:06:53,420 +So we don't need this, you know, super fancy firewall. + +158 +00:06:55,340 --> 00:06:58,980 +And I was like, well, yeah, but that's not the part you're really worried about anyway. + +159 +00:06:59,320 --> 00:06:59,680 +Right. + +160 +00:06:59,780 --> 00:07:01,140 +You should be worried about it. + +161 +00:07:01,140 --> 00:07:07,760 +You should be worried more about email infections and email just needs to go away. + +162 +00:07:08,720 --> 00:07:17,100 +But, um, at the very least the zip file extension needs to go away just because so many people fall for it. + +163 +00:07:17,140 --> 00:07:17,940 +They get these infections. + +164 +00:07:18,080 --> 00:07:20,440 +They, you know, they get this message in their mail. + +165 +00:07:20,460 --> 00:07:24,600 +It says your, your package wasn't sent from UPS or, um. + +166 +00:07:25,800 --> 00:07:27,760 +Um, let's see, what are the other big ones? + +167 +00:07:27,980 --> 00:07:30,240 +Uh, you know, any of them off the top of your head? + +168 +00:07:30,300 --> 00:07:31,020 +Have you seen any of them? + +169 +00:07:31,240 --> 00:07:32,060 +No, I haven't. + +170 +00:07:32,060 --> 00:07:36,800 +I just, what was going through my mind is obviously this is very prevalent out here. + +171 +00:07:36,860 --> 00:07:40,800 +A lot of people pray on, or they would not be doing it. + +172 +00:07:40,920 --> 00:07:41,260 +Yeah. + +173 +00:07:41,300 --> 00:07:43,080 +I mean, there is, there is a lot of that. + +174 +00:07:43,440 --> 00:07:50,560 +You, and you have different sort of subcategories of bad people out there that are preying on different demographics. + +175 +00:07:52,260 --> 00:07:54,840 +Um, and those targeted phishing messages. + +176 +00:07:55,340 --> 00:07:59,380 +Are, are, you know, they're the ones that most people will fall for, right? + +177 +00:07:59,500 --> 00:08:02,380 +You're, there's a lot of ones that are like PayPal. + +178 +00:08:02,900 --> 00:08:08,780 +Like, you know, your PayPal account has been suspended or, uh, there's some really good ones from Chase. + +179 +00:08:08,980 --> 00:08:10,500 +I mean, they are convincing. + +180 +00:08:10,980 --> 00:08:11,700 +Western Union. + +181 +00:08:12,260 --> 00:08:14,100 +They don't do the Western Union as much anymore. + +182 +00:08:14,220 --> 00:08:14,680 +Not so much. + +183 +00:08:14,740 --> 00:08:19,160 +Uh, but the, the Chase ones right now are, wow, they're, they're convincing. + +184 +00:08:19,220 --> 00:08:24,580 +Cause I looked at one and I can, I can spot these things just immediately looking at them going, oh, that's, that's, that's. + +185 +00:08:24,580 --> 00:08:25,840 +That's not even real. + +186 +00:08:26,220 --> 00:08:28,460 +And I looked at it and I was just like, really? + +187 +00:08:28,880 --> 00:08:33,940 +You know, and there was, there was like a good five seconds where I was like, wow, this is legit. + +188 +00:08:34,460 --> 00:08:34,840 +Right. + +189 +00:08:34,960 --> 00:08:36,760 +And I was like, this is not even possible. + +190 +00:08:37,440 --> 00:08:44,560 +And, uh, upon, upon further inspection, I mean, yes, it was fake, but you couldn't tell by looking at it. + +191 +00:08:44,760 --> 00:08:46,880 +It was just, I knew it was fake by circumstance. + +192 +00:08:48,120 --> 00:08:53,800 +So there's some really, really good, uh, phishing emails that are out there that are trying to infect you. + +193 +00:08:54,640 --> 00:09:02,380 +Um, but a lot of them have to do with something like, you know, there's a package or, um, uh, right now they're doing a bunch of tax ones. + +194 +00:09:03,060 --> 00:09:06,840 +You know, like you're, uh, you're to collect your tax payment. + +195 +00:09:06,900 --> 00:09:09,740 +We need you to fill out this form or whatever. + +196 +00:09:10,320 --> 00:09:15,720 +And, uh, so just be, be careful, be careful about just if it's in a zip file at all. + +197 +00:09:17,180 --> 00:09:17,540 +Yeah. + +198 +00:09:17,700 --> 00:09:18,660 +Just don't even open it. + +199 +00:09:18,700 --> 00:09:19,180 +Delete it. + +200 +00:09:19,240 --> 00:09:20,260 +What about the rule of thumb? + +201 +00:09:20,520 --> 00:09:22,020 +If you don't recognize the sender? + +202 +00:09:22,500 --> 00:09:23,660 +Well, they're phishing this. + +203 +00:09:23,700 --> 00:09:24,560 +The, the sender. + +204 +00:09:24,580 --> 00:09:24,780 +The sender name. + +205 +00:09:24,940 --> 00:09:25,820 +A lot of times. + +206 +00:09:25,840 --> 00:09:29,540 +I mean, the sender name looks legit unless you, you know, do some investigation. + +207 +00:09:30,520 --> 00:09:37,920 +Um, but what it really comes down to is that, uh, you know, it's, it's about the type of file that they're sending you. + +208 +00:09:38,400 --> 00:09:50,220 +As an example, um, for most of the people we host email for bunches of people in town, um, and all over the world, actually, we host a lot of email accounts. + +209 +00:09:50,380 --> 00:09:54,420 +And for the majority of them by default, we just deny. + +210 +00:09:54,580 --> 00:09:57,740 +We just deny zip accounts or zip files just right out of the box. + +211 +00:09:57,860 --> 00:10:01,800 +Just don't even try because the zip file will never get there. + +212 +00:10:02,140 --> 00:10:03,220 +I'll just say good rule of thumb. + +213 +00:10:03,580 --> 00:10:06,320 +If there's an attachment, be suspicious. + +214 +00:10:06,800 --> 00:10:07,480 +I don't know. + +215 +00:10:07,480 --> 00:10:07,840 +Yeah. + +216 +00:10:08,180 --> 00:10:08,760 +That's me. + +217 +00:10:09,020 --> 00:10:12,140 +And that's, that's a very good thing to be. + +218 +00:10:12,400 --> 00:10:20,400 +Um, and, and luckily Outlook has fixed a lot of the problems that they used to have with, uh, auto opening attachments and infecting the machine and stuff like that. + +219 +00:10:20,840 --> 00:10:23,840 +But there are some things that we're going to talk about after the break. + +220 +00:10:24,580 --> 00:10:29,340 +Which is, uh, ways that we can make sure that you are very safe. + +221 +00:10:29,460 --> 00:10:34,280 +And as usual, this episode, this first segment brought to you by Perfection Auto Works. + +222 +00:10:34,680 --> 00:10:43,040 +If you want somebody who really takes the time to get invested in you, you, the customer, you should get on and see Mike Emery down at Perfection Auto Works. + +223 +00:10:43,220 --> 00:10:46,600 +Listen to the commercials this break because he's in there for contact information. + +224 +00:10:46,900 --> 00:10:48,300 +This is the Computer Guru Show. + +225 +00:10:48,420 --> 00:10:49,260 +We'll be right back. + +226 +00:10:50,240 --> 00:10:50,720 +Music. + +227 +00:10:56,460 --> 00:10:57,380 +Computer troubles? + +228 +00:10:57,640 --> 00:10:58,600 +Need some advice? + +229 +00:10:58,900 --> 00:10:59,620 +Call in now. + +230 +00:10:59,800 --> 00:11:02,040 +Mike Swanson will be back after these messages. + +231 +00:11:02,340 --> 00:11:03,660 +The Computer Guru Show. + +232 +00:11:03,860 --> 00:11:04,880 +AM 1030. + +233 +00:11:05,160 --> 00:11:05,720 +KVOY. + +234 +00:11:05,980 --> 00:11:06,640 +The Voice. + +235 +00:11:09,880 --> 00:11:14,380 +Your technology guru, Mike Swanson, is answering all your questions one by one. + +236 +00:11:14,420 --> 00:11:15,040 +Yes, science. + +237 +00:11:15,280 --> 00:11:16,400 +So chime in with yours. + +238 +00:11:16,640 --> 00:11:18,740 +The website is gurushow.com. + +239 +00:11:18,900 --> 00:11:21,120 +Tune in, click in, and kick back. + +240 +00:11:21,340 --> 00:11:23,280 +This is the Computer Guru Show. + +241 +00:11:26,460 --> 00:11:28,280 +If you'd like to be part of the show, give us a call. + +242 +00:11:28,520 --> 00:11:29,600 +790-2040. + +243 +00:11:29,680 --> 00:11:31,520 +That's 520-790-2040. + +244 +00:11:31,580 --> 00:11:33,860 +Or you can join us in the chat room at gurushow.com. + +245 +00:11:33,980 --> 00:11:38,500 +If you go to the Listen Live link, there is absolutely a chat room that you can participate in. + +246 +00:11:38,680 --> 00:11:43,760 +One of the questions in there was asking about if we could solder something back onto a motherboard that got broken off. + +247 +00:11:44,420 --> 00:11:45,860 +And the answer is yes. + +248 +00:11:47,500 --> 00:11:51,060 +And just so I don't have to type while I'm in the middle of talking here. + +249 +00:11:52,040 --> 00:11:53,360 +By the description given. + +250 +00:11:53,960 --> 00:11:54,560 +Which is? + +251 +00:11:54,560 --> 00:11:57,740 +That it looks like all the traces are probably okay. + +252 +00:11:57,860 --> 00:11:59,260 +Yeah, I can probably fix that for you. + +253 +00:11:59,280 --> 00:11:59,860 +Bring it on down. + +254 +00:12:00,360 --> 00:12:02,180 +We're open until 5 o'clock today. + +255 +00:12:02,920 --> 00:12:05,900 +And 9 to 6 Monday through Friday. + +256 +00:12:06,560 --> 00:12:07,460 +So once again, give us a call. + +257 +00:12:07,520 --> 00:12:10,700 +790-2040 if you'd like to be part of the show and get some free tech support on. + +258 +00:12:13,040 --> 00:12:13,680 +Now, infections. + +259 +00:12:15,160 --> 00:12:19,320 +There's a lot of people that switch over to the Mac platform because they're trying to avoid the infections. + +260 +00:12:21,340 --> 00:12:23,580 +And I'm glad that works for some people for right now. + +261 +00:12:24,040 --> 00:12:24,540 +And the chat. + +262 +00:12:24,540 --> 00:12:26,880 +This is like, you know, I have a Mac in front of me right now. + +263 +00:12:27,500 --> 00:12:28,180 +And a PC. + +264 +00:12:28,380 --> 00:12:34,480 +But you can't run far when it comes to that stuff. + +265 +00:12:34,540 --> 00:12:39,820 +There's new infections coming out every day for Mac, which is kind of unfortunate. + +266 +00:12:41,700 --> 00:12:43,420 +But they attack in a different way. + +267 +00:12:43,480 --> 00:12:46,300 +They attack the weak link, which is you, the user. + +268 +00:12:47,440 --> 00:12:54,320 +So much like with those phishing emails where people basically click on a link. + +269 +00:12:54,540 --> 00:12:57,940 +Or open a program in order to install it. + +270 +00:12:58,460 --> 00:13:00,100 +Same thing is happening on the Mac now. + +271 +00:13:00,740 --> 00:13:05,940 +Because instead of trying to hack the operating system, which for a long time was really where they were going. + +272 +00:13:06,000 --> 00:13:08,840 +They were exploiting the weaknesses of the operating system itself. + +273 +00:13:10,320 --> 00:13:13,360 +Once they've gotten to the point where that just doesn't work anymore. + +274 +00:13:13,560 --> 00:13:15,300 +Or it's not reliable enough. + +275 +00:13:15,340 --> 00:13:17,740 +Or it doesn't generate enough income for them. + +276 +00:13:17,980 --> 00:13:20,020 +Because they're not getting enough people. + +277 +00:13:20,360 --> 00:13:21,560 +They had to switch tactics. + +278 +00:13:21,960 --> 00:13:24,520 +And so a couple of different tactics. + +279 +00:13:24,540 --> 00:13:30,200 +That they use is they basically emotionally fool you. + +280 +00:13:30,960 --> 00:13:35,660 +So they send you an email that for whatever reason. + +281 +00:13:35,720 --> 00:13:39,600 +Whatever the reasoning is within that email that makes you click on it. + +282 +00:13:39,660 --> 00:13:40,260 +You'll click on it. + +283 +00:13:40,320 --> 00:13:41,000 +You'll open the application. + +284 +00:13:41,920 --> 00:13:43,340 +And suddenly you're infected. + +285 +00:13:43,660 --> 00:13:45,640 +And a lot of times it's so fast. + +286 +00:13:45,820 --> 00:13:48,120 +And it doesn't do anything overt. + +287 +00:13:48,360 --> 00:13:49,880 +You just click on it and nothing happens. + +288 +00:13:50,540 --> 00:13:51,340 +It's already done. + +289 +00:13:51,720 --> 00:13:53,560 +It's already done what it needs to do. + +290 +00:13:54,540 --> 00:13:56,020 +It's just instant. + +291 +00:13:57,540 --> 00:13:59,180 +And basically then it waits. + +292 +00:13:59,360 --> 00:14:01,020 +Now if it's one of those CryptoLocker ones. + +293 +00:14:01,180 --> 00:14:02,020 +It's in the background. + +294 +00:14:02,240 --> 00:14:02,520 +It is. + +295 +00:14:02,820 --> 00:14:04,440 +It's encrypting all of your documents. + +296 +00:14:04,980 --> 00:14:06,240 +You don't even know it. + +297 +00:14:07,620 --> 00:14:12,420 +So if you notice that your machine is just unreasonably slow after opening an email. + +298 +00:14:13,440 --> 00:14:16,580 +Just really, really slow for no apparent reason. + +299 +00:14:16,640 --> 00:14:16,860 +Right. + +300 +00:14:16,920 --> 00:14:18,280 +It used to be run nice and fast. + +301 +00:14:18,440 --> 00:14:21,140 +And then suddenly there's this huge delay. + +302 +00:14:21,660 --> 00:14:22,060 +Yeah. + +303 +00:14:22,140 --> 00:14:23,500 +You need to turn that computer off. + +304 +00:14:23,860 --> 00:14:24,260 +Right. + +305 +00:14:24,540 --> 00:14:26,000 +And bring it down immediately. + +306 +00:14:26,660 --> 00:14:27,920 +Get down to the guru. + +307 +00:14:28,140 --> 00:14:28,460 +That's right. + +308 +00:14:29,060 --> 00:14:31,960 +But that way we can stop it. + +309 +00:14:32,040 --> 00:14:35,300 +Because the encryption process itself is resource intensive. + +310 +00:14:36,140 --> 00:14:40,060 +It takes a lot of sort of horsepower to make that happen. + +311 +00:14:40,660 --> 00:14:47,760 +So it's going to be sucking all of the performance out of your machine while it's trying to do this encryption in the background. + +312 +00:14:48,400 --> 00:14:49,520 +So yeah. + +313 +00:14:49,600 --> 00:14:52,300 +If your machine is just real slow. + +314 +00:14:53,400 --> 00:14:54,520 +Like unreasonably. + +315 +00:14:55,620 --> 00:14:56,400 +Uncharacteristically slow. + +316 +00:14:56,740 --> 00:14:57,460 +Then yeah. + +317 +00:14:57,540 --> 00:14:58,580 +You've got a problem. + +318 +00:14:59,040 --> 00:15:00,660 +And even if it isn't an infection. + +319 +00:15:01,100 --> 00:15:01,520 +Right. + +320 +00:15:01,600 --> 00:15:04,020 +The only other time that your computer is really going to be like that. + +321 +00:15:04,120 --> 00:15:07,600 +Where it's just very, very slow. + +322 +00:15:07,760 --> 00:15:14,580 +Then you're probably have a failing hard drive or you've got a bad RAM chip or something that needs to be looked at anyway. + +323 +00:15:15,320 --> 00:15:19,700 +So if you notice that stuff, then it's time to bring it in. + +324 +00:15:20,540 --> 00:15:23,680 +Now, one of the other ways that you can avoid this is that. + +325 +00:15:24,560 --> 00:15:25,820 +Instead of going the Mac route. + +326 +00:15:26,000 --> 00:15:26,140 +Right. + +327 +00:15:26,240 --> 00:15:28,180 +If you want to pay four times too much for a machine, that's cool. + +328 +00:15:28,420 --> 00:15:28,940 +All right. + +329 +00:15:29,000 --> 00:15:32,100 +If you've got the money, you can absolutely do that. + +330 +00:15:32,240 --> 00:15:34,180 +Just know that you're not completely safe. + +331 +00:15:34,620 --> 00:15:39,300 +And you still have to have some type of skepticism about the things that you click on. + +332 +00:15:39,360 --> 00:15:41,780 +About the places that you go. + +333 +00:15:42,880 --> 00:15:45,740 +And make sure that you keep yourself safe. + +334 +00:15:45,880 --> 00:15:46,840 +And have backups. + +335 +00:15:47,540 --> 00:15:48,820 +Always have backups. + +336 +00:15:49,640 --> 00:15:51,000 +It's like every break I have to say it. + +337 +00:15:51,440 --> 00:15:51,800 +Um. + +338 +00:15:53,080 --> 00:15:54,340 +But there are some things that you can do. + +339 +00:15:54,340 --> 00:15:54,940 +On the PC side. + +340 +00:15:55,060 --> 00:15:56,860 +To really straighten that out. + +341 +00:15:57,300 --> 00:15:57,300 + + +342 +00:15:58,560 --> 00:15:59,760 +PCs have a weakness. + +343 +00:16:00,040 --> 00:16:00,420 +Right. + +344 +00:16:00,500 --> 00:16:01,920 +Everybody's like, well, they're so vulnerable. + +345 +00:16:02,440 --> 00:16:05,660 +And the reason that it is, is because back in Vista. + +346 +00:16:05,720 --> 00:16:08,220 +When they decided to not make your machine vulnerable. + +347 +00:16:08,620 --> 00:16:09,480 +Everybody complained. + +348 +00:16:10,160 --> 00:16:10,640 +Right. + +349 +00:16:10,680 --> 00:16:12,220 +They were like, oh, I don't want to have to click. + +350 +00:16:12,260 --> 00:16:12,520 +Okay. + +351 +00:16:12,580 --> 00:16:13,220 +All the time. + +352 +00:16:13,220 --> 00:16:18,560 +We're typing a password every time something dangerous could potentially be happening. + +353 +00:16:18,700 --> 00:16:23,340 +Because it was popping up that there was even a famous sort of commercial that Mac did. + +354 +00:16:23,500 --> 00:16:24,220 +Based on. + +355 +00:16:24,340 --> 00:16:26,080 +That the Mac PC commercials. + +356 +00:16:26,760 --> 00:16:28,520 +Where it was like, are you sure you want to do that? + +357 +00:16:29,020 --> 00:16:29,380 +Yes. + +358 +00:16:29,860 --> 00:16:30,360 +All right. + +359 +00:16:31,440 --> 00:16:34,260 +That is the mechanism that keeps you safe. + +360 +00:16:34,840 --> 00:16:39,980 +And the problem is, is that now Microsoft sort of back that off a little bit. + +361 +00:16:40,260 --> 00:16:40,620 +Right. + +362 +00:16:40,720 --> 00:16:42,100 +For Windows 7. + +363 +00:16:42,260 --> 00:16:44,220 +Just to kind of make people shut up. + +364 +00:16:44,800 --> 00:16:48,620 +They were complaining so much about, well, why do I always have to click on this thing? + +365 +00:16:48,680 --> 00:16:49,740 +It makes the screen flash. + +366 +00:16:49,940 --> 00:16:51,300 +And then I have to click on yes. + +367 +00:16:52,260 --> 00:16:54,320 +And the answer is you don't have to click. + +368 +00:16:54,320 --> 00:16:54,580 +On yes. + +369 +00:16:55,860 --> 00:16:56,220 +Really. + +370 +00:16:56,860 --> 00:17:05,660 +If you use a Mac and you're very familiar with this already, then which is anytime you try to install a piece of software, it pops up a box and says, hey, what's your password? + +371 +00:17:06,700 --> 00:17:07,060 +Right. + +372 +00:17:07,140 --> 00:17:07,680 +It's not just clicking. + +373 +00:17:07,760 --> 00:17:07,940 +Yes. + +374 +00:17:08,000 --> 00:17:10,800 +You actually have to type a password in in order to make it happen. + +375 +00:17:12,020 --> 00:17:13,780 +And you can do that in Windows. + +376 +00:17:14,100 --> 00:17:16,520 +There's some settings that you can. + +377 +00:17:17,780 --> 00:17:23,640 +That you can put in the machine to make it behave just like a Mac when it comes to how you install software. + +378 +00:17:23,640 --> 00:17:24,680 +Which includes infections. + +379 +00:17:25,400 --> 00:17:31,480 +So rather than, you know, you're just surfing around and then suddenly you get a password box that says, hey, enter your password. + +380 +00:17:31,700 --> 00:17:34,040 +And all you're doing is surfing the web or checking your email. + +381 +00:17:35,640 --> 00:17:37,020 +It shouldn't be asking for that. + +382 +00:17:37,160 --> 00:17:41,500 +That should be a giant red flag that says, oh, something bad's happening here. + +383 +00:17:41,940 --> 00:17:45,340 +And and you have the opportunity to stop it at that moment. + +384 +00:17:46,540 --> 00:17:49,760 +So we have a couple of different options for that down at Computer Guru. + +385 +00:17:50,080 --> 00:17:50,480 +Right. + +386 +00:17:50,540 --> 00:17:53,500 +So we can we can basically you can sign up for the GPS package. + +387 +00:17:53,500 --> 00:17:58,540 +It's Guru Protection Services, which basically we lock down your machine. + +388 +00:17:59,100 --> 00:17:59,560 +Right. + +389 +00:17:59,720 --> 00:18:00,980 +It's $30 a month. + +390 +00:18:01,140 --> 00:18:06,160 +You get antivirus and anti malware included and we lock your machine down. + +391 +00:18:07,020 --> 00:18:08,280 +You're not going to get any infections. + +392 +00:18:08,400 --> 00:18:09,860 +And if you do, I'll fix it. + +393 +00:18:10,200 --> 00:18:11,380 +That's just how it works. + +394 +00:18:11,640 --> 00:18:12,100 +Right. + +395 +00:18:12,200 --> 00:18:16,100 +I am confident enough to say that I can prevent you from getting an infection. + +396 +00:18:16,240 --> 00:18:21,560 +And if you get one, I will solve that problem because you're not getting one. + +397 +00:18:21,660 --> 00:18:23,040 +That's just how it works. + +398 +00:18:23,760 --> 00:18:27,540 +So on my machine, as an example, my PC, I use all the time. + +399 +00:18:27,740 --> 00:18:29,800 +I haven't had antivirus on that thing in three years. + +400 +00:18:30,520 --> 00:18:31,240 +Zero infections. + +401 +00:18:31,320 --> 00:18:32,640 +And I go all kinds of places. + +402 +00:18:32,680 --> 00:18:37,660 +I shouldn't because I'm following you guys around as far as, you know, I went to this website and got an infection. + +403 +00:18:37,800 --> 00:18:38,680 +Oh, yeah, let me try it out. + +404 +00:18:39,300 --> 00:18:40,480 +I want to see what happens. + +405 +00:18:41,160 --> 00:18:44,200 +So there there are ways to protect yourself. + +406 +00:18:44,500 --> 00:18:47,020 +There are ways to keep yourself from getting an infection. + +407 +00:18:47,500 --> 00:18:53,060 +And if you've got especially if you've got like kids, right, that are doing the most dangerous. + +408 +00:18:53,060 --> 00:18:56,280 +Thing in the world, which is searching for song lyrics. + +409 +00:18:57,500 --> 00:18:59,840 +Yeah, that is the number one way to get an infection. + +410 +00:18:59,960 --> 00:19:06,640 +By the way, if you are looking for the lyrics to a song, chances are you're infected already. + +411 +00:19:07,200 --> 00:19:08,660 +It's it's that dangerous. + +412 +00:19:09,500 --> 00:19:15,660 +But if you've got kids, it's great because you can set an account up for the kids and completely lock that account down. + +413 +00:19:15,860 --> 00:19:16,260 +Right? + +414 +00:19:16,340 --> 00:19:20,720 +You're not you're not saying, well, you can't go to certain places or you're not saying that you're not. + +415 +00:19:20,760 --> 00:19:22,660 +You don't have to be 1984 with them. + +416 +00:19:23,060 --> 00:19:29,120 +You have to be overly Orwellian, but you can make it so that no matter what they do, they're not going to infect the computer. + +417 +00:19:30,580 --> 00:19:32,400 +And that's that's a pretty good deal. + +418 +00:19:32,480 --> 00:19:37,380 +So we either offer it as a monthly service or we do it as a one time. + +419 +00:19:37,620 --> 00:19:38,140 +All right. + +420 +00:19:38,200 --> 00:19:40,060 +It's just you want to do the one time thing. + +421 +00:19:40,160 --> 00:19:45,400 +It's 300 bucks and I'll make sure that you never get an infection again on that computer. + +422 +00:19:46,700 --> 00:19:49,860 +So if you're interested in that type of stuff, give me a call. + +423 +00:19:50,880 --> 00:19:52,160 +You can either call me here at the show. + +424 +00:19:52,520 --> 00:19:52,880 +790. + +425 +00:19:52,880 --> 00:19:54,960 +2040 or down shop 304. + +426 +00:19:55,160 --> 00:19:55,520 +8300. + +427 +00:19:56,400 --> 00:19:57,220 +Howard's down there today. + +428 +00:19:57,300 --> 00:19:59,060 +He'd be happy to talk with you about it if you want to. + +429 +00:19:59,260 --> 00:20:01,760 +I'm sure he just loves the extra phone call. + +430 +00:20:01,900 --> 00:20:06,400 +So 304 8300 if you want to if you want to irritate him, get ready. + +431 +00:20:06,500 --> 00:20:06,740 +Howard. + +432 +00:20:06,980 --> 00:20:10,460 +Yeah, he's just he wants to, I don't know, get things done. + +433 +00:20:10,560 --> 00:20:13,480 +And then the phone's ringing and I think he's there by himself today. + +434 +00:20:13,640 --> 00:20:17,880 +So yeah, he's the I'm sure he's going to love that. + +435 +00:20:20,120 --> 00:20:21,220 +Let's see chat room stuff. + +436 +00:20:21,800 --> 00:20:22,300 +We're going to. + +437 +00:20:22,300 --> 00:20:24,800 +Oh, yeah, we're talking about song lyrics in there. + +438 +00:20:26,400 --> 00:20:30,240 +I know what you should do is if you're really looking for the song lyrics, listen to the song. + +439 +00:20:30,500 --> 00:20:31,220 +There you go. + +440 +00:20:33,080 --> 00:20:36,100 +No, actually, there's there's some ways there's a couple of places that you can go. + +441 +00:20:36,140 --> 00:20:40,100 +There are like two different easy lyrics is one of them. + +442 +00:20:41,180 --> 00:20:42,480 +Easy lyrics is a good. + +443 +00:20:43,020 --> 00:20:49,080 +Okay site to go to now they have advertising on their site, which is where most of these infections come from. + +444 +00:20:50,260 --> 00:20:51,940 +And a lot of people just don't understand. + +445 +00:20:51,940 --> 00:20:52,620 +How that works. + +446 +00:20:52,760 --> 00:21:00,560 +But basically, it's let's imagine that all the websites are like individual properties and on some of these properties. + +447 +00:21:00,660 --> 00:21:08,480 +They have these big giant billboards on them and they hire another company to come and put things on that billboard. + +448 +00:21:08,580 --> 00:21:14,260 +And so the property managers themselves don't necessarily have any control over the advertising that's happening there. + +449 +00:21:14,400 --> 00:21:18,260 +They're just saying this space for rent and you go ahead and manage that. + +450 +00:21:18,500 --> 00:21:21,500 +So the ad brokers will go out and. + +451 +00:21:21,940 --> 00:21:24,920 +Find advertisers and sometimes those are those infectious people. + +452 +00:21:25,080 --> 00:21:27,120 +I had the people that are causing infections. + +453 +00:21:27,200 --> 00:21:29,140 +So they just buy legitimate advertising. + +454 +00:21:29,340 --> 00:21:43,260 +There was an instance where they heavily invested in PBS and MSNBC and basically millions of people got infected from the PBS website because of an ad banner that was on the website. + +455 +00:21:43,400 --> 00:21:44,780 +Now wasn't PBS's fault. + +456 +00:21:44,860 --> 00:21:46,580 +They don't have any control over the advertising. + +457 +00:21:47,240 --> 00:21:50,960 +But for a while there PBS was a dangerous place to go. + +458 +00:21:50,960 --> 00:21:53,600 +Until they figured out how to get rid of that ad banner. + +459 +00:21:54,400 --> 00:21:55,400 +So no bueno. + +460 +00:21:55,600 --> 00:21:56,000 +Yeah. + +461 +00:21:56,080 --> 00:21:58,320 +So it was it was bad news. + +462 +00:21:58,700 --> 00:22:04,280 +They should have done a whole episode of Sesame Street about, you know, viruses and infections and stuff. + +463 +00:22:05,920 --> 00:22:07,500 +That's how you know the times are changing, man. + +464 +00:22:07,640 --> 00:22:08,080 +All right. + +465 +00:22:08,100 --> 00:22:09,080 +Let's go ahead and take a quick break. + +466 +00:22:09,140 --> 00:22:17,280 +And when we come back, we're going to talk more about ways that you can make your computer go faster and keep yourself safe today in the Internet age. + +467 +00:22:17,320 --> 00:22:18,260 +This is Computer Guru Show. + +468 +00:22:18,340 --> 00:22:18,920 +We'll be right back. + +469 +00:22:31,780 --> 00:22:35,920 +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. + +470 +00:22:36,220 --> 00:22:39,780 +Join the chat right now at gurushow.com or call in. + +471 +00:22:39,860 --> 00:22:43,340 +This is the Computer Guru Show on KVOY, The Voice. + +472 +00:22:46,360 --> 00:22:49,420 +Mike Swanson, your computer guru, is just a click away. + +473 +00:22:49,620 --> 00:22:50,540 +Listen and watch. + +474 +00:22:50,540 --> 00:22:51,780 +Watch at gurushow.com. + +475 +00:22:52,180 --> 00:22:55,740 +This is the Computer Guru Show on KVOY, The Voice. + +476 +00:22:58,540 --> 00:23:00,080 +Welcome back to the Computer Guru Show. + +477 +00:23:00,120 --> 00:23:00,560 +My name is Mike. + +478 +00:23:00,580 --> 00:23:03,860 +Here to do what your technology needs and treat you like a person in the process. + +479 +00:23:05,740 --> 00:23:06,420 +790-2040. + +480 +00:23:06,440 --> 00:23:07,940 +That's 520-790-2040. + +481 +00:23:07,960 --> 00:23:10,180 +If you'd like to be part of the show, let's talk to Fernando. + +482 +00:23:11,020 --> 00:23:11,520 +Hey, Fernando. + +483 +00:23:11,600 --> 00:23:11,900 +How are you doing? + +484 +00:23:12,620 --> 00:23:12,960 +Hi. + +485 +00:23:13,000 --> 00:23:13,780 +I'm doing pretty good. + +486 +00:23:13,840 --> 00:23:14,220 +Thank you. + +487 +00:23:14,300 --> 00:23:15,720 +So a couple of things. + +488 +00:23:16,020 --> 00:23:20,520 +I have a we have wireless modem, you know, in our office. + +489 +00:23:20,540 --> 00:23:29,120 +And my computer seems the only one that sometimes will turn it on and there's no connection, + +490 +00:23:29,340 --> 00:23:30,060 +internet connection. + +491 +00:23:30,340 --> 00:23:32,200 +Everybody else is fine except me. + +492 +00:23:32,440 --> 00:23:37,500 +And so what we have to do is we have to turn off the modem, let it sit for a while, + +493 +00:23:37,640 --> 00:23:40,960 +and then turn it back on and then I'm connected again. + +494 +00:23:41,300 --> 00:23:44,100 +What can I do to kind of resolve that issue? + +495 +00:23:44,680 --> 00:23:49,280 +And the other question that I had, I caught the end part of the viruses + +496 +00:23:49,840 --> 00:23:50,520 +and how can I solve that issue? + +497 +00:23:50,520 --> 00:23:59,040 +Now, you guys can go ahead and guarantee that, I guess, install something that would prevent viruses + +498 +00:23:59,040 --> 00:24:00,900 +from getting into your computer. + +499 +00:24:01,480 --> 00:24:03,220 +Yeah, and it's not actually an install. + +500 +00:24:03,500 --> 00:24:08,200 +Well, I mean, it's sort of an install, but it's mostly a we prevent installation. + +501 +00:24:08,920 --> 00:24:09,480 +Okay. + +502 +00:24:09,580 --> 00:24:16,380 +So as far as the virus stuff is concerned, we put some settings on the computer that disallows execution + +503 +00:24:17,100 --> 00:24:20,500 +of any program outside of where we tell it. + +504 +00:24:20,500 --> 00:24:20,500 + + +505 +00:24:20,520 --> 00:24:21,080 +It's okay. + +506 +00:24:21,880 --> 00:24:22,360 +Okay. + +507 +00:24:22,940 --> 00:24:28,980 +So there is some discomfort if you're one of those users that likes to install lots of software. + +508 +00:24:29,260 --> 00:24:34,480 +However, if you're one of those users where you like the way your computer is right now + +509 +00:24:34,480 --> 00:24:40,280 +and you're okay with it not changing, then that's an excellent way for you to make sure + +510 +00:24:40,280 --> 00:24:41,560 +that you don't get any type of infection. + +511 +00:24:41,800 --> 00:24:43,200 +Okay, and that's me right there. + +512 +00:24:43,360 --> 00:24:48,480 +I don't really like to install apps or anything like that on my computer anyway, so. + +513 +00:24:48,900 --> 00:24:49,380 +Good. + +514 +00:24:49,380 --> 00:24:52,260 +But you're exactly the person I need to talk to you for that, then. + +515 +00:24:52,780 --> 00:24:54,920 +Okay, and where are you guys located? + +516 +00:24:55,340 --> 00:24:57,040 +We're at 510 East Fort Lowell. + +517 +00:24:57,700 --> 00:24:58,500 +Okay, 510. + +518 +00:24:58,580 --> 00:24:59,480 +That's first in Fort Lowell. + +519 +00:24:59,580 --> 00:25:03,560 +So tell me more about your computer, though, as far as the Wi-Fi stuff is concerned. + +520 +00:25:03,740 --> 00:25:10,800 +And it's happened with several of the computers that I've had, but what happens is that, you know, + +521 +00:25:10,880 --> 00:25:13,540 +I turn it off every evening. + +522 +00:25:13,900 --> 00:25:15,280 +I didn't used to do that. + +523 +00:25:15,340 --> 00:25:16,000 +I would leave it on. + +524 +00:25:16,280 --> 00:25:19,360 +But I just started turning off the computer. + +525 +00:25:19,380 --> 00:25:29,560 +And so sometimes when we turn it back on, what happens is that it'll say that it's not connected into the website. + +526 +00:25:29,680 --> 00:25:31,040 +There's no Internet connection. + +527 +00:25:31,360 --> 00:25:40,540 +So then I have to go over there and shut the modem off and turn everything off, basically, for, you know, a couple of minutes. + +528 +00:25:40,660 --> 00:25:43,700 +Click it back on, and then there it is. + +529 +00:25:43,840 --> 00:25:47,000 +And you're saying that while yours is unable to connect, other computers are? + +530 +00:25:47,300 --> 00:25:48,180 +Are, yes. + +531 +00:25:48,220 --> 00:25:48,680 +Okay. + +532 +00:25:49,380 --> 00:25:51,500 +And what kind of antivirus do you have on your computer right now? + +533 +00:25:52,720 --> 00:25:53,160 +Norton. + +534 +00:25:53,520 --> 00:25:53,960 +Yeah. + +535 +00:25:56,080 --> 00:25:57,220 +That's, yeah, baby. + +536 +00:25:57,220 --> 00:25:58,780 +Well, see, that was happening before anyway. + +537 +00:25:59,500 --> 00:26:02,400 +Yeah, well, still, that's not helping your problem at all. + +538 +00:26:02,600 --> 00:26:02,920 +Okay. + +539 +00:26:03,380 --> 00:26:11,380 +So I would say first thing I would do is, especially if it's the Norton Internet Security, is that's got to go. + +540 +00:26:12,240 --> 00:26:12,960 +Oh, okay. + +541 +00:26:13,100 --> 00:26:13,320 +All right. + +542 +00:26:13,360 --> 00:26:14,100 +We like antivirus. + +543 +00:26:14,100 --> 00:26:14,900 +It's just antivirus. + +544 +00:26:15,020 --> 00:26:17,140 +We don't like antivirus that does anything else. + +545 +00:26:17,160 --> 00:26:17,380 +Okay. + +546 +00:26:17,380 --> 00:26:19,320 +As far as we don't like it being a firewall. + +547 +00:26:19,380 --> 00:26:25,440 +Not a big fan of it, you know, basically trying to dominate your online presence. + +548 +00:26:25,660 --> 00:26:28,040 +Just be antivirus and be good antivirus. + +549 +00:26:28,120 --> 00:26:29,480 +That's really the criteria. + +550 +00:26:30,240 --> 00:26:30,720 +Uh-huh. + +551 +00:26:31,760 --> 00:26:33,340 +Is McAfee a good one? + +552 +00:26:33,440 --> 00:26:33,680 +Nope. + +553 +00:26:33,880 --> 00:26:34,820 +No, it's not. + +554 +00:26:35,060 --> 00:26:41,340 +McAfee and Norton both are, basically, kill it with fire. + +555 +00:26:41,480 --> 00:26:42,000 +Right? + +556 +00:26:42,120 --> 00:26:42,380 +Okay. + +557 +00:26:42,380 --> 00:26:45,560 +We just, we don't like either of those. + +558 +00:26:45,980 --> 00:26:46,500 +Okay. + +559 +00:26:46,660 --> 00:26:49,360 +McAfee's problem is that they have just miserable detection. + +560 +00:26:49,360 --> 00:26:49,360 + + +561 +00:26:49,360 --> 00:26:49,360 + + +562 +00:26:49,360 --> 00:26:49,360 + + +563 +00:26:49,380 --> 00:26:49,700 +Okay. + +564 +00:26:50,360 --> 00:26:50,360 + + +565 +00:26:50,500 --> 00:27:02,540 +They are a decent antivirus when they are being just antivirus, but they're slow as far as being able to catch infections while they're still relevant. + +566 +00:27:03,000 --> 00:27:03,420 +Right. + +567 +00:27:03,640 --> 00:27:04,280 +Now- + +568 +00:27:04,280 --> 00:27:08,920 +Well, that's what I didn't understand because if I had these, you know, why were they not working, you know? + +569 +00:27:09,020 --> 00:27:10,720 +So that you answered my question there. + +570 +00:27:10,900 --> 00:27:15,760 +Now, Norton is very good at basically first-line defense. + +571 +00:27:16,040 --> 00:27:16,540 +Right? + +572 +00:27:16,620 --> 00:27:18,900 +They catch those infections quick. + +573 +00:27:19,400 --> 00:27:28,200 +So as soon as something's out in the wild within 48 to 72 hours, they generally have something out there for it that's been pushed out to all of their clients. + +574 +00:27:28,400 --> 00:27:28,980 +Uh-huh. + +575 +00:27:29,240 --> 00:27:38,680 +However, the Norton products tend to be overly ambitious, and they like to basically just rule the computer. + +576 +00:27:39,140 --> 00:27:39,620 +Okay. + +577 +00:27:39,620 --> 00:27:43,680 +A lot of times, they are tweaking with settings that Windows is trying to tweak back. + +578 +00:27:44,900 --> 00:27:46,920 +So you end up with a lot of conflict. + +579 +00:27:47,020 --> 00:27:47,360 +Right. + +580 +00:27:47,360 --> 00:27:49,240 +And many times, you'll end up with no internet. + +581 +00:27:49,380 --> 00:27:50,140 +Right. + +582 +00:27:50,140 --> 00:27:54,940 +And that's my big problem with Norton is that it makes your computer really slow. + +583 +00:27:55,180 --> 00:27:55,720 +Okay. + +584 +00:27:55,720 --> 00:28:02,880 +And then on top of which, a lot of times, you'll end up with just no internet access for no reason at all. + +585 +00:28:03,300 --> 00:28:03,860 +Right. + +586 +00:28:04,060 --> 00:28:09,420 +And then you have to unplug the wire or reset the cable modem or the router or something to get back online. + +587 +00:28:09,920 --> 00:28:19,100 +So I'm going to suggest that at least a contributing factor to what's going on with your not being able to connect is some sort of configuration. + +588 +00:28:19,880 --> 00:28:20,240 +Okay. + +589 +00:28:21,480 --> 00:28:24,200 +So start with getting rid of that and putting something else on there. + +590 +00:28:24,620 --> 00:28:24,980 +Okay. + +591 +00:28:24,980 --> 00:28:28,580 +I would imagine that you'll have that problem less frequently. + +592 +00:28:28,760 --> 00:28:29,760 +Now, how old is this machine? + +593 +00:28:30,620 --> 00:28:32,040 +I just got that. + +594 +00:28:32,460 --> 00:28:33,620 +It's six months. + +595 +00:28:34,340 --> 00:28:35,480 +So it's a Windows 8 machine? + +596 +00:28:36,320 --> 00:28:37,020 +Yes, it is. + +597 +00:28:37,180 --> 00:28:41,760 +And I don't really particularly like it, probably because I don't really understand a lot of the stuff. + +598 +00:28:41,980 --> 00:28:42,420 +All right. + +599 +00:28:42,440 --> 00:28:44,420 +So here's what I'm going to tell you to do. + +600 +00:28:44,880 --> 00:28:48,460 +You either sign up for the lockdown service or the GPS, one of the two. + +601 +00:28:49,100 --> 00:28:52,300 +Or you are going to uninstall Norton utterly. + +602 +00:28:53,200 --> 00:28:56,740 +You will, I would say, download something called the Norton removal tool. + +603 +00:28:57,200 --> 00:28:57,840 +Uh-huh. + +604 +00:28:57,880 --> 00:29:03,520 +So after you've uninstalled Norton using the regular uninstall, you run this Norton removal tool. + +605 +00:29:03,680 --> 00:29:07,600 +And it eradicates Norton products from your computer. + +606 +00:29:07,980 --> 00:29:08,500 +Okay. + +607 +00:29:08,540 --> 00:29:09,620 +And all of the settings. + +608 +00:29:09,760 --> 00:29:11,400 +So put your computer back to default. + +609 +00:29:11,560 --> 00:29:14,520 +Then you are going to get the paid version of Malwarebytes. + +610 +00:29:15,180 --> 00:29:17,160 +You can start off with a free trial if you want. + +611 +00:29:17,280 --> 00:29:18,700 +But the paid version. + +612 +00:29:19,100 --> 00:29:19,860 +Is what is required. + +613 +00:29:20,880 --> 00:29:24,220 +Everybody listening to the show should have the paid version of Malwarebytes on their computer. + +614 +00:29:24,500 --> 00:29:25,500 +Unless they're Macs. + +615 +00:29:25,940 --> 00:29:26,580 +Uh-huh. + +616 +00:29:26,960 --> 00:29:31,260 +And that way, you are much more likely to keep yourself out of trouble. + +617 +00:29:32,000 --> 00:29:32,440 +So. + +618 +00:29:32,440 --> 00:29:32,780 +Okay. + +619 +00:29:32,960 --> 00:29:33,700 +I would suggest. + +620 +00:29:33,700 --> 00:29:34,520 +So what's it called again? + +621 +00:29:34,640 --> 00:29:35,760 +The Malware, what? + +622 +00:29:36,420 --> 00:29:36,860 +Malwarebytes. + +623 +00:29:36,880 --> 00:29:37,960 +B-Y-T-E-S. + +624 +00:29:38,260 --> 00:29:38,440 +Okay. + +625 +00:29:38,540 --> 00:29:39,120 +All right. + +626 +00:29:39,320 --> 00:29:41,280 +So you can go to Malwarebytes.org. + +627 +00:29:41,740 --> 00:29:43,080 +And you can get a copy there. + +628 +00:29:43,780 --> 00:29:44,140 +Okay. + +629 +00:29:44,360 --> 00:29:47,780 +Please do not Google search for Malwarebytes and then download the first thing you find. + +630 +00:29:48,240 --> 00:29:48,680 +Okay. + +631 +00:29:48,680 --> 00:29:49,080 +Okay. + +632 +00:29:49,080 --> 00:29:49,080 + + +633 +00:29:49,080 --> 00:29:49,080 + + +634 +00:29:49,080 --> 00:29:49,080 + + +635 +00:29:49,080 --> 00:29:49,080 + + +636 +00:29:49,100 --> 00:29:51,420 +You can also go to my website. + +637 +00:29:51,560 --> 00:29:52,720 +Go to gurushow.com. + +638 +00:29:52,780 --> 00:29:56,040 +And there's a useful link section with links to the Malwarebytes website. + +639 +00:29:56,720 --> 00:29:57,360 +Oh, okay. + +640 +00:29:57,440 --> 00:29:57,700 +Cool. + +641 +00:29:58,120 --> 00:30:00,480 +So that will probably help quite a bit. + +642 +00:30:00,540 --> 00:30:03,600 +Now, the only other thing that I have to ask is how old is this router? + +643 +00:30:06,260 --> 00:30:08,400 +It's probably a couple of years old. + +644 +00:30:08,620 --> 00:30:09,000 +All right. + +645 +00:30:09,040 --> 00:30:19,020 +If it's more than four or five years old, then one of the reasons that your other people may be able to connect and you can't is that they might have older machines. + +646 +00:30:19,100 --> 00:30:20,580 +And it's operating on an older standard. + +647 +00:30:21,320 --> 00:30:21,800 +Okay. + +648 +00:30:22,140 --> 00:30:26,120 +So the only other thing to look at there is you might need a newer router. + +649 +00:30:26,260 --> 00:30:32,720 +Now, the flip side to that is if you get one of the fancy, brand new, stupid, expensive ones. + +650 +00:30:33,080 --> 00:30:33,560 +Yeah. + +651 +00:30:34,100 --> 00:30:37,180 +Your older machines might not be able to connect all that well. + +652 +00:30:37,380 --> 00:30:40,180 +So you want to find something that's sort of in the middle. + +653 +00:30:40,500 --> 00:30:48,280 +The ones that we like, if you're looking locally, is there's these white Asus, the RT-16s. + +654 +00:30:49,100 --> 00:30:49,640 +Mm-hmm. + +655 +00:30:49,960 --> 00:30:55,580 +They tend to be very nice routers that work with just about every computer that we've put them in front of. + +656 +00:30:55,720 --> 00:30:58,180 +And they have very nice reliability. + +657 +00:30:59,440 --> 00:30:59,880 +Okay. + +658 +00:31:00,500 --> 00:31:01,780 +Well, thank you very much. + +659 +00:31:01,780 --> 00:31:02,880 +I appreciate that. + +660 +00:31:03,320 --> 00:31:06,140 +I'm probably going to be swinging by your place anyway. + +661 +00:31:06,300 --> 00:31:08,840 +But, yeah, thank you so much for the help. + +662 +00:31:08,960 --> 00:31:10,060 +I appreciate that. + +663 +00:31:10,060 --> 00:31:10,840 +It's what I do, man. + +664 +00:31:10,920 --> 00:31:11,620 +Thank you for the call. + +665 +00:31:11,660 --> 00:31:12,360 +I appreciate it. + +666 +00:31:12,400 --> 00:31:12,720 +Thank you. + +667 +00:31:12,820 --> 00:31:13,260 +Bye. + +668 +00:31:13,400 --> 00:31:14,000 +Thank you. + +669 +00:31:14,100 --> 00:31:14,340 +Thank you. + +670 +00:31:14,360 --> 00:31:17,120 +So, yeah, if you have infections. + +671 +00:31:17,120 --> 00:31:21,100 +Infections, you know, and most everybody does. + +672 +00:31:21,400 --> 00:31:26,040 +I mean, that's one of the reasons that you'll notice that we occasionally will say, + +673 +00:31:26,240 --> 00:31:26,960 +hey, guess what? + +674 +00:31:27,020 --> 00:31:31,540 +We're doing basically free tune-ups on machines. + +675 +00:31:31,580 --> 00:31:41,160 +It's because every machine that comes in, nearly all of them, I would say greater than 80% have infections on them. + +676 +00:31:41,560 --> 00:31:43,800 +And a lot of them are sort of innocuous. + +677 +00:31:43,800 --> 00:31:45,880 +They're the ones that are just, like, advertising infections. + +678 +00:31:45,960 --> 00:31:46,760 +Or whatever. + +679 +00:31:47,120 --> 00:31:48,240 +Or things that aren't terrible. + +680 +00:31:48,540 --> 00:31:48,920 +Right? + +681 +00:31:49,000 --> 00:31:52,660 +They're not necessarily stealing your data or encrypting your stuff. + +682 +00:31:54,020 --> 00:31:55,800 +But it's just so prevalent. + +683 +00:31:56,020 --> 00:31:57,180 +And people just get used to it. + +684 +00:31:57,200 --> 00:32:03,820 +They're like, yeah, you know, all that advertising, all the extra spam or the email worm that I have on my computer. + +685 +00:32:04,120 --> 00:32:05,180 +I just got used to it. + +686 +00:32:05,220 --> 00:32:06,880 +So, no need to fix it. + +687 +00:32:07,180 --> 00:32:08,040 +Come on now. + +688 +00:32:08,360 --> 00:32:09,460 +Drives me crazy. + +689 +00:32:09,820 --> 00:32:10,880 +Just fix it. + +690 +00:32:11,100 --> 00:32:11,500 +Right? + +691 +00:32:11,580 --> 00:32:12,760 +And then listen. + +692 +00:32:12,920 --> 00:32:16,160 +Because any time that you bring your computer into Computer Guru. + +693 +00:32:16,160 --> 00:32:17,620 +If you bring your computer in. + +694 +00:32:17,900 --> 00:32:23,260 +When you pick it up, we're going to be like, okay, this is what you need to do to not have this happen again. + +695 +00:32:23,540 --> 00:32:25,780 +And a lot of times, this is free advice. + +696 +00:32:26,000 --> 00:32:26,300 +Right? + +697 +00:32:26,340 --> 00:32:29,600 +It's like, you should install this piece of software. + +698 +00:32:29,860 --> 00:32:36,840 +You should take these cautionary steps to make sure that you don't get this infection again. + +699 +00:32:37,040 --> 00:32:38,140 +You should have a backup. + +700 +00:32:38,320 --> 00:32:39,780 +You should have all of these different things. + +701 +00:32:39,820 --> 00:32:42,060 +And we're going to tell you, this is what you need to do. + +702 +00:32:43,500 --> 00:32:46,140 +But if you don't listen, you're going to get an infection again. + +703 +00:32:46,140 --> 00:32:49,240 +And you just, you don't have to, it doesn't have to be that way. + +704 +00:32:49,300 --> 00:32:50,580 +Your computer doesn't have to be slow. + +705 +00:32:50,780 --> 00:32:53,340 +You don't have to be afraid of using your computer online. + +706 +00:32:53,820 --> 00:33:00,860 +You don't have to worry about your data getting stolen or your passwords being stolen. + +707 +00:33:01,060 --> 00:33:02,460 +You don't have to worry about any of that stuff. + +708 +00:33:02,580 --> 00:33:06,460 +It just takes a bit of planning. + +709 +00:33:07,100 --> 00:33:07,500 +Right? + +710 +00:33:07,600 --> 00:33:08,940 +And a little bit of advice. + +711 +00:33:11,280 --> 00:33:12,080 +All right. + +712 +00:33:12,100 --> 00:33:12,820 +Let's go and talk to Charles. + +713 +00:33:12,960 --> 00:33:13,440 +Hey, Charles. + +714 +00:33:13,500 --> 00:33:14,020 +How are you today? + +715 +00:33:15,280 --> 00:33:15,860 +Hey, good. + +716 +00:33:15,860 --> 00:33:17,000 +Good morning. + +717 +00:33:17,260 --> 00:33:17,880 +How are you? + +718 +00:33:18,060 --> 00:33:18,720 +I'm doing well. + +719 +00:33:18,760 --> 00:33:19,080 +Thank you. + +720 +00:33:19,600 --> 00:33:20,260 +Thank you. + +721 +00:33:20,280 --> 00:33:22,420 +Well, my problem's kind of weird. + +722 +00:33:22,580 --> 00:33:25,880 +I've got a new Windows 8.1 machine here in ACES. + +723 +00:33:26,740 --> 00:33:30,300 +My wife likes to use Thunderbird as her mail client. + +724 +00:33:30,520 --> 00:33:30,780 +Okay. + +725 +00:33:31,480 --> 00:33:35,480 +And since we installed it on this machine, it just doesn't play well. + +726 +00:33:35,880 --> 00:33:40,180 +It continually goes into not responding mode and we have to shut it down. + +727 +00:33:40,440 --> 00:33:45,320 +And she can't delete stuff from the inbox as easily. + +728 +00:33:45,380 --> 00:33:45,840 +And so, I'm going to tell you a little bit about this. + +729 +00:33:45,860 --> 00:33:48,480 +I'm just wondering, is that something you've heard of? + +730 +00:33:48,560 --> 00:33:50,980 +Are there better mail clients out there that'll work? + +731 +00:33:51,200 --> 00:33:55,560 +Anytime you use any of the Mozilla products, I die a little bit inside. + +732 +00:33:59,320 --> 00:34:00,560 +So, who's your mail provider? + +733 +00:34:01,780 --> 00:34:03,520 +Well, we have three of them. + +734 +00:34:03,560 --> 00:34:04,460 +She has three of them. + +735 +00:34:04,500 --> 00:34:06,900 +You know, Gmail, Yahoo, and another one. + +736 +00:34:07,120 --> 00:34:11,460 +Does it tend to happen where she's able to delete from one of the accounts but not the other? + +737 +00:34:12,020 --> 00:34:12,380 +No. + +738 +00:34:13,000 --> 00:34:14,100 +So, it's all of them? + +739 +00:34:14,580 --> 00:34:15,020 +Yeah. + +740 +00:34:15,020 --> 00:34:16,040 +It's the program. + +741 +00:34:17,340 --> 00:34:22,880 +And I don't know if there's a fix for it other than just to change the mail client. + +742 +00:34:23,100 --> 00:34:23,320 +All right. + +743 +00:34:23,380 --> 00:34:24,700 +Tell me a little bit more about the computer. + +744 +00:34:25,760 --> 00:34:26,860 +So, typical questions. + +745 +00:34:26,940 --> 00:34:27,420 +How old is it? + +746 +00:34:28,540 --> 00:34:29,420 +About two months. + +747 +00:34:29,940 --> 00:34:31,000 +Oh, it's a brand new one. + +748 +00:34:31,140 --> 00:34:31,460 +Okay. + +749 +00:34:31,760 --> 00:34:33,780 +And antivirus that's installed? + +750 +00:34:34,580 --> 00:34:41,520 +I took off Panda the other day because I was reading where someone said that could be an issue for it. + +751 +00:34:41,560 --> 00:34:43,260 +So, I took it off to see if the problem would go away. + +752 +00:34:43,320 --> 00:34:43,780 +It did not. + +753 +00:34:43,780 --> 00:34:44,580 +It did not, right? + +754 +00:34:44,840 --> 00:34:45,740 +Anything else on there? + +755 +00:34:46,960 --> 00:34:48,760 +The free version of Malwarebytes. + +756 +00:34:49,000 --> 00:34:49,260 +Okay. + +757 +00:34:49,300 --> 00:34:50,320 +Is it in trial mode or no? + +758 +00:34:51,680 --> 00:34:52,880 +It's the free version. + +759 +00:34:53,180 --> 00:34:56,060 +Yeah, but for the first month, it's going to run in trial mode. + +760 +00:34:56,700 --> 00:34:57,360 +Oh, okay. + +761 +00:34:57,640 --> 00:34:58,680 +So, I'm curious. + +762 +00:34:58,780 --> 00:34:59,760 +Is it still in trial mode? + +763 +00:35:01,260 --> 00:35:04,900 +I haven't used it in some time, so I can't honestly say. + +764 +00:35:05,000 --> 00:35:05,220 +Probably not. + +765 +00:35:05,220 --> 00:35:05,260 +Okay. + +766 +00:35:05,360 --> 00:35:05,900 +Probably not. + +767 +00:35:06,300 --> 00:35:06,840 +All right. + +768 +00:35:06,900 --> 00:35:09,820 +And so, since day one, when you put that on there, it's been that way? + +769 +00:35:11,040 --> 00:35:11,760 +Pretty much, yes. + +770 +00:35:12,020 --> 00:35:12,340 +Okay. + +771 +00:35:13,600 --> 00:35:17,960 +The mail accounts that you have, the Yahoo and Gmail ones, are they POP or IMAP? + +772 +00:35:20,280 --> 00:35:22,600 +Both those, I believe, are POP. + +773 +00:35:23,060 --> 00:35:23,540 +Okay. + +774 +00:35:23,580 --> 00:35:24,940 +POP should be the faster one. + +775 +00:35:25,240 --> 00:35:25,680 +All right. + +776 +00:35:25,720 --> 00:35:28,120 +So, IMAP is nicer. + +777 +00:35:28,220 --> 00:35:33,960 +We generally tell people to set your accounts up as IMAP so that there's some type of server-side synchronization. + +778 +00:35:34,760 --> 00:35:35,240 +Okay. + +779 +00:35:36,020 --> 00:35:36,500 +But... + +780 +00:35:36,500 --> 00:35:36,720 +Okay. + +781 +00:35:36,780 --> 00:35:38,060 +The Gmail is an IMAP. + +782 +00:35:38,160 --> 00:35:38,580 +Okay. + +783 +00:35:38,600 --> 00:35:38,760 +Good. + +784 +00:35:41,360 --> 00:35:42,320 +But the Yahoo is not. + +785 +00:35:42,320 --> 00:35:42,760 +Yahoo is a POP. + +786 +00:35:42,860 --> 00:35:43,620 +Yahoo is a POP. + +787 +00:35:43,700 --> 00:35:44,000 +All right. + +788 +00:35:45,500 --> 00:35:50,460 +Basically, just without knowing anything more about the machine or its configuration, and + +789 +00:35:50,460 --> 00:35:55,220 +you're saying that it's been that way since day one, I would suggest that it's probably + +790 +00:35:55,220 --> 00:35:59,680 +going to be a Thunderbird problem rather than a communication issue or some other type of + +791 +00:35:59,680 --> 00:36:00,740 +infection that's going on. + +792 +00:36:02,240 --> 00:36:03,680 +Because we have to look at those things first. + +793 +00:36:03,720 --> 00:36:07,720 +Whenever we hear, well, my mail client locks up all the time, first thing that jumps to + +794 +00:36:07,720 --> 00:36:10,320 +mind to me is there might be an email worm, right? + +795 +00:36:10,320 --> 00:36:14,520 +Where it's hijacking the mail program in the background and saying, hey, send out 10,000 + +796 +00:36:14,520 --> 00:36:14,740 +emails. + +797 +00:36:16,940 --> 00:36:21,120 +However, if you have Malwarebytes on there and you had Panda on there, that's pretty + +798 +00:36:21,120 --> 00:36:23,440 +unlikely, especially on a Windows 8 machine. + +799 +00:36:24,160 --> 00:36:29,460 +Can you recommend a different aggregating mail client of some kind? + +800 +00:36:29,760 --> 00:36:31,300 +Well, I'm a big fan of Outlook myself. + +801 +00:36:33,360 --> 00:36:38,440 +But the built-in mail client for 8, even though it's got kind of a weird interface, is also + +802 +00:36:38,440 --> 00:36:39,460 +an aggregating mail client. + +803 +00:36:39,460 --> 00:36:41,280 +So you can have multiple accounts in there. + +804 +00:36:43,260 --> 00:36:50,000 +Really, if you're looking for a decent email client, all the free ones are kind of terrible. + +805 +00:36:50,480 --> 00:36:58,120 +So there's something called EM client, which is if you're anti-Microsoft is okay. + +806 +00:36:58,220 --> 00:36:59,440 +It's kind of an Outlook clone. + +807 +00:37:00,960 --> 00:37:03,120 +But really, I like Outlook. + +808 +00:37:03,320 --> 00:37:09,040 +If you have Office, then chances are you've got like a 365 subscription. + +809 +00:37:09,140 --> 00:37:09,440 +It's not a big deal. + +810 +00:37:09,440 --> 00:37:09,440 + + +811 +00:37:09,460 --> 00:37:10,180 +And you have Outlook. + +812 +00:37:10,220 --> 00:37:11,020 +Just use it. + +813 +00:37:11,080 --> 00:37:12,500 +It's a decent mail program. + +814 +00:37:13,340 --> 00:37:14,380 +All righty. + +815 +00:37:15,420 --> 00:37:17,100 +Well, thank you for the information. + +816 +00:37:17,340 --> 00:37:21,240 +I'll check into that EM one there and maybe even try the built-in one. + +817 +00:37:21,420 --> 00:37:23,060 +I'm going to suggest one other thing. + +818 +00:37:23,200 --> 00:37:26,280 +You have Thunderbird installed, which means that you probably have Firefox installed. + +819 +00:37:28,000 --> 00:37:31,080 +I would say uninstall Firefox and see if it gets better. + +820 +00:37:31,840 --> 00:37:33,680 +Firefox has this weird issue. + +821 +00:37:34,020 --> 00:37:39,440 +And this is the reason I hate Firefox, is that on some machines, for no apparent reason, + +822 +00:37:39,440 --> 00:37:39,440 + + +823 +00:37:39,440 --> 00:37:39,440 + + +824 +00:37:39,440 --> 00:37:39,440 + + +825 +00:37:39,440 --> 00:37:39,440 + + +826 +00:37:39,440 --> 00:37:39,440 + + +827 +00:37:39,440 --> 00:37:39,440 + + +828 +00:37:39,440 --> 00:37:39,440 + + +829 +00:37:39,440 --> 00:37:43,800 +whatsoever, it just makes the machines slow for certain functions. + +830 +00:37:44,140 --> 00:37:44,540 +All right? + +831 +00:37:44,620 --> 00:37:45,880 +A lot of times, it's when you're typing. + +832 +00:37:46,580 --> 00:37:48,920 +And I have no idea why it would be that way. + +833 +00:37:49,300 --> 00:37:52,860 +But we find all the time that people will have Thunderbird installed and they're really + +834 +00:37:52,860 --> 00:37:54,100 +like, my computer's so slow. + +835 +00:37:54,200 --> 00:37:56,020 +It can't even keep up with me typing. + +836 +00:37:57,100 --> 00:37:59,320 +And not even in Firefox. + +837 +00:37:59,560 --> 00:37:59,660 +All right? + +838 +00:37:59,680 --> 00:38:00,540 +Firefox isn't even running. + +839 +00:38:00,620 --> 00:38:01,760 +It's just installed on the computer. + +840 +00:38:02,100 --> 00:38:02,520 +All right? + +841 +00:38:02,600 --> 00:38:05,760 +And they're typing in Word or in their email program. + +842 +00:38:05,940 --> 00:38:07,000 +And it's just dragging along. + +843 +00:38:07,160 --> 00:38:08,000 +And it's like not responding. + +844 +00:38:08,300 --> 00:38:09,420 +Or they'll type in some language language language language language language language language + +845 +00:38:09,420 --> 00:38:09,420 + + +846 +00:38:09,420 --> 00:38:09,420 + + +847 +00:38:09,420 --> 00:38:09,420 + + +848 +00:38:09,420 --> 00:38:11,140 +and then the words will catch up to them. + +849 +00:38:11,720 --> 00:38:12,600 +It's Firefox. + +850 +00:38:12,980 --> 00:38:14,180 +And all you do is uninstall Firefox, + +851 +00:38:14,360 --> 00:38:16,740 +the machine goes back to normal, right? + +852 +00:38:16,840 --> 00:38:18,120 +Instant typing again. + +853 +00:38:18,560 --> 00:38:20,680 +So we don't know why it does that with Firefox. + +854 +00:38:22,060 --> 00:38:24,820 +I honestly have not been invested enough to care. + +855 +00:38:25,140 --> 00:38:27,160 +So it's just been like uninstall Firefox + +856 +00:38:27,160 --> 00:38:29,740 +and problem solved. + +857 +00:38:30,180 --> 00:38:31,440 +So I would say... + +858 +00:38:32,120 --> 00:38:32,580 +What's that? + +859 +00:38:33,200 --> 00:38:34,000 +Go with Chrome. + +860 +00:38:34,360 --> 00:38:35,300 +Yeah, we like Chrome. + +861 +00:38:35,860 --> 00:38:36,800 +Chrome's a good browser. + +862 +00:38:36,940 --> 00:38:37,660 +I can dig it. + +863 +00:38:37,660 --> 00:38:40,820 +So I would say go with that and see what happens. + +864 +00:38:42,220 --> 00:38:42,900 +All right. + +865 +00:38:43,040 --> 00:38:43,780 +Well, thank you. + +866 +00:38:43,860 --> 00:38:44,280 +No problem. + +867 +00:38:44,380 --> 00:38:46,440 +Have yourself a lovely, lovely day. + +868 +00:38:46,800 --> 00:38:47,480 +You too. + +869 +00:38:47,640 --> 00:38:48,000 +All right. + +870 +00:38:48,060 --> 00:38:49,360 +So we're going to take a quick break + +871 +00:38:49,360 --> 00:38:52,040 +and then we are going to come back to more phone calls + +872 +00:38:52,040 --> 00:38:54,520 +and more helping you with free tech support + +873 +00:38:54,520 --> 00:38:55,660 +right here on the Computer Guru Show. + +874 +00:38:56,040 --> 00:38:57,040 +790-2040. + +875 +00:38:57,140 --> 00:38:57,760 +We'll be right back. + +876 +00:39:06,260 --> 00:39:07,520 +Whether you're dealing with + +877 +00:39:07,520 --> 00:39:09,120 +hardware installation or heaven forbid, + +878 +00:39:09,420 --> 00:39:10,240 +a virus... + +879 +00:39:10,240 --> 00:39:11,520 +No! No! No! + +880 +00:39:11,980 --> 00:39:15,240 +Mike Swanson is answering all your questions one by one. + +881 +00:39:15,380 --> 00:39:17,380 +So call in or chat in with yours. + +882 +00:39:17,680 --> 00:39:18,380 +The website? + +883 +00:39:18,740 --> 00:39:19,920 +Gurushow.com. + +884 +00:39:20,160 --> 00:39:22,520 +Tune in, click in, and kick back. + +885 +00:39:22,740 --> 00:39:24,720 +This is the Computer Guru Show + +886 +00:39:24,720 --> 00:39:27,540 +on AM1030, KVOY The Voice. + +887 +00:39:39,340 --> 00:39:41,300 +Mike Swanson, your computer guru, + +888 +00:39:41,400 --> 00:39:42,420 +is just a click away. + +889 +00:39:42,640 --> 00:39:44,940 +Listen and watch at gurushow.com. + +890 +00:39:45,200 --> 00:39:47,180 +This is the Computer Guru Show. + +891 +00:39:47,680 --> 00:39:49,320 +Welcome to my world. + +892 +00:39:49,360 --> 00:39:50,880 +Welcome back to the Computer Guru Show. + +893 +00:39:50,920 --> 00:39:51,400 +My name is Mike. + +894 +00:39:51,400 --> 00:39:52,500 +Here to deal with your technology problems + +895 +00:39:52,500 --> 00:39:54,520 +and treat you like a person in the process. + +896 +00:39:56,560 --> 00:39:58,400 +I guess a lot of people don't realize that + +897 +00:39:58,400 --> 00:40:02,340 +I started Computer Guru almost 17 years ago + +898 +00:40:02,340 --> 00:40:07,280 +because I heard people, of people, + +899 +00:40:07,520 --> 00:40:09,520 +getting just remarkably ripped off + +900 +00:40:09,520 --> 00:40:10,680 +by computer companies. + +901 +00:40:11,240 --> 00:40:12,460 +By the local guys. + +902 +00:40:12,560 --> 00:40:13,760 +Because they're like car mechanics, right? + +903 +00:40:13,820 --> 00:40:14,460 +You don't know what they're doing. + +904 +00:40:16,100 --> 00:40:18,260 +It's some voodoo that happens + +905 +00:40:19,140 --> 00:40:21,040 +and you have to take their word for it. + +906 +00:40:21,480 --> 00:40:24,280 +And so the company has been built, + +907 +00:40:24,400 --> 00:40:25,420 +Computer Guru has been built, + +908 +00:40:25,460 --> 00:40:29,260 +on this idea that you are going to get treated fairly + +909 +00:40:29,260 --> 00:40:29,960 +no matter what. + +910 +00:40:30,340 --> 00:40:33,320 +We are not here to rip you off. + +911 +00:40:33,460 --> 00:40:34,560 +Of course we want to make money + +912 +00:40:34,560 --> 00:40:35,120 +and stay in business, + +913 +00:40:35,900 --> 00:40:37,500 +but we do so at... + +914 +00:40:37,520 --> 00:40:38,680 +mostly a minimum. + +915 +00:40:38,820 --> 00:40:40,980 +Just see my stress on payroll day + +916 +00:40:40,980 --> 00:40:43,360 +and you will know exactly what's going on there. + +917 +00:40:45,240 --> 00:40:46,760 +But it's like, you know, + +918 +00:40:46,760 --> 00:40:48,240 +we want to have good techs + +919 +00:40:48,240 --> 00:40:49,600 +that have good people skills + +920 +00:40:49,600 --> 00:40:52,120 +that are able to solve your problems + +921 +00:40:52,120 --> 00:40:54,960 +and explain to you in a way that you understand + +922 +00:40:55,540 --> 00:40:59,020 +that things are fixed, right? + +923 +00:40:59,160 --> 00:41:01,080 +And that it's not extraneous. + +924 +00:41:01,180 --> 00:41:04,220 +We're not going to do anything that is wasteful. + +925 +00:41:04,380 --> 00:41:05,220 +We're not going to... + +926 +00:41:05,220 --> 00:41:05,880 +We're basically... + +927 +00:41:05,880 --> 00:41:06,920 +We want... + +928 +00:41:07,520 --> 00:41:07,760 +We want to be able to get customers + +929 +00:41:07,760 --> 00:41:11,320 +to give us a little bit of money forever, right? + +930 +00:41:11,360 --> 00:41:13,140 +As far as I want you to trust me enough + +931 +00:41:13,140 --> 00:41:14,460 +that you are a lifer customer, + +932 +00:41:14,980 --> 00:41:17,120 +that you don't have to shop around, + +933 +00:41:17,340 --> 00:41:18,820 +that you'll always come back to me + +934 +00:41:18,820 --> 00:41:20,360 +because I treated you well + +935 +00:41:20,360 --> 00:41:21,960 +every time that you were in there. + +936 +00:41:22,080 --> 00:41:22,680 +The golden rule. + +937 +00:41:22,920 --> 00:41:23,360 +Right. + +938 +00:41:23,520 --> 00:41:26,620 +And the show itself, right? + +939 +00:41:26,840 --> 00:41:28,080 +This radio show, + +940 +00:41:28,780 --> 00:41:29,220 +it's... + +941 +00:41:29,220 --> 00:41:30,540 +You would be surprised + +942 +00:41:30,540 --> 00:41:32,280 +how many people think I make money off of this. + +943 +00:41:32,340 --> 00:41:35,360 +And it is way, way the opposite, right? + +944 +00:41:35,440 --> 00:41:36,300 +As far as... + +945 +00:41:36,780 --> 00:41:37,220 +As... + +946 +00:41:37,220 --> 00:41:37,280 +As... + +947 +00:41:37,280 --> 00:41:39,880 +For me, there's no money in this, right? + +948 +00:41:39,940 --> 00:41:42,300 +Even with the sponsors I have right now, + +949 +00:41:42,500 --> 00:41:43,980 +I lose money every week on this. + +950 +00:41:44,100 --> 00:41:46,840 +But I do it because one day I was driving around town + +951 +00:41:46,840 --> 00:41:50,900 +and I was listening to another radio show about computers, + +952 +00:41:51,020 --> 00:41:52,040 +which isn't even on the air anymore. + +953 +00:41:52,620 --> 00:41:54,180 +And they were... + +954 +00:41:54,180 --> 00:41:57,580 +They were giving out just these lazy, terrible answers. + +955 +00:41:57,880 --> 00:42:01,540 +And quite frankly, the wrong answers every time. + +956 +00:42:01,800 --> 00:42:02,980 +And I just... + +957 +00:42:02,980 --> 00:42:04,460 +I lost my mind. + +958 +00:42:04,600 --> 00:42:06,660 +I just drove across town, + +959 +00:42:06,660 --> 00:42:08,240 +found the nearest radio station + +960 +00:42:08,240 --> 00:42:11,840 +that didn't have a computer show on it, + +961 +00:42:11,900 --> 00:42:12,340 +and I said, + +962 +00:42:12,400 --> 00:42:13,540 +I have to compete with this. + +963 +00:42:13,880 --> 00:42:18,040 +And so it's my civic obligation + +964 +00:42:18,040 --> 00:42:20,120 +to make sure that I am helping people, + +965 +00:42:20,240 --> 00:42:23,160 +to make sure that I am helping in some way + +966 +00:42:23,160 --> 00:42:25,880 +to make the world of computers a little bit better + +967 +00:42:25,880 --> 00:42:26,840 +when it comes to users. + +968 +00:42:28,140 --> 00:42:30,320 +Because we want to treat you well. + +969 +00:42:30,440 --> 00:42:33,120 +We want to make sure that you're treated fairly + +970 +00:42:33,120 --> 00:42:35,420 +and that you are well-informed + +971 +00:42:35,420 --> 00:42:36,620 +as to what... + +972 +00:42:36,660 --> 00:42:37,500 +is actually happening. + +973 +00:42:38,100 --> 00:42:41,100 +So that's what the two components of my life + +974 +00:42:41,100 --> 00:42:42,200 +are all about, right? + +975 +00:42:42,280 --> 00:42:43,560 +Either the shop during the week + +976 +00:42:43,560 --> 00:42:46,220 +where we fix your computers and we do it right. + +977 +00:42:47,520 --> 00:42:48,820 +Or this radio show + +978 +00:42:48,820 --> 00:42:50,220 +where you get an opportunity to fix it yourself + +979 +00:42:50,220 --> 00:42:51,440 +with a little bit of guidance. + +980 +00:42:52,360 --> 00:42:54,020 +So you have an opportunity here. + +981 +00:42:54,480 --> 00:42:56,240 +If you want the help, + +982 +00:42:56,320 --> 00:42:56,960 +you give us a call. + +983 +00:42:57,180 --> 00:42:57,720 +All right? + +984 +00:42:57,760 --> 00:42:59,920 +If you want us to do it for you, + +985 +00:43:00,460 --> 00:43:01,820 +then you give us a call. + +986 +00:43:01,980 --> 00:43:03,940 +So you can either show up down at the shop + +987 +00:43:03,940 --> 00:43:06,540 +or you can give us a call here on the weekend. + +988 +00:43:07,900 --> 00:43:10,440 +I highly suggest that if you are a user + +989 +00:43:10,440 --> 00:43:14,160 +that has some paranoia about viruses + +990 +00:43:14,160 --> 00:43:17,800 +or you want to make sure that you're protected and safe + +991 +00:43:17,800 --> 00:43:20,860 +and you just want to make sure that you're doing well, + +992 +00:43:21,000 --> 00:43:22,760 +then you sign up for the group protection services + +993 +00:43:22,760 --> 00:43:24,100 +or the lockdown service + +994 +00:43:24,100 --> 00:43:26,820 +and we make sure that you don't have those problems + +995 +00:43:26,820 --> 00:43:28,040 +in the future. + +996 +00:43:28,440 --> 00:43:31,880 +And you know that you have some place that you can call. + +997 +00:43:32,600 --> 00:43:35,280 +We'll answer questions generally for free. + +998 +00:43:35,380 --> 00:43:35,780 +All right? + +999 +00:43:35,860 --> 00:43:36,580 +As long as you don't... + +1000 +00:43:36,660 --> 00:43:38,300 +I try to monopolize all of my time. + +1001 +00:43:38,800 --> 00:43:40,160 +But if you call the shop and say, + +1002 +00:43:40,220 --> 00:43:40,940 +hey, I just have a question. + +1003 +00:43:41,260 --> 00:43:43,580 +I just want to know how this works + +1004 +00:43:43,580 --> 00:43:45,180 +or if I can do this + +1005 +00:43:45,180 --> 00:43:47,840 +or what our advice is for whatever, + +1006 +00:43:48,400 --> 00:43:49,260 +you call us, + +1007 +00:43:49,360 --> 00:43:50,280 +we'll pick up the phone, + +1008 +00:43:50,380 --> 00:43:54,220 +we will talk to you kindly for free. + +1009 +00:43:54,540 --> 00:43:56,460 +Not too many businesses like that anymore. + +1010 +00:43:56,820 --> 00:43:58,240 +Not in the computer world anyway. + +1011 +00:43:59,120 --> 00:44:00,540 +So, I mean, if you... + +1012 +00:44:01,440 --> 00:44:04,520 +That's my commitment to you, the user, right? + +1013 +00:44:04,600 --> 00:44:05,620 +To you, my customers. + +1014 +00:44:05,620 --> 00:44:07,140 +To you, my listeners. + +1015 +00:44:07,360 --> 00:44:07,840 +All right? + +1016 +00:44:07,840 --> 00:44:11,360 +I want to make sure that you are treated fairly all the time. + +1017 +00:44:11,740 --> 00:44:14,200 +So give us a call down at the shop, 304-8300, + +1018 +00:44:14,480 --> 00:44:15,220 +if you have any questions + +1019 +00:44:15,220 --> 00:44:16,480 +or if you want to... + +1020 +00:44:17,000 --> 00:44:18,560 +Or if you're interested in signing up + +1021 +00:44:18,560 --> 00:44:19,780 +for any of the services that we have. + +1022 +00:44:21,140 --> 00:44:22,560 +That's what we're here for. + +1023 +00:44:23,320 --> 00:44:25,260 +And we want to keep it fun. + +1024 +00:44:25,520 --> 00:44:25,900 +All right? + +1025 +00:44:25,960 --> 00:44:26,720 +It's like... + +1026 +00:44:27,580 --> 00:44:31,060 +To me, it's important that every day is a learning experience + +1027 +00:44:31,060 --> 00:44:32,240 +and that it's fun + +1028 +00:44:32,240 --> 00:44:35,020 +and that, you know, we're... + +1029 +00:44:35,620 --> 00:44:36,960 +We shouldn't be afraid of our technology. + +1030 +00:44:37,220 --> 00:44:37,800 +We shouldn't be... + +1031 +00:44:37,800 --> 00:44:39,460 +We shouldn't hate our technology. + +1032 +00:44:40,160 --> 00:44:41,640 +And so if you've got, you know, + +1033 +00:44:41,640 --> 00:44:42,220 +if you've got a business + +1034 +00:44:42,220 --> 00:44:44,780 +where you're just hating on your computers every day, right? + +1035 +00:44:44,860 --> 00:44:47,800 +Or you got computers at home, right? + +1036 +00:44:47,900 --> 00:44:48,940 +And you're afraid of them + +1037 +00:44:48,940 --> 00:44:52,020 +or you just don't like it. + +1038 +00:44:52,060 --> 00:44:54,480 +Or if it came installed with Vista XP on it, + +1039 +00:44:54,540 --> 00:44:54,880 +you should... + +1040 +00:44:55,520 --> 00:44:57,640 +Really, you should just take that thing out back + +1041 +00:44:57,640 --> 00:44:58,500 +and office space it. + +1042 +00:44:58,880 --> 00:44:59,480 +It's just... + +1043 +00:44:59,480 --> 00:45:00,060 +It's no good. + +1044 +00:45:00,220 --> 00:45:01,420 +But give us a call. + +1045 +00:45:01,540 --> 00:45:02,700 +We're happy to help you out. + +1046 +00:45:03,500 --> 00:45:05,300 +Also, you should visit our Patreon. + +1047 +00:45:05,620 --> 00:45:06,000 +It's page... + +1048 +00:45:06,520 --> 00:45:08,420 +It's patreon.com slash gurushow + +1049 +00:45:08,420 --> 00:45:10,560 +and help us support the show. + +1050 +00:45:10,780 --> 00:45:12,540 +Thank you very much for listening once again + +1051 +00:45:12,540 --> 00:45:13,200 +to the Computer Guru Show. + +1052 +00:45:13,300 --> 00:45:14,540 +We'll be back next week. + +1053 +00:45:14,900 --> 00:45:15,640 +Thank you. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.txt new file mode 100644 index 0000000..2ca9a9b --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2015-s7e30/transcript.txt @@ -0,0 +1,1053 @@ +Computer running slow? +Has your machine somehow acquired a life of its own? +It's alive! +Or do you simply desire a deeper and more meaningful connection? +Be one with your operating system. +It's Arizona's computer guru, Mike Swanson, and his show starts now. +Listen in, chat in, and watch live streaming at gurushow.com. +Want your voice to be heard? +Call in with your questions and riddles. +The number is 520-790-2040. +This is the Computer Guru Show on AM1030. +KBOI, The Voice. +I got microphone problems going on over here. +What's going on with that? +Alright. +Want to try this one? +Ah, okay, there we go. +Alright! +Alright! +Now we know which microphone to use. +Ken's going to apologize. +I'm sorry, Mr. Guru. +Alright, this is the Computer Guru Show. +My name is Mike. +Here to deal with your technology problems and treat you like a person in the process. +That's what I do. +790-2040. +If you want to be a part of the show, that's 520-790-2040. +And we'll see what we can do to make all of your technology woes go away. +This is your one hour of free tech support that is for the masses. +So if you are looking for answers to questions, +that's what I'm here for. +So I heard at the office, +I stopped by the office on the way over here, +and I was told that apparently I've been talking about phones too much. +So somebody called in and said that I should stop talking about phones. +But it's your show. +Well, I know, but it is my show. +But at the same time, you know, +I want to make sure that the listeners know that I am listening. +Right? +So we're not going to talk about it. +We're going to talk about phones today. +Okay. +Even though I still have Verizon issues. +That'll be next week then. +I did have Verizon issues, but I switched. +You switched? +What did you switch to? +T-Mobile. +T-Mobile? +Okay. +All right. +That's it. +That's all we're talking about phones. +All right. +So now we're going to talk about viruses. +And we do one of these shows about once a year or so where it's time to explain how the viruses work. +Okay. +Okay. +Okay. + + + + + + + + + + + + + + + + + +Specifically what the motivation is because every so often I hear, and this is sort of a quote, +really, why do these people do this? +Are they just getting their jollies off is what I heard yesterday by writing these viruses. +And I will tell you right now that there may be some jolly involved, but not much at all. +Most of it's money. +Lots and lots of money. +Ridiculous amounts of money is really what it comes down to. +It's really, yeah, there's a lot of dollar signs. +How does that work? +All right. +So if you, most of the viruses these days tend to be the crypto locker infections. +They're the ones that are, you know, they take your stuff, they take your information and encrypt it while you're not looking. +Right. +Right. + + + + + + + + + +And, uh, you know, once, once you get that infection, it takes all of your documents, your pictures, and it, it makes it so you can't view it anymore. +And then when it gets done with all of that, it's pops up a message on your screen and says, Hey, you want your stuff back? +That'll be two bitcoins, please. +Or, uh, they'll have you get on the Walgreens and get a prepaid visa card where you can pay them with that. +And generally it's not cheap. +I would say on average, it's around. +$800 to get your data back. +And yeah, that's no joke. +Now to be, to credit these guys, they tend to honor their word business wise. +Right. +So if you happen to get the crypto locker infection and all of your data gets, gets taken away from you and you don't have any backups, you know, that every week we go, you need a backup. +You need to have a backup. +You must have backups. +Uh, so if you don't have a backup. +And then you're forced to pay the ransom. +Then, uh, I would say that most of the time, uh, with the experience that we've had with it, where we've directly paid people to get other people's data back, uh, about, um, I don't know, nine out of 10 times we get the data back. +It's not bad. +It's pretty good. +Yeah. +Uh, only one time, uh, have we paid and not. +Gotten the data back, which was kind of unfortunate. +Um, but this is why we, we harp on the whole backup thing. +You must have backups. +You need a backup. +That's just, that's just how it works. +I mean, in, in every aspect of your life, there's, there's a plan B, right? +And you need to have that with your computer as well. +So you either have a separate copy of the data or you synchronize to the cloud. +You synchronize to us over at computer guru. +Uh, we would love to make sure that your data. +Just does not go away. +Get me safe people backups. +So anyway, yes, there's lots of money involved. +In fact, there's, there's websites now that you can go out and it's effectively like, uh, it's almost like a franchise, right? +Where you give them, you give them $3,000, I think is the amount. +And, uh, they basically set you up with your own infection that you can send out to the masses, right? +With the, with this crypto locker stuff. +They set you up with the. +With a, a Bitcoin wallet and they, they tell you how it's like a class. +They teach you how to, you know, put it on the server and how to, to send it out to the, uh, via email usually, or put it onto websites so that you can get, you know, people, you can infect people and you get tech support for the, for basically ransoming people's software, their documents. +And so that's, that's how big this, this money is right now. +It's to the point where. +Yeah. +Yeah. + + +These people have enough money that they can just basically say, well, we're not going to ransom individuals anymore. +We're going to teach you how to ransom people. +And, uh, I don't know. +It's next to send me some sort of pyramid scheme, I'm sure. +Right. +But it's, these are the big viruses that are out there right now. +These are the ones that are the most dangerous, right? +Cause we hear people talking about all the time. +Uh, yesterday I was having a conversation with somebody and they're like, yeah, well, you know, we're not really all like concerned with people hacking in. +So we don't need this, you know, super fancy firewall. +And I was like, well, yeah, but that's not the part you're really worried about anyway. +Right. +You should be worried about it. +You should be worried more about email infections and email just needs to go away. +But, um, at the very least the zip file extension needs to go away just because so many people fall for it. +They get these infections. +They, you know, they get this message in their mail. +It says your, your package wasn't sent from UPS or, um. +Um, let's see, what are the other big ones? +Uh, you know, any of them off the top of your head? +Have you seen any of them? +No, I haven't. +I just, what was going through my mind is obviously this is very prevalent out here. +A lot of people pray on, or they would not be doing it. +Yeah. +I mean, there is, there is a lot of that. +You, and you have different sort of subcategories of bad people out there that are preying on different demographics. +Um, and those targeted phishing messages. +Are, are, you know, they're the ones that most people will fall for, right? +You're, there's a lot of ones that are like PayPal. +Like, you know, your PayPal account has been suspended or, uh, there's some really good ones from Chase. +I mean, they are convincing. +Western Union. +They don't do the Western Union as much anymore. +Not so much. +Uh, but the, the Chase ones right now are, wow, they're, they're convincing. +Cause I looked at one and I can, I can spot these things just immediately looking at them going, oh, that's, that's, that's. +That's not even real. +And I looked at it and I was just like, really? +You know, and there was, there was like a good five seconds where I was like, wow, this is legit. +Right. +And I was like, this is not even possible. +And, uh, upon, upon further inspection, I mean, yes, it was fake, but you couldn't tell by looking at it. +It was just, I knew it was fake by circumstance. +So there's some really, really good, uh, phishing emails that are out there that are trying to infect you. +Um, but a lot of them have to do with something like, you know, there's a package or, um, uh, right now they're doing a bunch of tax ones. +You know, like you're, uh, you're to collect your tax payment. +We need you to fill out this form or whatever. +And, uh, so just be, be careful, be careful about just if it's in a zip file at all. +Yeah. +Just don't even open it. +Delete it. +What about the rule of thumb? +If you don't recognize the sender? +Well, they're phishing this. +The, the sender. +The sender name. +A lot of times. +I mean, the sender name looks legit unless you, you know, do some investigation. +Um, but what it really comes down to is that, uh, you know, it's, it's about the type of file that they're sending you. +As an example, um, for most of the people we host email for bunches of people in town, um, and all over the world, actually, we host a lot of email accounts. +And for the majority of them by default, we just deny. +We just deny zip accounts or zip files just right out of the box. +Just don't even try because the zip file will never get there. +I'll just say good rule of thumb. +If there's an attachment, be suspicious. +I don't know. +Yeah. +That's me. +And that's, that's a very good thing to be. +Um, and, and luckily Outlook has fixed a lot of the problems that they used to have with, uh, auto opening attachments and infecting the machine and stuff like that. +But there are some things that we're going to talk about after the break. +Which is, uh, ways that we can make sure that you are very safe. +And as usual, this episode, this first segment brought to you by Perfection Auto Works. +If you want somebody who really takes the time to get invested in you, you, the customer, you should get on and see Mike Emery down at Perfection Auto Works. +Listen to the commercials this break because he's in there for contact information. +This is the Computer Guru Show. +We'll be right back. +Music. +Computer troubles? +Need some advice? +Call in now. +Mike Swanson will be back after these messages. +The Computer Guru Show. +AM 1030. +KVOY. +The Voice. +Your technology guru, Mike Swanson, is answering all your questions one by one. +Yes, science. +So chime in with yours. +The website is gurushow.com. +Tune in, click in, and kick back. +This is the Computer Guru Show. +If you'd like to be part of the show, give us a call. +790-2040. +That's 520-790-2040. +Or you can join us in the chat room at gurushow.com. +If you go to the Listen Live link, there is absolutely a chat room that you can participate in. +One of the questions in there was asking about if we could solder something back onto a motherboard that got broken off. +And the answer is yes. +And just so I don't have to type while I'm in the middle of talking here. +By the description given. +Which is? +That it looks like all the traces are probably okay. +Yeah, I can probably fix that for you. +Bring it on down. +We're open until 5 o'clock today. +And 9 to 6 Monday through Friday. +So once again, give us a call. +790-2040 if you'd like to be part of the show and get some free tech support on. +Now, infections. +There's a lot of people that switch over to the Mac platform because they're trying to avoid the infections. +And I'm glad that works for some people for right now. +And the chat. +This is like, you know, I have a Mac in front of me right now. +And a PC. +But you can't run far when it comes to that stuff. +There's new infections coming out every day for Mac, which is kind of unfortunate. +But they attack in a different way. +They attack the weak link, which is you, the user. +So much like with those phishing emails where people basically click on a link. +Or open a program in order to install it. +Same thing is happening on the Mac now. +Because instead of trying to hack the operating system, which for a long time was really where they were going. +They were exploiting the weaknesses of the operating system itself. +Once they've gotten to the point where that just doesn't work anymore. +Or it's not reliable enough. +Or it doesn't generate enough income for them. +Because they're not getting enough people. +They had to switch tactics. +And so a couple of different tactics. +That they use is they basically emotionally fool you. +So they send you an email that for whatever reason. +Whatever the reasoning is within that email that makes you click on it. +You'll click on it. +You'll open the application. +And suddenly you're infected. +And a lot of times it's so fast. +And it doesn't do anything overt. +You just click on it and nothing happens. +It's already done. +It's already done what it needs to do. +It's just instant. +And basically then it waits. +Now if it's one of those CryptoLocker ones. +It's in the background. +It is. +It's encrypting all of your documents. +You don't even know it. +So if you notice that your machine is just unreasonably slow after opening an email. +Just really, really slow for no apparent reason. +Right. +It used to be run nice and fast. +And then suddenly there's this huge delay. +Yeah. +You need to turn that computer off. +Right. +And bring it down immediately. +Get down to the guru. +That's right. +But that way we can stop it. +Because the encryption process itself is resource intensive. +It takes a lot of sort of horsepower to make that happen. +So it's going to be sucking all of the performance out of your machine while it's trying to do this encryption in the background. +So yeah. +If your machine is just real slow. +Like unreasonably. +Uncharacteristically slow. +Then yeah. +You've got a problem. +And even if it isn't an infection. +Right. +The only other time that your computer is really going to be like that. +Where it's just very, very slow. +Then you're probably have a failing hard drive or you've got a bad RAM chip or something that needs to be looked at anyway. +So if you notice that stuff, then it's time to bring it in. +Now, one of the other ways that you can avoid this is that. +Instead of going the Mac route. +Right. +If you want to pay four times too much for a machine, that's cool. +All right. +If you've got the money, you can absolutely do that. +Just know that you're not completely safe. +And you still have to have some type of skepticism about the things that you click on. +About the places that you go. +And make sure that you keep yourself safe. +And have backups. +Always have backups. +It's like every break I have to say it. +Um. +But there are some things that you can do. +On the PC side. +To really straighten that out. + +PCs have a weakness. +Right. +Everybody's like, well, they're so vulnerable. +And the reason that it is, is because back in Vista. +When they decided to not make your machine vulnerable. +Everybody complained. +Right. +They were like, oh, I don't want to have to click. +Okay. +All the time. +We're typing a password every time something dangerous could potentially be happening. +Because it was popping up that there was even a famous sort of commercial that Mac did. +Based on. +That the Mac PC commercials. +Where it was like, are you sure you want to do that? +Yes. +All right. +That is the mechanism that keeps you safe. +And the problem is, is that now Microsoft sort of back that off a little bit. +Right. +For Windows 7. +Just to kind of make people shut up. +They were complaining so much about, well, why do I always have to click on this thing? +It makes the screen flash. +And then I have to click on yes. +And the answer is you don't have to click. +On yes. +Really. +If you use a Mac and you're very familiar with this already, then which is anytime you try to install a piece of software, it pops up a box and says, hey, what's your password? +Right. +It's not just clicking. +Yes. +You actually have to type a password in in order to make it happen. +And you can do that in Windows. +There's some settings that you can. +That you can put in the machine to make it behave just like a Mac when it comes to how you install software. +Which includes infections. +So rather than, you know, you're just surfing around and then suddenly you get a password box that says, hey, enter your password. +And all you're doing is surfing the web or checking your email. +It shouldn't be asking for that. +That should be a giant red flag that says, oh, something bad's happening here. +And and you have the opportunity to stop it at that moment. +So we have a couple of different options for that down at Computer Guru. +Right. +So we can we can basically you can sign up for the GPS package. +It's Guru Protection Services, which basically we lock down your machine. +Right. +It's $30 a month. +You get antivirus and anti malware included and we lock your machine down. +You're not going to get any infections. +And if you do, I'll fix it. +That's just how it works. +Right. +I am confident enough to say that I can prevent you from getting an infection. +And if you get one, I will solve that problem because you're not getting one. +That's just how it works. +So on my machine, as an example, my PC, I use all the time. +I haven't had antivirus on that thing in three years. +Zero infections. +And I go all kinds of places. +I shouldn't because I'm following you guys around as far as, you know, I went to this website and got an infection. +Oh, yeah, let me try it out. +I want to see what happens. +So there there are ways to protect yourself. +There are ways to keep yourself from getting an infection. +And if you've got especially if you've got like kids, right, that are doing the most dangerous. +Thing in the world, which is searching for song lyrics. +Yeah, that is the number one way to get an infection. +By the way, if you are looking for the lyrics to a song, chances are you're infected already. +It's it's that dangerous. +But if you've got kids, it's great because you can set an account up for the kids and completely lock that account down. +Right? +You're not you're not saying, well, you can't go to certain places or you're not saying that you're not. +You don't have to be 1984 with them. +You have to be overly Orwellian, but you can make it so that no matter what they do, they're not going to infect the computer. +And that's that's a pretty good deal. +So we either offer it as a monthly service or we do it as a one time. +All right. +It's just you want to do the one time thing. +It's 300 bucks and I'll make sure that you never get an infection again on that computer. +So if you're interested in that type of stuff, give me a call. +You can either call me here at the show. +790. +2040 or down shop 304. +8300. +Howard's down there today. +He'd be happy to talk with you about it if you want to. +I'm sure he just loves the extra phone call. +So 304 8300 if you want to if you want to irritate him, get ready. +Howard. +Yeah, he's just he wants to, I don't know, get things done. +And then the phone's ringing and I think he's there by himself today. +So yeah, he's the I'm sure he's going to love that. +Let's see chat room stuff. +We're going to. +Oh, yeah, we're talking about song lyrics in there. +I know what you should do is if you're really looking for the song lyrics, listen to the song. +There you go. +No, actually, there's there's some ways there's a couple of places that you can go. +There are like two different easy lyrics is one of them. +Easy lyrics is a good. +Okay site to go to now they have advertising on their site, which is where most of these infections come from. +And a lot of people just don't understand. +How that works. +But basically, it's let's imagine that all the websites are like individual properties and on some of these properties. +They have these big giant billboards on them and they hire another company to come and put things on that billboard. +And so the property managers themselves don't necessarily have any control over the advertising that's happening there. +They're just saying this space for rent and you go ahead and manage that. +So the ad brokers will go out and. +Find advertisers and sometimes those are those infectious people. +I had the people that are causing infections. +So they just buy legitimate advertising. +There was an instance where they heavily invested in PBS and MSNBC and basically millions of people got infected from the PBS website because of an ad banner that was on the website. +Now wasn't PBS's fault. +They don't have any control over the advertising. +But for a while there PBS was a dangerous place to go. +Until they figured out how to get rid of that ad banner. +So no bueno. +Yeah. +So it was it was bad news. +They should have done a whole episode of Sesame Street about, you know, viruses and infections and stuff. +That's how you know the times are changing, man. +All right. +Let's go ahead and take a quick break. +And when we come back, we're going to talk more about ways that you can make your computer go faster and keep yourself safe today in the Internet age. +This is Computer Guru Show. +We'll be right back. +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. +Join the chat right now at gurushow.com or call in. +This is the Computer Guru Show on KVOY, The Voice. +Mike Swanson, your computer guru, is just a click away. +Listen and watch. +Watch at gurushow.com. +This is the Computer Guru Show on KVOY, The Voice. +Welcome back to the Computer Guru Show. +My name is Mike. +Here to do what your technology needs and treat you like a person in the process. +790-2040. +That's 520-790-2040. +If you'd like to be part of the show, let's talk to Fernando. +Hey, Fernando. +How are you doing? +Hi. +I'm doing pretty good. +Thank you. +So a couple of things. +I have a we have wireless modem, you know, in our office. +And my computer seems the only one that sometimes will turn it on and there's no connection, +internet connection. +Everybody else is fine except me. +And so what we have to do is we have to turn off the modem, let it sit for a while, +and then turn it back on and then I'm connected again. +What can I do to kind of resolve that issue? +And the other question that I had, I caught the end part of the viruses +and how can I solve that issue? +Now, you guys can go ahead and guarantee that, I guess, install something that would prevent viruses +from getting into your computer. +Yeah, and it's not actually an install. +Well, I mean, it's sort of an install, but it's mostly a we prevent installation. +Okay. +So as far as the virus stuff is concerned, we put some settings on the computer that disallows execution +of any program outside of where we tell it. + +It's okay. +Okay. +So there is some discomfort if you're one of those users that likes to install lots of software. +However, if you're one of those users where you like the way your computer is right now +and you're okay with it not changing, then that's an excellent way for you to make sure +that you don't get any type of infection. +Okay, and that's me right there. +I don't really like to install apps or anything like that on my computer anyway, so. +Good. +But you're exactly the person I need to talk to you for that, then. +Okay, and where are you guys located? +We're at 510 East Fort Lowell. +Okay, 510. +That's first in Fort Lowell. +So tell me more about your computer, though, as far as the Wi-Fi stuff is concerned. +And it's happened with several of the computers that I've had, but what happens is that, you know, +I turn it off every evening. +I didn't used to do that. +I would leave it on. +But I just started turning off the computer. +And so sometimes when we turn it back on, what happens is that it'll say that it's not connected into the website. +There's no Internet connection. +So then I have to go over there and shut the modem off and turn everything off, basically, for, you know, a couple of minutes. +Click it back on, and then there it is. +And you're saying that while yours is unable to connect, other computers are? +Are, yes. +Okay. +And what kind of antivirus do you have on your computer right now? +Norton. +Yeah. +That's, yeah, baby. +Well, see, that was happening before anyway. +Yeah, well, still, that's not helping your problem at all. +Okay. +So I would say first thing I would do is, especially if it's the Norton Internet Security, is that's got to go. +Oh, okay. +All right. +We like antivirus. +It's just antivirus. +We don't like antivirus that does anything else. +Okay. +As far as we don't like it being a firewall. +Not a big fan of it, you know, basically trying to dominate your online presence. +Just be antivirus and be good antivirus. +That's really the criteria. +Uh-huh. +Is McAfee a good one? +Nope. +No, it's not. +McAfee and Norton both are, basically, kill it with fire. +Right? +Okay. +We just, we don't like either of those. +Okay. +McAfee's problem is that they have just miserable detection. + + + +Okay. + +They are a decent antivirus when they are being just antivirus, but they're slow as far as being able to catch infections while they're still relevant. +Right. +Now- +Well, that's what I didn't understand because if I had these, you know, why were they not working, you know? +So that you answered my question there. +Now, Norton is very good at basically first-line defense. +Right? +They catch those infections quick. +So as soon as something's out in the wild within 48 to 72 hours, they generally have something out there for it that's been pushed out to all of their clients. +Uh-huh. +However, the Norton products tend to be overly ambitious, and they like to basically just rule the computer. +Okay. +A lot of times, they are tweaking with settings that Windows is trying to tweak back. +So you end up with a lot of conflict. +Right. +And many times, you'll end up with no internet. +Right. +And that's my big problem with Norton is that it makes your computer really slow. +Okay. +And then on top of which, a lot of times, you'll end up with just no internet access for no reason at all. +Right. +And then you have to unplug the wire or reset the cable modem or the router or something to get back online. +So I'm going to suggest that at least a contributing factor to what's going on with your not being able to connect is some sort of configuration. +Okay. +So start with getting rid of that and putting something else on there. +Okay. +I would imagine that you'll have that problem less frequently. +Now, how old is this machine? +I just got that. +It's six months. +So it's a Windows 8 machine? +Yes, it is. +And I don't really particularly like it, probably because I don't really understand a lot of the stuff. +All right. +So here's what I'm going to tell you to do. +You either sign up for the lockdown service or the GPS, one of the two. +Or you are going to uninstall Norton utterly. +You will, I would say, download something called the Norton removal tool. +Uh-huh. +So after you've uninstalled Norton using the regular uninstall, you run this Norton removal tool. +And it eradicates Norton products from your computer. +Okay. +And all of the settings. +So put your computer back to default. +Then you are going to get the paid version of Malwarebytes. +You can start off with a free trial if you want. +But the paid version. +Is what is required. +Everybody listening to the show should have the paid version of Malwarebytes on their computer. +Unless they're Macs. +Uh-huh. +And that way, you are much more likely to keep yourself out of trouble. +So. +Okay. +I would suggest. +So what's it called again? +The Malware, what? +Malwarebytes. +B-Y-T-E-S. +Okay. +All right. +So you can go to Malwarebytes.org. +And you can get a copy there. +Okay. +Please do not Google search for Malwarebytes and then download the first thing you find. +Okay. +Okay. + + + + +You can also go to my website. +Go to gurushow.com. +And there's a useful link section with links to the Malwarebytes website. +Oh, okay. +Cool. +So that will probably help quite a bit. +Now, the only other thing that I have to ask is how old is this router? +It's probably a couple of years old. +All right. +If it's more than four or five years old, then one of the reasons that your other people may be able to connect and you can't is that they might have older machines. +And it's operating on an older standard. +Okay. +So the only other thing to look at there is you might need a newer router. +Now, the flip side to that is if you get one of the fancy, brand new, stupid, expensive ones. +Yeah. +Your older machines might not be able to connect all that well. +So you want to find something that's sort of in the middle. +The ones that we like, if you're looking locally, is there's these white Asus, the RT-16s. +Mm-hmm. +They tend to be very nice routers that work with just about every computer that we've put them in front of. +And they have very nice reliability. +Okay. +Well, thank you very much. +I appreciate that. +I'm probably going to be swinging by your place anyway. +But, yeah, thank you so much for the help. +I appreciate that. +It's what I do, man. +Thank you for the call. +I appreciate it. +Thank you. +Bye. +Thank you. +Thank you. +So, yeah, if you have infections. +Infections, you know, and most everybody does. +I mean, that's one of the reasons that you'll notice that we occasionally will say, +hey, guess what? +We're doing basically free tune-ups on machines. +It's because every machine that comes in, nearly all of them, I would say greater than 80% have infections on them. +And a lot of them are sort of innocuous. +They're the ones that are just, like, advertising infections. +Or whatever. +Or things that aren't terrible. +Right? +They're not necessarily stealing your data or encrypting your stuff. +But it's just so prevalent. +And people just get used to it. +They're like, yeah, you know, all that advertising, all the extra spam or the email worm that I have on my computer. +I just got used to it. +So, no need to fix it. +Come on now. +Drives me crazy. +Just fix it. +Right? +And then listen. +Because any time that you bring your computer into Computer Guru. +If you bring your computer in. +When you pick it up, we're going to be like, okay, this is what you need to do to not have this happen again. +And a lot of times, this is free advice. +Right? +It's like, you should install this piece of software. +You should take these cautionary steps to make sure that you don't get this infection again. +You should have a backup. +You should have all of these different things. +And we're going to tell you, this is what you need to do. +But if you don't listen, you're going to get an infection again. +And you just, you don't have to, it doesn't have to be that way. +Your computer doesn't have to be slow. +You don't have to be afraid of using your computer online. +You don't have to worry about your data getting stolen or your passwords being stolen. +You don't have to worry about any of that stuff. +It just takes a bit of planning. +Right? +And a little bit of advice. +All right. +Let's go and talk to Charles. +Hey, Charles. +How are you today? +Hey, good. +Good morning. +How are you? +I'm doing well. +Thank you. +Thank you. +Well, my problem's kind of weird. +I've got a new Windows 8.1 machine here in ACES. +My wife likes to use Thunderbird as her mail client. +Okay. +And since we installed it on this machine, it just doesn't play well. +It continually goes into not responding mode and we have to shut it down. +And she can't delete stuff from the inbox as easily. +And so, I'm going to tell you a little bit about this. +I'm just wondering, is that something you've heard of? +Are there better mail clients out there that'll work? +Anytime you use any of the Mozilla products, I die a little bit inside. +So, who's your mail provider? +Well, we have three of them. +She has three of them. +You know, Gmail, Yahoo, and another one. +Does it tend to happen where she's able to delete from one of the accounts but not the other? +No. +So, it's all of them? +Yeah. +It's the program. +And I don't know if there's a fix for it other than just to change the mail client. +All right. +Tell me a little bit more about the computer. +So, typical questions. +How old is it? +About two months. +Oh, it's a brand new one. +Okay. +And antivirus that's installed? +I took off Panda the other day because I was reading where someone said that could be an issue for it. +So, I took it off to see if the problem would go away. +It did not. +It did not, right? +Anything else on there? +The free version of Malwarebytes. +Okay. +Is it in trial mode or no? +It's the free version. +Yeah, but for the first month, it's going to run in trial mode. +Oh, okay. +So, I'm curious. +Is it still in trial mode? +I haven't used it in some time, so I can't honestly say. +Probably not. +Okay. +Probably not. +All right. +And so, since day one, when you put that on there, it's been that way? +Pretty much, yes. +Okay. +The mail accounts that you have, the Yahoo and Gmail ones, are they POP or IMAP? +Both those, I believe, are POP. +Okay. +POP should be the faster one. +All right. +So, IMAP is nicer. +We generally tell people to set your accounts up as IMAP so that there's some type of server-side synchronization. +Okay. +But... +Okay. +The Gmail is an IMAP. +Okay. +Good. +But the Yahoo is not. +Yahoo is a POP. +Yahoo is a POP. +All right. +Basically, just without knowing anything more about the machine or its configuration, and +you're saying that it's been that way since day one, I would suggest that it's probably +going to be a Thunderbird problem rather than a communication issue or some other type of +infection that's going on. +Because we have to look at those things first. +Whenever we hear, well, my mail client locks up all the time, first thing that jumps to +mind to me is there might be an email worm, right? +Where it's hijacking the mail program in the background and saying, hey, send out 10,000 +emails. +However, if you have Malwarebytes on there and you had Panda on there, that's pretty +unlikely, especially on a Windows 8 machine. +Can you recommend a different aggregating mail client of some kind? +Well, I'm a big fan of Outlook myself. +But the built-in mail client for 8, even though it's got kind of a weird interface, is also +an aggregating mail client. +So you can have multiple accounts in there. +Really, if you're looking for a decent email client, all the free ones are kind of terrible. +So there's something called EM client, which is if you're anti-Microsoft is okay. +It's kind of an Outlook clone. +But really, I like Outlook. +If you have Office, then chances are you've got like a 365 subscription. +It's not a big deal. + +And you have Outlook. +Just use it. +It's a decent mail program. +All righty. +Well, thank you for the information. +I'll check into that EM one there and maybe even try the built-in one. +I'm going to suggest one other thing. +You have Thunderbird installed, which means that you probably have Firefox installed. +I would say uninstall Firefox and see if it gets better. +Firefox has this weird issue. +And this is the reason I hate Firefox, is that on some machines, for no apparent reason, + + + + + + + +whatsoever, it just makes the machines slow for certain functions. +All right? +A lot of times, it's when you're typing. +And I have no idea why it would be that way. +But we find all the time that people will have Thunderbird installed and they're really +like, my computer's so slow. +It can't even keep up with me typing. +And not even in Firefox. +All right? +Firefox isn't even running. +It's just installed on the computer. +All right? +And they're typing in Word or in their email program. +And it's just dragging along. +And it's like not responding. +Or they'll type in some language language language language language language language language + + + +and then the words will catch up to them. +It's Firefox. +And all you do is uninstall Firefox, +the machine goes back to normal, right? +Instant typing again. +So we don't know why it does that with Firefox. +I honestly have not been invested enough to care. +So it's just been like uninstall Firefox +and problem solved. +So I would say... +What's that? +Go with Chrome. +Yeah, we like Chrome. +Chrome's a good browser. +I can dig it. +So I would say go with that and see what happens. +All right. +Well, thank you. +No problem. +Have yourself a lovely, lovely day. +You too. +All right. +So we're going to take a quick break +and then we are going to come back to more phone calls +and more helping you with free tech support +right here on the Computer Guru Show. +790-2040. +We'll be right back. +Whether you're dealing with +hardware installation or heaven forbid, +a virus... +No! No! No! +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours. +The website? +Gurushow.com. +Tune in, click in, and kick back. +This is the Computer Guru Show +on AM1030, KVOY The Voice. +Mike Swanson, your computer guru, +is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show. +Welcome to my world. +Welcome back to the Computer Guru Show. +My name is Mike. +Here to deal with your technology problems +and treat you like a person in the process. +I guess a lot of people don't realize that +I started Computer Guru almost 17 years ago +because I heard people, of people, +getting just remarkably ripped off +by computer companies. +By the local guys. +Because they're like car mechanics, right? +You don't know what they're doing. +It's some voodoo that happens +and you have to take their word for it. +And so the company has been built, +Computer Guru has been built, +on this idea that you are going to get treated fairly +no matter what. +We are not here to rip you off. +Of course we want to make money +and stay in business, +but we do so at... +mostly a minimum. +Just see my stress on payroll day +and you will know exactly what's going on there. +But it's like, you know, +we want to have good techs +that have good people skills +that are able to solve your problems +and explain to you in a way that you understand +that things are fixed, right? +And that it's not extraneous. +We're not going to do anything that is wasteful. +We're not going to... +We're basically... +We want... +We want to be able to get customers +to give us a little bit of money forever, right? +As far as I want you to trust me enough +that you are a lifer customer, +that you don't have to shop around, +that you'll always come back to me +because I treated you well +every time that you were in there. +The golden rule. +Right. +And the show itself, right? +This radio show, +it's... +You would be surprised +how many people think I make money off of this. +And it is way, way the opposite, right? +As far as... +As... +As... +For me, there's no money in this, right? +Even with the sponsors I have right now, +I lose money every week on this. +But I do it because one day I was driving around town +and I was listening to another radio show about computers, +which isn't even on the air anymore. +And they were... +They were giving out just these lazy, terrible answers. +And quite frankly, the wrong answers every time. +And I just... +I lost my mind. +I just drove across town, +found the nearest radio station +that didn't have a computer show on it, +and I said, +I have to compete with this. +And so it's my civic obligation +to make sure that I am helping people, +to make sure that I am helping in some way +to make the world of computers a little bit better +when it comes to users. +Because we want to treat you well. +We want to make sure that you're treated fairly +and that you are well-informed +as to what... +is actually happening. +So that's what the two components of my life +are all about, right? +Either the shop during the week +where we fix your computers and we do it right. +Or this radio show +where you get an opportunity to fix it yourself +with a little bit of guidance. +So you have an opportunity here. +If you want the help, +you give us a call. +All right? +If you want us to do it for you, +then you give us a call. +So you can either show up down at the shop +or you can give us a call here on the weekend. +I highly suggest that if you are a user +that has some paranoia about viruses +or you want to make sure that you're protected and safe +and you just want to make sure that you're doing well, +then you sign up for the group protection services +or the lockdown service +and we make sure that you don't have those problems +in the future. +And you know that you have some place that you can call. +We'll answer questions generally for free. +All right? +As long as you don't... +I try to monopolize all of my time. +But if you call the shop and say, +hey, I just have a question. +I just want to know how this works +or if I can do this +or what our advice is for whatever, +you call us, +we'll pick up the phone, +we will talk to you kindly for free. +Not too many businesses like that anymore. +Not in the computer world anyway. +So, I mean, if you... +That's my commitment to you, the user, right? +To you, my customers. +To you, my listeners. +All right? +I want to make sure that you are treated fairly all the time. +So give us a call down at the shop, 304-8300, +if you have any questions +or if you want to... +Or if you're interested in signing up +for any of the services that we have. +That's what we're here for. +And we want to keep it fun. +All right? +It's like... +To me, it's important that every day is a learning experience +and that it's fun +and that, you know, we're... +We shouldn't be afraid of our technology. +We shouldn't be... +We shouldn't hate our technology. +And so if you've got, you know, +if you've got a business +where you're just hating on your computers every day, right? +Or you got computers at home, right? +And you're afraid of them +or you just don't like it. +Or if it came installed with Vista XP on it, +you should... +Really, you should just take that thing out back +and office space it. +It's just... +It's no good. +But give us a call. +We're happy to help you out. +Also, you should visit our Patreon. +It's page... +It's patreon.com slash gurushow +and help us support the show. +Thank you very much for listening once again +to the Computer Guru Show. +We'll be back next week. +Thank you. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.json new file mode 100644 index 0000000..de9764a --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.json @@ -0,0 +1,113075 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 5424.625, + "segments": [ + { + "id": 0, + "text": "Computer running slow?", + "start": 1.7600000000000064, + "end": 3.16, + "words": [ + { + "word": " Computer", + "start": 1.7600000000000064, + "end": 2.4, + "probability": 0.49951171875 + }, + { + "word": " running", + "start": 2.4, + "end": 2.8, + "probability": 0.99560546875 + }, + { + "word": " slow?", + "start": 2.8, + "end": 3.16, + "probability": 1.0 + } + ] + }, + { + "id": 1, + "text": "Has your machine somehow acquired a life of its own?", + "start": 3.4, + "end": 6.64, + "words": [ + { + "word": " Has", + "start": 3.4, + "end": 4.04, + "probability": 1.0 + }, + { + "word": " your", + "start": 4.04, + "end": 4.2, + "probability": 1.0 + }, + { + "word": " machine", + "start": 4.2, + "end": 4.58, + "probability": 1.0 + }, + { + "word": " somehow", + "start": 4.58, + "end": 4.96, + "probability": 1.0 + }, + { + "word": " acquired", + "start": 4.96, + "end": 5.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 5.52, + "end": 5.8, + "probability": 1.0 + }, + { + "word": " life", + "start": 5.8, + "end": 6.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 6.06, + "end": 6.24, + "probability": 1.0 + }, + { + "word": " its", + "start": 6.24, + "end": 6.4, + "probability": 0.998046875 + }, + { + "word": " own?", + "start": 6.4, + "end": 6.64, + "probability": 1.0 + } + ] + }, + { + "id": 2, + "text": "Or do you simply desire a deeper and more meaningful connection?", + "start": 7.14, + "end": 11.3, + "words": [ + { + "word": " Or", + "start": 7.14, + "end": 7.78, + "probability": 0.9345703125 + }, + { + "word": " do", + "start": 7.78, + "end": 8.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 8.34, + "end": 8.54, + "probability": 1.0 + }, + { + "word": " simply", + "start": 8.54, + "end": 8.84, + "probability": 1.0 + }, + { + "word": " desire", + "start": 8.84, + "end": 9.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 9.24, + "end": 9.6, + "probability": 1.0 + }, + { + "word": " deeper", + "start": 9.6, + "end": 9.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 9.96, + "end": 10.2, + "probability": 1.0 + }, + { + "word": " more", + "start": 10.2, + "end": 10.4, + "probability": 1.0 + }, + { + "word": " meaningful", + "start": 10.4, + "end": 10.9, + "probability": 1.0 + }, + { + "word": " connection?", + "start": 10.9, + "end": 11.3, + "probability": 1.0 + } + ] + }, + { + "id": 3, + "text": "Be one with your operating system.", + "start": 11.82, + "end": 13.88, + "words": [ + { + "word": " Be", + "start": 11.82, + "end": 12.26, + "probability": 1.0 + }, + { + "word": " one", + "start": 12.26, + "end": 12.58, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 12.58, + "end": 12.86, + "probability": 1.0 + }, + { + "word": " your", + "start": 12.86, + "end": 13.0, + "probability": 1.0 + }, + { + "word": " operating", + "start": 13.0, + "end": 13.36, + "probability": 1.0 + }, + { + "word": " system.", + "start": 13.36, + "end": 13.88, + "probability": 1.0 + } + ] + }, + { + "id": 4, + "text": "It's Arizona's computer guru, Mike Swanson, and his show starts now.", + "start": 14.680000000000014, + "end": 19.62, + "words": [ + { + "word": " It's", + "start": 14.680000000000014, + "end": 15.320000000000007, + "probability": 1.0 + }, + { + "word": " Arizona's", + "start": 15.320000000000007, + "end": 15.96, + "probability": 1.0 + }, + { + "word": " computer", + "start": 15.96, + "end": 16.2, + "probability": 0.92822265625 + }, + { + "word": " guru,", + "start": 16.2, + "end": 16.74, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 16.92, + "end": 17.24, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 17.24, + "end": 17.62, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 17.86, + "end": 18.2, + "probability": 1.0 + }, + { + "word": " his", + "start": 18.2, + "end": 18.38, + "probability": 1.0 + }, + { + "word": " show", + "start": 18.38, + "end": 18.68, + "probability": 1.0 + }, + { + "word": " starts", + "start": 18.68, + "end": 19.16, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 19.16, + "end": 19.62, + "probability": 1.0 + } + ] + }, + { + "id": 5, + "text": "Listen in, chat in, and watch live streaming at gurushow.com.", + "start": 19.94, + "end": 24.52, + "words": [ + { + "word": " Listen", + "start": 19.94, + "end": 20.44, + "probability": 1.0 + }, + { + "word": " in,", + "start": 20.44, + "end": 20.68, + "probability": 1.0 + }, + { + "word": " chat", + "start": 20.76, + "end": 21.22, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 21.22, + "end": 21.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 21.64, + "end": 21.96, + "probability": 1.0 + }, + { + "word": " watch", + "start": 21.96, + "end": 22.22, + "probability": 1.0 + }, + { + "word": " live", + "start": 22.22, + "end": 22.48, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 22.48, + "end": 22.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 22.84, + "end": 23.3, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 23.3, + "end": 23.94, + "probability": 0.845703125 + }, + { + "word": ".com.", + "start": 23.94, + "end": 24.52, + "probability": 1.0 + } + ] + }, + { + "id": 6, + "text": "Want your voice to be heard?", + "start": 24.76, + "end": 26.2, + "words": [ + { + "word": " Want", + "start": 24.76, + "end": 25.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 25.22, + "end": 25.38, + "probability": 1.0 + }, + { + "word": " voice", + "start": 25.38, + "end": 25.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 25.64, + "end": 25.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 25.8, + "end": 25.92, + "probability": 1.0 + }, + { + "word": " heard?", + "start": 25.92, + "end": 26.2, + "probability": 1.0 + } + ] + }, + { + "id": 7, + "text": "Call in with your questions and riddles.", + "start": 26.3, + "end": 28.1, + "words": [ + { + "word": " Call", + "start": 26.3, + "end": 26.64, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 26.64, + "end": 26.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 26.9, + "end": 27.08, + "probability": 1.0 + }, + { + "word": " your", + "start": 27.08, + "end": 27.22, + "probability": 1.0 + }, + { + "word": " questions", + "start": 27.22, + "end": 27.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 27.62, + "end": 27.8, + "probability": 0.99951171875 + }, + { + "word": " riddles.", + "start": 27.8, + "end": 28.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 8, + "text": "The number is 520-790-2040.", + "start": 28.1, + "end": 31.66, + "words": [ + { + "word": " The", + "start": 28.1, + "end": 28.56, + "probability": 0.91650390625 + }, + { + "word": " number", + "start": 28.56, + "end": 28.78, + "probability": 0.99462890625 + }, + { + "word": " is", + "start": 28.78, + "end": 28.94, + "probability": 0.99609375 + }, + { + "word": " 520", + "start": 28.94, + "end": 29.52, + "probability": 0.99609375 + }, + { + "word": "-790", + "start": 29.52, + "end": 30.6, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 30.6, + "end": 31.66, + "probability": 1.0 + } + ] + }, + { + "id": 9, + "text": "This is the Computer Guru Show on AM1030.", + "start": 32.06, + "end": 35.24, + "words": [ + { + "word": " This", + "start": 32.06, + "end": 32.42, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 32.42, + "end": 32.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 32.78, + "end": 32.86, + "probability": 0.861328125 + }, + { + "word": " Computer", + "start": 32.86, + "end": 33.16, + "probability": 0.99560546875 + }, + { + "word": " Guru", + "start": 33.16, + "end": 33.46, + "probability": 0.99658203125 + }, + { + "word": " Show", + "start": 33.46, + "end": 33.84, + "probability": 0.990234375 + }, + { + "word": " on", + "start": 33.84, + "end": 34.26, + "probability": 0.998046875 + }, + { + "word": " AM1030.", + "start": 34.26, + "end": 35.24, + "probability": 0.88720703125 + } + ] + }, + { + "id": 10, + "text": "KVOI, The Voice.", + "start": 36.14, + "end": 37.18, + "words": [ + { + "word": " KVOI,", + "start": 36.14, + "end": 36.5, + "probability": 0.84033203125 + }, + { + "word": " The", + "start": 36.5, + "end": 36.82, + "probability": 0.865234375 + }, + { + "word": " Voice.", + "start": 36.82, + "end": 37.18, + "probability": 1.0 + } + ] + }, + { + "id": 11, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 38.72, + "end": 40.44, + "words": [ + { + "word": " Hello", + "start": 38.72, + "end": 39.08, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 39.08, + "end": 39.28, + "probability": 0.8720703125 + }, + { + "word": " welcome", + "start": 39.28, + "end": 39.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 39.5, + "end": 39.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 39.68, + "end": 39.74, + "probability": 0.998046875 + }, + { + "word": " Computer", + "start": 39.74, + "end": 39.98, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 39.98, + "end": 40.22, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 40.22, + "end": 40.44, + "probability": 1.0 + } + ] + }, + { + "id": 12, + "text": "My name is Mike, here to deal with your technology needs and treat you like a person in the process.", + "start": 40.48, + "end": 44.8, + "words": [ + { + "word": " My", + "start": 40.48, + "end": 40.58, + "probability": 0.99951171875 + }, + { + "word": " name", + "start": 40.58, + "end": 40.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 40.7, + "end": 40.76, + "probability": 0.9345703125 + }, + { + "word": " Mike,", + "start": 40.76, + "end": 40.98, + "probability": 1.0 + }, + { + "word": " here", + "start": 41.02, + "end": 41.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 41.18, + "end": 41.3, + "probability": 1.0 + }, + { + "word": " deal", + "start": 41.3, + "end": 41.46, + "probability": 1.0 + }, + { + "word": " with", + "start": 41.46, + "end": 41.56, + "probability": 1.0 + }, + { + "word": " your", + "start": 41.56, + "end": 41.7, + "probability": 1.0 + }, + { + "word": " technology", + "start": 41.7, + "end": 42.08, + "probability": 1.0 + }, + { + "word": " needs", + "start": 42.08, + "end": 42.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 42.48, + "end": 42.76, + "probability": 0.99853515625 + }, + { + "word": " treat", + "start": 42.76, + "end": 43.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 43.06, + "end": 43.28, + "probability": 1.0 + }, + { + "word": " like", + "start": 43.28, + "end": 43.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 43.44, + "end": 43.58, + "probability": 1.0 + }, + { + "word": " person", + "start": 43.58, + "end": 43.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 43.92, + "end": 44.18, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 44.18, + "end": 44.32, + "probability": 1.0 + }, + { + "word": " process.", + "start": 44.32, + "end": 44.8, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "790-2040.", + "start": 45.54, + "end": 46.26, + "words": [ + { + "word": " 790", + "start": 45.54, + "end": 45.9, + "probability": 0.9833984375 + }, + { + "word": "-2040.", + "start": 45.9, + "end": 46.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 14, + "text": "That's 520-790-2040 if you want to be part of the show.", + "start": 46.56, + "end": 50.28, + "words": [ + { + "word": " That's", + "start": 46.56, + "end": 46.92, + "probability": 0.9990234375 + }, + { + "word": " 520", + "start": 46.92, + "end": 47.4, + "probability": 0.9990234375 + }, + { + "word": "-790", + "start": 47.4, + "end": 48.26, + "probability": 1.0 + }, + { + "word": "-2040", + "start": 48.26, + "end": 49.22, + "probability": 1.0 + }, + { + "word": " if", + "start": 49.22, + "end": 49.56, + "probability": 0.68505859375 + }, + { + "word": " you", + "start": 49.56, + "end": 49.64, + "probability": 1.0 + }, + { + "word": " want", + "start": 49.64, + "end": 49.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 49.72, + "end": 49.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 49.8, + "end": 49.84, + "probability": 1.0 + }, + { + "word": " part", + "start": 49.84, + "end": 49.98, + "probability": 0.42626953125 + }, + { + "word": " of", + "start": 49.98, + "end": 50.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 50.06, + "end": 50.12, + "probability": 1.0 + }, + { + "word": " show.", + "start": 50.12, + "end": 50.28, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "This is your free tech support for the weekend.", + "start": 50.36, + "end": 53.62, + "words": [ + { + "word": " This", + "start": 50.36, + "end": 50.5, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 50.5, + "end": 50.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 50.9, + "end": 51.7, + "probability": 1.0 + }, + { + "word": " free", + "start": 51.7, + "end": 52.16, + "probability": 1.0 + }, + { + "word": " tech", + "start": 52.16, + "end": 52.56, + "probability": 0.99951171875 + }, + { + "word": " support", + "start": 52.56, + "end": 52.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 52.8, + "end": 53.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 53.14, + "end": 53.24, + "probability": 0.99951171875 + }, + { + "word": " weekend.", + "start": 53.24, + "end": 53.62, + "probability": 1.0 + } + ] + }, + { + "id": 16, + "text": "All you got to do is give us a call, let us know what's going on, and we can help you out.", + "start": 54.32, + "end": 57.34, + "words": [ + { + "word": " All", + "start": 54.32, + "end": 54.68, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 54.68, + "end": 54.8, + "probability": 1.0 + }, + { + "word": " got", + "start": 54.8, + "end": 54.88, + "probability": 0.49951171875 + }, + { + "word": " to", + "start": 54.88, + "end": 54.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 54.9, + "end": 55.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 55.0, + "end": 55.04, + "probability": 1.0 + }, + { + "word": " give", + "start": 55.04, + "end": 55.14, + "probability": 1.0 + }, + { + "word": " us", + "start": 55.14, + "end": 55.24, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 55.24, + "end": 55.24, + "probability": 1.0 + }, + { + "word": " call,", + "start": 55.24, + "end": 55.38, + "probability": 1.0 + }, + { + "word": " let", + "start": 55.46, + "end": 55.56, + "probability": 1.0 + }, + { + "word": " us", + "start": 55.56, + "end": 55.66, + "probability": 1.0 + }, + { + "word": " know", + "start": 55.66, + "end": 55.76, + "probability": 1.0 + }, + { + "word": " what's", + "start": 55.76, + "end": 55.94, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 55.94, + "end": 56.04, + "probability": 1.0 + }, + { + "word": " on,", + "start": 56.04, + "end": 56.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 56.4, + "end": 56.74, + "probability": 1.0 + }, + { + "word": " we", + "start": 56.74, + "end": 56.84, + "probability": 1.0 + }, + { + "word": " can", + "start": 56.84, + "end": 56.98, + "probability": 1.0 + }, + { + "word": " help", + "start": 56.98, + "end": 57.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 57.14, + "end": 57.26, + "probability": 1.0 + }, + { + "word": " out.", + "start": 57.26, + "end": 57.34, + "probability": 0.99755859375 + } + ] + }, + { + "id": 17, + "text": "I've got Rob here.", + "start": 57.36, + "end": 58.02, + "words": [ + { + "word": " I've", + "start": 57.36, + "end": 57.44, + "probability": 0.822265625 + }, + { + "word": " got", + "start": 57.44, + "end": 57.44, + "probability": 1.0 + }, + { + "word": " Rob", + "start": 57.44, + "end": 57.68, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 57.68, + "end": 58.02, + "probability": 0.9912109375 + } + ] + }, + { + "id": 18, + "text": "I am here this week.", + "start": 58.1, + "end": 59.14, + "words": [ + { + "word": " I", + "start": 58.1, + "end": 58.44, + "probability": 0.9560546875 + }, + { + "word": " am", + "start": 58.44, + "end": 58.62, + "probability": 0.99658203125 + }, + { + "word": " here", + "start": 58.62, + "end": 58.76, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 58.76, + "end": 58.94, + "probability": 0.998046875 + }, + { + "word": " week.", + "start": 58.94, + "end": 59.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 19, + "text": "Tara is MIA.", + "start": 59.18, + "end": 60.02, + "words": [ + { + "word": " Tara", + "start": 59.18, + "end": 59.38, + "probability": 0.9697265625 + }, + { + "word": " is", + "start": 59.38, + "end": 59.62, + "probability": 0.9990234375 + }, + { + "word": " MIA.", + "start": 59.62, + "end": 60.02, + "probability": 0.962890625 + } + ] + }, + { + "id": 20, + "text": "She's out of here.", + "start": 60.26, + "end": 61.1, + "words": [ + { + "word": " She's", + "start": 60.26, + "end": 60.6, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 60.6, + "end": 60.78, + "probability": 0.88525390625 + }, + { + "word": " of", + "start": 60.78, + "end": 60.94, + "probability": 1.0 + }, + { + "word": " here.", + "start": 60.94, + "end": 61.1, + "probability": 1.0 + } + ] + }, + { + "id": 21, + "text": "Seems like I'm always covering for her.", + "start": 61.2, + "end": 62.56, + "words": [ + { + "word": " Seems", + "start": 61.2, + "end": 61.28, + "probability": 0.81982421875 + }, + { + "word": " like", + "start": 61.28, + "end": 61.44, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 61.44, + "end": 61.58, + "probability": 1.0 + }, + { + "word": " always", + "start": 61.58, + "end": 61.84, + "probability": 1.0 + }, + { + "word": " covering", + "start": 61.84, + "end": 62.14, + "probability": 0.99755859375 + }, + { + "word": " for", + "start": 62.14, + "end": 62.42, + "probability": 1.0 + }, + { + "word": " her.", + "start": 62.42, + "end": 62.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 22, + "text": "Always.", + "start": 62.72, + "end": 63.12, + "words": [ + { + "word": " Always.", + "start": 62.72, + "end": 63.12, + "probability": 0.9970703125 + } + ] + }, + { + "id": 23, + "text": "Yeah.", + "start": 63.28, + "end": 63.64, + "words": [ + { + "word": " Yeah.", + "start": 63.28, + "end": 63.64, + "probability": 0.385986328125 + } + ] + }, + { + "id": 24, + "text": "Apparently she just doesn't know when to show up to the show.", + "start": 63.96, + "end": 66.34, + "words": [ + { + "word": " Apparently", + "start": 63.96, + "end": 64.36, + "probability": 0.99658203125 + }, + { + "word": " she", + "start": 64.36, + "end": 64.58, + "probability": 0.77978515625 + }, + { + "word": " just", + "start": 64.58, + "end": 64.74, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 64.74, + "end": 65.0, + "probability": 1.0 + }, + { + "word": " know", + "start": 65.0, + "end": 65.14, + "probability": 1.0 + }, + { + "word": " when", + "start": 65.14, + "end": 65.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 65.28, + "end": 65.4, + "probability": 1.0 + }, + { + "word": " show", + "start": 65.4, + "end": 65.64, + "probability": 1.0 + }, + { + "word": " up", + "start": 65.64, + "end": 65.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 65.84, + "end": 66.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 66.0, + "end": 66.06, + "probability": 1.0 + }, + { + "word": " show.", + "start": 66.06, + "end": 66.34, + "probability": 1.0 + } + ] + }, + { + "id": 25, + "text": "No, it's just coincidence.", + "start": 66.76, + "end": 68.0, + "words": [ + { + "word": " No,", + "start": 66.76, + "end": 67.16, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 67.24, + "end": 67.38, + "probability": 1.0 + }, + { + "word": " just", + "start": 67.38, + "end": 67.6, + "probability": 0.96875 + }, + { + "word": " coincidence.", + "start": 67.6, + "end": 68.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 26, + "text": "She's not here and I am.", + "start": 68.06, + "end": 69.02, + "words": [ + { + "word": " She's", + "start": 68.06, + "end": 68.34, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 68.34, + "end": 68.48, + "probability": 1.0 + }, + { + "word": " here", + "start": 68.48, + "end": 68.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 68.64, + "end": 68.78, + "probability": 0.76513671875 + }, + { + "word": " I", + "start": 68.78, + "end": 68.86, + "probability": 1.0 + }, + { + "word": " am.", + "start": 68.86, + "end": 69.02, + "probability": 1.0 + } + ] + }, + { + "id": 27, + "text": "Yep.", + "start": 69.2, + "end": 69.6, + "words": [ + { + "word": " Yep.", + "start": 69.2, + "end": 69.6, + "probability": 0.86279296875 + } + ] + }, + { + "id": 28, + "text": "She's, uh, what's she doing?", + "start": 70.06, + "end": 70.98, + "words": [ + { + "word": " She's,", + "start": 70.06, + "end": 70.46, + "probability": 0.80126953125 + }, + { + "word": " uh,", + "start": 70.46, + "end": 70.48, + "probability": 0.61083984375 + }, + { + "word": " what's", + "start": 70.62, + "end": 70.84, + "probability": 0.98095703125 + }, + { + "word": " she", + "start": 70.84, + "end": 70.86, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 70.86, + "end": 70.98, + "probability": 0.6142578125 + } + ] + }, + { + "id": 29, + "text": "She's, like, on a beach somewhere sipping Mai Tais, something like that.", + "start": 71.12, + "end": 74.4, + "words": [ + { + "word": " She's,", + "start": 71.12, + "end": 71.32, + "probability": 0.916015625 + }, + { + "word": " like,", + "start": 71.4, + "end": 72.1, + "probability": 0.9736328125 + }, + { + "word": " on", + "start": 72.2, + "end": 72.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 72.3, + "end": 72.44, + "probability": 1.0 + }, + { + "word": " beach", + "start": 72.44, + "end": 72.64, + "probability": 1.0 + }, + { + "word": " somewhere", + "start": 72.64, + "end": 72.9, + "probability": 0.99951171875 + }, + { + "word": " sipping", + "start": 72.9, + "end": 73.2, + "probability": 0.88671875 + }, + { + "word": " Mai", + "start": 73.2, + "end": 73.42, + "probability": 0.94580078125 + }, + { + "word": " Tais,", + "start": 73.42, + "end": 73.72, + "probability": 0.9736328125 + }, + { + "word": " something", + "start": 73.78, + "end": 74.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 74.1, + "end": 74.26, + "probability": 1.0 + }, + { + "word": " that.", + "start": 74.26, + "end": 74.4, + "probability": 1.0 + } + ] + }, + { + "id": 30, + "text": "Man.", + "start": 74.76, + "end": 75.16, + "words": [ + { + "word": " Man.", + "start": 74.76, + "end": 75.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 31, + "text": "Must be nice.", + "start": 75.82, + "end": 76.58, + "words": [ + { + "word": " Must", + "start": 75.82, + "end": 76.22, + "probability": 0.9970703125 + }, + { + "word": " be", + "start": 76.22, + "end": 76.36, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 76.36, + "end": 76.58, + "probability": 1.0 + } + ] + }, + { + "id": 32, + "text": "She's probably listening right now and laughing because she's not here.", + "start": 77.16, + "end": 79.62, + "words": [ + { + "word": " She's", + "start": 77.16, + "end": 77.56, + "probability": 1.0 + }, + { + "word": " probably", + "start": 77.56, + "end": 77.68, + "probability": 1.0 + }, + { + "word": " listening", + "start": 77.68, + "end": 77.92, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 77.92, + "end": 78.12, + "probability": 1.0 + }, + { + "word": " now", + "start": 78.12, + "end": 78.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 78.34, + "end": 78.48, + "probability": 1.0 + }, + { + "word": " laughing", + "start": 78.48, + "end": 78.74, + "probability": 1.0 + }, + { + "word": " because", + "start": 78.74, + "end": 79.06, + "probability": 0.99951171875 + }, + { + "word": " she's", + "start": 79.06, + "end": 79.28, + "probability": 1.0 + }, + { + "word": " not", + "start": 79.28, + "end": 79.42, + "probability": 1.0 + }, + { + "word": " here.", + "start": 79.42, + "end": 79.62, + "probability": 1.0 + } + ] + }, + { + "id": 33, + "text": "Yep.", + "start": 80.16, + "end": 80.44, + "words": [ + { + "word": " Yep.", + "start": 80.16, + "end": 80.44, + "probability": 0.98876953125 + } + ] + }, + { + "id": 34, + "text": "She's probably just being like, man, look at all this sand and not 117 degree weather that I'm experiencing.", + "start": 80.7, + "end": 87.72, + "words": [ + { + "word": " She's", + "start": 80.7, + "end": 81.1, + "probability": 0.986328125 + }, + { + "word": " probably", + "start": 81.1, + "end": 81.5, + "probability": 1.0 + }, + { + "word": " just", + "start": 81.5, + "end": 81.78, + "probability": 0.99951171875 + }, + { + "word": " being", + "start": 81.78, + "end": 81.96, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 81.96, + "end": 82.14, + "probability": 0.9912109375 + }, + { + "word": " man,", + "start": 82.26, + "end": 82.48, + "probability": 0.9794921875 + }, + { + "word": " look", + "start": 82.5, + "end": 82.66, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 82.66, + "end": 83.0, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 83.0, + "end": 83.08, + "probability": 1.0 + }, + { + "word": " this", + "start": 83.08, + "end": 83.24, + "probability": 0.96337890625 + }, + { + "word": " sand", + "start": 83.24, + "end": 83.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 83.64, + "end": 84.14, + "probability": 0.9951171875 + }, + { + "word": " not", + "start": 84.14, + "end": 84.78, + "probability": 0.9892578125 + }, + { + "word": " 117", + "start": 84.78, + "end": 85.94, + "probability": 0.978515625 + }, + { + "word": " degree", + "start": 85.94, + "end": 86.2, + "probability": 0.958984375 + }, + { + "word": " weather", + "start": 86.2, + "end": 86.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 86.56, + "end": 87.06, + "probability": 0.9873046875 + }, + { + "word": " I'm", + "start": 87.06, + "end": 87.4, + "probability": 1.0 + }, + { + "word": " experiencing.", + "start": 87.4, + "end": 87.72, + "probability": 1.0 + } + ] + }, + { + "id": 35, + "text": "Yeah.", + "start": 88.1, + "end": 88.36, + "words": [ + { + "word": " Yeah.", + "start": 88.1, + "end": 88.36, + "probability": 0.96240234375 + } + ] + }, + { + "id": 36, + "text": "Let's just say that, uh, here in Tucson, we need to spend this weekend indoors.", + "start": 88.42, + "end": 92.06, + "words": [ + { + "word": " Let's", + "start": 88.42, + "end": 88.78, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 88.78, + "end": 88.92, + "probability": 1.0 + }, + { + "word": " say", + "start": 88.92, + "end": 89.16, + "probability": 1.0 + }, + { + "word": " that,", + "start": 89.16, + "end": 89.34, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 89.34, + "end": 89.5, + "probability": 0.96142578125 + }, + { + "word": " here", + "start": 89.54, + "end": 89.8, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 89.8, + "end": 89.94, + "probability": 1.0 + }, + { + "word": " Tucson,", + "start": 89.94, + "end": 90.22, + "probability": 1.0 + }, + { + "word": " we", + "start": 90.32, + "end": 90.78, + "probability": 1.0 + }, + { + "word": " need", + "start": 90.78, + "end": 90.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 90.98, + "end": 91.1, + "probability": 1.0 + }, + { + "word": " spend", + "start": 91.1, + "end": 91.3, + "probability": 1.0 + }, + { + "word": " this", + "start": 91.3, + "end": 91.48, + "probability": 1.0 + }, + { + "word": " weekend", + "start": 91.48, + "end": 91.68, + "probability": 1.0 + }, + { + "word": " indoors.", + "start": 91.68, + "end": 92.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 37, + "text": "Yeah.", + "start": 92.5, + "end": 92.9, + "words": [ + { + "word": " Yeah.", + "start": 92.5, + "end": 92.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 38, + "text": "You're not supposed to talk about the weather on radio, but holy moly, it's hot.", + "start": 93.16, + "end": 97.08, + "words": [ + { + "word": " You're", + "start": 93.16, + "end": 93.56, + "probability": 0.99169921875 + }, + { + "word": " not", + "start": 93.56, + "end": 93.6, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 93.6, + "end": 93.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 93.76, + "end": 93.9, + "probability": 1.0 + }, + { + "word": " talk", + "start": 93.9, + "end": 94.06, + "probability": 1.0 + }, + { + "word": " about", + "start": 94.06, + "end": 94.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 94.24, + "end": 94.38, + "probability": 1.0 + }, + { + "word": " weather", + "start": 94.38, + "end": 94.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 94.54, + "end": 94.68, + "probability": 1.0 + }, + { + "word": " radio,", + "start": 94.68, + "end": 94.92, + "probability": 0.998046875 + }, + { + "word": " but", + "start": 95.04, + "end": 95.28, + "probability": 1.0 + }, + { + "word": " holy", + "start": 95.28, + "end": 96.32, + "probability": 0.9375 + }, + { + "word": " moly,", + "start": 96.32, + "end": 96.72, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 96.74, + "end": 96.96, + "probability": 1.0 + }, + { + "word": " hot.", + "start": 96.96, + "end": 97.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 39, + "text": "It's not weather anymore.", + "start": 97.80000000000001, + "end": 98.9, + "words": [ + { + "word": " It's", + "start": 97.80000000000001, + "end": 98.2, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 98.2, + "end": 98.3, + "probability": 1.0 + }, + { + "word": " weather", + "start": 98.3, + "end": 98.6, + "probability": 0.99951171875 + }, + { + "word": " anymore.", + "start": 98.6, + "end": 98.9, + "probability": 1.0 + } + ] + }, + { + "id": 40, + "text": "That's like a hazard.", + "start": 99.06, + "end": 100.38, + "words": [ + { + "word": " That's", + "start": 99.06, + "end": 99.26, + "probability": 1.0 + }, + { + "word": " like", + "start": 99.26, + "end": 99.38, + "probability": 0.98095703125 + }, + { + "word": " a", + "start": 99.38, + "end": 99.5, + "probability": 1.0 + }, + { + "word": " hazard.", + "start": 99.5, + "end": 100.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 41, + "text": "It's some sort of, there's a natural disaster created by the sun happening here this weekend.", + "start": 100.54, + "end": 105.06, + "words": [ + { + "word": " It's", + "start": 100.54, + "end": 100.9, + "probability": 0.83837890625 + }, + { + "word": " some", + "start": 100.9, + "end": 101.26, + "probability": 0.98828125 + }, + { + "word": " sort", + "start": 101.26, + "end": 101.6, + "probability": 1.0 + }, + { + "word": " of,", + "start": 101.6, + "end": 101.72, + "probability": 1.0 + }, + { + "word": " there's", + "start": 101.74, + "end": 101.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 101.86, + "end": 101.9, + "probability": 1.0 + }, + { + "word": " natural", + "start": 101.9, + "end": 102.18, + "probability": 1.0 + }, + { + "word": " disaster", + "start": 102.18, + "end": 102.6, + "probability": 1.0 + }, + { + "word": " created", + "start": 102.6, + "end": 102.84, + "probability": 0.68505859375 + }, + { + "word": " by", + "start": 102.84, + "end": 103.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 103.08, + "end": 103.18, + "probability": 1.0 + }, + { + "word": " sun", + "start": 103.18, + "end": 103.48, + "probability": 0.99951171875 + }, + { + "word": " happening", + "start": 103.48, + "end": 104.38, + "probability": 0.99462890625 + }, + { + "word": " here", + "start": 104.38, + "end": 104.62, + "probability": 1.0 + }, + { + "word": " this", + "start": 104.62, + "end": 104.78, + "probability": 0.99951171875 + }, + { + "word": " weekend.", + "start": 104.78, + "end": 105.06, + "probability": 1.0 + } + ] + }, + { + "id": 42, + "text": "It's, uh, it is unpleasant.", + "start": 105.3, + "end": 106.94, + "words": [ + { + "word": " It's,", + "start": 105.3, + "end": 105.7, + "probability": 0.9990234375 + }, + { + "word": " uh,", + "start": 105.7, + "end": 105.92, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 105.98, + "end": 106.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 106.3, + "end": 106.4, + "probability": 1.0 + }, + { + "word": " unpleasant.", + "start": 106.4, + "end": 106.94, + "probability": 1.0 + } + ] + }, + { + "id": 43, + "text": "I have to go buy some sunscreen or something today.", + "start": 107.58000000000001, + "end": 110.0, + "words": [ + { + "word": " I", + "start": 107.58000000000001, + "end": 107.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 107.98, + "end": 108.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 108.12, + "end": 108.16, + "probability": 1.0 + }, + { + "word": " go", + "start": 108.16, + "end": 108.26, + "probability": 1.0 + }, + { + "word": " buy", + "start": 108.26, + "end": 108.52, + "probability": 1.0 + }, + { + "word": " some", + "start": 108.52, + "end": 108.74, + "probability": 1.0 + }, + { + "word": " sunscreen", + "start": 108.74, + "end": 109.28, + "probability": 1.0 + }, + { + "word": " or", + "start": 109.28, + "end": 109.58, + "probability": 1.0 + }, + { + "word": " something", + "start": 109.58, + "end": 109.78, + "probability": 0.99951171875 + }, + { + "word": " today.", + "start": 109.78, + "end": 110.0, + "probability": 0.99658203125 + } + ] + }, + { + "id": 44, + "text": "Like at some point in the future, they're going to show clips from this weekend in IMAX theaters with Kevin Bacon talking over it.", + "start": 110.08, + "end": 115.06, + "words": [ + { + "word": " Like", + "start": 110.08, + "end": 110.28, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 110.28, + "end": 110.4, + "probability": 0.95458984375 + }, + { + "word": " some", + "start": 110.4, + "end": 110.52, + "probability": 1.0 + }, + { + "word": " point", + "start": 110.52, + "end": 110.76, + "probability": 1.0 + }, + { + "word": " in", + "start": 110.76, + "end": 110.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 110.84, + "end": 110.88, + "probability": 1.0 + }, + { + "word": " future,", + "start": 110.88, + "end": 111.14, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 111.2, + "end": 111.32, + "probability": 1.0 + }, + { + "word": " going", + "start": 111.32, + "end": 111.4, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 111.4, + "end": 111.5, + "probability": 1.0 + }, + { + "word": " show", + "start": 111.5, + "end": 111.68, + "probability": 1.0 + }, + { + "word": " clips", + "start": 111.68, + "end": 111.98, + "probability": 1.0 + }, + { + "word": " from", + "start": 111.98, + "end": 112.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 112.14, + "end": 112.3, + "probability": 1.0 + }, + { + "word": " weekend", + "start": 112.3, + "end": 112.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 112.58, + "end": 112.82, + "probability": 0.8701171875 + }, + { + "word": " IMAX", + "start": 112.82, + "end": 113.2, + "probability": 0.99853515625 + }, + { + "word": " theaters", + "start": 113.2, + "end": 113.46, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 113.46, + "end": 113.74, + "probability": 1.0 + }, + { + "word": " Kevin", + "start": 113.74, + "end": 113.98, + "probability": 0.99951171875 + }, + { + "word": " Bacon", + "start": 113.98, + "end": 114.22, + "probability": 0.9990234375 + }, + { + "word": " talking", + "start": 114.22, + "end": 114.54, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 114.54, + "end": 114.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 114.88, + "end": 115.06, + "probability": 1.0 + } + ] + }, + { + "id": 45, + "text": "I saw some picture.", + "start": 115.14, + "end": 116.46, + "words": [ + { + "word": " I", + "start": 115.14, + "end": 115.5, + "probability": 0.99951171875 + }, + { + "word": " saw", + "start": 115.5, + "end": 115.68, + "probability": 1.0 + }, + { + "word": " some", + "start": 115.68, + "end": 115.94, + "probability": 1.0 + }, + { + "word": " picture.", + "start": 115.94, + "end": 116.46, + "probability": 0.98974609375 + } + ] + }, + { + "id": 46, + "text": "Uh, I don't know where it was.", + "start": 116.72, + "end": 118.08, + "words": [ + { + "word": " Uh,", + "start": 116.72, + "end": 117.12, + "probability": 0.7109375 + }, + { + "word": " I", + "start": 117.22, + "end": 117.32, + "probability": 1.0 + }, + { + "word": " don't", + "start": 117.32, + "end": 117.46, + "probability": 1.0 + }, + { + "word": " know", + "start": 117.46, + "end": 117.56, + "probability": 1.0 + }, + { + "word": " where", + "start": 117.56, + "end": 117.8, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 117.8, + "end": 117.94, + "probability": 0.998046875 + }, + { + "word": " was.", + "start": 117.94, + "end": 118.08, + "probability": 0.6044921875 + } + ] + }, + { + "id": 47, + "text": "I don't know where it was at, but apparently they made their light posts on a pier out of some type of plastic and they were just all melted and leaning over.", + "start": 118.08, + "end": 127.62, + "words": [ + { + "word": " I", + "start": 118.08, + "end": 118.08, + "probability": 0.09326171875 + }, + { + "word": " don't", + "start": 118.08, + "end": 118.08, + "probability": 0.60205078125 + }, + { + "word": " know", + "start": 118.08, + "end": 118.08, + "probability": 0.908203125 + }, + { + "word": " where", + "start": 118.08, + "end": 118.08, + "probability": 0.8662109375 + }, + { + "word": " it", + "start": 118.08, + "end": 118.08, + "probability": 0.33447265625 + }, + { + "word": " was", + "start": 118.08, + "end": 118.08, + "probability": 0.98779296875 + }, + { + "word": " at,", + "start": 118.08, + "end": 118.3, + "probability": 0.99658203125 + }, + { + "word": " but", + "start": 118.52, + "end": 119.48, + "probability": 1.0 + }, + { + "word": " apparently", + "start": 119.48, + "end": 120.32, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 120.32, + "end": 120.68, + "probability": 0.99072265625 + }, + { + "word": " made", + "start": 120.68, + "end": 120.96, + "probability": 1.0 + }, + { + "word": " their", + "start": 120.96, + "end": 121.1, + "probability": 0.982421875 + }, + { + "word": " light", + "start": 121.1, + "end": 121.48, + "probability": 1.0 + }, + { + "word": " posts", + "start": 121.48, + "end": 121.84, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 121.84, + "end": 122.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 122.24, + "end": 122.36, + "probability": 1.0 + }, + { + "word": " pier", + "start": 122.36, + "end": 122.62, + "probability": 1.0 + }, + { + "word": " out", + "start": 122.62, + "end": 123.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 123.0, + "end": 123.2, + "probability": 1.0 + }, + { + "word": " some", + "start": 123.2, + "end": 123.4, + "probability": 1.0 + }, + { + "word": " type", + "start": 123.4, + "end": 123.54, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 123.54, + "end": 123.66, + "probability": 1.0 + }, + { + "word": " plastic", + "start": 123.66, + "end": 123.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 123.98, + "end": 124.46, + "probability": 0.25634765625 + }, + { + "word": " they", + "start": 124.46, + "end": 124.9, + "probability": 1.0 + }, + { + "word": " were", + "start": 124.9, + "end": 125.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 125.02, + "end": 125.14, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 125.14, + "end": 125.28, + "probability": 1.0 + }, + { + "word": " melted", + "start": 125.28, + "end": 125.72, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 125.72, + "end": 126.0, + "probability": 0.99951171875 + }, + { + "word": " leaning", + "start": 126.0, + "end": 127.22, + "probability": 0.99951171875 + }, + { + "word": " over.", + "start": 127.22, + "end": 127.62, + "probability": 1.0 + } + ] + }, + { + "id": 48, + "text": "Yeah.", + "start": 127.92, + "end": 128.12, + "words": [ + { + "word": " Yeah.", + "start": 127.92, + "end": 128.12, + "probability": 0.8046875 + } + ] + }, + { + "id": 49, + "text": "I've seen, uh, I've seen like pictures where it's like, you know, you're in Arizona when, and it's just a dumpster that is melted.", + "start": 128.14, + "end": 132.96, + "words": [ + { + "word": " I've", + "start": 128.14, + "end": 128.26, + "probability": 0.9990234375 + }, + { + "word": " seen,", + "start": 128.26, + "end": 128.4, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 128.42, + "end": 128.62, + "probability": 0.359130859375 + }, + { + "word": " I've", + "start": 128.62, + "end": 128.78, + "probability": 1.0 + }, + { + "word": " seen", + "start": 128.78, + "end": 128.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 128.94, + "end": 129.12, + "probability": 0.99560546875 + }, + { + "word": " pictures", + "start": 129.12, + "end": 129.48, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 129.48, + "end": 129.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 129.64, + "end": 129.78, + "probability": 1.0 + }, + { + "word": " like,", + "start": 129.78, + "end": 129.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 129.96, + "end": 130.04, + "probability": 1.0 + }, + { + "word": " know,", + "start": 130.04, + "end": 130.14, + "probability": 1.0 + }, + { + "word": " you're", + "start": 130.16, + "end": 130.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 130.32, + "end": 130.4, + "probability": 0.99951171875 + }, + { + "word": " Arizona", + "start": 130.4, + "end": 130.72, + "probability": 1.0 + }, + { + "word": " when,", + "start": 130.72, + "end": 131.08, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 131.18, + "end": 131.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 131.36, + "end": 131.52, + "probability": 1.0 + }, + { + "word": " just", + "start": 131.52, + "end": 131.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 131.66, + "end": 131.78, + "probability": 1.0 + }, + { + "word": " dumpster", + "start": 131.78, + "end": 132.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 132.24, + "end": 132.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 132.46, + "end": 132.58, + "probability": 0.96142578125 + }, + { + "word": " melted.", + "start": 132.58, + "end": 132.96, + "probability": 1.0 + } + ] + }, + { + "id": 50, + "text": "It's like a puddle.", + "start": 133.06, + "end": 133.78, + "words": [ + { + "word": " It's", + "start": 133.06, + "end": 133.22, + "probability": 1.0 + }, + { + "word": " like", + "start": 133.22, + "end": 133.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 133.32, + "end": 133.42, + "probability": 1.0 + }, + { + "word": " puddle.", + "start": 133.42, + "end": 133.78, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "Pretty, pretty warm.", + "start": 135.98000000000002, + "end": 137.08, + "words": [ + { + "word": " Pretty,", + "start": 135.98000000000002, + "end": 136.34, + "probability": 0.99462890625 + }, + { + "word": " pretty", + "start": 136.46, + "end": 136.82, + "probability": 1.0 + }, + { + "word": " warm.", + "start": 136.82, + "end": 137.08, + "probability": 1.0 + } + ] + }, + { + "id": 52, + "text": "All right.", + "start": 137.26, + "end": 137.54, + "words": [ + { + "word": " All", + "start": 137.26, + "end": 137.44, + "probability": 0.99853515625 + }, + { + "word": " right.", + "start": 137.44, + "end": 137.54, + "probability": 1.0 + } + ] + }, + { + "id": 53, + "text": "790-2040 if you want to be part of the show.", + "start": 137.58, + "end": 139.3, + "words": [ + { + "word": " 790", + "start": 137.58, + "end": 137.94, + "probability": 0.7001953125 + }, + { + "word": "-2040", + "start": 137.94, + "end": 138.42, + "probability": 0.70751953125 + }, + { + "word": " if", + "start": 138.42, + "end": 138.58, + "probability": 0.5537109375 + }, + { + "word": " you", + "start": 138.58, + "end": 138.62, + "probability": 1.0 + }, + { + "word": " want", + "start": 138.62, + "end": 138.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 138.68, + "end": 138.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 138.76, + "end": 138.78, + "probability": 1.0 + }, + { + "word": " part", + "start": 138.78, + "end": 138.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 138.94, + "end": 139.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 139.02, + "end": 139.08, + "probability": 1.0 + }, + { + "word": " show.", + "start": 139.08, + "end": 139.3, + "probability": 1.0 + } + ] + }, + { + "id": 54, + "text": "Uh, let's take a moment to mention net neutrality.", + "start": 139.94, + "end": 143.38, + "words": [ + { + "word": " Uh,", + "start": 139.94, + "end": 140.3, + "probability": 0.99072265625 + }, + { + "word": " let's", + "start": 140.3, + "end": 140.66, + "probability": 1.0 + }, + { + "word": " take", + "start": 140.66, + "end": 140.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 140.72, + "end": 140.84, + "probability": 1.0 + }, + { + "word": " moment", + "start": 140.84, + "end": 141.04, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 141.04, + "end": 141.18, + "probability": 1.0 + }, + { + "word": " mention", + "start": 141.18, + "end": 141.4, + "probability": 0.9990234375 + }, + { + "word": " net", + "start": 141.4, + "end": 142.92, + "probability": 0.99755859375 + }, + { + "word": " neutrality.", + "start": 142.92, + "end": 143.38, + "probability": 1.0 + } + ] + }, + { + "id": 55, + "text": "Yeah.", + "start": 143.76, + "end": 144.12, + "words": [ + { + "word": " Yeah.", + "start": 143.76, + "end": 144.12, + "probability": 0.984375 + } + ] + }, + { + "id": 56, + "text": "And, and for once it might be like a good.", + "start": 144.22, + "end": 147.96, + "words": [ + { + "word": " And,", + "start": 144.22, + "end": 144.4, + "probability": 0.94482421875 + }, + { + "word": " and", + "start": 144.52, + "end": 144.92, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 144.92, + "end": 145.36, + "probability": 0.75 + }, + { + "word": " once", + "start": 145.36, + "end": 146.18, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 146.18, + "end": 146.54, + "probability": 0.8466796875 + }, + { + "word": " might", + "start": 146.54, + "end": 146.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 146.86, + "end": 147.08, + "probability": 1.0 + }, + { + "word": " like", + "start": 147.08, + "end": 147.22, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 147.22, + "end": 147.32, + "probability": 0.99560546875 + }, + { + "word": " good.", + "start": 147.32, + "end": 147.96, + "probability": 0.99462890625 + } + ] + }, + { + "id": 57, + "text": "Good conversation.", + "start": 148.08, + "end": 148.66, + "words": [ + { + "word": " Good", + "start": 148.08, + "end": 148.66, + "probability": 0.0033435821533203125 + }, + { + "word": " conversation.", + "start": 148.66, + "end": 148.66, + "probability": 0.99560546875 + } + ] + }, + { + "id": 58, + "text": "Yeah.", + "start": 148.78, + "end": 148.92, + "words": [ + { + "word": " Yeah.", + "start": 148.78, + "end": 148.92, + "probability": 0.408935546875 + } + ] + }, + { + "id": 59, + "text": "Because normally when I talk about net neutrality, it's me.", + "start": 148.92, + "end": 151.48, + "words": [ + { + "word": " Because", + "start": 148.92, + "end": 149.04, + "probability": 0.81884765625 + }, + { + "word": " normally", + "start": 149.04, + "end": 149.32, + "probability": 0.98193359375 + }, + { + "word": " when", + "start": 149.32, + "end": 149.72, + "probability": 0.7216796875 + }, + { + "word": " I", + "start": 149.72, + "end": 150.04, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 150.04, + "end": 150.2, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 150.2, + "end": 150.42, + "probability": 1.0 + }, + { + "word": " net", + "start": 150.42, + "end": 150.58, + "probability": 0.98876953125 + }, + { + "word": " neutrality,", + "start": 150.58, + "end": 151.0, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 151.16, + "end": 151.32, + "probability": 0.9912109375 + }, + { + "word": " me.", + "start": 151.32, + "end": 151.48, + "probability": 0.9970703125 + } + ] + }, + { + "id": 60, + "text": "There's scorn and, and fury and just come on.", + "start": 152.04000000000002, + "end": 157.34, + "words": [ + { + "word": " There's", + "start": 152.04000000000002, + "end": 152.52, + "probability": 0.92919921875 + }, + { + "word": " scorn", + "start": 152.52, + "end": 153.0, + "probability": 0.99658203125 + }, + { + "word": " and,", + "start": 153.0, + "end": 153.4, + "probability": 0.98974609375 + }, + { + "word": " and", + "start": 153.42, + "end": 154.04, + "probability": 1.0 + }, + { + "word": " fury", + "start": 154.04, + "end": 154.68, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 154.68, + "end": 155.48, + "probability": 0.98828125 + }, + { + "word": " just", + "start": 155.48, + "end": 156.22, + "probability": 0.998046875 + }, + { + "word": " come", + "start": 156.22, + "end": 156.88, + "probability": 0.85107421875 + }, + { + "word": " on.", + "start": 156.88, + "end": 157.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 61, + "text": "Uh, but, uh, maybe some good news potentially in the net neutrality world.", + "start": 158.26000000000002, + "end": 163.22, + "words": [ + { + "word": " Uh,", + "start": 158.26000000000002, + "end": 158.74, + "probability": 0.70947265625 + }, + { + "word": " but,", + "start": 158.74, + "end": 159.22, + "probability": 0.998046875 + }, + { + "word": " uh,", + "start": 159.32, + "end": 159.62, + "probability": 0.97509765625 + }, + { + "word": " maybe", + "start": 159.8, + "end": 160.88, + "probability": 0.9873046875 + }, + { + "word": " some", + "start": 160.88, + "end": 161.12, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 161.12, + "end": 161.34, + "probability": 1.0 + }, + { + "word": " news", + "start": 161.34, + "end": 161.62, + "probability": 1.0 + }, + { + "word": " potentially", + "start": 161.62, + "end": 162.06, + "probability": 0.99365234375 + }, + { + "word": " in", + "start": 162.06, + "end": 162.32, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 162.32, + "end": 162.44, + "probability": 1.0 + }, + { + "word": " net", + "start": 162.44, + "end": 162.54, + "probability": 0.9970703125 + }, + { + "word": " neutrality", + "start": 162.54, + "end": 162.94, + "probability": 1.0 + }, + { + "word": " world.", + "start": 162.94, + "end": 163.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 62, + "text": "The, uh, the internet services are now classified as a utility.", + "start": 163.3, + "end": 167.16, + "words": [ + { + "word": " The,", + "start": 163.3, + "end": 163.5, + "probability": 0.79248046875 + }, + { + "word": " uh,", + "start": 163.5, + "end": 163.84, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 163.86, + "end": 164.36, + "probability": 0.91748046875 + }, + { + "word": " internet", + "start": 164.36, + "end": 164.84, + "probability": 0.99267578125 + }, + { + "word": " services", + "start": 164.84, + "end": 165.18, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 165.18, + "end": 165.6, + "probability": 1.0 + }, + { + "word": " now", + "start": 165.6, + "end": 165.72, + "probability": 0.99951171875 + }, + { + "word": " classified", + "start": 165.72, + "end": 166.26, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 166.26, + "end": 166.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 166.72, + "end": 166.82, + "probability": 1.0 + }, + { + "word": " utility.", + "start": 166.82, + "end": 167.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 63, + "text": "Yeah.", + "start": 167.62, + "end": 168.1, + "words": [ + { + "word": " Yeah.", + "start": 167.62, + "end": 168.1, + "probability": 0.99609375 + } + ] + }, + { + "id": 64, + "text": "And that's, that's what we've been trying to get done for quite a while now.", + "start": 168.18, + "end": 171.18, + "words": [ + { + "word": " And", + "start": 168.18, + "end": 168.26, + "probability": 0.99658203125 + }, + { + "word": " that's,", + "start": 168.26, + "end": 168.5, + "probability": 1.0 + }, + { + "word": " that's", + "start": 168.5, + "end": 168.78, + "probability": 1.0 + }, + { + "word": " what", + "start": 168.78, + "end": 168.86, + "probability": 0.998046875 + }, + { + "word": " we've", + "start": 168.86, + "end": 169.04, + "probability": 1.0 + }, + { + "word": " been", + "start": 169.04, + "end": 169.18, + "probability": 1.0 + }, + { + "word": " trying", + "start": 169.18, + "end": 169.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 169.42, + "end": 169.6, + "probability": 1.0 + }, + { + "word": " get", + "start": 169.6, + "end": 169.86, + "probability": 0.99853515625 + }, + { + "word": " done", + "start": 169.86, + "end": 170.18, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 170.18, + "end": 170.46, + "probability": 0.99951171875 + }, + { + "word": " quite", + "start": 170.46, + "end": 170.68, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 170.68, + "end": 170.78, + "probability": 0.9990234375 + }, + { + "word": " while", + "start": 170.78, + "end": 170.94, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 170.94, + "end": 171.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 65, + "text": "Right.", + "start": 171.28, + "end": 171.58, + "words": [ + { + "word": " Right.", + "start": 171.28, + "end": 171.58, + "probability": 0.953125 + } + ] + }, + { + "id": 66, + "text": "So we, I did a bunch of rants on, uh, net neutrality.", + "start": 171.62, + "end": 176.04, + "words": [ + { + "word": " So", + "start": 171.62, + "end": 171.86, + "probability": 0.99755859375 + }, + { + "word": " we,", + "start": 171.86, + "end": 173.02, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 173.08, + "end": 173.44, + "probability": 0.9990234375 + }, + { + "word": " did", + "start": 173.44, + "end": 173.62, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 173.62, + "end": 173.7, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 173.7, + "end": 173.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 173.9, + "end": 174.04, + "probability": 1.0 + }, + { + "word": " rants", + "start": 174.04, + "end": 174.32, + "probability": 0.9990234375 + }, + { + "word": " on,", + "start": 174.32, + "end": 174.78, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 174.82, + "end": 175.18, + "probability": 0.99755859375 + }, + { + "word": " net", + "start": 175.34, + "end": 175.6, + "probability": 0.99951171875 + }, + { + "word": " neutrality.", + "start": 175.6, + "end": 176.04, + "probability": 1.0 + } + ] + }, + { + "id": 67, + "text": "We'll probably throw one up in the.", + "start": 176.16, + "end": 177.46, + "words": [ + { + "word": " We'll", + "start": 176.16, + "end": 176.4, + "probability": 0.998046875 + }, + { + "word": " probably", + "start": 176.4, + "end": 176.58, + "probability": 1.0 + }, + { + "word": " throw", + "start": 176.58, + "end": 176.8, + "probability": 1.0 + }, + { + "word": " one", + "start": 176.8, + "end": 176.94, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 176.94, + "end": 177.1, + "probability": 1.0 + }, + { + "word": " in", + "start": 177.1, + "end": 177.22, + "probability": 1.0 + }, + { + "word": " the.", + "start": 177.22, + "end": 177.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 68, + "text": "There's already one up there.", + "start": 178.08, + "end": 178.86, + "words": [ + { + "word": " There's", + "start": 178.08, + "end": 178.28, + "probability": 0.85498046875 + }, + { + "word": " already", + "start": 178.28, + "end": 178.38, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 178.38, + "end": 178.58, + "probability": 1.0 + }, + { + "word": " up", + "start": 178.58, + "end": 178.72, + "probability": 1.0 + }, + { + "word": " there.", + "start": 178.72, + "end": 178.86, + "probability": 1.0 + } + ] + }, + { + "id": 69, + "text": "Rants in the YouTube section.", + "start": 178.94, + "end": 180.12, + "words": [ + { + "word": " Rants", + "start": 178.94, + "end": 179.3, + "probability": 0.82470703125 + }, + { + "word": " in", + "start": 179.3, + "end": 179.42, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 179.42, + "end": 179.46, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 179.46, + "end": 179.68, + "probability": 1.0 + }, + { + "word": " section.", + "start": 179.68, + "end": 180.12, + "probability": 1.0 + } + ] + }, + { + "id": 70, + "text": "Um, which Rob manages that.", + "start": 181.49999999999997, + "end": 183.68, + "words": [ + { + "word": " Um,", + "start": 181.49999999999997, + "end": 181.85999999999999, + "probability": 0.01259613037109375 + }, + { + "word": " which", + "start": 181.85999999999999, + "end": 182.22, + "probability": 0.99560546875 + }, + { + "word": " Rob", + "start": 182.22, + "end": 182.66, + "probability": 0.88916015625 + }, + { + "word": " manages", + "start": 182.66, + "end": 183.36, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 183.36, + "end": 183.68, + "probability": 1.0 + } + ] + }, + { + "id": 71, + "text": "So, uh, you know, golf clap to Rob for, you know, making sure that the, uh, the, uh, YouTube", + "start": 183.82, + "end": 189.4, + "words": [ + { + "word": " So,", + "start": 183.82, + "end": 184.1, + "probability": 0.81884765625 + }, + { + "word": " uh,", + "start": 184.1, + "end": 184.38, + "probability": 0.88232421875 + }, + { + "word": " you", + "start": 184.56, + "end": 185.0, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 185.0, + "end": 185.14, + "probability": 1.0 + }, + { + "word": " golf", + "start": 185.14, + "end": 185.34, + "probability": 0.65673828125 + }, + { + "word": " clap", + "start": 185.34, + "end": 185.54, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 185.54, + "end": 185.66, + "probability": 0.9990234375 + }, + { + "word": " Rob", + "start": 185.66, + "end": 185.82, + "probability": 0.99951171875 + }, + { + "word": " for,", + "start": 185.82, + "end": 186.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 186.16, + "end": 186.36, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 186.36, + "end": 186.46, + "probability": 1.0 + }, + { + "word": " making", + "start": 186.46, + "end": 186.62, + "probability": 0.99755859375 + }, + { + "word": " sure", + "start": 186.62, + "end": 186.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 186.84, + "end": 187.1, + "probability": 1.0 + }, + { + "word": " the,", + "start": 187.1, + "end": 187.46, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 187.46, + "end": 187.72, + "probability": 0.97216796875 + }, + { + "word": " the,", + "start": 188.24, + "end": 188.44, + "probability": 0.9970703125 + }, + { + "word": " uh,", + "start": 188.5, + "end": 188.72, + "probability": 0.974609375 + }, + { + "word": " YouTube", + "start": 188.76, + "end": 189.4, + "probability": 0.998046875 + } + ] + }, + { + "id": 72, + "text": "channel is, is doing what it's supposed to be doing.", + "start": 189.4, + "end": 192.04, + "words": [ + { + "word": " channel", + "start": 189.4, + "end": 189.96, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 189.96, + "end": 190.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 190.56, + "end": 190.72, + "probability": 1.0 + }, + { + "word": " doing", + "start": 190.72, + "end": 190.92, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 190.92, + "end": 191.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 191.18, + "end": 191.36, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 191.36, + "end": 191.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 191.52, + "end": 191.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 191.74, + "end": 191.82, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 191.82, + "end": 192.04, + "probability": 1.0 + } + ] + }, + { + "id": 73, + "text": "By the way, if you have an opportunity to go over there and subscribe to us, cause it", + "start": 192.18, + "end": 194.86, + "words": [ + { + "word": " By", + "start": 192.18, + "end": 192.54, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 192.54, + "end": 192.66, + "probability": 1.0 + }, + { + "word": " way,", + "start": 192.66, + "end": 192.78, + "probability": 1.0 + }, + { + "word": " if", + "start": 192.8, + "end": 192.88, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 192.88, + "end": 192.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 192.9, + "end": 192.98, + "probability": 1.0 + }, + { + "word": " an", + "start": 192.98, + "end": 193.08, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 193.08, + "end": 193.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 193.36, + "end": 193.5, + "probability": 0.94873046875 + }, + { + "word": " go", + "start": 193.5, + "end": 193.6, + "probability": 1.0 + }, + { + "word": " over", + "start": 193.6, + "end": 193.7, + "probability": 1.0 + }, + { + "word": " there", + "start": 193.7, + "end": 193.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 193.8, + "end": 193.88, + "probability": 0.99951171875 + }, + { + "word": " subscribe", + "start": 193.88, + "end": 194.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 194.16, + "end": 194.5, + "probability": 0.99951171875 + }, + { + "word": " us,", + "start": 194.5, + "end": 194.62, + "probability": 1.0 + }, + { + "word": " cause", + "start": 194.66, + "end": 194.74, + "probability": 0.791015625 + }, + { + "word": " it", + "start": 194.74, + "end": 194.86, + "probability": 1.0 + } + ] + }, + { + "id": 74, + "text": "helps us out.", + "start": 194.86, + "end": 195.48, + "words": [ + { + "word": " helps", + "start": 194.86, + "end": 195.06, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 195.06, + "end": 195.2, + "probability": 1.0 + }, + { + "word": " out.", + "start": 195.2, + "end": 195.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 75, + "text": "Then you get to hear, uh, Mike's, you know, furious rants about net neutrality and other", + "start": 195.86, + "end": 199.68, + "words": [ + { + "word": " Then", + "start": 195.86, + "end": 196.22, + "probability": 0.2171630859375 + }, + { + "word": " you", + "start": 196.22, + "end": 196.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 196.36, + "end": 196.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 196.44, + "end": 196.52, + "probability": 1.0 + }, + { + "word": " hear,", + "start": 196.52, + "end": 196.8, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 196.82, + "end": 196.98, + "probability": 0.98046875 + }, + { + "word": " Mike's,", + "start": 197.0, + "end": 197.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 197.52, + "end": 197.84, + "probability": 1.0 + }, + { + "word": " know,", + "start": 197.84, + "end": 197.94, + "probability": 1.0 + }, + { + "word": " furious", + "start": 197.96, + "end": 198.28, + "probability": 0.99560546875 + }, + { + "word": " rants", + "start": 198.28, + "end": 198.72, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 198.72, + "end": 198.88, + "probability": 0.99951171875 + }, + { + "word": " net", + "start": 198.88, + "end": 199.04, + "probability": 0.984375 + }, + { + "word": " neutrality", + "start": 199.04, + "end": 199.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 199.4, + "end": 199.56, + "probability": 0.9990234375 + }, + { + "word": " other", + "start": 199.56, + "end": 199.68, + "probability": 1.0 + } + ] + }, + { + "id": 76, + "text": "stuff.", + "start": 199.68, + "end": 199.9, + "words": [ + { + "word": " stuff.", + "start": 199.68, + "end": 199.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 77, + "text": "Yeah.", + "start": 200.08, + "end": 200.44, + "words": [ + { + "word": " Yeah.", + "start": 200.08, + "end": 200.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 78, + "text": "You know, and I listened to the Verizon one and, um, that was the second Verizon rant", + "start": 200.46, + "end": 206.1, + "words": [ + { + "word": " You", + "start": 200.46, + "end": 200.64, + "probability": 0.9296875 + }, + { + "word": " know,", + "start": 200.64, + "end": 200.82, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 200.88, + "end": 200.96, + "probability": 0.440673828125 + }, + { + "word": " I", + "start": 200.96, + "end": 200.96, + "probability": 1.0 + }, + { + "word": " listened", + "start": 200.96, + "end": 201.16, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 201.16, + "end": 201.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 201.34, + "end": 201.42, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 201.42, + "end": 201.7, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 201.7, + "end": 202.02, + "probability": 1.0 + }, + { + "word": " and,", + "start": 202.02, + "end": 202.64, + "probability": 0.92431640625 + }, + { + "word": " um,", + "start": 202.64, + "end": 203.14, + "probability": 0.9150390625 + }, + { + "word": " that", + "start": 203.34, + "end": 204.08, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 204.08, + "end": 204.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 204.48, + "end": 204.74, + "probability": 1.0 + }, + { + "word": " second", + "start": 204.74, + "end": 205.18, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 205.18, + "end": 205.62, + "probability": 1.0 + }, + { + "word": " rant", + "start": 205.62, + "end": 206.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 79, + "text": "that I've had.", + "start": 206.1, + "end": 206.64, + "words": [ + { + "word": " that", + "start": 206.1, + "end": 206.32, + "probability": 1.0 + }, + { + "word": " I've", + "start": 206.32, + "end": 206.5, + "probability": 1.0 + }, + { + "word": " had.", + "start": 206.5, + "end": 206.64, + "probability": 1.0 + } + ] + }, + { + "id": 80, + "text": "We got to go find the first one.", + "start": 206.76, + "end": 208.06, + "words": [ + { + "word": " We", + "start": 206.76, + "end": 207.04, + "probability": 0.99609375 + }, + { + "word": " got", + "start": 207.04, + "end": 207.16, + "probability": 0.56298828125 + }, + { + "word": " to", + "start": 207.16, + "end": 207.22, + "probability": 1.0 + }, + { + "word": " go", + "start": 207.22, + "end": 207.3, + "probability": 1.0 + }, + { + "word": " find", + "start": 207.3, + "end": 207.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 207.52, + "end": 207.66, + "probability": 1.0 + }, + { + "word": " first", + "start": 207.66, + "end": 207.86, + "probability": 1.0 + }, + { + "word": " one.", + "start": 207.86, + "end": 208.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 81, + "text": "Cause that's like season four or something.", + "start": 208.06, + "end": 209.44, + "words": [ + { + "word": " Cause", + "start": 208.06, + "end": 208.18, + "probability": 0.0036449432373046875 + }, + { + "word": " that's", + "start": 208.18, + "end": 208.34, + "probability": 0.9931640625 + }, + { + "word": " like", + "start": 208.34, + "end": 208.48, + "probability": 0.99951171875 + }, + { + "word": " season", + "start": 208.48, + "end": 208.66, + "probability": 0.99951171875 + }, + { + "word": " four", + "start": 208.66, + "end": 209.02, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 209.02, + "end": 209.2, + "probability": 0.998046875 + }, + { + "word": " something.", + "start": 209.2, + "end": 209.44, + "probability": 1.0 + } + ] + }, + { + "id": 82, + "text": "We're gonna have to go dig that up.", + "start": 209.58, + "end": 210.66, + "words": [ + { + "word": " We're", + "start": 209.58, + "end": 209.94, + "probability": 0.9130859375 + }, + { + "word": " gonna", + "start": 209.94, + "end": 209.98, + "probability": 0.7607421875 + }, + { + "word": " have", + "start": 209.98, + "end": 210.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 210.06, + "end": 210.06, + "probability": 1.0 + }, + { + "word": " go", + "start": 210.06, + "end": 210.16, + "probability": 1.0 + }, + { + "word": " dig", + "start": 210.16, + "end": 210.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 210.3, + "end": 210.46, + "probability": 1.0 + }, + { + "word": " up.", + "start": 210.46, + "end": 210.66, + "probability": 1.0 + } + ] + }, + { + "id": 83, + "text": "That one is where I just exploded on air.", + "start": 210.74, + "end": 215.78, + "words": [ + { + "word": " That", + "start": 210.74, + "end": 210.96, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 210.96, + "end": 211.14, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 211.14, + "end": 211.26, + "probability": 1.0 + }, + { + "word": " where", + "start": 211.26, + "end": 211.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 211.4, + "end": 211.82, + "probability": 1.0 + }, + { + "word": " just", + "start": 211.82, + "end": 212.64, + "probability": 0.99658203125 + }, + { + "word": " exploded", + "start": 212.64, + "end": 214.9, + "probability": 0.9560546875 + }, + { + "word": " on", + "start": 214.9, + "end": 215.5, + "probability": 0.99560546875 + }, + { + "word": " air.", + "start": 215.5, + "end": 215.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 84, + "text": "It's really not, not cool.", + "start": 216.26, + "end": 218.5, + "words": [ + { + "word": " It's", + "start": 216.26, + "end": 216.62, + "probability": 0.939453125 + }, + { + "word": " really", + "start": 216.62, + "end": 216.92, + "probability": 1.0 + }, + { + "word": " not,", + "start": 216.92, + "end": 217.3, + "probability": 1.0 + }, + { + "word": " not", + "start": 217.34, + "end": 218.0, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 218.0, + "end": 218.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 85, + "text": "Uh, we'll have to find one of those.", + "start": 219.0, + "end": 220.66, + "words": [ + { + "word": " Uh,", + "start": 219.0, + "end": 219.36, + "probability": 0.576171875 + }, + { + "word": " we'll", + "start": 219.62, + "end": 219.94, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 219.94, + "end": 220.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 220.02, + "end": 220.06, + "probability": 1.0 + }, + { + "word": " find", + "start": 220.06, + "end": 220.24, + "probability": 1.0 + }, + { + "word": " one", + "start": 220.24, + "end": 220.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 220.4, + "end": 220.48, + "probability": 1.0 + }, + { + "word": " those.", + "start": 220.48, + "end": 220.66, + "probability": 1.0 + } + ] + }, + { + "id": 86, + "text": "Um, but yeah, the net neutrality one from, uh, last season, last year is up there right", + "start": 220.76, + "end": 225.7, + "words": [ + { + "word": " Um,", + "start": 220.76, + "end": 221.06, + "probability": 0.75244140625 + }, + { + "word": " but", + "start": 221.14, + "end": 221.34, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 221.34, + "end": 221.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 221.52, + "end": 221.62, + "probability": 0.998046875 + }, + { + "word": " net", + "start": 221.62, + "end": 221.8, + "probability": 0.99951171875 + }, + { + "word": " neutrality", + "start": 221.8, + "end": 222.2, + "probability": 1.0 + }, + { + "word": " one", + "start": 222.2, + "end": 222.44, + "probability": 0.9990234375 + }, + { + "word": " from,", + "start": 222.44, + "end": 222.8, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 222.82, + "end": 223.06, + "probability": 0.8369140625 + }, + { + "word": " last", + "start": 223.18, + "end": 223.74, + "probability": 0.99853515625 + }, + { + "word": " season,", + "start": 223.74, + "end": 224.2, + "probability": 0.99951171875 + }, + { + "word": " last", + "start": 224.28, + "end": 224.44, + "probability": 0.99951171875 + }, + { + "word": " year", + "start": 224.44, + "end": 224.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 224.76, + "end": 225.22, + "probability": 0.998046875 + }, + { + "word": " up", + "start": 225.22, + "end": 225.38, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 225.38, + "end": 225.54, + "probability": 1.0 + }, + { + "word": " right", + "start": 225.54, + "end": 225.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 87, + "text": "now.", + "start": 225.7, + "end": 225.92, + "words": [ + { + "word": " now.", + "start": 225.7, + "end": 225.92, + "probability": 1.0 + } + ] + }, + { + "id": 88, + "text": "So go check it out on our YouTube channel.", + "start": 226.0, + "end": 227.5, + "words": [ + { + "word": " So", + "start": 226.0, + "end": 226.14, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 226.14, + "end": 226.3, + "probability": 0.99951171875 + }, + { + "word": " check", + "start": 226.3, + "end": 226.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 226.46, + "end": 226.56, + "probability": 1.0 + }, + { + "word": " out", + "start": 226.56, + "end": 226.68, + "probability": 1.0 + }, + { + "word": " on", + "start": 226.68, + "end": 226.8, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 226.8, + "end": 226.9, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 226.9, + "end": 227.12, + "probability": 0.9990234375 + }, + { + "word": " channel.", + "start": 227.12, + "end": 227.5, + "probability": 1.0 + } + ] + }, + { + "id": 89, + "text": "Right.", + "start": 227.56, + "end": 227.86, + "words": [ + { + "word": " Right.", + "start": 227.56, + "end": 227.86, + "probability": 0.9853515625 + } + ] + }, + { + "id": 90, + "text": "Then you can get sort of a background on what net neutrality is or is not, uh, at least", + "start": 227.92, + "end": 232.94, + "words": [ + { + "word": " Then", + "start": 227.92, + "end": 228.02, + "probability": 0.98876953125 + }, + { + "word": " you", + "start": 228.02, + "end": 228.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 228.14, + "end": 228.24, + "probability": 1.0 + }, + { + "word": " get", + "start": 228.24, + "end": 228.44, + "probability": 1.0 + }, + { + "word": " sort", + "start": 228.44, + "end": 228.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 228.6, + "end": 228.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 228.76, + "end": 228.86, + "probability": 1.0 + }, + { + "word": " background", + "start": 228.86, + "end": 229.18, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 229.18, + "end": 229.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 229.34, + "end": 229.46, + "probability": 0.9990234375 + }, + { + "word": " net", + "start": 229.46, + "end": 229.6, + "probability": 0.99951171875 + }, + { + "word": " neutrality", + "start": 229.6, + "end": 230.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 230.26, + "end": 230.92, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 230.92, + "end": 231.22, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 231.22, + "end": 231.44, + "probability": 1.0 + }, + { + "word": " not,", + "start": 231.44, + "end": 231.68, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 231.82, + "end": 232.44, + "probability": 0.9970703125 + }, + { + "word": " at", + "start": 232.56, + "end": 232.74, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 232.74, + "end": 232.94, + "probability": 1.0 + } + ] + }, + { + "id": 91, + "text": "from the perspective of people in technology.", + "start": 232.94, + "end": 235.02, + "words": [ + { + "word": " from", + "start": 232.94, + "end": 233.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 233.08, + "end": 233.2, + "probability": 1.0 + }, + { + "word": " perspective", + "start": 233.2, + "end": 233.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 233.52, + "end": 233.9, + "probability": 1.0 + }, + { + "word": " people", + "start": 233.9, + "end": 234.18, + "probability": 1.0 + }, + { + "word": " in", + "start": 234.18, + "end": 234.46, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 234.46, + "end": 235.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 92, + "text": "Uh, I, there was a whole bunch of political spin.", + "start": 235.56, + "end": 237.9, + "words": [ + { + "word": " Uh,", + "start": 235.56, + "end": 235.92, + "probability": 0.92236328125 + }, + { + "word": " I,", + "start": 236.0, + "end": 236.14, + "probability": 0.96435546875 + }, + { + "word": " there", + "start": 236.2, + "end": 236.34, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 236.34, + "end": 236.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 236.52, + "end": 236.62, + "probability": 1.0 + }, + { + "word": " whole", + "start": 236.62, + "end": 236.9, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 236.9, + "end": 237.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 237.14, + "end": 237.26, + "probability": 1.0 + }, + { + "word": " political", + "start": 237.26, + "end": 237.52, + "probability": 0.99951171875 + }, + { + "word": " spin.", + "start": 237.52, + "end": 237.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 93, + "text": "On it, uh, when it was actually happening.", + "start": 238.06, + "end": 240.82, + "words": [ + { + "word": " On", + "start": 238.06, + "end": 238.14, + "probability": 0.019866943359375 + }, + { + "word": " it,", + "start": 238.14, + "end": 238.24, + "probability": 0.57763671875 + }, + { + "word": " uh,", + "start": 238.32, + "end": 238.7, + "probability": 0.369140625 + }, + { + "word": " when", + "start": 238.84, + "end": 239.08, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 239.08, + "end": 239.32, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 239.32, + "end": 239.46, + "probability": 0.99609375 + }, + { + "word": " actually", + "start": 239.46, + "end": 239.9, + "probability": 0.9765625 + }, + { + "word": " happening.", + "start": 239.9, + "end": 240.82, + "probability": 0.95556640625 + } + ] + }, + { + "id": 94, + "text": "Oh, and then, uh, that reminds me just to preview for you guys.", + "start": 241.14, + "end": 244.02, + "words": [ + { + "word": " Oh,", + "start": 241.14, + "end": 241.38, + "probability": 0.9677734375 + }, + { + "word": " and", + "start": 241.42, + "end": 241.5, + "probability": 0.99853515625 + }, + { + "word": " then,", + "start": 241.5, + "end": 241.66, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 241.7, + "end": 241.86, + "probability": 0.97119140625 + }, + { + "word": " that", + "start": 241.96, + "end": 242.2, + "probability": 0.99951171875 + }, + { + "word": " reminds", + "start": 242.2, + "end": 242.5, + "probability": 1.0 + }, + { + "word": " me", + "start": 242.5, + "end": 242.78, + "probability": 1.0 + }, + { + "word": " just", + "start": 242.78, + "end": 243.22, + "probability": 0.80322265625 + }, + { + "word": " to", + "start": 243.22, + "end": 243.3, + "probability": 0.5546875 + }, + { + "word": " preview", + "start": 243.3, + "end": 243.52, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 243.52, + "end": 243.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 243.72, + "end": 243.84, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 243.84, + "end": 244.02, + "probability": 1.0 + } + ] + }, + { + "id": 95, + "text": "Next, next, the next excerpt that we're putting on YouTube is a throwback to act.", + "start": 244.04, + "end": 247.94, + "words": [ + { + "word": " Next,", + "start": 244.04, + "end": 244.38, + "probability": 0.99853515625 + }, + { + "word": " next,", + "start": 244.38, + "end": 244.8, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 244.8, + "end": 245.06, + "probability": 0.99951171875 + }, + { + "word": " next", + "start": 245.06, + "end": 245.32, + "probability": 1.0 + }, + { + "word": " excerpt", + "start": 245.32, + "end": 245.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 245.74, + "end": 245.84, + "probability": 1.0 + }, + { + "word": " we're", + "start": 245.84, + "end": 245.96, + "probability": 1.0 + }, + { + "word": " putting", + "start": 245.96, + "end": 246.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 246.1, + "end": 246.24, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 246.24, + "end": 246.5, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 246.5, + "end": 247.06, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 247.06, + "end": 247.16, + "probability": 1.0 + }, + { + "word": " throwback", + "start": 247.16, + "end": 247.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 247.48, + "end": 247.66, + "probability": 1.0 + }, + { + "word": " act.", + "start": 247.66, + "end": 247.94, + "probability": 0.435546875 + } + ] + }, + { + "id": 96, + "text": "I remember act.", + "start": 248.0, + "end": 248.62, + "words": [ + { + "word": " I", + "start": 248.0, + "end": 248.1, + "probability": 0.79541015625 + }, + { + "word": " remember", + "start": 248.1, + "end": 248.26, + "probability": 0.99853515625 + }, + { + "word": " act.", + "start": 248.26, + "end": 248.62, + "probability": 0.57373046875 + } + ] + }, + { + "id": 97, + "text": "Yeah.", + "start": 248.76, + "end": 249.0, + "words": [ + { + "word": " Yeah.", + "start": 248.76, + "end": 249.0, + "probability": 0.5732421875 + } + ] + }, + { + "id": 98, + "text": "It's you talking about act in 2010.", + "start": 249.22, + "end": 250.98, + "words": [ + { + "word": " It's", + "start": 249.22, + "end": 249.58, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 249.58, + "end": 249.68, + "probability": 0.9990234375 + }, + { + "word": " talking", + "start": 249.68, + "end": 249.96, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 249.96, + "end": 250.16, + "probability": 1.0 + }, + { + "word": " act", + "start": 250.16, + "end": 250.4, + "probability": 0.8720703125 + }, + { + "word": " in", + "start": 250.4, + "end": 250.52, + "probability": 0.955078125 + }, + { + "word": " 2010.", + "start": 250.52, + "end": 250.98, + "probability": 1.0 + } + ] + }, + { + "id": 99, + "text": "Oh, I think it was more vitriolic, but in 2010, it's a good one.", + "start": 252.02, + "end": 255.66, + "words": [ + { + "word": " Oh,", + "start": 252.02, + "end": 252.38, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 252.5, + "end": 252.64, + "probability": 1.0 + }, + { + "word": " think", + "start": 252.64, + "end": 253.18, + "probability": 0.96435546875 + }, + { + "word": " it", + "start": 253.18, + "end": 253.32, + "probability": 0.73388671875 + }, + { + "word": " was", + "start": 253.32, + "end": 253.42, + "probability": 1.0 + }, + { + "word": " more", + "start": 253.42, + "end": 253.58, + "probability": 1.0 + }, + { + "word": " vitriolic,", + "start": 253.58, + "end": 254.12, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 254.16, + "end": 254.32, + "probability": 0.9951171875 + }, + { + "word": " in", + "start": 254.32, + "end": 254.48, + "probability": 1.0 + }, + { + "word": " 2010,", + "start": 254.48, + "end": 254.92, + "probability": 1.0 + }, + { + "word": " it's", + "start": 255.12, + "end": 255.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 255.34, + "end": 255.38, + "probability": 1.0 + }, + { + "word": " good", + "start": 255.38, + "end": 255.54, + "probability": 1.0 + }, + { + "word": " one.", + "start": 255.54, + "end": 255.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 100, + "text": "So that was a little more angry.", + "start": 255.76, + "end": 257.98, + "words": [ + { + "word": " So", + "start": 255.76, + "end": 256.02, + "probability": 0.99169921875 + }, + { + "word": " that", + "start": 256.02, + "end": 256.38, + "probability": 0.90380859375 + }, + { + "word": " was", + "start": 256.38, + "end": 256.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 256.76, + "end": 256.84, + "probability": 0.9599609375 + }, + { + "word": " little", + "start": 256.84, + "end": 257.1, + "probability": 1.0 + }, + { + "word": " more", + "start": 257.1, + "end": 257.28, + "probability": 0.9990234375 + }, + { + "word": " angry.", + "start": 257.28, + "end": 257.98, + "probability": 0.99755859375 + } + ] + }, + { + "id": 101, + "text": "I'm trying to, I'm trying to give some color, you know, to the net neutrality stuff that", + "start": 258.96, + "end": 262.78, + "words": [ + { + "word": " I'm", + "start": 258.96, + "end": 259.32, + "probability": 1.0 + }, + { + "word": " trying", + "start": 259.32, + "end": 259.52, + "probability": 1.0 + }, + { + "word": " to,", + "start": 259.52, + "end": 259.68, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 259.7, + "end": 259.84, + "probability": 1.0 + }, + { + "word": " trying", + "start": 259.84, + "end": 260.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 260.0, + "end": 260.12, + "probability": 1.0 + }, + { + "word": " give", + "start": 260.12, + "end": 260.28, + "probability": 0.9970703125 + }, + { + "word": " some", + "start": 260.28, + "end": 260.52, + "probability": 0.99951171875 + }, + { + "word": " color,", + "start": 260.52, + "end": 261.06, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 261.14, + "end": 261.32, + "probability": 1.0 + }, + { + "word": " know,", + "start": 261.32, + "end": 261.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 261.46, + "end": 261.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 261.58, + "end": 261.76, + "probability": 1.0 + }, + { + "word": " net", + "start": 261.76, + "end": 262.06, + "probability": 0.99951171875 + }, + { + "word": " neutrality", + "start": 262.06, + "end": 262.42, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 262.42, + "end": 262.62, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 262.62, + "end": 262.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 102, + "text": "we talk about.", + "start": 262.78, + "end": 263.26, + "words": [ + { + "word": " we", + "start": 262.78, + "end": 262.88, + "probability": 1.0 + }, + { + "word": " talk", + "start": 262.88, + "end": 262.98, + "probability": 0.99853515625 + }, + { + "word": " about.", + "start": 262.98, + "end": 263.26, + "probability": 1.0 + } + ] + }, + { + "id": 103, + "text": "So that's why I've been picking a few of those types of rants to put on there.", + "start": 263.48, + "end": 266.68, + "words": [ + { + "word": " So", + "start": 263.48, + "end": 263.84, + "probability": 0.99853515625 + }, + { + "word": " that's", + "start": 263.84, + "end": 264.02, + "probability": 1.0 + }, + { + "word": " why", + "start": 264.02, + "end": 264.08, + "probability": 1.0 + }, + { + "word": " I've", + "start": 264.08, + "end": 264.26, + "probability": 1.0 + }, + { + "word": " been", + "start": 264.26, + "end": 264.36, + "probability": 1.0 + }, + { + "word": " picking", + "start": 264.36, + "end": 264.74, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 264.74, + "end": 264.94, + "probability": 1.0 + }, + { + "word": " few", + "start": 264.94, + "end": 265.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 265.1, + "end": 265.22, + "probability": 1.0 + }, + { + "word": " those", + "start": 265.22, + "end": 265.42, + "probability": 1.0 + }, + { + "word": " types", + "start": 265.42, + "end": 265.66, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 265.66, + "end": 265.82, + "probability": 1.0 + }, + { + "word": " rants", + "start": 265.82, + "end": 266.06, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 266.06, + "end": 266.22, + "probability": 0.9990234375 + }, + { + "word": " put", + "start": 266.22, + "end": 266.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 266.34, + "end": 266.5, + "probability": 1.0 + }, + { + "word": " there.", + "start": 266.5, + "end": 266.68, + "probability": 0.99755859375 + } + ] + }, + { + "id": 104, + "text": "Right on.", + "start": 266.76, + "end": 267.2, + "words": [ + { + "word": " Right", + "start": 266.76, + "end": 267.04, + "probability": 0.99560546875 + }, + { + "word": " on.", + "start": 267.04, + "end": 267.2, + "probability": 0.9970703125 + } + ] + }, + { + "id": 105, + "text": "Yeah.", + "start": 267.26, + "end": 267.6, + "words": [ + { + "word": " Yeah.", + "start": 267.26, + "end": 267.6, + "probability": 0.00882720947265625 + } + ] + }, + { + "id": 106, + "text": "Yeah.", + "start": 267.6, + "end": 267.78, + "words": [ + { + "word": " Yeah.", + "start": 267.6, + "end": 267.78, + "probability": 0.044677734375 + } + ] + }, + { + "id": 107, + "text": "Yeah.", + "start": 267.78, + "end": 268.04, + "words": [ + { + "word": " Yeah.", + "start": 267.78, + "end": 268.04, + "probability": 0.459228515625 + } + ] + }, + { + "id": 108, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 109, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 110, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 111, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 112, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 113, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 114, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 115, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 116, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 117, + "text": "", + "start": 268.04, + "end": 268.04, + "words": [] + }, + { + "id": 118, + "text": "Check out the YouTube channel.", + "start": 268.04, + "end": 268.56, + "words": [ + { + "word": " Check", + "start": 268.04, + "end": 268.06, + "probability": 0.023712158203125 + }, + { + "word": " out", + "start": 268.06, + "end": 268.06, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 268.06, + "end": 268.14, + "probability": 0.99951171875 + }, + { + "word": " YouTube", + "start": 268.14, + "end": 268.26, + "probability": 0.99951171875 + }, + { + "word": " channel.", + "start": 268.26, + "end": 268.56, + "probability": 1.0 + } + ] + }, + { + "id": 119, + "text": "You can listen to the net neutrality rant, but now it is finally classified as utility,", + "start": 268.62, + "end": 272.12, + "words": [ + { + "word": " You", + "start": 268.62, + "end": 268.68, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 268.68, + "end": 268.72, + "probability": 1.0 + }, + { + "word": " listen", + "start": 268.72, + "end": 268.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 268.9, + "end": 269.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 269.02, + "end": 269.1, + "probability": 0.99658203125 + }, + { + "word": " net", + "start": 269.1, + "end": 269.24, + "probability": 0.2425537109375 + }, + { + "word": " neutrality", + "start": 269.24, + "end": 269.56, + "probability": 0.97412109375 + }, + { + "word": " rant,", + "start": 269.56, + "end": 269.84, + "probability": 1.0 + }, + { + "word": " but", + "start": 270.0, + "end": 270.48, + "probability": 0.9990234375 + }, + { + "word": " now", + "start": 270.48, + "end": 270.72, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 270.72, + "end": 271.0, + "probability": 0.98876953125 + }, + { + "word": " is", + "start": 271.0, + "end": 271.14, + "probability": 0.99755859375 + }, + { + "word": " finally", + "start": 271.14, + "end": 271.3, + "probability": 0.99951171875 + }, + { + "word": " classified", + "start": 271.3, + "end": 271.72, + "probability": 1.0 + }, + { + "word": " as", + "start": 271.72, + "end": 271.94, + "probability": 1.0 + }, + { + "word": " utility,", + "start": 271.94, + "end": 272.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 120, + "text": "which is, uh, which is great because it allows for, uh, well, I guess the bigger, better", + "start": 272.32, + "end": 280.3, + "words": [ + { + "word": " which", + "start": 272.32, + "end": 272.78, + "probability": 0.998046875 + }, + { + "word": " is,", + "start": 272.78, + "end": 273.34, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 273.34, + "end": 273.88, + "probability": 0.69189453125 + }, + { + "word": " which", + "start": 274.44, + "end": 274.7, + "probability": 0.99560546875 + }, + { + "word": " is", + "start": 274.7, + "end": 274.8, + "probability": 1.0 + }, + { + "word": " great", + "start": 274.8, + "end": 275.02, + "probability": 1.0 + }, + { + "word": " because", + "start": 275.02, + "end": 275.32, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 275.32, + "end": 275.56, + "probability": 1.0 + }, + { + "word": " allows", + "start": 275.56, + "end": 276.44, + "probability": 0.99853515625 + }, + { + "word": " for,", + "start": 276.44, + "end": 277.24, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 277.54, + "end": 278.26, + "probability": 0.9921875 + }, + { + "word": " well,", + "start": 278.46, + "end": 278.82, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 278.92, + "end": 279.04, + "probability": 0.99951171875 + }, + { + "word": " guess", + "start": 279.04, + "end": 279.36, + "probability": 0.93505859375 + }, + { + "word": " the", + "start": 279.36, + "end": 279.5, + "probability": 1.0 + }, + { + "word": " bigger,", + "start": 279.5, + "end": 279.7, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 279.74, + "end": 280.3, + "probability": 1.0 + } + ] + }, + { + "id": 121, + "text": "way of putting it is, is it disallows for the ISPs to prioritize packets based on pay.", + "start": 280.3, + "end": 287.2, + "words": [ + { + "word": " way", + "start": 280.3, + "end": 280.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 280.5, + "end": 280.58, + "probability": 1.0 + }, + { + "word": " putting", + "start": 280.58, + "end": 280.72, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 280.72, + "end": 280.84, + "probability": 0.84326171875 + }, + { + "word": " is,", + "start": 280.84, + "end": 280.98, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 280.98, + "end": 281.14, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 281.14, + "end": 281.18, + "probability": 0.99951171875 + }, + { + "word": " disallows", + "start": 281.18, + "end": 281.74, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 281.74, + "end": 282.78, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 282.78, + "end": 283.36, + "probability": 1.0 + }, + { + "word": " ISPs", + "start": 283.36, + "end": 285.04, + "probability": 0.8330078125 + }, + { + "word": " to", + "start": 285.04, + "end": 285.54, + "probability": 0.99951171875 + }, + { + "word": " prioritize", + "start": 285.54, + "end": 286.0, + "probability": 0.99951171875 + }, + { + "word": " packets", + "start": 286.0, + "end": 286.48, + "probability": 0.9990234375 + }, + { + "word": " based", + "start": 286.48, + "end": 286.74, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 286.74, + "end": 286.98, + "probability": 1.0 + }, + { + "word": " pay.", + "start": 286.98, + "end": 287.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 122, + "text": "Yeah.", + "start": 287.66, + "end": 288.1, + "words": [ + { + "word": " Yeah.", + "start": 287.66, + "end": 288.1, + "probability": 0.9638671875 + } + ] + }, + { + "id": 123, + "text": "And it makes it to where everyone has equal access to internet the same way that people", + "start": 288.12, + "end": 292.74, + "words": [ + { + "word": " And", + "start": 288.12, + "end": 288.18, + "probability": 0.97607421875 + }, + { + "word": " it", + "start": 288.18, + "end": 288.26, + "probability": 0.99951171875 + }, + { + "word": " makes", + "start": 288.26, + "end": 288.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 288.52, + "end": 288.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 288.66, + "end": 288.78, + "probability": 1.0 + }, + { + "word": " where", + "start": 288.78, + "end": 288.96, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 288.96, + "end": 289.86, + "probability": 1.0 + }, + { + "word": " has", + "start": 289.86, + "end": 290.24, + "probability": 1.0 + }, + { + "word": " equal", + "start": 290.24, + "end": 290.68, + "probability": 1.0 + }, + { + "word": " access", + "start": 290.68, + "end": 291.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 291.08, + "end": 291.48, + "probability": 1.0 + }, + { + "word": " internet", + "start": 291.48, + "end": 291.82, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 291.82, + "end": 292.06, + "probability": 0.814453125 + }, + { + "word": " same", + "start": 292.06, + "end": 292.24, + "probability": 1.0 + }, + { + "word": " way", + "start": 292.24, + "end": 292.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 292.38, + "end": 292.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 292.52, + "end": 292.74, + "probability": 1.0 + } + ] + }, + { + "id": 124, + "text": "have access to indoor plumbing and electricity and, you know, those types of things.", + "start": 292.74, + "end": 296.98, + "words": [ + { + "word": " have", + "start": 292.74, + "end": 292.94, + "probability": 1.0 + }, + { + "word": " access", + "start": 292.94, + "end": 293.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 293.2, + "end": 293.48, + "probability": 1.0 + }, + { + "word": " indoor", + "start": 293.48, + "end": 293.9, + "probability": 0.99951171875 + }, + { + "word": " plumbing", + "start": 293.9, + "end": 294.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 294.24, + "end": 294.48, + "probability": 0.99951171875 + }, + { + "word": " electricity", + "start": 294.48, + "end": 294.86, + "probability": 0.99951171875 + }, + { + "word": " and,", + "start": 294.86, + "end": 295.88, + "probability": 0.98095703125 + }, + { + "word": " you", + "start": 295.94, + "end": 296.1, + "probability": 0.99658203125 + }, + { + "word": " know,", + "start": 296.1, + "end": 296.18, + "probability": 1.0 + }, + { + "word": " those", + "start": 296.2, + "end": 296.3, + "probability": 0.99853515625 + }, + { + "word": " types", + "start": 296.3, + "end": 296.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 296.58, + "end": 296.74, + "probability": 1.0 + }, + { + "word": " things.", + "start": 296.74, + "end": 296.98, + "probability": 1.0 + } + ] + }, + { + "id": 125, + "text": "Right.", + "start": 297.14, + "end": 297.58, + "words": [ + { + "word": " Right.", + "start": 297.14, + "end": 297.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 126, + "text": "Um, and that's a, that's a good thing in my opinion.", + "start": 298.04, + "end": 299.86, + "words": [ + { + "word": " Um,", + "start": 298.04, + "end": 298.26, + "probability": 0.001140594482421875 + }, + { + "word": " and", + "start": 298.3, + "end": 298.6, + "probability": 0.99755859375 + }, + { + "word": " that's", + "start": 298.6, + "end": 298.9, + "probability": 1.0 + }, + { + "word": " a,", + "start": 298.9, + "end": 298.96, + "probability": 0.6650390625 + }, + { + "word": " that's", + "start": 298.96, + "end": 299.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 299.1, + "end": 299.14, + "probability": 1.0 + }, + { + "word": " good", + "start": 299.14, + "end": 299.24, + "probability": 1.0 + }, + { + "word": " thing", + "start": 299.24, + "end": 299.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 299.4, + "end": 299.48, + "probability": 0.990234375 + }, + { + "word": " my", + "start": 299.48, + "end": 299.58, + "probability": 1.0 + }, + { + "word": " opinion.", + "start": 299.58, + "end": 299.86, + "probability": 1.0 + } + ] + }, + { + "id": 127, + "text": "Now, the, the, of course with, as with everything, there are some drawbacks to it.", + "start": 299.9, + "end": 303.0, + "words": [ + { + "word": " Now,", + "start": 299.9, + "end": 300.08, + "probability": 0.998046875 + }, + { + "word": " the,", + "start": 300.12, + "end": 300.32, + "probability": 0.5712890625 + }, + { + "word": " the,", + "start": 300.32, + "end": 300.46, + "probability": 0.7578125 + }, + { + "word": " of", + "start": 300.54, + "end": 300.54, + "probability": 1.0 + }, + { + "word": " course", + "start": 300.54, + "end": 300.82, + "probability": 1.0 + }, + { + "word": " with,", + "start": 300.82, + "end": 301.06, + "probability": 0.724609375 + }, + { + "word": " as", + "start": 301.12, + "end": 301.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 301.38, + "end": 301.58, + "probability": 1.0 + }, + { + "word": " everything,", + "start": 301.58, + "end": 301.86, + "probability": 1.0 + }, + { + "word": " there", + "start": 301.94, + "end": 302.06, + "probability": 1.0 + }, + { + "word": " are", + "start": 302.06, + "end": 302.16, + "probability": 1.0 + }, + { + "word": " some", + "start": 302.16, + "end": 302.3, + "probability": 1.0 + }, + { + "word": " drawbacks", + "start": 302.3, + "end": 302.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 302.68, + "end": 302.86, + "probability": 1.0 + }, + { + "word": " it.", + "start": 302.86, + "end": 303.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 128, + "text": "Um, but, uh, for right now, I'm pretty happy with the outcome and perhaps in a couple of", + "start": 303.44, + "end": 309.64, + "words": [ + { + "word": " Um,", + "start": 303.44, + "end": 303.88, + "probability": 0.998046875 + }, + { + "word": " but,", + "start": 304.12, + "end": 304.6, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 304.64, + "end": 304.86, + "probability": 0.99072265625 + }, + { + "word": " for", + "start": 304.96, + "end": 305.56, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 305.56, + "end": 305.78, + "probability": 1.0 + }, + { + "word": " now,", + "start": 305.78, + "end": 306.0, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 306.04, + "end": 306.3, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 306.3, + "end": 306.46, + "probability": 1.0 + }, + { + "word": " happy", + "start": 306.46, + "end": 306.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 306.66, + "end": 306.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 306.86, + "end": 306.96, + "probability": 1.0 + }, + { + "word": " outcome", + "start": 306.96, + "end": 307.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 307.28, + "end": 307.98, + "probability": 0.708984375 + }, + { + "word": " perhaps", + "start": 307.98, + "end": 308.58, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 308.58, + "end": 308.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 308.9, + "end": 309.0, + "probability": 0.9658203125 + }, + { + "word": " couple", + "start": 309.0, + "end": 309.48, + "probability": 0.77685546875 + }, + { + "word": " of", + "start": 309.48, + "end": 309.64, + "probability": 1.0 + } + ] + }, + { + "id": 129, + "text": "episodes, maybe two weeks from now, we can talk a little bit more about what that really", + "start": 309.64, + "end": 313.32, + "words": [ + { + "word": " episodes,", + "start": 309.64, + "end": 309.94, + "probability": 0.99951171875 + }, + { + "word": " maybe", + "start": 310.0, + "end": 310.24, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 310.24, + "end": 310.42, + "probability": 0.99951171875 + }, + { + "word": " weeks", + "start": 310.42, + "end": 310.62, + "probability": 1.0 + }, + { + "word": " from", + "start": 310.62, + "end": 310.74, + "probability": 1.0 + }, + { + "word": " now,", + "start": 310.74, + "end": 310.84, + "probability": 1.0 + }, + { + "word": " we", + "start": 310.9, + "end": 310.96, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 310.96, + "end": 311.08, + "probability": 1.0 + }, + { + "word": " talk", + "start": 311.08, + "end": 311.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 311.32, + "end": 311.68, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 311.68, + "end": 311.84, + "probability": 0.9990234375 + }, + { + "word": " bit", + "start": 311.84, + "end": 311.96, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 311.96, + "end": 312.12, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 312.12, + "end": 312.42, + "probability": 1.0 + }, + { + "word": " what", + "start": 312.42, + "end": 312.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 312.82, + "end": 313.04, + "probability": 1.0 + }, + { + "word": " really", + "start": 313.04, + "end": 313.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 130, + "text": "means and explore the pros and the cons of net neutrality because it isn't a one-sided", + "start": 313.32, + "end": 319.0, + "words": [ + { + "word": " means", + "start": 313.32, + "end": 313.72, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 313.72, + "end": 314.06, + "probability": 0.99462890625 + }, + { + "word": " explore", + "start": 314.06, + "end": 314.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 314.62, + "end": 314.9, + "probability": 1.0 + }, + { + "word": " pros", + "start": 314.9, + "end": 315.12, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 315.12, + "end": 315.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 315.42, + "end": 315.66, + "probability": 0.9990234375 + }, + { + "word": " cons", + "start": 315.66, + "end": 315.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 315.96, + "end": 316.16, + "probability": 0.998046875 + }, + { + "word": " net", + "start": 316.16, + "end": 316.3, + "probability": 0.9990234375 + }, + { + "word": " neutrality", + "start": 316.3, + "end": 316.76, + "probability": 1.0 + }, + { + "word": " because", + "start": 316.76, + "end": 317.48, + "probability": 0.79150390625 + }, + { + "word": " it", + "start": 317.48, + "end": 317.84, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 317.84, + "end": 318.42, + "probability": 0.974609375 + }, + { + "word": " a", + "start": 318.42, + "end": 318.52, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 318.52, + "end": 318.76, + "probability": 0.99951171875 + }, + { + "word": "-sided", + "start": 318.76, + "end": 319.0, + "probability": 0.912109375 + } + ] + }, + { + "id": 131, + "text": "issue.", + "start": 319.0, + "end": 319.28, + "words": [ + { + "word": " issue.", + "start": 319.0, + "end": 319.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 132, + "text": "It's not like the encryption debate, which is very, very one-sided.", + "start": 319.52, + "end": 322.7, + "words": [ + { + "word": " It's", + "start": 319.52, + "end": 319.96, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 319.96, + "end": 320.14, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 320.14, + "end": 320.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 320.32, + "end": 320.46, + "probability": 1.0 + }, + { + "word": " encryption", + "start": 320.46, + "end": 320.78, + "probability": 0.9990234375 + }, + { + "word": " debate,", + "start": 320.78, + "end": 321.1, + "probability": 1.0 + }, + { + "word": " which", + "start": 321.22, + "end": 321.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 321.42, + "end": 321.54, + "probability": 1.0 + }, + { + "word": " very,", + "start": 321.54, + "end": 321.84, + "probability": 1.0 + }, + { + "word": " very", + "start": 321.92, + "end": 322.06, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 322.06, + "end": 322.34, + "probability": 0.99951171875 + }, + { + "word": "-sided.", + "start": 322.34, + "end": 322.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 133, + "text": "Uh, it's, it's very much a, well, you know, there are some, some drawbacks to it.", + "start": 323.04, + "end": 328.02, + "words": [ + { + "word": " Uh,", + "start": 323.04, + "end": 323.48, + "probability": 0.98681640625 + }, + { + "word": " it's,", + "start": 323.64, + "end": 324.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 324.18, + "end": 324.48, + "probability": 1.0 + }, + { + "word": " very", + "start": 324.48, + "end": 324.64, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 324.64, + "end": 324.9, + "probability": 1.0 + }, + { + "word": " a,", + "start": 324.9, + "end": 325.24, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 325.42, + "end": 325.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 325.98, + "end": 326.12, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 326.12, + "end": 326.34, + "probability": 1.0 + }, + { + "word": " there", + "start": 326.34, + "end": 326.66, + "probability": 0.98779296875 + }, + { + "word": " are", + "start": 326.66, + "end": 326.92, + "probability": 1.0 + }, + { + "word": " some,", + "start": 326.92, + "end": 327.28, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 327.28, + "end": 327.58, + "probability": 0.99951171875 + }, + { + "word": " drawbacks", + "start": 327.58, + "end": 327.94, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 327.94, + "end": 328.02, + "probability": 0.08306884765625 + }, + { + "word": " it.", + "start": 328.02, + "end": 328.02, + "probability": 0.892578125 + } + ] + }, + { + "id": 134, + "text": "", + "start": 328.02, + "end": 328.02, + "words": [] + }, + { + "id": 135, + "text": "", + "start": 328.02, + "end": 328.02, + "words": [] + }, + { + "id": 136, + "text": "And yeah, I mean, like you're saying, uh, it's very politicized, but there really are", + "start": 328.04, + "end": 331.78, + "words": [ + { + "word": " And", + "start": 328.04, + "end": 328.16, + "probability": 0.703125 + }, + { + "word": " yeah,", + "start": 328.16, + "end": 328.5, + "probability": 0.337158203125 + }, + { + "word": " I", + "start": 328.62, + "end": 328.64, + "probability": 0.84326171875 + }, + { + "word": " mean,", + "start": 328.64, + "end": 328.76, + "probability": 1.0 + }, + { + "word": " like", + "start": 328.78, + "end": 328.92, + "probability": 1.0 + }, + { + "word": " you're", + "start": 328.92, + "end": 329.06, + "probability": 1.0 + }, + { + "word": " saying,", + "start": 329.06, + "end": 329.3, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 329.44, + "end": 329.5, + "probability": 0.0111541748046875 + }, + { + "word": " it's", + "start": 329.66, + "end": 330.1, + "probability": 1.0 + }, + { + "word": " very", + "start": 330.1, + "end": 330.24, + "probability": 1.0 + }, + { + "word": " politicized,", + "start": 330.24, + "end": 330.94, + "probability": 1.0 + }, + { + "word": " but", + "start": 330.96, + "end": 331.16, + "probability": 1.0 + }, + { + "word": " there", + "start": 331.16, + "end": 331.36, + "probability": 1.0 + }, + { + "word": " really", + "start": 331.36, + "end": 331.56, + "probability": 1.0 + }, + { + "word": " are", + "start": 331.56, + "end": 331.78, + "probability": 1.0 + } + ] + }, + { + "id": 137, + "text": "a couple of things that, I mean, the other side makes good points on, on a couple of", + "start": 331.78, + "end": 335.32, + "words": [ + { + "word": " a", + "start": 331.78, + "end": 331.94, + "probability": 1.0 + }, + { + "word": " couple", + "start": 331.94, + "end": 332.16, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 332.16, + "end": 332.24, + "probability": 0.7548828125 + }, + { + "word": " things", + "start": 332.24, + "end": 332.44, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 332.44, + "end": 332.8, + "probability": 1.0 + }, + { + "word": " I", + "start": 332.8, + "end": 333.02, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 333.02, + "end": 333.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 333.18, + "end": 333.28, + "probability": 1.0 + }, + { + "word": " other", + "start": 333.28, + "end": 333.52, + "probability": 1.0 + }, + { + "word": " side", + "start": 333.52, + "end": 333.74, + "probability": 1.0 + }, + { + "word": " makes", + "start": 333.74, + "end": 333.96, + "probability": 1.0 + }, + { + "word": " good", + "start": 333.96, + "end": 334.2, + "probability": 1.0 + }, + { + "word": " points", + "start": 334.2, + "end": 334.54, + "probability": 1.0 + }, + { + "word": " on,", + "start": 334.54, + "end": 334.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 334.78, + "end": 334.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 334.96, + "end": 335.08, + "probability": 1.0 + }, + { + "word": " couple", + "start": 335.08, + "end": 335.26, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 335.26, + "end": 335.32, + "probability": 0.99365234375 + } + ] + }, + { + "id": 138, + "text": "things.", + "start": 335.32, + "end": 335.52, + "words": [ + { + "word": " things.", + "start": 335.32, + "end": 335.52, + "probability": 1.0 + } + ] + }, + { + "id": 139, + "text": "Overall, though, net neutrality, I think will be a benefit.", + "start": 335.9, + "end": 338.1, + "words": [ + { + "word": " Overall,", + "start": 335.9, + "end": 336.28, + "probability": 0.99755859375 + }, + { + "word": " though,", + "start": 336.52, + "end": 336.66, + "probability": 0.9990234375 + }, + { + "word": " net", + "start": 336.7, + "end": 336.8, + "probability": 0.99951171875 + }, + { + "word": " neutrality,", + "start": 336.8, + "end": 337.24, + "probability": 1.0 + }, + { + "word": " I", + "start": 337.3, + "end": 337.42, + "probability": 1.0 + }, + { + "word": " think", + "start": 337.42, + "end": 337.52, + "probability": 1.0 + }, + { + "word": " will", + "start": 337.52, + "end": 337.62, + "probability": 0.97705078125 + }, + { + "word": " be", + "start": 337.62, + "end": 337.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 337.74, + "end": 337.82, + "probability": 1.0 + }, + { + "word": " benefit.", + "start": 337.82, + "end": 338.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 140, + "text": "That's the goal.", + "start": 338.98, + "end": 339.66, + "words": [ + { + "word": " That's", + "start": 338.98, + "end": 339.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 339.36, + "end": 339.48, + "probability": 1.0 + }, + { + "word": " goal.", + "start": 339.48, + "end": 339.66, + "probability": 1.0 + } + ] + }, + { + "id": 141, + "text": "Let's go ahead and talk to Dave.", + "start": 339.82, + "end": 340.82, + "words": [ + { + "word": " Let's", + "start": 339.82, + "end": 340.2, + "probability": 1.0 + }, + { + "word": " go", + "start": 340.2, + "end": 340.22, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 340.22, + "end": 340.34, + "probability": 0.9228515625 + }, + { + "word": " and", + "start": 340.34, + "end": 340.38, + "probability": 1.0 + }, + { + "word": " talk", + "start": 340.38, + "end": 340.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 340.5, + "end": 340.58, + "probability": 1.0 + }, + { + "word": " Dave.", + "start": 340.58, + "end": 340.82, + "probability": 1.0 + } + ] + }, + { + "id": 142, + "text": "Hello, Dave.", + "start": 340.96, + "end": 341.44, + "words": [ + { + "word": " Hello,", + "start": 340.96, + "end": 341.22, + "probability": 0.998046875 + }, + { + "word": " Dave.", + "start": 341.28, + "end": 341.44, + "probability": 1.0 + } + ] + }, + { + "id": 143, + "text": "How are you?", + "start": 341.52, + "end": 341.94, + "words": [ + { + "word": " How", + "start": 341.52, + "end": 341.62, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 341.62, + "end": 341.78, + "probability": 1.0 + }, + { + "word": " you?", + "start": 341.78, + "end": 341.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 144, + "text": "Okay.", + "start": 342.44, + "end": 342.82, + "words": [ + { + "word": " Okay.", + "start": 342.44, + "end": 342.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 145, + "text": "Um, I have a Windows 7 desktop and when I hit the button that says check for updates,", + "start": 342.94, + "end": 349.74, + "words": [ + { + "word": " Um,", + "start": 342.94, + "end": 343.26, + "probability": 0.521484375 + }, + { + "word": " I", + "start": 343.48, + "end": 343.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 343.86, + "end": 344.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 344.06, + "end": 344.18, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 344.18, + "end": 344.58, + "probability": 0.470458984375 + }, + { + "word": " 7", + "start": 344.58, + "end": 344.98, + "probability": 0.61376953125 + }, + { + "word": " desktop", + "start": 344.98, + "end": 345.74, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 345.74, + "end": 347.08, + "probability": 0.61328125 + }, + { + "word": " when", + "start": 347.08, + "end": 347.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 347.46, + "end": 347.64, + "probability": 1.0 + }, + { + "word": " hit", + "start": 347.64, + "end": 347.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 347.84, + "end": 347.98, + "probability": 1.0 + }, + { + "word": " button", + "start": 347.98, + "end": 348.22, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 348.22, + "end": 348.34, + "probability": 0.921875 + }, + { + "word": " says", + "start": 348.34, + "end": 348.54, + "probability": 1.0 + }, + { + "word": " check", + "start": 348.54, + "end": 348.98, + "probability": 0.88525390625 + }, + { + "word": " for", + "start": 348.98, + "end": 349.24, + "probability": 1.0 + }, + { + "word": " updates,", + "start": 349.24, + "end": 349.74, + "probability": 1.0 + } + ] + }, + { + "id": 146, + "text": "it just looks for updates and never, never gets anything done.", + "start": 349.86, + "end": 353.92, + "words": [ + { + "word": " it", + "start": 349.86, + "end": 350.12, + "probability": 1.0 + }, + { + "word": " just", + "start": 350.12, + "end": 350.52, + "probability": 1.0 + }, + { + "word": " looks", + "start": 350.52, + "end": 351.4, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 351.4, + "end": 351.6, + "probability": 1.0 + }, + { + "word": " updates", + "start": 351.6, + "end": 352.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 352.0, + "end": 352.22, + "probability": 0.99951171875 + }, + { + "word": " never,", + "start": 352.22, + "end": 352.44, + "probability": 1.0 + }, + { + "word": " never", + "start": 352.52, + "end": 352.76, + "probability": 0.9443359375 + }, + { + "word": " gets", + "start": 352.76, + "end": 353.14, + "probability": 1.0 + }, + { + "word": " anything", + "start": 353.14, + "end": 353.4, + "probability": 1.0 + }, + { + "word": " done.", + "start": 353.4, + "end": 353.92, + "probability": 1.0 + } + ] + }, + { + "id": 147, + "text": "Okay.", + "start": 354.66, + "end": 355.04, + "words": [ + { + "word": " Okay.", + "start": 354.66, + "end": 355.04, + "probability": 0.96923828125 + } + ] + }, + { + "id": 148, + "text": "And then I went to the troubleshooting computer problems.", + "start": 355.08, + "end": 357.72, + "words": [ + { + "word": " And", + "start": 355.08, + "end": 355.3, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 355.3, + "end": 355.6, + "probability": 0.8056640625 + }, + { + "word": " I", + "start": 355.6, + "end": 355.76, + "probability": 0.9990234375 + }, + { + "word": " went", + "start": 355.76, + "end": 355.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 355.98, + "end": 356.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 356.12, + "end": 356.2, + "probability": 1.0 + }, + { + "word": " troubleshooting", + "start": 356.2, + "end": 356.82, + "probability": 0.9970703125 + }, + { + "word": " computer", + "start": 356.82, + "end": 357.16, + "probability": 0.9697265625 + }, + { + "word": " problems.", + "start": 357.16, + "end": 357.72, + "probability": 0.97509765625 + } + ] + }, + { + "id": 149, + "text": "Okay.", + "start": 357.78, + "end": 358.02, + "words": [ + { + "word": " Okay.", + "start": 357.78, + "end": 358.02, + "probability": 0.00994110107421875 + } + ] + }, + { + "id": 150, + "text": "And it's got a button that says fix problems with Windows update.", + "start": 358.04, + "end": 360.48, + "words": [ + { + "word": " And", + "start": 358.04, + "end": 358.04, + "probability": 0.0006666183471679688 + }, + { + "word": " it's", + "start": 358.04, + "end": 358.04, + "probability": 0.94287109375 + }, + { + "word": " got", + "start": 358.04, + "end": 358.04, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 358.04, + "end": 358.18, + "probability": 0.99951171875 + }, + { + "word": " button", + "start": 358.18, + "end": 358.44, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 358.44, + "end": 358.52, + "probability": 0.9990234375 + }, + { + "word": " says", + "start": 358.52, + "end": 358.7, + "probability": 0.99951171875 + }, + { + "word": " fix", + "start": 358.7, + "end": 359.0, + "probability": 0.4052734375 + }, + { + "word": " problems", + "start": 359.0, + "end": 359.38, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 359.38, + "end": 359.8, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 359.8, + "end": 360.12, + "probability": 0.97412109375 + }, + { + "word": " update.", + "start": 360.12, + "end": 360.48, + "probability": 0.3203125 + } + ] + }, + { + "id": 151, + "text": "And that just goes out there and never does it.", + "start": 360.96, + "end": 363.66, + "words": [ + { + "word": " And", + "start": 360.96, + "end": 361.4, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 361.4, + "end": 361.58, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 361.58, + "end": 361.76, + "probability": 0.99951171875 + }, + { + "word": " goes", + "start": 361.76, + "end": 361.98, + "probability": 1.0 + }, + { + "word": " out", + "start": 361.98, + "end": 362.16, + "probability": 1.0 + }, + { + "word": " there", + "start": 362.16, + "end": 362.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 362.42, + "end": 362.66, + "probability": 0.98486328125 + }, + { + "word": " never", + "start": 362.66, + "end": 363.24, + "probability": 0.99267578125 + }, + { + "word": " does", + "start": 363.24, + "end": 363.5, + "probability": 0.98583984375 + }, + { + "word": " it.", + "start": 363.5, + "end": 363.66, + "probability": 0.16357421875 + } + ] + }, + { + "id": 152, + "text": "It looks for stuff on the internet and it just keeps, you know, scrolling or whatever", + "start": 363.7, + "end": 367.76, + "words": [ + { + "word": " It", + "start": 363.7, + "end": 363.86, + "probability": 0.99658203125 + }, + { + "word": " looks", + "start": 363.86, + "end": 364.34, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 364.34, + "end": 364.52, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 364.52, + "end": 364.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 364.74, + "end": 364.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 364.94, + "end": 365.06, + "probability": 1.0 + }, + { + "word": " internet", + "start": 365.06, + "end": 365.3, + "probability": 0.307373046875 + }, + { + "word": " and", + "start": 365.3, + "end": 365.54, + "probability": 0.76806640625 + }, + { + "word": " it", + "start": 365.54, + "end": 365.64, + "probability": 1.0 + }, + { + "word": " just", + "start": 365.64, + "end": 365.84, + "probability": 1.0 + }, + { + "word": " keeps,", + "start": 365.84, + "end": 366.2, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 366.26, + "end": 366.48, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 366.48, + "end": 366.62, + "probability": 1.0 + }, + { + "word": " scrolling", + "start": 366.62, + "end": 367.2, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 367.2, + "end": 367.5, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 367.5, + "end": 367.76, + "probability": 1.0 + } + ] + }, + { + "id": 153, + "text": "and it never finishes.", + "start": 367.76, + "end": 368.8, + "words": [ + { + "word": " and", + "start": 367.76, + "end": 368.0, + "probability": 0.626953125 + }, + { + "word": " it", + "start": 368.0, + "end": 368.1, + "probability": 1.0 + }, + { + "word": " never", + "start": 368.1, + "end": 368.36, + "probability": 1.0 + }, + { + "word": " finishes.", + "start": 368.36, + "end": 368.8, + "probability": 1.0 + } + ] + }, + { + "id": 154, + "text": "Do you have the little Windows 10 update logo down in the lower right-hand corner?", + "start": 369.22, + "end": 373.58, + "words": [ + { + "word": " Do", + "start": 369.22, + "end": 369.32, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 369.32, + "end": 369.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 369.4, + "end": 369.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 369.56, + "end": 369.66, + "probability": 1.0 + }, + { + "word": " little", + "start": 369.66, + "end": 369.88, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 369.88, + "end": 370.28, + "probability": 0.9970703125 + }, + { + "word": " 10", + "start": 370.28, + "end": 370.68, + "probability": 0.99951171875 + }, + { + "word": " update", + "start": 370.68, + "end": 371.48, + "probability": 0.99951171875 + }, + { + "word": " logo", + "start": 371.48, + "end": 371.86, + "probability": 1.0 + }, + { + "word": " down", + "start": 371.86, + "end": 372.3, + "probability": 0.99658203125 + }, + { + "word": " in", + "start": 372.3, + "end": 372.46, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 372.46, + "end": 372.54, + "probability": 1.0 + }, + { + "word": " lower", + "start": 372.54, + "end": 372.94, + "probability": 1.0 + }, + { + "word": " right", + "start": 372.94, + "end": 373.18, + "probability": 1.0 + }, + { + "word": "-hand", + "start": 373.18, + "end": 373.32, + "probability": 0.822265625 + }, + { + "word": " corner?", + "start": 373.32, + "end": 373.58, + "probability": 1.0 + } + ] + }, + { + "id": 155, + "text": "I, I knew you'd say that first answer, but is there a possibility that I can fix the", + "start": 373.7, + "end": 378.28, + "words": [ + { + "word": " I,", + "start": 373.7, + "end": 373.84, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 373.84, + "end": 373.98, + "probability": 0.9990234375 + }, + { + "word": " knew", + "start": 373.98, + "end": 374.2, + "probability": 0.99658203125 + }, + { + "word": " you'd", + "start": 374.2, + "end": 374.44, + "probability": 0.99609375 + }, + { + "word": " say", + "start": 374.44, + "end": 374.66, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 374.66, + "end": 374.86, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 374.86, + "end": 375.18, + "probability": 0.99853515625 + }, + { + "word": " answer,", + "start": 375.18, + "end": 375.58, + "probability": 0.994140625 + }, + { + "word": " but", + "start": 375.72, + "end": 375.88, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 375.88, + "end": 376.38, + "probability": 0.99267578125 + }, + { + "word": " there", + "start": 376.38, + "end": 376.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 376.56, + "end": 376.72, + "probability": 0.9990234375 + }, + { + "word": " possibility", + "start": 376.72, + "end": 377.28, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 377.28, + "end": 377.58, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 377.58, + "end": 377.68, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 377.68, + "end": 377.82, + "probability": 0.99951171875 + }, + { + "word": " fix", + "start": 377.82, + "end": 378.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 378.12, + "end": 378.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 156, + "text": "Windows 7 or is it, you're just going to make me go to 10?", + "start": 378.28, + "end": 381.76, + "words": [ + { + "word": " Windows", + "start": 378.28, + "end": 378.5, + "probability": 0.9921875 + }, + { + "word": " 7", + "start": 378.5, + "end": 378.88, + "probability": 0.96826171875 + }, + { + "word": " or", + "start": 378.88, + "end": 379.22, + "probability": 0.79833984375 + }, + { + "word": " is", + "start": 379.22, + "end": 379.74, + "probability": 0.7421875 + }, + { + "word": " it,", + "start": 379.74, + "end": 380.06, + "probability": 0.98779296875 + }, + { + "word": " you're", + "start": 380.12, + "end": 380.3, + "probability": 0.95751953125 + }, + { + "word": " just", + "start": 380.3, + "end": 380.4, + "probability": 0.9931640625 + }, + { + "word": " going", + "start": 380.4, + "end": 380.54, + "probability": 0.75927734375 + }, + { + "word": " to", + "start": 380.54, + "end": 380.66, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 380.66, + "end": 381.08, + "probability": 0.99853515625 + }, + { + "word": " me", + "start": 381.08, + "end": 381.24, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 381.24, + "end": 381.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 381.4, + "end": 381.5, + "probability": 0.99658203125 + }, + { + "word": " 10?", + "start": 381.5, + "end": 381.76, + "probability": 0.99169921875 + } + ] + }, + { + "id": 157, + "text": "No, what I'm saying is that the reason you're not getting updates is because it's waiting", + "start": 381.9, + "end": 385.72, + "words": [ + { + "word": " No,", + "start": 381.9, + "end": 382.34, + "probability": 0.99267578125 + }, + { + "word": " what", + "start": 382.42, + "end": 382.54, + "probability": 0.998046875 + }, + { + "word": " I'm", + "start": 382.54, + "end": 382.72, + "probability": 0.99951171875 + }, + { + "word": " saying", + "start": 382.72, + "end": 382.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 382.96, + "end": 383.1, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 383.1, + "end": 383.22, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 383.22, + "end": 383.38, + "probability": 0.99951171875 + }, + { + "word": " reason", + "start": 383.38, + "end": 383.64, + "probability": 1.0 + }, + { + "word": " you're", + "start": 383.64, + "end": 383.86, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 383.86, + "end": 384.06, + "probability": 1.0 + }, + { + "word": " getting", + "start": 384.06, + "end": 384.34, + "probability": 0.99951171875 + }, + { + "word": " updates", + "start": 384.34, + "end": 384.76, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 384.76, + "end": 384.98, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 384.98, + "end": 385.2, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 385.2, + "end": 385.46, + "probability": 1.0 + }, + { + "word": " waiting", + "start": 385.46, + "end": 385.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 158, + "text": "for the 10 because that's installed.", + "start": 385.72, + "end": 387.42, + "words": [ + { + "word": " for", + "start": 385.72, + "end": 386.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 386.02, + "end": 386.16, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 386.16, + "end": 386.38, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 386.38, + "end": 386.8, + "probability": 0.60107421875 + }, + { + "word": " that's", + "start": 386.8, + "end": 387.12, + "probability": 1.0 + }, + { + "word": " installed.", + "start": 387.12, + "end": 387.42, + "probability": 1.0 + } + ] + }, + { + "id": 159, + "text": "Well, the end, what I mean is waiting for the 10.", + "start": 388.22, + "end": 392.0, + "words": [ + { + "word": " Well,", + "start": 388.22, + "end": 388.62, + "probability": 0.361572265625 + }, + { + "word": " the", + "start": 388.7, + "end": 388.9, + "probability": 0.322021484375 + }, + { + "word": " end,", + "start": 388.9, + "end": 389.3, + "probability": 0.458984375 + }, + { + "word": " what", + "start": 389.4, + "end": 390.7, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 390.7, + "end": 390.86, + "probability": 0.732421875 + }, + { + "word": " mean", + "start": 390.86, + "end": 391.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 391.0, + "end": 391.12, + "probability": 0.998046875 + }, + { + "word": " waiting", + "start": 391.12, + "end": 391.36, + "probability": 0.98828125 + }, + { + "word": " for", + "start": 391.36, + "end": 391.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 391.64, + "end": 391.78, + "probability": 0.99951171875 + }, + { + "word": " 10.", + "start": 391.78, + "end": 392.0, + "probability": 0.97119140625 + } + ] + }, + { + "id": 160, + "text": "So if you have the little flag icon down by your clock, that, that's like.", + "start": 392.2, + "end": 396.5, + "words": [ + { + "word": " So", + "start": 392.2, + "end": 392.42, + "probability": 0.984375 + }, + { + "word": " if", + "start": 392.42, + "end": 392.7, + "probability": 0.6650390625 + }, + { + "word": " you", + "start": 392.7, + "end": 393.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 393.06, + "end": 393.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 393.26, + "end": 393.4, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 393.4, + "end": 393.54, + "probability": 1.0 + }, + { + "word": " flag", + "start": 393.54, + "end": 393.82, + "probability": 0.99951171875 + }, + { + "word": " icon", + "start": 393.82, + "end": 394.12, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 394.12, + "end": 394.46, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 394.46, + "end": 394.62, + "probability": 1.0 + }, + { + "word": " your", + "start": 394.62, + "end": 394.78, + "probability": 1.0 + }, + { + "word": " clock,", + "start": 394.78, + "end": 395.08, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 395.22, + "end": 395.92, + "probability": 0.96923828125 + }, + { + "word": " that's", + "start": 395.98, + "end": 396.34, + "probability": 0.99609375 + }, + { + "word": " like.", + "start": 396.34, + "end": 396.5, + "probability": 0.849609375 + } + ] + }, + { + "id": 161, + "text": "Well, I have a little thing down there that says get Windows 10.", + "start": 396.56, + "end": 399.22, + "words": [ + { + "word": " Well,", + "start": 396.56, + "end": 396.58, + "probability": 0.8681640625 + }, + { + "word": " I", + "start": 396.58, + "end": 396.58, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 396.58, + "end": 396.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 396.7, + "end": 396.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 396.78, + "end": 396.94, + "probability": 1.0 + }, + { + "word": " thing", + "start": 396.94, + "end": 397.2, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 397.2, + "end": 397.42, + "probability": 1.0 + }, + { + "word": " there", + "start": 397.42, + "end": 397.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 397.64, + "end": 397.8, + "probability": 0.99951171875 + }, + { + "word": " says", + "start": 397.8, + "end": 398.02, + "probability": 1.0 + }, + { + "word": " get", + "start": 398.02, + "end": 398.32, + "probability": 0.87646484375 + }, + { + "word": " Windows", + "start": 398.32, + "end": 398.74, + "probability": 0.984375 + }, + { + "word": " 10.", + "start": 398.74, + "end": 399.22, + "probability": 1.0 + } + ] + }, + { + "id": 162, + "text": "Right.", + "start": 399.70000000000005, + "end": 400.1, + "words": [ + { + "word": " Right.", + "start": 399.70000000000005, + "end": 400.1, + "probability": 0.994140625 + } + ] + }, + { + "id": 163, + "text": "All other updates are paused until you decide on that one.", + "start": 400.56, + "end": 404.04, + "words": [ + { + "word": " All", + "start": 400.56, + "end": 400.96, + "probability": 0.998046875 + }, + { + "word": " other", + "start": 400.96, + "end": 401.3, + "probability": 1.0 + }, + { + "word": " updates", + "start": 401.3, + "end": 401.66, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 401.66, + "end": 401.82, + "probability": 1.0 + }, + { + "word": " paused", + "start": 401.82, + "end": 402.14, + "probability": 0.99951171875 + }, + { + "word": " until", + "start": 402.14, + "end": 402.38, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 402.38, + "end": 402.54, + "probability": 1.0 + }, + { + "word": " decide", + "start": 402.54, + "end": 402.76, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 402.76, + "end": 403.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 403.68, + "end": 403.84, + "probability": 1.0 + }, + { + "word": " one.", + "start": 403.84, + "end": 404.04, + "probability": 1.0 + } + ] + }, + { + "id": 164, + "text": "It's basically saying you're going to get Windows 10 anyway, so there's no point in", + "start": 404.12, + "end": 406.9, + "words": [ + { + "word": " It's", + "start": 404.12, + "end": 404.34, + "probability": 0.9990234375 + }, + { + "word": " basically", + "start": 404.34, + "end": 404.64, + "probability": 1.0 + }, + { + "word": " saying", + "start": 404.64, + "end": 404.94, + "probability": 1.0 + }, + { + "word": " you're", + "start": 404.94, + "end": 405.22, + "probability": 0.984375 + }, + { + "word": " going", + "start": 405.22, + "end": 405.32, + "probability": 0.9853515625 + }, + { + "word": " to", + "start": 405.32, + "end": 405.38, + "probability": 1.0 + }, + { + "word": " get", + "start": 405.38, + "end": 405.48, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 405.48, + "end": 405.64, + "probability": 0.9990234375 + }, + { + "word": " 10", + "start": 405.64, + "end": 405.82, + "probability": 1.0 + }, + { + "word": " anyway,", + "start": 405.82, + "end": 406.08, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 406.14, + "end": 406.32, + "probability": 1.0 + }, + { + "word": " there's", + "start": 406.32, + "end": 406.52, + "probability": 1.0 + }, + { + "word": " no", + "start": 406.52, + "end": 406.6, + "probability": 1.0 + }, + { + "word": " point", + "start": 406.6, + "end": 406.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 406.84, + "end": 406.9, + "probability": 0.89306640625 + } + ] + }, + { + "id": 165, + "text": "installing these other upgrades.", + "start": 406.9, + "end": 407.88, + "words": [ + { + "word": " installing", + "start": 406.9, + "end": 407.18, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 407.18, + "end": 407.42, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 407.42, + "end": 407.58, + "probability": 1.0 + }, + { + "word": " upgrades.", + "start": 407.58, + "end": 407.88, + "probability": 0.99609375 + } + ] + }, + { + "id": 166, + "text": "So what do I have to do then?", + "start": 408.46000000000004, + "end": 410.02, + "words": [ + { + "word": " So", + "start": 408.46000000000004, + "end": 408.86, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 408.86, + "end": 409.02, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 409.02, + "end": 409.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 409.1, + "end": 409.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 409.22, + "end": 409.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 409.42, + "end": 409.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 409.56, + "end": 409.78, + "probability": 1.0 + }, + { + "word": " then?", + "start": 409.78, + "end": 410.02, + "probability": 0.97802734375 + } + ] + }, + { + "id": 167, + "text": "So you either uninstall the 303 update that we've talked about in previous episodes.", + "start": 410.06, + "end": 414.94, + "words": [ + { + "word": " So", + "start": 410.06, + "end": 410.16, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 410.16, + "end": 410.32, + "probability": 0.99951171875 + }, + { + "word": " either", + "start": 410.32, + "end": 410.56, + "probability": 0.99951171875 + }, + { + "word": " uninstall", + "start": 410.56, + "end": 411.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 411.12, + "end": 411.54, + "probability": 1.0 + }, + { + "word": " 303", + "start": 411.54, + "end": 412.32, + "probability": 0.9970703125 + }, + { + "word": " update", + "start": 412.32, + "end": 412.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 412.6, + "end": 412.94, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 412.94, + "end": 413.14, + "probability": 0.99951171875 + }, + { + "word": " talked", + "start": 413.14, + "end": 413.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 413.28, + "end": 413.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 413.54, + "end": 413.8, + "probability": 0.99853515625 + }, + { + "word": " previous", + "start": 413.8, + "end": 414.48, + "probability": 0.99755859375 + }, + { + "word": " episodes.", + "start": 414.48, + "end": 414.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 168, + "text": "Okay.", + "start": 415.48, + "end": 415.88, + "words": [ + { + "word": " Okay.", + "start": 415.48, + "end": 415.88, + "probability": 0.9775390625 + } + ] + }, + { + "id": 169, + "text": "I don't know what that is, but.", + "start": 415.9, + "end": 417.04, + "words": [ + { + "word": " I", + "start": 415.9, + "end": 416.02, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 416.02, + "end": 416.14, + "probability": 1.0 + }, + { + "word": " know", + "start": 416.14, + "end": 416.22, + "probability": 1.0 + }, + { + "word": " what", + "start": 416.22, + "end": 416.34, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 416.34, + "end": 416.5, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 416.5, + "end": 416.86, + "probability": 1.0 + }, + { + "word": " but.", + "start": 416.86, + "end": 417.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 170, + "text": "Okay.", + "start": 417.12, + "end": 417.46, + "words": [ + { + "word": " Okay.", + "start": 417.12, + "end": 417.46, + "probability": 0.0107574462890625 + } + ] + }, + { + "id": 171, + "text": "So if you go to the Windows 10, you're going to get Windows 10.", + "start": 417.46, + "end": 418.02, + "words": [ + { + "word": " So", + "start": 417.46, + "end": 417.46, + "probability": 0.8671875 + }, + { + "word": " if", + "start": 417.46, + "end": 417.82, + "probability": 0.8701171875 + }, + { + "word": " you", + "start": 417.82, + "end": 417.92, + "probability": 0.994140625 + }, + { + "word": " go", + "start": 417.92, + "end": 418.02, + "probability": 0.94287109375 + }, + { + "word": " to", + "start": 418.02, + "end": 418.02, + "probability": 0.5302734375 + }, + { + "word": " the", + "start": 418.02, + "end": 418.02, + "probability": 0.343994140625 + }, + { + "word": " Windows", + "start": 418.02, + "end": 418.02, + "probability": 0.07073974609375 + }, + { + "word": " 10,", + "start": 418.02, + "end": 418.02, + "probability": 0.89697265625 + }, + { + "word": " you're", + "start": 418.02, + "end": 418.02, + "probability": 0.443603515625 + }, + { + "word": " going", + "start": 418.02, + "end": 418.02, + "probability": 0.98046875 + }, + { + "word": " to", + "start": 418.02, + "end": 418.02, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 418.02, + "end": 418.02, + "probability": 0.449951171875 + }, + { + "word": " Windows", + "start": 418.02, + "end": 418.02, + "probability": 0.5546875 + }, + { + "word": " 10.", + "start": 418.02, + "end": 418.02, + "probability": 0.99267578125 + } + ] + }, + { + "id": 172, + "text": "If you go to add and remove programs, there is a button on the left where you can choose", + "start": 418.02, + "end": 423.96, + "words": [ + { + "word": " If", + "start": 418.02, + "end": 418.02, + "probability": 0.0745849609375 + }, + { + "word": " you", + "start": 418.02, + "end": 418.02, + "probability": 0.99267578125 + }, + { + "word": " go", + "start": 418.02, + "end": 418.02, + "probability": 0.9833984375 + }, + { + "word": " to", + "start": 418.02, + "end": 418.1, + "probability": 0.9931640625 + }, + { + "word": " add", + "start": 418.1, + "end": 418.24, + "probability": 0.2061767578125 + }, + { + "word": " and", + "start": 418.24, + "end": 418.32, + "probability": 0.236328125 + }, + { + "word": " remove", + "start": 418.32, + "end": 418.48, + "probability": 0.986328125 + }, + { + "word": " programs,", + "start": 418.48, + "end": 418.88, + "probability": 0.9931640625 + }, + { + "word": " there", + "start": 419.14, + "end": 420.12, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 420.12, + "end": 420.4, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 420.4, + "end": 420.64, + "probability": 0.9970703125 + }, + { + "word": " button", + "start": 420.64, + "end": 421.12, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 421.12, + "end": 421.36, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 421.36, + "end": 421.46, + "probability": 0.99951171875 + }, + { + "word": " left", + "start": 421.46, + "end": 421.86, + "probability": 0.998046875 + }, + { + "word": " where", + "start": 421.86, + "end": 423.04, + "probability": 0.9248046875 + }, + { + "word": " you", + "start": 423.04, + "end": 423.34, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 423.34, + "end": 423.52, + "probability": 0.99658203125 + }, + { + "word": " choose", + "start": 423.52, + "end": 423.96, + "probability": 0.982421875 + } + ] + }, + { + "id": 173, + "text": "to view installed updates.", + "start": 423.96, + "end": 426.5, + "words": [ + { + "word": " to", + "start": 423.96, + "end": 424.76, + "probability": 0.97509765625 + }, + { + "word": " view", + "start": 424.76, + "end": 425.58, + "probability": 0.99267578125 + }, + { + "word": " installed", + "start": 425.58, + "end": 426.02, + "probability": 0.98828125 + }, + { + "word": " updates.", + "start": 426.02, + "end": 426.5, + "probability": 0.99609375 + } + ] + }, + { + "id": 174, + "text": "Right.", + "start": 426.88, + "end": 427.26, + "words": [ + { + "word": " Right.", + "start": 426.88, + "end": 427.26, + "probability": 0.37646484375 + } + ] + }, + { + "id": 175, + "text": "One of them is KB303, I think.", + "start": 427.54, + "end": 431.28, + "words": [ + { + "word": " One", + "start": 427.54, + "end": 427.82, + "probability": 0.98095703125 + }, + { + "word": " of", + "start": 427.82, + "end": 427.98, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 427.98, + "end": 428.14, + "probability": 0.99658203125 + }, + { + "word": " is", + "start": 428.14, + "end": 428.3, + "probability": 0.9990234375 + }, + { + "word": " KB303,", + "start": 428.3, + "end": 430.4, + "probability": 0.9462890625 + }, + { + "word": " I", + "start": 430.64, + "end": 431.0, + "probability": 0.998046875 + }, + { + "word": " think.", + "start": 431.0, + "end": 431.28, + "probability": 1.0 + } + ] + }, + { + "id": 176, + "text": "Yeah, it's 303 something.", + "start": 431.3, + "end": 432.34, + "words": [ + { + "word": " Yeah,", + "start": 431.3, + "end": 431.46, + "probability": 0.36669921875 + }, + { + "word": " it's", + "start": 431.46, + "end": 431.54, + "probability": 0.99462890625 + }, + { + "word": " 303", + "start": 431.54, + "end": 432.02, + "probability": 0.9970703125 + }, + { + "word": " something.", + "start": 432.02, + "end": 432.34, + "probability": 0.91064453125 + } + ] + }, + { + "id": 177, + "text": "It's the only 303 update that you'll have.", + "start": 432.52, + "end": 435.16, + "words": [ + { + "word": " It's", + "start": 432.52, + "end": 432.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 432.84, + "end": 432.92, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 432.92, + "end": 433.3, + "probability": 1.0 + }, + { + "word": " 303", + "start": 433.3, + "end": 434.08, + "probability": 0.99853515625 + }, + { + "word": " update", + "start": 434.08, + "end": 434.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 434.46, + "end": 434.76, + "probability": 0.99951171875 + }, + { + "word": " you'll", + "start": 434.76, + "end": 434.9, + "probability": 0.99853515625 + }, + { + "word": " have.", + "start": 434.9, + "end": 435.16, + "probability": 1.0 + } + ] + }, + { + "id": 178, + "text": "And if you uninstall that, that makes the Windows 10 upgrade icon go away and your updates", + "start": 436.08000000000004, + "end": 442.28, + "words": [ + { + "word": " And", + "start": 436.08000000000004, + "end": 436.66, + "probability": 0.86865234375 + }, + { + "word": " if", + "start": 436.66, + "end": 436.98, + "probability": 0.98583984375 + }, + { + "word": " you", + "start": 436.98, + "end": 437.14, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 437.14, + "end": 437.54, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 437.54, + "end": 437.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 437.96, + "end": 438.12, + "probability": 0.99951171875 + }, + { + "word": " makes", + "start": 438.12, + "end": 438.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 438.38, + "end": 438.58, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 438.58, + "end": 438.78, + "probability": 0.99755859375 + }, + { + "word": " 10", + "start": 438.78, + "end": 439.12, + "probability": 0.99951171875 + }, + { + "word": " upgrade", + "start": 439.12, + "end": 439.82, + "probability": 0.9931640625 + }, + { + "word": " icon", + "start": 439.82, + "end": 440.52, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 440.52, + "end": 441.0, + "probability": 1.0 + }, + { + "word": " away", + "start": 441.0, + "end": 441.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 441.32, + "end": 441.68, + "probability": 0.440673828125 + }, + { + "word": " your", + "start": 441.68, + "end": 441.86, + "probability": 1.0 + }, + { + "word": " updates", + "start": 441.86, + "end": 442.28, + "probability": 1.0 + } + ] + }, + { + "id": 179, + "text": "will resume as normal.", + "start": 442.28, + "end": 443.6, + "words": [ + { + "word": " will", + "start": 442.28, + "end": 442.52, + "probability": 1.0 + }, + { + "word": " resume", + "start": 442.52, + "end": 442.92, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 442.92, + "end": 443.28, + "probability": 0.99951171875 + }, + { + "word": " normal.", + "start": 443.28, + "end": 443.6, + "probability": 1.0 + } + ] + }, + { + "id": 180, + "text": "But just know that as soon as you update, that 303 is going to go away.", + "start": 443.94, + "end": 448.0, + "words": [ + { + "word": " But", + "start": 443.94, + "end": 444.52, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 444.52, + "end": 445.38, + "probability": 0.93017578125 + }, + { + "word": " know", + "start": 445.38, + "end": 445.68, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 445.68, + "end": 446.04, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 446.04, + "end": 446.2, + "probability": 0.99609375 + }, + { + "word": " soon", + "start": 446.2, + "end": 446.44, + "probability": 1.0 + }, + { + "word": " as", + "start": 446.44, + "end": 446.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 446.58, + "end": 446.7, + "probability": 1.0 + }, + { + "word": " update,", + "start": 446.7, + "end": 447.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 447.16, + "end": 447.38, + "probability": 0.96435546875 + }, + { + "word": " 303", + "start": 447.38, + "end": 447.86, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 447.86, + "end": 447.98, + "probability": 0.8837890625 + }, + { + "word": " going", + "start": 447.98, + "end": 448.0, + "probability": 0.56201171875 + }, + { + "word": " to", + "start": 448.0, + "end": 448.0, + "probability": 0.9814453125 + }, + { + "word": " go", + "start": 448.0, + "end": 448.0, + "probability": 0.51318359375 + }, + { + "word": " away.", + "start": 448.0, + "end": 448.0, + "probability": 0.98046875 + } + ] + }, + { + "id": 181, + "text": "It's coming back.", + "start": 448.02, + "end": 448.34, + "words": [ + { + "word": " It's", + "start": 448.02, + "end": 448.1, + "probability": 0.474609375 + }, + { + "word": " coming", + "start": 448.1, + "end": 448.1, + "probability": 0.61767578125 + }, + { + "word": " back.", + "start": 448.1, + "end": 448.34, + "probability": 0.99560546875 + } + ] + }, + { + "id": 182, + "text": "So you'll get one round of updates, and then it's going to be like, hey, it's time to get", + "start": 448.68, + "end": 452.36, + "words": [ + { + "word": " So", + "start": 448.68, + "end": 449.12, + "probability": 0.9453125 + }, + { + "word": " you'll", + "start": 449.12, + "end": 449.26, + "probability": 0.93896484375 + }, + { + "word": " get", + "start": 449.26, + "end": 449.42, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 449.42, + "end": 449.62, + "probability": 0.9990234375 + }, + { + "word": " round", + "start": 449.62, + "end": 449.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 449.9, + "end": 450.06, + "probability": 0.99951171875 + }, + { + "word": " updates,", + "start": 450.06, + "end": 450.36, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 450.54, + "end": 450.76, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 450.76, + "end": 450.92, + "probability": 1.0 + }, + { + "word": " it's", + "start": 450.92, + "end": 451.06, + "probability": 1.0 + }, + { + "word": " going", + "start": 451.06, + "end": 451.14, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 451.14, + "end": 451.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 451.2, + "end": 451.28, + "probability": 1.0 + }, + { + "word": " like,", + "start": 451.28, + "end": 451.48, + "probability": 0.99951171875 + }, + { + "word": " hey,", + "start": 451.56, + "end": 451.68, + "probability": 0.955078125 + }, + { + "word": " it's", + "start": 451.76, + "end": 452.06, + "probability": 1.0 + }, + { + "word": " time", + "start": 452.06, + "end": 452.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 452.18, + "end": 452.28, + "probability": 1.0 + }, + { + "word": " get", + "start": 452.28, + "end": 452.36, + "probability": 1.0 + } + ] + }, + { + "id": 183, + "text": "Windows 10.", + "start": 452.36, + "end": 452.72, + "words": [ + { + "word": " Windows", + "start": 452.36, + "end": 452.52, + "probability": 0.99951171875 + }, + { + "word": " 10.", + "start": 452.52, + "end": 452.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 184, + "text": "So they're making it harder for us to do this, is what you're saying.", + "start": 453.28000000000003, + "end": 456.16, + "words": [ + { + "word": " So", + "start": 453.28000000000003, + "end": 453.72, + "probability": 0.98828125 + }, + { + "word": " they're", + "start": 453.72, + "end": 453.88, + "probability": 0.99951171875 + }, + { + "word": " making", + "start": 453.88, + "end": 454.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 454.12, + "end": 454.32, + "probability": 1.0 + }, + { + "word": " harder", + "start": 454.32, + "end": 454.54, + "probability": 1.0 + }, + { + "word": " for", + "start": 454.54, + "end": 454.82, + "probability": 1.0 + }, + { + "word": " us", + "start": 454.82, + "end": 455.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 455.02, + "end": 455.16, + "probability": 1.0 + }, + { + "word": " do", + "start": 455.16, + "end": 455.32, + "probability": 1.0 + }, + { + "word": " this,", + "start": 455.32, + "end": 455.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 455.6, + "end": 455.7, + "probability": 1.0 + }, + { + "word": " what", + "start": 455.7, + "end": 455.78, + "probability": 1.0 + }, + { + "word": " you're", + "start": 455.78, + "end": 455.94, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 455.94, + "end": 456.16, + "probability": 1.0 + } + ] + }, + { + "id": 185, + "text": "They do not at all want you in Windows 7 anymore.", + "start": 456.32, + "end": 459.52, + "words": [ + { + "word": " They", + "start": 456.32, + "end": 456.58, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 456.58, + "end": 456.76, + "probability": 1.0 + }, + { + "word": " not", + "start": 456.76, + "end": 457.2, + "probability": 1.0 + }, + { + "word": " at", + "start": 457.2, + "end": 457.34, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 457.34, + "end": 457.8, + "probability": 1.0 + }, + { + "word": " want", + "start": 457.8, + "end": 458.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 458.1, + "end": 458.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 458.28, + "end": 458.4, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 458.4, + "end": 458.62, + "probability": 1.0 + }, + { + "word": " 7", + "start": 458.62, + "end": 458.98, + "probability": 0.99951171875 + }, + { + "word": " anymore.", + "start": 458.98, + "end": 459.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 186, + "text": "Well, for a guy who's been using the Windows menu ever since Windows came out, what's the", + "start": 460.48, + "end": 468.14, + "words": [ + { + "word": " Well,", + "start": 460.48, + "end": 460.92, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 460.98, + "end": 461.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 461.18, + "end": 461.34, + "probability": 1.0 + }, + { + "word": " guy", + "start": 461.34, + "end": 461.54, + "probability": 1.0 + }, + { + "word": " who's", + "start": 461.54, + "end": 461.78, + "probability": 1.0 + }, + { + "word": " been", + "start": 461.78, + "end": 461.98, + "probability": 1.0 + }, + { + "word": " using", + "start": 461.98, + "end": 462.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 462.36, + "end": 462.54, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 462.54, + "end": 462.94, + "probability": 0.99755859375 + }, + { + "word": " menu", + "start": 462.94, + "end": 463.82, + "probability": 0.91259765625 + }, + { + "word": " ever", + "start": 463.82, + "end": 464.8, + "probability": 0.998046875 + }, + { + "word": " since", + "start": 464.8, + "end": 465.44, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 465.44, + "end": 465.88, + "probability": 1.0 + }, + { + "word": " came", + "start": 465.88, + "end": 466.24, + "probability": 0.99951171875 + }, + { + "word": " out,", + "start": 466.24, + "end": 466.62, + "probability": 1.0 + }, + { + "word": " what's", + "start": 466.82, + "end": 468.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 468.0, + "end": 468.14, + "probability": 1.0 + } + ] + }, + { + "id": 187, + "text": "bad stuff about going to 10?", + "start": 469.08, + "end": 470.8, + "words": [ + { + "word": " bad", + "start": 469.08, + "end": 469.52, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 469.52, + "end": 469.82, + "probability": 1.0 + }, + { + "word": " about", + "start": 469.82, + "end": 470.08, + "probability": 1.0 + }, + { + "word": " going", + "start": 470.08, + "end": 470.42, + "probability": 0.99169921875 + }, + { + "word": " to", + "start": 470.42, + "end": 470.6, + "probability": 1.0 + }, + { + "word": " 10?", + "start": 470.6, + "end": 470.8, + "probability": 0.974609375 + } + ] + }, + { + "id": 188, + "text": "Because I'm used to Windows 7 and its previous versions.", + "start": 470.88, + "end": 475.0, + "words": [ + { + "word": " Because", + "start": 470.88, + "end": 471.1, + "probability": 0.98876953125 + }, + { + "word": " I'm", + "start": 471.1, + "end": 471.44, + "probability": 1.0 + }, + { + "word": " used", + "start": 471.44, + "end": 471.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 471.88, + "end": 472.12, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 472.12, + "end": 472.4, + "probability": 1.0 + }, + { + "word": " 7", + "start": 472.4, + "end": 472.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 472.9, + "end": 473.3, + "probability": 0.99951171875 + }, + { + "word": " its", + "start": 473.3, + "end": 473.6, + "probability": 0.99951171875 + }, + { + "word": " previous", + "start": 473.6, + "end": 473.98, + "probability": 1.0 + }, + { + "word": " versions.", + "start": 473.98, + "end": 475.0, + "probability": 0.984375 + } + ] + }, + { + "id": 189, + "text": "So...", + "start": 476.6, + "end": 477.04, + "words": [ + { + "word": " So...", + "start": 476.6, + "end": 477.04, + "probability": 0.5380859375 + } + ] + }, + { + "id": 190, + "text": "There's not a huge difference.", + "start": 477.04, + "end": 478.0, + "words": [ + { + "word": " There's", + "start": 477.04, + "end": 477.32, + "probability": 0.875 + }, + { + "word": " not", + "start": 477.32, + "end": 477.46, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 477.46, + "end": 477.62, + "probability": 0.9990234375 + }, + { + "word": " huge", + "start": 477.62, + "end": 477.84, + "probability": 0.998046875 + }, + { + "word": " difference.", + "start": 477.84, + "end": 478.0, + "probability": 0.292236328125 + } + ] + }, + { + "id": 191, + "text": "There's not a huge difference between 7 and 10.", + "start": 478.02, + "end": 479.4, + "words": [ + { + "word": " There's", + "start": 478.02, + "end": 478.22, + "probability": 0.38134765625 + }, + { + "word": " not", + "start": 478.22, + "end": 478.22, + "probability": 0.041351318359375 + }, + { + "word": " a", + "start": 478.22, + "end": 478.22, + "probability": 0.392822265625 + }, + { + "word": " huge", + "start": 478.22, + "end": 478.22, + "probability": 0.9140625 + }, + { + "word": " difference", + "start": 478.22, + "end": 478.22, + "probability": 0.99365234375 + }, + { + "word": " between", + "start": 478.22, + "end": 478.54, + "probability": 0.99560546875 + }, + { + "word": " 7", + "start": 478.54, + "end": 479.0, + "probability": 0.92578125 + }, + { + "word": " and", + "start": 479.0, + "end": 479.16, + "probability": 0.99365234375 + }, + { + "word": " 10.", + "start": 479.16, + "end": 479.4, + "probability": 0.9775390625 + } + ] + }, + { + "id": 192, + "text": "Because for an old guy like me who's been using 7 and it's, like I say, forever, is it going", + "start": 479.96, + "end": 484.64, + "words": [ + { + "word": " Because", + "start": 479.96, + "end": 480.32, + "probability": 0.626953125 + }, + { + "word": " for", + "start": 480.32, + "end": 480.48, + "probability": 0.9931640625 + }, + { + "word": " an", + "start": 480.48, + "end": 480.6, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 480.6, + "end": 480.76, + "probability": 0.99951171875 + }, + { + "word": " guy", + "start": 480.76, + "end": 480.9, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 480.9, + "end": 481.14, + "probability": 0.9990234375 + }, + { + "word": " me", + "start": 481.14, + "end": 481.32, + "probability": 0.99951171875 + }, + { + "word": " who's", + "start": 481.32, + "end": 481.48, + "probability": 0.953125 + }, + { + "word": " been", + "start": 481.48, + "end": 481.66, + "probability": 0.9990234375 + }, + { + "word": " using", + "start": 481.66, + "end": 481.94, + "probability": 0.9990234375 + }, + { + "word": " 7", + "start": 481.94, + "end": 482.36, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 482.36, + "end": 482.52, + "probability": 0.54248046875 + }, + { + "word": " it's,", + "start": 482.52, + "end": 482.84, + "probability": 0.9912109375 + }, + { + "word": " like", + "start": 482.84, + "end": 483.16, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 483.16, + "end": 483.26, + "probability": 0.99951171875 + }, + { + "word": " say,", + "start": 483.26, + "end": 483.4, + "probability": 0.99951171875 + }, + { + "word": " forever,", + "start": 483.48, + "end": 483.72, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 483.98, + "end": 484.4, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 484.4, + "end": 484.52, + "probability": 0.99365234375 + }, + { + "word": " going", + "start": 484.52, + "end": 484.64, + "probability": 0.99609375 + } + ] + }, + { + "id": 193, + "text": "to be a big difference?", + "start": 484.64, + "end": 485.48, + "words": [ + { + "word": " to", + "start": 484.64, + "end": 484.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 484.74, + "end": 484.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 484.84, + "end": 484.92, + "probability": 1.0 + }, + { + "word": " big", + "start": 484.92, + "end": 485.12, + "probability": 1.0 + }, + { + "word": " difference?", + "start": 485.12, + "end": 485.48, + "probability": 1.0 + } + ] + }, + { + "id": 194, + "text": "No.", + "start": 485.6, + "end": 485.94, + "words": [ + { + "word": " No.", + "start": 485.6, + "end": 485.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 195, + "text": "No.", + "start": 486.24, + "end": 486.6, + "words": [ + { + "word": " No.", + "start": 486.24, + "end": 486.6, + "probability": 0.84130859375 + } + ] + }, + { + "id": 196, + "text": "The difference is relatively minor.", + "start": 486.66, + "end": 488.88, + "words": [ + { + "word": " The", + "start": 486.66, + "end": 486.84, + "probability": 0.9931640625 + }, + { + "word": " difference", + "start": 486.84, + "end": 487.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 487.2, + "end": 487.5, + "probability": 1.0 + }, + { + "word": " relatively", + "start": 487.5, + "end": 488.28, + "probability": 1.0 + }, + { + "word": " minor.", + "start": 488.28, + "end": 488.88, + "probability": 1.0 + } + ] + }, + { + "id": 197, + "text": "Now, it's not like going to Windows 8, which was a huge change for the interface.", + "start": 489.5, + "end": 493.42, + "words": [ + { + "word": " Now,", + "start": 489.5, + "end": 489.86, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 489.88, + "end": 489.98, + "probability": 1.0 + }, + { + "word": " not", + "start": 489.98, + "end": 490.08, + "probability": 1.0 + }, + { + "word": " like", + "start": 490.08, + "end": 490.24, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 490.24, + "end": 490.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 490.42, + "end": 490.82, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 490.82, + "end": 491.1, + "probability": 1.0 + }, + { + "word": " 8,", + "start": 491.1, + "end": 491.34, + "probability": 1.0 + }, + { + "word": " which", + "start": 491.42, + "end": 491.62, + "probability": 1.0 + }, + { + "word": " was", + "start": 491.62, + "end": 491.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 491.8, + "end": 491.98, + "probability": 1.0 + }, + { + "word": " huge", + "start": 491.98, + "end": 492.38, + "probability": 0.99951171875 + }, + { + "word": " change", + "start": 492.38, + "end": 492.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 492.78, + "end": 493.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 493.02, + "end": 493.12, + "probability": 1.0 + }, + { + "word": " interface.", + "start": 493.12, + "end": 493.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 198, + "text": "Right.", + "start": 493.78, + "end": 494.14, + "words": [ + { + "word": " Right.", + "start": 493.78, + "end": 494.14, + "probability": 0.99365234375 + } + ] + }, + { + "id": 199, + "text": "So I think they heard a little bit of the feedback there and decided that they'll go", + "start": 495.05999999999995, + "end": 500.42, + "words": [ + { + "word": " So", + "start": 495.05999999999995, + "end": 495.41999999999996, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 495.41999999999996, + "end": 495.78, + "probability": 0.70556640625 + }, + { + "word": " think", + "start": 495.78, + "end": 496.18, + "probability": 1.0 + }, + { + "word": " they", + "start": 496.18, + "end": 496.44, + "probability": 0.90869140625 + }, + { + "word": " heard", + "start": 496.44, + "end": 496.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 496.96, + "end": 497.16, + "probability": 1.0 + }, + { + "word": " little", + "start": 497.16, + "end": 497.26, + "probability": 1.0 + }, + { + "word": " bit", + "start": 497.26, + "end": 497.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 497.4, + "end": 497.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 497.52, + "end": 497.56, + "probability": 0.9990234375 + }, + { + "word": " feedback", + "start": 497.56, + "end": 497.82, + "probability": 1.0 + }, + { + "word": " there", + "start": 497.82, + "end": 498.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 498.1, + "end": 498.84, + "probability": 0.9814453125 + }, + { + "word": " decided", + "start": 498.84, + "end": 499.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 499.32, + "end": 499.7, + "probability": 1.0 + }, + { + "word": " they'll", + "start": 499.7, + "end": 500.3, + "probability": 1.0 + }, + { + "word": " go", + "start": 500.3, + "end": 500.42, + "probability": 1.0 + } + ] + }, + { + "id": 200, + "text": "back to an interface that's more similar to 7.", + "start": 500.42, + "end": 503.1, + "words": [ + { + "word": " back", + "start": 500.42, + "end": 500.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 500.66, + "end": 500.84, + "probability": 1.0 + }, + { + "word": " an", + "start": 500.84, + "end": 501.06, + "probability": 0.94873046875 + }, + { + "word": " interface", + "start": 501.06, + "end": 501.84, + "probability": 1.0 + }, + { + "word": " that's", + "start": 501.84, + "end": 502.16, + "probability": 1.0 + }, + { + "word": " more", + "start": 502.16, + "end": 502.34, + "probability": 1.0 + }, + { + "word": " similar", + "start": 502.34, + "end": 502.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 502.66, + "end": 502.86, + "probability": 1.0 + }, + { + "word": " 7.", + "start": 502.86, + "end": 503.1, + "probability": 1.0 + } + ] + }, + { + "id": 201, + "text": "And I think that's a lot of the confusion that people have, and that's why they don't", + "start": 503.32, + "end": 506.44, + "words": [ + { + "word": " And", + "start": 503.32, + "end": 503.64, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 503.64, + "end": 503.72, + "probability": 1.0 + }, + { + "word": " think", + "start": 503.72, + "end": 503.9, + "probability": 1.0 + }, + { + "word": " that's", + "start": 503.9, + "end": 504.14, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 504.14, + "end": 504.26, + "probability": 0.9990234375 + }, + { + "word": " lot", + "start": 504.26, + "end": 504.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 504.64, + "end": 504.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 504.72, + "end": 504.78, + "probability": 1.0 + }, + { + "word": " confusion", + "start": 504.78, + "end": 505.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 505.1, + "end": 505.32, + "probability": 1.0 + }, + { + "word": " people", + "start": 505.32, + "end": 505.46, + "probability": 1.0 + }, + { + "word": " have,", + "start": 505.46, + "end": 505.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 505.86, + "end": 506.0, + "probability": 1.0 + }, + { + "word": " that's", + "start": 506.0, + "end": 506.14, + "probability": 1.0 + }, + { + "word": " why", + "start": 506.14, + "end": 506.22, + "probability": 1.0 + }, + { + "word": " they", + "start": 506.22, + "end": 506.36, + "probability": 1.0 + }, + { + "word": " don't", + "start": 506.36, + "end": 506.44, + "probability": 1.0 + } + ] + }, + { + "id": 202, + "text": "want to go to 10.", + "start": 506.44, + "end": 506.94, + "words": [ + { + "word": " want", + "start": 506.44, + "end": 506.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 506.5, + "end": 506.58, + "probability": 1.0 + }, + { + "word": " go", + "start": 506.58, + "end": 506.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 506.7, + "end": 506.76, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 506.76, + "end": 506.94, + "probability": 0.9970703125 + } + ] + }, + { + "id": 203, + "text": "That's because they think it's Windows 10.", + "start": 506.96, + "end": 508.0, + "words": [ + { + "word": " That's", + "start": 506.96, + "end": 507.1, + "probability": 0.5048828125 + }, + { + "word": " because", + "start": 507.1, + "end": 507.16, + "probability": 0.955078125 + }, + { + "word": " they", + "start": 507.16, + "end": 507.3, + "probability": 0.99560546875 + }, + { + "word": " think", + "start": 507.3, + "end": 507.48, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 507.48, + "end": 507.7, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 507.7, + "end": 507.88, + "probability": 0.99560546875 + }, + { + "word": " 10.", + "start": 507.88, + "end": 508.0, + "probability": 0.1514892578125 + } + ] + }, + { + "id": 204, + "text": "It's Windows 8.", + "start": 508.0, + "end": 508.08, + "words": [ + { + "word": " It's", + "start": 508.0, + "end": 508.06, + "probability": 0.22314453125 + }, + { + "word": " Windows", + "start": 508.06, + "end": 508.08, + "probability": 0.0005154609680175781 + }, + { + "word": " 8.", + "start": 508.08, + "end": 508.08, + "probability": 0.99365234375 + } + ] + }, + { + "id": 205, + "text": "But it's not.", + "start": 508.56, + "end": 509.36, + "words": [ + { + "word": " But", + "start": 508.56, + "end": 509.0, + "probability": 0.98876953125 + }, + { + "word": " it's", + "start": 509.0, + "end": 509.2, + "probability": 0.99609375 + }, + { + "word": " not.", + "start": 509.2, + "end": 509.36, + "probability": 1.0 + } + ] + }, + { + "id": 206, + "text": "Well, will all my programs still work on 10, or is there something that's not going to", + "start": 509.7, + "end": 513.96, + "words": [ + { + "word": " Well,", + "start": 509.7, + "end": 510.14, + "probability": 0.9453125 + }, + { + "word": " will", + "start": 510.18, + "end": 510.32, + "probability": 1.0 + }, + { + "word": " all", + "start": 510.32, + "end": 510.5, + "probability": 1.0 + }, + { + "word": " my", + "start": 510.5, + "end": 510.68, + "probability": 0.99951171875 + }, + { + "word": " programs", + "start": 510.68, + "end": 511.28, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 511.28, + "end": 511.56, + "probability": 1.0 + }, + { + "word": " work", + "start": 511.56, + "end": 511.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 511.84, + "end": 512.06, + "probability": 0.99951171875 + }, + { + "word": " 10,", + "start": 512.06, + "end": 512.28, + "probability": 0.7783203125 + }, + { + "word": " or", + "start": 512.38, + "end": 512.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 512.56, + "end": 512.76, + "probability": 1.0 + }, + { + "word": " there", + "start": 512.76, + "end": 512.9, + "probability": 1.0 + }, + { + "word": " something", + "start": 512.9, + "end": 513.18, + "probability": 1.0 + }, + { + "word": " that's", + "start": 513.18, + "end": 513.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 513.5, + "end": 513.66, + "probability": 1.0 + }, + { + "word": " going", + "start": 513.66, + "end": 513.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 513.86, + "end": 513.96, + "probability": 1.0 + } + ] + }, + { + "id": 207, + "text": "work?", + "start": 513.96, + "end": 514.18, + "words": [ + { + "word": " work?", + "start": 513.96, + "end": 514.18, + "probability": 1.0 + } + ] + }, + { + "id": 208, + "text": "As with any upgrade, there is the opportunity for things to not work.", + "start": 514.24, + "end": 517.78, + "words": [ + { + "word": " As", + "start": 514.24, + "end": 514.6, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 514.6, + "end": 514.76, + "probability": 1.0 + }, + { + "word": " any", + "start": 514.76, + "end": 515.04, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 515.04, + "end": 515.42, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 515.6, + "end": 515.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 515.76, + "end": 515.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 515.9, + "end": 516.02, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 516.02, + "end": 516.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 516.44, + "end": 516.88, + "probability": 1.0 + }, + { + "word": " things", + "start": 516.88, + "end": 517.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 517.1, + "end": 517.28, + "probability": 1.0 + }, + { + "word": " not", + "start": 517.28, + "end": 517.48, + "probability": 1.0 + }, + { + "word": " work.", + "start": 517.48, + "end": 517.78, + "probability": 1.0 + } + ] + }, + { + "id": 209, + "text": "Right.", + "start": 517.96, + "end": 518.3, + "words": [ + { + "word": " Right.", + "start": 517.96, + "end": 518.3, + "probability": 0.96533203125 + } + ] + }, + { + "id": 210, + "text": "But I have not seen any problems that I have found to be...", + "start": 519.1199999999999, + "end": 524.92, + "words": [ + { + "word": " But", + "start": 519.1199999999999, + "end": 519.56, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 519.56, + "end": 520.0, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 520.0, + "end": 520.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 520.2, + "end": 520.44, + "probability": 1.0 + }, + { + "word": " seen", + "start": 520.44, + "end": 520.9, + "probability": 1.0 + }, + { + "word": " any", + "start": 520.9, + "end": 521.54, + "probability": 1.0 + }, + { + "word": " problems", + "start": 521.54, + "end": 523.36, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 523.36, + "end": 523.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 523.78, + "end": 523.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 523.96, + "end": 524.08, + "probability": 1.0 + }, + { + "word": " found", + "start": 524.08, + "end": 524.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 524.32, + "end": 524.46, + "probability": 1.0 + }, + { + "word": " be...", + "start": 524.46, + "end": 524.92, + "probability": 0.6455078125 + } + ] + }, + { + "id": 211, + "text": "I haven't found any insurmountable problems.", + "start": 525.9, + "end": 528.1, + "words": [ + { + "word": " I", + "start": 525.9, + "end": 526.34, + "probability": 0.998046875 + }, + { + "word": " haven't", + "start": 526.34, + "end": 526.74, + "probability": 1.0 + }, + { + "word": " found", + "start": 526.74, + "end": 526.92, + "probability": 1.0 + }, + { + "word": " any", + "start": 526.92, + "end": 527.12, + "probability": 1.0 + }, + { + "word": " insurmountable", + "start": 527.12, + "end": 527.7, + "probability": 1.0 + }, + { + "word": " problems.", + "start": 527.7, + "end": 528.1, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "Okay.", + "start": 528.54, + "end": 528.98, + "words": [ + { + "word": " Okay.", + "start": 528.54, + "end": 528.98, + "probability": 0.8720703125 + } + ] + }, + { + "id": 213, + "text": "All the software that I've run across so far, we've either been able to make it work, or", + "start": 529.04, + "end": 534.86, + "words": [ + { + "word": " All", + "start": 529.04, + "end": 529.34, + "probability": 0.98876953125 + }, + { + "word": " the", + "start": 529.34, + "end": 529.54, + "probability": 1.0 + }, + { + "word": " software", + "start": 529.54, + "end": 529.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 529.86, + "end": 530.16, + "probability": 1.0 + }, + { + "word": " I've", + "start": 530.16, + "end": 530.7, + "probability": 0.9990234375 + }, + { + "word": " run", + "start": 530.7, + "end": 530.8, + "probability": 0.99853515625 + }, + { + "word": " across", + "start": 530.8, + "end": 531.0, + "probability": 1.0 + }, + { + "word": " so", + "start": 531.0, + "end": 531.2, + "probability": 1.0 + }, + { + "word": " far,", + "start": 531.2, + "end": 531.42, + "probability": 1.0 + }, + { + "word": " we've", + "start": 531.5, + "end": 531.66, + "probability": 1.0 + }, + { + "word": " either", + "start": 531.66, + "end": 532.14, + "probability": 1.0 + }, + { + "word": " been", + "start": 532.14, + "end": 532.78, + "probability": 1.0 + }, + { + "word": " able", + "start": 532.78, + "end": 533.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 533.02, + "end": 533.28, + "probability": 1.0 + }, + { + "word": " make", + "start": 533.28, + "end": 533.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 533.64, + "end": 533.78, + "probability": 1.0 + }, + { + "word": " work,", + "start": 533.78, + "end": 534.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 534.1, + "end": 534.86, + "probability": 1.0 + } + ] + }, + { + "id": 214, + "text": "it might require an update of some type.", + "start": 534.86, + "end": 537.02, + "words": [ + { + "word": " it", + "start": 534.86, + "end": 535.28, + "probability": 1.0 + }, + { + "word": " might", + "start": 535.28, + "end": 535.44, + "probability": 1.0 + }, + { + "word": " require", + "start": 535.44, + "end": 535.78, + "probability": 1.0 + }, + { + "word": " an", + "start": 535.78, + "end": 535.98, + "probability": 1.0 + }, + { + "word": " update", + "start": 535.98, + "end": 536.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 536.46, + "end": 536.68, + "probability": 1.0 + }, + { + "word": " some", + "start": 536.68, + "end": 536.74, + "probability": 1.0 + }, + { + "word": " type.", + "start": 536.74, + "end": 537.02, + "probability": 0.99609375 + } + ] + }, + { + "id": 215, + "text": "Okay.", + "start": 537.38, + "end": 537.82, + "words": [ + { + "word": " Okay.", + "start": 537.38, + "end": 537.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 216, + "text": "But don't fear that part of it.", + "start": 538.0, + "end": 540.22, + "words": [ + { + "word": " But", + "start": 538.0, + "end": 538.46, + "probability": 0.85498046875 + }, + { + "word": " don't", + "start": 538.46, + "end": 539.32, + "probability": 0.984375 + }, + { + "word": " fear", + "start": 539.32, + "end": 539.54, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 539.54, + "end": 539.76, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 539.76, + "end": 540.02, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 540.02, + "end": 540.16, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 540.16, + "end": 540.22, + "probability": 1.0 + } + ] + }, + { + "id": 217, + "text": "The only thing that you really have to fear is, as usual with all versions of Windows", + "start": 540.26, + "end": 544.56, + "words": [ + { + "word": " The", + "start": 540.26, + "end": 540.32, + "probability": 0.99755859375 + }, + { + "word": " only", + "start": 540.32, + "end": 540.46, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 540.46, + "end": 540.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 540.62, + "end": 540.72, + "probability": 0.98681640625 + }, + { + "word": " you", + "start": 540.72, + "end": 540.8, + "probability": 1.0 + }, + { + "word": " really", + "start": 540.8, + "end": 541.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 541.04, + "end": 541.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 541.22, + "end": 541.38, + "probability": 1.0 + }, + { + "word": " fear", + "start": 541.38, + "end": 541.58, + "probability": 1.0 + }, + { + "word": " is,", + "start": 541.58, + "end": 542.02, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 542.28, + "end": 542.64, + "probability": 1.0 + }, + { + "word": " usual", + "start": 542.64, + "end": 543.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 543.06, + "end": 543.4, + "probability": 0.611328125 + }, + { + "word": " all", + "start": 543.4, + "end": 543.66, + "probability": 1.0 + }, + { + "word": " versions", + "start": 543.66, + "end": 544.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 544.04, + "end": 544.32, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 544.32, + "end": 544.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 218, + "text": "for upgrades, is scanners and printers.", + "start": 544.56, + "end": 546.08, + "words": [ + { + "word": " for", + "start": 544.56, + "end": 544.8, + "probability": 0.998046875 + }, + { + "word": " upgrades,", + "start": 544.8, + "end": 545.12, + "probability": 0.75439453125 + }, + { + "word": " is", + "start": 545.24, + "end": 545.38, + "probability": 0.99853515625 + }, + { + "word": " scanners", + "start": 545.38, + "end": 545.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 545.72, + "end": 545.82, + "probability": 1.0 + }, + { + "word": " printers.", + "start": 545.82, + "end": 546.08, + "probability": 1.0 + } + ] + }, + { + "id": 219, + "text": "Right.", + "start": 547.06, + "end": 547.54, + "words": [ + { + "word": " Right.", + "start": 547.06, + "end": 547.54, + "probability": 0.9423828125 + } + ] + }, + { + "id": 220, + "text": "So if you have a really old printer or a really old scanner, it's very likely that those won't", + "start": 547.78, + "end": 553.76, + "words": [ + { + "word": " So", + "start": 547.78, + "end": 548.26, + "probability": 0.98974609375 + }, + { + "word": " if", + "start": 548.26, + "end": 548.44, + "probability": 0.93994140625 + }, + { + "word": " you", + "start": 548.44, + "end": 548.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 548.54, + "end": 548.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 548.68, + "end": 548.84, + "probability": 0.390869140625 + }, + { + "word": " really", + "start": 548.84, + "end": 549.18, + "probability": 1.0 + }, + { + "word": " old", + "start": 549.18, + "end": 549.52, + "probability": 1.0 + }, + { + "word": " printer", + "start": 549.52, + "end": 549.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 549.8, + "end": 550.38, + "probability": 0.9931640625 + }, + { + "word": " a", + "start": 550.38, + "end": 550.56, + "probability": 0.99658203125 + }, + { + "word": " really", + "start": 550.56, + "end": 550.76, + "probability": 1.0 + }, + { + "word": " old", + "start": 550.76, + "end": 550.98, + "probability": 1.0 + }, + { + "word": " scanner,", + "start": 550.98, + "end": 551.26, + "probability": 1.0 + }, + { + "word": " it's", + "start": 551.54, + "end": 552.04, + "probability": 0.9990234375 + }, + { + "word": " very", + "start": 552.04, + "end": 552.84, + "probability": 1.0 + }, + { + "word": " likely", + "start": 552.84, + "end": 553.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 553.2, + "end": 553.42, + "probability": 1.0 + }, + { + "word": " those", + "start": 553.42, + "end": 553.56, + "probability": 1.0 + }, + { + "word": " won't", + "start": 553.56, + "end": 553.76, + "probability": 1.0 + } + ] + }, + { + "id": 221, + "text": "work.", + "start": 553.76, + "end": 553.98, + "words": [ + { + "word": " work.", + "start": 553.76, + "end": 553.98, + "probability": 1.0 + } + ] + }, + { + "id": 222, + "text": "But there will be a new driver out there somewhere to make it work?", + "start": 554.24, + "end": 557.4, + "words": [ + { + "word": " But", + "start": 554.24, + "end": 554.54, + "probability": 0.99853515625 + }, + { + "word": " there", + "start": 554.54, + "end": 554.74, + "probability": 1.0 + }, + { + "word": " will", + "start": 554.74, + "end": 554.86, + "probability": 0.97021484375 + }, + { + "word": " be", + "start": 554.86, + "end": 554.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 554.96, + "end": 555.04, + "probability": 1.0 + }, + { + "word": " new", + "start": 555.04, + "end": 555.18, + "probability": 0.9951171875 + }, + { + "word": " driver", + "start": 555.18, + "end": 555.54, + "probability": 1.0 + }, + { + "word": " out", + "start": 555.54, + "end": 555.78, + "probability": 1.0 + }, + { + "word": " there", + "start": 555.78, + "end": 556.02, + "probability": 1.0 + }, + { + "word": " somewhere", + "start": 556.02, + "end": 556.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 556.46, + "end": 556.74, + "probability": 0.99853515625 + }, + { + "word": " make", + "start": 556.74, + "end": 557.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 557.12, + "end": 557.22, + "probability": 1.0 + }, + { + "word": " work?", + "start": 557.22, + "end": 557.4, + "probability": 1.0 + } + ] + }, + { + "id": 223, + "text": "Sometimes.", + "start": 557.74, + "end": 558.22, + "words": [ + { + "word": " Sometimes.", + "start": 557.74, + "end": 558.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 224, + "text": "Sometimes.", + "start": 559.04, + "end": 559.52, + "words": [ + { + "word": " Sometimes.", + "start": 559.04, + "end": 559.52, + "probability": 0.94482421875 + } + ] + }, + { + "id": 225, + "text": "Right.", + "start": 559.76, + "end": 559.88, + "words": [ + { + "word": " Right.", + "start": 559.76, + "end": 559.88, + "probability": 0.320068359375 + } + ] + }, + { + "id": 226, + "text": "A lot of times, though, whenever you do major Windows version updates, you get a new printer", + "start": 559.96, + "end": 564.74, + "words": [ + { + "word": " A", + "start": 559.96, + "end": 560.44, + "probability": 0.998046875 + }, + { + "word": " lot", + "start": 560.44, + "end": 560.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 560.66, + "end": 560.76, + "probability": 1.0 + }, + { + "word": " times,", + "start": 560.76, + "end": 561.08, + "probability": 1.0 + }, + { + "word": " though,", + "start": 561.08, + "end": 561.24, + "probability": 0.97314453125 + }, + { + "word": " whenever", + "start": 561.24, + "end": 561.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 561.42, + "end": 561.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 561.56, + "end": 561.72, + "probability": 1.0 + }, + { + "word": " major", + "start": 561.72, + "end": 562.04, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 562.04, + "end": 562.54, + "probability": 1.0 + }, + { + "word": " version", + "start": 562.54, + "end": 562.86, + "probability": 0.998046875 + }, + { + "word": " updates,", + "start": 562.86, + "end": 563.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 563.42, + "end": 563.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 563.68, + "end": 564.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 564.18, + "end": 564.32, + "probability": 1.0 + }, + { + "word": " new", + "start": 564.32, + "end": 564.42, + "probability": 1.0 + }, + { + "word": " printer", + "start": 564.42, + "end": 564.74, + "probability": 1.0 + } + ] + }, + { + "id": 227, + "text": "is how that works.", + "start": 564.74, + "end": 566.52, + "words": [ + { + "word": " is", + "start": 564.74, + "end": 565.68, + "probability": 0.415771484375 + }, + { + "word": " how", + "start": 565.68, + "end": 566.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 566.02, + "end": 566.22, + "probability": 1.0 + }, + { + "word": " works.", + "start": 566.22, + "end": 566.52, + "probability": 1.0 + } + ] + }, + { + "id": 228, + "text": "Right.", + "start": 566.94, + "end": 567.42, + "words": [ + { + "word": " Right.", + "start": 566.94, + "end": 567.42, + "probability": 0.0045166015625 + } + ] + }, + { + "id": 229, + "text": "Right.", + "start": 567.46, + "end": 567.86, + "words": [ + { + "word": " Right.", + "start": 567.46, + "end": 567.86, + "probability": 0.049072265625 + } + ] + }, + { + "id": 230, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 231, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 232, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 233, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 234, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 235, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 236, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 237, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 238, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 239, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 240, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 241, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 242, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 243, + "text": "", + "start": 567.98, + "end": 567.98, + "words": [] + }, + { + "id": 244, + "text": "So if I have all my internet stuff, that'll still all work.", + "start": 568.0, + "end": 570.32, + "words": [ + { + "word": " So", + "start": 568.0, + "end": 568.0, + "probability": 0.002716064453125 + }, + { + "word": " if", + "start": 568.0, + "end": 568.0, + "probability": 0.03021240234375 + }, + { + "word": " I", + "start": 568.0, + "end": 568.0, + "probability": 0.8583984375 + }, + { + "word": " have", + "start": 568.0, + "end": 568.0, + "probability": 0.1009521484375 + }, + { + "word": " all", + "start": 568.0, + "end": 568.0, + "probability": 0.69287109375 + }, + { + "word": " my", + "start": 568.0, + "end": 568.16, + "probability": 0.89501953125 + }, + { + "word": " internet", + "start": 568.16, + "end": 568.44, + "probability": 0.595703125 + }, + { + "word": " stuff,", + "start": 568.44, + "end": 568.76, + "probability": 0.99462890625 + }, + { + "word": " that'll", + "start": 569.08, + "end": 569.76, + "probability": 0.86572265625 + }, + { + "word": " still", + "start": 569.76, + "end": 569.94, + "probability": 0.9951171875 + }, + { + "word": " all", + "start": 569.94, + "end": 570.12, + "probability": 0.986328125 + }, + { + "word": " work.", + "start": 570.12, + "end": 570.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 245, + "text": "All that stuff's going to work.", + "start": 570.36, + "end": 571.2, + "words": [ + { + "word": " All", + "start": 570.36, + "end": 570.48, + "probability": 0.91357421875 + }, + { + "word": " that", + "start": 570.48, + "end": 570.6, + "probability": 0.99755859375 + }, + { + "word": " stuff's", + "start": 570.6, + "end": 570.9, + "probability": 0.986328125 + }, + { + "word": " going", + "start": 570.9, + "end": 570.98, + "probability": 0.96923828125 + }, + { + "word": " to", + "start": 570.98, + "end": 571.04, + "probability": 1.0 + }, + { + "word": " work.", + "start": 571.04, + "end": 571.2, + "probability": 1.0 + } + ] + }, + { + "id": 246, + "text": "Okay.", + "start": 571.68, + "end": 572.04, + "words": [ + { + "word": " Okay.", + "start": 571.68, + "end": 572.04, + "probability": 0.95703125 + } + ] + }, + { + "id": 247, + "text": "Yeah.", + "start": 572.42, + "end": 572.78, + "words": [ + { + "word": " Yeah.", + "start": 572.42, + "end": 572.78, + "probability": 0.88916015625 + } + ] + }, + { + "id": 248, + "text": "So don't sweat that part a whole lot.", + "start": 572.8, + "end": 574.02, + "words": [ + { + "word": " So", + "start": 572.8, + "end": 572.9, + "probability": 0.99560546875 + }, + { + "word": " don't", + "start": 572.9, + "end": 573.2, + "probability": 0.99609375 + }, + { + "word": " sweat", + "start": 573.2, + "end": 573.3, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 573.3, + "end": 573.46, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 573.46, + "end": 573.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 573.64, + "end": 573.78, + "probability": 0.9990234375 + }, + { + "word": " whole", + "start": 573.78, + "end": 573.86, + "probability": 1.0 + }, + { + "word": " lot.", + "start": 573.86, + "end": 574.02, + "probability": 1.0 + } + ] + }, + { + "id": 249, + "text": "Well, like I say, I've feared the unknown for too long.", + "start": 574.5, + "end": 577.54, + "words": [ + { + "word": " Well,", + "start": 574.5, + "end": 574.86, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 574.92, + "end": 575.12, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 575.12, + "end": 575.22, + "probability": 0.99658203125 + }, + { + "word": " say,", + "start": 575.22, + "end": 575.42, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 575.54, + "end": 575.9, + "probability": 0.8466796875 + }, + { + "word": " feared", + "start": 575.9, + "end": 576.26, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 576.26, + "end": 576.46, + "probability": 0.99951171875 + }, + { + "word": " unknown", + "start": 576.46, + "end": 576.72, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 576.72, + "end": 577.14, + "probability": 0.99951171875 + }, + { + "word": " too", + "start": 577.14, + "end": 577.32, + "probability": 0.99951171875 + }, + { + "word": " long.", + "start": 577.32, + "end": 577.54, + "probability": 1.0 + } + ] + }, + { + "id": 250, + "text": "Maybe I should go to 10.", + "start": 577.64, + "end": 578.42, + "words": [ + { + "word": " Maybe", + "start": 577.64, + "end": 577.8, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 577.8, + "end": 577.92, + "probability": 1.0 + }, + { + "word": " should", + "start": 577.92, + "end": 578.04, + "probability": 1.0 + }, + { + "word": " go", + "start": 578.04, + "end": 578.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 578.16, + "end": 578.22, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 578.22, + "end": 578.42, + "probability": 0.970703125 + } + ] + }, + { + "id": 251, + "text": "Well, you don't have a choice.", + "start": 578.84, + "end": 580.54, + "words": [ + { + "word": " Well,", + "start": 578.84, + "end": 579.2, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 579.3, + "end": 579.5, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 579.5, + "end": 580.08, + "probability": 1.0 + }, + { + "word": " have", + "start": 580.08, + "end": 580.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 580.18, + "end": 580.26, + "probability": 1.0 + }, + { + "word": " choice.", + "start": 580.26, + "end": 580.54, + "probability": 1.0 + } + ] + }, + { + "id": 252, + "text": "You're going to 10 whether you like it or not.", + "start": 580.72, + "end": 582.3, + "words": [ + { + "word": " You're", + "start": 580.72, + "end": 580.98, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 580.98, + "end": 581.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 581.12, + "end": 581.28, + "probability": 0.9892578125 + }, + { + "word": " 10", + "start": 581.28, + "end": 581.46, + "probability": 0.99951171875 + }, + { + "word": " whether", + "start": 581.46, + "end": 581.66, + "probability": 0.7626953125 + }, + { + "word": " you", + "start": 581.66, + "end": 581.8, + "probability": 1.0 + }, + { + "word": " like", + "start": 581.8, + "end": 581.94, + "probability": 1.0 + }, + { + "word": " it", + "start": 581.94, + "end": 582.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 582.04, + "end": 582.1, + "probability": 1.0 + }, + { + "word": " not.", + "start": 582.1, + "end": 582.3, + "probability": 1.0 + } + ] + }, + { + "id": 253, + "text": "Yeah.", + "start": 582.6, + "end": 582.96, + "words": [ + { + "word": " Yeah.", + "start": 582.6, + "end": 582.96, + "probability": 0.9912109375 + } + ] + }, + { + "id": 254, + "text": "So, I mean, you can delay it for right now.", + "start": 583.92, + "end": 586.64, + "words": [ + { + "word": " So,", + "start": 583.92, + "end": 584.28, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 584.28, + "end": 584.64, + "probability": 0.98095703125 + }, + { + "word": " mean,", + "start": 584.64, + "end": 585.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 585.44, + "end": 585.54, + "probability": 1.0 + }, + { + "word": " can", + "start": 585.54, + "end": 585.68, + "probability": 1.0 + }, + { + "word": " delay", + "start": 585.68, + "end": 585.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 585.92, + "end": 586.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 586.1, + "end": 586.24, + "probability": 1.0 + }, + { + "word": " right", + "start": 586.24, + "end": 586.4, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 586.4, + "end": 586.64, + "probability": 1.0 + } + ] + }, + { + "id": 255, + "text": "You can uninstall that 303 update, get the latest round of critical updates, but it's", + "start": 586.72, + "end": 592.24, + "words": [ + { + "word": " You", + "start": 586.72, + "end": 586.84, + "probability": 1.0 + }, + { + "word": " can", + "start": 586.84, + "end": 586.98, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 586.98, + "end": 587.32, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 587.32, + "end": 587.48, + "probability": 0.99951171875 + }, + { + "word": " 303", + "start": 587.48, + "end": 587.94, + "probability": 0.9931640625 + }, + { + "word": " update,", + "start": 587.94, + "end": 588.18, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 588.34, + "end": 588.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 588.5, + "end": 588.66, + "probability": 0.99853515625 + }, + { + "word": " latest", + "start": 588.66, + "end": 589.1, + "probability": 1.0 + }, + { + "word": " round", + "start": 589.1, + "end": 589.34, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 589.34, + "end": 589.5, + "probability": 1.0 + }, + { + "word": " critical", + "start": 589.5, + "end": 589.68, + "probability": 0.99853515625 + }, + { + "word": " updates,", + "start": 589.68, + "end": 590.1, + "probability": 1.0 + }, + { + "word": " but", + "start": 590.26, + "end": 590.42, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 590.42, + "end": 592.24, + "probability": 0.83935546875 + } + ] + }, + { + "id": 256, + "text": "going to push you into 10.", + "start": 592.24, + "end": 593.06, + "words": [ + { + "word": " going", + "start": 592.24, + "end": 592.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 592.32, + "end": 592.42, + "probability": 1.0 + }, + { + "word": " push", + "start": 592.42, + "end": 592.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 592.6, + "end": 592.72, + "probability": 1.0 + }, + { + "word": " into", + "start": 592.72, + "end": 592.86, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 592.86, + "end": 593.06, + "probability": 1.0 + } + ] + }, + { + "id": 257, + "text": "And by the end of July, that's the deadline.", + "start": 593.14, + "end": 596.38, + "words": [ + { + "word": " And", + "start": 593.14, + "end": 593.5, + "probability": 0.9931640625 + }, + { + "word": " by", + "start": 593.5, + "end": 593.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 593.72, + "end": 593.9, + "probability": 1.0 + }, + { + "word": " end", + "start": 593.9, + "end": 594.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 594.34, + "end": 594.6, + "probability": 1.0 + }, + { + "word": " July,", + "start": 594.6, + "end": 595.06, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 595.4, + "end": 595.92, + "probability": 0.6943359375 + }, + { + "word": " the", + "start": 595.92, + "end": 596.04, + "probability": 1.0 + }, + { + "word": " deadline.", + "start": 596.04, + "end": 596.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 258, + "text": "They're going to keep pushing harder.", + "start": 596.48, + "end": 597.8, + "words": [ + { + "word": " They're", + "start": 596.48, + "end": 596.76, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 596.76, + "end": 596.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 596.86, + "end": 596.96, + "probability": 1.0 + }, + { + "word": " keep", + "start": 596.96, + "end": 597.12, + "probability": 1.0 + }, + { + "word": " pushing", + "start": 597.12, + "end": 597.42, + "probability": 1.0 + }, + { + "word": " harder.", + "start": 597.42, + "end": 597.8, + "probability": 0.99755859375 + } + ] + }, + { + "id": 259, + "text": "It's going to get harder and harder until that point.", + "start": 598.0, + "end": 599.12, + "words": [ + { + "word": " It's", + "start": 598.0, + "end": 598.0, + "probability": 0.17626953125 + }, + { + "word": " going", + "start": 598.0, + "end": 598.0, + "probability": 0.1846923828125 + }, + { + "word": " to", + "start": 598.0, + "end": 598.0, + "probability": 0.9970703125 + }, + { + "word": " get", + "start": 598.0, + "end": 598.0, + "probability": 0.60009765625 + }, + { + "word": " harder", + "start": 598.0, + "end": 598.0, + "probability": 0.44091796875 + }, + { + "word": " and", + "start": 598.0, + "end": 598.0, + "probability": 0.9931640625 + }, + { + "word": " harder", + "start": 598.0, + "end": 598.24, + "probability": 0.99951171875 + }, + { + "word": " until", + "start": 598.24, + "end": 598.58, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 598.58, + "end": 598.86, + "probability": 1.0 + }, + { + "word": " point.", + "start": 598.86, + "end": 599.12, + "probability": 1.0 + } + ] + }, + { + "id": 260, + "text": "Now, if you decide to hold out past the end of July, so let's say that August 1st shows", + "start": 599.24, + "end": 604.8, + "words": [ + { + "word": " Now,", + "start": 599.24, + "end": 599.4, + "probability": 0.97900390625 + }, + { + "word": " if", + "start": 599.44, + "end": 599.88, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 599.88, + "end": 599.96, + "probability": 1.0 + }, + { + "word": " decide", + "start": 599.96, + "end": 600.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 600.18, + "end": 600.32, + "probability": 1.0 + }, + { + "word": " hold", + "start": 600.32, + "end": 600.52, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 600.52, + "end": 600.72, + "probability": 0.99560546875 + }, + { + "word": " past", + "start": 600.72, + "end": 601.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 601.1, + "end": 601.4, + "probability": 1.0 + }, + { + "word": " end", + "start": 601.4, + "end": 601.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 601.58, + "end": 601.7, + "probability": 1.0 + }, + { + "word": " July,", + "start": 601.7, + "end": 601.96, + "probability": 1.0 + }, + { + "word": " so", + "start": 602.18, + "end": 602.86, + "probability": 0.9912109375 + }, + { + "word": " let's", + "start": 602.86, + "end": 603.44, + "probability": 0.9970703125 + }, + { + "word": " say", + "start": 603.44, + "end": 603.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 603.56, + "end": 603.78, + "probability": 1.0 + }, + { + "word": " August", + "start": 603.78, + "end": 604.18, + "probability": 1.0 + }, + { + "word": " 1st", + "start": 604.18, + "end": 604.6, + "probability": 0.9912109375 + }, + { + "word": " shows", + "start": 604.6, + "end": 604.8, + "probability": 1.0 + } + ] + }, + { + "id": 261, + "text": "up and you have not upgraded to 10, that upgrade window goes away.", + "start": 604.8, + "end": 609.82, + "words": [ + { + "word": " up", + "start": 604.8, + "end": 605.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 605.18, + "end": 605.76, + "probability": 0.65087890625 + }, + { + "word": " you", + "start": 605.76, + "end": 606.1, + "probability": 1.0 + }, + { + "word": " have", + "start": 606.1, + "end": 606.28, + "probability": 1.0 + }, + { + "word": " not", + "start": 606.28, + "end": 606.46, + "probability": 1.0 + }, + { + "word": " upgraded", + "start": 606.46, + "end": 606.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 606.82, + "end": 607.04, + "probability": 1.0 + }, + { + "word": " 10,", + "start": 607.04, + "end": 607.24, + "probability": 0.95263671875 + }, + { + "word": " that", + "start": 607.42, + "end": 607.9, + "probability": 0.99951171875 + }, + { + "word": " upgrade", + "start": 607.9, + "end": 608.7, + "probability": 0.99951171875 + }, + { + "word": " window", + "start": 608.7, + "end": 609.12, + "probability": 1.0 + }, + { + "word": " goes", + "start": 609.12, + "end": 609.5, + "probability": 1.0 + }, + { + "word": " away.", + "start": 609.5, + "end": 609.82, + "probability": 1.0 + } + ] + }, + { + "id": 262, + "text": "You'll start getting regular critical updates, but you'll no longer get optional updates", + "start": 610.0, + "end": 613.96, + "words": [ + { + "word": " You'll", + "start": 610.0, + "end": 610.52, + "probability": 1.0 + }, + { + "word": " start", + "start": 610.52, + "end": 610.7, + "probability": 1.0 + }, + { + "word": " getting", + "start": 610.7, + "end": 610.9, + "probability": 1.0 + }, + { + "word": " regular", + "start": 610.9, + "end": 611.18, + "probability": 1.0 + }, + { + "word": " critical", + "start": 611.18, + "end": 611.48, + "probability": 0.98779296875 + }, + { + "word": " updates,", + "start": 611.48, + "end": 611.96, + "probability": 1.0 + }, + { + "word": " but", + "start": 612.22, + "end": 612.66, + "probability": 0.99951171875 + }, + { + "word": " you'll", + "start": 612.66, + "end": 612.8, + "probability": 1.0 + }, + { + "word": " no", + "start": 612.8, + "end": 612.9, + "probability": 1.0 + }, + { + "word": " longer", + "start": 612.9, + "end": 613.2, + "probability": 1.0 + }, + { + "word": " get", + "start": 613.2, + "end": 613.34, + "probability": 1.0 + }, + { + "word": " optional", + "start": 613.34, + "end": 613.68, + "probability": 0.99951171875 + }, + { + "word": " updates", + "start": 613.68, + "end": 613.96, + "probability": 1.0 + } + ] + }, + { + "id": 263, + "text": "of any type.", + "start": 613.96, + "end": 614.54, + "words": [ + { + "word": " of", + "start": 613.96, + "end": 614.18, + "probability": 1.0 + }, + { + "word": " any", + "start": 614.18, + "end": 614.3, + "probability": 1.0 + }, + { + "word": " type.", + "start": 614.3, + "end": 614.54, + "probability": 0.998046875 + } + ] + }, + { + "id": 264, + "text": "And you get to stay.", + "start": 615.88, + "end": 617.62, + "words": [ + { + "word": " And", + "start": 615.88, + "end": 616.4, + "probability": 0.89599609375 + }, + { + "word": " you", + "start": 616.4, + "end": 616.92, + "probability": 0.9892578125 + }, + { + "word": " get", + "start": 616.92, + "end": 617.34, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 617.34, + "end": 617.48, + "probability": 1.0 + }, + { + "word": " stay.", + "start": 617.48, + "end": 617.62, + "probability": 1.0 + } + ] + }, + { + "id": 265, + "text": "You get to hang out in Windows 7 for as long as you like.", + "start": 617.7, + "end": 621.96, + "words": [ + { + "word": " You", + "start": 617.7, + "end": 617.88, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 617.88, + "end": 618.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 618.02, + "end": 618.2, + "probability": 1.0 + }, + { + "word": " hang", + "start": 618.2, + "end": 618.7, + "probability": 1.0 + }, + { + "word": " out", + "start": 618.7, + "end": 618.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 618.92, + "end": 619.28, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 619.28, + "end": 619.56, + "probability": 0.99072265625 + }, + { + "word": " 7", + "start": 619.56, + "end": 619.88, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 619.88, + "end": 620.78, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 620.78, + "end": 621.12, + "probability": 1.0 + }, + { + "word": " long", + "start": 621.12, + "end": 621.38, + "probability": 1.0 + }, + { + "word": " as", + "start": 621.38, + "end": 621.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 621.56, + "end": 621.7, + "probability": 1.0 + }, + { + "word": " like.", + "start": 621.7, + "end": 621.96, + "probability": 1.0 + } + ] + }, + { + "id": 266, + "text": "But just know that the opportunity to upgrade for free ends at the end of July.", + "start": 622.64, + "end": 626.92, + "words": [ + { + "word": " But", + "start": 622.64, + "end": 623.16, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 623.16, + "end": 623.68, + "probability": 0.998046875 + }, + { + "word": " know", + "start": 623.68, + "end": 623.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 623.9, + "end": 624.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 624.1, + "end": 624.22, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 624.22, + "end": 624.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 624.66, + "end": 624.86, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 624.86, + "end": 625.04, + "probability": 1.0 + }, + { + "word": " for", + "start": 625.04, + "end": 625.3, + "probability": 1.0 + }, + { + "word": " free", + "start": 625.3, + "end": 625.62, + "probability": 1.0 + }, + { + "word": " ends", + "start": 625.62, + "end": 626.06, + "probability": 1.0 + }, + { + "word": " at", + "start": 626.06, + "end": 626.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 626.2, + "end": 626.26, + "probability": 1.0 + }, + { + "word": " end", + "start": 626.26, + "end": 626.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 626.54, + "end": 626.66, + "probability": 1.0 + }, + { + "word": " July.", + "start": 626.66, + "end": 626.92, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "Right.", + "start": 627.14, + "end": 627.52, + "words": [ + { + "word": " Right.", + "start": 627.14, + "end": 627.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 268, + "text": "Okay.", + "start": 628.62, + "end": 628.94, + "words": [ + { + "word": " Okay.", + "start": 628.62, + "end": 628.94, + "probability": 0.94970703125 + } + ] + }, + { + "id": 269, + "text": "Well, I guess I have to think about that.", + "start": 628.98, + "end": 630.62, + "words": [ + { + "word": " Well,", + "start": 628.98, + "end": 629.3, + "probability": 0.99072265625 + }, + { + "word": " I", + "start": 629.36, + "end": 629.48, + "probability": 1.0 + }, + { + "word": " guess", + "start": 629.48, + "end": 629.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 629.64, + "end": 629.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 629.78, + "end": 629.88, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 629.88, + "end": 630.04, + "probability": 1.0 + }, + { + "word": " think", + "start": 630.04, + "end": 630.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 630.2, + "end": 630.42, + "probability": 1.0 + }, + { + "word": " that.", + "start": 630.42, + "end": 630.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 270, + "text": "What do I want to do here then?", + "start": 630.68, + "end": 631.76, + "words": [ + { + "word": " What", + "start": 630.68, + "end": 630.84, + "probability": 0.95458984375 + }, + { + "word": " do", + "start": 630.84, + "end": 630.94, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 630.94, + "end": 631.02, + "probability": 1.0 + }, + { + "word": " want", + "start": 631.02, + "end": 631.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 631.14, + "end": 631.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 631.26, + "end": 631.42, + "probability": 1.0 + }, + { + "word": " here", + "start": 631.42, + "end": 631.56, + "probability": 1.0 + }, + { + "word": " then?", + "start": 631.56, + "end": 631.76, + "probability": 0.51171875 + } + ] + }, + { + "id": 271, + "text": "All right.", + "start": 632.08, + "end": 632.6, + "words": [ + { + "word": " All", + "start": 632.08, + "end": 632.4, + "probability": 0.95166015625 + }, + { + "word": " right.", + "start": 632.4, + "end": 632.6, + "probability": 1.0 + } + ] + }, + { + "id": 272, + "text": "Well, thanks for the call, Dave.", + "start": 632.64, + "end": 633.62, + "words": [ + { + "word": " Well,", + "start": 632.64, + "end": 632.78, + "probability": 0.99609375 + }, + { + "word": " thanks", + "start": 632.8, + "end": 632.94, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 632.94, + "end": 633.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 633.04, + "end": 633.14, + "probability": 1.0 + }, + { + "word": " call,", + "start": 633.14, + "end": 633.36, + "probability": 1.0 + }, + { + "word": " Dave.", + "start": 633.44, + "end": 633.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 273, + "text": "Well, thank you.", + "start": 633.78, + "end": 634.46, + "words": [ + { + "word": " Well,", + "start": 633.78, + "end": 633.94, + "probability": 0.97119140625 + }, + { + "word": " thank", + "start": 633.94, + "end": 634.3, + "probability": 1.0 + }, + { + "word": " you.", + "start": 634.3, + "end": 634.46, + "probability": 1.0 + } + ] + }, + { + "id": 274, + "text": "Have a nice day.", + "start": 634.6, + "end": 635.44, + "words": [ + { + "word": " Have", + "start": 634.6, + "end": 634.92, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 634.92, + "end": 635.0, + "probability": 1.0 + }, + { + "word": " nice", + "start": 635.0, + "end": 635.2, + "probability": 1.0 + }, + { + "word": " day.", + "start": 635.2, + "end": 635.44, + "probability": 1.0 + } + ] + }, + { + "id": 275, + "text": "Bye.", + "start": 635.68, + "end": 636.0, + "words": [ + { + "word": " Bye.", + "start": 635.68, + "end": 636.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 276, + "text": "Let's take a moment to mention our sponsor.", + "start": 636.3, + "end": 638.0, + "words": [ + { + "word": " Let's", + "start": 636.3, + "end": 636.62, + "probability": 0.943359375 + }, + { + "word": " take", + "start": 636.62, + "end": 636.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 636.7, + "end": 636.74, + "probability": 1.0 + }, + { + "word": " moment", + "start": 636.74, + "end": 636.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 636.92, + "end": 637.12, + "probability": 1.0 + }, + { + "word": " mention", + "start": 637.12, + "end": 637.32, + "probability": 1.0 + }, + { + "word": " our", + "start": 637.32, + "end": 637.56, + "probability": 1.0 + }, + { + "word": " sponsor.", + "start": 637.56, + "end": 638.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 277, + "text": "That would be Perfection Auto Works.", + "start": 638.44, + "end": 640.22, + "words": [ + { + "word": " That", + "start": 638.44, + "end": 638.76, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 638.76, + "end": 638.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 638.96, + "end": 639.22, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 639.22, + "end": 639.76, + "probability": 0.99609375 + }, + { + "word": " Auto", + "start": 639.76, + "end": 639.92, + "probability": 0.90625 + }, + { + "word": " Works.", + "start": 639.92, + "end": 640.22, + "probability": 0.97412109375 + } + ] + }, + { + "id": 278, + "text": "You can go to their website.", + "start": 641.82, + "end": 642.8, + "words": [ + { + "word": " You", + "start": 641.82, + "end": 642.14, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 642.14, + "end": 642.3, + "probability": 1.0 + }, + { + "word": " go", + "start": 642.3, + "end": 642.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 642.38, + "end": 642.48, + "probability": 1.0 + }, + { + "word": " their", + "start": 642.48, + "end": 642.58, + "probability": 1.0 + }, + { + "word": " website.", + "start": 642.58, + "end": 642.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 279, + "text": "It's new.", + "start": 642.9, + "end": 643.28, + "words": [ + { + "word": " It's", + "start": 642.9, + "end": 643.18, + "probability": 0.99951171875 + }, + { + "word": " new.", + "start": 643.18, + "end": 643.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 280, + "text": "PerfectionAutoWorks.com.", + "start": 643.8, + "end": 644.4, + "words": [ + { + "word": " PerfectionAutoWorks", + "start": 643.8, + "end": 644.12, + "probability": 0.923828125 + }, + { + "word": ".com.", + "start": 644.12, + "end": 644.4, + "probability": 1.0 + } + ] + }, + { + "id": 281, + "text": "Well, is it still new?", + "start": 644.48, + "end": 645.44, + "words": [ + { + "word": " Well,", + "start": 644.48, + "end": 644.76, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 644.84, + "end": 644.98, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 644.98, + "end": 645.1, + "probability": 1.0 + }, + { + "word": " still", + "start": 645.1, + "end": 645.28, + "probability": 1.0 + }, + { + "word": " new?", + "start": 645.28, + "end": 645.44, + "probability": 1.0 + } + ] + }, + { + "id": 282, + "text": "We've been saying that for six months.", + "start": 645.5, + "end": 646.54, + "words": [ + { + "word": " We've", + "start": 645.5, + "end": 645.74, + "probability": 1.0 + }, + { + "word": " been", + "start": 645.74, + "end": 645.84, + "probability": 1.0 + }, + { + "word": " saying", + "start": 645.84, + "end": 646.0, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 646.0, + "end": 646.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 646.1, + "end": 646.18, + "probability": 1.0 + }, + { + "word": " six", + "start": 646.18, + "end": 646.36, + "probability": 0.99755859375 + }, + { + "word": " months.", + "start": 646.36, + "end": 646.54, + "probability": 1.0 + } + ] + }, + { + "id": 283, + "text": "Well, I mean, based on how long they had their old site.", + "start": 646.76, + "end": 648.88, + "words": [ + { + "word": " Well,", + "start": 646.76, + "end": 646.96, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 647.02, + "end": 647.08, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 647.08, + "end": 647.24, + "probability": 1.0 + }, + { + "word": " based", + "start": 647.26, + "end": 647.4, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 647.4, + "end": 647.6, + "probability": 1.0 + }, + { + "word": " how", + "start": 647.6, + "end": 647.86, + "probability": 1.0 + }, + { + "word": " long", + "start": 647.86, + "end": 648.04, + "probability": 1.0 + }, + { + "word": " they", + "start": 648.04, + "end": 648.16, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 648.16, + "end": 648.3, + "probability": 0.97265625 + }, + { + "word": " their", + "start": 648.3, + "end": 648.44, + "probability": 1.0 + }, + { + "word": " old", + "start": 648.44, + "end": 648.6, + "probability": 1.0 + }, + { + "word": " site.", + "start": 648.6, + "end": 648.88, + "probability": 1.0 + } + ] + }, + { + "id": 284, + "text": "Yeah, it's new.", + "start": 649.22, + "end": 649.94, + "words": [ + { + "word": " Yeah,", + "start": 649.22, + "end": 649.54, + "probability": 0.98974609375 + }, + { + "word": " it's", + "start": 649.54, + "end": 649.76, + "probability": 1.0 + }, + { + "word": " new.", + "start": 649.76, + "end": 649.94, + "probability": 0.89892578125 + } + ] + }, + { + "id": 285, + "text": "It's still new.", + "start": 650.08, + "end": 650.4, + "words": [ + { + "word": " It's", + "start": 650.08, + "end": 650.4, + "probability": 0.50537109375 + }, + { + "word": " still", + "start": 650.4, + "end": 650.4, + "probability": 0.65478515625 + }, + { + "word": " new.", + "start": 650.4, + "end": 650.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 286, + "text": "PerfectionAutoWorks.com.", + "start": 650.8399999999999, + "end": 651.48, + "words": [ + { + "word": " PerfectionAutoWorks", + "start": 650.8399999999999, + "end": 651.16, + "probability": 0.998046875 + }, + { + "word": ".com.", + "start": 651.16, + "end": 651.48, + "probability": 1.0 + } + ] + }, + { + "id": 287, + "text": "Go check it out.", + "start": 651.52, + "end": 652.0, + "words": [ + { + "word": " Go", + "start": 651.52, + "end": 651.64, + "probability": 0.99853515625 + }, + { + "word": " check", + "start": 651.64, + "end": 651.76, + "probability": 1.0 + }, + { + "word": " it", + "start": 651.76, + "end": 651.9, + "probability": 1.0 + }, + { + "word": " out.", + "start": 651.9, + "end": 652.0, + "probability": 1.0 + } + ] + }, + { + "id": 288, + "text": "Get your 26-point inspection for free.", + "start": 652.1, + "end": 654.5, + "words": [ + { + "word": " Get", + "start": 652.1, + "end": 652.42, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 652.42, + "end": 652.58, + "probability": 1.0 + }, + { + "word": " 26", + "start": 652.58, + "end": 652.84, + "probability": 0.9990234375 + }, + { + "word": "-point", + "start": 652.84, + "end": 653.14, + "probability": 0.9677734375 + }, + { + "word": " inspection", + "start": 653.14, + "end": 653.48, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 653.48, + "end": 653.96, + "probability": 0.99951171875 + }, + { + "word": " free.", + "start": 653.96, + "end": 654.5, + "probability": 1.0 + } + ] + }, + { + "id": 289, + "text": "I'm sure that your car will love you for it, especially right now.", + "start": 654.96, + "end": 657.86, + "words": [ + { + "word": " I'm", + "start": 654.96, + "end": 655.28, + "probability": 1.0 + }, + { + "word": " sure", + "start": 655.28, + "end": 655.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 655.5, + "end": 655.7, + "probability": 1.0 + }, + { + "word": " your", + "start": 655.7, + "end": 655.82, + "probability": 1.0 + }, + { + "word": " car", + "start": 655.82, + "end": 656.0, + "probability": 1.0 + }, + { + "word": " will", + "start": 656.0, + "end": 656.18, + "probability": 1.0 + }, + { + "word": " love", + "start": 656.18, + "end": 656.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 656.38, + "end": 656.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 656.5, + "end": 656.7, + "probability": 1.0 + }, + { + "word": " it,", + "start": 656.7, + "end": 656.86, + "probability": 1.0 + }, + { + "word": " especially", + "start": 656.9, + "end": 657.2, + "probability": 1.0 + }, + { + "word": " right", + "start": 657.2, + "end": 657.58, + "probability": 1.0 + }, + { + "word": " now.", + "start": 657.58, + "end": 657.86, + "probability": 1.0 + } + ] + }, + { + "id": 290, + "text": "Yeah, assuming that your tires don't literally melt off of your car.", + "start": 658.74, + "end": 661.58, + "words": [ + { + "word": " Yeah,", + "start": 658.74, + "end": 659.1, + "probability": 0.9248046875 + }, + { + "word": " assuming", + "start": 659.16, + "end": 659.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 659.38, + "end": 659.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 659.58, + "end": 659.7, + "probability": 1.0 + }, + { + "word": " tires", + "start": 659.7, + "end": 660.0, + "probability": 1.0 + }, + { + "word": " don't", + "start": 660.0, + "end": 660.3, + "probability": 1.0 + }, + { + "word": " literally", + "start": 660.3, + "end": 660.52, + "probability": 0.99951171875 + }, + { + "word": " melt", + "start": 660.52, + "end": 660.84, + "probability": 1.0 + }, + { + "word": " off", + "start": 660.84, + "end": 661.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 661.08, + "end": 661.24, + "probability": 1.0 + }, + { + "word": " your", + "start": 661.24, + "end": 661.36, + "probability": 1.0 + }, + { + "word": " car.", + "start": 661.36, + "end": 661.58, + "probability": 1.0 + } + ] + }, + { + "id": 291, + "text": "Take it down to Perfection Auto Works.", + "start": 662.14, + "end": 663.46, + "words": [ + { + "word": " Take", + "start": 662.14, + "end": 662.5, + "probability": 0.99365234375 + }, + { + "word": " it", + "start": 662.5, + "end": 662.62, + "probability": 0.99169921875 + }, + { + "word": " down", + "start": 662.62, + "end": 662.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 662.76, + "end": 662.82, + "probability": 0.99169921875 + }, + { + "word": " Perfection", + "start": 662.82, + "end": 663.18, + "probability": 0.4970703125 + }, + { + "word": " Auto", + "start": 663.18, + "end": 663.28, + "probability": 0.9482421875 + }, + { + "word": " Works.", + "start": 663.28, + "end": 663.46, + "probability": 0.9951171875 + } + ] + }, + { + "id": 292, + "text": "The temperature is too darn high.", + "start": 663.52, + "end": 664.72, + "words": [ + { + "word": " The", + "start": 663.52, + "end": 663.62, + "probability": 0.99853515625 + }, + { + "word": " temperature", + "start": 663.62, + "end": 663.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 663.88, + "end": 664.14, + "probability": 1.0 + }, + { + "word": " too", + "start": 664.14, + "end": 664.3, + "probability": 1.0 + }, + { + "word": " darn", + "start": 664.3, + "end": 664.48, + "probability": 1.0 + }, + { + "word": " high.", + "start": 664.48, + "end": 664.72, + "probability": 0.78515625 + } + ] + }, + { + "id": 293, + "text": "It's hot.", + "start": 665.0, + "end": 666.92, + "words": [ + { + "word": " It's", + "start": 665.0, + "end": 665.36, + "probability": 0.9990234375 + }, + { + "word": " hot.", + "start": 665.36, + "end": 666.92, + "probability": 0.75341796875 + } + ] + }, + { + "id": 294, + "text": "Holy moly.", + "start": 667.78, + "end": 668.46, + "words": [ + { + "word": " Holy", + "start": 667.78, + "end": 668.14, + "probability": 0.98779296875 + }, + { + "word": " moly.", + "start": 668.14, + "end": 668.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 295, + "text": "We'll be right back.", + "start": 668.48, + "end": 669.1, + "words": [ + { + "word": " We'll", + "start": 668.48, + "end": 668.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 668.64, + "end": 668.72, + "probability": 1.0 + }, + { + "word": " right", + "start": 668.72, + "end": 668.88, + "probability": 1.0 + }, + { + "word": " back.", + "start": 668.88, + "end": 669.1, + "probability": 1.0 + } + ] + }, + { + "id": 296, + "text": "Listen to their ad coming up next, and we will listen to your phone calls right after this break.", + "start": 669.14, + "end": 674.0, + "words": [ + { + "word": " Listen", + "start": 669.14, + "end": 669.3, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 669.3, + "end": 669.48, + "probability": 1.0 + }, + { + "word": " their", + "start": 669.48, + "end": 669.62, + "probability": 0.99951171875 + }, + { + "word": " ad", + "start": 669.62, + "end": 669.82, + "probability": 1.0 + }, + { + "word": " coming", + "start": 669.82, + "end": 670.1, + "probability": 1.0 + }, + { + "word": " up", + "start": 670.1, + "end": 670.3, + "probability": 1.0 + }, + { + "word": " next,", + "start": 670.3, + "end": 670.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 670.74, + "end": 671.36, + "probability": 1.0 + }, + { + "word": " we", + "start": 671.36, + "end": 671.56, + "probability": 0.96435546875 + }, + { + "word": " will", + "start": 671.56, + "end": 671.74, + "probability": 0.9970703125 + }, + { + "word": " listen", + "start": 671.74, + "end": 672.26, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 672.26, + "end": 672.68, + "probability": 1.0 + }, + { + "word": " your", + "start": 672.68, + "end": 672.78, + "probability": 1.0 + }, + { + "word": " phone", + "start": 672.78, + "end": 672.94, + "probability": 1.0 + }, + { + "word": " calls", + "start": 672.94, + "end": 673.16, + "probability": 1.0 + }, + { + "word": " right", + "start": 673.16, + "end": 673.5, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 673.5, + "end": 673.66, + "probability": 1.0 + }, + { + "word": " this", + "start": 673.66, + "end": 673.82, + "probability": 1.0 + }, + { + "word": " break.", + "start": 673.82, + "end": 674.0, + "probability": 1.0 + } + ] + }, + { + "id": 297, + "text": "790-2040.", + "start": 674.24, + "end": 675.24, + "words": [ + { + "word": " 790", + "start": 674.24, + "end": 674.6, + "probability": 0.99560546875 + }, + { + "word": "-2040.", + "start": 674.6, + "end": 675.24, + "probability": 0.99658203125 + } + ] + }, + { + "id": 298, + "text": "We'll be right back.", + "start": 675.34, + "end": 675.86, + "words": [ + { + "word": " We'll", + "start": 675.34, + "end": 675.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 675.5, + "end": 675.54, + "probability": 1.0 + }, + { + "word": " right", + "start": 675.54, + "end": 675.68, + "probability": 1.0 + }, + { + "word": " back.", + "start": 675.68, + "end": 675.86, + "probability": 1.0 + } + ] + }, + { + "id": 299, + "text": "Your computer guru, Mike Swanson, is here to help you tame that beast of a machine.", + "start": 683.9, + "end": 687.9, + "words": [ + { + "word": " Your", + "start": 683.9, + "end": 684.26, + "probability": 0.73828125 + }, + { + "word": " computer", + "start": 684.26, + "end": 684.62, + "probability": 0.99609375 + }, + { + "word": " guru,", + "start": 684.62, + "end": 685.06, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 685.14, + "end": 685.34, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 685.34, + "end": 685.7, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 685.82, + "end": 685.98, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 685.98, + "end": 686.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 686.12, + "end": 686.24, + "probability": 1.0 + }, + { + "word": " help", + "start": 686.24, + "end": 686.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 686.48, + "end": 686.64, + "probability": 1.0 + }, + { + "word": " tame", + "start": 686.64, + "end": 686.86, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 686.86, + "end": 687.04, + "probability": 1.0 + }, + { + "word": " beast", + "start": 687.04, + "end": 687.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 687.34, + "end": 687.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 687.56, + "end": 687.66, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 687.66, + "end": 687.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 300, + "text": "Join the chat right now at gurushow.com or call in.", + "start": 688.0, + "end": 691.8, + "words": [ + { + "word": " Join", + "start": 688.0, + "end": 688.68, + "probability": 0.8046875 + }, + { + "word": " the", + "start": 688.68, + "end": 688.88, + "probability": 0.99951171875 + }, + { + "word": " chat", + "start": 688.88, + "end": 689.08, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 689.08, + "end": 689.3, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 689.3, + "end": 689.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 689.58, + "end": 689.88, + "probability": 0.9921875 + }, + { + "word": " gurushow", + "start": 689.88, + "end": 690.44, + "probability": 0.8828125 + }, + { + "word": ".com", + "start": 690.44, + "end": 691.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 691.04, + "end": 691.3, + "probability": 0.95458984375 + }, + { + "word": " call", + "start": 691.3, + "end": 691.52, + "probability": 1.0 + }, + { + "word": " in.", + "start": 691.52, + "end": 691.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 301, + "text": "This is the Computer Guru Show on KVOY, The Voice.", + "start": 691.86, + "end": 695.34, + "words": [ + { + "word": " This", + "start": 691.86, + "end": 692.14, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 692.14, + "end": 692.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 692.48, + "end": 692.6, + "probability": 0.79443359375 + }, + { + "word": " Computer", + "start": 692.6, + "end": 692.86, + "probability": 0.9892578125 + }, + { + "word": " Guru", + "start": 692.86, + "end": 693.22, + "probability": 0.9912109375 + }, + { + "word": " Show", + "start": 693.22, + "end": 693.56, + "probability": 0.98388671875 + }, + { + "word": " on", + "start": 693.56, + "end": 693.98, + "probability": 0.998046875 + }, + { + "word": " KVOY,", + "start": 693.98, + "end": 694.58, + "probability": 0.94140625 + }, + { + "word": " The", + "start": 694.8, + "end": 695.02, + "probability": 0.97998046875 + }, + { + "word": " Voice.", + "start": 695.02, + "end": 695.34, + "probability": 1.0 + } + ] + }, + { + "id": 302, + "text": "I'm dirty and the extreme and lighter than sour cream.", + "start": 696.72, + "end": 699.84, + "words": [ + { + "word": " I'm", + "start": 696.72, + "end": 697.16, + "probability": 0.273193359375 + }, + { + "word": " dirty", + "start": 697.16, + "end": 697.42, + "probability": 0.433349609375 + }, + { + "word": " and", + "start": 697.42, + "end": 697.74, + "probability": 0.73291015625 + }, + { + "word": " the", + "start": 697.74, + "end": 697.96, + "probability": 0.77880859375 + }, + { + "word": " extreme", + "start": 697.96, + "end": 698.36, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 698.36, + "end": 698.6, + "probability": 0.7626953125 + }, + { + "word": " lighter", + "start": 698.6, + "end": 698.92, + "probability": 0.9169921875 + }, + { + "word": " than", + "start": 698.92, + "end": 699.2, + "probability": 1.0 + }, + { + "word": " sour", + "start": 699.2, + "end": 699.46, + "probability": 0.99951171875 + }, + { + "word": " cream.", + "start": 699.46, + "end": 699.84, + "probability": 1.0 + } + ] + }, + { + "id": 303, + "text": "I was in a B-Club and Glee Club and even the chess team.", + "start": 700.02, + "end": 703.16, + "words": [ + { + "word": " I", + "start": 700.02, + "end": 700.42, + "probability": 1.0 + }, + { + "word": " was", + "start": 700.42, + "end": 700.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 700.56, + "end": 700.72, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 700.72, + "end": 700.84, + "probability": 0.73388671875 + }, + { + "word": " B", + "start": 700.84, + "end": 701.06, + "probability": 0.3115234375 + }, + { + "word": "-Club", + "start": 701.06, + "end": 701.38, + "probability": 0.87255859375 + }, + { + "word": " and", + "start": 701.38, + "end": 701.52, + "probability": 0.99951171875 + }, + { + "word": " Glee", + "start": 701.52, + "end": 701.74, + "probability": 0.8369140625 + }, + { + "word": " Club", + "start": 701.74, + "end": 701.92, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 701.92, + "end": 702.16, + "probability": 1.0 + }, + { + "word": " even", + "start": 702.16, + "end": 702.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 702.4, + "end": 702.56, + "probability": 0.9970703125 + }, + { + "word": " chess", + "start": 702.56, + "end": 702.76, + "probability": 0.55810546875 + }, + { + "word": " team.", + "start": 702.76, + "end": 703.16, + "probability": 1.0 + } + ] + }, + { + "id": 304, + "text": "Only question I ever thought was hard.", + "start": 703.26, + "end": 704.84, + "words": [ + { + "word": " Only", + "start": 703.26, + "end": 703.42, + "probability": 0.97412109375 + }, + { + "word": " question", + "start": 703.42, + "end": 703.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 703.74, + "end": 703.98, + "probability": 0.9072265625 + }, + { + "word": " ever", + "start": 703.98, + "end": 704.26, + "probability": 0.92724609375 + }, + { + "word": " thought", + "start": 704.26, + "end": 704.44, + "probability": 1.0 + }, + { + "word": " was", + "start": 704.44, + "end": 704.6, + "probability": 1.0 + }, + { + "word": " hard.", + "start": 704.6, + "end": 704.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 305, + "text": "What do I like, Kirk, or do I like Picard?", + "start": 704.94, + "end": 706.52, + "words": [ + { + "word": " What", + "start": 704.94, + "end": 705.02, + "probability": 0.99072265625 + }, + { + "word": " do", + "start": 705.02, + "end": 705.14, + "probability": 0.98974609375 + }, + { + "word": " I", + "start": 705.14, + "end": 705.24, + "probability": 1.0 + }, + { + "word": " like,", + "start": 705.24, + "end": 705.42, + "probability": 0.99951171875 + }, + { + "word": " Kirk,", + "start": 705.46, + "end": 705.6, + "probability": 0.888671875 + }, + { + "word": " or", + "start": 705.66, + "end": 705.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 705.8, + "end": 705.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 705.86, + "end": 705.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 705.98, + "end": 706.16, + "probability": 0.99951171875 + }, + { + "word": " Picard?", + "start": 706.16, + "end": 706.52, + "probability": 0.9716796875 + } + ] + }, + { + "id": 306, + "text": "Spend every weekend at the Renaissance Fair.", + "start": 706.66, + "end": 708.54, + "words": [ + { + "word": " Spend", + "start": 706.66, + "end": 706.96, + "probability": 0.99365234375 + }, + { + "word": " every", + "start": 706.96, + "end": 707.12, + "probability": 1.0 + }, + { + "word": " weekend", + "start": 707.12, + "end": 707.46, + "probability": 0.99462890625 + }, + { + "word": " at", + "start": 707.46, + "end": 707.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 707.6, + "end": 707.68, + "probability": 1.0 + }, + { + "word": " Renaissance", + "start": 707.68, + "end": 708.02, + "probability": 0.99462890625 + }, + { + "word": " Fair.", + "start": 708.02, + "end": 708.54, + "probability": 0.96875 + } + ] + }, + { + "id": 307, + "text": "Got my name on my underwear.", + "start": 708.64, + "end": 709.74, + "words": [ + { + "word": " Got", + "start": 708.64, + "end": 708.72, + "probability": 0.98291015625 + }, + { + "word": " my", + "start": 708.72, + "end": 708.84, + "probability": 1.0 + }, + { + "word": " name", + "start": 708.84, + "end": 709.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 709.06, + "end": 709.22, + "probability": 1.0 + }, + { + "word": " my", + "start": 709.22, + "end": 709.36, + "probability": 0.99951171875 + }, + { + "word": " underwear.", + "start": 709.36, + "end": 709.74, + "probability": 1.0 + } + ] + }, + { + "id": 308, + "text": "Wow, that's a trip down memory lane.", + "start": 710.8599999999999, + "end": 712.94, + "words": [ + { + "word": " Wow,", + "start": 710.8599999999999, + "end": 711.3, + "probability": 0.93798828125 + }, + { + "word": " that's", + "start": 711.54, + "end": 711.92, + "probability": 0.87744140625 + }, + { + "word": " a", + "start": 711.92, + "end": 711.96, + "probability": 1.0 + }, + { + "word": " trip", + "start": 711.96, + "end": 712.2, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 712.2, + "end": 712.34, + "probability": 1.0 + }, + { + "word": " memory", + "start": 712.34, + "end": 712.6, + "probability": 1.0 + }, + { + "word": " lane.", + "start": 712.6, + "end": 712.94, + "probability": 1.0 + } + ] + }, + { + "id": 309, + "text": "To like the other day when I was just playing that in my house.", + "start": 713.56, + "end": 716.04, + "words": [ + { + "word": " To", + "start": 713.56, + "end": 714.0, + "probability": 0.98828125 + }, + { + "word": " like", + "start": 714.0, + "end": 714.16, + "probability": 0.7470703125 + }, + { + "word": " the", + "start": 714.16, + "end": 714.64, + "probability": 0.9638671875 + }, + { + "word": " other", + "start": 714.64, + "end": 714.78, + "probability": 1.0 + }, + { + "word": " day", + "start": 714.78, + "end": 714.94, + "probability": 1.0 + }, + { + "word": " when", + "start": 714.94, + "end": 715.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 715.08, + "end": 715.14, + "probability": 1.0 + }, + { + "word": " was", + "start": 715.14, + "end": 715.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 715.26, + "end": 715.36, + "probability": 1.0 + }, + { + "word": " playing", + "start": 715.36, + "end": 715.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 715.56, + "end": 715.7, + "probability": 1.0 + }, + { + "word": " in", + "start": 715.7, + "end": 715.78, + "probability": 1.0 + }, + { + "word": " my", + "start": 715.78, + "end": 715.86, + "probability": 1.0 + }, + { + "word": " house.", + "start": 715.86, + "end": 716.04, + "probability": 1.0 + } + ] + }, + { + "id": 310, + "text": "No, I know.", + "start": 716.06, + "end": 716.5, + "words": [ + { + "word": " No,", + "start": 716.06, + "end": 716.5, + "probability": 0.8818359375 + }, + { + "word": " I", + "start": 716.5, + "end": 716.5, + "probability": 0.8984375 + }, + { + "word": " know.", + "start": 716.5, + "end": 716.5, + "probability": 0.6435546875 + } + ] + }, + { + "id": 311, + "text": "I'm talking about how...", + "start": 716.58, + "end": 717.52, + "words": [ + { + "word": " I'm", + "start": 716.58, + "end": 716.72, + "probability": 0.998046875 + }, + { + "word": " talking", + "start": 716.72, + "end": 716.9, + "probability": 1.0 + }, + { + "word": " about", + "start": 716.9, + "end": 717.1, + "probability": 1.0 + }, + { + "word": " how...", + "start": 717.1, + "end": 717.52, + "probability": 0.64697265625 + } + ] + }, + { + "id": 312, + "text": "Using that as bumper music.", + "start": 717.52, + "end": 719.42, + "words": [ + { + "word": " Using", + "start": 717.52, + "end": 717.74, + "probability": 0.66748046875 + }, + { + "word": " that", + "start": 717.74, + "end": 718.14, + "probability": 1.0 + }, + { + "word": " as", + "start": 718.14, + "end": 718.36, + "probability": 0.99169921875 + }, + { + "word": " bumper", + "start": 718.36, + "end": 719.08, + "probability": 0.9970703125 + }, + { + "word": " music.", + "start": 719.08, + "end": 719.42, + "probability": 1.0 + } + ] + }, + { + "id": 313, + "text": "Yeah, I miss those days.", + "start": 719.66, + "end": 720.82, + "words": [ + { + "word": " Yeah,", + "start": 719.66, + "end": 719.98, + "probability": 0.98876953125 + }, + { + "word": " I", + "start": 720.06, + "end": 720.26, + "probability": 1.0 + }, + { + "word": " miss", + "start": 720.26, + "end": 720.44, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 720.44, + "end": 720.58, + "probability": 1.0 + }, + { + "word": " days.", + "start": 720.58, + "end": 720.82, + "probability": 1.0 + } + ] + }, + { + "id": 314, + "text": "It hasn't been on the show in years.", + "start": 720.94, + "end": 723.84, + "words": [ + { + "word": " It", + "start": 720.94, + "end": 721.06, + "probability": 0.9228515625 + }, + { + "word": " hasn't", + "start": 721.06, + "end": 721.26, + "probability": 1.0 + }, + { + "word": " been", + "start": 721.26, + "end": 721.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 721.5, + "end": 722.8, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 722.8, + "end": 722.94, + "probability": 1.0 + }, + { + "word": " show", + "start": 722.94, + "end": 723.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 723.12, + "end": 723.34, + "probability": 1.0 + }, + { + "word": " years.", + "start": 723.34, + "end": 723.84, + "probability": 1.0 + } + ] + }, + { + "id": 315, + "text": "In yas, I tell ya.", + "start": 724.32, + "end": 725.58, + "words": [ + { + "word": " In", + "start": 724.32, + "end": 724.72, + "probability": 0.9970703125 + }, + { + "word": " yas,", + "start": 724.72, + "end": 725.12, + "probability": 0.82421875 + }, + { + "word": " I", + "start": 725.12, + "end": 725.28, + "probability": 1.0 + }, + { + "word": " tell", + "start": 725.28, + "end": 725.42, + "probability": 1.0 + }, + { + "word": " ya.", + "start": 725.42, + "end": 725.58, + "probability": 0.388427734375 + } + ] + }, + { + "id": 316, + "text": "Yas.", + "start": 725.68, + "end": 726.08, + "words": [ + { + "word": " Yas.", + "start": 725.68, + "end": 726.08, + "probability": 0.91796875 + } + ] + }, + { + "id": 317, + "text": "Yes, eons and stuff.", + "start": 726.18, + "end": 727.52, + "words": [ + { + "word": " Yes,", + "start": 726.18, + "end": 726.58, + "probability": 0.34228515625 + }, + { + "word": " eons", + "start": 726.58, + "end": 727.08, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 727.08, + "end": 727.26, + "probability": 0.99951171875 + }, + { + "word": " stuff.", + "start": 727.26, + "end": 727.52, + "probability": 1.0 + } + ] + }, + { + "id": 318, + "text": "All right, if you'd like to be a part of the show, 790-2040, give us a call.", + "start": 728.24, + "end": 731.56, + "words": [ + { + "word": " All", + "start": 728.24, + "end": 728.64, + "probability": 0.65771484375 + }, + { + "word": " right,", + "start": 728.64, + "end": 728.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 728.94, + "end": 729.12, + "probability": 0.94384765625 + }, + { + "word": " you'd", + "start": 729.12, + "end": 729.3, + "probability": 1.0 + }, + { + "word": " like", + "start": 729.3, + "end": 729.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 729.38, + "end": 729.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 729.48, + "end": 729.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 729.5, + "end": 729.58, + "probability": 0.658203125 + }, + { + "word": " part", + "start": 729.58, + "end": 729.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 729.7, + "end": 729.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 729.76, + "end": 729.82, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 729.82, + "end": 729.94, + "probability": 1.0 + }, + { + "word": " 790", + "start": 729.98, + "end": 730.34, + "probability": 0.990234375 + }, + { + "word": "-2040,", + "start": 730.34, + "end": 730.86, + "probability": 0.70947265625 + }, + { + "word": " give", + "start": 730.98, + "end": 731.24, + "probability": 1.0 + }, + { + "word": " us", + "start": 731.24, + "end": 731.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 731.38, + "end": 731.4, + "probability": 1.0 + }, + { + "word": " call.", + "start": 731.4, + "end": 731.56, + "probability": 1.0 + } + ] + }, + { + "id": 319, + "text": "Let's go ahead and talk to Charles.", + "start": 731.88, + "end": 733.26, + "words": [ + { + "word": " Let's", + "start": 731.88, + "end": 732.28, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 732.28, + "end": 732.34, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 732.34, + "end": 732.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 732.48, + "end": 732.62, + "probability": 1.0 + }, + { + "word": " talk", + "start": 732.62, + "end": 732.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 732.82, + "end": 732.98, + "probability": 1.0 + }, + { + "word": " Charles.", + "start": 732.98, + "end": 733.26, + "probability": 1.0 + } + ] + }, + { + "id": 320, + "text": "Hello, Charles.", + "start": 733.38, + "end": 733.8, + "words": [ + { + "word": " Hello,", + "start": 733.38, + "end": 733.58, + "probability": 0.99951171875 + }, + { + "word": " Charles.", + "start": 733.64, + "end": 733.8, + "probability": 1.0 + } + ] + }, + { + "id": 321, + "text": "Hello.", + "start": 734.52, + "end": 734.88, + "words": [ + { + "word": " Hello.", + "start": 734.52, + "end": 734.88, + "probability": 0.99267578125 + } + ] + }, + { + "id": 322, + "text": "Boy, I love that Batman spot with Kazachik in the trunk.", + "start": 735.74, + "end": 738.84, + "words": [ + { + "word": " Boy,", + "start": 735.74, + "end": 736.14, + "probability": 0.9833984375 + }, + { + "word": " I", + "start": 736.24, + "end": 736.34, + "probability": 1.0 + }, + { + "word": " love", + "start": 736.34, + "end": 736.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 736.56, + "end": 736.72, + "probability": 1.0 + }, + { + "word": " Batman", + "start": 736.72, + "end": 737.06, + "probability": 0.99853515625 + }, + { + "word": " spot", + "start": 737.06, + "end": 737.4, + "probability": 0.99755859375 + }, + { + "word": " with", + "start": 737.4, + "end": 737.74, + "probability": 0.99951171875 + }, + { + "word": " Kazachik", + "start": 737.74, + "end": 738.36, + "probability": 0.7275390625 + }, + { + "word": " in", + "start": 738.36, + "end": 738.46, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 738.46, + "end": 738.56, + "probability": 0.99951171875 + }, + { + "word": " trunk.", + "start": 738.56, + "end": 738.84, + "probability": 1.0 + } + ] + }, + { + "id": 323, + "text": "What?", + "start": 739.38, + "end": 739.78, + "words": [ + { + "word": " What?", + "start": 739.38, + "end": 739.78, + "probability": 0.96923828125 + } + ] + }, + { + "id": 324, + "text": "Oh, yeah, during the commercial break?", + "start": 740.24, + "end": 741.98, + "words": [ + { + "word": " Oh,", + "start": 740.24, + "end": 740.64, + "probability": 0.98681640625 + }, + { + "word": " yeah,", + "start": 740.72, + "end": 740.94, + "probability": 0.90234375 + }, + { + "word": " during", + "start": 741.06, + "end": 741.38, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 741.38, + "end": 741.52, + "probability": 1.0 + }, + { + "word": " commercial", + "start": 741.52, + "end": 741.72, + "probability": 1.0 + }, + { + "word": " break?", + "start": 741.72, + "end": 741.98, + "probability": 1.0 + } + ] + }, + { + "id": 325, + "text": "Yeah.", + "start": 742.4, + "end": 742.8, + "words": [ + { + "word": " Yeah.", + "start": 742.4, + "end": 742.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 326, + "text": "Anyway, I still laugh.", + "start": 744.1, + "end": 745.46, + "words": [ + { + "word": " Anyway,", + "start": 744.1, + "end": 744.5, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 744.78, + "end": 744.94, + "probability": 1.0 + }, + { + "word": " still", + "start": 744.94, + "end": 745.18, + "probability": 1.0 + }, + { + "word": " laugh.", + "start": 745.18, + "end": 745.46, + "probability": 0.99462890625 + } + ] + }, + { + "id": 327, + "text": "I'm looking for a machine.", + "start": 747.52, + "end": 748.64, + "words": [ + { + "word": " I'm", + "start": 747.52, + "end": 747.68, + "probability": 0.9921875 + }, + { + "word": " looking", + "start": 747.68, + "end": 747.86, + "probability": 0.9921875 + }, + { + "word": " for", + "start": 747.86, + "end": 748.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 748.14, + "end": 748.3, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 748.3, + "end": 748.64, + "probability": 1.0 + } + ] + }, + { + "id": 328, + "text": "I'm not saying this to irritate you.", + "start": 748.86, + "end": 750.42, + "words": [ + { + "word": " I'm", + "start": 748.86, + "end": 749.34, + "probability": 1.0 + }, + { + "word": " not", + "start": 749.34, + "end": 749.46, + "probability": 1.0 + }, + { + "word": " saying", + "start": 749.46, + "end": 749.72, + "probability": 1.0 + }, + { + "word": " this", + "start": 749.72, + "end": 749.86, + "probability": 0.4013671875 + }, + { + "word": " to", + "start": 749.86, + "end": 749.94, + "probability": 0.97998046875 + }, + { + "word": " irritate", + "start": 749.94, + "end": 750.26, + "probability": 0.998046875 + }, + { + "word": " you.", + "start": 750.26, + "end": 750.42, + "probability": 1.0 + } + ] + }, + { + "id": 329, + "text": "I'm looking for a machine that runs XP because I don't...", + "start": 750.48, + "end": 754.38, + "words": [ + { + "word": " I'm", + "start": 750.48, + "end": 750.6, + "probability": 1.0 + }, + { + "word": " looking", + "start": 750.6, + "end": 750.76, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 750.76, + "end": 751.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 751.0, + "end": 751.12, + "probability": 1.0 + }, + { + "word": " machine", + "start": 751.12, + "end": 751.38, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 751.38, + "end": 751.58, + "probability": 1.0 + }, + { + "word": " runs", + "start": 751.58, + "end": 751.8, + "probability": 0.99951171875 + }, + { + "word": " XP", + "start": 751.8, + "end": 752.22, + "probability": 0.9970703125 + }, + { + "word": " because", + "start": 752.22, + "end": 753.24, + "probability": 0.7666015625 + }, + { + "word": " I", + "start": 753.24, + "end": 753.72, + "probability": 0.99951171875 + }, + { + "word": " don't...", + "start": 753.72, + "end": 754.38, + "probability": 0.5908203125 + } + ] + }, + { + "id": 330, + "text": "I like the way it's far more user-friendly than Windows 7,", + "start": 755.12, + "end": 759.46, + "words": [ + { + "word": " I", + "start": 755.12, + "end": 755.6, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 755.6, + "end": 756.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 756.08, + "end": 756.24, + "probability": 1.0 + }, + { + "word": " way", + "start": 756.24, + "end": 756.44, + "probability": 1.0 + }, + { + "word": " it's", + "start": 756.44, + "end": 756.78, + "probability": 1.0 + }, + { + "word": " far", + "start": 756.78, + "end": 756.96, + "probability": 1.0 + }, + { + "word": " more", + "start": 756.96, + "end": 757.16, + "probability": 1.0 + }, + { + "word": " user", + "start": 757.16, + "end": 757.48, + "probability": 1.0 + }, + { + "word": "-friendly", + "start": 757.48, + "end": 757.84, + "probability": 0.9755859375 + }, + { + "word": " than", + "start": 757.84, + "end": 758.68, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 758.68, + "end": 759.06, + "probability": 1.0 + }, + { + "word": " 7,", + "start": 759.06, + "end": 759.46, + "probability": 1.0 + } + ] + }, + { + "id": 331, + "text": "which I just spent $200 getting my computer back from service fixing.", + "start": 759.58, + "end": 764.12, + "words": [ + { + "word": " which", + "start": 759.58, + "end": 759.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 759.86, + "end": 760.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 760.0, + "end": 760.14, + "probability": 1.0 + }, + { + "word": " spent", + "start": 760.14, + "end": 760.34, + "probability": 1.0 + }, + { + "word": " $200", + "start": 760.34, + "end": 760.9, + "probability": 1.0 + }, + { + "word": " getting", + "start": 760.9, + "end": 761.16, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 761.16, + "end": 761.34, + "probability": 1.0 + }, + { + "word": " computer", + "start": 761.34, + "end": 761.68, + "probability": 1.0 + }, + { + "word": " back", + "start": 761.68, + "end": 761.96, + "probability": 1.0 + }, + { + "word": " from", + "start": 761.96, + "end": 762.66, + "probability": 0.9990234375 + }, + { + "word": " service", + "start": 762.66, + "end": 763.14, + "probability": 0.95947265625 + }, + { + "word": " fixing.", + "start": 763.14, + "end": 764.12, + "probability": 0.98779296875 + } + ] + }, + { + "id": 332, + "text": "And I'm betting that an XP machine will be cheap to buy if I could find one.", + "start": 765.52, + "end": 770.4, + "words": [ + { + "word": " And", + "start": 765.52, + "end": 766.0, + "probability": 0.88232421875 + }, + { + "word": " I'm", + "start": 766.0, + "end": 766.48, + "probability": 0.99951171875 + }, + { + "word": " betting", + "start": 766.48, + "end": 766.82, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 766.82, + "end": 767.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 767.16, + "end": 767.3, + "probability": 0.998046875 + }, + { + "word": " XP", + "start": 767.3, + "end": 767.54, + "probability": 1.0 + }, + { + "word": " machine", + "start": 767.54, + "end": 767.82, + "probability": 1.0 + }, + { + "word": " will", + "start": 767.82, + "end": 768.2, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 768.2, + "end": 768.38, + "probability": 1.0 + }, + { + "word": " cheap", + "start": 768.38, + "end": 768.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 768.88, + "end": 769.14, + "probability": 1.0 + }, + { + "word": " buy", + "start": 769.14, + "end": 769.32, + "probability": 1.0 + }, + { + "word": " if", + "start": 769.32, + "end": 769.62, + "probability": 0.99365234375 + }, + { + "word": " I", + "start": 769.62, + "end": 769.74, + "probability": 1.0 + }, + { + "word": " could", + "start": 769.74, + "end": 769.86, + "probability": 0.97509765625 + }, + { + "word": " find", + "start": 769.86, + "end": 770.16, + "probability": 0.99951171875 + }, + { + "word": " one.", + "start": 770.16, + "end": 770.4, + "probability": 1.0 + } + ] + }, + { + "id": 333, + "text": "It's not going on the Internet, so I'm not worried about all the vulnerabilities on it.", + "start": 770.54, + "end": 774.9, + "words": [ + { + "word": " It's", + "start": 770.54, + "end": 771.0, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 771.0, + "end": 771.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 771.14, + "end": 771.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 771.32, + "end": 771.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 771.48, + "end": 771.62, + "probability": 1.0 + }, + { + "word": " Internet,", + "start": 771.62, + "end": 771.82, + "probability": 0.92431640625 + }, + { + "word": " so", + "start": 771.96, + "end": 772.12, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 772.12, + "end": 772.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 772.24, + "end": 772.36, + "probability": 1.0 + }, + { + "word": " worried", + "start": 772.36, + "end": 772.58, + "probability": 1.0 + }, + { + "word": " about", + "start": 772.58, + "end": 772.76, + "probability": 1.0 + }, + { + "word": " all", + "start": 772.76, + "end": 772.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 772.98, + "end": 773.24, + "probability": 1.0 + }, + { + "word": " vulnerabilities", + "start": 773.24, + "end": 774.16, + "probability": 0.76953125 + }, + { + "word": " on", + "start": 774.16, + "end": 774.72, + "probability": 1.0 + }, + { + "word": " it.", + "start": 774.72, + "end": 774.9, + "probability": 1.0 + } + ] + }, + { + "id": 334, + "text": "And it's going to be used almost solely...", + "start": 775.08, + "end": 777.5, + "words": [ + { + "word": " And", + "start": 775.08, + "end": 775.56, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 775.56, + "end": 776.1, + "probability": 1.0 + }, + { + "word": " going", + "start": 776.1, + "end": 776.18, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 776.18, + "end": 776.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 776.28, + "end": 776.38, + "probability": 1.0 + }, + { + "word": " used", + "start": 776.38, + "end": 776.64, + "probability": 1.0 + }, + { + "word": " almost", + "start": 776.64, + "end": 777.04, + "probability": 0.9921875 + }, + { + "word": " solely...", + "start": 777.04, + "end": 777.5, + "probability": 0.740234375 + } + ] + }, + { + "id": 335, + "text": "It's going to be used solely for production in Adobe Audition for things actually just", + "start": 777.52, + "end": 783.04, + "words": [ + { + "word": " It's", + "start": 777.52, + "end": 777.6, + "probability": 0.352294921875 + }, + { + "word": " going", + "start": 777.6, + "end": 777.6, + "probability": 0.0075531005859375 + }, + { + "word": " to", + "start": 777.6, + "end": 777.6, + "probability": 0.91064453125 + }, + { + "word": " be", + "start": 777.6, + "end": 777.6, + "probability": 0.57861328125 + }, + { + "word": " used", + "start": 777.6, + "end": 777.6, + "probability": 0.0017309188842773438 + }, + { + "word": " solely", + "start": 777.6, + "end": 777.6, + "probability": 0.0026111602783203125 + }, + { + "word": " for", + "start": 777.6, + "end": 777.72, + "probability": 0.99853515625 + }, + { + "word": " production", + "start": 777.72, + "end": 778.3, + "probability": 0.99267578125 + }, + { + "word": " in", + "start": 778.3, + "end": 779.66, + "probability": 0.95849609375 + }, + { + "word": " Adobe", + "start": 779.66, + "end": 780.04, + "probability": 0.99267578125 + }, + { + "word": " Audition", + "start": 780.04, + "end": 780.6, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 780.6, + "end": 780.86, + "probability": 0.919921875 + }, + { + "word": " things", + "start": 780.86, + "end": 781.18, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 781.18, + "end": 782.04, + "probability": 0.91064453125 + }, + { + "word": " just", + "start": 782.04, + "end": 783.04, + "probability": 0.9912109375 + } + ] + }, + { + "id": 336, + "text": "like that Batman spot, which was made on an XP machine.", + "start": 783.04, + "end": 786.28, + "words": [ + { + "word": " like", + "start": 783.04, + "end": 783.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 783.3, + "end": 783.5, + "probability": 0.99853515625 + }, + { + "word": " Batman", + "start": 783.5, + "end": 784.2, + "probability": 0.9990234375 + }, + { + "word": " spot,", + "start": 784.2, + "end": 784.48, + "probability": 0.96875 + }, + { + "word": " which", + "start": 784.6, + "end": 784.76, + "probability": 1.0 + }, + { + "word": " was", + "start": 784.76, + "end": 784.88, + "probability": 1.0 + }, + { + "word": " made", + "start": 784.88, + "end": 785.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 785.1, + "end": 785.26, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 785.26, + "end": 785.42, + "probability": 0.99609375 + }, + { + "word": " XP", + "start": 785.42, + "end": 785.76, + "probability": 0.9970703125 + }, + { + "word": " machine.", + "start": 785.76, + "end": 786.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 337, + "text": "Okay.", + "start": 786.98, + "end": 787.32, + "words": [ + { + "word": " Okay.", + "start": 786.98, + "end": 787.32, + "probability": 0.3564453125 + } + ] + }, + { + "id": 338, + "text": "So can you direct me to a place?", + "start": 787.42, + "end": 792.74, + "words": [ + { + "word": " So", + "start": 787.42, + "end": 787.54, + "probability": 0.39892578125 + }, + { + "word": " can", + "start": 787.54, + "end": 787.58, + "probability": 0.8076171875 + }, + { + "word": " you", + "start": 787.58, + "end": 787.78, + "probability": 1.0 + }, + { + "word": " direct", + "start": 787.78, + "end": 788.46, + "probability": 0.9912109375 + }, + { + "word": " me", + "start": 788.46, + "end": 788.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 788.86, + "end": 790.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 790.86, + "end": 791.16, + "probability": 0.99951171875 + }, + { + "word": " place?", + "start": 791.16, + "end": 792.74, + "probability": 1.0 + } + ] + }, + { + "id": 339, + "text": "Or do you have one that's like sitting in the back with dust on it?", + "start": 792.82, + "end": 795.62, + "words": [ + { + "word": " Or", + "start": 792.82, + "end": 792.98, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 792.98, + "end": 793.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 793.1, + "end": 793.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 793.24, + "end": 793.48, + "probability": 1.0 + }, + { + "word": " one", + "start": 793.48, + "end": 793.74, + "probability": 1.0 + }, + { + "word": " that's", + "start": 793.74, + "end": 793.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 793.94, + "end": 794.06, + "probability": 0.529296875 + }, + { + "word": " sitting", + "start": 794.06, + "end": 794.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 794.36, + "end": 794.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 794.54, + "end": 794.62, + "probability": 1.0 + }, + { + "word": " back", + "start": 794.62, + "end": 794.84, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 794.84, + "end": 795.02, + "probability": 0.99951171875 + }, + { + "word": " dust", + "start": 795.02, + "end": 795.24, + "probability": 0.98779296875 + }, + { + "word": " on", + "start": 795.24, + "end": 795.44, + "probability": 1.0 + }, + { + "word": " it?", + "start": 795.44, + "end": 795.62, + "probability": 1.0 + } + ] + }, + { + "id": 340, + "text": "I was going to say, you might start checking like dumpsters and those kinds of things.", + "start": 795.72, + "end": 799.66, + "words": [ + { + "word": " I", + "start": 795.72, + "end": 796.12, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 796.12, + "end": 796.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 796.2, + "end": 796.3, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 796.3, + "end": 796.38, + "probability": 1.0 + }, + { + "word": " say,", + "start": 796.38, + "end": 796.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 796.62, + "end": 796.72, + "probability": 1.0 + }, + { + "word": " might", + "start": 796.72, + "end": 796.92, + "probability": 1.0 + }, + { + "word": " start", + "start": 796.92, + "end": 797.4, + "probability": 0.99951171875 + }, + { + "word": " checking", + "start": 797.4, + "end": 797.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 797.74, + "end": 798.0, + "probability": 0.568359375 + }, + { + "word": " dumpsters", + "start": 798.0, + "end": 798.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 798.52, + "end": 798.88, + "probability": 1.0 + }, + { + "word": " those", + "start": 798.88, + "end": 799.04, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 799.04, + "end": 799.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 799.24, + "end": 799.4, + "probability": 1.0 + }, + { + "word": " things.", + "start": 799.4, + "end": 799.66, + "probability": 1.0 + } + ] + }, + { + "id": 341, + "text": "Doorstops.", + "start": 799.88, + "end": 800.28, + "words": [ + { + "word": " Doorstops.", + "start": 799.88, + "end": 800.28, + "probability": 0.82470703125 + } + ] + }, + { + "id": 342, + "text": "Well, there's always the swap shop, but I mean, you know, which I may do.", + "start": 800.74, + "end": 803.88, + "words": [ + { + "word": " Well,", + "start": 800.74, + "end": 801.14, + "probability": 0.90966796875 + }, + { + "word": " there's", + "start": 801.14, + "end": 801.36, + "probability": 0.99560546875 + }, + { + "word": " always", + "start": 801.36, + "end": 801.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 801.5, + "end": 801.68, + "probability": 0.97900390625 + }, + { + "word": " swap", + "start": 801.68, + "end": 801.94, + "probability": 0.98681640625 + }, + { + "word": " shop,", + "start": 801.94, + "end": 802.22, + "probability": 1.0 + }, + { + "word": " but", + "start": 802.4, + "end": 802.54, + "probability": 0.3056640625 + }, + { + "word": " I", + "start": 802.54, + "end": 802.7, + "probability": 0.9716796875 + }, + { + "word": " mean,", + "start": 802.7, + "end": 802.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 802.96, + "end": 803.08, + "probability": 0.9951171875 + }, + { + "word": " know,", + "start": 803.08, + "end": 803.22, + "probability": 1.0 + }, + { + "word": " which", + "start": 803.24, + "end": 803.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 803.36, + "end": 803.5, + "probability": 1.0 + }, + { + "word": " may", + "start": 803.5, + "end": 803.68, + "probability": 1.0 + }, + { + "word": " do.", + "start": 803.68, + "end": 803.88, + "probability": 1.0 + } + ] + }, + { + "id": 343, + "text": "But the point of the matter is, is that I'm looking for...", + "start": 804.04, + "end": 806.94, + "words": [ + { + "word": " But", + "start": 804.04, + "end": 804.44, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 804.44, + "end": 804.56, + "probability": 0.99951171875 + }, + { + "word": " point", + "start": 804.56, + "end": 804.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 804.82, + "end": 804.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 804.9, + "end": 804.94, + "probability": 1.0 + }, + { + "word": " matter", + "start": 804.94, + "end": 805.16, + "probability": 1.0 + }, + { + "word": " is,", + "start": 805.16, + "end": 805.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 805.46, + "end": 805.6, + "probability": 0.904296875 + }, + { + "word": " that", + "start": 805.6, + "end": 805.72, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 805.72, + "end": 806.22, + "probability": 1.0 + }, + { + "word": " looking", + "start": 806.22, + "end": 806.48, + "probability": 1.0 + }, + { + "word": " for...", + "start": 806.48, + "end": 806.94, + "probability": 0.56396484375 + } + ] + }, + { + "id": 344, + "text": "One that maybe you used as a test bed for something, or it's been sitting indoors, not outdoors.", + "start": 806.94, + "end": 812.24, + "words": [ + { + "word": " One", + "start": 806.94, + "end": 807.2, + "probability": 0.00919342041015625 + }, + { + "word": " that", + "start": 807.2, + "end": 807.68, + "probability": 0.9970703125 + }, + { + "word": " maybe", + "start": 807.68, + "end": 807.96, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 807.96, + "end": 808.2, + "probability": 0.99658203125 + }, + { + "word": " used", + "start": 808.2, + "end": 808.68, + "probability": 0.923828125 + }, + { + "word": " as", + "start": 808.68, + "end": 808.86, + "probability": 0.97314453125 + }, + { + "word": " a", + "start": 808.86, + "end": 808.96, + "probability": 0.9990234375 + }, + { + "word": " test", + "start": 808.96, + "end": 809.28, + "probability": 0.98974609375 + }, + { + "word": " bed", + "start": 809.28, + "end": 809.48, + "probability": 0.759765625 + }, + { + "word": " for", + "start": 809.48, + "end": 809.72, + "probability": 0.93603515625 + }, + { + "word": " something,", + "start": 809.72, + "end": 810.08, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 810.26, + "end": 810.44, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 810.44, + "end": 810.58, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 810.58, + "end": 810.68, + "probability": 0.986328125 + }, + { + "word": " sitting", + "start": 810.68, + "end": 810.98, + "probability": 1.0 + }, + { + "word": " indoors,", + "start": 810.98, + "end": 811.44, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 811.6, + "end": 811.82, + "probability": 1.0 + }, + { + "word": " outdoors.", + "start": 811.82, + "end": 812.24, + "probability": 1.0 + } + ] + }, + { + "id": 345, + "text": "You know, because it's expired technology.", + "start": 812.58, + "end": 814.78, + "words": [ + { + "word": " You", + "start": 812.58, + "end": 812.96, + "probability": 0.306884765625 + }, + { + "word": " know,", + "start": 812.96, + "end": 813.1, + "probability": 1.0 + }, + { + "word": " because", + "start": 813.14, + "end": 813.28, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 813.28, + "end": 813.76, + "probability": 1.0 + }, + { + "word": " expired", + "start": 813.76, + "end": 814.16, + "probability": 0.8623046875 + }, + { + "word": " technology.", + "start": 814.16, + "end": 814.78, + "probability": 1.0 + } + ] + }, + { + "id": 346, + "text": "I get it.", + "start": 814.84, + "end": 815.6, + "words": [ + { + "word": " I", + "start": 814.84, + "end": 815.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 815.26, + "end": 815.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 815.46, + "end": 815.6, + "probability": 1.0 + } + ] + }, + { + "id": 347, + "text": "But I like...", + "start": 815.84, + "end": 816.66, + "words": [ + { + "word": " But", + "start": 815.84, + "end": 816.04, + "probability": 0.94873046875 + }, + { + "word": " I", + "start": 816.04, + "end": 816.1, + "probability": 0.94384765625 + }, + { + "word": " like...", + "start": 816.1, + "end": 816.66, + "probability": 0.6171875 + } + ] + }, + { + "id": 348, + "text": "Or is there a way to make Windows 7 work and look more like XP so that it's more user-friendly?", + "start": 816.66, + "end": 823.7, + "words": [ + { + "word": " Or", + "start": 816.66, + "end": 817.26, + "probability": 0.437744140625 + }, + { + "word": " is", + "start": 817.26, + "end": 817.56, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 817.56, + "end": 817.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 817.72, + "end": 817.84, + "probability": 1.0 + }, + { + "word": " way", + "start": 817.84, + "end": 818.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 818.04, + "end": 818.32, + "probability": 1.0 + }, + { + "word": " make", + "start": 818.32, + "end": 819.44, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 819.44, + "end": 820.14, + "probability": 1.0 + }, + { + "word": " 7", + "start": 820.14, + "end": 820.5, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 820.5, + "end": 820.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 820.96, + "end": 821.16, + "probability": 0.99853515625 + }, + { + "word": " look", + "start": 821.16, + "end": 821.42, + "probability": 1.0 + }, + { + "word": " more", + "start": 821.42, + "end": 821.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 821.7, + "end": 822.0, + "probability": 1.0 + }, + { + "word": " XP", + "start": 822.0, + "end": 822.34, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 822.34, + "end": 822.66, + "probability": 0.97021484375 + }, + { + "word": " that", + "start": 822.66, + "end": 822.82, + "probability": 1.0 + }, + { + "word": " it's", + "start": 822.82, + "end": 822.94, + "probability": 1.0 + }, + { + "word": " more", + "start": 822.94, + "end": 823.1, + "probability": 1.0 + }, + { + "word": " user", + "start": 823.1, + "end": 823.38, + "probability": 1.0 + }, + { + "word": "-friendly?", + "start": 823.38, + "end": 823.7, + "probability": 0.97607421875 + } + ] + }, + { + "id": 349, + "text": "I mean, for instance, you go to save something in Word and you have to save it to your computer.", + "start": 823.86, + "end": 827.76, + "words": [ + { + "word": " I", + "start": 823.86, + "end": 823.96, + "probability": 0.99658203125 + }, + { + "word": " mean,", + "start": 823.96, + "end": 824.06, + "probability": 1.0 + }, + { + "word": " for", + "start": 824.1, + "end": 824.48, + "probability": 1.0 + }, + { + "word": " instance,", + "start": 824.48, + "end": 824.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 825.0, + "end": 825.14, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 825.14, + "end": 825.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 825.28, + "end": 825.36, + "probability": 1.0 + }, + { + "word": " save", + "start": 825.36, + "end": 825.62, + "probability": 0.93896484375 + }, + { + "word": " something", + "start": 825.62, + "end": 825.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 825.9, + "end": 826.1, + "probability": 0.93212890625 + }, + { + "word": " Word", + "start": 826.1, + "end": 826.32, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 826.32, + "end": 826.52, + "probability": 0.53125 + }, + { + "word": " you", + "start": 826.52, + "end": 826.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 826.62, + "end": 826.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 826.78, + "end": 826.94, + "probability": 1.0 + }, + { + "word": " save", + "start": 826.94, + "end": 827.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 827.14, + "end": 827.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 827.24, + "end": 827.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 827.32, + "end": 827.42, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 827.42, + "end": 827.76, + "probability": 1.0 + } + ] + }, + { + "id": 350, + "text": "It won't even let you open it without saving it first to your computer.", + "start": 827.88, + "end": 831.38, + "words": [ + { + "word": " It", + "start": 827.88, + "end": 827.94, + "probability": 1.0 + }, + { + "word": " won't", + "start": 827.94, + "end": 828.1, + "probability": 1.0 + }, + { + "word": " even", + "start": 828.1, + "end": 828.22, + "probability": 1.0 + }, + { + "word": " let", + "start": 828.22, + "end": 828.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 828.44, + "end": 828.58, + "probability": 1.0 + }, + { + "word": " open", + "start": 828.58, + "end": 828.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 828.8, + "end": 829.04, + "probability": 1.0 + }, + { + "word": " without", + "start": 829.04, + "end": 829.8, + "probability": 0.9970703125 + }, + { + "word": " saving", + "start": 829.8, + "end": 830.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 830.2, + "end": 830.44, + "probability": 1.0 + }, + { + "word": " first", + "start": 830.44, + "end": 830.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 830.68, + "end": 830.84, + "probability": 1.0 + }, + { + "word": " your", + "start": 830.84, + "end": 830.96, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 830.96, + "end": 831.38, + "probability": 1.0 + } + ] + }, + { + "id": 351, + "text": "There's dumb stuff like that in 7 that was never true in XP.", + "start": 831.48, + "end": 834.98, + "words": [ + { + "word": " There's", + "start": 831.48, + "end": 831.66, + "probability": 0.9990234375 + }, + { + "word": " dumb", + "start": 831.66, + "end": 831.94, + "probability": 0.9970703125 + }, + { + "word": " stuff", + "start": 831.94, + "end": 832.24, + "probability": 1.0 + }, + { + "word": " like", + "start": 832.24, + "end": 832.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 832.58, + "end": 832.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 832.84, + "end": 833.24, + "probability": 0.9921875 + }, + { + "word": " 7", + "start": 833.24, + "end": 833.62, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 833.62, + "end": 833.88, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 833.88, + "end": 834.04, + "probability": 1.0 + }, + { + "word": " never", + "start": 834.04, + "end": 834.28, + "probability": 1.0 + }, + { + "word": " true", + "start": 834.28, + "end": 834.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 834.54, + "end": 834.7, + "probability": 1.0 + }, + { + "word": " XP.", + "start": 834.7, + "end": 834.98, + "probability": 1.0 + } + ] + }, + { + "id": 352, + "text": "Actually, that's still true.", + "start": 835.28, + "end": 836.76, + "words": [ + { + "word": " Actually,", + "start": 835.28, + "end": 835.74, + "probability": 0.99853515625 + }, + { + "word": " that's", + "start": 835.78, + "end": 836.0, + "probability": 1.0 + }, + { + "word": " still", + "start": 836.0, + "end": 836.52, + "probability": 0.99951171875 + }, + { + "word": " true.", + "start": 836.52, + "end": 836.76, + "probability": 1.0 + } + ] + }, + { + "id": 353, + "text": "That's always true.", + "start": 836.94, + "end": 837.66, + "words": [ + { + "word": " That's", + "start": 836.94, + "end": 837.28, + "probability": 0.99072265625 + }, + { + "word": " always", + "start": 837.28, + "end": 837.44, + "probability": 0.99951171875 + }, + { + "word": " true.", + "start": 837.44, + "end": 837.66, + "probability": 1.0 + } + ] + }, + { + "id": 354, + "text": "The whole, you know, you can't open something unless it exists.", + "start": 837.92, + "end": 841.02, + "words": [ + { + "word": " The", + "start": 837.92, + "end": 838.36, + "probability": 0.515625 + }, + { + "word": " whole,", + "start": 838.36, + "end": 838.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 838.74, + "end": 839.28, + "probability": 1.0 + }, + { + "word": " know,", + "start": 839.28, + "end": 839.44, + "probability": 0.970703125 + }, + { + "word": " you", + "start": 839.44, + "end": 839.68, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 839.68, + "end": 839.92, + "probability": 1.0 + }, + { + "word": " open", + "start": 839.92, + "end": 840.1, + "probability": 1.0 + }, + { + "word": " something", + "start": 840.1, + "end": 840.32, + "probability": 1.0 + }, + { + "word": " unless", + "start": 840.32, + "end": 840.56, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 840.56, + "end": 840.74, + "probability": 1.0 + }, + { + "word": " exists.", + "start": 840.74, + "end": 841.02, + "probability": 1.0 + } + ] + }, + { + "id": 355, + "text": "So it does save it to your computer first before it opens it.", + "start": 841.18, + "end": 843.94, + "words": [ + { + "word": " So", + "start": 841.18, + "end": 841.62, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 841.62, + "end": 841.84, + "probability": 0.83740234375 + }, + { + "word": " does", + "start": 841.84, + "end": 842.18, + "probability": 1.0 + }, + { + "word": " save", + "start": 842.18, + "end": 842.44, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 842.44, + "end": 842.56, + "probability": 0.85546875 + }, + { + "word": " to", + "start": 842.56, + "end": 842.6, + "probability": 0.9736328125 + }, + { + "word": " your", + "start": 842.6, + "end": 842.64, + "probability": 1.0 + }, + { + "word": " computer", + "start": 842.64, + "end": 842.96, + "probability": 1.0 + }, + { + "word": " first", + "start": 842.96, + "end": 843.2, + "probability": 1.0 + }, + { + "word": " before", + "start": 843.2, + "end": 843.44, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 843.44, + "end": 843.58, + "probability": 1.0 + }, + { + "word": " opens", + "start": 843.58, + "end": 843.78, + "probability": 1.0 + }, + { + "word": " it.", + "start": 843.78, + "end": 843.94, + "probability": 1.0 + } + ] + }, + { + "id": 356, + "text": "Oh, it just did it in the background before.", + "start": 844.36, + "end": 846.5, + "words": [ + { + "word": " Oh,", + "start": 844.36, + "end": 844.7, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 844.74, + "end": 844.84, + "probability": 1.0 + }, + { + "word": " just", + "start": 844.84, + "end": 844.98, + "probability": 1.0 + }, + { + "word": " did", + "start": 844.98, + "end": 845.12, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 845.12, + "end": 845.22, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 845.22, + "end": 845.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 845.84, + "end": 845.94, + "probability": 1.0 + }, + { + "word": " background", + "start": 845.94, + "end": 846.24, + "probability": 0.99853515625 + }, + { + "word": " before.", + "start": 846.24, + "end": 846.5, + "probability": 0.775390625 + } + ] + }, + { + "id": 357, + "text": "It puts it in a temp folder.", + "start": 846.5, + "end": 847.72, + "words": [ + { + "word": " It", + "start": 846.5, + "end": 846.84, + "probability": 0.779296875 + }, + { + "word": " puts", + "start": 846.84, + "end": 846.94, + "probability": 0.974609375 + }, + { + "word": " it", + "start": 846.94, + "end": 847.02, + "probability": 0.99267578125 + }, + { + "word": " in", + "start": 847.02, + "end": 847.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 847.06, + "end": 847.28, + "probability": 0.97607421875 + }, + { + "word": " temp", + "start": 847.28, + "end": 847.54, + "probability": 0.99267578125 + }, + { + "word": " folder.", + "start": 847.54, + "end": 847.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 358, + "text": "And 7 does the same thing.", + "start": 847.96, + "end": 849.04, + "words": [ + { + "word": " And", + "start": 847.96, + "end": 848.3, + "probability": 0.9990234375 + }, + { + "word": " 7", + "start": 848.3, + "end": 848.48, + "probability": 0.92626953125 + }, + { + "word": " does", + "start": 848.48, + "end": 848.64, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 848.64, + "end": 848.78, + "probability": 1.0 + }, + { + "word": " same", + "start": 848.78, + "end": 848.9, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 848.9, + "end": 849.04, + "probability": 1.0 + } + ] + }, + { + "id": 359, + "text": "So there's...", + "start": 849.8, + "end": 850.62, + "words": [ + { + "word": " So", + "start": 849.8, + "end": 850.24, + "probability": 0.94775390625 + }, + { + "word": " there's...", + "start": 850.24, + "end": 850.62, + "probability": 0.63427734375 + } + ] + }, + { + "id": 360, + "text": "I think there's a whole lot of like, we should just sit down sometime and I can just show you that it works the way that XP does.", + "start": 851.2399999999999, + "end": 858.3, + "words": [ + { + "word": " I", + "start": 851.2399999999999, + "end": 851.68, + "probability": 0.99658203125 + }, + { + "word": " think", + "start": 851.68, + "end": 851.94, + "probability": 1.0 + }, + { + "word": " there's", + "start": 851.94, + "end": 852.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 852.12, + "end": 852.12, + "probability": 1.0 + }, + { + "word": " whole", + "start": 852.12, + "end": 852.26, + "probability": 1.0 + }, + { + "word": " lot", + "start": 852.26, + "end": 852.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 852.44, + "end": 852.56, + "probability": 1.0 + }, + { + "word": " like,", + "start": 852.56, + "end": 852.78, + "probability": 0.222412109375 + }, + { + "word": " we", + "start": 852.88, + "end": 853.52, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 853.52, + "end": 853.72, + "probability": 1.0 + }, + { + "word": " just", + "start": 853.72, + "end": 853.9, + "probability": 1.0 + }, + { + "word": " sit", + "start": 853.9, + "end": 854.02, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 854.02, + "end": 854.2, + "probability": 1.0 + }, + { + "word": " sometime", + "start": 854.2, + "end": 854.46, + "probability": 0.91259765625 + }, + { + "word": " and", + "start": 854.46, + "end": 854.74, + "probability": 0.90869140625 + }, + { + "word": " I", + "start": 854.74, + "end": 854.84, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 854.84, + "end": 855.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 855.0, + "end": 855.14, + "probability": 1.0 + }, + { + "word": " show", + "start": 855.14, + "end": 855.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 855.32, + "end": 855.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 855.46, + "end": 855.6, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 855.6, + "end": 855.92, + "probability": 0.99951171875 + }, + { + "word": " works", + "start": 855.92, + "end": 856.94, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 856.94, + "end": 857.2, + "probability": 0.9990234375 + }, + { + "word": " way", + "start": 857.2, + "end": 857.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 857.42, + "end": 857.7, + "probability": 1.0 + }, + { + "word": " XP", + "start": 857.7, + "end": 858.0, + "probability": 0.998046875 + }, + { + "word": " does.", + "start": 858.0, + "end": 858.3, + "probability": 1.0 + } + ] + }, + { + "id": 361, + "text": "The only difference is they added a security layer that doesn't allow you to save to the root.", + "start": 859.08, + "end": 863.36, + "words": [ + { + "word": " The", + "start": 859.08, + "end": 859.52, + "probability": 0.9990234375 + }, + { + "word": " only", + "start": 859.52, + "end": 859.66, + "probability": 1.0 + }, + { + "word": " difference", + "start": 859.66, + "end": 859.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 859.98, + "end": 860.22, + "probability": 1.0 + }, + { + "word": " they", + "start": 860.22, + "end": 860.4, + "probability": 0.99658203125 + }, + { + "word": " added", + "start": 860.4, + "end": 860.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 860.64, + "end": 860.8, + "probability": 0.99853515625 + }, + { + "word": " security", + "start": 860.8, + "end": 861.1, + "probability": 0.99951171875 + }, + { + "word": " layer", + "start": 861.1, + "end": 861.74, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 861.74, + "end": 862.04, + "probability": 0.9990234375 + }, + { + "word": " doesn't", + "start": 862.04, + "end": 862.3, + "probability": 1.0 + }, + { + "word": " allow", + "start": 862.3, + "end": 862.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 862.42, + "end": 862.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 862.58, + "end": 862.66, + "probability": 1.0 + }, + { + "word": " save", + "start": 862.66, + "end": 862.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 862.88, + "end": 863.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 863.02, + "end": 863.1, + "probability": 1.0 + }, + { + "word": " root.", + "start": 863.1, + "end": 863.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 362, + "text": "Right?", + "start": 864.1, + "end": 864.54, + "words": [ + { + "word": " Right?", + "start": 864.1, + "end": 864.54, + "probability": 0.60302734375 + } + ] + }, + { + "id": 363, + "text": "So...", + "start": 864.58, + "end": 865.0, + "words": [ + { + "word": " So...", + "start": 864.58, + "end": 865.0, + "probability": 0.7275390625 + } + ] + }, + { + "id": 364, + "text": "But for the most part...", + "start": 865.0, + "end": 866.36, + "words": [ + { + "word": " But", + "start": 865.0, + "end": 865.62, + "probability": 0.9912109375 + }, + { + "word": " for", + "start": 865.62, + "end": 865.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 865.74, + "end": 865.84, + "probability": 1.0 + }, + { + "word": " most", + "start": 865.84, + "end": 866.0, + "probability": 1.0 + }, + { + "word": " part...", + "start": 866.0, + "end": 866.36, + "probability": 0.5 + } + ] + }, + { + "id": 365, + "text": "XP and 7 are very, very similar.", + "start": 866.94, + "end": 868.96, + "words": [ + { + "word": " XP", + "start": 866.94, + "end": 867.04, + "probability": 0.318359375 + }, + { + "word": " and", + "start": 867.04, + "end": 867.12, + "probability": 0.87060546875 + }, + { + "word": " 7", + "start": 867.12, + "end": 867.72, + "probability": 0.85400390625 + }, + { + "word": " are", + "start": 867.72, + "end": 868.0, + "probability": 0.99658203125 + }, + { + "word": " very,", + "start": 868.0, + "end": 868.38, + "probability": 1.0 + }, + { + "word": " very", + "start": 868.46, + "end": 868.6, + "probability": 1.0 + }, + { + "word": " similar.", + "start": 868.6, + "end": 868.96, + "probability": 1.0 + } + ] + }, + { + "id": 366, + "text": "Okay.", + "start": 869.94, + "end": 870.38, + "words": [ + { + "word": " Okay.", + "start": 869.94, + "end": 870.38, + "probability": 0.974609375 + } + ] + }, + { + "id": 367, + "text": "Well, but the thing about it is if I have a machine, if I buy a machine that has expired technology, it costs a lot less.", + "start": 870.66, + "end": 877.08, + "words": [ + { + "word": " Well,", + "start": 870.66, + "end": 871.1, + "probability": 0.9755859375 + }, + { + "word": " but", + "start": 871.26, + "end": 871.52, + "probability": 0.89599609375 + }, + { + "word": " the", + "start": 871.52, + "end": 871.74, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 871.74, + "end": 871.98, + "probability": 1.0 + }, + { + "word": " about", + "start": 871.98, + "end": 872.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 872.18, + "end": 872.36, + "probability": 0.994140625 + }, + { + "word": " is", + "start": 872.36, + "end": 872.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 872.48, + "end": 872.62, + "probability": 0.87890625 + }, + { + "word": " I", + "start": 872.62, + "end": 872.76, + "probability": 1.0 + }, + { + "word": " have", + "start": 872.76, + "end": 872.92, + "probability": 0.97216796875 + }, + { + "word": " a", + "start": 872.92, + "end": 873.06, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 873.06, + "end": 873.32, + "probability": 1.0 + }, + { + "word": " if", + "start": 873.4, + "end": 873.52, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 873.52, + "end": 873.62, + "probability": 1.0 + }, + { + "word": " buy", + "start": 873.62, + "end": 873.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 873.84, + "end": 873.9, + "probability": 1.0 + }, + { + "word": " machine", + "start": 873.9, + "end": 874.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 874.24, + "end": 874.4, + "probability": 1.0 + }, + { + "word": " has", + "start": 874.4, + "end": 874.56, + "probability": 1.0 + }, + { + "word": " expired", + "start": 874.56, + "end": 874.88, + "probability": 0.9990234375 + }, + { + "word": " technology,", + "start": 874.88, + "end": 875.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 875.86, + "end": 876.24, + "probability": 1.0 + }, + { + "word": " costs", + "start": 876.24, + "end": 876.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 876.56, + "end": 876.74, + "probability": 1.0 + }, + { + "word": " lot", + "start": 876.74, + "end": 876.88, + "probability": 1.0 + }, + { + "word": " less.", + "start": 876.88, + "end": 877.08, + "probability": 1.0 + } + ] + }, + { + "id": 368, + "text": "I like to buy the things that other people don't want.", + "start": 877.18, + "end": 880.28, + "words": [ + { + "word": " I", + "start": 877.18, + "end": 877.52, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 877.52, + "end": 878.02, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 878.02, + "end": 878.42, + "probability": 1.0 + }, + { + "word": " buy", + "start": 878.42, + "end": 878.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 878.64, + "end": 878.78, + "probability": 1.0 + }, + { + "word": " things", + "start": 878.78, + "end": 879.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 879.0, + "end": 879.26, + "probability": 1.0 + }, + { + "word": " other", + "start": 879.26, + "end": 879.42, + "probability": 1.0 + }, + { + "word": " people", + "start": 879.42, + "end": 879.68, + "probability": 1.0 + }, + { + "word": " don't", + "start": 879.68, + "end": 880.02, + "probability": 1.0 + }, + { + "word": " want.", + "start": 880.02, + "end": 880.28, + "probability": 1.0 + } + ] + }, + { + "id": 369, + "text": "That was probably true maybe five years ago.", + "start": 880.42, + "end": 882.48, + "words": [ + { + "word": " That", + "start": 880.42, + "end": 880.58, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 880.58, + "end": 880.68, + "probability": 1.0 + }, + { + "word": " probably", + "start": 880.68, + "end": 880.94, + "probability": 1.0 + }, + { + "word": " true", + "start": 880.94, + "end": 881.28, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 881.28, + "end": 881.68, + "probability": 0.99951171875 + }, + { + "word": " five", + "start": 881.68, + "end": 881.94, + "probability": 0.9873046875 + }, + { + "word": " years", + "start": 881.94, + "end": 882.2, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 882.2, + "end": 882.48, + "probability": 1.0 + } + ] + }, + { + "id": 370, + "text": "But right now there's a premium on XP machines because if you're buying an XP machine, it's because you need an XP machine.", + "start": 883.4599999999999, + "end": 889.96, + "words": [ + { + "word": " But", + "start": 883.4599999999999, + "end": 883.9, + "probability": 0.67138671875 + }, + { + "word": " right", + "start": 883.9, + "end": 884.34, + "probability": 0.99853515625 + }, + { + "word": " now", + "start": 884.34, + "end": 884.64, + "probability": 1.0 + }, + { + "word": " there's", + "start": 884.64, + "end": 884.96, + "probability": 0.8271484375 + }, + { + "word": " a", + "start": 884.96, + "end": 885.02, + "probability": 1.0 + }, + { + "word": " premium", + "start": 885.02, + "end": 885.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 885.34, + "end": 885.62, + "probability": 1.0 + }, + { + "word": " XP", + "start": 885.62, + "end": 885.88, + "probability": 0.99951171875 + }, + { + "word": " machines", + "start": 885.88, + "end": 886.12, + "probability": 0.99658203125 + }, + { + "word": " because", + "start": 886.12, + "end": 886.56, + "probability": 0.93359375 + }, + { + "word": " if", + "start": 886.56, + "end": 886.86, + "probability": 1.0 + }, + { + "word": " you're", + "start": 886.86, + "end": 887.0, + "probability": 1.0 + }, + { + "word": " buying", + "start": 887.0, + "end": 887.22, + "probability": 1.0 + }, + { + "word": " an", + "start": 887.22, + "end": 887.38, + "probability": 0.99951171875 + }, + { + "word": " XP", + "start": 887.38, + "end": 888.02, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 888.02, + "end": 888.28, + "probability": 1.0 + }, + { + "word": " it's", + "start": 888.4, + "end": 888.54, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 888.54, + "end": 888.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 888.72, + "end": 888.96, + "probability": 1.0 + }, + { + "word": " need", + "start": 888.96, + "end": 889.26, + "probability": 1.0 + }, + { + "word": " an", + "start": 889.26, + "end": 889.42, + "probability": 0.99951171875 + }, + { + "word": " XP", + "start": 889.42, + "end": 889.62, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 889.62, + "end": 889.96, + "probability": 1.0 + } + ] + }, + { + "id": 371, + "text": "And they know it.", + "start": 890.34, + "end": 891.44, + "words": [ + { + "word": " And", + "start": 890.34, + "end": 890.78, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 890.78, + "end": 890.94, + "probability": 1.0 + }, + { + "word": " know", + "start": 890.94, + "end": 891.26, + "probability": 1.0 + }, + { + "word": " it.", + "start": 891.26, + "end": 891.44, + "probability": 1.0 + } + ] + }, + { + "id": 372, + "text": "However, they are available out there on like eBay.", + "start": 892.22, + "end": 894.5, + "words": [ + { + "word": " However,", + "start": 892.22, + "end": 892.66, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 892.76, + "end": 892.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 892.98, + "end": 893.14, + "probability": 1.0 + }, + { + "word": " available", + "start": 893.14, + "end": 893.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 893.48, + "end": 893.7, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 893.7, + "end": 893.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 893.86, + "end": 894.0, + "probability": 0.99267578125 + }, + { + "word": " like", + "start": 894.0, + "end": 894.18, + "probability": 0.443603515625 + }, + { + "word": " eBay.", + "start": 894.18, + "end": 894.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 373, + "text": "Craigslist.", + "start": 895.06, + "end": 895.5, + "words": [ + { + "word": " Craigslist.", + "start": 895.06, + "end": 895.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 374, + "text": "Craigslist.", + "start": 895.66, + "end": 896.0, + "words": [ + { + "word": " Craigslist.", + "start": 895.66, + "end": 896.0, + "probability": 0.9765625 + } + ] + }, + { + "id": 375, + "text": "I wouldn't...", + "start": 896.14, + "end": 896.64, + "words": [ + { + "word": " I", + "start": 896.14, + "end": 896.36, + "probability": 0.98779296875 + }, + { + "word": " wouldn't...", + "start": 896.36, + "end": 896.64, + "probability": 0.71337890625 + } + ] + }, + { + "id": 376, + "text": "I don't like buying computers off Craigslist, but eBay is okay.", + "start": 896.94, + "end": 899.54, + "words": [ + { + "word": " I", + "start": 896.94, + "end": 897.02, + "probability": 0.98828125 + }, + { + "word": " don't", + "start": 897.02, + "end": 897.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 897.48, + "end": 897.64, + "probability": 1.0 + }, + { + "word": " buying", + "start": 897.64, + "end": 897.82, + "probability": 0.99951171875 + }, + { + "word": " computers", + "start": 897.82, + "end": 898.12, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 898.12, + "end": 898.3, + "probability": 0.9990234375 + }, + { + "word": " Craigslist,", + "start": 898.3, + "end": 898.68, + "probability": 0.99853515625 + }, + { + "word": " but", + "start": 898.76, + "end": 898.88, + "probability": 0.99951171875 + }, + { + "word": " eBay", + "start": 898.88, + "end": 899.08, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 899.08, + "end": 899.3, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 899.3, + "end": 899.54, + "probability": 0.9873046875 + } + ] + }, + { + "id": 377, + "text": "I like buying it from somebody I know, like, and trust, like yourself.", + "start": 900.22, + "end": 904.32, + "words": [ + { + "word": " I", + "start": 900.22, + "end": 900.48, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 900.48, + "end": 900.82, + "probability": 0.99853515625 + }, + { + "word": " buying", + "start": 900.82, + "end": 901.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 901.6, + "end": 901.88, + "probability": 1.0 + }, + { + "word": " from", + "start": 901.88, + "end": 902.06, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 902.06, + "end": 902.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 902.44, + "end": 902.62, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 902.62, + "end": 902.92, + "probability": 1.0 + }, + { + "word": " like,", + "start": 902.94, + "end": 903.26, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 903.26, + "end": 903.44, + "probability": 1.0 + }, + { + "word": " trust,", + "start": 903.44, + "end": 903.8, + "probability": 1.0 + }, + { + "word": " like", + "start": 903.8, + "end": 904.04, + "probability": 1.0 + }, + { + "word": " yourself.", + "start": 904.04, + "end": 904.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 378, + "text": "And so if you've got one or someone you know of that you trust that has machines like that, I'd be open to that.", + "start": 905.0999999999999, + "end": 912.54, + "words": [ + { + "word": " And", + "start": 905.0999999999999, + "end": 905.5799999999999, + "probability": 0.90234375 + }, + { + "word": " so", + "start": 905.5799999999999, + "end": 906.06, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 906.06, + "end": 906.68, + "probability": 0.83984375 + }, + { + "word": " you've", + "start": 906.68, + "end": 907.1, + "probability": 1.0 + }, + { + "word": " got", + "start": 907.1, + "end": 907.28, + "probability": 1.0 + }, + { + "word": " one", + "start": 907.28, + "end": 907.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 907.58, + "end": 907.84, + "probability": 0.82666015625 + }, + { + "word": " someone", + "start": 907.84, + "end": 908.18, + "probability": 0.91162109375 + }, + { + "word": " you", + "start": 908.18, + "end": 908.5, + "probability": 1.0 + }, + { + "word": " know", + "start": 908.5, + "end": 908.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 908.7, + "end": 908.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 908.94, + "end": 909.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 909.08, + "end": 909.22, + "probability": 1.0 + }, + { + "word": " trust", + "start": 909.22, + "end": 909.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 909.58, + "end": 910.36, + "probability": 0.9970703125 + }, + { + "word": " has", + "start": 910.36, + "end": 910.6, + "probability": 1.0 + }, + { + "word": " machines", + "start": 910.6, + "end": 910.9, + "probability": 1.0 + }, + { + "word": " like", + "start": 910.9, + "end": 911.34, + "probability": 1.0 + }, + { + "word": " that,", + "start": 911.34, + "end": 911.56, + "probability": 1.0 + }, + { + "word": " I'd", + "start": 911.62, + "end": 911.8, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 911.8, + "end": 911.88, + "probability": 1.0 + }, + { + "word": " open", + "start": 911.88, + "end": 912.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 912.1, + "end": 912.36, + "probability": 1.0 + }, + { + "word": " that.", + "start": 912.36, + "end": 912.54, + "probability": 1.0 + } + ] + }, + { + "id": 379, + "text": "You know, because I'm...", + "start": 912.74, + "end": 913.64, + "words": [ + { + "word": " You", + "start": 912.74, + "end": 912.94, + "probability": 0.1380615234375 + }, + { + "word": " know,", + "start": 912.94, + "end": 913.12, + "probability": 1.0 + }, + { + "word": " because", + "start": 913.14, + "end": 913.3, + "probability": 0.95556640625 + }, + { + "word": " I'm...", + "start": 913.3, + "end": 913.64, + "probability": 0.45166015625 + } + ] + }, + { + "id": 380, + "text": "I'd much rather buy that locally than...", + "start": 914.1400000000001, + "end": 916.22, + "words": [ + { + "word": " I'd", + "start": 914.12, + "end": 914.36, + "probability": 0.99853515625 + }, + { + "word": " much", + "start": 914.36, + "end": 914.6, + "probability": 1.0 + }, + { + "word": " rather", + "start": 914.6, + "end": 914.86, + "probability": 1.0 + }, + { + "word": " buy", + "start": 914.86, + "end": 915.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 915.12, + "end": 915.34, + "probability": 1.0 + }, + { + "word": " locally", + "start": 915.34, + "end": 915.72, + "probability": 1.0 + }, + { + "word": " than...", + "start": 915.72, + "end": 916.22, + "probability": 0.9931640625 + } + ] + }, + { + "id": 381, + "text": "And again, from somebody that I know, like, and trust.", + "start": 916.22, + "end": 918.86, + "words": [ + { + "word": " And", + "start": 916.22, + "end": 916.52, + "probability": 0.95166015625 + }, + { + "word": " again,", + "start": 916.52, + "end": 916.8, + "probability": 0.66748046875 + }, + { + "word": " from", + "start": 916.96, + "end": 917.16, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 917.16, + "end": 917.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 917.54, + "end": 917.9, + "probability": 1.0 + }, + { + "word": " I", + "start": 917.9, + "end": 918.0, + "probability": 1.0 + }, + { + "word": " know,", + "start": 918.0, + "end": 918.26, + "probability": 1.0 + }, + { + "word": " like,", + "start": 918.26, + "end": 918.48, + "probability": 0.99560546875 + }, + { + "word": " and", + "start": 918.5, + "end": 918.62, + "probability": 1.0 + }, + { + "word": " trust.", + "start": 918.62, + "end": 918.86, + "probability": 1.0 + } + ] + }, + { + "id": 382, + "text": "I know somebody has a good...", + "start": 918.94, + "end": 919.86, + "words": [ + { + "word": " I", + "start": 918.94, + "end": 919.12, + "probability": 0.8525390625 + }, + { + "word": " know", + "start": 919.12, + "end": 919.16, + "probability": 0.998046875 + }, + { + "word": " somebody", + "start": 919.16, + "end": 919.44, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 919.44, + "end": 919.6, + "probability": 0.2330322265625 + }, + { + "word": " a", + "start": 919.6, + "end": 919.7, + "probability": 1.0 + }, + { + "word": " good...", + "start": 919.7, + "end": 919.86, + "probability": 0.56591796875 + } + ] + }, + { + "id": 383, + "text": "You'll have to call the office down at 304-8300 because I don't keep track of the old machine inventory.", + "start": 919.86, + "end": 926.22, + "words": [ + { + "word": " You'll", + "start": 919.86, + "end": 920.12, + "probability": 0.837890625 + }, + { + "word": " have", + "start": 920.12, + "end": 920.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 920.22, + "end": 920.38, + "probability": 1.0 + }, + { + "word": " call", + "start": 920.38, + "end": 920.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 920.56, + "end": 920.7, + "probability": 0.99951171875 + }, + { + "word": " office", + "start": 920.7, + "end": 920.96, + "probability": 1.0 + }, + { + "word": " down", + "start": 920.96, + "end": 921.18, + "probability": 0.9853515625 + }, + { + "word": " at", + "start": 921.18, + "end": 921.36, + "probability": 1.0 + }, + { + "word": " 304", + "start": 921.36, + "end": 922.1, + "probability": 0.9951171875 + }, + { + "word": "-8300", + "start": 922.1, + "end": 922.6, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 922.6, + "end": 923.02, + "probability": 0.8642578125 + }, + { + "word": " I", + "start": 923.02, + "end": 923.46, + "probability": 1.0 + }, + { + "word": " don't", + "start": 923.46, + "end": 923.64, + "probability": 1.0 + }, + { + "word": " keep", + "start": 923.64, + "end": 923.76, + "probability": 1.0 + }, + { + "word": " track", + "start": 923.76, + "end": 923.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 923.96, + "end": 924.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 924.14, + "end": 924.26, + "probability": 1.0 + }, + { + "word": " old", + "start": 924.26, + "end": 925.02, + "probability": 0.99658203125 + }, + { + "word": " machine", + "start": 925.02, + "end": 925.86, + "probability": 1.0 + }, + { + "word": " inventory.", + "start": 925.86, + "end": 926.22, + "probability": 1.0 + } + ] + }, + { + "id": 384, + "text": "Right.", + "start": 926.94, + "end": 927.04, + "words": [ + { + "word": " Right.", + "start": 926.94, + "end": 927.04, + "probability": 0.487060546875 + } + ] + }, + { + "id": 385, + "text": "I'm out fixing things.", + "start": 927.2, + "end": 928.52, + "words": [ + { + "word": " I'm", + "start": 927.2, + "end": 927.72, + "probability": 0.95068359375 + }, + { + "word": " out", + "start": 927.72, + "end": 927.82, + "probability": 1.0 + }, + { + "word": " fixing", + "start": 927.82, + "end": 928.08, + "probability": 1.0 + }, + { + "word": " things.", + "start": 928.08, + "end": 928.52, + "probability": 1.0 + } + ] + }, + { + "id": 386, + "text": "Right.", + "start": 928.76, + "end": 929.28, + "words": [ + { + "word": " Right.", + "start": 928.76, + "end": 929.28, + "probability": 0.9375 + } + ] + }, + { + "id": 387, + "text": "But, you know, you can talk to Howard or Carl and they can let you know what they've got there.", + "start": 929.42, + "end": 934.6, + "words": [ + { + "word": " But,", + "start": 929.42, + "end": 929.7, + "probability": 0.96337890625 + }, + { + "word": " you", + "start": 929.78, + "end": 930.0, + "probability": 0.99365234375 + }, + { + "word": " know,", + "start": 930.0, + "end": 930.08, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 930.12, + "end": 930.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 930.16, + "end": 930.24, + "probability": 1.0 + }, + { + "word": " talk", + "start": 930.24, + "end": 930.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 930.42, + "end": 930.54, + "probability": 1.0 + }, + { + "word": " Howard", + "start": 930.54, + "end": 930.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 930.8, + "end": 931.24, + "probability": 0.99853515625 + }, + { + "word": " Carl", + "start": 931.24, + "end": 932.02, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 932.02, + "end": 932.24, + "probability": 0.384521484375 + }, + { + "word": " they", + "start": 932.24, + "end": 932.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 932.36, + "end": 932.56, + "probability": 1.0 + }, + { + "word": " let", + "start": 932.56, + "end": 933.3, + "probability": 0.9638671875 + }, + { + "word": " you", + "start": 933.3, + "end": 933.5, + "probability": 1.0 + }, + { + "word": " know", + "start": 933.5, + "end": 933.62, + "probability": 1.0 + }, + { + "word": " what", + "start": 933.62, + "end": 933.78, + "probability": 1.0 + }, + { + "word": " they've", + "start": 933.78, + "end": 933.98, + "probability": 1.0 + }, + { + "word": " got", + "start": 933.98, + "end": 934.36, + "probability": 1.0 + }, + { + "word": " there.", + "start": 934.36, + "end": 934.6, + "probability": 1.0 + } + ] + }, + { + "id": 388, + "text": "You could also potentially explore an XP virtual machine.", + "start": 934.82, + "end": 938.02, + "words": [ + { + "word": " You", + "start": 934.82, + "end": 935.16, + "probability": 0.96923828125 + }, + { + "word": " could", + "start": 935.16, + "end": 935.3, + "probability": 1.0 + }, + { + "word": " also", + "start": 935.3, + "end": 935.46, + "probability": 1.0 + }, + { + "word": " potentially", + "start": 935.46, + "end": 935.84, + "probability": 1.0 + }, + { + "word": " explore", + "start": 935.84, + "end": 936.38, + "probability": 1.0 + }, + { + "word": " an", + "start": 936.38, + "end": 936.82, + "probability": 0.994140625 + }, + { + "word": " XP", + "start": 936.82, + "end": 937.24, + "probability": 0.90576171875 + }, + { + "word": " virtual", + "start": 937.24, + "end": 937.56, + "probability": 0.98876953125 + }, + { + "word": " machine.", + "start": 937.56, + "end": 938.02, + "probability": 1.0 + } + ] + }, + { + "id": 389, + "text": "Right.", + "start": 938.48, + "end": 939.0, + "words": [ + { + "word": " Right.", + "start": 938.48, + "end": 939.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 390, + "text": "You could virtualize a machine.", + "start": 939.06, + "end": 940.22, + "words": [ + { + "word": " You", + "start": 939.06, + "end": 939.3, + "probability": 0.9990234375 + }, + { + "word": " could", + "start": 939.3, + "end": 939.46, + "probability": 1.0 + }, + { + "word": " virtualize", + "start": 939.46, + "end": 939.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 939.98, + "end": 939.98, + "probability": 0.9912109375 + }, + { + "word": " machine.", + "start": 939.98, + "end": 940.22, + "probability": 1.0 + } + ] + }, + { + "id": 391, + "text": "Okay.", + "start": 941.2, + "end": 941.54, + "words": [ + { + "word": " Okay.", + "start": 941.2, + "end": 941.54, + "probability": 0.9814453125 + } + ] + }, + { + "id": 392, + "text": "Right.", + "start": 941.64, + "end": 942.04, + "words": [ + { + "word": " Right.", + "start": 941.64, + "end": 942.04, + "probability": 0.796875 + } + ] + }, + { + "id": 393, + "text": "But basically, I want a computer that's kept off the Internet.", + "start": 942.18, + "end": 946.28, + "words": [ + { + "word": " But", + "start": 942.18, + "end": 942.52, + "probability": 0.9765625 + }, + { + "word": " basically,", + "start": 942.52, + "end": 943.22, + "probability": 0.8173828125 + }, + { + "word": " I", + "start": 943.4, + "end": 943.68, + "probability": 1.0 + }, + { + "word": " want", + "start": 943.68, + "end": 944.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 944.12, + "end": 944.28, + "probability": 1.0 + }, + { + "word": " computer", + "start": 944.28, + "end": 944.62, + "probability": 1.0 + }, + { + "word": " that's", + "start": 944.62, + "end": 944.98, + "probability": 1.0 + }, + { + "word": " kept", + "start": 944.98, + "end": 945.4, + "probability": 1.0 + }, + { + "word": " off", + "start": 945.4, + "end": 945.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 945.76, + "end": 946.0, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 946.0, + "end": 946.28, + "probability": 0.79541015625 + } + ] + }, + { + "id": 394, + "text": "It's just used for mostly one purpose, making radio commercials.", + "start": 946.4, + "end": 951.04, + "words": [ + { + "word": " It's", + "start": 946.4, + "end": 946.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 946.7, + "end": 946.92, + "probability": 1.0 + }, + { + "word": " used", + "start": 946.92, + "end": 947.2, + "probability": 1.0 + }, + { + "word": " for", + "start": 947.2, + "end": 947.52, + "probability": 1.0 + }, + { + "word": " mostly", + "start": 947.52, + "end": 948.26, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 948.26, + "end": 948.52, + "probability": 1.0 + }, + { + "word": " purpose,", + "start": 948.52, + "end": 949.0, + "probability": 1.0 + }, + { + "word": " making", + "start": 949.24, + "end": 949.6, + "probability": 1.0 + }, + { + "word": " radio", + "start": 949.6, + "end": 950.52, + "probability": 0.99951171875 + }, + { + "word": " commercials.", + "start": 950.52, + "end": 951.04, + "probability": 1.0 + } + ] + }, + { + "id": 395, + "text": "And, you know, and then the sneaker drive.", + "start": 951.34, + "end": 954.54, + "words": [ + { + "word": " And,", + "start": 951.34, + "end": 951.86, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 951.98, + "end": 952.7, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 952.7, + "end": 952.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 952.86, + "end": 953.02, + "probability": 0.9951171875 + }, + { + "word": " then", + "start": 953.02, + "end": 953.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 953.2, + "end": 953.86, + "probability": 0.99951171875 + }, + { + "word": " sneaker", + "start": 953.86, + "end": 954.22, + "probability": 0.990234375 + }, + { + "word": " drive.", + "start": 954.22, + "end": 954.54, + "probability": 0.974609375 + } + ] + }, + { + "id": 396, + "text": "Take the USB thing and stick it in.", + "start": 954.62, + "end": 956.92, + "words": [ + { + "word": " Take", + "start": 954.62, + "end": 954.86, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 954.86, + "end": 955.14, + "probability": 1.0 + }, + { + "word": " USB", + "start": 955.14, + "end": 955.82, + "probability": 0.9990234375 + }, + { + "word": " thing", + "start": 955.82, + "end": 956.32, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 956.32, + "end": 956.58, + "probability": 0.8564453125 + }, + { + "word": " stick", + "start": 956.58, + "end": 956.86, + "probability": 0.95263671875 + }, + { + "word": " it", + "start": 956.86, + "end": 956.92, + "probability": 0.85107421875 + }, + { + "word": " in.", + "start": 956.92, + "end": 956.92, + "probability": 0.6767578125 + } + ] + }, + { + "id": 397, + "text": "", + "start": 956.92, + "end": 956.92, + "words": [] + }, + { + "id": 398, + "text": "", + "start": 956.92, + "end": 956.92, + "words": [] + }, + { + "id": 399, + "text": "", + "start": 956.92, + "end": 956.92, + "words": [] + }, + { + "id": 400, + "text": "", + "start": 956.92, + "end": 956.92, + "words": [] + }, + { + "id": 401, + "text": "Take it in the other machine and archive it.", + "start": 956.94, + "end": 958.24, + "words": [ + { + "word": " Take", + "start": 956.94, + "end": 957.02, + "probability": 0.00011205673217773438 + }, + { + "word": " it", + "start": 957.02, + "end": 957.02, + "probability": 0.392578125 + }, + { + "word": " in", + "start": 957.02, + "end": 957.1, + "probability": 0.1492919921875 + }, + { + "word": " the", + "start": 957.1, + "end": 957.18, + "probability": 0.99560546875 + }, + { + "word": " other", + "start": 957.18, + "end": 957.26, + "probability": 0.994140625 + }, + { + "word": " machine", + "start": 957.26, + "end": 957.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 957.52, + "end": 957.72, + "probability": 0.990234375 + }, + { + "word": " archive", + "start": 957.72, + "end": 957.94, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 957.94, + "end": 958.24, + "probability": 1.0 + } + ] + }, + { + "id": 402, + "text": "So that...", + "start": 958.38, + "end": 959.04, + "words": [ + { + "word": " So", + "start": 958.38, + "end": 958.74, + "probability": 0.16796875 + }, + { + "word": " that...", + "start": 958.74, + "end": 959.04, + "probability": 0.55419921875 + } + ] + }, + { + "id": 403, + "text": "And that's the machine that gets on the Internet.", + "start": 959.04, + "end": 960.48, + "words": [ + { + "word": " And", + "start": 959.04, + "end": 959.18, + "probability": 0.9775390625 + }, + { + "word": " that's", + "start": 959.18, + "end": 959.38, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 959.38, + "end": 959.44, + "probability": 1.0 + }, + { + "word": " machine", + "start": 959.44, + "end": 959.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 959.7, + "end": 959.86, + "probability": 0.99951171875 + }, + { + "word": " gets", + "start": 959.86, + "end": 960.0, + "probability": 1.0 + }, + { + "word": " on", + "start": 960.0, + "end": 960.16, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 960.16, + "end": 960.28, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 960.28, + "end": 960.48, + "probability": 0.5390625 + } + ] + }, + { + "id": 404, + "text": "That, I have, you know, the most current stuff on.", + "start": 960.6, + "end": 962.36, + "words": [ + { + "word": " That,", + "start": 960.6, + "end": 960.86, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 960.96, + "end": 961.16, + "probability": 0.99951171875 + }, + { + "word": " have,", + "start": 961.16, + "end": 961.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 961.42, + "end": 961.64, + "probability": 1.0 + }, + { + "word": " know,", + "start": 961.64, + "end": 961.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 961.84, + "end": 961.94, + "probability": 0.99853515625 + }, + { + "word": " most", + "start": 961.94, + "end": 962.12, + "probability": 0.99951171875 + }, + { + "word": " current", + "start": 962.12, + "end": 962.32, + "probability": 0.9208984375 + }, + { + "word": " stuff", + "start": 962.32, + "end": 962.36, + "probability": 0.98681640625 + }, + { + "word": " on.", + "start": 962.36, + "end": 962.36, + "probability": 0.94140625 + } + ] + }, + { + "id": 405, + "text": "Right.", + "start": 962.36, + "end": 962.54, + "words": [ + { + "word": " Right.", + "start": 962.36, + "end": 962.54, + "probability": 0.5615234375 + } + ] + }, + { + "id": 406, + "text": "So you could do something similar with, like, if you have a nice newer computer.", + "start": 962.54, + "end": 966.54, + "words": [ + { + "word": " So", + "start": 962.54, + "end": 962.7, + "probability": 0.9775390625 + }, + { + "word": " you", + "start": 962.7, + "end": 963.22, + "probability": 0.75390625 + }, + { + "word": " could", + "start": 963.22, + "end": 963.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 963.42, + "end": 963.58, + "probability": 1.0 + }, + { + "word": " something", + "start": 963.58, + "end": 963.8, + "probability": 1.0 + }, + { + "word": " similar", + "start": 963.8, + "end": 964.26, + "probability": 1.0 + }, + { + "word": " with,", + "start": 964.26, + "end": 964.54, + "probability": 1.0 + }, + { + "word": " like,", + "start": 964.6, + "end": 964.82, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 964.84, + "end": 964.98, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 964.98, + "end": 965.08, + "probability": 1.0 + }, + { + "word": " have", + "start": 965.08, + "end": 965.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 965.32, + "end": 965.48, + "probability": 1.0 + }, + { + "word": " nice", + "start": 965.48, + "end": 965.84, + "probability": 0.99951171875 + }, + { + "word": " newer", + "start": 965.84, + "end": 966.14, + "probability": 0.61962890625 + }, + { + "word": " computer.", + "start": 966.14, + "end": 966.54, + "probability": 1.0 + } + ] + }, + { + "id": 407, + "text": "Yeah.", + "start": 967.14, + "end": 967.5, + "words": [ + { + "word": " Yeah.", + "start": 967.14, + "end": 967.5, + "probability": 0.99462890625 + } + ] + }, + { + "id": 408, + "text": "You could virtualize a copy of XP that would be its own standalone machine inside the other one,", + "start": 967.58, + "end": 973.48, + "words": [ + { + "word": " You", + "start": 967.58, + "end": 967.8, + "probability": 0.99853515625 + }, + { + "word": " could", + "start": 967.8, + "end": 967.96, + "probability": 1.0 + }, + { + "word": " virtualize", + "start": 967.96, + "end": 968.56, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 968.56, + "end": 968.7, + "probability": 1.0 + }, + { + "word": " copy", + "start": 968.7, + "end": 968.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 968.94, + "end": 969.12, + "probability": 1.0 + }, + { + "word": " XP", + "start": 969.12, + "end": 969.44, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 969.44, + "end": 970.08, + "probability": 0.44873046875 + }, + { + "word": " would", + "start": 970.08, + "end": 970.54, + "probability": 1.0 + }, + { + "word": " be", + "start": 970.54, + "end": 970.68, + "probability": 1.0 + }, + { + "word": " its", + "start": 970.68, + "end": 970.86, + "probability": 0.99951171875 + }, + { + "word": " own", + "start": 970.86, + "end": 971.1, + "probability": 1.0 + }, + { + "word": " standalone", + "start": 971.1, + "end": 971.6, + "probability": 0.71484375 + }, + { + "word": " machine", + "start": 971.6, + "end": 972.04, + "probability": 1.0 + }, + { + "word": " inside", + "start": 972.04, + "end": 972.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 972.74, + "end": 973.1, + "probability": 1.0 + }, + { + "word": " other", + "start": 973.1, + "end": 973.3, + "probability": 1.0 + }, + { + "word": " one,", + "start": 973.3, + "end": 973.48, + "probability": 1.0 + } + ] + }, + { + "id": 409, + "text": "which doesn't get on the Internet.", + "start": 973.58, + "end": 974.66, + "words": [ + { + "word": " which", + "start": 973.58, + "end": 973.78, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 973.78, + "end": 974.12, + "probability": 1.0 + }, + { + "word": " get", + "start": 974.12, + "end": 974.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 974.22, + "end": 974.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 974.36, + "end": 974.44, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 974.44, + "end": 974.66, + "probability": 1.0 + } + ] + }, + { + "id": 410, + "text": "And you guys would be willing to build one of those for me?", + "start": 975.42, + "end": 977.64, + "words": [ + { + "word": " And", + "start": 975.42, + "end": 975.78, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 975.78, + "end": 975.94, + "probability": 1.0 + }, + { + "word": " guys", + "start": 975.94, + "end": 976.16, + "probability": 1.0 + }, + { + "word": " would", + "start": 976.16, + "end": 976.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 976.3, + "end": 976.42, + "probability": 1.0 + }, + { + "word": " willing", + "start": 976.42, + "end": 976.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 976.62, + "end": 976.78, + "probability": 1.0 + }, + { + "word": " build", + "start": 976.78, + "end": 976.96, + "probability": 1.0 + }, + { + "word": " one", + "start": 976.96, + "end": 977.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 977.1, + "end": 977.2, + "probability": 1.0 + }, + { + "word": " those", + "start": 977.2, + "end": 977.34, + "probability": 1.0 + }, + { + "word": " for", + "start": 977.34, + "end": 977.46, + "probability": 1.0 + }, + { + "word": " me?", + "start": 977.46, + "end": 977.64, + "probability": 1.0 + } + ] + }, + { + "id": 411, + "text": "Of course.", + "start": 977.78, + "end": 978.06, + "words": [ + { + "word": " Of", + "start": 977.78, + "end": 977.92, + "probability": 0.99853515625 + }, + { + "word": " course.", + "start": 977.92, + "end": 978.06, + "probability": 1.0 + } + ] + }, + { + "id": 412, + "text": "Okay.", + "start": 979.04, + "end": 979.4, + "words": [ + { + "word": " Okay.", + "start": 979.04, + "end": 979.4, + "probability": 0.984375 + } + ] + }, + { + "id": 413, + "text": "Maybe we should talk.", + "start": 980.08, + "end": 981.04, + "words": [ + { + "word": " Maybe", + "start": 980.08, + "end": 980.44, + "probability": 0.99169921875 + }, + { + "word": " we", + "start": 980.44, + "end": 980.62, + "probability": 1.0 + }, + { + "word": " should", + "start": 980.62, + "end": 980.82, + "probability": 1.0 + }, + { + "word": " talk.", + "start": 980.82, + "end": 981.04, + "probability": 1.0 + } + ] + }, + { + "id": 414, + "text": "Of course we should talk.", + "start": 981.4, + "end": 982.36, + "words": [ + { + "word": " Of", + "start": 981.4, + "end": 981.76, + "probability": 0.9990234375 + }, + { + "word": " course", + "start": 981.76, + "end": 981.94, + "probability": 1.0 + }, + { + "word": " we", + "start": 981.94, + "end": 982.1, + "probability": 0.99755859375 + }, + { + "word": " should", + "start": 982.1, + "end": 982.2, + "probability": 1.0 + }, + { + "word": " talk.", + "start": 982.2, + "end": 982.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 415, + "text": "I don't know where you took your computer to get it fixed before, but I'm offended.", + "start": 982.58, + "end": 985.44, + "words": [ + { + "word": " I", + "start": 982.58, + "end": 982.94, + "probability": 0.69580078125 + }, + { + "word": " don't", + "start": 982.94, + "end": 983.16, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 983.16, + "end": 983.26, + "probability": 1.0 + }, + { + "word": " where", + "start": 983.26, + "end": 983.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 983.4, + "end": 983.56, + "probability": 1.0 + }, + { + "word": " took", + "start": 983.56, + "end": 983.74, + "probability": 1.0 + }, + { + "word": " your", + "start": 983.74, + "end": 983.88, + "probability": 1.0 + }, + { + "word": " computer", + "start": 983.88, + "end": 984.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 984.14, + "end": 984.28, + "probability": 1.0 + }, + { + "word": " get", + "start": 984.28, + "end": 984.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 984.38, + "end": 984.46, + "probability": 1.0 + }, + { + "word": " fixed", + "start": 984.46, + "end": 984.62, + "probability": 1.0 + }, + { + "word": " before,", + "start": 984.62, + "end": 984.84, + "probability": 1.0 + }, + { + "word": " but", + "start": 984.92, + "end": 985.04, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 985.04, + "end": 985.18, + "probability": 1.0 + }, + { + "word": " offended.", + "start": 985.18, + "end": 985.44, + "probability": 1.0 + } + ] + }, + { + "id": 416, + "text": "Well, somebody who has, who about six generations ago had the computer show on the station.", + "start": 987.9, + "end": 995.9, + "words": [ + { + "word": " Well,", + "start": 987.9, + "end": 988.26, + "probability": 0.966796875 + }, + { + "word": " somebody", + "start": 988.26, + "end": 988.62, + "probability": 0.99853515625 + }, + { + "word": " who", + "start": 988.62, + "end": 988.88, + "probability": 0.99365234375 + }, + { + "word": " has,", + "start": 988.88, + "end": 989.08, + "probability": 0.0621337890625 + }, + { + "word": " who", + "start": 991.16, + "end": 991.34, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 991.34, + "end": 992.26, + "probability": 0.98876953125 + }, + { + "word": " six", + "start": 992.26, + "end": 992.6, + "probability": 0.998046875 + }, + { + "word": " generations", + "start": 992.6, + "end": 993.02, + "probability": 1.0 + }, + { + "word": " ago", + "start": 993.02, + "end": 993.54, + "probability": 1.0 + }, + { + "word": " had", + "start": 993.54, + "end": 993.8, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 993.8, + "end": 993.92, + "probability": 0.826171875 + }, + { + "word": " computer", + "start": 993.92, + "end": 994.2, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 994.2, + "end": 994.48, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 994.48, + "end": 994.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 994.7, + "end": 994.84, + "probability": 0.994140625 + }, + { + "word": " station.", + "start": 994.84, + "end": 995.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 417, + "text": "Oh, okay.", + "start": 996.08, + "end": 996.66, + "words": [ + { + "word": " Oh,", + "start": 996.08, + "end": 996.4, + "probability": 0.9716796875 + }, + { + "word": " okay.", + "start": 996.42, + "end": 996.66, + "probability": 0.9833984375 + } + ] + }, + { + "id": 418, + "text": "It's a trusted guy.", + "start": 996.88, + "end": 997.9, + "words": [ + { + "word": " It's", + "start": 996.88, + "end": 997.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 997.24, + "end": 997.24, + "probability": 0.99853515625 + }, + { + "word": " trusted", + "start": 997.24, + "end": 997.58, + "probability": 0.96875 + }, + { + "word": " guy.", + "start": 997.58, + "end": 997.9, + "probability": 1.0 + } + ] + }, + { + "id": 419, + "text": "All right.", + "start": 998.08, + "end": 998.34, + "words": [ + { + "word": " All", + "start": 998.08, + "end": 998.34, + "probability": 0.468505859375 + }, + { + "word": " right.", + "start": 998.34, + "end": 998.34, + "probability": 1.0 + } + ] + }, + { + "id": 420, + "text": "You want me to say his name?", + "start": 998.34, + "end": 999.02, + "words": [ + { + "word": " You", + "start": 998.34, + "end": 998.34, + "probability": 0.444580078125 + }, + { + "word": " want", + "start": 998.34, + "end": 998.42, + "probability": 0.96875 + }, + { + "word": " me", + "start": 998.42, + "end": 998.5, + "probability": 0.603515625 + }, + { + "word": " to", + "start": 998.5, + "end": 998.62, + "probability": 1.0 + }, + { + "word": " say", + "start": 998.62, + "end": 998.7, + "probability": 0.9990234375 + }, + { + "word": " his", + "start": 998.7, + "end": 998.82, + "probability": 1.0 + }, + { + "word": " name?", + "start": 998.82, + "end": 999.02, + "probability": 1.0 + } + ] + }, + { + "id": 421, + "text": "I don't care.", + "start": 999.36, + "end": 1000.96, + "words": [ + { + "word": " I", + "start": 999.36, + "end": 999.72, + "probability": 0.958984375 + }, + { + "word": " don't", + "start": 999.72, + "end": 1000.88, + "probability": 0.99609375 + }, + { + "word": " care.", + "start": 1000.88, + "end": 1000.96, + "probability": 0.9951171875 + } + ] + }, + { + "id": 422, + "text": "Go for it, Todd.", + "start": 1001.12, + "end": 1001.8, + "words": [ + { + "word": " Go", + "start": 1001.12, + "end": 1001.34, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 1001.34, + "end": 1001.5, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1001.5, + "end": 1001.7, + "probability": 1.0 + }, + { + "word": " Todd.", + "start": 1001.7, + "end": 1001.8, + "probability": 0.9013671875 + } + ] + }, + { + "id": 423, + "text": "Dave Mason.", + "start": 1002.1, + "end": 1002.78, + "words": [ + { + "word": " Dave", + "start": 1002.1, + "end": 1002.46, + "probability": 0.9267578125 + }, + { + "word": " Mason.", + "start": 1002.46, + "end": 1002.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 424, + "text": "Oh.", + "start": 1002.94, + "end": 1003.3, + "words": [ + { + "word": " Oh.", + "start": 1002.94, + "end": 1003.3, + "probability": 0.353271484375 + } + ] + }, + { + "id": 425, + "text": "Yeah, I like Dave.", + "start": 1003.44, + "end": 1004.58, + "words": [ + { + "word": " Yeah,", + "start": 1003.44, + "end": 1003.8, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1003.88, + "end": 1004.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 1004.1, + "end": 1004.36, + "probability": 1.0 + }, + { + "word": " Dave.", + "start": 1004.36, + "end": 1004.58, + "probability": 1.0 + } + ] + }, + { + "id": 426, + "text": "Dave is a friend, and so, and I've done business with him for years, so I just, and again,", + "start": 1004.98, + "end": 1009.66, + "words": [ + { + "word": " Dave", + "start": 1004.98, + "end": 1005.34, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1005.34, + "end": 1005.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 1005.44, + "end": 1005.56, + "probability": 1.0 + }, + { + "word": " friend,", + "start": 1005.56, + "end": 1005.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 1005.96, + "end": 1006.2, + "probability": 1.0 + }, + { + "word": " so,", + "start": 1006.2, + "end": 1006.66, + "probability": 0.437744140625 + }, + { + "word": " and", + "start": 1006.78, + "end": 1006.98, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 1006.98, + "end": 1007.12, + "probability": 1.0 + }, + { + "word": " done", + "start": 1007.12, + "end": 1007.24, + "probability": 1.0 + }, + { + "word": " business", + "start": 1007.24, + "end": 1007.5, + "probability": 1.0 + }, + { + "word": " with", + "start": 1007.5, + "end": 1007.72, + "probability": 1.0 + }, + { + "word": " him", + "start": 1007.72, + "end": 1007.84, + "probability": 1.0 + }, + { + "word": " for", + "start": 1007.84, + "end": 1007.98, + "probability": 1.0 + }, + { + "word": " years,", + "start": 1007.98, + "end": 1008.16, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 1008.32, + "end": 1008.5, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 1008.5, + "end": 1008.74, + "probability": 0.99072265625 + }, + { + "word": " just,", + "start": 1008.74, + "end": 1008.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 1009.04, + "end": 1009.44, + "probability": 1.0 + }, + { + "word": " again,", + "start": 1009.44, + "end": 1009.66, + "probability": 0.98095703125 + } + ] + }, + { + "id": 427, + "text": "I know, like, and trust him.", + "start": 1009.8, + "end": 1011.04, + "words": [ + { + "word": " I", + "start": 1009.8, + "end": 1009.98, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1009.98, + "end": 1010.24, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1010.26, + "end": 1010.48, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1010.48, + "end": 1010.62, + "probability": 0.98974609375 + }, + { + "word": " trust", + "start": 1010.62, + "end": 1010.84, + "probability": 0.93505859375 + }, + { + "word": " him.", + "start": 1010.84, + "end": 1011.04, + "probability": 0.9658203125 + } + ] + }, + { + "id": 428, + "text": "Tell Dave to give me a call sometime.", + "start": 1011.1, + "end": 1012.3, + "words": [ + { + "word": " Tell", + "start": 1011.1, + "end": 1011.32, + "probability": 0.998046875 + }, + { + "word": " Dave", + "start": 1011.32, + "end": 1011.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1011.56, + "end": 1011.68, + "probability": 1.0 + }, + { + "word": " give", + "start": 1011.68, + "end": 1011.76, + "probability": 1.0 + }, + { + "word": " me", + "start": 1011.76, + "end": 1011.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1011.82, + "end": 1011.92, + "probability": 1.0 + }, + { + "word": " call", + "start": 1011.92, + "end": 1012.06, + "probability": 1.0 + }, + { + "word": " sometime.", + "start": 1012.06, + "end": 1012.3, + "probability": 1.0 + } + ] + }, + { + "id": 429, + "text": "And give the shop a call.", + "start": 1012.6, + "end": 1013.44, + "words": [ + { + "word": " And", + "start": 1012.6, + "end": 1012.72, + "probability": 0.8671875 + }, + { + "word": " give", + "start": 1012.72, + "end": 1012.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1012.84, + "end": 1012.96, + "probability": 1.0 + }, + { + "word": " shop", + "start": 1012.96, + "end": 1013.12, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1013.12, + "end": 1013.24, + "probability": 0.9970703125 + }, + { + "word": " call.", + "start": 1013.24, + "end": 1013.44, + "probability": 1.0 + } + ] + }, + { + "id": 430, + "text": "They can get you set up with a virtual machine.", + "start": 1013.44, + "end": 1014.84, + "words": [ + { + "word": " They", + "start": 1013.44, + "end": 1013.58, + "probability": 0.912109375 + }, + { + "word": " can", + "start": 1013.58, + "end": 1013.66, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1013.66, + "end": 1013.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1013.78, + "end": 1013.9, + "probability": 1.0 + }, + { + "word": " set", + "start": 1013.9, + "end": 1014.04, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1014.04, + "end": 1014.18, + "probability": 1.0 + }, + { + "word": " with", + "start": 1014.18, + "end": 1014.32, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1014.32, + "end": 1014.36, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 1014.36, + "end": 1014.56, + "probability": 0.99951171875 + }, + { + "word": " machine.", + "start": 1014.56, + "end": 1014.84, + "probability": 1.0 + } + ] + }, + { + "id": 431, + "text": "Yeah.", + "start": 1015.06, + "end": 1015.34, + "words": [ + { + "word": " Yeah.", + "start": 1015.06, + "end": 1015.34, + "probability": 0.89697265625 + } + ] + }, + { + "id": 432, + "text": "I will.", + "start": 1015.36, + "end": 1015.88, + "words": [ + { + "word": " I", + "start": 1015.36, + "end": 1015.7, + "probability": 0.99560546875 + }, + { + "word": " will.", + "start": 1015.7, + "end": 1015.88, + "probability": 1.0 + } + ] + }, + { + "id": 433, + "text": "All right.", + "start": 1016.48, + "end": 1016.92, + "words": [ + { + "word": " All", + "start": 1016.48, + "end": 1016.84, + "probability": 0.89599609375 + }, + { + "word": " right.", + "start": 1016.84, + "end": 1016.92, + "probability": 1.0 + } + ] + }, + { + "id": 434, + "text": "Thanks for the call, Charles.", + "start": 1016.94, + "end": 1017.92, + "words": [ + { + "word": " Thanks", + "start": 1016.94, + "end": 1017.2, + "probability": 0.1434326171875 + }, + { + "word": " for", + "start": 1017.2, + "end": 1017.54, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1017.54, + "end": 1017.64, + "probability": 0.9990234375 + }, + { + "word": " call,", + "start": 1017.64, + "end": 1017.76, + "probability": 0.99462890625 + }, + { + "word": " Charles.", + "start": 1017.76, + "end": 1017.92, + "probability": 0.98046875 + } + ] + }, + { + "id": 435, + "text": "That's what I should.", + "start": 1017.94, + "end": 1018.22, + "words": [ + { + "word": " That's", + "start": 1017.94, + "end": 1017.94, + "probability": 0.53759765625 + }, + { + "word": " what", + "start": 1017.94, + "end": 1017.94, + "probability": 0.320556640625 + }, + { + "word": " I", + "start": 1017.94, + "end": 1018.02, + "probability": 0.457763671875 + }, + { + "word": " should.", + "start": 1018.02, + "end": 1018.22, + "probability": 0.36328125 + } + ] + }, + { + "id": 436, + "text": "You do a wonderful show.", + "start": 1018.34, + "end": 1019.4, + "words": [ + { + "word": " You", + "start": 1018.34, + "end": 1018.62, + "probability": 0.84423828125 + }, + { + "word": " do", + "start": 1018.62, + "end": 1018.7, + "probability": 0.86572265625 + }, + { + "word": " a", + "start": 1018.7, + "end": 1018.84, + "probability": 1.0 + }, + { + "word": " wonderful", + "start": 1018.84, + "end": 1019.1, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 1019.1, + "end": 1019.4, + "probability": 1.0 + } + ] + }, + { + "id": 437, + "text": "You should expand it.", + "start": 1019.48, + "end": 1020.22, + "words": [ + { + "word": " You", + "start": 1019.48, + "end": 1019.58, + "probability": 0.99609375 + }, + { + "word": " should", + "start": 1019.58, + "end": 1019.7, + "probability": 1.0 + }, + { + "word": " expand", + "start": 1019.7, + "end": 1020.04, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 1020.04, + "end": 1020.22, + "probability": 1.0 + } + ] + }, + { + "id": 438, + "text": "I should, huh?", + "start": 1020.38, + "end": 1021.0, + "words": [ + { + "word": " I", + "start": 1020.38, + "end": 1020.52, + "probability": 0.99560546875 + }, + { + "word": " should,", + "start": 1020.52, + "end": 1020.78, + "probability": 0.9990234375 + }, + { + "word": " huh?", + "start": 1020.82, + "end": 1021.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 439, + "text": "Yeah, you should.", + "start": 1021.44, + "end": 1022.08, + "words": [ + { + "word": " Yeah,", + "start": 1021.44, + "end": 1021.76, + "probability": 0.9814453125 + }, + { + "word": " you", + "start": 1021.78, + "end": 1021.86, + "probability": 1.0 + }, + { + "word": " should.", + "start": 1021.86, + "end": 1022.08, + "probability": 1.0 + } + ] + }, + { + "id": 440, + "text": "You should really think about it.", + "start": 1022.38, + "end": 1022.98, + "words": [ + { + "word": " You", + "start": 1022.38, + "end": 1022.62, + "probability": 0.42041015625 + }, + { + "word": " should", + "start": 1022.62, + "end": 1022.64, + "probability": 0.99658203125 + }, + { + "word": " really", + "start": 1022.64, + "end": 1022.82, + "probability": 1.0 + }, + { + "word": " think", + "start": 1022.82, + "end": 1022.96, + "probability": 0.7890625 + }, + { + "word": " about", + "start": 1022.96, + "end": 1022.98, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 1022.98, + "end": 1022.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 441, + "text": "I might.", + "start": 1022.98, + "end": 1023.1, + "words": [ + { + "word": " I", + "start": 1022.98, + "end": 1023.1, + "probability": 0.98974609375 + }, + { + "word": " might.", + "start": 1023.1, + "end": 1023.1, + "probability": 0.0016460418701171875 + } + ] + }, + { + "id": 442, + "text": "I'll think about it.", + "start": 1023.2, + "end": 1024.12, + "words": [ + { + "word": " I'll", + "start": 1023.2, + "end": 1023.52, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 1023.52, + "end": 1023.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 1023.7, + "end": 1023.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1023.88, + "end": 1024.12, + "probability": 1.0 + } + ] + }, + { + "id": 443, + "text": "I'll let you know.", + "start": 1024.16, + "end": 1024.8, + "words": [ + { + "word": " I'll", + "start": 1024.16, + "end": 1024.48, + "probability": 0.994140625 + }, + { + "word": " let", + "start": 1024.48, + "end": 1024.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 1024.58, + "end": 1024.68, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1024.68, + "end": 1024.8, + "probability": 1.0 + } + ] + }, + { + "id": 444, + "text": "All right.", + "start": 1024.92, + "end": 1024.94, + "words": [ + { + "word": " All", + "start": 1024.92, + "end": 1024.94, + "probability": 0.91552734375 + }, + { + "word": " right.", + "start": 1024.94, + "end": 1024.94, + "probability": 1.0 + } + ] + }, + { + "id": 445, + "text": "See you.", + "start": 1024.94, + "end": 1025.18, + "words": [ + { + "word": " See", + "start": 1024.94, + "end": 1025.06, + "probability": 0.98388671875 + }, + { + "word": " you.", + "start": 1025.06, + "end": 1025.18, + "probability": 0.99560546875 + } + ] + }, + { + "id": 446, + "text": "Bye.", + "start": 1025.22, + "end": 1025.52, + "words": [ + { + "word": " Bye.", + "start": 1025.22, + "end": 1025.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 447, + "text": "Bye.", + "start": 1025.72, + "end": 1026.02, + "words": [ + { + "word": " Bye.", + "start": 1025.72, + "end": 1026.02, + "probability": 0.98486328125 + } + ] + }, + { + "id": 448, + "text": "Do you want to take this other call?", + "start": 1027.66, + "end": 1028.76, + "words": [ + { + "word": " Do", + "start": 1027.66, + "end": 1027.98, + "probability": 0.92919921875 + }, + { + "word": " you", + "start": 1027.98, + "end": 1028.02, + "probability": 0.998046875 + }, + { + "word": " want", + "start": 1028.02, + "end": 1028.14, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1028.14, + "end": 1028.18, + "probability": 0.9990234375 + }, + { + "word": " take", + "start": 1028.18, + "end": 1028.3, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 1028.3, + "end": 1028.4, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 1028.4, + "end": 1028.52, + "probability": 1.0 + }, + { + "word": " call?", + "start": 1028.52, + "end": 1028.76, + "probability": 1.0 + } + ] + }, + { + "id": 449, + "text": "Yeah, let's go ahead and take it.", + "start": 1028.96, + "end": 1030.26, + "words": [ + { + "word": " Yeah,", + "start": 1028.96, + "end": 1029.28, + "probability": 0.99169921875 + }, + { + "word": " let's", + "start": 1029.3, + "end": 1029.76, + "probability": 1.0 + }, + { + "word": " go", + "start": 1029.76, + "end": 1029.84, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1029.84, + "end": 1029.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 1029.96, + "end": 1030.06, + "probability": 1.0 + }, + { + "word": " take", + "start": 1030.06, + "end": 1030.16, + "probability": 0.9921875 + }, + { + "word": " it.", + "start": 1030.16, + "end": 1030.26, + "probability": 1.0 + } + ] + }, + { + "id": 450, + "text": "Let's go ahead and talk to Tom.", + "start": 1030.3, + "end": 1031.06, + "words": [ + { + "word": " Let's", + "start": 1030.3, + "end": 1030.46, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1030.46, + "end": 1030.48, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 1030.48, + "end": 1030.6, + "probability": 0.56787109375 + }, + { + "word": " and", + "start": 1030.6, + "end": 1030.66, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1030.66, + "end": 1030.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1030.74, + "end": 1030.82, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 1030.82, + "end": 1031.06, + "probability": 1.0 + } + ] + }, + { + "id": 451, + "text": "Hello, Tom.", + "start": 1031.1, + "end": 1031.52, + "words": [ + { + "word": " Hello,", + "start": 1031.1, + "end": 1031.3, + "probability": 0.9970703125 + }, + { + "word": " Tom.", + "start": 1031.32, + "end": 1031.52, + "probability": 1.0 + } + ] + }, + { + "id": 452, + "text": "How are you?", + "start": 1031.58, + "end": 1031.98, + "words": [ + { + "word": " How", + "start": 1031.58, + "end": 1031.7, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 1031.7, + "end": 1031.84, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1031.84, + "end": 1031.98, + "probability": 1.0 + } + ] + }, + { + "id": 453, + "text": "Hi.", + "start": 1032.12, + "end": 1032.36, + "words": [ + { + "word": " Hi.", + "start": 1032.12, + "end": 1032.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 454, + "text": "Thanks for taking my call.", + "start": 1032.5, + "end": 1033.56, + "words": [ + { + "word": " Thanks", + "start": 1032.5, + "end": 1032.82, + "probability": 0.9951171875 + }, + { + "word": " for", + "start": 1032.82, + "end": 1032.94, + "probability": 1.0 + }, + { + "word": " taking", + "start": 1032.94, + "end": 1033.1, + "probability": 1.0 + }, + { + "word": " my", + "start": 1033.1, + "end": 1033.28, + "probability": 1.0 + }, + { + "word": " call.", + "start": 1033.28, + "end": 1033.56, + "probability": 1.0 + } + ] + }, + { + "id": 455, + "text": "Hey, I'm getting ready to upgrade to 10, and I'm looking at my uninstall a change program", + "start": 1033.96, + "end": 1038.66, + "words": [ + { + "word": " Hey,", + "start": 1033.96, + "end": 1034.28, + "probability": 0.99853515625 + }, + { + "word": " I'm", + "start": 1034.3, + "end": 1034.46, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1034.46, + "end": 1034.64, + "probability": 1.0 + }, + { + "word": " ready", + "start": 1034.64, + "end": 1034.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1034.88, + "end": 1035.06, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 1035.06, + "end": 1035.32, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1035.32, + "end": 1035.54, + "probability": 0.99951171875 + }, + { + "word": " 10,", + "start": 1035.54, + "end": 1035.76, + "probability": 0.94921875 + }, + { + "word": " and", + "start": 1035.9, + "end": 1036.56, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1036.56, + "end": 1036.9, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1036.9, + "end": 1037.08, + "probability": 1.0 + }, + { + "word": " at", + "start": 1037.08, + "end": 1037.3, + "probability": 1.0 + }, + { + "word": " my", + "start": 1037.3, + "end": 1037.5, + "probability": 0.99951171875 + }, + { + "word": " uninstall", + "start": 1037.5, + "end": 1037.88, + "probability": 0.9345703125 + }, + { + "word": " a", + "start": 1037.88, + "end": 1038.08, + "probability": 0.448974609375 + }, + { + "word": " change", + "start": 1038.08, + "end": 1038.28, + "probability": 0.998046875 + }, + { + "word": " program", + "start": 1038.28, + "end": 1038.66, + "probability": 1.0 + } + ] + }, + { + "id": 456, + "text": "area.", + "start": 1039.1200000000001, + "end": 1039.44, + "words": [ + { + "word": " area.", + "start": 1039.1200000000001, + "end": 1039.44, + "probability": 0.99658203125 + } + ] + }, + { + "id": 457, + "text": "Right.", + "start": 1039.96, + "end": 1040.28, + "words": [ + { + "word": " Right.", + "start": 1039.96, + "end": 1040.28, + "probability": 0.92431640625 + } + ] + }, + { + "id": 458, + "text": "There's a couple programs I wanted to ask you about, if I should remove them before", + "start": 1040.58, + "end": 1043.64, + "words": [ + { + "word": " There's", + "start": 1040.58, + "end": 1040.9, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1040.9, + "end": 1040.96, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1040.96, + "end": 1041.16, + "probability": 1.0 + }, + { + "word": " programs", + "start": 1041.16, + "end": 1041.5, + "probability": 0.72119140625 + }, + { + "word": " I", + "start": 1041.5, + "end": 1041.76, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 1041.76, + "end": 1041.9, + "probability": 0.615234375 + }, + { + "word": " to", + "start": 1041.9, + "end": 1042.0, + "probability": 1.0 + }, + { + "word": " ask", + "start": 1042.0, + "end": 1042.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1042.16, + "end": 1042.3, + "probability": 1.0 + }, + { + "word": " about,", + "start": 1042.3, + "end": 1042.58, + "probability": 1.0 + }, + { + "word": " if", + "start": 1042.64, + "end": 1042.78, + "probability": 0.904296875 + }, + { + "word": " I", + "start": 1042.78, + "end": 1042.88, + "probability": 1.0 + }, + { + "word": " should", + "start": 1042.88, + "end": 1043.02, + "probability": 0.99951171875 + }, + { + "word": " remove", + "start": 1043.02, + "end": 1043.28, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 1043.28, + "end": 1043.46, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 1043.46, + "end": 1043.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 459, + "text": "I do that.", + "start": 1043.64, + "end": 1044.12, + "words": [ + { + "word": " I", + "start": 1043.64, + "end": 1043.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 1043.74, + "end": 1043.9, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1043.9, + "end": 1044.12, + "probability": 1.0 + } + ] + }, + { + "id": 460, + "text": "All right.", + "start": 1045.3400000000001, + "end": 1045.98, + "words": [ + { + "word": " All", + "start": 1045.3400000000001, + "end": 1045.66, + "probability": 0.0003943443298339844 + }, + { + "word": " right.", + "start": 1045.66, + "end": 1045.98, + "probability": 0.99755859375 + } + ] + }, + { + "id": 461, + "text": "Yes.", + "start": 1045.98, + "end": 1046.06, + "words": [ + { + "word": " Yes.", + "start": 1045.98, + "end": 1046.06, + "probability": 0.84375 + } + ] + }, + { + "id": 462, + "text": "Okay.", + "start": 1046.64, + "end": 1047.12, + "words": [ + { + "word": " Okay.", + "start": 1046.64, + "end": 1047.12, + "probability": 0.92919921875 + } + ] + }, + { + "id": 463, + "text": "How about like Pulse Secure Setup Client?", + "start": 1047.16, + "end": 1049.34, + "words": [ + { + "word": " How", + "start": 1047.16, + "end": 1047.32, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 1047.32, + "end": 1047.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 1047.44, + "end": 1047.66, + "probability": 0.6669921875 + }, + { + "word": " Pulse", + "start": 1047.66, + "end": 1048.04, + "probability": 0.75 + }, + { + "word": " Secure", + "start": 1048.04, + "end": 1048.54, + "probability": 0.92236328125 + }, + { + "word": " Setup", + "start": 1048.54, + "end": 1048.96, + "probability": 0.9892578125 + }, + { + "word": " Client?", + "start": 1048.96, + "end": 1049.34, + "probability": 0.98876953125 + } + ] + }, + { + "id": 464, + "text": "I don't think that'll matter.", + "start": 1050.04, + "end": 1051.32, + "words": [ + { + "word": " I", + "start": 1050.04, + "end": 1050.52, + "probability": 0.9970703125 + }, + { + "word": " don't", + "start": 1050.52, + "end": 1050.84, + "probability": 1.0 + }, + { + "word": " think", + "start": 1050.84, + "end": 1050.96, + "probability": 1.0 + }, + { + "word": " that'll", + "start": 1050.96, + "end": 1051.08, + "probability": 0.59716796875 + }, + { + "word": " matter.", + "start": 1051.08, + "end": 1051.32, + "probability": 1.0 + } + ] + }, + { + "id": 465, + "text": "Do you know what that is?", + "start": 1052.0, + "end": 1053.14, + "words": [ + { + "word": " Do", + "start": 1052.0, + "end": 1052.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1052.48, + "end": 1052.56, + "probability": 1.0 + }, + { + "word": " know", + "start": 1052.56, + "end": 1052.66, + "probability": 1.0 + }, + { + "word": " what", + "start": 1052.66, + "end": 1052.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 1052.76, + "end": 1052.9, + "probability": 1.0 + }, + { + "word": " is?", + "start": 1052.9, + "end": 1053.14, + "probability": 1.0 + } + ] + }, + { + "id": 466, + "text": "Not off the top of my head, no.", + "start": 1053.58, + "end": 1054.66, + "words": [ + { + "word": " Not", + "start": 1053.58, + "end": 1053.98, + "probability": 0.5361328125 + }, + { + "word": " off", + "start": 1053.98, + "end": 1054.06, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 1054.06, + "end": 1054.2, + "probability": 1.0 + }, + { + "word": " top", + "start": 1054.2, + "end": 1054.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1054.24, + "end": 1054.32, + "probability": 1.0 + }, + { + "word": " my", + "start": 1054.32, + "end": 1054.38, + "probability": 1.0 + }, + { + "word": " head,", + "start": 1054.38, + "end": 1054.5, + "probability": 1.0 + }, + { + "word": " no.", + "start": 1054.58, + "end": 1054.66, + "probability": 1.0 + } + ] + }, + { + "id": 467, + "text": "But I haven't heard anything about anything like that.", + "start": 1055.16, + "end": 1058.08, + "words": [ + { + "word": " But", + "start": 1055.16, + "end": 1055.64, + "probability": 0.978515625 + }, + { + "word": " I", + "start": 1055.64, + "end": 1056.0, + "probability": 0.99853515625 + }, + { + "word": " haven't", + "start": 1056.0, + "end": 1056.2, + "probability": 1.0 + }, + { + "word": " heard", + "start": 1056.2, + "end": 1056.36, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1056.36, + "end": 1056.74, + "probability": 1.0 + }, + { + "word": " about", + "start": 1056.74, + "end": 1057.12, + "probability": 0.90185546875 + }, + { + "word": " anything", + "start": 1057.12, + "end": 1057.54, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1057.54, + "end": 1057.88, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1057.88, + "end": 1058.08, + "probability": 1.0 + } + ] + }, + { + "id": 468, + "text": "The stuff that's important is, do you have the NVIDIA Experience software installed?", + "start": 1058.2, + "end": 1062.64, + "words": [ + { + "word": " The", + "start": 1058.2, + "end": 1058.44, + "probability": 0.99853515625 + }, + { + "word": " stuff", + "start": 1058.44, + "end": 1058.7, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1058.7, + "end": 1058.88, + "probability": 1.0 + }, + { + "word": " important", + "start": 1058.88, + "end": 1059.1, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1059.1, + "end": 1059.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 1059.52, + "end": 1059.64, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1059.64, + "end": 1059.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 1059.74, + "end": 1059.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1059.86, + "end": 1059.98, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 1059.98, + "end": 1060.5, + "probability": 0.99267578125 + }, + { + "word": " Experience", + "start": 1060.5, + "end": 1061.24, + "probability": 0.7470703125 + }, + { + "word": " software", + "start": 1061.24, + "end": 1062.22, + "probability": 0.99951171875 + }, + { + "word": " installed?", + "start": 1062.22, + "end": 1062.64, + "probability": 1.0 + } + ] + }, + { + "id": 469, + "text": "No.", + "start": 1063.3, + "end": 1063.68, + "words": [ + { + "word": " No.", + "start": 1063.3, + "end": 1063.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 470, + "text": "No.", + "start": 1063.78, + "end": 1064.2, + "words": [ + { + "word": " No.", + "start": 1063.78, + "end": 1064.2, + "probability": 0.3212890625 + } + ] + }, + { + "id": 471, + "text": "It basically comes down to antivirus and NVIDIA software and things like firewalls.", + "start": 1064.42, + "end": 1073.32, + "words": [ + { + "word": " It", + "start": 1064.42, + "end": 1064.88, + "probability": 0.876953125 + }, + { + "word": " basically", + "start": 1064.88, + "end": 1065.66, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1065.66, + "end": 1065.96, + "probability": 1.0 + }, + { + "word": " down", + "start": 1065.96, + "end": 1066.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 1066.2, + "end": 1066.38, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1066.38, + "end": 1067.14, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 1067.14, + "end": 1067.64, + "probability": 0.97705078125 + }, + { + "word": " NVIDIA", + "start": 1067.64, + "end": 1069.22, + "probability": 1.0 + }, + { + "word": " software", + "start": 1069.22, + "end": 1069.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 1069.54, + "end": 1070.84, + "probability": 0.9833984375 + }, + { + "word": " things", + "start": 1070.84, + "end": 1071.96, + "probability": 1.0 + }, + { + "word": " like", + "start": 1071.96, + "end": 1072.24, + "probability": 1.0 + }, + { + "word": " firewalls.", + "start": 1072.24, + "end": 1073.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 472, + "text": "Does the ATI equivalent make any difference?", + "start": 1073.34, + "end": 1075.76, + "words": [ + { + "word": " Does", + "start": 1073.34, + "end": 1073.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1073.62, + "end": 1073.8, + "probability": 1.0 + }, + { + "word": " ATI", + "start": 1073.8, + "end": 1074.16, + "probability": 0.99853515625 + }, + { + "word": " equivalent", + "start": 1074.16, + "end": 1074.52, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 1074.52, + "end": 1075.36, + "probability": 1.0 + }, + { + "word": " any", + "start": 1075.36, + "end": 1075.54, + "probability": 1.0 + }, + { + "word": " difference?", + "start": 1075.54, + "end": 1075.76, + "probability": 1.0 + } + ] + }, + { + "id": 473, + "text": "Yeah.", + "start": 1076.24, + "end": 1076.64, + "words": [ + { + "word": " Yeah.", + "start": 1076.24, + "end": 1076.64, + "probability": 0.908203125 + } + ] + }, + { + "id": 474, + "text": "I would pull that off, too.", + "start": 1076.74, + "end": 1077.82, + "words": [ + { + "word": " I", + "start": 1076.74, + "end": 1076.9, + "probability": 0.990234375 + }, + { + "word": " would", + "start": 1076.9, + "end": 1077.2, + "probability": 0.99755859375 + }, + { + "word": " pull", + "start": 1077.2, + "end": 1077.34, + "probability": 0.9189453125 + }, + { + "word": " that", + "start": 1077.34, + "end": 1077.52, + "probability": 0.97705078125 + }, + { + "word": " off,", + "start": 1077.52, + "end": 1077.66, + "probability": 0.99853515625 + }, + { + "word": " too.", + "start": 1077.66, + "end": 1077.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 475, + "text": "Crossfire, all that.", + "start": 1077.92, + "end": 1078.38, + "words": [ + { + "word": " Crossfire,", + "start": 1077.92, + "end": 1078.04, + "probability": 0.9521484375 + }, + { + "word": " all", + "start": 1078.1, + "end": 1078.24, + "probability": 0.99853515625 + }, + { + "word": " that.", + "start": 1078.24, + "end": 1078.38, + "probability": 1.0 + } + ] + }, + { + "id": 476, + "text": "Yeah.", + "start": 1078.42, + "end": 1078.6, + "words": [ + { + "word": " Yeah.", + "start": 1078.42, + "end": 1078.6, + "probability": 0.8916015625 + } + ] + }, + { + "id": 477, + "text": "So if you have ATI software on there for your video card, anything that's video card related,", + "start": 1078.64, + "end": 1082.3, + "words": [ + { + "word": " So", + "start": 1078.64, + "end": 1078.82, + "probability": 0.94775390625 + }, + { + "word": " if", + "start": 1078.82, + "end": 1078.94, + "probability": 0.76611328125 + }, + { + "word": " you", + "start": 1078.94, + "end": 1079.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 1079.04, + "end": 1079.14, + "probability": 1.0 + }, + { + "word": " ATI", + "start": 1079.14, + "end": 1079.46, + "probability": 0.99658203125 + }, + { + "word": " software", + "start": 1079.46, + "end": 1079.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 1079.8, + "end": 1080.1, + "probability": 1.0 + }, + { + "word": " there", + "start": 1080.1, + "end": 1080.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 1080.28, + "end": 1080.52, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1080.52, + "end": 1080.64, + "probability": 1.0 + }, + { + "word": " video", + "start": 1080.64, + "end": 1080.84, + "probability": 0.9970703125 + }, + { + "word": " card,", + "start": 1080.84, + "end": 1081.06, + "probability": 0.99951171875 + }, + { + "word": " anything", + "start": 1081.16, + "end": 1081.34, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1081.34, + "end": 1081.6, + "probability": 1.0 + }, + { + "word": " video", + "start": 1081.6, + "end": 1081.76, + "probability": 1.0 + }, + { + "word": " card", + "start": 1081.76, + "end": 1082.02, + "probability": 1.0 + }, + { + "word": " related,", + "start": 1082.02, + "end": 1082.3, + "probability": 0.86328125 + } + ] + }, + { + "id": 478, + "text": "just pull it.", + "start": 1082.48, + "end": 1083.08, + "words": [ + { + "word": " just", + "start": 1082.48, + "end": 1082.68, + "probability": 1.0 + }, + { + "word": " pull", + "start": 1082.68, + "end": 1082.9, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1082.9, + "end": 1083.08, + "probability": 1.0 + } + ] + }, + { + "id": 479, + "text": "Okay.", + "start": 1083.32, + "end": 1083.72, + "words": [ + { + "word": " Okay.", + "start": 1083.32, + "end": 1083.72, + "probability": 0.96923828125 + } + ] + }, + { + "id": 480, + "text": "How about Malwarebytes?", + "start": 1083.76, + "end": 1084.7, + "words": [ + { + "word": " How", + "start": 1083.76, + "end": 1083.9, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 1083.9, + "end": 1084.06, + "probability": 1.0 + }, + { + "word": " Malwarebytes?", + "start": 1084.06, + "end": 1084.7, + "probability": 0.98828125 + } + ] + }, + { + "id": 481, + "text": "Malwarebytes can stay.", + "start": 1085.08, + "end": 1085.74, + "words": [ + { + "word": " Malwarebytes", + "start": 1085.08, + "end": 1085.48, + "probability": 1.0 + }, + { + "word": " can", + "start": 1085.48, + "end": 1085.6, + "probability": 0.99951171875 + }, + { + "word": " stay.", + "start": 1085.6, + "end": 1085.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 482, + "text": "Okay.", + "start": 1086.3, + "end": 1086.7, + "words": [ + { + "word": " Okay.", + "start": 1086.3, + "end": 1086.7, + "probability": 0.9970703125 + } + ] + }, + { + "id": 483, + "text": "And Google Chrome and-", + "start": 1086.76, + "end": 1089.06, + "words": [ + { + "word": " And", + "start": 1086.76, + "end": 1087.04, + "probability": 0.994140625 + }, + { + "word": " Google", + "start": 1087.04, + "end": 1087.64, + "probability": 1.0 + }, + { + "word": " Chrome", + "start": 1087.64, + "end": 1088.36, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1088.36, + "end": 1088.82, + "probability": 0.72802734375 + }, + { + "word": "-", + "start": 1088.82, + "end": 1089.06, + "probability": 0.046051025390625 + } + ] + }, + { + "id": 484, + "text": "Yeah.", + "start": 1089.06, + "end": 1089.28, + "words": [ + { + "word": " Yeah.", + "start": 1089.06, + "end": 1089.28, + "probability": 0.99658203125 + } + ] + }, + { + "id": 485, + "text": "That's all fine.", + "start": 1089.3, + "end": 1089.96, + "words": [ + { + "word": " That's", + "start": 1089.3, + "end": 1089.5, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1089.5, + "end": 1089.64, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 1089.64, + "end": 1089.96, + "probability": 1.0 + } + ] + }, + { + "id": 486, + "text": "Chromecraft.", + "start": 1090.56, + "end": 1090.96, + "words": [ + { + "word": " Chromecraft.", + "start": 1090.56, + "end": 1090.96, + "probability": 0.7421875 + } + ] + }, + { + "id": 487, + "text": "Okay.", + "start": 1091.16, + "end": 1091.4, + "words": [ + { + "word": " Okay.", + "start": 1091.16, + "end": 1091.4, + "probability": 0.98583984375 + } + ] + }, + { + "id": 488, + "text": "Great.", + "start": 1091.72, + "end": 1092.12, + "words": [ + { + "word": " Great.", + "start": 1091.72, + "end": 1092.12, + "probability": 0.99755859375 + } + ] + }, + { + "id": 489, + "text": "Yeah.", + "start": 1092.16, + "end": 1092.32, + "words": [ + { + "word": " Yeah.", + "start": 1092.16, + "end": 1092.32, + "probability": 0.1881103515625 + } + ] + }, + { + "id": 490, + "text": "Mostly the stuff that we're concerned about is if it directly interfaces with hardware,", + "start": 1092.32, + "end": 1096.1, + "words": [ + { + "word": " Mostly", + "start": 1092.32, + "end": 1092.62, + "probability": 0.8984375 + }, + { + "word": " the", + "start": 1092.62, + "end": 1092.82, + "probability": 0.97021484375 + }, + { + "word": " stuff", + "start": 1092.82, + "end": 1092.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 1092.98, + "end": 1093.12, + "probability": 1.0 + }, + { + "word": " we're", + "start": 1093.12, + "end": 1093.2, + "probability": 1.0 + }, + { + "word": " concerned", + "start": 1093.2, + "end": 1093.44, + "probability": 1.0 + }, + { + "word": " about", + "start": 1093.44, + "end": 1093.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 1093.7, + "end": 1093.88, + "probability": 1.0 + }, + { + "word": " if", + "start": 1093.88, + "end": 1094.0, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1094.0, + "end": 1094.14, + "probability": 1.0 + }, + { + "word": " directly", + "start": 1094.14, + "end": 1094.72, + "probability": 1.0 + }, + { + "word": " interfaces", + "start": 1094.72, + "end": 1095.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 1095.38, + "end": 1095.7, + "probability": 1.0 + }, + { + "word": " hardware,", + "start": 1095.7, + "end": 1096.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 491, + "text": "like antivirus directly interfaces with your network card, and your video software directly", + "start": 1096.32, + "end": 1104.42, + "words": [ + { + "word": " like", + "start": 1096.32, + "end": 1096.7, + "probability": 0.9990234375 + }, + { + "word": " antivirus", + "start": 1096.7, + "end": 1097.48, + "probability": 0.88818359375 + }, + { + "word": " directly", + "start": 1097.48, + "end": 1097.72, + "probability": 1.0 + }, + { + "word": " interfaces", + "start": 1097.72, + "end": 1098.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 1098.26, + "end": 1098.64, + "probability": 1.0 + }, + { + "word": " your", + "start": 1098.64, + "end": 1098.88, + "probability": 1.0 + }, + { + "word": " network", + "start": 1098.88, + "end": 1099.74, + "probability": 0.9990234375 + }, + { + "word": " card,", + "start": 1099.74, + "end": 1100.08, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1100.2, + "end": 1101.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 1101.32, + "end": 1101.9, + "probability": 1.0 + }, + { + "word": " video", + "start": 1101.9, + "end": 1103.28, + "probability": 1.0 + }, + { + "word": " software", + "start": 1103.28, + "end": 1103.72, + "probability": 1.0 + }, + { + "word": " directly", + "start": 1103.72, + "end": 1104.42, + "probability": 1.0 + } + ] + }, + { + "id": 492, + "text": "interfaces with your video card.", + "start": 1104.42, + "end": 1105.58, + "words": [ + { + "word": " interfaces", + "start": 1104.42, + "end": 1104.92, + "probability": 1.0 + }, + { + "word": " with", + "start": 1104.92, + "end": 1105.06, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 1105.06, + "end": 1105.14, + "probability": 1.0 + }, + { + "word": " video", + "start": 1105.14, + "end": 1105.34, + "probability": 1.0 + }, + { + "word": " card.", + "start": 1105.34, + "end": 1105.58, + "probability": 1.0 + } + ] + }, + { + "id": 493, + "text": "Yeah.", + "start": 1105.64, + "end": 1105.96, + "words": [ + { + "word": " Yeah.", + "start": 1105.64, + "end": 1105.96, + "probability": 0.1864013671875 + } + ] + }, + { + "id": 494, + "text": "", + "start": 1105.96, + "end": 1105.96, + "words": [] + }, + { + "id": 495, + "text": "So we're looking for things that directly interface with hardware that should be removed.", + "start": 1105.96, + "end": 1111.16, + "words": [ + { + "word": " So", + "start": 1105.96, + "end": 1106.12, + "probability": 0.9580078125 + }, + { + "word": " we're", + "start": 1106.12, + "end": 1106.3, + "probability": 0.9638671875 + }, + { + "word": " looking", + "start": 1106.3, + "end": 1106.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 1106.4, + "end": 1106.6, + "probability": 1.0 + }, + { + "word": " things", + "start": 1106.6, + "end": 1106.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1106.78, + "end": 1106.98, + "probability": 1.0 + }, + { + "word": " directly", + "start": 1106.98, + "end": 1107.42, + "probability": 1.0 + }, + { + "word": " interface", + "start": 1107.42, + "end": 1107.82, + "probability": 1.0 + }, + { + "word": " with", + "start": 1107.82, + "end": 1108.4, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 1108.4, + "end": 1108.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 1108.82, + "end": 1110.14, + "probability": 0.9677734375 + }, + { + "word": " should", + "start": 1110.14, + "end": 1110.52, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1110.52, + "end": 1110.74, + "probability": 1.0 + }, + { + "word": " removed.", + "start": 1110.74, + "end": 1111.16, + "probability": 1.0 + } + ] + }, + { + "id": 496, + "text": "That way, when it does the upgrade, it finds the proper versions, puts them on itself during", + "start": 1111.52, + "end": 1116.28, + "words": [ + { + "word": " That", + "start": 1111.52, + "end": 1111.94, + "probability": 1.0 + }, + { + "word": " way,", + "start": 1111.94, + "end": 1112.24, + "probability": 1.0 + }, + { + "word": " when", + "start": 1112.34, + "end": 1112.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 1112.58, + "end": 1112.7, + "probability": 1.0 + }, + { + "word": " does", + "start": 1112.7, + "end": 1112.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1112.86, + "end": 1112.96, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 1112.96, + "end": 1113.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 1113.34, + "end": 1113.4, + "probability": 1.0 + }, + { + "word": " finds", + "start": 1113.4, + "end": 1113.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 1113.64, + "end": 1113.72, + "probability": 1.0 + }, + { + "word": " proper", + "start": 1113.72, + "end": 1113.9, + "probability": 1.0 + }, + { + "word": " versions,", + "start": 1113.9, + "end": 1114.34, + "probability": 1.0 + }, + { + "word": " puts", + "start": 1114.42, + "end": 1115.12, + "probability": 1.0 + }, + { + "word": " them", + "start": 1115.12, + "end": 1115.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 1115.32, + "end": 1115.46, + "probability": 1.0 + }, + { + "word": " itself", + "start": 1115.46, + "end": 1115.72, + "probability": 1.0 + }, + { + "word": " during", + "start": 1115.72, + "end": 1116.28, + "probability": 1.0 + } + ] + }, + { + "id": 497, + "text": "the upgrade, and then you can reinstall whatever you took off.", + "start": 1116.28, + "end": 1119.28, + "words": [ + { + "word": " the", + "start": 1116.28, + "end": 1116.44, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 1116.44, + "end": 1116.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 1116.86, + "end": 1117.02, + "probability": 1.0 + }, + { + "word": " then", + "start": 1117.02, + "end": 1117.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1117.16, + "end": 1117.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 1117.36, + "end": 1117.52, + "probability": 1.0 + }, + { + "word": " reinstall", + "start": 1117.52, + "end": 1118.06, + "probability": 0.9990234375 + }, + { + "word": " whatever", + "start": 1118.06, + "end": 1118.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 1118.36, + "end": 1118.74, + "probability": 1.0 + }, + { + "word": " took", + "start": 1118.74, + "end": 1119.04, + "probability": 1.0 + }, + { + "word": " off.", + "start": 1119.04, + "end": 1119.28, + "probability": 1.0 + } + ] + }, + { + "id": 498, + "text": "So my printer driver then, take that off?", + "start": 1119.54, + "end": 1121.56, + "words": [ + { + "word": " So", + "start": 1119.54, + "end": 1119.84, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1119.84, + "end": 1119.98, + "probability": 0.9951171875 + }, + { + "word": " printer", + "start": 1119.98, + "end": 1120.26, + "probability": 0.99951171875 + }, + { + "word": " driver", + "start": 1120.26, + "end": 1120.52, + "probability": 1.0 + }, + { + "word": " then,", + "start": 1120.52, + "end": 1120.88, + "probability": 0.8056640625 + }, + { + "word": " take", + "start": 1120.96, + "end": 1121.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1121.16, + "end": 1121.38, + "probability": 1.0 + }, + { + "word": " off?", + "start": 1121.38, + "end": 1121.56, + "probability": 1.0 + } + ] + }, + { + "id": 499, + "text": "Now most printer drivers are not a problem.", + "start": 1122.2, + "end": 1124.44, + "words": [ + { + "word": " Now", + "start": 1122.2, + "end": 1122.62, + "probability": 0.97509765625 + }, + { + "word": " most", + "start": 1122.62, + "end": 1122.84, + "probability": 0.0953369140625 + }, + { + "word": " printer", + "start": 1122.84, + "end": 1123.02, + "probability": 0.9970703125 + }, + { + "word": " drivers", + "start": 1123.02, + "end": 1123.36, + "probability": 1.0 + }, + { + "word": " are", + "start": 1123.36, + "end": 1123.82, + "probability": 1.0 + }, + { + "word": " not", + "start": 1123.82, + "end": 1124.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 1124.08, + "end": 1124.18, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 1124.18, + "end": 1124.44, + "probability": 1.0 + } + ] + }, + { + "id": 500, + "text": "What kind of printer do you have?", + "start": 1124.58, + "end": 1125.7, + "words": [ + { + "word": " What", + "start": 1124.58, + "end": 1125.0, + "probability": 0.99365234375 + }, + { + "word": " kind", + "start": 1125.0, + "end": 1125.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 1125.16, + "end": 1125.22, + "probability": 1.0 + }, + { + "word": " printer", + "start": 1125.22, + "end": 1125.34, + "probability": 1.0 + }, + { + "word": " do", + "start": 1125.34, + "end": 1125.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 1125.5, + "end": 1125.56, + "probability": 1.0 + }, + { + "word": " have?", + "start": 1125.56, + "end": 1125.7, + "probability": 1.0 + } + ] + }, + { + "id": 501, + "text": "HP.", + "start": 1126.12, + "end": 1126.54, + "words": [ + { + "word": " HP.", + "start": 1126.12, + "end": 1126.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 502, + "text": "Yeah.", + "start": 1126.7, + "end": 1127.08, + "words": [ + { + "word": " Yeah.", + "start": 1126.7, + "end": 1127.08, + "probability": 0.98193359375 + } + ] + }, + { + "id": 503, + "text": "HPs aren't going to be an issue.", + "start": 1127.1, + "end": 1128.32, + "words": [ + { + "word": " HPs", + "start": 1127.1, + "end": 1127.44, + "probability": 0.931640625 + }, + { + "word": " aren't", + "start": 1127.44, + "end": 1127.76, + "probability": 0.9931640625 + }, + { + "word": " going", + "start": 1127.76, + "end": 1127.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1127.92, + "end": 1127.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 1127.98, + "end": 1128.02, + "probability": 1.0 + }, + { + "word": " an", + "start": 1128.02, + "end": 1128.12, + "probability": 1.0 + }, + { + "word": " issue.", + "start": 1128.12, + "end": 1128.32, + "probability": 1.0 + } + ] + }, + { + "id": 504, + "text": "We've seen some issues with Epson's, because the Epson's are ... Those are some crazy drivers", + "start": 1128.6, + "end": 1134.52, + "words": [ + { + "word": " We've", + "start": 1128.6, + "end": 1129.02, + "probability": 1.0 + }, + { + "word": " seen", + "start": 1129.02, + "end": 1129.14, + "probability": 1.0 + }, + { + "word": " some", + "start": 1129.14, + "end": 1129.36, + "probability": 1.0 + }, + { + "word": " issues", + "start": 1129.36, + "end": 1129.62, + "probability": 1.0 + }, + { + "word": " with", + "start": 1129.62, + "end": 1129.88, + "probability": 1.0 + }, + { + "word": " Epson's,", + "start": 1129.88, + "end": 1130.44, + "probability": 0.82958984375 + }, + { + "word": " because", + "start": 1130.46, + "end": 1131.42, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 1131.42, + "end": 1131.64, + "probability": 0.83056640625 + }, + { + "word": " Epson's", + "start": 1131.64, + "end": 1132.36, + "probability": 0.94140625 + }, + { + "word": " are", + "start": 1132.36, + "end": 1132.44, + "probability": 0.99169921875 + }, + { + "word": " ...", + "start": 1132.44, + "end": 1132.62, + "probability": 0.002574920654296875 + }, + { + "word": " Those", + "start": 1132.62, + "end": 1133.68, + "probability": 0.82373046875 + }, + { + "word": " are", + "start": 1133.68, + "end": 1133.82, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 1133.82, + "end": 1133.92, + "probability": 1.0 + }, + { + "word": " crazy", + "start": 1133.92, + "end": 1134.2, + "probability": 1.0 + }, + { + "word": " drivers", + "start": 1134.2, + "end": 1134.52, + "probability": 1.0 + } + ] + }, + { + "id": 505, + "text": "they put on those things.", + "start": 1134.52, + "end": 1135.34, + "words": [ + { + "word": " they", + "start": 1134.52, + "end": 1134.74, + "probability": 0.95556640625 + }, + { + "word": " put", + "start": 1134.74, + "end": 1134.82, + "probability": 0.9755859375 + }, + { + "word": " on", + "start": 1134.82, + "end": 1134.98, + "probability": 1.0 + }, + { + "word": " those", + "start": 1134.98, + "end": 1135.12, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1135.12, + "end": 1135.34, + "probability": 1.0 + } + ] + }, + { + "id": 506, + "text": "But the HP ones seem to be fine.", + "start": 1135.96, + "end": 1137.42, + "words": [ + { + "word": " But", + "start": 1135.96, + "end": 1136.32, + "probability": 0.74951171875 + }, + { + "word": " the", + "start": 1136.32, + "end": 1136.44, + "probability": 0.99609375 + }, + { + "word": " HP", + "start": 1136.44, + "end": 1136.66, + "probability": 0.978515625 + }, + { + "word": " ones", + "start": 1136.66, + "end": 1136.88, + "probability": 0.88818359375 + }, + { + "word": " seem", + "start": 1136.88, + "end": 1137.06, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1137.06, + "end": 1137.14, + "probability": 1.0 + }, + { + "word": " be", + "start": 1137.14, + "end": 1137.22, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 1137.22, + "end": 1137.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 507, + "text": "Okay.", + "start": 1137.94, + "end": 1138.3, + "words": [ + { + "word": " Okay.", + "start": 1137.94, + "end": 1138.3, + "probability": 0.95556640625 + } + ] + }, + { + "id": 508, + "text": "Great.", + "start": 1138.36, + "end": 1138.72, + "words": [ + { + "word": " Great.", + "start": 1138.36, + "end": 1138.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 509, + "text": "Thanks a lot.", + "start": 1138.82, + "end": 1139.28, + "words": [ + { + "word": " Thanks", + "start": 1138.82, + "end": 1139.06, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1139.06, + "end": 1139.16, + "probability": 1.0 + }, + { + "word": " lot.", + "start": 1139.16, + "end": 1139.28, + "probability": 1.0 + } + ] + }, + { + "id": 510, + "text": "All right.", + "start": 1139.48, + "end": 1139.76, + "words": [ + { + "word": " All", + "start": 1139.48, + "end": 1139.64, + "probability": 0.904296875 + }, + { + "word": " right.", + "start": 1139.64, + "end": 1139.76, + "probability": 1.0 + } + ] + }, + { + "id": 511, + "text": "Thanks for the call, Tom.", + "start": 1139.8, + "end": 1140.58, + "words": [ + { + "word": " Thanks", + "start": 1139.8, + "end": 1140.08, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1140.08, + "end": 1140.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 1140.2, + "end": 1140.22, + "probability": 1.0 + }, + { + "word": " call,", + "start": 1140.22, + "end": 1140.42, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 1140.44, + "end": 1140.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 512, + "text": "Yeah.", + "start": 1141.6200000000001, + "end": 1141.98, + "words": [ + { + "word": " Yeah.", + "start": 1141.6200000000001, + "end": 1141.98, + "probability": 0.99267578125 + } + ] + }, + { + "id": 513, + "text": "Just be careful when you're doing your upgrade.", + "start": 1142.1, + "end": 1143.98, + "words": [ + { + "word": " Just", + "start": 1142.1, + "end": 1142.46, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 1142.46, + "end": 1142.84, + "probability": 1.0 + }, + { + "word": " careful", + "start": 1142.84, + "end": 1143.16, + "probability": 1.0 + }, + { + "word": " when", + "start": 1143.16, + "end": 1143.36, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 1143.36, + "end": 1143.48, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1143.48, + "end": 1143.62, + "probability": 1.0 + }, + { + "word": " your", + "start": 1143.62, + "end": 1143.76, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1143.76, + "end": 1143.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 514, + "text": "You know, I can't wait until it's like a year from now and Windows 10 has been embraced", + "start": 1144.2, + "end": 1148.2, + "words": [ + { + "word": " You", + "start": 1144.2, + "end": 1144.38, + "probability": 0.98876953125 + }, + { + "word": " know,", + "start": 1144.38, + "end": 1144.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 1144.54, + "end": 1144.72, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1144.72, + "end": 1144.98, + "probability": 1.0 + }, + { + "word": " wait", + "start": 1144.98, + "end": 1145.1, + "probability": 1.0 + }, + { + "word": " until", + "start": 1145.1, + "end": 1145.32, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1145.32, + "end": 1145.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 1145.54, + "end": 1145.6, + "probability": 0.85107421875 + }, + { + "word": " a", + "start": 1145.6, + "end": 1145.7, + "probability": 1.0 + }, + { + "word": " year", + "start": 1145.7, + "end": 1145.88, + "probability": 1.0 + }, + { + "word": " from", + "start": 1145.88, + "end": 1146.04, + "probability": 1.0 + }, + { + "word": " now", + "start": 1146.04, + "end": 1146.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 1146.24, + "end": 1146.52, + "probability": 0.88232421875 + }, + { + "word": " Windows", + "start": 1146.52, + "end": 1147.14, + "probability": 0.9990234375 + }, + { + "word": " 10", + "start": 1147.14, + "end": 1147.46, + "probability": 1.0 + }, + { + "word": " has", + "start": 1147.46, + "end": 1147.66, + "probability": 1.0 + }, + { + "word": " been", + "start": 1147.66, + "end": 1147.84, + "probability": 0.70166015625 + }, + { + "word": " embraced", + "start": 1147.84, + "end": 1148.2, + "probability": 1.0 + } + ] + }, + { + "id": 515, + "text": "and everybody's fine with it again.", + "start": 1148.2, + "end": 1150.4, + "words": [ + { + "word": " and", + "start": 1148.2, + "end": 1148.52, + "probability": 0.9970703125 + }, + { + "word": " everybody's", + "start": 1148.52, + "end": 1149.54, + "probability": 0.9970703125 + }, + { + "word": " fine", + "start": 1149.54, + "end": 1149.84, + "probability": 1.0 + }, + { + "word": " with", + "start": 1149.84, + "end": 1150.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 1150.08, + "end": 1150.2, + "probability": 1.0 + }, + { + "word": " again.", + "start": 1150.2, + "end": 1150.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 516, + "text": "Yeah.", + "start": 1150.88, + "end": 1151.24, + "words": [ + { + "word": " Yeah.", + "start": 1150.88, + "end": 1151.24, + "probability": 0.99609375 + } + ] + }, + { + "id": 517, + "text": "Well, this is the last version, according to Microsoft.", + "start": 1151.76, + "end": 1153.98, + "words": [ + { + "word": " Well,", + "start": 1151.76, + "end": 1152.12, + "probability": 0.99609375 + }, + { + "word": " this", + "start": 1152.22, + "end": 1152.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 1152.46, + "end": 1152.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1152.68, + "end": 1152.82, + "probability": 1.0 + }, + { + "word": " last", + "start": 1152.82, + "end": 1153.0, + "probability": 0.9990234375 + }, + { + "word": " version,", + "start": 1153.0, + "end": 1153.3, + "probability": 1.0 + }, + { + "word": " according", + "start": 1153.36, + "end": 1153.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1153.58, + "end": 1153.72, + "probability": 1.0 + }, + { + "word": " Microsoft.", + "start": 1153.72, + "end": 1153.98, + "probability": 1.0 + } + ] + }, + { + "id": 518, + "text": "Yeah.", + "start": 1154.12, + "end": 1154.24, + "words": [ + { + "word": " Yeah.", + "start": 1154.12, + "end": 1154.24, + "probability": 0.99462890625 + } + ] + }, + { + "id": 519, + "text": "It's the final version.", + "start": 1154.28, + "end": 1155.22, + "words": [ + { + "word": " It's", + "start": 1154.28, + "end": 1154.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 1154.42, + "end": 1154.54, + "probability": 1.0 + }, + { + "word": " final", + "start": 1154.54, + "end": 1154.84, + "probability": 1.0 + }, + { + "word": " version.", + "start": 1154.84, + "end": 1155.22, + "probability": 1.0 + } + ] + }, + { + "id": 520, + "text": "All right.", + "start": 1155.48, + "end": 1155.7, + "words": [ + { + "word": " All", + "start": 1155.48, + "end": 1155.64, + "probability": 0.74462890625 + }, + { + "word": " right.", + "start": 1155.64, + "end": 1155.7, + "probability": 1.0 + } + ] + }, + { + "id": 521, + "text": "And people have been asking me that, and I guess we should probably cover it.", + "start": 1157.4800000000002, + "end": 1160.22, + "words": [ + { + "word": " And", + "start": 1157.4800000000002, + "end": 1157.8400000000001, + "probability": 0.99365234375 + }, + { + "word": " people", + "start": 1157.8400000000001, + "end": 1158.2, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1158.2, + "end": 1158.34, + "probability": 1.0 + }, + { + "word": " been", + "start": 1158.34, + "end": 1158.44, + "probability": 1.0 + }, + { + "word": " asking", + "start": 1158.44, + "end": 1158.7, + "probability": 1.0 + }, + { + "word": " me", + "start": 1158.7, + "end": 1158.84, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1158.84, + "end": 1158.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1159.02, + "end": 1159.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 1159.08, + "end": 1159.12, + "probability": 1.0 + }, + { + "word": " guess", + "start": 1159.12, + "end": 1159.24, + "probability": 1.0 + }, + { + "word": " we", + "start": 1159.24, + "end": 1159.34, + "probability": 1.0 + }, + { + "word": " should", + "start": 1159.34, + "end": 1159.46, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1159.46, + "end": 1159.7, + "probability": 1.0 + }, + { + "word": " cover", + "start": 1159.7, + "end": 1160.04, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1160.04, + "end": 1160.22, + "probability": 1.0 + } + ] + }, + { + "id": 522, + "text": "They're like, so I'll just wait for the next one.", + "start": 1160.28, + "end": 1162.44, + "words": [ + { + "word": " They're", + "start": 1160.28, + "end": 1160.38, + "probability": 0.99609375 + }, + { + "word": " like,", + "start": 1160.38, + "end": 1160.52, + "probability": 1.0 + }, + { + "word": " so", + "start": 1160.66, + "end": 1160.82, + "probability": 0.97705078125 + }, + { + "word": " I'll", + "start": 1160.82, + "end": 1161.58, + "probability": 0.974609375 + }, + { + "word": " just", + "start": 1161.58, + "end": 1161.68, + "probability": 1.0 + }, + { + "word": " wait", + "start": 1161.68, + "end": 1161.86, + "probability": 1.0 + }, + { + "word": " for", + "start": 1161.86, + "end": 1161.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1161.98, + "end": 1162.06, + "probability": 1.0 + }, + { + "word": " next", + "start": 1162.06, + "end": 1162.26, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1162.26, + "end": 1162.44, + "probability": 1.0 + } + ] + }, + { + "id": 523, + "text": "I'm like, there is no next one.", + "start": 1162.52, + "end": 1163.8, + "words": [ + { + "word": " I'm", + "start": 1162.52, + "end": 1162.64, + "probability": 0.9951171875 + }, + { + "word": " like,", + "start": 1162.64, + "end": 1162.76, + "probability": 1.0 + }, + { + "word": " there", + "start": 1162.82, + "end": 1163.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 1163.02, + "end": 1163.22, + "probability": 1.0 + }, + { + "word": " no", + "start": 1163.22, + "end": 1163.34, + "probability": 1.0 + }, + { + "word": " next", + "start": 1163.34, + "end": 1163.54, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1163.54, + "end": 1163.8, + "probability": 1.0 + } + ] + }, + { + "id": 524, + "text": "Yeah.", + "start": 1164.04, + "end": 1164.4, + "words": [ + { + "word": " Yeah.", + "start": 1164.04, + "end": 1164.4, + "probability": 0.0004036426544189453 + } + ] + }, + { + "id": 525, + "text": "I mean, in a manner of speaking.", + "start": 1164.4, + "end": 1165.38, + "words": [ + { + "word": " I", + "start": 1164.4, + "end": 1164.48, + "probability": 0.98583984375 + }, + { + "word": " mean,", + "start": 1164.48, + "end": 1164.6, + "probability": 1.0 + }, + { + "word": " in", + "start": 1164.62, + "end": 1164.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1164.72, + "end": 1164.82, + "probability": 1.0 + }, + { + "word": " manner", + "start": 1164.82, + "end": 1165.0, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 1165.0, + "end": 1165.14, + "probability": 1.0 + }, + { + "word": " speaking.", + "start": 1165.14, + "end": 1165.38, + "probability": 1.0 + } + ] + }, + { + "id": 526, + "text": "Ten years from now, it's going to be way different than Windows 10.", + "start": 1165.6, + "end": 1168.3, + "words": [ + { + "word": " Ten", + "start": 1165.6, + "end": 1165.92, + "probability": 0.908203125 + }, + { + "word": " years", + "start": 1165.92, + "end": 1166.18, + "probability": 1.0 + }, + { + "word": " from", + "start": 1166.18, + "end": 1166.4, + "probability": 1.0 + }, + { + "word": " now,", + "start": 1166.4, + "end": 1166.58, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1166.64, + "end": 1166.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 1166.78, + "end": 1166.86, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 1166.86, + "end": 1166.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 1166.96, + "end": 1167.04, + "probability": 1.0 + }, + { + "word": " way", + "start": 1167.04, + "end": 1167.28, + "probability": 1.0 + }, + { + "word": " different", + "start": 1167.28, + "end": 1167.56, + "probability": 1.0 + }, + { + "word": " than", + "start": 1167.56, + "end": 1167.8, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1167.8, + "end": 1167.98, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 1167.98, + "end": 1168.3, + "probability": 0.99853515625 + } + ] + }, + { + "id": 527, + "text": "Right.", + "start": 1168.8400000000001, + "end": 1169.2, + "words": [ + { + "word": " Right.", + "start": 1168.8400000000001, + "end": 1169.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 528, + "text": "But they're going the Mac route, which is sort of the evolution of a singular platform.", + "start": 1169.24, + "end": 1174.2, + "words": [ + { + "word": " But", + "start": 1169.24, + "end": 1169.44, + "probability": 0.9892578125 + }, + { + "word": " they're", + "start": 1169.44, + "end": 1169.68, + "probability": 0.9951171875 + }, + { + "word": " going", + "start": 1169.68, + "end": 1169.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1169.86, + "end": 1170.04, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 1170.04, + "end": 1170.22, + "probability": 0.99951171875 + }, + { + "word": " route,", + "start": 1170.22, + "end": 1170.46, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 1170.62, + "end": 1170.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 1170.92, + "end": 1171.06, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1171.06, + "end": 1171.24, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1171.24, + "end": 1171.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1171.4, + "end": 1171.62, + "probability": 1.0 + }, + { + "word": " evolution", + "start": 1171.62, + "end": 1172.78, + "probability": 0.9931640625 + }, + { + "word": " of", + "start": 1172.78, + "end": 1173.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1173.26, + "end": 1173.36, + "probability": 0.9990234375 + }, + { + "word": " singular", + "start": 1173.36, + "end": 1173.72, + "probability": 0.9990234375 + }, + { + "word": " platform.", + "start": 1173.72, + "end": 1174.2, + "probability": 1.0 + } + ] + }, + { + "id": 529, + "text": "I hope they give them better names than Mac does, though.", + "start": 1175.7800000000002, + "end": 1177.82, + "words": [ + { + "word": " I", + "start": 1175.7800000000002, + "end": 1176.14, + "probability": 0.998046875 + }, + { + "word": " hope", + "start": 1176.14, + "end": 1176.28, + "probability": 1.0 + }, + { + "word": " they", + "start": 1176.28, + "end": 1176.38, + "probability": 1.0 + }, + { + "word": " give", + "start": 1176.38, + "end": 1176.5, + "probability": 1.0 + }, + { + "word": " them", + "start": 1176.5, + "end": 1176.6, + "probability": 0.99267578125 + }, + { + "word": " better", + "start": 1176.6, + "end": 1176.74, + "probability": 1.0 + }, + { + "word": " names", + "start": 1176.74, + "end": 1177.04, + "probability": 1.0 + }, + { + "word": " than", + "start": 1177.04, + "end": 1177.2, + "probability": 1.0 + }, + { + "word": " Mac", + "start": 1177.2, + "end": 1177.4, + "probability": 1.0 + }, + { + "word": " does,", + "start": 1177.4, + "end": 1177.58, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1177.66, + "end": 1177.82, + "probability": 1.0 + } + ] + }, + { + "id": 530, + "text": "Yeah.", + "start": 1178.58, + "end": 1178.9, + "words": [ + { + "word": " Yeah.", + "start": 1178.58, + "end": 1178.9, + "probability": 0.99609375 + } + ] + }, + { + "id": 531, + "text": "I don't know.", + "start": 1179.02, + "end": 1179.82, + "words": [ + { + "word": " I", + "start": 1179.02, + "end": 1179.26, + "probability": 0.8359375 + }, + { + "word": " don't", + "start": 1179.26, + "end": 1179.74, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1179.74, + "end": 1179.82, + "probability": 1.0 + } + ] + }, + { + "id": 532, + "text": "El Capitan and Yosemite.", + "start": 1179.82, + "end": 1182.06, + "words": [ + { + "word": " El", + "start": 1179.82, + "end": 1180.0, + "probability": 0.9970703125 + }, + { + "word": " Capitan", + "start": 1180.0, + "end": 1180.34, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 1180.34, + "end": 1181.04, + "probability": 0.5703125 + }, + { + "word": " Yosemite.", + "start": 1181.04, + "end": 1182.06, + "probability": 0.96923828125 + } + ] + }, + { + "id": 533, + "text": "Well, the new one is called Sierra.", + "start": 1182.06, + "end": 1184.36, + "words": [ + { + "word": " Well,", + "start": 1182.06, + "end": 1182.12, + "probability": 0.351318359375 + }, + { + "word": " the", + "start": 1182.26, + "end": 1182.32, + "probability": 1.0 + }, + { + "word": " new", + "start": 1182.32, + "end": 1182.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 1182.46, + "end": 1182.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 1182.56, + "end": 1183.7, + "probability": 1.0 + }, + { + "word": " called", + "start": 1183.7, + "end": 1183.84, + "probability": 1.0 + }, + { + "word": " Sierra.", + "start": 1183.84, + "end": 1184.36, + "probability": 1.0 + } + ] + }, + { + "id": 534, + "text": "Sierra.", + "start": 1184.88, + "end": 1185.24, + "words": [ + { + "word": " Sierra.", + "start": 1184.88, + "end": 1185.24, + "probability": 0.1815185546875 + } + ] + }, + { + "id": 535, + "text": "Which is kind of a nice name.", + "start": 1185.24, + "end": 1185.66, + "words": [ + { + "word": " Which", + "start": 1185.24, + "end": 1185.24, + "probability": 0.13037109375 + }, + { + "word": " is", + "start": 1185.24, + "end": 1185.24, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1185.24, + "end": 1185.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 1185.44, + "end": 1185.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 1185.56, + "end": 1185.56, + "probability": 0.9140625 + }, + { + "word": " nice", + "start": 1185.56, + "end": 1185.66, + "probability": 0.865234375 + }, + { + "word": " name.", + "start": 1185.66, + "end": 1185.66, + "probability": 0.8642578125 + } + ] + }, + { + "id": 536, + "text": "That's not bad, I guess.", + "start": 1185.66, + "end": 1186.32, + "words": [ + { + "word": " That's", + "start": 1185.66, + "end": 1185.74, + "probability": 0.9970703125 + }, + { + "word": " not", + "start": 1185.74, + "end": 1185.86, + "probability": 0.99951171875 + }, + { + "word": " bad,", + "start": 1185.86, + "end": 1186.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 1186.16, + "end": 1186.2, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 1186.2, + "end": 1186.32, + "probability": 1.0 + } + ] + }, + { + "id": 537, + "text": "Yeah.", + "start": 1186.52, + "end": 1186.54, + "words": [ + { + "word": " Yeah.", + "start": 1186.52, + "end": 1186.54, + "probability": 0.0865478515625 + } + ] + }, + { + "id": 538, + "text": "But Snow Leopard?", + "start": 1187.0800000000002, + "end": 1188.16, + "words": [ + { + "word": " But", + "start": 1187.0800000000002, + "end": 1187.44, + "probability": 0.96044921875 + }, + { + "word": " Snow", + "start": 1187.44, + "end": 1187.8, + "probability": 0.990234375 + }, + { + "word": " Leopard?", + "start": 1187.8, + "end": 1188.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 539, + "text": "Come on.", + "start": 1188.5600000000002, + "end": 1189.14, + "words": [ + { + "word": " Come", + "start": 1188.5600000000002, + "end": 1188.92, + "probability": 0.99658203125 + }, + { + "word": " on.", + "start": 1188.92, + "end": 1189.14, + "probability": 1.0 + } + ] + }, + { + "id": 540, + "text": "Anyway, so there is no next version, in a manner of speaking.", + "start": 1190.5400000000002, + "end": 1193.88, + "words": [ + { + "word": " Anyway,", + "start": 1190.5400000000002, + "end": 1190.9, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 1190.9, + "end": 1191.26, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1191.26, + "end": 1191.44, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1191.44, + "end": 1191.58, + "probability": 1.0 + }, + { + "word": " no", + "start": 1191.58, + "end": 1191.7, + "probability": 1.0 + }, + { + "word": " next", + "start": 1191.7, + "end": 1191.88, + "probability": 0.990234375 + }, + { + "word": " version,", + "start": 1191.88, + "end": 1192.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 1192.3, + "end": 1193.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1193.32, + "end": 1193.42, + "probability": 1.0 + }, + { + "word": " manner", + "start": 1193.42, + "end": 1193.6, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1193.6, + "end": 1193.7, + "probability": 1.0 + }, + { + "word": " speaking.", + "start": 1193.7, + "end": 1193.88, + "probability": 1.0 + } + ] + }, + { + "id": 541, + "text": "Yeah.", + "start": 1194.02, + "end": 1194.38, + "words": [ + { + "word": " Yeah.", + "start": 1194.02, + "end": 1194.38, + "probability": 0.2568359375 + } + ] + }, + { + "id": 542, + "text": "", + "start": 1194.38, + "end": 1194.38, + "words": [] + }, + { + "id": 543, + "text": "", + "start": 1194.38, + "end": 1194.38, + "words": [] + }, + { + "id": 544, + "text": "So, just like Mac OS X, which came out 12 years ago, is still sort of the thing, even", + "start": 1194.4, + "end": 1204.4, + "words": [ + { + "word": " So,", + "start": 1194.4, + "end": 1194.86, + "probability": 0.00859832763671875 + }, + { + "word": " just", + "start": 1194.86, + "end": 1195.2, + "probability": 0.90185546875 + }, + { + "word": " like", + "start": 1195.2, + "end": 1195.58, + "probability": 0.99951171875 + }, + { + "word": " Mac", + "start": 1195.58, + "end": 1196.2, + "probability": 0.931640625 + }, + { + "word": " OS", + "start": 1196.2, + "end": 1196.46, + "probability": 0.99755859375 + }, + { + "word": " X,", + "start": 1196.46, + "end": 1196.82, + "probability": 0.93408203125 + }, + { + "word": " which", + "start": 1197.0, + "end": 1197.32, + "probability": 1.0 + }, + { + "word": " came", + "start": 1197.32, + "end": 1197.56, + "probability": 1.0 + }, + { + "word": " out", + "start": 1197.56, + "end": 1197.84, + "probability": 1.0 + }, + { + "word": " 12", + "start": 1197.84, + "end": 1198.92, + "probability": 0.478515625 + }, + { + "word": " years", + "start": 1198.92, + "end": 1199.56, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 1199.56, + "end": 1199.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 1200.06, + "end": 1201.26, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 1201.26, + "end": 1201.68, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1201.68, + "end": 1202.04, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1202.04, + "end": 1203.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1203.24, + "end": 1203.54, + "probability": 0.9990234375 + }, + { + "word": " thing,", + "start": 1203.54, + "end": 1204.08, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 1204.22, + "end": 1204.4, + "probability": 1.0 + } + ] + }, + { + "id": 545, + "text": "though they refuse to call it OS X now.", + "start": 1204.4, + "end": 1206.02, + "words": [ + { + "word": " though", + "start": 1204.4, + "end": 1204.56, + "probability": 1.0 + }, + { + "word": " they", + "start": 1204.56, + "end": 1204.7, + "probability": 1.0 + }, + { + "word": " refuse", + "start": 1204.7, + "end": 1204.92, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 1204.92, + "end": 1205.16, + "probability": 1.0 + }, + { + "word": " call", + "start": 1205.16, + "end": 1205.32, + "probability": 1.0 + }, + { + "word": " it", + "start": 1205.32, + "end": 1205.44, + "probability": 1.0 + }, + { + "word": " OS", + "start": 1205.44, + "end": 1205.6, + "probability": 1.0 + }, + { + "word": " X", + "start": 1205.6, + "end": 1205.8, + "probability": 0.99853515625 + }, + { + "word": " now.", + "start": 1205.8, + "end": 1206.02, + "probability": 1.0 + } + ] + }, + { + "id": 546, + "text": "Yeah.", + "start": 1206.28, + "end": 1206.76, + "words": [ + { + "word": " Yeah.", + "start": 1206.28, + "end": 1206.76, + "probability": 0.8212890625 + } + ] + }, + { + "id": 547, + "text": "It's been effectively a slow, gradual, minor upgrade process over the number of years.", + "start": 1208.38, + "end": 1215.62, + "words": [ + { + "word": " It's", + "start": 1208.38, + "end": 1208.86, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 1208.86, + "end": 1209.02, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 1209.02, + "end": 1209.66, + "probability": 0.97412109375 + }, + { + "word": " a", + "start": 1209.66, + "end": 1209.94, + "probability": 1.0 + }, + { + "word": " slow,", + "start": 1209.94, + "end": 1210.34, + "probability": 1.0 + }, + { + "word": " gradual,", + "start": 1210.56, + "end": 1211.54, + "probability": 1.0 + }, + { + "word": " minor", + "start": 1211.84, + "end": 1212.44, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 1212.44, + "end": 1212.8, + "probability": 0.99951171875 + }, + { + "word": " process", + "start": 1212.8, + "end": 1213.24, + "probability": 1.0 + }, + { + "word": " over", + "start": 1213.24, + "end": 1213.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1213.96, + "end": 1214.2, + "probability": 0.99853515625 + }, + { + "word": " number", + "start": 1214.2, + "end": 1215.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 1215.14, + "end": 1215.36, + "probability": 1.0 + }, + { + "word": " years.", + "start": 1215.36, + "end": 1215.62, + "probability": 1.0 + } + ] + }, + { + "id": 548, + "text": "And that's what Microsoft is planning to do now, is that they're going to get everybody", + "start": 1216.1, + "end": 1220.5, + "words": [ + { + "word": " And", + "start": 1216.1, + "end": 1216.58, + "probability": 0.9814453125 + }, + { + "word": " that's", + "start": 1216.58, + "end": 1217.0, + "probability": 0.986328125 + }, + { + "word": " what", + "start": 1217.0, + "end": 1217.2, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 1217.2, + "end": 1217.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 1217.7, + "end": 1218.0, + "probability": 1.0 + }, + { + "word": " planning", + "start": 1218.0, + "end": 1218.22, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 1218.22, + "end": 1218.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 1218.42, + "end": 1218.58, + "probability": 1.0 + }, + { + "word": " now,", + "start": 1218.58, + "end": 1218.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 1218.94, + "end": 1219.08, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1219.08, + "end": 1219.22, + "probability": 0.923828125 + }, + { + "word": " they're", + "start": 1219.22, + "end": 1220.02, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 1220.02, + "end": 1220.1, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1220.1, + "end": 1220.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 1220.18, + "end": 1220.3, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 1220.3, + "end": 1220.5, + "probability": 1.0 + } + ] + }, + { + "id": 549, + "text": "on 10.", + "start": 1220.5, + "end": 1220.98, + "words": [ + { + "word": " on", + "start": 1220.5, + "end": 1220.76, + "probability": 0.99951171875 + }, + { + "word": " 10.", + "start": 1220.76, + "end": 1220.98, + "probability": 0.459228515625 + } + ] + }, + { + "id": 550, + "text": "Yeah.", + "start": 1221.12, + "end": 1221.44, + "words": [ + { + "word": " Yeah.", + "start": 1221.12, + "end": 1221.44, + "probability": 9.644031524658203e-05 + } + ] + }, + { + "id": 551, + "text": "And then they're going to do like, you know, 10 point whatever.", + "start": 1221.52, + "end": 1224.38, + "words": [ + { + "word": " And", + "start": 1221.52, + "end": 1221.66, + "probability": 0.841796875 + }, + { + "word": " then", + "start": 1221.66, + "end": 1221.84, + "probability": 0.97119140625 + }, + { + "word": " they're", + "start": 1221.84, + "end": 1222.34, + "probability": 0.982421875 + }, + { + "word": " going", + "start": 1222.34, + "end": 1222.42, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1222.42, + "end": 1222.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 1222.54, + "end": 1222.76, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 1222.76, + "end": 1223.22, + "probability": 0.452880859375 + }, + { + "word": " you", + "start": 1223.22, + "end": 1223.34, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 1223.34, + "end": 1223.42, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1223.44, + "end": 1223.7, + "probability": 0.98974609375 + }, + { + "word": " point", + "start": 1223.7, + "end": 1224.0, + "probability": 0.93115234375 + }, + { + "word": " whatever.", + "start": 1224.0, + "end": 1224.38, + "probability": 0.5458984375 + } + ] + }, + { + "id": 552, + "text": "Right?", + "start": 1224.38, + "end": 1225.06, + "words": [ + { + "word": " Right?", + "start": 1224.38, + "end": 1225.06, + "probability": 0.08172607421875 + } + ] + }, + { + "id": 553, + "text": "There should not be an 11 in the future.", + "start": 1225.22, + "end": 1228.58, + "words": [ + { + "word": " There", + "start": 1225.22, + "end": 1225.38, + "probability": 0.998046875 + }, + { + "word": " should", + "start": 1225.38, + "end": 1225.82, + "probability": 0.978515625 + }, + { + "word": " not", + "start": 1225.82, + "end": 1226.12, + "probability": 1.0 + }, + { + "word": " be", + "start": 1226.12, + "end": 1226.38, + "probability": 1.0 + }, + { + "word": " an", + "start": 1226.38, + "end": 1226.96, + "probability": 0.9990234375 + }, + { + "word": " 11", + "start": 1226.96, + "end": 1227.18, + "probability": 0.9697265625 + }, + { + "word": " in", + "start": 1227.18, + "end": 1227.9, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1227.9, + "end": 1228.28, + "probability": 0.99951171875 + }, + { + "word": " future.", + "start": 1228.28, + "end": 1228.58, + "probability": 1.0 + } + ] + }, + { + "id": 554, + "text": "And ultimately, you know, I know that a lot of people are hostile to the Windows 10 upgrade,", + "start": 1228.78, + "end": 1232.42, + "words": [ + { + "word": " And", + "start": 1228.78, + "end": 1229.0, + "probability": 0.98876953125 + }, + { + "word": " ultimately,", + "start": 1229.0, + "end": 1229.4, + "probability": 0.95849609375 + }, + { + "word": " you", + "start": 1229.7, + "end": 1229.96, + "probability": 0.8330078125 + }, + { + "word": " know,", + "start": 1229.96, + "end": 1230.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 1230.2, + "end": 1230.38, + "probability": 1.0 + }, + { + "word": " know", + "start": 1230.38, + "end": 1230.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 1230.64, + "end": 1230.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 1230.74, + "end": 1230.84, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1230.84, + "end": 1230.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 1230.9, + "end": 1230.94, + "probability": 1.0 + }, + { + "word": " people", + "start": 1230.94, + "end": 1231.08, + "probability": 1.0 + }, + { + "word": " are", + "start": 1231.08, + "end": 1231.2, + "probability": 1.0 + }, + { + "word": " hostile", + "start": 1231.2, + "end": 1231.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 1231.52, + "end": 1231.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1231.76, + "end": 1231.84, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1231.84, + "end": 1232.02, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 1232.02, + "end": 1232.22, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 1232.22, + "end": 1232.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 555, + "text": "and it's kind of, you know, it's bad how they're forcing it on people.", + "start": 1232.48, + "end": 1234.96, + "words": [ + { + "word": " and", + "start": 1232.48, + "end": 1232.64, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1232.64, + "end": 1232.76, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1232.76, + "end": 1232.84, + "probability": 0.8486328125 + }, + { + "word": " of,", + "start": 1232.84, + "end": 1232.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 1232.98, + "end": 1233.22, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1233.22, + "end": 1233.34, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1233.4, + "end": 1233.54, + "probability": 1.0 + }, + { + "word": " bad", + "start": 1233.54, + "end": 1233.88, + "probability": 1.0 + }, + { + "word": " how", + "start": 1233.88, + "end": 1234.08, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1234.08, + "end": 1234.2, + "probability": 1.0 + }, + { + "word": " forcing", + "start": 1234.2, + "end": 1234.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 1234.52, + "end": 1234.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 1234.72, + "end": 1234.8, + "probability": 1.0 + }, + { + "word": " people.", + "start": 1234.8, + "end": 1234.96, + "probability": 1.0 + } + ] + }, + { + "id": 556, + "text": "But it's because of security concerns.", + "start": 1235.2, + "end": 1237.2, + "words": [ + { + "word": " But", + "start": 1235.2, + "end": 1235.6, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1235.6, + "end": 1235.88, + "probability": 1.0 + }, + { + "word": " because", + "start": 1235.88, + "end": 1236.2, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 1236.2, + "end": 1236.4, + "probability": 1.0 + }, + { + "word": " security", + "start": 1236.4, + "end": 1236.7, + "probability": 1.0 + }, + { + "word": " concerns.", + "start": 1236.7, + "end": 1237.2, + "probability": 1.0 + } + ] + }, + { + "id": 557, + "text": "You know, 7 is very old at this point.", + "start": 1237.46, + "end": 1239.68, + "words": [ + { + "word": " You", + "start": 1237.46, + "end": 1237.72, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 1237.72, + "end": 1237.86, + "probability": 1.0 + }, + { + "word": " 7", + "start": 1237.94, + "end": 1238.2, + "probability": 0.9873046875 + }, + { + "word": " is", + "start": 1238.2, + "end": 1238.42, + "probability": 1.0 + }, + { + "word": " very", + "start": 1238.42, + "end": 1238.82, + "probability": 1.0 + }, + { + "word": " old", + "start": 1238.82, + "end": 1239.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 1239.12, + "end": 1239.3, + "probability": 1.0 + }, + { + "word": " this", + "start": 1239.3, + "end": 1239.44, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1239.44, + "end": 1239.68, + "probability": 1.0 + } + ] + }, + { + "id": 558, + "text": "Yep.", + "start": 1239.96, + "end": 1240.36, + "words": [ + { + "word": " Yep.", + "start": 1239.96, + "end": 1240.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 559, + "text": "Everybody's like, but I love me some 7.", + "start": 1240.82, + "end": 1242.62, + "words": [ + { + "word": " Everybody's", + "start": 1240.82, + "end": 1241.22, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 1241.22, + "end": 1241.36, + "probability": 1.0 + }, + { + "word": " but", + "start": 1241.44, + "end": 1241.52, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 1241.52, + "end": 1241.66, + "probability": 1.0 + }, + { + "word": " love", + "start": 1241.66, + "end": 1241.9, + "probability": 0.99560546875 + }, + { + "word": " me", + "start": 1241.9, + "end": 1242.12, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 1242.12, + "end": 1242.3, + "probability": 1.0 + }, + { + "word": " 7.", + "start": 1242.3, + "end": 1242.62, + "probability": 1.0 + } + ] + }, + { + "id": 560, + "text": "Or in Charles' case, I love me some XP.", + "start": 1242.68, + "end": 1245.04, + "words": [ + { + "word": " Or", + "start": 1242.68, + "end": 1242.9, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1242.9, + "end": 1243.12, + "probability": 0.8173828125 + }, + { + "word": " Charles'", + "start": 1243.12, + "end": 1243.68, + "probability": 0.99951171875 + }, + { + "word": " case,", + "start": 1243.82, + "end": 1243.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 1244.1, + "end": 1244.18, + "probability": 1.0 + }, + { + "word": " love", + "start": 1244.18, + "end": 1244.36, + "probability": 1.0 + }, + { + "word": " me", + "start": 1244.36, + "end": 1244.54, + "probability": 1.0 + }, + { + "word": " some", + "start": 1244.54, + "end": 1244.72, + "probability": 1.0 + }, + { + "word": " XP.", + "start": 1244.72, + "end": 1245.04, + "probability": 1.0 + } + ] + }, + { + "id": 561, + "text": "I can't wait until there's some guy who calls in and is like, I'm trying to run a Windows", + "start": 1245.78, + "end": 1249.04, + "words": [ + { + "word": " I", + "start": 1245.78, + "end": 1246.18, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1246.18, + "end": 1246.38, + "probability": 1.0 + }, + { + "word": " wait", + "start": 1246.38, + "end": 1246.5, + "probability": 1.0 + }, + { + "word": " until", + "start": 1246.5, + "end": 1246.66, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1246.66, + "end": 1246.88, + "probability": 1.0 + }, + { + "word": " some", + "start": 1246.88, + "end": 1247.0, + "probability": 1.0 + }, + { + "word": " guy", + "start": 1247.0, + "end": 1247.2, + "probability": 1.0 + }, + { + "word": " who", + "start": 1247.2, + "end": 1247.32, + "probability": 1.0 + }, + { + "word": " calls", + "start": 1247.32, + "end": 1247.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 1247.48, + "end": 1247.64, + "probability": 0.99365234375 + }, + { + "word": " and", + "start": 1247.64, + "end": 1247.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 1247.72, + "end": 1247.78, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1247.78, + "end": 1247.88, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1247.98, + "end": 1248.08, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1248.08, + "end": 1248.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1248.26, + "end": 1248.42, + "probability": 1.0 + }, + { + "word": " run", + "start": 1248.42, + "end": 1248.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1248.7, + "end": 1248.86, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1248.86, + "end": 1249.04, + "probability": 1.0 + } + ] + }, + { + "id": 562, + "text": "3 machine.", + "start": 1249.04, + "end": 1249.72, + "words": [ + { + "word": " 3", + "start": 1249.04, + "end": 1249.38, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1249.38, + "end": 1249.72, + "probability": 1.0 + } + ] + }, + { + "id": 563, + "text": "I need a machine that only runs DOS.", + "start": 1250.16, + "end": 1253.02, + "words": [ + { + "word": " I", + "start": 1250.16, + "end": 1250.56, + "probability": 1.0 + }, + { + "word": " need", + "start": 1250.56, + "end": 1250.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 1250.66, + "end": 1250.86, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1250.86, + "end": 1251.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 1251.88, + "end": 1252.1, + "probability": 1.0 + }, + { + "word": " only", + "start": 1252.1, + "end": 1252.26, + "probability": 1.0 + }, + { + "word": " runs", + "start": 1252.26, + "end": 1252.54, + "probability": 1.0 + }, + { + "word": " DOS.", + "start": 1252.54, + "end": 1253.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 564, + "text": "We've got to get it.", + "start": 1253.96, + "end": 1254.36, + "words": [ + { + "word": " We've", + "start": 1253.96, + "end": 1254.36, + "probability": 0.248779296875 + }, + { + "word": " got", + "start": 1254.36, + "end": 1254.36, + "probability": 0.265869140625 + }, + { + "word": " to", + "start": 1254.36, + "end": 1254.36, + "probability": 0.568359375 + }, + { + "word": " get", + "start": 1254.36, + "end": 1254.36, + "probability": 0.12457275390625 + }, + { + "word": " it.", + "start": 1254.36, + "end": 1254.36, + "probability": 0.1546630859375 + } + ] + }, + { + "id": 565, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 566, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 567, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 568, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 569, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 570, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 571, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 572, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 573, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 574, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 575, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 576, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 577, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 578, + "text": "", + "start": 1254.36, + "end": 1254.36, + "words": [] + }, + { + "id": 579, + "text": "We had one of those that came into the shop recently where the newest software he could", + "start": 1254.38, + "end": 1260.0, + "words": [ + { + "word": " We", + "start": 1254.38, + "end": 1254.38, + "probability": 0.68359375 + }, + { + "word": " had", + "start": 1254.38, + "end": 1254.76, + "probability": 0.994140625 + }, + { + "word": " one", + "start": 1254.76, + "end": 1254.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1254.92, + "end": 1255.0, + "probability": 1.0 + }, + { + "word": " those", + "start": 1255.0, + "end": 1255.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1255.14, + "end": 1255.34, + "probability": 0.99951171875 + }, + { + "word": " came", + "start": 1255.34, + "end": 1255.6, + "probability": 1.0 + }, + { + "word": " into", + "start": 1255.6, + "end": 1255.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1255.76, + "end": 1255.86, + "probability": 1.0 + }, + { + "word": " shop", + "start": 1255.86, + "end": 1256.12, + "probability": 0.99951171875 + }, + { + "word": " recently", + "start": 1256.12, + "end": 1257.02, + "probability": 0.99755859375 + }, + { + "word": " where", + "start": 1257.02, + "end": 1257.4, + "probability": 0.80126953125 + }, + { + "word": " the", + "start": 1257.4, + "end": 1258.08, + "probability": 0.97802734375 + }, + { + "word": " newest", + "start": 1258.08, + "end": 1259.42, + "probability": 0.99951171875 + }, + { + "word": " software", + "start": 1259.42, + "end": 1259.7, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 1259.7, + "end": 1259.9, + "probability": 0.99853515625 + }, + { + "word": " could", + "start": 1259.9, + "end": 1260.0, + "probability": 0.9453125 + } + ] + }, + { + "id": 580, + "text": "run on there was 98.", + "start": 1260.0, + "end": 1260.78, + "words": [ + { + "word": " run", + "start": 1260.0, + "end": 1260.14, + "probability": 0.98974609375 + }, + { + "word": " on", + "start": 1260.14, + "end": 1260.24, + "probability": 0.8408203125 + }, + { + "word": " there", + "start": 1260.24, + "end": 1260.32, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1260.32, + "end": 1260.44, + "probability": 1.0 + }, + { + "word": " 98.", + "start": 1260.44, + "end": 1260.78, + "probability": 0.9931640625 + } + ] + }, + { + "id": 581, + "text": "I think I remember that because I really wanted to, I was like, can we just take an extra", + "start": 1262.0, + "end": 1265.3, + "words": [ + { + "word": " I", + "start": 1262.0, + "end": 1262.38, + "probability": 0.9921875 + }, + { + "word": " think", + "start": 1262.38, + "end": 1262.54, + "probability": 1.0 + }, + { + "word": " I", + "start": 1262.54, + "end": 1262.62, + "probability": 1.0 + }, + { + "word": " remember", + "start": 1262.62, + "end": 1262.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1262.78, + "end": 1262.98, + "probability": 1.0 + }, + { + "word": " because", + "start": 1262.98, + "end": 1263.18, + "probability": 0.9345703125 + }, + { + "word": " I", + "start": 1263.18, + "end": 1263.36, + "probability": 1.0 + }, + { + "word": " really", + "start": 1263.36, + "end": 1263.52, + "probability": 0.76318359375 + }, + { + "word": " wanted", + "start": 1263.52, + "end": 1263.8, + "probability": 1.0 + }, + { + "word": " to,", + "start": 1263.8, + "end": 1264.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 1264.06, + "end": 1264.3, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 1264.3, + "end": 1264.4, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1264.4, + "end": 1264.5, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 1264.54, + "end": 1264.6, + "probability": 0.99169921875 + }, + { + "word": " we", + "start": 1264.6, + "end": 1264.72, + "probability": 1.0 + }, + { + "word": " just", + "start": 1264.72, + "end": 1264.86, + "probability": 1.0 + }, + { + "word": " take", + "start": 1264.86, + "end": 1265.02, + "probability": 1.0 + }, + { + "word": " an", + "start": 1265.02, + "end": 1265.14, + "probability": 1.0 + }, + { + "word": " extra", + "start": 1265.14, + "end": 1265.3, + "probability": 1.0 + } + ] + }, + { + "id": 582, + "text": "day so I can put Doom 98 on this and play it?", + "start": 1265.3, + "end": 1267.36, + "words": [ + { + "word": " day", + "start": 1265.3, + "end": 1265.5, + "probability": 1.0 + }, + { + "word": " so", + "start": 1265.5, + "end": 1265.64, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1265.64, + "end": 1265.76, + "probability": 1.0 + }, + { + "word": " can", + "start": 1265.76, + "end": 1265.84, + "probability": 1.0 + }, + { + "word": " put", + "start": 1265.84, + "end": 1265.98, + "probability": 1.0 + }, + { + "word": " Doom", + "start": 1265.98, + "end": 1266.18, + "probability": 0.99072265625 + }, + { + "word": " 98", + "start": 1266.18, + "end": 1266.42, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 1266.42, + "end": 1266.68, + "probability": 1.0 + }, + { + "word": " this", + "start": 1266.68, + "end": 1266.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 1266.86, + "end": 1267.04, + "probability": 0.998046875 + }, + { + "word": " play", + "start": 1267.04, + "end": 1267.24, + "probability": 0.99951171875 + }, + { + "word": " it?", + "start": 1267.24, + "end": 1267.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 583, + "text": "The techs were like, no, go away.", + "start": 1267.46, + "end": 1269.34, + "words": [ + { + "word": " The", + "start": 1267.46, + "end": 1267.78, + "probability": 0.9833984375 + }, + { + "word": " techs", + "start": 1267.78, + "end": 1268.02, + "probability": 0.8173828125 + }, + { + "word": " were", + "start": 1268.02, + "end": 1268.1, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1268.1, + "end": 1268.24, + "probability": 1.0 + }, + { + "word": " no,", + "start": 1268.32, + "end": 1268.52, + "probability": 1.0 + }, + { + "word": " go", + "start": 1268.6, + "end": 1269.12, + "probability": 1.0 + }, + { + "word": " away.", + "start": 1269.12, + "end": 1269.34, + "probability": 1.0 + } + ] + }, + { + "id": 584, + "text": "And see, this is one of those problems.", + "start": 1269.6, + "end": 1271.52, + "words": [ + { + "word": " And", + "start": 1269.6, + "end": 1269.8, + "probability": 0.59619140625 + }, + { + "word": " see,", + "start": 1269.8, + "end": 1270.26, + "probability": 0.83740234375 + }, + { + "word": " this", + "start": 1270.34, + "end": 1270.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 1270.46, + "end": 1270.6, + "probability": 1.0 + }, + { + "word": " one", + "start": 1270.6, + "end": 1271.02, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 1271.02, + "end": 1271.14, + "probability": 1.0 + }, + { + "word": " those", + "start": 1271.14, + "end": 1271.22, + "probability": 1.0 + }, + { + "word": " problems.", + "start": 1271.22, + "end": 1271.52, + "probability": 1.0 + } + ] + }, + { + "id": 585, + "text": "We tell people, you don't do the bleeding edge upgrades.", + "start": 1271.82, + "end": 1275.22, + "words": [ + { + "word": " We", + "start": 1271.82, + "end": 1272.1, + "probability": 0.99755859375 + }, + { + "word": " tell", + "start": 1272.1, + "end": 1272.72, + "probability": 1.0 + }, + { + "word": " people,", + "start": 1272.72, + "end": 1273.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 1273.22, + "end": 1273.66, + "probability": 0.99462890625 + }, + { + "word": " don't", + "start": 1273.66, + "end": 1273.96, + "probability": 1.0 + }, + { + "word": " do", + "start": 1273.96, + "end": 1274.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1274.42, + "end": 1274.56, + "probability": 1.0 + }, + { + "word": " bleeding", + "start": 1274.56, + "end": 1274.74, + "probability": 0.94970703125 + }, + { + "word": " edge", + "start": 1274.74, + "end": 1274.92, + "probability": 0.990234375 + }, + { + "word": " upgrades.", + "start": 1274.92, + "end": 1275.22, + "probability": 1.0 + } + ] + }, + { + "id": 586, + "text": "Don't do the like, upgrade immediately as soon as it's out there because you're going", + "start": 1276.0, + "end": 1281.28, + "words": [ + { + "word": " Don't", + "start": 1276.0, + "end": 1276.38, + "probability": 0.9453125 + }, + { + "word": " do", + "start": 1276.38, + "end": 1276.52, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1276.52, + "end": 1276.64, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1276.64, + "end": 1277.08, + "probability": 0.025726318359375 + }, + { + "word": " upgrade", + "start": 1277.16, + "end": 1278.42, + "probability": 0.89404296875 + }, + { + "word": " immediately", + "start": 1278.42, + "end": 1279.46, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1279.46, + "end": 1279.96, + "probability": 0.99951171875 + }, + { + "word": " soon", + "start": 1279.96, + "end": 1280.14, + "probability": 1.0 + }, + { + "word": " as", + "start": 1280.14, + "end": 1280.3, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1280.3, + "end": 1280.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 1280.5, + "end": 1280.62, + "probability": 1.0 + }, + { + "word": " there", + "start": 1280.62, + "end": 1280.82, + "probability": 1.0 + }, + { + "word": " because", + "start": 1280.82, + "end": 1281.02, + "probability": 0.83984375 + }, + { + "word": " you're", + "start": 1281.02, + "end": 1281.22, + "probability": 0.978515625 + }, + { + "word": " going", + "start": 1281.22, + "end": 1281.28, + "probability": 0.99072265625 + } + ] + }, + { + "id": 587, + "text": "to hurt yourself.", + "start": 1281.28, + "end": 1281.72, + "words": [ + { + "word": " to", + "start": 1281.28, + "end": 1281.32, + "probability": 1.0 + }, + { + "word": " hurt", + "start": 1281.32, + "end": 1281.46, + "probability": 1.0 + }, + { + "word": " yourself.", + "start": 1281.46, + "end": 1281.72, + "probability": 1.0 + } + ] + }, + { + "id": 588, + "text": "Right?", + "start": 1282.14, + "end": 1282.52, + "words": [ + { + "word": " Right?", + "start": 1282.14, + "end": 1282.52, + "probability": 3.409385681152344e-05 + } + ] + }, + { + "id": 589, + "text": "So at the same time, if you wait too long, if you get to the point where Windows XP is", + "start": 1282.52, + "end": 1289.2, + "words": [ + { + "word": " So", + "start": 1282.52, + "end": 1282.52, + "probability": 0.01296234130859375 + }, + { + "word": " at", + "start": 1282.52, + "end": 1282.52, + "probability": 0.77001953125 + }, + { + "word": " the", + "start": 1282.52, + "end": 1282.6, + "probability": 0.99853515625 + }, + { + "word": " same", + "start": 1282.6, + "end": 1282.76, + "probability": 0.9990234375 + }, + { + "word": " time,", + "start": 1282.76, + "end": 1283.18, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1283.18, + "end": 1283.6, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1283.6, + "end": 1283.76, + "probability": 1.0 + }, + { + "word": " wait", + "start": 1283.76, + "end": 1284.08, + "probability": 0.99609375 + }, + { + "word": " too", + "start": 1284.08, + "end": 1284.38, + "probability": 0.99853515625 + }, + { + "word": " long,", + "start": 1284.38, + "end": 1284.88, + "probability": 1.0 + }, + { + "word": " if", + "start": 1285.02, + "end": 1285.64, + "probability": 0.7607421875 + }, + { + "word": " you", + "start": 1285.64, + "end": 1285.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 1285.88, + "end": 1286.4, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1286.4, + "end": 1286.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1286.72, + "end": 1286.88, + "probability": 0.99951171875 + }, + { + "word": " point", + "start": 1286.88, + "end": 1287.2, + "probability": 1.0 + }, + { + "word": " where", + "start": 1287.2, + "end": 1287.52, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 1287.52, + "end": 1288.4, + "probability": 0.99755859375 + }, + { + "word": " XP", + "start": 1288.4, + "end": 1288.84, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1288.84, + "end": 1289.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 590, + "text": "still on your machine and it's been completely unserviceable by Microsoft for seven years,", + "start": 1289.2, + "end": 1295.82, + "words": [ + { + "word": " still", + "start": 1289.2, + "end": 1289.42, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1289.42, + "end": 1289.58, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1289.58, + "end": 1289.7, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1289.7, + "end": 1290.06, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1290.06, + "end": 1290.9, + "probability": 0.81982421875 + }, + { + "word": " it's", + "start": 1290.9, + "end": 1291.42, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 1291.42, + "end": 1291.6, + "probability": 1.0 + }, + { + "word": " completely", + "start": 1291.6, + "end": 1292.4, + "probability": 0.9990234375 + }, + { + "word": " unserviceable", + "start": 1292.4, + "end": 1293.64, + "probability": 0.99853515625 + }, + { + "word": " by", + "start": 1293.64, + "end": 1293.9, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 1293.9, + "end": 1294.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 1294.3, + "end": 1294.78, + "probability": 0.99951171875 + }, + { + "word": " seven", + "start": 1294.78, + "end": 1295.2, + "probability": 0.95849609375 + }, + { + "word": " years,", + "start": 1295.2, + "end": 1295.82, + "probability": 1.0 + } + ] + }, + { + "id": 591, + "text": "you've painted yourself into an upgrade corner.", + "start": 1296.8, + "end": 1298.84, + "words": [ + { + "word": " you've", + "start": 1296.8, + "end": 1297.36, + "probability": 0.9990234375 + }, + { + "word": " painted", + "start": 1297.36, + "end": 1297.62, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 1297.62, + "end": 1297.9, + "probability": 1.0 + }, + { + "word": " into", + "start": 1297.9, + "end": 1298.18, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1298.18, + "end": 1298.32, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 1298.32, + "end": 1298.52, + "probability": 0.9990234375 + }, + { + "word": " corner.", + "start": 1298.52, + "end": 1298.84, + "probability": 1.0 + } + ] + }, + { + "id": 592, + "text": "You can't upgrade at that point.", + "start": 1299.02, + "end": 1300.5, + "words": [ + { + "word": " You", + "start": 1299.02, + "end": 1299.24, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 1299.24, + "end": 1299.64, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 1299.64, + "end": 1299.86, + "probability": 1.0 + }, + { + "word": " at", + "start": 1299.86, + "end": 1300.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1300.06, + "end": 1300.2, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1300.2, + "end": 1300.5, + "probability": 1.0 + } + ] + }, + { + "id": 593, + "text": "So before your upgrade ability expires, you should upgrade.", + "start": 1300.88, + "end": 1305.9, + "words": [ + { + "word": " So", + "start": 1300.88, + "end": 1301.44, + "probability": 0.99267578125 + }, + { + "word": " before", + "start": 1301.44, + "end": 1302.3, + "probability": 0.9951171875 + }, + { + "word": " your", + "start": 1302.3, + "end": 1302.72, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 1302.72, + "end": 1303.2, + "probability": 0.990234375 + }, + { + "word": " ability", + "start": 1303.2, + "end": 1303.56, + "probability": 0.96923828125 + }, + { + "word": " expires,", + "start": 1303.56, + "end": 1304.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 1304.66, + "end": 1304.98, + "probability": 1.0 + }, + { + "word": " should", + "start": 1304.98, + "end": 1305.3, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1305.3, + "end": 1305.9, + "probability": 1.0 + } + ] + }, + { + "id": 594, + "text": "Not to mention that the upgrade shock that people get where they're like, Windows 10", + "start": 1306.18, + "end": 1309.32, + "words": [ + { + "word": " Not", + "start": 1306.18, + "end": 1306.34, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1306.34, + "end": 1306.46, + "probability": 1.0 + }, + { + "word": " mention", + "start": 1306.46, + "end": 1306.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 1306.7, + "end": 1306.84, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1306.84, + "end": 1306.98, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 1306.98, + "end": 1307.3, + "probability": 1.0 + }, + { + "word": " shock", + "start": 1307.3, + "end": 1307.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1307.58, + "end": 1307.82, + "probability": 1.0 + }, + { + "word": " people", + "start": 1307.82, + "end": 1308.02, + "probability": 1.0 + }, + { + "word": " get", + "start": 1308.02, + "end": 1308.28, + "probability": 1.0 + }, + { + "word": " where", + "start": 1308.28, + "end": 1308.48, + "probability": 0.98779296875 + }, + { + "word": " they're", + "start": 1308.48, + "end": 1308.6, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1308.6, + "end": 1308.78, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 1308.84, + "end": 1309.02, + "probability": 0.9990234375 + }, + { + "word": " 10", + "start": 1309.02, + "end": 1309.32, + "probability": 0.99609375 + } + ] + }, + { + "id": 595, + "text": "is just so much different.", + "start": 1309.32, + "end": 1310.3, + "words": [ + { + "word": " is", + "start": 1309.32, + "end": 1309.46, + "probability": 1.0 + }, + { + "word": " just", + "start": 1309.46, + "end": 1309.6, + "probability": 1.0 + }, + { + "word": " so", + "start": 1309.6, + "end": 1309.78, + "probability": 1.0 + }, + { + "word": " much", + "start": 1309.78, + "end": 1309.98, + "probability": 1.0 + }, + { + "word": " different.", + "start": 1309.98, + "end": 1310.3, + "probability": 1.0 + } + ] + }, + { + "id": 596, + "text": "That happens because you don't upgrade.", + "start": 1310.4, + "end": 1312.0, + "words": [ + { + "word": " That", + "start": 1310.4, + "end": 1310.8, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 1310.8, + "end": 1311.08, + "probability": 1.0 + }, + { + "word": " because", + "start": 1311.08, + "end": 1311.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1311.3, + "end": 1311.54, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1311.54, + "end": 1311.76, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1311.76, + "end": 1312.0, + "probability": 1.0 + } + ] + }, + { + "id": 597, + "text": "If you're on XP and then you jump to Windows 10, yeah, it's way different.", + "start": 1312.0, + "end": 1315.12, + "words": [ + { + "word": " If", + "start": 1312.0, + "end": 1312.28, + "probability": 0.94091796875 + }, + { + "word": " you're", + "start": 1312.28, + "end": 1312.54, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1312.54, + "end": 1312.66, + "probability": 1.0 + }, + { + "word": " XP", + "start": 1312.66, + "end": 1312.92, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1312.92, + "end": 1313.14, + "probability": 0.97265625 + }, + { + "word": " then", + "start": 1313.14, + "end": 1313.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1313.22, + "end": 1313.32, + "probability": 1.0 + }, + { + "word": " jump", + "start": 1313.32, + "end": 1313.52, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1313.52, + "end": 1313.64, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1313.64, + "end": 1313.76, + "probability": 0.99951171875 + }, + { + "word": " 10,", + "start": 1313.76, + "end": 1313.96, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 1314.12, + "end": 1314.36, + "probability": 0.9892578125 + }, + { + "word": " it's", + "start": 1314.42, + "end": 1314.6, + "probability": 1.0 + }, + { + "word": " way", + "start": 1314.6, + "end": 1314.8, + "probability": 1.0 + }, + { + "word": " different.", + "start": 1314.8, + "end": 1315.12, + "probability": 1.0 + } + ] + }, + { + "id": 598, + "text": "Right.", + "start": 1315.38, + "end": 1315.54, + "words": [ + { + "word": " Right.", + "start": 1315.38, + "end": 1315.54, + "probability": 0.95751953125 + } + ] + }, + { + "id": 599, + "text": "It's a huge difference if you're going from XP.", + "start": 1315.58, + "end": 1317.28, + "words": [ + { + "word": " It's", + "start": 1315.58, + "end": 1315.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 1315.76, + "end": 1315.8, + "probability": 1.0 + }, + { + "word": " huge", + "start": 1315.8, + "end": 1316.14, + "probability": 1.0 + }, + { + "word": " difference", + "start": 1316.14, + "end": 1316.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 1316.5, + "end": 1316.72, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1316.72, + "end": 1316.82, + "probability": 1.0 + }, + { + "word": " going", + "start": 1316.82, + "end": 1316.86, + "probability": 0.9990234375 + }, + { + "word": " from", + "start": 1316.86, + "end": 1317.0, + "probability": 0.9990234375 + }, + { + "word": " XP.", + "start": 1317.0, + "end": 1317.28, + "probability": 1.0 + } + ] + }, + { + "id": 600, + "text": "However, if you did like most of us did, which is you went to seven, then you went to eight,", + "start": 1318.3200000000002, + "end": 1323.32, + "words": [ + { + "word": " However,", + "start": 1318.3200000000002, + "end": 1318.68, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1318.68, + "end": 1319.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 1319.04, + "end": 1319.22, + "probability": 1.0 + }, + { + "word": " did", + "start": 1319.22, + "end": 1320.18, + "probability": 0.98486328125 + }, + { + "word": " like", + "start": 1320.18, + "end": 1320.4, + "probability": 1.0 + }, + { + "word": " most", + "start": 1320.4, + "end": 1320.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 1320.7, + "end": 1320.78, + "probability": 1.0 + }, + { + "word": " us", + "start": 1320.78, + "end": 1320.9, + "probability": 1.0 + }, + { + "word": " did,", + "start": 1320.9, + "end": 1321.02, + "probability": 1.0 + }, + { + "word": " which", + "start": 1321.12, + "end": 1321.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 1321.32, + "end": 1321.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 1321.52, + "end": 1321.7, + "probability": 0.99853515625 + }, + { + "word": " went", + "start": 1321.7, + "end": 1321.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1321.86, + "end": 1321.98, + "probability": 1.0 + }, + { + "word": " seven,", + "start": 1321.98, + "end": 1322.2, + "probability": 0.047882080078125 + }, + { + "word": " then", + "start": 1322.36, + "end": 1322.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 1322.7, + "end": 1322.82, + "probability": 1.0 + }, + { + "word": " went", + "start": 1322.82, + "end": 1322.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1322.94, + "end": 1323.04, + "probability": 1.0 + }, + { + "word": " eight,", + "start": 1323.04, + "end": 1323.32, + "probability": 1.0 + } + ] + }, + { + "id": 601, + "text": "and then you went back to seven, then you went to 10, yeah, it's not that big of a deal.", + "start": 1323.34, + "end": 1326.76, + "words": [ + { + "word": " and", + "start": 1323.34, + "end": 1323.44, + "probability": 0.61865234375 + }, + { + "word": " then", + "start": 1323.44, + "end": 1323.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 1323.52, + "end": 1323.62, + "probability": 1.0 + }, + { + "word": " went", + "start": 1323.62, + "end": 1323.72, + "probability": 1.0 + }, + { + "word": " back", + "start": 1323.72, + "end": 1323.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1323.94, + "end": 1324.08, + "probability": 1.0 + }, + { + "word": " seven,", + "start": 1324.08, + "end": 1324.44, + "probability": 1.0 + }, + { + "word": " then", + "start": 1324.5, + "end": 1324.74, + "probability": 0.84326171875 + }, + { + "word": " you", + "start": 1324.74, + "end": 1324.86, + "probability": 1.0 + }, + { + "word": " went", + "start": 1324.86, + "end": 1324.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 1324.98, + "end": 1325.1, + "probability": 1.0 + }, + { + "word": " 10,", + "start": 1325.1, + "end": 1325.4, + "probability": 0.2509765625 + }, + { + "word": " yeah,", + "start": 1325.5, + "end": 1325.88, + "probability": 0.98974609375 + }, + { + "word": " it's", + "start": 1325.94, + "end": 1326.06, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1326.06, + "end": 1326.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 1326.1, + "end": 1326.24, + "probability": 1.0 + }, + { + "word": " big", + "start": 1326.24, + "end": 1326.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 1326.4, + "end": 1326.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 1326.5, + "end": 1326.52, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 1326.52, + "end": 1326.76, + "probability": 1.0 + } + ] + }, + { + "id": 602, + "text": "You forgot Vista and that whole thing.", + "start": 1328.16, + "end": 1329.8, + "words": [ + { + "word": " You", + "start": 1328.16, + "end": 1328.52, + "probability": 0.9990234375 + }, + { + "word": " forgot", + "start": 1328.52, + "end": 1328.74, + "probability": 1.0 + }, + { + "word": " Vista", + "start": 1328.74, + "end": 1329.1, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 1329.1, + "end": 1329.26, + "probability": 0.98974609375 + }, + { + "word": " that", + "start": 1329.26, + "end": 1329.38, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1329.38, + "end": 1329.54, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1329.54, + "end": 1329.8, + "probability": 1.0 + } + ] + }, + { + "id": 603, + "text": "We shall not name it.", + "start": 1331.0200000000002, + "end": 1332.36, + "words": [ + { + "word": " We", + "start": 1331.0200000000002, + "end": 1331.38, + "probability": 1.0 + }, + { + "word": " shall", + "start": 1331.38, + "end": 1331.6, + "probability": 1.0 + }, + { + "word": " not", + "start": 1331.6, + "end": 1331.96, + "probability": 1.0 + }, + { + "word": " name", + "start": 1331.96, + "end": 1332.32, + "probability": 0.99658203125 + }, + { + "word": " it.", + "start": 1332.32, + "end": 1332.36, + "probability": 0.300537109375 + } + ] + }, + { + "id": 604, + "text": "We don't speak that name here.", + "start": 1332.36, + "end": 1333.66, + "words": [ + { + "word": " We", + "start": 1332.36, + "end": 1332.58, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 1332.58, + "end": 1332.7, + "probability": 1.0 + }, + { + "word": " speak", + "start": 1332.7, + "end": 1332.88, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1332.88, + "end": 1333.16, + "probability": 1.0 + }, + { + "word": " name", + "start": 1333.16, + "end": 1333.4, + "probability": 1.0 + }, + { + "word": " here.", + "start": 1333.4, + "end": 1333.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 605, + "text": "There's two operating systems we don't say, Vista and Millennium.", + "start": 1334.16, + "end": 1338.42, + "words": [ + { + "word": " There's", + "start": 1334.16, + "end": 1334.52, + "probability": 0.9990234375 + }, + { + "word": " two", + "start": 1334.52, + "end": 1334.66, + "probability": 1.0 + }, + { + "word": " operating", + "start": 1334.66, + "end": 1335.12, + "probability": 1.0 + }, + { + "word": " systems", + "start": 1335.12, + "end": 1335.42, + "probability": 1.0 + }, + { + "word": " we", + "start": 1335.42, + "end": 1335.8, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 1335.8, + "end": 1336.16, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1336.16, + "end": 1336.36, + "probability": 1.0 + }, + { + "word": " Vista", + "start": 1336.62, + "end": 1337.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 1337.84, + "end": 1337.98, + "probability": 0.99658203125 + }, + { + "word": " Millennium.", + "start": 1337.98, + "end": 1338.42, + "probability": 0.9931640625 + } + ] + }, + { + "id": 606, + "text": "Yeah, I was going to say.", + "start": 1338.48, + "end": 1339.1, + "words": [ + { + "word": " Yeah,", + "start": 1338.48, + "end": 1338.7, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1338.74, + "end": 1338.78, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 1338.78, + "end": 1338.84, + "probability": 1.0 + }, + { + "word": " going", + "start": 1338.84, + "end": 1338.92, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1338.92, + "end": 1338.96, + "probability": 1.0 + }, + { + "word": " say.", + "start": 1338.96, + "end": 1339.1, + "probability": 1.0 + } + ] + }, + { + "id": 607, + "text": "Yeah, those don't exist.", + "start": 1339.16, + "end": 1340.86, + "words": [ + { + "word": " Yeah,", + "start": 1339.16, + "end": 1339.34, + "probability": 0.45263671875 + }, + { + "word": " those", + "start": 1339.34, + "end": 1339.88, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1339.88, + "end": 1340.6, + "probability": 1.0 + }, + { + "word": " exist.", + "start": 1340.6, + "end": 1340.86, + "probability": 1.0 + } + ] + }, + { + "id": 608, + "text": "Yeah.", + "start": 1341.6200000000001, + "end": 1341.98, + "words": [ + { + "word": " Yeah.", + "start": 1341.6200000000001, + "end": 1341.98, + "probability": 0.3095703125 + } + ] + }, + { + "id": 609, + "text": "There's just terrible, terrible pieces of software.", + "start": 1341.98, + "end": 1344.74, + "words": [ + { + "word": " There's", + "start": 1341.98, + "end": 1342.18, + "probability": 0.609375 + }, + { + "word": " just", + "start": 1342.18, + "end": 1342.3, + "probability": 1.0 + }, + { + "word": " terrible,", + "start": 1342.3, + "end": 1342.82, + "probability": 1.0 + }, + { + "word": " terrible", + "start": 1342.92, + "end": 1343.42, + "probability": 1.0 + }, + { + "word": " pieces", + "start": 1343.42, + "end": 1343.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 1343.98, + "end": 1344.24, + "probability": 1.0 + }, + { + "word": " software.", + "start": 1344.24, + "end": 1344.74, + "probability": 1.0 + } + ] + }, + { + "id": 610, + "text": "Oh, that's just gross.", + "start": 1345.8799999999999, + "end": 1348.48, + "words": [ + { + "word": " Oh,", + "start": 1345.8799999999999, + "end": 1346.36, + "probability": 0.7861328125 + }, + { + "word": " that's", + "start": 1346.64, + "end": 1347.04, + "probability": 0.783203125 + }, + { + "word": " just", + "start": 1347.04, + "end": 1347.28, + "probability": 1.0 + }, + { + "word": " gross.", + "start": 1347.28, + "end": 1348.48, + "probability": 0.85498046875 + } + ] + }, + { + "id": 611, + "text": "I can't believe you mentioned that on the show.", + "start": 1349.08, + "end": 1350.88, + "words": [ + { + "word": " I", + "start": 1349.08, + "end": 1349.48, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 1349.48, + "end": 1349.72, + "probability": 1.0 + }, + { + "word": " believe", + "start": 1349.72, + "end": 1349.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 1349.88, + "end": 1350.08, + "probability": 1.0 + }, + { + "word": " mentioned", + "start": 1350.08, + "end": 1350.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1350.3, + "end": 1350.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 1350.52, + "end": 1350.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 1350.62, + "end": 1350.74, + "probability": 1.0 + }, + { + "word": " show.", + "start": 1350.74, + "end": 1350.88, + "probability": 1.0 + } + ] + }, + { + "id": 612, + "text": "Vista made us appreciate seven even more.", + "start": 1351.02, + "end": 1353.1, + "words": [ + { + "word": " Vista", + "start": 1351.02, + "end": 1351.28, + "probability": 0.98779296875 + }, + { + "word": " made", + "start": 1351.28, + "end": 1351.46, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 1351.46, + "end": 1351.64, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 1351.64, + "end": 1352.0, + "probability": 0.99951171875 + }, + { + "word": " seven", + "start": 1352.0, + "end": 1352.34, + "probability": 0.0201873779296875 + }, + { + "word": " even", + "start": 1352.34, + "end": 1352.78, + "probability": 0.99853515625 + }, + { + "word": " more.", + "start": 1352.78, + "end": 1353.1, + "probability": 1.0 + } + ] + }, + { + "id": 613, + "text": "Is that what it is?", + "start": 1353.18, + "end": 1353.86, + "words": [ + { + "word": " Is", + "start": 1353.18, + "end": 1353.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1353.3, + "end": 1353.4, + "probability": 1.0 + }, + { + "word": " what", + "start": 1353.4, + "end": 1353.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 1353.56, + "end": 1353.66, + "probability": 1.0 + }, + { + "word": " is?", + "start": 1353.66, + "end": 1353.86, + "probability": 1.0 + } + ] + }, + { + "id": 614, + "text": "Yeah.", + "start": 1353.98, + "end": 1354.1, + "words": [ + { + "word": " Yeah.", + "start": 1353.98, + "end": 1354.1, + "probability": 0.017303466796875 + } + ] + }, + { + "id": 615, + "text": "Give us a call, 790-2040.", + "start": 1354.86, + "end": 1356.74, + "words": [ + { + "word": " Give", + "start": 1354.86, + "end": 1355.34, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 1355.34, + "end": 1355.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 1355.54, + "end": 1355.54, + "probability": 1.0 + }, + { + "word": " call,", + "start": 1355.54, + "end": 1355.7, + "probability": 1.0 + }, + { + "word": " 790", + "start": 1355.76, + "end": 1356.16, + "probability": 0.998046875 + }, + { + "word": "-2040.", + "start": 1356.16, + "end": 1356.74, + "probability": 0.98876953125 + } + ] + }, + { + "id": 616, + "text": "We'll be right back.", + "start": 1356.84, + "end": 1357.66, + "words": [ + { + "word": " We'll", + "start": 1356.84, + "end": 1357.24, + "probability": 1.0 + }, + { + "word": " be", + "start": 1357.24, + "end": 1357.32, + "probability": 1.0 + }, + { + "word": " right", + "start": 1357.32, + "end": 1357.44, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1357.44, + "end": 1357.66, + "probability": 1.0 + } + ] + }, + { + "id": 617, + "text": "Whether you're dealing with hardware installation or heaven forbid, a virus.", + "start": 1367.38, + "end": 1371.28, + "words": [ + { + "word": " Whether", + "start": 1367.38, + "end": 1367.86, + "probability": 0.9296875 + }, + { + "word": " you're", + "start": 1367.86, + "end": 1368.2, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 1368.2, + "end": 1368.46, + "probability": 1.0 + }, + { + "word": " with", + "start": 1368.46, + "end": 1368.68, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 1368.68, + "end": 1368.94, + "probability": 0.99951171875 + }, + { + "word": " installation", + "start": 1368.94, + "end": 1369.36, + "probability": 1.0 + }, + { + "word": " or", + "start": 1369.36, + "end": 1369.8, + "probability": 0.9912109375 + }, + { + "word": " heaven", + "start": 1369.8, + "end": 1370.04, + "probability": 0.1539306640625 + }, + { + "word": " forbid,", + "start": 1370.04, + "end": 1370.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 1370.6, + "end": 1370.88, + "probability": 0.99951171875 + }, + { + "word": " virus.", + "start": 1370.88, + "end": 1371.28, + "probability": 1.0 + } + ] + }, + { + "id": 618, + "text": "Oh.", + "start": 1371.36, + "end": 1371.5, + "words": [ + { + "word": " Oh.", + "start": 1371.36, + "end": 1371.5, + "probability": 0.96875 + } + ] + }, + { + "id": 619, + "text": "I'm sorry.", + "start": 1371.56, + "end": 1371.96, + "words": [ + { + "word": " I'm", + "start": 1371.56, + "end": 1371.96, + "probability": 0.1199951171875 + }, + { + "word": " sorry.", + "start": 1371.96, + "end": 1371.96, + "probability": 0.509765625 + } + ] + }, + { + "id": 620, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 621, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 622, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 623, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 624, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 625, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 626, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 627, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 628, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 629, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 630, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 631, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 632, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 633, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 634, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 635, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 636, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 637, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 638, + "text": "", + "start": 1371.96, + "end": 1371.96, + "words": [] + }, + { + "id": 639, + "text": "No.", + "start": 1371.96, + "end": 1372.38, + "words": [ + { + "word": " No.", + "start": 1371.96, + "end": 1372.38, + "probability": 0.61083984375 + } + ] + }, + { + "id": 640, + "text": "No.", + "start": 1372.38, + "end": 1372.68, + "words": [ + { + "word": " No.", + "start": 1372.38, + "end": 1372.68, + "probability": 0.875 + } + ] + }, + { + "id": 641, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 1373.18, + "end": 1376.44, + "words": [ + { + "word": " Mike", + "start": 1373.18, + "end": 1373.74, + "probability": 0.78369140625 + }, + { + "word": " Swanson", + "start": 1373.74, + "end": 1374.2, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1374.2, + "end": 1374.44, + "probability": 0.998046875 + }, + { + "word": " answering", + "start": 1374.44, + "end": 1374.78, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1374.78, + "end": 1375.1, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 1375.1, + "end": 1375.3, + "probability": 0.99853515625 + }, + { + "word": " questions", + "start": 1375.3, + "end": 1375.66, + "probability": 1.0 + }, + { + "word": " one", + "start": 1375.66, + "end": 1375.96, + "probability": 0.99072265625 + }, + { + "word": " by", + "start": 1375.96, + "end": 1376.16, + "probability": 0.9931640625 + }, + { + "word": " one.", + "start": 1376.16, + "end": 1376.44, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "So call in or chat in with yours.", + "start": 1376.54, + "end": 1378.56, + "words": [ + { + "word": " So", + "start": 1376.54, + "end": 1376.88, + "probability": 0.99755859375 + }, + { + "word": " call", + "start": 1376.88, + "end": 1377.08, + "probability": 0.9541015625 + }, + { + "word": " in", + "start": 1377.08, + "end": 1377.3, + "probability": 1.0 + }, + { + "word": " or", + "start": 1377.3, + "end": 1377.56, + "probability": 0.9970703125 + }, + { + "word": " chat", + "start": 1377.56, + "end": 1377.82, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 1377.82, + "end": 1378.06, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1378.06, + "end": 1378.32, + "probability": 0.99951171875 + }, + { + "word": " yours.", + "start": 1378.32, + "end": 1378.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 643, + "text": "The website gurushow.com.", + "start": 1378.84, + "end": 1381.08, + "words": [ + { + "word": " The", + "start": 1378.84, + "end": 1379.2, + "probability": 0.99755859375 + }, + { + "word": " website", + "start": 1379.2, + "end": 1379.54, + "probability": 0.982421875 + }, + { + "word": " gurushow", + "start": 1379.54, + "end": 1380.5, + "probability": 0.7021484375 + }, + { + "word": ".com.", + "start": 1380.5, + "end": 1381.08, + "probability": 1.0 + } + ] + }, + { + "id": 644, + "text": "Tune in, click in and kick back.", + "start": 1381.88, + "end": 1383.68, + "words": [ + { + "word": " Tune", + "start": 1381.64, + "end": 1381.92, + "probability": 1.0 + }, + { + "word": " in,", + "start": 1381.92, + "end": 1382.12, + "probability": 1.0 + }, + { + "word": " click", + "start": 1382.22, + "end": 1382.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 1382.58, + "end": 1382.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 1382.86, + "end": 1383.2, + "probability": 0.219970703125 + }, + { + "word": " kick", + "start": 1383.2, + "end": 1383.36, + "probability": 0.998046875 + }, + { + "word": " back.", + "start": 1383.36, + "end": 1383.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 645, + "text": "This is the Computer Guru Show on AM1030 KVOY The Voice.", + "start": 1383.9, + "end": 1388.7, + "words": [ + { + "word": " This", + "start": 1383.9, + "end": 1384.38, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1384.38, + "end": 1384.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1384.8, + "end": 1384.92, + "probability": 0.859375 + }, + { + "word": " Computer", + "start": 1384.92, + "end": 1385.16, + "probability": 0.888671875 + }, + { + "word": " Guru", + "start": 1385.16, + "end": 1385.48, + "probability": 0.99853515625 + }, + { + "word": " Show", + "start": 1385.48, + "end": 1385.88, + "probability": 0.96337890625 + }, + { + "word": " on", + "start": 1385.88, + "end": 1386.3, + "probability": 0.9970703125 + }, + { + "word": " AM1030", + "start": 1386.3, + "end": 1387.2, + "probability": 0.751953125 + }, + { + "word": " KVOY", + "start": 1387.2, + "end": 1388.1, + "probability": 0.78955078125 + }, + { + "word": " The", + "start": 1388.1, + "end": 1388.48, + "probability": 0.92333984375 + }, + { + "word": " Voice.", + "start": 1388.48, + "end": 1388.7, + "probability": 1.0 + } + ] + }, + { + "id": 646, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 1398.7, + "end": 1401.9, + "words": [ + { + "word": " Mike", + "start": 1398.7, + "end": 1399.26, + "probability": 0.66455078125 + }, + { + "word": " Swanson,", + "start": 1399.26, + "end": 1399.76, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1399.88, + "end": 1400.04, + "probability": 0.9912109375 + }, + { + "word": " computer", + "start": 1400.04, + "end": 1400.4, + "probability": 0.9755859375 + }, + { + "word": " guru,", + "start": 1400.4, + "end": 1400.82, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1400.9, + "end": 1401.14, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1401.14, + "end": 1401.36, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1401.36, + "end": 1401.52, + "probability": 1.0 + }, + { + "word": " click", + "start": 1401.52, + "end": 1401.7, + "probability": 0.99755859375 + }, + { + "word": " away.", + "start": 1401.7, + "end": 1401.9, + "probability": 0.99658203125 + } + ] + }, + { + "id": 647, + "text": "", + "start": 1401.94, + "end": 1401.94, + "words": [] + }, + { + "id": 648, + "text": "", + "start": 1401.94, + "end": 1401.94, + "words": [] + }, + { + "id": 649, + "text": "", + "start": 1401.94, + "end": 1401.94, + "words": [] + }, + { + "id": 650, + "text": "", + "start": 1401.94, + "end": 1401.94, + "words": [] + }, + { + "id": 651, + "text": "Listen and watch at gurushow.com.", + "start": 1401.94, + "end": 1404.5, + "words": [ + { + "word": " Listen", + "start": 1401.94, + "end": 1402.58, + "probability": 0.7724609375 + }, + { + "word": " and", + "start": 1402.58, + "end": 1402.76, + "probability": 0.9990234375 + }, + { + "word": " watch", + "start": 1402.76, + "end": 1403.04, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 1403.04, + "end": 1403.22, + "probability": 0.95947265625 + }, + { + "word": " gurushow", + "start": 1403.22, + "end": 1403.8, + "probability": 0.81103515625 + }, + { + "word": ".com.", + "start": 1403.8, + "end": 1404.5, + "probability": 1.0 + } + ] + }, + { + "id": 652, + "text": "This is the Computer Guru Show.", + "start": 1404.88, + "end": 1406.68, + "words": [ + { + "word": " This", + "start": 1404.88, + "end": 1405.24, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1405.24, + "end": 1405.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1405.6, + "end": 1405.74, + "probability": 0.849609375 + }, + { + "word": " Computer", + "start": 1405.74, + "end": 1406.0, + "probability": 0.99462890625 + }, + { + "word": " Guru", + "start": 1406.0, + "end": 1406.34, + "probability": 0.98828125 + }, + { + "word": " Show.", + "start": 1406.34, + "end": 1406.68, + "probability": 0.99609375 + } + ] + }, + { + "id": 653, + "text": "Welcome to my world.", + "start": 1407.3200000000002, + "end": 1408.5, + "words": [ + { + "word": " Welcome", + "start": 1407.3200000000002, + "end": 1407.68, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1407.68, + "end": 1408.0, + "probability": 0.47998046875 + }, + { + "word": " my", + "start": 1408.0, + "end": 1408.42, + "probability": 0.587890625 + }, + { + "word": " world.", + "start": 1408.42, + "end": 1408.5, + "probability": 0.96435546875 + } + ] + }, + { + "id": 654, + "text": "Welcome back to the Computer Guru Show.", + "start": 1408.5, + "end": 1410.02, + "words": [ + { + "word": " Welcome", + "start": 1408.5, + "end": 1408.86, + "probability": 0.7783203125 + }, + { + "word": " back", + "start": 1408.86, + "end": 1409.1, + "probability": 0.9833984375 + }, + { + "word": " to", + "start": 1409.1, + "end": 1409.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1409.28, + "end": 1409.36, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 1409.36, + "end": 1409.58, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 1409.58, + "end": 1409.8, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 1409.8, + "end": 1410.02, + "probability": 1.0 + } + ] + }, + { + "id": 655, + "text": "My name's Mike, here to deal with your technology needs and treat you like a person in the process.", + "start": 1410.06, + "end": 1414.14, + "words": [ + { + "word": " My", + "start": 1410.06, + "end": 1410.16, + "probability": 0.99853515625 + }, + { + "word": " name's", + "start": 1410.16, + "end": 1410.36, + "probability": 0.8447265625 + }, + { + "word": " Mike,", + "start": 1410.36, + "end": 1410.52, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 1410.6, + "end": 1410.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1410.72, + "end": 1410.86, + "probability": 1.0 + }, + { + "word": " deal", + "start": 1410.86, + "end": 1410.98, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 1410.98, + "end": 1411.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 1411.06, + "end": 1411.16, + "probability": 1.0 + }, + { + "word": " technology", + "start": 1411.16, + "end": 1411.5, + "probability": 0.99951171875 + }, + { + "word": " needs", + "start": 1411.5, + "end": 1411.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 1411.78, + "end": 1412.14, + "probability": 0.99462890625 + }, + { + "word": " treat", + "start": 1412.14, + "end": 1412.5, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1412.5, + "end": 1412.68, + "probability": 1.0 + }, + { + "word": " like", + "start": 1412.68, + "end": 1412.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 1412.86, + "end": 1413.0, + "probability": 1.0 + }, + { + "word": " person", + "start": 1413.0, + "end": 1413.38, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1413.38, + "end": 1413.64, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1413.64, + "end": 1413.74, + "probability": 1.0 + }, + { + "word": " process.", + "start": 1413.74, + "end": 1414.14, + "probability": 1.0 + } + ] + }, + { + "id": 656, + "text": "790-2040 if you want to be a part of the show.", + "start": 1415.1200000000001, + "end": 1416.72, + "words": [ + { + "word": " 790", + "start": 1415.1200000000001, + "end": 1415.48, + "probability": 0.994140625 + }, + { + "word": "-2040", + "start": 1415.48, + "end": 1415.84, + "probability": 0.88720703125 + }, + { + "word": " if", + "start": 1415.84, + "end": 1415.98, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 1415.98, + "end": 1416.06, + "probability": 1.0 + }, + { + "word": " want", + "start": 1416.06, + "end": 1416.14, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1416.14, + "end": 1416.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 1416.16, + "end": 1416.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 1416.28, + "end": 1416.32, + "probability": 0.2069091796875 + }, + { + "word": " part", + "start": 1416.32, + "end": 1416.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 1416.42, + "end": 1416.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 1416.5, + "end": 1416.54, + "probability": 1.0 + }, + { + "word": " show.", + "start": 1416.54, + "end": 1416.72, + "probability": 1.0 + } + ] + }, + { + "id": 657, + "text": "What do you think?", + "start": 1417.92, + "end": 1418.44, + "words": [ + { + "word": " What", + "start": 1417.92, + "end": 1418.28, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 1418.28, + "end": 1418.32, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1418.32, + "end": 1418.36, + "probability": 1.0 + }, + { + "word": " think?", + "start": 1418.36, + "end": 1418.44, + "probability": 1.0 + } + ] + }, + { + "id": 658, + "text": "Calls first or?", + "start": 1418.46, + "end": 1419.1, + "words": [ + { + "word": " Calls", + "start": 1418.46, + "end": 1418.74, + "probability": 0.89013671875 + }, + { + "word": " first", + "start": 1418.74, + "end": 1418.84, + "probability": 1.0 + }, + { + "word": " or?", + "start": 1418.84, + "end": 1419.1, + "probability": 0.093994140625 + } + ] + }, + { + "id": 659, + "text": "Yeah, I might as well.", + "start": 1419.28, + "end": 1419.82, + "words": [ + { + "word": " Yeah,", + "start": 1419.28, + "end": 1419.46, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1419.48, + "end": 1419.52, + "probability": 0.52685546875 + }, + { + "word": " might", + "start": 1419.52, + "end": 1419.6, + "probability": 1.0 + }, + { + "word": " as", + "start": 1419.6, + "end": 1419.72, + "probability": 1.0 + }, + { + "word": " well.", + "start": 1419.72, + "end": 1419.82, + "probability": 1.0 + } + ] + }, + { + "id": 660, + "text": "Yeah.", + "start": 1419.94, + "end": 1420.06, + "words": [ + { + "word": " Yeah.", + "start": 1419.94, + "end": 1420.06, + "probability": 0.60595703125 + } + ] + }, + { + "id": 661, + "text": "All right.", + "start": 1420.06, + "end": 1420.2, + "words": [ + { + "word": " All", + "start": 1420.06, + "end": 1420.2, + "probability": 0.425537109375 + }, + { + "word": " right.", + "start": 1420.2, + "end": 1420.2, + "probability": 1.0 + } + ] + }, + { + "id": 662, + "text": "Let's go ahead and talk to Dave.", + "start": 1420.2, + "end": 1420.96, + "words": [ + { + "word": " Let's", + "start": 1420.2, + "end": 1420.42, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 1420.42, + "end": 1420.46, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1420.46, + "end": 1420.56, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 1420.56, + "end": 1420.62, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1420.62, + "end": 1420.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1420.72, + "end": 1420.8, + "probability": 1.0 + }, + { + "word": " Dave.", + "start": 1420.8, + "end": 1420.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 663, + "text": "Hey, Dave.", + "start": 1421.14, + "end": 1421.66, + "words": [ + { + "word": " Hey,", + "start": 1421.14, + "end": 1421.5, + "probability": 0.9990234375 + }, + { + "word": " Dave.", + "start": 1421.52, + "end": 1421.66, + "probability": 1.0 + } + ] + }, + { + "id": 664, + "text": "How are you?", + "start": 1421.7, + "end": 1422.0, + "words": [ + { + "word": " How", + "start": 1421.7, + "end": 1421.78, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 1421.78, + "end": 1421.88, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1421.88, + "end": 1422.0, + "probability": 1.0 + } + ] + }, + { + "id": 665, + "text": "Okay.", + "start": 1422.94, + "end": 1423.3, + "words": [ + { + "word": " Okay.", + "start": 1422.94, + "end": 1423.3, + "probability": 0.86376953125 + } + ] + }, + { + "id": 666, + "text": "How are you?", + "start": 1423.62, + "end": 1424.08, + "words": [ + { + "word": " How", + "start": 1423.62, + "end": 1423.8, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 1423.8, + "end": 1423.96, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1423.96, + "end": 1424.08, + "probability": 1.0 + } + ] + }, + { + "id": 667, + "text": "Lovely.", + "start": 1424.4, + "end": 1424.76, + "words": [ + { + "word": " Lovely.", + "start": 1424.4, + "end": 1424.76, + "probability": 0.984375 + } + ] + }, + { + "id": 668, + "text": "Well, a few months ago or like three months ago or so, I upgraded from 8.1 to 1.2.", + "start": 1426.0, + "end": 1431.92, + "words": [ + { + "word": " Well,", + "start": 1426.0, + "end": 1426.36, + "probability": 0.96044921875 + }, + { + "word": " a", + "start": 1426.5, + "end": 1426.64, + "probability": 0.9892578125 + }, + { + "word": " few", + "start": 1426.64, + "end": 1427.9, + "probability": 1.0 + }, + { + "word": " months", + "start": 1427.9, + "end": 1428.08, + "probability": 1.0 + }, + { + "word": " ago", + "start": 1428.08, + "end": 1428.32, + "probability": 1.0 + }, + { + "word": " or", + "start": 1428.32, + "end": 1428.52, + "probability": 0.859375 + }, + { + "word": " like", + "start": 1428.52, + "end": 1428.66, + "probability": 0.95361328125 + }, + { + "word": " three", + "start": 1428.66, + "end": 1428.86, + "probability": 0.99755859375 + }, + { + "word": " months", + "start": 1428.86, + "end": 1429.04, + "probability": 1.0 + }, + { + "word": " ago", + "start": 1429.04, + "end": 1429.24, + "probability": 1.0 + }, + { + "word": " or", + "start": 1429.24, + "end": 1429.34, + "probability": 1.0 + }, + { + "word": " so,", + "start": 1429.34, + "end": 1429.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 1429.58, + "end": 1429.72, + "probability": 1.0 + }, + { + "word": " upgraded", + "start": 1429.72, + "end": 1430.46, + "probability": 0.98974609375 + }, + { + "word": " from", + "start": 1430.46, + "end": 1430.68, + "probability": 0.96533203125 + }, + { + "word": " 8", + "start": 1430.68, + "end": 1430.98, + "probability": 0.98486328125 + }, + { + "word": ".1", + "start": 1430.98, + "end": 1431.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1431.54, + "end": 1431.8, + "probability": 0.99169921875 + }, + { + "word": " 1", + "start": 1431.8, + "end": 1431.92, + "probability": 0.366455078125 + }, + { + "word": ".2.", + "start": 1431.92, + "end": 1431.92, + "probability": 0.57666015625 + } + ] + }, + { + "id": 669, + "text": "", + "start": 1431.92, + "end": 1431.92, + "words": [] + }, + { + "id": 670, + "text": "", + "start": 1431.92, + "end": 1431.92, + "words": [] + }, + { + "id": 671, + "text": "", + "start": 1431.92, + "end": 1431.92, + "words": [] + }, + { + "id": 672, + "text": "", + "start": 1431.92, + "end": 1431.92, + "words": [] + }, + { + "id": 673, + "text": "I'm using Windows 10.", + "start": 1431.94, + "end": 1432.46, + "words": [ + { + "word": " I'm", + "start": 1431.94, + "end": 1432.04, + "probability": 0.0584716796875 + }, + { + "word": " using", + "start": 1432.04, + "end": 1432.04, + "probability": 0.035186767578125 + }, + { + "word": " Windows", + "start": 1432.04, + "end": 1432.04, + "probability": 0.9462890625 + }, + { + "word": " 10.", + "start": 1432.04, + "end": 1432.46, + "probability": 0.9951171875 + } + ] + }, + { + "id": 674, + "text": "Okay.", + "start": 1433.06, + "end": 1433.54, + "words": [ + { + "word": " Okay.", + "start": 1433.06, + "end": 1433.54, + "probability": 0.671875 + } + ] + }, + { + "id": 675, + "text": "And it is awful.", + "start": 1433.68, + "end": 1435.58, + "words": [ + { + "word": " And", + "start": 1433.68, + "end": 1434.04, + "probability": 0.96875 + }, + { + "word": " it", + "start": 1434.04, + "end": 1434.8, + "probability": 0.98876953125 + }, + { + "word": " is", + "start": 1434.8, + "end": 1435.08, + "probability": 1.0 + }, + { + "word": " awful.", + "start": 1435.08, + "end": 1435.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 676, + "text": "How so?", + "start": 1436.28, + "end": 1436.94, + "words": [ + { + "word": " How", + "start": 1436.28, + "end": 1436.76, + "probability": 0.99951171875 + }, + { + "word": " so?", + "start": 1436.76, + "end": 1436.94, + "probability": 1.0 + } + ] + }, + { + "id": 677, + "text": "Everything is so unbelievably slow.", + "start": 1437.1, + "end": 1439.08, + "words": [ + { + "word": " Everything", + "start": 1437.1, + "end": 1437.42, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1437.42, + "end": 1437.7, + "probability": 1.0 + }, + { + "word": " so", + "start": 1437.7, + "end": 1437.94, + "probability": 1.0 + }, + { + "word": " unbelievably", + "start": 1437.94, + "end": 1438.46, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1438.46, + "end": 1439.08, + "probability": 1.0 + } + ] + }, + { + "id": 678, + "text": "I click onto a browser window, it takes like a minute or two to even open it.", + "start": 1439.2, + "end": 1444.64, + "words": [ + { + "word": " I", + "start": 1439.2, + "end": 1439.38, + "probability": 0.98828125 + }, + { + "word": " click", + "start": 1439.38, + "end": 1439.72, + "probability": 1.0 + }, + { + "word": " onto", + "start": 1439.72, + "end": 1440.04, + "probability": 0.81982421875 + }, + { + "word": " a", + "start": 1440.04, + "end": 1440.42, + "probability": 1.0 + }, + { + "word": " browser", + "start": 1440.42, + "end": 1440.88, + "probability": 1.0 + }, + { + "word": " window,", + "start": 1440.88, + "end": 1441.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 1441.26, + "end": 1441.34, + "probability": 0.99951171875 + }, + { + "word": " takes", + "start": 1441.34, + "end": 1441.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 1441.6, + "end": 1441.86, + "probability": 0.93408203125 + }, + { + "word": " a", + "start": 1441.86, + "end": 1442.74, + "probability": 0.9990234375 + }, + { + "word": " minute", + "start": 1442.74, + "end": 1443.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 1443.04, + "end": 1443.26, + "probability": 1.0 + }, + { + "word": " two", + "start": 1443.26, + "end": 1443.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1443.48, + "end": 1443.7, + "probability": 1.0 + }, + { + "word": " even", + "start": 1443.7, + "end": 1443.94, + "probability": 0.99951171875 + }, + { + "word": " open", + "start": 1443.94, + "end": 1444.28, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1444.28, + "end": 1444.64, + "probability": 1.0 + } + ] + }, + { + "id": 679, + "text": "It just sits there and you look at the screen, nothing happens.", + "start": 1444.7, + "end": 1448.1, + "words": [ + { + "word": " It", + "start": 1444.7, + "end": 1444.86, + "probability": 0.947265625 + }, + { + "word": " just", + "start": 1444.86, + "end": 1445.0, + "probability": 1.0 + }, + { + "word": " sits", + "start": 1445.0, + "end": 1445.24, + "probability": 1.0 + }, + { + "word": " there", + "start": 1445.24, + "end": 1445.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 1445.54, + "end": 1445.64, + "probability": 0.65478515625 + }, + { + "word": " you", + "start": 1445.64, + "end": 1445.86, + "probability": 0.869140625 + }, + { + "word": " look", + "start": 1445.86, + "end": 1446.36, + "probability": 1.0 + }, + { + "word": " at", + "start": 1446.36, + "end": 1446.52, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1446.52, + "end": 1446.64, + "probability": 0.9990234375 + }, + { + "word": " screen,", + "start": 1446.64, + "end": 1447.22, + "probability": 1.0 + }, + { + "word": " nothing", + "start": 1447.32, + "end": 1447.5, + "probability": 0.99755859375 + }, + { + "word": " happens.", + "start": 1447.5, + "end": 1448.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 680, + "text": "Which antivirus do you have on there?", + "start": 1448.3, + "end": 1449.44, + "words": [ + { + "word": " Which", + "start": 1448.3, + "end": 1448.6, + "probability": 0.998046875 + }, + { + "word": " antivirus", + "start": 1448.6, + "end": 1449.0, + "probability": 0.99462890625 + }, + { + "word": " do", + "start": 1449.0, + "end": 1449.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 1449.18, + "end": 1449.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 1449.24, + "end": 1449.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 1449.36, + "end": 1449.44, + "probability": 0.99853515625 + }, + { + "word": " there?", + "start": 1449.44, + "end": 1449.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 681, + "text": "My browser's always crashing, everything.", + "start": 1449.44, + "end": 1451.72, + "words": [ + { + "word": " My", + "start": 1449.44, + "end": 1449.76, + "probability": 0.96875 + }, + { + "word": " browser's", + "start": 1449.76, + "end": 1450.46, + "probability": 0.6845703125 + }, + { + "word": " always", + "start": 1450.46, + "end": 1450.64, + "probability": 1.0 + }, + { + "word": " crashing,", + "start": 1450.64, + "end": 1451.24, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 1451.44, + "end": 1451.72, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "What's that?", + "start": 1452.0, + "end": 1452.38, + "words": [ + { + "word": " What's", + "start": 1452.0, + "end": 1452.32, + "probability": 0.87353515625 + }, + { + "word": " that?", + "start": 1452.32, + "end": 1452.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 683, + "text": "Which antivirus do you have on there?", + "start": 1452.5, + "end": 1453.66, + "words": [ + { + "word": " Which", + "start": 1452.5, + "end": 1452.7, + "probability": 0.99755859375 + }, + { + "word": " antivirus", + "start": 1452.7, + "end": 1453.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 1453.1, + "end": 1453.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 1453.26, + "end": 1453.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 1453.34, + "end": 1453.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 1453.42, + "end": 1453.56, + "probability": 1.0 + }, + { + "word": " there?", + "start": 1453.56, + "end": 1453.66, + "probability": 1.0 + } + ] + }, + { + "id": 684, + "text": "Kaspersky.", + "start": 1455.54, + "end": 1456.02, + "words": [ + { + "word": " Kaspersky.", + "start": 1455.54, + "end": 1456.02, + "probability": 0.97705078125 + } + ] + }, + { + "id": 685, + "text": "Okay.", + "start": 1456.78, + "end": 1457.26, + "words": [ + { + "word": " Okay.", + "start": 1456.78, + "end": 1457.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 686, + "text": "That's your answer.", + "start": 1457.9, + "end": 1458.72, + "words": [ + { + "word": " That's", + "start": 1457.9, + "end": 1458.38, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1458.38, + "end": 1458.48, + "probability": 1.0 + }, + { + "word": " answer.", + "start": 1458.48, + "end": 1458.72, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "So you upgraded with the antivirus on there already.", + "start": 1459.16, + "end": 1461.82, + "words": [ + { + "word": " So", + "start": 1459.16, + "end": 1459.64, + "probability": 0.98681640625 + }, + { + "word": " you", + "start": 1459.64, + "end": 1459.82, + "probability": 0.94482421875 + }, + { + "word": " upgraded", + "start": 1459.82, + "end": 1460.16, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 1460.16, + "end": 1460.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1460.4, + "end": 1460.56, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1460.56, + "end": 1461.02, + "probability": 1.0 + }, + { + "word": " on", + "start": 1461.02, + "end": 1461.44, + "probability": 0.99267578125 + }, + { + "word": " there", + "start": 1461.44, + "end": 1461.56, + "probability": 1.0 + }, + { + "word": " already.", + "start": 1461.56, + "end": 1461.82, + "probability": 0.99365234375 + } + ] + }, + { + "id": 688, + "text": "Yeah.", + "start": 1461.82, + "end": 1461.92, + "words": [ + { + "word": " Yeah.", + "start": 1461.82, + "end": 1461.92, + "probability": 0.29931640625 + } + ] + }, + { + "id": 689, + "text": "", + "start": 1461.92, + "end": 1461.92, + "words": [] + }, + { + "id": 690, + "text": "", + "start": 1461.92, + "end": 1461.92, + "words": [] + }, + { + "id": 691, + "text": "I have that already I imagine.", + "start": 1461.94, + "end": 1462.42, + "words": [ + { + "word": " I", + "start": 1461.94, + "end": 1462.08, + "probability": 0.94140625 + }, + { + "word": " have", + "start": 1462.08, + "end": 1462.26, + "probability": 4.0650367736816406e-05 + }, + { + "word": " that", + "start": 1462.26, + "end": 1462.42, + "probability": 0.00274658203125 + }, + { + "word": " already", + "start": 1462.42, + "end": 1462.42, + "probability": 0.0006489753723144531 + }, + { + "word": " I", + "start": 1462.42, + "end": 1462.42, + "probability": 0.05999755859375 + }, + { + "word": " imagine.", + "start": 1462.42, + "end": 1462.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 692, + "text": "Not to mention that first of all, don't upgrade with your antivirus installed because it causes", + "start": 1463.62, + "end": 1468.3, + "words": [ + { + "word": " Not", + "start": 1463.62, + "end": 1464.02, + "probability": 0.376220703125 + }, + { + "word": " to", + "start": 1464.02, + "end": 1464.42, + "probability": 0.99951171875 + }, + { + "word": " mention", + "start": 1464.42, + "end": 1464.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 1464.64, + "end": 1464.86, + "probability": 0.96044921875 + }, + { + "word": " first", + "start": 1464.86, + "end": 1465.34, + "probability": 0.87109375 + }, + { + "word": " of", + "start": 1465.34, + "end": 1465.5, + "probability": 1.0 + }, + { + "word": " all,", + "start": 1465.5, + "end": 1465.62, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1465.64, + "end": 1465.98, + "probability": 0.99951171875 + }, + { + "word": " upgrade", + "start": 1465.98, + "end": 1466.2, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1466.2, + "end": 1466.46, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1466.46, + "end": 1466.58, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1466.58, + "end": 1466.98, + "probability": 0.998046875 + }, + { + "word": " installed", + "start": 1466.98, + "end": 1467.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 1467.24, + "end": 1467.86, + "probability": 0.830078125 + }, + { + "word": " it", + "start": 1467.86, + "end": 1468.02, + "probability": 1.0 + }, + { + "word": " causes", + "start": 1468.02, + "end": 1468.3, + "probability": 1.0 + } + ] + }, + { + "id": 693, + "text": "major problems.", + "start": 1468.3, + "end": 1469.18, + "words": [ + { + "word": " major", + "start": 1468.3, + "end": 1468.68, + "probability": 1.0 + }, + { + "word": " problems.", + "start": 1468.68, + "end": 1469.18, + "probability": 1.0 + } + ] + }, + { + "id": 694, + "text": "I got it uninstalled before the upgrade.", + "start": 1469.28, + "end": 1470.5, + "words": [ + { + "word": " I", + "start": 1469.28, + "end": 1469.38, + "probability": 0.0430908203125 + }, + { + "word": " got", + "start": 1469.38, + "end": 1469.44, + "probability": 0.9853515625 + }, + { + "word": " it", + "start": 1469.44, + "end": 1469.54, + "probability": 0.38720703125 + }, + { + "word": " uninstalled", + "start": 1469.54, + "end": 1469.92, + "probability": 0.99365234375 + }, + { + "word": " before", + "start": 1469.92, + "end": 1470.14, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 1470.14, + "end": 1470.3, + "probability": 0.99951171875 + }, + { + "word": " upgrade.", + "start": 1470.3, + "end": 1470.5, + "probability": 1.0 + } + ] + }, + { + "id": 695, + "text": "Secondly.", + "start": 1471.24, + "end": 1471.64, + "words": [ + { + "word": " Secondly.", + "start": 1471.24, + "end": 1471.64, + "probability": 0.796875 + } + ] + }, + { + "id": 696, + "text": "Oh, I did that.", + "start": 1471.76, + "end": 1472.64, + "words": [ + { + "word": " Oh,", + "start": 1471.76, + "end": 1471.9, + "probability": 0.52099609375 + }, + { + "word": " I", + "start": 1471.9, + "end": 1471.98, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 1471.98, + "end": 1472.1, + "probability": 0.9970703125 + }, + { + "word": " that.", + "start": 1472.1, + "end": 1472.64, + "probability": 0.97314453125 + } + ] + }, + { + "id": 697, + "text": "I did that.", + "start": 1472.74, + "end": 1473.2, + "words": [ + { + "word": " I", + "start": 1472.74, + "end": 1472.86, + "probability": 0.89892578125 + }, + { + "word": " did", + "start": 1472.86, + "end": 1473.0, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1473.0, + "end": 1473.2, + "probability": 1.0 + } + ] + }, + { + "id": 698, + "text": "Secondly, Kaspersky.", + "start": 1473.4, + "end": 1474.48, + "words": [ + { + "word": " Secondly,", + "start": 1473.4, + "end": 1473.8, + "probability": 0.96337890625 + }, + { + "word": " Kaspersky.", + "start": 1473.88, + "end": 1474.48, + "probability": 0.96337890625 + } + ] + }, + { + "id": 699, + "text": "Because it says that on the install.", + "start": 1474.48, + "end": 1475.04, + "words": [ + { + "word": " Because", + "start": 1474.48, + "end": 1474.48, + "probability": 0.053619384765625 + }, + { + "word": " it", + "start": 1474.48, + "end": 1474.48, + "probability": 0.97705078125 + }, + { + "word": " says", + "start": 1474.48, + "end": 1474.48, + "probability": 0.8505859375 + }, + { + "word": " that", + "start": 1474.48, + "end": 1474.5, + "probability": 0.1224365234375 + }, + { + "word": " on", + "start": 1474.5, + "end": 1474.6, + "probability": 0.9208984375 + }, + { + "word": " the", + "start": 1474.6, + "end": 1474.72, + "probability": 0.99462890625 + }, + { + "word": " install.", + "start": 1474.72, + "end": 1475.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 700, + "text": "You have to disable it.", + "start": 1475.14, + "end": 1476.8200000000002, + "words": [ + { + "word": " You", + "start": 1475.14, + "end": 1475.28, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1475.28, + "end": 1475.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1475.4, + "end": 1475.52, + "probability": 1.0 + }, + { + "word": " disable", + "start": 1475.52, + "end": 1475.98, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1475.98, + "end": 1476.8200000000002, + "probability": 0.4951171875 + } + ] + }, + { + "id": 701, + "text": "So I disabled it.", + "start": 1477.48, + "end": 1478.24, + "words": [ + { + "word": " So", + "start": 1477.48, + "end": 1477.56, + "probability": 0.90478515625 + }, + { + "word": " I", + "start": 1477.56, + "end": 1477.6, + "probability": 0.9248046875 + }, + { + "word": " disabled", + "start": 1477.6, + "end": 1478.02, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1478.02, + "end": 1478.24, + "probability": 1.0 + } + ] + }, + { + "id": 702, + "text": "I upgraded it and then I re-enabled it.", + "start": 1478.3, + "end": 1480.0, + "words": [ + { + "word": " I", + "start": 1478.3, + "end": 1478.38, + "probability": 1.0 + }, + { + "word": " upgraded", + "start": 1478.38, + "end": 1478.78, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1478.78, + "end": 1478.98, + "probability": 0.98876953125 + }, + { + "word": " and", + "start": 1478.98, + "end": 1479.08, + "probability": 0.85400390625 + }, + { + "word": " then", + "start": 1479.08, + "end": 1479.12, + "probability": 1.0 + }, + { + "word": " I", + "start": 1479.12, + "end": 1479.2, + "probability": 1.0 + }, + { + "word": " re", + "start": 1479.2, + "end": 1479.56, + "probability": 1.0 + }, + { + "word": "-enabled", + "start": 1479.56, + "end": 1479.88, + "probability": 0.9931640625 + }, + { + "word": " it.", + "start": 1479.88, + "end": 1480.0, + "probability": 1.0 + } + ] + }, + { + "id": 703, + "text": "This is not disable.", + "start": 1480.04, + "end": 1481.08, + "words": [ + { + "word": " This", + "start": 1480.04, + "end": 1480.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 1480.16, + "end": 1480.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 1480.24, + "end": 1480.44, + "probability": 1.0 + }, + { + "word": " disable.", + "start": 1480.44, + "end": 1481.08, + "probability": 0.9892578125 + } + ] + }, + { + "id": 704, + "text": "This is uninstall.", + "start": 1481.38, + "end": 1482.4, + "words": [ + { + "word": " This", + "start": 1481.38, + "end": 1481.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 1481.62, + "end": 1481.74, + "probability": 1.0 + }, + { + "word": " uninstall.", + "start": 1481.74, + "end": 1482.4, + "probability": 1.0 + } + ] + }, + { + "id": 705, + "text": "Like take it completely off the computer before you upgrade.", + "start": 1483.16, + "end": 1486.28, + "words": [ + { + "word": " Like", + "start": 1483.16, + "end": 1483.56, + "probability": 0.966796875 + }, + { + "word": " take", + "start": 1483.56, + "end": 1483.9, + "probability": 0.68896484375 + }, + { + "word": " it", + "start": 1483.9, + "end": 1484.1, + "probability": 1.0 + }, + { + "word": " completely", + "start": 1484.1, + "end": 1484.48, + "probability": 1.0 + }, + { + "word": " off", + "start": 1484.48, + "end": 1484.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1484.92, + "end": 1485.1, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1485.1, + "end": 1485.36, + "probability": 1.0 + }, + { + "word": " before", + "start": 1485.36, + "end": 1485.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 1485.72, + "end": 1485.98, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1485.98, + "end": 1486.28, + "probability": 1.0 + } + ] + }, + { + "id": 706, + "text": "Now, second part of this.", + "start": 1487.84, + "end": 1489.18, + "words": [ + { + "word": " Now,", + "start": 1487.84, + "end": 1488.24, + "probability": 0.353515625 + }, + { + "word": " second", + "start": 1488.24, + "end": 1488.64, + "probability": 0.9970703125 + }, + { + "word": " part", + "start": 1488.64, + "end": 1488.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 1488.9, + "end": 1489.02, + "probability": 1.0 + }, + { + "word": " this.", + "start": 1489.02, + "end": 1489.18, + "probability": 1.0 + } + ] + }, + { + "id": 707, + "text": "Kaspersky is a dog.", + "start": 1489.86, + "end": 1491.08, + "words": [ + { + "word": " Kaspersky", + "start": 1489.86, + "end": 1490.26, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1490.26, + "end": 1490.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 1490.54, + "end": 1490.7, + "probability": 1.0 + }, + { + "word": " dog.", + "start": 1490.7, + "end": 1491.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 708, + "text": "Okay.", + "start": 1491.52, + "end": 1491.92, + "words": [ + { + "word": " Okay.", + "start": 1491.52, + "end": 1491.92, + "probability": 0.327880859375 + } + ] + }, + { + "id": 709, + "text": "It's a great antivirus, don't get me wrong.", + "start": 1491.94, + "end": 1493.5, + "words": [ + { + "word": " It's", + "start": 1491.94, + "end": 1492.32, + "probability": 0.875 + }, + { + "word": " a", + "start": 1492.32, + "end": 1492.32, + "probability": 1.0 + }, + { + "word": " great", + "start": 1492.32, + "end": 1492.52, + "probability": 1.0 + }, + { + "word": " antivirus,", + "start": 1492.52, + "end": 1492.94, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 1492.98, + "end": 1493.16, + "probability": 1.0 + }, + { + "word": " get", + "start": 1493.16, + "end": 1493.22, + "probability": 1.0 + }, + { + "word": " me", + "start": 1493.22, + "end": 1493.34, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 1493.34, + "end": 1493.5, + "probability": 1.0 + } + ] + }, + { + "id": 710, + "text": "It's a fantastic antivirus.", + "start": 1493.62, + "end": 1495.18, + "words": [ + { + "word": " It's", + "start": 1493.62, + "end": 1494.0, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1494.0, + "end": 1494.02, + "probability": 1.0 + }, + { + "word": " fantastic", + "start": 1494.02, + "end": 1494.48, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 1494.48, + "end": 1495.18, + "probability": 1.0 + } + ] + }, + { + "id": 711, + "text": "But it makes everything slow.", + "start": 1495.8, + "end": 1497.96, + "words": [ + { + "word": " But", + "start": 1495.8, + "end": 1496.28, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1496.28, + "end": 1496.6, + "probability": 0.943359375 + }, + { + "word": " makes", + "start": 1496.6, + "end": 1496.92, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1496.92, + "end": 1497.48, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1497.48, + "end": 1497.96, + "probability": 1.0 + } + ] + }, + { + "id": 712, + "text": "Now, I think that yours is mostly slow because it got broken during the upgrade.", + "start": 1498.54, + "end": 1501.9, + "words": [ + { + "word": " Now,", + "start": 1498.54, + "end": 1499.02, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 1499.02, + "end": 1499.2, + "probability": 1.0 + }, + { + "word": " think", + "start": 1499.2, + "end": 1499.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 1499.46, + "end": 1499.54, + "probability": 1.0 + }, + { + "word": " yours", + "start": 1499.54, + "end": 1499.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 1499.7, + "end": 1499.84, + "probability": 1.0 + }, + { + "word": " mostly", + "start": 1499.84, + "end": 1500.28, + "probability": 1.0 + }, + { + "word": " slow", + "start": 1500.28, + "end": 1500.54, + "probability": 1.0 + }, + { + "word": " because", + "start": 1500.54, + "end": 1500.78, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 1500.78, + "end": 1500.9, + "probability": 1.0 + }, + { + "word": " got", + "start": 1500.9, + "end": 1501.0, + "probability": 1.0 + }, + { + "word": " broken", + "start": 1501.0, + "end": 1501.3, + "probability": 1.0 + }, + { + "word": " during", + "start": 1501.3, + "end": 1501.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1501.52, + "end": 1501.68, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1501.68, + "end": 1501.9, + "probability": 1.0 + } + ] + }, + { + "id": 713, + "text": "So if you were to completely uninstall Kaspersky, use a utility like Revo or something to help you uninstall that.", + "start": 1502.42, + "end": 1509.62, + "words": [ + { + "word": " So", + "start": 1502.42, + "end": 1502.9, + "probability": 0.99072265625 + }, + { + "word": " if", + "start": 1502.9, + "end": 1503.06, + "probability": 0.88720703125 + }, + { + "word": " you", + "start": 1503.06, + "end": 1503.16, + "probability": 1.0 + }, + { + "word": " were", + "start": 1503.16, + "end": 1503.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 1503.24, + "end": 1503.32, + "probability": 1.0 + }, + { + "word": " completely", + "start": 1503.32, + "end": 1503.6, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 1503.6, + "end": 1504.26, + "probability": 1.0 + }, + { + "word": " Kaspersky,", + "start": 1504.26, + "end": 1504.84, + "probability": 0.98583984375 + }, + { + "word": " use", + "start": 1504.92, + "end": 1505.1, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1505.1, + "end": 1505.26, + "probability": 1.0 + }, + { + "word": " utility", + "start": 1505.26, + "end": 1505.68, + "probability": 1.0 + }, + { + "word": " like", + "start": 1505.68, + "end": 1506.02, + "probability": 1.0 + }, + { + "word": " Revo", + "start": 1506.02, + "end": 1506.5, + "probability": 0.9853515625 + }, + { + "word": " or", + "start": 1506.5, + "end": 1506.84, + "probability": 0.95361328125 + }, + { + "word": " something", + "start": 1506.84, + "end": 1507.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 1507.52, + "end": 1507.86, + "probability": 1.0 + }, + { + "word": " help", + "start": 1507.86, + "end": 1508.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 1508.64, + "end": 1508.86, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 1508.86, + "end": 1509.34, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1509.34, + "end": 1509.62, + "probability": 1.0 + } + ] + }, + { + "id": 714, + "text": "And then reinstall Kaspersky, it will probably be considerably better.", + "start": 1509.98, + "end": 1513.46, + "words": [ + { + "word": " And", + "start": 1509.98, + "end": 1510.46, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 1510.46, + "end": 1510.62, + "probability": 1.0 + }, + { + "word": " reinstall", + "start": 1510.62, + "end": 1511.18, + "probability": 0.99609375 + }, + { + "word": " Kaspersky,", + "start": 1511.18, + "end": 1511.74, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1511.82, + "end": 1511.92, + "probability": 1.0 + }, + { + "word": " will", + "start": 1511.92, + "end": 1511.96, + "probability": 0.62939453125 + }, + { + "word": " probably", + "start": 1511.96, + "end": 1512.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 1512.26, + "end": 1512.54, + "probability": 1.0 + }, + { + "word": " considerably", + "start": 1512.54, + "end": 1512.98, + "probability": 1.0 + }, + { + "word": " better.", + "start": 1512.98, + "end": 1513.46, + "probability": 1.0 + } + ] + }, + { + "id": 715, + "text": "Second, what kind of machine is this?", + "start": 1514.0, + "end": 1515.48, + "words": [ + { + "word": " Second,", + "start": 1514.0, + "end": 1514.48, + "probability": 0.998046875 + }, + { + "word": " what", + "start": 1514.56, + "end": 1514.66, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1514.66, + "end": 1514.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 1514.96, + "end": 1515.02, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1515.02, + "end": 1515.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1515.18, + "end": 1515.34, + "probability": 1.0 + }, + { + "word": " this?", + "start": 1515.34, + "end": 1515.48, + "probability": 1.0 + } + ] + }, + { + "id": 716, + "text": "It's a Toshiba.", + "start": 1516.3, + "end": 1517.34, + "words": [ + { + "word": " It's", + "start": 1516.3, + "end": 1516.78, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 1516.78, + "end": 1516.78, + "probability": 0.99951171875 + }, + { + "word": " Toshiba.", + "start": 1516.78, + "end": 1517.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 717, + "text": "How old is it?", + "start": 1517.6, + "end": 1518.42, + "words": [ + { + "word": " How", + "start": 1517.6, + "end": 1518.08, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 1518.08, + "end": 1518.22, + "probability": 1.0 + }, + { + "word": " is", + "start": 1518.22, + "end": 1518.3, + "probability": 1.0 + }, + { + "word": " it?", + "start": 1518.3, + "end": 1518.42, + "probability": 1.0 + } + ] + }, + { + "id": 718, + "text": "Laptop, two years old.", + "start": 1518.68, + "end": 1520.66, + "words": [ + { + "word": " Laptop,", + "start": 1518.68, + "end": 1519.16, + "probability": 0.99853515625 + }, + { + "word": " two", + "start": 1519.34, + "end": 1520.18, + "probability": 0.91796875 + }, + { + "word": " years", + "start": 1520.18, + "end": 1520.42, + "probability": 1.0 + }, + { + "word": " old.", + "start": 1520.42, + "end": 1520.66, + "probability": 1.0 + } + ] + }, + { + "id": 719, + "text": "Like two? Okay.", + "start": 1520.86, + "end": 1521.66, + "words": [ + { + "word": " Like", + "start": 1520.86, + "end": 1521.26, + "probability": 0.99853515625 + }, + { + "word": " two?", + "start": 1521.26, + "end": 1521.38, + "probability": 0.9970703125 + }, + { + "word": " Okay.", + "start": 1521.5, + "end": 1521.66, + "probability": 0.98974609375 + } + ] + }, + { + "id": 720, + "text": "So if it is less than two years old or less than three years old, then you should be fine as far as hard drive and all of that is concerned.", + "start": 1522.46, + "end": 1532.54, + "words": [ + { + "word": " So", + "start": 1522.3, + "end": 1522.54, + "probability": 0.87841796875 + }, + { + "word": " if", + "start": 1522.54, + "end": 1522.78, + "probability": 0.80224609375 + }, + { + "word": " it", + "start": 1522.78, + "end": 1523.06, + "probability": 1.0 + }, + { + "word": " is", + "start": 1523.06, + "end": 1523.22, + "probability": 0.99951171875 + }, + { + "word": " less", + "start": 1523.22, + "end": 1523.5, + "probability": 1.0 + }, + { + "word": " than", + "start": 1523.5, + "end": 1523.68, + "probability": 1.0 + }, + { + "word": " two", + "start": 1523.68, + "end": 1523.8, + "probability": 0.90673828125 + }, + { + "word": " years", + "start": 1523.8, + "end": 1523.96, + "probability": 1.0 + }, + { + "word": " old", + "start": 1523.96, + "end": 1524.14, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1524.14, + "end": 1524.24, + "probability": 0.990234375 + }, + { + "word": " less", + "start": 1524.24, + "end": 1524.4, + "probability": 1.0 + }, + { + "word": " than", + "start": 1524.4, + "end": 1524.54, + "probability": 1.0 + }, + { + "word": " three", + "start": 1524.54, + "end": 1525.2, + "probability": 0.96142578125 + }, + { + "word": " years", + "start": 1525.2, + "end": 1525.44, + "probability": 1.0 + }, + { + "word": " old,", + "start": 1525.44, + "end": 1525.7, + "probability": 1.0 + }, + { + "word": " then", + "start": 1526.24, + "end": 1526.48, + "probability": 0.638671875 + }, + { + "word": " you", + "start": 1526.48, + "end": 1526.86, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 1526.86, + "end": 1526.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 1526.98, + "end": 1527.06, + "probability": 1.0 + }, + { + "word": " fine", + "start": 1527.06, + "end": 1527.26, + "probability": 0.96337890625 + }, + { + "word": " as", + "start": 1527.26, + "end": 1530.12, + "probability": 0.96728515625 + }, + { + "word": " far", + "start": 1530.12, + "end": 1530.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 1530.3, + "end": 1530.54, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1530.54, + "end": 1530.96, + "probability": 0.64208984375 + }, + { + "word": " drive", + "start": 1530.96, + "end": 1531.28, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1531.28, + "end": 1531.62, + "probability": 1.0 + }, + { + "word": " all", + "start": 1531.62, + "end": 1531.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 1531.96, + "end": 1532.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1532.06, + "end": 1532.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1532.18, + "end": 1532.32, + "probability": 1.0 + }, + { + "word": " concerned.", + "start": 1532.32, + "end": 1532.54, + "probability": 1.0 + } + ] + }, + { + "id": 721, + "text": "So I'd imagine completely uninstall any antivirus apps that you have.", + "start": 1532.68, + "end": 1536.3, + "words": [ + { + "word": " So", + "start": 1532.68, + "end": 1532.8, + "probability": 0.998046875 + }, + { + "word": " I'd", + "start": 1532.8, + "end": 1532.96, + "probability": 0.9912109375 + }, + { + "word": " imagine", + "start": 1532.96, + "end": 1533.26, + "probability": 1.0 + }, + { + "word": " completely", + "start": 1533.26, + "end": 1533.96, + "probability": 0.9990234375 + }, + { + "word": " uninstall", + "start": 1533.96, + "end": 1534.62, + "probability": 0.99853515625 + }, + { + "word": " any", + "start": 1534.62, + "end": 1534.94, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1534.94, + "end": 1535.58, + "probability": 0.99462890625 + }, + { + "word": " apps", + "start": 1535.58, + "end": 1535.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1535.8, + "end": 1536.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 1536.0, + "end": 1536.04, + "probability": 1.0 + }, + { + "word": " have.", + "start": 1536.04, + "end": 1536.3, + "probability": 1.0 + } + ] + }, + { + "id": 722, + "text": "And here's the reason why it jacks things up.", + "start": 1537.8999999999999, + "end": 1540.68, + "words": [ + { + "word": " And", + "start": 1537.8999999999999, + "end": 1538.3799999999999, + "probability": 0.98828125 + }, + { + "word": " here's", + "start": 1538.3799999999999, + "end": 1538.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1538.86, + "end": 1538.94, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1538.94, + "end": 1539.2, + "probability": 1.0 + }, + { + "word": " why", + "start": 1539.2, + "end": 1539.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 1539.44, + "end": 1539.6, + "probability": 1.0 + }, + { + "word": " jacks", + "start": 1539.6, + "end": 1540.2, + "probability": 0.9990234375 + }, + { + "word": " things", + "start": 1540.2, + "end": 1540.32, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1540.32, + "end": 1540.68, + "probability": 1.0 + } + ] + }, + { + "id": 723, + "text": "When you do the upgrade, Windows is sort of blind to your antivirus setup.", + "start": 1541.12, + "end": 1546.4, + "words": [ + { + "word": " When", + "start": 1541.12, + "end": 1541.6, + "probability": 0.9658203125 + }, + { + "word": " you", + "start": 1541.6, + "end": 1541.78, + "probability": 1.0 + }, + { + "word": " do", + "start": 1541.78, + "end": 1541.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1541.88, + "end": 1542.0, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 1542.0, + "end": 1542.3, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1542.58, + "end": 1543.4, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1543.4, + "end": 1543.58, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1543.58, + "end": 1543.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1543.78, + "end": 1543.88, + "probability": 1.0 + }, + { + "word": " blind", + "start": 1543.88, + "end": 1544.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1544.28, + "end": 1544.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 1544.92, + "end": 1545.34, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 1545.34, + "end": 1546.06, + "probability": 1.0 + }, + { + "word": " setup.", + "start": 1546.06, + "end": 1546.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 724, + "text": "So it assumes that it needs to enable its built-in antivirus.", + "start": 1547.02, + "end": 1551.06, + "words": [ + { + "word": " So", + "start": 1547.02, + "end": 1547.5, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1547.5, + "end": 1547.64, + "probability": 1.0 + }, + { + "word": " assumes", + "start": 1547.64, + "end": 1548.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 1548.0, + "end": 1548.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 1548.26, + "end": 1548.38, + "probability": 1.0 + }, + { + "word": " needs", + "start": 1548.38, + "end": 1548.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1548.56, + "end": 1548.78, + "probability": 1.0 + }, + { + "word": " enable", + "start": 1548.78, + "end": 1549.48, + "probability": 1.0 + }, + { + "word": " its", + "start": 1549.48, + "end": 1549.94, + "probability": 0.99951171875 + }, + { + "word": " built", + "start": 1549.94, + "end": 1550.26, + "probability": 1.0 + }, + { + "word": "-in", + "start": 1550.26, + "end": 1550.48, + "probability": 0.99755859375 + }, + { + "word": " antivirus.", + "start": 1550.48, + "end": 1551.06, + "probability": 1.0 + } + ] + }, + { + "id": 725, + "text": "It's called Defender.", + "start": 1551.18, + "end": 1551.92, + "words": [ + { + "word": " It's", + "start": 1551.18, + "end": 1551.44, + "probability": 1.0 + }, + { + "word": " called", + "start": 1551.44, + "end": 1551.6, + "probability": 1.0 + }, + { + "word": " Defender.", + "start": 1551.6, + "end": 1551.92, + "probability": 0.5986328125 + } + ] + }, + { + "id": 726, + "text": "Defender.", + "start": 1551.94, + "end": 1552.04, + "words": [ + { + "word": " Defender.", + "start": 1551.94, + "end": 1552.04, + "probability": 0.4990234375 + } + ] + }, + { + "id": 727, + "text": "Okay.", + "start": 1552.82, + "end": 1553.26, + "words": [ + { + "word": " Okay.", + "start": 1552.82, + "end": 1553.26, + "probability": 0.53125 + } + ] + }, + { + "id": 728, + "text": "And so whenever you have two antiviruses on a machine, oh, believe me, they don't get along.", + "start": 1553.44, + "end": 1558.82, + "words": [ + { + "word": " And", + "start": 1553.44, + "end": 1553.6, + "probability": 0.7509765625 + }, + { + "word": " so", + "start": 1553.6, + "end": 1553.78, + "probability": 0.986328125 + }, + { + "word": " whenever", + "start": 1553.78, + "end": 1554.6, + "probability": 0.7353515625 + }, + { + "word": " you", + "start": 1554.6, + "end": 1554.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 1554.82, + "end": 1554.98, + "probability": 1.0 + }, + { + "word": " two", + "start": 1554.98, + "end": 1555.18, + "probability": 0.9990234375 + }, + { + "word": " antiviruses", + "start": 1555.18, + "end": 1555.86, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1555.86, + "end": 1556.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1556.04, + "end": 1556.18, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 1556.18, + "end": 1556.44, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 1556.8, + "end": 1557.78, + "probability": 0.99853515625 + }, + { + "word": " believe", + "start": 1557.78, + "end": 1557.98, + "probability": 0.99951171875 + }, + { + "word": " me,", + "start": 1557.98, + "end": 1558.24, + "probability": 1.0 + }, + { + "word": " they", + "start": 1558.26, + "end": 1558.36, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1558.36, + "end": 1558.54, + "probability": 1.0 + }, + { + "word": " get", + "start": 1558.54, + "end": 1558.64, + "probability": 1.0 + }, + { + "word": " along.", + "start": 1558.64, + "end": 1558.82, + "probability": 1.0 + } + ] + }, + { + "id": 729, + "text": "And so everything gets very, very slow.", + "start": 1559.7, + "end": 1563.38, + "words": [ + { + "word": " And", + "start": 1559.7, + "end": 1560.14, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 1560.14, + "end": 1560.42, + "probability": 1.0 + }, + { + "word": " everything", + "start": 1560.42, + "end": 1560.92, + "probability": 0.99951171875 + }, + { + "word": " gets", + "start": 1560.92, + "end": 1561.58, + "probability": 1.0 + }, + { + "word": " very,", + "start": 1561.58, + "end": 1562.18, + "probability": 1.0 + }, + { + "word": " very", + "start": 1562.32, + "end": 1562.78, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 1562.78, + "end": 1563.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 730, + "text": "So uninstall the antivirus.", + "start": 1564.4199999999998, + "end": 1565.86, + "words": [ + { + "word": " So", + "start": 1564.4199999999998, + "end": 1564.86, + "probability": 0.93603515625 + }, + { + "word": " uninstall", + "start": 1564.86, + "end": 1565.3, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1565.3, + "end": 1565.44, + "probability": 0.99951171875 + }, + { + "word": " antivirus.", + "start": 1565.44, + "end": 1565.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 731, + "text": "And when you do that, it's going to say, hey, guess what?", + "start": 1566.5, + "end": 1569.32, + "words": [ + { + "word": " And", + "start": 1566.5, + "end": 1566.94, + "probability": 0.99853515625 + }, + { + "word": " when", + "start": 1566.94, + "end": 1567.36, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 1567.36, + "end": 1567.92, + "probability": 1.0 + }, + { + "word": " do", + "start": 1567.92, + "end": 1568.08, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1568.08, + "end": 1568.26, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1568.32, + "end": 1568.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 1568.48, + "end": 1568.54, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1568.54, + "end": 1568.64, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1568.64, + "end": 1568.82, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 1568.88, + "end": 1569.02, + "probability": 0.98046875 + }, + { + "word": " guess", + "start": 1569.04, + "end": 1569.18, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1569.18, + "end": 1569.32, + "probability": 1.0 + } + ] + }, + { + "id": 732, + "text": "We've turned on Defender.", + "start": 1569.38, + "end": 1570.34, + "words": [ + { + "word": " We've", + "start": 1569.38, + "end": 1569.54, + "probability": 1.0 + }, + { + "word": " turned", + "start": 1569.54, + "end": 1569.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 1569.72, + "end": 1569.86, + "probability": 1.0 + }, + { + "word": " Defender.", + "start": 1569.86, + "end": 1570.34, + "probability": 0.9912109375 + } + ] + }, + { + "id": 733, + "text": "Defender's all happy.", + "start": 1570.54, + "end": 1571.42, + "words": [ + { + "word": " Defender's", + "start": 1570.54, + "end": 1570.98, + "probability": 0.986328125 + }, + { + "word": " all", + "start": 1570.98, + "end": 1571.08, + "probability": 1.0 + }, + { + "word": " happy.", + "start": 1571.08, + "end": 1571.42, + "probability": 1.0 + } + ] + }, + { + "id": 734, + "text": "Everything's great.", + "start": 1571.98, + "end": 1572.74, + "words": [ + { + "word": " Everything's", + "start": 1571.98, + "end": 1572.42, + "probability": 1.0 + }, + { + "word": " great.", + "start": 1572.42, + "end": 1572.74, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "Then you install Kaspersky, and Kaspersky will disable Defender.", + "start": 1573.0, + "end": 1576.9, + "words": [ + { + "word": " Then", + "start": 1573.0, + "end": 1573.44, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1573.44, + "end": 1573.6, + "probability": 1.0 + }, + { + "word": " install", + "start": 1573.6, + "end": 1573.94, + "probability": 1.0 + }, + { + "word": " Kaspersky,", + "start": 1573.94, + "end": 1574.54, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 1574.6, + "end": 1574.72, + "probability": 1.0 + }, + { + "word": " Kaspersky", + "start": 1574.72, + "end": 1575.2, + "probability": 1.0 + }, + { + "word": " will", + "start": 1575.2, + "end": 1575.42, + "probability": 1.0 + }, + { + "word": " disable", + "start": 1575.42, + "end": 1575.9, + "probability": 1.0 + }, + { + "word": " Defender.", + "start": 1575.9, + "end": 1576.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 736, + "text": "And everything should be better.", + "start": 1576.98, + "end": 1578.14, + "words": [ + { + "word": " And", + "start": 1576.98, + "end": 1577.28, + "probability": 0.99609375 + }, + { + "word": " everything", + "start": 1577.28, + "end": 1577.5, + "probability": 1.0 + }, + { + "word": " should", + "start": 1577.5, + "end": 1577.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 1577.74, + "end": 1577.88, + "probability": 1.0 + }, + { + "word": " better.", + "start": 1577.88, + "end": 1578.14, + "probability": 1.0 + } + ] + }, + { + "id": 737, + "text": "Okay.", + "start": 1578.92, + "end": 1579.36, + "words": [ + { + "word": " Okay.", + "start": 1578.92, + "end": 1579.36, + "probability": 0.98095703125 + } + ] + }, + { + "id": 738, + "text": "Now, you could choose a lighter antivirus.", + "start": 1579.8799999999999, + "end": 1581.92, + "words": [ + { + "word": " Now,", + "start": 1579.8799999999999, + "end": 1580.32, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1580.32, + "end": 1580.76, + "probability": 1.0 + }, + { + "word": " could", + "start": 1580.76, + "end": 1581.02, + "probability": 1.0 + }, + { + "word": " choose", + "start": 1581.02, + "end": 1581.24, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1581.24, + "end": 1581.42, + "probability": 0.9951171875 + }, + { + "word": " lighter", + "start": 1581.42, + "end": 1581.68, + "probability": 0.99951171875 + }, + { + "word": " antivirus.", + "start": 1581.68, + "end": 1581.92, + "probability": 0.9765625 + } + ] + }, + { + "id": 739, + "text": "We don't particularly care for the sort of heavy, slow, basically the antiviruses that you have to pay for that just slow your machine down.", + "start": 1583.5, + "end": 1593.22, + "words": [ + { + "word": " We", + "start": 1583.5, + "end": 1583.94, + "probability": 0.35400390625 + }, + { + "word": " don't", + "start": 1583.94, + "end": 1584.38, + "probability": 0.9951171875 + }, + { + "word": " particularly", + "start": 1584.38, + "end": 1584.7, + "probability": 0.99853515625 + }, + { + "word": " care", + "start": 1584.7, + "end": 1585.2, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1585.2, + "end": 1585.46, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1585.46, + "end": 1585.62, + "probability": 0.99951171875 + }, + { + "word": " sort", + "start": 1585.62, + "end": 1586.02, + "probability": 0.75634765625 + }, + { + "word": " of", + "start": 1586.02, + "end": 1586.16, + "probability": 0.99951171875 + }, + { + "word": " heavy,", + "start": 1586.16, + "end": 1586.42, + "probability": 0.99951171875 + }, + { + "word": " slow,", + "start": 1586.48, + "end": 1586.84, + "probability": 0.99951171875 + }, + { + "word": " basically", + "start": 1587.0, + "end": 1590.26, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 1590.26, + "end": 1590.78, + "probability": 0.80810546875 + }, + { + "word": " antiviruses", + "start": 1590.78, + "end": 1591.32, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 1591.32, + "end": 1591.48, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 1591.48, + "end": 1591.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 1591.5, + "end": 1591.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 1591.62, + "end": 1591.66, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1591.66, + "end": 1591.86, + "probability": 1.0 + }, + { + "word": " for", + "start": 1591.86, + "end": 1592.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1592.06, + "end": 1592.28, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 1592.28, + "end": 1592.44, + "probability": 0.9990234375 + }, + { + "word": " slow", + "start": 1592.44, + "end": 1592.6, + "probability": 1.0 + }, + { + "word": " your", + "start": 1592.6, + "end": 1592.76, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1592.76, + "end": 1592.98, + "probability": 1.0 + }, + { + "word": " down.", + "start": 1592.98, + "end": 1593.22, + "probability": 1.0 + } + ] + }, + { + "id": 740, + "text": "So you could pick something lighter if you want.", + "start": 1593.68, + "end": 1596.36, + "words": [ + { + "word": " So", + "start": 1593.68, + "end": 1594.12, + "probability": 0.8212890625 + }, + { + "word": " you", + "start": 1594.12, + "end": 1594.44, + "probability": 0.943359375 + }, + { + "word": " could", + "start": 1594.44, + "end": 1594.62, + "probability": 1.0 + }, + { + "word": " pick", + "start": 1594.62, + "end": 1595.08, + "probability": 0.99755859375 + }, + { + "word": " something", + "start": 1595.08, + "end": 1595.32, + "probability": 1.0 + }, + { + "word": " lighter", + "start": 1595.32, + "end": 1595.68, + "probability": 1.0 + }, + { + "word": " if", + "start": 1595.68, + "end": 1596.02, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 1596.02, + "end": 1596.14, + "probability": 1.0 + }, + { + "word": " want.", + "start": 1596.14, + "end": 1596.36, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "But if you're happy with Kaspersky and that's what you want to use, then by all means continue to do so.", + "start": 1596.5, + "end": 1602.36, + "words": [ + { + "word": " But", + "start": 1596.5, + "end": 1596.78, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 1596.78, + "end": 1597.0, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1597.0, + "end": 1597.34, + "probability": 0.99951171875 + }, + { + "word": " happy", + "start": 1597.34, + "end": 1597.62, + "probability": 1.0 + }, + { + "word": " with", + "start": 1597.62, + "end": 1597.76, + "probability": 0.97412109375 + }, + { + "word": " Kaspersky", + "start": 1597.76, + "end": 1598.56, + "probability": 0.99365234375 + }, + { + "word": " and", + "start": 1598.56, + "end": 1598.68, + "probability": 0.970703125 + }, + { + "word": " that's", + "start": 1598.68, + "end": 1598.84, + "probability": 1.0 + }, + { + "word": " what", + "start": 1598.84, + "end": 1598.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 1598.92, + "end": 1599.04, + "probability": 1.0 + }, + { + "word": " want", + "start": 1599.04, + "end": 1599.16, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1599.16, + "end": 1599.26, + "probability": 1.0 + }, + { + "word": " use,", + "start": 1599.26, + "end": 1599.48, + "probability": 1.0 + }, + { + "word": " then", + "start": 1599.88, + "end": 1600.12, + "probability": 0.99609375 + }, + { + "word": " by", + "start": 1600.12, + "end": 1601.16, + "probability": 0.99462890625 + }, + { + "word": " all", + "start": 1601.16, + "end": 1601.32, + "probability": 1.0 + }, + { + "word": " means", + "start": 1601.32, + "end": 1601.48, + "probability": 1.0 + }, + { + "word": " continue", + "start": 1601.48, + "end": 1601.82, + "probability": 0.93505859375 + }, + { + "word": " to", + "start": 1601.82, + "end": 1602.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 1602.04, + "end": 1602.2, + "probability": 1.0 + }, + { + "word": " so.", + "start": 1602.2, + "end": 1602.36, + "probability": 1.0 + } + ] + }, + { + "id": 742, + "text": "But use something like Revo to utterly annihilate Kaspersky off the machine.", + "start": 1602.42, + "end": 1608.06, + "words": [ + { + "word": " But", + "start": 1602.42, + "end": 1602.6, + "probability": 0.9990234375 + }, + { + "word": " use", + "start": 1602.6, + "end": 1602.96, + "probability": 1.0 + }, + { + "word": " something", + "start": 1602.96, + "end": 1603.18, + "probability": 1.0 + }, + { + "word": " like", + "start": 1603.18, + "end": 1603.42, + "probability": 1.0 + }, + { + "word": " Revo", + "start": 1603.42, + "end": 1603.76, + "probability": 0.9716796875 + }, + { + "word": " to", + "start": 1603.76, + "end": 1604.0, + "probability": 1.0 + }, + { + "word": " utterly", + "start": 1604.0, + "end": 1604.76, + "probability": 0.99951171875 + }, + { + "word": " annihilate", + "start": 1604.76, + "end": 1605.54, + "probability": 1.0 + }, + { + "word": " Kaspersky", + "start": 1605.54, + "end": 1607.6, + "probability": 0.95849609375 + }, + { + "word": " off", + "start": 1607.6, + "end": 1607.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1607.74, + "end": 1607.84, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1607.84, + "end": 1608.06, + "probability": 1.0 + } + ] + }, + { + "id": 743, + "text": "Okay.", + "start": 1608.84, + "end": 1609.28, + "words": [ + { + "word": " Okay.", + "start": 1608.84, + "end": 1609.28, + "probability": 0.98046875 + } + ] + }, + { + "id": 744, + "text": "Okay.", + "start": 1609.4, + "end": 1609.54, + "words": [ + { + "word": " Okay.", + "start": 1609.4, + "end": 1609.54, + "probability": 0.002532958984375 + } + ] + }, + { + "id": 745, + "text": "Yeah.", + "start": 1609.98, + "end": 1610.04, + "words": [ + { + "word": " Yeah.", + "start": 1609.98, + "end": 1610.04, + "probability": 0.69873046875 + } + ] + }, + { + "id": 746, + "text": "Well, we have Kaspersky on all of our.", + "start": 1610.14, + "end": 1611.86, + "words": [ + { + "word": " Well,", + "start": 1610.14, + "end": 1610.56, + "probability": 0.8798828125 + }, + { + "word": " we", + "start": 1610.64, + "end": 1610.74, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 1610.74, + "end": 1610.84, + "probability": 0.99853515625 + }, + { + "word": " Kaspersky", + "start": 1610.84, + "end": 1611.28, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 1611.28, + "end": 1611.42, + "probability": 0.6728515625 + }, + { + "word": " all", + "start": 1611.42, + "end": 1611.6, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1611.6, + "end": 1611.74, + "probability": 0.99951171875 + }, + { + "word": " our.", + "start": 1611.74, + "end": 1611.86, + "probability": 0.96337890625 + } + ] + }, + { + "id": 747, + "text": "So we got like a.", + "start": 1611.94, + "end": 1613.04, + "words": [ + { + "word": " So", + "start": 1611.94, + "end": 1612.34, + "probability": 0.1654052734375 + }, + { + "word": " we", + "start": 1612.34, + "end": 1612.52, + "probability": 0.85791015625 + }, + { + "word": " got", + "start": 1612.52, + "end": 1612.68, + "probability": 0.8291015625 + }, + { + "word": " like", + "start": 1612.68, + "end": 1612.88, + "probability": 0.90966796875 + }, + { + "word": " a.", + "start": 1612.88, + "end": 1613.04, + "probability": 0.98388671875 + } + ] + }, + { + "id": 748, + "text": "Yeah, everybody usually gets the home pack, and they put it on everything.", + "start": 1613.44, + "end": 1616.02, + "words": [ + { + "word": " Yeah,", + "start": 1613.44, + "end": 1613.84, + "probability": 0.91015625 + }, + { + "word": " everybody", + "start": 1613.86, + "end": 1614.02, + "probability": 0.99951171875 + }, + { + "word": " usually", + "start": 1614.02, + "end": 1614.36, + "probability": 0.99951171875 + }, + { + "word": " gets", + "start": 1614.36, + "end": 1614.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1614.62, + "end": 1614.72, + "probability": 0.9677734375 + }, + { + "word": " home", + "start": 1614.72, + "end": 1614.92, + "probability": 0.87548828125 + }, + { + "word": " pack,", + "start": 1614.92, + "end": 1615.2, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 1615.26, + "end": 1615.42, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1615.42, + "end": 1615.48, + "probability": 1.0 + }, + { + "word": " put", + "start": 1615.48, + "end": 1615.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 1615.6, + "end": 1615.68, + "probability": 1.0 + }, + { + "word": " on", + "start": 1615.68, + "end": 1615.76, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 1615.76, + "end": 1616.02, + "probability": 1.0 + } + ] + }, + { + "id": 749, + "text": "You will notice a dramatic difference in speed just by uninstalling Kaspersky.", + "start": 1617.1399999999999, + "end": 1621.44, + "words": [ + { + "word": " You", + "start": 1617.1399999999999, + "end": 1617.54, + "probability": 0.76171875 + }, + { + "word": " will", + "start": 1617.54, + "end": 1617.94, + "probability": 0.99951171875 + }, + { + "word": " notice", + "start": 1617.94, + "end": 1618.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1618.26, + "end": 1618.44, + "probability": 1.0 + }, + { + "word": " dramatic", + "start": 1618.44, + "end": 1619.02, + "probability": 1.0 + }, + { + "word": " difference", + "start": 1619.02, + "end": 1619.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 1619.5, + "end": 1619.74, + "probability": 1.0 + }, + { + "word": " speed", + "start": 1619.74, + "end": 1619.96, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1619.96, + "end": 1620.22, + "probability": 0.99658203125 + }, + { + "word": " by", + "start": 1620.22, + "end": 1620.42, + "probability": 1.0 + }, + { + "word": " uninstalling", + "start": 1620.42, + "end": 1620.92, + "probability": 0.9990234375 + }, + { + "word": " Kaspersky.", + "start": 1620.92, + "end": 1621.44, + "probability": 0.80322265625 + } + ] + }, + { + "id": 750, + "text": "Okay.", + "start": 1622.54, + "end": 1622.94, + "words": [ + { + "word": " Okay.", + "start": 1622.54, + "end": 1622.94, + "probability": 0.93798828125 + } + ] + }, + { + "id": 751, + "text": "So give that a shot and let me know.", + "start": 1623.06, + "end": 1624.96, + "words": [ + { + "word": " So", + "start": 1623.06, + "end": 1623.46, + "probability": 0.97216796875 + }, + { + "word": " give", + "start": 1623.46, + "end": 1623.98, + "probability": 0.53662109375 + }, + { + "word": " that", + "start": 1623.98, + "end": 1624.32, + "probability": 0.9755859375 + }, + { + "word": " a", + "start": 1624.32, + "end": 1624.36, + "probability": 0.91357421875 + }, + { + "word": " shot", + "start": 1624.36, + "end": 1624.5, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 1624.5, + "end": 1624.64, + "probability": 0.98388671875 + }, + { + "word": " let", + "start": 1624.64, + "end": 1624.72, + "probability": 1.0 + }, + { + "word": " me", + "start": 1624.72, + "end": 1624.84, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1624.84, + "end": 1624.96, + "probability": 1.0 + } + ] + }, + { + "id": 752, + "text": "Thank you.", + "start": 1625.44, + "end": 1625.96, + "words": [ + { + "word": " Thank", + "start": 1625.44, + "end": 1625.84, + "probability": 0.998046875 + }, + { + "word": " you.", + "start": 1625.84, + "end": 1625.96, + "probability": 1.0 + } + ] + }, + { + "id": 753, + "text": "All right.", + "start": 1626.04, + "end": 1626.38, + "words": [ + { + "word": " All", + "start": 1626.04, + "end": 1626.28, + "probability": 0.99560546875 + }, + { + "word": " right.", + "start": 1626.28, + "end": 1626.38, + "probability": 1.0 + } + ] + }, + { + "id": 754, + "text": "All right.", + "start": 1627.24, + "end": 1627.84, + "words": [ + { + "word": " All", + "start": 1627.24, + "end": 1627.64, + "probability": 0.98388671875 + }, + { + "word": " right.", + "start": 1627.64, + "end": 1627.84, + "probability": 1.0 + } + ] + }, + { + "id": 755, + "text": "Let's go ahead and talk to Tom.", + "start": 1627.84, + "end": 1628.66, + "words": [ + { + "word": " Let's", + "start": 1627.84, + "end": 1628.08, + "probability": 1.0 + }, + { + "word": " go", + "start": 1628.08, + "end": 1628.12, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1628.12, + "end": 1628.24, + "probability": 0.97802734375 + }, + { + "word": " and", + "start": 1628.24, + "end": 1628.26, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1628.26, + "end": 1628.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1628.36, + "end": 1628.44, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 1628.44, + "end": 1628.66, + "probability": 1.0 + } + ] + }, + { + "id": 756, + "text": "Tom, how are you?", + "start": 1629.1, + "end": 1629.94, + "words": [ + { + "word": " Tom,", + "start": 1629.1, + "end": 1629.5, + "probability": 1.0 + }, + { + "word": " how", + "start": 1629.54, + "end": 1629.66, + "probability": 1.0 + }, + { + "word": " are", + "start": 1629.66, + "end": 1629.8, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1629.8, + "end": 1629.94, + "probability": 1.0 + } + ] + }, + { + "id": 757, + "text": "Hi.", + "start": 1630.22, + "end": 1630.62, + "words": [ + { + "word": " Hi.", + "start": 1630.22, + "end": 1630.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 758, + "text": "Hey.", + "start": 1630.64, + "end": 1630.84, + "words": [ + { + "word": " Hey.", + "start": 1630.64, + "end": 1630.84, + "probability": 0.9970703125 + } + ] + }, + { + "id": 759, + "text": "I got a question regarding viruses upgrading to 10 virus protectors.", + "start": 1631.44, + "end": 1636.26, + "words": [ + { + "word": " I", + "start": 1631.44, + "end": 1631.84, + "probability": 0.99853515625 + }, + { + "word": " got", + "start": 1631.84, + "end": 1632.0, + "probability": 0.96923828125 + }, + { + "word": " a", + "start": 1632.0, + "end": 1632.12, + "probability": 1.0 + }, + { + "word": " question", + "start": 1632.12, + "end": 1632.4, + "probability": 1.0 + }, + { + "word": " regarding", + "start": 1632.4, + "end": 1632.86, + "probability": 0.9990234375 + }, + { + "word": " viruses", + "start": 1632.86, + "end": 1633.9, + "probability": 0.99267578125 + }, + { + "word": " upgrading", + "start": 1633.9, + "end": 1634.8, + "probability": 0.86328125 + }, + { + "word": " to", + "start": 1634.8, + "end": 1635.04, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 1635.04, + "end": 1635.32, + "probability": 0.9853515625 + }, + { + "word": " virus", + "start": 1635.32, + "end": 1635.76, + "probability": 0.3671875 + }, + { + "word": " protectors.", + "start": 1635.76, + "end": 1636.26, + "probability": 0.9609375 + } + ] + }, + { + "id": 760, + "text": "Yep.", + "start": 1636.34, + "end": 1636.7, + "words": [ + { + "word": " Yep.", + "start": 1636.34, + "end": 1636.7, + "probability": 0.89208984375 + } + ] + }, + { + "id": 761, + "text": "What about Microsoft Security Essentials?", + "start": 1636.7, + "end": 1638.62, + "words": [ + { + "word": " What", + "start": 1636.7, + "end": 1636.82, + "probability": 0.99755859375 + }, + { + "word": " about", + "start": 1636.82, + "end": 1636.96, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 1636.96, + "end": 1637.46, + "probability": 1.0 + }, + { + "word": " Security", + "start": 1637.46, + "end": 1637.96, + "probability": 0.9677734375 + }, + { + "word": " Essentials?", + "start": 1637.96, + "end": 1638.62, + "probability": 0.9970703125 + } + ] + }, + { + "id": 762, + "text": "All antivirus.", + "start": 1638.64, + "end": 1639.22, + "words": [ + { + "word": " All", + "start": 1638.64, + "end": 1638.76, + "probability": 0.99951171875 + }, + { + "word": " antivirus.", + "start": 1638.76, + "end": 1639.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 763, + "text": "If it's antivirus, uninstall it.", + "start": 1639.28, + "end": 1640.86, + "words": [ + { + "word": " If", + "start": 1639.28, + "end": 1639.6, + "probability": 0.9912109375 + }, + { + "word": " it's", + "start": 1639.6, + "end": 1639.8, + "probability": 1.0 + }, + { + "word": " antivirus,", + "start": 1639.8, + "end": 1640.2, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 1640.3, + "end": 1640.68, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1640.68, + "end": 1640.86, + "probability": 1.0 + } + ] + }, + { + "id": 764, + "text": "Okay.", + "start": 1640.98, + "end": 1641.32, + "words": [ + { + "word": " Okay.", + "start": 1640.98, + "end": 1641.32, + "probability": 0.030181884765625 + } + ] + }, + { + "id": 765, + "text": "So uninstall it.", + "start": 1641.32, + "end": 1641.92, + "words": [ + { + "word": " So", + "start": 1641.32, + "end": 1641.32, + "probability": 0.84716796875 + }, + { + "word": " uninstall", + "start": 1641.32, + "end": 1641.92, + "probability": 0.8916015625 + }, + { + "word": " it.", + "start": 1641.92, + "end": 1641.92, + "probability": 0.47802734375 + } + ] + }, + { + "id": 766, + "text": "Uninstall Microsoft Security Essentials.", + "start": 1641.94, + "end": 1643.52, + "words": [ + { + "word": " Uninstall", + "start": 1641.94, + "end": 1642.14, + "probability": 0.8623046875 + }, + { + "word": " Microsoft", + "start": 1642.14, + "end": 1642.38, + "probability": 0.99951171875 + }, + { + "word": " Security", + "start": 1642.38, + "end": 1642.9, + "probability": 0.98876953125 + }, + { + "word": " Essentials.", + "start": 1642.9, + "end": 1643.52, + "probability": 0.998046875 + } + ] + }, + { + "id": 767, + "text": "Yep.", + "start": 1643.56, + "end": 1643.76, + "words": [ + { + "word": " Yep.", + "start": 1643.56, + "end": 1643.76, + "probability": 0.95361328125 + } + ] + }, + { + "id": 768, + "text": "Because Essentials is actually a dead product as of Windows 7.", + "start": 1643.96, + "end": 1647.4, + "words": [ + { + "word": " Because", + "start": 1643.96, + "end": 1644.36, + "probability": 0.95361328125 + }, + { + "word": " Essentials", + "start": 1644.36, + "end": 1645.26, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 1645.26, + "end": 1645.34, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1645.34, + "end": 1645.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 1645.62, + "end": 1645.78, + "probability": 1.0 + }, + { + "word": " dead", + "start": 1645.78, + "end": 1645.94, + "probability": 1.0 + }, + { + "word": " product", + "start": 1645.94, + "end": 1646.28, + "probability": 1.0 + }, + { + "word": " as", + "start": 1646.28, + "end": 1646.64, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 1646.64, + "end": 1646.8, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 1646.8, + "end": 1647.08, + "probability": 1.0 + }, + { + "word": " 7.", + "start": 1647.08, + "end": 1647.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 769, + "text": "It's the last version it works on.", + "start": 1647.54, + "end": 1649.12, + "words": [ + { + "word": " It's", + "start": 1647.54, + "end": 1647.86, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1647.86, + "end": 1647.94, + "probability": 1.0 + }, + { + "word": " last", + "start": 1647.94, + "end": 1648.14, + "probability": 1.0 + }, + { + "word": " version", + "start": 1648.14, + "end": 1648.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 1648.66, + "end": 1648.76, + "probability": 1.0 + }, + { + "word": " works", + "start": 1648.76, + "end": 1648.96, + "probability": 1.0 + }, + { + "word": " on.", + "start": 1648.96, + "end": 1649.12, + "probability": 1.0 + } + ] + }, + { + "id": 770, + "text": "Uh-huh.", + "start": 1650.1, + "end": 1650.62, + "words": [ + { + "word": " Uh", + "start": 1650.1, + "end": 1650.5, + "probability": 0.5322265625 + }, + { + "word": "-huh.", + "start": 1650.5, + "end": 1650.62, + "probability": 0.99462890625 + } + ] + }, + { + "id": 771, + "text": "So, yeah, uninstall it.", + "start": 1650.74, + "end": 1652.46, + "words": [ + { + "word": " So,", + "start": 1650.74, + "end": 1651.12, + "probability": 0.9931640625 + }, + { + "word": " yeah,", + "start": 1651.24, + "end": 1651.68, + "probability": 0.9990234375 + }, + { + "word": " uninstall", + "start": 1651.72, + "end": 1652.18, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1652.18, + "end": 1652.46, + "probability": 1.0 + } + ] + }, + { + "id": 772, + "text": "Do your upgrade.", + "start": 1652.7, + "end": 1653.58, + "words": [ + { + "word": " Do", + "start": 1652.7, + "end": 1653.1, + "probability": 1.0 + }, + { + "word": " your", + "start": 1653.1, + "end": 1653.24, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1653.24, + "end": 1653.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 773, + "text": "You don't have to reinstall Essentials because Defender's built in, which is the replacement", + "start": 1653.72, + "end": 1658.0, + "words": [ + { + "word": " You", + "start": 1653.72, + "end": 1654.04, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1654.04, + "end": 1654.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 1654.32, + "end": 1654.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1654.48, + "end": 1654.62, + "probability": 1.0 + }, + { + "word": " reinstall", + "start": 1654.62, + "end": 1655.12, + "probability": 0.998046875 + }, + { + "word": " Essentials", + "start": 1655.12, + "end": 1655.62, + "probability": 1.0 + }, + { + "word": " because", + "start": 1655.62, + "end": 1655.8, + "probability": 0.986328125 + }, + { + "word": " Defender's", + "start": 1655.8, + "end": 1656.38, + "probability": 0.818359375 + }, + { + "word": " built", + "start": 1656.38, + "end": 1656.54, + "probability": 1.0 + }, + { + "word": " in,", + "start": 1656.54, + "end": 1656.76, + "probability": 0.98681640625 + }, + { + "word": " which", + "start": 1656.84, + "end": 1656.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 1656.98, + "end": 1657.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1657.1, + "end": 1657.34, + "probability": 1.0 + }, + { + "word": " replacement", + "start": 1657.34, + "end": 1658.0, + "probability": 1.0 + } + ] + }, + { + "id": 774, + "text": "for Essentials.", + "start": 1658.0, + "end": 1658.82, + "words": [ + { + "word": " for", + "start": 1658.0, + "end": 1658.36, + "probability": 1.0 + }, + { + "word": " Essentials.", + "start": 1658.36, + "end": 1658.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 775, + "text": "The new version.", + "start": 1658.82, + "end": 1658.94, + "words": [ + { + "word": " The", + "start": 1658.82, + "end": 1658.82, + "probability": 0.7705078125 + }, + { + "word": " new", + "start": 1658.82, + "end": 1658.82, + "probability": 0.99951171875 + }, + { + "word": " version.", + "start": 1658.82, + "end": 1658.94, + "probability": 1.0 + } + ] + }, + { + "id": 776, + "text": "Okay.", + "start": 1659.68, + "end": 1660.08, + "words": [ + { + "word": " Okay.", + "start": 1659.68, + "end": 1660.08, + "probability": 0.97705078125 + } + ] + }, + { + "id": 777, + "text": "So uninstall Microsoft Security Essentials first, and we'll get Defender when we upgrade.", + "start": 1660.12, + "end": 1663.82, + "words": [ + { + "word": " So", + "start": 1660.12, + "end": 1660.3, + "probability": 0.9970703125 + }, + { + "word": " uninstall", + "start": 1660.3, + "end": 1660.68, + "probability": 0.86669921875 + }, + { + "word": " Microsoft", + "start": 1660.68, + "end": 1661.0, + "probability": 1.0 + }, + { + "word": " Security", + "start": 1661.0, + "end": 1661.46, + "probability": 1.0 + }, + { + "word": " Essentials", + "start": 1661.46, + "end": 1661.98, + "probability": 0.9990234375 + }, + { + "word": " first,", + "start": 1661.98, + "end": 1662.18, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1662.22, + "end": 1662.42, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 1662.42, + "end": 1662.76, + "probability": 1.0 + }, + { + "word": " get", + "start": 1662.76, + "end": 1662.84, + "probability": 1.0 + }, + { + "word": " Defender", + "start": 1662.84, + "end": 1663.24, + "probability": 1.0 + }, + { + "word": " when", + "start": 1663.24, + "end": 1663.4, + "probability": 1.0 + }, + { + "word": " we", + "start": 1663.4, + "end": 1663.54, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 1663.54, + "end": 1663.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 778, + "text": "Correct.", + "start": 1664.04, + "end": 1664.34, + "words": [ + { + "word": " Correct.", + "start": 1664.04, + "end": 1664.34, + "probability": 0.9921875 + } + ] + }, + { + "id": 779, + "text": "Thank you very much.", + "start": 1664.72, + "end": 1665.62, + "words": [ + { + "word": " Thank", + "start": 1664.72, + "end": 1665.12, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1665.12, + "end": 1665.3, + "probability": 1.0 + }, + { + "word": " very", + "start": 1665.3, + "end": 1665.42, + "probability": 1.0 + }, + { + "word": " much.", + "start": 1665.42, + "end": 1665.62, + "probability": 1.0 + } + ] + }, + { + "id": 780, + "text": "My pleasure.", + "start": 1665.82, + "end": 1666.66, + "words": [ + { + "word": " My", + "start": 1665.82, + "end": 1666.22, + "probability": 0.99951171875 + }, + { + "word": " pleasure.", + "start": 1666.22, + "end": 1666.66, + "probability": 1.0 + } + ] + }, + { + "id": 781, + "text": "That was quick and easy.", + "start": 1667.24, + "end": 1668.26, + "words": [ + { + "word": " That", + "start": 1667.24, + "end": 1667.64, + "probability": 0.9873046875 + }, + { + "word": " was", + "start": 1667.64, + "end": 1667.8, + "probability": 1.0 + }, + { + "word": " quick", + "start": 1667.8, + "end": 1667.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 1667.96, + "end": 1668.1, + "probability": 1.0 + }, + { + "word": " easy.", + "start": 1668.1, + "end": 1668.26, + "probability": 1.0 + } + ] + }, + { + "id": 782, + "text": "That's a lot of Windows 10 questions today.", + "start": 1669.32, + "end": 1670.82, + "words": [ + { + "word": " That's", + "start": 1669.32, + "end": 1669.72, + "probability": 0.876953125 + }, + { + "word": " a", + "start": 1669.72, + "end": 1669.76, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 1669.76, + "end": 1669.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 1669.84, + "end": 1669.9, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 1669.9, + "end": 1670.04, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1670.04, + "end": 1670.24, + "probability": 1.0 + }, + { + "word": " questions", + "start": 1670.24, + "end": 1670.5, + "probability": 1.0 + }, + { + "word": " today.", + "start": 1670.5, + "end": 1670.82, + "probability": 1.0 + } + ] + }, + { + "id": 783, + "text": "Yeah.", + "start": 1671.52, + "end": 1671.92, + "words": [ + { + "word": " Yeah.", + "start": 1671.52, + "end": 1671.92, + "probability": 0.90283203125 + } + ] + }, + { + "id": 784, + "text": "Yeah.", + "start": 1671.94, + "end": 1672.08, + "words": [ + { + "word": " Yeah.", + "start": 1671.94, + "end": 1672.08, + "probability": 0.91748046875 + } + ] + }, + { + "id": 785, + "text": "Yeah.", + "start": 1672.58, + "end": 1672.98, + "words": [ + { + "word": " Yeah.", + "start": 1672.58, + "end": 1672.98, + "probability": 0.305908203125 + } + ] + }, + { + "id": 786, + "text": "Well, you know, the deadline is coming up.", + "start": 1673.02, + "end": 1674.46, + "words": [ + { + "word": " Well,", + "start": 1673.02, + "end": 1673.16, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 1673.26, + "end": 1673.38, + "probability": 0.7275390625 + }, + { + "word": " know,", + "start": 1673.38, + "end": 1673.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1673.48, + "end": 1673.56, + "probability": 1.0 + }, + { + "word": " deadline", + "start": 1673.56, + "end": 1673.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 1673.8, + "end": 1674.02, + "probability": 1.0 + }, + { + "word": " coming", + "start": 1674.02, + "end": 1674.2, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1674.2, + "end": 1674.46, + "probability": 1.0 + } + ] + }, + { + "id": 787, + "text": "We need to just start telling people, switch to Linux.", + "start": 1674.52, + "end": 1676.16, + "words": [ + { + "word": " We", + "start": 1674.52, + "end": 1674.74, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 1674.74, + "end": 1674.86, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1674.86, + "end": 1674.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 1674.96, + "end": 1675.02, + "probability": 0.134765625 + }, + { + "word": " start", + "start": 1675.02, + "end": 1675.16, + "probability": 1.0 + }, + { + "word": " telling", + "start": 1675.16, + "end": 1675.36, + "probability": 1.0 + }, + { + "word": " people,", + "start": 1675.36, + "end": 1675.6, + "probability": 1.0 + }, + { + "word": " switch", + "start": 1675.64, + "end": 1675.8, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1675.8, + "end": 1675.98, + "probability": 1.0 + }, + { + "word": " Linux.", + "start": 1675.98, + "end": 1676.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 788, + "text": "That won't confuse anyone at all.", + "start": 1677.44, + "end": 1679.02, + "words": [ + { + "word": " That", + "start": 1677.44, + "end": 1677.84, + "probability": 0.99609375 + }, + { + "word": " won't", + "start": 1677.84, + "end": 1678.2, + "probability": 1.0 + }, + { + "word": " confuse", + "start": 1678.2, + "end": 1678.44, + "probability": 1.0 + }, + { + "word": " anyone", + "start": 1678.44, + "end": 1678.7, + "probability": 1.0 + }, + { + "word": " at", + "start": 1678.7, + "end": 1678.88, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1678.88, + "end": 1679.02, + "probability": 1.0 + } + ] + }, + { + "id": 789, + "text": "We did that for a while, though.", + "start": 1679.48, + "end": 1680.98, + "words": [ + { + "word": " We", + "start": 1679.48, + "end": 1679.88, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 1679.88, + "end": 1680.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 1680.0, + "end": 1680.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 1680.16, + "end": 1680.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 1680.34, + "end": 1680.48, + "probability": 1.0 + }, + { + "word": " while,", + "start": 1680.48, + "end": 1680.76, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1680.82, + "end": 1680.98, + "probability": 1.0 + } + ] + }, + { + "id": 790, + "text": "When the 8 upgrade, when 8 first came out, we were like, you know what?", + "start": 1681.86, + "end": 1686.8, + "words": [ + { + "word": " When", + "start": 1681.86, + "end": 1682.26, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 1682.26, + "end": 1682.48, + "probability": 0.99072265625 + }, + { + "word": " 8", + "start": 1682.48, + "end": 1682.62, + "probability": 0.98681640625 + }, + { + "word": " upgrade,", + "start": 1682.62, + "end": 1682.92, + "probability": 0.9794921875 + }, + { + "word": " when", + "start": 1683.18, + "end": 1683.8, + "probability": 1.0 + }, + { + "word": " 8", + "start": 1683.8, + "end": 1684.06, + "probability": 0.86767578125 + }, + { + "word": " first", + "start": 1684.06, + "end": 1685.38, + "probability": 1.0 + }, + { + "word": " came", + "start": 1685.38, + "end": 1685.6, + "probability": 1.0 + }, + { + "word": " out,", + "start": 1685.6, + "end": 1685.88, + "probability": 1.0 + }, + { + "word": " we", + "start": 1685.9, + "end": 1686.0, + "probability": 1.0 + }, + { + "word": " were", + "start": 1686.0, + "end": 1686.08, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1686.08, + "end": 1686.32, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1686.4, + "end": 1686.48, + "probability": 0.99853515625 + }, + { + "word": " know", + "start": 1686.48, + "end": 1686.6, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1686.6, + "end": 1686.8, + "probability": 1.0 + } + ] + }, + { + "id": 791, + "text": "Screw this.", + "start": 1687.38, + "end": 1688.0, + "words": [ + { + "word": " Screw", + "start": 1687.38, + "end": 1687.78, + "probability": 0.99951171875 + }, + { + "word": " this.", + "start": 1687.78, + "end": 1688.0, + "probability": 1.0 + } + ] + }, + { + "id": 792, + "text": "Let's go to Linux.", + "start": 1688.04, + "end": 1688.7, + "words": [ + { + "word": " Let's", + "start": 1688.04, + "end": 1688.26, + "probability": 1.0 + }, + { + "word": " go", + "start": 1688.26, + "end": 1688.32, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1688.32, + "end": 1688.42, + "probability": 1.0 + }, + { + "word": " Linux.", + "start": 1688.42, + "end": 1688.7, + "probability": 1.0 + } + ] + }, + { + "id": 793, + "text": "Everybody use Linux now.", + "start": 1688.94, + "end": 1690.04, + "words": [ + { + "word": " Everybody", + "start": 1688.94, + "end": 1689.28, + "probability": 0.9990234375 + }, + { + "word": " use", + "start": 1689.28, + "end": 1689.52, + "probability": 0.99658203125 + }, + { + "word": " Linux", + "start": 1689.52, + "end": 1689.76, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1689.76, + "end": 1690.04, + "probability": 1.0 + } + ] + }, + { + "id": 794, + "text": "Nah.", + "start": 1690.38, + "end": 1690.6, + "words": [ + { + "word": " Nah.", + "start": 1690.38, + "end": 1690.6, + "probability": 0.445068359375 + } + ] + }, + { + "id": 795, + "text": "Real power users just code their own operating systems, Mike.", + "start": 1690.68, + "end": 1692.98, + "words": [ + { + "word": " Real", + "start": 1690.68, + "end": 1690.9, + "probability": 0.99658203125 + }, + { + "word": " power", + "start": 1690.9, + "end": 1691.14, + "probability": 0.9892578125 + }, + { + "word": " users", + "start": 1691.14, + "end": 1691.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 1691.44, + "end": 1691.64, + "probability": 1.0 + }, + { + "word": " code", + "start": 1691.64, + "end": 1691.86, + "probability": 1.0 + }, + { + "word": " their", + "start": 1691.86, + "end": 1691.98, + "probability": 1.0 + }, + { + "word": " own", + "start": 1691.98, + "end": 1692.1, + "probability": 1.0 + }, + { + "word": " operating", + "start": 1692.1, + "end": 1692.36, + "probability": 1.0 + }, + { + "word": " systems,", + "start": 1692.36, + "end": 1692.72, + "probability": 1.0 + }, + { + "word": " Mike.", + "start": 1692.84, + "end": 1692.98, + "probability": 1.0 + } + ] + }, + { + "id": 796, + "text": "Oh, yeah.", + "start": 1693.14, + "end": 1693.46, + "words": [ + { + "word": " Oh,", + "start": 1693.14, + "end": 1693.34, + "probability": 0.99755859375 + }, + { + "word": " yeah.", + "start": 1693.34, + "end": 1693.46, + "probability": 1.0 + } + ] + }, + { + "id": 797, + "text": "Yeah.", + "start": 1693.58, + "end": 1693.98, + "words": [ + { + "word": " Yeah.", + "start": 1693.58, + "end": 1693.98, + "probability": 0.8623046875 + } + ] + }, + { + "id": 798, + "text": "Real power users.", + "start": 1694.22, + "end": 1695.32, + "words": [ + { + "word": " Real", + "start": 1694.22, + "end": 1694.62, + "probability": 0.99755859375 + }, + { + "word": " power", + "start": 1694.62, + "end": 1694.94, + "probability": 1.0 + }, + { + "word": " users.", + "start": 1694.94, + "end": 1695.32, + "probability": 1.0 + } + ] + }, + { + "id": 799, + "text": "Yep.", + "start": 1695.62, + "end": 1696.02, + "words": [ + { + "word": " Yep.", + "start": 1695.62, + "end": 1696.02, + "probability": 0.89111328125 + } + ] + }, + { + "id": 800, + "text": "Manipulate the hard drive with magnets.", + "start": 1696.76, + "end": 1699.18, + "words": [ + { + "word": " Manipulate", + "start": 1696.76, + "end": 1697.16, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1697.16, + "end": 1697.36, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1697.36, + "end": 1697.7, + "probability": 1.0 + }, + { + "word": " drive", + "start": 1697.7, + "end": 1697.96, + "probability": 1.0 + }, + { + "word": " with", + "start": 1697.96, + "end": 1698.26, + "probability": 1.0 + }, + { + "word": " magnets.", + "start": 1698.26, + "end": 1699.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 801, + "text": "Right.", + "start": 1699.78, + "end": 1700.18, + "words": [ + { + "word": " Right.", + "start": 1699.78, + "end": 1700.18, + "probability": 0.99755859375 + } + ] + }, + { + "id": 802, + "text": "You know, rather than actually writing any code.", + "start": 1700.22, + "end": 1701.52, + "words": [ + { + "word": " You", + "start": 1700.22, + "end": 1700.3, + "probability": 0.79150390625 + }, + { + "word": " know,", + "start": 1700.3, + "end": 1700.36, + "probability": 1.0 + }, + { + "word": " rather", + "start": 1700.36, + "end": 1700.5, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 1700.5, + "end": 1700.66, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1700.66, + "end": 1700.86, + "probability": 1.0 + }, + { + "word": " writing", + "start": 1700.86, + "end": 1701.14, + "probability": 1.0 + }, + { + "word": " any", + "start": 1701.14, + "end": 1701.28, + "probability": 1.0 + }, + { + "word": " code.", + "start": 1701.28, + "end": 1701.52, + "probability": 1.0 + } + ] + }, + { + "id": 803, + "text": "Right.", + "start": 1701.64, + "end": 1701.92, + "words": [ + { + "word": " Right.", + "start": 1701.64, + "end": 1701.92, + "probability": 0.99072265625 + } + ] + }, + { + "id": 804, + "text": "You gotta open a port and just suck it.", + "start": 1701.94, + "end": 1703.42, + "words": [ + { + "word": " You", + "start": 1701.94, + "end": 1702.04, + "probability": 0.1285400390625 + }, + { + "word": " gotta", + "start": 1702.04, + "end": 1702.18, + "probability": 0.1856689453125 + }, + { + "word": " open", + "start": 1702.18, + "end": 1702.36, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1702.36, + "end": 1702.52, + "probability": 0.99267578125 + }, + { + "word": " port", + "start": 1702.52, + "end": 1702.7, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1702.7, + "end": 1702.9, + "probability": 0.95361328125 + }, + { + "word": " just", + "start": 1702.9, + "end": 1703.08, + "probability": 0.9599609375 + }, + { + "word": " suck", + "start": 1703.08, + "end": 1703.26, + "probability": 0.56298828125 + }, + { + "word": " it.", + "start": 1703.26, + "end": 1703.42, + "probability": 1.0 + } + ] + }, + { + "id": 805, + "text": "Have you ever watched, Kent, have you ever watched 24, the Jack Bauer show?", + "start": 1706.3199999999997, + "end": 1711.46, + "words": [ + { + "word": " Have", + "start": 1706.3199999999997, + "end": 1706.6999999999998, + "probability": 0.6923828125 + }, + { + "word": " you", + "start": 1706.6999999999998, + "end": 1707.08, + "probability": 1.0 + }, + { + "word": " ever", + "start": 1707.08, + "end": 1707.16, + "probability": 1.0 + }, + { + "word": " watched,", + "start": 1707.16, + "end": 1707.44, + "probability": 1.0 + }, + { + "word": " Kent,", + "start": 1707.52, + "end": 1708.36, + "probability": 0.88037109375 + }, + { + "word": " have", + "start": 1708.38, + "end": 1708.52, + "probability": 0.93017578125 + }, + { + "word": " you", + "start": 1708.52, + "end": 1708.58, + "probability": 1.0 + }, + { + "word": " ever", + "start": 1708.58, + "end": 1708.68, + "probability": 1.0 + }, + { + "word": " watched", + "start": 1708.68, + "end": 1708.88, + "probability": 1.0 + }, + { + "word": " 24,", + "start": 1708.88, + "end": 1709.24, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1709.6, + "end": 1710.02, + "probability": 0.99755859375 + }, + { + "word": " Jack", + "start": 1710.02, + "end": 1710.92, + "probability": 0.99951171875 + }, + { + "word": " Bauer", + "start": 1710.92, + "end": 1711.22, + "probability": 0.98828125 + }, + { + "word": " show?", + "start": 1711.22, + "end": 1711.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 806, + "text": "Did you ever see that?", + "start": 1711.72, + "end": 1712.34, + "words": [ + { + "word": " Did", + "start": 1711.72, + "end": 1711.9, + "probability": 0.6171875 + }, + { + "word": " you", + "start": 1711.9, + "end": 1711.94, + "probability": 1.0 + }, + { + "word": " ever", + "start": 1711.94, + "end": 1712.08, + "probability": 1.0 + }, + { + "word": " see", + "start": 1712.08, + "end": 1712.22, + "probability": 1.0 + }, + { + "word": " that?", + "start": 1712.22, + "end": 1712.34, + "probability": 1.0 + } + ] + }, + { + "id": 807, + "text": "No, I have not.", + "start": 1712.56, + "end": 1713.62, + "words": [ + { + "word": " No,", + "start": 1712.56, + "end": 1712.92, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1712.94, + "end": 1713.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 1713.24, + "end": 1713.4, + "probability": 1.0 + }, + { + "word": " not.", + "start": 1713.4, + "end": 1713.62, + "probability": 1.0 + } + ] + }, + { + "id": 808, + "text": "It's worth it to watch just for the tech speak.", + "start": 1714.24, + "end": 1716.04, + "words": [ + { + "word": " It's", + "start": 1714.24, + "end": 1714.62, + "probability": 0.9990234375 + }, + { + "word": " worth", + "start": 1714.62, + "end": 1714.8, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1714.8, + "end": 1714.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1714.92, + "end": 1715.0, + "probability": 1.0 + }, + { + "word": " watch", + "start": 1715.0, + "end": 1715.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 1715.16, + "end": 1715.36, + "probability": 0.98095703125 + }, + { + "word": " for", + "start": 1715.36, + "end": 1715.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1715.52, + "end": 1715.62, + "probability": 1.0 + }, + { + "word": " tech", + "start": 1715.62, + "end": 1715.82, + "probability": 0.982421875 + }, + { + "word": " speak.", + "start": 1715.82, + "end": 1716.04, + "probability": 0.99609375 + } + ] + }, + { + "id": 809, + "text": "Yeah, just the way they talk about computers.", + "start": 1716.24, + "end": 1717.92, + "words": [ + { + "word": " Yeah,", + "start": 1716.24, + "end": 1716.42, + "probability": 0.990234375 + }, + { + "word": " just", + "start": 1716.46, + "end": 1716.6, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1716.6, + "end": 1716.76, + "probability": 1.0 + }, + { + "word": " way", + "start": 1716.76, + "end": 1716.9, + "probability": 1.0 + }, + { + "word": " they", + "start": 1716.9, + "end": 1717.02, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1717.02, + "end": 1717.24, + "probability": 1.0 + }, + { + "word": " about", + "start": 1717.24, + "end": 1717.46, + "probability": 1.0 + }, + { + "word": " computers.", + "start": 1717.46, + "end": 1717.92, + "probability": 1.0 + } + ] + }, + { + "id": 810, + "text": "I'll check it out.", + "start": 1718.14, + "end": 1718.8, + "words": [ + { + "word": " I'll", + "start": 1718.14, + "end": 1718.44, + "probability": 0.974609375 + }, + { + "word": " check", + "start": 1718.44, + "end": 1718.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 1718.58, + "end": 1718.7, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1718.7, + "end": 1718.8, + "probability": 1.0 + } + ] + }, + { + "id": 811, + "text": "It's...", + "start": 1719.0, + "end": 1719.36, + "words": [ + { + "word": " It's...", + "start": 1719.0, + "end": 1719.36, + "probability": 0.474853515625 + } + ] + }, + { + "id": 812, + "text": "Open up a port on that firewall.", + "start": 1719.8600000000001, + "end": 1721.08, + "words": [ + { + "word": " Open", + "start": 1719.8600000000001, + "end": 1720.08, + "probability": 0.9892578125 + }, + { + "word": " up", + "start": 1720.08, + "end": 1720.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1720.2, + "end": 1720.32, + "probability": 1.0 + }, + { + "word": " port", + "start": 1720.32, + "end": 1720.48, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1720.48, + "end": 1720.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1720.6, + "end": 1720.72, + "probability": 1.0 + }, + { + "word": " firewall.", + "start": 1720.72, + "end": 1721.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 813, + "text": "Patch me through.", + "start": 1721.22, + "end": 1721.76, + "words": [ + { + "word": " Patch", + "start": 1721.22, + "end": 1721.36, + "probability": 0.98681640625 + }, + { + "word": " me", + "start": 1721.36, + "end": 1721.54, + "probability": 1.0 + }, + { + "word": " through.", + "start": 1721.54, + "end": 1721.76, + "probability": 1.0 + } + ] + }, + { + "id": 814, + "text": "That's right.", + "start": 1721.94, + "end": 1722.5, + "words": [ + { + "word": " That's", + "start": 1721.94, + "end": 1722.3, + "probability": 0.97998046875 + }, + { + "word": " right.", + "start": 1722.3, + "end": 1722.5, + "probability": 1.0 + } + ] + }, + { + "id": 815, + "text": "There's...", + "start": 1722.98, + "end": 1723.36, + "words": [ + { + "word": " There's...", + "start": 1722.98, + "end": 1723.36, + "probability": 0.86083984375 + } + ] + }, + { + "id": 816, + "text": "It's open up a socket.", + "start": 1724.0, + "end": 1725.04, + "words": [ + { + "word": " It's", + "start": 1724.0, + "end": 1724.38, + "probability": 0.8349609375 + }, + { + "word": " open", + "start": 1724.38, + "end": 1724.54, + "probability": 0.78564453125 + }, + { + "word": " up", + "start": 1724.54, + "end": 1724.74, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1724.74, + "end": 1724.8, + "probability": 1.0 + }, + { + "word": " socket.", + "start": 1724.8, + "end": 1725.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 817, + "text": "My terminal needs a socket opened.", + "start": 1725.66, + "end": 1727.3, + "words": [ + { + "word": " My", + "start": 1725.66, + "end": 1726.04, + "probability": 0.96630859375 + }, + { + "word": " terminal", + "start": 1726.04, + "end": 1726.4, + "probability": 0.9990234375 + }, + { + "word": " needs", + "start": 1726.4, + "end": 1726.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 1726.6, + "end": 1726.76, + "probability": 1.0 + }, + { + "word": " socket", + "start": 1726.76, + "end": 1727.04, + "probability": 1.0 + }, + { + "word": " opened.", + "start": 1727.04, + "end": 1727.3, + "probability": 0.919921875 + } + ] + }, + { + "id": 818, + "text": "And...", + "start": 1728.18, + "end": 1728.56, + "words": [ + { + "word": " And...", + "start": 1728.18, + "end": 1728.56, + "probability": 0.464111328125 + } + ] + }, + { + "id": 819, + "text": "It...", + "start": 1728.56, + "end": 1728.74, + "words": [ + { + "word": " It...", + "start": 1728.56, + "end": 1728.74, + "probability": 0.6787109375 + } + ] + }, + { + "id": 820, + "text": "The stuff that really...", + "start": 1730.5599999999997, + "end": 1731.92, + "words": [ + { + "word": " The", + "start": 1730.5599999999997, + "end": 1730.9399999999998, + "probability": 0.92822265625 + }, + { + "word": " stuff", + "start": 1730.9399999999998, + "end": 1731.32, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1731.32, + "end": 1731.64, + "probability": 0.99951171875 + }, + { + "word": " really...", + "start": 1731.64, + "end": 1731.92, + "probability": 0.9375 + } + ] + }, + { + "id": 821, + "text": "The stuff that really killed me about that show is that, you know, anytime that I watch", + "start": 1731.94, + "end": 1735.82, + "words": [ + { + "word": " The", + "start": 1731.94, + "end": 1732.04, + "probability": 0.00043845176696777344 + }, + { + "word": " stuff", + "start": 1732.04, + "end": 1732.04, + "probability": 0.0012941360473632812 + }, + { + "word": " that", + "start": 1732.04, + "end": 1732.04, + "probability": 0.8251953125 + }, + { + "word": " really", + "start": 1732.04, + "end": 1732.04, + "probability": 0.82470703125 + }, + { + "word": " killed", + "start": 1732.04, + "end": 1732.12, + "probability": 0.99072265625 + }, + { + "word": " me", + "start": 1732.12, + "end": 1732.46, + "probability": 1.0 + }, + { + "word": " about", + "start": 1732.46, + "end": 1732.72, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 1732.72, + "end": 1733.0, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 1733.0, + "end": 1733.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 1733.26, + "end": 1733.44, + "probability": 0.89794921875 + }, + { + "word": " that,", + "start": 1733.44, + "end": 1733.62, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1733.7, + "end": 1734.52, + "probability": 0.97705078125 + }, + { + "word": " know,", + "start": 1734.52, + "end": 1734.72, + "probability": 1.0 + }, + { + "word": " anytime", + "start": 1734.72, + "end": 1735.36, + "probability": 0.72119140625 + }, + { + "word": " that", + "start": 1735.36, + "end": 1735.6, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1735.6, + "end": 1735.66, + "probability": 1.0 + }, + { + "word": " watch", + "start": 1735.66, + "end": 1735.82, + "probability": 1.0 + } + ] + }, + { + "id": 822, + "text": "any show where there's technology involved, there's so much just like, oh, that's not how", + "start": 1735.82, + "end": 1741.12, + "words": [ + { + "word": " any", + "start": 1735.82, + "end": 1736.06, + "probability": 1.0 + }, + { + "word": " show", + "start": 1736.06, + "end": 1736.36, + "probability": 1.0 + }, + { + "word": " where", + "start": 1736.36, + "end": 1736.56, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1736.56, + "end": 1736.82, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 1736.82, + "end": 1737.18, + "probability": 1.0 + }, + { + "word": " involved,", + "start": 1737.18, + "end": 1737.74, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1738.12, + "end": 1738.86, + "probability": 1.0 + }, + { + "word": " so", + "start": 1738.86, + "end": 1739.1, + "probability": 1.0 + }, + { + "word": " much", + "start": 1739.1, + "end": 1739.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 1739.42, + "end": 1739.68, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 1739.68, + "end": 1739.98, + "probability": 0.96630859375 + }, + { + "word": " oh,", + "start": 1740.16, + "end": 1740.62, + "probability": 0.98828125 + }, + { + "word": " that's", + "start": 1740.7, + "end": 1740.9, + "probability": 1.0 + }, + { + "word": " not", + "start": 1740.9, + "end": 1740.98, + "probability": 1.0 + }, + { + "word": " how", + "start": 1740.98, + "end": 1741.12, + "probability": 1.0 + } + ] + }, + { + "id": 823, + "text": "that works.", + "start": 1741.12, + "end": 1741.6, + "words": [ + { + "word": " that", + "start": 1741.12, + "end": 1741.24, + "probability": 1.0 + }, + { + "word": " works.", + "start": 1741.24, + "end": 1741.6, + "probability": 1.0 + } + ] + }, + { + "id": 824, + "text": "You know?", + "start": 1741.72, + "end": 1742.36, + "words": [ + { + "word": " You", + "start": 1741.72, + "end": 1742.16, + "probability": 0.142822265625 + }, + { + "word": " know?", + "start": 1742.16, + "end": 1742.36, + "probability": 1.0 + } + ] + }, + { + "id": 825, + "text": "And...", + "start": 1742.5, + "end": 1742.98, + "words": [ + { + "word": " And...", + "start": 1742.5, + "end": 1742.98, + "probability": 0.230712890625 + } + ] + }, + { + "id": 826, + "text": "But, you know, I try to be good about it.", + "start": 1742.98, + "end": 1744.52, + "words": [ + { + "word": " But,", + "start": 1742.98, + "end": 1743.38, + "probability": 0.92236328125 + }, + { + "word": " you", + "start": 1743.46, + "end": 1743.6, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1743.6, + "end": 1743.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 1743.7, + "end": 1743.76, + "probability": 1.0 + }, + { + "word": " try", + "start": 1743.76, + "end": 1743.9, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1743.9, + "end": 1744.0, + "probability": 1.0 + }, + { + "word": " be", + "start": 1744.0, + "end": 1744.08, + "probability": 1.0 + }, + { + "word": " good", + "start": 1744.08, + "end": 1744.22, + "probability": 1.0 + }, + { + "word": " about", + "start": 1744.22, + "end": 1744.4, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1744.4, + "end": 1744.52, + "probability": 1.0 + } + ] + }, + { + "id": 827, + "text": "I'm quiet.", + "start": 1744.58, + "end": 1745.18, + "words": [ + { + "word": " I'm", + "start": 1744.58, + "end": 1744.66, + "probability": 0.99951171875 + }, + { + "word": " quiet.", + "start": 1744.66, + "end": 1745.18, + "probability": 0.9609375 + } + ] + }, + { + "id": 828, + "text": "I don't say anything generally.", + "start": 1745.44, + "end": 1747.34, + "words": [ + { + "word": " I", + "start": 1745.44, + "end": 1745.62, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1745.62, + "end": 1745.78, + "probability": 1.0 + }, + { + "word": " say", + "start": 1745.78, + "end": 1745.96, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1745.96, + "end": 1746.24, + "probability": 1.0 + }, + { + "word": " generally.", + "start": 1746.24, + "end": 1747.34, + "probability": 0.8134765625 + } + ] + }, + { + "id": 829, + "text": "But that show just repeated basically two phrases throughout the whole thing, which", + "start": 1747.82, + "end": 1754.54, + "words": [ + { + "word": " But", + "start": 1747.82, + "end": 1748.3, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1748.3, + "end": 1748.52, + "probability": 0.99609375 + }, + { + "word": " show", + "start": 1748.52, + "end": 1748.8, + "probability": 1.0 + }, + { + "word": " just", + "start": 1748.8, + "end": 1749.78, + "probability": 0.9873046875 + }, + { + "word": " repeated", + "start": 1749.78, + "end": 1750.78, + "probability": 0.9990234375 + }, + { + "word": " basically", + "start": 1750.78, + "end": 1751.6, + "probability": 0.9775390625 + }, + { + "word": " two", + "start": 1751.6, + "end": 1752.02, + "probability": 0.99951171875 + }, + { + "word": " phrases", + "start": 1752.02, + "end": 1752.42, + "probability": 0.9990234375 + }, + { + "word": " throughout", + "start": 1752.42, + "end": 1752.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1752.82, + "end": 1753.06, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1753.06, + "end": 1753.34, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 1753.34, + "end": 1753.8, + "probability": 1.0 + }, + { + "word": " which", + "start": 1753.94, + "end": 1754.54, + "probability": 1.0 + } + ] + }, + { + "id": 830, + "text": "was, I'm going to need you to trust me.", + "start": 1754.54, + "end": 1756.88, + "words": [ + { + "word": " was,", + "start": 1754.54, + "end": 1754.9, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1754.94, + "end": 1756.12, + "probability": 1.0 + }, + { + "word": " going", + "start": 1756.12, + "end": 1756.16, + "probability": 0.771484375 + }, + { + "word": " to", + "start": 1756.16, + "end": 1756.18, + "probability": 1.0 + }, + { + "word": " need", + "start": 1756.18, + "end": 1756.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1756.32, + "end": 1756.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1756.42, + "end": 1756.48, + "probability": 1.0 + }, + { + "word": " trust", + "start": 1756.48, + "end": 1756.7, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1756.7, + "end": 1756.88, + "probability": 1.0 + } + ] + }, + { + "id": 831, + "text": "Which was said like every other dialogue.", + "start": 1757.94, + "end": 1760.66, + "words": [ + { + "word": " Which", + "start": 1757.94, + "end": 1758.42, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 1758.42, + "end": 1758.66, + "probability": 1.0 + }, + { + "word": " said", + "start": 1758.66, + "end": 1758.94, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1758.94, + "end": 1759.16, + "probability": 0.71484375 + }, + { + "word": " every", + "start": 1759.16, + "end": 1759.48, + "probability": 0.9970703125 + }, + { + "word": " other", + "start": 1759.48, + "end": 1759.9, + "probability": 1.0 + }, + { + "word": " dialogue.", + "start": 1759.9, + "end": 1760.66, + "probability": 0.99462890625 + } + ] + }, + { + "id": 832, + "text": "Every other dialogue sequence.", + "start": 1760.66, + "end": 1761.94, + "words": [ + { + "word": " Every", + "start": 1760.66, + "end": 1761.28, + "probability": 2.187490463256836e-05 + }, + { + "word": " other", + "start": 1761.28, + "end": 1761.28, + "probability": 0.0017490386962890625 + }, + { + "word": " dialogue", + "start": 1761.28, + "end": 1761.28, + "probability": 0.032806396484375 + }, + { + "word": " sequence.", + "start": 1761.28, + "end": 1761.94, + "probability": 0.98779296875 + } + ] + }, + { + "id": 833, + "text": "And then we're going to have to get them to open up a socket.", + "start": 1762.74, + "end": 1766.18, + "words": [ + { + "word": " And", + "start": 1762.74, + "end": 1763.1, + "probability": 0.955078125 + }, + { + "word": " then", + "start": 1763.1, + "end": 1763.36, + "probability": 0.9990234375 + }, + { + "word": " we're", + "start": 1763.36, + "end": 1764.82, + "probability": 0.8818359375 + }, + { + "word": " going", + "start": 1764.82, + "end": 1764.9, + "probability": 0.9208984375 + }, + { + "word": " to", + "start": 1764.9, + "end": 1764.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 1764.9, + "end": 1765.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1765.02, + "end": 1765.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 1765.04, + "end": 1765.18, + "probability": 1.0 + }, + { + "word": " them", + "start": 1765.18, + "end": 1765.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1765.3, + "end": 1765.4, + "probability": 0.99951171875 + }, + { + "word": " open", + "start": 1765.4, + "end": 1765.58, + "probability": 1.0 + }, + { + "word": " up", + "start": 1765.58, + "end": 1765.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 1765.76, + "end": 1765.88, + "probability": 1.0 + }, + { + "word": " socket.", + "start": 1765.88, + "end": 1766.18, + "probability": 0.98291015625 + } + ] + }, + { + "id": 834, + "text": "And first of all, you don't open sockets.", + "start": 1767.16, + "end": 1769.32, + "words": [ + { + "word": " And", + "start": 1767.16, + "end": 1767.52, + "probability": 0.4130859375 + }, + { + "word": " first", + "start": 1767.52, + "end": 1767.72, + "probability": 0.97705078125 + }, + { + "word": " of", + "start": 1767.72, + "end": 1767.82, + "probability": 0.99951171875 + }, + { + "word": " all,", + "start": 1767.82, + "end": 1767.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 1767.92, + "end": 1768.0, + "probability": 0.99365234375 + }, + { + "word": " don't", + "start": 1768.0, + "end": 1768.6, + "probability": 0.99951171875 + }, + { + "word": " open", + "start": 1768.6, + "end": 1768.84, + "probability": 1.0 + }, + { + "word": " sockets.", + "start": 1768.84, + "end": 1769.32, + "probability": 1.0 + } + ] + }, + { + "id": 835, + "text": "That's not how that works.", + "start": 1769.8200000000002, + "end": 1770.84, + "words": [ + { + "word": " That's", + "start": 1769.8200000000002, + "end": 1770.18, + "probability": 0.787109375 + }, + { + "word": " not", + "start": 1770.18, + "end": 1770.34, + "probability": 0.615234375 + }, + { + "word": " how", + "start": 1770.34, + "end": 1770.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 1770.5, + "end": 1770.56, + "probability": 0.9990234375 + }, + { + "word": " works.", + "start": 1770.56, + "end": 1770.84, + "probability": 1.0 + } + ] + }, + { + "id": 836, + "text": "The best one of all time is on that show, NCIS, when the two people, to use the computer", + "start": 1770.92, + "end": 1775.2, + "words": [ + { + "word": " The", + "start": 1770.92, + "end": 1771.0, + "probability": 0.99951171875 + }, + { + "word": " best", + "start": 1771.0, + "end": 1771.22, + "probability": 1.0 + }, + { + "word": " one", + "start": 1771.22, + "end": 1771.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 1771.38, + "end": 1771.48, + "probability": 1.0 + }, + { + "word": " all", + "start": 1771.48, + "end": 1771.58, + "probability": 1.0 + }, + { + "word": " time", + "start": 1771.58, + "end": 1771.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 1771.78, + "end": 1771.96, + "probability": 1.0 + }, + { + "word": " on", + "start": 1771.96, + "end": 1772.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1772.06, + "end": 1772.2, + "probability": 1.0 + }, + { + "word": " show,", + "start": 1772.2, + "end": 1772.36, + "probability": 1.0 + }, + { + "word": " NCIS,", + "start": 1772.46, + "end": 1772.88, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 1772.88, + "end": 1773.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1773.18, + "end": 1773.5, + "probability": 1.0 + }, + { + "word": " two", + "start": 1773.5, + "end": 1773.74, + "probability": 1.0 + }, + { + "word": " people,", + "start": 1773.74, + "end": 1774.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1774.32, + "end": 1774.68, + "probability": 1.0 + }, + { + "word": " use", + "start": 1774.68, + "end": 1774.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1774.86, + "end": 1774.98, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1774.98, + "end": 1775.2, + "probability": 1.0 + } + ] + }, + { + "id": 837, + "text": "faster, they're typing on the same keyboard at the same time.", + "start": 1775.2, + "end": 1777.54, + "words": [ + { + "word": " faster,", + "start": 1775.2, + "end": 1775.52, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1775.66, + "end": 1775.76, + "probability": 1.0 + }, + { + "word": " typing", + "start": 1775.76, + "end": 1776.0, + "probability": 1.0 + }, + { + "word": " on", + "start": 1776.0, + "end": 1776.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 1776.16, + "end": 1776.24, + "probability": 1.0 + }, + { + "word": " same", + "start": 1776.24, + "end": 1776.44, + "probability": 1.0 + }, + { + "word": " keyboard", + "start": 1776.44, + "end": 1776.78, + "probability": 1.0 + }, + { + "word": " at", + "start": 1776.78, + "end": 1776.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1776.96, + "end": 1777.02, + "probability": 1.0 + }, + { + "word": " same", + "start": 1777.02, + "end": 1777.22, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1777.22, + "end": 1777.54, + "probability": 1.0 + } + ] + }, + { + "id": 838, + "text": "It's so dumb.", + "start": 1778.72, + "end": 1779.8, + "words": [ + { + "word": " It's", + "start": 1778.72, + "end": 1779.08, + "probability": 0.9697265625 + }, + { + "word": " so", + "start": 1779.08, + "end": 1779.4, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 1779.4, + "end": 1779.8, + "probability": 1.0 + } + ] + }, + { + "id": 839, + "text": "Oh, man.", + "start": 1783.9800000000002, + "end": 1784.7, + "words": [ + { + "word": " Oh,", + "start": 1783.9800000000002, + "end": 1784.3400000000001, + "probability": 0.927734375 + }, + { + "word": " man.", + "start": 1784.3400000000001, + "end": 1784.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 840, + "text": "Everybody knows that, like, when we need to hack faster, we just get more people on the", + "start": 1786.0200000000002, + "end": 1789.42, + "words": [ + { + "word": " Everybody", + "start": 1786.0200000000002, + "end": 1786.38, + "probability": 0.9970703125 + }, + { + "word": " knows", + "start": 1786.38, + "end": 1786.66, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1786.66, + "end": 1786.9, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1786.92, + "end": 1787.04, + "probability": 1.0 + }, + { + "word": " when", + "start": 1787.04, + "end": 1787.14, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 1787.14, + "end": 1787.3, + "probability": 1.0 + }, + { + "word": " need", + "start": 1787.3, + "end": 1787.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1787.42, + "end": 1787.5, + "probability": 0.9990234375 + }, + { + "word": " hack", + "start": 1787.5, + "end": 1787.68, + "probability": 0.9990234375 + }, + { + "word": " faster,", + "start": 1787.68, + "end": 1788.1, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 1788.18, + "end": 1788.32, + "probability": 1.0 + }, + { + "word": " just", + "start": 1788.32, + "end": 1788.44, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1788.44, + "end": 1788.62, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 1788.62, + "end": 1788.82, + "probability": 1.0 + }, + { + "word": " people", + "start": 1788.82, + "end": 1789.14, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1789.14, + "end": 1789.34, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1789.34, + "end": 1789.42, + "probability": 1.0 + } + ] + }, + { + "id": 841, + "text": "same keyboard.", + "start": 1789.42, + "end": 1789.98, + "words": [ + { + "word": " same", + "start": 1789.42, + "end": 1789.6, + "probability": 1.0 + }, + { + "word": " keyboard.", + "start": 1789.6, + "end": 1789.98, + "probability": 1.0 + } + ] + }, + { + "id": 842, + "text": "It's like 12 people.", + "start": 1790.1, + "end": 1790.64, + "words": [ + { + "word": " It's", + "start": 1790.1, + "end": 1790.18, + "probability": 0.8779296875 + }, + { + "word": " like", + "start": 1790.18, + "end": 1790.2, + "probability": 0.974609375 + }, + { + "word": " 12", + "start": 1790.2, + "end": 1790.42, + "probability": 0.98583984375 + }, + { + "word": " people.", + "start": 1790.42, + "end": 1790.64, + "probability": 0.94091796875 + } + ] + }, + { + "id": 843, + "text": "Yep.", + "start": 1790.66, + "end": 1790.98, + "words": [ + { + "word": " Yep.", + "start": 1790.66, + "end": 1790.98, + "probability": 0.1756591796875 + } + ] + }, + { + "id": 844, + "text": "That's actually how all these hacks happen, is they have like 80 people typing on one", + "start": 1791.7, + "end": 1795.12, + "words": [ + { + "word": " That's", + "start": 1791.7, + "end": 1792.14, + "probability": 0.99755859375 + }, + { + "word": " actually", + "start": 1792.14, + "end": 1792.4, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 1792.4, + "end": 1792.56, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1792.56, + "end": 1792.72, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 1792.72, + "end": 1792.9, + "probability": 0.99853515625 + }, + { + "word": " hacks", + "start": 1792.9, + "end": 1793.12, + "probability": 0.99853515625 + }, + { + "word": " happen,", + "start": 1793.12, + "end": 1793.48, + "probability": 0.99365234375 + }, + { + "word": " is", + "start": 1793.54, + "end": 1793.66, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 1793.66, + "end": 1793.74, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1793.74, + "end": 1793.88, + "probability": 1.0 + }, + { + "word": " like", + "start": 1793.88, + "end": 1794.0, + "probability": 0.73095703125 + }, + { + "word": " 80", + "start": 1794.0, + "end": 1794.2, + "probability": 0.99755859375 + }, + { + "word": " people", + "start": 1794.2, + "end": 1794.48, + "probability": 1.0 + }, + { + "word": " typing", + "start": 1794.48, + "end": 1794.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 1794.74, + "end": 1794.92, + "probability": 1.0 + }, + { + "word": " one", + "start": 1794.92, + "end": 1795.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 845, + "text": "keyboard.", + "start": 1795.12, + "end": 1795.42, + "words": [ + { + "word": " keyboard.", + "start": 1795.12, + "end": 1795.42, + "probability": 1.0 + } + ] + }, + { + "id": 846, + "text": "The speed, you can't even comprehend.", + "start": 1795.68, + "end": 1797.44, + "words": [ + { + "word": " The", + "start": 1795.68, + "end": 1796.12, + "probability": 0.99951171875 + }, + { + "word": " speed,", + "start": 1796.12, + "end": 1796.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 1796.56, + "end": 1796.74, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1796.74, + "end": 1796.9, + "probability": 1.0 + }, + { + "word": " even", + "start": 1796.9, + "end": 1797.02, + "probability": 1.0 + }, + { + "word": " comprehend.", + "start": 1797.02, + "end": 1797.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 847, + "text": "Speaking of hacks, did anybody hear that the DNC got hacked?", + "start": 1799.22, + "end": 1803.76, + "words": [ + { + "word": " Speaking", + "start": 1799.22, + "end": 1799.66, + "probability": 0.90478515625 + }, + { + "word": " of", + "start": 1799.66, + "end": 1799.92, + "probability": 1.0 + }, + { + "word": " hacks,", + "start": 1799.92, + "end": 1800.16, + "probability": 1.0 + }, + { + "word": " did", + "start": 1800.38, + "end": 1801.7, + "probability": 0.93798828125 + }, + { + "word": " anybody", + "start": 1801.7, + "end": 1802.42, + "probability": 0.99951171875 + }, + { + "word": " hear", + "start": 1802.42, + "end": 1802.64, + "probability": 0.98486328125 + }, + { + "word": " that", + "start": 1802.64, + "end": 1802.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1802.78, + "end": 1802.88, + "probability": 1.0 + }, + { + "word": " DNC", + "start": 1802.88, + "end": 1803.3, + "probability": 0.9970703125 + }, + { + "word": " got", + "start": 1803.3, + "end": 1803.46, + "probability": 1.0 + }, + { + "word": " hacked?", + "start": 1803.46, + "end": 1803.76, + "probability": 1.0 + } + ] + }, + { + "id": 848, + "text": "Big time.", + "start": 1804.04, + "end": 1804.7, + "words": [ + { + "word": " Big", + "start": 1804.04, + "end": 1804.46, + "probability": 0.9970703125 + }, + { + "word": " time.", + "start": 1804.46, + "end": 1804.7, + "probability": 1.0 + } + ] + }, + { + "id": 849, + "text": "Heard that.", + "start": 1804.96, + "end": 1805.56, + "words": [ + { + "word": " Heard", + "start": 1804.96, + "end": 1805.4, + "probability": 0.99609375 + }, + { + "word": " that.", + "start": 1805.4, + "end": 1805.56, + "probability": 1.0 + } + ] + }, + { + "id": 850, + "text": "Yeah.", + "start": 1805.74, + "end": 1806.0, + "words": [ + { + "word": " Yeah.", + "start": 1805.74, + "end": 1806.0, + "probability": 0.86669921875 + } + ] + }, + { + "id": 851, + "text": "That's a pretty interesting story.", + "start": 1808.9199999999998, + "end": 1810.68, + "words": [ + { + "word": " That's", + "start": 1808.9199999999998, + "end": 1809.36, + "probability": 0.9658203125 + }, + { + "word": " a", + "start": 1809.36, + "end": 1809.8, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1809.8, + "end": 1809.96, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 1809.96, + "end": 1810.26, + "probability": 1.0 + }, + { + "word": " story.", + "start": 1810.26, + "end": 1810.68, + "probability": 1.0 + } + ] + }, + { + "id": 852, + "text": "There's a lot going on there.", + "start": 1810.92, + "end": 1812.0, + "words": [ + { + "word": " There's", + "start": 1810.92, + "end": 1811.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1811.2, + "end": 1811.28, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1811.28, + "end": 1811.4, + "probability": 1.0 + }, + { + "word": " going", + "start": 1811.4, + "end": 1811.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 1811.52, + "end": 1811.78, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1811.78, + "end": 1812.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 853, + "text": "And all of it is really, really quiet.", + "start": 1812.14, + "end": 1814.08, + "words": [ + { + "word": " And", + "start": 1812.14, + "end": 1812.54, + "probability": 0.98974609375 + }, + { + "word": " all", + "start": 1812.54, + "end": 1812.86, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 1812.86, + "end": 1813.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 1813.02, + "end": 1813.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 1813.12, + "end": 1813.24, + "probability": 1.0 + }, + { + "word": " really,", + "start": 1813.24, + "end": 1813.48, + "probability": 1.0 + }, + { + "word": " really", + "start": 1813.6, + "end": 1813.78, + "probability": 1.0 + }, + { + "word": " quiet.", + "start": 1813.78, + "end": 1814.08, + "probability": 1.0 + } + ] + }, + { + "id": 854, + "text": "Imagine that.", + "start": 1815.26, + "end": 1815.96, + "words": [ + { + "word": " Imagine", + "start": 1815.26, + "end": 1815.7, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 1815.7, + "end": 1815.96, + "probability": 1.0 + } + ] + }, + { + "id": 855, + "text": "Imagine that.", + "start": 1816.32, + "end": 1816.78, + "words": [ + { + "word": " Imagine", + "start": 1816.32, + "end": 1816.76, + "probability": 0.99609375 + }, + { + "word": " that.", + "start": 1816.76, + "end": 1816.78, + "probability": 0.00830841064453125 + } + ] + }, + { + "id": 856, + "text": "Imagine the fact that the...", + "start": 1816.78, + "end": 1817.78, + "words": [ + { + "word": " Imagine", + "start": 1816.78, + "end": 1816.88, + "probability": 0.9794921875 + }, + { + "word": " the", + "start": 1816.88, + "end": 1817.04, + "probability": 0.98583984375 + }, + { + "word": " fact", + "start": 1817.04, + "end": 1817.24, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1817.24, + "end": 1817.48, + "probability": 1.0 + }, + { + "word": " the...", + "start": 1817.48, + "end": 1817.78, + "probability": 0.28515625 + } + ] + }, + { + "id": 857, + "text": "Basically, the highest...", + "start": 1819.44, + "end": 1820.52, + "words": [ + { + "word": " Basically,", + "start": 1819.44, + "end": 1819.88, + "probability": 0.51318359375 + }, + { + "word": " the", + "start": 1819.96, + "end": 1820.16, + "probability": 0.99951171875 + }, + { + "word": " highest...", + "start": 1820.16, + "end": 1820.52, + "probability": 0.6572265625 + } + ] + }, + { + "id": 858, + "text": "The highest...", + "start": 1820.52, + "end": 1820.64, + "words": [ + { + "word": " The", + "start": 1820.52, + "end": 1820.64, + "probability": 0.0224151611328125 + }, + { + "word": " highest...", + "start": 1820.64, + "end": 1820.64, + "probability": 0.6513671875 + } + ] + }, + { + "id": 859, + "text": "The echelons of the government are being really quiet about a gigantic hack.", + "start": 1820.64, + "end": 1825.88, + "words": [ + { + "word": " The", + "start": 1820.64, + "end": 1820.64, + "probability": 0.002796173095703125 + }, + { + "word": " echelons", + "start": 1820.64, + "end": 1821.06, + "probability": 0.97265625 + }, + { + "word": " of", + "start": 1821.06, + "end": 1821.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1821.22, + "end": 1821.32, + "probability": 1.0 + }, + { + "word": " government", + "start": 1821.32, + "end": 1821.66, + "probability": 1.0 + }, + { + "word": " are", + "start": 1821.66, + "end": 1822.04, + "probability": 0.9873046875 + }, + { + "word": " being", + "start": 1822.04, + "end": 1823.04, + "probability": 0.947265625 + }, + { + "word": " really", + "start": 1823.04, + "end": 1823.78, + "probability": 1.0 + }, + { + "word": " quiet", + "start": 1823.78, + "end": 1824.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 1824.2, + "end": 1824.58, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1824.58, + "end": 1824.76, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 1824.76, + "end": 1825.28, + "probability": 1.0 + }, + { + "word": " hack.", + "start": 1825.28, + "end": 1825.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 860, + "text": "And, of course, the government is blaming Russian spies, which is, I think, great that", + "start": 1827.04, + "end": 1835.76, + "words": [ + { + "word": " And,", + "start": 1827.04, + "end": 1827.6, + "probability": 0.875 + }, + { + "word": " of", + "start": 1827.68, + "end": 1828.04, + "probability": 0.98583984375 + }, + { + "word": " course,", + "start": 1828.04, + "end": 1828.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1829.06, + "end": 1829.2, + "probability": 1.0 + }, + { + "word": " government", + "start": 1829.2, + "end": 1830.46, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1830.46, + "end": 1830.78, + "probability": 1.0 + }, + { + "word": " blaming", + "start": 1830.78, + "end": 1831.28, + "probability": 1.0 + }, + { + "word": " Russian", + "start": 1831.28, + "end": 1831.98, + "probability": 1.0 + }, + { + "word": " spies,", + "start": 1831.98, + "end": 1832.36, + "probability": 1.0 + }, + { + "word": " which", + "start": 1832.66, + "end": 1833.82, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1833.82, + "end": 1834.06, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 1834.12, + "end": 1834.56, + "probability": 1.0 + }, + { + "word": " think,", + "start": 1834.56, + "end": 1834.76, + "probability": 1.0 + }, + { + "word": " great", + "start": 1834.78, + "end": 1835.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1835.16, + "end": 1835.76, + "probability": 0.93896484375 + } + ] + }, + { + "id": 861, + "text": "they're blaming them, especially when the hacker came back and he's like, uh, no.", + "start": 1835.76, + "end": 1841.32, + "words": [ + { + "word": " they're", + "start": 1835.76, + "end": 1836.3, + "probability": 0.994140625 + }, + { + "word": " blaming", + "start": 1836.3, + "end": 1836.96, + "probability": 1.0 + }, + { + "word": " them,", + "start": 1836.96, + "end": 1837.28, + "probability": 1.0 + }, + { + "word": " especially", + "start": 1837.32, + "end": 1837.56, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 1837.56, + "end": 1837.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1837.94, + "end": 1838.16, + "probability": 1.0 + }, + { + "word": " hacker", + "start": 1838.16, + "end": 1838.98, + "probability": 0.99951171875 + }, + { + "word": " came", + "start": 1838.98, + "end": 1839.32, + "probability": 1.0 + }, + { + "word": " back", + "start": 1839.32, + "end": 1839.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 1839.68, + "end": 1839.86, + "probability": 0.9248046875 + }, + { + "word": " he's", + "start": 1839.86, + "end": 1839.98, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1839.98, + "end": 1840.16, + "probability": 0.99951171875 + }, + { + "word": " uh,", + "start": 1840.32, + "end": 1840.72, + "probability": 0.6240234375 + }, + { + "word": " no.", + "start": 1840.9, + "end": 1841.32, + "probability": 1.0 + } + ] + }, + { + "id": 862, + "text": "And he's not at all a Russian spy of any kind.", + "start": 1841.6, + "end": 1844.06, + "words": [ + { + "word": " And", + "start": 1841.6, + "end": 1841.9, + "probability": 0.99951171875 + }, + { + "word": " he's", + "start": 1841.9, + "end": 1842.06, + "probability": 1.0 + }, + { + "word": " not", + "start": 1842.06, + "end": 1842.3, + "probability": 1.0 + }, + { + "word": " at", + "start": 1842.3, + "end": 1842.44, + "probability": 1.0 + }, + { + "word": " all", + "start": 1842.44, + "end": 1842.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 1842.66, + "end": 1842.88, + "probability": 1.0 + }, + { + "word": " Russian", + "start": 1842.88, + "end": 1843.16, + "probability": 1.0 + }, + { + "word": " spy", + "start": 1843.16, + "end": 1843.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 1843.4, + "end": 1843.62, + "probability": 1.0 + }, + { + "word": " any", + "start": 1843.62, + "end": 1843.76, + "probability": 1.0 + }, + { + "word": " kind.", + "start": 1843.76, + "end": 1844.06, + "probability": 1.0 + } + ] + }, + { + "id": 863, + "text": "Yeah.", + "start": 1844.24, + "end": 1844.4, + "words": [ + { + "word": " Yeah.", + "start": 1844.24, + "end": 1844.4, + "probability": 0.3974609375 + } + ] + }, + { + "id": 864, + "text": "Not a Russian spy.", + "start": 1844.4, + "end": 1845.32, + "words": [ + { + "word": " Not", + "start": 1844.4, + "end": 1844.72, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 1844.72, + "end": 1844.84, + "probability": 1.0 + }, + { + "word": " Russian", + "start": 1844.84, + "end": 1845.04, + "probability": 1.0 + }, + { + "word": " spy.", + "start": 1845.04, + "end": 1845.32, + "probability": 1.0 + } + ] + }, + { + "id": 865, + "text": "And then, of course, they said this, you know, they identified the...", + "start": 1845.58, + "end": 1849.28, + "words": [ + { + "word": " And", + "start": 1845.58, + "end": 1846.14, + "probability": 0.98974609375 + }, + { + "word": " then,", + "start": 1846.14, + "end": 1846.68, + "probability": 0.9794921875 + }, + { + "word": " of", + "start": 1846.76, + "end": 1846.9, + "probability": 1.0 + }, + { + "word": " course,", + "start": 1846.9, + "end": 1847.1, + "probability": 1.0 + }, + { + "word": " they", + "start": 1847.12, + "end": 1847.24, + "probability": 1.0 + }, + { + "word": " said", + "start": 1847.24, + "end": 1847.4, + "probability": 0.98095703125 + }, + { + "word": " this,", + "start": 1847.4, + "end": 1847.7, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1847.72, + "end": 1847.96, + "probability": 0.984375 + }, + { + "word": " know,", + "start": 1847.96, + "end": 1848.08, + "probability": 1.0 + }, + { + "word": " they", + "start": 1848.1, + "end": 1848.2, + "probability": 0.998046875 + }, + { + "word": " identified", + "start": 1848.2, + "end": 1848.74, + "probability": 1.0 + }, + { + "word": " the...", + "start": 1848.74, + "end": 1849.28, + "probability": 0.4658203125 + } + ] + }, + { + "id": 866, + "text": "This particular thing and, you know, the hack.", + "start": 1850.0800000000002, + "end": 1852.36, + "words": [ + { + "word": " This", + "start": 1850.0800000000002, + "end": 1850.44, + "probability": 0.052734375 + }, + { + "word": " particular", + "start": 1850.44, + "end": 1850.8, + "probability": 0.99755859375 + }, + { + "word": " thing", + "start": 1850.8, + "end": 1851.14, + "probability": 0.9951171875 + }, + { + "word": " and,", + "start": 1851.14, + "end": 1851.8, + "probability": 0.4375 + }, + { + "word": " you", + "start": 1851.82, + "end": 1852.04, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 1852.04, + "end": 1852.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1852.1, + "end": 1852.2, + "probability": 0.99560546875 + }, + { + "word": " hack.", + "start": 1852.2, + "end": 1852.36, + "probability": 0.99755859375 + } + ] + }, + { + "id": 867, + "text": "And they shut it down because, you know, because they're on top of things, technologically speaking.", + "start": 1852.5, + "end": 1856.86, + "words": [ + { + "word": " And", + "start": 1852.5, + "end": 1852.66, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 1852.66, + "end": 1852.78, + "probability": 0.99658203125 + }, + { + "word": " shut", + "start": 1852.78, + "end": 1852.94, + "probability": 1.0 + }, + { + "word": " it", + "start": 1852.94, + "end": 1853.04, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 1853.04, + "end": 1853.26, + "probability": 1.0 + }, + { + "word": " because,", + "start": 1853.26, + "end": 1853.76, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1854.0, + "end": 1854.44, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1854.44, + "end": 1854.6, + "probability": 1.0 + }, + { + "word": " because", + "start": 1854.6, + "end": 1855.02, + "probability": 0.9970703125 + }, + { + "word": " they're", + "start": 1855.02, + "end": 1855.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 1855.22, + "end": 1855.3, + "probability": 1.0 + }, + { + "word": " top", + "start": 1855.3, + "end": 1855.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1855.5, + "end": 1855.68, + "probability": 1.0 + }, + { + "word": " things,", + "start": 1855.68, + "end": 1855.84, + "probability": 1.0 + }, + { + "word": " technologically", + "start": 1855.92, + "end": 1856.46, + "probability": 1.0 + }, + { + "word": " speaking.", + "start": 1856.46, + "end": 1856.86, + "probability": 1.0 + } + ] + }, + { + "id": 868, + "text": "And basically, the hacker came back and started taunting them.", + "start": 1858.5400000000002, + "end": 1861.92, + "words": [ + { + "word": " And", + "start": 1858.5400000000002, + "end": 1858.9, + "probability": 0.99951171875 + }, + { + "word": " basically,", + "start": 1858.9, + "end": 1859.26, + "probability": 0.95751953125 + }, + { + "word": " the", + "start": 1859.32, + "end": 1859.54, + "probability": 1.0 + }, + { + "word": " hacker", + "start": 1859.54, + "end": 1859.86, + "probability": 0.9990234375 + }, + { + "word": " came", + "start": 1859.86, + "end": 1860.2, + "probability": 1.0 + }, + { + "word": " back", + "start": 1860.2, + "end": 1860.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 1860.58, + "end": 1860.76, + "probability": 1.0 + }, + { + "word": " started", + "start": 1860.76, + "end": 1860.96, + "probability": 0.99609375 + }, + { + "word": " taunting", + "start": 1860.96, + "end": 1861.66, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1861.66, + "end": 1861.92, + "probability": 1.0 + } + ] + }, + { + "id": 869, + "text": "And he's like, you didn't know I was in there.", + "start": 1862.4200000000003, + "end": 1864.98, + "words": [ + { + "word": " And", + "start": 1862.4200000000003, + "end": 1862.7800000000002, + "probability": 1.0 + }, + { + "word": " he's", + "start": 1862.7800000000002, + "end": 1863.14, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1863.14, + "end": 1863.28, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 1863.5, + "end": 1864.04, + "probability": 0.98193359375 + }, + { + "word": " didn't", + "start": 1864.04, + "end": 1864.3, + "probability": 1.0 + }, + { + "word": " know", + "start": 1864.3, + "end": 1864.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 1864.4, + "end": 1864.54, + "probability": 1.0 + }, + { + "word": " was", + "start": 1864.54, + "end": 1864.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 1864.68, + "end": 1864.82, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1864.82, + "end": 1864.98, + "probability": 1.0 + } + ] + }, + { + "id": 870, + "text": "And so they said, well, yeah, well, we know that he only had access to a couple of things.", + "start": 1866.4800000000002, + "end": 1871.38, + "words": [ + { + "word": " And", + "start": 1866.4800000000002, + "end": 1866.8400000000001, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 1866.8400000000001, + "end": 1867.2, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1867.2, + "end": 1867.46, + "probability": 0.86328125 + }, + { + "word": " said,", + "start": 1867.46, + "end": 1867.6, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1867.68, + "end": 1867.76, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 1868.38, + "end": 1868.56, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 1868.64, + "end": 1868.76, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 1868.86, + "end": 1869.48, + "probability": 1.0 + }, + { + "word": " know", + "start": 1869.48, + "end": 1869.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 1869.68, + "end": 1869.86, + "probability": 1.0 + }, + { + "word": " he", + "start": 1869.86, + "end": 1869.94, + "probability": 0.923828125 + }, + { + "word": " only", + "start": 1869.94, + "end": 1870.12, + "probability": 1.0 + }, + { + "word": " had", + "start": 1870.12, + "end": 1870.24, + "probability": 1.0 + }, + { + "word": " access", + "start": 1870.24, + "end": 1870.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1870.48, + "end": 1870.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1870.68, + "end": 1870.78, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1870.78, + "end": 1871.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 1871.0, + "end": 1871.12, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1871.12, + "end": 1871.38, + "probability": 1.0 + } + ] + }, + { + "id": 871, + "text": "And so he came back and he said, I was in your system for a year.", + "start": 1871.96, + "end": 1874.82, + "words": [ + { + "word": " And", + "start": 1871.96, + "end": 1872.32, + "probability": 1.0 + }, + { + "word": " so", + "start": 1872.32, + "end": 1872.46, + "probability": 1.0 + }, + { + "word": " he", + "start": 1872.46, + "end": 1872.62, + "probability": 0.9990234375 + }, + { + "word": " came", + "start": 1872.62, + "end": 1872.84, + "probability": 1.0 + }, + { + "word": " back", + "start": 1872.84, + "end": 1873.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 1873.08, + "end": 1873.22, + "probability": 0.9912109375 + }, + { + "word": " he", + "start": 1873.22, + "end": 1873.3, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1873.3, + "end": 1873.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 1873.56, + "end": 1873.72, + "probability": 1.0 + }, + { + "word": " was", + "start": 1873.72, + "end": 1873.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 1873.84, + "end": 1873.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 1873.92, + "end": 1874.0, + "probability": 1.0 + }, + { + "word": " system", + "start": 1874.0, + "end": 1874.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 1874.22, + "end": 1874.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 1874.44, + "end": 1874.54, + "probability": 1.0 + }, + { + "word": " year.", + "start": 1874.54, + "end": 1874.82, + "probability": 1.0 + } + ] + }, + { + "id": 872, + "text": "You think I downloaded two things?", + "start": 1874.98, + "end": 1876.48, + "words": [ + { + "word": " You", + "start": 1874.98, + "end": 1875.14, + "probability": 0.98486328125 + }, + { + "word": " think", + "start": 1875.14, + "end": 1875.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 1875.3, + "end": 1875.44, + "probability": 1.0 + }, + { + "word": " downloaded", + "start": 1875.44, + "end": 1875.76, + "probability": 1.0 + }, + { + "word": " two", + "start": 1875.76, + "end": 1876.12, + "probability": 1.0 + }, + { + "word": " things?", + "start": 1876.12, + "end": 1876.48, + "probability": 1.0 + } + ] + }, + { + "id": 873, + "text": "Do you really think that?", + "start": 1876.64, + "end": 1877.5, + "words": [ + { + "word": " Do", + "start": 1876.64, + "end": 1876.8, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1876.8, + "end": 1876.88, + "probability": 1.0 + }, + { + "word": " really", + "start": 1876.88, + "end": 1877.06, + "probability": 1.0 + }, + { + "word": " think", + "start": 1877.06, + "end": 1877.28, + "probability": 1.0 + }, + { + "word": " that?", + "start": 1877.28, + "end": 1877.5, + "probability": 1.0 + } + ] + }, + { + "id": 874, + "text": "Is that what you think?", + "start": 1877.84, + "end": 1878.74, + "words": [ + { + "word": " Is", + "start": 1877.84, + "end": 1878.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1878.2, + "end": 1878.32, + "probability": 1.0 + }, + { + "word": " what", + "start": 1878.32, + "end": 1878.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 1878.42, + "end": 1878.54, + "probability": 1.0 + }, + { + "word": " think?", + "start": 1878.54, + "end": 1878.74, + "probability": 1.0 + } + ] + }, + { + "id": 875, + "text": "And, yeah, it's pretty gnarly.", + "start": 1880.64, + "end": 1884.18, + "words": [ + { + "word": " And,", + "start": 1880.64, + "end": 1881.16, + "probability": 0.7138671875 + }, + { + "word": " yeah,", + "start": 1881.16, + "end": 1881.68, + "probability": 0.96826171875 + }, + { + "word": " it's", + "start": 1881.88, + "end": 1882.32, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1882.32, + "end": 1883.44, + "probability": 0.9931640625 + }, + { + "word": " gnarly.", + "start": 1883.44, + "end": 1884.18, + "probability": 1.0 + } + ] + }, + { + "id": 876, + "text": "Some pretty crazy stuff has come out as a result of this hack.", + "start": 1884.42, + "end": 1887.6, + "words": [ + { + "word": " Some", + "start": 1884.42, + "end": 1884.94, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 1884.94, + "end": 1885.36, + "probability": 1.0 + }, + { + "word": " crazy", + "start": 1885.36, + "end": 1885.72, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1885.72, + "end": 1886.04, + "probability": 1.0 + }, + { + "word": " has", + "start": 1886.04, + "end": 1886.22, + "probability": 1.0 + }, + { + "word": " come", + "start": 1886.22, + "end": 1886.36, + "probability": 1.0 + }, + { + "word": " out", + "start": 1886.36, + "end": 1886.56, + "probability": 1.0 + }, + { + "word": " as", + "start": 1886.56, + "end": 1886.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1886.72, + "end": 1886.78, + "probability": 1.0 + }, + { + "word": " result", + "start": 1886.78, + "end": 1887.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 1887.02, + "end": 1887.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 1887.22, + "end": 1887.36, + "probability": 1.0 + }, + { + "word": " hack.", + "start": 1887.36, + "end": 1887.6, + "probability": 1.0 + } + ] + }, + { + "id": 877, + "text": "Yeah, like a list of mega donors to the DNC, a...", + "start": 1888.02, + "end": 1891.74, + "words": [ + { + "word": " Yeah,", + "start": 1888.02, + "end": 1888.54, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1888.58, + "end": 1888.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 1888.8, + "end": 1888.98, + "probability": 1.0 + }, + { + "word": " list", + "start": 1888.98, + "end": 1889.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 1889.32, + "end": 1889.46, + "probability": 1.0 + }, + { + "word": " mega", + "start": 1889.46, + "end": 1889.64, + "probability": 0.83740234375 + }, + { + "word": " donors", + "start": 1889.64, + "end": 1889.9, + "probability": 0.6533203125 + }, + { + "word": " to", + "start": 1889.9, + "end": 1890.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1890.22, + "end": 1890.32, + "probability": 1.0 + }, + { + "word": " DNC,", + "start": 1890.32, + "end": 1890.88, + "probability": 0.9970703125 + }, + { + "word": " a...", + "start": 1890.96, + "end": 1891.74, + "probability": 0.58154296875 + } + ] + }, + { + "id": 878, + "text": "Complete strategy for their campaign.", + "start": 1892.4, + "end": 1894.78, + "words": [ + { + "word": " Complete", + "start": 1892.4, + "end": 1892.92, + "probability": 0.99169921875 + }, + { + "word": " strategy", + "start": 1892.92, + "end": 1893.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 1893.3, + "end": 1893.88, + "probability": 1.0 + }, + { + "word": " their", + "start": 1893.88, + "end": 1894.08, + "probability": 1.0 + }, + { + "word": " campaign.", + "start": 1894.08, + "end": 1894.78, + "probability": 1.0 + } + ] + }, + { + "id": 879, + "text": "Right.", + "start": 1895.24, + "end": 1895.5, + "words": [ + { + "word": " Right.", + "start": 1895.24, + "end": 1895.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 880, + "text": "And the most interesting part is, at least to me, and this is definitely not a regular", + "start": 1895.64, + "end": 1901.34, + "words": [ + { + "word": " And", + "start": 1895.64, + "end": 1895.92, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 1895.92, + "end": 1896.18, + "probability": 0.99755859375 + }, + { + "word": " most", + "start": 1896.18, + "end": 1896.54, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 1896.54, + "end": 1896.82, + "probability": 1.0 + }, + { + "word": " part", + "start": 1896.82, + "end": 1897.12, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1897.12, + "end": 1897.44, + "probability": 1.0 + }, + { + "word": " at", + "start": 1897.56, + "end": 1898.02, + "probability": 1.0 + }, + { + "word": " least", + "start": 1898.02, + "end": 1898.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1898.16, + "end": 1898.32, + "probability": 1.0 + }, + { + "word": " me,", + "start": 1898.32, + "end": 1898.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 1898.62, + "end": 1899.18, + "probability": 1.0 + }, + { + "word": " this", + "start": 1899.18, + "end": 1899.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 1899.86, + "end": 1900.06, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 1900.06, + "end": 1900.74, + "probability": 1.0 + }, + { + "word": " not", + "start": 1900.74, + "end": 1900.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 1900.94, + "end": 1901.06, + "probability": 1.0 + }, + { + "word": " regular", + "start": 1901.06, + "end": 1901.34, + "probability": 1.0 + } + ] + }, + { + "id": 881, + "text": "show topic here, is that there sure is a lot of...", + "start": 1901.34, + "end": 1905.96, + "words": [ + { + "word": " show", + "start": 1901.34, + "end": 1901.64, + "probability": 1.0 + }, + { + "word": " topic", + "start": 1901.64, + "end": 1901.98, + "probability": 1.0 + }, + { + "word": " here,", + "start": 1901.98, + "end": 1902.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1902.4, + "end": 1902.56, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1902.56, + "end": 1902.78, + "probability": 1.0 + }, + { + "word": " there", + "start": 1902.78, + "end": 1904.08, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 1904.08, + "end": 1905.14, + "probability": 0.990234375 + }, + { + "word": " is", + "start": 1905.14, + "end": 1905.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 1905.36, + "end": 1905.46, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1905.46, + "end": 1905.66, + "probability": 1.0 + }, + { + "word": " of...", + "start": 1905.66, + "end": 1905.96, + "probability": 0.5537109375 + } + ] + }, + { + "id": 882, + "text": "There's a lot of collusion going on behind the scenes.", + "start": 1905.96, + "end": 1909.26, + "words": [ + { + "word": " There's", + "start": 1905.96, + "end": 1906.66, + "probability": 0.9287109375 + }, + { + "word": " a", + "start": 1906.66, + "end": 1906.66, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1906.66, + "end": 1906.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 1906.8, + "end": 1906.9, + "probability": 1.0 + }, + { + "word": " collusion", + "start": 1906.9, + "end": 1907.32, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1907.32, + "end": 1907.54, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1907.54, + "end": 1907.94, + "probability": 1.0 + }, + { + "word": " behind", + "start": 1907.94, + "end": 1908.72, + "probability": 0.98095703125 + }, + { + "word": " the", + "start": 1908.72, + "end": 1909.02, + "probability": 0.99609375 + }, + { + "word": " scenes.", + "start": 1909.02, + "end": 1909.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 883, + "text": "There's a lot ofSure.", + "start": 1910.7, + "end": 1911.22, + "words": [ + { + "word": " There's", + "start": 1910.7, + "end": 1911.22, + "probability": 0.396240234375 + }, + { + "word": " a", + "start": 1911.22, + "end": 1911.22, + "probability": 0.243408203125 + }, + { + "word": " lot", + "start": 1911.22, + "end": 1911.22, + "probability": 0.298828125 + }, + { + "word": " ofSure.", + "start": 1911.22, + "end": 1911.22, + "probability": 0.436279296875 + } + ] + }, + { + "id": 884, + "text": "There's a lot of collaboration between different sides of the conversation.", + "start": 1912.86, + "end": 1914.18, + "words": [ + { + "word": " There's", + "start": 1912.86, + "end": 1913.14, + "probability": 0.474853515625 + }, + { + "word": " a", + "start": 1913.14, + "end": 1913.14, + "probability": 0.84326171875 + }, + { + "word": " lot", + "start": 1913.14, + "end": 1913.14, + "probability": 0.96875 + }, + { + "word": " of", + "start": 1913.14, + "end": 1913.14, + "probability": 0.98876953125 + }, + { + "word": " collaboration", + "start": 1913.14, + "end": 1913.14, + "probability": 2.9325485229492188e-05 + }, + { + "word": " between", + "start": 1913.14, + "end": 1913.14, + "probability": 0.13232421875 + }, + { + "word": " different", + "start": 1913.14, + "end": 1913.2, + "probability": 0.00928497314453125 + }, + { + "word": " sides", + "start": 1913.2, + "end": 1913.2, + "probability": 0.03314208984375 + }, + { + "word": " of", + "start": 1913.2, + "end": 1914.18, + "probability": 0.2427978515625 + }, + { + "word": " the", + "start": 1914.18, + "end": 1914.18, + "probability": 0.6796875 + }, + { + "word": " conversation.", + "start": 1914.18, + "end": 1914.18, + "probability": 0.0167694091796875 + } + ] + }, + { + "id": 885, + "text": "And I think that's part of the reward of the investigation.", + "start": 1914.18, + "end": 1914.96, + "words": [ + { + "word": " And", + "start": 1914.18, + "end": 1914.18, + "probability": 0.1939697265625 + }, + { + "word": " I", + "start": 1914.18, + "end": 1914.18, + "probability": 0.483154296875 + }, + { + "word": " think", + "start": 1914.18, + "end": 1914.96, + "probability": 0.5546875 + }, + { + "word": " that's", + "start": 1914.96, + "end": 1914.96, + "probability": 0.50146484375 + }, + { + "word": " part", + "start": 1914.96, + "end": 1914.96, + "probability": 0.024658203125 + }, + { + "word": " of", + "start": 1914.96, + "end": 1914.96, + "probability": 0.984375 + }, + { + "word": " the", + "start": 1914.96, + "end": 1914.96, + "probability": 0.498291015625 + }, + { + "word": " reward", + "start": 1914.96, + "end": 1914.96, + "probability": 0.000209808349609375 + }, + { + "word": " of", + "start": 1914.96, + "end": 1914.96, + "probability": 0.2100830078125 + }, + { + "word": " the", + "start": 1914.96, + "end": 1914.96, + "probability": 0.100830078125 + }, + { + "word": " investigation.", + "start": 1914.96, + "end": 1914.96, + "probability": 0.000553131103515625 + } + ] + }, + { + "id": 886, + "text": "", + "start": 1914.96, + "end": 1914.96, + "words": [] + }, + { + "id": 887, + "text": "", + "start": 1914.96, + "end": 1914.96, + "words": [] + }, + { + "id": 888, + "text": "I've not run into an instance where I think something about one candidate that", + "start": 1914.96, + "end": 1920.98, + "words": [ + { + "word": " I've", + "start": 1914.96, + "end": 1914.96, + "probability": 0.1805419921875 + }, + { + "word": " not", + "start": 1914.96, + "end": 1915.14, + "probability": 0.2626953125 + }, + { + "word": " run", + "start": 1915.14, + "end": 1916.0, + "probability": 0.9619140625 + }, + { + "word": " into", + "start": 1916.0, + "end": 1916.68, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 1916.68, + "end": 1916.84, + "probability": 0.9921875 + }, + { + "word": " instance", + "start": 1916.84, + "end": 1917.12, + "probability": 0.9951171875 + }, + { + "word": " where", + "start": 1917.12, + "end": 1917.46, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 1917.46, + "end": 1917.72, + "probability": 0.99365234375 + }, + { + "word": " think", + "start": 1917.72, + "end": 1918.86, + "probability": 0.79296875 + }, + { + "word": " something", + "start": 1918.86, + "end": 1919.72, + "probability": 0.99365234375 + }, + { + "word": " about", + "start": 1919.72, + "end": 1920.04, + "probability": 0.998046875 + }, + { + "word": " one", + "start": 1920.04, + "end": 1920.28, + "probability": 0.99609375 + }, + { + "word": " candidate", + "start": 1920.28, + "end": 1920.68, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 1920.68, + "end": 1920.98, + "probability": 0.98828125 + } + ] + }, + { + "id": 889, + "text": "undoubtedly isn't true about another.", + "start": 1920.98, + "end": 1923.78, + "words": [ + { + "word": " undoubtedly", + "start": 1920.98, + "end": 1921.82, + "probability": 0.9794921875 + }, + { + "word": " isn't", + "start": 1921.82, + "end": 1922.44, + "probability": 0.998046875 + }, + { + "word": " true", + "start": 1922.44, + "end": 1922.64, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 1922.64, + "end": 1923.1, + "probability": 0.9970703125 + }, + { + "word": " another.", + "start": 1923.1, + "end": 1923.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 890, + "text": "So it's very interesting to me that there's an active push years in advance for who's", + "start": 1926.46, + "end": 1934.64, + "words": [ + { + "word": " So", + "start": 1926.46, + "end": 1926.98, + "probability": 0.7333984375 + }, + { + "word": " it's", + "start": 1926.98, + "end": 1927.5, + "probability": 0.95751953125 + }, + { + "word": " very", + "start": 1927.5, + "end": 1927.74, + "probability": 0.9970703125 + }, + { + "word": " interesting", + "start": 1927.74, + "end": 1928.06, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1928.06, + "end": 1928.22, + "probability": 0.998046875 + }, + { + "word": " me", + "start": 1928.22, + "end": 1928.38, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1928.38, + "end": 1928.5, + "probability": 0.99658203125 + }, + { + "word": " there's", + "start": 1928.5, + "end": 1928.78, + "probability": 0.986328125 + }, + { + "word": " an", + "start": 1928.78, + "end": 1929.48, + "probability": 0.9296875 + }, + { + "word": " active", + "start": 1929.48, + "end": 1930.5, + "probability": 0.998046875 + }, + { + "word": " push", + "start": 1930.5, + "end": 1931.0, + "probability": 0.998046875 + }, + { + "word": " years", + "start": 1931.0, + "end": 1931.56, + "probability": 0.9912109375 + }, + { + "word": " in", + "start": 1931.56, + "end": 1931.82, + "probability": 0.99951171875 + }, + { + "word": " advance", + "start": 1931.82, + "end": 1932.16, + "probability": 0.99658203125 + }, + { + "word": " for", + "start": 1932.16, + "end": 1933.52, + "probability": 0.9921875 + }, + { + "word": " who's", + "start": 1933.52, + "end": 1934.64, + "probability": 0.998046875 + } + ] + }, + { + "id": 891, + "text": "going to be the next president of the United States.", + "start": 1934.64, + "end": 1936.34, + "words": [ + { + "word": " going", + "start": 1934.64, + "end": 1934.74, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 1934.74, + "end": 1934.84, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1934.84, + "end": 1934.92, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1934.92, + "end": 1935.06, + "probability": 0.9990234375 + }, + { + "word": " next", + "start": 1935.06, + "end": 1935.2, + "probability": 0.99951171875 + }, + { + "word": " president", + "start": 1935.2, + "end": 1935.56, + "probability": 0.89453125 + }, + { + "word": " of", + "start": 1935.56, + "end": 1935.72, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1935.72, + "end": 1935.76, + "probability": 0.99951171875 + }, + { + "word": " United", + "start": 1935.76, + "end": 1935.9, + "probability": 0.99853515625 + }, + { + "word": " States.", + "start": 1935.9, + "end": 1936.34, + "probability": 0.99853515625 + } + ] + }, + { + "id": 892, + "text": "And the thing that really kills me about this that I've mentioned a couple of", + "start": 1936.52, + "end": 1939.24, + "words": [ + { + "word": " And", + "start": 1936.52, + "end": 1936.76, + "probability": 0.67529296875 + }, + { + "word": " the", + "start": 1936.76, + "end": 1936.94, + "probability": 0.9951171875 + }, + { + "word": " thing", + "start": 1936.94, + "end": 1937.16, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1937.16, + "end": 1937.26, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1937.26, + "end": 1937.42, + "probability": 0.998046875 + }, + { + "word": " kills", + "start": 1937.42, + "end": 1937.7, + "probability": 0.998046875 + }, + { + "word": " me", + "start": 1937.7, + "end": 1937.9, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1937.9, + "end": 1938.1, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 1938.1, + "end": 1938.3, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1938.3, + "end": 1938.44, + "probability": 0.97900390625 + }, + { + "word": " I've", + "start": 1938.44, + "end": 1938.62, + "probability": 0.99853515625 + }, + { + "word": " mentioned", + "start": 1938.62, + "end": 1938.84, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 1938.84, + "end": 1938.98, + "probability": 0.99658203125 + }, + { + "word": " couple", + "start": 1938.98, + "end": 1939.16, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1939.16, + "end": 1939.24, + "probability": 0.042327880859375 + } + ] + }, + { + "id": 893, + "text": "times now is that how are we supposed to trust these people to protect our security and our", + "start": 1939.24, + "end": 1944.3, + "words": [ + { + "word": " times", + "start": 1939.24, + "end": 1939.38, + "probability": 0.982421875 + }, + { + "word": " now", + "start": 1939.38, + "end": 1939.64, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1939.64, + "end": 1939.86, + "probability": 0.5126953125 + }, + { + "word": " that", + "start": 1939.86, + "end": 1940.06, + "probability": 0.99755859375 + }, + { + "word": " how", + "start": 1940.06, + "end": 1940.72, + "probability": 0.71142578125 + }, + { + "word": " are", + "start": 1940.72, + "end": 1940.86, + "probability": 1.0 + }, + { + "word": " we", + "start": 1940.86, + "end": 1941.0, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 1941.0, + "end": 1941.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 1941.18, + "end": 1941.44, + "probability": 1.0 + }, + { + "word": " trust", + "start": 1941.44, + "end": 1941.66, + "probability": 1.0 + }, + { + "word": " these", + "start": 1941.66, + "end": 1941.86, + "probability": 1.0 + }, + { + "word": " people", + "start": 1941.86, + "end": 1942.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 1942.12, + "end": 1942.32, + "probability": 1.0 + }, + { + "word": " protect", + "start": 1942.32, + "end": 1942.62, + "probability": 1.0 + }, + { + "word": " our", + "start": 1942.62, + "end": 1943.36, + "probability": 1.0 + }, + { + "word": " security", + "start": 1943.36, + "end": 1943.84, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1943.84, + "end": 1944.1, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 1944.1, + "end": 1944.3, + "probability": 1.0 + } + ] + }, + { + "id": 894, + "text": "privacy when they can't even protect their own right and they're the ones calling for weaker", + "start": 1944.3, + "end": 1948.2, + "words": [ + { + "word": " privacy", + "start": 1944.3, + "end": 1944.74, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 1944.74, + "end": 1945.0, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1945.0, + "end": 1945.1, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1945.1, + "end": 1945.32, + "probability": 1.0 + }, + { + "word": " even", + "start": 1945.32, + "end": 1945.46, + "probability": 0.99951171875 + }, + { + "word": " protect", + "start": 1945.46, + "end": 1946.06, + "probability": 1.0 + }, + { + "word": " their", + "start": 1946.06, + "end": 1946.34, + "probability": 1.0 + }, + { + "word": " own", + "start": 1946.34, + "end": 1946.6, + "probability": 1.0 + }, + { + "word": " right", + "start": 1946.6, + "end": 1946.98, + "probability": 0.1246337890625 + }, + { + "word": " and", + "start": 1946.98, + "end": 1947.18, + "probability": 0.9404296875 + }, + { + "word": " they're", + "start": 1947.18, + "end": 1947.38, + "probability": 0.982421875 + }, + { + "word": " the", + "start": 1947.38, + "end": 1947.4, + "probability": 0.99951171875 + }, + { + "word": " ones", + "start": 1947.4, + "end": 1947.54, + "probability": 0.99853515625 + }, + { + "word": " calling", + "start": 1947.54, + "end": 1947.7, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1947.7, + "end": 1947.92, + "probability": 1.0 + }, + { + "word": " weaker", + "start": 1947.92, + "end": 1948.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 895, + "text": "you know encryption they're like yeah that's the ironic thing is that if they had had strong", + "start": 1948.2, + "end": 1953.32, + "words": [ + { + "word": " you", + "start": 1948.2, + "end": 1948.66, + "probability": 0.9921875 + }, + { + "word": " know", + "start": 1948.66, + "end": 1949.72, + "probability": 1.0 + }, + { + "word": " encryption", + "start": 1949.72, + "end": 1950.06, + "probability": 0.99560546875 + }, + { + "word": " they're", + "start": 1950.06, + "end": 1950.84, + "probability": 0.9873046875 + }, + { + "word": " like", + "start": 1950.84, + "end": 1951.08, + "probability": 1.0 + }, + { + "word": " yeah", + "start": 1951.08, + "end": 1951.46, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1951.46, + "end": 1951.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1951.68, + "end": 1951.76, + "probability": 1.0 + }, + { + "word": " ironic", + "start": 1951.76, + "end": 1952.0, + "probability": 0.99853515625 + }, + { + "word": " thing", + "start": 1952.0, + "end": 1952.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1952.3, + "end": 1952.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1952.46, + "end": 1952.54, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1952.54, + "end": 1952.66, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 1952.66, + "end": 1952.8, + "probability": 1.0 + }, + { + "word": " had", + "start": 1952.8, + "end": 1952.88, + "probability": 1.0 + }, + { + "word": " had", + "start": 1952.88, + "end": 1953.02, + "probability": 0.98193359375 + }, + { + "word": " strong", + "start": 1953.02, + "end": 1953.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 896, + "text": "encryption on their own equipment this could not have happened yeah who knows man they're just", + "start": 1953.32, + "end": 1959.56, + "words": [ + { + "word": " encryption", + "start": 1953.32, + "end": 1953.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 1953.72, + "end": 1954.46, + "probability": 1.0 + }, + { + "word": " their", + "start": 1954.46, + "end": 1954.68, + "probability": 1.0 + }, + { + "word": " own", + "start": 1954.68, + "end": 1954.92, + "probability": 1.0 + }, + { + "word": " equipment", + "start": 1954.92, + "end": 1955.32, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1955.32, + "end": 1956.06, + "probability": 1.0 + }, + { + "word": " could", + "start": 1956.06, + "end": 1956.32, + "probability": 1.0 + }, + { + "word": " not", + "start": 1956.32, + "end": 1956.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 1956.56, + "end": 1956.7, + "probability": 1.0 + }, + { + "word": " happened", + "start": 1956.7, + "end": 1957.02, + "probability": 0.99853515625 + }, + { + "word": " yeah", + "start": 1957.02, + "end": 1957.42, + "probability": 0.75390625 + }, + { + "word": " who", + "start": 1957.42, + "end": 1958.6, + "probability": 0.9990234375 + }, + { + "word": " knows", + "start": 1958.6, + "end": 1958.86, + "probability": 1.0 + }, + { + "word": " man", + "start": 1958.86, + "end": 1959.08, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 1959.08, + "end": 1959.36, + "probability": 1.0 + }, + { + "word": " just", + "start": 1959.36, + "end": 1959.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 897, + "text": "oh they're just dumb this is you know it's like when when a kid puts his hand on the stove and", + "start": 1960.56, + "end": 1965.38, + "words": [ + { + "word": " oh", + "start": 1960.56, + "end": 1961.04, + "probability": 0.499267578125 + }, + { + "word": " they're", + "start": 1961.04, + "end": 1961.52, + "probability": 1.0 + }, + { + "word": " just", + "start": 1961.52, + "end": 1961.76, + "probability": 0.99951171875 + }, + { + "word": " dumb", + "start": 1961.76, + "end": 1962.0, + "probability": 0.9814453125 + }, + { + "word": " this", + "start": 1962.0, + "end": 1962.16, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1962.16, + "end": 1962.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1962.32, + "end": 1962.52, + "probability": 1.0 + }, + { + "word": " know", + "start": 1962.52, + "end": 1962.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1962.64, + "end": 1962.96, + "probability": 1.0 + }, + { + "word": " like", + "start": 1962.96, + "end": 1963.06, + "probability": 1.0 + }, + { + "word": " when", + "start": 1963.06, + "end": 1963.38, + "probability": 1.0 + }, + { + "word": " when", + "start": 1963.38, + "end": 1963.6, + "probability": 0.97119140625 + }, + { + "word": " a", + "start": 1963.6, + "end": 1963.76, + "probability": 1.0 + }, + { + "word": " kid", + "start": 1963.76, + "end": 1963.96, + "probability": 0.99951171875 + }, + { + "word": " puts", + "start": 1963.96, + "end": 1964.2, + "probability": 1.0 + }, + { + "word": " his", + "start": 1964.2, + "end": 1964.38, + "probability": 1.0 + }, + { + "word": " hand", + "start": 1964.38, + "end": 1964.58, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1964.58, + "end": 1964.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1964.78, + "end": 1964.9, + "probability": 0.99951171875 + }, + { + "word": " stove", + "start": 1964.9, + "end": 1965.14, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 1965.14, + "end": 1965.38, + "probability": 1.0 + } + ] + }, + { + "id": 898, + "text": "then gets a burn on his hand and you go do you see why you don't do that now yeah so yeah maybe", + "start": 1965.38, + "end": 1971.44, + "words": [ + { + "word": " then", + "start": 1965.38, + "end": 1965.42, + "probability": 0.1812744140625 + }, + { + "word": " gets", + "start": 1965.42, + "end": 1965.62, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 1965.62, + "end": 1965.74, + "probability": 0.99951171875 + }, + { + "word": " burn", + "start": 1965.74, + "end": 1965.92, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 1965.92, + "end": 1966.04, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 1966.04, + "end": 1966.16, + "probability": 0.99951171875 + }, + { + "word": " hand", + "start": 1966.16, + "end": 1966.4, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1966.4, + "end": 1966.52, + "probability": 0.73779296875 + }, + { + "word": " you", + "start": 1966.52, + "end": 1966.6, + "probability": 0.9931640625 + }, + { + "word": " go", + "start": 1966.6, + "end": 1966.76, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 1966.76, + "end": 1967.1, + "probability": 0.246337890625 + }, + { + "word": " you", + "start": 1967.1, + "end": 1967.28, + "probability": 1.0 + }, + { + "word": " see", + "start": 1967.28, + "end": 1967.5, + "probability": 1.0 + }, + { + "word": " why", + "start": 1967.5, + "end": 1967.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 1967.64, + "end": 1967.76, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1967.76, + "end": 1967.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 1967.9, + "end": 1968.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1968.06, + "end": 1968.2, + "probability": 1.0 + }, + { + "word": " now", + "start": 1968.2, + "end": 1968.48, + "probability": 0.9990234375 + }, + { + "word": " yeah", + "start": 1968.48, + "end": 1969.86, + "probability": 0.783203125 + }, + { + "word": " so", + "start": 1969.86, + "end": 1970.18, + "probability": 0.99853515625 + }, + { + "word": " yeah", + "start": 1970.18, + "end": 1970.84, + "probability": 0.97509765625 + }, + { + "word": " maybe", + "start": 1970.84, + "end": 1971.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 899, + "text": "maybe we should call for you know they're going to turn into something else though", + "start": 1971.44, + "end": 1974.74, + "words": [ + { + "word": " maybe", + "start": 1971.44, + "end": 1971.98, + "probability": 0.98193359375 + }, + { + "word": " we", + "start": 1971.98, + "end": 1972.22, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 1972.22, + "end": 1972.4, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 1972.4, + "end": 1972.64, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1972.64, + "end": 1972.88, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 1972.88, + "end": 1973.08, + "probability": 0.98681640625 + }, + { + "word": " know", + "start": 1973.08, + "end": 1973.44, + "probability": 0.9599609375 + }, + { + "word": " they're", + "start": 1973.44, + "end": 1973.64, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1973.64, + "end": 1973.64, + "probability": 0.6787109375 + }, + { + "word": " to", + "start": 1973.64, + "end": 1973.74, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1973.74, + "end": 1973.88, + "probability": 0.9990234375 + }, + { + "word": " into", + "start": 1973.88, + "end": 1974.0, + "probability": 0.97509765625 + }, + { + "word": " something", + "start": 1974.0, + "end": 1974.24, + "probability": 1.0 + }, + { + "word": " else", + "start": 1974.24, + "end": 1974.54, + "probability": 1.0 + }, + { + "word": " though", + "start": 1974.54, + "end": 1974.74, + "probability": 0.9287109375 + } + ] + }, + { + "id": 900, + "text": "right it's still going to be a weak a push for weaker encryption because now they want to find", + "start": 1974.74, + "end": 1980.08, + "words": [ + { + "word": " right", + "start": 1974.74, + "end": 1975.3, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 1975.3, + "end": 1975.66, + "probability": 1.0 + }, + { + "word": " still", + "start": 1975.66, + "end": 1976.04, + "probability": 0.5283203125 + }, + { + "word": " going", + "start": 1976.04, + "end": 1976.28, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 1976.28, + "end": 1976.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 1976.38, + "end": 1976.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 1976.5, + "end": 1976.6, + "probability": 1.0 + }, + { + "word": " weak", + "start": 1976.6, + "end": 1976.8, + "probability": 0.6865234375 + }, + { + "word": " a", + "start": 1976.8, + "end": 1977.16, + "probability": 0.5166015625 + }, + { + "word": " push", + "start": 1977.16, + "end": 1977.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 1977.96, + "end": 1978.16, + "probability": 1.0 + }, + { + "word": " weaker", + "start": 1978.16, + "end": 1978.34, + "probability": 0.70458984375 + }, + { + "word": " encryption", + "start": 1978.34, + "end": 1978.76, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1978.76, + "end": 1979.22, + "probability": 1.0 + }, + { + "word": " now", + "start": 1979.22, + "end": 1979.5, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1979.5, + "end": 1979.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 1979.66, + "end": 1979.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1979.76, + "end": 1979.88, + "probability": 1.0 + }, + { + "word": " find", + "start": 1979.88, + "end": 1980.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 901, + "text": "the guy that's actually hidden behind encryption yeah you can't find him because he has the", + "start": 1980.08, + "end": 1983.54, + "words": [ + { + "word": " the", + "start": 1980.08, + "end": 1980.26, + "probability": 0.99951171875 + }, + { + "word": " guy", + "start": 1980.26, + "end": 1980.4, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1980.4, + "end": 1980.66, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1980.66, + "end": 1980.86, + "probability": 0.998046875 + }, + { + "word": " hidden", + "start": 1980.86, + "end": 1981.06, + "probability": 0.99755859375 + }, + { + "word": " behind", + "start": 1981.06, + "end": 1981.34, + "probability": 0.9990234375 + }, + { + "word": " encryption", + "start": 1981.34, + "end": 1981.56, + "probability": 0.9609375 + }, + { + "word": " yeah", + "start": 1981.56, + "end": 1981.92, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 1981.92, + "end": 1982.04, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 1982.04, + "end": 1982.26, + "probability": 1.0 + }, + { + "word": " find", + "start": 1982.26, + "end": 1982.46, + "probability": 0.9990234375 + }, + { + "word": " him", + "start": 1982.46, + "end": 1982.64, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1982.64, + "end": 1982.88, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 1982.88, + "end": 1983.06, + "probability": 1.0 + }, + { + "word": " has", + "start": 1983.06, + "end": 1983.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1983.34, + "end": 1983.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 902, + "text": "encryption right so yeah let's let's just burn the whole thing down you know don't worry about", + "start": 1983.54, + "end": 1989.48, + "words": [ + { + "word": " encryption", + "start": 1983.54, + "end": 1983.86, + "probability": 0.99853515625 + }, + { + "word": " right", + "start": 1983.86, + "end": 1984.36, + "probability": 0.99609375 + }, + { + "word": " so", + "start": 1984.36, + "end": 1984.7, + "probability": 1.0 + }, + { + "word": " yeah", + "start": 1984.7, + "end": 1985.62, + "probability": 0.9990234375 + }, + { + "word": " let's", + "start": 1985.62, + "end": 1986.02, + "probability": 0.9990234375 + }, + { + "word": " let's", + "start": 1986.02, + "end": 1986.82, + "probability": 0.72802734375 + }, + { + "word": " just", + "start": 1986.82, + "end": 1986.88, + "probability": 0.99951171875 + }, + { + "word": " burn", + "start": 1986.88, + "end": 1987.08, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1987.08, + "end": 1987.2, + "probability": 1.0 + }, + { + "word": " whole", + "start": 1987.2, + "end": 1987.3, + "probability": 0.99755859375 + }, + { + "word": " thing", + "start": 1987.3, + "end": 1987.48, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 1987.48, + "end": 1987.72, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1987.72, + "end": 1988.22, + "probability": 0.94921875 + }, + { + "word": " know", + "start": 1988.22, + "end": 1988.36, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1988.36, + "end": 1989.18, + "probability": 0.7744140625 + }, + { + "word": " worry", + "start": 1989.18, + "end": 1989.32, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1989.32, + "end": 1989.48, + "probability": 1.0 + } + ] + }, + { + "id": 903, + "text": "making things better right let's just let's just get angry about it and", + "start": 1989.48, + "end": 1993.74, + "words": [ + { + "word": " making", + "start": 1989.48, + "end": 1989.66, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 1989.66, + "end": 1989.86, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 1989.86, + "end": 1990.16, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 1990.16, + "end": 1990.9, + "probability": 0.99951171875 + }, + { + "word": " let's", + "start": 1990.9, + "end": 1991.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 1991.26, + "end": 1991.54, + "probability": 0.99951171875 + }, + { + "word": " let's", + "start": 1991.54, + "end": 1992.18, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1992.18, + "end": 1992.28, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 1992.28, + "end": 1992.42, + "probability": 1.0 + }, + { + "word": " angry", + "start": 1992.42, + "end": 1992.7, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 1992.7, + "end": 1993.06, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1993.06, + "end": 1993.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 1993.34, + "end": 1993.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 904, + "text": "it's", + "start": 1994.8999999999999, + "end": 1995.3, + "words": [ + { + "word": " it's", + "start": 1994.8999999999999, + "end": 1995.3, + "probability": 0.9306640625 + } + ] + }, + { + "id": 905, + "text": "dumb all right so yeah there's a whole lot going on with the this DNC hack and it's one of those", + "start": 1995.38, + "end": 2002.4, + "words": [ + { + "word": " dumb", + "start": 1995.38, + "end": 1995.54, + "probability": 0.260009765625 + }, + { + "word": " all", + "start": 1995.54, + "end": 1996.02, + "probability": 0.042449951171875 + }, + { + "word": " right", + "start": 1996.02, + "end": 1996.68, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 1996.68, + "end": 1997.02, + "probability": 0.2218017578125 + }, + { + "word": " yeah", + "start": 1997.02, + "end": 1998.1, + "probability": 0.994140625 + }, + { + "word": " there's", + "start": 1998.1, + "end": 1998.34, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 1998.34, + "end": 1998.4, + "probability": 0.9990234375 + }, + { + "word": " whole", + "start": 1998.4, + "end": 1998.6, + "probability": 0.9990234375 + }, + { + "word": " lot", + "start": 1998.6, + "end": 1998.76, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 1998.76, + "end": 1998.9, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1998.9, + "end": 1999.1, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 1999.1, + "end": 1999.26, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1999.26, + "end": 1999.36, + "probability": 0.6689453125 + }, + { + "word": " this", + "start": 1999.36, + "end": 1999.74, + "probability": 0.96923828125 + }, + { + "word": " DNC", + "start": 1999.74, + "end": 2000.22, + "probability": 0.94482421875 + }, + { + "word": " hack", + "start": 2000.22, + "end": 2000.54, + "probability": 0.98681640625 + }, + { + "word": " and", + "start": 2000.54, + "end": 2001.02, + "probability": 0.99755859375 + }, + { + "word": " it's", + "start": 2001.02, + "end": 2001.64, + "probability": 0.9072265625 + }, + { + "word": " one", + "start": 2001.64, + "end": 2002.22, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 2002.22, + "end": 2002.34, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 2002.34, + "end": 2002.4, + "probability": 0.9482421875 + } + ] + }, + { + "id": 906, + "text": "things where you know you've got the two faces of the government right or where the government", + "start": 2002.4, + "end": 2009.22, + "words": [ + { + "word": " things", + "start": 2002.4, + "end": 2002.6, + "probability": 0.9990234375 + }, + { + "word": " where", + "start": 2002.6, + "end": 2003.0, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2003.0, + "end": 2004.08, + "probability": 0.99169921875 + }, + { + "word": " know", + "start": 2004.08, + "end": 2004.18, + "probability": 0.5966796875 + }, + { + "word": " you've", + "start": 2004.18, + "end": 2004.38, + "probability": 0.99853515625 + }, + { + "word": " got", + "start": 2004.38, + "end": 2004.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 2004.6, + "end": 2005.56, + "probability": 0.99755859375 + }, + { + "word": " two", + "start": 2005.56, + "end": 2005.84, + "probability": 0.9990234375 + }, + { + "word": " faces", + "start": 2005.84, + "end": 2006.26, + "probability": 0.97900390625 + }, + { + "word": " of", + "start": 2006.26, + "end": 2006.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2006.7, + "end": 2006.86, + "probability": 1.0 + }, + { + "word": " government", + "start": 2006.86, + "end": 2007.24, + "probability": 0.99853515625 + }, + { + "word": " right", + "start": 2007.24, + "end": 2008.02, + "probability": 0.94140625 + }, + { + "word": " or", + "start": 2008.02, + "end": 2008.24, + "probability": 0.94970703125 + }, + { + "word": " where", + "start": 2008.24, + "end": 2008.58, + "probability": 0.452880859375 + }, + { + "word": " the", + "start": 2008.58, + "end": 2008.9, + "probability": 0.99951171875 + }, + { + "word": " government", + "start": 2008.9, + "end": 2009.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 907, + "text": "is speaking out of both sides of its face right so to speak you know with the whole weaker encryption", + "start": 2009.22, + "end": 2014.06, + "words": [ + { + "word": " is", + "start": 2009.22, + "end": 2009.42, + "probability": 0.998046875 + }, + { + "word": " speaking", + "start": 2009.42, + "end": 2009.64, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 2009.64, + "end": 2009.88, + "probability": 0.9775390625 + }, + { + "word": " of", + "start": 2009.88, + "end": 2009.94, + "probability": 0.9970703125 + }, + { + "word": " both", + "start": 2009.94, + "end": 2010.14, + "probability": 0.99951171875 + }, + { + "word": " sides", + "start": 2010.14, + "end": 2010.54, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2010.54, + "end": 2010.78, + "probability": 0.99951171875 + }, + { + "word": " its", + "start": 2010.78, + "end": 2010.92, + "probability": 0.994140625 + }, + { + "word": " face", + "start": 2010.92, + "end": 2011.3, + "probability": 0.998046875 + }, + { + "word": " right", + "start": 2011.3, + "end": 2011.92, + "probability": 0.2315673828125 + }, + { + "word": " so", + "start": 2011.92, + "end": 2012.14, + "probability": 0.412841796875 + }, + { + "word": " to", + "start": 2012.14, + "end": 2012.3, + "probability": 0.998046875 + }, + { + "word": " speak", + "start": 2012.3, + "end": 2012.56, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2012.56, + "end": 2012.94, + "probability": 0.99365234375 + }, + { + "word": " know", + "start": 2012.94, + "end": 2013.08, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 2013.08, + "end": 2013.22, + "probability": 0.7919921875 + }, + { + "word": " the", + "start": 2013.22, + "end": 2013.34, + "probability": 0.9990234375 + }, + { + "word": " whole", + "start": 2013.34, + "end": 2013.5, + "probability": 0.99755859375 + }, + { + "word": " weaker", + "start": 2013.5, + "end": 2013.78, + "probability": 0.9501953125 + }, + { + "word": " encryption", + "start": 2013.78, + "end": 2014.06, + "probability": 0.998046875 + } + ] + }, + { + "id": 908, + "text": "bit and the all these laws that are put in place to make things more secure because they don't want", + "start": 2014.06, + "end": 2022.64, + "words": [ + { + "word": " bit", + "start": 2014.06, + "end": 2014.34, + "probability": 0.74169921875 + }, + { + "word": " and", + "start": 2014.34, + "end": 2015.08, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2015.08, + "end": 2015.28, + "probability": 0.9853515625 + }, + { + "word": " all", + "start": 2015.28, + "end": 2017.22, + "probability": 0.96630859375 + }, + { + "word": " these", + "start": 2017.22, + "end": 2017.5, + "probability": 0.9912109375 + }, + { + "word": " laws", + "start": 2017.5, + "end": 2017.84, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2017.84, + "end": 2018.08, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 2018.08, + "end": 2018.16, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 2018.16, + "end": 2018.26, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 2018.26, + "end": 2018.38, + "probability": 1.0 + }, + { + "word": " place", + "start": 2018.38, + "end": 2018.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2018.58, + "end": 2018.72, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 2018.72, + "end": 2018.96, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2018.96, + "end": 2019.46, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 2019.46, + "end": 2020.64, + "probability": 0.9990234375 + }, + { + "word": " secure", + "start": 2020.64, + "end": 2021.02, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 2021.02, + "end": 2022.24, + "probability": 0.9931640625 + }, + { + "word": " they", + "start": 2022.24, + "end": 2022.48, + "probability": 0.93017578125 + }, + { + "word": " don't", + "start": 2022.48, + "end": 2022.56, + "probability": 0.990234375 + }, + { + "word": " want", + "start": 2022.56, + "end": 2022.64, + "probability": 0.99658203125 + } + ] + }, + { + "id": 909, + "text": "hackers they don't want any of these hackers in there", + "start": 2022.64, + "end": 2024.54, + "words": [ + { + "word": " hackers", + "start": 2022.64, + "end": 2022.96, + "probability": 0.99560546875 + }, + { + "word": " they", + "start": 2022.96, + "end": 2023.18, + "probability": 0.99267578125 + }, + { + "word": " don't", + "start": 2023.18, + "end": 2023.3, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2023.3, + "end": 2023.4, + "probability": 0.998046875 + }, + { + "word": " any", + "start": 2023.4, + "end": 2023.54, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2023.54, + "end": 2023.64, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 2023.64, + "end": 2023.8, + "probability": 0.99951171875 + }, + { + "word": " hackers", + "start": 2023.8, + "end": 2024.08, + "probability": 0.98046875 + }, + { + "word": " in", + "start": 2024.08, + "end": 2024.38, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 2024.38, + "end": 2024.54, + "probability": 0.99609375 + } + ] + }, + { + "id": 910, + "text": "um but they are and they want basically to be in control they're like let us control your", + "start": 2025.38, + "end": 2031.34, + "words": [ + { + "word": " um", + "start": 2025.38, + "end": 2025.38, + "probability": 0.00484466552734375 + }, + { + "word": " but", + "start": 2025.38, + "end": 2026.06, + "probability": 0.51416015625 + }, + { + "word": " they", + "start": 2026.06, + "end": 2027.36, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2027.36, + "end": 2027.52, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 2027.52, + "end": 2027.8, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2027.8, + "end": 2028.12, + "probability": 1.0 + }, + { + "word": " want", + "start": 2028.12, + "end": 2028.32, + "probability": 1.0 + }, + { + "word": " basically", + "start": 2028.32, + "end": 2028.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2028.96, + "end": 2029.14, + "probability": 1.0 + }, + { + "word": " be", + "start": 2029.14, + "end": 2029.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 2029.24, + "end": 2029.34, + "probability": 1.0 + }, + { + "word": " control", + "start": 2029.34, + "end": 2029.66, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 2029.66, + "end": 2030.14, + "probability": 0.99755859375 + }, + { + "word": " like", + "start": 2030.14, + "end": 2030.28, + "probability": 1.0 + }, + { + "word": " let", + "start": 2030.28, + "end": 2030.56, + "probability": 1.0 + }, + { + "word": " us", + "start": 2030.56, + "end": 2030.76, + "probability": 1.0 + }, + { + "word": " control", + "start": 2030.76, + "end": 2031.04, + "probability": 1.0 + }, + { + "word": " your", + "start": 2031.04, + "end": 2031.34, + "probability": 1.0 + } + ] + }, + { + "id": 911, + "text": "infrastructure because you security guys don't know what you're doing with the threat of throwing", + "start": 2031.34, + "end": 2035.08, + "words": [ + { + "word": " infrastructure", + "start": 2031.34, + "end": 2031.78, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 2031.78, + "end": 2032.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 2032.34, + "end": 2032.58, + "probability": 1.0 + }, + { + "word": " security", + "start": 2032.58, + "end": 2032.94, + "probability": 1.0 + }, + { + "word": " guys", + "start": 2032.94, + "end": 2033.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2033.2, + "end": 2033.48, + "probability": 1.0 + }, + { + "word": " know", + "start": 2033.48, + "end": 2033.56, + "probability": 1.0 + }, + { + "word": " what", + "start": 2033.56, + "end": 2033.66, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 2033.66, + "end": 2033.8, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 2033.8, + "end": 2033.8, + "probability": 0.6630859375 + }, + { + "word": " with", + "start": 2033.8, + "end": 2034.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2034.12, + "end": 2034.46, + "probability": 1.0 + }, + { + "word": " threat", + "start": 2034.46, + "end": 2034.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 2034.72, + "end": 2034.86, + "probability": 1.0 + }, + { + "word": " throwing", + "start": 2034.86, + "end": 2035.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 912, + "text": "security guys in jail for not allowing the federal government to dictate how security is supposed to", + "start": 2035.08, + "end": 2041.0, + "words": [ + { + "word": " security", + "start": 2035.08, + "end": 2035.76, + "probability": 1.0 + }, + { + "word": " guys", + "start": 2035.76, + "end": 2036.1, + "probability": 1.0 + }, + { + "word": " in", + "start": 2036.1, + "end": 2036.28, + "probability": 1.0 + }, + { + "word": " jail", + "start": 2036.28, + "end": 2036.58, + "probability": 1.0 + }, + { + "word": " for", + "start": 2036.58, + "end": 2036.84, + "probability": 1.0 + }, + { + "word": " not", + "start": 2036.84, + "end": 2036.98, + "probability": 1.0 + }, + { + "word": " allowing", + "start": 2036.98, + "end": 2037.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2037.3, + "end": 2037.46, + "probability": 1.0 + }, + { + "word": " federal", + "start": 2037.46, + "end": 2037.66, + "probability": 1.0 + }, + { + "word": " government", + "start": 2037.66, + "end": 2038.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 2038.02, + "end": 2038.82, + "probability": 1.0 + }, + { + "word": " dictate", + "start": 2038.82, + "end": 2039.52, + "probability": 1.0 + }, + { + "word": " how", + "start": 2039.52, + "end": 2039.96, + "probability": 1.0 + }, + { + "word": " security", + "start": 2039.96, + "end": 2040.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 2040.48, + "end": 2040.74, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 2040.74, + "end": 2040.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2040.86, + "end": 2041.0, + "probability": 1.0 + } + ] + }, + { + "id": 913, + "text": "happen in an IT environment however they're not setting the highest you know the bar very high", + "start": 2041.0, + "end": 2047.32, + "words": [ + { + "word": " happen", + "start": 2041.0, + "end": 2041.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 2041.24, + "end": 2041.44, + "probability": 1.0 + }, + { + "word": " an", + "start": 2041.44, + "end": 2041.54, + "probability": 1.0 + }, + { + "word": " IT", + "start": 2041.54, + "end": 2041.74, + "probability": 0.090576171875 + }, + { + "word": " environment", + "start": 2041.74, + "end": 2042.16, + "probability": 1.0 + }, + { + "word": " however", + "start": 2042.16, + "end": 2043.5, + "probability": 0.97265625 + }, + { + "word": " they're", + "start": 2043.5, + "end": 2044.66, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2044.66, + "end": 2044.86, + "probability": 1.0 + }, + { + "word": " setting", + "start": 2044.86, + "end": 2045.18, + "probability": 0.876953125 + }, + { + "word": " the", + "start": 2045.18, + "end": 2045.32, + "probability": 0.99951171875 + }, + { + "word": " highest", + "start": 2045.32, + "end": 2045.56, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2045.56, + "end": 2045.92, + "probability": 0.97607421875 + }, + { + "word": " know", + "start": 2045.92, + "end": 2046.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2046.58, + "end": 2046.68, + "probability": 0.99951171875 + }, + { + "word": " bar", + "start": 2046.68, + "end": 2046.88, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 2046.88, + "end": 2047.08, + "probability": 1.0 + }, + { + "word": " high", + "start": 2047.08, + "end": 2047.32, + "probability": 1.0 + } + ] + }, + { + "id": 914, + "text": "here well it all goes back to the idea that you know essentially these people are legislating", + "start": 2047.32, + "end": 2052.36, + "words": [ + { + "word": " here", + "start": 2047.32, + "end": 2047.54, + "probability": 0.9990234375 + }, + { + "word": " well", + "start": 2047.54, + "end": 2047.88, + "probability": 0.9697265625 + }, + { + "word": " it", + "start": 2047.88, + "end": 2048.08, + "probability": 1.0 + }, + { + "word": " all", + "start": 2048.08, + "end": 2048.24, + "probability": 1.0 + }, + { + "word": " goes", + "start": 2048.24, + "end": 2048.42, + "probability": 1.0 + }, + { + "word": " back", + "start": 2048.42, + "end": 2048.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2048.64, + "end": 2048.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 2048.82, + "end": 2048.92, + "probability": 1.0 + }, + { + "word": " idea", + "start": 2048.92, + "end": 2049.1, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2049.1, + "end": 2049.48, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2049.48, + "end": 2050.08, + "probability": 0.998046875 + }, + { + "word": " know", + "start": 2050.08, + "end": 2050.18, + "probability": 0.99951171875 + }, + { + "word": " essentially", + "start": 2050.18, + "end": 2050.46, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 2050.46, + "end": 2051.42, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 2051.42, + "end": 2051.64, + "probability": 1.0 + }, + { + "word": " are", + "start": 2051.64, + "end": 2051.82, + "probability": 1.0 + }, + { + "word": " legislating", + "start": 2051.82, + "end": 2052.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 915, + "text": "things that they don't understand you know when when you're in a situation where you're not able to", + "start": 2052.36, + "end": 2055.36, + "words": [ + { + "word": " things", + "start": 2052.36, + "end": 2052.56, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2052.56, + "end": 2052.74, + "probability": 1.0 + }, + { + "word": " they", + "start": 2052.74, + "end": 2052.86, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2052.86, + "end": 2053.1, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2053.1, + "end": 2053.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2053.44, + "end": 2054.16, + "probability": 0.98974609375 + }, + { + "word": " know", + "start": 2054.16, + "end": 2054.32, + "probability": 1.0 + }, + { + "word": " when", + "start": 2054.32, + "end": 2054.92, + "probability": 0.998046875 + }, + { + "word": " when", + "start": 2054.92, + "end": 2055.2, + "probability": 0.99267578125 + }, + { + "word": " you're", + "start": 2055.2, + "end": 2055.36, + "probability": 0.8447265625 + }, + { + "word": " in", + "start": 2055.36, + "end": 2055.36, + "probability": 0.385009765625 + }, + { + "word": " a", + "start": 2055.36, + "end": 2055.36, + "probability": 0.337158203125 + }, + { + "word": " situation", + "start": 2055.36, + "end": 2055.36, + "probability": 0.2119140625 + }, + { + "word": " where", + "start": 2055.36, + "end": 2055.36, + "probability": 0.70849609375 + }, + { + "word": " you're", + "start": 2055.36, + "end": 2055.36, + "probability": 0.908203125 + }, + { + "word": " not", + "start": 2055.36, + "end": 2055.36, + "probability": 0.224365234375 + }, + { + "word": " able", + "start": 2055.36, + "end": 2055.36, + "probability": 0.1248779296875 + }, + { + "word": " to", + "start": 2055.36, + "end": 2055.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 916, + "text": "do anything you have when they're setting up laws that are just so comically bad when it comes to", + "start": 2055.38, + "end": 2059.46, + "words": [ + { + "word": " do", + "start": 2055.38, + "end": 2055.38, + "probability": 3.993511199951172e-06 + }, + { + "word": " anything", + "start": 2055.38, + "end": 2055.44, + "probability": 0.0005135536193847656 + }, + { + "word": " you", + "start": 2055.44, + "end": 2055.44, + "probability": 0.0283660888671875 + }, + { + "word": " have", + "start": 2055.44, + "end": 2055.44, + "probability": 0.12237548828125 + }, + { + "word": " when", + "start": 2055.44, + "end": 2056.02, + "probability": 0.222900390625 + }, + { + "word": " they're", + "start": 2056.02, + "end": 2056.36, + "probability": 0.9609375 + }, + { + "word": " setting", + "start": 2056.36, + "end": 2056.58, + "probability": 0.9736328125 + }, + { + "word": " up", + "start": 2056.58, + "end": 2056.74, + "probability": 0.99658203125 + }, + { + "word": " laws", + "start": 2056.74, + "end": 2056.98, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 2056.98, + "end": 2057.34, + "probability": 0.97802734375 + }, + { + "word": " are", + "start": 2057.34, + "end": 2057.58, + "probability": 0.99609375 + }, + { + "word": " just", + "start": 2057.58, + "end": 2057.74, + "probability": 0.9892578125 + }, + { + "word": " so", + "start": 2057.74, + "end": 2057.96, + "probability": 0.99609375 + }, + { + "word": " comically", + "start": 2057.96, + "end": 2058.46, + "probability": 0.99169921875 + }, + { + "word": " bad", + "start": 2058.46, + "end": 2058.76, + "probability": 0.99609375 + }, + { + "word": " when", + "start": 2058.76, + "end": 2059.06, + "probability": 0.9560546875 + }, + { + "word": " it", + "start": 2059.06, + "end": 2059.18, + "probability": 0.99853515625 + }, + { + "word": " comes", + "start": 2059.18, + "end": 2059.34, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2059.34, + "end": 2059.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 917, + "text": "stuff like encryption the people who actually know what they're doing it's like it's like child's play", + "start": 2059.46, + "end": 2064.08, + "words": [ + { + "word": " stuff", + "start": 2059.46, + "end": 2059.6, + "probability": 0.99609375 + }, + { + "word": " like", + "start": 2059.6, + "end": 2059.78, + "probability": 0.9951171875 + }, + { + "word": " encryption", + "start": 2059.78, + "end": 2060.02, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 2060.02, + "end": 2060.64, + "probability": 0.389404296875 + }, + { + "word": " people", + "start": 2060.64, + "end": 2060.9, + "probability": 0.99853515625 + }, + { + "word": " who", + "start": 2060.9, + "end": 2061.04, + "probability": 0.998046875 + }, + { + "word": " actually", + "start": 2061.04, + "end": 2061.3, + "probability": 0.99609375 + }, + { + "word": " know", + "start": 2061.3, + "end": 2061.54, + "probability": 0.99755859375 + }, + { + "word": " what", + "start": 2061.54, + "end": 2061.7, + "probability": 0.99365234375 + }, + { + "word": " they're", + "start": 2061.7, + "end": 2061.84, + "probability": 0.998046875 + }, + { + "word": " doing", + "start": 2061.84, + "end": 2062.12, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2062.12, + "end": 2062.64, + "probability": 0.947265625 + }, + { + "word": " like", + "start": 2062.64, + "end": 2062.88, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 2062.88, + "end": 2063.42, + "probability": 0.8984375 + }, + { + "word": " like", + "start": 2063.42, + "end": 2063.54, + "probability": 0.99853515625 + }, + { + "word": " child's", + "start": 2063.54, + "end": 2063.92, + "probability": 0.95263671875 + }, + { + "word": " play", + "start": 2063.92, + "end": 2064.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 918, + "text": "to get into their their equipment and their servers this guy was in there for a year and", + "start": 2064.08, + "end": 2069.88, + "words": [ + { + "word": " to", + "start": 2064.08, + "end": 2064.46, + "probability": 0.99560546875 + }, + { + "word": " get", + "start": 2064.46, + "end": 2064.62, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2064.62, + "end": 2064.82, + "probability": 0.99658203125 + }, + { + "word": " their", + "start": 2064.82, + "end": 2065.1, + "probability": 0.9873046875 + }, + { + "word": " their", + "start": 2065.1, + "end": 2065.48, + "probability": 0.7607421875 + }, + { + "word": " equipment", + "start": 2065.48, + "end": 2065.84, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 2065.84, + "end": 2065.96, + "probability": 0.53955078125 + }, + { + "word": " their", + "start": 2065.96, + "end": 2066.06, + "probability": 0.99755859375 + }, + { + "word": " servers", + "start": 2066.06, + "end": 2066.38, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 2066.38, + "end": 2068.44, + "probability": 0.89111328125 + }, + { + "word": " guy", + "start": 2068.44, + "end": 2068.62, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 2068.62, + "end": 2068.74, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 2068.74, + "end": 2068.84, + "probability": 0.99755859375 + }, + { + "word": " there", + "start": 2068.84, + "end": 2068.94, + "probability": 0.99755859375 + }, + { + "word": " for", + "start": 2068.94, + "end": 2069.1, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2069.1, + "end": 2069.18, + "probability": 0.9990234375 + }, + { + "word": " year", + "start": 2069.18, + "end": 2069.42, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2069.42, + "end": 2069.88, + "probability": 0.99658203125 + } + ] + }, + { + "id": 919, + "text": "nobody knew he was there yep just making copies to everything and he uh he sent it all off to", + "start": 2069.88, + "end": 2076.52, + "words": [ + { + "word": " nobody", + "start": 2069.88, + "end": 2070.12, + "probability": 0.99755859375 + }, + { + "word": " knew", + "start": 2070.12, + "end": 2070.34, + "probability": 0.99853515625 + }, + { + "word": " he", + "start": 2070.34, + "end": 2070.44, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2070.44, + "end": 2070.62, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 2070.62, + "end": 2070.84, + "probability": 0.99560546875 + }, + { + "word": " yep", + "start": 2070.84, + "end": 2071.5, + "probability": 0.92138671875 + }, + { + "word": " just", + "start": 2071.5, + "end": 2071.66, + "probability": 0.99365234375 + }, + { + "word": " making", + "start": 2071.66, + "end": 2072.02, + "probability": 0.99853515625 + }, + { + "word": " copies", + "start": 2072.02, + "end": 2072.38, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2072.38, + "end": 2072.52, + "probability": 0.90185546875 + }, + { + "word": " everything", + "start": 2072.52, + "end": 2072.78, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 2072.78, + "end": 2073.8, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 2073.8, + "end": 2074.04, + "probability": 0.998046875 + }, + { + "word": " uh", + "start": 2074.04, + "end": 2074.22, + "probability": 0.87451171875 + }, + { + "word": " he", + "start": 2074.22, + "end": 2074.64, + "probability": 0.92724609375 + }, + { + "word": " sent", + "start": 2074.64, + "end": 2075.78, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 2075.78, + "end": 2075.94, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 2075.94, + "end": 2076.06, + "probability": 0.998046875 + }, + { + "word": " off", + "start": 2076.06, + "end": 2076.34, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2076.34, + "end": 2076.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 920, + "text": "to wikileaks so according to wikileaks they basically say they're they're going to be", + "start": 2076.52, + "end": 2083.42, + "words": [ + { + "word": " to", + "start": 2076.52, + "end": 2077.04, + "probability": 0.96533203125 + }, + { + "word": " wikileaks", + "start": 2077.04, + "end": 2077.52, + "probability": 0.8779296875 + }, + { + "word": " so", + "start": 2077.52, + "end": 2078.48, + "probability": 0.9990234375 + }, + { + "word": " according", + "start": 2078.48, + "end": 2079.38, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2079.38, + "end": 2079.66, + "probability": 0.998046875 + }, + { + "word": " wikileaks", + "start": 2079.66, + "end": 2080.36, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 2080.36, + "end": 2081.26, + "probability": 0.9970703125 + }, + { + "word": " basically", + "start": 2081.26, + "end": 2081.58, + "probability": 0.98583984375 + }, + { + "word": " say", + "start": 2081.58, + "end": 2081.94, + "probability": 0.9658203125 + }, + { + "word": " they're", + "start": 2081.94, + "end": 2082.26, + "probability": 0.9921875 + }, + { + "word": " they're", + "start": 2082.26, + "end": 2083.08, + "probability": 0.982421875 + }, + { + "word": " going", + "start": 2083.08, + "end": 2083.22, + "probability": 0.783203125 + }, + { + "word": " to", + "start": 2083.22, + "end": 2083.3, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2083.3, + "end": 2083.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 921, + "text": "dumping tons of information", + "start": 2083.42, + "end": 2084.9, + "words": [ + { + "word": " dumping", + "start": 2083.42, + "end": 2083.76, + "probability": 0.998046875 + }, + { + "word": " tons", + "start": 2083.76, + "end": 2084.22, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 2084.22, + "end": 2084.48, + "probability": 0.99951171875 + }, + { + "word": " information", + "start": 2084.48, + "end": 2084.9, + "probability": 0.99658203125 + } + ] + }, + { + "id": 922, + "text": "uh and they're already some of it's already out there but apparently there's a whole lot more", + "start": 2085.6, + "end": 2089.4, + "words": [ + { + "word": " uh", + "start": 2085.6, + "end": 2086.1, + "probability": 0.0038967132568359375 + }, + { + "word": " and", + "start": 2086.1, + "end": 2086.32, + "probability": 0.25390625 + }, + { + "word": " they're", + "start": 2086.32, + "end": 2086.46, + "probability": 0.65234375 + }, + { + "word": " already", + "start": 2086.46, + "end": 2086.58, + "probability": 0.98779296875 + }, + { + "word": " some", + "start": 2086.58, + "end": 2086.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2086.86, + "end": 2087.04, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2087.04, + "end": 2087.2, + "probability": 0.99951171875 + }, + { + "word": " already", + "start": 2087.2, + "end": 2087.36, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 2087.36, + "end": 2087.58, + "probability": 1.0 + }, + { + "word": " there", + "start": 2087.58, + "end": 2087.8, + "probability": 1.0 + }, + { + "word": " but", + "start": 2087.8, + "end": 2088.18, + "probability": 0.99951171875 + }, + { + "word": " apparently", + "start": 2088.18, + "end": 2088.46, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2088.46, + "end": 2088.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 2088.8, + "end": 2088.8, + "probability": 1.0 + }, + { + "word": " whole", + "start": 2088.8, + "end": 2088.98, + "probability": 0.9970703125 + }, + { + "word": " lot", + "start": 2088.98, + "end": 2089.18, + "probability": 1.0 + }, + { + "word": " more", + "start": 2089.18, + "end": 2089.4, + "probability": 1.0 + } + ] + }, + { + "id": 923, + "text": "and uh i don't know you know what what clinton did to piss off julian assange but uh he says", + "start": 2090.04, + "end": 2099.24, + "words": [ + { + "word": " and", + "start": 2090.04, + "end": 2090.54, + "probability": 0.99951171875 + }, + { + "word": " uh", + "start": 2090.54, + "end": 2090.88, + "probability": 0.99267578125 + }, + { + "word": " i", + "start": 2090.88, + "end": 2092.08, + "probability": 0.857421875 + }, + { + "word": " don't", + "start": 2092.08, + "end": 2092.36, + "probability": 1.0 + }, + { + "word": " know", + "start": 2092.36, + "end": 2092.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 2092.5, + "end": 2092.88, + "probability": 0.79150390625 + }, + { + "word": " know", + "start": 2092.88, + "end": 2093.2, + "probability": 1.0 + }, + { + "word": " what", + "start": 2093.2, + "end": 2093.68, + "probability": 1.0 + }, + { + "word": " what", + "start": 2093.68, + "end": 2094.0, + "probability": 0.99951171875 + }, + { + "word": " clinton", + "start": 2094.0, + "end": 2094.5, + "probability": 0.99853515625 + }, + { + "word": " did", + "start": 2094.5, + "end": 2094.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2094.72, + "end": 2094.88, + "probability": 1.0 + }, + { + "word": " piss", + "start": 2094.88, + "end": 2095.08, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 2095.08, + "end": 2095.28, + "probability": 0.99951171875 + }, + { + "word": " julian", + "start": 2095.28, + "end": 2096.08, + "probability": 0.9970703125 + }, + { + "word": " assange", + "start": 2096.08, + "end": 2096.42, + "probability": 0.978515625 + }, + { + "word": " but", + "start": 2096.42, + "end": 2097.18, + "probability": 1.0 + }, + { + "word": " uh", + "start": 2097.18, + "end": 2097.56, + "probability": 0.99267578125 + }, + { + "word": " he", + "start": 2097.56, + "end": 2098.78, + "probability": 0.9990234375 + }, + { + "word": " says", + "start": 2098.78, + "end": 2099.24, + "probability": 1.0 + } + ] + }, + { + "id": 924, + "text": "there's enough there to indict her and he wants to put it out there in the world okay julian do", + "start": 2099.24, + "end": 2104.24, + "words": [ + { + "word": " there's", + "start": 2099.24, + "end": 2099.54, + "probability": 0.9990234375 + }, + { + "word": " enough", + "start": 2099.54, + "end": 2099.76, + "probability": 1.0 + }, + { + "word": " there", + "start": 2099.76, + "end": 2099.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 2099.94, + "end": 2100.1, + "probability": 1.0 + }, + { + "word": " indict", + "start": 2100.1, + "end": 2100.34, + "probability": 0.9990234375 + }, + { + "word": " her", + "start": 2100.34, + "end": 2100.6, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2100.6, + "end": 2100.72, + "probability": 1.0 + }, + { + "word": " he", + "start": 2100.72, + "end": 2100.78, + "probability": 0.99951171875 + }, + { + "word": " wants", + "start": 2100.78, + "end": 2100.94, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2100.94, + "end": 2101.1, + "probability": 1.0 + }, + { + "word": " put", + "start": 2101.1, + "end": 2101.3, + "probability": 1.0 + }, + { + "word": " it", + "start": 2101.3, + "end": 2101.42, + "probability": 0.99560546875 + }, + { + "word": " out", + "start": 2101.42, + "end": 2101.48, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 2101.48, + "end": 2101.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 2101.64, + "end": 2101.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2101.74, + "end": 2101.82, + "probability": 1.0 + }, + { + "word": " world", + "start": 2101.82, + "end": 2102.16, + "probability": 0.99951171875 + }, + { + "word": " okay", + "start": 2102.16, + "end": 2103.58, + "probability": 0.9990234375 + }, + { + "word": " julian", + "start": 2103.58, + "end": 2104.02, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2104.02, + "end": 2104.24, + "probability": 1.0 + } + ] + }, + { + "id": 925, + "text": "what you do you know you have to on some level admire the tenacity of wikileaks yeah in this in", + "start": 2104.24, + "end": 2113.24, + "words": [ + { + "word": " what", + "start": 2104.24, + "end": 2104.34, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2104.34, + "end": 2104.42, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2104.42, + "end": 2104.66, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2104.66, + "end": 2105.84, + "probability": 0.73486328125 + }, + { + "word": " know", + "start": 2105.84, + "end": 2106.0, + "probability": 0.94677734375 + }, + { + "word": " you", + "start": 2106.0, + "end": 2106.52, + "probability": 0.82666015625 + }, + { + "word": " have", + "start": 2106.52, + "end": 2106.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2106.96, + "end": 2107.12, + "probability": 0.99658203125 + }, + { + "word": " on", + "start": 2107.12, + "end": 2107.68, + "probability": 0.99169921875 + }, + { + "word": " some", + "start": 2107.68, + "end": 2108.36, + "probability": 1.0 + }, + { + "word": " level", + "start": 2108.36, + "end": 2108.78, + "probability": 1.0 + }, + { + "word": " admire", + "start": 2108.78, + "end": 2109.32, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2109.32, + "end": 2109.76, + "probability": 1.0 + }, + { + "word": " tenacity", + "start": 2109.76, + "end": 2110.22, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2110.22, + "end": 2110.8, + "probability": 1.0 + }, + { + "word": " wikileaks", + "start": 2110.8, + "end": 2111.64, + "probability": 0.849609375 + }, + { + "word": " yeah", + "start": 2111.64, + "end": 2112.42, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 2112.42, + "end": 2112.88, + "probability": 0.939453125 + }, + { + "word": " this", + "start": 2112.88, + "end": 2113.02, + "probability": 0.900390625 + }, + { + "word": " in", + "start": 2113.02, + "end": 2113.24, + "probability": 1.0 + } + ] + }, + { + "id": 926, + "text": "the face of like extreme odds against them", + "start": 2113.24, + "end": 2115.36, + "words": [ + { + "word": " the", + "start": 2113.24, + "end": 2113.38, + "probability": 0.99951171875 + }, + { + "word": " face", + "start": 2113.38, + "end": 2113.58, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2113.58, + "end": 2113.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 2113.78, + "end": 2113.96, + "probability": 0.9970703125 + }, + { + "word": " extreme", + "start": 2113.96, + "end": 2114.48, + "probability": 0.99462890625 + }, + { + "word": " odds", + "start": 2114.48, + "end": 2114.82, + "probability": 0.99169921875 + }, + { + "word": " against", + "start": 2114.82, + "end": 2115.1, + "probability": 0.998046875 + }, + { + "word": " them", + "start": 2115.1, + "end": 2115.36, + "probability": 0.99072265625 + } + ] + }, + { + "id": 927, + "text": "because they're targeting some of the most powerful people in the world", + "start": 2115.38, + "end": 2118.2, + "words": [ + { + "word": " because", + "start": 2115.38, + "end": 2115.62, + "probability": 0.935546875 + }, + { + "word": " they're", + "start": 2115.62, + "end": 2116.3, + "probability": 0.9990234375 + }, + { + "word": " targeting", + "start": 2116.3, + "end": 2116.64, + "probability": 1.0 + }, + { + "word": " some", + "start": 2116.64, + "end": 2116.86, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2116.86, + "end": 2116.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 2116.98, + "end": 2117.0, + "probability": 1.0 + }, + { + "word": " most", + "start": 2117.0, + "end": 2117.12, + "probability": 1.0 + }, + { + "word": " powerful", + "start": 2117.12, + "end": 2117.42, + "probability": 1.0 + }, + { + "word": " people", + "start": 2117.42, + "end": 2117.76, + "probability": 1.0 + }, + { + "word": " in", + "start": 2117.76, + "end": 2117.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2117.92, + "end": 2117.96, + "probability": 1.0 + }, + { + "word": " world", + "start": 2117.96, + "end": 2118.2, + "probability": 1.0 + } + ] + }, + { + "id": 928, + "text": "yeah and and when you get even when you even get edward snowden to start tweeting", + "start": 2118.2, + "end": 2122.92, + "words": [ + { + "word": " yeah", + "start": 2118.2, + "end": 2118.88, + "probability": 0.01163482666015625 + }, + { + "word": " and", + "start": 2118.88, + "end": 2119.16, + "probability": 0.97998046875 + }, + { + "word": " and", + "start": 2119.16, + "end": 2119.42, + "probability": 0.794921875 + }, + { + "word": " when", + "start": 2119.42, + "end": 2119.7, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2119.7, + "end": 2119.8, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 2119.8, + "end": 2119.94, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 2119.94, + "end": 2120.24, + "probability": 0.99658203125 + }, + { + "word": " when", + "start": 2120.24, + "end": 2120.66, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2120.66, + "end": 2120.76, + "probability": 1.0 + }, + { + "word": " even", + "start": 2120.76, + "end": 2120.92, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2120.92, + "end": 2121.08, + "probability": 1.0 + }, + { + "word": " edward", + "start": 2121.08, + "end": 2121.58, + "probability": 0.85986328125 + }, + { + "word": " snowden", + "start": 2121.58, + "end": 2122.0, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 2122.0, + "end": 2122.3, + "probability": 1.0 + }, + { + "word": " start", + "start": 2122.3, + "end": 2122.52, + "probability": 1.0 + }, + { + "word": " tweeting", + "start": 2122.52, + "end": 2122.92, + "probability": 1.0 + } + ] + }, + { + "id": 929, + "text": "oh this got interesting you know that's that yeah there's something going on there and", + "start": 2122.92, + "end": 2129.28, + "words": [ + { + "word": " oh", + "start": 2122.92, + "end": 2123.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 2123.48, + "end": 2123.7, + "probability": 1.0 + }, + { + "word": " got", + "start": 2123.7, + "end": 2123.86, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 2123.86, + "end": 2124.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 2124.2, + "end": 2125.0, + "probability": 0.9208984375 + }, + { + "word": " know", + "start": 2125.0, + "end": 2125.18, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2125.18, + "end": 2125.56, + "probability": 0.98828125 + }, + { + "word": " that", + "start": 2125.56, + "end": 2125.86, + "probability": 0.9990234375 + }, + { + "word": " yeah", + "start": 2125.86, + "end": 2127.44, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2127.44, + "end": 2127.76, + "probability": 1.0 + }, + { + "word": " something", + "start": 2127.76, + "end": 2127.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 2127.92, + "end": 2128.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 2128.14, + "end": 2128.36, + "probability": 1.0 + }, + { + "word": " there", + "start": 2128.36, + "end": 2128.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 2128.62, + "end": 2129.28, + "probability": 1.0 + } + ] + }, + { + "id": 930, + "text": "everyone's very tight-lipped about it there's not a whole lot being said but i'm sure just like with", + "start": 2130.02, + "end": 2135.86, + "words": [ + { + "word": " everyone's", + "start": 2130.02, + "end": 2130.46, + "probability": 1.0 + }, + { + "word": " very", + "start": 2130.46, + "end": 2130.64, + "probability": 1.0 + }, + { + "word": " tight", + "start": 2130.64, + "end": 2131.02, + "probability": 0.99951171875 + }, + { + "word": "-lipped", + "start": 2131.02, + "end": 2131.22, + "probability": 0.9970703125 + }, + { + "word": " about", + "start": 2131.22, + "end": 2131.48, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2131.48, + "end": 2131.68, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2131.68, + "end": 2132.14, + "probability": 1.0 + }, + { + "word": " not", + "start": 2132.14, + "end": 2132.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 2132.32, + "end": 2132.48, + "probability": 1.0 + }, + { + "word": " whole", + "start": 2132.48, + "end": 2132.6, + "probability": 0.99853515625 + }, + { + "word": " lot", + "start": 2132.6, + "end": 2132.84, + "probability": 1.0 + }, + { + "word": " being", + "start": 2132.84, + "end": 2133.12, + "probability": 1.0 + }, + { + "word": " said", + "start": 2133.12, + "end": 2133.9, + "probability": 1.0 + }, + { + "word": " but", + "start": 2133.9, + "end": 2134.36, + "probability": 1.0 + }, + { + "word": " i'm", + "start": 2134.36, + "end": 2134.7, + "probability": 0.99462890625 + }, + { + "word": " sure", + "start": 2134.7, + "end": 2135.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 2135.0, + "end": 2135.4, + "probability": 1.0 + }, + { + "word": " like", + "start": 2135.4, + "end": 2135.62, + "probability": 1.0 + }, + { + "word": " with", + "start": 2135.62, + "end": 2135.86, + "probability": 1.0 + } + ] + }, + { + "id": 931, + "text": "the the panama papers and stuff like that there's going to be there's going to be some stuff out", + "start": 2135.86, + "end": 2139.98, + "words": [ + { + "word": " the", + "start": 2135.86, + "end": 2136.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 2136.08, + "end": 2136.44, + "probability": 0.9990234375 + }, + { + "word": " panama", + "start": 2136.44, + "end": 2136.78, + "probability": 0.99560546875 + }, + { + "word": " papers", + "start": 2136.78, + "end": 2137.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 2137.16, + "end": 2137.36, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2137.36, + "end": 2137.5, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2137.5, + "end": 2137.68, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2137.68, + "end": 2137.8, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 2137.8, + "end": 2138.0, + "probability": 1.0 + }, + { + "word": " going", + "start": 2138.0, + "end": 2138.1, + "probability": 0.888671875 + }, + { + "word": " to", + "start": 2138.1, + "end": 2138.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 2138.22, + "end": 2138.36, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2138.36, + "end": 2139.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 2139.04, + "end": 2139.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 2139.12, + "end": 2139.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 2139.22, + "end": 2139.34, + "probability": 1.0 + }, + { + "word": " some", + "start": 2139.34, + "end": 2139.5, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2139.5, + "end": 2139.78, + "probability": 1.0 + }, + { + "word": " out", + "start": 2139.78, + "end": 2139.98, + "probability": 1.0 + } + ] + }, + { + "id": 932, + "text": "there yeah i was a little shocked at first to see that this wasn't like headline news and then i was", + "start": 2139.98, + "end": 2143.68, + "words": [ + { + "word": " there", + "start": 2139.98, + "end": 2140.2, + "probability": 1.0 + }, + { + "word": " yeah", + "start": 2140.2, + "end": 2140.7, + "probability": 1.0 + }, + { + "word": " i", + "start": 2140.7, + "end": 2140.8, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2140.8, + "end": 2140.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 2140.9, + "end": 2141.0, + "probability": 1.0 + }, + { + "word": " little", + "start": 2141.0, + "end": 2141.08, + "probability": 1.0 + }, + { + "word": " shocked", + "start": 2141.08, + "end": 2141.36, + "probability": 1.0 + }, + { + "word": " at", + "start": 2141.36, + "end": 2141.52, + "probability": 1.0 + }, + { + "word": " first", + "start": 2141.52, + "end": 2141.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 2141.68, + "end": 2141.84, + "probability": 1.0 + }, + { + "word": " see", + "start": 2141.84, + "end": 2142.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2142.0, + "end": 2142.1, + "probability": 1.0 + }, + { + "word": " this", + "start": 2142.1, + "end": 2142.24, + "probability": 1.0 + }, + { + "word": " wasn't", + "start": 2142.24, + "end": 2142.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 2142.48, + "end": 2142.62, + "probability": 1.0 + }, + { + "word": " headline", + "start": 2142.62, + "end": 2142.88, + "probability": 0.9990234375 + }, + { + "word": " news", + "start": 2142.88, + "end": 2143.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 2143.22, + "end": 2143.44, + "probability": 1.0 + }, + { + "word": " then", + "start": 2143.44, + "end": 2143.52, + "probability": 0.96142578125 + }, + { + "word": " i", + "start": 2143.52, + "end": 2143.6, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2143.6, + "end": 2143.68, + "probability": 1.0 + } + ] + }, + { + "id": 933, + "text": "like oh wait actually yeah of course it's not going to be like headline news and then i was like oh", + "start": 2143.68, + "end": 2145.36, + "words": [ + { + "word": " like", + "start": 2143.68, + "end": 2143.78, + "probability": 1.0 + }, + { + "word": " oh", + "start": 2143.78, + "end": 2143.92, + "probability": 0.99951171875 + }, + { + "word": " wait", + "start": 2143.92, + "end": 2144.04, + "probability": 0.98583984375 + }, + { + "word": " actually", + "start": 2144.04, + "end": 2144.38, + "probability": 0.99951171875 + }, + { + "word": " yeah", + "start": 2144.38, + "end": 2144.96, + "probability": 0.88916015625 + }, + { + "word": " of", + "start": 2144.96, + "end": 2145.06, + "probability": 0.99951171875 + }, + { + "word": " course", + "start": 2145.06, + "end": 2145.24, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2145.24, + "end": 2145.36, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2145.36, + "end": 2145.36, + "probability": 0.73828125 + }, + { + "word": " going", + "start": 2145.36, + "end": 2145.36, + "probability": 0.06475830078125 + }, + { + "word": " to", + "start": 2145.36, + "end": 2145.36, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2145.36, + "end": 2145.36, + "probability": 0.8671875 + }, + { + "word": " like", + "start": 2145.36, + "end": 2145.36, + "probability": 0.355712890625 + }, + { + "word": " headline", + "start": 2145.36, + "end": 2145.36, + "probability": 0.466796875 + }, + { + "word": " news", + "start": 2145.36, + "end": 2145.36, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 2145.36, + "end": 2145.36, + "probability": 0.16552734375 + }, + { + "word": " then", + "start": 2145.36, + "end": 2145.36, + "probability": 0.8271484375 + }, + { + "word": " i", + "start": 2145.36, + "end": 2145.36, + "probability": 0.98046875 + }, + { + "word": " was", + "start": 2145.36, + "end": 2145.36, + "probability": 0.99560546875 + }, + { + "word": " like", + "start": 2145.36, + "end": 2145.36, + "probability": 0.99560546875 + }, + { + "word": " oh", + "start": 2145.36, + "end": 2145.36, + "probability": 0.9384765625 + } + ] + }, + { + "id": 934, + "text": "wait actually yeah of course it's not going to be like headline news and then i was like oh", + "start": 2145.38, + "end": 2145.64, + "words": [ + { + "word": " wait", + "start": 2145.38, + "end": 2145.48, + "probability": 1.5497207641601562e-06 + }, + { + "word": " actually", + "start": 2145.48, + "end": 2145.48, + "probability": 9.751319885253906e-05 + }, + { + "word": " yeah", + "start": 2145.48, + "end": 2145.48, + "probability": 0.003047943115234375 + }, + { + "word": " of", + "start": 2145.48, + "end": 2145.48, + "probability": 0.26513671875 + }, + { + "word": " course", + "start": 2145.48, + "end": 2145.48, + "probability": 0.99169921875 + }, + { + "word": " it's", + "start": 2145.48, + "end": 2145.48, + "probability": 0.9052734375 + }, + { + "word": " not", + "start": 2145.48, + "end": 2145.48, + "probability": 0.9755859375 + }, + { + "word": " going", + "start": 2145.48, + "end": 2145.64, + "probability": 6.622076034545898e-05 + }, + { + "word": " to", + "start": 2145.64, + "end": 2145.64, + "probability": 0.6123046875 + }, + { + "word": " be", + "start": 2145.64, + "end": 2145.64, + "probability": 0.2235107421875 + }, + { + "word": " like", + "start": 2145.64, + "end": 2145.64, + "probability": 0.012664794921875 + }, + { + "word": " headline", + "start": 2145.64, + "end": 2145.64, + "probability": 2.86102294921875e-06 + }, + { + "word": " news", + "start": 2145.64, + "end": 2145.64, + "probability": 0.03900146484375 + }, + { + "word": " and", + "start": 2145.64, + "end": 2145.64, + "probability": 0.037628173828125 + }, + { + "word": " then", + "start": 2145.64, + "end": 2145.64, + "probability": 0.0833740234375 + }, + { + "word": " i", + "start": 2145.64, + "end": 2145.64, + "probability": 0.027099609375 + }, + { + "word": " was", + "start": 2145.64, + "end": 2145.64, + "probability": 0.023284912109375 + }, + { + "word": " like", + "start": 2145.64, + "end": 2145.64, + "probability": 0.302978515625 + }, + { + "word": " oh", + "start": 2145.64, + "end": 2145.64, + "probability": 0.0885009765625 + } + ] + }, + { + "id": 935, + "text": "it's not of course it's not all right let's let's let's chew through some culture let's talk to", + "start": 2145.64, + "end": 2149.38, + "words": [ + { + "word": " it's", + "start": 2145.64, + "end": 2145.64, + "probability": 0.5009765625 + }, + { + "word": " not", + "start": 2145.64, + "end": 2145.64, + "probability": 0.5986328125 + }, + { + "word": " of", + "start": 2145.64, + "end": 2145.64, + "probability": 0.1787109375 + }, + { + "word": " course", + "start": 2145.64, + "end": 2145.82, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 2145.82, + "end": 2145.98, + "probability": 0.970703125 + }, + { + "word": " not", + "start": 2145.98, + "end": 2146.12, + "probability": 0.99169921875 + }, + { + "word": " all", + "start": 2146.12, + "end": 2146.54, + "probability": 0.254150390625 + }, + { + "word": " right", + "start": 2146.54, + "end": 2146.66, + "probability": 0.98388671875 + }, + { + "word": " let's", + "start": 2146.66, + "end": 2146.88, + "probability": 0.9794921875 + }, + { + "word": " let's", + "start": 2146.88, + "end": 2147.18, + "probability": 0.970703125 + }, + { + "word": " let's", + "start": 2147.18, + "end": 2147.52, + "probability": 0.943359375 + }, + { + "word": " chew", + "start": 2147.52, + "end": 2147.82, + "probability": 0.2626953125 + }, + { + "word": " through", + "start": 2147.82, + "end": 2147.96, + "probability": 0.98876953125 + }, + { + "word": " some", + "start": 2147.96, + "end": 2148.1, + "probability": 0.99267578125 + }, + { + "word": " culture", + "start": 2148.1, + "end": 2148.36, + "probability": 0.90966796875 + }, + { + "word": " let's", + "start": 2148.36, + "end": 2149.2, + "probability": 0.94970703125 + }, + { + "word": " talk", + "start": 2149.2, + "end": 2149.3, + "probability": 0.73828125 + }, + { + "word": " to", + "start": 2149.3, + "end": 2149.38, + "probability": 0.98681640625 + } + ] + }, + { + "id": 936, + "text": "mark hello mark hold on hold on a second my windows populating with text anyway um it's done so when i", + "start": 2149.38, + "end": 2163.3, + "words": [ + { + "word": " mark", + "start": 2149.38, + "end": 2149.52, + "probability": 0.97900390625 + }, + { + "word": " hello", + "start": 2149.52, + "end": 2151.86, + "probability": 0.8291015625 + }, + { + "word": " mark", + "start": 2151.86, + "end": 2152.08, + "probability": 0.99169921875 + }, + { + "word": " hold", + "start": 2152.08, + "end": 2152.34, + "probability": 0.99609375 + }, + { + "word": " on", + "start": 2152.34, + "end": 2152.48, + "probability": 0.99755859375 + }, + { + "word": " hold", + "start": 2152.48, + "end": 2152.78, + "probability": 0.89404296875 + }, + { + "word": " on", + "start": 2152.78, + "end": 2153.72, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2153.72, + "end": 2153.86, + "probability": 0.9921875 + }, + { + "word": " second", + "start": 2153.86, + "end": 2154.02, + "probability": 0.98583984375 + }, + { + "word": " my", + "start": 2154.02, + "end": 2154.26, + "probability": 0.99365234375 + }, + { + "word": " windows", + "start": 2154.26, + "end": 2154.58, + "probability": 0.91943359375 + }, + { + "word": " populating", + "start": 2154.58, + "end": 2155.16, + "probability": 0.8818359375 + }, + { + "word": " with", + "start": 2155.16, + "end": 2155.34, + "probability": 0.99169921875 + }, + { + "word": " text", + "start": 2155.34, + "end": 2155.6, + "probability": 0.99169921875 + }, + { + "word": " anyway", + "start": 2155.6, + "end": 2158.72, + "probability": 0.9833984375 + }, + { + "word": " um", + "start": 2158.72, + "end": 2159.3, + "probability": 0.888671875 + }, + { + "word": " it's", + "start": 2159.3, + "end": 2160.66, + "probability": 0.9287109375 + }, + { + "word": " done", + "start": 2160.66, + "end": 2160.82, + "probability": 0.98486328125 + }, + { + "word": " so", + "start": 2160.82, + "end": 2162.06, + "probability": 0.99755859375 + }, + { + "word": " when", + "start": 2162.06, + "end": 2163.18, + "probability": 0.9970703125 + }, + { + "word": " i", + "start": 2163.18, + "end": 2163.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 937, + "text": "go to update 10 again another 10 update uh-huh i'm looking at my list to uninstall stuff do i", + "start": 2163.3, + "end": 2170.44, + "words": [ + { + "word": " go", + "start": 2163.3, + "end": 2163.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2163.48, + "end": 2163.6, + "probability": 0.99951171875 + }, + { + "word": " update", + "start": 2163.6, + "end": 2163.98, + "probability": 0.99755859375 + }, + { + "word": " 10", + "start": 2163.98, + "end": 2164.74, + "probability": 0.98388671875 + }, + { + "word": " again", + "start": 2164.74, + "end": 2165.08, + "probability": 0.99755859375 + }, + { + "word": " another", + "start": 2165.08, + "end": 2165.36, + "probability": 0.99853515625 + }, + { + "word": " 10", + "start": 2165.36, + "end": 2165.58, + "probability": 0.998046875 + }, + { + "word": " update", + "start": 2165.58, + "end": 2165.92, + "probability": 0.98974609375 + }, + { + "word": " uh", + "start": 2165.92, + "end": 2166.3, + "probability": 0.6064453125 + }, + { + "word": "-huh", + "start": 2166.3, + "end": 2166.4, + "probability": 0.9921875 + }, + { + "word": " i'm", + "start": 2166.4, + "end": 2167.1, + "probability": 0.9990234375 + }, + { + "word": " looking", + "start": 2167.1, + "end": 2167.24, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 2167.24, + "end": 2167.42, + "probability": 0.97412109375 + }, + { + "word": " my", + "start": 2167.42, + "end": 2167.64, + "probability": 0.99951171875 + }, + { + "word": " list", + "start": 2167.64, + "end": 2168.4, + "probability": 0.708984375 + }, + { + "word": " to", + "start": 2168.4, + "end": 2168.74, + "probability": 0.9990234375 + }, + { + "word": " uninstall", + "start": 2168.74, + "end": 2169.44, + "probability": 0.9970703125 + }, + { + "word": " stuff", + "start": 2169.44, + "end": 2169.72, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 2169.72, + "end": 2170.34, + "probability": 0.99853515625 + }, + { + "word": " i", + "start": 2170.34, + "end": 2170.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 938, + "text": "uninstall windows live essentials 2011 no essentials can stay", + "start": 2170.44, + "end": 2175.16, + "words": [ + { + "word": " uninstall", + "start": 2170.44, + "end": 2170.82, + "probability": 0.50927734375 + }, + { + "word": " windows", + "start": 2170.82, + "end": 2171.82, + "probability": 0.98779296875 + }, + { + "word": " live", + "start": 2171.82, + "end": 2172.26, + "probability": 0.998046875 + }, + { + "word": " essentials", + "start": 2172.26, + "end": 2172.74, + "probability": 0.998046875 + }, + { + "word": " 2011", + "start": 2172.74, + "end": 2173.48, + "probability": 0.9921875 + }, + { + "word": " no", + "start": 2173.48, + "end": 2174.4, + "probability": 0.8388671875 + }, + { + "word": " essentials", + "start": 2174.4, + "end": 2174.84, + "probability": 0.9755859375 + }, + { + "word": " can", + "start": 2174.84, + "end": 2175.0, + "probability": 0.218017578125 + }, + { + "word": " stay", + "start": 2175.0, + "end": 2175.16, + "probability": 0.86376953125 + } + ] + }, + { + "id": 939, + "text": "okay i thought i had defender but i don't see it in here", + "start": 2175.38, + "end": 2178.78, + "words": [ + { + "word": " okay", + "start": 2175.38, + "end": 2175.96, + "probability": 0.006748199462890625 + }, + { + "word": " i", + "start": 2175.96, + "end": 2176.24, + "probability": 0.35205078125 + }, + { + "word": " thought", + "start": 2176.24, + "end": 2176.98, + "probability": 0.9990234375 + }, + { + "word": " i", + "start": 2176.98, + "end": 2177.08, + "probability": 0.99853515625 + }, + { + "word": " had", + "start": 2177.08, + "end": 2177.18, + "probability": 0.99951171875 + }, + { + "word": " defender", + "start": 2177.18, + "end": 2177.48, + "probability": 0.99267578125 + }, + { + "word": " but", + "start": 2177.48, + "end": 2177.78, + "probability": 0.9990234375 + }, + { + "word": " i", + "start": 2177.78, + "end": 2177.92, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2177.92, + "end": 2178.08, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 2178.08, + "end": 2178.28, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2178.28, + "end": 2178.42, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2178.42, + "end": 2178.54, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 2178.54, + "end": 2178.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 940, + "text": "well great then it's not there i guess not would it be under microsoft defender or what it was called", + "start": 2179.32, + "end": 2185.24, + "words": [ + { + "word": " well", + "start": 2179.32, + "end": 2179.84, + "probability": 0.83154296875 + }, + { + "word": " great", + "start": 2179.84, + "end": 2180.14, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 2180.14, + "end": 2180.4, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 2180.4, + "end": 2180.6, + "probability": 1.0 + }, + { + "word": " not", + "start": 2180.6, + "end": 2180.68, + "probability": 1.0 + }, + { + "word": " there", + "start": 2180.68, + "end": 2180.94, + "probability": 0.99951171875 + }, + { + "word": " i", + "start": 2180.94, + "end": 2181.34, + "probability": 0.9970703125 + }, + { + "word": " guess", + "start": 2181.34, + "end": 2181.56, + "probability": 1.0 + }, + { + "word": " not", + "start": 2181.56, + "end": 2181.84, + "probability": 0.99365234375 + }, + { + "word": " would", + "start": 2181.84, + "end": 2182.22, + "probability": 0.94287109375 + }, + { + "word": " it", + "start": 2182.22, + "end": 2182.56, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2182.56, + "end": 2182.66, + "probability": 0.99951171875 + }, + { + "word": " under", + "start": 2182.66, + "end": 2182.88, + "probability": 1.0 + }, + { + "word": " microsoft", + "start": 2182.88, + "end": 2183.48, + "probability": 0.998046875 + }, + { + "word": " defender", + "start": 2183.48, + "end": 2184.2, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 2184.2, + "end": 2184.56, + "probability": 0.9755859375 + }, + { + "word": " what", + "start": 2184.56, + "end": 2184.68, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 2184.68, + "end": 2184.8, + "probability": 0.4345703125 + }, + { + "word": " was", + "start": 2184.8, + "end": 2184.98, + "probability": 0.2059326171875 + }, + { + "word": " called", + "start": 2184.98, + "end": 2185.24, + "probability": 0.9814453125 + } + ] + }, + { + "id": 941, + "text": "that's called microsoft security essentials if you're in seven i am in seven and uh it's not", + "start": 2185.24, + "end": 2192.08, + "words": [ + { + "word": " that's", + "start": 2185.24, + "end": 2185.66, + "probability": 0.5556640625 + }, + { + "word": " called", + "start": 2185.66, + "end": 2185.8, + "probability": 0.99853515625 + }, + { + "word": " microsoft", + "start": 2185.8, + "end": 2186.3, + "probability": 0.9990234375 + }, + { + "word": " security", + "start": 2186.3, + "end": 2186.66, + "probability": 0.99951171875 + }, + { + "word": " essentials", + "start": 2186.66, + "end": 2187.02, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2187.02, + "end": 2187.3, + "probability": 0.9970703125 + }, + { + "word": " you're", + "start": 2187.3, + "end": 2187.42, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 2187.42, + "end": 2187.48, + "probability": 0.99072265625 + }, + { + "word": " seven", + "start": 2187.48, + "end": 2187.76, + "probability": 0.98095703125 + }, + { + "word": " i", + "start": 2187.76, + "end": 2188.96, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 2188.96, + "end": 2189.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 2189.2, + "end": 2189.36, + "probability": 0.99951171875 + }, + { + "word": " seven", + "start": 2189.36, + "end": 2189.7, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2189.7, + "end": 2190.24, + "probability": 1.0 + }, + { + "word": " uh", + "start": 2190.24, + "end": 2190.48, + "probability": 0.97412109375 + }, + { + "word": " it's", + "start": 2190.48, + "end": 2191.9, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2191.9, + "end": 2192.08, + "probability": 1.0 + } + ] + }, + { + "id": 942, + "text": "there all right that for sure i had it so anyway i have um avira i'll take that out good and then", + "start": 2192.08, + "end": 2199.08, + "words": [ + { + "word": " there", + "start": 2192.08, + "end": 2192.38, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2192.38, + "end": 2192.64, + "probability": 0.97998046875 + }, + { + "word": " right", + "start": 2192.64, + "end": 2192.74, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 2192.74, + "end": 2192.86, + "probability": 0.340087890625 + }, + { + "word": " for", + "start": 2192.86, + "end": 2193.04, + "probability": 0.85205078125 + }, + { + "word": " sure", + "start": 2193.04, + "end": 2193.2, + "probability": 0.9990234375 + }, + { + "word": " i", + "start": 2193.2, + "end": 2193.32, + "probability": 0.99853515625 + }, + { + "word": " had", + "start": 2193.32, + "end": 2193.44, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 2193.44, + "end": 2193.58, + "probability": 0.9970703125 + }, + { + "word": " so", + "start": 2193.58, + "end": 2194.26, + "probability": 1.0 + }, + { + "word": " anyway", + "start": 2194.26, + "end": 2194.52, + "probability": 0.99951171875 + }, + { + "word": " i", + "start": 2194.52, + "end": 2195.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 2195.24, + "end": 2195.64, + "probability": 1.0 + }, + { + "word": " um", + "start": 2195.64, + "end": 2196.0, + "probability": 0.99560546875 + }, + { + "word": " avira", + "start": 2196.0, + "end": 2196.8, + "probability": 0.93212890625 + }, + { + "word": " i'll", + "start": 2196.8, + "end": 2197.14, + "probability": 1.0 + }, + { + "word": " take", + "start": 2197.14, + "end": 2197.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2197.3, + "end": 2197.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 2197.5, + "end": 2197.78, + "probability": 0.9970703125 + }, + { + "word": " good", + "start": 2197.78, + "end": 2198.62, + "probability": 0.99169921875 + }, + { + "word": " and", + "start": 2198.62, + "end": 2198.92, + "probability": 1.0 + }, + { + "word": " then", + "start": 2198.92, + "end": 2199.08, + "probability": 1.0 + } + ] + }, + { + "id": 943, + "text": "when i put in a new antivirus what would i be just reactivating avira again", + "start": 2199.08, + "end": 2205.28, + "words": [ + { + "word": " when", + "start": 2199.08, + "end": 2199.34, + "probability": 1.0 + }, + { + "word": " i", + "start": 2199.34, + "end": 2199.52, + "probability": 1.0 + }, + { + "word": " put", + "start": 2199.52, + "end": 2199.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 2199.9, + "end": 2200.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 2200.12, + "end": 2200.28, + "probability": 1.0 + }, + { + "word": " new", + "start": 2200.28, + "end": 2200.48, + "probability": 0.99951171875 + }, + { + "word": " antivirus", + "start": 2200.48, + "end": 2201.92, + "probability": 0.98828125 + }, + { + "word": " what", + "start": 2201.92, + "end": 2202.22, + "probability": 0.1558837890625 + }, + { + "word": " would", + "start": 2202.22, + "end": 2202.42, + "probability": 0.99365234375 + }, + { + "word": " i", + "start": 2202.42, + "end": 2202.54, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2202.54, + "end": 2202.72, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2202.72, + "end": 2203.58, + "probability": 0.9990234375 + }, + { + "word": " reactivating", + "start": 2203.58, + "end": 2204.46, + "probability": 0.99755859375 + }, + { + "word": " avira", + "start": 2204.46, + "end": 2204.9, + "probability": 0.98193359375 + }, + { + "word": " again", + "start": 2204.9, + "end": 2205.28, + "probability": 0.99560546875 + } + ] + }, + { + "id": 944, + "text": "Sure, if that's what you want to do.", + "start": 2205.38, + "end": 2207.04, + "words": [ + { + "word": " Sure,", + "start": 2205.38, + "end": 2205.78, + "probability": 0.984375 + }, + { + "word": " if", + "start": 2205.92, + "end": 2206.38, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2206.38, + "end": 2206.56, + "probability": 1.0 + }, + { + "word": " what", + "start": 2206.56, + "end": 2206.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 2206.64, + "end": 2206.74, + "probability": 1.0 + }, + { + "word": " want", + "start": 2206.74, + "end": 2206.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2206.86, + "end": 2206.94, + "probability": 1.0 + }, + { + "word": " do.", + "start": 2206.94, + "end": 2207.04, + "probability": 1.0 + } + ] + }, + { + "id": 945, + "text": "Well, what's the better one?", + "start": 2207.36, + "end": 2208.98, + "words": [ + { + "word": " Well,", + "start": 2207.36, + "end": 2207.74, + "probability": 0.98779296875 + }, + { + "word": " what's", + "start": 2207.88, + "end": 2208.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 2208.5, + "end": 2208.62, + "probability": 1.0 + }, + { + "word": " better", + "start": 2208.62, + "end": 2208.82, + "probability": 1.0 + }, + { + "word": " one?", + "start": 2208.82, + "end": 2208.98, + "probability": 1.0 + } + ] + }, + { + "id": 946, + "text": "What's your choice of the week?", + "start": 2209.06, + "end": 2210.56, + "words": [ + { + "word": " What's", + "start": 2209.06, + "end": 2209.26, + "probability": 1.0 + }, + { + "word": " your", + "start": 2209.26, + "end": 2209.34, + "probability": 1.0 + }, + { + "word": " choice", + "start": 2209.34, + "end": 2210.12, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 2210.12, + "end": 2210.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 2210.28, + "end": 2210.32, + "probability": 1.0 + }, + { + "word": " week?", + "start": 2210.32, + "end": 2210.56, + "probability": 1.0 + } + ] + }, + { + "id": 947, + "text": "The choice of the week?", + "start": 2210.84, + "end": 2211.8, + "words": [ + { + "word": " The", + "start": 2210.84, + "end": 2211.14, + "probability": 0.99853515625 + }, + { + "word": " choice", + "start": 2211.14, + "end": 2211.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2211.32, + "end": 2211.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 2211.5, + "end": 2211.58, + "probability": 1.0 + }, + { + "word": " week?", + "start": 2211.58, + "end": 2211.8, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "We're using Bitdefender right now at the shop.", + "start": 2212.14, + "end": 2214.18, + "words": [ + { + "word": " We're", + "start": 2212.14, + "end": 2212.54, + "probability": 0.9921875 + }, + { + "word": " using", + "start": 2212.54, + "end": 2212.86, + "probability": 0.9990234375 + }, + { + "word": " Bitdefender", + "start": 2212.86, + "end": 2213.42, + "probability": 0.92626953125 + }, + { + "word": " right", + "start": 2213.42, + "end": 2213.6, + "probability": 1.0 + }, + { + "word": " now", + "start": 2213.6, + "end": 2213.78, + "probability": 1.0 + }, + { + "word": " at", + "start": 2213.78, + "end": 2213.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2213.9, + "end": 2213.98, + "probability": 1.0 + }, + { + "word": " shop.", + "start": 2213.98, + "end": 2214.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 949, + "text": "Is that what they're recommending now?", + "start": 2214.4, + "end": 2215.34, + "words": [ + { + "word": " Is", + "start": 2214.4, + "end": 2214.64, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2214.64, + "end": 2214.7, + "probability": 1.0 + }, + { + "word": " what", + "start": 2214.7, + "end": 2214.82, + "probability": 0.9970703125 + }, + { + "word": " they're", + "start": 2214.82, + "end": 2214.9, + "probability": 1.0 + }, + { + "word": " recommending", + "start": 2214.9, + "end": 2215.14, + "probability": 1.0 + }, + { + "word": " now?", + "start": 2215.14, + "end": 2215.34, + "probability": 1.0 + } + ] + }, + { + "id": 950, + "text": "Yeah.", + "start": 2215.48, + "end": 2215.62, + "words": [ + { + "word": " Yeah.", + "start": 2215.48, + "end": 2215.62, + "probability": 0.9501953125 + } + ] + }, + { + "id": 951, + "text": "Bitdefender.", + "start": 2217.1, + "end": 2217.5, + "words": [ + { + "word": " Bitdefender.", + "start": 2217.1, + "end": 2217.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 952, + "text": "Bitdefender, yeah.", + "start": 2217.74, + "end": 2218.46, + "words": [ + { + "word": " Bitdefender,", + "start": 2217.74, + "end": 2218.14, + "probability": 0.9990234375 + }, + { + "word": " yeah.", + "start": 2218.26, + "end": 2218.46, + "probability": 1.0 + } + ] + }, + { + "id": 953, + "text": "Okay.", + "start": 2218.64, + "end": 2218.94, + "words": [ + { + "word": " Okay.", + "start": 2218.64, + "end": 2218.94, + "probability": 0.43798828125 + } + ] + }, + { + "id": 954, + "text": "Talk to Howard, 304-8300.", + "start": 2219.02, + "end": 2220.72, + "words": [ + { + "word": " Talk", + "start": 2219.02, + "end": 2219.42, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2219.42, + "end": 2219.5, + "probability": 1.0 + }, + { + "word": " Howard,", + "start": 2219.5, + "end": 2219.72, + "probability": 1.0 + }, + { + "word": " 304", + "start": 2219.82, + "end": 2220.32, + "probability": 0.9853515625 + }, + { + "word": "-8300.", + "start": 2220.32, + "end": 2220.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 955, + "text": "He'll tell you everything.", + "start": 2220.9, + "end": 2221.48, + "words": [ + { + "word": " He'll", + "start": 2220.9, + "end": 2221.06, + "probability": 1.0 + }, + { + "word": " tell", + "start": 2221.06, + "end": 2221.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 2221.18, + "end": 2221.3, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 2221.3, + "end": 2221.48, + "probability": 1.0 + } + ] + }, + { + "id": 956, + "text": "The boy has some strong feelings and opinions about antivirus.", + "start": 2222.22, + "end": 2226.24, + "words": [ + { + "word": " The", + "start": 2222.22, + "end": 2222.62, + "probability": 0.994140625 + }, + { + "word": " boy", + "start": 2222.62, + "end": 2222.86, + "probability": 1.0 + }, + { + "word": " has", + "start": 2222.86, + "end": 2223.14, + "probability": 1.0 + }, + { + "word": " some", + "start": 2223.14, + "end": 2223.4, + "probability": 1.0 + }, + { + "word": " strong", + "start": 2223.4, + "end": 2224.36, + "probability": 0.9990234375 + }, + { + "word": " feelings", + "start": 2224.36, + "end": 2224.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 2224.82, + "end": 2225.04, + "probability": 1.0 + }, + { + "word": " opinions", + "start": 2225.04, + "end": 2225.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 2225.28, + "end": 2225.62, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 2225.62, + "end": 2226.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 957, + "text": "In fact, everybody just call Howard right now.", + "start": 2226.34, + "end": 2228.24, + "words": [ + { + "word": " In", + "start": 2226.34, + "end": 2226.64, + "probability": 1.0 + }, + { + "word": " fact,", + "start": 2226.64, + "end": 2226.78, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 2226.82, + "end": 2227.14, + "probability": 1.0 + }, + { + "word": " just", + "start": 2227.14, + "end": 2227.4, + "probability": 0.99267578125 + }, + { + "word": " call", + "start": 2227.4, + "end": 2227.64, + "probability": 0.99951171875 + }, + { + "word": " Howard", + "start": 2227.64, + "end": 2227.98, + "probability": 1.0 + }, + { + "word": " right", + "start": 2227.98, + "end": 2228.12, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2228.12, + "end": 2228.24, + "probability": 1.0 + } + ] + }, + { + "id": 958, + "text": "Yeah, just call Howard.", + "start": 2228.24, + "end": 2228.94, + "words": [ + { + "word": " Yeah,", + "start": 2228.24, + "end": 2228.38, + "probability": 0.9541015625 + }, + { + "word": " just", + "start": 2228.38, + "end": 2228.42, + "probability": 0.8408203125 + }, + { + "word": " call", + "start": 2228.42, + "end": 2228.64, + "probability": 1.0 + }, + { + "word": " Howard.", + "start": 2228.64, + "end": 2228.94, + "probability": 1.0 + } + ] + }, + { + "id": 959, + "text": "Everyone.", + "start": 2229.6, + "end": 2230.0, + "words": [ + { + "word": " Everyone.", + "start": 2229.6, + "end": 2230.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 960, + "text": "Just even to say hi.", + "start": 2230.4, + "end": 2231.54, + "words": [ + { + "word": " Just", + "start": 2230.4, + "end": 2230.8, + "probability": 0.9921875 + }, + { + "word": " even", + "start": 2230.8, + "end": 2231.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2231.04, + "end": 2231.2, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 2231.2, + "end": 2231.36, + "probability": 1.0 + }, + { + "word": " hi.", + "start": 2231.36, + "end": 2231.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 961, + "text": "Okay.", + "start": 2233.44, + "end": 2233.84, + "words": [ + { + "word": " Okay.", + "start": 2233.44, + "end": 2233.84, + "probability": 0.6689453125 + } + ] + }, + { + "id": 962, + "text": "What's the shop number again?", + "start": 2234.12, + "end": 2235.14, + "words": [ + { + "word": " What's", + "start": 2234.12, + "end": 2234.52, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 2234.52, + "end": 2234.52, + "probability": 0.99658203125 + }, + { + "word": " shop", + "start": 2234.52, + "end": 2234.72, + "probability": 0.99951171875 + }, + { + "word": " number", + "start": 2234.72, + "end": 2234.94, + "probability": 0.99951171875 + }, + { + "word": " again?", + "start": 2234.94, + "end": 2235.14, + "probability": 1.0 + } + ] + }, + { + "id": 963, + "text": "304-8300.", + "start": 2236.04, + "end": 2236.84, + "words": [ + { + "word": " 304", + "start": 2236.04, + "end": 2236.44, + "probability": 0.748046875 + }, + { + "word": "-8300.", + "start": 2236.44, + "end": 2236.84, + "probability": 0.99658203125 + } + ] + }, + { + "id": 964, + "text": "If I get to the shop, though, and Howard burned it down because he got tired of all the phone calls,", + "start": 2237.12, + "end": 2241.52, + "words": [ + { + "word": " If", + "start": 2237.12, + "end": 2237.52, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 2237.52, + "end": 2237.66, + "probability": 1.0 + }, + { + "word": " get", + "start": 2237.66, + "end": 2237.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2237.84, + "end": 2238.02, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2238.02, + "end": 2238.06, + "probability": 0.86181640625 + }, + { + "word": " shop,", + "start": 2238.06, + "end": 2238.34, + "probability": 0.5947265625 + }, + { + "word": " though,", + "start": 2238.52, + "end": 2238.74, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 2238.78, + "end": 2238.94, + "probability": 0.99951171875 + }, + { + "word": " Howard", + "start": 2238.94, + "end": 2239.16, + "probability": 0.99951171875 + }, + { + "word": " burned", + "start": 2239.16, + "end": 2239.44, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2239.44, + "end": 2239.68, + "probability": 1.0 + }, + { + "word": " down", + "start": 2239.68, + "end": 2239.88, + "probability": 1.0 + }, + { + "word": " because", + "start": 2239.88, + "end": 2240.26, + "probability": 0.9931640625 + }, + { + "word": " he", + "start": 2240.26, + "end": 2240.46, + "probability": 1.0 + }, + { + "word": " got", + "start": 2240.46, + "end": 2240.58, + "probability": 1.0 + }, + { + "word": " tired", + "start": 2240.58, + "end": 2240.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 2240.78, + "end": 2240.92, + "probability": 1.0 + }, + { + "word": " all", + "start": 2240.92, + "end": 2241.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2241.0, + "end": 2241.1, + "probability": 1.0 + }, + { + "word": " phone", + "start": 2241.1, + "end": 2241.28, + "probability": 1.0 + }, + { + "word": " calls,", + "start": 2241.28, + "end": 2241.52, + "probability": 1.0 + } + ] + }, + { + "id": 965, + "text": "that'll be interesting.", + "start": 2241.66, + "end": 2242.42, + "words": [ + { + "word": " that'll", + "start": 2241.66, + "end": 2241.8, + "probability": 0.9443359375 + }, + { + "word": " be", + "start": 2241.8, + "end": 2241.96, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 2241.96, + "end": 2242.42, + "probability": 1.0 + } + ] + }, + { + "id": 966, + "text": "He's like, all the phones broke simultaneously.", + "start": 2243.32, + "end": 2245.0, + "words": [ + { + "word": " He's", + "start": 2243.32, + "end": 2243.72, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2243.72, + "end": 2243.78, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 2243.82, + "end": 2243.9, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 2243.9, + "end": 2244.0, + "probability": 1.0 + }, + { + "word": " phones", + "start": 2244.0, + "end": 2244.22, + "probability": 0.9990234375 + }, + { + "word": " broke", + "start": 2244.22, + "end": 2244.42, + "probability": 1.0 + }, + { + "word": " simultaneously.", + "start": 2244.42, + "end": 2245.0, + "probability": 1.0 + } + ] + }, + { + "id": 967, + "text": "I don't know what happened.", + "start": 2245.24, + "end": 2246.0, + "words": [ + { + "word": " I", + "start": 2245.24, + "end": 2245.46, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2245.46, + "end": 2245.54, + "probability": 1.0 + }, + { + "word": " know", + "start": 2245.54, + "end": 2245.62, + "probability": 1.0 + }, + { + "word": " what", + "start": 2245.62, + "end": 2245.72, + "probability": 1.0 + }, + { + "word": " happened.", + "start": 2245.72, + "end": 2246.0, + "probability": 1.0 + } + ] + }, + { + "id": 968, + "text": "Don't know.", + "start": 2246.48, + "end": 2246.94, + "words": [ + { + "word": " Don't", + "start": 2246.48, + "end": 2246.88, + "probability": 0.892578125 + }, + { + "word": " know.", + "start": 2246.88, + "end": 2246.94, + "probability": 1.0 + } + ] + }, + { + "id": 969, + "text": "Anyway, he can talk to you about antivirus and what's recommended there.", + "start": 2248.72, + "end": 2252.28, + "words": [ + { + "word": " Anyway,", + "start": 2248.72, + "end": 2249.12, + "probability": 0.9970703125 + }, + { + "word": " he", + "start": 2249.28, + "end": 2249.58, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2249.58, + "end": 2249.92, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2249.92, + "end": 2250.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2250.16, + "end": 2250.24, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2250.24, + "end": 2250.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 2250.3, + "end": 2250.56, + "probability": 0.99365234375 + }, + { + "word": " antivirus", + "start": 2250.56, + "end": 2251.08, + "probability": 0.99072265625 + }, + { + "word": " and", + "start": 2251.08, + "end": 2251.22, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 2251.22, + "end": 2251.64, + "probability": 0.9990234375 + }, + { + "word": " recommended", + "start": 2251.64, + "end": 2251.94, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2251.94, + "end": 2252.28, + "probability": 1.0 + } + ] + }, + { + "id": 970, + "text": "Okay.", + "start": 2252.96, + "end": 2253.36, + "words": [ + { + "word": " Okay.", + "start": 2252.96, + "end": 2253.36, + "probability": 0.9873046875 + } + ] + }, + { + "id": 971, + "text": "Okay, great.", + "start": 2254.0, + "end": 2255.86, + "words": [ + { + "word": " Okay,", + "start": 2254.0, + "end": 2254.4, + "probability": 0.55810546875 + }, + { + "word": " great.", + "start": 2255.68, + "end": 2255.86, + "probability": 1.0 + } + ] + }, + { + "id": 972, + "text": "I guess that was it.", + "start": 2256.02, + "end": 2257.28, + "words": [ + { + "word": " I", + "start": 2256.02, + "end": 2256.42, + "probability": 0.99755859375 + }, + { + "word": " guess", + "start": 2256.42, + "end": 2256.68, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2256.68, + "end": 2256.88, + "probability": 1.0 + }, + { + "word": " was", + "start": 2256.88, + "end": 2257.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2257.06, + "end": 2257.28, + "probability": 1.0 + } + ] + }, + { + "id": 973, + "text": "I'm getting about ready to pull the trigger today.", + "start": 2257.36, + "end": 2259.38, + "words": [ + { + "word": " I'm", + "start": 2257.36, + "end": 2257.54, + "probability": 0.9990234375 + }, + { + "word": " getting", + "start": 2257.54, + "end": 2257.76, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 2257.76, + "end": 2258.16, + "probability": 1.0 + }, + { + "word": " ready", + "start": 2258.16, + "end": 2258.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 2258.42, + "end": 2258.56, + "probability": 1.0 + }, + { + "word": " pull", + "start": 2258.56, + "end": 2258.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2258.72, + "end": 2258.84, + "probability": 1.0 + }, + { + "word": " trigger", + "start": 2258.84, + "end": 2259.08, + "probability": 1.0 + }, + { + "word": " today.", + "start": 2259.08, + "end": 2259.38, + "probability": 1.0 + } + ] + }, + { + "id": 974, + "text": "Yeah, that's what I hear everybody say.", + "start": 2260.08, + "end": 2261.58, + "words": [ + { + "word": " Yeah,", + "start": 2260.08, + "end": 2260.48, + "probability": 0.99755859375 + }, + { + "word": " that's", + "start": 2260.48, + "end": 2260.76, + "probability": 1.0 + }, + { + "word": " what", + "start": 2260.76, + "end": 2260.76, + "probability": 1.0 + }, + { + "word": " I", + "start": 2260.76, + "end": 2260.9, + "probability": 1.0 + }, + { + "word": " hear", + "start": 2260.9, + "end": 2261.02, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 2261.02, + "end": 2261.28, + "probability": 0.99951171875 + }, + { + "word": " say.", + "start": 2261.28, + "end": 2261.58, + "probability": 1.0 + } + ] + }, + { + "id": 975, + "text": "We'll see.", + "start": 2261.74, + "end": 2262.26, + "words": [ + { + "word": " We'll", + "start": 2261.74, + "end": 2262.1, + "probability": 0.99853515625 + }, + { + "word": " see.", + "start": 2262.1, + "end": 2262.26, + "probability": 0.998046875 + } + ] + }, + { + "id": 976, + "text": "As soon as I back up some stuff that I'm not sure it's done.", + "start": 2262.74, + "end": 2265.36, + "words": [ + { + "word": " As", + "start": 2262.74, + "end": 2263.14, + "probability": 0.94384765625 + }, + { + "word": " soon", + "start": 2263.14, + "end": 2263.24, + "probability": 0.99755859375 + }, + { + "word": " as", + "start": 2263.24, + "end": 2263.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 2263.36, + "end": 2263.48, + "probability": 1.0 + }, + { + "word": " back", + "start": 2263.48, + "end": 2263.74, + "probability": 0.99365234375 + }, + { + "word": " up", + "start": 2263.74, + "end": 2263.94, + "probability": 1.0 + }, + { + "word": " some", + "start": 2263.94, + "end": 2264.12, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2264.12, + "end": 2264.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 2264.44, + "end": 2264.66, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 2264.66, + "end": 2264.8, + "probability": 1.0 + }, + { + "word": " not", + "start": 2264.8, + "end": 2264.94, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2264.94, + "end": 2265.14, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2265.14, + "end": 2265.28, + "probability": 0.896484375 + }, + { + "word": " done.", + "start": 2265.28, + "end": 2265.36, + "probability": 0.1641845703125 + } + ] + }, + { + "id": 977, + "text": "Call me next week and you let me know.", + "start": 2265.38, + "end": 2266.88, + "words": [ + { + "word": " Call", + "start": 2265.38, + "end": 2265.68, + "probability": 0.94482421875 + }, + { + "word": " me", + "start": 2265.68, + "end": 2265.8, + "probability": 1.0 + }, + { + "word": " next", + "start": 2265.8, + "end": 2266.02, + "probability": 1.0 + }, + { + "word": " week", + "start": 2266.02, + "end": 2266.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 2266.26, + "end": 2266.38, + "probability": 0.724609375 + }, + { + "word": " you", + "start": 2266.38, + "end": 2266.44, + "probability": 0.99951171875 + }, + { + "word": " let", + "start": 2266.44, + "end": 2266.58, + "probability": 0.68896484375 + }, + { + "word": " me", + "start": 2266.58, + "end": 2266.72, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2266.72, + "end": 2266.88, + "probability": 1.0 + } + ] + }, + { + "id": 978, + "text": "Yeah.", + "start": 2267.16, + "end": 2267.56, + "words": [ + { + "word": " Yeah.", + "start": 2267.16, + "end": 2267.56, + "probability": 0.86181640625 + } + ] + }, + { + "id": 979, + "text": "Thanks, Mark.", + "start": 2268.38, + "end": 2268.94, + "words": [ + { + "word": " Thanks,", + "start": 2268.38, + "end": 2268.78, + "probability": 0.99853515625 + }, + { + "word": " Mark.", + "start": 2268.84, + "end": 2268.94, + "probability": 0.99462890625 + } + ] + }, + { + "id": 980, + "text": "All right, thanks.", + "start": 2269.16, + "end": 2269.78, + "words": [ + { + "word": " All", + "start": 2269.16, + "end": 2269.5, + "probability": 0.9873046875 + }, + { + "word": " right,", + "start": 2269.5, + "end": 2269.6, + "probability": 1.0 + }, + { + "word": " thanks.", + "start": 2269.6, + "end": 2269.78, + "probability": 0.99609375 + } + ] + }, + { + "id": 981, + "text": "All right, Shane, how are you?", + "start": 2269.92, + "end": 2271.12, + "words": [ + { + "word": " All", + "start": 2269.92, + "end": 2270.06, + "probability": 0.99267578125 + }, + { + "word": " right,", + "start": 2270.06, + "end": 2270.16, + "probability": 1.0 + }, + { + "word": " Shane,", + "start": 2270.22, + "end": 2270.46, + "probability": 0.720703125 + }, + { + "word": " how", + "start": 2270.62, + "end": 2270.76, + "probability": 1.0 + }, + { + "word": " are", + "start": 2270.76, + "end": 2270.94, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2270.94, + "end": 2271.12, + "probability": 1.0 + } + ] + }, + { + "id": 982, + "text": "How can I help you?", + "start": 2271.14, + "end": 2271.76, + "words": [ + { + "word": " How", + "start": 2271.14, + "end": 2271.26, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 2271.26, + "end": 2271.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 2271.4, + "end": 2271.5, + "probability": 1.0 + }, + { + "word": " help", + "start": 2271.5, + "end": 2271.66, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2271.66, + "end": 2271.76, + "probability": 1.0 + } + ] + }, + { + "id": 983, + "text": "I'm doing great, Mike.", + "start": 2272.42, + "end": 2273.44, + "words": [ + { + "word": " I'm", + "start": 2272.42, + "end": 2272.82, + "probability": 0.9931640625 + }, + { + "word": " doing", + "start": 2272.82, + "end": 2272.96, + "probability": 1.0 + }, + { + "word": " great,", + "start": 2272.96, + "end": 2273.26, + "probability": 1.0 + }, + { + "word": " Mike.", + "start": 2273.28, + "end": 2273.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 984, + "text": "Great show.", + "start": 2273.5, + "end": 2273.92, + "words": [ + { + "word": " Great", + "start": 2273.5, + "end": 2273.64, + "probability": 0.99853515625 + }, + { + "word": " show.", + "start": 2273.64, + "end": 2273.92, + "probability": 1.0 + } + ] + }, + { + "id": 985, + "text": "Okay, so I'm going to go the full tinfoil hat conspiracy theory nut on you.", + "start": 2274.74, + "end": 2278.88, + "words": [ + { + "word": " Okay,", + "start": 2274.74, + "end": 2275.14, + "probability": 0.97607421875 + }, + { + "word": " so", + "start": 2275.22, + "end": 2275.42, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2275.42, + "end": 2275.76, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 2275.76, + "end": 2275.84, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 2275.84, + "end": 2275.98, + "probability": 1.0 + }, + { + "word": " go", + "start": 2275.98, + "end": 2276.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 2276.1, + "end": 2276.22, + "probability": 0.99755859375 + }, + { + "word": " full", + "start": 2276.22, + "end": 2276.4, + "probability": 0.99951171875 + }, + { + "word": " tinfoil", + "start": 2276.4, + "end": 2276.92, + "probability": 0.99755859375 + }, + { + "word": " hat", + "start": 2276.92, + "end": 2277.16, + "probability": 1.0 + }, + { + "word": " conspiracy", + "start": 2277.16, + "end": 2277.6, + "probability": 0.38818359375 + }, + { + "word": " theory", + "start": 2277.6, + "end": 2278.24, + "probability": 1.0 + }, + { + "word": " nut", + "start": 2278.24, + "end": 2278.56, + "probability": 0.974609375 + }, + { + "word": " on", + "start": 2278.56, + "end": 2278.74, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2278.74, + "end": 2278.88, + "probability": 0.99755859375 + } + ] + }, + { + "id": 986, + "text": "So I'm looking at the possibility of trying to get less trackable and less everything basically on the Internet.", + "start": 2279.58, + "end": 2287.7, + "words": [ + { + "word": " So", + "start": 2279.58, + "end": 2279.98, + "probability": 0.96826171875 + }, + { + "word": " I'm", + "start": 2279.98, + "end": 2280.16, + "probability": 0.9814453125 + }, + { + "word": " looking", + "start": 2280.16, + "end": 2280.42, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2280.42, + "end": 2281.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 2281.34, + "end": 2281.58, + "probability": 1.0 + }, + { + "word": " possibility", + "start": 2281.58, + "end": 2281.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 2281.94, + "end": 2282.24, + "probability": 1.0 + }, + { + "word": " trying", + "start": 2282.24, + "end": 2282.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 2282.46, + "end": 2282.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 2282.7, + "end": 2282.86, + "probability": 1.0 + }, + { + "word": " less", + "start": 2282.86, + "end": 2283.86, + "probability": 0.99951171875 + }, + { + "word": " trackable", + "start": 2283.86, + "end": 2285.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 2285.36, + "end": 2285.88, + "probability": 0.9111328125 + }, + { + "word": " less", + "start": 2285.88, + "end": 2286.1, + "probability": 0.97998046875 + }, + { + "word": " everything", + "start": 2286.1, + "end": 2286.8, + "probability": 1.0 + }, + { + "word": " basically", + "start": 2286.8, + "end": 2287.18, + "probability": 0.86572265625 + }, + { + "word": " on", + "start": 2287.18, + "end": 2287.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2287.42, + "end": 2287.5, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 2287.5, + "end": 2287.7, + "probability": 0.849609375 + } + ] + }, + { + "id": 987, + "text": "I am a supporter of this view.", + "start": 2287.9, + "end": 2290.88, + "words": [ + { + "word": " I", + "start": 2287.9, + "end": 2288.3, + "probability": 0.98681640625 + }, + { + "word": " am", + "start": 2288.3, + "end": 2288.4, + "probability": 0.80322265625 + }, + { + "word": " a", + "start": 2288.4, + "end": 2288.56, + "probability": 0.95654296875 + }, + { + "word": " supporter", + "start": 2288.56, + "end": 2290.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 2290.0, + "end": 2290.44, + "probability": 1.0 + }, + { + "word": " this", + "start": 2290.44, + "end": 2290.64, + "probability": 1.0 + }, + { + "word": " view.", + "start": 2290.64, + "end": 2290.88, + "probability": 1.0 + } + ] + }, + { + "id": 988, + "text": "Okay.", + "start": 2291.6, + "end": 2292.0, + "words": [ + { + "word": " Okay.", + "start": 2291.6, + "end": 2292.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 989, + "text": "So I've been reading all this stuff about...", + "start": 2292.04, + "end": 2294.2, + "words": [ + { + "word": " So", + "start": 2292.04, + "end": 2292.44, + "probability": 0.94384765625 + }, + { + "word": " I've", + "start": 2292.44, + "end": 2292.74, + "probability": 1.0 + }, + { + "word": " been", + "start": 2292.74, + "end": 2292.94, + "probability": 1.0 + }, + { + "word": " reading", + "start": 2292.94, + "end": 2293.24, + "probability": 1.0 + }, + { + "word": " all", + "start": 2293.24, + "end": 2293.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 2293.4, + "end": 2293.52, + "probability": 0.445556640625 + }, + { + "word": " stuff", + "start": 2293.52, + "end": 2293.68, + "probability": 1.0 + }, + { + "word": " about...", + "start": 2293.68, + "end": 2294.2, + "probability": 0.5576171875 + } + ] + }, + { + "id": 990, + "text": "I'm possibly instituting, you know, Internet...", + "start": 2294.2, + "end": 2297.44, + "words": [ + { + "word": " I'm", + "start": 2294.2, + "end": 2294.84, + "probability": 0.1527099609375 + }, + { + "word": " possibly", + "start": 2294.84, + "end": 2295.62, + "probability": 0.198486328125 + }, + { + "word": " instituting,", + "start": 2295.62, + "end": 2296.42, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 2296.44, + "end": 2296.74, + "probability": 0.98779296875 + }, + { + "word": " know,", + "start": 2296.74, + "end": 2296.86, + "probability": 0.99951171875 + }, + { + "word": " Internet...", + "start": 2296.86, + "end": 2297.44, + "probability": 0.311767578125 + } + ] + }, + { + "id": 991, + "text": "What is it?", + "start": 2297.44, + "end": 2297.98, + "words": [ + { + "word": " What", + "start": 2297.44, + "end": 2297.82, + "probability": 0.8662109375 + }, + { + "word": " is", + "start": 2297.82, + "end": 2297.94, + "probability": 0.98193359375 + }, + { + "word": " it?", + "start": 2297.94, + "end": 2297.98, + "probability": 1.0 + } + ] + }, + { + "id": 992, + "text": "Internet user IDs?", + "start": 2298.04, + "end": 2298.82, + "words": [ + { + "word": " Internet", + "start": 2298.04, + "end": 2298.22, + "probability": 0.998046875 + }, + { + "word": " user", + "start": 2298.22, + "end": 2298.46, + "probability": 0.97265625 + }, + { + "word": " IDs?", + "start": 2298.46, + "end": 2298.82, + "probability": 0.990234375 + } + ] + }, + { + "id": 993, + "text": "You know, Europe's real big on it right now.", + "start": 2299.26, + "end": 2300.92, + "words": [ + { + "word": " You", + "start": 2299.26, + "end": 2299.6, + "probability": 0.99072265625 + }, + { + "word": " know,", + "start": 2299.6, + "end": 2299.68, + "probability": 1.0 + }, + { + "word": " Europe's", + "start": 2299.72, + "end": 2300.08, + "probability": 0.978515625 + }, + { + "word": " real", + "start": 2300.08, + "end": 2300.18, + "probability": 0.99072265625 + }, + { + "word": " big", + "start": 2300.18, + "end": 2300.38, + "probability": 1.0 + }, + { + "word": " on", + "start": 2300.38, + "end": 2300.5, + "probability": 1.0 + }, + { + "word": " it", + "start": 2300.5, + "end": 2300.58, + "probability": 0.99853515625 + }, + { + "word": " right", + "start": 2300.58, + "end": 2300.68, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 2300.68, + "end": 2300.92, + "probability": 1.0 + } + ] + }, + { + "id": 994, + "text": "And I say we're in America to do it so they can track people.", + "start": 2301.02, + "end": 2303.22, + "words": [ + { + "word": " And", + "start": 2301.02, + "end": 2301.14, + "probability": 0.98486328125 + }, + { + "word": " I", + "start": 2301.14, + "end": 2301.18, + "probability": 0.57568359375 + }, + { + "word": " say", + "start": 2301.18, + "end": 2301.28, + "probability": 0.9462890625 + }, + { + "word": " we're", + "start": 2301.28, + "end": 2301.52, + "probability": 0.7744140625 + }, + { + "word": " in", + "start": 2301.52, + "end": 2301.62, + "probability": 0.98095703125 + }, + { + "word": " America", + "start": 2301.62, + "end": 2302.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2302.04, + "end": 2302.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 2302.26, + "end": 2302.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 2302.38, + "end": 2302.46, + "probability": 1.0 + }, + { + "word": " so", + "start": 2302.46, + "end": 2302.56, + "probability": 0.99560546875 + }, + { + "word": " they", + "start": 2302.56, + "end": 2302.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 2302.66, + "end": 2302.74, + "probability": 1.0 + }, + { + "word": " track", + "start": 2302.74, + "end": 2302.96, + "probability": 1.0 + }, + { + "word": " people.", + "start": 2302.96, + "end": 2303.22, + "probability": 1.0 + } + ] + }, + { + "id": 995, + "text": "Oh, yeah.", + "start": 2303.46, + "end": 2303.74, + "words": [ + { + "word": " Oh,", + "start": 2303.46, + "end": 2303.62, + "probability": 0.9970703125 + }, + { + "word": " yeah.", + "start": 2303.62, + "end": 2303.74, + "probability": 0.99853515625 + } + ] + }, + { + "id": 996, + "text": "Believe me, that's an upcoming episode.", + "start": 2303.78, + "end": 2305.02, + "words": [ + { + "word": " Believe", + "start": 2303.78, + "end": 2303.96, + "probability": 0.998046875 + }, + { + "word": " me,", + "start": 2303.96, + "end": 2304.16, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2304.16, + "end": 2304.3, + "probability": 1.0 + }, + { + "word": " an", + "start": 2304.3, + "end": 2304.42, + "probability": 1.0 + }, + { + "word": " upcoming", + "start": 2304.42, + "end": 2304.7, + "probability": 0.99951171875 + }, + { + "word": " episode.", + "start": 2304.7, + "end": 2305.02, + "probability": 1.0 + } + ] + }, + { + "id": 997, + "text": "Oh, I will be listening intently.", + "start": 2305.96, + "end": 2308.04, + "words": [ + { + "word": " Oh,", + "start": 2305.96, + "end": 2306.3, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2306.36, + "end": 2306.56, + "probability": 1.0 + }, + { + "word": " will", + "start": 2306.56, + "end": 2306.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 2306.72, + "end": 2306.88, + "probability": 0.97705078125 + }, + { + "word": " listening", + "start": 2306.88, + "end": 2307.54, + "probability": 1.0 + }, + { + "word": " intently.", + "start": 2307.54, + "end": 2308.04, + "probability": 0.943359375 + } + ] + }, + { + "id": 998, + "text": "I've looked at IPVanish.", + "start": 2309.08, + "end": 2310.32, + "words": [ + { + "word": " I've", + "start": 2309.08, + "end": 2309.42, + "probability": 0.99609375 + }, + { + "word": " looked", + "start": 2309.42, + "end": 2309.56, + "probability": 1.0 + }, + { + "word": " at", + "start": 2309.56, + "end": 2309.68, + "probability": 1.0 + }, + { + "word": " IPVanish.", + "start": 2309.68, + "end": 2310.32, + "probability": 0.89208984375 + } + ] + }, + { + "id": 999, + "text": "I've looked at a bunch of different VPNs and what countries they're based out of.", + "start": 2310.4, + "end": 2313.42, + "words": [ + { + "word": " I've", + "start": 2310.4, + "end": 2310.56, + "probability": 1.0 + }, + { + "word": " looked", + "start": 2310.56, + "end": 2310.66, + "probability": 1.0 + }, + { + "word": " at", + "start": 2310.66, + "end": 2310.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 2310.78, + "end": 2310.82, + "probability": 0.99951171875 + }, + { + "word": " bunch", + "start": 2310.82, + "end": 2310.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 2310.94, + "end": 2311.04, + "probability": 1.0 + }, + { + "word": " different", + "start": 2311.04, + "end": 2311.2, + "probability": 0.99951171875 + }, + { + "word": " VPNs", + "start": 2311.2, + "end": 2311.74, + "probability": 0.9931640625 + }, + { + "word": " and", + "start": 2311.74, + "end": 2311.94, + "probability": 0.412841796875 + }, + { + "word": " what", + "start": 2311.94, + "end": 2312.26, + "probability": 0.9990234375 + }, + { + "word": " countries", + "start": 2312.26, + "end": 2312.66, + "probability": 1.0 + }, + { + "word": " they're", + "start": 2312.66, + "end": 2312.86, + "probability": 1.0 + }, + { + "word": " based", + "start": 2312.86, + "end": 2313.06, + "probability": 1.0 + }, + { + "word": " out", + "start": 2313.06, + "end": 2313.26, + "probability": 1.0 + }, + { + "word": " of.", + "start": 2313.26, + "end": 2313.42, + "probability": 1.0 + } + ] + }, + { + "id": 1000, + "text": "I tried setting one up and I ran into the...", + "start": 2314.58, + "end": 2318.88, + "words": [ + { + "word": " I", + "start": 2314.58, + "end": 2314.92, + "probability": 0.623046875 + }, + { + "word": " tried", + "start": 2314.92, + "end": 2315.26, + "probability": 1.0 + }, + { + "word": " setting", + "start": 2315.26, + "end": 2315.54, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 2315.54, + "end": 2315.8, + "probability": 1.0 + }, + { + "word": " up", + "start": 2315.8, + "end": 2316.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 2316.02, + "end": 2317.18, + "probability": 0.2347412109375 + }, + { + "word": " I", + "start": 2317.18, + "end": 2317.68, + "probability": 1.0 + }, + { + "word": " ran", + "start": 2317.68, + "end": 2317.94, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2317.94, + "end": 2318.18, + "probability": 0.99951171875 + }, + { + "word": " the...", + "start": 2318.18, + "end": 2318.88, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1001, + "text": "And I'm sure you remember the terminology better than me.", + "start": 2318.88, + "end": 2320.7, + "words": [ + { + "word": " And", + "start": 2318.88, + "end": 2319.02, + "probability": 0.9814453125 + }, + { + "word": " I'm", + "start": 2319.02, + "end": 2319.14, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2319.14, + "end": 2319.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 2319.28, + "end": 2319.44, + "probability": 1.0 + }, + { + "word": " remember", + "start": 2319.44, + "end": 2319.6, + "probability": 0.78173828125 + }, + { + "word": " the", + "start": 2319.6, + "end": 2319.72, + "probability": 0.5224609375 + }, + { + "word": " terminology", + "start": 2319.72, + "end": 2320.1, + "probability": 0.9951171875 + }, + { + "word": " better", + "start": 2320.1, + "end": 2320.46, + "probability": 1.0 + }, + { + "word": " than", + "start": 2320.46, + "end": 2320.56, + "probability": 1.0 + }, + { + "word": " me.", + "start": 2320.56, + "end": 2320.7, + "probability": 1.0 + } + ] + }, + { + "id": 1002, + "text": "But, like, I use one of them, you know, CenturyLink, the non-Internet.", + "start": 2320.72, + "end": 2324.06, + "words": [ + { + "word": " But,", + "start": 2320.72, + "end": 2320.86, + "probability": 0.99267578125 + }, + { + "word": " like,", + "start": 2320.9, + "end": 2321.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 2321.12, + "end": 2321.62, + "probability": 1.0 + }, + { + "word": " use", + "start": 2321.62, + "end": 2321.88, + "probability": 0.484375 + }, + { + "word": " one", + "start": 2321.88, + "end": 2322.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 2322.1, + "end": 2322.16, + "probability": 1.0 + }, + { + "word": " them,", + "start": 2322.16, + "end": 2322.32, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2322.36, + "end": 2322.68, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2322.68, + "end": 2322.76, + "probability": 1.0 + }, + { + "word": " CenturyLink,", + "start": 2322.76, + "end": 2323.3, + "probability": 0.962890625 + }, + { + "word": " the", + "start": 2323.34, + "end": 2323.46, + "probability": 0.99853515625 + }, + { + "word": " non", + "start": 2323.46, + "end": 2323.68, + "probability": 0.99951171875 + }, + { + "word": "-Internet.", + "start": 2323.68, + "end": 2324.06, + "probability": 0.89208984375 + } + ] + }, + { + "id": 1003, + "text": "Like you said.", + "start": 2324.2, + "end": 2324.74, + "words": [ + { + "word": " Like", + "start": 2324.2, + "end": 2324.4, + "probability": 0.0213165283203125 + }, + { + "word": " you", + "start": 2324.4, + "end": 2324.54, + "probability": 0.80029296875 + }, + { + "word": " said.", + "start": 2324.54, + "end": 2324.74, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1004, + "text": "Right.", + "start": 2324.84, + "end": 2325.12, + "words": [ + { + "word": " Right.", + "start": 2324.84, + "end": 2325.12, + "probability": 0.6474609375 + } + ] + }, + { + "id": 1005, + "text": "And for some reason, it was putting the servers in Phoenix in between.", + "start": 2325.26, + "end": 2329.72, + "words": [ + { + "word": " And", + "start": 2325.26, + "end": 2325.52, + "probability": 0.978515625 + }, + { + "word": " for", + "start": 2325.52, + "end": 2326.24, + "probability": 0.96240234375 + }, + { + "word": " some", + "start": 2326.24, + "end": 2326.48, + "probability": 0.99951171875 + }, + { + "word": " reason,", + "start": 2326.48, + "end": 2326.9, + "probability": 1.0 + }, + { + "word": " it", + "start": 2326.94, + "end": 2327.26, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 2327.26, + "end": 2327.44, + "probability": 0.99951171875 + }, + { + "word": " putting", + "start": 2327.44, + "end": 2327.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2327.8, + "end": 2327.96, + "probability": 0.99951171875 + }, + { + "word": " servers", + "start": 2327.96, + "end": 2328.26, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2328.26, + "end": 2328.42, + "probability": 0.97509765625 + }, + { + "word": " Phoenix", + "start": 2328.42, + "end": 2328.8, + "probability": 0.98095703125 + }, + { + "word": " in", + "start": 2328.8, + "end": 2329.34, + "probability": 0.9873046875 + }, + { + "word": " between.", + "start": 2329.34, + "end": 2329.72, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1006, + "text": "Even though it said I was logged on, even though it said I was...", + "start": 2330.38, + "end": 2332.7, + "words": [ + { + "word": " Even", + "start": 2330.38, + "end": 2330.74, + "probability": 0.99755859375 + }, + { + "word": " though", + "start": 2330.74, + "end": 2330.88, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2330.88, + "end": 2330.96, + "probability": 0.9990234375 + }, + { + "word": " said", + "start": 2330.96, + "end": 2331.08, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2331.08, + "end": 2331.22, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 2331.22, + "end": 2331.34, + "probability": 0.99951171875 + }, + { + "word": " logged", + "start": 2331.34, + "end": 2331.5, + "probability": 0.99853515625 + }, + { + "word": " on,", + "start": 2331.5, + "end": 2331.68, + "probability": 0.99853515625 + }, + { + "word": " even", + "start": 2331.74, + "end": 2331.86, + "probability": 0.9990234375 + }, + { + "word": " though", + "start": 2331.86, + "end": 2331.98, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 2331.98, + "end": 2332.06, + "probability": 0.99951171875 + }, + { + "word": " said", + "start": 2332.06, + "end": 2332.2, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2332.2, + "end": 2332.36, + "probability": 0.69580078125 + }, + { + "word": " was...", + "start": 2332.36, + "end": 2332.7, + "probability": 0.50830078125 + } + ] + }, + { + "id": 1007, + "text": "That I was on IPVanish and that everything's working great.", + "start": 2333.62, + "end": 2336.14, + "words": [ + { + "word": " That", + "start": 2333.62, + "end": 2333.98, + "probability": 0.59228515625 + }, + { + "word": " I", + "start": 2333.98, + "end": 2334.14, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2334.14, + "end": 2334.28, + "probability": 1.0 + }, + { + "word": " on", + "start": 2334.28, + "end": 2334.38, + "probability": 0.99560546875 + }, + { + "word": " IPVanish", + "start": 2334.38, + "end": 2335.0, + "probability": 0.826171875 + }, + { + "word": " and", + "start": 2335.0, + "end": 2335.22, + "probability": 0.97412109375 + }, + { + "word": " that", + "start": 2335.22, + "end": 2335.34, + "probability": 0.99755859375 + }, + { + "word": " everything's", + "start": 2335.34, + "end": 2335.66, + "probability": 0.9677734375 + }, + { + "word": " working", + "start": 2335.66, + "end": 2335.82, + "probability": 1.0 + }, + { + "word": " great.", + "start": 2335.82, + "end": 2336.14, + "probability": 1.0 + } + ] + }, + { + "id": 1008, + "text": "When I ran their testing tools, it said, oh, no, you're not anonymous because they've inserted their servers.", + "start": 2336.26, + "end": 2340.8, + "words": [ + { + "word": " When", + "start": 2336.26, + "end": 2336.52, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2336.52, + "end": 2336.64, + "probability": 1.0 + }, + { + "word": " ran", + "start": 2336.64, + "end": 2336.78, + "probability": 1.0 + }, + { + "word": " their", + "start": 2336.78, + "end": 2336.92, + "probability": 1.0 + }, + { + "word": " testing", + "start": 2336.92, + "end": 2337.3, + "probability": 1.0 + }, + { + "word": " tools,", + "start": 2337.3, + "end": 2337.64, + "probability": 0.83935546875 + }, + { + "word": " it", + "start": 2337.86, + "end": 2338.16, + "probability": 0.99609375 + }, + { + "word": " said,", + "start": 2338.16, + "end": 2338.3, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 2338.38, + "end": 2338.46, + "probability": 0.86376953125 + }, + { + "word": " no,", + "start": 2338.56, + "end": 2338.72, + "probability": 0.98828125 + }, + { + "word": " you're", + "start": 2338.8, + "end": 2339.18, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2339.18, + "end": 2339.26, + "probability": 1.0 + }, + { + "word": " anonymous", + "start": 2339.26, + "end": 2339.56, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 2339.56, + "end": 2339.82, + "probability": 0.98291015625 + }, + { + "word": " they've", + "start": 2339.82, + "end": 2340.06, + "probability": 1.0 + }, + { + "word": " inserted", + "start": 2340.06, + "end": 2340.32, + "probability": 1.0 + }, + { + "word": " their", + "start": 2340.32, + "end": 2340.5, + "probability": 1.0 + }, + { + "word": " servers.", + "start": 2340.5, + "end": 2340.8, + "probability": 1.0 + } + ] + }, + { + "id": 1009, + "text": "Right.", + "start": 2341.44, + "end": 2341.8, + "words": [ + { + "word": " Right.", + "start": 2341.44, + "end": 2341.8, + "probability": 0.99609375 + } + ] + }, + { + "id": 1010, + "text": "In the loop.", + "start": 2342.0, + "end": 2342.78, + "words": [ + { + "word": " In", + "start": 2342.0, + "end": 2342.36, + "probability": 0.90869140625 + }, + { + "word": " the", + "start": 2342.36, + "end": 2342.56, + "probability": 1.0 + }, + { + "word": " loop.", + "start": 2342.56, + "end": 2342.78, + "probability": 1.0 + } + ] + }, + { + "id": 1011, + "text": "So I'm like, okay, so for us non-computer efficient Americans that want to be anonymous and be able to do stuff and not have the government track us, what's a good program to set up?", + "start": 2343.06, + "end": 2352.02, + "words": [ + { + "word": " So", + "start": 2343.06, + "end": 2343.42, + "probability": 0.99609375 + }, + { + "word": " I'm", + "start": 2343.42, + "end": 2343.8, + "probability": 0.88720703125 + }, + { + "word": " like,", + "start": 2343.8, + "end": 2343.96, + "probability": 0.998046875 + }, + { + "word": " okay,", + "start": 2344.06, + "end": 2344.24, + "probability": 0.93408203125 + }, + { + "word": " so", + "start": 2344.3, + "end": 2344.44, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2344.44, + "end": 2344.62, + "probability": 1.0 + }, + { + "word": " us", + "start": 2344.62, + "end": 2344.82, + "probability": 1.0 + }, + { + "word": " non", + "start": 2344.82, + "end": 2345.5, + "probability": 0.99755859375 + }, + { + "word": "-computer", + "start": 2345.5, + "end": 2346.02, + "probability": 0.99951171875 + }, + { + "word": " efficient", + "start": 2346.02, + "end": 2346.26, + "probability": 0.79931640625 + }, + { + "word": " Americans", + "start": 2346.26, + "end": 2346.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2346.7, + "end": 2346.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 2346.96, + "end": 2347.06, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 2347.06, + "end": 2347.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 2347.18, + "end": 2347.3, + "probability": 1.0 + }, + { + "word": " anonymous", + "start": 2347.3, + "end": 2348.18, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2348.18, + "end": 2348.4, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2348.4, + "end": 2348.5, + "probability": 1.0 + }, + { + "word": " able", + "start": 2348.5, + "end": 2348.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 2348.56, + "end": 2348.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 2348.64, + "end": 2348.8, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2348.8, + "end": 2348.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 2348.96, + "end": 2349.2, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2349.2, + "end": 2349.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 2349.26, + "end": 2349.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 2349.4, + "end": 2349.48, + "probability": 1.0 + }, + { + "word": " government", + "start": 2349.48, + "end": 2349.64, + "probability": 1.0 + }, + { + "word": " track", + "start": 2349.64, + "end": 2349.86, + "probability": 1.0 + }, + { + "word": " us,", + "start": 2349.86, + "end": 2350.16, + "probability": 1.0 + }, + { + "word": " what's", + "start": 2350.3, + "end": 2350.88, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 2350.88, + "end": 2351.02, + "probability": 1.0 + }, + { + "word": " good", + "start": 2351.02, + "end": 2351.26, + "probability": 1.0 + }, + { + "word": " program", + "start": 2351.26, + "end": 2351.62, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2351.62, + "end": 2351.74, + "probability": 1.0 + }, + { + "word": " set", + "start": 2351.74, + "end": 2351.9, + "probability": 0.99951171875 + }, + { + "word": " up?", + "start": 2351.9, + "end": 2352.02, + "probability": 1.0 + } + ] + }, + { + "id": 1012, + "text": "Well, that's not about a program.", + "start": 2353.44, + "end": 2355.0, + "words": [ + { + "word": " Well,", + "start": 2353.44, + "end": 2353.96, + "probability": 0.8984375 + }, + { + "word": " that's", + "start": 2354.14, + "end": 2354.38, + "probability": 0.91650390625 + }, + { + "word": " not", + "start": 2354.38, + "end": 2354.48, + "probability": 1.0 + }, + { + "word": " about", + "start": 2354.48, + "end": 2354.68, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2354.68, + "end": 2354.78, + "probability": 0.998046875 + }, + { + "word": " program.", + "start": 2354.78, + "end": 2355.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1013, + "text": "This is something that's completely outside of your control.", + "start": 2355.18, + "end": 2357.44, + "words": [ + { + "word": " This", + "start": 2355.18, + "end": 2355.7, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 2355.7, + "end": 2355.84, + "probability": 1.0 + }, + { + "word": " something", + "start": 2355.84, + "end": 2356.06, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2356.06, + "end": 2356.2, + "probability": 0.9990234375 + }, + { + "word": " completely", + "start": 2356.2, + "end": 2356.46, + "probability": 1.0 + }, + { + "word": " outside", + "start": 2356.46, + "end": 2356.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 2356.78, + "end": 2357.02, + "probability": 1.0 + }, + { + "word": " your", + "start": 2357.02, + "end": 2357.1, + "probability": 1.0 + }, + { + "word": " control.", + "start": 2357.1, + "end": 2357.44, + "probability": 1.0 + } + ] + }, + { + "id": 1014, + "text": "So when you're using the CenturyLink, at least CenturyLink locally, you are not actually getting out to the quote-unquote Internet until it hits Phoenix.", + "start": 2357.78, + "end": 2367.34, + "words": [ + { + "word": " So", + "start": 2357.78, + "end": 2358.3, + "probability": 0.71435546875 + }, + { + "word": " when", + "start": 2358.3, + "end": 2358.9, + "probability": 0.857421875 + }, + { + "word": " you're", + "start": 2358.9, + "end": 2359.14, + "probability": 1.0 + }, + { + "word": " using", + "start": 2359.14, + "end": 2359.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 2359.44, + "end": 2359.66, + "probability": 0.99072265625 + }, + { + "word": " CenturyLink,", + "start": 2359.66, + "end": 2360.24, + "probability": 0.748046875 + }, + { + "word": " at", + "start": 2360.28, + "end": 2360.42, + "probability": 0.99853515625 + }, + { + "word": " least", + "start": 2360.42, + "end": 2360.44, + "probability": 0.99951171875 + }, + { + "word": " CenturyLink", + "start": 2360.44, + "end": 2360.86, + "probability": 0.9970703125 + }, + { + "word": " locally,", + "start": 2360.86, + "end": 2361.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2361.92, + "end": 2362.4, + "probability": 0.97412109375 + }, + { + "word": " are", + "start": 2362.4, + "end": 2363.34, + "probability": 1.0 + }, + { + "word": " not", + "start": 2363.34, + "end": 2363.5, + "probability": 1.0 + }, + { + "word": " actually", + "start": 2363.5, + "end": 2363.78, + "probability": 1.0 + }, + { + "word": " getting", + "start": 2363.78, + "end": 2364.0, + "probability": 1.0 + }, + { + "word": " out", + "start": 2364.0, + "end": 2364.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 2364.26, + "end": 2364.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 2364.44, + "end": 2364.64, + "probability": 1.0 + }, + { + "word": " quote", + "start": 2364.64, + "end": 2364.96, + "probability": 0.8994140625 + }, + { + "word": "-unquote", + "start": 2364.96, + "end": 2365.46, + "probability": 0.96240234375 + }, + { + "word": " Internet", + "start": 2365.46, + "end": 2365.84, + "probability": 0.61865234375 + }, + { + "word": " until", + "start": 2365.84, + "end": 2366.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 2366.42, + "end": 2366.86, + "probability": 1.0 + }, + { + "word": " hits", + "start": 2366.86, + "end": 2367.08, + "probability": 1.0 + }, + { + "word": " Phoenix.", + "start": 2367.08, + "end": 2367.34, + "probability": 0.99609375 + } + ] + }, + { + "id": 1015, + "text": "Right.", + "start": 2367.84, + "end": 2368.36, + "words": [ + { + "word": " Right.", + "start": 2367.84, + "end": 2368.36, + "probability": 0.96337890625 + } + ] + }, + { + "id": 1016, + "text": "So you can't do anything to circumvent that on that particular connection.", + "start": 2368.4, + "end": 2373.08, + "words": [ + { + "word": " So", + "start": 2368.4, + "end": 2368.9, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2368.9, + "end": 2369.62, + "probability": 1.0 + }, + { + "word": " can't", + "start": 2369.62, + "end": 2370.02, + "probability": 1.0 + }, + { + "word": " do", + "start": 2370.02, + "end": 2370.24, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2370.24, + "end": 2370.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2370.58, + "end": 2370.94, + "probability": 1.0 + }, + { + "word": " circumvent", + "start": 2370.94, + "end": 2371.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2371.48, + "end": 2371.7, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 2371.7, + "end": 2371.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 2371.96, + "end": 2372.22, + "probability": 1.0 + }, + { + "word": " particular", + "start": 2372.22, + "end": 2372.7, + "probability": 1.0 + }, + { + "word": " connection.", + "start": 2372.7, + "end": 2373.08, + "probability": 1.0 + } + ] + }, + { + "id": 1017, + "text": "Well, I guess what happened was they had me run the test tools.", + "start": 2374.78, + "end": 2378.56, + "words": [ + { + "word": " Well,", + "start": 2374.78, + "end": 2375.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 2375.34, + "end": 2375.44, + "probability": 1.0 + }, + { + "word": " guess", + "start": 2375.44, + "end": 2375.84, + "probability": 1.0 + }, + { + "word": " what", + "start": 2375.84, + "end": 2376.4, + "probability": 1.0 + }, + { + "word": " happened", + "start": 2376.4, + "end": 2376.94, + "probability": 1.0 + }, + { + "word": " was", + "start": 2376.94, + "end": 2377.08, + "probability": 1.0 + }, + { + "word": " they", + "start": 2377.08, + "end": 2377.32, + "probability": 0.99853515625 + }, + { + "word": " had", + "start": 2377.32, + "end": 2377.64, + "probability": 1.0 + }, + { + "word": " me", + "start": 2377.64, + "end": 2377.74, + "probability": 0.9873046875 + }, + { + "word": " run", + "start": 2377.74, + "end": 2377.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 2377.86, + "end": 2377.98, + "probability": 1.0 + }, + { + "word": " test", + "start": 2377.98, + "end": 2378.2, + "probability": 0.99951171875 + }, + { + "word": " tools.", + "start": 2378.2, + "end": 2378.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1018, + "text": "Mm-hmm.", + "start": 2378.74, + "end": 2379.14, + "words": [ + { + "word": " Mm", + "start": 2378.74, + "end": 2378.96, + "probability": 0.288818359375 + }, + { + "word": "-hmm.", + "start": 2378.96, + "end": 2379.14, + "probability": 1.0 + } + ] + }, + { + "id": 1019, + "text": "And basically, if it came back and showed...", + "start": 2379.18, + "end": 2382.0, + "words": [ + { + "word": " And", + "start": 2379.18, + "end": 2379.54, + "probability": 0.9931640625 + }, + { + "word": " basically,", + "start": 2379.54, + "end": 2380.12, + "probability": 0.94921875 + }, + { + "word": " if", + "start": 2380.24, + "end": 2380.82, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2380.82, + "end": 2380.94, + "probability": 1.0 + }, + { + "word": " came", + "start": 2380.94, + "end": 2381.14, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 2381.14, + "end": 2381.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 2381.42, + "end": 2381.6, + "probability": 0.99755859375 + }, + { + "word": " showed...", + "start": 2381.6, + "end": 2382.0, + "probability": 0.6796875 + } + ] + }, + { + "id": 1020, + "text": "Well, they're doing something called packet inspection.", + "start": 2384.12, + "end": 2392.48, + "words": [ + { + "word": " Well,", + "start": 2384.12, + "end": 2384.52, + "probability": 0.005825042724609375 + }, + { + "word": " they're", + "start": 2390.34, + "end": 2390.48, + "probability": 0.98974609375 + }, + { + "word": " doing", + "start": 2390.48, + "end": 2390.54, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 2390.54, + "end": 2391.44, + "probability": 0.99853515625 + }, + { + "word": " called", + "start": 2391.44, + "end": 2391.72, + "probability": 0.9990234375 + }, + { + "word": " packet", + "start": 2391.72, + "end": 2392.14, + "probability": 0.98583984375 + }, + { + "word": " inspection.", + "start": 2392.14, + "end": 2392.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1021, + "text": "Okay.", + "start": 2393.46, + "end": 2393.86, + "words": [ + { + "word": " Okay.", + "start": 2393.46, + "end": 2393.86, + "probability": 0.72705078125 + } + ] + }, + { + "id": 1022, + "text": "And that packet inspection is what's tagging it with the geolocation.", + "start": 2394.04, + "end": 2397.16, + "words": [ + { + "word": " And", + "start": 2394.04, + "end": 2394.34, + "probability": 0.9833984375 + }, + { + "word": " that", + "start": 2394.34, + "end": 2394.6, + "probability": 0.99072265625 + }, + { + "word": " packet", + "start": 2394.6, + "end": 2394.9, + "probability": 0.99951171875 + }, + { + "word": " inspection", + "start": 2394.9, + "end": 2395.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 2395.12, + "end": 2395.52, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 2395.52, + "end": 2395.78, + "probability": 0.99951171875 + }, + { + "word": " tagging", + "start": 2395.78, + "end": 2396.16, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2396.16, + "end": 2396.3, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2396.3, + "end": 2396.52, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2396.52, + "end": 2396.66, + "probability": 0.99951171875 + }, + { + "word": " geolocation.", + "start": 2396.66, + "end": 2397.16, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1023, + "text": "So...", + "start": 2398.24, + "end": 2398.64, + "words": [ + { + "word": " So...", + "start": 2398.24, + "end": 2398.64, + "probability": 0.226806640625 + } + ] + }, + { + "id": 1024, + "text": "And that's a CenturyLink thing.", + "start": 2399.14, + "end": 2400.38, + "words": [ + { + "word": " And", + "start": 2399.14, + "end": 2399.54, + "probability": 0.96826171875 + }, + { + "word": " that's", + "start": 2399.54, + "end": 2399.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 2399.82, + "end": 2399.82, + "probability": 0.953125 + }, + { + "word": " CenturyLink", + "start": 2399.82, + "end": 2400.18, + "probability": 0.73193359375 + }, + { + "word": " thing.", + "start": 2400.18, + "end": 2400.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1025, + "text": "You can complain all you want to CenturyLink and they're going to be like, yeah, that's just sort of the way it is.", + "start": 2400.5, + "end": 2404.68, + "words": [ + { + "word": " You", + "start": 2400.5, + "end": 2400.76, + "probability": 0.96484375 + }, + { + "word": " can", + "start": 2400.76, + "end": 2400.94, + "probability": 0.9677734375 + }, + { + "word": " complain", + "start": 2400.94, + "end": 2401.3, + "probability": 0.99755859375 + }, + { + "word": " all", + "start": 2401.3, + "end": 2401.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 2401.5, + "end": 2401.62, + "probability": 1.0 + }, + { + "word": " want", + "start": 2401.62, + "end": 2401.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2401.84, + "end": 2402.28, + "probability": 0.9990234375 + }, + { + "word": " CenturyLink", + "start": 2402.28, + "end": 2402.78, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2402.78, + "end": 2402.94, + "probability": 0.449951171875 + }, + { + "word": " they're", + "start": 2402.94, + "end": 2403.14, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2403.14, + "end": 2403.22, + "probability": 0.9521484375 + }, + { + "word": " to", + "start": 2403.22, + "end": 2403.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 2403.28, + "end": 2403.38, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2403.38, + "end": 2403.52, + "probability": 0.99951171875 + }, + { + "word": " yeah,", + "start": 2403.58, + "end": 2403.72, + "probability": 0.97265625 + }, + { + "word": " that's", + "start": 2403.72, + "end": 2403.92, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2403.92, + "end": 2404.02, + "probability": 0.9990234375 + }, + { + "word": " sort", + "start": 2404.02, + "end": 2404.18, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2404.18, + "end": 2404.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2404.24, + "end": 2404.32, + "probability": 0.99853515625 + }, + { + "word": " way", + "start": 2404.32, + "end": 2404.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 2404.42, + "end": 2404.52, + "probability": 0.99951171875 + }, + { + "word": " is.", + "start": 2404.52, + "end": 2404.68, + "probability": 1.0 + } + ] + }, + { + "id": 1026, + "text": "Deal with it.", + "start": 2404.74, + "end": 2405.2, + "words": [ + { + "word": " Deal", + "start": 2404.74, + "end": 2404.9, + "probability": 0.9921875 + }, + { + "word": " with", + "start": 2404.9, + "end": 2405.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2405.06, + "end": 2405.2, + "probability": 1.0 + } + ] + }, + { + "id": 1027, + "text": "So part of the problem is CenturyLink.", + "start": 2406.08, + "end": 2408.0, + "words": [ + { + "word": " So", + "start": 2406.08, + "end": 2406.48, + "probability": 0.9873046875 + }, + { + "word": " part", + "start": 2406.48, + "end": 2406.88, + "probability": 0.70166015625 + }, + { + "word": " of", + "start": 2406.88, + "end": 2407.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 2407.04, + "end": 2407.1, + "probability": 0.99951171875 + }, + { + "word": " problem", + "start": 2407.1, + "end": 2407.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2407.32, + "end": 2407.54, + "probability": 0.99951171875 + }, + { + "word": " CenturyLink.", + "start": 2407.54, + "end": 2408.0, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1028, + "text": "You could switch to a different provider and that goes away.", + "start": 2408.12, + "end": 2410.64, + "words": [ + { + "word": " You", + "start": 2408.12, + "end": 2408.5, + "probability": 0.93115234375 + }, + { + "word": " could", + "start": 2408.5, + "end": 2408.7, + "probability": 0.97509765625 + }, + { + "word": " switch", + "start": 2408.7, + "end": 2408.88, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 2408.88, + "end": 2409.12, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2409.12, + "end": 2409.22, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 2409.22, + "end": 2409.36, + "probability": 0.99951171875 + }, + { + "word": " provider", + "start": 2409.36, + "end": 2409.68, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2409.68, + "end": 2410.06, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 2410.06, + "end": 2410.22, + "probability": 0.9990234375 + }, + { + "word": " goes", + "start": 2410.22, + "end": 2410.36, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 2410.36, + "end": 2410.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1029, + "text": "I know that on...", + "start": 2410.72, + "end": 2411.68, + "words": [ + { + "word": " I", + "start": 2410.72, + "end": 2410.86, + "probability": 0.99755859375 + }, + { + "word": " know", + "start": 2410.86, + "end": 2411.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2411.06, + "end": 2411.28, + "probability": 0.99853515625 + }, + { + "word": " on...", + "start": 2411.28, + "end": 2411.68, + "probability": 0.83984375 + } + ] + }, + { + "id": 1030, + "text": "On Cox, at least locally, you can do fully end-to-end encrypted communications and you won't get any of that geotagging in the services there.", + "start": 2412.02, + "end": 2421.18, + "words": [ + { + "word": " On", + "start": 2412.02, + "end": 2412.22, + "probability": 0.038482666015625 + }, + { + "word": " Cox,", + "start": 2412.22, + "end": 2412.62, + "probability": 0.9072265625 + }, + { + "word": " at", + "start": 2412.76, + "end": 2412.88, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 2412.88, + "end": 2413.04, + "probability": 1.0 + }, + { + "word": " locally,", + "start": 2413.04, + "end": 2413.4, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2413.64, + "end": 2414.22, + "probability": 1.0 + }, + { + "word": " can", + "start": 2414.22, + "end": 2414.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 2414.42, + "end": 2414.62, + "probability": 1.0 + }, + { + "word": " fully", + "start": 2414.62, + "end": 2415.6, + "probability": 0.99951171875 + }, + { + "word": " end", + "start": 2415.6, + "end": 2416.0, + "probability": 0.99951171875 + }, + { + "word": "-to", + "start": 2416.0, + "end": 2416.14, + "probability": 0.9931640625 + }, + { + "word": "-end", + "start": 2416.14, + "end": 2416.24, + "probability": 1.0 + }, + { + "word": " encrypted", + "start": 2416.24, + "end": 2416.52, + "probability": 1.0 + }, + { + "word": " communications", + "start": 2416.52, + "end": 2417.82, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2417.82, + "end": 2418.62, + "probability": 0.4521484375 + }, + { + "word": " you", + "start": 2418.62, + "end": 2418.92, + "probability": 1.0 + }, + { + "word": " won't", + "start": 2418.92, + "end": 2419.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 2419.18, + "end": 2419.3, + "probability": 1.0 + }, + { + "word": " any", + "start": 2419.3, + "end": 2419.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 2419.48, + "end": 2419.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 2419.6, + "end": 2419.76, + "probability": 1.0 + }, + { + "word": " geotagging", + "start": 2419.76, + "end": 2420.36, + "probability": 0.9892578125 + }, + { + "word": " in", + "start": 2420.36, + "end": 2420.44, + "probability": 0.96728515625 + }, + { + "word": " the", + "start": 2420.44, + "end": 2420.52, + "probability": 1.0 + }, + { + "word": " services", + "start": 2420.52, + "end": 2420.88, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 2420.88, + "end": 2421.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1031, + "text": "Okay.", + "start": 2422.08, + "end": 2422.52, + "words": [ + { + "word": " Okay.", + "start": 2422.08, + "end": 2422.52, + "probability": 0.939453125 + } + ] + }, + { + "id": 1032, + "text": "So that's a CenturyLink issue.", + "start": 2423.4, + "end": 2424.84, + "words": [ + { + "word": " So", + "start": 2423.4, + "end": 2423.84, + "probability": 0.93505859375 + }, + { + "word": " that's", + "start": 2423.84, + "end": 2424.28, + "probability": 0.89501953125 + }, + { + "word": " a", + "start": 2424.28, + "end": 2424.28, + "probability": 0.9951171875 + }, + { + "word": " CenturyLink", + "start": 2424.28, + "end": 2424.64, + "probability": 0.4970703125 + }, + { + "word": " issue.", + "start": 2424.64, + "end": 2424.84, + "probability": 1.0 + } + ] + }, + { + "id": 1033, + "text": "Gotcha.", + "start": 2425.48, + "end": 2425.92, + "words": [ + { + "word": " Gotcha.", + "start": 2425.48, + "end": 2425.92, + "probability": 0.982421875 + } + ] + }, + { + "id": 1034, + "text": "Unfortunately.", + "start": 2426.84, + "end": 2427.28, + "words": [ + { + "word": " Unfortunately.", + "start": 2426.84, + "end": 2427.28, + "probability": 0.998046875 + } + ] + }, + { + "id": 1035, + "text": "Comcast also, same thing.", + "start": 2428.32, + "end": 2429.52, + "words": [ + { + "word": " Comcast", + "start": 2428.32, + "end": 2428.76, + "probability": 0.9990234375 + }, + { + "word": " also,", + "start": 2428.76, + "end": 2429.02, + "probability": 0.9326171875 + }, + { + "word": " same", + "start": 2429.02, + "end": 2429.36, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 2429.36, + "end": 2429.52, + "probability": 1.0 + } + ] + }, + { + "id": 1036, + "text": "You can use Comcast for that as well.", + "start": 2429.6, + "end": 2432.2, + "words": [ + { + "word": " You", + "start": 2429.6, + "end": 2429.72, + "probability": 1.0 + }, + { + "word": " can", + "start": 2429.72, + "end": 2429.84, + "probability": 1.0 + }, + { + "word": " use", + "start": 2429.84, + "end": 2430.86, + "probability": 0.99072265625 + }, + { + "word": " Comcast", + "start": 2430.86, + "end": 2431.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 2431.64, + "end": 2431.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 2431.8, + "end": 2431.92, + "probability": 1.0 + }, + { + "word": " as", + "start": 2431.92, + "end": 2432.04, + "probability": 0.9990234375 + }, + { + "word": " well.", + "start": 2432.04, + "end": 2432.2, + "probability": 1.0 + } + ] + }, + { + "id": 1037, + "text": "Otherwise, you're going to have to get something like a Tor router.", + "start": 2432.46, + "end": 2434.38, + "words": [ + { + "word": " Otherwise,", + "start": 2432.46, + "end": 2432.9, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 2433.02, + "end": 2433.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 2433.2, + "end": 2433.22, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 2433.22, + "end": 2433.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 2433.28, + "end": 2433.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 2433.38, + "end": 2433.38, + "probability": 1.0 + }, + { + "word": " get", + "start": 2433.38, + "end": 2433.48, + "probability": 1.0 + }, + { + "word": " something", + "start": 2433.48, + "end": 2433.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 2433.64, + "end": 2433.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2433.86, + "end": 2433.96, + "probability": 1.0 + }, + { + "word": " Tor", + "start": 2433.96, + "end": 2434.12, + "probability": 0.9541015625 + }, + { + "word": " router.", + "start": 2434.12, + "end": 2434.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1038, + "text": "All right.", + "start": 2434.74, + "end": 2435.3, + "words": [ + { + "word": " All", + "start": 2434.74, + "end": 2435.18, + "probability": 0.2291259765625 + }, + { + "word": " right.", + "start": 2435.18, + "end": 2435.3, + "probability": 1.0 + } + ] + }, + { + "id": 1039, + "text": "You can get it like a WRT router.", + "start": 2435.34, + "end": 2436.72, + "words": [ + { + "word": " You", + "start": 2435.34, + "end": 2435.46, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 2435.46, + "end": 2435.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 2435.52, + "end": 2435.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 2435.66, + "end": 2435.72, + "probability": 0.75390625 + }, + { + "word": " like", + "start": 2435.72, + "end": 2435.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 2435.82, + "end": 2435.94, + "probability": 1.0 + }, + { + "word": " WRT", + "start": 2435.94, + "end": 2436.4, + "probability": 0.96484375 + }, + { + "word": " router.", + "start": 2436.4, + "end": 2436.72, + "probability": 1.0 + } + ] + }, + { + "id": 1040, + "text": "Any older Linksys router will work for this.", + "start": 2437.42, + "end": 2439.96, + "words": [ + { + "word": " Any", + "start": 2437.42, + "end": 2437.86, + "probability": 0.99951171875 + }, + { + "word": " older", + "start": 2437.86, + "end": 2438.3, + "probability": 1.0 + }, + { + "word": " Linksys", + "start": 2438.3, + "end": 2438.82, + "probability": 0.978515625 + }, + { + "word": " router", + "start": 2438.82, + "end": 2439.08, + "probability": 1.0 + }, + { + "word": " will", + "start": 2439.08, + "end": 2439.3, + "probability": 1.0 + }, + { + "word": " work", + "start": 2439.3, + "end": 2439.54, + "probability": 1.0 + }, + { + "word": " for", + "start": 2439.54, + "end": 2439.7, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2439.7, + "end": 2439.96, + "probability": 1.0 + } + ] + }, + { + "id": 1041, + "text": "You can...", + "start": 2440.06, + "end": 2440.9, + "words": [ + { + "word": " You", + "start": 2440.06, + "end": 2440.36, + "probability": 0.92919921875 + }, + { + "word": " can...", + "start": 2440.36, + "end": 2440.9, + "probability": 0.67431640625 + } + ] + }, + { + "id": 1042, + "text": "There's some software updates you can put on there which anonymizes your connection and makes you part of the Tor network.", + "start": 2441.64, + "end": 2447.62, + "words": [ + { + "word": " There's", + "start": 2441.64, + "end": 2442.0, + "probability": 0.56787109375 + }, + { + "word": " some", + "start": 2442.0, + "end": 2442.14, + "probability": 0.99951171875 + }, + { + "word": " software", + "start": 2442.14, + "end": 2443.02, + "probability": 0.990234375 + }, + { + "word": " updates", + "start": 2443.02, + "end": 2443.44, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 2443.44, + "end": 2443.74, + "probability": 0.984375 + }, + { + "word": " can", + "start": 2443.74, + "end": 2443.84, + "probability": 1.0 + }, + { + "word": " put", + "start": 2443.84, + "end": 2443.98, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2443.98, + "end": 2444.12, + "probability": 1.0 + }, + { + "word": " there", + "start": 2444.12, + "end": 2444.3, + "probability": 1.0 + }, + { + "word": " which", + "start": 2444.3, + "end": 2444.5, + "probability": 0.5791015625 + }, + { + "word": " anonymizes", + "start": 2444.5, + "end": 2445.12, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 2445.12, + "end": 2445.34, + "probability": 1.0 + }, + { + "word": " connection", + "start": 2445.34, + "end": 2445.64, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2445.64, + "end": 2446.32, + "probability": 0.98388671875 + }, + { + "word": " makes", + "start": 2446.32, + "end": 2446.56, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2446.56, + "end": 2446.7, + "probability": 1.0 + }, + { + "word": " part", + "start": 2446.7, + "end": 2446.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 2446.88, + "end": 2447.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 2447.02, + "end": 2447.1, + "probability": 1.0 + }, + { + "word": " Tor", + "start": 2447.1, + "end": 2447.36, + "probability": 0.88720703125 + }, + { + "word": " network.", + "start": 2447.36, + "end": 2447.62, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1043, + "text": "And that anonymizes your end-to-end anonymous.", + "start": 2448.74, + "end": 2451.62, + "words": [ + { + "word": " And", + "start": 2448.74, + "end": 2449.1, + "probability": 0.59375 + }, + { + "word": " that", + "start": 2449.1, + "end": 2449.46, + "probability": 0.99755859375 + }, + { + "word": " anonymizes", + "start": 2449.46, + "end": 2450.04, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2450.04, + "end": 2450.3, + "probability": 0.9931640625 + }, + { + "word": " end", + "start": 2450.3, + "end": 2450.84, + "probability": 0.99853515625 + }, + { + "word": "-to", + "start": 2450.84, + "end": 2450.96, + "probability": 0.9853515625 + }, + { + "word": "-end", + "start": 2450.96, + "end": 2451.1, + "probability": 1.0 + }, + { + "word": " anonymous.", + "start": 2451.1, + "end": 2451.62, + "probability": 0.921875 + } + ] + }, + { + "id": 1044, + "text": "Just be careful with that stuff.", + "start": 2451.96, + "end": 2452.82, + "words": [ + { + "word": " Just", + "start": 2451.96, + "end": 2452.1, + "probability": 0.67333984375 + }, + { + "word": " be", + "start": 2452.1, + "end": 2452.14, + "probability": 1.0 + }, + { + "word": " careful", + "start": 2452.14, + "end": 2452.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 2452.38, + "end": 2452.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 2452.5, + "end": 2452.64, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2452.64, + "end": 2452.82, + "probability": 1.0 + } + ] + }, + { + "id": 1045, + "text": "It's hard to do.", + "start": 2452.9, + "end": 2453.44, + "words": [ + { + "word": " It's", + "start": 2452.9, + "end": 2453.02, + "probability": 0.99609375 + }, + { + "word": " hard", + "start": 2453.02, + "end": 2453.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2453.16, + "end": 2453.3, + "probability": 1.0 + }, + { + "word": " do.", + "start": 2453.3, + "end": 2453.44, + "probability": 1.0 + } + ] + }, + { + "id": 1046, + "text": "Yeah.", + "start": 2453.88, + "end": 2453.96, + "words": [ + { + "word": " Yeah.", + "start": 2453.88, + "end": 2453.96, + "probability": 0.455078125 + } + ] + }, + { + "id": 1047, + "text": "But if you're feeling like you want to be anonymous, that's the way to do it, man.", + "start": 2454.72, + "end": 2457.34, + "words": [ + { + "word": " But", + "start": 2454.72, + "end": 2455.08, + "probability": 0.97802734375 + }, + { + "word": " if", + "start": 2455.08, + "end": 2455.22, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 2455.22, + "end": 2455.38, + "probability": 1.0 + }, + { + "word": " feeling", + "start": 2455.38, + "end": 2455.5, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2455.5, + "end": 2455.7, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2455.7, + "end": 2455.82, + "probability": 0.994140625 + }, + { + "word": " want", + "start": 2455.82, + "end": 2455.98, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2455.98, + "end": 2456.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 2456.08, + "end": 2456.12, + "probability": 1.0 + }, + { + "word": " anonymous,", + "start": 2456.12, + "end": 2456.4, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 2456.56, + "end": 2456.74, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2456.74, + "end": 2456.8, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 2456.8, + "end": 2456.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2456.92, + "end": 2456.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 2456.98, + "end": 2457.1, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2457.1, + "end": 2457.22, + "probability": 1.0 + }, + { + "word": " man.", + "start": 2457.24, + "end": 2457.34, + "probability": 1.0 + } + ] + }, + { + "id": 1048, + "text": "Okay.", + "start": 2458.06, + "end": 2458.42, + "words": [ + { + "word": " Okay.", + "start": 2458.06, + "end": 2458.42, + "probability": 0.986328125 + } + ] + }, + { + "id": 1049, + "text": "Well, I really appreciate that.", + "start": 2458.6, + "end": 2459.72, + "words": [ + { + "word": " Well,", + "start": 2458.6, + "end": 2458.96, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 2459.0, + "end": 2459.06, + "probability": 1.0 + }, + { + "word": " really", + "start": 2459.06, + "end": 2459.26, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 2459.26, + "end": 2459.54, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2459.54, + "end": 2459.72, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1050, + "text": "And I'll definitely...", + "start": 2459.82, + "end": 2460.3, + "words": [ + { + "word": " And", + "start": 2459.82, + "end": 2459.86, + "probability": 0.341064453125 + }, + { + "word": " I'll", + "start": 2459.86, + "end": 2459.96, + "probability": 0.8447265625 + }, + { + "word": " definitely...", + "start": 2459.96, + "end": 2460.3, + "probability": 0.736328125 + } + ] + }, + { + "id": 1051, + "text": "Do you know, like, which episode upcoming you're going to be talking about all that and the privacy and stuff?", + "start": 2460.3, + "end": 2464.28, + "words": [ + { + "word": " Do", + "start": 2460.3, + "end": 2460.38, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 2460.38, + "end": 2460.46, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2460.46, + "end": 2460.62, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2460.62, + "end": 2460.84, + "probability": 1.0 + }, + { + "word": " which", + "start": 2460.84, + "end": 2461.06, + "probability": 0.99755859375 + }, + { + "word": " episode", + "start": 2461.06, + "end": 2461.3, + "probability": 1.0 + }, + { + "word": " upcoming", + "start": 2461.3, + "end": 2461.6, + "probability": 0.984375 + }, + { + "word": " you're", + "start": 2461.6, + "end": 2461.9, + "probability": 0.966796875 + }, + { + "word": " going", + "start": 2461.9, + "end": 2461.98, + "probability": 0.9921875 + }, + { + "word": " to", + "start": 2461.98, + "end": 2462.04, + "probability": 1.0 + }, + { + "word": " be", + "start": 2462.04, + "end": 2462.16, + "probability": 1.0 + }, + { + "word": " talking", + "start": 2462.16, + "end": 2462.9, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2462.9, + "end": 2463.16, + "probability": 1.0 + }, + { + "word": " all", + "start": 2463.16, + "end": 2463.38, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2463.38, + "end": 2463.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 2463.52, + "end": 2463.62, + "probability": 0.82275390625 + }, + { + "word": " the", + "start": 2463.62, + "end": 2463.64, + "probability": 0.96875 + }, + { + "word": " privacy", + "start": 2463.64, + "end": 2463.88, + "probability": 0.890625 + }, + { + "word": " and", + "start": 2463.88, + "end": 2464.1, + "probability": 1.0 + }, + { + "word": " stuff?", + "start": 2464.1, + "end": 2464.28, + "probability": 1.0 + } + ] + }, + { + "id": 1052, + "text": "Maybe next weekend.", + "start": 2464.72, + "end": 2465.78, + "words": [ + { + "word": " Maybe", + "start": 2464.72, + "end": 2465.08, + "probability": 0.99951171875 + }, + { + "word": " next", + "start": 2465.08, + "end": 2465.34, + "probability": 1.0 + }, + { + "word": " weekend.", + "start": 2465.34, + "end": 2465.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1053, + "text": "Okay.", + "start": 2466.32, + "end": 2466.68, + "words": [ + { + "word": " Okay.", + "start": 2466.32, + "end": 2466.68, + "probability": 0.9130859375 + } + ] + }, + { + "id": 1054, + "text": "I need to do a little more research on what Europe's doing with the whole...", + "start": 2466.68, + "end": 2470.1, + "words": [ + { + "word": " I", + "start": 2466.68, + "end": 2466.92, + "probability": 0.9970703125 + }, + { + "word": " need", + "start": 2466.92, + "end": 2467.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2467.22, + "end": 2467.36, + "probability": 1.0 + }, + { + "word": " do", + "start": 2467.36, + "end": 2467.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 2467.48, + "end": 2467.58, + "probability": 1.0 + }, + { + "word": " little", + "start": 2467.58, + "end": 2467.62, + "probability": 1.0 + }, + { + "word": " more", + "start": 2467.62, + "end": 2467.78, + "probability": 0.99951171875 + }, + { + "word": " research", + "start": 2467.78, + "end": 2468.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 2468.06, + "end": 2468.3, + "probability": 1.0 + }, + { + "word": " what", + "start": 2468.3, + "end": 2468.72, + "probability": 0.998046875 + }, + { + "word": " Europe's", + "start": 2468.72, + "end": 2469.2, + "probability": 0.99462890625 + }, + { + "word": " doing", + "start": 2469.2, + "end": 2469.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 2469.34, + "end": 2469.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2469.56, + "end": 2469.78, + "probability": 0.99951171875 + }, + { + "word": " whole...", + "start": 2469.78, + "end": 2470.1, + "probability": 0.53271484375 + } + ] + }, + { + "id": 1055, + "text": "Okay.", + "start": 2470.1, + "end": 2470.78, + "words": [ + { + "word": " Okay.", + "start": 2470.1, + "end": 2470.78, + "probability": 0.0162811279296875 + } + ] + }, + { + "id": 1056, + "text": "", + "start": 2470.78, + "end": 2470.78, + "words": [] + }, + { + "id": 1057, + "text": "...hard ID access thing.", + "start": 2470.9, + "end": 2472.06, + "words": [ + { + "word": " ...hard", + "start": 2470.9, + "end": 2471.0, + "probability": 0.0126495361328125 + }, + { + "word": " ID", + "start": 2471.0, + "end": 2471.1, + "probability": 0.8720703125 + }, + { + "word": " access", + "start": 2471.1, + "end": 2471.78, + "probability": 0.99365234375 + }, + { + "word": " thing.", + "start": 2471.78, + "end": 2472.06, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1058, + "text": "But I've seen a few people talk about it, and so I want to get to the bottom of it and figure out how long that's going to take to get here.", + "start": 2473.22, + "end": 2479.8, + "words": [ + { + "word": " But", + "start": 2473.22, + "end": 2473.52, + "probability": 0.859375 + }, + { + "word": " I've", + "start": 2473.52, + "end": 2473.82, + "probability": 0.984375 + }, + { + "word": " seen", + "start": 2473.82, + "end": 2474.22, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 2474.22, + "end": 2474.34, + "probability": 0.98486328125 + }, + { + "word": " few", + "start": 2474.34, + "end": 2474.5, + "probability": 1.0 + }, + { + "word": " people", + "start": 2474.5, + "end": 2474.74, + "probability": 0.99853515625 + }, + { + "word": " talk", + "start": 2474.74, + "end": 2474.96, + "probability": 0.935546875 + }, + { + "word": " about", + "start": 2474.96, + "end": 2475.22, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 2475.22, + "end": 2475.48, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2475.58, + "end": 2475.68, + "probability": 0.658203125 + }, + { + "word": " so", + "start": 2475.68, + "end": 2476.02, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2476.02, + "end": 2476.16, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 2476.16, + "end": 2476.3, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 2476.3, + "end": 2476.38, + "probability": 1.0 + }, + { + "word": " get", + "start": 2476.38, + "end": 2476.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 2476.5, + "end": 2476.62, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2476.62, + "end": 2476.72, + "probability": 1.0 + }, + { + "word": " bottom", + "start": 2476.72, + "end": 2476.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 2476.98, + "end": 2477.1, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2477.1, + "end": 2477.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 2477.24, + "end": 2477.34, + "probability": 0.97412109375 + }, + { + "word": " figure", + "start": 2477.34, + "end": 2477.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 2477.5, + "end": 2477.72, + "probability": 1.0 + }, + { + "word": " how", + "start": 2477.72, + "end": 2478.64, + "probability": 0.99658203125 + }, + { + "word": " long", + "start": 2478.64, + "end": 2478.9, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2478.9, + "end": 2479.14, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 2479.14, + "end": 2479.22, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 2479.22, + "end": 2479.28, + "probability": 1.0 + }, + { + "word": " take", + "start": 2479.28, + "end": 2479.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 2479.42, + "end": 2479.54, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2479.54, + "end": 2479.62, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2479.62, + "end": 2479.8, + "probability": 1.0 + } + ] + }, + { + "id": 1059, + "text": "But, yeah, well, probably next week or the week after.", + "start": 2481.3599999999997, + "end": 2483.7, + "words": [ + { + "word": " But,", + "start": 2481.3599999999997, + "end": 2481.66, + "probability": 0.9716796875 + }, + { + "word": " yeah,", + "start": 2481.66, + "end": 2481.96, + "probability": 0.9970703125 + }, + { + "word": " well,", + "start": 2482.06, + "end": 2482.18, + "probability": 0.2418212890625 + }, + { + "word": " probably", + "start": 2482.22, + "end": 2482.56, + "probability": 0.99853515625 + }, + { + "word": " next", + "start": 2482.56, + "end": 2482.72, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 2482.72, + "end": 2483.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 2483.0, + "end": 2483.18, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 2483.18, + "end": 2483.3, + "probability": 1.0 + }, + { + "word": " week", + "start": 2483.3, + "end": 2483.42, + "probability": 1.0 + }, + { + "word": " after.", + "start": 2483.42, + "end": 2483.7, + "probability": 1.0 + } + ] + }, + { + "id": 1060, + "text": "And just on a side note, if you...", + "start": 2484.24, + "end": 2485.74, + "words": [ + { + "word": " And", + "start": 2484.24, + "end": 2484.54, + "probability": 0.994140625 + }, + { + "word": " just", + "start": 2484.54, + "end": 2484.68, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2484.68, + "end": 2484.82, + "probability": 0.65185546875 + }, + { + "word": " a", + "start": 2484.82, + "end": 2484.9, + "probability": 0.99951171875 + }, + { + "word": " side", + "start": 2484.9, + "end": 2485.06, + "probability": 1.0 + }, + { + "word": " note,", + "start": 2485.06, + "end": 2485.24, + "probability": 1.0 + }, + { + "word": " if", + "start": 2485.36, + "end": 2485.38, + "probability": 0.74560546875 + }, + { + "word": " you...", + "start": 2485.38, + "end": 2485.74, + "probability": 0.740234375 + } + ] + }, + { + "id": 1061, + "text": "Because I know you can understand all the gobbledygooks better than I could reading it.", + "start": 2485.74, + "end": 2488.76, + "words": [ + { + "word": " Because", + "start": 2485.74, + "end": 2485.98, + "probability": 0.4619140625 + }, + { + "word": " I", + "start": 2485.98, + "end": 2486.08, + "probability": 1.0 + }, + { + "word": " know", + "start": 2486.08, + "end": 2486.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 2486.2, + "end": 2486.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 2486.36, + "end": 2486.52, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2486.52, + "end": 2486.8, + "probability": 1.0 + }, + { + "word": " all", + "start": 2486.8, + "end": 2487.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2487.1, + "end": 2487.22, + "probability": 0.99951171875 + }, + { + "word": " gobbledygooks", + "start": 2487.22, + "end": 2487.74, + "probability": 0.9462890625 + }, + { + "word": " better", + "start": 2487.74, + "end": 2487.88, + "probability": 0.9990234375 + }, + { + "word": " than", + "start": 2487.88, + "end": 2488.02, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2488.02, + "end": 2488.08, + "probability": 1.0 + }, + { + "word": " could", + "start": 2488.08, + "end": 2488.24, + "probability": 0.99560546875 + }, + { + "word": " reading", + "start": 2488.24, + "end": 2488.54, + "probability": 0.37890625 + }, + { + "word": " it.", + "start": 2488.54, + "end": 2488.76, + "probability": 1.0 + } + ] + }, + { + "id": 1062, + "text": "I chose IPVanish because it was Italy.", + "start": 2489.8399999999997, + "end": 2491.66, + "words": [ + { + "word": " I", + "start": 2489.8399999999997, + "end": 2490.14, + "probability": 0.9990234375 + }, + { + "word": " chose", + "start": 2490.14, + "end": 2490.44, + "probability": 0.9990234375 + }, + { + "word": " IPVanish", + "start": 2490.44, + "end": 2491.0, + "probability": 0.77734375 + }, + { + "word": " because", + "start": 2491.0, + "end": 2491.18, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2491.18, + "end": 2491.34, + "probability": 0.99658203125 + }, + { + "word": " was", + "start": 2491.34, + "end": 2491.4, + "probability": 1.0 + }, + { + "word": " Italy.", + "start": 2491.4, + "end": 2491.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1063, + "text": "I think they said they were based out of Italy, and it had something to do with basically...", + "start": 2492.14, + "end": 2495.66, + "words": [ + { + "word": " I", + "start": 2492.14, + "end": 2492.44, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 2492.44, + "end": 2492.74, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2492.74, + "end": 2492.88, + "probability": 0.9990234375 + }, + { + "word": " said", + "start": 2492.88, + "end": 2492.96, + "probability": 0.98291015625 + }, + { + "word": " they", + "start": 2492.96, + "end": 2493.08, + "probability": 1.0 + }, + { + "word": " were", + "start": 2493.08, + "end": 2493.12, + "probability": 0.9951171875 + }, + { + "word": " based", + "start": 2493.12, + "end": 2493.26, + "probability": 1.0 + }, + { + "word": " out", + "start": 2493.26, + "end": 2493.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 2493.42, + "end": 2493.44, + "probability": 1.0 + }, + { + "word": " Italy,", + "start": 2493.44, + "end": 2493.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 2493.78, + "end": 2493.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 2493.86, + "end": 2493.94, + "probability": 1.0 + }, + { + "word": " had", + "start": 2493.94, + "end": 2494.04, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2494.04, + "end": 2494.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2494.28, + "end": 2494.4, + "probability": 1.0 + }, + { + "word": " do", + "start": 2494.4, + "end": 2494.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 2494.58, + "end": 2494.76, + "probability": 1.0 + }, + { + "word": " basically...", + "start": 2494.76, + "end": 2495.66, + "probability": 0.94140625 + } + ] + }, + { + "id": 1064, + "text": "Yeah.", + "start": 2496.06, + "end": 2496.36, + "words": [ + { + "word": " Yeah.", + "start": 2496.06, + "end": 2496.36, + "probability": 0.0068817138671875 + } + ] + }, + { + "id": 1065, + "text": "Even if somebody gives them a court order and says, hey, we need to find out what this person's doing, they said, okay,", + "start": 2496.42, + "end": 2500.26, + "words": [ + { + "word": " Even", + "start": 2496.42, + "end": 2496.68, + "probability": 0.59912109375 + }, + { + "word": " if", + "start": 2496.68, + "end": 2496.8, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 2496.8, + "end": 2496.98, + "probability": 0.99560546875 + }, + { + "word": " gives", + "start": 2496.98, + "end": 2497.16, + "probability": 0.99658203125 + }, + { + "word": " them", + "start": 2497.16, + "end": 2497.3, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2497.3, + "end": 2497.38, + "probability": 0.99951171875 + }, + { + "word": " court", + "start": 2497.38, + "end": 2497.58, + "probability": 1.0 + }, + { + "word": " order", + "start": 2497.58, + "end": 2497.9, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2497.9, + "end": 2498.08, + "probability": 0.99951171875 + }, + { + "word": " says,", + "start": 2498.08, + "end": 2498.22, + "probability": 0.9970703125 + }, + { + "word": " hey,", + "start": 2498.26, + "end": 2498.44, + "probability": 0.97314453125 + }, + { + "word": " we", + "start": 2498.52, + "end": 2498.62, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 2498.62, + "end": 2498.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2498.74, + "end": 2498.82, + "probability": 1.0 + }, + { + "word": " find", + "start": 2498.82, + "end": 2498.96, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 2498.96, + "end": 2499.04, + "probability": 1.0 + }, + { + "word": " what", + "start": 2499.04, + "end": 2499.12, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2499.12, + "end": 2499.22, + "probability": 0.99951171875 + }, + { + "word": " person's", + "start": 2499.22, + "end": 2499.54, + "probability": 0.943359375 + }, + { + "word": " doing,", + "start": 2499.54, + "end": 2499.74, + "probability": 1.0 + }, + { + "word": " they", + "start": 2499.76, + "end": 2499.9, + "probability": 0.90087890625 + }, + { + "word": " said,", + "start": 2499.9, + "end": 2500.04, + "probability": 0.9912109375 + }, + { + "word": " okay,", + "start": 2500.08, + "end": 2500.26, + "probability": 0.98046875 + } + ] + }, + { + "id": 1066, + "text": "we set it up impossibly so nobody can.", + "start": 2500.9, + "end": 2502.6, + "words": [ + { + "word": " we", + "start": 2500.9, + "end": 2500.98, + "probability": 0.318603515625 + }, + { + "word": " set", + "start": 2500.98, + "end": 2501.22, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2501.22, + "end": 2501.38, + "probability": 1.0 + }, + { + "word": " up", + "start": 2501.38, + "end": 2501.48, + "probability": 1.0 + }, + { + "word": " impossibly", + "start": 2501.48, + "end": 2502.0, + "probability": 0.98876953125 + }, + { + "word": " so", + "start": 2502.0, + "end": 2502.16, + "probability": 0.98779296875 + }, + { + "word": " nobody", + "start": 2502.16, + "end": 2502.36, + "probability": 0.99951171875 + }, + { + "word": " can.", + "start": 2502.36, + "end": 2502.6, + "probability": 1.0 + } + ] + }, + { + "id": 1067, + "text": "You can't track what people are doing on the system.", + "start": 2503.02, + "end": 2505.06, + "words": [ + { + "word": " You", + "start": 2503.02, + "end": 2503.34, + "probability": 0.99853515625 + }, + { + "word": " can't", + "start": 2503.34, + "end": 2503.58, + "probability": 1.0 + }, + { + "word": " track", + "start": 2503.58, + "end": 2503.84, + "probability": 1.0 + }, + { + "word": " what", + "start": 2503.84, + "end": 2504.08, + "probability": 1.0 + }, + { + "word": " people", + "start": 2504.08, + "end": 2504.3, + "probability": 1.0 + }, + { + "word": " are", + "start": 2504.3, + "end": 2504.4, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2504.4, + "end": 2504.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 2504.56, + "end": 2504.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2504.7, + "end": 2504.78, + "probability": 1.0 + }, + { + "word": " system.", + "start": 2504.78, + "end": 2505.06, + "probability": 1.0 + } + ] + }, + { + "id": 1068, + "text": "Sort of.", + "start": 2505.34, + "end": 2505.82, + "words": [ + { + "word": " Sort", + "start": 2505.34, + "end": 2505.66, + "probability": 0.97265625 + }, + { + "word": " of.", + "start": 2505.66, + "end": 2505.82, + "probability": 1.0 + } + ] + }, + { + "id": 1069, + "text": "And we'll cover that when it comes to it.", + "start": 2506.12, + "end": 2507.72, + "words": [ + { + "word": " And", + "start": 2506.12, + "end": 2506.44, + "probability": 0.83203125 + }, + { + "word": " we'll", + "start": 2506.44, + "end": 2506.64, + "probability": 0.9990234375 + }, + { + "word": " cover", + "start": 2506.64, + "end": 2506.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 2506.82, + "end": 2507.06, + "probability": 1.0 + }, + { + "word": " when", + "start": 2507.06, + "end": 2507.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 2507.2, + "end": 2507.3, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2507.3, + "end": 2507.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 2507.48, + "end": 2507.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2507.6, + "end": 2507.72, + "probability": 1.0 + } + ] + }, + { + "id": 1070, + "text": "Great.", + "start": 2507.84, + "end": 2507.96, + "words": [ + { + "word": " Great.", + "start": 2507.84, + "end": 2507.96, + "probability": 0.37255859375 + } + ] + }, + { + "id": 1071, + "text": "There's a certain amount of hopeful optimism there.", + "start": 2508.06, + "end": 2510.94, + "words": [ + { + "word": " There's", + "start": 2508.06, + "end": 2508.38, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 2508.38, + "end": 2508.38, + "probability": 1.0 + }, + { + "word": " certain", + "start": 2508.38, + "end": 2508.64, + "probability": 0.99951171875 + }, + { + "word": " amount", + "start": 2508.64, + "end": 2508.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 2508.88, + "end": 2509.3, + "probability": 1.0 + }, + { + "word": " hopeful", + "start": 2509.3, + "end": 2510.12, + "probability": 1.0 + }, + { + "word": " optimism", + "start": 2510.12, + "end": 2510.58, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2510.58, + "end": 2510.94, + "probability": 1.0 + } + ] + }, + { + "id": 1072, + "text": "Yeah.", + "start": 2511.04, + "end": 2511.18, + "words": [ + { + "word": " Yeah.", + "start": 2511.04, + "end": 2511.18, + "probability": 0.2470703125 + } + ] + }, + { + "id": 1073, + "text": "Okay.", + "start": 2511.88, + "end": 2512.2, + "words": [ + { + "word": " Okay.", + "start": 2511.88, + "end": 2512.2, + "probability": 0.94580078125 + } + ] + }, + { + "id": 1074, + "text": "Well, great show, and I will definitely keep listening.", + "start": 2512.66, + "end": 2515.14, + "words": [ + { + "word": " Well,", + "start": 2512.66, + "end": 2512.98, + "probability": 0.99853515625 + }, + { + "word": " great", + "start": 2513.04, + "end": 2513.28, + "probability": 1.0 + }, + { + "word": " show,", + "start": 2513.28, + "end": 2513.54, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 2513.58, + "end": 2513.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 2513.72, + "end": 2513.76, + "probability": 1.0 + }, + { + "word": " will", + "start": 2513.76, + "end": 2513.92, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 2513.92, + "end": 2514.18, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2514.18, + "end": 2514.42, + "probability": 0.98291015625 + }, + { + "word": " listening.", + "start": 2514.42, + "end": 2515.14, + "probability": 1.0 + } + ] + }, + { + "id": 1075, + "text": "Thank you.", + "start": 2515.3, + "end": 2515.78, + "words": [ + { + "word": " Thank", + "start": 2515.3, + "end": 2515.6, + "probability": 0.9384765625 + }, + { + "word": " you.", + "start": 2515.6, + "end": 2515.78, + "probability": 1.0 + } + ] + }, + { + "id": 1076, + "text": "Thanks, Shane.", + "start": 2515.84, + "end": 2516.32, + "words": [ + { + "word": " Thanks,", + "start": 2515.84, + "end": 2516.16, + "probability": 0.978515625 + }, + { + "word": " Shane.", + "start": 2516.22, + "end": 2516.32, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1077, + "text": "Bye-bye.", + "start": 2516.42, + "end": 2516.72, + "words": [ + { + "word": " Bye", + "start": 2516.42, + "end": 2516.62, + "probability": 0.99853515625 + }, + { + "word": "-bye.", + "start": 2516.62, + "end": 2516.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1078, + "text": "We're going to take a quick break, and when we get back, I guess we'll be out of time.", + "start": 2517.36, + "end": 2521.42, + "words": [ + { + "word": " We're", + "start": 2517.36, + "end": 2517.68, + "probability": 0.99365234375 + }, + { + "word": " going", + "start": 2517.68, + "end": 2517.72, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2517.72, + "end": 2517.8, + "probability": 1.0 + }, + { + "word": " take", + "start": 2517.8, + "end": 2517.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 2517.94, + "end": 2517.98, + "probability": 1.0 + }, + { + "word": " quick", + "start": 2517.98, + "end": 2518.14, + "probability": 1.0 + }, + { + "word": " break,", + "start": 2518.14, + "end": 2518.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 2518.5, + "end": 2518.8, + "probability": 1.0 + }, + { + "word": " when", + "start": 2518.8, + "end": 2518.96, + "probability": 1.0 + }, + { + "word": " we", + "start": 2518.96, + "end": 2519.08, + "probability": 1.0 + }, + { + "word": " get", + "start": 2519.08, + "end": 2519.2, + "probability": 0.99951171875 + }, + { + "word": " back,", + "start": 2519.2, + "end": 2519.54, + "probability": 1.0 + }, + { + "word": " I", + "start": 2519.64, + "end": 2520.5, + "probability": 1.0 + }, + { + "word": " guess", + "start": 2520.5, + "end": 2520.84, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 2520.84, + "end": 2521.0, + "probability": 1.0 + }, + { + "word": " be", + "start": 2521.0, + "end": 2521.06, + "probability": 1.0 + }, + { + "word": " out", + "start": 2521.06, + "end": 2521.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 2521.16, + "end": 2521.24, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2521.24, + "end": 2521.42, + "probability": 1.0 + } + ] + }, + { + "id": 1079, + "text": "Yeah.", + "start": 2521.64, + "end": 2521.96, + "words": [ + { + "word": " Yeah.", + "start": 2521.64, + "end": 2521.96, + "probability": 0.3486328125 + } + ] + }, + { + "id": 1080, + "text": "That's how that's going to work.", + "start": 2522.12, + "end": 2522.92, + "words": [ + { + "word": " That's", + "start": 2522.12, + "end": 2522.44, + "probability": 0.99462890625 + }, + { + "word": " how", + "start": 2522.44, + "end": 2522.46, + "probability": 0.9853515625 + }, + { + "word": " that's", + "start": 2522.46, + "end": 2522.64, + "probability": 0.990234375 + }, + { + "word": " going", + "start": 2522.64, + "end": 2522.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2522.72, + "end": 2522.78, + "probability": 1.0 + }, + { + "word": " work.", + "start": 2522.78, + "end": 2522.92, + "probability": 1.0 + } + ] + }, + { + "id": 1081, + "text": "So listen up.", + "start": 2523.04, + "end": 2524.16, + "words": [ + { + "word": " So", + "start": 2523.04, + "end": 2523.36, + "probability": 0.99072265625 + }, + { + "word": " listen", + "start": 2523.36, + "end": 2523.96, + "probability": 0.80517578125 + }, + { + "word": " up.", + "start": 2523.96, + "end": 2524.16, + "probability": 1.0 + } + ] + }, + { + "id": 1082, + "text": "We have some specials, some deals we want to talk with you about.", + "start": 2524.18, + "end": 2527.1, + "words": [ + { + "word": " We", + "start": 2524.18, + "end": 2524.3, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 2524.3, + "end": 2524.42, + "probability": 1.0 + }, + { + "word": " some", + "start": 2524.42, + "end": 2524.6, + "probability": 1.0 + }, + { + "word": " specials,", + "start": 2524.6, + "end": 2525.66, + "probability": 0.9951171875 + }, + { + "word": " some", + "start": 2525.66, + "end": 2525.78, + "probability": 0.998046875 + }, + { + "word": " deals", + "start": 2525.78, + "end": 2526.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 2526.08, + "end": 2526.28, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 2526.28, + "end": 2526.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2526.4, + "end": 2526.5, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2526.5, + "end": 2526.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 2526.66, + "end": 2526.78, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2526.78, + "end": 2526.88, + "probability": 1.0 + }, + { + "word": " about.", + "start": 2526.88, + "end": 2527.1, + "probability": 1.0 + } + ] + }, + { + "id": 1083, + "text": "We'll be right back.", + "start": 2527.4, + "end": 2528.06, + "words": [ + { + "word": " We'll", + "start": 2527.4, + "end": 2527.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 2527.72, + "end": 2527.78, + "probability": 1.0 + }, + { + "word": " right", + "start": 2527.78, + "end": 2527.9, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2527.9, + "end": 2528.06, + "probability": 1.0 + } + ] + }, + { + "id": 1084, + "text": "We'll be right back.", + "start": 2530.9, + "end": 2532.02, + "words": [ + { + "word": " We'll", + "start": 2530.9, + "end": 2532.02, + "probability": 0.470458984375 + }, + { + "word": " be", + "start": 2532.02, + "end": 2532.02, + "probability": 0.5126953125 + }, + { + "word": " right", + "start": 2532.02, + "end": 2532.02, + "probability": 0.9755859375 + }, + { + "word": " back.", + "start": 2532.02, + "end": 2532.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1085, + "text": "So you know that we put this show up on the internet.", + "start": 2562.18, + "end": 2565.14, + "words": [ + { + "word": " So", + "start": 2562.18, + "end": 2562.54, + "probability": 0.83349609375 + }, + { + "word": " you", + "start": 2562.54, + "end": 2562.68, + "probability": 0.94384765625 + }, + { + "word": " know", + "start": 2562.68, + "end": 2562.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 2562.86, + "end": 2563.04, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 2563.04, + "end": 2563.18, + "probability": 1.0 + }, + { + "word": " put", + "start": 2563.18, + "end": 2563.86, + "probability": 0.9814453125 + }, + { + "word": " this", + "start": 2563.86, + "end": 2564.14, + "probability": 0.97607421875 + }, + { + "word": " show", + "start": 2564.14, + "end": 2564.38, + "probability": 1.0 + }, + { + "word": " up", + "start": 2564.38, + "end": 2564.6, + "probability": 1.0 + }, + { + "word": " on", + "start": 2564.6, + "end": 2564.78, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2564.78, + "end": 2564.86, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2564.86, + "end": 2565.14, + "probability": 0.4609375 + } + ] + }, + { + "id": 1086, + "text": "It's live right now, either through the KVLY website or gurushow.com.", + "start": 2566.7599999999998, + "end": 2572.14, + "words": [ + { + "word": " It's", + "start": 2566.7599999999998, + "end": 2567.12, + "probability": 0.99951171875 + }, + { + "word": " live", + "start": 2567.12, + "end": 2567.48, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 2567.48, + "end": 2567.98, + "probability": 0.99951171875 + }, + { + "word": " now,", + "start": 2567.98, + "end": 2568.36, + "probability": 1.0 + }, + { + "word": " either", + "start": 2568.54, + "end": 2569.26, + "probability": 0.99951171875 + }, + { + "word": " through", + "start": 2569.26, + "end": 2569.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2569.52, + "end": 2569.68, + "probability": 1.0 + }, + { + "word": " KVLY", + "start": 2569.68, + "end": 2570.2, + "probability": 0.61572265625 + }, + { + "word": " website", + "start": 2570.2, + "end": 2570.48, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 2570.48, + "end": 2570.98, + "probability": 0.99560546875 + }, + { + "word": " gurushow", + "start": 2570.98, + "end": 2571.64, + "probability": 0.82421875 + }, + { + "word": ".com.", + "start": 2571.64, + "end": 2572.14, + "probability": 1.0 + } + ] + }, + { + "id": 1087, + "text": "And then later, we also put them on YouTube, so you should go check out the YouTube channel", + "start": 2572.4, + "end": 2577.48, + "words": [ + { + "word": " And", + "start": 2572.4, + "end": 2572.76, + "probability": 0.9931640625 + }, + { + "word": " then", + "start": 2572.76, + "end": 2572.9, + "probability": 1.0 + }, + { + "word": " later,", + "start": 2572.9, + "end": 2573.3, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2573.38, + "end": 2574.14, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 2574.14, + "end": 2574.66, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 2574.66, + "end": 2574.84, + "probability": 1.0 + }, + { + "word": " them", + "start": 2574.84, + "end": 2575.0, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 2575.0, + "end": 2575.14, + "probability": 1.0 + }, + { + "word": " YouTube,", + "start": 2575.14, + "end": 2575.46, + "probability": 1.0 + }, + { + "word": " so", + "start": 2575.56, + "end": 2576.08, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2576.08, + "end": 2576.34, + "probability": 1.0 + }, + { + "word": " should", + "start": 2576.34, + "end": 2576.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 2576.48, + "end": 2576.58, + "probability": 1.0 + }, + { + "word": " check", + "start": 2576.58, + "end": 2576.74, + "probability": 1.0 + }, + { + "word": " out", + "start": 2576.74, + "end": 2576.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2576.88, + "end": 2576.96, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 2576.96, + "end": 2577.14, + "probability": 1.0 + }, + { + "word": " channel", + "start": 2577.14, + "end": 2577.48, + "probability": 1.0 + } + ] + }, + { + "id": 1088, + "text": "and subscribe there if you can, because it helps us out.", + "start": 2577.48, + "end": 2580.86, + "words": [ + { + "word": " and", + "start": 2577.48, + "end": 2578.2, + "probability": 0.26025390625 + }, + { + "word": " subscribe", + "start": 2578.2, + "end": 2578.92, + "probability": 1.0 + }, + { + "word": " there", + "start": 2578.92, + "end": 2579.26, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2579.26, + "end": 2579.56, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 2579.56, + "end": 2579.68, + "probability": 1.0 + }, + { + "word": " can,", + "start": 2579.68, + "end": 2579.98, + "probability": 1.0 + }, + { + "word": " because", + "start": 2580.08, + "end": 2580.22, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2580.22, + "end": 2580.32, + "probability": 0.9970703125 + }, + { + "word": " helps", + "start": 2580.32, + "end": 2580.48, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2580.48, + "end": 2580.64, + "probability": 1.0 + }, + { + "word": " out.", + "start": 2580.64, + "end": 2580.86, + "probability": 1.0 + } + ] + }, + { + "id": 1089, + "text": "And also, getting subscribed and getting on our boat early here is going to help you out", + "start": 2581.08, + "end": 2586.58, + "words": [ + { + "word": " And", + "start": 2581.08, + "end": 2581.44, + "probability": 0.9990234375 + }, + { + "word": " also,", + "start": 2581.44, + "end": 2581.74, + "probability": 0.9990234375 + }, + { + "word": " getting", + "start": 2581.86, + "end": 2582.38, + "probability": 0.6611328125 + }, + { + "word": " subscribed", + "start": 2582.38, + "end": 2582.98, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2582.98, + "end": 2583.52, + "probability": 0.9990234375 + }, + { + "word": " getting", + "start": 2583.52, + "end": 2583.96, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2583.96, + "end": 2584.16, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 2584.16, + "end": 2584.38, + "probability": 0.99951171875 + }, + { + "word": " boat", + "start": 2584.38, + "end": 2585.24, + "probability": 0.998046875 + }, + { + "word": " early", + "start": 2585.24, + "end": 2585.5, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 2585.5, + "end": 2585.78, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2585.78, + "end": 2585.96, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 2585.96, + "end": 2586.04, + "probability": 0.99169921875 + }, + { + "word": " to", + "start": 2586.04, + "end": 2586.16, + "probability": 1.0 + }, + { + "word": " help", + "start": 2586.16, + "end": 2586.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 2586.32, + "end": 2586.46, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 2586.46, + "end": 2586.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1090, + "text": "in the long run, because we've got some cool stuff planned.", + "start": 2586.58, + "end": 2588.1, + "words": [ + { + "word": " in", + "start": 2586.58, + "end": 2586.68, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2586.68, + "end": 2586.7, + "probability": 1.0 + }, + { + "word": " long", + "start": 2586.7, + "end": 2586.88, + "probability": 1.0 + }, + { + "word": " run,", + "start": 2586.88, + "end": 2587.02, + "probability": 1.0 + }, + { + "word": " because", + "start": 2587.08, + "end": 2587.16, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 2587.16, + "end": 2587.28, + "probability": 0.99609375 + }, + { + "word": " got", + "start": 2587.28, + "end": 2587.34, + "probability": 1.0 + }, + { + "word": " some", + "start": 2587.34, + "end": 2587.46, + "probability": 1.0 + }, + { + "word": " cool", + "start": 2587.46, + "end": 2587.64, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 2587.64, + "end": 2587.78, + "probability": 1.0 + }, + { + "word": " planned.", + "start": 2587.78, + "end": 2588.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1091, + "text": "Right.", + "start": 2588.24, + "end": 2588.52, + "words": [ + { + "word": " Right.", + "start": 2588.24, + "end": 2588.52, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1092, + "text": "There's going to be some giveaways happening.", + "start": 2588.56, + "end": 2590.02, + "words": [ + { + "word": " There's", + "start": 2588.56, + "end": 2588.78, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 2588.78, + "end": 2588.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 2588.88, + "end": 2588.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 2588.92, + "end": 2589.04, + "probability": 1.0 + }, + { + "word": " some", + "start": 2589.04, + "end": 2589.14, + "probability": 1.0 + }, + { + "word": " giveaways", + "start": 2589.14, + "end": 2589.62, + "probability": 0.99951171875 + }, + { + "word": " happening.", + "start": 2589.62, + "end": 2590.02, + "probability": 1.0 + } + ] + }, + { + "id": 1093, + "text": "Yeah.", + "start": 2590.52, + "end": 2590.88, + "words": [ + { + "word": " Yeah.", + "start": 2590.52, + "end": 2590.88, + "probability": 0.1885986328125 + } + ] + }, + { + "id": 1094, + "text": "", + "start": 2590.88, + "end": 2590.88, + "words": [] + }, + { + "id": 1095, + "text": "", + "start": 2590.88, + "end": 2590.88, + "words": [] + }, + { + "id": 1096, + "text": "And you'll have to be subscribed, and you'll have chances to win based on sharing it on", + "start": 2590.9, + "end": 2595.9, + "words": [ + { + "word": " And", + "start": 2590.9, + "end": 2590.96, + "probability": 0.1240234375 + }, + { + "word": " you'll", + "start": 2590.96, + "end": 2591.08, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 2591.08, + "end": 2591.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2591.28, + "end": 2591.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 2591.5, + "end": 2591.62, + "probability": 1.0 + }, + { + "word": " subscribed,", + "start": 2591.62, + "end": 2592.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 2592.2, + "end": 2592.68, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 2592.68, + "end": 2593.36, + "probability": 0.953125 + }, + { + "word": " have", + "start": 2593.36, + "end": 2593.54, + "probability": 1.0 + }, + { + "word": " chances", + "start": 2593.54, + "end": 2593.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2593.84, + "end": 2594.02, + "probability": 1.0 + }, + { + "word": " win", + "start": 2594.02, + "end": 2594.22, + "probability": 1.0 + }, + { + "word": " based", + "start": 2594.22, + "end": 2594.52, + "probability": 0.99658203125 + }, + { + "word": " on", + "start": 2594.52, + "end": 2594.86, + "probability": 1.0 + }, + { + "word": " sharing", + "start": 2594.86, + "end": 2595.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 2595.7, + "end": 2595.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 2595.8, + "end": 2595.9, + "probability": 1.0 + } + ] + }, + { + "id": 1097, + "text": "Facebook or Twitter or basically spamming your friends.", + "start": 2595.9, + "end": 2599.12, + "words": [ + { + "word": " Facebook", + "start": 2595.9, + "end": 2596.24, + "probability": 1.0 + }, + { + "word": " or", + "start": 2596.24, + "end": 2596.52, + "probability": 0.99365234375 + }, + { + "word": " Twitter", + "start": 2596.52, + "end": 2596.76, + "probability": 1.0 + }, + { + "word": " or", + "start": 2596.76, + "end": 2597.26, + "probability": 0.9169921875 + }, + { + "word": " basically", + "start": 2597.26, + "end": 2598.18, + "probability": 0.83447265625 + }, + { + "word": " spamming", + "start": 2598.18, + "end": 2598.8, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2598.8, + "end": 2598.88, + "probability": 1.0 + }, + { + "word": " friends.", + "start": 2598.88, + "end": 2599.12, + "probability": 1.0 + } + ] + }, + { + "id": 1098, + "text": "We're going to give away stuff that I really don't want us to give away, because I want", + "start": 2599.4, + "end": 2602.8, + "words": [ + { + "word": " We're", + "start": 2599.4, + "end": 2599.7, + "probability": 1.0 + }, + { + "word": " going", + "start": 2599.7, + "end": 2599.74, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2599.74, + "end": 2599.88, + "probability": 1.0 + }, + { + "word": " give", + "start": 2599.88, + "end": 2599.96, + "probability": 0.99951171875 + }, + { + "word": " away", + "start": 2599.96, + "end": 2600.12, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2600.12, + "end": 2600.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 2600.36, + "end": 2600.58, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2600.58, + "end": 2600.74, + "probability": 0.9853515625 + }, + { + "word": " really", + "start": 2600.74, + "end": 2601.14, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2601.14, + "end": 2601.56, + "probability": 1.0 + }, + { + "word": " want", + "start": 2601.56, + "end": 2601.7, + "probability": 1.0 + }, + { + "word": " us", + "start": 2601.7, + "end": 2601.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 2601.86, + "end": 2601.96, + "probability": 1.0 + }, + { + "word": " give", + "start": 2601.96, + "end": 2602.06, + "probability": 1.0 + }, + { + "word": " away,", + "start": 2602.06, + "end": 2602.26, + "probability": 1.0 + }, + { + "word": " because", + "start": 2602.32, + "end": 2602.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 2602.44, + "end": 2602.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 2602.6, + "end": 2602.8, + "probability": 0.978515625 + } + ] + }, + { + "id": 1099, + "text": "it.", + "start": 2602.8, + "end": 2602.98, + "words": [ + { + "word": " it.", + "start": 2602.8, + "end": 2602.98, + "probability": 1.0 + } + ] + }, + { + "id": 1100, + "text": "Yeah.", + "start": 2604.22, + "end": 2604.58, + "words": [ + { + "word": " Yeah.", + "start": 2604.22, + "end": 2604.58, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1101, + "text": "Well, you can't have it.", + "start": 2604.6, + "end": 2605.44, + "words": [ + { + "word": " Well,", + "start": 2604.6, + "end": 2604.74, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2604.82, + "end": 2605.04, + "probability": 1.0 + }, + { + "word": " can't", + "start": 2605.04, + "end": 2605.26, + "probability": 0.990234375 + }, + { + "word": " have", + "start": 2605.26, + "end": 2605.36, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2605.36, + "end": 2605.44, + "probability": 1.0 + } + ] + }, + { + "id": 1102, + "text": "I know.", + "start": 2605.54, + "end": 2605.76, + "words": [ + { + "word": " I", + "start": 2605.54, + "end": 2605.66, + "probability": 0.99853515625 + }, + { + "word": " know.", + "start": 2605.66, + "end": 2605.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1103, + "text": "I'm not even qualified to enter.", + "start": 2605.8, + "end": 2606.78, + "words": [ + { + "word": " I'm", + "start": 2605.8, + "end": 2605.9, + "probability": 1.0 + }, + { + "word": " not", + "start": 2605.9, + "end": 2605.92, + "probability": 1.0 + }, + { + "word": " even", + "start": 2605.92, + "end": 2606.08, + "probability": 1.0 + }, + { + "word": " qualified", + "start": 2606.08, + "end": 2606.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 2606.38, + "end": 2606.62, + "probability": 1.0 + }, + { + "word": " enter.", + "start": 2606.62, + "end": 2606.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1104, + "text": "Nope.", + "start": 2606.86, + "end": 2607.08, + "words": [ + { + "word": " Nope.", + "start": 2606.86, + "end": 2607.08, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1105, + "text": "Nope.", + "start": 2607.12, + "end": 2607.44, + "words": [ + { + "word": " Nope.", + "start": 2607.12, + "end": 2607.44, + "probability": 0.9658203125 + } + ] + }, + { + "id": 1106, + "text": "You cannot qualify at all, even if you quit.", + "start": 2607.48, + "end": 2610.9, + "words": [ + { + "word": " You", + "start": 2607.48, + "end": 2607.68, + "probability": 0.9990234375 + }, + { + "word": " cannot", + "start": 2607.68, + "end": 2607.98, + "probability": 0.99951171875 + }, + { + "word": " qualify", + "start": 2607.98, + "end": 2608.5, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2608.5, + "end": 2608.98, + "probability": 0.99951171875 + }, + { + "word": " all,", + "start": 2608.98, + "end": 2609.3, + "probability": 1.0 + }, + { + "word": " even", + "start": 2609.4, + "end": 2610.46, + "probability": 1.0 + }, + { + "word": " if", + "start": 2610.46, + "end": 2610.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 2610.6, + "end": 2610.66, + "probability": 1.0 + }, + { + "word": " quit.", + "start": 2610.66, + "end": 2610.9, + "probability": 1.0 + } + ] + }, + { + "id": 1107, + "text": "Just forever banned.", + "start": 2611.72, + "end": 2612.76, + "words": [ + { + "word": " Just", + "start": 2611.72, + "end": 2612.08, + "probability": 0.9990234375 + }, + { + "word": " forever", + "start": 2612.08, + "end": 2612.34, + "probability": 1.0 + }, + { + "word": " banned.", + "start": 2612.34, + "end": 2612.76, + "probability": 0.76513671875 + } + ] + }, + { + "id": 1108, + "text": "You're banned from winning.", + "start": 2613.18, + "end": 2614.38, + "words": [ + { + "word": " You're", + "start": 2613.18, + "end": 2613.54, + "probability": 0.91162109375 + }, + { + "word": " banned", + "start": 2613.54, + "end": 2613.78, + "probability": 1.0 + }, + { + "word": " from", + "start": 2613.78, + "end": 2614.16, + "probability": 0.99951171875 + }, + { + "word": " winning.", + "start": 2614.16, + "end": 2614.38, + "probability": 1.0 + } + ] + }, + { + "id": 1109, + "text": "Also, I want to take a moment to thank our sponsor for this hour.", + "start": 2615.4399999999996, + "end": 2618.52, + "words": [ + { + "word": " Also,", + "start": 2615.4399999999996, + "end": 2615.7999999999997, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 2615.7999999999997, + "end": 2616.16, + "probability": 1.0 + }, + { + "word": " want", + "start": 2616.16, + "end": 2616.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2616.28, + "end": 2616.4, + "probability": 1.0 + }, + { + "word": " take", + "start": 2616.4, + "end": 2616.5, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2616.5, + "end": 2616.56, + "probability": 1.0 + }, + { + "word": " moment", + "start": 2616.56, + "end": 2616.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2616.72, + "end": 2616.9, + "probability": 0.9921875 + }, + { + "word": " thank", + "start": 2616.9, + "end": 2617.46, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 2617.46, + "end": 2617.78, + "probability": 1.0 + }, + { + "word": " sponsor", + "start": 2617.78, + "end": 2618.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 2618.1, + "end": 2618.24, + "probability": 1.0 + }, + { + "word": " this", + "start": 2618.24, + "end": 2618.38, + "probability": 0.98291015625 + }, + { + "word": " hour.", + "start": 2618.38, + "end": 2618.52, + "probability": 0.9921875 + } + ] + }, + { + "id": 1110, + "text": "That is Perfection Auto Works.", + "start": 2618.62, + "end": 2620.56, + "words": [ + { + "word": " That", + "start": 2618.62, + "end": 2618.74, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 2618.74, + "end": 2618.98, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 2618.98, + "end": 2620.1, + "probability": 0.99609375 + }, + { + "word": " Auto", + "start": 2620.1, + "end": 2620.24, + "probability": 0.7861328125 + }, + { + "word": " Works.", + "start": 2620.24, + "end": 2620.56, + "probability": 0.87158203125 + } + ] + }, + { + "id": 1111, + "text": "And they're a great sponsor, and you should thank them for helping keep us on the air.", + "start": 2621.52, + "end": 2625.72, + "words": [ + { + "word": " And", + "start": 2621.52, + "end": 2621.92, + "probability": 0.69091796875 + }, + { + "word": " they're", + "start": 2621.92, + "end": 2622.32, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 2622.32, + "end": 2622.36, + "probability": 1.0 + }, + { + "word": " great", + "start": 2622.36, + "end": 2622.52, + "probability": 1.0 + }, + { + "word": " sponsor,", + "start": 2622.52, + "end": 2622.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 2622.88, + "end": 2623.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 2623.0, + "end": 2623.08, + "probability": 1.0 + }, + { + "word": " should", + "start": 2623.08, + "end": 2623.26, + "probability": 1.0 + }, + { + "word": " thank", + "start": 2623.26, + "end": 2623.82, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 2623.82, + "end": 2624.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 2624.12, + "end": 2624.36, + "probability": 1.0 + }, + { + "word": " helping", + "start": 2624.36, + "end": 2624.62, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2624.62, + "end": 2624.9, + "probability": 1.0 + }, + { + "word": " us", + "start": 2624.9, + "end": 2625.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 2625.22, + "end": 2625.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2625.48, + "end": 2625.56, + "probability": 0.80517578125 + }, + { + "word": " air.", + "start": 2625.56, + "end": 2625.72, + "probability": 1.0 + } + ] + }, + { + "id": 1112, + "text": "You can do so by visiting their website at perfectionautoworks.com or giving them a call.", + "start": 2625.78, + "end": 2630.46, + "words": [ + { + "word": " You", + "start": 2625.78, + "end": 2625.9, + "probability": 0.98876953125 + }, + { + "word": " can", + "start": 2625.9, + "end": 2626.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 2626.0, + "end": 2626.1, + "probability": 1.0 + }, + { + "word": " so", + "start": 2626.1, + "end": 2626.28, + "probability": 1.0 + }, + { + "word": " by", + "start": 2626.28, + "end": 2626.42, + "probability": 1.0 + }, + { + "word": " visiting", + "start": 2626.42, + "end": 2626.68, + "probability": 1.0 + }, + { + "word": " their", + "start": 2626.68, + "end": 2626.92, + "probability": 1.0 + }, + { + "word": " website", + "start": 2626.92, + "end": 2627.2, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2627.2, + "end": 2628.02, + "probability": 0.99951171875 + }, + { + "word": " perfectionautoworks", + "start": 2628.02, + "end": 2629.26, + "probability": 0.94970703125 + }, + { + "word": ".com", + "start": 2629.26, + "end": 2629.68, + "probability": 1.0 + }, + { + "word": " or", + "start": 2629.68, + "end": 2629.86, + "probability": 0.9384765625 + }, + { + "word": " giving", + "start": 2629.86, + "end": 2630.0, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 2630.0, + "end": 2630.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 2630.2, + "end": 2630.28, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2630.28, + "end": 2630.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1113, + "text": "Also, we want to say thank you to our Patreon sponsors.", + "start": 2632.58, + "end": 2636.06, + "words": [ + { + "word": " Also,", + "start": 2632.58, + "end": 2632.98, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2632.98, + "end": 2633.38, + "probability": 1.0 + }, + { + "word": " want", + "start": 2633.38, + "end": 2633.9, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2633.9, + "end": 2634.08, + "probability": 1.0 + }, + { + "word": " say", + "start": 2634.08, + "end": 2634.26, + "probability": 1.0 + }, + { + "word": " thank", + "start": 2634.26, + "end": 2634.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 2634.46, + "end": 2634.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 2634.62, + "end": 2634.76, + "probability": 1.0 + }, + { + "word": " our", + "start": 2634.76, + "end": 2635.1, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 2635.1, + "end": 2635.76, + "probability": 0.99951171875 + }, + { + "word": " sponsors.", + "start": 2635.76, + "end": 2636.06, + "probability": 1.0 + } + ] + }, + { + "id": 1114, + "text": "They're very, very important to us.", + "start": 2636.36, + "end": 2637.72, + "words": [ + { + "word": " They're", + "start": 2636.36, + "end": 2636.58, + "probability": 1.0 + }, + { + "word": " very,", + "start": 2636.58, + "end": 2636.82, + "probability": 1.0 + }, + { + "word": " very", + "start": 2636.88, + "end": 2637.02, + "probability": 1.0 + }, + { + "word": " important", + "start": 2637.02, + "end": 2637.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 2637.3, + "end": 2637.52, + "probability": 1.0 + }, + { + "word": " us.", + "start": 2637.52, + "end": 2637.72, + "probability": 1.0 + } + ] + }, + { + "id": 1115, + "text": "They can donate as little as a dollar a month, and they help keep the show on the air.", + "start": 2638.54, + "end": 2643.12, + "words": [ + { + "word": " They", + "start": 2638.54, + "end": 2638.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 2638.94, + "end": 2639.26, + "probability": 1.0 + }, + { + "word": " donate", + "start": 2639.26, + "end": 2639.6, + "probability": 1.0 + }, + { + "word": " as", + "start": 2639.6, + "end": 2639.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 2639.78, + "end": 2639.92, + "probability": 1.0 + }, + { + "word": " as", + "start": 2639.92, + "end": 2640.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2640.08, + "end": 2640.12, + "probability": 0.89599609375 + }, + { + "word": " dollar", + "start": 2640.12, + "end": 2640.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 2640.36, + "end": 2640.5, + "probability": 1.0 + }, + { + "word": " month,", + "start": 2640.5, + "end": 2640.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 2640.86, + "end": 2641.2, + "probability": 1.0 + }, + { + "word": " they", + "start": 2641.2, + "end": 2641.88, + "probability": 1.0 + }, + { + "word": " help", + "start": 2641.88, + "end": 2642.18, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2642.18, + "end": 2642.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2642.38, + "end": 2642.54, + "probability": 0.9931640625 + }, + { + "word": " show", + "start": 2642.54, + "end": 2642.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 2642.72, + "end": 2642.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2642.88, + "end": 2642.98, + "probability": 1.0 + }, + { + "word": " air.", + "start": 2642.98, + "end": 2643.12, + "probability": 1.0 + } + ] + }, + { + "id": 1116, + "text": "Go to gurushow.com slash Patreon.", + "start": 2643.2, + "end": 2645.22, + "words": [ + { + "word": " Go", + "start": 2643.2, + "end": 2643.34, + "probability": 0.97021484375 + }, + { + "word": " to", + "start": 2643.34, + "end": 2643.58, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 2643.58, + "end": 2644.16, + "probability": 0.82763671875 + }, + { + "word": ".com", + "start": 2644.16, + "end": 2644.66, + "probability": 1.0 + }, + { + "word": " slash", + "start": 2644.66, + "end": 2644.84, + "probability": 0.90185546875 + }, + { + "word": " Patreon.", + "start": 2644.84, + "end": 2645.22, + "probability": 0.93701171875 + } + ] + }, + { + "id": 1117, + "text": "The new link that now works.", + "start": 2645.68, + "end": 2647.44, + "words": [ + { + "word": " The", + "start": 2645.68, + "end": 2646.08, + "probability": 0.998046875 + }, + { + "word": " new", + "start": 2646.08, + "end": 2646.3, + "probability": 1.0 + }, + { + "word": " link", + "start": 2646.3, + "end": 2646.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2646.56, + "end": 2646.8, + "probability": 0.9990234375 + }, + { + "word": " now", + "start": 2646.8, + "end": 2647.12, + "probability": 1.0 + }, + { + "word": " works.", + "start": 2647.12, + "end": 2647.44, + "probability": 1.0 + } + ] + }, + { + "id": 1118, + "text": "Definitely works.", + "start": 2647.76, + "end": 2648.6, + "words": [ + { + "word": " Definitely", + "start": 2647.76, + "end": 2648.16, + "probability": 0.98486328125 + }, + { + "word": " works.", + "start": 2648.16, + "end": 2648.6, + "probability": 1.0 + } + ] + }, + { + "id": 1119, + "text": "Or patreon.com slash gurushow.", + "start": 2648.76, + "end": 2650.26, + "words": [ + { + "word": " Or", + "start": 2648.76, + "end": 2648.92, + "probability": 0.994140625 + }, + { + "word": " patreon", + "start": 2648.92, + "end": 2649.26, + "probability": 0.99072265625 + }, + { + "word": ".com", + "start": 2649.26, + "end": 2649.62, + "probability": 1.0 + }, + { + "word": " slash", + "start": 2649.62, + "end": 2649.78, + "probability": 1.0 + }, + { + "word": " gurushow.", + "start": 2649.78, + "end": 2650.26, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1120, + "text": "And, yeah, thanks for listening very much to The Computer Guru Show.", + "start": 2651.2999999999997, + "end": 2655.34, + "words": [ + { + "word": " And,", + "start": 2651.2999999999997, + "end": 2651.74, + "probability": 0.75341796875 + }, + { + "word": " yeah,", + "start": 2651.74, + "end": 2652.18, + "probability": 0.970703125 + }, + { + "word": " thanks", + "start": 2652.82, + "end": 2653.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 2653.14, + "end": 2653.54, + "probability": 0.953125 + }, + { + "word": " listening", + "start": 2653.54, + "end": 2653.84, + "probability": 1.0 + }, + { + "word": " very", + "start": 2653.84, + "end": 2654.14, + "probability": 0.9931640625 + }, + { + "word": " much", + "start": 2654.14, + "end": 2654.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 2654.46, + "end": 2654.6, + "probability": 0.87353515625 + }, + { + "word": " The", + "start": 2654.6, + "end": 2654.78, + "probability": 0.58349609375 + }, + { + "word": " Computer", + "start": 2654.78, + "end": 2655.06, + "probability": 0.9990234375 + }, + { + "word": " Guru", + "start": 2655.06, + "end": 2655.16, + "probability": 0.83837890625 + }, + { + "word": " Show.", + "start": 2655.16, + "end": 2655.34, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1121, + "text": "Oh, by the way, we'll be back in about six minutes.", + "start": 2655.5, + "end": 2658.06, + "words": [ + { + "word": " Oh,", + "start": 2655.5, + "end": 2655.9, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 2655.92, + "end": 2656.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2656.0, + "end": 2656.08, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2656.08, + "end": 2656.3, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 2656.34, + "end": 2656.72, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2656.72, + "end": 2656.78, + "probability": 1.0 + }, + { + "word": " back", + "start": 2656.78, + "end": 2657.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 2657.0, + "end": 2657.12, + "probability": 1.0 + }, + { + "word": " about", + "start": 2657.12, + "end": 2657.24, + "probability": 1.0 + }, + { + "word": " six", + "start": 2657.24, + "end": 2657.54, + "probability": 0.994140625 + }, + { + "word": " minutes.", + "start": 2657.54, + "end": 2658.06, + "probability": 1.0 + } + ] + }, + { + "id": 1122, + "text": "Welcome back to The Computer Guru Show, hour number two.", + "start": 2671.16, + "end": 2673.72, + "words": [ + { + "word": " Welcome", + "start": 2671.16, + "end": 2671.6, + "probability": 0.921875 + }, + { + "word": " back", + "start": 2671.6, + "end": 2672.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2672.04, + "end": 2672.3, + "probability": 1.0 + }, + { + "word": " The", + "start": 2672.3, + "end": 2672.38, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 2672.38, + "end": 2672.62, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 2672.62, + "end": 2672.8, + "probability": 0.99951171875 + }, + { + "word": " Show,", + "start": 2672.8, + "end": 2672.98, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2673.1, + "end": 2673.3, + "probability": 0.953125 + }, + { + "word": " number", + "start": 2673.3, + "end": 2673.48, + "probability": 1.0 + }, + { + "word": " two.", + "start": 2673.48, + "end": 2673.72, + "probability": 1.0 + } + ] + }, + { + "id": 1123, + "text": "What?", + "start": 2674.26, + "end": 2674.7, + "words": [ + { + "word": " What?", + "start": 2674.26, + "end": 2674.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1124, + "text": "What?", + "start": 2674.78, + "end": 2675.18, + "words": [ + { + "word": " What?", + "start": 2674.78, + "end": 2675.18, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1125, + "text": "What?", + "start": 2675.48, + "end": 2675.92, + "words": [ + { + "word": " What?", + "start": 2675.48, + "end": 2675.92, + "probability": 0.92822265625 + } + ] + }, + { + "id": 1126, + "text": "I know.", + "start": 2676.04, + "end": 2676.72, + "words": [ + { + "word": " I", + "start": 2676.04, + "end": 2676.34, + "probability": 0.9736328125 + }, + { + "word": " know.", + "start": 2676.34, + "end": 2676.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1127, + "text": "That's right.", + "start": 2676.76, + "end": 2677.06, + "words": [ + { + "word": " That's", + "start": 2676.76, + "end": 2676.9, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 2676.9, + "end": 2677.06, + "probability": 1.0 + } + ] + }, + { + "id": 1128, + "text": "Wait, what?", + "start": 2677.28, + "end": 2677.9, + "words": [ + { + "word": " Wait,", + "start": 2677.28, + "end": 2677.72, + "probability": 0.9990234375 + }, + { + "word": " what?", + "start": 2677.78, + "end": 2677.9, + "probability": 1.0 + } + ] + }, + { + "id": 1129, + "text": "It's been years since we've had a two-hour show.", + "start": 2678.0, + "end": 2680.44, + "words": [ + { + "word": " It's", + "start": 2678.0, + "end": 2678.32, + "probability": 0.99853515625 + }, + { + "word": " been", + "start": 2678.32, + "end": 2678.46, + "probability": 1.0 + }, + { + "word": " years", + "start": 2678.46, + "end": 2678.9, + "probability": 0.99951171875 + }, + { + "word": " since", + "start": 2678.9, + "end": 2679.18, + "probability": 1.0 + }, + { + "word": " we've", + "start": 2679.18, + "end": 2679.4, + "probability": 1.0 + }, + { + "word": " had", + "start": 2679.4, + "end": 2679.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 2679.54, + "end": 2679.64, + "probability": 0.9931640625 + }, + { + "word": " two", + "start": 2679.64, + "end": 2679.84, + "probability": 1.0 + }, + { + "word": "-hour", + "start": 2679.84, + "end": 2680.18, + "probability": 0.98828125 + }, + { + "word": " show.", + "start": 2680.18, + "end": 2680.44, + "probability": 1.0 + } + ] + }, + { + "id": 1130, + "text": "Yeah.", + "start": 2681.0, + "end": 2681.32, + "words": [ + { + "word": " Yeah.", + "start": 2681.0, + "end": 2681.32, + "probability": 0.0006189346313476562 + } + ] + }, + { + "id": 1131, + "text": "And here we are.", + "start": 2681.32, + "end": 2681.84, + "words": [ + { + "word": " And", + "start": 2681.32, + "end": 2681.42, + "probability": 0.8212890625 + }, + { + "word": " here", + "start": 2681.42, + "end": 2681.6, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 2681.6, + "end": 2681.74, + "probability": 1.0 + }, + { + "word": " are.", + "start": 2681.74, + "end": 2681.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 1132, + "text": "That's crazy.", + "start": 2681.86, + "end": 2682.56, + "words": [ + { + "word": " That's", + "start": 2681.86, + "end": 2682.02, + "probability": 0.9990234375 + }, + { + "word": " crazy.", + "start": 2682.02, + "end": 2682.56, + "probability": 1.0 + } + ] + }, + { + "id": 1133, + "text": "And if you want to give us a call, 790-2040.", + "start": 2683.66, + "end": 2686.34, + "words": [ + { + "word": " And", + "start": 2683.66, + "end": 2683.98, + "probability": 0.9931640625 + }, + { + "word": " if", + "start": 2683.98, + "end": 2684.3, + "probability": 0.99072265625 + }, + { + "word": " you", + "start": 2684.3, + "end": 2684.62, + "probability": 1.0 + }, + { + "word": " want", + "start": 2684.62, + "end": 2684.76, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2684.76, + "end": 2684.82, + "probability": 1.0 + }, + { + "word": " give", + "start": 2684.82, + "end": 2684.92, + "probability": 1.0 + }, + { + "word": " us", + "start": 2684.92, + "end": 2685.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2685.06, + "end": 2685.12, + "probability": 1.0 + }, + { + "word": " call,", + "start": 2685.12, + "end": 2685.26, + "probability": 1.0 + }, + { + "word": " 790", + "start": 2685.36, + "end": 2685.76, + "probability": 0.99609375 + }, + { + "word": "-2040.", + "start": 2685.76, + "end": 2686.34, + "probability": 0.95947265625 + } + ] + }, + { + "id": 1134, + "text": "That's what you should do.", + "start": 2686.44, + "end": 2687.28, + "words": [ + { + "word": " That's", + "start": 2686.44, + "end": 2686.74, + "probability": 1.0 + }, + { + "word": " what", + "start": 2686.74, + "end": 2686.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 2686.78, + "end": 2686.94, + "probability": 1.0 + }, + { + "word": " should", + "start": 2686.94, + "end": 2687.08, + "probability": 1.0 + }, + { + "word": " do.", + "start": 2687.08, + "end": 2687.28, + "probability": 1.0 + } + ] + }, + { + "id": 1135, + "text": "You can talk to us on our all-new shiny second hour.", + "start": 2687.38, + "end": 2689.7, + "words": [ + { + "word": " You", + "start": 2687.38, + "end": 2687.44, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 2687.44, + "end": 2687.58, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2687.58, + "end": 2687.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 2687.78, + "end": 2687.92, + "probability": 1.0 + }, + { + "word": " us", + "start": 2687.92, + "end": 2688.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 2688.08, + "end": 2688.16, + "probability": 0.99560546875 + }, + { + "word": " our", + "start": 2688.16, + "end": 2688.28, + "probability": 1.0 + }, + { + "word": " all", + "start": 2688.28, + "end": 2688.5, + "probability": 1.0 + }, + { + "word": "-new", + "start": 2688.5, + "end": 2688.62, + "probability": 0.8916015625 + }, + { + "word": " shiny", + "start": 2688.62, + "end": 2688.94, + "probability": 0.7421875 + }, + { + "word": " second", + "start": 2688.94, + "end": 2689.38, + "probability": 0.9921875 + }, + { + "word": " hour.", + "start": 2689.38, + "end": 2689.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1136, + "text": "Right.", + "start": 2689.84, + "end": 2690.0, + "words": [ + { + "word": " Right.", + "start": 2689.84, + "end": 2690.0, + "probability": 0.88916015625 + } + ] + }, + { + "id": 1137, + "text": "Is it shinier in here?", + "start": 2691.0, + "end": 2692.12, + "words": [ + { + "word": " Is", + "start": 2691.0, + "end": 2691.32, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2691.32, + "end": 2691.58, + "probability": 0.9990234375 + }, + { + "word": " shinier", + "start": 2691.58, + "end": 2691.88, + "probability": 0.916015625 + }, + { + "word": " in", + "start": 2691.88, + "end": 2692.0, + "probability": 1.0 + }, + { + "word": " here?", + "start": 2692.0, + "end": 2692.12, + "probability": 1.0 + } + ] + }, + { + "id": 1138, + "text": "It is.", + "start": 2692.32, + "end": 2692.82, + "words": [ + { + "word": " It", + "start": 2692.32, + "end": 2692.64, + "probability": 1.0 + }, + { + "word": " is.", + "start": 2692.64, + "end": 2692.82, + "probability": 1.0 + } + ] + }, + { + "id": 1139, + "text": "It looks a little brighter.", + "start": 2692.82, + "end": 2693.38, + "words": [ + { + "word": " It", + "start": 2692.82, + "end": 2692.9, + "probability": 0.9990234375 + }, + { + "word": " looks", + "start": 2692.9, + "end": 2693.02, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2693.02, + "end": 2693.12, + "probability": 1.0 + }, + { + "word": " little", + "start": 2693.12, + "end": 2693.16, + "probability": 1.0 + }, + { + "word": " brighter.", + "start": 2693.16, + "end": 2693.38, + "probability": 1.0 + } + ] + }, + { + "id": 1140, + "text": "It looks a little bit brighter, yeah.", + "start": 2693.56, + "end": 2694.58, + "words": [ + { + "word": " It", + "start": 2693.56, + "end": 2693.6, + "probability": 0.99560546875 + }, + { + "word": " looks", + "start": 2693.6, + "end": 2693.72, + "probability": 0.9287109375 + }, + { + "word": " a", + "start": 2693.72, + "end": 2693.9, + "probability": 1.0 + }, + { + "word": " little", + "start": 2693.9, + "end": 2693.98, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2693.98, + "end": 2694.12, + "probability": 0.99951171875 + }, + { + "word": " brighter,", + "start": 2694.12, + "end": 2694.38, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 2694.46, + "end": 2694.58, + "probability": 0.93603515625 + } + ] + }, + { + "id": 1141, + "text": "I think it's because that light bulb came back on.", + "start": 2694.94, + "end": 2696.64, + "words": [ + { + "word": " I", + "start": 2694.94, + "end": 2695.26, + "probability": 1.0 + }, + { + "word": " think", + "start": 2695.26, + "end": 2695.42, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2695.42, + "end": 2695.52, + "probability": 1.0 + }, + { + "word": " because", + "start": 2695.52, + "end": 2695.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 2695.62, + "end": 2695.76, + "probability": 0.9990234375 + }, + { + "word": " light", + "start": 2695.76, + "end": 2695.98, + "probability": 1.0 + }, + { + "word": " bulb", + "start": 2695.98, + "end": 2696.14, + "probability": 0.99853515625 + }, + { + "word": " came", + "start": 2696.14, + "end": 2696.3, + "probability": 1.0 + }, + { + "word": " back", + "start": 2696.3, + "end": 2696.48, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2696.48, + "end": 2696.64, + "probability": 1.0 + } + ] + }, + { + "id": 1142, + "text": "But nevertheless, second hour.", + "start": 2696.7, + "end": 2698.58, + "words": [ + { + "word": " But", + "start": 2696.7, + "end": 2696.86, + "probability": 0.9345703125 + }, + { + "word": " nevertheless,", + "start": 2696.86, + "end": 2697.76, + "probability": 0.94140625 + }, + { + "word": " second", + "start": 2698.06, + "end": 2698.3, + "probability": 0.99951171875 + }, + { + "word": " hour.", + "start": 2698.3, + "end": 2698.58, + "probability": 1.0 + } + ] + }, + { + "id": 1143, + "text": "Second hour.", + "start": 2698.68, + "end": 2699.22, + "words": [ + { + "word": " Second", + "start": 2698.68, + "end": 2698.94, + "probability": 0.99609375 + }, + { + "word": " hour.", + "start": 2698.94, + "end": 2699.22, + "probability": 1.0 + } + ] + }, + { + "id": 1144, + "text": "So 790-2040 if you want to be part of the show.", + "start": 2699.9999999999995, + "end": 2701.9, + "words": [ + { + "word": " So", + "start": 2699.9999999999995, + "end": 2700.3199999999997, + "probability": 0.99755859375 + }, + { + "word": " 790", + "start": 2700.3199999999997, + "end": 2700.64, + "probability": 0.90576171875 + }, + { + "word": "-2040", + "start": 2700.64, + "end": 2701.12, + "probability": 1.0 + }, + { + "word": " if", + "start": 2701.12, + "end": 2701.26, + "probability": 0.5166015625 + }, + { + "word": " you", + "start": 2701.26, + "end": 2701.32, + "probability": 1.0 + }, + { + "word": " want", + "start": 2701.32, + "end": 2701.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 2701.42, + "end": 2701.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 2701.48, + "end": 2701.5, + "probability": 1.0 + }, + { + "word": " part", + "start": 2701.5, + "end": 2701.64, + "probability": 0.72802734375 + }, + { + "word": " of", + "start": 2701.64, + "end": 2701.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 2701.76, + "end": 2701.76, + "probability": 1.0 + }, + { + "word": " show.", + "start": 2701.76, + "end": 2701.9, + "probability": 1.0 + } + ] + }, + { + "id": 1145, + "text": "Give us a call.", + "start": 2702.14, + "end": 2702.82, + "words": [ + { + "word": " Give", + "start": 2702.14, + "end": 2702.46, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2702.46, + "end": 2702.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 2702.6, + "end": 2702.68, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2702.68, + "end": 2702.82, + "probability": 1.0 + } + ] + }, + { + "id": 1146, + "text": "We're going to talk a lot in this particular, the second hour here, about privacy.", + "start": 2703.92, + "end": 2710.26, + "words": [ + { + "word": " We're", + "start": 2703.92, + "end": 2704.24, + "probability": 0.99560546875 + }, + { + "word": " going", + "start": 2704.24, + "end": 2704.3, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2704.3, + "end": 2704.32, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2704.32, + "end": 2704.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 2704.48, + "end": 2705.06, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 2705.06, + "end": 2705.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 2705.48, + "end": 2706.22, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 2706.22, + "end": 2706.38, + "probability": 1.0 + }, + { + "word": " particular,", + "start": 2706.38, + "end": 2706.72, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2706.98, + "end": 2707.46, + "probability": 0.810546875 + }, + { + "word": " second", + "start": 2707.46, + "end": 2707.88, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2707.88, + "end": 2708.12, + "probability": 1.0 + }, + { + "word": " here,", + "start": 2708.12, + "end": 2708.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 2708.34, + "end": 2708.72, + "probability": 1.0 + }, + { + "word": " privacy.", + "start": 2708.72, + "end": 2710.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1147, + "text": "And censorship.", + "start": 2710.9, + "end": 2712.1, + "words": [ + { + "word": " And", + "start": 2710.9, + "end": 2711.28, + "probability": 0.2254638671875 + }, + { + "word": " censorship.", + "start": 2711.28, + "end": 2712.1, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1148, + "text": "And how those two kind of correlate with one another.", + "start": 2713.2200000000003, + "end": 2715.8, + "words": [ + { + "word": " And", + "start": 2713.01, + "end": 2713.32, + "probability": 0.99755859375 + }, + { + "word": " how", + "start": 2713.32, + "end": 2713.58, + "probability": 1.0 + }, + { + "word": " those", + "start": 2713.58, + "end": 2713.78, + "probability": 1.0 + }, + { + "word": " two", + "start": 2713.78, + "end": 2714.04, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2714.04, + "end": 2714.42, + "probability": 0.98291015625 + }, + { + "word": " of", + "start": 2714.42, + "end": 2714.54, + "probability": 1.0 + }, + { + "word": " correlate", + "start": 2714.54, + "end": 2715.08, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 2715.08, + "end": 2715.36, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 2715.36, + "end": 2715.54, + "probability": 1.0 + }, + { + "word": " another.", + "start": 2715.54, + "end": 2715.8, + "probability": 1.0 + } + ] + }, + { + "id": 1149, + "text": "And it really came to light because of a less than wonderful event that happened.", + "start": 2717.1600000000003, + "end": 2724.62, + "words": [ + { + "word": " And", + "start": 2716.87, + "end": 2717.18, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2717.18, + "end": 2717.5, + "probability": 0.98779296875 + }, + { + "word": " really", + "start": 2717.5, + "end": 2718.2, + "probability": 1.0 + }, + { + "word": " came", + "start": 2718.2, + "end": 2718.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 2718.44, + "end": 2718.54, + "probability": 1.0 + }, + { + "word": " light", + "start": 2718.54, + "end": 2718.66, + "probability": 1.0 + }, + { + "word": " because", + "start": 2718.66, + "end": 2718.94, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 2718.94, + "end": 2719.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 2719.3, + "end": 2720.78, + "probability": 0.97021484375 + }, + { + "word": " less", + "start": 2720.78, + "end": 2721.54, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 2721.54, + "end": 2721.8, + "probability": 0.962890625 + }, + { + "word": " wonderful", + "start": 2721.8, + "end": 2722.52, + "probability": 0.99169921875 + }, + { + "word": " event", + "start": 2722.52, + "end": 2723.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 2723.9, + "end": 2724.14, + "probability": 1.0 + }, + { + "word": " happened.", + "start": 2724.14, + "end": 2724.62, + "probability": 1.0 + } + ] + }, + { + "id": 1150, + "text": "We'll say a tragedy.", + "start": 2724.86, + "end": 2726.28, + "words": [ + { + "word": " We'll", + "start": 2724.86, + "end": 2725.48, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 2725.48, + "end": 2725.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2725.62, + "end": 2725.82, + "probability": 0.99951171875 + }, + { + "word": " tragedy.", + "start": 2725.82, + "end": 2726.28, + "probability": 1.0 + } + ] + }, + { + "id": 1151, + "text": "So as you may know, you should know by now, the Orlando shooting caused a very interesting", + "start": 2727.5200000000004, + "end": 2737.1, + "words": [ + { + "word": " So", + "start": 2727.5200000000004, + "end": 2728.1400000000003, + "probability": 0.982421875 + }, + { + "word": " as", + "start": 2728.1400000000003, + "end": 2728.76, + "probability": 0.327392578125 + }, + { + "word": " you", + "start": 2728.76, + "end": 2729.4, + "probability": 1.0 + }, + { + "word": " may", + "start": 2729.4, + "end": 2729.76, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2729.76, + "end": 2730.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 2730.26, + "end": 2731.54, + "probability": 0.998046875 + }, + { + "word": " should", + "start": 2731.54, + "end": 2731.92, + "probability": 1.0 + }, + { + "word": " know", + "start": 2731.92, + "end": 2732.1, + "probability": 1.0 + }, + { + "word": " by", + "start": 2732.1, + "end": 2732.26, + "probability": 1.0 + }, + { + "word": " now,", + "start": 2732.26, + "end": 2732.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2732.64, + "end": 2733.38, + "probability": 0.99755859375 + }, + { + "word": " Orlando", + "start": 2733.38, + "end": 2733.68, + "probability": 1.0 + }, + { + "word": " shooting", + "start": 2733.68, + "end": 2733.96, + "probability": 0.99951171875 + }, + { + "word": " caused", + "start": 2733.96, + "end": 2734.7, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2734.7, + "end": 2735.02, + "probability": 1.0 + }, + { + "word": " very", + "start": 2735.02, + "end": 2736.62, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 2736.62, + "end": 2737.1, + "probability": 1.0 + } + ] + }, + { + "id": 1152, + "text": "set of things to happen on the internet.", + "start": 2737.1, + "end": 2739.28, + "words": [ + { + "word": " set", + "start": 2737.1, + "end": 2737.58, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2737.58, + "end": 2737.72, + "probability": 1.0 + }, + { + "word": " things", + "start": 2737.72, + "end": 2738.08, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2738.08, + "end": 2738.36, + "probability": 0.99951171875 + }, + { + "word": " happen", + "start": 2738.36, + "end": 2738.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 2738.64, + "end": 2738.9, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 2738.9, + "end": 2739.02, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2739.02, + "end": 2739.28, + "probability": 0.45703125 + } + ] + }, + { + "id": 1153, + "text": "As far as...", + "start": 2739.94, + "end": 2740.88, + "words": [ + { + "word": " As", + "start": 2739.94, + "end": 2740.56, + "probability": 0.9677734375 + }, + { + "word": " far", + "start": 2740.56, + "end": 2740.8, + "probability": 0.99560546875 + }, + { + "word": " as...", + "start": 2740.8, + "end": 2740.88, + "probability": 0.6416015625 + } + ] + }, + { + "id": 1154, + "text": "There are places that tout themselves to be...", + "start": 2740.9, + "end": 2746.04, + "words": [ + { + "word": " There", + "start": 2740.9, + "end": 2740.9, + "probability": 0.0276031494140625 + }, + { + "word": " are", + "start": 2740.9, + "end": 2741.06, + "probability": 0.99560546875 + }, + { + "word": " places", + "start": 2741.06, + "end": 2743.26, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2743.26, + "end": 2743.86, + "probability": 0.9970703125 + }, + { + "word": " tout", + "start": 2743.86, + "end": 2744.52, + "probability": 0.8642578125 + }, + { + "word": " themselves", + "start": 2744.52, + "end": 2744.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 2744.94, + "end": 2745.48, + "probability": 0.998046875 + }, + { + "word": " be...", + "start": 2745.48, + "end": 2746.04, + "probability": 0.5927734375 + } + ] + }, + { + "id": 1155, + "text": "What's their slogan?", + "start": 2746.96, + "end": 2747.66, + "words": [ + { + "word": " What's", + "start": 2746.96, + "end": 2747.4, + "probability": 0.9296875 + }, + { + "word": " their", + "start": 2747.4, + "end": 2747.4, + "probability": 0.99853515625 + }, + { + "word": " slogan?", + "start": 2747.4, + "end": 2747.66, + "probability": 1.0 + } + ] + }, + { + "id": 1156, + "text": "The front page of the internet.", + "start": 2747.9, + "end": 2749.2, + "words": [ + { + "word": " The", + "start": 2747.9, + "end": 2748.0, + "probability": 0.998046875 + }, + { + "word": " front", + "start": 2748.0, + "end": 2748.38, + "probability": 0.9931640625 + }, + { + "word": " page", + "start": 2748.38, + "end": 2748.7, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2748.7, + "end": 2748.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2748.96, + "end": 2749.04, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2749.04, + "end": 2749.2, + "probability": 0.53125 + } + ] + }, + { + "id": 1157, + "text": "The front page of the internet.", + "start": 2749.28, + "end": 2750.2, + "words": [ + { + "word": " The", + "start": 2749.28, + "end": 2749.38, + "probability": 0.7451171875 + }, + { + "word": " front", + "start": 2749.38, + "end": 2749.42, + "probability": 1.0 + }, + { + "word": " page", + "start": 2749.42, + "end": 2749.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 2749.74, + "end": 2749.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2749.92, + "end": 2749.98, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 2749.98, + "end": 2750.2, + "probability": 1.0 + } + ] + }, + { + "id": 1158, + "text": "Now, we've talked about Reddit before on this show.", + "start": 2750.32, + "end": 2752.48, + "words": [ + { + "word": " Now,", + "start": 2750.32, + "end": 2750.46, + "probability": 0.6259765625 + }, + { + "word": " we've", + "start": 2750.5, + "end": 2751.14, + "probability": 1.0 + }, + { + "word": " talked", + "start": 2751.14, + "end": 2751.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 2751.26, + "end": 2751.48, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2751.48, + "end": 2751.72, + "probability": 0.9970703125 + }, + { + "word": " before", + "start": 2751.72, + "end": 2751.96, + "probability": 1.0 + }, + { + "word": " on", + "start": 2751.96, + "end": 2752.16, + "probability": 1.0 + }, + { + "word": " this", + "start": 2752.16, + "end": 2752.3, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 2752.3, + "end": 2752.48, + "probability": 1.0 + } + ] + }, + { + "id": 1159, + "text": "And, you know, over the last couple of years, our views on Reddit have changed for sure.", + "start": 2752.78, + "end": 2758.18, + "words": [ + { + "word": " And,", + "start": 2752.78, + "end": 2753.18, + "probability": 0.927734375 + }, + { + "word": " you", + "start": 2753.18, + "end": 2753.34, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2753.34, + "end": 2753.48, + "probability": 1.0 + }, + { + "word": " over", + "start": 2753.54, + "end": 2753.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2753.9, + "end": 2754.14, + "probability": 1.0 + }, + { + "word": " last", + "start": 2754.14, + "end": 2754.32, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2754.32, + "end": 2754.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 2754.6, + "end": 2754.72, + "probability": 1.0 + }, + { + "word": " years,", + "start": 2754.72, + "end": 2754.94, + "probability": 1.0 + }, + { + "word": " our", + "start": 2755.16, + "end": 2756.02, + "probability": 0.99951171875 + }, + { + "word": " views", + "start": 2756.02, + "end": 2756.46, + "probability": 1.0 + }, + { + "word": " on", + "start": 2756.46, + "end": 2756.7, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2756.7, + "end": 2756.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 2756.92, + "end": 2757.08, + "probability": 1.0 + }, + { + "word": " changed", + "start": 2757.08, + "end": 2757.58, + "probability": 1.0 + }, + { + "word": " for", + "start": 2757.58, + "end": 2757.92, + "probability": 0.355712890625 + }, + { + "word": " sure.", + "start": 2757.92, + "end": 2758.18, + "probability": 1.0 + } + ] + }, + { + "id": 1160, + "text": "Because it used to be, when Reddit first started and we were first on it, it was like awesome", + "start": 2758.3, + "end": 2762.24, + "words": [ + { + "word": " Because", + "start": 2758.3, + "end": 2758.56, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2758.56, + "end": 2758.74, + "probability": 0.99951171875 + }, + { + "word": " used", + "start": 2758.74, + "end": 2758.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2758.92, + "end": 2759.06, + "probability": 1.0 + }, + { + "word": " be,", + "start": 2759.06, + "end": 2759.16, + "probability": 1.0 + }, + { + "word": " when", + "start": 2759.18, + "end": 2759.28, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2759.28, + "end": 2759.46, + "probability": 1.0 + }, + { + "word": " first", + "start": 2759.46, + "end": 2759.68, + "probability": 1.0 + }, + { + "word": " started", + "start": 2759.68, + "end": 2760.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 2760.1, + "end": 2760.26, + "probability": 0.984375 + }, + { + "word": " we", + "start": 2760.26, + "end": 2760.38, + "probability": 1.0 + }, + { + "word": " were", + "start": 2760.38, + "end": 2760.5, + "probability": 1.0 + }, + { + "word": " first", + "start": 2760.5, + "end": 2760.7, + "probability": 1.0 + }, + { + "word": " on", + "start": 2760.7, + "end": 2760.88, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2760.88, + "end": 2761.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 2761.1, + "end": 2761.58, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 2761.58, + "end": 2761.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 2761.7, + "end": 2761.86, + "probability": 0.76708984375 + }, + { + "word": " awesome", + "start": 2761.86, + "end": 2762.24, + "probability": 0.51171875 + } + ] + }, + { + "id": 1161, + "text": "and we're all for it.", + "start": 2762.24, + "end": 2763.06, + "words": [ + { + "word": " and", + "start": 2762.24, + "end": 2762.42, + "probability": 0.92822265625 + }, + { + "word": " we're", + "start": 2762.42, + "end": 2762.56, + "probability": 0.927734375 + }, + { + "word": " all", + "start": 2762.56, + "end": 2762.68, + "probability": 1.0 + }, + { + "word": " for", + "start": 2762.68, + "end": 2762.86, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2762.86, + "end": 2763.06, + "probability": 1.0 + } + ] + }, + { + "id": 1162, + "text": "But as they've grown and evolved, it's been leading inevitably to something like what", + "start": 2763.14, + "end": 2767.96, + "words": [ + { + "word": " But", + "start": 2763.14, + "end": 2763.26, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2763.26, + "end": 2763.9, + "probability": 0.99365234375 + }, + { + "word": " they've", + "start": 2763.9, + "end": 2764.14, + "probability": 1.0 + }, + { + "word": " grown", + "start": 2764.14, + "end": 2764.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 2764.36, + "end": 2764.62, + "probability": 1.0 + }, + { + "word": " evolved,", + "start": 2764.62, + "end": 2765.06, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2765.44, + "end": 2765.86, + "probability": 1.0 + }, + { + "word": " been", + "start": 2765.86, + "end": 2766.28, + "probability": 1.0 + }, + { + "word": " leading", + "start": 2766.28, + "end": 2766.64, + "probability": 1.0 + }, + { + "word": " inevitably", + "start": 2766.64, + "end": 2766.98, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 2766.98, + "end": 2767.36, + "probability": 1.0 + }, + { + "word": " something", + "start": 2767.36, + "end": 2767.58, + "probability": 1.0 + }, + { + "word": " like", + "start": 2767.58, + "end": 2767.82, + "probability": 1.0 + }, + { + "word": " what", + "start": 2767.82, + "end": 2767.96, + "probability": 1.0 + } + ] + }, + { + "id": 1163, + "text": "just happened.", + "start": 2767.96, + "end": 2768.46, + "words": [ + { + "word": " just", + "start": 2767.96, + "end": 2768.1, + "probability": 1.0 + }, + { + "word": " happened.", + "start": 2768.1, + "end": 2768.46, + "probability": 1.0 + } + ] + }, + { + "id": 1164, + "text": "Right.", + "start": 2768.8, + "end": 2769.24, + "words": [ + { + "word": " Right.", + "start": 2768.8, + "end": 2769.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1165, + "text": "Right.", + "start": 2769.24, + "end": 2769.42, + "words": [ + { + "word": " Right.", + "start": 2769.24, + "end": 2769.42, + "probability": 0.00034046173095703125 + } + ] + }, + { + "id": 1166, + "text": "So over the last couple of years...", + "start": 2769.42, + "end": 2770.74, + "words": [ + { + "word": " So", + "start": 2769.42, + "end": 2769.42, + "probability": 0.99560546875 + }, + { + "word": " over", + "start": 2769.42, + "end": 2769.74, + "probability": 0.484130859375 + }, + { + "word": " the", + "start": 2769.74, + "end": 2769.86, + "probability": 1.0 + }, + { + "word": " last", + "start": 2769.86, + "end": 2770.08, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2770.08, + "end": 2770.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 2770.3, + "end": 2770.46, + "probability": 1.0 + }, + { + "word": " years...", + "start": 2770.46, + "end": 2770.74, + "probability": 0.50439453125 + } + ] + }, + { + "id": 1167, + "text": "Right.", + "start": 2770.74, + "end": 2770.88, + "words": [ + { + "word": " Right.", + "start": 2770.74, + "end": 2770.88, + "probability": 0.58544921875 + } + ] + }, + { + "id": 1168, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1169, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1170, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1171, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1172, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1173, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1174, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1175, + "text": "", + "start": 2770.88, + "end": 2770.88, + "words": [] + }, + { + "id": 1176, + "text": "There's been a few management shakeups over at Reddit.", + "start": 2770.9, + "end": 2775.12, + "words": [ + { + "word": " There's", + "start": 2770.9, + "end": 2770.98, + "probability": 0.966796875 + }, + { + "word": " been", + "start": 2770.98, + "end": 2771.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 2771.18, + "end": 2771.68, + "probability": 0.99951171875 + }, + { + "word": " few", + "start": 2771.68, + "end": 2772.26, + "probability": 1.0 + }, + { + "word": " management", + "start": 2772.26, + "end": 2773.22, + "probability": 0.9990234375 + }, + { + "word": " shakeups", + "start": 2773.22, + "end": 2773.82, + "probability": 0.931640625 + }, + { + "word": " over", + "start": 2773.82, + "end": 2774.1, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2774.1, + "end": 2774.5, + "probability": 1.0 + }, + { + "word": " Reddit.", + "start": 2774.5, + "end": 2775.12, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1177, + "text": "And it's very interesting because it's sort of a...", + "start": 2776.58, + "end": 2778.98, + "words": [ + { + "word": " And", + "start": 2776.58, + "end": 2777.06, + "probability": 0.87158203125 + }, + { + "word": " it's", + "start": 2777.06, + "end": 2777.54, + "probability": 0.99755859375 + }, + { + "word": " very", + "start": 2777.54, + "end": 2777.68, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 2777.68, + "end": 2778.02, + "probability": 1.0 + }, + { + "word": " because", + "start": 2778.02, + "end": 2778.24, + "probability": 0.9501953125 + }, + { + "word": " it's", + "start": 2778.24, + "end": 2778.44, + "probability": 0.9931640625 + }, + { + "word": " sort", + "start": 2778.44, + "end": 2778.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2778.56, + "end": 2778.68, + "probability": 1.0 + }, + { + "word": " a...", + "start": 2778.68, + "end": 2778.98, + "probability": 0.46142578125 + } + ] + }, + { + "id": 1178, + "text": "At least in the beginning, it was very much a self-policing thing, right?", + "start": 2779.56, + "end": 2783.68, + "words": [ + { + "word": " At", + "start": 2779.56, + "end": 2780.04, + "probability": 0.90234375 + }, + { + "word": " least", + "start": 2780.04, + "end": 2780.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 2780.24, + "end": 2780.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2780.38, + "end": 2780.52, + "probability": 1.0 + }, + { + "word": " beginning,", + "start": 2780.52, + "end": 2780.78, + "probability": 1.0 + }, + { + "word": " it", + "start": 2780.84, + "end": 2780.92, + "probability": 1.0 + }, + { + "word": " was", + "start": 2780.92, + "end": 2781.0, + "probability": 1.0 + }, + { + "word": " very", + "start": 2781.0, + "end": 2781.18, + "probability": 0.994140625 + }, + { + "word": " much", + "start": 2781.18, + "end": 2781.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 2781.38, + "end": 2781.52, + "probability": 1.0 + }, + { + "word": " self", + "start": 2781.52, + "end": 2781.88, + "probability": 1.0 + }, + { + "word": "-policing", + "start": 2781.88, + "end": 2782.36, + "probability": 0.9970703125 + }, + { + "word": " thing,", + "start": 2782.36, + "end": 2782.84, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2783.06, + "end": 2783.68, + "probability": 0.91455078125 + } + ] + }, + { + "id": 1179, + "text": "Where there are moderators of each of the particular subreddits or boards that are on", + "start": 2783.72, + "end": 2790.28, + "words": [ + { + "word": " Where", + "start": 2783.72, + "end": 2783.94, + "probability": 0.99658203125 + }, + { + "word": " there", + "start": 2783.94, + "end": 2786.18, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2786.18, + "end": 2786.42, + "probability": 1.0 + }, + { + "word": " moderators", + "start": 2786.42, + "end": 2787.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 2787.1, + "end": 2787.3, + "probability": 1.0 + }, + { + "word": " each", + "start": 2787.3, + "end": 2787.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 2787.46, + "end": 2787.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 2787.6, + "end": 2787.78, + "probability": 1.0 + }, + { + "word": " particular", + "start": 2787.78, + "end": 2788.34, + "probability": 0.99951171875 + }, + { + "word": " subreddits", + "start": 2788.34, + "end": 2789.32, + "probability": 0.99609375 + }, + { + "word": " or", + "start": 2789.32, + "end": 2789.42, + "probability": 0.9990234375 + }, + { + "word": " boards", + "start": 2789.42, + "end": 2789.78, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2789.78, + "end": 2790.0, + "probability": 1.0 + }, + { + "word": " are", + "start": 2790.0, + "end": 2790.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 2790.1, + "end": 2790.28, + "probability": 1.0 + } + ] + }, + { + "id": 1180, + "text": "there.", + "start": 2790.28, + "end": 2790.42, + "words": [ + { + "word": " there.", + "start": 2790.28, + "end": 2790.42, + "probability": 1.0 + } + ] + }, + { + "id": 1181, + "text": "And it was a rather democratic process for the most part as far as, you know, people", + "start": 2792.08, + "end": 2797.78, + "words": [ + { + "word": " And", + "start": 2792.08, + "end": 2792.56, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 2792.56, + "end": 2793.04, + "probability": 0.8662109375 + }, + { + "word": " was", + "start": 2793.04, + "end": 2793.58, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 2793.58, + "end": 2793.64, + "probability": 1.0 + }, + { + "word": " rather", + "start": 2793.64, + "end": 2794.12, + "probability": 1.0 + }, + { + "word": " democratic", + "start": 2794.12, + "end": 2794.46, + "probability": 0.9990234375 + }, + { + "word": " process", + "start": 2794.46, + "end": 2795.0, + "probability": 1.0 + }, + { + "word": " for", + "start": 2795.0, + "end": 2795.48, + "probability": 0.748046875 + }, + { + "word": " the", + "start": 2795.48, + "end": 2795.58, + "probability": 1.0 + }, + { + "word": " most", + "start": 2795.58, + "end": 2795.78, + "probability": 1.0 + }, + { + "word": " part", + "start": 2795.78, + "end": 2796.02, + "probability": 1.0 + }, + { + "word": " as", + "start": 2796.02, + "end": 2796.32, + "probability": 0.82080078125 + }, + { + "word": " far", + "start": 2796.32, + "end": 2796.5, + "probability": 1.0 + }, + { + "word": " as,", + "start": 2796.5, + "end": 2796.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 2796.86, + "end": 2797.14, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2797.14, + "end": 2797.3, + "probability": 1.0 + }, + { + "word": " people", + "start": 2797.3, + "end": 2797.78, + "probability": 1.0 + } + ] + }, + { + "id": 1182, + "text": "could put up their ideas.", + "start": 2797.78, + "end": 2798.82, + "words": [ + { + "word": " could", + "start": 2797.78, + "end": 2797.92, + "probability": 0.9853515625 + }, + { + "word": " put", + "start": 2797.92, + "end": 2798.08, + "probability": 1.0 + }, + { + "word": " up", + "start": 2798.08, + "end": 2798.22, + "probability": 1.0 + }, + { + "word": " their", + "start": 2798.22, + "end": 2798.34, + "probability": 1.0 + }, + { + "word": " ideas.", + "start": 2798.34, + "end": 2798.82, + "probability": 1.0 + } + ] + }, + { + "id": 1183, + "text": "And those ideas...", + "start": 2799.38, + "end": 2800.8, + "words": [ + { + "word": " And", + "start": 2799.38, + "end": 2799.86, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 2799.86, + "end": 2800.34, + "probability": 1.0 + }, + { + "word": " ideas...", + "start": 2800.34, + "end": 2800.8, + "probability": 0.60986328125 + } + ] + }, + { + "id": 1184, + "text": "And those ideas would then be either upvoted or downvoted by the community.", + "start": 2800.9, + "end": 2804.26, + "words": [ + { + "word": " And", + "start": 2800.9, + "end": 2800.98, + "probability": 0.0039825439453125 + }, + { + "word": " those", + "start": 2800.98, + "end": 2800.98, + "probability": 0.0103759765625 + }, + { + "word": " ideas", + "start": 2800.98, + "end": 2800.98, + "probability": 0.0005068778991699219 + }, + { + "word": " would", + "start": 2800.98, + "end": 2801.02, + "probability": 0.99462890625 + }, + { + "word": " then", + "start": 2801.02, + "end": 2801.54, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 2801.54, + "end": 2801.84, + "probability": 0.99853515625 + }, + { + "word": " either", + "start": 2801.84, + "end": 2802.28, + "probability": 0.98974609375 + }, + { + "word": " upvoted", + "start": 2802.28, + "end": 2802.78, + "probability": 0.97900390625 + }, + { + "word": " or", + "start": 2802.78, + "end": 2803.08, + "probability": 0.99658203125 + }, + { + "word": " downvoted", + "start": 2803.08, + "end": 2803.58, + "probability": 0.99755859375 + }, + { + "word": " by", + "start": 2803.58, + "end": 2803.8, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2803.8, + "end": 2803.92, + "probability": 1.0 + }, + { + "word": " community.", + "start": 2803.92, + "end": 2804.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1185, + "text": "And you can say, well, either I support this or I think this is terrible.", + "start": 2804.62, + "end": 2808.14, + "words": [ + { + "word": " And", + "start": 2804.62, + "end": 2805.08, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 2805.08, + "end": 2805.2, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 2805.2, + "end": 2805.38, + "probability": 0.9990234375 + }, + { + "word": " say,", + "start": 2805.38, + "end": 2805.74, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 2805.8, + "end": 2806.08, + "probability": 0.9404296875 + }, + { + "word": " either", + "start": 2806.18, + "end": 2806.42, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2806.42, + "end": 2806.76, + "probability": 0.99951171875 + }, + { + "word": " support", + "start": 2806.76, + "end": 2806.98, + "probability": 1.0 + }, + { + "word": " this", + "start": 2806.98, + "end": 2807.26, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2807.26, + "end": 2807.36, + "probability": 0.9287109375 + }, + { + "word": " I", + "start": 2807.36, + "end": 2807.42, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 2807.42, + "end": 2807.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 2807.58, + "end": 2807.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 2807.72, + "end": 2807.86, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 2807.86, + "end": 2808.14, + "probability": 1.0 + } + ] + }, + { + "id": 1186, + "text": "And, of course, the more that it has upvotes, the higher visibility it has on the site.", + "start": 2808.58, + "end": 2813.22, + "words": [ + { + "word": " And,", + "start": 2808.58, + "end": 2809.04, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2809.06, + "end": 2809.28, + "probability": 1.0 + }, + { + "word": " course,", + "start": 2809.28, + "end": 2809.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 2809.64, + "end": 2809.76, + "probability": 1.0 + }, + { + "word": " more", + "start": 2809.76, + "end": 2810.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2810.48, + "end": 2810.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 2810.68, + "end": 2810.78, + "probability": 1.0 + }, + { + "word": " has", + "start": 2810.78, + "end": 2810.92, + "probability": 1.0 + }, + { + "word": " upvotes,", + "start": 2810.92, + "end": 2811.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2811.38, + "end": 2811.48, + "probability": 1.0 + }, + { + "word": " higher", + "start": 2811.48, + "end": 2811.66, + "probability": 1.0 + }, + { + "word": " visibility", + "start": 2811.66, + "end": 2812.08, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2812.08, + "end": 2812.54, + "probability": 1.0 + }, + { + "word": " has", + "start": 2812.54, + "end": 2812.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 2812.74, + "end": 2812.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2812.9, + "end": 2812.96, + "probability": 1.0 + }, + { + "word": " site.", + "start": 2812.96, + "end": 2813.22, + "probability": 1.0 + } + ] + }, + { + "id": 1187, + "text": "And then the more downvotes it has, the less visibility it has on the site.", + "start": 2813.3, + "end": 2816.52, + "words": [ + { + "word": " And", + "start": 2813.3, + "end": 2813.56, + "probability": 1.0 + }, + { + "word": " then", + "start": 2813.56, + "end": 2813.76, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2813.76, + "end": 2814.06, + "probability": 0.98828125 + }, + { + "word": " more", + "start": 2814.06, + "end": 2814.28, + "probability": 1.0 + }, + { + "word": " downvotes", + "start": 2814.28, + "end": 2814.68, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2814.68, + "end": 2814.8, + "probability": 1.0 + }, + { + "word": " has,", + "start": 2814.8, + "end": 2814.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2815.02, + "end": 2815.1, + "probability": 1.0 + }, + { + "word": " less", + "start": 2815.1, + "end": 2815.26, + "probability": 1.0 + }, + { + "word": " visibility", + "start": 2815.26, + "end": 2815.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 2815.62, + "end": 2815.94, + "probability": 1.0 + }, + { + "word": " has", + "start": 2815.94, + "end": 2816.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 2816.12, + "end": 2816.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2816.24, + "end": 2816.32, + "probability": 1.0 + }, + { + "word": " site.", + "start": 2816.32, + "end": 2816.52, + "probability": 1.0 + } + ] + }, + { + "id": 1188, + "text": "And even that, even though that particular segment of the population, right, the entire", + "start": 2817.7999999999997, + "end": 2826.06, + "words": [ + { + "word": " And", + "start": 2817.7999999999997, + "end": 2818.2599999999998, + "probability": 0.9990234375 + }, + { + "word": " even", + "start": 2818.2599999999998, + "end": 2818.72, + "probability": 0.99853515625 + }, + { + "word": " that,", + "start": 2818.72, + "end": 2818.98, + "probability": 0.9921875 + }, + { + "word": " even", + "start": 2819.1, + "end": 2819.86, + "probability": 1.0 + }, + { + "word": " though", + "start": 2819.86, + "end": 2820.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 2820.08, + "end": 2820.28, + "probability": 1.0 + }, + { + "word": " particular", + "start": 2820.28, + "end": 2820.68, + "probability": 1.0 + }, + { + "word": " segment", + "start": 2820.68, + "end": 2822.7, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2822.7, + "end": 2823.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 2823.02, + "end": 2823.12, + "probability": 1.0 + }, + { + "word": " population,", + "start": 2823.12, + "end": 2823.64, + "probability": 1.0 + }, + { + "word": " right,", + "start": 2824.02, + "end": 2824.5, + "probability": 0.475830078125 + }, + { + "word": " the", + "start": 2824.58, + "end": 2824.84, + "probability": 0.99951171875 + }, + { + "word": " entire", + "start": 2824.84, + "end": 2826.06, + "probability": 1.0 + } + ] + }, + { + "id": 1189, + "text": "site has a definite political leaning.", + "start": 2826.06, + "end": 2829.46, + "words": [ + { + "word": " site", + "start": 2826.06, + "end": 2826.54, + "probability": 1.0 + }, + { + "word": " has", + "start": 2826.54, + "end": 2827.6, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 2827.6, + "end": 2827.92, + "probability": 1.0 + }, + { + "word": " definite", + "start": 2827.92, + "end": 2828.42, + "probability": 1.0 + }, + { + "word": " political", + "start": 2828.42, + "end": 2828.66, + "probability": 1.0 + }, + { + "word": " leaning.", + "start": 2828.66, + "end": 2829.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1190, + "text": "And it's pretty obvious in the stuff that you see.", + "start": 2830.9, + "end": 2833.16, + "words": [ + { + "word": " And", + "start": 2830.9, + "end": 2830.98, + "probability": 0.8857421875 + }, + { + "word": " it's", + "start": 2830.98, + "end": 2831.56, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 2831.56, + "end": 2831.86, + "probability": 0.99951171875 + }, + { + "word": " obvious", + "start": 2831.86, + "end": 2832.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 2832.24, + "end": 2832.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 2832.46, + "end": 2832.54, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 2832.54, + "end": 2832.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2832.7, + "end": 2832.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 2832.84, + "end": 2832.94, + "probability": 1.0 + }, + { + "word": " see.", + "start": 2832.94, + "end": 2833.16, + "probability": 1.0 + } + ] + }, + { + "id": 1191, + "text": "And that part was bothersome for us, you know, the last time we talked about Reddit was more", + "start": 2834.56, + "end": 2839.84, + "words": [ + { + "word": " And", + "start": 2834.56, + "end": 2834.96, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2834.96, + "end": 2835.36, + "probability": 1.0 + }, + { + "word": " part", + "start": 2835.36, + "end": 2835.54, + "probability": 1.0 + }, + { + "word": " was", + "start": 2835.54, + "end": 2835.74, + "probability": 1.0 + }, + { + "word": " bothersome", + "start": 2835.74, + "end": 2836.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 2836.24, + "end": 2836.42, + "probability": 1.0 + }, + { + "word": " us,", + "start": 2836.42, + "end": 2836.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 2836.68, + "end": 2836.8, + "probability": 0.98388671875 + }, + { + "word": " know,", + "start": 2836.8, + "end": 2837.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 2837.0, + "end": 2838.18, + "probability": 0.71533203125 + }, + { + "word": " last", + "start": 2838.18, + "end": 2838.68, + "probability": 1.0 + }, + { + "word": " time", + "start": 2838.68, + "end": 2838.8, + "probability": 1.0 + }, + { + "word": " we", + "start": 2838.8, + "end": 2838.88, + "probability": 1.0 + }, + { + "word": " talked", + "start": 2838.88, + "end": 2839.02, + "probability": 1.0 + }, + { + "word": " about", + "start": 2839.02, + "end": 2839.16, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2839.16, + "end": 2839.34, + "probability": 0.90625 + }, + { + "word": " was", + "start": 2839.34, + "end": 2839.46, + "probability": 0.84326171875 + }, + { + "word": " more", + "start": 2839.46, + "end": 2839.84, + "probability": 1.0 + } + ] + }, + { + "id": 1192, + "text": "than a year ago as far as the problems seen there.", + "start": 2839.84, + "end": 2843.7, + "words": [ + { + "word": " than", + "start": 2839.84, + "end": 2839.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2839.96, + "end": 2840.02, + "probability": 1.0 + }, + { + "word": " year", + "start": 2840.02, + "end": 2840.16, + "probability": 1.0 + }, + { + "word": " ago", + "start": 2840.16, + "end": 2840.4, + "probability": 1.0 + }, + { + "word": " as", + "start": 2840.4, + "end": 2841.34, + "probability": 0.350830078125 + }, + { + "word": " far", + "start": 2841.34, + "end": 2842.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 2842.3, + "end": 2842.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2842.52, + "end": 2842.68, + "probability": 1.0 + }, + { + "word": " problems", + "start": 2842.68, + "end": 2843.22, + "probability": 0.8740234375 + }, + { + "word": " seen", + "start": 2843.22, + "end": 2843.5, + "probability": 0.9990234375 + }, + { + "word": " there.", + "start": 2843.5, + "end": 2843.7, + "probability": 1.0 + } + ] + }, + { + "id": 1193, + "text": "But the Orlando shooting brought something else completely to light.", + "start": 2843.84, + "end": 2847.64, + "words": [ + { + "word": " But", + "start": 2843.84, + "end": 2844.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 2844.06, + "end": 2844.36, + "probability": 0.998046875 + }, + { + "word": " Orlando", + "start": 2844.36, + "end": 2844.66, + "probability": 1.0 + }, + { + "word": " shooting", + "start": 2844.66, + "end": 2845.0, + "probability": 0.99951171875 + }, + { + "word": " brought", + "start": 2845.0, + "end": 2845.88, + "probability": 1.0 + }, + { + "word": " something", + "start": 2845.88, + "end": 2846.2, + "probability": 1.0 + }, + { + "word": " else", + "start": 2846.2, + "end": 2846.54, + "probability": 1.0 + }, + { + "word": " completely", + "start": 2846.54, + "end": 2847.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 2847.06, + "end": 2847.46, + "probability": 1.0 + }, + { + "word": " light.", + "start": 2847.46, + "end": 2847.64, + "probability": 0.96044921875 + } + ] + }, + { + "id": 1194, + "text": "There's a subreddit on there called News.", + "start": 2847.7, + "end": 2849.34, + "words": [ + { + "word": " There's", + "start": 2847.7, + "end": 2847.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2847.86, + "end": 2847.96, + "probability": 1.0 + }, + { + "word": " subreddit", + "start": 2847.96, + "end": 2848.22, + "probability": 0.99267578125 + }, + { + "word": " on", + "start": 2848.22, + "end": 2848.36, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 2848.36, + "end": 2848.48, + "probability": 1.0 + }, + { + "word": " called", + "start": 2848.48, + "end": 2848.72, + "probability": 1.0 + }, + { + "word": " News.", + "start": 2848.72, + "end": 2849.34, + "probability": 0.98095703125 + } + ] + }, + { + "id": 1195, + "text": "And there's some other ones on there like World News and there's...", + "start": 2850.2599999999998, + "end": 2853.34, + "words": [ + { + "word": " And", + "start": 2850.2599999999998, + "end": 2850.66, + "probability": 0.99853515625 + }, + { + "word": " there's", + "start": 2850.66, + "end": 2851.06, + "probability": 0.982421875 + }, + { + "word": " some", + "start": 2851.06, + "end": 2851.4, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 2851.4, + "end": 2851.52, + "probability": 0.982421875 + }, + { + "word": " ones", + "start": 2851.52, + "end": 2851.66, + "probability": 1.0 + }, + { + "word": " on", + "start": 2851.66, + "end": 2851.82, + "probability": 1.0 + }, + { + "word": " there", + "start": 2851.82, + "end": 2851.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 2851.94, + "end": 2852.1, + "probability": 0.978515625 + }, + { + "word": " World", + "start": 2852.1, + "end": 2852.36, + "probability": 0.99951171875 + }, + { + "word": " News", + "start": 2852.36, + "end": 2852.64, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 2852.64, + "end": 2852.9, + "probability": 0.0316162109375 + }, + { + "word": " there's...", + "start": 2852.9, + "end": 2853.34, + "probability": 0.8154296875 + } + ] + }, + { + "id": 1196, + "text": "News is one of the default subreddits.", + "start": 2853.34, + "end": 2855.04, + "words": [ + { + "word": " News", + "start": 2853.34, + "end": 2853.66, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 2853.66, + "end": 2853.84, + "probability": 1.0 + }, + { + "word": " one", + "start": 2853.84, + "end": 2854.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 2854.0, + "end": 2854.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 2854.08, + "end": 2854.16, + "probability": 1.0 + }, + { + "word": " default", + "start": 2854.16, + "end": 2854.48, + "probability": 1.0 + }, + { + "word": " subreddits.", + "start": 2854.48, + "end": 2855.04, + "probability": 1.0 + } + ] + }, + { + "id": 1197, + "text": "So when you first create an account, you're already subscribed to it.", + "start": 2855.04, + "end": 2858.06, + "words": [ + { + "word": " So", + "start": 2855.04, + "end": 2855.16, + "probability": 0.9765625 + }, + { + "word": " when", + "start": 2855.16, + "end": 2855.22, + "probability": 0.9033203125 + }, + { + "word": " you", + "start": 2855.22, + "end": 2855.32, + "probability": 1.0 + }, + { + "word": " first", + "start": 2855.32, + "end": 2855.52, + "probability": 1.0 + }, + { + "word": " create", + "start": 2855.52, + "end": 2855.76, + "probability": 1.0 + }, + { + "word": " an", + "start": 2855.76, + "end": 2855.88, + "probability": 1.0 + }, + { + "word": " account,", + "start": 2855.88, + "end": 2856.14, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2856.38, + "end": 2856.98, + "probability": 1.0 + }, + { + "word": " already", + "start": 2856.98, + "end": 2857.26, + "probability": 1.0 + }, + { + "word": " subscribed", + "start": 2857.26, + "end": 2857.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 2857.56, + "end": 2857.9, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2857.9, + "end": 2858.06, + "probability": 1.0 + } + ] + }, + { + "id": 1198, + "text": "Right.", + "start": 2858.2, + "end": 2858.48, + "words": [ + { + "word": " Right.", + "start": 2858.2, + "end": 2858.48, + "probability": 0.94140625 + } + ] + }, + { + "id": 1199, + "text": "Same with World News.", + "start": 2858.52, + "end": 2859.32, + "words": [ + { + "word": " Same", + "start": 2858.52, + "end": 2858.74, + "probability": 0.95703125 + }, + { + "word": " with", + "start": 2858.74, + "end": 2858.92, + "probability": 0.99951171875 + }, + { + "word": " World", + "start": 2858.92, + "end": 2859.12, + "probability": 0.99462890625 + }, + { + "word": " News.", + "start": 2859.12, + "end": 2859.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1200, + "text": "Yeah.", + "start": 2859.44, + "end": 2859.62, + "words": [ + { + "word": " Yeah.", + "start": 2859.44, + "end": 2859.62, + "probability": 0.8994140625 + } + ] + }, + { + "id": 1201, + "text": "And it's designed so that the community can take things that it thinks are newsworthy,", + "start": 2861.08, + "end": 2865.64, + "words": [ + { + "word": " And", + "start": 2861.08, + "end": 2861.56, + "probability": 0.734375 + }, + { + "word": " it's", + "start": 2861.56, + "end": 2862.04, + "probability": 0.9970703125 + }, + { + "word": " designed", + "start": 2862.04, + "end": 2862.3, + "probability": 1.0 + }, + { + "word": " so", + "start": 2862.3, + "end": 2862.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 2862.62, + "end": 2862.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2862.8, + "end": 2862.98, + "probability": 1.0 + }, + { + "word": " community", + "start": 2862.98, + "end": 2863.3, + "probability": 1.0 + }, + { + "word": " can", + "start": 2863.3, + "end": 2863.74, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 2863.74, + "end": 2864.38, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2864.38, + "end": 2864.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 2864.66, + "end": 2864.8, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2864.8, + "end": 2864.9, + "probability": 1.0 + }, + { + "word": " thinks", + "start": 2864.9, + "end": 2865.06, + "probability": 1.0 + }, + { + "word": " are", + "start": 2865.06, + "end": 2865.2, + "probability": 1.0 + }, + { + "word": " newsworthy,", + "start": 2865.2, + "end": 2865.64, + "probability": 1.0 + } + ] + }, + { + "id": 1202, + "text": "put them, submit them to Reddit, and then Reddit will either upvote them or downvote", + "start": 2865.78, + "end": 2869.96, + "words": [ + { + "word": " put", + "start": 2865.78, + "end": 2865.94, + "probability": 0.2415771484375 + }, + { + "word": " them,", + "start": 2865.94, + "end": 2866.16, + "probability": 1.0 + }, + { + "word": " submit", + "start": 2866.22, + "end": 2866.56, + "probability": 1.0 + }, + { + "word": " them", + "start": 2866.56, + "end": 2866.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2866.84, + "end": 2867.16, + "probability": 1.0 + }, + { + "word": " Reddit,", + "start": 2867.16, + "end": 2867.78, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 2867.92, + "end": 2868.16, + "probability": 1.0 + }, + { + "word": " then", + "start": 2868.16, + "end": 2868.3, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2868.3, + "end": 2868.54, + "probability": 1.0 + }, + { + "word": " will", + "start": 2868.54, + "end": 2868.68, + "probability": 1.0 + }, + { + "word": " either", + "start": 2868.68, + "end": 2868.9, + "probability": 0.8291015625 + }, + { + "word": " upvote", + "start": 2868.9, + "end": 2869.4, + "probability": 0.99609375 + }, + { + "word": " them", + "start": 2869.4, + "end": 2869.54, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2869.54, + "end": 2869.64, + "probability": 1.0 + }, + { + "word": " downvote", + "start": 2869.64, + "end": 2869.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1203, + "text": "them for visibility.", + "start": 2869.96, + "end": 2870.6, + "words": [ + { + "word": " them", + "start": 2869.96, + "end": 2870.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 2870.14, + "end": 2870.32, + "probability": 1.0 + }, + { + "word": " visibility.", + "start": 2870.32, + "end": 2870.6, + "probability": 1.0 + } + ] + }, + { + "id": 1204, + "text": "So if it's something that is getting a lot of coverage, it should very rapidly make it", + "start": 2871.0, + "end": 2877.46, + "words": [ + { + "word": " So", + "start": 2871.0, + "end": 2871.3, + "probability": 0.95703125 + }, + { + "word": " if", + "start": 2871.3, + "end": 2871.82, + "probability": 0.884765625 + }, + { + "word": " it's", + "start": 2871.82, + "end": 2872.74, + "probability": 1.0 + }, + { + "word": " something", + "start": 2872.74, + "end": 2873.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 2873.12, + "end": 2873.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 2873.36, + "end": 2873.52, + "probability": 1.0 + }, + { + "word": " getting", + "start": 2873.52, + "end": 2873.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 2873.76, + "end": 2874.36, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2874.36, + "end": 2874.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 2874.72, + "end": 2874.88, + "probability": 1.0 + }, + { + "word": " coverage,", + "start": 2874.88, + "end": 2875.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 2875.48, + "end": 2875.64, + "probability": 1.0 + }, + { + "word": " should", + "start": 2875.64, + "end": 2875.96, + "probability": 1.0 + }, + { + "word": " very", + "start": 2875.96, + "end": 2876.52, + "probability": 1.0 + }, + { + "word": " rapidly", + "start": 2876.52, + "end": 2876.98, + "probability": 1.0 + }, + { + "word": " make", + "start": 2876.98, + "end": 2877.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 2877.34, + "end": 2877.46, + "probability": 1.0 + } + ] + }, + { + "id": 1205, + "text": "to the front page where that's what you see as soon as you log into Reddit.", + "start": 2877.46, + "end": 2881.48, + "words": [ + { + "word": " to", + "start": 2877.46, + "end": 2877.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2877.58, + "end": 2877.6, + "probability": 1.0 + }, + { + "word": " front", + "start": 2877.6, + "end": 2877.8, + "probability": 1.0 + }, + { + "word": " page", + "start": 2877.8, + "end": 2878.08, + "probability": 1.0 + }, + { + "word": " where", + "start": 2878.08, + "end": 2878.74, + "probability": 0.73291015625 + }, + { + "word": " that's", + "start": 2878.74, + "end": 2879.08, + "probability": 1.0 + }, + { + "word": " what", + "start": 2879.08, + "end": 2879.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 2879.18, + "end": 2879.44, + "probability": 1.0 + }, + { + "word": " see", + "start": 2879.44, + "end": 2879.78, + "probability": 1.0 + }, + { + "word": " as", + "start": 2879.78, + "end": 2880.26, + "probability": 1.0 + }, + { + "word": " soon", + "start": 2880.26, + "end": 2880.42, + "probability": 1.0 + }, + { + "word": " as", + "start": 2880.42, + "end": 2880.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 2880.56, + "end": 2880.66, + "probability": 1.0 + }, + { + "word": " log", + "start": 2880.66, + "end": 2880.9, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2880.9, + "end": 2881.14, + "probability": 0.79541015625 + }, + { + "word": " Reddit.", + "start": 2881.14, + "end": 2881.48, + "probability": 1.0 + } + ] + }, + { + "id": 1206, + "text": "And in the past, many news stories have actually broken on Reddit first.", + "start": 2881.64, + "end": 2885.28, + "words": [ + { + "word": " And", + "start": 2881.64, + "end": 2881.82, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2881.82, + "end": 2881.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 2881.94, + "end": 2882.0, + "probability": 1.0 + }, + { + "word": " past,", + "start": 2882.0, + "end": 2882.42, + "probability": 1.0 + }, + { + "word": " many", + "start": 2882.44, + "end": 2882.7, + "probability": 1.0 + }, + { + "word": " news", + "start": 2882.7, + "end": 2883.0, + "probability": 1.0 + }, + { + "word": " stories", + "start": 2883.0, + "end": 2883.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 2883.26, + "end": 2883.56, + "probability": 1.0 + }, + { + "word": " actually", + "start": 2883.56, + "end": 2883.84, + "probability": 1.0 + }, + { + "word": " broken", + "start": 2883.84, + "end": 2884.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 2884.18, + "end": 2884.7, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2884.7, + "end": 2884.98, + "probability": 1.0 + }, + { + "word": " first.", + "start": 2884.98, + "end": 2885.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1207, + "text": "Even before the news, the real news sites picked them up, people were reporting them", + "start": 2885.6, + "end": 2889.5, + "words": [ + { + "word": " Even", + "start": 2885.6, + "end": 2886.08, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 2886.08, + "end": 2886.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2886.38, + "end": 2886.58, + "probability": 1.0 + }, + { + "word": " news,", + "start": 2886.58, + "end": 2886.76, + "probability": 0.62548828125 + }, + { + "word": " the", + "start": 2886.8, + "end": 2886.94, + "probability": 1.0 + }, + { + "word": " real", + "start": 2886.94, + "end": 2887.16, + "probability": 0.99951171875 + }, + { + "word": " news", + "start": 2887.16, + "end": 2887.4, + "probability": 1.0 + }, + { + "word": " sites", + "start": 2887.4, + "end": 2887.7, + "probability": 1.0 + }, + { + "word": " picked", + "start": 2887.7, + "end": 2887.92, + "probability": 0.99755859375 + }, + { + "word": " them", + "start": 2887.92, + "end": 2888.06, + "probability": 1.0 + }, + { + "word": " up,", + "start": 2888.06, + "end": 2888.24, + "probability": 1.0 + }, + { + "word": " people", + "start": 2888.3, + "end": 2888.8, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 2888.8, + "end": 2888.98, + "probability": 1.0 + }, + { + "word": " reporting", + "start": 2888.98, + "end": 2889.32, + "probability": 1.0 + }, + { + "word": " them", + "start": 2889.32, + "end": 2889.5, + "probability": 1.0 + } + ] + }, + { + "id": 1208, + "text": "on Reddit.", + "start": 2889.5, + "end": 2889.86, + "words": [ + { + "word": " on", + "start": 2889.5, + "end": 2889.62, + "probability": 1.0 + }, + { + "word": " Reddit.", + "start": 2889.62, + "end": 2889.86, + "probability": 1.0 + } + ] + }, + { + "id": 1209, + "text": "Right.", + "start": 2890.0, + "end": 2890.48, + "words": [ + { + "word": " Right.", + "start": 2890.0, + "end": 2890.48, + "probability": 0.005519866943359375 + } + ] + }, + { + "id": 1210, + "text": "Right.", + "start": 2890.48, + "end": 2890.88, + "words": [ + { + "word": " Right.", + "start": 2890.48, + "end": 2890.88, + "probability": 0.08624267578125 + } + ] + }, + { + "id": 1211, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1212, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1213, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1214, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1215, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1216, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1217, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1218, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1219, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1220, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1221, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1222, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1223, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1224, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1225, + "text": "", + "start": 2890.88, + "end": 2890.88, + "words": [] + }, + { + "id": 1226, + "text": "They were posting them.", + "start": 2890.9, + "end": 2891.08, + "words": [ + { + "word": " They", + "start": 2890.9, + "end": 2891.0, + "probability": 0.03839111328125 + }, + { + "word": " were", + "start": 2891.0, + "end": 2891.0, + "probability": 0.02252197265625 + }, + { + "word": " posting", + "start": 2891.0, + "end": 2891.0, + "probability": 0.1534423828125 + }, + { + "word": " them.", + "start": 2891.0, + "end": 2891.08, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1227, + "text": "They had mega threads and live threads regarding the discussion of those events.", + "start": 2891.16, + "end": 2894.42, + "words": [ + { + "word": " They", + "start": 2891.16, + "end": 2891.26, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 2891.26, + "end": 2891.4, + "probability": 1.0 + }, + { + "word": " mega", + "start": 2891.4, + "end": 2891.68, + "probability": 0.8095703125 + }, + { + "word": " threads", + "start": 2891.68, + "end": 2891.98, + "probability": 0.8427734375 + }, + { + "word": " and", + "start": 2891.98, + "end": 2892.28, + "probability": 0.99951171875 + }, + { + "word": " live", + "start": 2892.28, + "end": 2892.5, + "probability": 1.0 + }, + { + "word": " threads", + "start": 2892.5, + "end": 2892.84, + "probability": 1.0 + }, + { + "word": " regarding", + "start": 2892.84, + "end": 2893.16, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2893.16, + "end": 2893.44, + "probability": 1.0 + }, + { + "word": " discussion", + "start": 2893.44, + "end": 2893.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 2893.76, + "end": 2894.04, + "probability": 1.0 + }, + { + "word": " those", + "start": 2894.04, + "end": 2894.18, + "probability": 1.0 + }, + { + "word": " events.", + "start": 2894.18, + "end": 2894.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1228, + "text": "Boston bombing comes to mind there.", + "start": 2894.48, + "end": 2896.52, + "words": [ + { + "word": " Boston", + "start": 2894.48, + "end": 2894.68, + "probability": 0.986328125 + }, + { + "word": " bombing", + "start": 2894.68, + "end": 2894.9, + "probability": 0.96533203125 + }, + { + "word": " comes", + "start": 2894.9, + "end": 2895.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 2895.14, + "end": 2895.28, + "probability": 1.0 + }, + { + "word": " mind", + "start": 2895.28, + "end": 2895.64, + "probability": 0.99609375 + }, + { + "word": " there.", + "start": 2895.64, + "end": 2896.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1229, + "text": "So when the Boston Marathon bombing happened, it happened first on Reddit as far as a large", + "start": 2896.68, + "end": 2904.86, + "words": [ + { + "word": " So", + "start": 2896.68, + "end": 2896.76, + "probability": 0.80126953125 + }, + { + "word": " when", + "start": 2896.76, + "end": 2898.0, + "probability": 0.8349609375 + }, + { + "word": " the", + "start": 2898.0, + "end": 2899.14, + "probability": 1.0 + }, + { + "word": " Boston", + "start": 2899.14, + "end": 2899.74, + "probability": 1.0 + }, + { + "word": " Marathon", + "start": 2899.74, + "end": 2900.08, + "probability": 0.998046875 + }, + { + "word": " bombing", + "start": 2900.08, + "end": 2900.3, + "probability": 0.99951171875 + }, + { + "word": " happened,", + "start": 2900.3, + "end": 2900.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 2900.8, + "end": 2901.0, + "probability": 1.0 + }, + { + "word": " happened", + "start": 2901.0, + "end": 2902.08, + "probability": 1.0 + }, + { + "word": " first", + "start": 2902.08, + "end": 2902.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 2902.56, + "end": 2903.06, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 2903.06, + "end": 2903.66, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2903.66, + "end": 2903.92, + "probability": 0.94287109375 + }, + { + "word": " far", + "start": 2903.92, + "end": 2904.1, + "probability": 1.0 + }, + { + "word": " as", + "start": 2904.1, + "end": 2904.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 2904.3, + "end": 2904.44, + "probability": 1.0 + }, + { + "word": " large", + "start": 2904.44, + "end": 2904.86, + "probability": 1.0 + } + ] + }, + { + "id": 1230, + "text": "scale noteworthiness.", + "start": 2904.86, + "end": 2908.06, + "words": [ + { + "word": " scale", + "start": 2904.86, + "end": 2905.34, + "probability": 0.275146484375 + }, + { + "word": " noteworthiness.", + "start": 2905.34, + "end": 2908.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1231, + "text": "Yeah.", + "start": 2908.34, + "end": 2908.44, + "words": [ + { + "word": " Yeah.", + "start": 2908.34, + "end": 2908.44, + "probability": 0.68359375 + } + ] + }, + { + "id": 1232, + "text": "People who were there were taking pictures and posting them on Reddit.", + "start": 2908.44, + "end": 2911.2, + "words": [ + { + "word": " People", + "start": 2908.44, + "end": 2908.58, + "probability": 0.9990234375 + }, + { + "word": " who", + "start": 2908.58, + "end": 2908.8, + "probability": 1.0 + }, + { + "word": " were", + "start": 2908.8, + "end": 2908.94, + "probability": 1.0 + }, + { + "word": " there", + "start": 2908.94, + "end": 2909.26, + "probability": 1.0 + }, + { + "word": " were", + "start": 2909.26, + "end": 2909.58, + "probability": 1.0 + }, + { + "word": " taking", + "start": 2909.58, + "end": 2909.84, + "probability": 1.0 + }, + { + "word": " pictures", + "start": 2909.84, + "end": 2910.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 2910.22, + "end": 2910.4, + "probability": 1.0 + }, + { + "word": " posting", + "start": 2910.4, + "end": 2910.7, + "probability": 1.0 + }, + { + "word": " them", + "start": 2910.7, + "end": 2910.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 2910.88, + "end": 2911.0, + "probability": 1.0 + }, + { + "word": " Reddit.", + "start": 2911.0, + "end": 2911.2, + "probability": 1.0 + } + ] + }, + { + "id": 1233, + "text": "Yeah.", + "start": 2911.58, + "end": 2912.06, + "words": [ + { + "word": " Yeah.", + "start": 2911.58, + "end": 2912.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1234, + "text": "It's a big deal.", + "start": 2912.12, + "end": 2913.18, + "words": [ + { + "word": " It's", + "start": 2912.12, + "end": 2912.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2912.34, + "end": 2912.72, + "probability": 0.98388671875 + }, + { + "word": " big", + "start": 2912.72, + "end": 2912.94, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 2912.94, + "end": 2913.18, + "probability": 1.0 + } + ] + }, + { + "id": 1235, + "text": "Now, what happened during the Orlando shooting was really depressing.", + "start": 2913.3, + "end": 2919.26, + "words": [ + { + "word": " Now,", + "start": 2913.3, + "end": 2913.52, + "probability": 0.99462890625 + }, + { + "word": " what", + "start": 2913.68, + "end": 2915.04, + "probability": 1.0 + }, + { + "word": " happened", + "start": 2915.04, + "end": 2915.42, + "probability": 1.0 + }, + { + "word": " during", + "start": 2915.42, + "end": 2915.56, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2915.56, + "end": 2915.7, + "probability": 1.0 + }, + { + "word": " Orlando", + "start": 2915.7, + "end": 2915.84, + "probability": 0.99951171875 + }, + { + "word": " shooting", + "start": 2915.84, + "end": 2916.24, + "probability": 1.0 + }, + { + "word": " was", + "start": 2916.24, + "end": 2917.58, + "probability": 1.0 + }, + { + "word": " really", + "start": 2917.58, + "end": 2918.76, + "probability": 1.0 + }, + { + "word": " depressing.", + "start": 2918.76, + "end": 2919.26, + "probability": 1.0 + } + ] + }, + { + "id": 1236, + "text": "It was that the officials, the moderators of Reddit were straight up deleting entries,", + "start": 2919.26, + "end": 2930.14, + "words": [ + { + "word": " It", + "start": 2919.26, + "end": 2919.7, + "probability": 0.0938720703125 + }, + { + "word": " was", + "start": 2919.7, + "end": 2920.14, + "probability": 0.92578125 + }, + { + "word": " that", + "start": 2920.14, + "end": 2920.2, + "probability": 0.9150390625 + }, + { + "word": " the", + "start": 2920.2, + "end": 2921.06, + "probability": 0.9990234375 + }, + { + "word": " officials,", + "start": 2921.06, + "end": 2922.44, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2922.62, + "end": 2922.88, + "probability": 1.0 + }, + { + "word": " moderators", + "start": 2922.88, + "end": 2923.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 2923.64, + "end": 2924.14, + "probability": 0.9990234375 + }, + { + "word": " Reddit", + "start": 2924.14, + "end": 2926.1, + "probability": 0.94873046875 + }, + { + "word": " were", + "start": 2926.1, + "end": 2926.46, + "probability": 0.87353515625 + }, + { + "word": " straight", + "start": 2926.46, + "end": 2927.56, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 2927.56, + "end": 2927.86, + "probability": 0.79052734375 + }, + { + "word": " deleting", + "start": 2927.86, + "end": 2928.2, + "probability": 1.0 + }, + { + "word": " entries,", + "start": 2928.2, + "end": 2930.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1237, + "text": "just censorship, just like you've been banned and banned people because someone made the", + "start": 2930.42, + "end": 2938.16, + "words": [ + { + "word": " just", + "start": 2930.42, + "end": 2930.86, + "probability": 1.0 + }, + { + "word": " censorship,", + "start": 2930.86, + "end": 2931.6, + "probability": 1.0 + }, + { + "word": " just", + "start": 2931.74, + "end": 2931.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 2931.98, + "end": 2932.2, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2932.2, + "end": 2932.88, + "probability": 0.9853515625 + }, + { + "word": " been", + "start": 2932.88, + "end": 2933.06, + "probability": 1.0 + }, + { + "word": " banned", + "start": 2933.06, + "end": 2933.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 2933.58, + "end": 2933.82, + "probability": 0.66064453125 + }, + { + "word": " banned", + "start": 2933.82, + "end": 2934.08, + "probability": 0.990234375 + }, + { + "word": " people", + "start": 2934.08, + "end": 2934.5, + "probability": 1.0 + }, + { + "word": " because", + "start": 2934.5, + "end": 2935.28, + "probability": 0.29638671875 + }, + { + "word": " someone", + "start": 2935.28, + "end": 2937.48, + "probability": 1.0 + }, + { + "word": " made", + "start": 2937.48, + "end": 2937.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2937.9, + "end": 2938.16, + "probability": 1.0 + } + ] + }, + { + "id": 1238, + "text": "association between Omar the shooter and ISIS because of the 911 call.", + "start": 2938.16, + "end": 2945.94, + "words": [ + { + "word": " association", + "start": 2938.16, + "end": 2939.56, + "probability": 0.998046875 + }, + { + "word": " between", + "start": 2939.56, + "end": 2940.52, + "probability": 1.0 + }, + { + "word": " Omar", + "start": 2940.52, + "end": 2942.08, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2942.08, + "end": 2942.5, + "probability": 0.822265625 + }, + { + "word": " shooter", + "start": 2942.5, + "end": 2942.76, + "probability": 0.91943359375 + }, + { + "word": " and", + "start": 2942.76, + "end": 2943.26, + "probability": 0.99951171875 + }, + { + "word": " ISIS", + "start": 2943.26, + "end": 2944.12, + "probability": 0.99560546875 + }, + { + "word": " because", + "start": 2944.12, + "end": 2944.76, + "probability": 0.8671875 + }, + { + "word": " of", + "start": 2944.76, + "end": 2944.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 2944.98, + "end": 2945.06, + "probability": 1.0 + }, + { + "word": " 911", + "start": 2945.06, + "end": 2945.38, + "probability": 0.78515625 + }, + { + "word": " call.", + "start": 2945.38, + "end": 2945.94, + "probability": 1.0 + } + ] + }, + { + "id": 1239, + "text": "They called it hate speech and banned the entire thread.", + "start": 2946.02, + "end": 2949.24, + "words": [ + { + "word": " They", + "start": 2946.02, + "end": 2946.22, + "probability": 0.99560546875 + }, + { + "word": " called", + "start": 2946.22, + "end": 2946.54, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2946.54, + "end": 2946.76, + "probability": 1.0 + }, + { + "word": " hate", + "start": 2946.76, + "end": 2946.96, + "probability": 0.99951171875 + }, + { + "word": " speech", + "start": 2946.96, + "end": 2947.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 2947.2, + "end": 2947.58, + "probability": 0.99267578125 + }, + { + "word": " banned", + "start": 2947.58, + "end": 2947.88, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2947.88, + "end": 2948.26, + "probability": 0.99462890625 + }, + { + "word": " entire", + "start": 2948.26, + "end": 2948.76, + "probability": 0.99853515625 + }, + { + "word": " thread.", + "start": 2948.76, + "end": 2949.24, + "probability": 0.483642578125 + } + ] + }, + { + "id": 1240, + "text": "Yeah.", + "start": 2949.26, + "end": 2949.78, + "words": [ + { + "word": " Yeah.", + "start": 2949.26, + "end": 2949.78, + "probability": 0.880859375 + } + ] + }, + { + "id": 1241, + "text": "They were just immediately deleting anything that made a reference to that.", + "start": 2949.86, + "end": 2953.16, + "words": [ + { + "word": " They", + "start": 2949.86, + "end": 2950.34, + "probability": 0.98681640625 + }, + { + "word": " were", + "start": 2950.34, + "end": 2950.46, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2950.46, + "end": 2950.62, + "probability": 0.99951171875 + }, + { + "word": " immediately", + "start": 2950.62, + "end": 2950.98, + "probability": 0.99853515625 + }, + { + "word": " deleting", + "start": 2950.98, + "end": 2951.58, + "probability": 0.99951171875 + }, + { + "word": " anything", + "start": 2951.58, + "end": 2951.92, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2951.92, + "end": 2952.24, + "probability": 0.9990234375 + }, + { + "word": " made", + "start": 2952.24, + "end": 2952.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2952.42, + "end": 2952.56, + "probability": 0.99853515625 + }, + { + "word": " reference", + "start": 2952.56, + "end": 2952.78, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2952.78, + "end": 2953.0, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2953.0, + "end": 2953.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1242, + "text": "So if they made a, even if somebody asked, you know, oh my, oh my, is this another, another", + "start": 2953.86, + "end": 2960.88, + "words": [ + { + "word": " So", + "start": 2953.86, + "end": 2954.34, + "probability": 0.8466796875 + }, + { + "word": " if", + "start": 2954.34, + "end": 2954.58, + "probability": 0.787109375 + }, + { + "word": " they", + "start": 2954.58, + "end": 2954.88, + "probability": 1.0 + }, + { + "word": " made", + "start": 2954.88, + "end": 2955.28, + "probability": 0.99951171875 + }, + { + "word": " a,", + "start": 2955.28, + "end": 2955.52, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 2955.62, + "end": 2956.14, + "probability": 0.99609375 + }, + { + "word": " if", + "start": 2956.14, + "end": 2956.52, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 2956.52, + "end": 2956.72, + "probability": 1.0 + }, + { + "word": " asked,", + "start": 2956.72, + "end": 2957.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 2957.22, + "end": 2957.38, + "probability": 0.82275390625 + }, + { + "word": " know,", + "start": 2957.38, + "end": 2957.6, + "probability": 1.0 + }, + { + "word": " oh", + "start": 2957.62, + "end": 2958.04, + "probability": 0.94189453125 + }, + { + "word": " my,", + "start": 2958.04, + "end": 2958.2, + "probability": 0.88671875 + }, + { + "word": " oh", + "start": 2958.26, + "end": 2958.72, + "probability": 0.3623046875 + }, + { + "word": " my,", + "start": 2958.72, + "end": 2958.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 2959.02, + "end": 2959.1, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2959.1, + "end": 2959.22, + "probability": 1.0 + }, + { + "word": " another,", + "start": 2959.22, + "end": 2959.62, + "probability": 1.0 + }, + { + "word": " another", + "start": 2959.66, + "end": 2960.88, + "probability": 0.759765625 + } + ] + }, + { + "id": 1243, + "text": "terrorist attack?", + "start": 2960.88, + "end": 2961.86, + "words": [ + { + "word": " terrorist", + "start": 2960.88, + "end": 2961.58, + "probability": 1.0 + }, + { + "word": " attack?", + "start": 2961.58, + "end": 2961.86, + "probability": 1.0 + } + ] + }, + { + "id": 1244, + "text": "Bam, got deleted.", + "start": 2961.98, + "end": 2962.96, + "words": [ + { + "word": " Bam,", + "start": 2961.98, + "end": 2962.34, + "probability": 0.9970703125 + }, + { + "word": " got", + "start": 2962.48, + "end": 2962.64, + "probability": 0.99951171875 + }, + { + "word": " deleted.", + "start": 2962.64, + "end": 2962.96, + "probability": 1.0 + } + ] + }, + { + "id": 1245, + "text": "It was to the tune of, you know, thousands of comments were deleted.", + "start": 2963.14, + "end": 2967.76, + "words": [ + { + "word": " It", + "start": 2963.14, + "end": 2963.44, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2963.44, + "end": 2963.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 2963.6, + "end": 2963.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 2963.74, + "end": 2963.86, + "probability": 1.0 + }, + { + "word": " tune", + "start": 2963.86, + "end": 2964.14, + "probability": 1.0 + }, + { + "word": " of,", + "start": 2964.14, + "end": 2964.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 2964.7, + "end": 2965.38, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2965.38, + "end": 2965.7, + "probability": 1.0 + }, + { + "word": " thousands", + "start": 2965.74, + "end": 2966.4, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2966.4, + "end": 2966.62, + "probability": 1.0 + }, + { + "word": " comments", + "start": 2966.62, + "end": 2967.04, + "probability": 1.0 + }, + { + "word": " were", + "start": 2967.04, + "end": 2967.42, + "probability": 0.99951171875 + }, + { + "word": " deleted.", + "start": 2967.42, + "end": 2967.76, + "probability": 1.0 + } + ] + }, + { + "id": 1246, + "text": "Dozens and dozens of posts that were made were deleted.", + "start": 2968.32, + "end": 2970.8, + "words": [ + { + "word": " Dozens", + "start": 2968.32, + "end": 2968.8, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2968.8, + "end": 2968.96, + "probability": 1.0 + }, + { + "word": " dozens", + "start": 2968.96, + "end": 2969.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 2969.16, + "end": 2969.36, + "probability": 1.0 + }, + { + "word": " posts", + "start": 2969.36, + "end": 2969.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 2969.74, + "end": 2969.96, + "probability": 1.0 + }, + { + "word": " were", + "start": 2969.96, + "end": 2970.08, + "probability": 1.0 + }, + { + "word": " made", + "start": 2970.08, + "end": 2970.3, + "probability": 1.0 + }, + { + "word": " were", + "start": 2970.3, + "end": 2970.46, + "probability": 0.99951171875 + }, + { + "word": " deleted.", + "start": 2970.46, + "end": 2970.8, + "probability": 1.0 + } + ] + }, + { + "id": 1247, + "text": "There was just entire threads where every comment was marked as removed.", + "start": 2971.4, + "end": 2975.54, + "words": [ + { + "word": " There", + "start": 2971.4, + "end": 2971.88, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 2971.88, + "end": 2972.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 2972.04, + "end": 2972.2, + "probability": 1.0 + }, + { + "word": " entire", + "start": 2972.2, + "end": 2972.44, + "probability": 1.0 + }, + { + "word": " threads", + "start": 2972.44, + "end": 2972.9, + "probability": 1.0 + }, + { + "word": " where", + "start": 2972.9, + "end": 2973.34, + "probability": 1.0 + }, + { + "word": " every", + "start": 2973.34, + "end": 2974.2, + "probability": 1.0 + }, + { + "word": " comment", + "start": 2974.2, + "end": 2974.64, + "probability": 1.0 + }, + { + "word": " was", + "start": 2974.64, + "end": 2974.82, + "probability": 1.0 + }, + { + "word": " marked", + "start": 2974.82, + "end": 2975.06, + "probability": 1.0 + }, + { + "word": " as", + "start": 2975.06, + "end": 2975.22, + "probability": 1.0 + }, + { + "word": " removed.", + "start": 2975.22, + "end": 2975.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1248, + "text": "Yeah.", + "start": 2976.98, + "end": 2977.46, + "words": [ + { + "word": " Yeah.", + "start": 2976.98, + "end": 2977.46, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1249, + "text": "It's pretty.", + "start": 2977.52, + "end": 2978.36, + "words": [ + { + "word": " It's", + "start": 2977.52, + "end": 2977.72, + "probability": 0.88818359375 + }, + { + "word": " pretty.", + "start": 2977.72, + "end": 2978.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1250, + "text": "", + "start": 2978.36, + "end": 2978.36, + "words": [] + }, + { + "id": 1251, + "text": "And this is one of those things is that, you know, more and more people these days, they", + "start": 2980.36, + "end": 2985.88, + "words": [ + { + "word": " And", + "start": 2980.36, + "end": 2980.8, + "probability": 0.9453125 + }, + { + "word": " this", + "start": 2980.8, + "end": 2981.2, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 2981.2, + "end": 2981.34, + "probability": 0.98388671875 + }, + { + "word": " one", + "start": 2981.34, + "end": 2981.48, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 2981.48, + "end": 2981.56, + "probability": 1.0 + }, + { + "word": " those", + "start": 2981.56, + "end": 2981.64, + "probability": 0.86865234375 + }, + { + "word": " things", + "start": 2981.64, + "end": 2981.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 2981.84, + "end": 2982.04, + "probability": 0.7255859375 + }, + { + "word": " that,", + "start": 2982.04, + "end": 2982.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 2982.32, + "end": 2982.68, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 2982.68, + "end": 2982.84, + "probability": 1.0 + }, + { + "word": " more", + "start": 2982.84, + "end": 2983.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 2983.3, + "end": 2983.66, + "probability": 1.0 + }, + { + "word": " more", + "start": 2983.66, + "end": 2983.84, + "probability": 1.0 + }, + { + "word": " people", + "start": 2983.84, + "end": 2984.22, + "probability": 1.0 + }, + { + "word": " these", + "start": 2984.22, + "end": 2984.48, + "probability": 0.9990234375 + }, + { + "word": " days,", + "start": 2984.48, + "end": 2984.84, + "probability": 1.0 + }, + { + "word": " they", + "start": 2985.0, + "end": 2985.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1252, + "text": "do not, especially in the younger generation, right?", + "start": 2986.36, + "end": 2989.9, + "words": [ + { + "word": " do", + "start": 2986.36, + "end": 2986.8, + "probability": 1.0 + }, + { + "word": " not,", + "start": 2986.8, + "end": 2987.24, + "probability": 1.0 + }, + { + "word": " especially", + "start": 2987.24, + "end": 2988.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 2988.32, + "end": 2988.62, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 2988.62, + "end": 2988.64, + "probability": 1.0 + }, + { + "word": " younger", + "start": 2988.64, + "end": 2988.82, + "probability": 1.0 + }, + { + "word": " generation,", + "start": 2988.82, + "end": 2989.36, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2989.48, + "end": 2989.9, + "probability": 0.3505859375 + } + ] + }, + { + "id": 1253, + "text": "They don't, they don't look to TV for news.", + "start": 2989.96, + "end": 2991.38, + "words": [ + { + "word": " They", + "start": 2989.96, + "end": 2990.08, + "probability": 0.99951171875 + }, + { + "word": " don't,", + "start": 2990.08, + "end": 2990.26, + "probability": 1.0 + }, + { + "word": " they", + "start": 2990.26, + "end": 2990.4, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 2990.4, + "end": 2990.52, + "probability": 0.998046875 + }, + { + "word": " look", + "start": 2990.52, + "end": 2990.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2990.64, + "end": 2990.74, + "probability": 1.0 + }, + { + "word": " TV", + "start": 2990.74, + "end": 2990.96, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2990.96, + "end": 2991.22, + "probability": 1.0 + }, + { + "word": " news.", + "start": 2991.22, + "end": 2991.38, + "probability": 1.0 + } + ] + }, + { + "id": 1254, + "text": "They don't look to the normal news outlets that nobody trusts in, in the younger demographics.", + "start": 2991.56, + "end": 2998.92, + "words": [ + { + "word": " They", + "start": 2991.56, + "end": 2992.0, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2992.0, + "end": 2992.16, + "probability": 1.0 + }, + { + "word": " look", + "start": 2992.16, + "end": 2992.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 2992.34, + "end": 2992.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2992.48, + "end": 2992.6, + "probability": 1.0 + }, + { + "word": " normal", + "start": 2992.6, + "end": 2992.92, + "probability": 0.99951171875 + }, + { + "word": " news", + "start": 2992.92, + "end": 2993.42, + "probability": 1.0 + }, + { + "word": " outlets", + "start": 2993.42, + "end": 2994.84, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 2994.84, + "end": 2995.54, + "probability": 0.8125 + }, + { + "word": " nobody", + "start": 2995.54, + "end": 2995.88, + "probability": 0.994140625 + }, + { + "word": " trusts", + "start": 2995.88, + "end": 2996.72, + "probability": 1.0 + }, + { + "word": " in,", + "start": 2996.72, + "end": 2997.7, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 2997.72, + "end": 2997.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2997.9, + "end": 2998.0, + "probability": 0.99951171875 + }, + { + "word": " younger", + "start": 2998.0, + "end": 2998.22, + "probability": 1.0 + }, + { + "word": " demographics.", + "start": 2998.22, + "end": 2998.92, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1255, + "text": "Nobody trusts Fox news or CNN or MSNBC.", + "start": 2999.16, + "end": 3001.9, + "words": [ + { + "word": " Nobody", + "start": 2999.16, + "end": 2999.6, + "probability": 0.99951171875 + }, + { + "word": " trusts", + "start": 2999.6, + "end": 2999.88, + "probability": 1.0 + }, + { + "word": " Fox", + "start": 2999.88, + "end": 3000.2, + "probability": 1.0 + }, + { + "word": " news", + "start": 3000.2, + "end": 3000.5, + "probability": 0.7333984375 + }, + { + "word": " or", + "start": 3000.5, + "end": 3000.7, + "probability": 0.9990234375 + }, + { + "word": " CNN", + "start": 3000.7, + "end": 3001.08, + "probability": 1.0 + }, + { + "word": " or", + "start": 3001.08, + "end": 3001.4, + "probability": 0.9990234375 + }, + { + "word": " MSNBC.", + "start": 3001.4, + "end": 3001.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1256, + "text": "We don't care.", + "start": 3001.96, + "end": 3002.44, + "words": [ + { + "word": " We", + "start": 3001.96, + "end": 3002.12, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3002.12, + "end": 3002.3, + "probability": 1.0 + }, + { + "word": " care.", + "start": 3002.3, + "end": 3002.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1257, + "text": "We don't trust them at all.", + "start": 3002.52, + "end": 3003.96, + "words": [ + { + "word": " We", + "start": 3002.52, + "end": 3002.64, + "probability": 0.9931640625 + }, + { + "word": " don't", + "start": 3002.64, + "end": 3002.86, + "probability": 1.0 + }, + { + "word": " trust", + "start": 3002.86, + "end": 3003.18, + "probability": 0.7275390625 + }, + { + "word": " them", + "start": 3003.18, + "end": 3003.66, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3003.66, + "end": 3003.76, + "probability": 0.99853515625 + }, + { + "word": " all.", + "start": 3003.76, + "end": 3003.96, + "probability": 1.0 + } + ] + }, + { + "id": 1258, + "text": "Because they're sort of led by their own agenda.", + "start": 3004.9, + "end": 3008.34, + "words": [ + { + "word": " Because", + "start": 3004.9, + "end": 3005.34, + "probability": 0.98583984375 + }, + { + "word": " they're", + "start": 3005.34, + "end": 3005.78, + "probability": 0.99755859375 + }, + { + "word": " sort", + "start": 3005.78, + "end": 3006.62, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 3006.62, + "end": 3006.78, + "probability": 1.0 + }, + { + "word": " led", + "start": 3006.78, + "end": 3007.18, + "probability": 0.9921875 + }, + { + "word": " by", + "start": 3007.18, + "end": 3007.5, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 3007.5, + "end": 3007.96, + "probability": 0.986328125 + }, + { + "word": " own", + "start": 3007.96, + "end": 3008.14, + "probability": 0.99853515625 + }, + { + "word": " agenda.", + "start": 3008.14, + "end": 3008.34, + "probability": 0.77490234375 + } + ] + }, + { + "id": 1259, + "text": "And for a long time, Reddit could be looked at as, as something where it's obviously community", + "start": 3008.36, + "end": 3015.76, + "words": [ + { + "word": " And", + "start": 3008.36, + "end": 3009.4, + "probability": 0.65380859375 + }, + { + "word": " for", + "start": 3009.4, + "end": 3009.84, + "probability": 0.9814453125 + }, + { + "word": " a", + "start": 3009.84, + "end": 3009.96, + "probability": 1.0 + }, + { + "word": " long", + "start": 3009.96, + "end": 3010.2, + "probability": 1.0 + }, + { + "word": " time,", + "start": 3010.2, + "end": 3010.54, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3010.68, + "end": 3011.14, + "probability": 0.9921875 + }, + { + "word": " could", + "start": 3011.14, + "end": 3011.32, + "probability": 0.9970703125 + }, + { + "word": " be", + "start": 3011.32, + "end": 3011.48, + "probability": 1.0 + }, + { + "word": " looked", + "start": 3011.48, + "end": 3011.76, + "probability": 1.0 + }, + { + "word": " at", + "start": 3011.76, + "end": 3012.06, + "probability": 1.0 + }, + { + "word": " as,", + "start": 3012.06, + "end": 3012.64, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3012.66, + "end": 3013.4, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 3013.4, + "end": 3013.92, + "probability": 0.998046875 + }, + { + "word": " where", + "start": 3013.92, + "end": 3014.34, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3014.34, + "end": 3014.84, + "probability": 0.9990234375 + }, + { + "word": " obviously", + "start": 3014.84, + "end": 3015.2, + "probability": 0.99951171875 + }, + { + "word": " community", + "start": 3015.2, + "end": 3015.76, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1260, + "text": "powered, community fueled, and it's what the world is talking about at that moment.", + "start": 3015.76, + "end": 3021.86, + "words": [ + { + "word": " powered,", + "start": 3015.76, + "end": 3016.64, + "probability": 0.96728515625 + }, + { + "word": " community", + "start": 3016.92, + "end": 3017.2, + "probability": 1.0 + }, + { + "word": " fueled,", + "start": 3017.2, + "end": 3017.86, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3018.0, + "end": 3018.72, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3018.72, + "end": 3019.14, + "probability": 1.0 + }, + { + "word": " what", + "start": 3019.14, + "end": 3019.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3019.56, + "end": 3019.86, + "probability": 1.0 + }, + { + "word": " world", + "start": 3019.86, + "end": 3020.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 3020.26, + "end": 3020.5, + "probability": 1.0 + }, + { + "word": " talking", + "start": 3020.5, + "end": 3020.74, + "probability": 1.0 + }, + { + "word": " about", + "start": 3020.74, + "end": 3021.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 3021.02, + "end": 3021.26, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3021.26, + "end": 3021.42, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 3021.42, + "end": 3021.86, + "probability": 1.0 + } + ] + }, + { + "id": 1261, + "text": "So why, it basically seemed to be a more fair place to look for information.", + "start": 3022.6600000000003, + "end": 3027.88, + "words": [ + { + "word": " So", + "start": 3022.6600000000003, + "end": 3023.2400000000002, + "probability": 0.99951171875 + }, + { + "word": " why,", + "start": 3023.2400000000002, + "end": 3023.82, + "probability": 0.97021484375 + }, + { + "word": " it", + "start": 3024.04, + "end": 3024.58, + "probability": 0.73388671875 + }, + { + "word": " basically", + "start": 3024.58, + "end": 3025.18, + "probability": 1.0 + }, + { + "word": " seemed", + "start": 3025.18, + "end": 3025.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 3025.58, + "end": 3025.7, + "probability": 1.0 + }, + { + "word": " be", + "start": 3025.7, + "end": 3025.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 3025.8, + "end": 3025.86, + "probability": 1.0 + }, + { + "word": " more", + "start": 3025.86, + "end": 3026.02, + "probability": 1.0 + }, + { + "word": " fair", + "start": 3026.02, + "end": 3026.36, + "probability": 1.0 + }, + { + "word": " place", + "start": 3026.36, + "end": 3026.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 3026.62, + "end": 3027.02, + "probability": 1.0 + }, + { + "word": " look", + "start": 3027.02, + "end": 3027.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 3027.24, + "end": 3027.44, + "probability": 1.0 + }, + { + "word": " information.", + "start": 3027.44, + "end": 3027.88, + "probability": 1.0 + } + ] + }, + { + "id": 1262, + "text": "Yeah.", + "start": 3028.1, + "end": 3028.46, + "words": [ + { + "word": " Yeah.", + "start": 3028.1, + "end": 3028.46, + "probability": 0.994140625 + } + ] + }, + { + "id": 1263, + "text": "It was supposed to be this platform where anyone could share anything without the fear", + "start": 3028.54, + "end": 3033.2, + "words": [ + { + "word": " It", + "start": 3028.54, + "end": 3028.6, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 3028.6, + "end": 3028.74, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 3028.74, + "end": 3028.98, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3028.98, + "end": 3029.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 3029.2, + "end": 3029.32, + "probability": 1.0 + }, + { + "word": " this", + "start": 3029.32, + "end": 3029.46, + "probability": 1.0 + }, + { + "word": " platform", + "start": 3029.46, + "end": 3029.9, + "probability": 1.0 + }, + { + "word": " where", + "start": 3029.9, + "end": 3030.36, + "probability": 1.0 + }, + { + "word": " anyone", + "start": 3030.36, + "end": 3030.78, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 3030.78, + "end": 3031.06, + "probability": 1.0 + }, + { + "word": " share", + "start": 3031.06, + "end": 3031.32, + "probability": 1.0 + }, + { + "word": " anything", + "start": 3031.32, + "end": 3031.66, + "probability": 0.99951171875 + }, + { + "word": " without", + "start": 3031.66, + "end": 3032.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3032.62, + "end": 3032.94, + "probability": 1.0 + }, + { + "word": " fear", + "start": 3032.94, + "end": 3033.2, + "probability": 1.0 + } + ] + }, + { + "id": 1264, + "text": "of censorship.", + "start": 3033.2, + "end": 3033.86, + "words": [ + { + "word": " of", + "start": 3033.2, + "end": 3033.42, + "probability": 1.0 + }, + { + "word": " censorship.", + "start": 3033.42, + "end": 3033.86, + "probability": 0.82958984375 + } + ] + }, + { + "id": 1265, + "text": "You know?", + "start": 3034.08, + "end": 3034.6, + "words": [ + { + "word": " You", + "start": 3034.08, + "end": 3034.46, + "probability": 0.99755859375 + }, + { + "word": " know?", + "start": 3034.46, + "end": 3034.6, + "probability": 0.9921875 + } + ] + }, + { + "id": 1266, + "text": "Like you could discuss a newsworthy event that was happening.", + "start": 3034.64, + "end": 3038.26, + "words": [ + { + "word": " Like", + "start": 3034.64, + "end": 3034.86, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3034.86, + "end": 3035.26, + "probability": 0.75927734375 + }, + { + "word": " could", + "start": 3035.26, + "end": 3035.42, + "probability": 0.9990234375 + }, + { + "word": " discuss", + "start": 3035.42, + "end": 3035.88, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3035.88, + "end": 3036.32, + "probability": 0.98095703125 + }, + { + "word": " newsworthy", + "start": 3036.32, + "end": 3037.04, + "probability": 0.8818359375 + }, + { + "word": " event", + "start": 3037.04, + "end": 3037.48, + "probability": 0.95751953125 + }, + { + "word": " that", + "start": 3037.48, + "end": 3037.8, + "probability": 0.9970703125 + }, + { + "word": " was", + "start": 3037.8, + "end": 3037.92, + "probability": 0.99951171875 + }, + { + "word": " happening.", + "start": 3037.92, + "end": 3038.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1267, + "text": "Yeah.", + "start": 3038.28, + "end": 3038.34, + "words": [ + { + "word": " Yeah.", + "start": 3038.28, + "end": 3038.34, + "probability": 0.08441162109375 + } + ] + }, + { + "id": 1268, + "text": "", + "start": 3038.34, + "end": 3038.34, + "words": [] + }, + { + "id": 1269, + "text": "", + "start": 3038.34, + "end": 3038.34, + "words": [] + }, + { + "id": 1270, + "text": "And not worry about the government or mainstream media slanting it.", + "start": 3038.36, + "end": 3041.8, + "words": [ + { + "word": " And", + "start": 3038.36, + "end": 3038.72, + "probability": 0.016510009765625 + }, + { + "word": " not", + "start": 3038.72, + "end": 3039.0, + "probability": 0.9501953125 + }, + { + "word": " worry", + "start": 3039.0, + "end": 3039.32, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 3039.32, + "end": 3039.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3039.58, + "end": 3039.82, + "probability": 0.99658203125 + }, + { + "word": " government", + "start": 3039.82, + "end": 3040.06, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 3040.06, + "end": 3040.34, + "probability": 0.9248046875 + }, + { + "word": " mainstream", + "start": 3040.34, + "end": 3040.62, + "probability": 0.99609375 + }, + { + "word": " media", + "start": 3040.62, + "end": 3041.06, + "probability": 0.9970703125 + }, + { + "word": " slanting", + "start": 3041.06, + "end": 3041.6, + "probability": 0.98828125 + }, + { + "word": " it.", + "start": 3041.6, + "end": 3041.8, + "probability": 1.0 + } + ] + }, + { + "id": 1271, + "text": "But I mean, it's, I think people quickly forget that Reddit is a company.", + "start": 3042.58, + "end": 3046.06, + "words": [ + { + "word": " But", + "start": 3042.58, + "end": 3043.14, + "probability": 0.98193359375 + }, + { + "word": " I", + "start": 3043.14, + "end": 3043.5, + "probability": 0.63623046875 + }, + { + "word": " mean,", + "start": 3043.5, + "end": 3043.68, + "probability": 0.0863037109375 + }, + { + "word": " it's,", + "start": 3043.7, + "end": 3043.94, + "probability": 0.51025390625 + }, + { + "word": " I", + "start": 3043.94, + "end": 3043.96, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 3043.96, + "end": 3044.12, + "probability": 1.0 + }, + { + "word": " people", + "start": 3044.12, + "end": 3044.32, + "probability": 1.0 + }, + { + "word": " quickly", + "start": 3044.32, + "end": 3044.62, + "probability": 1.0 + }, + { + "word": " forget", + "start": 3044.62, + "end": 3044.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 3044.98, + "end": 3045.22, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3045.22, + "end": 3045.52, + "probability": 0.9560546875 + }, + { + "word": " is", + "start": 3045.52, + "end": 3045.66, + "probability": 0.87890625 + }, + { + "word": " a", + "start": 3045.66, + "end": 3045.78, + "probability": 1.0 + }, + { + "word": " company.", + "start": 3045.78, + "end": 3046.06, + "probability": 1.0 + } + ] + }, + { + "id": 1272, + "text": "Right.", + "start": 3046.4, + "end": 3046.96, + "words": [ + { + "word": " Right.", + "start": 3046.4, + "end": 3046.96, + "probability": 0.97314453125 + } + ] + }, + { + "id": 1273, + "text": "They're a business.", + "start": 3047.12, + "end": 3047.72, + "words": [ + { + "word": " They're", + "start": 3047.12, + "end": 3047.34, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3047.34, + "end": 3047.4, + "probability": 1.0 + }, + { + "word": " business.", + "start": 3047.4, + "end": 3047.72, + "probability": 1.0 + } + ] + }, + { + "id": 1274, + "text": "And more importantly though, is there's a certain mob mentality that happens on Reddit", + "start": 3047.86, + "end": 3053.9, + "words": [ + { + "word": " And", + "start": 3047.86, + "end": 3048.42, + "probability": 0.9931640625 + }, + { + "word": " more", + "start": 3048.42, + "end": 3048.64, + "probability": 1.0 + }, + { + "word": " importantly", + "start": 3048.64, + "end": 3049.08, + "probability": 1.0 + }, + { + "word": " though,", + "start": 3049.08, + "end": 3049.42, + "probability": 0.56982421875 + }, + { + "word": " is", + "start": 3049.54, + "end": 3049.98, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 3049.98, + "end": 3050.7, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3050.7, + "end": 3050.8, + "probability": 1.0 + }, + { + "word": " certain", + "start": 3050.8, + "end": 3051.2, + "probability": 1.0 + }, + { + "word": " mob", + "start": 3051.2, + "end": 3051.74, + "probability": 1.0 + }, + { + "word": " mentality", + "start": 3051.74, + "end": 3052.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 3052.42, + "end": 3052.98, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 3052.98, + "end": 3053.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 3053.4, + "end": 3053.66, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3053.66, + "end": 3053.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1275, + "text": "and it's unfortunate, right?", + "start": 3053.9, + "end": 3056.8, + "words": [ + { + "word": " and", + "start": 3053.9, + "end": 3054.68, + "probability": 0.488037109375 + }, + { + "word": " it's", + "start": 3054.68, + "end": 3055.46, + "probability": 1.0 + }, + { + "word": " unfortunate,", + "start": 3055.46, + "end": 3056.02, + "probability": 1.0 + }, + { + "word": " right?", + "start": 3056.2, + "end": 3056.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1276, + "text": "That, that voices can be silenced effectively, not only by the community itself, but at the", + "start": 3056.86, + "end": 3064.44, + "words": [ + { + "word": " That,", + "start": 3056.86, + "end": 3057.06, + "probability": 0.978515625 + }, + { + "word": " that", + "start": 3057.12, + "end": 3057.42, + "probability": 1.0 + }, + { + "word": " voices", + "start": 3057.42, + "end": 3058.72, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 3058.72, + "end": 3059.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 3059.1, + "end": 3059.3, + "probability": 1.0 + }, + { + "word": " silenced", + "start": 3059.3, + "end": 3059.9, + "probability": 1.0 + }, + { + "word": " effectively,", + "start": 3059.9, + "end": 3060.72, + "probability": 0.99658203125 + }, + { + "word": " not", + "start": 3060.9, + "end": 3061.34, + "probability": 0.9990234375 + }, + { + "word": " only", + "start": 3061.34, + "end": 3061.68, + "probability": 1.0 + }, + { + "word": " by", + "start": 3061.68, + "end": 3061.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3061.94, + "end": 3062.32, + "probability": 1.0 + }, + { + "word": " community", + "start": 3062.32, + "end": 3062.58, + "probability": 1.0 + }, + { + "word": " itself,", + "start": 3062.58, + "end": 3062.98, + "probability": 1.0 + }, + { + "word": " but", + "start": 3063.08, + "end": 3063.5, + "probability": 1.0 + }, + { + "word": " at", + "start": 3063.5, + "end": 3064.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 3064.22, + "end": 3064.44, + "probability": 1.0 + } + ] + }, + { + "id": 1277, + "text": "moderator level.", + "start": 3064.44, + "end": 3065.28, + "words": [ + { + "word": " moderator", + "start": 3064.44, + "end": 3064.84, + "probability": 0.99267578125 + }, + { + "word": " level.", + "start": 3064.84, + "end": 3065.28, + "probability": 1.0 + } + ] + }, + { + "id": 1278, + "text": "And they came back with a couple of excuses about, well, I'm not going to do this.", + "start": 3065.42, + "end": 3068.34, + "words": [ + { + "word": " And", + "start": 3065.42, + "end": 3065.98, + "probability": 0.98779296875 + }, + { + "word": " they", + "start": 3065.98, + "end": 3066.3, + "probability": 0.157958984375 + }, + { + "word": " came", + "start": 3066.3, + "end": 3066.52, + "probability": 1.0 + }, + { + "word": " back", + "start": 3066.52, + "end": 3066.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 3066.8, + "end": 3067.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 3067.0, + "end": 3067.1, + "probability": 1.0 + }, + { + "word": " couple", + "start": 3067.1, + "end": 3067.32, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3067.32, + "end": 3067.42, + "probability": 1.0 + }, + { + "word": " excuses", + "start": 3067.42, + "end": 3067.7, + "probability": 0.9990234375 + }, + { + "word": " about,", + "start": 3067.7, + "end": 3068.14, + "probability": 0.998046875 + }, + { + "word": " well,", + "start": 3068.18, + "end": 3068.34, + "probability": 0.97802734375 + }, + { + "word": " I'm", + "start": 3068.34, + "end": 3068.34, + "probability": 0.200927734375 + }, + { + "word": " not", + "start": 3068.34, + "end": 3068.34, + "probability": 0.6123046875 + }, + { + "word": " going", + "start": 3068.34, + "end": 3068.34, + "probability": 0.55712890625 + }, + { + "word": " to", + "start": 3068.34, + "end": 3068.34, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 3068.34, + "end": 3068.34, + "probability": 0.453125 + }, + { + "word": " this.", + "start": 3068.34, + "end": 3068.34, + "probability": 0.615234375 + } + ] + }, + { + "id": 1279, + "text": "", + "start": 3068.34, + "end": 3068.34, + "words": [] + }, + { + "id": 1280, + "text": "I'm going to do this.", + "start": 3068.34, + "end": 3068.6, + "words": [ + { + "word": " I'm", + "start": 3068.34, + "end": 3068.42, + "probability": 0.00984954833984375 + }, + { + "word": " going", + "start": 3068.42, + "end": 3068.44, + "probability": 0.040435791015625 + }, + { + "word": " to", + "start": 3068.44, + "end": 3068.6, + "probability": 0.92041015625 + }, + { + "word": " do", + "start": 3068.6, + "end": 3068.6, + "probability": 0.031646728515625 + }, + { + "word": " this.", + "start": 3068.6, + "end": 3068.6, + "probability": 0.186279296875 + } + ] + }, + { + "id": 1281, + "text": "", + "start": 3068.6, + "end": 3068.6, + "words": [] + }, + { + "id": 1282, + "text": "", + "start": 3068.6, + "end": 3068.6, + "words": [] + }, + { + "id": 1283, + "text": "And so, you know, there's a, there's a bot, an auto moderator that saw these as duplicates", + "start": 3068.6, + "end": 3073.24, + "words": [ + { + "word": " And", + "start": 3068.6, + "end": 3068.6, + "probability": 0.0306549072265625 + }, + { + "word": " so,", + "start": 3068.6, + "end": 3068.6, + "probability": 0.0360107421875 + }, + { + "word": " you", + "start": 3068.6, + "end": 3068.6, + "probability": 0.483154296875 + }, + { + "word": " know,", + "start": 3068.6, + "end": 3068.6, + "probability": 0.2978515625 + }, + { + "word": " there's", + "start": 3068.6, + "end": 3068.86, + "probability": 0.9033203125 + }, + { + "word": " a,", + "start": 3068.86, + "end": 3069.02, + "probability": 0.64453125 + }, + { + "word": " there's", + "start": 3069.04, + "end": 3069.52, + "probability": 0.97265625 + }, + { + "word": " a", + "start": 3069.52, + "end": 3069.64, + "probability": 0.994140625 + }, + { + "word": " bot,", + "start": 3069.64, + "end": 3070.06, + "probability": 0.8779296875 + }, + { + "word": " an", + "start": 3070.2, + "end": 3070.36, + "probability": 0.99609375 + }, + { + "word": " auto", + "start": 3070.36, + "end": 3070.58, + "probability": 0.9892578125 + }, + { + "word": " moderator", + "start": 3070.58, + "end": 3070.98, + "probability": 0.79052734375 + }, + { + "word": " that", + "start": 3070.98, + "end": 3071.56, + "probability": 0.994140625 + }, + { + "word": " saw", + "start": 3071.56, + "end": 3072.32, + "probability": 0.99609375 + }, + { + "word": " these", + "start": 3072.32, + "end": 3072.54, + "probability": 0.998046875 + }, + { + "word": " as", + "start": 3072.54, + "end": 3072.68, + "probability": 0.99609375 + }, + { + "word": " duplicates", + "start": 3072.68, + "end": 3073.24, + "probability": 1.0 + } + ] + }, + { + "id": 1284, + "text": "and was deleting everything.", + "start": 3073.24, + "end": 3074.18, + "words": [ + { + "word": " and", + "start": 3073.24, + "end": 3073.36, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 3073.36, + "end": 3073.5, + "probability": 0.99951171875 + }, + { + "word": " deleting", + "start": 3073.5, + "end": 3073.78, + "probability": 0.99951171875 + }, + { + "word": " everything.", + "start": 3073.78, + "end": 3074.18, + "probability": 1.0 + } + ] + }, + { + "id": 1285, + "text": "But under any level of scrutiny, this argument doesn't hit, you know, it doesn't stand up.", + "start": 3075.8399999999997, + "end": 3080.66, + "words": [ + { + "word": " But", + "start": 3075.8399999999997, + "end": 3076.2799999999997, + "probability": 0.71630859375 + }, + { + "word": " under", + "start": 3076.2799999999997, + "end": 3076.72, + "probability": 0.986328125 + }, + { + "word": " any", + "start": 3076.72, + "end": 3077.36, + "probability": 1.0 + }, + { + "word": " level", + "start": 3077.36, + "end": 3077.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 3077.82, + "end": 3077.96, + "probability": 1.0 + }, + { + "word": " scrutiny,", + "start": 3077.96, + "end": 3078.34, + "probability": 1.0 + }, + { + "word": " this", + "start": 3078.42, + "end": 3078.6, + "probability": 0.99951171875 + }, + { + "word": " argument", + "start": 3078.6, + "end": 3078.98, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 3078.98, + "end": 3079.36, + "probability": 1.0 + }, + { + "word": " hit,", + "start": 3079.36, + "end": 3079.52, + "probability": 0.451904296875 + }, + { + "word": " you", + "start": 3079.56, + "end": 3079.82, + "probability": 0.966796875 + }, + { + "word": " know,", + "start": 3079.82, + "end": 3079.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 3079.96, + "end": 3079.96, + "probability": 0.6220703125 + }, + { + "word": " doesn't", + "start": 3079.96, + "end": 3080.18, + "probability": 1.0 + }, + { + "word": " stand", + "start": 3080.18, + "end": 3080.4, + "probability": 1.0 + }, + { + "word": " up.", + "start": 3080.4, + "end": 3080.66, + "probability": 0.97607421875 + } + ] + }, + { + "id": 1286, + "text": "Yeah.", + "start": 3080.8, + "end": 3081.1, + "words": [ + { + "word": " Yeah.", + "start": 3080.8, + "end": 3081.1, + "probability": 0.982421875 + } + ] + }, + { + "id": 1287, + "text": "I mean, they, they did remove one moderator.", + "start": 3081.18, + "end": 3083.22, + "words": [ + { + "word": " I", + "start": 3081.18, + "end": 3081.3, + "probability": 0.9970703125 + }, + { + "word": " mean,", + "start": 3081.3, + "end": 3081.4, + "probability": 1.0 + }, + { + "word": " they,", + "start": 3081.4, + "end": 3081.5, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3081.6, + "end": 3081.8, + "probability": 1.0 + }, + { + "word": " did", + "start": 3081.8, + "end": 3082.04, + "probability": 0.99755859375 + }, + { + "word": " remove", + "start": 3082.04, + "end": 3082.36, + "probability": 1.0 + }, + { + "word": " one", + "start": 3082.36, + "end": 3082.78, + "probability": 1.0 + }, + { + "word": " moderator.", + "start": 3082.78, + "end": 3083.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1288, + "text": "But I couldn't see that as anything other than a scapegoat tactic personally.", + "start": 3084.14, + "end": 3087.62, + "words": [ + { + "word": " But", + "start": 3084.14, + "end": 3084.58, + "probability": 0.98291015625 + }, + { + "word": " I", + "start": 3084.58, + "end": 3084.88, + "probability": 0.99951171875 + }, + { + "word": " couldn't", + "start": 3084.88, + "end": 3085.28, + "probability": 1.0 + }, + { + "word": " see", + "start": 3085.28, + "end": 3085.44, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3085.44, + "end": 3085.56, + "probability": 1.0 + }, + { + "word": " as", + "start": 3085.56, + "end": 3085.68, + "probability": 1.0 + }, + { + "word": " anything", + "start": 3085.68, + "end": 3085.86, + "probability": 1.0 + }, + { + "word": " other", + "start": 3085.86, + "end": 3086.16, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 3086.16, + "end": 3086.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 3086.32, + "end": 3086.42, + "probability": 0.99951171875 + }, + { + "word": " scapegoat", + "start": 3086.42, + "end": 3086.84, + "probability": 1.0 + }, + { + "word": " tactic", + "start": 3086.84, + "end": 3087.12, + "probability": 1.0 + }, + { + "word": " personally.", + "start": 3087.12, + "end": 3087.62, + "probability": 0.591796875 + } + ] + }, + { + "id": 1289, + "text": "Yeah.", + "start": 3087.86, + "end": 3088.16, + "words": [ + { + "word": " Yeah.", + "start": 3087.86, + "end": 3088.16, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1290, + "text": "And to be fair, that moderator was telling people to go kill themselves.", + "start": 3088.18, + "end": 3091.16, + "words": [ + { + "word": " And", + "start": 3088.18, + "end": 3088.32, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 3088.32, + "end": 3088.52, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 3088.52, + "end": 3088.64, + "probability": 1.0 + }, + { + "word": " fair,", + "start": 3088.64, + "end": 3088.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 3088.9, + "end": 3089.0, + "probability": 0.99951171875 + }, + { + "word": " moderator", + "start": 3089.0, + "end": 3089.32, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3089.32, + "end": 3089.66, + "probability": 1.0 + }, + { + "word": " telling", + "start": 3089.66, + "end": 3089.9, + "probability": 1.0 + }, + { + "word": " people", + "start": 3089.9, + "end": 3090.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 3090.44, + "end": 3090.64, + "probability": 1.0 + }, + { + "word": " go", + "start": 3090.64, + "end": 3090.72, + "probability": 1.0 + }, + { + "word": " kill", + "start": 3090.72, + "end": 3090.88, + "probability": 1.0 + }, + { + "word": " themselves.", + "start": 3090.88, + "end": 3091.16, + "probability": 1.0 + } + ] + }, + { + "id": 1291, + "text": "So you probably shouldn't be in that position anyway.", + "start": 3092.88, + "end": 3096.32, + "words": [ + { + "word": " So", + "start": 3092.88, + "end": 3093.32, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3093.32, + "end": 3093.76, + "probability": 0.5908203125 + }, + { + "word": " probably", + "start": 3093.76, + "end": 3094.4, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 3094.4, + "end": 3094.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 3094.98, + "end": 3095.1, + "probability": 1.0 + }, + { + "word": " in", + "start": 3095.1, + "end": 3095.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3095.26, + "end": 3095.4, + "probability": 1.0 + }, + { + "word": " position", + "start": 3095.4, + "end": 3095.78, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 3095.78, + "end": 3096.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1292, + "text": "But there were also things like you said, when it came to the, the, the, the, the, the, the,", + "start": 3096.34, + "end": 3098.32, + "words": [ + { + "word": " But", + "start": 3096.34, + "end": 3096.64, + "probability": 0.99658203125 + }, + { + "word": " there", + "start": 3096.64, + "end": 3096.76, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 3096.76, + "end": 3096.9, + "probability": 1.0 + }, + { + "word": " also", + "start": 3096.9, + "end": 3097.12, + "probability": 1.0 + }, + { + "word": " things", + "start": 3097.12, + "end": 3097.46, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 3097.46, + "end": 3097.66, + "probability": 0.73828125 + }, + { + "word": " you", + "start": 3097.66, + "end": 3097.86, + "probability": 0.9990234375 + }, + { + "word": " said,", + "start": 3097.86, + "end": 3098.0, + "probability": 1.0 + }, + { + "word": " when", + "start": 3098.04, + "end": 3098.16, + "probability": 0.96435546875 + }, + { + "word": " it", + "start": 3098.16, + "end": 3098.32, + "probability": 0.34326171875 + }, + { + "word": " came", + "start": 3098.32, + "end": 3098.32, + "probability": 0.09954833984375 + }, + { + "word": " to", + "start": 3098.32, + "end": 3098.32, + "probability": 0.85205078125 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.2117919921875 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.302734375 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.96484375 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.9794921875 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.98486328125 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.98828125 + }, + { + "word": " the,", + "start": 3098.32, + "end": 3098.32, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1293, + "text": "the only language that couldn't be seeded from the seed seed seed seed seed seed seed", + "start": 3098.32, + "end": 3114.74, + "words": [ + { + "word": " the", + "start": 3098.32, + "end": 3098.48, + "probability": 0.0013265609741210938 + }, + { + "word": " only", + "start": 3098.48, + "end": 3099.06, + "probability": 0.00296783447265625 + }, + { + "word": " language", + "start": 3099.06, + "end": 3112.42, + "probability": 0.0007319450378417969 + }, + { + "word": " that", + "start": 3112.42, + "end": 3112.42, + "probability": 0.2208251953125 + }, + { + "word": " couldn't", + "start": 3112.42, + "end": 3112.68, + "probability": 0.48974609375 + }, + { + "word": " be", + "start": 3112.68, + "end": 3112.68, + "probability": 0.3525390625 + }, + { + "word": " seeded", + "start": 3112.68, + "end": 3112.9, + "probability": 0.49365234375 + }, + { + "word": " from", + "start": 3112.9, + "end": 3113.1, + "probability": 0.035980224609375 + }, + { + "word": " the", + "start": 3113.1, + "end": 3113.1, + "probability": 0.323486328125 + }, + { + "word": " seed", + "start": 3113.1, + "end": 3113.44, + "probability": 0.0007157325744628906 + }, + { + "word": " seed", + "start": 3113.44, + "end": 3113.58, + "probability": 0.00029659271240234375 + }, + { + "word": " seed", + "start": 3113.58, + "end": 3113.58, + "probability": 0.003612518310546875 + }, + { + "word": " seed", + "start": 3113.58, + "end": 3113.58, + "probability": 0.145751953125 + }, + { + "word": " seed", + "start": 3113.58, + "end": 3113.58, + "probability": 0.580078125 + }, + { + "word": " seed", + "start": 3113.58, + "end": 3113.62, + "probability": 0.83349609375 + }, + { + "word": " seed", + "start": 3113.62, + "end": 3114.74, + "probability": 0.91943359375 + } + ] + }, + { + "id": 1294, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3114.74, + "end": 3116.58, + "words": [ + { + "word": " seed", + "start": 3114.74, + "end": 3114.74, + "probability": 0.951171875 + }, + { + "word": " seed", + "start": 3114.74, + "end": 3115.1, + "probability": 0.96484375 + }, + { + "word": " seed", + "start": 3115.1, + "end": 3115.36, + "probability": 0.9716796875 + }, + { + "word": " seed", + "start": 3115.36, + "end": 3115.36, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3115.36, + "end": 3115.36, + "probability": 0.9775390625 + }, + { + "word": " seed", + "start": 3115.36, + "end": 3116.42, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.42, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + } + ] + }, + { + "id": 1295, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3116.58, + "end": 3116.6, + "words": [ + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.58, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.58, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97998046875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1296, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3116.6, + "end": 3116.62, + "words": [ + { + "word": " seed", + "start": 3116.6, + "end": 3116.6, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.6, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.9794921875 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1297, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3116.62, + "end": 3116.66, + "words": [ + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97802734375 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.62, + "probability": 0.97900390625 + }, + { + "word": " seed", + "start": 3116.62, + "end": 3116.66, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.978515625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97802734375 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97802734375 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97802734375 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.9775390625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97802734375 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97802734375 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.9775390625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.9775390625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.9775390625 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97705078125 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.97705078125 + }, + { + "word": " seed", + "start": 3116.66, + "end": 3116.66, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1298, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3116.66, + "end": 3116.76, + "words": [ + { + "word": " seed", + "start": 3116.66, + "end": 3116.68, + "probability": 0.9775390625 + }, + { + "word": " seed", + "start": 3116.68, + "end": 3116.68, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.68, + "end": 3116.68, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.68, + "end": 3116.68, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.68, + "end": 3116.68, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.68, + "end": 3116.68, + "probability": 0.97705078125 + }, + { + "word": " seed", + "start": 3116.68, + "end": 3116.7, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.7, + "end": 3116.7, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.7, + "end": 3116.7, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.7, + "end": 3116.7, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.7, + "end": 3116.7, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.7, + "end": 3116.76, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.97705078125 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1299, + "text": "", + "start": 3116.76, + "end": 3116.76, + "words": [] + }, + { + "id": 1300, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3116.76, + "end": 3117.44, + "words": [ + { + "word": " seed", + "start": 3116.76, + "end": 3116.76, + "probability": 0.9736328125 + }, + { + "word": " seed", + "start": 3116.76, + "end": 3117.28, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.28, + "end": 3117.28, + "probability": 0.974609375 + }, + { + "word": " seed", + "start": 3117.28, + "end": 3117.4, + "probability": 0.97314453125 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.9736328125 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.974609375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.4, + "probability": 0.974609375 + }, + { + "word": " seed", + "start": 3117.4, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + } + ] + }, + { + "id": 1301, + "text": "seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed", + "start": 3117.44, + "end": 3118.1, + "words": [ + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97412109375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.974609375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97509765625 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.9755859375 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3117.44, + "probability": 0.97705078125 + }, + { + "word": " seed", + "start": 3117.44, + "end": 3118.1, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3118.1, + "end": 3118.1, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3118.1, + "end": 3118.1, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3118.1, + "end": 3118.1, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3118.1, + "end": 3118.1, + "probability": 0.9765625 + }, + { + "word": " seed", + "start": 3118.1, + "end": 3118.1, + "probability": 0.97607421875 + }, + { + "word": " seed", + "start": 3118.1, + "end": 3118.1, + "probability": 0.9765625 + } + ] + }, + { + "id": 1302, + "text": "And we don't like the idea that the Internet can be silenced or moderated as a whole, especially at the state level.", + "start": 3118.1, + "end": 3125.9, + "words": [ + { + "word": " And", + "start": 3118.1, + "end": 3118.1, + "probability": 0.92333984375 + }, + { + "word": " we", + "start": 3118.1, + "end": 3119.12, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3119.12, + "end": 3119.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 3119.36, + "end": 3119.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3119.54, + "end": 3119.68, + "probability": 1.0 + }, + { + "word": " idea", + "start": 3119.68, + "end": 3120.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 3120.02, + "end": 3120.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3120.48, + "end": 3120.92, + "probability": 0.94775390625 + }, + { + "word": " Internet", + "start": 3120.92, + "end": 3121.3, + "probability": 0.84765625 + }, + { + "word": " can", + "start": 3121.3, + "end": 3121.54, + "probability": 1.0 + }, + { + "word": " be", + "start": 3121.54, + "end": 3121.72, + "probability": 1.0 + }, + { + "word": " silenced", + "start": 3121.72, + "end": 3122.24, + "probability": 1.0 + }, + { + "word": " or", + "start": 3122.24, + "end": 3122.36, + "probability": 1.0 + }, + { + "word": " moderated", + "start": 3122.36, + "end": 3122.94, + "probability": 1.0 + }, + { + "word": " as", + "start": 3122.94, + "end": 3123.7, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3123.7, + "end": 3123.84, + "probability": 1.0 + }, + { + "word": " whole,", + "start": 3123.84, + "end": 3124.1, + "probability": 1.0 + }, + { + "word": " especially", + "start": 3124.34, + "end": 3124.98, + "probability": 1.0 + }, + { + "word": " at", + "start": 3124.98, + "end": 3125.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 3125.28, + "end": 3125.4, + "probability": 1.0 + }, + { + "word": " state", + "start": 3125.4, + "end": 3125.58, + "probability": 1.0 + }, + { + "word": " level.", + "start": 3125.58, + "end": 3125.9, + "probability": 1.0 + } + ] + }, + { + "id": 1303, + "text": "Because there are people who their only way of communicating with the world is through the Internet.", + "start": 3126.88, + "end": 3132.72, + "words": [ + { + "word": " Because", + "start": 3126.88, + "end": 3127.4, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 3127.4, + "end": 3127.86, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3127.86, + "end": 3128.14, + "probability": 1.0 + }, + { + "word": " people", + "start": 3128.14, + "end": 3128.46, + "probability": 1.0 + }, + { + "word": " who", + "start": 3128.46, + "end": 3128.88, + "probability": 0.98388671875 + }, + { + "word": " their", + "start": 3128.88, + "end": 3130.34, + "probability": 0.8525390625 + }, + { + "word": " only", + "start": 3130.34, + "end": 3130.64, + "probability": 1.0 + }, + { + "word": " way", + "start": 3130.64, + "end": 3131.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 3131.0, + "end": 3131.2, + "probability": 1.0 + }, + { + "word": " communicating", + "start": 3131.2, + "end": 3131.5, + "probability": 1.0 + }, + { + "word": " with", + "start": 3131.5, + "end": 3131.8, + "probability": 0.6748046875 + }, + { + "word": " the", + "start": 3131.8, + "end": 3131.9, + "probability": 1.0 + }, + { + "word": " world", + "start": 3131.9, + "end": 3132.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 3132.08, + "end": 3132.22, + "probability": 1.0 + }, + { + "word": " through", + "start": 3132.22, + "end": 3132.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 3132.34, + "end": 3132.48, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 3132.48, + "end": 3132.72, + "probability": 1.0 + } + ] + }, + { + "id": 1304, + "text": "And in some cases, there are places like in the Middle East that we've talked about where the only outlet that people have to say, hey, this is what's going on here, help, is potentially silenced.", + "start": 3132.84, + "end": 3146.96, + "words": [ + { + "word": " And", + "start": 3132.84, + "end": 3133.22, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3133.22, + "end": 3133.38, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 3133.38, + "end": 3133.68, + "probability": 1.0 + }, + { + "word": " cases,", + "start": 3133.68, + "end": 3134.1, + "probability": 1.0 + }, + { + "word": " there", + "start": 3134.12, + "end": 3134.88, + "probability": 1.0 + }, + { + "word": " are", + "start": 3134.88, + "end": 3135.1, + "probability": 1.0 + }, + { + "word": " places", + "start": 3135.1, + "end": 3135.52, + "probability": 1.0 + }, + { + "word": " like", + "start": 3135.52, + "end": 3135.8, + "probability": 0.9912109375 + }, + { + "word": " in", + "start": 3135.8, + "end": 3135.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3135.94, + "end": 3136.02, + "probability": 1.0 + }, + { + "word": " Middle", + "start": 3136.02, + "end": 3136.14, + "probability": 1.0 + }, + { + "word": " East", + "start": 3136.14, + "end": 3136.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 3136.42, + "end": 3136.84, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 3136.84, + "end": 3137.06, + "probability": 0.998046875 + }, + { + "word": " talked", + "start": 3137.06, + "end": 3137.24, + "probability": 1.0 + }, + { + "word": " about", + "start": 3137.24, + "end": 3137.52, + "probability": 1.0 + }, + { + "word": " where", + "start": 3137.52, + "end": 3137.76, + "probability": 0.97900390625 + }, + { + "word": " the", + "start": 3137.76, + "end": 3138.12, + "probability": 1.0 + }, + { + "word": " only", + "start": 3138.12, + "end": 3138.66, + "probability": 1.0 + }, + { + "word": " outlet", + "start": 3138.66, + "end": 3139.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 3139.2, + "end": 3139.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 3139.52, + "end": 3139.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 3139.74, + "end": 3140.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 3140.06, + "end": 3140.9, + "probability": 1.0 + }, + { + "word": " say,", + "start": 3140.9, + "end": 3141.28, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 3141.38, + "end": 3141.56, + "probability": 0.95849609375 + }, + { + "word": " this", + "start": 3141.6, + "end": 3141.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 3141.74, + "end": 3141.86, + "probability": 1.0 + }, + { + "word": " what's", + "start": 3141.86, + "end": 3142.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 3142.04, + "end": 3142.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 3142.14, + "end": 3142.42, + "probability": 1.0 + }, + { + "word": " here,", + "start": 3142.42, + "end": 3142.66, + "probability": 1.0 + }, + { + "word": " help,", + "start": 3142.74, + "end": 3143.0, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3143.14, + "end": 3144.94, + "probability": 0.99951171875 + }, + { + "word": " potentially", + "start": 3144.94, + "end": 3146.28, + "probability": 0.99951171875 + }, + { + "word": " silenced.", + "start": 3146.28, + "end": 3146.96, + "probability": 1.0 + } + ] + }, + { + "id": 1305, + "text": "And, you know, China is a great issue of how the world can be manipulated.", + "start": 3147.94, + "end": 3153.7, + "words": [ + { + "word": " And,", + "start": 3147.94, + "end": 3148.38, + "probability": 0.78173828125 + }, + { + "word": " you", + "start": 3148.38, + "end": 3148.82, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 3148.82, + "end": 3149.2, + "probability": 1.0 + }, + { + "word": " China", + "start": 3149.2, + "end": 3149.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 3149.62, + "end": 3149.74, + "probability": 0.60009765625 + }, + { + "word": " a", + "start": 3149.74, + "end": 3149.82, + "probability": 1.0 + }, + { + "word": " great", + "start": 3149.82, + "end": 3150.24, + "probability": 1.0 + }, + { + "word": " issue", + "start": 3150.24, + "end": 3150.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 3150.58, + "end": 3150.86, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 3150.86, + "end": 3151.32, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 3151.32, + "end": 3152.08, + "probability": 1.0 + }, + { + "word": " world", + "start": 3152.08, + "end": 3152.38, + "probability": 1.0 + }, + { + "word": " can", + "start": 3152.38, + "end": 3152.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 3152.58, + "end": 3152.82, + "probability": 1.0 + }, + { + "word": " manipulated.", + "start": 3152.82, + "end": 3153.7, + "probability": 1.0 + } + ] + }, + { + "id": 1306, + "text": "And same with North Korea, right, where you look at how the worldview can be manipulated just by changing the content or censoring the content that's on the Internet.", + "start": 3153.88, + "end": 3162.9, + "words": [ + { + "word": " And", + "start": 3153.88, + "end": 3153.96, + "probability": 0.994140625 + }, + { + "word": " same", + "start": 3153.96, + "end": 3154.06, + "probability": 0.93994140625 + }, + { + "word": " with", + "start": 3154.06, + "end": 3154.22, + "probability": 1.0 + }, + { + "word": " North", + "start": 3154.22, + "end": 3154.38, + "probability": 1.0 + }, + { + "word": " Korea,", + "start": 3154.38, + "end": 3154.74, + "probability": 1.0 + }, + { + "word": " right,", + "start": 3154.86, + "end": 3155.52, + "probability": 0.658203125 + }, + { + "word": " where", + "start": 3155.56, + "end": 3155.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 3155.66, + "end": 3155.8, + "probability": 1.0 + }, + { + "word": " look", + "start": 3155.8, + "end": 3155.96, + "probability": 1.0 + }, + { + "word": " at", + "start": 3155.96, + "end": 3156.1, + "probability": 1.0 + }, + { + "word": " how", + "start": 3156.1, + "end": 3156.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 3156.32, + "end": 3156.52, + "probability": 1.0 + }, + { + "word": " worldview", + "start": 3156.52, + "end": 3157.12, + "probability": 0.80322265625 + }, + { + "word": " can", + "start": 3157.12, + "end": 3157.46, + "probability": 1.0 + }, + { + "word": " be", + "start": 3157.46, + "end": 3157.62, + "probability": 1.0 + }, + { + "word": " manipulated", + "start": 3157.62, + "end": 3158.36, + "probability": 1.0 + }, + { + "word": " just", + "start": 3158.36, + "end": 3159.48, + "probability": 0.99853515625 + }, + { + "word": " by", + "start": 3159.48, + "end": 3159.7, + "probability": 1.0 + }, + { + "word": " changing", + "start": 3159.7, + "end": 3160.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 3160.06, + "end": 3160.28, + "probability": 1.0 + }, + { + "word": " content", + "start": 3160.28, + "end": 3160.62, + "probability": 1.0 + }, + { + "word": " or", + "start": 3160.62, + "end": 3161.18, + "probability": 0.9990234375 + }, + { + "word": " censoring", + "start": 3161.18, + "end": 3161.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 3161.82, + "end": 3161.98, + "probability": 1.0 + }, + { + "word": " content", + "start": 3161.98, + "end": 3162.26, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3162.26, + "end": 3162.52, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3162.52, + "end": 3162.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 3162.6, + "end": 3162.74, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 3162.74, + "end": 3162.9, + "probability": 0.88525390625 + } + ] + }, + { + "id": 1307, + "text": "And we don't like that.", + "start": 3163.64, + "end": 3164.94, + "words": [ + { + "word": " And", + "start": 3163.64, + "end": 3164.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 3164.08, + "end": 3164.5, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3164.5, + "end": 3164.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 3164.64, + "end": 3164.78, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3164.78, + "end": 3164.94, + "probability": 1.0 + } + ] + }, + { + "id": 1308, + "text": "And I think that as Americans, we like to believe that we're exempt from that type of thing to some extent because we have freedom of speech here in the United States.", + "start": 3165.06, + "end": 3172.54, + "words": [ + { + "word": " And", + "start": 3165.06, + "end": 3165.42, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3165.42, + "end": 3165.54, + "probability": 1.0 + }, + { + "word": " think", + "start": 3165.54, + "end": 3165.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 3165.72, + "end": 3165.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 3165.82, + "end": 3165.96, + "probability": 0.97314453125 + }, + { + "word": " Americans,", + "start": 3165.96, + "end": 3166.38, + "probability": 1.0 + }, + { + "word": " we", + "start": 3166.48, + "end": 3166.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 3166.7, + "end": 3166.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 3166.82, + "end": 3166.98, + "probability": 1.0 + }, + { + "word": " believe", + "start": 3166.98, + "end": 3167.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 3167.24, + "end": 3167.46, + "probability": 1.0 + }, + { + "word": " we're", + "start": 3167.46, + "end": 3167.7, + "probability": 1.0 + }, + { + "word": " exempt", + "start": 3167.7, + "end": 3168.02, + "probability": 1.0 + }, + { + "word": " from", + "start": 3168.02, + "end": 3168.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3168.3, + "end": 3168.52, + "probability": 1.0 + }, + { + "word": " type", + "start": 3168.52, + "end": 3168.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 3168.7, + "end": 3168.88, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3168.88, + "end": 3169.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 3169.04, + "end": 3169.22, + "probability": 0.99462890625 + }, + { + "word": " some", + "start": 3169.22, + "end": 3169.36, + "probability": 1.0 + }, + { + "word": " extent", + "start": 3169.36, + "end": 3169.64, + "probability": 1.0 + }, + { + "word": " because", + "start": 3169.64, + "end": 3169.94, + "probability": 0.94287109375 + }, + { + "word": " we", + "start": 3169.94, + "end": 3170.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 3170.16, + "end": 3170.38, + "probability": 1.0 + }, + { + "word": " freedom", + "start": 3170.38, + "end": 3171.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 3171.16, + "end": 3171.38, + "probability": 1.0 + }, + { + "word": " speech", + "start": 3171.38, + "end": 3171.58, + "probability": 1.0 + }, + { + "word": " here", + "start": 3171.58, + "end": 3171.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 3171.84, + "end": 3171.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 3171.96, + "end": 3172.0, + "probability": 1.0 + }, + { + "word": " United", + "start": 3172.0, + "end": 3172.14, + "probability": 1.0 + }, + { + "word": " States.", + "start": 3172.14, + "end": 3172.54, + "probability": 1.0 + } + ] + }, + { + "id": 1309, + "text": "But examples like what happened with Reddit are proof that that is not necessarily.", + "start": 3172.62, + "end": 3176.76, + "words": [ + { + "word": " But", + "start": 3172.62, + "end": 3173.06, + "probability": 0.99951171875 + }, + { + "word": " examples", + "start": 3173.06, + "end": 3173.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 3173.46, + "end": 3173.76, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 3173.76, + "end": 3173.88, + "probability": 1.0 + }, + { + "word": " happened", + "start": 3173.88, + "end": 3174.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 3174.1, + "end": 3174.26, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3174.26, + "end": 3174.46, + "probability": 1.0 + }, + { + "word": " are", + "start": 3174.46, + "end": 3175.06, + "probability": 0.99951171875 + }, + { + "word": " proof", + "start": 3175.06, + "end": 3175.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 3175.36, + "end": 3175.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 3175.64, + "end": 3175.96, + "probability": 0.9560546875 + }, + { + "word": " is", + "start": 3175.96, + "end": 3176.28, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 3176.28, + "end": 3176.46, + "probability": 1.0 + }, + { + "word": " necessarily.", + "start": 3176.46, + "end": 3176.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1310, + "text": "The case all the time, if you trust one entity too much for your news, something like this is bound to happen.", + "start": 3176.96, + "end": 3183.06, + "words": [ + { + "word": " The", + "start": 3176.96, + "end": 3177.08, + "probability": 0.00391387939453125 + }, + { + "word": " case", + "start": 3177.08, + "end": 3177.2, + "probability": 0.125732421875 + }, + { + "word": " all", + "start": 3177.2, + "end": 3177.44, + "probability": 0.953125 + }, + { + "word": " the", + "start": 3177.44, + "end": 3177.56, + "probability": 0.99560546875 + }, + { + "word": " time,", + "start": 3177.56, + "end": 3177.82, + "probability": 0.99560546875 + }, + { + "word": " if", + "start": 3177.86, + "end": 3178.3, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 3178.3, + "end": 3178.46, + "probability": 0.9990234375 + }, + { + "word": " trust", + "start": 3178.46, + "end": 3178.78, + "probability": 0.96826171875 + }, + { + "word": " one", + "start": 3178.78, + "end": 3179.2, + "probability": 0.74169921875 + }, + { + "word": " entity", + "start": 3179.2, + "end": 3179.56, + "probability": 0.9833984375 + }, + { + "word": " too", + "start": 3179.56, + "end": 3179.88, + "probability": 0.98876953125 + }, + { + "word": " much", + "start": 3179.88, + "end": 3180.16, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3180.16, + "end": 3180.5, + "probability": 0.98828125 + }, + { + "word": " your", + "start": 3180.5, + "end": 3180.66, + "probability": 0.99755859375 + }, + { + "word": " news,", + "start": 3180.66, + "end": 3181.02, + "probability": 0.9951171875 + }, + { + "word": " something", + "start": 3181.18, + "end": 3182.02, + "probability": 0.8017578125 + }, + { + "word": " like", + "start": 3182.02, + "end": 3182.2, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 3182.2, + "end": 3182.28, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3182.28, + "end": 3182.4, + "probability": 0.9921875 + }, + { + "word": " bound", + "start": 3182.4, + "end": 3182.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3182.6, + "end": 3182.76, + "probability": 0.9990234375 + }, + { + "word": " happen.", + "start": 3182.76, + "end": 3183.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1311, + "text": "And the same thing with Facebook, right, where Facebook was basically accused of censoring the trending news topics and saying, well, this is a little too right leaning for us.", + "start": 3183.24, + "end": 3196.68, + "words": [ + { + "word": " And", + "start": 3183.24, + "end": 3183.38, + "probability": 0.28759765625 + }, + { + "word": " the", + "start": 3183.38, + "end": 3183.54, + "probability": 0.99267578125 + }, + { + "word": " same", + "start": 3183.54, + "end": 3183.68, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3183.68, + "end": 3183.8, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3183.8, + "end": 3183.94, + "probability": 0.99951171875 + }, + { + "word": " Facebook,", + "start": 3183.94, + "end": 3184.32, + "probability": 0.99365234375 + }, + { + "word": " right,", + "start": 3184.52, + "end": 3184.88, + "probability": 0.5546875 + }, + { + "word": " where", + "start": 3184.94, + "end": 3185.02, + "probability": 0.99951171875 + }, + { + "word": " Facebook", + "start": 3185.02, + "end": 3185.4, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3185.4, + "end": 3185.76, + "probability": 0.9853515625 + }, + { + "word": " basically", + "start": 3185.76, + "end": 3187.3, + "probability": 0.998046875 + }, + { + "word": " accused", + "start": 3187.3, + "end": 3187.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 3187.7, + "end": 3188.2, + "probability": 1.0 + }, + { + "word": " censoring", + "start": 3188.2, + "end": 3189.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 3189.08, + "end": 3189.28, + "probability": 0.99951171875 + }, + { + "word": " trending", + "start": 3189.28, + "end": 3189.62, + "probability": 0.9990234375 + }, + { + "word": " news", + "start": 3189.62, + "end": 3189.94, + "probability": 0.99951171875 + }, + { + "word": " topics", + "start": 3189.94, + "end": 3190.38, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3190.38, + "end": 3191.18, + "probability": 0.9609375 + }, + { + "word": " saying,", + "start": 3191.18, + "end": 3191.5, + "probability": 1.0 + }, + { + "word": " well,", + "start": 3191.56, + "end": 3191.74, + "probability": 0.98095703125 + }, + { + "word": " this", + "start": 3191.92, + "end": 3193.18, + "probability": 0.99365234375 + }, + { + "word": " is", + "start": 3193.18, + "end": 3193.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 3193.62, + "end": 3194.04, + "probability": 1.0 + }, + { + "word": " little", + "start": 3194.04, + "end": 3194.3, + "probability": 1.0 + }, + { + "word": " too", + "start": 3194.3, + "end": 3194.62, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3194.62, + "end": 3195.74, + "probability": 0.448486328125 + }, + { + "word": " leaning", + "start": 3195.74, + "end": 3196.12, + "probability": 0.3154296875 + }, + { + "word": " for", + "start": 3196.12, + "end": 3196.44, + "probability": 1.0 + }, + { + "word": " us.", + "start": 3196.44, + "end": 3196.68, + "probability": 1.0 + } + ] + }, + { + "id": 1312, + "text": "So we're not going to post it as a as a trending topic.", + "start": 3196.7, + "end": 3200.18, + "words": [ + { + "word": " So", + "start": 3196.7, + "end": 3196.84, + "probability": 0.99755859375 + }, + { + "word": " we're", + "start": 3196.84, + "end": 3196.98, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 3196.98, + "end": 3197.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 3197.14, + "end": 3197.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 3197.36, + "end": 3197.62, + "probability": 1.0 + }, + { + "word": " post", + "start": 3197.62, + "end": 3197.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 3197.92, + "end": 3198.1, + "probability": 1.0 + }, + { + "word": " as", + "start": 3198.1, + "end": 3198.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 3198.36, + "end": 3198.62, + "probability": 1.0 + }, + { + "word": " as", + "start": 3198.62, + "end": 3199.1, + "probability": 0.93359375 + }, + { + "word": " a", + "start": 3199.1, + "end": 3199.26, + "probability": 1.0 + }, + { + "word": " trending", + "start": 3199.26, + "end": 3199.74, + "probability": 1.0 + }, + { + "word": " topic.", + "start": 3199.74, + "end": 3200.18, + "probability": 1.0 + } + ] + }, + { + "id": 1313, + "text": "Now, the Young Turks did an interesting video on this and not.", + "start": 3201.78, + "end": 3206.66, + "words": [ + { + "word": " Now,", + "start": 3201.78, + "end": 3202.3, + "probability": 0.97412109375 + }, + { + "word": " the", + "start": 3202.42, + "end": 3202.66, + "probability": 0.90478515625 + }, + { + "word": " Young", + "start": 3202.66, + "end": 3202.84, + "probability": 0.9658203125 + }, + { + "word": " Turks", + "start": 3202.84, + "end": 3203.08, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 3203.08, + "end": 3203.3, + "probability": 1.0 + }, + { + "word": " an", + "start": 3203.3, + "end": 3203.44, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 3203.44, + "end": 3203.7, + "probability": 1.0 + }, + { + "word": " video", + "start": 3203.7, + "end": 3204.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 3204.06, + "end": 3204.34, + "probability": 1.0 + }, + { + "word": " this", + "start": 3204.34, + "end": 3204.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 3204.58, + "end": 3205.14, + "probability": 0.5732421875 + }, + { + "word": " not.", + "start": 3205.14, + "end": 3206.66, + "probability": 0.82861328125 + } + ] + }, + { + "id": 1314, + "text": "But I at all want people to watch the Young Turks.", + "start": 3206.96, + "end": 3209.22, + "words": [ + { + "word": " But", + "start": 3206.96, + "end": 3206.98, + "probability": 0.131591796875 + }, + { + "word": " I", + "start": 3206.98, + "end": 3207.04, + "probability": 0.95361328125 + }, + { + "word": " at", + "start": 3207.04, + "end": 3207.3, + "probability": 0.81005859375 + }, + { + "word": " all", + "start": 3207.3, + "end": 3207.54, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 3207.54, + "end": 3207.98, + "probability": 0.99365234375 + }, + { + "word": " people", + "start": 3207.98, + "end": 3208.38, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3208.38, + "end": 3208.56, + "probability": 0.99609375 + }, + { + "word": " watch", + "start": 3208.56, + "end": 3208.76, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3208.76, + "end": 3208.86, + "probability": 0.6064453125 + }, + { + "word": " Young", + "start": 3208.86, + "end": 3208.96, + "probability": 0.96923828125 + }, + { + "word": " Turks.", + "start": 3208.96, + "end": 3209.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1315, + "text": "But they're an Internet news organization, is that what they call themselves?", + "start": 3209.34, + "end": 3214.42, + "words": [ + { + "word": " But", + "start": 3209.34, + "end": 3209.5, + "probability": 0.966796875 + }, + { + "word": " they're", + "start": 3209.5, + "end": 3210.76, + "probability": 0.9892578125 + }, + { + "word": " an", + "start": 3210.76, + "end": 3210.86, + "probability": 0.99951171875 + }, + { + "word": " Internet", + "start": 3210.86, + "end": 3211.16, + "probability": 0.34130859375 + }, + { + "word": " news", + "start": 3211.16, + "end": 3211.6, + "probability": 0.96826171875 + }, + { + "word": " organization,", + "start": 3211.6, + "end": 3212.44, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3212.76, + "end": 3213.44, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 3213.44, + "end": 3213.66, + "probability": 0.0013885498046875 + }, + { + "word": " what", + "start": 3213.66, + "end": 3213.8, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 3213.8, + "end": 3213.96, + "probability": 1.0 + }, + { + "word": " call", + "start": 3213.96, + "end": 3214.14, + "probability": 0.99951171875 + }, + { + "word": " themselves?", + "start": 3214.14, + "end": 3214.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1316, + "text": "And their explanation was, well, you can't trust sources like Breitbart and you can't trust sources like Drudge Report.", + "start": 3215.46, + "end": 3223.98, + "words": [ + { + "word": " And", + "start": 3215.46, + "end": 3215.94, + "probability": 0.9951171875 + }, + { + "word": " their", + "start": 3215.94, + "end": 3216.42, + "probability": 0.99560546875 + }, + { + "word": " explanation", + "start": 3216.42, + "end": 3218.02, + "probability": 0.99951171875 + }, + { + "word": " was,", + "start": 3218.02, + "end": 3218.56, + "probability": 1.0 + }, + { + "word": " well,", + "start": 3218.78, + "end": 3219.0, + "probability": 0.98291015625 + }, + { + "word": " you", + "start": 3219.12, + "end": 3219.42, + "probability": 1.0 + }, + { + "word": " can't", + "start": 3219.42, + "end": 3219.76, + "probability": 1.0 + }, + { + "word": " trust", + "start": 3219.76, + "end": 3220.08, + "probability": 1.0 + }, + { + "word": " sources", + "start": 3220.08, + "end": 3220.98, + "probability": 0.9130859375 + }, + { + "word": " like", + "start": 3220.98, + "end": 3221.5, + "probability": 1.0 + }, + { + "word": " Breitbart", + "start": 3221.5, + "end": 3221.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 3221.98, + "end": 3222.18, + "probability": 0.802734375 + }, + { + "word": " you", + "start": 3222.18, + "end": 3222.24, + "probability": 1.0 + }, + { + "word": " can't", + "start": 3222.24, + "end": 3222.5, + "probability": 1.0 + }, + { + "word": " trust", + "start": 3222.5, + "end": 3222.72, + "probability": 1.0 + }, + { + "word": " sources", + "start": 3222.72, + "end": 3222.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 3222.98, + "end": 3223.44, + "probability": 0.99951171875 + }, + { + "word": " Drudge", + "start": 3223.44, + "end": 3223.76, + "probability": 0.9873046875 + }, + { + "word": " Report.", + "start": 3223.76, + "end": 3223.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 1317, + "text": "So you have to give it a little more time.", + "start": 3224.44, + "end": 3227.28, + "words": [ + { + "word": " So", + "start": 3224.44, + "end": 3224.92, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3224.92, + "end": 3225.86, + "probability": 0.9921875 + }, + { + "word": " have", + "start": 3225.86, + "end": 3226.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 3226.1, + "end": 3226.32, + "probability": 1.0 + }, + { + "word": " give", + "start": 3226.32, + "end": 3226.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 3226.66, + "end": 3226.76, + "probability": 0.5078125 + }, + { + "word": " a", + "start": 3226.76, + "end": 3226.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 3226.78, + "end": 3226.88, + "probability": 1.0 + }, + { + "word": " more", + "start": 3226.88, + "end": 3227.02, + "probability": 1.0 + }, + { + "word": " time.", + "start": 3227.02, + "end": 3227.28, + "probability": 1.0 + } + ] + }, + { + "id": 1318, + "text": "You have to find other sources before they'll put it up in trending.", + "start": 3227.32, + "end": 3230.7, + "words": [ + { + "word": " You", + "start": 3227.32, + "end": 3227.44, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3227.44, + "end": 3227.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3227.5, + "end": 3227.56, + "probability": 1.0 + }, + { + "word": " find", + "start": 3227.56, + "end": 3227.72, + "probability": 1.0 + }, + { + "word": " other", + "start": 3227.72, + "end": 3227.96, + "probability": 1.0 + }, + { + "word": " sources", + "start": 3227.96, + "end": 3228.36, + "probability": 1.0 + }, + { + "word": " before", + "start": 3228.36, + "end": 3228.72, + "probability": 0.99951171875 + }, + { + "word": " they'll", + "start": 3228.72, + "end": 3229.96, + "probability": 0.990234375 + }, + { + "word": " put", + "start": 3229.96, + "end": 3230.08, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3230.08, + "end": 3230.2, + "probability": 1.0 + }, + { + "word": " up", + "start": 3230.2, + "end": 3230.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 3230.32, + "end": 3230.44, + "probability": 0.8330078125 + }, + { + "word": " trending.", + "start": 3230.44, + "end": 3230.7, + "probability": 0.88818359375 + } + ] + }, + { + "id": 1319, + "text": "But if Huffington Post put something up, you know, they put it up rather.", + "start": 3231.1, + "end": 3236.64, + "words": [ + { + "word": " But", + "start": 3231.1, + "end": 3231.58, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 3231.58, + "end": 3232.16, + "probability": 0.99951171875 + }, + { + "word": " Huffington", + "start": 3232.16, + "end": 3233.54, + "probability": 0.99853515625 + }, + { + "word": " Post", + "start": 3233.54, + "end": 3233.8, + "probability": 1.0 + }, + { + "word": " put", + "start": 3233.8, + "end": 3233.98, + "probability": 0.6923828125 + }, + { + "word": " something", + "start": 3233.98, + "end": 3234.28, + "probability": 1.0 + }, + { + "word": " up,", + "start": 3234.28, + "end": 3234.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 3234.7, + "end": 3235.5, + "probability": 0.64013671875 + }, + { + "word": " know,", + "start": 3235.5, + "end": 3235.66, + "probability": 1.0 + }, + { + "word": " they", + "start": 3235.66, + "end": 3235.8, + "probability": 1.0 + }, + { + "word": " put", + "start": 3235.8, + "end": 3236.06, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 3236.06, + "end": 3236.26, + "probability": 1.0 + }, + { + "word": " up", + "start": 3236.26, + "end": 3236.38, + "probability": 1.0 + }, + { + "word": " rather.", + "start": 3236.38, + "end": 3236.64, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1320, + "text": "I mean.", + "start": 3236.72, + "end": 3236.9, + "words": [ + { + "word": " I", + "start": 3236.72, + "end": 3236.82, + "probability": 0.75830078125 + }, + { + "word": " mean.", + "start": 3236.82, + "end": 3236.9, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1321, + "text": "Without the secondary looks, without the backup sources.", + "start": 3236.96, + "end": 3241.26, + "words": [ + { + "word": " Without", + "start": 3236.96, + "end": 3237.4, + "probability": 0.2724609375 + }, + { + "word": " the", + "start": 3237.4, + "end": 3237.72, + "probability": 0.99560546875 + }, + { + "word": " secondary", + "start": 3237.72, + "end": 3238.56, + "probability": 0.958984375 + }, + { + "word": " looks,", + "start": 3238.56, + "end": 3239.08, + "probability": 0.9990234375 + }, + { + "word": " without", + "start": 3239.2, + "end": 3239.4, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3239.4, + "end": 3239.68, + "probability": 1.0 + }, + { + "word": " backup", + "start": 3239.68, + "end": 3240.78, + "probability": 0.99609375 + }, + { + "word": " sources.", + "start": 3240.78, + "end": 3241.26, + "probability": 1.0 + } + ] + }, + { + "id": 1322, + "text": "Basically, if you were you can't.", + "start": 3242.36, + "end": 3244.18, + "words": [ + { + "word": " Basically,", + "start": 3242.36, + "end": 3242.92, + "probability": 0.98779296875 + }, + { + "word": " if", + "start": 3243.16, + "end": 3243.18, + "probability": 0.315185546875 + }, + { + "word": " you", + "start": 3243.18, + "end": 3243.36, + "probability": 1.0 + }, + { + "word": " were", + "start": 3243.36, + "end": 3243.48, + "probability": 0.58740234375 + }, + { + "word": " you", + "start": 3243.48, + "end": 3243.72, + "probability": 0.05328369140625 + }, + { + "word": " can't.", + "start": 3243.72, + "end": 3244.18, + "probability": 1.0 + } + ] + }, + { + "id": 1323, + "text": "I think you can't unless you are a news organization that you shouldn't be trying to moderate the news.", + "start": 3244.5, + "end": 3254.94, + "words": [ + { + "word": " I", + "start": 3244.5, + "end": 3245.06, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 3245.06, + "end": 3245.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 3245.42, + "end": 3245.76, + "probability": 1.0 + }, + { + "word": " can't", + "start": 3245.76, + "end": 3246.16, + "probability": 1.0 + }, + { + "word": " unless", + "start": 3246.16, + "end": 3246.42, + "probability": 0.8154296875 + }, + { + "word": " you", + "start": 3246.42, + "end": 3246.94, + "probability": 1.0 + }, + { + "word": " are", + "start": 3246.94, + "end": 3247.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 3247.12, + "end": 3247.32, + "probability": 1.0 + }, + { + "word": " news", + "start": 3247.32, + "end": 3247.66, + "probability": 1.0 + }, + { + "word": " organization", + "start": 3247.66, + "end": 3248.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 3248.24, + "end": 3249.32, + "probability": 0.98681640625 + }, + { + "word": " you", + "start": 3249.32, + "end": 3250.06, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 3250.06, + "end": 3250.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 3250.64, + "end": 3250.88, + "probability": 1.0 + }, + { + "word": " trying", + "start": 3250.88, + "end": 3252.58, + "probability": 0.96630859375 + }, + { + "word": " to", + "start": 3252.58, + "end": 3254.08, + "probability": 1.0 + }, + { + "word": " moderate", + "start": 3254.08, + "end": 3254.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3254.42, + "end": 3254.72, + "probability": 1.0 + }, + { + "word": " news.", + "start": 3254.72, + "end": 3254.94, + "probability": 1.0 + } + ] + }, + { + "id": 1324, + "text": "You shouldn't be determining for yourself what's important, especially like with the Facebook thing.", + "start": 3255.14, + "end": 3260.08, + "words": [ + { + "word": " You", + "start": 3255.14, + "end": 3255.58, + "probability": 0.99951171875 + }, + { + "word": " shouldn't", + "start": 3255.58, + "end": 3255.84, + "probability": 1.0 + }, + { + "word": " be", + "start": 3255.84, + "end": 3256.1, + "probability": 1.0 + }, + { + "word": " determining", + "start": 3256.1, + "end": 3256.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 3256.56, + "end": 3256.92, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 3256.92, + "end": 3257.18, + "probability": 1.0 + }, + { + "word": " what's", + "start": 3257.18, + "end": 3257.64, + "probability": 0.99951171875 + }, + { + "word": " important,", + "start": 3257.64, + "end": 3257.9, + "probability": 1.0 + }, + { + "word": " especially", + "start": 3258.1, + "end": 3258.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 3258.66, + "end": 3259.28, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3259.28, + "end": 3259.4, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3259.4, + "end": 3259.52, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 3259.52, + "end": 3259.78, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 3259.78, + "end": 3260.08, + "probability": 1.0 + } + ] + }, + { + "id": 1325, + "text": "It's like if there's a certain number of people saying it, it's trending.", + "start": 3260.26, + "end": 3263.94, + "words": [ + { + "word": " It's", + "start": 3260.26, + "end": 3260.82, + "probability": 0.9755859375 + }, + { + "word": " like", + "start": 3260.82, + "end": 3260.9, + "probability": 1.0 + }, + { + "word": " if", + "start": 3260.9, + "end": 3261.24, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 3261.24, + "end": 3261.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 3261.46, + "end": 3261.5, + "probability": 1.0 + }, + { + "word": " certain", + "start": 3261.5, + "end": 3261.76, + "probability": 1.0 + }, + { + "word": " number", + "start": 3261.76, + "end": 3262.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 3262.12, + "end": 3262.36, + "probability": 1.0 + }, + { + "word": " people", + "start": 3262.36, + "end": 3262.58, + "probability": 1.0 + }, + { + "word": " saying", + "start": 3262.58, + "end": 3262.9, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3262.9, + "end": 3263.18, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 3263.2, + "end": 3263.64, + "probability": 1.0 + }, + { + "word": " trending.", + "start": 3263.64, + "end": 3263.94, + "probability": 1.0 + } + ] + }, + { + "id": 1326, + "text": "Right.", + "start": 3264.06, + "end": 3264.48, + "words": [ + { + "word": " Right.", + "start": 3264.06, + "end": 3264.48, + "probability": 0.337646484375 + } + ] + }, + { + "id": 1327, + "text": "It doesn't matter whether it's true or not.", + "start": 3264.56, + "end": 3266.4, + "words": [ + { + "word": " It", + "start": 3264.56, + "end": 3264.68, + "probability": 0.99609375 + }, + { + "word": " doesn't", + "start": 3264.68, + "end": 3264.92, + "probability": 0.99951171875 + }, + { + "word": " matter", + "start": 3264.92, + "end": 3265.2, + "probability": 1.0 + }, + { + "word": " whether", + "start": 3265.2, + "end": 3265.48, + "probability": 0.94873046875 + }, + { + "word": " it's", + "start": 3265.48, + "end": 3265.7, + "probability": 0.974609375 + }, + { + "word": " true", + "start": 3265.7, + "end": 3265.84, + "probability": 1.0 + }, + { + "word": " or", + "start": 3265.84, + "end": 3266.2, + "probability": 0.99853515625 + }, + { + "word": " not.", + "start": 3266.2, + "end": 3266.4, + "probability": 1.0 + } + ] + }, + { + "id": 1328, + "text": "Right.", + "start": 3266.4, + "end": 3266.78, + "words": [ + { + "word": " Right.", + "start": 3266.4, + "end": 3266.78, + "probability": 0.376708984375 + } + ] + }, + { + "id": 1329, + "text": "The trend is, is that people are talking about this.", + "start": 3267.0, + "end": 3269.66, + "words": [ + { + "word": " The", + "start": 3267.0, + "end": 3267.26, + "probability": 0.98974609375 + }, + { + "word": " trend", + "start": 3267.26, + "end": 3267.72, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 3267.72, + "end": 3268.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 3268.18, + "end": 3268.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 3268.36, + "end": 3268.48, + "probability": 1.0 + }, + { + "word": " people", + "start": 3268.48, + "end": 3268.68, + "probability": 1.0 + }, + { + "word": " are", + "start": 3268.68, + "end": 3268.82, + "probability": 1.0 + }, + { + "word": " talking", + "start": 3268.82, + "end": 3269.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 3269.04, + "end": 3269.28, + "probability": 1.0 + }, + { + "word": " this.", + "start": 3269.28, + "end": 3269.66, + "probability": 1.0 + } + ] + }, + { + "id": 1330, + "text": "So in order to to vet things for truthfulness on a trending list seems wrong, especially if you're not applying to the same rules to both sides of that spectrum.", + "start": 3270.78, + "end": 3281.94, + "words": [ + { + "word": " So", + "start": 3270.78, + "end": 3271.3, + "probability": 0.75048828125 + }, + { + "word": " in", + "start": 3271.3, + "end": 3271.58, + "probability": 0.958984375 + }, + { + "word": " order", + "start": 3271.58, + "end": 3271.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 3271.84, + "end": 3272.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 3272.1, + "end": 3272.84, + "probability": 0.50341796875 + }, + { + "word": " vet", + "start": 3272.84, + "end": 3273.42, + "probability": 1.0 + }, + { + "word": " things", + "start": 3273.42, + "end": 3273.76, + "probability": 1.0 + }, + { + "word": " for", + "start": 3273.76, + "end": 3274.12, + "probability": 1.0 + }, + { + "word": " truthfulness", + "start": 3274.12, + "end": 3274.72, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 3274.72, + "end": 3275.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 3275.14, + "end": 3275.28, + "probability": 1.0 + }, + { + "word": " trending", + "start": 3275.28, + "end": 3275.66, + "probability": 1.0 + }, + { + "word": " list", + "start": 3275.66, + "end": 3276.02, + "probability": 1.0 + }, + { + "word": " seems", + "start": 3276.02, + "end": 3276.88, + "probability": 0.98974609375 + }, + { + "word": " wrong,", + "start": 3276.88, + "end": 3278.6, + "probability": 0.9892578125 + }, + { + "word": " especially", + "start": 3278.76, + "end": 3279.08, + "probability": 1.0 + }, + { + "word": " if", + "start": 3279.08, + "end": 3279.34, + "probability": 1.0 + }, + { + "word": " you're", + "start": 3279.34, + "end": 3279.4, + "probability": 1.0 + }, + { + "word": " not", + "start": 3279.4, + "end": 3279.52, + "probability": 1.0 + }, + { + "word": " applying", + "start": 3279.52, + "end": 3279.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 3279.86, + "end": 3280.02, + "probability": 0.21728515625 + }, + { + "word": " the", + "start": 3280.02, + "end": 3280.08, + "probability": 1.0 + }, + { + "word": " same", + "start": 3280.08, + "end": 3280.26, + "probability": 1.0 + }, + { + "word": " rules", + "start": 3280.26, + "end": 3280.48, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3280.48, + "end": 3280.64, + "probability": 0.99951171875 + }, + { + "word": " both", + "start": 3280.64, + "end": 3280.86, + "probability": 1.0 + }, + { + "word": " sides", + "start": 3280.86, + "end": 3281.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 3281.12, + "end": 3281.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3281.3, + "end": 3281.42, + "probability": 1.0 + }, + { + "word": " spectrum.", + "start": 3281.42, + "end": 3281.94, + "probability": 1.0 + } + ] + }, + { + "id": 1331, + "text": "Now, don't get me wrong.", + "start": 3282.38, + "end": 3283.52, + "words": [ + { + "word": " Now,", + "start": 3282.38, + "end": 3282.9, + "probability": 0.99365234375 + }, + { + "word": " don't", + "start": 3282.92, + "end": 3283.06, + "probability": 1.0 + }, + { + "word": " get", + "start": 3283.06, + "end": 3283.12, + "probability": 1.0 + }, + { + "word": " me", + "start": 3283.12, + "end": 3283.28, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 3283.28, + "end": 3283.52, + "probability": 1.0 + } + ] + }, + { + "id": 1332, + "text": "You know, the as far as I'm concerned, the the news sources on the left and the right are both crazy.", + "start": 3283.64, + "end": 3291.5, + "words": [ + { + "word": " You", + "start": 3283.64, + "end": 3284.12, + "probability": 0.9072265625 + }, + { + "word": " know,", + "start": 3284.12, + "end": 3284.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 3284.28, + "end": 3284.38, + "probability": 0.99267578125 + }, + { + "word": " as", + "start": 3284.38, + "end": 3285.16, + "probability": 0.9638671875 + }, + { + "word": " far", + "start": 3285.16, + "end": 3285.72, + "probability": 1.0 + }, + { + "word": " as", + "start": 3285.72, + "end": 3285.9, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3285.9, + "end": 3286.1, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 3286.1, + "end": 3286.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 3286.72, + "end": 3287.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 3287.0, + "end": 3287.48, + "probability": 0.9990234375 + }, + { + "word": " news", + "start": 3287.48, + "end": 3288.36, + "probability": 0.99951171875 + }, + { + "word": " sources", + "start": 3288.36, + "end": 3288.7, + "probability": 1.0 + }, + { + "word": " on", + "start": 3288.7, + "end": 3289.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 3289.0, + "end": 3289.1, + "probability": 1.0 + }, + { + "word": " left", + "start": 3289.1, + "end": 3289.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 3289.38, + "end": 3289.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 3289.62, + "end": 3289.78, + "probability": 1.0 + }, + { + "word": " right", + "start": 3289.78, + "end": 3290.06, + "probability": 1.0 + }, + { + "word": " are", + "start": 3290.06, + "end": 3290.4, + "probability": 1.0 + }, + { + "word": " both", + "start": 3290.4, + "end": 3290.84, + "probability": 1.0 + }, + { + "word": " crazy.", + "start": 3290.84, + "end": 3291.5, + "probability": 1.0 + } + ] + }, + { + "id": 1333, + "text": "All right.", + "start": 3291.66, + "end": 3292.28, + "words": [ + { + "word": " All", + "start": 3291.66, + "end": 3292.18, + "probability": 0.368408203125 + }, + { + "word": " right.", + "start": 3292.18, + "end": 3292.28, + "probability": 1.0 + } + ] + }, + { + "id": 1334, + "text": "It's there's a certain amount of centrism that I long for.", + "start": 3292.34, + "end": 3296.38, + "words": [ + { + "word": " It's", + "start": 3292.34, + "end": 3292.72, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 3292.72, + "end": 3293.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 3293.24, + "end": 3293.32, + "probability": 1.0 + }, + { + "word": " certain", + "start": 3293.32, + "end": 3293.64, + "probability": 1.0 + }, + { + "word": " amount", + "start": 3293.64, + "end": 3293.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 3293.86, + "end": 3294.1, + "probability": 1.0 + }, + { + "word": " centrism", + "start": 3294.1, + "end": 3294.62, + "probability": 0.9853515625 + }, + { + "word": " that", + "start": 3294.62, + "end": 3295.08, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3295.08, + "end": 3295.48, + "probability": 1.0 + }, + { + "word": " long", + "start": 3295.48, + "end": 3295.98, + "probability": 0.99853515625 + }, + { + "word": " for.", + "start": 3295.98, + "end": 3296.38, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1335, + "text": "I want Walter Cronkite to come back.", + "start": 3296.4, + "end": 3299.5, + "words": [ + { + "word": " I", + "start": 3296.4, + "end": 3296.8, + "probability": 0.9912109375 + }, + { + "word": " want", + "start": 3296.8, + "end": 3297.44, + "probability": 0.9931640625 + }, + { + "word": " Walter", + "start": 3297.44, + "end": 3297.96, + "probability": 0.99951171875 + }, + { + "word": " Cronkite", + "start": 3297.96, + "end": 3298.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 3298.98, + "end": 3299.14, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 3299.14, + "end": 3299.3, + "probability": 0.99951171875 + }, + { + "word": " back.", + "start": 3299.3, + "end": 3299.5, + "probability": 1.0 + } + ] + }, + { + "id": 1336, + "text": "I want to be told news with without any type of commentary.", + "start": 3300.8, + "end": 3305.88, + "words": [ + { + "word": " I", + "start": 3300.8, + "end": 3301.36, + "probability": 0.9931640625 + }, + { + "word": " want", + "start": 3301.36, + "end": 3301.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 3301.7, + "end": 3301.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 3301.9, + "end": 3302.02, + "probability": 1.0 + }, + { + "word": " told", + "start": 3302.02, + "end": 3302.3, + "probability": 1.0 + }, + { + "word": " news", + "start": 3302.3, + "end": 3303.14, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 3303.14, + "end": 3303.52, + "probability": 0.01032257080078125 + }, + { + "word": " without", + "start": 3303.52, + "end": 3304.06, + "probability": 0.50146484375 + }, + { + "word": " any", + "start": 3304.06, + "end": 3304.92, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 3304.92, + "end": 3305.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 3305.2, + "end": 3305.46, + "probability": 1.0 + }, + { + "word": " commentary.", + "start": 3305.46, + "end": 3305.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1337, + "text": "I want to know the details without any of the slant one way or the other opinion that is associated with it.", + "start": 3306.0, + "end": 3314.64, + "words": [ + { + "word": " I", + "start": 3306.0, + "end": 3306.44, + "probability": 1.0 + }, + { + "word": " want", + "start": 3306.44, + "end": 3306.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 3306.68, + "end": 3306.86, + "probability": 1.0 + }, + { + "word": " know", + "start": 3306.86, + "end": 3307.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 3307.1, + "end": 3307.3, + "probability": 1.0 + }, + { + "word": " details", + "start": 3307.3, + "end": 3307.72, + "probability": 1.0 + }, + { + "word": " without", + "start": 3307.72, + "end": 3308.46, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 3308.46, + "end": 3309.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 3309.0, + "end": 3309.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 3309.22, + "end": 3309.42, + "probability": 1.0 + }, + { + "word": " slant", + "start": 3309.42, + "end": 3311.42, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 3311.42, + "end": 3311.9, + "probability": 0.92724609375 + }, + { + "word": " way", + "start": 3311.9, + "end": 3312.1, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 3312.1, + "end": 3312.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 3312.2, + "end": 3312.28, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 3312.28, + "end": 3312.46, + "probability": 0.994140625 + }, + { + "word": " opinion", + "start": 3312.46, + "end": 3312.74, + "probability": 0.98193359375 + }, + { + "word": " that", + "start": 3312.74, + "end": 3313.44, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 3313.44, + "end": 3313.7, + "probability": 1.0 + }, + { + "word": " associated", + "start": 3313.7, + "end": 3314.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 3314.06, + "end": 3314.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3314.46, + "end": 3314.64, + "probability": 1.0 + } + ] + }, + { + "id": 1338, + "text": "I just want to be told the facts.", + "start": 3314.72, + "end": 3316.48, + "words": [ + { + "word": " I", + "start": 3314.72, + "end": 3315.22, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 3315.22, + "end": 3315.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 3315.4, + "end": 3315.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 3315.52, + "end": 3315.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 3315.64, + "end": 3315.74, + "probability": 1.0 + }, + { + "word": " told", + "start": 3315.74, + "end": 3315.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3315.94, + "end": 3316.16, + "probability": 1.0 + }, + { + "word": " facts.", + "start": 3316.16, + "end": 3316.48, + "probability": 1.0 + } + ] + }, + { + "id": 1339, + "text": "Just the facts, man.", + "start": 3316.78, + "end": 3317.86, + "words": [ + { + "word": " Just", + "start": 3316.78, + "end": 3317.34, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3317.34, + "end": 3317.5, + "probability": 1.0 + }, + { + "word": " facts,", + "start": 3317.5, + "end": 3317.68, + "probability": 0.99853515625 + }, + { + "word": " man.", + "start": 3317.74, + "end": 3317.86, + "probability": 0.97509765625 + } + ] + }, + { + "id": 1340, + "text": "That's it.", + "start": 3317.94, + "end": 3318.44, + "words": [ + { + "word": " That's", + "start": 3317.94, + "end": 3318.3, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3318.3, + "end": 3318.44, + "probability": 1.0 + } + ] + }, + { + "id": 1341, + "text": "And it's to me to have an organization like Reddit.", + "start": 3321.04, + "end": 3326.14, + "words": [ + { + "word": " And", + "start": 3321.04, + "end": 3321.6, + "probability": 0.99169921875 + }, + { + "word": " it's", + "start": 3321.6, + "end": 3322.16, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3322.16, + "end": 3323.06, + "probability": 0.99267578125 + }, + { + "word": " me", + "start": 3323.06, + "end": 3323.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3323.38, + "end": 3324.16, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 3324.16, + "end": 3324.68, + "probability": 1.0 + }, + { + "word": " an", + "start": 3324.68, + "end": 3325.08, + "probability": 1.0 + }, + { + "word": " organization", + "start": 3325.08, + "end": 3325.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 3325.48, + "end": 3325.82, + "probability": 1.0 + }, + { + "word": " Reddit.", + "start": 3325.82, + "end": 3326.14, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1342, + "text": "Say, well, we don't think that this is news.", + "start": 3326.4, + "end": 3329.66, + "words": [ + { + "word": " Say,", + "start": 3326.4, + "end": 3327.16, + "probability": 0.05755615234375 + }, + { + "word": " well,", + "start": 3327.36, + "end": 3327.62, + "probability": 0.98046875 + }, + { + "word": " we", + "start": 3327.74, + "end": 3328.34, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 3328.34, + "end": 3328.7, + "probability": 1.0 + }, + { + "word": " think", + "start": 3328.7, + "end": 3328.9, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 3328.9, + "end": 3329.06, + "probability": 0.99462890625 + }, + { + "word": " this", + "start": 3329.06, + "end": 3329.22, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3329.22, + "end": 3329.4, + "probability": 0.99951171875 + }, + { + "word": " news.", + "start": 3329.4, + "end": 3329.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1343, + "text": "So we're going to kill this, even though there are hundreds of submissions or thousands of comments on that particular thread to just kill that thread because they don't like the way it works.", + "start": 3329.86, + "end": 3341.46, + "words": [ + { + "word": " So", + "start": 3329.86, + "end": 3330.1, + "probability": 0.99853515625 + }, + { + "word": " we're", + "start": 3330.1, + "end": 3330.36, + "probability": 0.994140625 + }, + { + "word": " going", + "start": 3330.36, + "end": 3330.46, + "probability": 0.9853515625 + }, + { + "word": " to", + "start": 3330.46, + "end": 3330.6, + "probability": 1.0 + }, + { + "word": " kill", + "start": 3330.6, + "end": 3330.9, + "probability": 1.0 + }, + { + "word": " this,", + "start": 3330.9, + "end": 3331.1, + "probability": 1.0 + }, + { + "word": " even", + "start": 3331.3, + "end": 3331.8, + "probability": 1.0 + }, + { + "word": " though", + "start": 3331.8, + "end": 3332.12, + "probability": 1.0 + }, + { + "word": " there", + "start": 3332.12, + "end": 3332.42, + "probability": 1.0 + }, + { + "word": " are", + "start": 3332.42, + "end": 3332.54, + "probability": 1.0 + }, + { + "word": " hundreds", + "start": 3332.54, + "end": 3332.96, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3332.96, + "end": 3333.3, + "probability": 1.0 + }, + { + "word": " submissions", + "start": 3333.3, + "end": 3333.7, + "probability": 1.0 + }, + { + "word": " or", + "start": 3333.7, + "end": 3334.08, + "probability": 0.99462890625 + }, + { + "word": " thousands", + "start": 3334.08, + "end": 3334.66, + "probability": 0.990234375 + }, + { + "word": " of", + "start": 3334.66, + "end": 3335.06, + "probability": 1.0 + }, + { + "word": " comments", + "start": 3335.06, + "end": 3335.46, + "probability": 1.0 + }, + { + "word": " on", + "start": 3335.46, + "end": 3335.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3335.72, + "end": 3335.84, + "probability": 1.0 + }, + { + "word": " particular", + "start": 3335.84, + "end": 3336.26, + "probability": 1.0 + }, + { + "word": " thread", + "start": 3336.26, + "end": 3337.4, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 3337.4, + "end": 3338.66, + "probability": 0.63623046875 + }, + { + "word": " just", + "start": 3338.66, + "end": 3338.9, + "probability": 1.0 + }, + { + "word": " kill", + "start": 3338.9, + "end": 3339.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 3339.28, + "end": 3339.52, + "probability": 1.0 + }, + { + "word": " thread", + "start": 3339.52, + "end": 3339.8, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 3339.8, + "end": 3340.1, + "probability": 0.9677734375 + }, + { + "word": " they", + "start": 3340.1, + "end": 3340.34, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3340.34, + "end": 3340.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 3340.54, + "end": 3340.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3340.76, + "end": 3340.88, + "probability": 1.0 + }, + { + "word": " way", + "start": 3340.88, + "end": 3341.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 3341.04, + "end": 3341.18, + "probability": 1.0 + }, + { + "word": " works.", + "start": 3341.18, + "end": 3341.46, + "probability": 1.0 + } + ] + }, + { + "id": 1344, + "text": "It bothers me.", + "start": 3341.74, + "end": 3342.88, + "words": [ + { + "word": " It", + "start": 3341.74, + "end": 3342.26, + "probability": 0.9912109375 + }, + { + "word": " bothers", + "start": 3342.26, + "end": 3342.6, + "probability": 0.99951171875 + }, + { + "word": " me.", + "start": 3342.6, + "end": 3342.88, + "probability": 1.0 + } + ] + }, + { + "id": 1345, + "text": "And where do you draw the line between when something becomes for the greater good?", + "start": 3342.94, + "end": 3349.44, + "words": [ + { + "word": " And", + "start": 3342.94, + "end": 3343.12, + "probability": 0.99755859375 + }, + { + "word": " where", + "start": 3343.12, + "end": 3343.46, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 3343.46, + "end": 3343.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 3343.58, + "end": 3343.68, + "probability": 1.0 + }, + { + "word": " draw", + "start": 3343.68, + "end": 3343.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 3343.86, + "end": 3343.98, + "probability": 1.0 + }, + { + "word": " line", + "start": 3343.98, + "end": 3344.26, + "probability": 1.0 + }, + { + "word": " between", + "start": 3344.26, + "end": 3344.56, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 3344.56, + "end": 3345.02, + "probability": 1.0 + }, + { + "word": " something", + "start": 3345.02, + "end": 3345.32, + "probability": 1.0 + }, + { + "word": " becomes", + "start": 3345.32, + "end": 3345.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 3345.94, + "end": 3347.46, + "probability": 0.7822265625 + }, + { + "word": " the", + "start": 3347.46, + "end": 3348.94, + "probability": 1.0 + }, + { + "word": " greater", + "start": 3348.94, + "end": 3349.1, + "probability": 1.0 + }, + { + "word": " good?", + "start": 3349.1, + "end": 3349.44, + "probability": 1.0 + } + ] + }, + { + "id": 1346, + "text": "Or is it is it really the policing of thought?", + "start": 3349.92, + "end": 3354.48, + "words": [ + { + "word": " Or", + "start": 3349.92, + "end": 3350.44, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3350.44, + "end": 3351.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 3351.04, + "end": 3351.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 3351.24, + "end": 3351.78, + "probability": 0.720703125 + }, + { + "word": " it", + "start": 3351.78, + "end": 3352.0, + "probability": 1.0 + }, + { + "word": " really", + "start": 3352.0, + "end": 3352.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 3352.42, + "end": 3352.94, + "probability": 1.0 + }, + { + "word": " policing", + "start": 3352.94, + "end": 3353.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 3353.8, + "end": 3354.14, + "probability": 1.0 + }, + { + "word": " thought?", + "start": 3354.14, + "end": 3354.48, + "probability": 1.0 + } + ] + }, + { + "id": 1347, + "text": "Right.", + "start": 3354.7, + "end": 3354.98, + "words": [ + { + "word": " Right.", + "start": 3354.7, + "end": 3354.98, + "probability": 0.0005617141723632812 + } + ] + }, + { + "id": 1348, + "text": "And I think that the important thing.", + "start": 3355.0, + "end": 3356.2, + "words": [ + { + "word": " And", + "start": 3355.0, + "end": 3355.0, + "probability": 0.93798828125 + }, + { + "word": " I", + "start": 3355.0, + "end": 3355.12, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 3355.12, + "end": 3355.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 3355.4, + "end": 3355.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3355.58, + "end": 3355.68, + "probability": 0.99755859375 + }, + { + "word": " important", + "start": 3355.68, + "end": 3355.94, + "probability": 0.99951171875 + }, + { + "word": " thing.", + "start": 3355.94, + "end": 3356.2, + "probability": 1.0 + } + ] + }, + { + "id": 1349, + "text": "I remember here is that the only evidence that we have that a company like Reddit or any type of alternative news organization on the Internet, the only evidence we have that they are trying to uphold the ideals of, you know, open press and free speech is that they tell us that they are.", + "start": 3356.4, + "end": 3371.4, + "words": [ + { + "word": " I", + "start": 3356.4, + "end": 3356.54, + "probability": 0.0287933349609375 + }, + { + "word": " remember", + "start": 3356.54, + "end": 3356.54, + "probability": 0.5546875 + }, + { + "word": " here", + "start": 3356.54, + "end": 3356.8, + "probability": 0.97021484375 + }, + { + "word": " is", + "start": 3356.8, + "end": 3357.06, + "probability": 0.9765625 + }, + { + "word": " that", + "start": 3357.06, + "end": 3357.28, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 3357.28, + "end": 3358.06, + "probability": 0.99169921875 + }, + { + "word": " only", + "start": 3358.06, + "end": 3358.24, + "probability": 0.99755859375 + }, + { + "word": " evidence", + "start": 3358.24, + "end": 3358.68, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3358.68, + "end": 3358.9, + "probability": 0.99658203125 + }, + { + "word": " we", + "start": 3358.9, + "end": 3359.0, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 3359.0, + "end": 3359.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3359.26, + "end": 3359.58, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 3359.58, + "end": 3359.72, + "probability": 0.99609375 + }, + { + "word": " company", + "start": 3359.72, + "end": 3360.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 3360.06, + "end": 3360.28, + "probability": 0.9990234375 + }, + { + "word": " Reddit", + "start": 3360.28, + "end": 3360.54, + "probability": 0.95458984375 + }, + { + "word": " or", + "start": 3360.54, + "end": 3360.7, + "probability": 0.98193359375 + }, + { + "word": " any", + "start": 3360.7, + "end": 3360.96, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 3360.96, + "end": 3361.16, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 3361.16, + "end": 3361.38, + "probability": 0.99951171875 + }, + { + "word": " alternative", + "start": 3361.38, + "end": 3362.28, + "probability": 0.994140625 + }, + { + "word": " news", + "start": 3362.28, + "end": 3362.74, + "probability": 0.99951171875 + }, + { + "word": " organization", + "start": 3362.74, + "end": 3363.16, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 3363.16, + "end": 3363.48, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3363.48, + "end": 3363.56, + "probability": 1.0 + }, + { + "word": " Internet,", + "start": 3363.56, + "end": 3363.76, + "probability": 0.433837890625 + }, + { + "word": " the", + "start": 3363.88, + "end": 3364.2, + "probability": 0.99853515625 + }, + { + "word": " only", + "start": 3364.2, + "end": 3364.3, + "probability": 0.99951171875 + }, + { + "word": " evidence", + "start": 3364.3, + "end": 3364.54, + "probability": 1.0 + }, + { + "word": " we", + "start": 3364.54, + "end": 3364.7, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3364.7, + "end": 3364.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 3364.9, + "end": 3365.12, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3365.12, + "end": 3365.3, + "probability": 1.0 + }, + { + "word": " are", + "start": 3365.3, + "end": 3365.5, + "probability": 0.99951171875 + }, + { + "word": " trying", + "start": 3365.5, + "end": 3366.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3366.08, + "end": 3366.34, + "probability": 1.0 + }, + { + "word": " uphold", + "start": 3366.34, + "end": 3366.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3366.62, + "end": 3367.06, + "probability": 1.0 + }, + { + "word": " ideals", + "start": 3367.06, + "end": 3367.48, + "probability": 1.0 + }, + { + "word": " of,", + "start": 3367.48, + "end": 3367.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 3367.92, + "end": 3368.14, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 3368.14, + "end": 3368.3, + "probability": 1.0 + }, + { + "word": " open", + "start": 3368.3, + "end": 3368.62, + "probability": 0.9990234375 + }, + { + "word": " press", + "start": 3368.62, + "end": 3368.9, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3368.9, + "end": 3369.16, + "probability": 1.0 + }, + { + "word": " free", + "start": 3369.16, + "end": 3369.42, + "probability": 1.0 + }, + { + "word": " speech", + "start": 3369.42, + "end": 3369.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 3369.78, + "end": 3370.26, + "probability": 0.9853515625 + }, + { + "word": " that", + "start": 3370.26, + "end": 3370.38, + "probability": 1.0 + }, + { + "word": " they", + "start": 3370.38, + "end": 3370.52, + "probability": 1.0 + }, + { + "word": " tell", + "start": 3370.52, + "end": 3370.76, + "probability": 1.0 + }, + { + "word": " us", + "start": 3370.76, + "end": 3370.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 3370.96, + "end": 3371.08, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3371.08, + "end": 3371.22, + "probability": 0.99951171875 + }, + { + "word": " are.", + "start": 3371.22, + "end": 3371.4, + "probability": 1.0 + } + ] + }, + { + "id": 1350, + "text": "You know, there's they're under no obligation as a company.", + "start": 3372.12, + "end": 3374.62, + "words": [ + { + "word": " You", + "start": 3372.12, + "end": 3372.52, + "probability": 0.99462890625 + }, + { + "word": " know,", + "start": 3372.52, + "end": 3372.66, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3372.68, + "end": 3372.9, + "probability": 0.8583984375 + }, + { + "word": " they're", + "start": 3372.9, + "end": 3373.32, + "probability": 0.85498046875 + }, + { + "word": " under", + "start": 3373.32, + "end": 3373.48, + "probability": 1.0 + }, + { + "word": " no", + "start": 3373.48, + "end": 3373.66, + "probability": 1.0 + }, + { + "word": " obligation", + "start": 3373.66, + "end": 3374.04, + "probability": 1.0 + }, + { + "word": " as", + "start": 3374.04, + "end": 3374.4, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3374.4, + "end": 3374.44, + "probability": 0.9912109375 + }, + { + "word": " company.", + "start": 3374.44, + "end": 3374.62, + "probability": 0.994140625 + } + ] + }, + { + "id": 1351, + "text": "They can delete whatever they want.", + "start": 3374.66, + "end": 3376.06, + "words": [ + { + "word": " They", + "start": 3374.66, + "end": 3374.74, + "probability": 0.99560546875 + }, + { + "word": " can", + "start": 3374.74, + "end": 3374.9, + "probability": 1.0 + }, + { + "word": " delete", + "start": 3374.9, + "end": 3375.44, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 3375.44, + "end": 3375.66, + "probability": 0.79296875 + }, + { + "word": " they", + "start": 3375.66, + "end": 3375.88, + "probability": 1.0 + }, + { + "word": " want.", + "start": 3375.88, + "end": 3376.06, + "probability": 1.0 + } + ] + }, + { + "id": 1352, + "text": "You know, they're under no right.", + "start": 3376.18, + "end": 3377.3, + "words": [ + { + "word": " You", + "start": 3376.18, + "end": 3376.4, + "probability": 0.96484375 + }, + { + "word": " know,", + "start": 3376.4, + "end": 3376.58, + "probability": 1.0 + }, + { + "word": " they're", + "start": 3376.58, + "end": 3376.76, + "probability": 1.0 + }, + { + "word": " under", + "start": 3376.76, + "end": 3376.9, + "probability": 0.98291015625 + }, + { + "word": " no", + "start": 3376.9, + "end": 3377.06, + "probability": 0.77392578125 + }, + { + "word": " right.", + "start": 3377.06, + "end": 3377.3, + "probability": 0.25146484375 + } + ] + }, + { + "id": 1353, + "text": "Yeah.", + "start": 3377.66, + "end": 3378.06, + "words": [ + { + "word": " Yeah.", + "start": 3377.66, + "end": 3378.06, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1354, + "text": "They don't have to do that at all.", + "start": 3378.14, + "end": 3379.44, + "words": [ + { + "word": " They", + "start": 3378.14, + "end": 3378.26, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 3378.26, + "end": 3378.44, + "probability": 1.0 + }, + { + "word": " have", + "start": 3378.44, + "end": 3378.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 3378.56, + "end": 3378.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 3378.76, + "end": 3378.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 3378.94, + "end": 3379.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 3379.12, + "end": 3379.32, + "probability": 0.99951171875 + }, + { + "word": " all.", + "start": 3379.32, + "end": 3379.44, + "probability": 1.0 + } + ] + }, + { + "id": 1355, + "text": "They could have just said, yep, we deleted it.", + "start": 3379.5, + "end": 3381.08, + "words": [ + { + "word": " They", + "start": 3379.5, + "end": 3379.58, + "probability": 0.9990234375 + }, + { + "word": " could", + "start": 3379.58, + "end": 3379.72, + "probability": 1.0 + }, + { + "word": " have", + "start": 3379.72, + "end": 3379.8, + "probability": 1.0 + }, + { + "word": " just", + "start": 3379.8, + "end": 3379.94, + "probability": 1.0 + }, + { + "word": " said,", + "start": 3379.94, + "end": 3380.18, + "probability": 1.0 + }, + { + "word": " yep,", + "start": 3380.24, + "end": 3380.46, + "probability": 0.9697265625 + }, + { + "word": " we", + "start": 3380.54, + "end": 3380.64, + "probability": 1.0 + }, + { + "word": " deleted", + "start": 3380.64, + "end": 3380.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3380.88, + "end": 3381.08, + "probability": 1.0 + } + ] + }, + { + "id": 1356, + "text": "You know, but they know that because they are ultimately they have to answer to their users.", + "start": 3381.14, + "end": 3385.6, + "words": [ + { + "word": " You", + "start": 3381.14, + "end": 3381.46, + "probability": 0.98095703125 + }, + { + "word": " know,", + "start": 3381.46, + "end": 3381.64, + "probability": 1.0 + }, + { + "word": " but", + "start": 3381.64, + "end": 3381.82, + "probability": 1.0 + }, + { + "word": " they", + "start": 3381.82, + "end": 3381.96, + "probability": 1.0 + }, + { + "word": " know", + "start": 3381.96, + "end": 3382.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 3382.12, + "end": 3382.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 3382.24, + "end": 3382.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 3382.44, + "end": 3382.7, + "probability": 1.0 + }, + { + "word": " are", + "start": 3382.7, + "end": 3382.9, + "probability": 1.0 + }, + { + "word": " ultimately", + "start": 3382.9, + "end": 3384.18, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 3384.18, + "end": 3384.56, + "probability": 0.9970703125 + }, + { + "word": " have", + "start": 3384.56, + "end": 3384.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 3384.72, + "end": 3384.86, + "probability": 1.0 + }, + { + "word": " answer", + "start": 3384.86, + "end": 3385.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 3385.04, + "end": 3385.14, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 3385.14, + "end": 3385.24, + "probability": 1.0 + }, + { + "word": " users.", + "start": 3385.24, + "end": 3385.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1357, + "text": "They had to come out and say, well, yeah, it was a mistake, you know, and we're taking steps to undo it.", + "start": 3385.6, + "end": 3390.34, + "words": [ + { + "word": " They", + "start": 3385.6, + "end": 3385.92, + "probability": 0.23681640625 + }, + { + "word": " had", + "start": 3385.92, + "end": 3386.4, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3386.4, + "end": 3386.52, + "probability": 1.0 + }, + { + "word": " come", + "start": 3386.52, + "end": 3386.66, + "probability": 1.0 + }, + { + "word": " out", + "start": 3386.66, + "end": 3386.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 3386.8, + "end": 3386.9, + "probability": 0.9990234375 + }, + { + "word": " say,", + "start": 3386.9, + "end": 3387.06, + "probability": 1.0 + }, + { + "word": " well,", + "start": 3387.18, + "end": 3387.42, + "probability": 0.98876953125 + }, + { + "word": " yeah,", + "start": 3387.48, + "end": 3387.64, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3387.66, + "end": 3387.74, + "probability": 1.0 + }, + { + "word": " was", + "start": 3387.74, + "end": 3387.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 3387.82, + "end": 3387.9, + "probability": 1.0 + }, + { + "word": " mistake,", + "start": 3387.9, + "end": 3388.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 3388.36, + "end": 3388.46, + "probability": 0.479736328125 + }, + { + "word": " know,", + "start": 3388.46, + "end": 3388.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 3388.56, + "end": 3388.66, + "probability": 0.99609375 + }, + { + "word": " we're", + "start": 3388.66, + "end": 3388.88, + "probability": 0.99951171875 + }, + { + "word": " taking", + "start": 3388.88, + "end": 3389.2, + "probability": 0.99560546875 + }, + { + "word": " steps", + "start": 3389.2, + "end": 3389.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 3389.62, + "end": 3389.84, + "probability": 1.0 + }, + { + "word": " undo", + "start": 3389.84, + "end": 3390.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3390.06, + "end": 3390.34, + "probability": 1.0 + } + ] + }, + { + "id": 1358, + "text": "But I have to wonder if they hadn't gotten caught.", + "start": 3391.08, + "end": 3393.36, + "words": [ + { + "word": " But", + "start": 3391.08, + "end": 3391.48, + "probability": 0.97314453125 + }, + { + "word": " I", + "start": 3391.48, + "end": 3391.68, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 3391.68, + "end": 3391.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 3391.84, + "end": 3392.0, + "probability": 1.0 + }, + { + "word": " wonder", + "start": 3392.0, + "end": 3392.18, + "probability": 1.0 + }, + { + "word": " if", + "start": 3392.18, + "end": 3392.44, + "probability": 0.99609375 + }, + { + "word": " they", + "start": 3392.44, + "end": 3392.58, + "probability": 1.0 + }, + { + "word": " hadn't", + "start": 3392.58, + "end": 3392.88, + "probability": 1.0 + }, + { + "word": " gotten", + "start": 3392.88, + "end": 3393.04, + "probability": 1.0 + }, + { + "word": " caught.", + "start": 3393.04, + "end": 3393.36, + "probability": 1.0 + } + ] + }, + { + "id": 1359, + "text": "Of course, that, you know, that wouldn't have happened.", + "start": 3393.78, + "end": 3395.56, + "words": [ + { + "word": " Of", + "start": 3393.78, + "end": 3394.18, + "probability": 0.99462890625 + }, + { + "word": " course,", + "start": 3394.18, + "end": 3394.44, + "probability": 1.0 + }, + { + "word": " that,", + "start": 3394.44, + "end": 3394.56, + "probability": 0.607421875 + }, + { + "word": " you", + "start": 3394.62, + "end": 3394.76, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3394.76, + "end": 3394.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 3394.9, + "end": 3395.0, + "probability": 1.0 + }, + { + "word": " wouldn't", + "start": 3395.0, + "end": 3395.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 3395.22, + "end": 3395.28, + "probability": 1.0 + }, + { + "word": " happened.", + "start": 3395.28, + "end": 3395.56, + "probability": 1.0 + } + ] + }, + { + "id": 1360, + "text": "They wouldn't have come forth.", + "start": 3395.62, + "end": 3396.58, + "words": [ + { + "word": " They", + "start": 3395.62, + "end": 3395.92, + "probability": 0.9990234375 + }, + { + "word": " wouldn't", + "start": 3395.92, + "end": 3396.14, + "probability": 1.0 + }, + { + "word": " have", + "start": 3396.14, + "end": 3396.2, + "probability": 1.0 + }, + { + "word": " come", + "start": 3396.2, + "end": 3396.34, + "probability": 1.0 + }, + { + "word": " forth.", + "start": 3396.34, + "end": 3396.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1361, + "text": "So in opposition to this, I would say that you have the opportunity to to choose other sources on the Internet to get your information from.", + "start": 3397.3399999999997, + "end": 3409.94, + "words": [ + { + "word": " So", + "start": 3397.3399999999997, + "end": 3397.74, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3397.74, + "end": 3398.14, + "probability": 0.88427734375 + }, + { + "word": " opposition", + "start": 3398.14, + "end": 3399.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 3399.82, + "end": 3400.24, + "probability": 1.0 + }, + { + "word": " this,", + "start": 3400.24, + "end": 3400.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 3400.56, + "end": 3401.12, + "probability": 1.0 + }, + { + "word": " would", + "start": 3401.12, + "end": 3401.34, + "probability": 1.0 + }, + { + "word": " say", + "start": 3401.34, + "end": 3401.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 3401.6, + "end": 3401.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 3401.78, + "end": 3401.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 3401.98, + "end": 3402.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3402.44, + "end": 3402.58, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 3402.58, + "end": 3403.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 3403.0, + "end": 3404.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 3404.04, + "end": 3404.5, + "probability": 0.472900390625 + }, + { + "word": " choose", + "start": 3404.5, + "end": 3405.82, + "probability": 1.0 + }, + { + "word": " other", + "start": 3405.82, + "end": 3406.16, + "probability": 1.0 + }, + { + "word": " sources", + "start": 3406.16, + "end": 3406.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 3406.72, + "end": 3407.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 3407.26, + "end": 3407.38, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 3407.38, + "end": 3407.68, + "probability": 0.99169921875 + }, + { + "word": " to", + "start": 3407.68, + "end": 3408.44, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 3408.44, + "end": 3408.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 3408.94, + "end": 3409.14, + "probability": 1.0 + }, + { + "word": " information", + "start": 3409.14, + "end": 3409.5, + "probability": 1.0 + }, + { + "word": " from.", + "start": 3409.5, + "end": 3409.94, + "probability": 1.0 + } + ] + }, + { + "id": 1362, + "text": "Now, as with anything, there's always a there's always a flip side.", + "start": 3410.26, + "end": 3415.12, + "words": [ + { + "word": " Now,", + "start": 3410.26, + "end": 3410.66, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 3410.8, + "end": 3411.74, + "probability": 1.0 + }, + { + "word": " with", + "start": 3411.74, + "end": 3412.0, + "probability": 1.0 + }, + { + "word": " anything,", + "start": 3412.0, + "end": 3412.26, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3412.42, + "end": 3412.62, + "probability": 1.0 + }, + { + "word": " always", + "start": 3412.62, + "end": 3412.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 3412.86, + "end": 3413.26, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3413.26, + "end": 3414.48, + "probability": 0.9990234375 + }, + { + "word": " always", + "start": 3414.48, + "end": 3414.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 3414.64, + "end": 3414.78, + "probability": 1.0 + }, + { + "word": " flip", + "start": 3414.78, + "end": 3414.92, + "probability": 0.99951171875 + }, + { + "word": " side.", + "start": 3414.92, + "end": 3415.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1363, + "text": "There's always a side B.", + "start": 3415.12, + "end": 3416.44, + "words": [ + { + "word": " There's", + "start": 3415.12, + "end": 3415.36, + "probability": 0.9619140625 + }, + { + "word": " always", + "start": 3415.36, + "end": 3415.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 3415.5, + "end": 3415.66, + "probability": 1.0 + }, + { + "word": " side", + "start": 3415.66, + "end": 3416.16, + "probability": 0.91650390625 + }, + { + "word": " B.", + "start": 3416.16, + "end": 3416.44, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1364, + "text": "And so like to MSNBC, you end up with Fox News and to Huffington Post, you end up with Drudge Report.", + "start": 3416.76, + "end": 3424.98, + "words": [ + { + "word": " And", + "start": 3416.76, + "end": 3417.24, + "probability": 0.8564453125 + }, + { + "word": " so", + "start": 3417.24, + "end": 3418.0, + "probability": 0.99609375 + }, + { + "word": " like", + "start": 3418.0, + "end": 3418.58, + "probability": 0.447265625 + }, + { + "word": " to", + "start": 3418.58, + "end": 3418.76, + "probability": 1.0 + }, + { + "word": " MSNBC,", + "start": 3418.76, + "end": 3419.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3419.44, + "end": 3419.68, + "probability": 0.99658203125 + }, + { + "word": " end", + "start": 3419.68, + "end": 3419.84, + "probability": 1.0 + }, + { + "word": " up", + "start": 3419.84, + "end": 3420.02, + "probability": 1.0 + }, + { + "word": " with", + "start": 3420.02, + "end": 3420.12, + "probability": 1.0 + }, + { + "word": " Fox", + "start": 3420.12, + "end": 3420.34, + "probability": 1.0 + }, + { + "word": " News", + "start": 3420.34, + "end": 3420.7, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3420.7, + "end": 3421.68, + "probability": 0.2109375 + }, + { + "word": " to", + "start": 3421.68, + "end": 3422.46, + "probability": 0.99951171875 + }, + { + "word": " Huffington", + "start": 3422.46, + "end": 3423.64, + "probability": 0.89697265625 + }, + { + "word": " Post,", + "start": 3423.64, + "end": 3423.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 3424.1, + "end": 3424.24, + "probability": 1.0 + }, + { + "word": " end", + "start": 3424.24, + "end": 3424.34, + "probability": 1.0 + }, + { + "word": " up", + "start": 3424.34, + "end": 3424.46, + "probability": 1.0 + }, + { + "word": " with", + "start": 3424.46, + "end": 3424.58, + "probability": 1.0 + }, + { + "word": " Drudge", + "start": 3424.58, + "end": 3424.8, + "probability": 0.99609375 + }, + { + "word": " Report.", + "start": 3424.8, + "end": 3424.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1365, + "text": "So you end up with these sort of left and right spectrum, I guess, A and B spectrum alternatives.", + "start": 3425.32, + "end": 3433.36, + "words": [ + { + "word": " So", + "start": 3425.32, + "end": 3425.8, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3425.8, + "end": 3425.96, + "probability": 1.0 + }, + { + "word": " end", + "start": 3425.96, + "end": 3426.12, + "probability": 1.0 + }, + { + "word": " up", + "start": 3426.12, + "end": 3426.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 3426.26, + "end": 3426.42, + "probability": 1.0 + }, + { + "word": " these", + "start": 3426.42, + "end": 3426.62, + "probability": 1.0 + }, + { + "word": " sort", + "start": 3426.62, + "end": 3427.02, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3427.02, + "end": 3427.18, + "probability": 1.0 + }, + { + "word": " left", + "start": 3427.18, + "end": 3428.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 3428.36, + "end": 3428.52, + "probability": 0.99072265625 + }, + { + "word": " right", + "start": 3428.52, + "end": 3428.74, + "probability": 1.0 + }, + { + "word": " spectrum,", + "start": 3428.74, + "end": 3429.22, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 3429.36, + "end": 3430.94, + "probability": 0.9990234375 + }, + { + "word": " guess,", + "start": 3430.94, + "end": 3431.5, + "probability": 1.0 + }, + { + "word": " A", + "start": 3431.54, + "end": 3431.7, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 3431.7, + "end": 3431.86, + "probability": 0.99951171875 + }, + { + "word": " B", + "start": 3431.86, + "end": 3432.02, + "probability": 1.0 + }, + { + "word": " spectrum", + "start": 3432.02, + "end": 3432.36, + "probability": 0.9951171875 + }, + { + "word": " alternatives.", + "start": 3432.36, + "end": 3433.36, + "probability": 0.7763671875 + } + ] + }, + { + "id": 1366, + "text": "The alternative to Reddit is Vote, which is V-O-A-T.", + "start": 3434.4, + "end": 3438.6, + "words": [ + { + "word": " The", + "start": 3434.4, + "end": 3434.88, + "probability": 0.99951171875 + }, + { + "word": " alternative", + "start": 3434.88, + "end": 3435.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 3435.18, + "end": 3435.56, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3435.56, + "end": 3436.04, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 3436.04, + "end": 3436.36, + "probability": 1.0 + }, + { + "word": " Vote,", + "start": 3436.36, + "end": 3436.74, + "probability": 0.75146484375 + }, + { + "word": " which", + "start": 3436.92, + "end": 3437.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 3437.36, + "end": 3437.54, + "probability": 1.0 + }, + { + "word": " V", + "start": 3437.54, + "end": 3437.8, + "probability": 0.998046875 + }, + { + "word": "-O", + "start": 3437.8, + "end": 3438.18, + "probability": 0.994140625 + }, + { + "word": "-A", + "start": 3438.18, + "end": 3438.46, + "probability": 1.0 + }, + { + "word": "-T.", + "start": 3438.46, + "end": 3438.6, + "probability": 1.0 + } + ] + }, + { + "id": 1367, + "text": "Dot C-O.", + "start": 3439.1, + "end": 3439.82, + "words": [ + { + "word": " Dot", + "start": 3439.1, + "end": 3439.48, + "probability": 0.286376953125 + }, + { + "word": " C", + "start": 3439.48, + "end": 3439.7, + "probability": 0.99169921875 + }, + { + "word": "-O.", + "start": 3439.7, + "end": 3439.82, + "probability": 1.0 + } + ] + }, + { + "id": 1368, + "text": "And that that's an interesting site.", + "start": 3440.16, + "end": 3443.26, + "words": [ + { + "word": " And", + "start": 3440.16, + "end": 3440.64, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 3440.64, + "end": 3441.32, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3441.32, + "end": 3442.5, + "probability": 0.51318359375 + }, + { + "word": " an", + "start": 3442.5, + "end": 3442.6, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 3442.6, + "end": 3442.92, + "probability": 1.0 + }, + { + "word": " site.", + "start": 3442.92, + "end": 3443.26, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1369, + "text": "I mean, they're very similar.", + "start": 3443.34, + "end": 3444.94, + "words": [ + { + "word": " I", + "start": 3443.34, + "end": 3443.46, + "probability": 0.98828125 + }, + { + "word": " mean,", + "start": 3443.46, + "end": 3443.54, + "probability": 1.0 + }, + { + "word": " they're", + "start": 3443.56, + "end": 3444.14, + "probability": 1.0 + }, + { + "word": " very", + "start": 3444.14, + "end": 3444.38, + "probability": 1.0 + }, + { + "word": " similar.", + "start": 3444.38, + "end": 3444.94, + "probability": 1.0 + } + ] + }, + { + "id": 1370, + "text": "In appearance and how they work, but very different as far as content and how they deal with content.", + "start": 3445.12, + "end": 3452.78, + "words": [ + { + "word": " In", + "start": 3445.12, + "end": 3445.62, + "probability": 0.0092926025390625 + }, + { + "word": " appearance", + "start": 3445.62, + "end": 3446.72, + "probability": 0.978515625 + }, + { + "word": " and", + "start": 3446.72, + "end": 3447.24, + "probability": 0.58984375 + }, + { + "word": " how", + "start": 3447.24, + "end": 3447.68, + "probability": 0.9775390625 + }, + { + "word": " they", + "start": 3447.68, + "end": 3447.88, + "probability": 0.99609375 + }, + { + "word": " work,", + "start": 3447.88, + "end": 3448.16, + "probability": 0.998046875 + }, + { + "word": " but", + "start": 3448.3, + "end": 3449.08, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 3449.08, + "end": 3449.4, + "probability": 1.0 + }, + { + "word": " different", + "start": 3449.4, + "end": 3449.8, + "probability": 1.0 + }, + { + "word": " as", + "start": 3449.8, + "end": 3450.08, + "probability": 0.9990234375 + }, + { + "word": " far", + "start": 3450.08, + "end": 3450.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 3450.3, + "end": 3450.48, + "probability": 1.0 + }, + { + "word": " content", + "start": 3450.48, + "end": 3450.86, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3450.86, + "end": 3451.36, + "probability": 0.97314453125 + }, + { + "word": " how", + "start": 3451.36, + "end": 3451.7, + "probability": 1.0 + }, + { + "word": " they", + "start": 3451.7, + "end": 3451.92, + "probability": 1.0 + }, + { + "word": " deal", + "start": 3451.92, + "end": 3452.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 3452.16, + "end": 3452.36, + "probability": 1.0 + }, + { + "word": " content.", + "start": 3452.36, + "end": 3452.78, + "probability": 1.0 + } + ] + }, + { + "id": 1371, + "text": "And as far as we can tell right now, at least looking when I looked on on Sunday and Monday last week at the differences between the Reddit news and the vote news, they were radically different.", + "start": 3453.12, + "end": 3465.48, + "words": [ + { + "word": " And", + "start": 3453.12, + "end": 3453.26, + "probability": 0.85791015625 + }, + { + "word": " as", + "start": 3453.26, + "end": 3453.8, + "probability": 0.99609375 + }, + { + "word": " far", + "start": 3453.8, + "end": 3454.06, + "probability": 1.0 + }, + { + "word": " as", + "start": 3454.06, + "end": 3454.2, + "probability": 1.0 + }, + { + "word": " we", + "start": 3454.2, + "end": 3454.3, + "probability": 1.0 + }, + { + "word": " can", + "start": 3454.3, + "end": 3454.44, + "probability": 1.0 + }, + { + "word": " tell", + "start": 3454.44, + "end": 3454.62, + "probability": 1.0 + }, + { + "word": " right", + "start": 3454.62, + "end": 3454.82, + "probability": 1.0 + }, + { + "word": " now,", + "start": 3454.82, + "end": 3455.1, + "probability": 1.0 + }, + { + "word": " at", + "start": 3455.16, + "end": 3455.28, + "probability": 0.98583984375 + }, + { + "word": " least", + "start": 3455.28, + "end": 3455.42, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3455.42, + "end": 3455.78, + "probability": 0.91796875 + }, + { + "word": " when", + "start": 3455.78, + "end": 3456.08, + "probability": 0.308837890625 + }, + { + "word": " I", + "start": 3456.08, + "end": 3456.26, + "probability": 1.0 + }, + { + "word": " looked", + "start": 3456.26, + "end": 3456.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 3456.58, + "end": 3457.02, + "probability": 1.0 + }, + { + "word": " on", + "start": 3457.02, + "end": 3457.66, + "probability": 0.54296875 + }, + { + "word": " Sunday", + "start": 3457.66, + "end": 3458.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 3458.46, + "end": 3458.64, + "probability": 1.0 + }, + { + "word": " Monday", + "start": 3458.64, + "end": 3458.9, + "probability": 0.99951171875 + }, + { + "word": " last", + "start": 3458.9, + "end": 3459.24, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 3459.24, + "end": 3459.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 3459.58, + "end": 3459.86, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 3459.86, + "end": 3460.0, + "probability": 1.0 + }, + { + "word": " differences", + "start": 3460.0, + "end": 3460.5, + "probability": 0.77734375 + }, + { + "word": " between", + "start": 3460.5, + "end": 3461.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 3461.16, + "end": 3461.64, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3461.64, + "end": 3462.12, + "probability": 0.9814453125 + }, + { + "word": " news", + "start": 3462.12, + "end": 3462.44, + "probability": 0.984375 + }, + { + "word": " and", + "start": 3462.44, + "end": 3462.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3462.76, + "end": 3462.86, + "probability": 0.99951171875 + }, + { + "word": " vote", + "start": 3462.86, + "end": 3463.14, + "probability": 0.79638671875 + }, + { + "word": " news,", + "start": 3463.14, + "end": 3463.42, + "probability": 1.0 + }, + { + "word": " they", + "start": 3463.76, + "end": 3464.26, + "probability": 1.0 + }, + { + "word": " were", + "start": 3464.26, + "end": 3464.46, + "probability": 1.0 + }, + { + "word": " radically", + "start": 3464.46, + "end": 3465.04, + "probability": 1.0 + }, + { + "word": " different.", + "start": 3465.04, + "end": 3465.48, + "probability": 1.0 + } + ] + }, + { + "id": 1372, + "text": "Yeah.", + "start": 3466.0, + "end": 3466.56, + "words": [ + { + "word": " Yeah.", + "start": 3466.0, + "end": 3466.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 1373, + "text": "And it's actually kind of funny because in direct as a direct result of this whole situation with Reddit vote has experienced what they call.", + "start": 3466.68, + "end": 3475.04, + "words": [ + { + "word": " And", + "start": 3466.68, + "end": 3466.84, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 3466.84, + "end": 3467.54, + "probability": 1.0 + }, + { + "word": " actually", + "start": 3467.54, + "end": 3467.72, + "probability": 1.0 + }, + { + "word": " kind", + "start": 3467.72, + "end": 3467.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 3467.9, + "end": 3468.0, + "probability": 1.0 + }, + { + "word": " funny", + "start": 3468.0, + "end": 3468.2, + "probability": 1.0 + }, + { + "word": " because", + "start": 3468.2, + "end": 3468.5, + "probability": 0.96923828125 + }, + { + "word": " in", + "start": 3468.5, + "end": 3468.78, + "probability": 0.98974609375 + }, + { + "word": " direct", + "start": 3468.78, + "end": 3469.72, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3469.72, + "end": 3470.18, + "probability": 0.96826171875 + }, + { + "word": " a", + "start": 3470.18, + "end": 3470.42, + "probability": 1.0 + }, + { + "word": " direct", + "start": 3470.42, + "end": 3470.6, + "probability": 1.0 + }, + { + "word": " result", + "start": 3470.6, + "end": 3470.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 3470.88, + "end": 3471.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 3471.12, + "end": 3471.28, + "probability": 1.0 + }, + { + "word": " whole", + "start": 3471.28, + "end": 3471.42, + "probability": 1.0 + }, + { + "word": " situation", + "start": 3471.42, + "end": 3471.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 3471.78, + "end": 3472.14, + "probability": 1.0 + }, + { + "word": " Reddit", + "start": 3472.14, + "end": 3472.4, + "probability": 0.99609375 + }, + { + "word": " vote", + "start": 3472.4, + "end": 3473.64, + "probability": 0.34912109375 + }, + { + "word": " has", + "start": 3473.64, + "end": 3473.84, + "probability": 0.99853515625 + }, + { + "word": " experienced", + "start": 3473.84, + "end": 3474.24, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 3474.24, + "end": 3474.72, + "probability": 0.994140625 + }, + { + "word": " they", + "start": 3474.72, + "end": 3474.86, + "probability": 1.0 + }, + { + "word": " call.", + "start": 3474.86, + "end": 3475.04, + "probability": 0.99609375 + } + ] + }, + { + "id": 1374, + "text": "Almost a doubling of traffic that weekend as people leave Reddit and go to vote because people were looking for information that couldn't find that was being deleted or censored at the other site.", + "start": 3475.12, + "end": 3485.3, + "words": [ + { + "word": " Almost", + "start": 3475.12, + "end": 3475.26, + "probability": 0.02850341796875 + }, + { + "word": " a", + "start": 3475.26, + "end": 3475.58, + "probability": 0.99072265625 + }, + { + "word": " doubling", + "start": 3475.58, + "end": 3475.92, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 3475.92, + "end": 3476.14, + "probability": 0.98974609375 + }, + { + "word": " traffic", + "start": 3476.14, + "end": 3476.38, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3476.38, + "end": 3477.16, + "probability": 0.6767578125 + }, + { + "word": " weekend", + "start": 3477.16, + "end": 3477.44, + "probability": 0.99609375 + }, + { + "word": " as", + "start": 3477.44, + "end": 3478.1, + "probability": 0.490234375 + }, + { + "word": " people", + "start": 3478.1, + "end": 3478.36, + "probability": 0.99951171875 + }, + { + "word": " leave", + "start": 3478.36, + "end": 3478.78, + "probability": 0.99658203125 + }, + { + "word": " Reddit", + "start": 3478.78, + "end": 3479.14, + "probability": 0.9541015625 + }, + { + "word": " and", + "start": 3479.14, + "end": 3479.52, + "probability": 0.99560546875 + }, + { + "word": " go", + "start": 3479.52, + "end": 3479.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3479.76, + "end": 3479.88, + "probability": 0.99951171875 + }, + { + "word": " vote", + "start": 3479.88, + "end": 3480.12, + "probability": 0.68798828125 + }, + { + "word": " because", + "start": 3480.12, + "end": 3480.32, + "probability": 0.04351806640625 + }, + { + "word": " people", + "start": 3480.32, + "end": 3480.54, + "probability": 0.99365234375 + }, + { + "word": " were", + "start": 3480.54, + "end": 3480.72, + "probability": 0.9921875 + }, + { + "word": " looking", + "start": 3480.72, + "end": 3481.0, + "probability": 0.99755859375 + }, + { + "word": " for", + "start": 3481.0, + "end": 3481.26, + "probability": 0.9970703125 + }, + { + "word": " information", + "start": 3481.26, + "end": 3481.64, + "probability": 0.98046875 + }, + { + "word": " that", + "start": 3481.64, + "end": 3481.98, + "probability": 0.6220703125 + }, + { + "word": " couldn't", + "start": 3481.98, + "end": 3482.32, + "probability": 0.791015625 + }, + { + "word": " find", + "start": 3482.32, + "end": 3482.52, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 3482.52, + "end": 3482.76, + "probability": 0.94873046875 + }, + { + "word": " was", + "start": 3482.76, + "end": 3482.86, + "probability": 0.99853515625 + }, + { + "word": " being", + "start": 3482.86, + "end": 3483.02, + "probability": 0.99609375 + }, + { + "word": " deleted", + "start": 3483.02, + "end": 3483.44, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 3483.44, + "end": 3483.64, + "probability": 0.9970703125 + }, + { + "word": " censored", + "start": 3483.64, + "end": 3484.06, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 3484.06, + "end": 3484.34, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 3484.34, + "end": 3484.8, + "probability": 0.91259765625 + }, + { + "word": " other", + "start": 3484.8, + "end": 3484.94, + "probability": 0.97900390625 + }, + { + "word": " site.", + "start": 3484.94, + "end": 3485.3, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1375, + "text": "And and great.", + "start": 3485.86, + "end": 3487.08, + "words": [ + { + "word": " And", + "start": 3485.86, + "end": 3486.3, + "probability": 0.9677734375 + }, + { + "word": " and", + "start": 3486.3, + "end": 3486.64, + "probability": 0.54443359375 + }, + { + "word": " great.", + "start": 3486.64, + "end": 3487.08, + "probability": 1.0 + } + ] + }, + { + "id": 1376, + "text": "At least there is an alternative for now.", + "start": 3487.16, + "end": 3489.48, + "words": [ + { + "word": " At", + "start": 3487.16, + "end": 3487.36, + "probability": 0.99951171875 + }, + { + "word": " least", + "start": 3487.36, + "end": 3487.72, + "probability": 1.0 + }, + { + "word": " there", + "start": 3487.72, + "end": 3487.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 3487.88, + "end": 3488.06, + "probability": 1.0 + }, + { + "word": " an", + "start": 3488.06, + "end": 3488.22, + "probability": 1.0 + }, + { + "word": " alternative", + "start": 3488.22, + "end": 3488.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 3488.62, + "end": 3489.2, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 3489.2, + "end": 3489.48, + "probability": 1.0 + } + ] + }, + { + "id": 1377, + "text": "Yeah.", + "start": 3489.92, + "end": 3490.36, + "words": [ + { + "word": " Yeah.", + "start": 3489.92, + "end": 3490.36, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1378, + "text": "I mean, the future will show if if vote remains to be this bastion of free speech like they claim.", + "start": 3490.46, + "end": 3495.56, + "words": [ + { + "word": " I", + "start": 3490.46, + "end": 3490.54, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 3490.54, + "end": 3490.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 3490.7, + "end": 3490.88, + "probability": 1.0 + }, + { + "word": " future", + "start": 3490.88, + "end": 3491.16, + "probability": 1.0 + }, + { + "word": " will", + "start": 3491.16, + "end": 3491.36, + "probability": 1.0 + }, + { + "word": " show", + "start": 3491.36, + "end": 3491.62, + "probability": 1.0 + }, + { + "word": " if", + "start": 3491.62, + "end": 3491.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 3491.84, + "end": 3492.06, + "probability": 0.3134765625 + }, + { + "word": " vote", + "start": 3492.06, + "end": 3492.28, + "probability": 0.9736328125 + }, + { + "word": " remains", + "start": 3492.28, + "end": 3492.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 3492.6, + "end": 3493.46, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 3493.46, + "end": 3493.64, + "probability": 1.0 + }, + { + "word": " this", + "start": 3493.64, + "end": 3493.88, + "probability": 1.0 + }, + { + "word": " bastion", + "start": 3493.88, + "end": 3494.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 3494.42, + "end": 3494.48, + "probability": 1.0 + }, + { + "word": " free", + "start": 3494.48, + "end": 3494.62, + "probability": 1.0 + }, + { + "word": " speech", + "start": 3494.62, + "end": 3494.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 3494.94, + "end": 3495.16, + "probability": 0.98583984375 + }, + { + "word": " they", + "start": 3495.16, + "end": 3495.28, + "probability": 1.0 + }, + { + "word": " claim.", + "start": 3495.28, + "end": 3495.56, + "probability": 1.0 + } + ] + }, + { + "id": 1379, + "text": "But for now, it's a great site.", + "start": 3496.4, + "end": 3497.94, + "words": [ + { + "word": " But", + "start": 3496.4, + "end": 3496.84, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3496.84, + "end": 3497.02, + "probability": 1.0 + }, + { + "word": " now,", + "start": 3497.02, + "end": 3497.22, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3497.24, + "end": 3497.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 3497.4, + "end": 3497.46, + "probability": 1.0 + }, + { + "word": " great", + "start": 3497.46, + "end": 3497.66, + "probability": 1.0 + }, + { + "word": " site.", + "start": 3497.66, + "end": 3497.94, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1380, + "text": "Yeah.", + "start": 3498.58, + "end": 3499.02, + "words": [ + { + "word": " Yeah.", + "start": 3498.58, + "end": 3499.02, + "probability": 0.93310546875 + } + ] + }, + { + "id": 1381, + "text": "So we're going to talk a little bit more about how the Internet kind of forms the way that we.", + "start": 3499.14, + "end": 3505.08, + "words": [ + { + "word": " So", + "start": 3499.14, + "end": 3499.32, + "probability": 0.99853515625 + }, + { + "word": " we're", + "start": 3499.32, + "end": 3499.52, + "probability": 1.0 + }, + { + "word": " going", + "start": 3499.52, + "end": 3499.54, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3499.54, + "end": 3499.64, + "probability": 1.0 + }, + { + "word": " talk", + "start": 3499.64, + "end": 3499.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 3499.76, + "end": 3499.88, + "probability": 1.0 + }, + { + "word": " little", + "start": 3499.88, + "end": 3499.96, + "probability": 1.0 + }, + { + "word": " bit", + "start": 3499.96, + "end": 3500.1, + "probability": 1.0 + }, + { + "word": " more", + "start": 3500.1, + "end": 3500.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 3500.28, + "end": 3500.56, + "probability": 1.0 + }, + { + "word": " how", + "start": 3500.56, + "end": 3500.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 3500.82, + "end": 3501.0, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 3501.0, + "end": 3501.3, + "probability": 0.99755859375 + }, + { + "word": " kind", + "start": 3501.3, + "end": 3502.06, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3502.06, + "end": 3502.22, + "probability": 1.0 + }, + { + "word": " forms", + "start": 3502.22, + "end": 3502.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3502.8, + "end": 3503.96, + "probability": 0.982421875 + }, + { + "word": " way", + "start": 3503.96, + "end": 3504.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 3504.58, + "end": 3504.88, + "probability": 0.99951171875 + }, + { + "word": " we.", + "start": 3504.88, + "end": 3505.08, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1382, + "text": "Put information out there and a little bit more about who's policing your thoughts online.", + "start": 3505.12, + "end": 3511.22, + "words": [ + { + "word": " Put", + "start": 3505.12, + "end": 3505.82, + "probability": 0.028289794921875 + }, + { + "word": " information", + "start": 3505.82, + "end": 3506.06, + "probability": 0.98681640625 + }, + { + "word": " out", + "start": 3506.06, + "end": 3506.48, + "probability": 0.98828125 + }, + { + "word": " there", + "start": 3506.48, + "end": 3506.68, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 3506.68, + "end": 3507.2, + "probability": 0.346435546875 + }, + { + "word": " a", + "start": 3507.2, + "end": 3507.74, + "probability": 0.89306640625 + }, + { + "word": " little", + "start": 3507.74, + "end": 3508.26, + "probability": 0.99560546875 + }, + { + "word": " bit", + "start": 3508.26, + "end": 3508.38, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 3508.38, + "end": 3508.54, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 3508.54, + "end": 3508.9, + "probability": 0.986328125 + }, + { + "word": " who's", + "start": 3508.9, + "end": 3509.5, + "probability": 0.97802734375 + }, + { + "word": " policing", + "start": 3509.5, + "end": 3510.12, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 3510.12, + "end": 3510.48, + "probability": 0.99853515625 + }, + { + "word": " thoughts", + "start": 3510.48, + "end": 3510.8, + "probability": 0.99951171875 + }, + { + "word": " online.", + "start": 3510.8, + "end": 3511.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 1383, + "text": "We'll be right back.", + "start": 3511.5, + "end": 3512.16, + "words": [ + { + "word": " We'll", + "start": 3511.5, + "end": 3511.8, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 3511.8, + "end": 3511.86, + "probability": 1.0 + }, + { + "word": " right", + "start": 3511.86, + "end": 3512.0, + "probability": 1.0 + }, + { + "word": " back.", + "start": 3512.0, + "end": 3512.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1384, + "text": "Your computer guru, Mike Swanson, is here to help you tame that beast of a machine.", + "start": 3518.04, + "end": 3522.24, + "words": [ + { + "word": " Your", + "start": 3518.04, + "end": 3518.6, + "probability": 0.44873046875 + }, + { + "word": " computer", + "start": 3518.6, + "end": 3518.9, + "probability": 0.9736328125 + }, + { + "word": " guru,", + "start": 3518.9, + "end": 3519.36, + "probability": 0.998046875 + }, + { + "word": " Mike", + "start": 3519.46, + "end": 3519.66, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 3519.66, + "end": 3520.02, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 3520.14, + "end": 3520.3, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 3520.3, + "end": 3520.44, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 3520.44, + "end": 3520.56, + "probability": 1.0 + }, + { + "word": " help", + "start": 3520.56, + "end": 3520.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 3520.8, + "end": 3520.96, + "probability": 1.0 + }, + { + "word": " tame", + "start": 3520.96, + "end": 3521.16, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 3521.16, + "end": 3521.36, + "probability": 0.99951171875 + }, + { + "word": " beast", + "start": 3521.36, + "end": 3521.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 3521.66, + "end": 3521.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 3521.88, + "end": 3521.96, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 3521.96, + "end": 3522.24, + "probability": 1.0 + } + ] + }, + { + "id": 1385, + "text": "Join the chat right now at Guru show dot com or call in.", + "start": 3522.48, + "end": 3526.08, + "words": [ + { + "word": " Join", + "start": 3522.48, + "end": 3523.0, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3523.0, + "end": 3523.2, + "probability": 1.0 + }, + { + "word": " chat", + "start": 3523.2, + "end": 3523.38, + "probability": 1.0 + }, + { + "word": " right", + "start": 3523.38, + "end": 3523.62, + "probability": 1.0 + }, + { + "word": " now", + "start": 3523.62, + "end": 3523.9, + "probability": 1.0 + }, + { + "word": " at", + "start": 3523.9, + "end": 3524.2, + "probability": 0.998046875 + }, + { + "word": " Guru", + "start": 3524.2, + "end": 3524.48, + "probability": 0.0177001953125 + }, + { + "word": " show", + "start": 3524.48, + "end": 3524.72, + "probability": 0.039459228515625 + }, + { + "word": " dot", + "start": 3524.72, + "end": 3525.0, + "probability": 0.947265625 + }, + { + "word": " com", + "start": 3525.0, + "end": 3525.34, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 3525.34, + "end": 3525.62, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 3525.62, + "end": 3525.84, + "probability": 0.99951171875 + }, + { + "word": " in.", + "start": 3525.84, + "end": 3526.08, + "probability": 1.0 + } + ] + }, + { + "id": 1386, + "text": "This is a computer guru show on KV.", + "start": 3526.18, + "end": 3528.62, + "words": [ + { + "word": " This", + "start": 3526.18, + "end": 3526.48, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3526.48, + "end": 3526.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 3526.82, + "end": 3526.92, + "probability": 0.96630859375 + }, + { + "word": " computer", + "start": 3526.92, + "end": 3527.18, + "probability": 0.99951171875 + }, + { + "word": " guru", + "start": 3527.18, + "end": 3527.52, + "probability": 0.99853515625 + }, + { + "word": " show", + "start": 3527.52, + "end": 3527.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 3527.9, + "end": 3528.32, + "probability": 0.998046875 + }, + { + "word": " KV.", + "start": 3528.32, + "end": 3528.62, + "probability": 0.69140625 + } + ] + }, + { + "id": 1387, + "text": "Why the voice?", + "start": 3528.7, + "end": 3529.66, + "words": [ + { + "word": " Why", + "start": 3528.7, + "end": 3528.88, + "probability": 0.0958251953125 + }, + { + "word": " the", + "start": 3528.88, + "end": 3529.36, + "probability": 0.8984375 + }, + { + "word": " voice?", + "start": 3529.36, + "end": 3529.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1388, + "text": "Your technology guru, Mike Swanson, is answering all your questions.", + "start": 3531.1, + "end": 3534.86, + "words": [ + { + "word": " Your", + "start": 3531.1, + "end": 3531.66, + "probability": 0.998046875 + }, + { + "word": " technology", + "start": 3531.66, + "end": 3532.2, + "probability": 0.9990234375 + }, + { + "word": " guru,", + "start": 3532.2, + "end": 3532.64, + "probability": 0.99951171875 + }, + { + "word": " Mike", + "start": 3532.8, + "end": 3533.0, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 3533.0, + "end": 3533.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 3533.5, + "end": 3533.64, + "probability": 0.99951171875 + }, + { + "word": " answering", + "start": 3533.64, + "end": 3533.94, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 3533.94, + "end": 3534.26, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3534.26, + "end": 3534.44, + "probability": 1.0 + }, + { + "word": " questions.", + "start": 3534.44, + "end": 3534.86, + "probability": 1.0 + } + ] + }, + { + "id": 1389, + "text": "One by one.", + "start": 3535.12, + "end": 3535.46, + "words": [ + { + "word": " One", + "start": 3535.12, + "end": 3535.12, + "probability": 0.0004246234893798828 + }, + { + "word": " by", + "start": 3535.12, + "end": 3535.26, + "probability": 0.541015625 + }, + { + "word": " one.", + "start": 3535.26, + "end": 3535.46, + "probability": 0.96484375 + } + ] + }, + { + "id": 1390, + "text": "Yes, science.", + "start": 3535.6, + "end": 3536.3, + "words": [ + { + "word": " Yes,", + "start": 3535.6, + "end": 3535.86, + "probability": 0.92138671875 + }, + { + "word": " science.", + "start": 3535.86, + "end": 3536.3, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1391, + "text": "So chime in with yours.", + "start": 3536.58, + "end": 3537.64, + "words": [ + { + "word": " So", + "start": 3536.58, + "end": 3536.7, + "probability": 0.998046875 + }, + { + "word": " chime", + "start": 3536.7, + "end": 3536.94, + "probability": 0.95458984375 + }, + { + "word": " in", + "start": 3536.94, + "end": 3537.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 3537.2, + "end": 3537.42, + "probability": 1.0 + }, + { + "word": " yours.", + "start": 3537.42, + "end": 3537.64, + "probability": 1.0 + } + ] + }, + { + "id": 1392, + "text": "The website is Guru show dot com.", + "start": 3537.9, + "end": 3540.0, + "words": [ + { + "word": " The", + "start": 3537.9, + "end": 3538.2, + "probability": 0.99951171875 + }, + { + "word": " website", + "start": 3538.2, + "end": 3538.52, + "probability": 0.9873046875 + }, + { + "word": " is", + "start": 3538.52, + "end": 3538.88, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 3538.88, + "end": 3539.1, + "probability": 0.01177215576171875 + }, + { + "word": " show", + "start": 3539.1, + "end": 3539.42, + "probability": 0.00128173828125 + }, + { + "word": " dot", + "start": 3539.42, + "end": 3539.66, + "probability": 0.60498046875 + }, + { + "word": " com.", + "start": 3539.66, + "end": 3540.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1393, + "text": "Tune in, click in and kick back.", + "start": 3540.2, + "end": 3542.34, + "words": [ + { + "word": " Tune", + "start": 3540.2, + "end": 3540.64, + "probability": 1.0 + }, + { + "word": " in,", + "start": 3540.64, + "end": 3540.86, + "probability": 1.0 + }, + { + "word": " click", + "start": 3540.94, + "end": 3541.3, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3541.3, + "end": 3541.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 3541.56, + "end": 3541.9, + "probability": 0.94482421875 + }, + { + "word": " kick", + "start": 3541.9, + "end": 3542.06, + "probability": 1.0 + }, + { + "word": " back.", + "start": 3542.06, + "end": 3542.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1394, + "text": "This is a computer guru show.", + "start": 3542.58, + "end": 3544.52, + "words": [ + { + "word": " This", + "start": 3542.58, + "end": 3543.02, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3543.02, + "end": 3543.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 3543.4, + "end": 3543.54, + "probability": 0.99658203125 + }, + { + "word": " computer", + "start": 3543.54, + "end": 3543.84, + "probability": 0.9912109375 + }, + { + "word": " guru", + "start": 3543.84, + "end": 3544.14, + "probability": 0.97705078125 + }, + { + "word": " show.", + "start": 3544.14, + "end": 3544.52, + "probability": 1.0 + } + ] + }, + { + "id": 1395, + "text": "Welcome back to the computer guru show.", + "start": 3546.1, + "end": 3547.66, + "words": [ + { + "word": " Welcome", + "start": 3546.1, + "end": 3546.54, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 3546.54, + "end": 3546.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 3546.86, + "end": 3546.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 3546.98, + "end": 3547.02, + "probability": 0.98095703125 + }, + { + "word": " computer", + "start": 3547.02, + "end": 3547.26, + "probability": 0.962890625 + }, + { + "word": " guru", + "start": 3547.26, + "end": 3547.44, + "probability": 0.9677734375 + }, + { + "word": " show.", + "start": 3547.44, + "end": 3547.66, + "probability": 1.0 + } + ] + }, + { + "id": 1396, + "text": "Seven nine zero twenty forty.", + "start": 3547.76, + "end": 3548.82, + "words": [ + { + "word": " Seven", + "start": 3547.76, + "end": 3548.0, + "probability": 0.79345703125 + }, + { + "word": " nine", + "start": 3548.0, + "end": 3548.2, + "probability": 0.73974609375 + }, + { + "word": " zero", + "start": 3548.2, + "end": 3548.38, + "probability": 1.0 + }, + { + "word": " twenty", + "start": 3548.38, + "end": 3548.58, + "probability": 0.9140625 + }, + { + "word": " forty.", + "start": 3548.58, + "end": 3548.82, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1397, + "text": "If you want to be part of the show.", + "start": 3548.94, + "end": 3549.8, + "words": [ + { + "word": " If", + "start": 3548.94, + "end": 3549.02, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 3549.02, + "end": 3549.04, + "probability": 1.0 + }, + { + "word": " want", + "start": 3549.04, + "end": 3549.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 3549.14, + "end": 3549.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 3549.16, + "end": 3549.26, + "probability": 1.0 + }, + { + "word": " part", + "start": 3549.26, + "end": 3549.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 3549.4, + "end": 3549.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3549.54, + "end": 3549.58, + "probability": 1.0 + }, + { + "word": " show.", + "start": 3549.58, + "end": 3549.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1398, + "text": "Five two zero seven nine zero twenty forty.", + "start": 3549.92, + "end": 3551.68, + "words": [ + { + "word": " Five", + "start": 3549.92, + "end": 3550.14, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 3550.14, + "end": 3550.32, + "probability": 0.93896484375 + }, + { + "word": " zero", + "start": 3550.32, + "end": 3550.56, + "probability": 1.0 + }, + { + "word": " seven", + "start": 3550.56, + "end": 3550.86, + "probability": 0.99658203125 + }, + { + "word": " nine", + "start": 3550.86, + "end": 3551.08, + "probability": 0.99951171875 + }, + { + "word": " zero", + "start": 3551.08, + "end": 3551.22, + "probability": 1.0 + }, + { + "word": " twenty", + "start": 3551.22, + "end": 3551.46, + "probability": 0.994140625 + }, + { + "word": " forty.", + "start": 3551.46, + "end": 3551.68, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1399, + "text": "Let's go and take Ingrid.", + "start": 3552.0, + "end": 3552.94, + "words": [ + { + "word": " Let's", + "start": 3552.0, + "end": 3552.44, + "probability": 0.9814453125 + }, + { + "word": " go", + "start": 3552.44, + "end": 3552.48, + "probability": 0.9921875 + }, + { + "word": " and", + "start": 3552.48, + "end": 3552.56, + "probability": 0.97216796875 + }, + { + "word": " take", + "start": 3552.56, + "end": 3552.7, + "probability": 1.0 + }, + { + "word": " Ingrid.", + "start": 3552.7, + "end": 3552.94, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1400, + "text": "Hello, Ingrid.", + "start": 3553.1, + "end": 3553.6, + "words": [ + { + "word": " Hello,", + "start": 3553.1, + "end": 3553.38, + "probability": 0.9833984375 + }, + { + "word": " Ingrid.", + "start": 3553.42, + "end": 3553.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1401, + "text": "How are you?", + "start": 3553.64, + "end": 3553.98, + "words": [ + { + "word": " How", + "start": 3553.64, + "end": 3553.74, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 3553.74, + "end": 3553.86, + "probability": 1.0 + }, + { + "word": " you?", + "start": 3553.86, + "end": 3553.98, + "probability": 1.0 + } + ] + }, + { + "id": 1402, + "text": "Hi.", + "start": 3554.26, + "end": 3554.7, + "words": [ + { + "word": " Hi.", + "start": 3554.26, + "end": 3554.7, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1403, + "text": "I'd like to say, first of all, that I know virtually nothing about computers except the keyboard.", + "start": 3555.4, + "end": 3560.42, + "words": [ + { + "word": " I'd", + "start": 3555.4, + "end": 3555.84, + "probability": 0.99755859375 + }, + { + "word": " like", + "start": 3555.84, + "end": 3555.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 3555.96, + "end": 3556.14, + "probability": 1.0 + }, + { + "word": " say,", + "start": 3556.14, + "end": 3556.28, + "probability": 1.0 + }, + { + "word": " first", + "start": 3556.3, + "end": 3556.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 3556.5, + "end": 3556.72, + "probability": 1.0 + }, + { + "word": " all,", + "start": 3556.72, + "end": 3556.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 3556.96, + "end": 3557.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 3557.08, + "end": 3557.3, + "probability": 1.0 + }, + { + "word": " know", + "start": 3557.3, + "end": 3557.76, + "probability": 0.99951171875 + }, + { + "word": " virtually", + "start": 3557.76, + "end": 3558.2, + "probability": 0.99951171875 + }, + { + "word": " nothing", + "start": 3558.2, + "end": 3558.52, + "probability": 1.0 + }, + { + "word": " about", + "start": 3558.52, + "end": 3558.88, + "probability": 0.99951171875 + }, + { + "word": " computers", + "start": 3558.88, + "end": 3559.34, + "probability": 1.0 + }, + { + "word": " except", + "start": 3559.34, + "end": 3559.72, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 3559.72, + "end": 3560.08, + "probability": 1.0 + }, + { + "word": " keyboard.", + "start": 3560.08, + "end": 3560.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1404, + "text": "And.", + "start": 3561.42, + "end": 3561.86, + "words": [ + { + "word": " And.", + "start": 3561.42, + "end": 3561.86, + "probability": 0.91162109375 + } + ] + }, + { + "id": 1405, + "text": "But this business of.", + "start": 3563.08, + "end": 3564.52, + "words": [ + { + "word": " But", + "start": 3563.08, + "end": 3563.52, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 3563.52, + "end": 3563.74, + "probability": 0.998046875 + }, + { + "word": " business", + "start": 3563.74, + "end": 3564.08, + "probability": 0.88525390625 + }, + { + "word": " of.", + "start": 3564.08, + "end": 3564.52, + "probability": 0.998046875 + } + ] + }, + { + "id": 1406, + "text": "What's available to us and what kind of information is being given is really.", + "start": 3565.12, + "end": 3570.18, + "words": [ + { + "word": " What's", + "start": 3565.12, + "end": 3565.7, + "probability": 0.52734375 + }, + { + "word": " available", + "start": 3565.7, + "end": 3566.28, + "probability": 0.8564453125 + }, + { + "word": " to", + "start": 3566.28, + "end": 3566.76, + "probability": 0.98828125 + }, + { + "word": " us", + "start": 3566.76, + "end": 3567.06, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 3567.06, + "end": 3567.74, + "probability": 0.57861328125 + }, + { + "word": " what", + "start": 3567.74, + "end": 3568.0, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 3568.0, + "end": 3568.18, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3568.18, + "end": 3568.3, + "probability": 1.0 + }, + { + "word": " information", + "start": 3568.3, + "end": 3568.62, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 3568.62, + "end": 3568.96, + "probability": 0.99755859375 + }, + { + "word": " being", + "start": 3568.96, + "end": 3569.18, + "probability": 1.0 + }, + { + "word": " given", + "start": 3569.18, + "end": 3569.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 3569.5, + "end": 3569.8, + "probability": 0.91064453125 + }, + { + "word": " really.", + "start": 3569.8, + "end": 3570.18, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1407, + "text": "This is a fabulous subject.", + "start": 3570.62, + "end": 3572.44, + "words": [ + { + "word": " This", + "start": 3570.62, + "end": 3571.26, + "probability": 0.7919921875 + }, + { + "word": " is", + "start": 3571.26, + "end": 3571.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 3571.5, + "end": 3571.6, + "probability": 1.0 + }, + { + "word": " fabulous", + "start": 3571.6, + "end": 3571.94, + "probability": 1.0 + }, + { + "word": " subject.", + "start": 3571.94, + "end": 3572.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1408, + "text": "Very important.", + "start": 3572.54, + "end": 3573.18, + "words": [ + { + "word": " Very", + "start": 3572.54, + "end": 3572.78, + "probability": 0.998046875 + }, + { + "word": " important.", + "start": 3572.78, + "end": 3573.18, + "probability": 1.0 + } + ] + }, + { + "id": 1409, + "text": "Glad that you brought it up.", + "start": 3573.28, + "end": 3574.28, + "words": [ + { + "word": " Glad", + "start": 3573.28, + "end": 3573.5, + "probability": 0.79736328125 + }, + { + "word": " that", + "start": 3573.5, + "end": 3573.66, + "probability": 0.9755859375 + }, + { + "word": " you", + "start": 3573.66, + "end": 3573.8, + "probability": 1.0 + }, + { + "word": " brought", + "start": 3573.8, + "end": 3573.98, + "probability": 1.0 + }, + { + "word": " it", + "start": 3573.98, + "end": 3574.14, + "probability": 0.99951171875 + }, + { + "word": " up.", + "start": 3574.14, + "end": 3574.28, + "probability": 1.0 + } + ] + }, + { + "id": 1410, + "text": "Some days ago, there was discussion about Hillary Clinton's name being entered into various sites and different kinds of information coming up about her.", + "start": 3574.36, + "end": 3584.44, + "words": [ + { + "word": " Some", + "start": 3574.36, + "end": 3574.96, + "probability": 0.99951171875 + }, + { + "word": " days", + "start": 3574.96, + "end": 3575.24, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 3575.24, + "end": 3575.58, + "probability": 1.0 + }, + { + "word": " there", + "start": 3575.76, + "end": 3576.34, + "probability": 1.0 + }, + { + "word": " was", + "start": 3576.34, + "end": 3576.5, + "probability": 1.0 + }, + { + "word": " discussion", + "start": 3576.5, + "end": 3576.88, + "probability": 0.9912109375 + }, + { + "word": " about", + "start": 3576.88, + "end": 3577.34, + "probability": 1.0 + }, + { + "word": " Hillary", + "start": 3577.34, + "end": 3577.7, + "probability": 1.0 + }, + { + "word": " Clinton's", + "start": 3577.7, + "end": 3578.28, + "probability": 1.0 + }, + { + "word": " name", + "start": 3578.28, + "end": 3578.5, + "probability": 0.99951171875 + }, + { + "word": " being", + "start": 3578.5, + "end": 3578.84, + "probability": 0.9990234375 + }, + { + "word": " entered", + "start": 3578.84, + "end": 3579.28, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 3579.28, + "end": 3579.56, + "probability": 1.0 + }, + { + "word": " various", + "start": 3579.56, + "end": 3579.9, + "probability": 1.0 + }, + { + "word": " sites", + "start": 3579.9, + "end": 3580.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 3580.36, + "end": 3581.34, + "probability": 0.8525390625 + }, + { + "word": " different", + "start": 3581.34, + "end": 3581.8, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 3581.8, + "end": 3582.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 3582.2, + "end": 3582.36, + "probability": 1.0 + }, + { + "word": " information", + "start": 3582.36, + "end": 3582.68, + "probability": 1.0 + }, + { + "word": " coming", + "start": 3582.68, + "end": 3583.24, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 3583.24, + "end": 3583.64, + "probability": 0.9951171875 + }, + { + "word": " about", + "start": 3583.64, + "end": 3584.14, + "probability": 1.0 + }, + { + "word": " her.", + "start": 3584.14, + "end": 3584.44, + "probability": 1.0 + } + ] + }, + { + "id": 1411, + "text": "Some was very bland, fluffy, inconsequential.", + "start": 3584.56, + "end": 3587.98, + "words": [ + { + "word": " Some", + "start": 3584.56, + "end": 3584.98, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 3584.98, + "end": 3585.16, + "probability": 0.99853515625 + }, + { + "word": " very", + "start": 3585.16, + "end": 3585.34, + "probability": 1.0 + }, + { + "word": " bland,", + "start": 3585.34, + "end": 3585.82, + "probability": 1.0 + }, + { + "word": " fluffy,", + "start": 3586.14, + "end": 3586.64, + "probability": 0.9970703125 + }, + { + "word": " inconsequential.", + "start": 3586.92, + "end": 3587.98, + "probability": 1.0 + } + ] + }, + { + "id": 1412, + "text": "And other stuff was of more substance.", + "start": 3588.9, + "end": 3591.52, + "words": [ + { + "word": " And", + "start": 3588.6, + "end": 3588.92, + "probability": 0.962890625 + }, + { + "word": " other", + "start": 3588.92, + "end": 3589.28, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 3589.28, + "end": 3589.6, + "probability": 1.0 + }, + { + "word": " was", + "start": 3589.6, + "end": 3590.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 3590.1, + "end": 3590.74, + "probability": 0.98681640625 + }, + { + "word": " more", + "start": 3590.74, + "end": 3591.02, + "probability": 0.9990234375 + }, + { + "word": " substance.", + "start": 3591.02, + "end": 3591.52, + "probability": 1.0 + } + ] + }, + { + "id": 1413, + "text": "And of the things that, you know, people who are.", + "start": 3591.66, + "end": 3594.78, + "words": [ + { + "word": " And", + "start": 3591.66, + "end": 3592.3, + "probability": 0.96923828125 + }, + { + "word": " of", + "start": 3592.3, + "end": 3592.7, + "probability": 0.9462890625 + }, + { + "word": " the", + "start": 3592.7, + "end": 3592.92, + "probability": 0.998046875 + }, + { + "word": " things", + "start": 3592.92, + "end": 3593.36, + "probability": 0.9990234375 + }, + { + "word": " that,", + "start": 3593.36, + "end": 3593.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 3593.68, + "end": 3593.84, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3593.84, + "end": 3594.0, + "probability": 1.0 + }, + { + "word": " people", + "start": 3594.02, + "end": 3594.32, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 3594.32, + "end": 3594.54, + "probability": 0.99951171875 + }, + { + "word": " are.", + "start": 3594.54, + "end": 3594.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1414, + "text": "Disappointed in her.", + "start": 3595.12, + "end": 3595.84, + "words": [ + { + "word": " Disappointed", + "start": 3595.12, + "end": 3595.44, + "probability": 0.6650390625 + }, + { + "word": " in", + "start": 3595.44, + "end": 3595.64, + "probability": 0.97509765625 + }, + { + "word": " her.", + "start": 3595.64, + "end": 3595.84, + "probability": 0.6962890625 + } + ] + }, + { + "id": 1415, + "text": "Want to talk about.", + "start": 3596.32, + "end": 3597.62, + "words": [ + { + "word": " Want", + "start": 3596.32, + "end": 3596.92, + "probability": 0.888671875 + }, + { + "word": " to", + "start": 3596.92, + "end": 3597.12, + "probability": 0.92138671875 + }, + { + "word": " talk", + "start": 3597.12, + "end": 3597.36, + "probability": 0.99853515625 + }, + { + "word": " about.", + "start": 3597.36, + "end": 3597.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1416, + "text": "You mentioned Walter Cronkite.", + "start": 3598.6600000000003, + "end": 3601.42, + "words": [ + { + "word": " You", + "start": 3598.6600000000003, + "end": 3599.26, + "probability": 0.99755859375 + }, + { + "word": " mentioned", + "start": 3599.26, + "end": 3599.8, + "probability": 0.99951171875 + }, + { + "word": " Walter", + "start": 3599.8, + "end": 3600.82, + "probability": 0.60693359375 + }, + { + "word": " Cronkite.", + "start": 3600.82, + "end": 3601.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1417, + "text": "Who knows if he was giving us everything that was available?", + "start": 3602.0, + "end": 3605.96, + "words": [ + { + "word": " Who", + "start": 3602.0, + "end": 3602.6, + "probability": 0.99951171875 + }, + { + "word": " knows", + "start": 3602.6, + "end": 3603.18, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 3603.18, + "end": 3603.58, + "probability": 0.79638671875 + }, + { + "word": " he", + "start": 3603.58, + "end": 3603.78, + "probability": 1.0 + }, + { + "word": " was", + "start": 3603.78, + "end": 3603.9, + "probability": 1.0 + }, + { + "word": " giving", + "start": 3603.9, + "end": 3604.14, + "probability": 0.9931640625 + }, + { + "word": " us", + "start": 3604.14, + "end": 3604.38, + "probability": 1.0 + }, + { + "word": " everything", + "start": 3604.38, + "end": 3604.68, + "probability": 0.90087890625 + }, + { + "word": " that", + "start": 3604.68, + "end": 3605.34, + "probability": 0.888671875 + }, + { + "word": " was", + "start": 3605.34, + "end": 3605.58, + "probability": 1.0 + }, + { + "word": " available?", + "start": 3605.58, + "end": 3605.96, + "probability": 1.0 + } + ] + }, + { + "id": 1418, + "text": "Who knows who is in the pool of people who have information, who will give it out or won't give it out or give out false information?", + "start": 3607.3399999999997, + "end": 3617.36, + "words": [ + { + "word": " Who", + "start": 3607.08, + "end": 3607.38, + "probability": 1.0 + }, + { + "word": " knows", + "start": 3607.38, + "end": 3607.98, + "probability": 0.99267578125 + }, + { + "word": " who", + "start": 3607.98, + "end": 3608.82, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 3608.82, + "end": 3609.02, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 3609.02, + "end": 3609.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 3609.18, + "end": 3609.36, + "probability": 1.0 + }, + { + "word": " pool", + "start": 3609.36, + "end": 3609.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 3609.78, + "end": 3610.36, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 3610.36, + "end": 3610.76, + "probability": 1.0 + }, + { + "word": " who", + "start": 3610.76, + "end": 3611.68, + "probability": 0.9912109375 + }, + { + "word": " have", + "start": 3611.68, + "end": 3611.98, + "probability": 0.998046875 + }, + { + "word": " information,", + "start": 3611.98, + "end": 3612.48, + "probability": 1.0 + }, + { + "word": " who", + "start": 3612.8, + "end": 3613.58, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 3613.58, + "end": 3613.9, + "probability": 1.0 + }, + { + "word": " give", + "start": 3613.9, + "end": 3614.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 3614.12, + "end": 3614.32, + "probability": 1.0 + }, + { + "word": " out", + "start": 3614.32, + "end": 3614.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 3614.8, + "end": 3615.12, + "probability": 0.97900390625 + }, + { + "word": " won't", + "start": 3615.12, + "end": 3615.4, + "probability": 1.0 + }, + { + "word": " give", + "start": 3615.4, + "end": 3615.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 3615.56, + "end": 3615.72, + "probability": 1.0 + }, + { + "word": " out", + "start": 3615.72, + "end": 3615.9, + "probability": 1.0 + }, + { + "word": " or", + "start": 3615.9, + "end": 3616.18, + "probability": 0.52685546875 + }, + { + "word": " give", + "start": 3616.18, + "end": 3616.4, + "probability": 1.0 + }, + { + "word": " out", + "start": 3616.4, + "end": 3616.64, + "probability": 1.0 + }, + { + "word": " false", + "start": 3616.64, + "end": 3616.94, + "probability": 1.0 + }, + { + "word": " information?", + "start": 3616.94, + "end": 3617.36, + "probability": 1.0 + } + ] + }, + { + "id": 1419, + "text": "Everything is really quite unknown.", + "start": 3618.38, + "end": 3620.28, + "words": [ + { + "word": " Everything", + "start": 3618.38, + "end": 3618.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 3618.98, + "end": 3619.3, + "probability": 1.0 + }, + { + "word": " really", + "start": 3619.3, + "end": 3619.56, + "probability": 1.0 + }, + { + "word": " quite", + "start": 3619.56, + "end": 3619.86, + "probability": 1.0 + }, + { + "word": " unknown.", + "start": 3619.86, + "end": 3620.28, + "probability": 1.0 + } + ] + }, + { + "id": 1420, + "text": "It's a matter of trusting people.", + "start": 3620.36, + "end": 3622.06, + "words": [ + { + "word": " It's", + "start": 3620.36, + "end": 3620.66, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 3620.66, + "end": 3620.72, + "probability": 1.0 + }, + { + "word": " matter", + "start": 3620.72, + "end": 3621.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 3621.04, + "end": 3621.16, + "probability": 1.0 + }, + { + "word": " trusting", + "start": 3621.16, + "end": 3621.64, + "probability": 1.0 + }, + { + "word": " people.", + "start": 3621.64, + "end": 3622.06, + "probability": 1.0 + } + ] + }, + { + "id": 1421, + "text": "Who do you trust?", + "start": 3622.9, + "end": 3623.64, + "words": [ + { + "word": " Who", + "start": 3622.62, + "end": 3622.92, + "probability": 1.0 + }, + { + "word": " do", + "start": 3622.92, + "end": 3623.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 3623.1, + "end": 3623.32, + "probability": 1.0 + }, + { + "word": " trust?", + "start": 3623.32, + "end": 3623.64, + "probability": 1.0 + } + ] + }, + { + "id": 1422, + "text": "And the Internet is so big.", + "start": 3625.12, + "end": 3628.22, + "words": [ + { + "word": " And", + "start": 3625.12, + "end": 3625.26, + "probability": 0.517578125 + }, + { + "word": " the", + "start": 3625.26, + "end": 3626.16, + "probability": 0.99853515625 + }, + { + "word": " Internet", + "start": 3626.16, + "end": 3626.94, + "probability": 0.94384765625 + }, + { + "word": " is", + "start": 3626.94, + "end": 3627.52, + "probability": 1.0 + }, + { + "word": " so", + "start": 3627.52, + "end": 3627.88, + "probability": 1.0 + }, + { + "word": " big.", + "start": 3627.88, + "end": 3628.22, + "probability": 1.0 + } + ] + }, + { + "id": 1423, + "text": "And you talked about people in parts of the world where that's literally all they have available to them.", + "start": 3628.46, + "end": 3633.9, + "words": [ + { + "word": " And", + "start": 3628.46, + "end": 3629.0, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3629.0, + "end": 3629.12, + "probability": 1.0 + }, + { + "word": " talked", + "start": 3629.12, + "end": 3629.34, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 3629.34, + "end": 3629.7, + "probability": 1.0 + }, + { + "word": " people", + "start": 3629.7, + "end": 3630.26, + "probability": 1.0 + }, + { + "word": " in", + "start": 3630.26, + "end": 3630.44, + "probability": 0.99755859375 + }, + { + "word": " parts", + "start": 3630.44, + "end": 3630.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 3630.64, + "end": 3630.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 3630.82, + "end": 3630.94, + "probability": 1.0 + }, + { + "word": " world", + "start": 3630.94, + "end": 3631.2, + "probability": 1.0 + }, + { + "word": " where", + "start": 3631.2, + "end": 3631.4, + "probability": 0.998046875 + }, + { + "word": " that's", + "start": 3631.4, + "end": 3631.72, + "probability": 0.99951171875 + }, + { + "word": " literally", + "start": 3631.72, + "end": 3632.22, + "probability": 1.0 + }, + { + "word": " all", + "start": 3632.22, + "end": 3632.64, + "probability": 1.0 + }, + { + "word": " they", + "start": 3632.64, + "end": 3632.84, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3632.84, + "end": 3633.04, + "probability": 1.0 + }, + { + "word": " available", + "start": 3633.04, + "end": 3633.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 3633.44, + "end": 3633.68, + "probability": 1.0 + }, + { + "word": " them.", + "start": 3633.68, + "end": 3633.9, + "probability": 1.0 + } + ] + }, + { + "id": 1424, + "text": "It has made things very, very dangerous.", + "start": 3636.04, + "end": 3639.16, + "words": [ + { + "word": " It", + "start": 3636.04, + "end": 3636.6, + "probability": 0.98291015625 + }, + { + "word": " has", + "start": 3636.6, + "end": 3637.12, + "probability": 0.99951171875 + }, + { + "word": " made", + "start": 3637.12, + "end": 3637.74, + "probability": 1.0 + }, + { + "word": " things", + "start": 3637.74, + "end": 3638.06, + "probability": 1.0 + }, + { + "word": " very,", + "start": 3638.06, + "end": 3638.5, + "probability": 1.0 + }, + { + "word": " very", + "start": 3638.56, + "end": 3638.72, + "probability": 1.0 + }, + { + "word": " dangerous.", + "start": 3638.72, + "end": 3639.16, + "probability": 1.0 + } + ] + }, + { + "id": 1425, + "text": "And people are influenced and can be pitted against each other.", + "start": 3639.22, + "end": 3644.4, + "words": [ + { + "word": " And", + "start": 3639.22, + "end": 3639.58, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 3639.58, + "end": 3639.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 3639.86, + "end": 3640.06, + "probability": 1.0 + }, + { + "word": " influenced", + "start": 3640.06, + "end": 3641.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 3641.04, + "end": 3641.96, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 3641.96, + "end": 3642.24, + "probability": 1.0 + }, + { + "word": " be", + "start": 3642.24, + "end": 3642.52, + "probability": 1.0 + }, + { + "word": " pitted", + "start": 3642.52, + "end": 3643.32, + "probability": 0.9990234375 + }, + { + "word": " against", + "start": 3643.32, + "end": 3643.66, + "probability": 1.0 + }, + { + "word": " each", + "start": 3643.66, + "end": 3644.06, + "probability": 1.0 + }, + { + "word": " other.", + "start": 3644.06, + "end": 3644.4, + "probability": 1.0 + } + ] + }, + { + "id": 1426, + "text": "Look what they're doing now with the terrorist attacks.", + "start": 3644.5, + "end": 3648.1, + "words": [ + { + "word": " Look", + "start": 3644.5, + "end": 3644.72, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 3644.72, + "end": 3644.9, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 3644.9, + "end": 3645.04, + "probability": 0.99951171875 + }, + { + "word": " doing", + "start": 3645.04, + "end": 3645.24, + "probability": 1.0 + }, + { + "word": " now", + "start": 3645.24, + "end": 3645.56, + "probability": 1.0 + }, + { + "word": " with", + "start": 3645.56, + "end": 3645.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 3645.9, + "end": 3646.18, + "probability": 0.99853515625 + }, + { + "word": " terrorist", + "start": 3646.18, + "end": 3647.66, + "probability": 1.0 + }, + { + "word": " attacks.", + "start": 3647.66, + "end": 3648.1, + "probability": 1.0 + } + ] + }, + { + "id": 1427, + "text": "They're looking at it from this direction, from that direction, manipulating everything.", + "start": 3648.62, + "end": 3653.2, + "words": [ + { + "word": " They're", + "start": 3648.62, + "end": 3649.18, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3649.18, + "end": 3649.46, + "probability": 1.0 + }, + { + "word": " at", + "start": 3649.46, + "end": 3649.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 3649.66, + "end": 3649.74, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 3649.74, + "end": 3649.88, + "probability": 1.0 + }, + { + "word": " this", + "start": 3649.88, + "end": 3650.08, + "probability": 1.0 + }, + { + "word": " direction,", + "start": 3650.08, + "end": 3650.52, + "probability": 1.0 + }, + { + "word": " from", + "start": 3650.66, + "end": 3650.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 3650.82, + "end": 3651.08, + "probability": 1.0 + }, + { + "word": " direction,", + "start": 3651.08, + "end": 3651.6, + "probability": 1.0 + }, + { + "word": " manipulating", + "start": 3651.76, + "end": 3652.46, + "probability": 0.99951171875 + }, + { + "word": " everything.", + "start": 3652.46, + "end": 3653.2, + "probability": 1.0 + } + ] + }, + { + "id": 1428, + "text": "We're being.", + "start": 3653.92, + "end": 3654.72, + "words": [ + { + "word": " We're", + "start": 3653.92, + "end": 3654.48, + "probability": 0.9951171875 + }, + { + "word": " being.", + "start": 3654.48, + "end": 3654.72, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1429, + "text": "We're being ripped apart.", + "start": 3655.12, + "end": 3656.2, + "words": [ + { + "word": " We're", + "start": 3655.12, + "end": 3655.38, + "probability": 0.958984375 + }, + { + "word": " being", + "start": 3655.38, + "end": 3655.56, + "probability": 0.99951171875 + }, + { + "word": " ripped", + "start": 3655.56, + "end": 3655.78, + "probability": 0.99951171875 + }, + { + "word": " apart.", + "start": 3655.78, + "end": 3656.2, + "probability": 1.0 + } + ] + }, + { + "id": 1430, + "text": "Well, I guess that's sort of the point I was trying to get at is that information should be out there in the world for all of us to see and for all of us to make our own opinion about.", + "start": 3656.48, + "end": 3664.68, + "words": [ + { + "word": " Well,", + "start": 3656.48, + "end": 3656.72, + "probability": 0.978515625 + }, + { + "word": " I", + "start": 3656.76, + "end": 3656.86, + "probability": 1.0 + }, + { + "word": " guess", + "start": 3656.86, + "end": 3657.0, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3657.0, + "end": 3657.18, + "probability": 1.0 + }, + { + "word": " sort", + "start": 3657.18, + "end": 3657.3, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3657.3, + "end": 3657.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 3657.42, + "end": 3657.54, + "probability": 1.0 + }, + { + "word": " point", + "start": 3657.54, + "end": 3657.94, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3657.94, + "end": 3658.1, + "probability": 0.77978515625 + }, + { + "word": " was", + "start": 3658.1, + "end": 3658.2, + "probability": 1.0 + }, + { + "word": " trying", + "start": 3658.2, + "end": 3658.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 3658.34, + "end": 3658.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 3658.44, + "end": 3658.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 3658.58, + "end": 3658.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 3658.78, + "end": 3659.36, + "probability": 0.3603515625 + }, + { + "word": " that", + "start": 3659.36, + "end": 3659.76, + "probability": 1.0 + }, + { + "word": " information", + "start": 3659.76, + "end": 3660.7, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 3660.7, + "end": 3661.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 3661.1, + "end": 3661.24, + "probability": 1.0 + }, + { + "word": " out", + "start": 3661.24, + "end": 3661.36, + "probability": 1.0 + }, + { + "word": " there", + "start": 3661.36, + "end": 3661.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 3661.54, + "end": 3661.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 3661.64, + "end": 3661.68, + "probability": 1.0 + }, + { + "word": " world", + "start": 3661.68, + "end": 3661.88, + "probability": 1.0 + }, + { + "word": " for", + "start": 3661.88, + "end": 3662.04, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 3662.04, + "end": 3662.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 3662.16, + "end": 3662.28, + "probability": 1.0 + }, + { + "word": " us", + "start": 3662.28, + "end": 3662.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 3662.42, + "end": 3662.54, + "probability": 1.0 + }, + { + "word": " see", + "start": 3662.54, + "end": 3662.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 3662.76, + "end": 3663.04, + "probability": 0.99560546875 + }, + { + "word": " for", + "start": 3663.04, + "end": 3663.26, + "probability": 1.0 + }, + { + "word": " all", + "start": 3663.26, + "end": 3663.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 3663.4, + "end": 3663.5, + "probability": 1.0 + }, + { + "word": " us", + "start": 3663.5, + "end": 3663.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 3663.66, + "end": 3663.76, + "probability": 1.0 + }, + { + "word": " make", + "start": 3663.76, + "end": 3663.92, + "probability": 1.0 + }, + { + "word": " our", + "start": 3663.92, + "end": 3664.04, + "probability": 1.0 + }, + { + "word": " own", + "start": 3664.04, + "end": 3664.2, + "probability": 1.0 + }, + { + "word": " opinion", + "start": 3664.2, + "end": 3664.44, + "probability": 1.0 + }, + { + "word": " about.", + "start": 3664.44, + "end": 3664.68, + "probability": 1.0 + } + ] + }, + { + "id": 1431, + "text": "And I think that if someone takes it upon themselves to censor that information for the masses, what right do they have to censor that information?", + "start": 3664.98, + "end": 3673.48, + "words": [ + { + "word": " And", + "start": 3664.98, + "end": 3665.38, + "probability": 0.94580078125 + }, + { + "word": " I", + "start": 3665.38, + "end": 3665.72, + "probability": 1.0 + }, + { + "word": " think", + "start": 3665.72, + "end": 3665.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 3665.98, + "end": 3666.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 3666.1, + "end": 3666.2, + "probability": 1.0 + }, + { + "word": " someone", + "start": 3666.2, + "end": 3666.38, + "probability": 1.0 + }, + { + "word": " takes", + "start": 3666.38, + "end": 3666.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 3666.58, + "end": 3666.72, + "probability": 1.0 + }, + { + "word": " upon", + "start": 3666.72, + "end": 3666.86, + "probability": 1.0 + }, + { + "word": " themselves", + "start": 3666.86, + "end": 3667.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 3667.16, + "end": 3667.58, + "probability": 1.0 + }, + { + "word": " censor", + "start": 3667.58, + "end": 3668.18, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3668.18, + "end": 3668.32, + "probability": 1.0 + }, + { + "word": " information", + "start": 3668.32, + "end": 3668.86, + "probability": 1.0 + }, + { + "word": " for", + "start": 3668.86, + "end": 3669.76, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 3669.76, + "end": 3670.22, + "probability": 1.0 + }, + { + "word": " masses,", + "start": 3670.22, + "end": 3670.54, + "probability": 1.0 + }, + { + "word": " what", + "start": 3670.6, + "end": 3671.46, + "probability": 1.0 + }, + { + "word": " right", + "start": 3671.46, + "end": 3671.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 3671.9, + "end": 3672.1, + "probability": 1.0 + }, + { + "word": " they", + "start": 3672.1, + "end": 3672.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 3672.26, + "end": 3672.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 3672.6, + "end": 3672.82, + "probability": 1.0 + }, + { + "word": " censor", + "start": 3672.82, + "end": 3673.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 3673.16, + "end": 3673.24, + "probability": 1.0 + }, + { + "word": " information?", + "start": 3673.24, + "end": 3673.48, + "probability": 1.0 + } + ] + }, + { + "id": 1432, + "text": "The part that bothers me is not necessarily that there are there is misinformation out there.", + "start": 3674.8599999999997, + "end": 3681.3, + "words": [ + { + "word": " The", + "start": 3674.8599999999997, + "end": 3675.2599999999998, + "probability": 0.998046875 + }, + { + "word": " part", + "start": 3675.2599999999998, + "end": 3675.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 3675.66, + "end": 3675.86, + "probability": 1.0 + }, + { + "word": " bothers", + "start": 3675.86, + "end": 3676.12, + "probability": 1.0 + }, + { + "word": " me", + "start": 3676.12, + "end": 3676.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 3676.38, + "end": 3676.56, + "probability": 1.0 + }, + { + "word": " not", + "start": 3676.56, + "end": 3676.72, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 3676.72, + "end": 3677.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 3677.28, + "end": 3677.84, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 3677.84, + "end": 3678.38, + "probability": 1.0 + }, + { + "word": " are", + "start": 3678.38, + "end": 3678.56, + "probability": 0.0014104843139648438 + }, + { + "word": " there", + "start": 3678.56, + "end": 3679.2, + "probability": 0.1961669921875 + }, + { + "word": " is", + "start": 3679.2, + "end": 3679.54, + "probability": 0.998046875 + }, + { + "word": " misinformation", + "start": 3679.54, + "end": 3679.78, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 3679.78, + "end": 3681.04, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 3681.04, + "end": 3681.3, + "probability": 1.0 + } + ] + }, + { + "id": 1433, + "text": "The part that bothers me is that someone has taken it upon themselves.", + "start": 3682.06, + "end": 3684.6, + "words": [ + { + "word": " The", + "start": 3682.06, + "end": 3682.46, + "probability": 0.99853515625 + }, + { + "word": " part", + "start": 3682.46, + "end": 3682.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 3682.68, + "end": 3682.82, + "probability": 1.0 + }, + { + "word": " bothers", + "start": 3682.82, + "end": 3683.06, + "probability": 0.9990234375 + }, + { + "word": " me", + "start": 3683.06, + "end": 3683.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 3683.24, + "end": 3683.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 3683.36, + "end": 3683.48, + "probability": 1.0 + }, + { + "word": " someone", + "start": 3683.48, + "end": 3683.68, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 3683.68, + "end": 3683.86, + "probability": 0.46875 + }, + { + "word": " taken", + "start": 3683.86, + "end": 3684.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 3684.02, + "end": 3684.16, + "probability": 0.98974609375 + }, + { + "word": " upon", + "start": 3684.16, + "end": 3684.28, + "probability": 0.99951171875 + }, + { + "word": " themselves.", + "start": 3684.28, + "end": 3684.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1434, + "text": "And I think that's the part that bothers me.", + "start": 3687.04, + "end": 3707.82, + "words": [ + { + "word": " And", + "start": 3687.04, + "end": 3688.44, + "probability": 0.10858154296875 + }, + { + "word": " I", + "start": 3688.44, + "end": 3689.84, + "probability": 0.004077911376953125 + }, + { + "word": " think", + "start": 3689.84, + "end": 3689.84, + "probability": 0.420654296875 + }, + { + "word": " that's", + "start": 3689.84, + "end": 3691.12, + "probability": 0.634765625 + }, + { + "word": " the", + "start": 3691.12, + "end": 3691.12, + "probability": 0.1314697265625 + }, + { + "word": " part", + "start": 3691.12, + "end": 3691.84, + "probability": 0.0156097412109375 + }, + { + "word": " that", + "start": 3691.84, + "end": 3707.24, + "probability": 0.234619140625 + }, + { + "word": " bothers", + "start": 3707.24, + "end": 3707.4, + "probability": 0.00030994415283203125 + }, + { + "word": " me.", + "start": 3707.4, + "end": 3707.82, + "probability": 0.92724609375 + } + ] + }, + { + "id": 1435, + "text": "We have no way of knowing if he was giving us the truth.", + "start": 3707.82, + "end": 3709.82, + "words": [ + { + "word": " We", + "start": 3707.82, + "end": 3707.84, + "probability": 0.892578125 + }, + { + "word": " have", + "start": 3707.84, + "end": 3707.92, + "probability": 0.68896484375 + }, + { + "word": " no", + "start": 3707.92, + "end": 3708.04, + "probability": 1.0 + }, + { + "word": " way", + "start": 3708.04, + "end": 3708.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 3708.24, + "end": 3708.4, + "probability": 1.0 + }, + { + "word": " knowing", + "start": 3708.4, + "end": 3708.58, + "probability": 1.0 + }, + { + "word": " if", + "start": 3708.58, + "end": 3708.84, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 3708.84, + "end": 3708.96, + "probability": 0.99462890625 + }, + { + "word": " was", + "start": 3708.96, + "end": 3709.08, + "probability": 1.0 + }, + { + "word": " giving", + "start": 3709.08, + "end": 3709.26, + "probability": 1.0 + }, + { + "word": " us", + "start": 3709.26, + "end": 3709.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 3709.44, + "end": 3709.54, + "probability": 1.0 + }, + { + "word": " truth.", + "start": 3709.54, + "end": 3709.82, + "probability": 1.0 + } + ] + }, + { + "id": 1436, + "text": "Well, now we have potentially a million new sources at our fingertips at any given moment.", + "start": 3710.14, + "end": 3715.02, + "words": [ + { + "word": " Well,", + "start": 3710.14, + "end": 3710.58, + "probability": 0.98193359375 + }, + { + "word": " now", + "start": 3710.6, + "end": 3710.86, + "probability": 1.0 + }, + { + "word": " we", + "start": 3710.86, + "end": 3711.22, + "probability": 0.97216796875 + }, + { + "word": " have", + "start": 3711.22, + "end": 3711.44, + "probability": 1.0 + }, + { + "word": " potentially", + "start": 3711.44, + "end": 3711.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 3711.92, + "end": 3712.24, + "probability": 1.0 + }, + { + "word": " million", + "start": 3712.24, + "end": 3712.56, + "probability": 1.0 + }, + { + "word": " new", + "start": 3712.56, + "end": 3712.82, + "probability": 0.29736328125 + }, + { + "word": " sources", + "start": 3712.82, + "end": 3713.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 3713.12, + "end": 3713.68, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 3713.68, + "end": 3713.8, + "probability": 1.0 + }, + { + "word": " fingertips", + "start": 3713.8, + "end": 3714.18, + "probability": 1.0 + }, + { + "word": " at", + "start": 3714.18, + "end": 3714.36, + "probability": 0.80615234375 + }, + { + "word": " any", + "start": 3714.36, + "end": 3714.5, + "probability": 0.99853515625 + }, + { + "word": " given", + "start": 3714.5, + "end": 3714.7, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 3714.7, + "end": 3715.02, + "probability": 1.0 + } + ] + }, + { + "id": 1437, + "text": "So we don't have to live in the forced echo chamber.", + "start": 3715.14, + "end": 3717.54, + "words": [ + { + "word": " So", + "start": 3715.14, + "end": 3715.54, + "probability": 0.98681640625 + }, + { + "word": " we", + "start": 3715.54, + "end": 3715.66, + "probability": 0.96484375 + }, + { + "word": " don't", + "start": 3715.66, + "end": 3715.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 3715.8, + "end": 3715.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 3715.94, + "end": 3716.16, + "probability": 1.0 + }, + { + "word": " live", + "start": 3716.16, + "end": 3716.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 3716.46, + "end": 3716.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 3716.6, + "end": 3716.7, + "probability": 1.0 + }, + { + "word": " forced", + "start": 3716.7, + "end": 3716.98, + "probability": 0.9892578125 + }, + { + "word": " echo", + "start": 3716.98, + "end": 3717.22, + "probability": 0.99951171875 + }, + { + "word": " chamber.", + "start": 3717.22, + "end": 3717.54, + "probability": 1.0 + } + ] + }, + { + "id": 1438, + "text": "You know, we can always go to a different source and fact check and verify.", + "start": 3717.76, + "end": 3720.72, + "words": [ + { + "word": " You", + "start": 3717.76, + "end": 3717.96, + "probability": 0.2281494140625 + }, + { + "word": " know,", + "start": 3717.96, + "end": 3718.12, + "probability": 1.0 + }, + { + "word": " we", + "start": 3718.14, + "end": 3718.26, + "probability": 1.0 + }, + { + "word": " can", + "start": 3718.26, + "end": 3718.38, + "probability": 1.0 + }, + { + "word": " always", + "start": 3718.38, + "end": 3718.66, + "probability": 1.0 + }, + { + "word": " go", + "start": 3718.66, + "end": 3719.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 3719.02, + "end": 3719.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 3719.16, + "end": 3719.28, + "probability": 1.0 + }, + { + "word": " different", + "start": 3719.28, + "end": 3719.38, + "probability": 1.0 + }, + { + "word": " source", + "start": 3719.38, + "end": 3719.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 3719.66, + "end": 3719.8, + "probability": 0.99951171875 + }, + { + "word": " fact", + "start": 3719.8, + "end": 3720.04, + "probability": 1.0 + }, + { + "word": " check", + "start": 3720.04, + "end": 3720.28, + "probability": 0.67919921875 + }, + { + "word": " and", + "start": 3720.28, + "end": 3720.44, + "probability": 1.0 + }, + { + "word": " verify.", + "start": 3720.44, + "end": 3720.72, + "probability": 1.0 + } + ] + }, + { + "id": 1439, + "text": "That doesn't mean that people do.", + "start": 3722.2599999999998, + "end": 3723.72, + "words": [ + { + "word": " That", + "start": 3722.2599999999998, + "end": 3722.7, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 3722.7, + "end": 3723.14, + "probability": 1.0 + }, + { + "word": " mean", + "start": 3723.14, + "end": 3723.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3723.26, + "end": 3723.34, + "probability": 1.0 + }, + { + "word": " people", + "start": 3723.34, + "end": 3723.5, + "probability": 1.0 + }, + { + "word": " do.", + "start": 3723.5, + "end": 3723.72, + "probability": 1.0 + } + ] + }, + { + "id": 1440, + "text": "But we have the ability to for the potentially the first time in human history.", + "start": 3724.62, + "end": 3728.1, + "words": [ + { + "word": " But", + "start": 3724.62, + "end": 3725.06, + "probability": 0.9873046875 + }, + { + "word": " we", + "start": 3725.06, + "end": 3725.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 3725.22, + "end": 3725.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 3725.38, + "end": 3725.52, + "probability": 1.0 + }, + { + "word": " ability", + "start": 3725.52, + "end": 3725.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 3725.82, + "end": 3726.02, + "probability": 1.0 + }, + { + "word": " for", + "start": 3726.02, + "end": 3726.24, + "probability": 0.921875 + }, + { + "word": " the", + "start": 3726.24, + "end": 3726.34, + "probability": 0.0736083984375 + }, + { + "word": " potentially", + "start": 3726.34, + "end": 3726.8, + "probability": 0.8544921875 + }, + { + "word": " the", + "start": 3726.8, + "end": 3727.04, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 3727.04, + "end": 3727.24, + "probability": 1.0 + }, + { + "word": " time", + "start": 3727.24, + "end": 3727.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 3727.46, + "end": 3727.6, + "probability": 1.0 + }, + { + "word": " human", + "start": 3727.6, + "end": 3727.78, + "probability": 0.99951171875 + }, + { + "word": " history.", + "start": 3727.78, + "end": 3728.1, + "probability": 1.0 + } + ] + }, + { + "id": 1441, + "text": "The thing is to go to all kinds of sources constantly.", + "start": 3728.26, + "end": 3731.92, + "words": [ + { + "word": " The", + "start": 3728.26, + "end": 3728.6, + "probability": 0.99853515625 + }, + { + "word": " thing", + "start": 3728.6, + "end": 3728.84, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3728.84, + "end": 3728.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 3728.98, + "end": 3729.16, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 3729.16, + "end": 3729.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3729.38, + "end": 3729.52, + "probability": 1.0 + }, + { + "word": " all", + "start": 3729.52, + "end": 3729.84, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 3729.84, + "end": 3730.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 3730.2, + "end": 3730.5, + "probability": 1.0 + }, + { + "word": " sources", + "start": 3730.5, + "end": 3730.82, + "probability": 1.0 + }, + { + "word": " constantly.", + "start": 3730.82, + "end": 3731.92, + "probability": 0.9501953125 + } + ] + }, + { + "id": 1442, + "text": "Listen to Canadian news.", + "start": 3732.4, + "end": 3734.16, + "words": [ + { + "word": " Listen", + "start": 3732.4, + "end": 3732.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3732.84, + "end": 3733.14, + "probability": 1.0 + }, + { + "word": " Canadian", + "start": 3733.14, + "end": 3733.54, + "probability": 1.0 + }, + { + "word": " news.", + "start": 3733.54, + "end": 3734.16, + "probability": 1.0 + } + ] + }, + { + "id": 1443, + "text": "I used to do that some years ago.", + "start": 3735.9, + "end": 3737.8, + "words": [ + { + "word": " I", + "start": 3735.9, + "end": 3736.34, + "probability": 0.99658203125 + }, + { + "word": " used", + "start": 3736.34, + "end": 3736.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 3736.66, + "end": 3736.84, + "probability": 1.0 + }, + { + "word": " do", + "start": 3736.84, + "end": 3736.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 3736.98, + "end": 3737.16, + "probability": 1.0 + }, + { + "word": " some", + "start": 3737.16, + "end": 3737.36, + "probability": 0.986328125 + }, + { + "word": " years", + "start": 3737.36, + "end": 3737.56, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 3737.56, + "end": 3737.8, + "probability": 0.96728515625 + } + ] + }, + { + "id": 1444, + "text": "And I would listen to Canadian and American news and see what I was missing.", + "start": 3737.82, + "end": 3742.1, + "words": [ + { + "word": " And", + "start": 3737.82, + "end": 3738.38, + "probability": 0.431884765625 + }, + { + "word": " I", + "start": 3738.38, + "end": 3738.76, + "probability": 0.986328125 + }, + { + "word": " would", + "start": 3738.76, + "end": 3739.04, + "probability": 0.9990234375 + }, + { + "word": " listen", + "start": 3739.04, + "end": 3739.24, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3739.24, + "end": 3739.4, + "probability": 0.998046875 + }, + { + "word": " Canadian", + "start": 3739.4, + "end": 3739.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 3739.8, + "end": 3740.02, + "probability": 0.99755859375 + }, + { + "word": " American", + "start": 3740.02, + "end": 3740.28, + "probability": 1.0 + }, + { + "word": " news", + "start": 3740.28, + "end": 3740.8, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 3740.8, + "end": 3741.08, + "probability": 0.96435546875 + }, + { + "word": " see", + "start": 3741.08, + "end": 3741.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 3741.34, + "end": 3741.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 3741.58, + "end": 3741.72, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3741.72, + "end": 3741.86, + "probability": 1.0 + }, + { + "word": " missing.", + "start": 3741.86, + "end": 3742.1, + "probability": 1.0 + } + ] + }, + { + "id": 1445, + "text": "And now, of course, I'm at this border and I like to hear both sides of things.", + "start": 3742.5, + "end": 3747.76, + "words": [ + { + "word": " And", + "start": 3742.5, + "end": 3742.92, + "probability": 0.9951171875 + }, + { + "word": " now,", + "start": 3742.92, + "end": 3743.24, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3743.26, + "end": 3743.38, + "probability": 1.0 + }, + { + "word": " course,", + "start": 3743.38, + "end": 3743.52, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3743.56, + "end": 3743.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 3743.74, + "end": 3743.8, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 3743.8, + "end": 3744.18, + "probability": 1.0 + }, + { + "word": " border", + "start": 3744.18, + "end": 3744.52, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3744.52, + "end": 3745.32, + "probability": 0.2064208984375 + }, + { + "word": " I", + "start": 3745.32, + "end": 3745.7, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 3745.7, + "end": 3746.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3746.08, + "end": 3746.22, + "probability": 1.0 + }, + { + "word": " hear", + "start": 3746.22, + "end": 3746.4, + "probability": 1.0 + }, + { + "word": " both", + "start": 3746.4, + "end": 3746.9, + "probability": 0.806640625 + }, + { + "word": " sides", + "start": 3746.9, + "end": 3747.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 3747.34, + "end": 3747.52, + "probability": 1.0 + }, + { + "word": " things.", + "start": 3747.52, + "end": 3747.76, + "probability": 1.0 + } + ] + }, + { + "id": 1446, + "text": "And we listen to the national news at night.", + "start": 3747.9, + "end": 3750.48, + "words": [ + { + "word": " And", + "start": 3747.9, + "end": 3748.04, + "probability": 0.96044921875 + }, + { + "word": " we", + "start": 3748.04, + "end": 3748.34, + "probability": 0.99951171875 + }, + { + "word": " listen", + "start": 3748.34, + "end": 3748.78, + "probability": 0.8798828125 + }, + { + "word": " to", + "start": 3748.78, + "end": 3749.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 3749.1, + "end": 3749.26, + "probability": 1.0 + }, + { + "word": " national", + "start": 3749.26, + "end": 3749.62, + "probability": 1.0 + }, + { + "word": " news", + "start": 3749.62, + "end": 3749.96, + "probability": 1.0 + }, + { + "word": " at", + "start": 3749.96, + "end": 3750.18, + "probability": 1.0 + }, + { + "word": " night.", + "start": 3750.18, + "end": 3750.48, + "probability": 1.0 + } + ] + }, + { + "id": 1447, + "text": "And that's one of what we're just saying is that now you have the opportunity to listen to news from all over the world to get a different perspective to different geographical areas within the United States.", + "start": 3750.58, + "end": 3760.88, + "words": [ + { + "word": " And", + "start": 3750.58, + "end": 3750.8, + "probability": 0.984375 + }, + { + "word": " that's", + "start": 3750.8, + "end": 3751.06, + "probability": 0.9892578125 + }, + { + "word": " one", + "start": 3751.06, + "end": 3751.16, + "probability": 0.057464599609375 + }, + { + "word": " of", + "start": 3751.16, + "end": 3751.26, + "probability": 1.0 + }, + { + "word": " what", + "start": 3751.26, + "end": 3751.48, + "probability": 0.87353515625 + }, + { + "word": " we're", + "start": 3751.48, + "end": 3751.76, + "probability": 0.58349609375 + }, + { + "word": " just", + "start": 3751.76, + "end": 3751.92, + "probability": 1.0 + }, + { + "word": " saying", + "start": 3751.92, + "end": 3752.14, + "probability": 1.0 + }, + { + "word": " is", + "start": 3752.14, + "end": 3752.26, + "probability": 0.91748046875 + }, + { + "word": " that", + "start": 3752.26, + "end": 3752.36, + "probability": 1.0 + }, + { + "word": " now", + "start": 3752.36, + "end": 3752.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 3752.54, + "end": 3752.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 3752.66, + "end": 3752.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3752.8, + "end": 3752.92, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 3752.92, + "end": 3753.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 3753.26, + "end": 3753.62, + "probability": 1.0 + }, + { + "word": " listen", + "start": 3753.62, + "end": 3753.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 3753.9, + "end": 3754.12, + "probability": 1.0 + }, + { + "word": " news", + "start": 3754.12, + "end": 3754.34, + "probability": 1.0 + }, + { + "word": " from", + "start": 3754.34, + "end": 3754.58, + "probability": 1.0 + }, + { + "word": " all", + "start": 3754.58, + "end": 3754.88, + "probability": 1.0 + }, + { + "word": " over", + "start": 3754.88, + "end": 3755.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 3755.08, + "end": 3755.22, + "probability": 1.0 + }, + { + "word": " world", + "start": 3755.22, + "end": 3755.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3755.5, + "end": 3755.66, + "probability": 0.362060546875 + }, + { + "word": " get", + "start": 3755.66, + "end": 3755.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 3755.76, + "end": 3755.82, + "probability": 0.99755859375 + }, + { + "word": " different", + "start": 3755.82, + "end": 3756.06, + "probability": 1.0 + }, + { + "word": " perspective", + "start": 3756.06, + "end": 3756.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3756.5, + "end": 3757.2, + "probability": 0.443115234375 + }, + { + "word": " different", + "start": 3757.2, + "end": 3757.68, + "probability": 0.99658203125 + }, + { + "word": " geographical", + "start": 3757.68, + "end": 3758.4, + "probability": 1.0 + }, + { + "word": " areas", + "start": 3758.4, + "end": 3759.76, + "probability": 0.99951171875 + }, + { + "word": " within", + "start": 3759.76, + "end": 3760.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3760.18, + "end": 3760.36, + "probability": 1.0 + }, + { + "word": " United", + "start": 3760.36, + "end": 3760.52, + "probability": 1.0 + }, + { + "word": " States.", + "start": 3760.52, + "end": 3760.88, + "probability": 1.0 + } + ] + }, + { + "id": 1448, + "text": "You get to listen to or have access to information from everywhere and from every site.", + "start": 3761.0, + "end": 3767.76, + "words": [ + { + "word": " You", + "start": 3761.0, + "end": 3761.52, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 3761.52, + "end": 3761.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 3761.66, + "end": 3761.76, + "probability": 1.0 + }, + { + "word": " listen", + "start": 3761.76, + "end": 3762.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 3762.02, + "end": 3762.26, + "probability": 1.0 + }, + { + "word": " or", + "start": 3762.26, + "end": 3762.54, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 3762.54, + "end": 3762.98, + "probability": 1.0 + }, + { + "word": " access", + "start": 3762.98, + "end": 3763.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3763.38, + "end": 3763.64, + "probability": 1.0 + }, + { + "word": " information", + "start": 3763.64, + "end": 3763.98, + "probability": 1.0 + }, + { + "word": " from", + "start": 3763.98, + "end": 3765.32, + "probability": 0.99951171875 + }, + { + "word": " everywhere", + "start": 3765.32, + "end": 3766.06, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3766.06, + "end": 3766.72, + "probability": 0.8603515625 + }, + { + "word": " from", + "start": 3766.72, + "end": 3767.0, + "probability": 1.0 + }, + { + "word": " every", + "start": 3767.0, + "end": 3767.38, + "probability": 0.99951171875 + }, + { + "word": " site.", + "start": 3767.38, + "end": 3767.76, + "probability": 0.288818359375 + } + ] + }, + { + "id": 1449, + "text": "And that's a double edged sword, right?", + "start": 3767.82, + "end": 3771.28, + "words": [ + { + "word": " And", + "start": 3767.82, + "end": 3768.18, + "probability": 0.0426025390625 + }, + { + "word": " that's", + "start": 3768.18, + "end": 3769.62, + "probability": 0.857421875 + }, + { + "word": " a", + "start": 3769.62, + "end": 3769.7, + "probability": 0.966796875 + }, + { + "word": " double", + "start": 3769.7, + "end": 3770.58, + "probability": 0.99951171875 + }, + { + "word": " edged", + "start": 3770.58, + "end": 3770.76, + "probability": 0.564453125 + }, + { + "word": " sword,", + "start": 3770.76, + "end": 3770.98, + "probability": 1.0 + }, + { + "word": " right?", + "start": 3771.1, + "end": 3771.28, + "probability": 0.990234375 + } + ] + }, + { + "id": 1450, + "text": "Where you've got all this information and all of these opinions and viewpoints that sort of don't necessarily match up with one another.", + "start": 3771.36, + "end": 3779.4, + "words": [ + { + "word": " Where", + "start": 3771.36, + "end": 3771.48, + "probability": 0.99560546875 + }, + { + "word": " you've", + "start": 3771.48, + "end": 3771.7, + "probability": 1.0 + }, + { + "word": " got", + "start": 3771.7, + "end": 3771.9, + "probability": 1.0 + }, + { + "word": " all", + "start": 3771.9, + "end": 3772.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 3772.46, + "end": 3772.64, + "probability": 1.0 + }, + { + "word": " information", + "start": 3772.64, + "end": 3773.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 3773.04, + "end": 3773.38, + "probability": 0.97802734375 + }, + { + "word": " all", + "start": 3773.38, + "end": 3773.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 3773.58, + "end": 3773.72, + "probability": 1.0 + }, + { + "word": " these", + "start": 3773.72, + "end": 3773.9, + "probability": 1.0 + }, + { + "word": " opinions", + "start": 3773.9, + "end": 3774.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 3774.5, + "end": 3774.98, + "probability": 1.0 + }, + { + "word": " viewpoints", + "start": 3774.98, + "end": 3775.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 3775.6, + "end": 3775.94, + "probability": 1.0 + }, + { + "word": " sort", + "start": 3775.94, + "end": 3776.98, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3776.98, + "end": 3777.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3777.2, + "end": 3777.62, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 3777.62, + "end": 3777.94, + "probability": 1.0 + }, + { + "word": " match", + "start": 3777.94, + "end": 3778.34, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 3778.34, + "end": 3778.84, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3778.84, + "end": 3779.0, + "probability": 1.0 + }, + { + "word": " one", + "start": 3779.0, + "end": 3779.14, + "probability": 1.0 + }, + { + "word": " another.", + "start": 3779.14, + "end": 3779.4, + "probability": 1.0 + } + ] + }, + { + "id": 1451, + "text": "And then somebody is going to be offended and say, well, that's hate speech or that is this is totally offensive.", + "start": 3779.54, + "end": 3784.64, + "words": [ + { + "word": " And", + "start": 3779.54, + "end": 3779.72, + "probability": 0.95703125 + }, + { + "word": " then", + "start": 3779.72, + "end": 3779.9, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 3779.9, + "end": 3780.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 3780.24, + "end": 3780.4, + "probability": 1.0 + }, + { + "word": " going", + "start": 3780.4, + "end": 3780.48, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3780.48, + "end": 3780.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 3780.6, + "end": 3780.68, + "probability": 1.0 + }, + { + "word": " offended", + "start": 3780.68, + "end": 3781.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 3781.0, + "end": 3781.22, + "probability": 1.0 + }, + { + "word": " say,", + "start": 3781.22, + "end": 3781.34, + "probability": 1.0 + }, + { + "word": " well,", + "start": 3781.4, + "end": 3781.5, + "probability": 0.99365234375 + }, + { + "word": " that's", + "start": 3781.54, + "end": 3781.82, + "probability": 1.0 + }, + { + "word": " hate", + "start": 3781.82, + "end": 3781.92, + "probability": 1.0 + }, + { + "word": " speech", + "start": 3781.92, + "end": 3782.26, + "probability": 1.0 + }, + { + "word": " or", + "start": 3782.26, + "end": 3782.66, + "probability": 0.7626953125 + }, + { + "word": " that", + "start": 3782.66, + "end": 3782.88, + "probability": 0.93701171875 + }, + { + "word": " is", + "start": 3782.88, + "end": 3783.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 3783.22, + "end": 3783.82, + "probability": 0.82470703125 + }, + { + "word": " is", + "start": 3783.82, + "end": 3783.94, + "probability": 1.0 + }, + { + "word": " totally", + "start": 3783.94, + "end": 3784.3, + "probability": 1.0 + }, + { + "word": " offensive.", + "start": 3784.3, + "end": 3784.64, + "probability": 1.0 + } + ] + }, + { + "id": 1452, + "text": "I feel completely triggered or whatever.", + "start": 3784.74, + "end": 3786.64, + "words": [ + { + "word": " I", + "start": 3784.74, + "end": 3784.94, + "probability": 0.99853515625 + }, + { + "word": " feel", + "start": 3784.94, + "end": 3785.16, + "probability": 1.0 + }, + { + "word": " completely", + "start": 3785.16, + "end": 3785.54, + "probability": 1.0 + }, + { + "word": " triggered", + "start": 3785.54, + "end": 3785.98, + "probability": 1.0 + }, + { + "word": " or", + "start": 3785.98, + "end": 3786.3, + "probability": 1.0 + }, + { + "word": " whatever.", + "start": 3786.3, + "end": 3786.64, + "probability": 1.0 + } + ] + }, + { + "id": 1453, + "text": "But that information needs to remain there because it is information from which you can form an opinion.", + "start": 3787.8, + "end": 3796.78, + "words": [ + { + "word": " But", + "start": 3787.8, + "end": 3788.36, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 3788.36, + "end": 3788.92, + "probability": 1.0 + }, + { + "word": " information", + "start": 3788.92, + "end": 3789.42, + "probability": 1.0 + }, + { + "word": " needs", + "start": 3789.42, + "end": 3789.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 3789.8, + "end": 3790.04, + "probability": 1.0 + }, + { + "word": " remain", + "start": 3790.04, + "end": 3790.26, + "probability": 1.0 + }, + { + "word": " there", + "start": 3790.26, + "end": 3790.9, + "probability": 1.0 + }, + { + "word": " because", + "start": 3790.9, + "end": 3791.78, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3791.78, + "end": 3792.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 3792.3, + "end": 3792.56, + "probability": 1.0 + }, + { + "word": " information", + "start": 3792.56, + "end": 3793.02, + "probability": 1.0 + }, + { + "word": " from", + "start": 3793.02, + "end": 3794.38, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 3794.38, + "end": 3794.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 3794.74, + "end": 3795.28, + "probability": 1.0 + }, + { + "word": " can", + "start": 3795.28, + "end": 3795.56, + "probability": 1.0 + }, + { + "word": " form", + "start": 3795.56, + "end": 3796.22, + "probability": 1.0 + }, + { + "word": " an", + "start": 3796.22, + "end": 3796.5, + "probability": 1.0 + }, + { + "word": " opinion.", + "start": 3796.5, + "end": 3796.78, + "probability": 1.0 + } + ] + }, + { + "id": 1454, + "text": "Well, it's not.", + "start": 3797.1, + "end": 3797.8, + "words": [ + { + "word": " Well,", + "start": 3797.1, + "end": 3797.66, + "probability": 0.994140625 + }, + { + "word": " it's", + "start": 3797.78, + "end": 3797.8, + "probability": 0.560546875 + }, + { + "word": " not.", + "start": 3797.8, + "end": 3797.8, + "probability": 0.1942138671875 + } + ] + }, + { + "id": 1455, + "text": "The young people need to have it drilled into their heads that they have to look everywhere for information.", + "start": 3797.82, + "end": 3803.04, + "words": [ + { + "word": " The", + "start": 3797.82, + "end": 3797.82, + "probability": 0.4970703125 + }, + { + "word": " young", + "start": 3797.82, + "end": 3797.96, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 3797.96, + "end": 3798.28, + "probability": 1.0 + }, + { + "word": " need", + "start": 3798.28, + "end": 3798.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3798.52, + "end": 3798.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 3798.66, + "end": 3798.82, + "probability": 1.0 + }, + { + "word": " it", + "start": 3798.82, + "end": 3798.94, + "probability": 0.99853515625 + }, + { + "word": " drilled", + "start": 3798.94, + "end": 3799.18, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 3799.18, + "end": 3799.46, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 3799.46, + "end": 3799.7, + "probability": 1.0 + }, + { + "word": " heads", + "start": 3799.7, + "end": 3800.04, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3800.04, + "end": 3800.28, + "probability": 0.9873046875 + }, + { + "word": " they", + "start": 3800.28, + "end": 3800.46, + "probability": 1.0 + }, + { + "word": " have", + "start": 3800.46, + "end": 3800.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 3800.64, + "end": 3800.94, + "probability": 1.0 + }, + { + "word": " look", + "start": 3800.94, + "end": 3801.74, + "probability": 0.99951171875 + }, + { + "word": " everywhere", + "start": 3801.74, + "end": 3802.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 3802.22, + "end": 3802.58, + "probability": 1.0 + }, + { + "word": " information.", + "start": 3802.58, + "end": 3803.04, + "probability": 1.0 + } + ] + }, + { + "id": 1456, + "text": "And when it's found out that somebody is censoring, that entity needs to be.", + "start": 3803.32, + "end": 3808.5, + "words": [ + { + "word": " And", + "start": 3803.32, + "end": 3803.48, + "probability": 0.91455078125 + }, + { + "word": " when", + "start": 3803.48, + "end": 3803.66, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 3803.66, + "end": 3803.84, + "probability": 0.9990234375 + }, + { + "word": " found", + "start": 3803.84, + "end": 3804.08, + "probability": 1.0 + }, + { + "word": " out", + "start": 3804.08, + "end": 3804.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 3804.48, + "end": 3804.72, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 3804.72, + "end": 3805.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 3805.08, + "end": 3805.46, + "probability": 1.0 + }, + { + "word": " censoring,", + "start": 3805.46, + "end": 3806.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 3806.36, + "end": 3806.88, + "probability": 1.0 + }, + { + "word": " entity", + "start": 3806.88, + "end": 3807.34, + "probability": 1.0 + }, + { + "word": " needs", + "start": 3807.34, + "end": 3807.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 3807.88, + "end": 3808.12, + "probability": 1.0 + }, + { + "word": " be.", + "start": 3808.12, + "end": 3808.5, + "probability": 1.0 + } + ] + }, + { + "id": 1457, + "text": "And that's that's the thing with the whole journalistic integrity thing.", + "start": 3809.32, + "end": 3812.94, + "words": [ + { + "word": " And", + "start": 3809.32, + "end": 3809.8, + "probability": 0.98291015625 + }, + { + "word": " that's", + "start": 3809.8, + "end": 3810.0, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3810.0, + "end": 3810.62, + "probability": 0.814453125 + }, + { + "word": " the", + "start": 3810.62, + "end": 3810.68, + "probability": 0.998046875 + }, + { + "word": " thing", + "start": 3810.68, + "end": 3810.88, + "probability": 1.0 + }, + { + "word": " with", + "start": 3810.88, + "end": 3811.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 3811.06, + "end": 3811.26, + "probability": 1.0 + }, + { + "word": " whole", + "start": 3811.26, + "end": 3811.56, + "probability": 0.99755859375 + }, + { + "word": " journalistic", + "start": 3811.56, + "end": 3812.14, + "probability": 1.0 + }, + { + "word": " integrity", + "start": 3812.14, + "end": 3812.52, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 3812.52, + "end": 3812.94, + "probability": 1.0 + } + ] + }, + { + "id": 1458, + "text": "All right.", + "start": 3813.18, + "end": 3813.72, + "words": [ + { + "word": " All", + "start": 3813.18, + "end": 3813.66, + "probability": 0.95654296875 + }, + { + "word": " right.", + "start": 3813.66, + "end": 3813.72, + "probability": 1.0 + } + ] + }, + { + "id": 1459, + "text": "Where you have large news organizations like, you know, you had ABC News that had a big thing with Brian Williams and some of these other.", + "start": 3813.78, + "end": 3821.8, + "words": [ + { + "word": " Where", + "start": 3813.78, + "end": 3813.9, + "probability": 0.98486328125 + }, + { + "word": " you", + "start": 3813.9, + "end": 3814.08, + "probability": 1.0 + }, + { + "word": " have", + "start": 3814.08, + "end": 3814.38, + "probability": 1.0 + }, + { + "word": " large", + "start": 3814.38, + "end": 3815.1, + "probability": 1.0 + }, + { + "word": " news", + "start": 3815.1, + "end": 3815.4, + "probability": 1.0 + }, + { + "word": " organizations", + "start": 3815.4, + "end": 3815.94, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3815.94, + "end": 3816.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 3816.52, + "end": 3816.66, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3816.66, + "end": 3816.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 3816.74, + "end": 3816.86, + "probability": 0.8974609375 + }, + { + "word": " had", + "start": 3816.86, + "end": 3816.92, + "probability": 0.9404296875 + }, + { + "word": " ABC", + "start": 3816.92, + "end": 3817.2, + "probability": 0.9990234375 + }, + { + "word": " News", + "start": 3817.2, + "end": 3817.58, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 3817.58, + "end": 3817.76, + "probability": 0.92578125 + }, + { + "word": " had", + "start": 3817.76, + "end": 3817.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 3817.9, + "end": 3818.02, + "probability": 1.0 + }, + { + "word": " big", + "start": 3818.02, + "end": 3818.18, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3818.18, + "end": 3818.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 3818.48, + "end": 3818.62, + "probability": 0.99951171875 + }, + { + "word": " Brian", + "start": 3818.62, + "end": 3818.82, + "probability": 0.8125 + }, + { + "word": " Williams", + "start": 3818.82, + "end": 3819.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 3819.36, + "end": 3820.6, + "probability": 0.77734375 + }, + { + "word": " some", + "start": 3820.6, + "end": 3821.18, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3821.18, + "end": 3821.32, + "probability": 1.0 + }, + { + "word": " these", + "start": 3821.32, + "end": 3821.44, + "probability": 1.0 + }, + { + "word": " other.", + "start": 3821.44, + "end": 3821.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1460, + "text": "What's a Tom Brokaw before that?", + "start": 3821.84, + "end": 3823.54, + "words": [ + { + "word": " What's", + "start": 3821.84, + "end": 3822.28, + "probability": 0.662109375 + }, + { + "word": " a", + "start": 3822.28, + "end": 3822.32, + "probability": 0.55126953125 + }, + { + "word": " Tom", + "start": 3822.32, + "end": 3822.58, + "probability": 0.9912109375 + }, + { + "word": " Brokaw", + "start": 3822.58, + "end": 3822.9, + "probability": 0.9775390625 + }, + { + "word": " before", + "start": 3822.9, + "end": 3823.22, + "probability": 0.978515625 + }, + { + "word": " that?", + "start": 3823.22, + "end": 3823.54, + "probability": 1.0 + } + ] + }, + { + "id": 1461, + "text": "You had these large news scandals.", + "start": 3823.68, + "end": 3825.68, + "words": [ + { + "word": " You", + "start": 3823.68, + "end": 3824.16, + "probability": 0.9970703125 + }, + { + "word": " had", + "start": 3824.16, + "end": 3824.36, + "probability": 0.9765625 + }, + { + "word": " these", + "start": 3824.36, + "end": 3824.52, + "probability": 1.0 + }, + { + "word": " large", + "start": 3824.52, + "end": 3824.96, + "probability": 1.0 + }, + { + "word": " news", + "start": 3824.96, + "end": 3825.26, + "probability": 0.98779296875 + }, + { + "word": " scandals.", + "start": 3825.26, + "end": 3825.68, + "probability": 1.0 + } + ] + }, + { + "id": 1462, + "text": "And the reason they were scandals were because.", + "start": 3825.7, + "end": 3827.72, + "words": [ + { + "word": " And", + "start": 3825.7, + "end": 3825.76, + "probability": 0.9892578125 + }, + { + "word": " the", + "start": 3825.76, + "end": 3825.82, + "probability": 1.0 + }, + { + "word": " reason", + "start": 3825.82, + "end": 3826.06, + "probability": 1.0 + }, + { + "word": " they", + "start": 3826.06, + "end": 3826.18, + "probability": 0.99658203125 + }, + { + "word": " were", + "start": 3826.18, + "end": 3826.28, + "probability": 1.0 + }, + { + "word": " scandals", + "start": 3826.28, + "end": 3826.8, + "probability": 1.0 + }, + { + "word": " were", + "start": 3826.8, + "end": 3827.44, + "probability": 0.9970703125 + }, + { + "word": " because.", + "start": 3827.44, + "end": 3827.72, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1463, + "text": "Because there was an implicit implied trust.", + "start": 3827.82, + "end": 3830.38, + "words": [ + { + "word": " Because", + "start": 3827.82, + "end": 3828.02, + "probability": 0.48046875 + }, + { + "word": " there", + "start": 3828.02, + "end": 3828.28, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 3828.28, + "end": 3828.5, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 3828.5, + "end": 3828.68, + "probability": 0.99951171875 + }, + { + "word": " implicit", + "start": 3828.68, + "end": 3828.98, + "probability": 0.1727294921875 + }, + { + "word": " implied", + "start": 3828.98, + "end": 3829.44, + "probability": 0.82470703125 + }, + { + "word": " trust.", + "start": 3829.44, + "end": 3830.38, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1464, + "text": "Yeah.", + "start": 3830.56, + "end": 3830.7, + "words": [ + { + "word": " Yeah.", + "start": 3830.56, + "end": 3830.7, + "probability": 0.9169921875 + } + ] + }, + { + "id": 1465, + "text": "People trusted those people like Brian Williams.", + "start": 3830.72, + "end": 3832.86, + "words": [ + { + "word": " People", + "start": 3830.72, + "end": 3830.88, + "probability": 0.99755859375 + }, + { + "word": " trusted", + "start": 3830.88, + "end": 3831.44, + "probability": 1.0 + }, + { + "word": " those", + "start": 3831.44, + "end": 3831.88, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 3831.88, + "end": 3832.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 3832.14, + "end": 3832.3, + "probability": 0.865234375 + }, + { + "word": " Brian", + "start": 3832.3, + "end": 3832.52, + "probability": 0.99951171875 + }, + { + "word": " Williams.", + "start": 3832.52, + "end": 3832.86, + "probability": 1.0 + } + ] + }, + { + "id": 1466, + "text": "You know, it's a household name.", + "start": 3832.98, + "end": 3834.04, + "words": [ + { + "word": " You", + "start": 3832.98, + "end": 3833.08, + "probability": 0.9638671875 + }, + { + "word": " know,", + "start": 3833.08, + "end": 3833.14, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3833.16, + "end": 3833.3, + "probability": 0.984375 + }, + { + "word": " a", + "start": 3833.3, + "end": 3833.34, + "probability": 1.0 + }, + { + "word": " household", + "start": 3833.34, + "end": 3833.68, + "probability": 0.9970703125 + }, + { + "word": " name.", + "start": 3833.68, + "end": 3834.04, + "probability": 1.0 + } + ] + }, + { + "id": 1467, + "text": "Right.", + "start": 3834.16, + "end": 3834.38, + "words": [ + { + "word": " Right.", + "start": 3834.16, + "end": 3834.38, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1468, + "text": "So there is an implied trust that goes along with saying I am the news.", + "start": 3834.46, + "end": 3838.58, + "words": [ + { + "word": " So", + "start": 3834.46, + "end": 3834.56, + "probability": 0.9970703125 + }, + { + "word": " there", + "start": 3834.56, + "end": 3835.0, + "probability": 0.99072265625 + }, + { + "word": " is", + "start": 3835.0, + "end": 3835.12, + "probability": 0.9208984375 + }, + { + "word": " an", + "start": 3835.12, + "end": 3835.24, + "probability": 1.0 + }, + { + "word": " implied", + "start": 3835.24, + "end": 3835.54, + "probability": 1.0 + }, + { + "word": " trust", + "start": 3835.54, + "end": 3836.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 3836.2, + "end": 3836.42, + "probability": 1.0 + }, + { + "word": " goes", + "start": 3836.42, + "end": 3836.56, + "probability": 1.0 + }, + { + "word": " along", + "start": 3836.56, + "end": 3836.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 3836.8, + "end": 3837.02, + "probability": 1.0 + }, + { + "word": " saying", + "start": 3837.02, + "end": 3837.24, + "probability": 1.0 + }, + { + "word": " I", + "start": 3837.24, + "end": 3837.64, + "probability": 0.66162109375 + }, + { + "word": " am", + "start": 3837.64, + "end": 3837.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3837.94, + "end": 3838.24, + "probability": 1.0 + }, + { + "word": " news.", + "start": 3838.24, + "end": 3838.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1469, + "text": "Whereas with these other sources, you know, when you're dealing with the Internet, it's not.", + "start": 3839.72, + "end": 3844.3, + "words": [ + { + "word": " Whereas", + "start": 3839.72, + "end": 3840.16, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 3840.16, + "end": 3840.6, + "probability": 0.99609375 + }, + { + "word": " these", + "start": 3840.6, + "end": 3840.82, + "probability": 1.0 + }, + { + "word": " other", + "start": 3840.82, + "end": 3841.08, + "probability": 1.0 + }, + { + "word": " sources,", + "start": 3841.08, + "end": 3841.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 3841.66, + "end": 3841.92, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 3841.92, + "end": 3842.06, + "probability": 1.0 + }, + { + "word": " when", + "start": 3842.06, + "end": 3842.14, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 3842.14, + "end": 3842.22, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 3842.22, + "end": 3842.5, + "probability": 1.0 + }, + { + "word": " with", + "start": 3842.5, + "end": 3842.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3842.76, + "end": 3842.86, + "probability": 1.0 + }, + { + "word": " Internet,", + "start": 3842.86, + "end": 3843.14, + "probability": 0.974609375 + }, + { + "word": " it's", + "start": 3843.4, + "end": 3844.14, + "probability": 0.99951171875 + }, + { + "word": " not.", + "start": 3844.14, + "end": 3844.3, + "probability": 1.0 + } + ] + }, + { + "id": 1470, + "text": "But there there are people like Huffington Post, like even in some respects a drudge.", + "start": 3844.4, + "end": 3850.6, + "words": [ + { + "word": " But", + "start": 3844.4, + "end": 3844.62, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 3844.62, + "end": 3845.36, + "probability": 1.0 + }, + { + "word": " there", + "start": 3845.36, + "end": 3845.76, + "probability": 0.58349609375 + }, + { + "word": " are", + "start": 3845.76, + "end": 3845.88, + "probability": 1.0 + }, + { + "word": " people", + "start": 3845.88, + "end": 3846.18, + "probability": 1.0 + }, + { + "word": " like", + "start": 3846.18, + "end": 3846.62, + "probability": 1.0 + }, + { + "word": " Huffington", + "start": 3846.62, + "end": 3847.06, + "probability": 1.0 + }, + { + "word": " Post,", + "start": 3847.06, + "end": 3847.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 3847.6, + "end": 3847.9, + "probability": 1.0 + }, + { + "word": " even", + "start": 3847.9, + "end": 3848.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 3848.88, + "end": 3849.04, + "probability": 0.92724609375 + }, + { + "word": " some", + "start": 3849.04, + "end": 3849.48, + "probability": 0.91748046875 + }, + { + "word": " respects", + "start": 3849.48, + "end": 3849.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 3849.94, + "end": 3850.08, + "probability": 0.78173828125 + }, + { + "word": " drudge.", + "start": 3850.08, + "end": 3850.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1471, + "text": "Right.", + "start": 3850.8, + "end": 3851.24, + "words": [ + { + "word": " Right.", + "start": 3850.8, + "end": 3851.24, + "probability": 0.990234375 + } + ] + }, + { + "id": 1472, + "text": "That are are trading in on the name.", + "start": 3851.34, + "end": 3854.62, + "words": [ + { + "word": " That", + "start": 3851.34, + "end": 3851.6, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 3851.6, + "end": 3852.08, + "probability": 1.0 + }, + { + "word": " are", + "start": 3852.08, + "end": 3852.9, + "probability": 1.0 + }, + { + "word": " trading", + "start": 3852.9, + "end": 3853.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 3853.54, + "end": 3853.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 3853.9, + "end": 3854.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 3854.12, + "end": 3854.34, + "probability": 1.0 + }, + { + "word": " name.", + "start": 3854.34, + "end": 3854.62, + "probability": 1.0 + } + ] + }, + { + "id": 1473, + "text": "Right.", + "start": 3854.74, + "end": 3854.98, + "words": [ + { + "word": " Right.", + "start": 3854.74, + "end": 3854.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 1474, + "text": "They're saying I am a news source.", + "start": 3855.04, + "end": 3856.7, + "words": [ + { + "word": " They're", + "start": 3855.04, + "end": 3855.24, + "probability": 0.99609375 + }, + { + "word": " saying", + "start": 3855.24, + "end": 3855.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 3855.48, + "end": 3855.82, + "probability": 0.9921875 + }, + { + "word": " am", + "start": 3855.82, + "end": 3856.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 3856.04, + "end": 3856.18, + "probability": 1.0 + }, + { + "word": " news", + "start": 3856.18, + "end": 3856.36, + "probability": 0.9970703125 + }, + { + "word": " source.", + "start": 3856.36, + "end": 3856.7, + "probability": 1.0 + } + ] + }, + { + "id": 1475, + "text": "Well, not.", + "start": 3856.84, + "end": 3857.44, + "words": [ + { + "word": " Well,", + "start": 3856.84, + "end": 3857.04, + "probability": 0.9990234375 + }, + { + "word": " not.", + "start": 3857.12, + "end": 3857.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1476, + "text": "Really.", + "start": 3857.82, + "end": 3858.24, + "words": [ + { + "word": " Really.", + "start": 3857.82, + "end": 3858.24, + "probability": 0.81591796875 + } + ] + }, + { + "id": 1477, + "text": "Right.", + "start": 3858.38, + "end": 3858.68, + "words": [ + { + "word": " Right.", + "start": 3858.38, + "end": 3858.68, + "probability": 0.87451171875 + } + ] + }, + { + "id": 1478, + "text": "Because you you have your own slant.", + "start": 3858.76, + "end": 3862.3, + "words": [ + { + "word": " Because", + "start": 3858.76, + "end": 3859.12, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3859.12, + "end": 3859.64, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3859.64, + "end": 3859.98, + "probability": 0.4541015625 + }, + { + "word": " have", + "start": 3859.98, + "end": 3861.08, + "probability": 0.99658203125 + }, + { + "word": " your", + "start": 3861.08, + "end": 3861.4, + "probability": 1.0 + }, + { + "word": " own", + "start": 3861.4, + "end": 3861.72, + "probability": 1.0 + }, + { + "word": " slant.", + "start": 3861.72, + "end": 3862.3, + "probability": 1.0 + } + ] + }, + { + "id": 1479, + "text": "And what I'm looking for when I'm looking for a news source is someone is going to give me raw sort of unfiltered thought.", + "start": 3862.3, + "end": 3870.16, + "words": [ + { + "word": " And", + "start": 3862.3, + "end": 3862.42, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 3862.42, + "end": 3862.5, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3862.5, + "end": 3862.68, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3862.68, + "end": 3862.92, + "probability": 1.0 + }, + { + "word": " for", + "start": 3862.92, + "end": 3863.3, + "probability": 1.0 + }, + { + "word": " when", + "start": 3863.3, + "end": 3863.84, + "probability": 0.97265625 + }, + { + "word": " I'm", + "start": 3863.84, + "end": 3864.02, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3864.02, + "end": 3864.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 3864.22, + "end": 3864.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 3864.46, + "end": 3864.52, + "probability": 0.98486328125 + }, + { + "word": " news", + "start": 3864.52, + "end": 3864.72, + "probability": 0.92724609375 + }, + { + "word": " source", + "start": 3864.72, + "end": 3865.0, + "probability": 0.86181640625 + }, + { + "word": " is", + "start": 3865.0, + "end": 3865.3, + "probability": 1.0 + }, + { + "word": " someone", + "start": 3865.3, + "end": 3865.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 3865.72, + "end": 3865.84, + "probability": 0.9697265625 + }, + { + "word": " going", + "start": 3865.84, + "end": 3865.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 3865.94, + "end": 3866.06, + "probability": 1.0 + }, + { + "word": " give", + "start": 3866.06, + "end": 3866.18, + "probability": 1.0 + }, + { + "word": " me", + "start": 3866.18, + "end": 3866.38, + "probability": 1.0 + }, + { + "word": " raw", + "start": 3866.38, + "end": 3866.68, + "probability": 0.99951171875 + }, + { + "word": " sort", + "start": 3866.68, + "end": 3867.74, + "probability": 0.95654296875 + }, + { + "word": " of", + "start": 3867.74, + "end": 3867.96, + "probability": 1.0 + }, + { + "word": " unfiltered", + "start": 3867.96, + "end": 3869.46, + "probability": 0.99755859375 + }, + { + "word": " thought.", + "start": 3869.46, + "end": 3870.16, + "probability": 1.0 + } + ] + }, + { + "id": 1480, + "text": "Yeah.", + "start": 3870.46, + "end": 3870.76, + "words": [ + { + "word": " Yeah.", + "start": 3870.46, + "end": 3870.76, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1481, + "text": "And I mean, even just in terms of this show, when we're doing research on a topic for that, we're going to talk about on the show.", + "start": 3870.88, + "end": 3877.08, + "words": [ + { + "word": " And", + "start": 3870.88, + "end": 3870.98, + "probability": 0.76318359375 + }, + { + "word": " I", + "start": 3870.98, + "end": 3871.02, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 3871.02, + "end": 3871.16, + "probability": 1.0 + }, + { + "word": " even", + "start": 3871.16, + "end": 3871.46, + "probability": 1.0 + }, + { + "word": " just", + "start": 3871.46, + "end": 3871.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 3871.68, + "end": 3871.92, + "probability": 1.0 + }, + { + "word": " terms", + "start": 3871.92, + "end": 3872.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 3872.18, + "end": 3872.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 3872.4, + "end": 3872.56, + "probability": 1.0 + }, + { + "word": " show,", + "start": 3872.56, + "end": 3872.88, + "probability": 1.0 + }, + { + "word": " when", + "start": 3873.04, + "end": 3873.98, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 3873.98, + "end": 3874.24, + "probability": 1.0 + }, + { + "word": " doing", + "start": 3874.24, + "end": 3874.44, + "probability": 1.0 + }, + { + "word": " research", + "start": 3874.44, + "end": 3874.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 3874.82, + "end": 3875.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 3875.04, + "end": 3875.08, + "probability": 1.0 + }, + { + "word": " topic", + "start": 3875.08, + "end": 3875.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 3875.44, + "end": 3875.66, + "probability": 0.99658203125 + }, + { + "word": " that,", + "start": 3875.66, + "end": 3876.14, + "probability": 1.0 + }, + { + "word": " we're", + "start": 3876.18, + "end": 3876.28, + "probability": 1.0 + }, + { + "word": " going", + "start": 3876.28, + "end": 3876.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 3876.32, + "end": 3876.44, + "probability": 1.0 + }, + { + "word": " talk", + "start": 3876.44, + "end": 3876.58, + "probability": 1.0 + }, + { + "word": " about", + "start": 3876.58, + "end": 3876.76, + "probability": 1.0 + }, + { + "word": " on", + "start": 3876.76, + "end": 3876.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 3876.86, + "end": 3876.92, + "probability": 1.0 + }, + { + "word": " show.", + "start": 3876.92, + "end": 3877.08, + "probability": 1.0 + } + ] + }, + { + "id": 1482, + "text": "Like, for instance, I've got three articles on this one subject that we're going to maybe talk about in a little bit.", + "start": 3877.32, + "end": 3882.86, + "words": [ + { + "word": " Like,", + "start": 3877.32, + "end": 3877.76, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3877.8, + "end": 3877.88, + "probability": 1.0 + }, + { + "word": " instance,", + "start": 3877.88, + "end": 3878.06, + "probability": 1.0 + }, + { + "word": " I've", + "start": 3878.18, + "end": 3878.34, + "probability": 1.0 + }, + { + "word": " got", + "start": 3878.34, + "end": 3878.5, + "probability": 1.0 + }, + { + "word": " three", + "start": 3878.5, + "end": 3878.78, + "probability": 1.0 + }, + { + "word": " articles", + "start": 3878.78, + "end": 3879.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 3879.18, + "end": 3879.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 3879.4, + "end": 3879.54, + "probability": 1.0 + }, + { + "word": " one", + "start": 3879.54, + "end": 3879.76, + "probability": 1.0 + }, + { + "word": " subject", + "start": 3879.76, + "end": 3880.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3880.26, + "end": 3880.5, + "probability": 1.0 + }, + { + "word": " we're", + "start": 3880.5, + "end": 3880.8, + "probability": 1.0 + }, + { + "word": " going", + "start": 3880.8, + "end": 3881.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3881.22, + "end": 3881.42, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 3881.42, + "end": 3881.78, + "probability": 0.89453125 + }, + { + "word": " talk", + "start": 3881.78, + "end": 3882.08, + "probability": 1.0 + }, + { + "word": " about", + "start": 3882.08, + "end": 3882.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 3882.3, + "end": 3882.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 3882.44, + "end": 3882.48, + "probability": 1.0 + }, + { + "word": " little", + "start": 3882.48, + "end": 3882.62, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 3882.62, + "end": 3882.86, + "probability": 1.0 + } + ] + }, + { + "id": 1483, + "text": "And I'm checking each of those articles as we're doing the show to make sure that all the facts are straight.", + "start": 3882.9, + "end": 3887.8, + "words": [ + { + "word": " And", + "start": 3882.9, + "end": 3883.3, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 3883.3, + "end": 3883.56, + "probability": 1.0 + }, + { + "word": " checking", + "start": 3883.56, + "end": 3883.76, + "probability": 1.0 + }, + { + "word": " each", + "start": 3883.76, + "end": 3884.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 3884.02, + "end": 3884.22, + "probability": 1.0 + }, + { + "word": " those", + "start": 3884.22, + "end": 3884.4, + "probability": 1.0 + }, + { + "word": " articles", + "start": 3884.4, + "end": 3884.72, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3884.72, + "end": 3885.08, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 3885.08, + "end": 3885.3, + "probability": 1.0 + }, + { + "word": " doing", + "start": 3885.3, + "end": 3885.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 3885.62, + "end": 3885.82, + "probability": 1.0 + }, + { + "word": " show", + "start": 3885.82, + "end": 3886.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 3886.0, + "end": 3886.24, + "probability": 0.998046875 + }, + { + "word": " make", + "start": 3886.24, + "end": 3886.38, + "probability": 1.0 + }, + { + "word": " sure", + "start": 3886.38, + "end": 3886.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 3886.54, + "end": 3886.74, + "probability": 1.0 + }, + { + "word": " all", + "start": 3886.74, + "end": 3886.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3886.98, + "end": 3887.12, + "probability": 1.0 + }, + { + "word": " facts", + "start": 3887.12, + "end": 3887.34, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3887.34, + "end": 3887.54, + "probability": 0.99951171875 + }, + { + "word": " straight.", + "start": 3887.54, + "end": 3887.8, + "probability": 0.90966796875 + } + ] + }, + { + "id": 1484, + "text": "And that we're going to be giving accurate information.", + "start": 3887.8, + "end": 3889.52, + "words": [ + { + "word": " And", + "start": 3887.8, + "end": 3888.02, + "probability": 0.016571044921875 + }, + { + "word": " that", + "start": 3888.02, + "end": 3888.18, + "probability": 0.90966796875 + }, + { + "word": " we're", + "start": 3888.18, + "end": 3888.38, + "probability": 0.9921875 + }, + { + "word": " going", + "start": 3888.38, + "end": 3888.54, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 3888.54, + "end": 3888.64, + "probability": 0.96435546875 + }, + { + "word": " be", + "start": 3888.64, + "end": 3888.72, + "probability": 0.99609375 + }, + { + "word": " giving", + "start": 3888.72, + "end": 3888.88, + "probability": 0.94970703125 + }, + { + "word": " accurate", + "start": 3888.88, + "end": 3889.18, + "probability": 0.99560546875 + }, + { + "word": " information.", + "start": 3889.18, + "end": 3889.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1485, + "text": "You can't just go to one source and then be like, I know everything about the story now.", + "start": 3889.86, + "end": 3893.56, + "words": [ + { + "word": " You", + "start": 3889.86, + "end": 3890.26, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 3890.26, + "end": 3890.5, + "probability": 1.0 + }, + { + "word": " just", + "start": 3890.5, + "end": 3890.64, + "probability": 1.0 + }, + { + "word": " go", + "start": 3890.64, + "end": 3890.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 3890.78, + "end": 3890.9, + "probability": 1.0 + }, + { + "word": " one", + "start": 3890.9, + "end": 3891.04, + "probability": 1.0 + }, + { + "word": " source", + "start": 3891.04, + "end": 3891.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 3891.4, + "end": 3891.68, + "probability": 0.94580078125 + }, + { + "word": " then", + "start": 3891.68, + "end": 3891.8, + "probability": 0.98193359375 + }, + { + "word": " be", + "start": 3891.8, + "end": 3891.94, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 3891.94, + "end": 3892.1, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 3892.18, + "end": 3892.26, + "probability": 0.9970703125 + }, + { + "word": " know", + "start": 3892.26, + "end": 3892.38, + "probability": 1.0 + }, + { + "word": " everything", + "start": 3892.38, + "end": 3892.64, + "probability": 1.0 + }, + { + "word": " about", + "start": 3892.64, + "end": 3892.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 3892.88, + "end": 3893.0, + "probability": 0.03460693359375 + }, + { + "word": " story", + "start": 3893.0, + "end": 3893.28, + "probability": 1.0 + }, + { + "word": " now.", + "start": 3893.28, + "end": 3893.56, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1486, + "text": "Right.", + "start": 3893.94, + "end": 3894.34, + "words": [ + { + "word": " Right.", + "start": 3893.94, + "end": 3894.34, + "probability": 0.98828125 + } + ] + }, + { + "id": 1487, + "text": "And you almost have to make a last minute check to find out if something new didn't pop up.", + "start": 3894.4, + "end": 3898.38, + "words": [ + { + "word": " And", + "start": 3894.4, + "end": 3894.52, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3894.52, + "end": 3894.6, + "probability": 0.99951171875 + }, + { + "word": " almost", + "start": 3894.6, + "end": 3894.84, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3894.84, + "end": 3895.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3895.02, + "end": 3895.22, + "probability": 1.0 + }, + { + "word": " make", + "start": 3895.22, + "end": 3895.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 3895.4, + "end": 3895.54, + "probability": 1.0 + }, + { + "word": " last", + "start": 3895.54, + "end": 3895.9, + "probability": 0.998046875 + }, + { + "word": " minute", + "start": 3895.9, + "end": 3896.22, + "probability": 0.8173828125 + }, + { + "word": " check", + "start": 3896.22, + "end": 3896.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 3896.52, + "end": 3896.72, + "probability": 1.0 + }, + { + "word": " find", + "start": 3896.72, + "end": 3896.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 3896.96, + "end": 3897.12, + "probability": 1.0 + }, + { + "word": " if", + "start": 3897.12, + "end": 3897.22, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 3897.22, + "end": 3897.44, + "probability": 1.0 + }, + { + "word": " new", + "start": 3897.44, + "end": 3897.7, + "probability": 0.99462890625 + }, + { + "word": " didn't", + "start": 3897.7, + "end": 3897.96, + "probability": 0.998046875 + }, + { + "word": " pop", + "start": 3897.96, + "end": 3898.12, + "probability": 0.9541015625 + }, + { + "word": " up.", + "start": 3898.12, + "end": 3898.38, + "probability": 1.0 + } + ] + }, + { + "id": 1488, + "text": "Yeah, absolutely.", + "start": 3898.76, + "end": 3899.52, + "words": [ + { + "word": " Yeah,", + "start": 3898.76, + "end": 3899.16, + "probability": 0.97998046875 + }, + { + "word": " absolutely.", + "start": 3899.16, + "end": 3899.52, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1489, + "text": "Thank you.", + "start": 3899.72, + "end": 3900.5, + "words": [ + { + "word": " Thank", + "start": 3899.72, + "end": 3900.12, + "probability": 0.9130859375 + }, + { + "word": " you.", + "start": 3900.12, + "end": 3900.5, + "probability": 1.0 + } + ] + }, + { + "id": 1490, + "text": "I'll hang up and stop talking.", + "start": 3900.58, + "end": 3901.84, + "words": [ + { + "word": " I'll", + "start": 3900.58, + "end": 3900.7, + "probability": 0.9970703125 + }, + { + "word": " hang", + "start": 3900.7, + "end": 3900.96, + "probability": 1.0 + }, + { + "word": " up", + "start": 3900.96, + "end": 3901.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 3901.14, + "end": 3901.22, + "probability": 1.0 + }, + { + "word": " stop", + "start": 3901.22, + "end": 3901.44, + "probability": 0.99951171875 + }, + { + "word": " talking.", + "start": 3901.44, + "end": 3901.84, + "probability": 1.0 + } + ] + }, + { + "id": 1491, + "text": "Thanks for the call.", + "start": 3901.96, + "end": 3902.7, + "words": [ + { + "word": " Thanks", + "start": 3901.96, + "end": 3902.36, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 3902.36, + "end": 3902.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3902.5, + "end": 3902.56, + "probability": 1.0 + }, + { + "word": " call.", + "start": 3902.56, + "end": 3902.7, + "probability": 1.0 + } + ] + }, + { + "id": 1492, + "text": "Thanks for the call.", + "start": 3902.7, + "end": 3903.12, + "words": [ + { + "word": " Thanks", + "start": 3902.7, + "end": 3903.0, + "probability": 0.78369140625 + }, + { + "word": " for", + "start": 3903.0, + "end": 3903.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 3903.0, + "end": 3903.02, + "probability": 1.0 + }, + { + "word": " call.", + "start": 3903.02, + "end": 3903.12, + "probability": 1.0 + } + ] + }, + { + "id": 1493, + "text": "Yeah, there's there's a certain amount of I give out information on the show that is occasionally wrong.", + "start": 3903.56, + "end": 3908.9, + "words": [ + { + "word": " Yeah,", + "start": 3903.56, + "end": 3903.96, + "probability": 0.99658203125 + }, + { + "word": " there's", + "start": 3904.02, + "end": 3904.38, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 3904.38, + "end": 3904.8, + "probability": 0.59765625 + }, + { + "word": " a", + "start": 3904.8, + "end": 3904.9, + "probability": 1.0 + }, + { + "word": " certain", + "start": 3904.9, + "end": 3905.16, + "probability": 1.0 + }, + { + "word": " amount", + "start": 3905.16, + "end": 3905.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 3905.34, + "end": 3905.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 3905.56, + "end": 3905.84, + "probability": 0.52001953125 + }, + { + "word": " give", + "start": 3905.84, + "end": 3906.62, + "probability": 1.0 + }, + { + "word": " out", + "start": 3906.62, + "end": 3906.76, + "probability": 1.0 + }, + { + "word": " information", + "start": 3906.76, + "end": 3907.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 3907.12, + "end": 3907.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 3907.34, + "end": 3907.66, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 3907.66, + "end": 3907.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 3907.92, + "end": 3908.1, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 3908.1, + "end": 3908.22, + "probability": 1.0 + }, + { + "word": " occasionally", + "start": 3908.22, + "end": 3908.5, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 3908.5, + "end": 3908.9, + "probability": 1.0 + } + ] + }, + { + "id": 1494, + "text": "Right.", + "start": 3909.12, + "end": 3909.52, + "words": [ + { + "word": " Right.", + "start": 3909.12, + "end": 3909.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 1495, + "text": "Sometimes it's just my opinion that's wrong.", + "start": 3909.62, + "end": 3911.68, + "words": [ + { + "word": " Sometimes", + "start": 3909.62, + "end": 3910.02, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 3910.02, + "end": 3910.34, + "probability": 1.0 + }, + { + "word": " just", + "start": 3910.34, + "end": 3910.54, + "probability": 1.0 + }, + { + "word": " my", + "start": 3910.54, + "end": 3910.72, + "probability": 1.0 + }, + { + "word": " opinion", + "start": 3910.72, + "end": 3911.08, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3911.08, + "end": 3911.46, + "probability": 0.998046875 + }, + { + "word": " wrong.", + "start": 3911.46, + "end": 3911.68, + "probability": 1.0 + } + ] + }, + { + "id": 1496, + "text": "Sometimes the actual fact I give out is wrong.", + "start": 3911.78, + "end": 3914.06, + "words": [ + { + "word": " Sometimes", + "start": 3911.78, + "end": 3912.08, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 3912.08, + "end": 3912.44, + "probability": 1.0 + }, + { + "word": " actual", + "start": 3912.44, + "end": 3912.68, + "probability": 1.0 + }, + { + "word": " fact", + "start": 3912.68, + "end": 3913.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 3913.1, + "end": 3913.28, + "probability": 1.0 + }, + { + "word": " give", + "start": 3913.28, + "end": 3913.46, + "probability": 1.0 + }, + { + "word": " out", + "start": 3913.46, + "end": 3913.66, + "probability": 1.0 + }, + { + "word": " is", + "start": 3913.66, + "end": 3913.8, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 3913.8, + "end": 3914.06, + "probability": 1.0 + } + ] + }, + { + "id": 1497, + "text": "Right.", + "start": 3914.22, + "end": 3914.62, + "words": [ + { + "word": " Right.", + "start": 3914.22, + "end": 3914.62, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1498, + "text": "And it happens.", + "start": 3914.74, + "end": 3915.86, + "words": [ + { + "word": " And", + "start": 3914.74, + "end": 3915.14, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 3915.14, + "end": 3915.34, + "probability": 1.0 + }, + { + "word": " happens.", + "start": 3915.34, + "end": 3915.86, + "probability": 1.0 + } + ] + }, + { + "id": 1499, + "text": "Right.", + "start": 3916.28, + "end": 3916.68, + "words": [ + { + "word": " Right.", + "start": 3916.28, + "end": 3916.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1500, + "text": "Right.", + "start": 3916.72, + "end": 3916.86, + "words": [ + { + "word": " Right.", + "start": 3916.72, + "end": 3916.86, + "probability": 0.0014142990112304688 + } + ] + }, + { + "id": 1501, + "text": "Right.", + "start": 3916.86, + "end": 3916.9, + "words": [ + { + "word": " Right.", + "start": 3916.86, + "end": 3916.9, + "probability": 0.031494140625 + } + ] + }, + { + "id": 1502, + "text": "Right.", + "start": 3916.9, + "end": 3916.96, + "words": [ + { + "word": " Right.", + "start": 3916.9, + "end": 3916.96, + "probability": 0.34619140625 + } + ] + }, + { + "id": 1503, + "text": "Right.", + "start": 3916.96, + "end": 3917.1, + "words": [ + { + "word": " Right.", + "start": 3916.96, + "end": 3917.1, + "probability": 0.66552734375 + } + ] + }, + { + "id": 1504, + "text": "", + "start": 3917.2, + "end": 3917.2, + "words": [] + }, + { + "id": 1505, + "text": "Right.", + "start": 3917.22, + "end": 3917.32, + "words": [ + { + "word": " Right.", + "start": 3917.22, + "end": 3917.32, + "probability": 0.91015625 + } + ] + }, + { + "id": 1506, + "text": "Right.", + "start": 3917.38, + "end": 3917.78, + "words": [ + { + "word": " Right.", + "start": 3917.38, + "end": 3917.78, + "probability": 0.9453125 + } + ] + }, + { + "id": 1507, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1508, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1509, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1510, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1511, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1512, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1513, + "text": "", + "start": 3917.78, + "end": 3917.78, + "words": [] + }, + { + "id": 1514, + "text": "Right.", + "start": 3917.78, + "end": 3918.32, + "words": [ + { + "word": " Right.", + "start": 3917.78, + "end": 3918.48, + "probability": 0.0016756057739257812 + } + ] + }, + { + "id": 1515, + "text": "Right.", + "start": 3929.1, + "end": 3930.5, + "words": [ + { + "word": " Right.", + "start": 3929.1, + "end": 3930.5, + "probability": 0.3564453125 + } + ] + }, + { + "id": 1516, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1517, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1518, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1519, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1520, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1521, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1522, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1523, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1524, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1525, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1526, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1527, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1528, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1529, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1530, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1531, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1532, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1533, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1534, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1535, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1536, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1537, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1538, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1539, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1540, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1541, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1542, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1543, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1544, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1545, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1546, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1547, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1548, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1549, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1550, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1551, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1552, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1553, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1554, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1555, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1556, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1557, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1558, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1559, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1560, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1561, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1562, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1563, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1564, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1565, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1566, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1567, + "text": "", + "start": 3930.5, + "end": 3930.5, + "words": [] + }, + { + "id": 1568, + "text": "So occasionally I get something wrong, or sometimes I misinterpret the question or whatever,", + "start": 3930.5, + "end": 3937.0, + "words": [ + { + "word": " So", + "start": 3930.5, + "end": 3930.6, + "probability": 0.978515625 + }, + { + "word": " occasionally", + "start": 3930.6, + "end": 3931.4, + "probability": 0.9306640625 + }, + { + "word": " I", + "start": 3931.4, + "end": 3931.62, + "probability": 0.9501953125 + }, + { + "word": " get", + "start": 3931.62, + "end": 3931.72, + "probability": 1.0 + }, + { + "word": " something", + "start": 3931.72, + "end": 3931.88, + "probability": 1.0 + }, + { + "word": " wrong,", + "start": 3931.88, + "end": 3932.12, + "probability": 1.0 + }, + { + "word": " or", + "start": 3932.28, + "end": 3933.02, + "probability": 0.9931640625 + }, + { + "word": " sometimes", + "start": 3933.02, + "end": 3933.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 3933.86, + "end": 3934.24, + "probability": 1.0 + }, + { + "word": " misinterpret", + "start": 3934.24, + "end": 3935.54, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3935.54, + "end": 3935.8, + "probability": 1.0 + }, + { + "word": " question", + "start": 3935.8, + "end": 3936.08, + "probability": 1.0 + }, + { + "word": " or", + "start": 3936.08, + "end": 3936.5, + "probability": 0.9033203125 + }, + { + "word": " whatever,", + "start": 3936.5, + "end": 3937.0, + "probability": 1.0 + } + ] + }, + { + "id": 1569, + "text": "and I feel bad about this every time that that happens.", + "start": 3937.2, + "end": 3939.44, + "words": [ + { + "word": " and", + "start": 3937.2, + "end": 3937.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 3937.52, + "end": 3937.62, + "probability": 1.0 + }, + { + "word": " feel", + "start": 3937.62, + "end": 3937.78, + "probability": 1.0 + }, + { + "word": " bad", + "start": 3937.78, + "end": 3937.98, + "probability": 1.0 + }, + { + "word": " about", + "start": 3937.98, + "end": 3938.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 3938.22, + "end": 3938.42, + "probability": 0.95703125 + }, + { + "word": " every", + "start": 3938.42, + "end": 3938.6, + "probability": 0.99853515625 + }, + { + "word": " time", + "start": 3938.6, + "end": 3938.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 3938.8, + "end": 3938.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 3938.94, + "end": 3939.06, + "probability": 0.9951171875 + }, + { + "word": " happens.", + "start": 3939.06, + "end": 3939.44, + "probability": 1.0 + } + ] + }, + { + "id": 1570, + "text": "But there are people out there that are willing to put misinformation into the world,", + "start": 3940.1, + "end": 3944.58, + "words": [ + { + "word": " But", + "start": 3940.1, + "end": 3940.62, + "probability": 1.0 + }, + { + "word": " there", + "start": 3940.62, + "end": 3940.8, + "probability": 1.0 + }, + { + "word": " are", + "start": 3940.8, + "end": 3940.92, + "probability": 1.0 + }, + { + "word": " people", + "start": 3940.92, + "end": 3941.12, + "probability": 1.0 + }, + { + "word": " out", + "start": 3941.12, + "end": 3941.38, + "probability": 1.0 + }, + { + "word": " there", + "start": 3941.38, + "end": 3941.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 3941.58, + "end": 3941.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 3941.82, + "end": 3941.92, + "probability": 1.0 + }, + { + "word": " willing", + "start": 3941.92, + "end": 3942.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 3942.12, + "end": 3942.34, + "probability": 1.0 + }, + { + "word": " put", + "start": 3942.34, + "end": 3942.6, + "probability": 1.0 + }, + { + "word": " misinformation", + "start": 3942.6, + "end": 3943.58, + "probability": 1.0 + }, + { + "word": " into", + "start": 3943.58, + "end": 3944.16, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3944.16, + "end": 3944.28, + "probability": 1.0 + }, + { + "word": " world,", + "start": 3944.28, + "end": 3944.58, + "probability": 1.0 + } + ] + }, + { + "id": 1571, + "text": "and the bigger problem for me isn't necessarily even the journalistic integrity.", + "start": 3944.64, + "end": 3951.44, + "words": [ + { + "word": " and", + "start": 3944.64, + "end": 3945.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 3945.26, + "end": 3946.84, + "probability": 1.0 + }, + { + "word": " bigger", + "start": 3946.84, + "end": 3947.66, + "probability": 1.0 + }, + { + "word": " problem", + "start": 3947.66, + "end": 3948.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 3948.16, + "end": 3948.44, + "probability": 1.0 + }, + { + "word": " me", + "start": 3948.44, + "end": 3948.66, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 3948.66, + "end": 3949.22, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 3949.22, + "end": 3949.7, + "probability": 1.0 + }, + { + "word": " even", + "start": 3949.7, + "end": 3950.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3950.26, + "end": 3950.6, + "probability": 1.0 + }, + { + "word": " journalistic", + "start": 3950.6, + "end": 3951.06, + "probability": 1.0 + }, + { + "word": " integrity.", + "start": 3951.06, + "end": 3951.44, + "probability": 1.0 + } + ] + }, + { + "id": 1572, + "text": "It's the idea that because someone doesn't like another idea that they have the right to censor it,", + "start": 3952.06, + "end": 3959.82, + "words": [ + { + "word": " It's", + "start": 3952.06, + "end": 3952.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3952.58, + "end": 3952.8, + "probability": 1.0 + }, + { + "word": " idea", + "start": 3952.8, + "end": 3953.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 3953.56, + "end": 3954.7, + "probability": 1.0 + }, + { + "word": " because", + "start": 3954.7, + "end": 3955.12, + "probability": 0.99951171875 + }, + { + "word": " someone", + "start": 3955.12, + "end": 3955.58, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 3955.58, + "end": 3956.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 3956.02, + "end": 3956.42, + "probability": 1.0 + }, + { + "word": " another", + "start": 3956.42, + "end": 3957.02, + "probability": 1.0 + }, + { + "word": " idea", + "start": 3957.02, + "end": 3957.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 3957.68, + "end": 3958.46, + "probability": 0.6923828125 + }, + { + "word": " they", + "start": 3958.46, + "end": 3958.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 3958.62, + "end": 3958.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3958.8, + "end": 3958.94, + "probability": 1.0 + }, + { + "word": " right", + "start": 3958.94, + "end": 3959.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 3959.12, + "end": 3959.3, + "probability": 1.0 + }, + { + "word": " censor", + "start": 3959.3, + "end": 3959.64, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3959.64, + "end": 3959.82, + "probability": 1.0 + } + ] + }, + { + "id": 1573, + "text": "and I think it's completely antithetical to the First Amendment.", + "start": 3959.82, + "end": 3963.52, + "words": [ + { + "word": " and", + "start": 3959.82, + "end": 3960.42, + "probability": 0.1383056640625 + }, + { + "word": " I", + "start": 3960.42, + "end": 3961.12, + "probability": 0.81201171875 + }, + { + "word": " think", + "start": 3961.12, + "end": 3961.64, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 3961.64, + "end": 3961.76, + "probability": 0.998046875 + }, + { + "word": " completely", + "start": 3961.76, + "end": 3962.08, + "probability": 0.99951171875 + }, + { + "word": " antithetical", + "start": 3962.08, + "end": 3962.72, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 3962.72, + "end": 3962.92, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3962.92, + "end": 3963.0, + "probability": 0.99951171875 + }, + { + "word": " First", + "start": 3963.0, + "end": 3963.16, + "probability": 0.83349609375 + }, + { + "word": " Amendment.", + "start": 3963.16, + "end": 3963.52, + "probability": 1.0 + } + ] + }, + { + "id": 1574, + "text": "It goes against the idea that we have a protection of speech in this country,", + "start": 3964.2000000000003, + "end": 3968.92, + "words": [ + { + "word": " It", + "start": 3964.0, + "end": 3964.32, + "probability": 0.99755859375 + }, + { + "word": " goes", + "start": 3964.32, + "end": 3964.66, + "probability": 1.0 + }, + { + "word": " against", + "start": 3964.66, + "end": 3965.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 3965.02, + "end": 3965.36, + "probability": 1.0 + }, + { + "word": " idea", + "start": 3965.36, + "end": 3966.24, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 3966.24, + "end": 3966.66, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 3966.66, + "end": 3966.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 3966.82, + "end": 3967.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 3967.18, + "end": 3967.44, + "probability": 0.99951171875 + }, + { + "word": " protection", + "start": 3967.44, + "end": 3967.78, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3967.78, + "end": 3968.06, + "probability": 1.0 + }, + { + "word": " speech", + "start": 3968.06, + "end": 3968.28, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3968.28, + "end": 3968.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 3968.48, + "end": 3968.62, + "probability": 1.0 + }, + { + "word": " country,", + "start": 3968.62, + "end": 3968.92, + "probability": 1.0 + } + ] + }, + { + "id": 1575, + "text": "and at what point does your outrage, your ability to be offended,", + "start": 3969.04, + "end": 3976.7, + "words": [ + { + "word": " and", + "start": 3969.04, + "end": 3969.32, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3969.32, + "end": 3970.44, + "probability": 0.9912109375 + }, + { + "word": " what", + "start": 3970.44, + "end": 3971.16, + "probability": 1.0 + }, + { + "word": " point", + "start": 3971.16, + "end": 3971.56, + "probability": 1.0 + }, + { + "word": " does", + "start": 3971.56, + "end": 3971.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 3971.9, + "end": 3972.58, + "probability": 1.0 + }, + { + "word": " outrage,", + "start": 3972.58, + "end": 3974.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 3974.16, + "end": 3974.52, + "probability": 1.0 + }, + { + "word": " ability", + "start": 3974.52, + "end": 3975.44, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 3975.44, + "end": 3976.04, + "probability": 1.0 + }, + { + "word": " be", + "start": 3976.04, + "end": 3976.18, + "probability": 1.0 + }, + { + "word": " offended,", + "start": 3976.18, + "end": 3976.7, + "probability": 1.0 + } + ] + }, + { + "id": 1576, + "text": "outweigh my constitutional right to say whatever it is that I feel, or any other human for that matter?", + "start": 3976.84, + "end": 3983.92, + "words": [ + { + "word": " outweigh", + "start": 3976.84, + "end": 3977.36, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 3977.36, + "end": 3977.62, + "probability": 0.9990234375 + }, + { + "word": " constitutional", + "start": 3977.62, + "end": 3978.42, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3978.42, + "end": 3979.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3979.08, + "end": 3979.92, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 3979.92, + "end": 3980.16, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 3980.16, + "end": 3980.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 3980.6, + "end": 3980.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 3980.88, + "end": 3981.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 3981.02, + "end": 3981.22, + "probability": 1.0 + }, + { + "word": " I", + "start": 3981.22, + "end": 3981.34, + "probability": 1.0 + }, + { + "word": " feel,", + "start": 3981.34, + "end": 3981.64, + "probability": 1.0 + }, + { + "word": " or", + "start": 3981.78, + "end": 3982.26, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 3982.26, + "end": 3982.52, + "probability": 1.0 + }, + { + "word": " other", + "start": 3982.52, + "end": 3982.8, + "probability": 1.0 + }, + { + "word": " human", + "start": 3982.8, + "end": 3983.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 3983.1, + "end": 3983.34, + "probability": 0.77978515625 + }, + { + "word": " that", + "start": 3983.34, + "end": 3983.52, + "probability": 1.0 + }, + { + "word": " matter?", + "start": 3983.52, + "end": 3983.92, + "probability": 1.0 + } + ] + }, + { + "id": 1577, + "text": "We don't have the right to silence someone because we disagree with them,", + "start": 3984.4, + "end": 3988.56, + "words": [ + { + "word": " We", + "start": 3984.4, + "end": 3985.04, + "probability": 0.7021484375 + }, + { + "word": " don't", + "start": 3985.04, + "end": 3985.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 3985.64, + "end": 3985.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3985.8, + "end": 3985.94, + "probability": 1.0 + }, + { + "word": " right", + "start": 3985.94, + "end": 3986.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 3986.16, + "end": 3986.38, + "probability": 1.0 + }, + { + "word": " silence", + "start": 3986.38, + "end": 3986.8, + "probability": 0.9990234375 + }, + { + "word": " someone", + "start": 3986.8, + "end": 3987.2, + "probability": 1.0 + }, + { + "word": " because", + "start": 3987.2, + "end": 3987.6, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 3987.6, + "end": 3987.8, + "probability": 1.0 + }, + { + "word": " disagree", + "start": 3987.8, + "end": 3988.04, + "probability": 1.0 + }, + { + "word": " with", + "start": 3988.04, + "end": 3988.34, + "probability": 1.0 + }, + { + "word": " them,", + "start": 3988.34, + "end": 3988.56, + "probability": 1.0 + } + ] + }, + { + "id": 1578, + "text": "because if they're not going to be able to say what they want to say,", + "start": 3988.64, + "end": 3989.8, + "words": [ + { + "word": " because", + "start": 3988.64, + "end": 3989.02, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 3989.02, + "end": 3989.38, + "probability": 0.99560546875 + }, + { + "word": " they're", + "start": 3989.38, + "end": 3989.8, + "probability": 0.51611328125 + }, + { + "word": " not", + "start": 3989.8, + "end": 3989.8, + "probability": 0.1644287109375 + }, + { + "word": " going", + "start": 3989.8, + "end": 3989.8, + "probability": 0.08477783203125 + }, + { + "word": " to", + "start": 3989.8, + "end": 3989.8, + "probability": 0.99609375 + }, + { + "word": " be", + "start": 3989.8, + "end": 3989.8, + "probability": 0.177490234375 + }, + { + "word": " able", + "start": 3989.8, + "end": 3989.8, + "probability": 0.261474609375 + }, + { + "word": " to", + "start": 3989.8, + "end": 3989.8, + "probability": 0.998046875 + }, + { + "word": " say", + "start": 3989.8, + "end": 3989.8, + "probability": 0.280517578125 + }, + { + "word": " what", + "start": 3989.8, + "end": 3989.8, + "probability": 0.37109375 + }, + { + "word": " they", + "start": 3989.8, + "end": 3989.8, + "probability": 0.87353515625 + }, + { + "word": " want", + "start": 3989.8, + "end": 3989.8, + "probability": 0.5615234375 + }, + { + "word": " to", + "start": 3989.8, + "end": 3989.8, + "probability": 0.640625 + }, + { + "word": " say,", + "start": 3989.8, + "end": 3989.8, + "probability": 0.94091796875 + } + ] + }, + { + "id": 1579, + "text": "", + "start": 3989.8, + "end": 3989.8, + "words": [] + }, + { + "id": 1580, + "text": "", + "start": 3989.8, + "end": 3989.8, + "words": [] + }, + { + "id": 1581, + "text": "", + "start": 3989.8, + "end": 3989.8, + "words": [] + }, + { + "id": 1582, + "text": "if that's the case, you should just go to a regular college these days.", + "start": 3989.8, + "end": 3992.68, + "words": [ + { + "word": " if", + "start": 3989.8, + "end": 3989.8, + "probability": 0.0615234375 + }, + { + "word": " that's", + "start": 3989.8, + "end": 3989.98, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3989.98, + "end": 3990.08, + "probability": 0.99951171875 + }, + { + "word": " case,", + "start": 3990.08, + "end": 3990.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 3990.48, + "end": 3990.54, + "probability": 0.9970703125 + }, + { + "word": " should", + "start": 3990.54, + "end": 3990.76, + "probability": 0.60986328125 + }, + { + "word": " just", + "start": 3990.76, + "end": 3991.16, + "probability": 0.9970703125 + }, + { + "word": " go", + "start": 3991.16, + "end": 3991.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 3991.36, + "end": 3991.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 3991.44, + "end": 3991.54, + "probability": 1.0 + }, + { + "word": " regular", + "start": 3991.54, + "end": 3991.78, + "probability": 1.0 + }, + { + "word": " college", + "start": 3991.78, + "end": 3992.2, + "probability": 1.0 + }, + { + "word": " these", + "start": 3992.2, + "end": 3992.42, + "probability": 0.9990234375 + }, + { + "word": " days.", + "start": 3992.42, + "end": 3992.68, + "probability": 1.0 + } + ] + }, + { + "id": 1583, + "text": "And not to mention that everyone disagrees with everyone on everything anyway.", + "start": 3992.9, + "end": 3996.46, + "words": [ + { + "word": " And", + "start": 3992.9, + "end": 3993.02, + "probability": 0.86962890625 + }, + { + "word": " not", + "start": 3993.02, + "end": 3993.44, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3993.44, + "end": 3993.56, + "probability": 1.0 + }, + { + "word": " mention", + "start": 3993.56, + "end": 3993.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 3993.8, + "end": 3994.04, + "probability": 0.9990234375 + }, + { + "word": " everyone", + "start": 3994.04, + "end": 3994.6, + "probability": 0.99853515625 + }, + { + "word": " disagrees", + "start": 3994.6, + "end": 3995.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 3995.16, + "end": 3995.32, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 3995.32, + "end": 3995.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 3995.58, + "end": 3995.8, + "probability": 0.994140625 + }, + { + "word": " everything", + "start": 3995.8, + "end": 3996.06, + "probability": 0.99951171875 + }, + { + "word": " anyway.", + "start": 3996.06, + "end": 3996.46, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1584, + "text": "Right.", + "start": 3996.78, + "end": 3997.16, + "words": [ + { + "word": " Right.", + "start": 3996.78, + "end": 3997.16, + "probability": 0.65576171875 + } + ] + }, + { + "id": 1585, + "text": "There will always be some guy sitting there listening to us right now going,", + "start": 3997.26, + "end": 4000.88, + "words": [ + { + "word": " There", + "start": 3997.26, + "end": 3997.34, + "probability": 0.82470703125 + }, + { + "word": " will", + "start": 3997.34, + "end": 3997.46, + "probability": 0.9990234375 + }, + { + "word": " always", + "start": 3997.46, + "end": 3997.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 3997.78, + "end": 3998.0, + "probability": 1.0 + }, + { + "word": " some", + "start": 3998.0, + "end": 3998.16, + "probability": 0.7978515625 + }, + { + "word": " guy", + "start": 3998.16, + "end": 3998.86, + "probability": 0.921875 + }, + { + "word": " sitting", + "start": 3998.86, + "end": 3999.6, + "probability": 0.99560546875 + }, + { + "word": " there", + "start": 3999.6, + "end": 3999.86, + "probability": 1.0 + }, + { + "word": " listening", + "start": 3999.86, + "end": 4000.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 4000.08, + "end": 4000.24, + "probability": 1.0 + }, + { + "word": " us", + "start": 4000.24, + "end": 4000.38, + "probability": 1.0 + }, + { + "word": " right", + "start": 4000.38, + "end": 4000.54, + "probability": 1.0 + }, + { + "word": " now", + "start": 4000.54, + "end": 4000.7, + "probability": 1.0 + }, + { + "word": " going,", + "start": 4000.7, + "end": 4000.88, + "probability": 0.978515625 + } + ] + }, + { + "id": 1586, + "text": "these guys are totally wrong.", + "start": 4001.06, + "end": 4002.46, + "words": [ + { + "word": " these", + "start": 4001.06, + "end": 4001.7, + "probability": 0.98046875 + }, + { + "word": " guys", + "start": 4001.7, + "end": 4001.9, + "probability": 1.0 + }, + { + "word": " are", + "start": 4001.9, + "end": 4002.0, + "probability": 1.0 + }, + { + "word": " totally", + "start": 4002.0, + "end": 4002.22, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 4002.22, + "end": 4002.46, + "probability": 1.0 + } + ] + }, + { + "id": 1587, + "text": "Right, and there's another part of this that is very much involved with technology.", + "start": 4002.7, + "end": 4006.84, + "words": [ + { + "word": " Right,", + "start": 4002.7, + "end": 4002.98, + "probability": 0.9853515625 + }, + { + "word": " and", + "start": 4002.98, + "end": 4003.1, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4003.1, + "end": 4003.84, + "probability": 1.0 + }, + { + "word": " another", + "start": 4003.84, + "end": 4004.14, + "probability": 1.0 + }, + { + "word": " part", + "start": 4004.14, + "end": 4004.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 4004.4, + "end": 4004.52, + "probability": 1.0 + }, + { + "word": " this", + "start": 4004.52, + "end": 4004.66, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4004.66, + "end": 4004.84, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4004.84, + "end": 4005.12, + "probability": 1.0 + }, + { + "word": " very", + "start": 4005.12, + "end": 4005.52, + "probability": 1.0 + }, + { + "word": " much", + "start": 4005.52, + "end": 4005.84, + "probability": 1.0 + }, + { + "word": " involved", + "start": 4005.84, + "end": 4006.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 4006.1, + "end": 4006.5, + "probability": 1.0 + }, + { + "word": " technology.", + "start": 4006.5, + "end": 4006.84, + "probability": 1.0 + } + ] + }, + { + "id": 1588, + "text": "I think that if you were to go back 50 years and wonder,", + "start": 4007.5, + "end": 4011.22, + "words": [ + { + "word": " I", + "start": 4007.5, + "end": 4007.98, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 4007.98, + "end": 4008.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 4008.26, + "end": 4008.36, + "probability": 1.0 + }, + { + "word": " if", + "start": 4008.36, + "end": 4008.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 4008.56, + "end": 4008.72, + "probability": 1.0 + }, + { + "word": " were", + "start": 4008.72, + "end": 4008.84, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4008.84, + "end": 4009.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 4009.1, + "end": 4009.36, + "probability": 0.955078125 + }, + { + "word": " back", + "start": 4009.36, + "end": 4009.84, + "probability": 1.0 + }, + { + "word": " 50", + "start": 4009.84, + "end": 4010.2, + "probability": 1.0 + }, + { + "word": " years", + "start": 4010.2, + "end": 4010.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 4010.6, + "end": 4010.98, + "probability": 0.9873046875 + }, + { + "word": " wonder,", + "start": 4010.98, + "end": 4011.22, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1589, + "text": "well, why didn't we have these types of safe spaces and all of this craziness that's out there", + "start": 4011.32, + "end": 4018.16, + "words": [ + { + "word": " well,", + "start": 4011.32, + "end": 4011.42, + "probability": 0.9873046875 + }, + { + "word": " why", + "start": 4011.42, + "end": 4011.54, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 4011.54, + "end": 4011.78, + "probability": 1.0 + }, + { + "word": " we", + "start": 4011.78, + "end": 4011.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 4011.9, + "end": 4012.06, + "probability": 1.0 + }, + { + "word": " these", + "start": 4012.06, + "end": 4012.3, + "probability": 1.0 + }, + { + "word": " types", + "start": 4012.3, + "end": 4012.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 4012.6, + "end": 4012.98, + "probability": 1.0 + }, + { + "word": " safe", + "start": 4012.98, + "end": 4014.14, + "probability": 0.94482421875 + }, + { + "word": " spaces", + "start": 4014.14, + "end": 4014.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 4014.56, + "end": 4015.32, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 4015.32, + "end": 4016.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 4016.52, + "end": 4016.68, + "probability": 1.0 + }, + { + "word": " this", + "start": 4016.68, + "end": 4016.82, + "probability": 1.0 + }, + { + "word": " craziness", + "start": 4016.82, + "end": 4017.42, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4017.42, + "end": 4017.76, + "probability": 1.0 + }, + { + "word": " out", + "start": 4017.76, + "end": 4017.9, + "probability": 1.0 + }, + { + "word": " there", + "start": 4017.9, + "end": 4018.16, + "probability": 1.0 + } + ] + }, + { + "id": 1590, + "text": "as far as...", + "start": 4018.16, + "end": 4019.06, + "words": [ + { + "word": " as", + "start": 4018.16, + "end": 4018.46, + "probability": 0.9931640625 + }, + { + "word": " far", + "start": 4018.46, + "end": 4018.68, + "probability": 1.0 + }, + { + "word": " as...", + "start": 4018.68, + "end": 4019.06, + "probability": 0.52783203125 + } + ] + }, + { + "id": 1591, + "text": "people not getting along and wanting to censor each other.", + "start": 4019.96, + "end": 4022.92, + "words": [ + { + "word": " people", + "start": 4019.96, + "end": 4020.52, + "probability": 0.86376953125 + }, + { + "word": " not", + "start": 4020.52, + "end": 4020.86, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 4020.86, + "end": 4021.22, + "probability": 1.0 + }, + { + "word": " along", + "start": 4021.22, + "end": 4021.5, + "probability": 0.97998046875 + }, + { + "word": " and", + "start": 4021.5, + "end": 4021.7, + "probability": 0.97998046875 + }, + { + "word": " wanting", + "start": 4021.7, + "end": 4021.92, + "probability": 0.9921875 + }, + { + "word": " to", + "start": 4021.92, + "end": 4022.04, + "probability": 1.0 + }, + { + "word": " censor", + "start": 4022.04, + "end": 4022.46, + "probability": 0.9990234375 + }, + { + "word": " each", + "start": 4022.46, + "end": 4022.62, + "probability": 1.0 + }, + { + "word": " other.", + "start": 4022.62, + "end": 4022.92, + "probability": 1.0 + } + ] + }, + { + "id": 1592, + "text": "If you were to look back 50 years ago, you didn't have the mashup of ideas that you have now.", + "start": 4022.98, + "end": 4030.22, + "words": [ + { + "word": " If", + "start": 4022.98, + "end": 4023.46, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4023.46, + "end": 4023.62, + "probability": 1.0 + }, + { + "word": " were", + "start": 4023.62, + "end": 4023.68, + "probability": 0.9814453125 + }, + { + "word": " to", + "start": 4023.68, + "end": 4023.76, + "probability": 1.0 + }, + { + "word": " look", + "start": 4023.76, + "end": 4023.88, + "probability": 1.0 + }, + { + "word": " back", + "start": 4023.88, + "end": 4024.06, + "probability": 1.0 + }, + { + "word": " 50", + "start": 4024.06, + "end": 4024.28, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 4024.28, + "end": 4024.5, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 4024.5, + "end": 4024.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 4024.94, + "end": 4025.62, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 4025.62, + "end": 4025.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 4025.96, + "end": 4026.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 4026.34, + "end": 4026.84, + "probability": 1.0 + }, + { + "word": " mashup", + "start": 4026.84, + "end": 4028.06, + "probability": 0.94140625 + }, + { + "word": " of", + "start": 4028.06, + "end": 4028.3, + "probability": 1.0 + }, + { + "word": " ideas", + "start": 4028.3, + "end": 4028.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 4028.86, + "end": 4029.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 4029.38, + "end": 4029.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 4029.56, + "end": 4029.84, + "probability": 1.0 + }, + { + "word": " now.", + "start": 4029.84, + "end": 4030.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1593, + "text": "You didn't have billions of people just on the other end of your screen", + "start": 4030.38, + "end": 4035.86, + "words": [ + { + "word": " You", + "start": 4030.38, + "end": 4030.58, + "probability": 0.99951171875 + }, + { + "word": " didn't", + "start": 4030.58, + "end": 4030.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 4030.86, + "end": 4031.14, + "probability": 1.0 + }, + { + "word": " billions", + "start": 4031.14, + "end": 4032.42, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4032.42, + "end": 4032.8, + "probability": 1.0 + }, + { + "word": " people", + "start": 4032.8, + "end": 4033.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 4033.26, + "end": 4034.28, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 4034.28, + "end": 4034.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4034.48, + "end": 4034.6, + "probability": 1.0 + }, + { + "word": " other", + "start": 4034.6, + "end": 4034.8, + "probability": 1.0 + }, + { + "word": " end", + "start": 4034.8, + "end": 4035.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 4035.04, + "end": 4035.2, + "probability": 1.0 + }, + { + "word": " your", + "start": 4035.2, + "end": 4035.38, + "probability": 1.0 + }, + { + "word": " screen", + "start": 4035.38, + "end": 4035.86, + "probability": 1.0 + } + ] + }, + { + "id": 1594, + "text": "that could all communicate directly with one another in mass.", + "start": 4035.86, + "end": 4040.64, + "words": [ + { + "word": " that", + "start": 4035.86, + "end": 4036.78, + "probability": 0.99755859375 + }, + { + "word": " could", + "start": 4036.78, + "end": 4036.96, + "probability": 1.0 + }, + { + "word": " all", + "start": 4036.96, + "end": 4037.24, + "probability": 1.0 + }, + { + "word": " communicate", + "start": 4037.24, + "end": 4037.66, + "probability": 1.0 + }, + { + "word": " directly", + "start": 4037.66, + "end": 4038.14, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4038.14, + "end": 4038.52, + "probability": 1.0 + }, + { + "word": " one", + "start": 4038.52, + "end": 4038.66, + "probability": 1.0 + }, + { + "word": " another", + "start": 4038.66, + "end": 4039.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 4039.0, + "end": 4039.88, + "probability": 0.7216796875 + }, + { + "word": " mass.", + "start": 4039.88, + "end": 4040.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1595, + "text": "Before it was like you had a local newspaper, maybe one TV channel", + "start": 4041.08, + "end": 4044.78, + "words": [ + { + "word": " Before", + "start": 4041.08, + "end": 4041.64, + "probability": 0.974609375 + }, + { + "word": " it", + "start": 4041.64, + "end": 4041.92, + "probability": 0.52734375 + }, + { + "word": " was", + "start": 4041.92, + "end": 4042.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 4042.06, + "end": 4042.24, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4042.24, + "end": 4042.36, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 4042.36, + "end": 4042.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 4042.4, + "end": 4042.52, + "probability": 1.0 + }, + { + "word": " local", + "start": 4042.52, + "end": 4042.7, + "probability": 1.0 + }, + { + "word": " newspaper,", + "start": 4042.7, + "end": 4043.14, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 4043.32, + "end": 4043.46, + "probability": 0.998046875 + }, + { + "word": " one", + "start": 4043.46, + "end": 4043.8, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4043.8, + "end": 4044.32, + "probability": 1.0 + }, + { + "word": " channel", + "start": 4044.32, + "end": 4044.78, + "probability": 1.0 + } + ] + }, + { + "id": 1596, + "text": "that might have told you something interesting.", + "start": 4044.78, + "end": 4047.4, + "words": [ + { + "word": " that", + "start": 4044.78, + "end": 4045.5, + "probability": 0.91943359375 + }, + { + "word": " might", + "start": 4045.5, + "end": 4045.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 4045.9, + "end": 4046.18, + "probability": 1.0 + }, + { + "word": " told", + "start": 4046.18, + "end": 4046.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 4046.42, + "end": 4046.62, + "probability": 1.0 + }, + { + "word": " something", + "start": 4046.62, + "end": 4046.84, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 4046.84, + "end": 4047.4, + "probability": 1.0 + } + ] + }, + { + "id": 1597, + "text": "But now you have the entire...", + "start": 4048.4, + "end": 4049.78, + "words": [ + { + "word": " But", + "start": 4048.16, + "end": 4048.44, + "probability": 0.986328125 + }, + { + "word": " now", + "start": 4048.44, + "end": 4048.72, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4048.72, + "end": 4049.04, + "probability": 0.97705078125 + }, + { + "word": " have", + "start": 4049.04, + "end": 4049.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4049.28, + "end": 4049.46, + "probability": 0.99853515625 + }, + { + "word": " entire...", + "start": 4049.46, + "end": 4049.78, + "probability": 0.58349609375 + } + ] + }, + { + "id": 1598, + "text": "You have the entire world at your fingertips.", + "start": 4049.8, + "end": 4050.88, + "words": [ + { + "word": " You", + "start": 4049.8, + "end": 4049.94, + "probability": 0.035369873046875 + }, + { + "word": " have", + "start": 4049.94, + "end": 4049.94, + "probability": 0.916015625 + }, + { + "word": " the", + "start": 4049.94, + "end": 4049.94, + "probability": 0.1805419921875 + }, + { + "word": " entire", + "start": 4049.94, + "end": 4049.94, + "probability": 0.9951171875 + }, + { + "word": " world", + "start": 4049.94, + "end": 4050.16, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 4050.16, + "end": 4050.36, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 4050.36, + "end": 4050.48, + "probability": 0.99951171875 + }, + { + "word": " fingertips.", + "start": 4050.48, + "end": 4050.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1599, + "text": "You have everything in front of you and there's way more to disagree with.", + "start": 4051.06, + "end": 4055.0, + "words": [ + { + "word": " You", + "start": 4051.06, + "end": 4051.18, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 4051.18, + "end": 4051.42, + "probability": 0.99951171875 + }, + { + "word": " everything", + "start": 4051.42, + "end": 4052.14, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 4052.14, + "end": 4052.64, + "probability": 0.99951171875 + }, + { + "word": " front", + "start": 4052.64, + "end": 4052.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4052.86, + "end": 4052.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 4052.98, + "end": 4053.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 4053.16, + "end": 4053.32, + "probability": 0.304443359375 + }, + { + "word": " there's", + "start": 4053.32, + "end": 4053.52, + "probability": 0.99072265625 + }, + { + "word": " way", + "start": 4053.52, + "end": 4053.88, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 4053.88, + "end": 4054.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 4054.16, + "end": 4054.36, + "probability": 1.0 + }, + { + "word": " disagree", + "start": 4054.36, + "end": 4054.66, + "probability": 0.99951171875 + }, + { + "word": " with.", + "start": 4054.66, + "end": 4055.0, + "probability": 1.0 + } + ] + }, + { + "id": 1600, + "text": "Ultimately, I think that the only real reason anyone would have to censor another idea", + "start": 4055.42, + "end": 4059.96, + "words": [ + { + "word": " Ultimately,", + "start": 4055.42, + "end": 4055.82, + "probability": 0.978515625 + }, + { + "word": " I", + "start": 4055.96, + "end": 4056.26, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 4056.26, + "end": 4056.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 4056.52, + "end": 4056.62, + "probability": 0.98876953125 + }, + { + "word": " the", + "start": 4056.62, + "end": 4056.72, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 4056.72, + "end": 4056.96, + "probability": 1.0 + }, + { + "word": " real", + "start": 4056.96, + "end": 4057.32, + "probability": 0.9990234375 + }, + { + "word": " reason", + "start": 4057.32, + "end": 4057.7, + "probability": 1.0 + }, + { + "word": " anyone", + "start": 4057.7, + "end": 4058.06, + "probability": 0.998046875 + }, + { + "word": " would", + "start": 4058.06, + "end": 4058.3, + "probability": 1.0 + }, + { + "word": " have", + "start": 4058.3, + "end": 4058.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 4058.54, + "end": 4058.84, + "probability": 0.99951171875 + }, + { + "word": " censor", + "start": 4058.84, + "end": 4059.3, + "probability": 0.9990234375 + }, + { + "word": " another", + "start": 4059.3, + "end": 4059.5, + "probability": 0.99951171875 + }, + { + "word": " idea", + "start": 4059.5, + "end": 4059.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1601, + "text": "is because they're afraid that they're wrong.", + "start": 4059.96, + "end": 4062.3, + "words": [ + { + "word": " is", + "start": 4059.96, + "end": 4060.68, + "probability": 0.9931640625 + }, + { + "word": " because", + "start": 4060.68, + "end": 4060.88, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 4060.88, + "end": 4061.26, + "probability": 0.93798828125 + }, + { + "word": " afraid", + "start": 4061.26, + "end": 4061.72, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 4061.72, + "end": 4061.96, + "probability": 0.98876953125 + }, + { + "word": " they're", + "start": 4061.96, + "end": 4062.08, + "probability": 0.998046875 + }, + { + "word": " wrong.", + "start": 4062.08, + "end": 4062.3, + "probability": 1.0 + } + ] + }, + { + "id": 1602, + "text": "The safe space thing is they're afraid that they are wrong.", + "start": 4063.08, + "end": 4065.96, + "words": [ + { + "word": " The", + "start": 4063.08, + "end": 4063.48, + "probability": 0.7646484375 + }, + { + "word": " safe", + "start": 4063.48, + "end": 4063.82, + "probability": 0.98583984375 + }, + { + "word": " space", + "start": 4063.82, + "end": 4064.0, + "probability": 0.99755859375 + }, + { + "word": " thing", + "start": 4064.0, + "end": 4064.32, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 4064.32, + "end": 4064.54, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 4064.54, + "end": 4064.98, + "probability": 0.984375 + }, + { + "word": " afraid", + "start": 4064.98, + "end": 4065.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 4065.26, + "end": 4065.46, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 4065.46, + "end": 4065.6, + "probability": 1.0 + }, + { + "word": " are", + "start": 4065.6, + "end": 4065.72, + "probability": 0.89306640625 + }, + { + "word": " wrong.", + "start": 4065.72, + "end": 4065.96, + "probability": 1.0 + } + ] + }, + { + "id": 1603, + "text": "And whether that's because they know it or not, I think that's ultimately the cause.", + "start": 4066.4, + "end": 4070.88, + "words": [ + { + "word": " And", + "start": 4066.4, + "end": 4066.48, + "probability": 0.3515625 + }, + { + "word": " whether", + "start": 4066.48, + "end": 4067.26, + "probability": 0.9951171875 + }, + { + "word": " that's", + "start": 4067.26, + "end": 4067.54, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 4067.54, + "end": 4067.68, + "probability": 1.0 + }, + { + "word": " they", + "start": 4067.68, + "end": 4067.9, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 4067.9, + "end": 4068.04, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4068.04, + "end": 4068.18, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4068.18, + "end": 4068.26, + "probability": 0.99951171875 + }, + { + "word": " not,", + "start": 4068.26, + "end": 4068.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 4068.68, + "end": 4068.82, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 4068.82, + "end": 4069.12, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4069.12, + "end": 4069.46, + "probability": 0.814453125 + }, + { + "word": " ultimately", + "start": 4069.46, + "end": 4070.12, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4070.12, + "end": 4070.42, + "probability": 0.99951171875 + }, + { + "word": " cause.", + "start": 4070.42, + "end": 4070.88, + "probability": 0.998046875 + } + ] + }, + { + "id": 1604, + "text": "You live in an echo chamber because you're afraid of what's on the outside of it.", + "start": 4071.14, + "end": 4073.72, + "words": [ + { + "word": " You", + "start": 4071.14, + "end": 4071.38, + "probability": 0.998046875 + }, + { + "word": " live", + "start": 4071.38, + "end": 4071.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 4071.54, + "end": 4071.68, + "probability": 1.0 + }, + { + "word": " an", + "start": 4071.68, + "end": 4071.78, + "probability": 0.99951171875 + }, + { + "word": " echo", + "start": 4071.78, + "end": 4071.92, + "probability": 0.99951171875 + }, + { + "word": " chamber", + "start": 4071.92, + "end": 4072.1, + "probability": 1.0 + }, + { + "word": " because", + "start": 4072.1, + "end": 4072.4, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 4072.4, + "end": 4072.58, + "probability": 1.0 + }, + { + "word": " afraid", + "start": 4072.58, + "end": 4072.78, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4072.78, + "end": 4072.88, + "probability": 1.0 + }, + { + "word": " what's", + "start": 4072.88, + "end": 4073.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 4073.06, + "end": 4073.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 4073.12, + "end": 4073.24, + "probability": 1.0 + }, + { + "word": " outside", + "start": 4073.24, + "end": 4073.42, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4073.42, + "end": 4073.58, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 4073.58, + "end": 4073.72, + "probability": 1.0 + } + ] + }, + { + "id": 1605, + "text": "This is very true.", + "start": 4074.64, + "end": 4075.56, + "words": [ + { + "word": " This", + "start": 4074.64, + "end": 4075.04, + "probability": 0.99658203125 + }, + { + "word": " is", + "start": 4075.04, + "end": 4075.2, + "probability": 1.0 + }, + { + "word": " very", + "start": 4075.2, + "end": 4075.38, + "probability": 1.0 + }, + { + "word": " true.", + "start": 4075.38, + "end": 4075.56, + "probability": 1.0 + } + ] + }, + { + "id": 1606, + "text": "All right, let's go ahead and talk to Mark real quick.", + "start": 4075.9, + "end": 4077.64, + "words": [ + { + "word": " All", + "start": 4075.9, + "end": 4076.3, + "probability": 0.7294921875 + }, + { + "word": " right,", + "start": 4076.3, + "end": 4076.4, + "probability": 1.0 + }, + { + "word": " let's", + "start": 4076.42, + "end": 4076.56, + "probability": 1.0 + }, + { + "word": " go", + "start": 4076.56, + "end": 4076.6, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 4076.6, + "end": 4076.72, + "probability": 0.984375 + }, + { + "word": " and", + "start": 4076.72, + "end": 4076.76, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 4076.76, + "end": 4077.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 4077.06, + "end": 4077.18, + "probability": 1.0 + }, + { + "word": " Mark", + "start": 4077.18, + "end": 4077.32, + "probability": 0.99853515625 + }, + { + "word": " real", + "start": 4077.32, + "end": 4077.52, + "probability": 1.0 + }, + { + "word": " quick.", + "start": 4077.52, + "end": 4077.64, + "probability": 1.0 + } + ] + }, + { + "id": 1607, + "text": "Hello, Mark. How are you?", + "start": 4077.7, + "end": 4078.36, + "words": [ + { + "word": " Hello,", + "start": 4077.7, + "end": 4077.84, + "probability": 0.9970703125 + }, + { + "word": " Mark.", + "start": 4077.88, + "end": 4078.04, + "probability": 1.0 + }, + { + "word": " How", + "start": 4078.06, + "end": 4078.18, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 4078.18, + "end": 4078.26, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4078.26, + "end": 4078.36, + "probability": 1.0 + } + ] + }, + { + "id": 1608, + "text": "Hey.", + "start": 4079.04, + "end": 4079.44, + "words": [ + { + "word": " Hey.", + "start": 4079.04, + "end": 4079.44, + "probability": 0.892578125 + } + ] + }, + { + "id": 1609, + "text": "Hi, Mike.", + "start": 4079.8, + "end": 4079.94, + "words": [ + { + "word": " Hi,", + "start": 4079.8, + "end": 4079.94, + "probability": 0.0006747245788574219 + }, + { + "word": " Mike.", + "start": 4079.94, + "end": 4079.94, + "probability": 0.92578125 + } + ] + }, + { + "id": 1610, + "text": "I was pleasingly surprised to have you, hear you back on.", + "start": 4080.18, + "end": 4084.18, + "words": [ + { + "word": " I", + "start": 4080.18, + "end": 4080.64, + "probability": 0.98681640625 + }, + { + "word": " was", + "start": 4080.64, + "end": 4080.88, + "probability": 0.9990234375 + }, + { + "word": " pleasingly", + "start": 4080.88, + "end": 4082.12, + "probability": 0.943359375 + }, + { + "word": " surprised", + "start": 4082.12, + "end": 4082.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4082.5, + "end": 4082.72, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 4082.72, + "end": 4082.88, + "probability": 0.441162109375 + }, + { + "word": " you,", + "start": 4082.88, + "end": 4083.14, + "probability": 0.99560546875 + }, + { + "word": " hear", + "start": 4083.16, + "end": 4083.56, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 4083.56, + "end": 4083.74, + "probability": 1.0 + }, + { + "word": " back", + "start": 4083.74, + "end": 4083.92, + "probability": 0.99951171875 + }, + { + "word": " on.", + "start": 4083.92, + "end": 4084.18, + "probability": 1.0 + } + ] + }, + { + "id": 1611, + "text": "And I want to thank you for coming back on for a second hour,", + "start": 4084.28, + "end": 4087.52, + "words": [ + { + "word": " And", + "start": 4084.28, + "end": 4084.56, + "probability": 0.97705078125 + }, + { + "word": " I", + "start": 4084.56, + "end": 4084.7, + "probability": 0.994140625 + }, + { + "word": " want", + "start": 4084.7, + "end": 4084.82, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 4084.82, + "end": 4084.86, + "probability": 1.0 + }, + { + "word": " thank", + "start": 4084.86, + "end": 4085.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4085.04, + "end": 4085.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 4085.18, + "end": 4085.32, + "probability": 0.99951171875 + }, + { + "word": " coming", + "start": 4085.32, + "end": 4085.64, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 4085.64, + "end": 4085.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 4085.86, + "end": 4086.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 4086.08, + "end": 4086.32, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 4086.32, + "end": 4086.96, + "probability": 0.9990234375 + }, + { + "word": " second", + "start": 4086.96, + "end": 4087.3, + "probability": 1.0 + }, + { + "word": " hour,", + "start": 4087.3, + "end": 4087.52, + "probability": 1.0 + } + ] + }, + { + "id": 1612, + "text": "which means I'm going to get less things done on this Saturday.", + "start": 4087.66, + "end": 4090.58, + "words": [ + { + "word": " which", + "start": 4087.66, + "end": 4088.22, + "probability": 0.99951171875 + }, + { + "word": " means", + "start": 4088.22, + "end": 4088.44, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4088.44, + "end": 4088.66, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 4088.66, + "end": 4088.74, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4088.74, + "end": 4088.82, + "probability": 1.0 + }, + { + "word": " get", + "start": 4088.82, + "end": 4088.96, + "probability": 0.99951171875 + }, + { + "word": " less", + "start": 4088.96, + "end": 4089.2, + "probability": 0.998046875 + }, + { + "word": " things", + "start": 4089.2, + "end": 4089.5, + "probability": 1.0 + }, + { + "word": " done", + "start": 4089.5, + "end": 4089.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 4089.84, + "end": 4090.08, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4090.08, + "end": 4090.22, + "probability": 0.99853515625 + }, + { + "word": " Saturday.", + "start": 4090.22, + "end": 4090.58, + "probability": 0.96923828125 + } + ] + }, + { + "id": 1613, + "text": "Because I'll be listening to you more than I would be, you know,", + "start": 4091.04, + "end": 4094.0, + "words": [ + { + "word": " Because", + "start": 4091.04, + "end": 4091.5, + "probability": 0.99072265625 + }, + { + "word": " I'll", + "start": 4091.5, + "end": 4091.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 4091.74, + "end": 4091.78, + "probability": 1.0 + }, + { + "word": " listening", + "start": 4091.78, + "end": 4092.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 4092.08, + "end": 4092.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 4092.24, + "end": 4092.4, + "probability": 1.0 + }, + { + "word": " more", + "start": 4092.4, + "end": 4092.68, + "probability": 1.0 + }, + { + "word": " than", + "start": 4092.68, + "end": 4092.88, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4092.88, + "end": 4093.06, + "probability": 1.0 + }, + { + "word": " would", + "start": 4093.06, + "end": 4093.2, + "probability": 0.9921875 + }, + { + "word": " be,", + "start": 4093.2, + "end": 4093.48, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4093.66, + "end": 4093.78, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 4093.78, + "end": 4094.0, + "probability": 1.0 + } + ] + }, + { + "id": 1614, + "text": "intently listening to the former pinko commie.", + "start": 4094.0, + "end": 4097.72, + "words": [ + { + "word": " intently", + "start": 4094.0, + "end": 4094.74, + "probability": 0.99951171875 + }, + { + "word": " listening", + "start": 4094.74, + "end": 4095.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4095.0, + "end": 4095.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 4095.38, + "end": 4095.68, + "probability": 0.9990234375 + }, + { + "word": " former", + "start": 4095.68, + "end": 4096.3, + "probability": 0.99951171875 + }, + { + "word": " pinko", + "start": 4096.3, + "end": 4097.28, + "probability": 0.38818359375 + }, + { + "word": " commie.", + "start": 4097.28, + "end": 4097.72, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1615, + "text": "Our plan is finally coming together to make Saturdays more lazy.", + "start": 4097.8, + "end": 4101.02, + "words": [ + { + "word": " Our", + "start": 4097.8, + "end": 4097.96, + "probability": 0.9990234375 + }, + { + "word": " plan", + "start": 4097.96, + "end": 4098.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 4098.24, + "end": 4098.5, + "probability": 1.0 + }, + { + "word": " finally", + "start": 4098.5, + "end": 4098.76, + "probability": 0.99951171875 + }, + { + "word": " coming", + "start": 4098.76, + "end": 4099.04, + "probability": 1.0 + }, + { + "word": " together", + "start": 4099.04, + "end": 4099.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 4099.38, + "end": 4099.62, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 4099.62, + "end": 4099.76, + "probability": 1.0 + }, + { + "word": " Saturdays", + "start": 4099.76, + "end": 4100.44, + "probability": 0.99853515625 + }, + { + "word": " more", + "start": 4100.44, + "end": 4100.48, + "probability": 1.0 + }, + { + "word": " lazy.", + "start": 4100.48, + "end": 4101.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1616, + "text": "Yes.", + "start": 4101.84, + "end": 4102.3, + "words": [ + { + "word": " Yes.", + "start": 4101.84, + "end": 4102.3, + "probability": 0.97607421875 + } + ] + }, + { + "id": 1617, + "text": "Well, yeah, well, not lazy because anyway.", + "start": 4102.3, + "end": 4105.42, + "words": [ + { + "word": " Well,", + "start": 4102.3, + "end": 4102.74, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 4102.94, + "end": 4103.5, + "probability": 0.97216796875 + }, + { + "word": " well,", + "start": 4103.54, + "end": 4103.76, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 4103.84, + "end": 4104.1, + "probability": 0.99951171875 + }, + { + "word": " lazy", + "start": 4104.1, + "end": 4104.46, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 4104.46, + "end": 4104.86, + "probability": 0.94384765625 + }, + { + "word": " anyway.", + "start": 4104.86, + "end": 4105.42, + "probability": 0.352783203125 + } + ] + }, + { + "id": 1618, + "text": "So, yeah.", + "start": 4106.04, + "end": 4106.76, + "words": [ + { + "word": " So,", + "start": 4106.04, + "end": 4106.5, + "probability": 0.99951171875 + }, + { + "word": " yeah.", + "start": 4106.5, + "end": 4106.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1619, + "text": "So I'm going to miss some of those call-ins from the...", + "start": 4107.08, + "end": 4109.46, + "words": [ + { + "word": " So", + "start": 4107.08, + "end": 4107.54, + "probability": 0.998046875 + }, + { + "word": " I'm", + "start": 4107.54, + "end": 4107.76, + "probability": 0.919921875 + }, + { + "word": " going", + "start": 4107.76, + "end": 4107.8, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4107.8, + "end": 4107.9, + "probability": 1.0 + }, + { + "word": " miss", + "start": 4107.9, + "end": 4108.04, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 4108.04, + "end": 4108.2, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4108.2, + "end": 4108.3, + "probability": 1.0 + }, + { + "word": " those", + "start": 4108.3, + "end": 4108.44, + "probability": 1.0 + }, + { + "word": " call", + "start": 4108.44, + "end": 4108.82, + "probability": 0.9990234375 + }, + { + "word": "-ins", + "start": 4108.82, + "end": 4108.98, + "probability": 0.95751953125 + }, + { + "word": " from", + "start": 4108.98, + "end": 4109.22, + "probability": 0.99560546875 + }, + { + "word": " the...", + "start": 4109.22, + "end": 4109.46, + "probability": 0.5224609375 + } + ] + }, + { + "id": 1620, + "text": "from the other period.", + "start": 4109.8, + "end": 4110.94, + "words": [ + { + "word": " from", + "start": 4109.8, + "end": 4109.9, + "probability": 0.9365234375 + }, + { + "word": " the", + "start": 4109.9, + "end": 4110.0, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 4110.0, + "end": 4110.24, + "probability": 0.99560546875 + }, + { + "word": " period.", + "start": 4110.24, + "end": 4110.94, + "probability": 0.994140625 + } + ] + }, + { + "id": 1621, + "text": "But maybe Emil can take up the slack and actually have a two-way dialogue", + "start": 4111.32, + "end": 4115.94, + "words": [ + { + "word": " But", + "start": 4111.32, + "end": 4111.76, + "probability": 0.71240234375 + }, + { + "word": " maybe", + "start": 4111.76, + "end": 4112.46, + "probability": 0.94140625 + }, + { + "word": " Emil", + "start": 4112.46, + "end": 4112.78, + "probability": 0.91015625 + }, + { + "word": " can", + "start": 4112.78, + "end": 4113.0, + "probability": 0.9990234375 + }, + { + "word": " take", + "start": 4113.0, + "end": 4113.24, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4113.24, + "end": 4113.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4113.42, + "end": 4113.52, + "probability": 0.99853515625 + }, + { + "word": " slack", + "start": 4113.52, + "end": 4113.76, + "probability": 0.98095703125 + }, + { + "word": " and", + "start": 4113.76, + "end": 4113.96, + "probability": 0.9990234375 + }, + { + "word": " actually", + "start": 4113.96, + "end": 4114.22, + "probability": 0.9970703125 + }, + { + "word": " have", + "start": 4114.22, + "end": 4114.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 4114.44, + "end": 4114.64, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 4114.64, + "end": 4115.26, + "probability": 0.9990234375 + }, + { + "word": "-way", + "start": 4115.26, + "end": 4115.52, + "probability": 0.9912109375 + }, + { + "word": " dialogue", + "start": 4115.52, + "end": 4115.94, + "probability": 0.99609375 + } + ] + }, + { + "id": 1622, + "text": "instead of a socialistic public school perspective.", + "start": 4115.94, + "end": 4120.74, + "words": [ + { + "word": " instead", + "start": 4115.94, + "end": 4116.48, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4116.48, + "end": 4116.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 4116.7, + "end": 4116.88, + "probability": 0.99951171875 + }, + { + "word": " socialistic", + "start": 4116.88, + "end": 4118.62, + "probability": 0.990234375 + }, + { + "word": " public", + "start": 4118.62, + "end": 4119.6, + "probability": 0.77685546875 + }, + { + "word": " school", + "start": 4119.6, + "end": 4120.1, + "probability": 0.98974609375 + }, + { + "word": " perspective.", + "start": 4120.1, + "end": 4120.74, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1623, + "text": "Right.", + "start": 4121.56, + "end": 4122.0, + "words": [ + { + "word": " Right.", + "start": 4121.56, + "end": 4122.0, + "probability": 0.6806640625 + } + ] + }, + { + "id": 1624, + "text": "Well, you know, I don't know a whole lot about the show that was on during this hour.", + "start": 4122.0, + "end": 4126.5, + "words": [ + { + "word": " Well,", + "start": 4122.0, + "end": 4122.44, + "probability": 0.95068359375 + }, + { + "word": " you", + "start": 4122.52, + "end": 4122.66, + "probability": 0.6787109375 + }, + { + "word": " know,", + "start": 4122.66, + "end": 4122.8, + "probability": 1.0 + }, + { + "word": " I", + "start": 4122.82, + "end": 4123.52, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 4123.52, + "end": 4124.34, + "probability": 0.9970703125 + }, + { + "word": " know", + "start": 4124.34, + "end": 4124.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 4124.5, + "end": 4124.6, + "probability": 0.99951171875 + }, + { + "word": " whole", + "start": 4124.6, + "end": 4124.76, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 4124.76, + "end": 4124.98, + "probability": 1.0 + }, + { + "word": " about", + "start": 4124.98, + "end": 4125.16, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4125.16, + "end": 4125.34, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 4125.34, + "end": 4125.52, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4125.52, + "end": 4125.64, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 4125.64, + "end": 4125.78, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4125.78, + "end": 4125.92, + "probability": 0.99951171875 + }, + { + "word": " during", + "start": 4125.92, + "end": 4126.06, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 4126.06, + "end": 4126.24, + "probability": 0.99951171875 + }, + { + "word": " hour.", + "start": 4126.24, + "end": 4126.5, + "probability": 1.0 + } + ] + }, + { + "id": 1625, + "text": "I listened a couple of times and very nice people.", + "start": 4126.64, + "end": 4130.7, + "words": [ + { + "word": " I", + "start": 4126.64, + "end": 4127.08, + "probability": 0.99853515625 + }, + { + "word": " listened", + "start": 4127.08, + "end": 4127.4, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4127.4, + "end": 4127.58, + "probability": 0.99609375 + }, + { + "word": " couple", + "start": 4127.58, + "end": 4127.78, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4127.78, + "end": 4127.86, + "probability": 1.0 + }, + { + "word": " times", + "start": 4127.86, + "end": 4128.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 4128.16, + "end": 4128.66, + "probability": 0.7783203125 + }, + { + "word": " very", + "start": 4128.66, + "end": 4130.06, + "probability": 0.95263671875 + }, + { + "word": " nice", + "start": 4130.06, + "end": 4130.38, + "probability": 0.99951171875 + }, + { + "word": " people.", + "start": 4130.38, + "end": 4130.7, + "probability": 1.0 + } + ] + }, + { + "id": 1626, + "text": "Yeah.", + "start": 4131.18, + "end": 4131.62, + "words": [ + { + "word": " Yeah.", + "start": 4131.18, + "end": 4131.62, + "probability": 0.7353515625 + } + ] + }, + { + "id": 1627, + "text": "But, you know, I figured who doesn't want more guru?", + "start": 4133.080000000001, + "end": 4136.06, + "words": [ + { + "word": " But,", + "start": 4133.080000000001, + "end": 4133.52, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 4133.52, + "end": 4133.96, + "probability": 0.9912109375 + }, + { + "word": " know,", + "start": 4133.96, + "end": 4134.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 4134.1, + "end": 4134.22, + "probability": 0.9990234375 + }, + { + "word": " figured", + "start": 4134.22, + "end": 4134.5, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 4134.5, + "end": 4135.16, + "probability": 0.53369140625 + }, + { + "word": " doesn't", + "start": 4135.16, + "end": 4135.62, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 4135.62, + "end": 4135.74, + "probability": 1.0 + }, + { + "word": " more", + "start": 4135.74, + "end": 4135.88, + "probability": 0.99853515625 + }, + { + "word": " guru?", + "start": 4135.88, + "end": 4136.06, + "probability": 0.6298828125 + } + ] + }, + { + "id": 1628, + "text": "That's correct.", + "start": 4136.6, + "end": 4137.22, + "words": [ + { + "word": " That's", + "start": 4136.6, + "end": 4137.04, + "probability": 0.87744140625 + }, + { + "word": " correct.", + "start": 4137.04, + "end": 4137.22, + "probability": 0.52001953125 + } + ] + }, + { + "id": 1629, + "text": "We would do a 12-hour show if we could.", + "start": 4137.28, + "end": 4138.36, + "words": [ + { + "word": " We", + "start": 4137.28, + "end": 4137.36, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 4137.36, + "end": 4137.44, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4137.44, + "end": 4137.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 4137.58, + "end": 4137.66, + "probability": 0.9990234375 + }, + { + "word": " 12", + "start": 4137.66, + "end": 4137.86, + "probability": 0.9931640625 + }, + { + "word": "-hour", + "start": 4137.86, + "end": 4138.08, + "probability": 0.990234375 + }, + { + "word": " show", + "start": 4138.08, + "end": 4138.3, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 4138.3, + "end": 4138.36, + "probability": 0.79443359375 + }, + { + "word": " we", + "start": 4138.36, + "end": 4138.36, + "probability": 0.9990234375 + }, + { + "word": " could.", + "start": 4138.36, + "end": 4138.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1630, + "text": "We want more guru.", + "start": 4138.36, + "end": 4139.22, + "words": [ + { + "word": " We", + "start": 4138.36, + "end": 4138.36, + "probability": 0.95849609375 + }, + { + "word": " want", + "start": 4138.36, + "end": 4138.46, + "probability": 0.8916015625 + }, + { + "word": " more", + "start": 4138.46, + "end": 4138.76, + "probability": 1.0 + }, + { + "word": " guru.", + "start": 4138.76, + "end": 4139.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1631, + "text": "I would not do a 12-hour show.", + "start": 4139.22, + "end": 4140.64, + "words": [ + { + "word": " I", + "start": 4139.22, + "end": 4139.48, + "probability": 0.9814453125 + }, + { + "word": " would", + "start": 4139.48, + "end": 4139.64, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 4139.64, + "end": 4139.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 4139.82, + "end": 4140.02, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 4140.02, + "end": 4140.1, + "probability": 0.76806640625 + }, + { + "word": " 12", + "start": 4140.1, + "end": 4140.26, + "probability": 0.89599609375 + }, + { + "word": "-hour", + "start": 4140.26, + "end": 4140.46, + "probability": 0.9765625 + }, + { + "word": " show.", + "start": 4140.46, + "end": 4140.64, + "probability": 0.48486328125 + } + ] + }, + { + "id": 1632, + "text": "That's too much.", + "start": 4140.64, + "end": 4141.12, + "words": [ + { + "word": " That's", + "start": 4140.64, + "end": 4140.84, + "probability": 0.7822265625 + }, + { + "word": " too", + "start": 4140.84, + "end": 4140.9, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 4140.9, + "end": 4141.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1633, + "text": "So more guru.", + "start": 4141.42, + "end": 4142.38, + "words": [ + { + "word": " So", + "start": 4141.42, + "end": 4141.78, + "probability": 0.425537109375 + }, + { + "word": " more", + "start": 4141.78, + "end": 4142.06, + "probability": 0.708984375 + }, + { + "word": " guru.", + "start": 4142.06, + "end": 4142.38, + "probability": 0.447998046875 + } + ] + }, + { + "id": 1634, + "text": "And so thanks for being on again.", + "start": 4142.780000000001, + "end": 4144.28, + "words": [ + { + "word": " And", + "start": 4142.780000000001, + "end": 4143.14, + "probability": 0.9580078125 + }, + { + "word": " so", + "start": 4143.14, + "end": 4143.3, + "probability": 1.0 + }, + { + "word": " thanks", + "start": 4143.3, + "end": 4143.56, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 4143.56, + "end": 4143.7, + "probability": 1.0 + }, + { + "word": " being", + "start": 4143.7, + "end": 4143.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 4143.9, + "end": 4144.08, + "probability": 1.0 + }, + { + "word": " again.", + "start": 4144.08, + "end": 4144.28, + "probability": 1.0 + } + ] + }, + { + "id": 1635, + "text": "That's really great.", + "start": 4144.740000000001, + "end": 4145.52, + "words": [ + { + "word": " That's", + "start": 4144.740000000001, + "end": 4145.1, + "probability": 0.82763671875 + }, + { + "word": " really", + "start": 4145.1, + "end": 4145.26, + "probability": 1.0 + }, + { + "word": " great.", + "start": 4145.26, + "end": 4145.52, + "probability": 1.0 + } + ] + }, + { + "id": 1636, + "text": "Excellent.", + "start": 4145.82, + "end": 4146.04, + "words": [ + { + "word": " Excellent.", + "start": 4145.82, + "end": 4146.04, + "probability": 0.7021484375 + } + ] + }, + { + "id": 1637, + "text": "Also, I forgot to mention when I talked to you earlier.", + "start": 4146.06, + "end": 4148.48, + "words": [ + { + "word": " Also,", + "start": 4146.06, + "end": 4146.28, + "probability": 0.98779296875 + }, + { + "word": " I", + "start": 4146.38, + "end": 4146.68, + "probability": 1.0 + }, + { + "word": " forgot", + "start": 4146.68, + "end": 4147.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 4147.02, + "end": 4147.24, + "probability": 1.0 + }, + { + "word": " mention", + "start": 4147.24, + "end": 4147.54, + "probability": 1.0 + }, + { + "word": " when", + "start": 4147.54, + "end": 4147.84, + "probability": 0.8447265625 + }, + { + "word": " I", + "start": 4147.84, + "end": 4147.92, + "probability": 1.0 + }, + { + "word": " talked", + "start": 4147.92, + "end": 4148.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 4148.1, + "end": 4148.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 4148.2, + "end": 4148.22, + "probability": 1.0 + }, + { + "word": " earlier.", + "start": 4148.22, + "end": 4148.48, + "probability": 1.0 + } + ] + }, + { + "id": 1638, + "text": "So I have two entries of Avera.", + "start": 4149.06, + "end": 4151.82, + "words": [ + { + "word": " So", + "start": 4149.06, + "end": 4149.42, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4149.42, + "end": 4149.58, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4149.58, + "end": 4149.82, + "probability": 1.0 + }, + { + "word": " two", + "start": 4149.82, + "end": 4150.62, + "probability": 0.99951171875 + }, + { + "word": " entries", + "start": 4150.62, + "end": 4151.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 4151.0, + "end": 4151.32, + "probability": 1.0 + }, + { + "word": " Avera.", + "start": 4151.32, + "end": 4151.82, + "probability": 0.7939453125 + } + ] + }, + { + "id": 1639, + "text": "The one is, of course, the antivirus.", + "start": 4151.92, + "end": 4153.52, + "words": [ + { + "word": " The", + "start": 4151.92, + "end": 4152.22, + "probability": 0.6259765625 + }, + { + "word": " one", + "start": 4152.22, + "end": 4152.52, + "probability": 1.0 + }, + { + "word": " is,", + "start": 4152.52, + "end": 4152.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 4152.72, + "end": 4152.78, + "probability": 1.0 + }, + { + "word": " course,", + "start": 4152.78, + "end": 4152.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 4152.96, + "end": 4153.06, + "probability": 0.99951171875 + }, + { + "word": " antivirus.", + "start": 4153.06, + "end": 4153.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1640, + "text": "The other is the launcher.", + "start": 4153.52, + "end": 4154.42, + "words": [ + { + "word": " The", + "start": 4153.52, + "end": 4153.7, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 4153.7, + "end": 4153.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 4153.82, + "end": 4153.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 4153.96, + "end": 4154.1, + "probability": 1.0 + }, + { + "word": " launcher.", + "start": 4154.1, + "end": 4154.42, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1641, + "text": "Do I uninstall both of those?", + "start": 4154.54, + "end": 4155.9, + "words": [ + { + "word": " Do", + "start": 4154.54, + "end": 4154.7, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4154.7, + "end": 4154.82, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 4154.82, + "end": 4155.22, + "probability": 1.0 + }, + { + "word": " both", + "start": 4155.22, + "end": 4155.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 4155.48, + "end": 4155.7, + "probability": 1.0 + }, + { + "word": " those?", + "start": 4155.7, + "end": 4155.9, + "probability": 1.0 + } + ] + }, + { + "id": 1642, + "text": "Just the antivirus is the important one.", + "start": 4156.6, + "end": 4158.0, + "words": [ + { + "word": " Just", + "start": 4156.6, + "end": 4156.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4156.96, + "end": 4157.06, + "probability": 0.9423828125 + }, + { + "word": " antivirus", + "start": 4157.06, + "end": 4157.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 4157.38, + "end": 4157.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4157.48, + "end": 4157.6, + "probability": 1.0 + }, + { + "word": " important", + "start": 4157.6, + "end": 4157.8, + "probability": 1.0 + }, + { + "word": " one.", + "start": 4157.8, + "end": 4158.0, + "probability": 1.0 + } + ] + }, + { + "id": 1643, + "text": "But I would...", + "start": 4158.2, + "end": 4159.18, + "words": [ + { + "word": " But", + "start": 4158.2, + "end": 4158.32, + "probability": 0.033477783203125 + }, + { + "word": " I", + "start": 4158.32, + "end": 4158.62, + "probability": 0.91455078125 + }, + { + "word": " would...", + "start": 4158.62, + "end": 4159.18, + "probability": 0.7783203125 + } + ] + }, + { + "id": 1644, + "text": "The launcher is okay to leave in?", + "start": 4159.18, + "end": 4160.62, + "words": [ + { + "word": " The", + "start": 4159.18, + "end": 4159.62, + "probability": 0.8486328125 + }, + { + "word": " launcher", + "start": 4159.62, + "end": 4159.86, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 4159.86, + "end": 4160.02, + "probability": 0.92041015625 + }, + { + "word": " okay", + "start": 4160.02, + "end": 4160.24, + "probability": 0.95849609375 + }, + { + "word": " to", + "start": 4160.24, + "end": 4160.36, + "probability": 0.95947265625 + }, + { + "word": " leave", + "start": 4160.36, + "end": 4160.46, + "probability": 0.86865234375 + }, + { + "word": " in?", + "start": 4160.46, + "end": 4160.62, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1645, + "text": "I'd get rid of them both.", + "start": 4160.72, + "end": 4161.72, + "words": [ + { + "word": " I'd", + "start": 4160.72, + "end": 4160.92, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 4160.92, + "end": 4161.1, + "probability": 1.0 + }, + { + "word": " rid", + "start": 4161.1, + "end": 4161.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 4161.22, + "end": 4161.36, + "probability": 1.0 + }, + { + "word": " them", + "start": 4161.36, + "end": 4161.44, + "probability": 0.9345703125 + }, + { + "word": " both.", + "start": 4161.44, + "end": 4161.72, + "probability": 1.0 + } + ] + }, + { + "id": 1646, + "text": "Okay.", + "start": 4162.0, + "end": 4162.36, + "words": [ + { + "word": " Okay.", + "start": 4162.0, + "end": 4162.36, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1647, + "text": "That's what I wanted to know.", + "start": 4162.38, + "end": 4163.22, + "words": [ + { + "word": " That's", + "start": 4162.38, + "end": 4162.72, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 4162.72, + "end": 4162.74, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 4162.74, + "end": 4162.86, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 4162.86, + "end": 4162.98, + "probability": 0.5234375 + }, + { + "word": " to", + "start": 4162.98, + "end": 4163.08, + "probability": 1.0 + }, + { + "word": " know.", + "start": 4163.08, + "end": 4163.22, + "probability": 1.0 + } + ] + }, + { + "id": 1648, + "text": "So I'll get rid of them both.", + "start": 4163.48, + "end": 4164.5, + "words": [ + { + "word": " So", + "start": 4163.48, + "end": 4163.84, + "probability": 0.98046875 + }, + { + "word": " I'll", + "start": 4163.84, + "end": 4163.98, + "probability": 1.0 + }, + { + "word": " get", + "start": 4163.98, + "end": 4164.04, + "probability": 1.0 + }, + { + "word": " rid", + "start": 4164.04, + "end": 4164.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 4164.16, + "end": 4164.22, + "probability": 1.0 + }, + { + "word": " them", + "start": 4164.22, + "end": 4164.3, + "probability": 0.99853515625 + }, + { + "word": " both.", + "start": 4164.3, + "end": 4164.5, + "probability": 1.0 + } + ] + }, + { + "id": 1649, + "text": "Oh, you know, and thank you for the call.", + "start": 4164.68, + "end": 4166.5, + "words": [ + { + "word": " Oh,", + "start": 4164.68, + "end": 4165.0, + "probability": 0.95947265625 + }, + { + "word": " you", + "start": 4165.0, + "end": 4165.06, + "probability": 0.955078125 + }, + { + "word": " know,", + "start": 4165.06, + "end": 4165.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 4165.2, + "end": 4165.32, + "probability": 0.99267578125 + }, + { + "word": " thank", + "start": 4165.32, + "end": 4165.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 4165.88, + "end": 4166.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 4166.1, + "end": 4166.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 4166.22, + "end": 4166.34, + "probability": 1.0 + }, + { + "word": " call.", + "start": 4166.34, + "end": 4166.5, + "probability": 1.0 + } + ] + }, + { + "id": 1650, + "text": "I appreciate it, Mark.", + "start": 4166.56, + "end": 4167.36, + "words": [ + { + "word": " I", + "start": 4166.56, + "end": 4166.64, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 4166.64, + "end": 4166.88, + "probability": 1.0 + }, + { + "word": " it,", + "start": 4166.88, + "end": 4167.2, + "probability": 1.0 + }, + { + "word": " Mark.", + "start": 4167.22, + "end": 4167.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1651, + "text": "Thanks for...", + "start": 4167.48, + "end": 4167.94, + "words": [ + { + "word": " Thanks", + "start": 4167.48, + "end": 4167.74, + "probability": 0.6005859375 + }, + { + "word": " for...", + "start": 4167.74, + "end": 4167.94, + "probability": 0.994140625 + } + ] + }, + { + "id": 1652, + "text": "Thank you for the thank you.", + "start": 4167.94, + "end": 4169.04, + "words": [ + { + "word": " Thank", + "start": 4167.94, + "end": 4168.38, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 4168.38, + "end": 4168.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 4168.52, + "end": 4168.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 4168.64, + "end": 4168.7, + "probability": 1.0 + }, + { + "word": " thank", + "start": 4168.7, + "end": 4168.88, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 4168.88, + "end": 4169.04, + "probability": 1.0 + } + ] + }, + { + "id": 1653, + "text": "Thank you.", + "start": 4169.22, + "end": 4170.02, + "words": [ + { + "word": " Thank", + "start": 4169.22, + "end": 4169.78, + "probability": 0.92529296875 + }, + { + "word": " you.", + "start": 4169.78, + "end": 4170.02, + "probability": 1.0 + } + ] + }, + { + "id": 1654, + "text": "Okay.", + "start": 4170.4800000000005, + "end": 4170.88, + "words": [ + { + "word": " Okay.", + "start": 4170.4800000000005, + "end": 4170.88, + "probability": 0.2017822265625 + } + ] + }, + { + "id": 1655, + "text": "One of the other things that I forgot to mention,", + "start": 4171.04, + "end": 4172.92, + "words": [ + { + "word": " One", + "start": 4171.04, + "end": 4171.44, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 4171.44, + "end": 4171.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 4171.56, + "end": 4171.6, + "probability": 1.0 + }, + { + "word": " other", + "start": 4171.6, + "end": 4171.78, + "probability": 1.0 + }, + { + "word": " things", + "start": 4171.78, + "end": 4171.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 4171.98, + "end": 4172.1, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4172.1, + "end": 4172.2, + "probability": 1.0 + }, + { + "word": " forgot", + "start": 4172.2, + "end": 4172.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 4172.44, + "end": 4172.64, + "probability": 1.0 + }, + { + "word": " mention,", + "start": 4172.64, + "end": 4172.92, + "probability": 1.0 + } + ] + }, + { + "id": 1656, + "text": "that Computer Guru is in the Best of Tucson running.", + "start": 4173.12, + "end": 4176.02, + "words": [ + { + "word": " that", + "start": 4173.12, + "end": 4173.46, + "probability": 0.8603515625 + }, + { + "word": " Computer", + "start": 4173.46, + "end": 4174.3, + "probability": 0.87109375 + }, + { + "word": " Guru", + "start": 4174.3, + "end": 4174.62, + "probability": 0.97900390625 + }, + { + "word": " is", + "start": 4174.62, + "end": 4174.86, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4174.86, + "end": 4175.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 4175.04, + "end": 4175.18, + "probability": 0.99853515625 + }, + { + "word": " Best", + "start": 4175.18, + "end": 4175.36, + "probability": 0.9814453125 + }, + { + "word": " of", + "start": 4175.36, + "end": 4175.5, + "probability": 0.99951171875 + }, + { + "word": " Tucson", + "start": 4175.5, + "end": 4175.7, + "probability": 0.99951171875 + }, + { + "word": " running.", + "start": 4175.7, + "end": 4176.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1657, + "text": "Oh, yeah, we are.", + "start": 4176.28, + "end": 4176.88, + "words": [ + { + "word": " Oh,", + "start": 4176.28, + "end": 4176.52, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 4176.52, + "end": 4176.66, + "probability": 0.99853515625 + }, + { + "word": " we", + "start": 4176.68, + "end": 4176.78, + "probability": 1.0 + }, + { + "word": " are.", + "start": 4176.78, + "end": 4176.88, + "probability": 1.0 + } + ] + }, + { + "id": 1658, + "text": "Arizona Computer Guru is up for Best of Tucson in the finalists category.", + "start": 4176.96, + "end": 4180.86, + "words": [ + { + "word": " Arizona", + "start": 4176.96, + "end": 4177.26, + "probability": 0.99365234375 + }, + { + "word": " Computer", + "start": 4177.26, + "end": 4177.42, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 4177.42, + "end": 4177.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 4177.72, + "end": 4178.38, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4178.38, + "end": 4178.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 4178.56, + "end": 4178.78, + "probability": 1.0 + }, + { + "word": " Best", + "start": 4178.78, + "end": 4179.06, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4179.06, + "end": 4179.3, + "probability": 1.0 + }, + { + "word": " Tucson", + "start": 4179.3, + "end": 4179.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 4179.58, + "end": 4179.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4179.8, + "end": 4179.86, + "probability": 1.0 + }, + { + "word": " finalists", + "start": 4179.86, + "end": 4180.44, + "probability": 0.9482421875 + }, + { + "word": " category.", + "start": 4180.44, + "end": 4180.86, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1659, + "text": "Yeah, so you should take an opportunity to go over to the Tucson Weekly site", + "start": 4180.86, + "end": 4187.64, + "words": [ + { + "word": " Yeah,", + "start": 4180.86, + "end": 4181.22, + "probability": 0.70361328125 + }, + { + "word": " so", + "start": 4181.22, + "end": 4181.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 4181.26, + "end": 4181.86, + "probability": 0.99365234375 + }, + { + "word": " should", + "start": 4181.86, + "end": 4182.08, + "probability": 1.0 + }, + { + "word": " take", + "start": 4182.08, + "end": 4182.24, + "probability": 1.0 + }, + { + "word": " an", + "start": 4182.24, + "end": 4182.38, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 4182.38, + "end": 4182.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 4182.68, + "end": 4183.58, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 4183.58, + "end": 4183.76, + "probability": 1.0 + }, + { + "word": " over", + "start": 4183.76, + "end": 4184.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 4184.06, + "end": 4184.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 4184.4, + "end": 4185.98, + "probability": 0.9921875 + }, + { + "word": " Tucson", + "start": 4185.98, + "end": 4187.04, + "probability": 1.0 + }, + { + "word": " Weekly", + "start": 4187.04, + "end": 4187.28, + "probability": 0.8671875 + }, + { + "word": " site", + "start": 4187.28, + "end": 4187.64, + "probability": 1.0 + } + ] + }, + { + "id": 1660, + "text": "and vote for Arizona Computer Guru in the Best of Tucson.", + "start": 4187.64, + "end": 4191.58, + "words": [ + { + "word": " and", + "start": 4187.64, + "end": 4188.16, + "probability": 0.90283203125 + }, + { + "word": " vote", + "start": 4188.16, + "end": 4188.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 4188.72, + "end": 4189.06, + "probability": 1.0 + }, + { + "word": " Arizona", + "start": 4189.06, + "end": 4189.58, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 4189.58, + "end": 4189.88, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 4189.88, + "end": 4190.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 4190.3, + "end": 4191.0, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 4191.0, + "end": 4191.04, + "probability": 1.0 + }, + { + "word": " Best", + "start": 4191.04, + "end": 4191.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 4191.22, + "end": 4191.36, + "probability": 1.0 + }, + { + "word": " Tucson.", + "start": 4191.36, + "end": 4191.58, + "probability": 1.0 + } + ] + }, + { + "id": 1661, + "text": "We posted it on our Facebook and all of our social,", + "start": 4191.66, + "end": 4193.88, + "words": [ + { + "word": " We", + "start": 4191.66, + "end": 4191.96, + "probability": 0.9990234375 + }, + { + "word": " posted", + "start": 4191.96, + "end": 4192.28, + "probability": 0.986328125 + }, + { + "word": " it", + "start": 4192.28, + "end": 4192.46, + "probability": 1.0 + }, + { + "word": " on", + "start": 4192.46, + "end": 4192.52, + "probability": 1.0 + }, + { + "word": " our", + "start": 4192.52, + "end": 4192.64, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 4192.64, + "end": 4192.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 4192.96, + "end": 4193.22, + "probability": 1.0 + }, + { + "word": " all", + "start": 4193.22, + "end": 4193.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 4193.36, + "end": 4193.5, + "probability": 1.0 + }, + { + "word": " our", + "start": 4193.5, + "end": 4193.58, + "probability": 1.0 + }, + { + "word": " social,", + "start": 4193.58, + "end": 4193.88, + "probability": 1.0 + } + ] + }, + { + "id": 1662, + "text": "but if you just Google search Best of Tucson finalists,", + "start": 4193.96, + "end": 4195.96, + "words": [ + { + "word": " but", + "start": 4193.96, + "end": 4194.08, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 4194.08, + "end": 4194.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4194.16, + "end": 4194.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 4194.26, + "end": 4194.38, + "probability": 1.0 + }, + { + "word": " Google", + "start": 4194.38, + "end": 4194.58, + "probability": 0.9990234375 + }, + { + "word": " search", + "start": 4194.58, + "end": 4194.8, + "probability": 0.99658203125 + }, + { + "word": " Best", + "start": 4194.8, + "end": 4195.04, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4195.04, + "end": 4195.16, + "probability": 1.0 + }, + { + "word": " Tucson", + "start": 4195.16, + "end": 4195.34, + "probability": 1.0 + }, + { + "word": " finalists,", + "start": 4195.34, + "end": 4195.96, + "probability": 0.89453125 + } + ] + }, + { + "id": 1663, + "text": "you can go vote for us.", + "start": 4195.98, + "end": 4196.88, + "words": [ + { + "word": " you", + "start": 4195.98, + "end": 4196.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 4196.16, + "end": 4196.28, + "probability": 1.0 + }, + { + "word": " go", + "start": 4196.28, + "end": 4196.38, + "probability": 1.0 + }, + { + "word": " vote", + "start": 4196.38, + "end": 4196.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 4196.56, + "end": 4196.68, + "probability": 1.0 + }, + { + "word": " us.", + "start": 4196.68, + "end": 4196.88, + "probability": 1.0 + } + ] + }, + { + "id": 1664, + "text": "Yeah.", + "start": 4197.06, + "end": 4197.46, + "words": [ + { + "word": " Yeah.", + "start": 4197.06, + "end": 4197.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1665, + "text": "So we're going to take a quick break.", + "start": 4197.64, + "end": 4199.2, + "words": [ + { + "word": " So", + "start": 4197.64, + "end": 4198.04, + "probability": 0.92529296875 + }, + { + "word": " we're", + "start": 4198.04, + "end": 4198.82, + "probability": 0.90234375 + }, + { + "word": " going", + "start": 4198.82, + "end": 4198.86, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4198.86, + "end": 4198.92, + "probability": 1.0 + }, + { + "word": " take", + "start": 4198.92, + "end": 4199.06, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4199.06, + "end": 4199.08, + "probability": 0.775390625 + }, + { + "word": " quick", + "start": 4199.08, + "end": 4199.2, + "probability": 0.3837890625 + }, + { + "word": " break.", + "start": 4199.2, + "end": 4199.2, + "probability": 0.86279296875 + } + ] + }, + { + "id": 1666, + "text": "You can give us a call at 790-2040 if you want to be part of the show.", + "start": 4199.22, + "end": 4202.18, + "words": [ + { + "word": " You", + "start": 4199.22, + "end": 4199.46, + "probability": 0.0098876953125 + }, + { + "word": " can", + "start": 4199.46, + "end": 4199.72, + "probability": 0.94091796875 + }, + { + "word": " give", + "start": 4199.72, + "end": 4199.84, + "probability": 0.990234375 + }, + { + "word": " us", + "start": 4199.84, + "end": 4200.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4200.0, + "end": 4200.06, + "probability": 1.0 + }, + { + "word": " call", + "start": 4200.06, + "end": 4200.18, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 4200.18, + "end": 4200.32, + "probability": 0.9951171875 + }, + { + "word": " 790", + "start": 4200.32, + "end": 4200.72, + "probability": 0.9970703125 + }, + { + "word": "-2040", + "start": 4200.72, + "end": 4201.34, + "probability": 0.99169921875 + }, + { + "word": " if", + "start": 4201.34, + "end": 4201.52, + "probability": 0.97216796875 + }, + { + "word": " you", + "start": 4201.52, + "end": 4201.56, + "probability": 1.0 + }, + { + "word": " want", + "start": 4201.56, + "end": 4201.64, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4201.64, + "end": 4201.7, + "probability": 1.0 + }, + { + "word": " be", + "start": 4201.7, + "end": 4201.74, + "probability": 1.0 + }, + { + "word": " part", + "start": 4201.74, + "end": 4201.88, + "probability": 0.92724609375 + }, + { + "word": " of", + "start": 4201.88, + "end": 4201.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 4201.98, + "end": 4202.0, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4202.0, + "end": 4202.18, + "probability": 1.0 + } + ] + }, + { + "id": 1667, + "text": "We'll be right back.", + "start": 4202.28, + "end": 4202.94, + "words": [ + { + "word": " We'll", + "start": 4202.28, + "end": 4202.58, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 4202.58, + "end": 4202.64, + "probability": 1.0 + }, + { + "word": " right", + "start": 4202.64, + "end": 4202.78, + "probability": 1.0 + }, + { + "word": " back.", + "start": 4202.78, + "end": 4202.94, + "probability": 1.0 + } + ] + }, + { + "id": 1668, + "text": "Whether you're dealing with hardware installation or, heaven forbid, a virus...", + "start": 4211.080000000001, + "end": 4215.1, + "words": [ + { + "word": " Whether", + "start": 4211.080000000001, + "end": 4211.56, + "probability": 0.471923828125 + }, + { + "word": " you're", + "start": 4211.56, + "end": 4211.9, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 4211.9, + "end": 4212.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 4212.16, + "end": 4212.38, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 4212.38, + "end": 4212.64, + "probability": 0.99951171875 + }, + { + "word": " installation", + "start": 4212.64, + "end": 4213.06, + "probability": 0.99951171875 + }, + { + "word": " or,", + "start": 4213.06, + "end": 4213.54, + "probability": 0.9970703125 + }, + { + "word": " heaven", + "start": 4213.56, + "end": 4213.76, + "probability": 0.9990234375 + }, + { + "word": " forbid,", + "start": 4213.76, + "end": 4214.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 4214.3, + "end": 4214.58, + "probability": 1.0 + }, + { + "word": " virus...", + "start": 4214.58, + "end": 4215.1, + "probability": 0.58447265625 + } + ] + }, + { + "id": 1669, + "text": "No!", + "start": 4215.1, + "end": 4215.26, + "words": [ + { + "word": " No!", + "start": 4215.1, + "end": 4215.26, + "probability": 0.90576171875 + } + ] + }, + { + "id": 1670, + "text": "No!", + "start": 4215.56, + "end": 4216.04, + "words": [ + { + "word": " No!", + "start": 4215.56, + "end": 4216.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1671, + "text": "No!", + "start": 4216.12, + "end": 4216.4, + "words": [ + { + "word": " No!", + "start": 4216.12, + "end": 4216.4, + "probability": 0.93603515625 + } + ] + }, + { + "id": 1672, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 4216.9800000000005, + "end": 4220.12, + "words": [ + { + "word": " Mike", + "start": 4216.9800000000005, + "end": 4217.46, + "probability": 0.8134765625 + }, + { + "word": " Swanson", + "start": 4217.46, + "end": 4217.9, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4217.9, + "end": 4218.16, + "probability": 1.0 + }, + { + "word": " answering", + "start": 4218.16, + "end": 4218.48, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4218.48, + "end": 4218.8, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4218.8, + "end": 4219.0, + "probability": 0.9990234375 + }, + { + "word": " questions", + "start": 4219.0, + "end": 4219.36, + "probability": 1.0 + }, + { + "word": " one", + "start": 4219.36, + "end": 4219.66, + "probability": 0.99853515625 + }, + { + "word": " by", + "start": 4219.66, + "end": 4219.88, + "probability": 0.986328125 + }, + { + "word": " one.", + "start": 4219.88, + "end": 4220.12, + "probability": 1.0 + } + ] + }, + { + "id": 1673, + "text": "So call in or chat in with yours.", + "start": 4220.24, + "end": 4222.26, + "words": [ + { + "word": " So", + "start": 4220.24, + "end": 4220.58, + "probability": 1.0 + }, + { + "word": " call", + "start": 4220.58, + "end": 4220.78, + "probability": 0.98779296875 + }, + { + "word": " in", + "start": 4220.78, + "end": 4221.02, + "probability": 1.0 + }, + { + "word": " or", + "start": 4221.02, + "end": 4221.26, + "probability": 0.951171875 + }, + { + "word": " chat", + "start": 4221.26, + "end": 4221.52, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 4221.52, + "end": 4221.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 4221.78, + "end": 4222.02, + "probability": 0.99951171875 + }, + { + "word": " yours.", + "start": 4222.02, + "end": 4222.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1674, + "text": "The website?", + "start": 4222.56, + "end": 4223.26, + "words": [ + { + "word": " The", + "start": 4222.56, + "end": 4222.9, + "probability": 0.99853515625 + }, + { + "word": " website?", + "start": 4222.9, + "end": 4223.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1675, + "text": "Gurushow.com.", + "start": 4223.72, + "end": 4224.78, + "words": [ + { + "word": " Gurushow", + "start": 4223.72, + "end": 4224.2, + "probability": 0.77587890625 + }, + { + "word": ".com.", + "start": 4224.2, + "end": 4224.78, + "probability": 1.0 + } + ] + }, + { + "id": 1676, + "text": "Tune in, click in, and kick back.", + "start": 4225.14, + "end": 4227.38, + "words": [ + { + "word": " Tune", + "start": 4225.14, + "end": 4225.62, + "probability": 0.9990234375 + }, + { + "word": " in,", + "start": 4225.62, + "end": 4225.82, + "probability": 1.0 + }, + { + "word": " click", + "start": 4225.92, + "end": 4226.3, + "probability": 1.0 + }, + { + "word": " in,", + "start": 4226.3, + "end": 4226.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 4226.62, + "end": 4226.92, + "probability": 1.0 + }, + { + "word": " kick", + "start": 4226.92, + "end": 4227.06, + "probability": 0.99560546875 + }, + { + "word": " back.", + "start": 4227.06, + "end": 4227.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1677, + "text": "This is the...", + "start": 4227.64, + "end": 4228.66, + "words": [ + { + "word": " This", + "start": 4227.64, + "end": 4228.12, + "probability": 0.99462890625 + }, + { + "word": " is", + "start": 4228.12, + "end": 4228.48, + "probability": 0.998046875 + }, + { + "word": " the...", + "start": 4228.48, + "end": 4228.66, + "probability": 0.335205078125 + } + ] + }, + { + "id": 1678, + "text": "Guru Show on AM 1030, KVOI, The Voice.", + "start": 4229.22, + "end": 4232.42, + "words": [ + { + "word": " Guru", + "start": 4229.22, + "end": 4229.28, + "probability": 0.00018084049224853516 + }, + { + "word": " Show", + "start": 4229.28, + "end": 4229.54, + "probability": 0.8984375 + }, + { + "word": " on", + "start": 4229.54, + "end": 4229.98, + "probability": 0.98095703125 + }, + { + "word": " AM", + "start": 4229.98, + "end": 4230.3, + "probability": 0.98388671875 + }, + { + "word": " 1030,", + "start": 4230.3, + "end": 4230.9, + "probability": 0.8701171875 + }, + { + "word": " KVOI,", + "start": 4231.12, + "end": 4231.98, + "probability": 0.82470703125 + }, + { + "word": " The", + "start": 4231.98, + "end": 4232.16, + "probability": 0.998046875 + }, + { + "word": " Voice.", + "start": 4232.16, + "end": 4232.42, + "probability": 1.0 + } + ] + }, + { + "id": 1679, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 4235.16, + "end": 4238.22, + "words": [ + { + "word": " Mike", + "start": 4235.16, + "end": 4235.68, + "probability": 0.9599609375 + }, + { + "word": " Swanson,", + "start": 4235.68, + "end": 4236.08, + "probability": 0.99462890625 + }, + { + "word": " your", + "start": 4236.2, + "end": 4236.36, + "probability": 0.99169921875 + }, + { + "word": " computer", + "start": 4236.36, + "end": 4236.72, + "probability": 0.9892578125 + }, + { + "word": " guru,", + "start": 4236.72, + "end": 4237.14, + "probability": 1.0 + }, + { + "word": " is", + "start": 4237.22, + "end": 4237.46, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4237.46, + "end": 4237.68, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4237.68, + "end": 4237.8, + "probability": 1.0 + }, + { + "word": " click", + "start": 4237.8, + "end": 4238.0, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 4238.0, + "end": 4238.22, + "probability": 1.0 + } + ] + }, + { + "id": 1680, + "text": "Listen and watch at gurushow.com.", + "start": 4238.4, + "end": 4240.56, + "words": [ + { + "word": " Listen", + "start": 4238.4, + "end": 4238.86, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4238.86, + "end": 4239.06, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4239.06, + "end": 4239.34, + "probability": 1.0 + }, + { + "word": " at", + "start": 4239.34, + "end": 4239.52, + "probability": 0.99560546875 + }, + { + "word": " gurushow", + "start": 4239.52, + "end": 4240.06, + "probability": 0.9326171875 + }, + { + "word": ".com.", + "start": 4240.06, + "end": 4240.56, + "probability": 1.0 + } + ] + }, + { + "id": 1681, + "text": "This is the Computer Guru Show on KVOI, The Voice.", + "start": 4240.8, + "end": 4244.56, + "words": [ + { + "word": " This", + "start": 4240.8, + "end": 4241.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 4241.32, + "end": 4241.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 4241.68, + "end": 4241.74, + "probability": 0.1671142578125 + }, + { + "word": " Computer", + "start": 4241.74, + "end": 4241.98, + "probability": 0.982421875 + }, + { + "word": " Guru", + "start": 4241.98, + "end": 4242.34, + "probability": 0.99951171875 + }, + { + "word": " Show", + "start": 4242.34, + "end": 4242.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 4242.72, + "end": 4243.14, + "probability": 0.99755859375 + }, + { + "word": " KVOI,", + "start": 4243.14, + "end": 4243.86, + "probability": 0.99951171875 + }, + { + "word": " The", + "start": 4244.02, + "end": 4244.28, + "probability": 1.0 + }, + { + "word": " Voice.", + "start": 4244.28, + "end": 4244.56, + "probability": 1.0 + } + ] + }, + { + "id": 1682, + "text": "Well, let's talk about Windows upgrades for a moment.", + "start": 4246.68, + "end": 4249.26, + "words": [ + { + "word": " Well,", + "start": 4246.68, + "end": 4247.2, + "probability": 0.309814453125 + }, + { + "word": " let's", + "start": 4247.22, + "end": 4247.52, + "probability": 1.0 + }, + { + "word": " talk", + "start": 4247.52, + "end": 4247.68, + "probability": 1.0 + }, + { + "word": " about", + "start": 4247.68, + "end": 4247.96, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4247.96, + "end": 4248.24, + "probability": 0.99853515625 + }, + { + "word": " upgrades", + "start": 4248.24, + "end": 4248.52, + "probability": 0.783203125 + }, + { + "word": " for", + "start": 4248.52, + "end": 4248.88, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4248.88, + "end": 4249.0, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 4249.0, + "end": 4249.26, + "probability": 1.0 + } + ] + }, + { + "id": 1683, + "text": "Again.", + "start": 4249.92, + "end": 4250.44, + "words": [ + { + "word": " Again.", + "start": 4249.92, + "end": 4250.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1684, + "text": "Again.", + "start": 4250.52, + "end": 4251.04, + "words": [ + { + "word": " Again.", + "start": 4250.52, + "end": 4251.04, + "probability": 0.9521484375 + } + ] + }, + { + "id": 1685, + "text": "And the only reason is because I'm sitting here reading this subject here, right?", + "start": 4251.42, + "end": 4256.76, + "words": [ + { + "word": " And", + "start": 4251.42, + "end": 4251.94, + "probability": 0.70751953125 + }, + { + "word": " the", + "start": 4251.94, + "end": 4252.18, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 4252.18, + "end": 4252.42, + "probability": 0.453857421875 + }, + { + "word": " reason", + "start": 4252.42, + "end": 4252.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 4252.7, + "end": 4252.88, + "probability": 1.0 + }, + { + "word": " because", + "start": 4252.88, + "end": 4253.08, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4253.08, + "end": 4253.32, + "probability": 1.0 + }, + { + "word": " sitting", + "start": 4253.32, + "end": 4253.44, + "probability": 1.0 + }, + { + "word": " here", + "start": 4253.44, + "end": 4253.58, + "probability": 1.0 + }, + { + "word": " reading", + "start": 4253.58, + "end": 4253.94, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4253.94, + "end": 4254.36, + "probability": 0.79296875 + }, + { + "word": " subject", + "start": 4254.36, + "end": 4255.8, + "probability": 0.84326171875 + }, + { + "word": " here,", + "start": 4255.8, + "end": 4256.32, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 4256.46, + "end": 4256.76, + "probability": 0.69873046875 + } + ] + }, + { + "id": 1686, + "text": "Because when you guys call in, I get,", + "start": 4256.78, + "end": 4258.98, + "words": [ + { + "word": " Because", + "start": 4256.78, + "end": 4256.96, + "probability": 0.98193359375 + }, + { + "word": " when", + "start": 4256.96, + "end": 4257.48, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4257.48, + "end": 4257.86, + "probability": 1.0 + }, + { + "word": " guys", + "start": 4257.86, + "end": 4258.0, + "probability": 1.0 + }, + { + "word": " call", + "start": 4258.0, + "end": 4258.18, + "probability": 1.0 + }, + { + "word": " in,", + "start": 4258.18, + "end": 4258.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 4258.56, + "end": 4258.78, + "probability": 0.99951171875 + }, + { + "word": " get,", + "start": 4258.78, + "end": 4258.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1687, + "text": "generally, I get a name and three words about,", + "start": 4259.22, + "end": 4264.72, + "words": [ + { + "word": " generally,", + "start": 4259.22, + "end": 4259.4, + "probability": 0.131103515625 + }, + { + "word": " I", + "start": 4259.52, + "end": 4259.68, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 4259.68, + "end": 4259.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 4259.84, + "end": 4260.06, + "probability": 1.0 + }, + { + "word": " name", + "start": 4260.06, + "end": 4261.34, + "probability": 0.9755859375 + }, + { + "word": " and", + "start": 4261.34, + "end": 4262.34, + "probability": 0.9560546875 + }, + { + "word": " three", + "start": 4262.34, + "end": 4263.18, + "probability": 0.51904296875 + }, + { + "word": " words", + "start": 4263.18, + "end": 4264.3, + "probability": 1.0 + }, + { + "word": " about,", + "start": 4264.3, + "end": 4264.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1688, + "text": "this is sort of what this is about.", + "start": 4264.84, + "end": 4266.46, + "words": [ + { + "word": " this", + "start": 4264.84, + "end": 4265.28, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 4265.28, + "end": 4265.42, + "probability": 1.0 + }, + { + "word": " sort", + "start": 4265.42, + "end": 4265.7, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4265.7, + "end": 4265.8, + "probability": 1.0 + }, + { + "word": " what", + "start": 4265.8, + "end": 4265.88, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4265.88, + "end": 4266.06, + "probability": 1.0 + }, + { + "word": " is", + "start": 4266.06, + "end": 4266.18, + "probability": 1.0 + }, + { + "word": " about.", + "start": 4266.18, + "end": 4266.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1689, + "text": "And that's all I get, generally.", + "start": 4266.78, + "end": 4268.6, + "words": [ + { + "word": " And", + "start": 4266.78, + "end": 4267.14, + "probability": 0.70556640625 + }, + { + "word": " that's", + "start": 4267.14, + "end": 4267.9, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 4267.9, + "end": 4267.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 4267.96, + "end": 4268.08, + "probability": 1.0 + }, + { + "word": " get,", + "start": 4268.08, + "end": 4268.24, + "probability": 1.0 + }, + { + "word": " generally.", + "start": 4268.28, + "end": 4268.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1690, + "text": "But this one has an LOL in it.", + "start": 4269.460000000001, + "end": 4271.92, + "words": [ + { + "word": " But", + "start": 4269.460000000001, + "end": 4269.820000000001, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 4269.820000000001, + "end": 4270.18, + "probability": 0.998046875 + }, + { + "word": " one", + "start": 4270.18, + "end": 4270.36, + "probability": 1.0 + }, + { + "word": " has", + "start": 4270.36, + "end": 4271.08, + "probability": 0.74853515625 + }, + { + "word": " an", + "start": 4271.08, + "end": 4271.32, + "probability": 0.99951171875 + }, + { + "word": " LOL", + "start": 4271.32, + "end": 4271.56, + "probability": 0.9521484375 + }, + { + "word": " in", + "start": 4271.56, + "end": 4271.86, + "probability": 0.91943359375 + }, + { + "word": " it.", + "start": 4271.86, + "end": 4271.92, + "probability": 1.0 + } + ] + }, + { + "id": 1691, + "text": "Is that yours, Kent, or his?", + "start": 4274.3, + "end": 4275.62, + "words": [ + { + "word": " Is", + "start": 4274.3, + "end": 4274.66, + "probability": 0.994140625 + }, + { + "word": " that", + "start": 4274.66, + "end": 4274.84, + "probability": 1.0 + }, + { + "word": " yours,", + "start": 4274.84, + "end": 4275.04, + "probability": 0.99755859375 + }, + { + "word": " Kent,", + "start": 4275.12, + "end": 4275.28, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 4275.32, + "end": 4275.46, + "probability": 1.0 + }, + { + "word": " his?", + "start": 4275.46, + "end": 4275.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 1692, + "text": "It's his.", + "start": 4275.8, + "end": 4276.34, + "words": [ + { + "word": " It's", + "start": 4275.8, + "end": 4276.16, + "probability": 0.87841796875 + }, + { + "word": " his.", + "start": 4276.16, + "end": 4276.34, + "probability": 1.0 + } + ] + }, + { + "id": 1693, + "text": "Let's go ahead and bring him on here.", + "start": 4278.320000000001, + "end": 4279.3, + "words": [ + { + "word": " Let's", + "start": 4278.320000000001, + "end": 4278.68, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 4278.68, + "end": 4278.76, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 4278.76, + "end": 4278.86, + "probability": 0.410400390625 + }, + { + "word": " and", + "start": 4278.86, + "end": 4278.9, + "probability": 1.0 + }, + { + "word": " bring", + "start": 4278.9, + "end": 4279.0, + "probability": 0.99951171875 + }, + { + "word": " him", + "start": 4279.0, + "end": 4279.08, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4279.08, + "end": 4279.18, + "probability": 0.88037109375 + }, + { + "word": " here.", + "start": 4279.18, + "end": 4279.3, + "probability": 1.0 + } + ] + }, + { + "id": 1694, + "text": "Let's talk to Aaron.", + "start": 4279.42, + "end": 4279.96, + "words": [ + { + "word": " Let's", + "start": 4279.42, + "end": 4279.66, + "probability": 0.998046875 + }, + { + "word": " talk", + "start": 4279.66, + "end": 4279.74, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4279.74, + "end": 4279.84, + "probability": 1.0 + }, + { + "word": " Aaron.", + "start": 4279.84, + "end": 4279.96, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1695, + "text": "Hello, Aaron.", + "start": 4280.04, + "end": 4280.4, + "words": [ + { + "word": " Hello,", + "start": 4280.04, + "end": 4280.2, + "probability": 0.994140625 + }, + { + "word": " Aaron.", + "start": 4280.24, + "end": 4280.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1696, + "text": "Well, hi.", + "start": 4281.700000000001, + "end": 4282.26, + "words": [ + { + "word": " Well,", + "start": 4281.700000000001, + "end": 4282.06, + "probability": 0.9833984375 + }, + { + "word": " hi.", + "start": 4282.1, + "end": 4282.26, + "probability": 1.0 + } + ] + }, + { + "id": 1697, + "text": "Tell me about your issue.", + "start": 4283.38, + "end": 4284.62, + "words": [ + { + "word": " Tell", + "start": 4283.38, + "end": 4283.74, + "probability": 0.99853515625 + }, + { + "word": " me", + "start": 4283.74, + "end": 4283.82, + "probability": 1.0 + }, + { + "word": " about", + "start": 4283.82, + "end": 4284.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 4284.22, + "end": 4284.42, + "probability": 0.99951171875 + }, + { + "word": " issue.", + "start": 4284.42, + "end": 4284.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 1698, + "text": "As I mentioned to the screener,", + "start": 4285.4800000000005, + "end": 4287.76, + "words": [ + { + "word": " As", + "start": 4285.4800000000005, + "end": 4285.84, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 4285.84, + "end": 4286.0, + "probability": 1.0 + }, + { + "word": " mentioned", + "start": 4286.0, + "end": 4286.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 4286.3, + "end": 4286.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4286.48, + "end": 4286.74, + "probability": 1.0 + }, + { + "word": " screener,", + "start": 4286.74, + "end": 4287.76, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1699, + "text": "I'm doing...", + "start": 4288.360000000001, + "end": 4289.08, + "words": [ + { + "word": " I'm", + "start": 4288.360000000001, + "end": 4288.72, + "probability": 0.99951171875 + }, + { + "word": " doing...", + "start": 4288.72, + "end": 4289.08, + "probability": 0.5390625 + } + ] + }, + { + "id": 1700, + "text": "I'm doing Windows 10 upgrades with only CenturyLink type of downloads.", + "start": 4289.08, + "end": 4294.14, + "words": [ + { + "word": " I'm", + "start": 4289.08, + "end": 4289.16, + "probability": 0.2293701171875 + }, + { + "word": " doing", + "start": 4289.16, + "end": 4289.16, + "probability": 0.82666015625 + }, + { + "word": " Windows", + "start": 4289.16, + "end": 4289.4, + "probability": 0.96044921875 + }, + { + "word": " 10", + "start": 4289.4, + "end": 4289.72, + "probability": 0.99462890625 + }, + { + "word": " upgrades", + "start": 4289.72, + "end": 4290.28, + "probability": 0.96435546875 + }, + { + "word": " with", + "start": 4290.28, + "end": 4291.42, + "probability": 0.97119140625 + }, + { + "word": " only", + "start": 4291.42, + "end": 4291.88, + "probability": 0.99658203125 + }, + { + "word": " CenturyLink", + "start": 4291.88, + "end": 4293.22, + "probability": 0.8291015625 + }, + { + "word": " type", + "start": 4293.22, + "end": 4293.5, + "probability": 0.9814453125 + }, + { + "word": " of", + "start": 4293.5, + "end": 4293.68, + "probability": 0.99755859375 + }, + { + "word": " downloads.", + "start": 4293.68, + "end": 4294.14, + "probability": 0.84521484375 + } + ] + }, + { + "id": 1701, + "text": "Yeah, that definitely requires an LOL.", + "start": 4295.120000000001, + "end": 4296.86, + "words": [ + { + "word": " Yeah,", + "start": 4295.120000000001, + "end": 4295.6, + "probability": 0.77880859375 + }, + { + "word": " that", + "start": 4295.62, + "end": 4295.72, + "probability": 0.99658203125 + }, + { + "word": " definitely", + "start": 4295.72, + "end": 4296.02, + "probability": 0.99853515625 + }, + { + "word": " requires", + "start": 4296.02, + "end": 4296.32, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 4296.32, + "end": 4296.62, + "probability": 0.994140625 + }, + { + "word": " LOL.", + "start": 4296.62, + "end": 4296.86, + "probability": 0.94580078125 + } + ] + }, + { + "id": 1702, + "text": "That's where the LOL comes in.", + "start": 4296.94, + "end": 4298.12, + "words": [ + { + "word": " That's", + "start": 4296.94, + "end": 4297.18, + "probability": 0.9931640625 + }, + { + "word": " where", + "start": 4297.18, + "end": 4297.2, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 4297.2, + "end": 4297.38, + "probability": 0.99951171875 + }, + { + "word": " LOL", + "start": 4297.38, + "end": 4297.58, + "probability": 0.481201171875 + }, + { + "word": " comes", + "start": 4297.58, + "end": 4297.82, + "probability": 1.0 + }, + { + "word": " in.", + "start": 4297.82, + "end": 4298.12, + "probability": 1.0 + } + ] + }, + { + "id": 1703, + "text": "Yeah, it's just not cutting it.", + "start": 4299.0, + "end": 4300.82, + "words": [ + { + "word": " Yeah,", + "start": 4299.0, + "end": 4299.48, + "probability": 0.958984375 + }, + { + "word": " it's", + "start": 4299.54, + "end": 4299.9, + "probability": 1.0 + }, + { + "word": " just", + "start": 4299.9, + "end": 4300.08, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 4300.08, + "end": 4300.3, + "probability": 0.99951171875 + }, + { + "word": " cutting", + "start": 4300.3, + "end": 4300.68, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 4300.68, + "end": 4300.82, + "probability": 1.0 + } + ] + }, + { + "id": 1704, + "text": "You're right.", + "start": 4301.68, + "end": 4302.42, + "words": [ + { + "word": " You're", + "start": 4301.68, + "end": 4302.16, + "probability": 0.99853515625 + }, + { + "word": " right.", + "start": 4302.16, + "end": 4302.42, + "probability": 1.0 + } + ] + }, + { + "id": 1705, + "text": "I mean, I'm sorry.", + "start": 4303.080000000001, + "end": 4304.24, + "words": [ + { + "word": " I", + "start": 4303.080000000001, + "end": 4303.56, + "probability": 0.9931640625 + }, + { + "word": " mean,", + "start": 4303.56, + "end": 4303.82, + "probability": 0.96728515625 + }, + { + "word": " I'm", + "start": 4303.84, + "end": 4304.02, + "probability": 1.0 + }, + { + "word": " sorry.", + "start": 4304.02, + "end": 4304.24, + "probability": 1.0 + } + ] + }, + { + "id": 1706, + "text": "I'm shocked.", + "start": 4304.34, + "end": 4304.66, + "words": [ + { + "word": " I'm", + "start": 4304.34, + "end": 4304.42, + "probability": 1.0 + }, + { + "word": " shocked.", + "start": 4304.42, + "end": 4304.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1707, + "text": "I'm surprised.", + "start": 4304.92, + "end": 4305.56, + "words": [ + { + "word": " I'm", + "start": 4304.92, + "end": 4304.96, + "probability": 1.0 + }, + { + "word": " surprised.", + "start": 4304.96, + "end": 4305.56, + "probability": 1.0 + } + ] + }, + { + "id": 1708, + "text": "CenturyLink isn't amazingly fast.", + "start": 4305.76, + "end": 4307.9, + "words": [ + { + "word": " CenturyLink", + "start": 4305.76, + "end": 4306.24, + "probability": 0.9951171875 + }, + { + "word": " isn't", + "start": 4306.24, + "end": 4306.58, + "probability": 0.9990234375 + }, + { + "word": " amazingly", + "start": 4306.58, + "end": 4307.38, + "probability": 0.99951171875 + }, + { + "word": " fast.", + "start": 4307.38, + "end": 4307.9, + "probability": 1.0 + } + ] + }, + { + "id": 1709, + "text": "No.", + "start": 4308.2, + "end": 4308.68, + "words": [ + { + "word": " No.", + "start": 4308.2, + "end": 4308.68, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1710, + "text": "No, it's not.", + "start": 4309.4800000000005, + "end": 4310.54, + "words": [ + { + "word": " No,", + "start": 4309.4800000000005, + "end": 4309.96, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 4310.1, + "end": 4310.38, + "probability": 1.0 + }, + { + "word": " not.", + "start": 4310.38, + "end": 4310.54, + "probability": 1.0 + } + ] + }, + { + "id": 1711, + "text": "Okay, so how many machines do you have?", + "start": 4312.22, + "end": 4315.12, + "words": [ + { + "word": " Okay,", + "start": 4312.22, + "end": 4312.7, + "probability": 0.9736328125 + }, + { + "word": " so", + "start": 4312.82, + "end": 4313.06, + "probability": 1.0 + }, + { + "word": " how", + "start": 4313.06, + "end": 4313.54, + "probability": 0.98779296875 + }, + { + "word": " many", + "start": 4313.54, + "end": 4314.5, + "probability": 1.0 + }, + { + "word": " machines", + "start": 4314.5, + "end": 4314.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 4314.74, + "end": 4314.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 4314.9, + "end": 4314.98, + "probability": 1.0 + }, + { + "word": " have?", + "start": 4314.98, + "end": 4315.12, + "probability": 1.0 + } + ] + }, + { + "id": 1712, + "text": "Two.", + "start": 4316.3, + "end": 4316.78, + "words": [ + { + "word": " Two.", + "start": 4316.3, + "end": 4316.78, + "probability": 1.0 + } + ] + }, + { + "id": 1713, + "text": "Two of them, okay.", + "start": 4316.86, + "end": 4317.66, + "words": [ + { + "word": " Two", + "start": 4316.86, + "end": 4317.34, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 4317.34, + "end": 4317.4, + "probability": 0.955078125 + }, + { + "word": " them,", + "start": 4317.4, + "end": 4317.52, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 4317.52, + "end": 4317.66, + "probability": 1.0 + } + ] + }, + { + "id": 1714, + "text": "Okay.", + "start": 4317.74, + "end": 4318.2, + "words": [ + { + "word": " Okay.", + "start": 4317.74, + "end": 4318.2, + "probability": 0.04034423828125 + } + ] + }, + { + "id": 1715, + "text": "And are...", + "start": 4318.2, + "end": 4319.04, + "words": [ + { + "word": " And", + "start": 4318.2, + "end": 4318.22, + "probability": 0.89404296875 + }, + { + "word": " are...", + "start": 4318.22, + "end": 4319.04, + "probability": 0.5244140625 + } + ] + }, + { + "id": 1716, + "text": "Are they both desktops, or is one of them a laptop?", + "start": 4319.08, + "end": 4320.5, + "words": [ + { + "word": " Are", + "start": 4319.08, + "end": 4319.08, + "probability": 0.9013671875 + }, + { + "word": " they", + "start": 4319.08, + "end": 4319.16, + "probability": 1.0 + }, + { + "word": " both", + "start": 4319.16, + "end": 4319.34, + "probability": 0.99951171875 + }, + { + "word": " desktops,", + "start": 4319.34, + "end": 4319.74, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 4319.74, + "end": 4319.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 4319.88, + "end": 4319.92, + "probability": 1.0 + }, + { + "word": " one", + "start": 4319.92, + "end": 4320.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 4320.04, + "end": 4320.12, + "probability": 1.0 + }, + { + "word": " them", + "start": 4320.12, + "end": 4320.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 4320.22, + "end": 4320.26, + "probability": 0.998046875 + }, + { + "word": " laptop?", + "start": 4320.26, + "end": 4320.5, + "probability": 1.0 + } + ] + }, + { + "id": 1717, + "text": "They're both desktops.", + "start": 4320.96, + "end": 4322.12, + "words": [ + { + "word": " They're", + "start": 4320.96, + "end": 4321.34, + "probability": 0.99951171875 + }, + { + "word": " both", + "start": 4321.34, + "end": 4321.52, + "probability": 1.0 + }, + { + "word": " desktops.", + "start": 4321.52, + "end": 4322.12, + "probability": 1.0 + } + ] + }, + { + "id": 1718, + "text": "Okay.", + "start": 4322.2, + "end": 4322.52, + "words": [ + { + "word": " Okay.", + "start": 4322.2, + "end": 4322.52, + "probability": 0.2919921875 + } + ] + }, + { + "id": 1719, + "text": "But I can bring them...", + "start": 4322.52, + "end": 4323.56, + "words": [ + { + "word": " But", + "start": 4322.52, + "end": 4322.6, + "probability": 0.9658203125 + }, + { + "word": " I", + "start": 4322.6, + "end": 4322.74, + "probability": 0.99609375 + }, + { + "word": " can", + "start": 4322.74, + "end": 4322.9, + "probability": 1.0 + }, + { + "word": " bring", + "start": 4322.9, + "end": 4323.12, + "probability": 0.75537109375 + }, + { + "word": " them...", + "start": 4323.12, + "end": 4323.56, + "probability": 0.51416015625 + } + ] + }, + { + "id": 1720, + "text": "I can take them to any place, even down to your store...", + "start": 4323.56, + "end": 4327.68, + "words": [ + { + "word": " I", + "start": 4323.56, + "end": 4323.96, + "probability": 0.9951171875 + }, + { + "word": " can", + "start": 4323.96, + "end": 4324.16, + "probability": 0.9990234375 + }, + { + "word": " take", + "start": 4324.16, + "end": 4324.54, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 4324.54, + "end": 4324.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4324.76, + "end": 4325.56, + "probability": 0.998046875 + }, + { + "word": " any", + "start": 4325.56, + "end": 4326.1, + "probability": 1.0 + }, + { + "word": " place,", + "start": 4326.1, + "end": 4326.4, + "probability": 0.98779296875 + }, + { + "word": " even", + "start": 4326.5, + "end": 4326.86, + "probability": 1.0 + }, + { + "word": " down", + "start": 4326.86, + "end": 4327.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 4327.12, + "end": 4327.24, + "probability": 1.0 + }, + { + "word": " your", + "start": 4327.24, + "end": 4327.34, + "probability": 1.0 + }, + { + "word": " store...", + "start": 4327.34, + "end": 4327.68, + "probability": 0.763671875 + } + ] + }, + { + "id": 1721, + "text": "Starbucks or something.", + "start": 4327.68, + "end": 4328.64, + "words": [ + { + "word": " Starbucks", + "start": 4327.68, + "end": 4328.32, + "probability": 0.87890625 + }, + { + "word": " or", + "start": 4328.32, + "end": 4328.44, + "probability": 0.998046875 + }, + { + "word": " something.", + "start": 4328.44, + "end": 4328.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1722, + "text": "...and have you guys work on them.", + "start": 4329.42, + "end": 4330.96, + "words": [ + { + "word": " ...and", + "start": 4329.42, + "end": 4329.8, + "probability": 0.916015625 + }, + { + "word": " have", + "start": 4329.8, + "end": 4329.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 4329.98, + "end": 4330.14, + "probability": 0.99951171875 + }, + { + "word": " guys", + "start": 4330.14, + "end": 4330.4, + "probability": 1.0 + }, + { + "word": " work", + "start": 4330.4, + "end": 4330.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 4330.64, + "end": 4330.82, + "probability": 1.0 + }, + { + "word": " them.", + "start": 4330.82, + "end": 4330.96, + "probability": 1.0 + } + ] + }, + { + "id": 1723, + "text": "Yeah, we can do the upgrade for you, because we have really, really fast internet at the", + "start": 4331.14, + "end": 4334.82, + "words": [ + { + "word": " Yeah,", + "start": 4331.14, + "end": 4331.52, + "probability": 0.99462890625 + }, + { + "word": " we", + "start": 4331.54, + "end": 4331.68, + "probability": 0.5888671875 + }, + { + "word": " can", + "start": 4331.68, + "end": 4331.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 4331.98, + "end": 4332.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4332.06, + "end": 4332.18, + "probability": 0.99951171875 + }, + { + "word": " upgrade", + "start": 4332.18, + "end": 4332.32, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 4332.32, + "end": 4332.5, + "probability": 1.0 + }, + { + "word": " you,", + "start": 4332.5, + "end": 4332.64, + "probability": 1.0 + }, + { + "word": " because", + "start": 4332.66, + "end": 4332.84, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 4332.84, + "end": 4333.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 4333.06, + "end": 4333.22, + "probability": 1.0 + }, + { + "word": " really,", + "start": 4333.22, + "end": 4333.52, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 4333.6, + "end": 4333.84, + "probability": 1.0 + }, + { + "word": " fast", + "start": 4333.84, + "end": 4334.12, + "probability": 0.99560546875 + }, + { + "word": " internet", + "start": 4334.12, + "end": 4334.46, + "probability": 0.61474609375 + }, + { + "word": " at", + "start": 4334.46, + "end": 4334.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4334.7, + "end": 4334.82, + "probability": 1.0 + } + ] + }, + { + "id": 1724, + "text": "shop.", + "start": 4334.82, + "end": 4335.04, + "words": [ + { + "word": " shop.", + "start": 4334.82, + "end": 4335.04, + "probability": 0.9638671875 + } + ] + }, + { + "id": 1725, + "text": "Yeah.", + "start": 4335.74, + "end": 4336.12, + "words": [ + { + "word": " Yeah.", + "start": 4335.74, + "end": 4336.12, + "probability": 0.8154296875 + } + ] + }, + { + "id": 1726, + "text": "We can do that for you, or you can take one of them somewhere and download Windows 10,", + "start": 4336.64, + "end": 4343.56, + "words": [ + { + "word": " We", + "start": 4336.64, + "end": 4337.02, + "probability": 0.99462890625 + }, + { + "word": " can", + "start": 4337.02, + "end": 4337.2, + "probability": 1.0 + }, + { + "word": " do", + "start": 4337.2, + "end": 4337.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 4337.28, + "end": 4337.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 4337.4, + "end": 4337.52, + "probability": 1.0 + }, + { + "word": " you,", + "start": 4337.52, + "end": 4337.68, + "probability": 1.0 + }, + { + "word": " or", + "start": 4337.7, + "end": 4337.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4337.84, + "end": 4338.04, + "probability": 1.0 + }, + { + "word": " can", + "start": 4338.04, + "end": 4338.18, + "probability": 1.0 + }, + { + "word": " take", + "start": 4338.18, + "end": 4338.36, + "probability": 1.0 + }, + { + "word": " one", + "start": 4338.36, + "end": 4338.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 4338.58, + "end": 4338.72, + "probability": 1.0 + }, + { + "word": " them", + "start": 4338.72, + "end": 4338.94, + "probability": 1.0 + }, + { + "word": " somewhere", + "start": 4338.94, + "end": 4340.4, + "probability": 0.97705078125 + }, + { + "word": " and", + "start": 4340.4, + "end": 4341.82, + "probability": 0.91015625 + }, + { + "word": " download", + "start": 4341.82, + "end": 4342.74, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 4342.74, + "end": 4343.22, + "probability": 1.0 + }, + { + "word": " 10,", + "start": 4343.22, + "end": 4343.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1727, + "text": "and it'll share it with the other one, just so you know.", + "start": 4343.7, + "end": 4346.3, + "words": [ + { + "word": " and", + "start": 4343.7, + "end": 4343.92, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 4343.92, + "end": 4344.14, + "probability": 0.9931640625 + }, + { + "word": " share", + "start": 4344.14, + "end": 4344.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 4344.38, + "end": 4344.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 4344.66, + "end": 4344.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 4344.94, + "end": 4345.06, + "probability": 1.0 + }, + { + "word": " other", + "start": 4345.06, + "end": 4345.28, + "probability": 1.0 + }, + { + "word": " one,", + "start": 4345.28, + "end": 4345.48, + "probability": 1.0 + }, + { + "word": " just", + "start": 4345.58, + "end": 4345.9, + "probability": 1.0 + }, + { + "word": " so", + "start": 4345.9, + "end": 4346.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 4346.04, + "end": 4346.14, + "probability": 1.0 + }, + { + "word": " know.", + "start": 4346.14, + "end": 4346.3, + "probability": 1.0 + } + ] + }, + { + "id": 1728, + "text": "Oh, yeah.", + "start": 4347.34, + "end": 4347.66, + "words": [ + { + "word": " Oh,", + "start": 4347.34, + "end": 4347.54, + "probability": 0.9990234375 + }, + { + "word": " yeah.", + "start": 4347.54, + "end": 4347.66, + "probability": 1.0 + } + ] + }, + { + "id": 1729, + "text": "Well, I've done...", + "start": 4347.66, + "end": 4348.14, + "words": [ + { + "word": " Well,", + "start": 4347.66, + "end": 4347.78, + "probability": 0.95849609375 + }, + { + "word": " I've", + "start": 4347.8, + "end": 4347.88, + "probability": 1.0 + }, + { + "word": " done...", + "start": 4347.88, + "end": 4348.14, + "probability": 0.52734375 + } + ] + }, + { + "id": 1730, + "text": "I've done the upgrades.", + "start": 4348.14, + "end": 4349.22, + "words": [ + { + "word": " I've", + "start": 4348.14, + "end": 4348.5, + "probability": 0.826171875 + }, + { + "word": " done", + "start": 4348.5, + "end": 4348.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4348.66, + "end": 4348.8, + "probability": 0.99951171875 + }, + { + "word": " upgrades.", + "start": 4348.8, + "end": 4349.22, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1731, + "text": "It's just getting the...", + "start": 4349.32, + "end": 4350.56, + "words": [ + { + "word": " It's", + "start": 4349.32, + "end": 4349.6, + "probability": 0.79296875 + }, + { + "word": " just", + "start": 4349.6, + "end": 4349.6, + "probability": 0.2396240234375 + }, + { + "word": " getting", + "start": 4349.6, + "end": 4349.98, + "probability": 0.96923828125 + }, + { + "word": " the...", + "start": 4349.98, + "end": 4350.56, + "probability": 0.6376953125 + } + ] + }, + { + "id": 1732, + "text": "It's the...", + "start": 4350.56, + "end": 4351.38, + "words": [ + { + "word": " It's", + "start": 4350.56, + "end": 4351.12, + "probability": 0.7412109375 + }, + { + "word": " the...", + "start": 4351.12, + "end": 4351.38, + "probability": 0.880859375 + } + ] + }, + { + "id": 1733, + "text": "You know, periodically, you have to do a Windows upgrade.", + "start": 4351.38, + "end": 4354.4, + "words": [ + { + "word": " You", + "start": 4351.38, + "end": 4352.1, + "probability": 0.93701171875 + }, + { + "word": " know,", + "start": 4352.1, + "end": 4352.22, + "probability": 1.0 + }, + { + "word": " periodically,", + "start": 4352.24, + "end": 4352.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4352.76, + "end": 4352.96, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4352.96, + "end": 4353.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 4353.06, + "end": 4353.22, + "probability": 1.0 + }, + { + "word": " do", + "start": 4353.22, + "end": 4353.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 4353.38, + "end": 4353.56, + "probability": 0.98828125 + }, + { + "word": " Windows", + "start": 4353.56, + "end": 4353.96, + "probability": 0.9990234375 + }, + { + "word": " upgrade.", + "start": 4353.96, + "end": 4354.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1734, + "text": "That's when the problem begins.", + "start": 4354.82, + "end": 4356.26, + "words": [ + { + "word": " That's", + "start": 4354.82, + "end": 4355.34, + "probability": 1.0 + }, + { + "word": " when", + "start": 4355.34, + "end": 4355.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4355.48, + "end": 4355.72, + "probability": 1.0 + }, + { + "word": " problem", + "start": 4355.72, + "end": 4356.02, + "probability": 0.97998046875 + }, + { + "word": " begins.", + "start": 4356.02, + "end": 4356.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1735, + "text": "So, let's talk about, like, do you have other options as far as internet where you're at?", + "start": 4356.5, + "end": 4361.48, + "words": [ + { + "word": " So,", + "start": 4356.5, + "end": 4356.78, + "probability": 0.990234375 + }, + { + "word": " let's", + "start": 4356.78, + "end": 4357.34, + "probability": 1.0 + }, + { + "word": " talk", + "start": 4357.34, + "end": 4357.64, + "probability": 0.9990234375 + }, + { + "word": " about,", + "start": 4357.64, + "end": 4357.96, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4358.1, + "end": 4358.36, + "probability": 0.994140625 + }, + { + "word": " do", + "start": 4358.4, + "end": 4358.74, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4358.74, + "end": 4358.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 4358.9, + "end": 4359.1, + "probability": 1.0 + }, + { + "word": " other", + "start": 4359.1, + "end": 4359.28, + "probability": 1.0 + }, + { + "word": " options", + "start": 4359.28, + "end": 4359.64, + "probability": 1.0 + }, + { + "word": " as", + "start": 4359.64, + "end": 4360.18, + "probability": 0.90576171875 + }, + { + "word": " far", + "start": 4360.18, + "end": 4360.4, + "probability": 1.0 + }, + { + "word": " as", + "start": 4360.4, + "end": 4360.5, + "probability": 1.0 + }, + { + "word": " internet", + "start": 4360.5, + "end": 4360.74, + "probability": 0.2939453125 + }, + { + "word": " where", + "start": 4360.74, + "end": 4361.02, + "probability": 0.9296875 + }, + { + "word": " you're", + "start": 4361.02, + "end": 4361.28, + "probability": 1.0 + }, + { + "word": " at?", + "start": 4361.28, + "end": 4361.48, + "probability": 1.0 + } + ] + }, + { + "id": 1736, + "text": "Well, yeah.", + "start": 4362.2, + "end": 4362.86, + "words": [ + { + "word": " Well,", + "start": 4362.2, + "end": 4362.72, + "probability": 0.98291015625 + }, + { + "word": " yeah.", + "start": 4362.72, + "end": 4362.86, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1737, + "text": "But the white boss, only what she wants to do is do Amazons and Zappos.", + "start": 4363.52, + "end": 4369.64, + "words": [ + { + "word": " But", + "start": 4363.52, + "end": 4364.04, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 4364.04, + "end": 4364.42, + "probability": 0.495849609375 + }, + { + "word": " white", + "start": 4364.42, + "end": 4365.86, + "probability": 0.9033203125 + }, + { + "word": " boss,", + "start": 4365.86, + "end": 4366.16, + "probability": 0.99658203125 + }, + { + "word": " only", + "start": 4366.38, + "end": 4366.78, + "probability": 0.9951171875 + }, + { + "word": " what", + "start": 4366.78, + "end": 4366.98, + "probability": 0.9892578125 + }, + { + "word": " she", + "start": 4366.98, + "end": 4367.24, + "probability": 1.0 + }, + { + "word": " wants", + "start": 4367.24, + "end": 4367.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4367.46, + "end": 4367.62, + "probability": 1.0 + }, + { + "word": " do", + "start": 4367.62, + "end": 4367.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 4367.86, + "end": 4367.98, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4367.98, + "end": 4368.06, + "probability": 0.99853515625 + }, + { + "word": " Amazons", + "start": 4368.06, + "end": 4368.9, + "probability": 0.97900390625 + }, + { + "word": " and", + "start": 4368.9, + "end": 4369.02, + "probability": 1.0 + }, + { + "word": " Zappos.", + "start": 4369.02, + "end": 4369.64, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1738, + "text": "That's all she wants to do, and she's very happy with cutting corners on everything else,", + "start": 4369.92, + "end": 4374.88, + "words": [ + { + "word": " That's", + "start": 4369.92, + "end": 4370.44, + "probability": 1.0 + }, + { + "word": " all", + "start": 4370.44, + "end": 4370.66, + "probability": 1.0 + }, + { + "word": " she", + "start": 4370.66, + "end": 4370.96, + "probability": 1.0 + }, + { + "word": " wants", + "start": 4370.96, + "end": 4371.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 4371.18, + "end": 4371.36, + "probability": 1.0 + }, + { + "word": " do,", + "start": 4371.36, + "end": 4371.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 4371.6, + "end": 4371.7, + "probability": 0.99951171875 + }, + { + "word": " she's", + "start": 4371.7, + "end": 4371.9, + "probability": 1.0 + }, + { + "word": " very", + "start": 4371.9, + "end": 4372.14, + "probability": 1.0 + }, + { + "word": " happy", + "start": 4372.14, + "end": 4372.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 4372.54, + "end": 4372.8, + "probability": 1.0 + }, + { + "word": " cutting", + "start": 4372.8, + "end": 4373.42, + "probability": 0.99951171875 + }, + { + "word": " corners", + "start": 4373.42, + "end": 4373.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 4373.78, + "end": 4374.08, + "probability": 1.0 + }, + { + "word": " everything", + "start": 4374.08, + "end": 4374.36, + "probability": 1.0 + }, + { + "word": " else,", + "start": 4374.36, + "end": 4374.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1739, + "text": "except when the operating system's at...", + "start": 4375.419999999999, + "end": 4378.02, + "words": [ + { + "word": " except", + "start": 4375.419999999999, + "end": 4375.94, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 4375.94, + "end": 4376.28, + "probability": 0.97412109375 + }, + { + "word": " the", + "start": 4376.28, + "end": 4376.7, + "probability": 0.99853515625 + }, + { + "word": " operating", + "start": 4376.7, + "end": 4377.04, + "probability": 1.0 + }, + { + "word": " system's", + "start": 4377.04, + "end": 4377.78, + "probability": 0.43896484375 + }, + { + "word": " at...", + "start": 4377.78, + "end": 4378.02, + "probability": 0.7255859375 + } + ] + }, + { + "id": 1740, + "text": "It comes into play, but she doesn't understand.", + "start": 4378.14, + "end": 4381.18, + "words": [ + { + "word": " It", + "start": 4378.14, + "end": 4378.36, + "probability": 0.3232421875 + }, + { + "word": " comes", + "start": 4378.36, + "end": 4379.12, + "probability": 0.99755859375 + }, + { + "word": " into", + "start": 4379.12, + "end": 4379.36, + "probability": 0.99951171875 + }, + { + "word": " play,", + "start": 4379.36, + "end": 4379.74, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 4379.84, + "end": 4380.26, + "probability": 0.98974609375 + }, + { + "word": " she", + "start": 4380.26, + "end": 4380.36, + "probability": 0.892578125 + }, + { + "word": " doesn't", + "start": 4380.36, + "end": 4380.68, + "probability": 1.0 + }, + { + "word": " understand.", + "start": 4380.68, + "end": 4381.18, + "probability": 1.0 + } + ] + }, + { + "id": 1741, + "text": "So, let me put my marriage counselor hat on for a minute, and I'm going to go ahead and", + "start": 4381.5, + "end": 4386.0, + "words": [ + { + "word": " So,", + "start": 4381.5, + "end": 4381.66, + "probability": 0.253173828125 + }, + { + "word": " let", + "start": 4381.68, + "end": 4381.76, + "probability": 0.8544921875 + }, + { + "word": " me", + "start": 4381.76, + "end": 4381.82, + "probability": 1.0 + }, + { + "word": " put", + "start": 4381.82, + "end": 4381.88, + "probability": 0.984375 + }, + { + "word": " my", + "start": 4381.88, + "end": 4383.44, + "probability": 0.9951171875 + }, + { + "word": " marriage", + "start": 4383.44, + "end": 4383.7, + "probability": 0.98193359375 + }, + { + "word": " counselor", + "start": 4383.7, + "end": 4384.2, + "probability": 0.998046875 + }, + { + "word": " hat", + "start": 4384.2, + "end": 4384.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 4384.5, + "end": 4384.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 4384.7, + "end": 4384.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 4384.82, + "end": 4384.92, + "probability": 1.0 + }, + { + "word": " minute,", + "start": 4384.92, + "end": 4385.06, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4385.12, + "end": 4385.28, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4385.28, + "end": 4385.46, + "probability": 1.0 + }, + { + "word": " going", + "start": 4385.46, + "end": 4385.54, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 4385.54, + "end": 4385.6, + "probability": 1.0 + }, + { + "word": " go", + "start": 4385.6, + "end": 4385.7, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 4385.7, + "end": 4385.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 4385.86, + "end": 4386.0, + "probability": 1.0 + } + ] + }, + { + "id": 1742, + "text": "say, you can tell your wife that the guru says that you need better internet, because", + "start": 4386.0, + "end": 4390.74, + "words": [ + { + "word": " say,", + "start": 4386.0, + "end": 4386.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 4386.4, + "end": 4387.9, + "probability": 0.98681640625 + }, + { + "word": " can", + "start": 4387.9, + "end": 4388.18, + "probability": 1.0 + }, + { + "word": " tell", + "start": 4388.18, + "end": 4388.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 4388.32, + "end": 4388.42, + "probability": 1.0 + }, + { + "word": " wife", + "start": 4388.42, + "end": 4388.56, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 4388.56, + "end": 4388.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4388.7, + "end": 4388.8, + "probability": 0.99072265625 + }, + { + "word": " guru", + "start": 4388.8, + "end": 4388.94, + "probability": 0.84814453125 + }, + { + "word": " says", + "start": 4388.94, + "end": 4389.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 4389.14, + "end": 4389.3, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 4389.3, + "end": 4389.38, + "probability": 1.0 + }, + { + "word": " need", + "start": 4389.38, + "end": 4389.52, + "probability": 1.0 + }, + { + "word": " better", + "start": 4389.52, + "end": 4389.68, + "probability": 0.99951171875 + }, + { + "word": " internet,", + "start": 4389.68, + "end": 4389.98, + "probability": 0.65087890625 + }, + { + "word": " because", + "start": 4390.12, + "end": 4390.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1743, + "text": "that's ridiculous.", + "start": 4391.580000000001, + "end": 4392.3, + "words": [ + { + "word": " that's", + "start": 4391.580000000001, + "end": 4391.9400000000005, + "probability": 0.9990234375 + }, + { + "word": " ridiculous.", + "start": 4391.9400000000005, + "end": 4392.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1744, + "text": "What are you guys paying for internet?", + "start": 4393.740000000001, + "end": 4394.82, + "words": [ + { + "word": " What", + "start": 4393.740000000001, + "end": 4394.1, + "probability": 0.9951171875 + }, + { + "word": " are", + "start": 4394.1, + "end": 4394.22, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 4394.22, + "end": 4394.24, + "probability": 1.0 + }, + { + "word": " guys", + "start": 4394.24, + "end": 4394.34, + "probability": 1.0 + }, + { + "word": " paying", + "start": 4394.34, + "end": 4394.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 4394.52, + "end": 4394.66, + "probability": 1.0 + }, + { + "word": " internet?", + "start": 4394.66, + "end": 4394.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1745, + "text": "Do you know?", + "start": 4396.160000000001, + "end": 4396.64, + "words": [ + { + "word": " Do", + "start": 4396.160000000001, + "end": 4396.52, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4396.52, + "end": 4396.54, + "probability": 1.0 + }, + { + "word": " know?", + "start": 4396.54, + "end": 4396.64, + "probability": 1.0 + } + ] + }, + { + "id": 1746, + "text": "Mm-hmm.", + "start": 4397.6, + "end": 4398.12, + "words": [ + { + "word": " Mm", + "start": 4397.6, + "end": 4397.96, + "probability": 0.408203125 + }, + { + "word": "-hmm.", + "start": 4397.96, + "end": 4398.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1747, + "text": "Do you know how much you're paying for internet?", + "start": 4398.24, + "end": 4399.74, + "words": [ + { + "word": " Do", + "start": 4398.24, + "end": 4398.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4398.6, + "end": 4398.64, + "probability": 1.0 + }, + { + "word": " know", + "start": 4398.64, + "end": 4398.72, + "probability": 1.0 + }, + { + "word": " how", + "start": 4398.72, + "end": 4398.8, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 4398.8, + "end": 4398.94, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4398.94, + "end": 4399.06, + "probability": 1.0 + }, + { + "word": " paying", + "start": 4399.06, + "end": 4399.26, + "probability": 1.0 + }, + { + "word": " for", + "start": 4399.26, + "end": 4399.52, + "probability": 0.99951171875 + }, + { + "word": " internet?", + "start": 4399.52, + "end": 4399.74, + "probability": 1.0 + } + ] + }, + { + "id": 1748, + "text": "Oh, maybe right now it's sub-40.", + "start": 4401.1, + "end": 4403.68, + "words": [ + { + "word": " Oh,", + "start": 4401.1, + "end": 4401.46, + "probability": 0.998046875 + }, + { + "word": " maybe", + "start": 4401.46, + "end": 4401.82, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 4401.82, + "end": 4402.28, + "probability": 0.99853515625 + }, + { + "word": " now", + "start": 4402.28, + "end": 4402.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4402.62, + "end": 4402.9, + "probability": 0.9677734375 + }, + { + "word": " sub", + "start": 4402.9, + "end": 4403.3, + "probability": 0.98193359375 + }, + { + "word": "-40.", + "start": 4403.3, + "end": 4403.68, + "probability": 0.8564453125 + } + ] + }, + { + "id": 1749, + "text": "All right.", + "start": 4404.280000000001, + "end": 4404.78, + "words": [ + { + "word": " All", + "start": 4404.280000000001, + "end": 4404.64, + "probability": 0.95361328125 + }, + { + "word": " right.", + "start": 4404.64, + "end": 4404.78, + "probability": 1.0 + } + ] + }, + { + "id": 1750, + "text": "By baud rate.", + "start": 4404.84, + "end": 4405.56, + "words": [ + { + "word": " By", + "start": 4404.84, + "end": 4405.18, + "probability": 0.80859375 + }, + { + "word": " baud", + "start": 4405.18, + "end": 4405.32, + "probability": 0.62451171875 + }, + { + "word": " rate.", + "start": 4405.32, + "end": 4405.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1751, + "text": "By baud rate on the...", + "start": 4405.62, + "end": 4407.14, + "words": [ + { + "word": " By", + "start": 4405.62, + "end": 4405.98, + "probability": 0.98388671875 + }, + { + "word": " baud", + "start": 4405.98, + "end": 4406.3, + "probability": 1.0 + }, + { + "word": " rate", + "start": 4406.3, + "end": 4406.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 4406.52, + "end": 4406.72, + "probability": 0.94873046875 + }, + { + "word": " the...", + "start": 4406.72, + "end": 4407.14, + "probability": 0.7060546875 + } + ] + }, + { + "id": 1752, + "text": "On the Speakeasy, it's like 15.", + "start": 4408.14, + "end": 4409.72, + "words": [ + { + "word": " On", + "start": 4408.14, + "end": 4408.16, + "probability": 0.1944580078125 + }, + { + "word": " the", + "start": 4408.16, + "end": 4408.26, + "probability": 0.9951171875 + }, + { + "word": " Speakeasy,", + "start": 4408.26, + "end": 4408.76, + "probability": 0.69482421875 + }, + { + "word": " it's", + "start": 4408.78, + "end": 4409.0, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 4409.0, + "end": 4409.2, + "probability": 0.95849609375 + }, + { + "word": " 15.", + "start": 4409.2, + "end": 4409.72, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1753, + "text": "All right.", + "start": 4410.16, + "end": 4410.52, + "words": [ + { + "word": " All", + "start": 4410.16, + "end": 4410.48, + "probability": 0.54541015625 + }, + { + "word": " right.", + "start": 4410.48, + "end": 4410.52, + "probability": 1.0 + } + ] + }, + { + "id": 1754, + "text": "So, if you can measure it in baud, that's really nice.", + "start": 4410.56, + "end": 4412.6, + "words": [ + { + "word": " So,", + "start": 4410.56, + "end": 4410.7, + "probability": 0.9736328125 + }, + { + "word": " if", + "start": 4410.72, + "end": 4410.76, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 4410.76, + "end": 4410.84, + "probability": 1.0 + }, + { + "word": " can", + "start": 4410.84, + "end": 4410.98, + "probability": 0.99951171875 + }, + { + "word": " measure", + "start": 4410.98, + "end": 4411.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 4411.28, + "end": 4411.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 4411.42, + "end": 4411.54, + "probability": 0.98876953125 + }, + { + "word": " baud,", + "start": 4411.54, + "end": 4411.88, + "probability": 0.58984375 + }, + { + "word": " that's", + "start": 4411.96, + "end": 4412.2, + "probability": 1.0 + }, + { + "word": " really", + "start": 4412.2, + "end": 4412.34, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 4412.34, + "end": 4412.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1755, + "text": "All right.", + "start": 4413.9800000000005, + "end": 4414.44, + "words": [ + { + "word": " All", + "start": 4413.9800000000005, + "end": 4414.3, + "probability": 0.99560546875 + }, + { + "word": " right.", + "start": 4414.3, + "end": 4414.44, + "probability": 1.0 + } + ] + }, + { + "id": 1756, + "text": "So, you're getting, like, 15 megabit?", + "start": 4414.44, + "end": 4415.48, + "words": [ + { + "word": " So,", + "start": 4414.44, + "end": 4414.58, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 4414.6, + "end": 4414.68, + "probability": 1.0 + }, + { + "word": " getting,", + "start": 4414.68, + "end": 4414.74, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4414.8, + "end": 4414.88, + "probability": 1.0 + }, + { + "word": " 15", + "start": 4414.9, + "end": 4415.14, + "probability": 0.99951171875 + }, + { + "word": " megabit?", + "start": 4415.14, + "end": 4415.48, + "probability": 0.99609375 + } + ] + }, + { + "id": 1757, + "text": "Yeah.", + "start": 4416.26, + "end": 4416.58, + "words": [ + { + "word": " Yeah.", + "start": 4416.26, + "end": 4416.58, + "probability": 0.447021484375 + } + ] + }, + { + "id": 1758, + "text": "Or 1.5?", + "start": 4416.58, + "end": 4417.54, + "words": [ + { + "word": " Or", + "start": 4416.58, + "end": 4416.68, + "probability": 0.99755859375 + }, + { + "word": " 1", + "start": 4416.68, + "end": 4416.94, + "probability": 0.99951171875 + }, + { + "word": ".5?", + "start": 4416.94, + "end": 4417.54, + "probability": 1.0 + } + ] + }, + { + "id": 1759, + "text": "Because I think you're getting 1.5.", + "start": 4417.58, + "end": 4419.08, + "words": [ + { + "word": " Because", + "start": 4417.58, + "end": 4417.9, + "probability": 0.98681640625 + }, + { + "word": " I", + "start": 4417.9, + "end": 4418.02, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 4418.02, + "end": 4418.16, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4418.16, + "end": 4418.32, + "probability": 1.0 + }, + { + "word": " getting", + "start": 4418.32, + "end": 4418.42, + "probability": 1.0 + }, + { + "word": " 1", + "start": 4418.42, + "end": 4418.52, + "probability": 1.0 + }, + { + "word": ".5.", + "start": 4418.52, + "end": 4419.08, + "probability": 1.0 + } + ] + }, + { + "id": 1760, + "text": "Oh, no.", + "start": 4419.68, + "end": 4420.12, + "words": [ + { + "word": " Oh,", + "start": 4419.68, + "end": 4420.0, + "probability": 0.396484375 + }, + { + "word": " no.", + "start": 4420.02, + "end": 4420.12, + "probability": 1.0 + } + ] + }, + { + "id": 1761, + "text": "15.", + "start": 4420.72, + "end": 4421.04, + "words": [ + { + "word": " 15.", + "start": 4420.72, + "end": 4421.04, + "probability": 0.9365234375 + } + ] + }, + { + "id": 1762, + "text": "Now, 15's not bad.", + "start": 4421.920000000001, + "end": 4422.82, + "words": [ + { + "word": " Now,", + "start": 4421.920000000001, + "end": 4422.240000000001, + "probability": 0.06585693359375 + }, + { + "word": " 15's", + "start": 4422.240000000001, + "end": 4422.56, + "probability": 0.748046875 + }, + { + "word": " not", + "start": 4422.56, + "end": 4422.64, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 4422.64, + "end": 4422.82, + "probability": 1.0 + } + ] + }, + { + "id": 1763, + "text": "I mean, for Centrelink.", + "start": 4423.200000000001, + "end": 4424.22, + "words": [ + { + "word": " I", + "start": 4423.200000000001, + "end": 4423.52, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 4423.52, + "end": 4423.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 4423.68, + "end": 4423.78, + "probability": 1.0 + }, + { + "word": " Centrelink.", + "start": 4423.78, + "end": 4424.22, + "probability": 0.8603515625 + } + ] + }, + { + "id": 1764, + "text": "For Centrelink, that's not bad.", + "start": 4424.36, + "end": 4425.88, + "words": [ + { + "word": " For", + "start": 4424.36, + "end": 4424.68, + "probability": 0.75927734375 + }, + { + "word": " Centrelink,", + "start": 4424.68, + "end": 4425.28, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 4425.3, + "end": 4425.58, + "probability": 0.818359375 + }, + { + "word": " not", + "start": 4425.58, + "end": 4425.6, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 4425.6, + "end": 4425.88, + "probability": 1.0 + } + ] + }, + { + "id": 1765, + "text": "Right.", + "start": 4426.62, + "end": 4426.94, + "words": [ + { + "word": " Right.", + "start": 4426.62, + "end": 4426.94, + "probability": 0.65234375 + } + ] + }, + { + "id": 1766, + "text": "But it needs to get up to around 50.", + "start": 4427.1, + "end": 4429.12, + "words": [ + { + "word": " But", + "start": 4427.1, + "end": 4427.24, + "probability": 0.99267578125 + }, + { + "word": " it", + "start": 4427.24, + "end": 4427.4, + "probability": 0.986328125 + }, + { + "word": " needs", + "start": 4427.4, + "end": 4427.9, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4427.9, + "end": 4428.16, + "probability": 1.0 + }, + { + "word": " get", + "start": 4428.16, + "end": 4428.28, + "probability": 1.0 + }, + { + "word": " up", + "start": 4428.28, + "end": 4428.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 4428.42, + "end": 4428.48, + "probability": 0.9990234375 + }, + { + "word": " around", + "start": 4428.48, + "end": 4428.68, + "probability": 0.99755859375 + }, + { + "word": " 50.", + "start": 4428.68, + "end": 4429.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1767, + "text": "It'd be nice to get to 75.", + "start": 4429.3, + "end": 4430.7, + "words": [ + { + "word": " It'd", + "start": 4429.3, + "end": 4429.62, + "probability": 0.92578125 + }, + { + "word": " be", + "start": 4429.62, + "end": 4429.72, + "probability": 1.0 + }, + { + "word": " nice", + "start": 4429.72, + "end": 4429.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4429.98, + "end": 4430.14, + "probability": 1.0 + }, + { + "word": " get", + "start": 4430.14, + "end": 4430.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 4430.28, + "end": 4430.36, + "probability": 0.6923828125 + }, + { + "word": " 75.", + "start": 4430.36, + "end": 4430.7, + "probability": 1.0 + } + ] + }, + { + "id": 1768, + "text": "Okay.", + "start": 4431.76, + "end": 4432.08, + "words": [ + { + "word": " Okay.", + "start": 4431.76, + "end": 4432.08, + "probability": 0.9462890625 + } + ] + }, + { + "id": 1769, + "text": "For downspeed, right?", + "start": 4432.12, + "end": 4433.32, + "words": [ + { + "word": " For", + "start": 4432.12, + "end": 4432.44, + "probability": 0.99658203125 + }, + { + "word": " downspeed,", + "start": 4432.44, + "end": 4433.06, + "probability": 0.81640625 + }, + { + "word": " right?", + "start": 4433.12, + "end": 4433.32, + "probability": 1.0 + } + ] + }, + { + "id": 1770, + "text": "Yes.", + "start": 4434.200000000001, + "end": 4434.52, + "words": [ + { + "word": " Yes.", + "start": 4434.200000000001, + "end": 4434.52, + "probability": 0.96875 + } + ] + }, + { + "id": 1771, + "text": "Okay.", + "start": 4434.6, + "end": 4434.92, + "words": [ + { + "word": " Okay.", + "start": 4434.6, + "end": 4434.92, + "probability": 0.998046875 + } + ] + }, + { + "id": 1772, + "text": "Yeah.", + "start": 4435.0, + "end": 4435.16, + "words": [ + { + "word": " Yeah.", + "start": 4435.0, + "end": 4435.16, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1773, + "text": "You're not doing that with Centrelink.", + "start": 4435.22, + "end": 4436.54, + "words": [ + { + "word": " You're", + "start": 4435.22, + "end": 4435.44, + "probability": 0.9970703125 + }, + { + "word": " not", + "start": 4435.44, + "end": 4435.54, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4435.54, + "end": 4435.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 4435.74, + "end": 4435.88, + "probability": 1.0 + }, + { + "word": " with", + "start": 4435.88, + "end": 4436.06, + "probability": 1.0 + }, + { + "word": " Centrelink.", + "start": 4436.06, + "end": 4436.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1774, + "text": "What area of town are you in?", + "start": 4438.28, + "end": 4439.74, + "words": [ + { + "word": " What", + "start": 4438.28, + "end": 4438.7, + "probability": 0.72216796875 + }, + { + "word": " area", + "start": 4438.7, + "end": 4439.08, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4439.08, + "end": 4439.22, + "probability": 0.9912109375 + }, + { + "word": " town", + "start": 4439.22, + "end": 4439.38, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 4439.38, + "end": 4439.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 4439.54, + "end": 4439.64, + "probability": 1.0 + }, + { + "word": " in?", + "start": 4439.64, + "end": 4439.74, + "probability": 0.99609375 + } + ] + }, + { + "id": 1775, + "text": "Northwest.", + "start": 4440.54, + "end": 4440.96, + "words": [ + { + "word": " Northwest.", + "start": 4440.54, + "end": 4440.96, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1776, + "text": "Northwest.", + "start": 4441.32, + "end": 4441.7, + "words": [ + { + "word": " Northwest.", + "start": 4441.32, + "end": 4441.7, + "probability": 0.005950927734375 + } + ] + }, + { + "id": 1777, + "text": "Orange Grove Oracle.", + "start": 4441.9, + "end": 4442.28, + "words": [ + { + "word": " Orange", + "start": 4441.9, + "end": 4441.9, + "probability": 0.91748046875 + }, + { + "word": " Grove", + "start": 4441.9, + "end": 4441.92, + "probability": 0.99951171875 + }, + { + "word": " Oracle.", + "start": 4441.92, + "end": 4442.28, + "probability": 0.6875 + } + ] + }, + { + "id": 1778, + "text": "All right.", + "start": 4442.44, + "end": 4442.96, + "words": [ + { + "word": " All", + "start": 4442.44, + "end": 4442.86, + "probability": 0.935546875 + }, + { + "word": " right.", + "start": 4442.86, + "end": 4442.96, + "probability": 1.0 + } + ] + }, + { + "id": 1779, + "text": "So, you're looking at Comcast.", + "start": 4442.98, + "end": 4444.78, + "words": [ + { + "word": " So,", + "start": 4442.98, + "end": 4443.18, + "probability": 0.93408203125 + }, + { + "word": " you're", + "start": 4443.22, + "end": 4443.46, + "probability": 1.0 + }, + { + "word": " looking", + "start": 4443.46, + "end": 4443.8, + "probability": 0.99755859375 + }, + { + "word": " at", + "start": 4443.8, + "end": 4443.96, + "probability": 1.0 + }, + { + "word": " Comcast.", + "start": 4443.96, + "end": 4444.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1780, + "text": "And Comcast does offer a...", + "start": 4447.099999999999, + "end": 4449.48, + "words": [ + { + "word": " And", + "start": 4447.099999999999, + "end": 4447.5199999999995, + "probability": 0.8125 + }, + { + "word": " Comcast", + "start": 4447.5199999999995, + "end": 4447.94, + "probability": 0.984375 + }, + { + "word": " does", + "start": 4447.94, + "end": 4448.2, + "probability": 1.0 + }, + { + "word": " offer", + "start": 4448.2, + "end": 4448.74, + "probability": 1.0 + }, + { + "word": " a...", + "start": 4448.74, + "end": 4449.48, + "probability": 0.572265625 + } + ] + }, + { + "id": 1781, + "text": "What is that?", + "start": 4449.48, + "end": 4450.32, + "words": [ + { + "word": " What", + "start": 4449.48, + "end": 4450.02, + "probability": 0.755859375 + }, + { + "word": " is", + "start": 4450.02, + "end": 4450.14, + "probability": 0.9501953125 + }, + { + "word": " that?", + "start": 4450.14, + "end": 4450.32, + "probability": 0.67529296875 + } + ] + }, + { + "id": 1782, + "text": "$45 plan?", + "start": 4450.36, + "end": 4451.02, + "words": [ + { + "word": " $45", + "start": 4450.36, + "end": 4450.72, + "probability": 0.6591796875 + }, + { + "word": " plan?", + "start": 4450.72, + "end": 4451.02, + "probability": 0.55859375 + } + ] + }, + { + "id": 1783, + "text": "Yeah.", + "start": 4451.24, + "end": 4451.44, + "words": [ + { + "word": " Yeah.", + "start": 4451.24, + "end": 4451.44, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1784, + "text": "I'll tell you that I lived almost exactly where you're talking about not too long ago.", + "start": 4451.54, + "end": 4454.74, + "words": [ + { + "word": " I'll", + "start": 4451.54, + "end": 4451.72, + "probability": 0.998046875 + }, + { + "word": " tell", + "start": 4451.72, + "end": 4451.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 4451.88, + "end": 4451.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 4451.98, + "end": 4452.08, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4452.08, + "end": 4452.24, + "probability": 0.99853515625 + }, + { + "word": " lived", + "start": 4452.24, + "end": 4452.58, + "probability": 0.99951171875 + }, + { + "word": " almost", + "start": 4452.58, + "end": 4452.92, + "probability": 0.99951171875 + }, + { + "word": " exactly", + "start": 4452.92, + "end": 4453.24, + "probability": 1.0 + }, + { + "word": " where", + "start": 4453.24, + "end": 4453.52, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 4453.52, + "end": 4453.64, + "probability": 0.9970703125 + }, + { + "word": " talking", + "start": 4453.64, + "end": 4453.84, + "probability": 1.0 + }, + { + "word": " about", + "start": 4453.84, + "end": 4454.04, + "probability": 1.0 + }, + { + "word": " not", + "start": 4454.04, + "end": 4454.2, + "probability": 0.97265625 + }, + { + "word": " too", + "start": 4454.2, + "end": 4454.36, + "probability": 1.0 + }, + { + "word": " long", + "start": 4454.36, + "end": 4454.54, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 4454.54, + "end": 4454.74, + "probability": 1.0 + } + ] + }, + { + "id": 1785, + "text": "I had Comcast.", + "start": 4454.8, + "end": 4455.82, + "words": [ + { + "word": " I", + "start": 4454.8, + "end": 4455.2, + "probability": 0.99560546875 + }, + { + "word": " had", + "start": 4455.2, + "end": 4455.36, + "probability": 1.0 + }, + { + "word": " Comcast.", + "start": 4455.36, + "end": 4455.82, + "probability": 1.0 + } + ] + }, + { + "id": 1786, + "text": "I paid 50 bucks a month, and I got over 40 megs.", + "start": 4455.84, + "end": 4458.88, + "words": [ + { + "word": " I", + "start": 4455.84, + "end": 4456.14, + "probability": 0.99951171875 + }, + { + "word": " paid", + "start": 4456.14, + "end": 4456.4, + "probability": 0.99951171875 + }, + { + "word": " 50", + "start": 4456.4, + "end": 4456.7, + "probability": 0.106689453125 + }, + { + "word": " bucks", + "start": 4456.7, + "end": 4456.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 4456.86, + "end": 4457.02, + "probability": 1.0 + }, + { + "word": " month,", + "start": 4457.02, + "end": 4457.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 4457.28, + "end": 4457.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 4457.42, + "end": 4457.52, + "probability": 1.0 + }, + { + "word": " got", + "start": 4457.52, + "end": 4457.76, + "probability": 1.0 + }, + { + "word": " over", + "start": 4457.76, + "end": 4458.14, + "probability": 1.0 + }, + { + "word": " 40", + "start": 4458.14, + "end": 4458.5, + "probability": 1.0 + }, + { + "word": " megs.", + "start": 4458.5, + "end": 4458.88, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1787, + "text": "So, yeah.", + "start": 4459.84, + "end": 4460.68, + "words": [ + { + "word": " So,", + "start": 4459.84, + "end": 4460.26, + "probability": 0.99560546875 + }, + { + "word": " yeah.", + "start": 4460.26, + "end": 4460.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 1788, + "text": "You add another $10 or $15 a month, and you get a lot more go.", + "start": 4460.76, + "end": 4466.02, + "words": [ + { + "word": " You", + "start": 4460.76, + "end": 4461.02, + "probability": 0.998046875 + }, + { + "word": " add", + "start": 4461.02, + "end": 4462.0, + "probability": 1.0 + }, + { + "word": " another", + "start": 4462.0, + "end": 4462.2, + "probability": 0.99951171875 + }, + { + "word": " $10", + "start": 4462.2, + "end": 4462.52, + "probability": 0.92138671875 + }, + { + "word": " or", + "start": 4462.52, + "end": 4462.72, + "probability": 1.0 + }, + { + "word": " $15", + "start": 4462.72, + "end": 4462.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 4462.98, + "end": 4463.36, + "probability": 1.0 + }, + { + "word": " month,", + "start": 4463.36, + "end": 4463.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 4463.68, + "end": 4463.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 4463.92, + "end": 4464.28, + "probability": 1.0 + }, + { + "word": " get", + "start": 4464.28, + "end": 4464.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 4464.58, + "end": 4464.88, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 4464.88, + "end": 4465.58, + "probability": 1.0 + }, + { + "word": " more", + "start": 4465.58, + "end": 4465.76, + "probability": 1.0 + }, + { + "word": " go.", + "start": 4465.76, + "end": 4466.02, + "probability": 0.90625 + } + ] + }, + { + "id": 1789, + "text": "And Centrelink is...", + "start": 4468.720000000001, + "end": 4469.9, + "words": [ + { + "word": " And", + "start": 4468.720000000001, + "end": 4469.120000000001, + "probability": 0.290283203125 + }, + { + "word": " Centrelink", + "start": 4469.120000000001, + "end": 4469.52, + "probability": 0.619140625 + }, + { + "word": " is...", + "start": 4469.52, + "end": 4469.9, + "probability": 0.57470703125 + } + ] + }, + { + "id": 1790, + "text": "Hold on.", + "start": 4470.96, + "end": 4471.5, + "words": [ + { + "word": " Hold", + "start": 4470.96, + "end": 4471.36, + "probability": 0.9853515625 + }, + { + "word": " on.", + "start": 4471.36, + "end": 4471.5, + "probability": 1.0 + } + ] + }, + { + "id": 1791, + "text": "What's the disclaimer?", + "start": 4471.52, + "end": 4472.02, + "words": [ + { + "word": " What's", + "start": 4471.52, + "end": 4471.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 4471.72, + "end": 4471.72, + "probability": 0.9990234375 + }, + { + "word": " disclaimer?", + "start": 4471.72, + "end": 4472.02, + "probability": 1.0 + } + ] + }, + { + "id": 1792, + "text": "Everything that I say is my opinion.", + "start": 4472.26, + "end": 4473.86, + "words": [ + { + "word": " Everything", + "start": 4472.26, + "end": 4472.66, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4472.66, + "end": 4472.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 4472.92, + "end": 4473.04, + "probability": 1.0 + }, + { + "word": " say", + "start": 4473.04, + "end": 4473.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 4473.24, + "end": 4473.38, + "probability": 1.0 + }, + { + "word": " my", + "start": 4473.38, + "end": 4473.52, + "probability": 1.0 + }, + { + "word": " opinion.", + "start": 4473.52, + "end": 4473.86, + "probability": 1.0 + } + ] + }, + { + "id": 1793, + "text": "It does not necessarily represent this radio station or computer guru.", + "start": 4473.9, + "end": 4476.64, + "words": [ + { + "word": " It", + "start": 4473.9, + "end": 4474.04, + "probability": 0.98828125 + }, + { + "word": " does", + "start": 4474.04, + "end": 4474.08, + "probability": 0.92529296875 + }, + { + "word": " not", + "start": 4474.08, + "end": 4474.22, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 4474.22, + "end": 4474.6, + "probability": 1.0 + }, + { + "word": " represent", + "start": 4474.6, + "end": 4474.94, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4474.94, + "end": 4475.36, + "probability": 1.0 + }, + { + "word": " radio", + "start": 4475.36, + "end": 4475.56, + "probability": 1.0 + }, + { + "word": " station", + "start": 4475.56, + "end": 4475.82, + "probability": 1.0 + }, + { + "word": " or", + "start": 4475.82, + "end": 4476.1, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 4476.1, + "end": 4476.36, + "probability": 0.95166015625 + }, + { + "word": " guru.", + "start": 4476.36, + "end": 4476.64, + "probability": 0.90234375 + } + ] + }, + { + "id": 1794, + "text": "God, they're terrible.", + "start": 4478.02, + "end": 4478.96, + "words": [ + { + "word": " God,", + "start": 4478.02, + "end": 4478.42, + "probability": 0.998046875 + }, + { + "word": " they're", + "start": 4478.5, + "end": 4478.66, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 4478.66, + "end": 4478.96, + "probability": 1.0 + } + ] + }, + { + "id": 1795, + "text": "Yeah.", + "start": 4479.26, + "end": 4479.5, + "words": [ + { + "word": " Yeah.", + "start": 4479.26, + "end": 4479.5, + "probability": 0.984375 + } + ] + }, + { + "id": 1796, + "text": "I was going to say, you know, you asked him if he had any other options.", + "start": 4479.54, + "end": 4481.5, + "words": [ + { + "word": " I", + "start": 4479.54, + "end": 4479.64, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 4479.64, + "end": 4479.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 4479.74, + "end": 4479.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4479.84, + "end": 4479.9, + "probability": 1.0 + }, + { + "word": " say,", + "start": 4479.9, + "end": 4480.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 4480.14, + "end": 4480.26, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 4480.26, + "end": 4480.28, + "probability": 0.595703125 + }, + { + "word": " you", + "start": 4480.34, + "end": 4480.44, + "probability": 0.99853515625 + }, + { + "word": " asked", + "start": 4480.44, + "end": 4480.66, + "probability": 1.0 + }, + { + "word": " him", + "start": 4480.66, + "end": 4480.78, + "probability": 0.97314453125 + }, + { + "word": " if", + "start": 4480.78, + "end": 4480.9, + "probability": 1.0 + }, + { + "word": " he", + "start": 4480.9, + "end": 4480.94, + "probability": 0.99658203125 + }, + { + "word": " had", + "start": 4480.94, + "end": 4481.04, + "probability": 1.0 + }, + { + "word": " any", + "start": 4481.04, + "end": 4481.1, + "probability": 1.0 + }, + { + "word": " other", + "start": 4481.1, + "end": 4481.24, + "probability": 1.0 + }, + { + "word": " options.", + "start": 4481.24, + "end": 4481.5, + "probability": 1.0 + } + ] + }, + { + "id": 1797, + "text": "I was like, clearly not.", + "start": 4481.6, + "end": 4482.42, + "words": [ + { + "word": " I", + "start": 4481.6, + "end": 4481.72, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 4481.72, + "end": 4481.74, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4481.74, + "end": 4481.84, + "probability": 0.9990234375 + }, + { + "word": " clearly", + "start": 4481.9, + "end": 4482.14, + "probability": 0.99755859375 + }, + { + "word": " not.", + "start": 4482.14, + "end": 4482.42, + "probability": 1.0 + } + ] + }, + { + "id": 1798, + "text": "He's on Centrelink.", + "start": 4482.8, + "end": 4483.82, + "words": [ + { + "word": " He's", + "start": 4482.8, + "end": 4483.2, + "probability": 0.87890625 + }, + { + "word": " on", + "start": 4483.2, + "end": 4483.22, + "probability": 0.9375 + }, + { + "word": " Centrelink.", + "start": 4483.22, + "end": 4483.82, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1799, + "text": "It's just I have never had good experience with Centrelink Internet.", + "start": 4485.740000000001, + "end": 4490.28, + "words": [ + { + "word": " It's", + "start": 4485.740000000001, + "end": 4486.14, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 4486.14, + "end": 4486.32, + "probability": 1.0 + }, + { + "word": " I", + "start": 4486.32, + "end": 4486.78, + "probability": 0.625 + }, + { + "word": " have", + "start": 4486.78, + "end": 4487.6, + "probability": 0.96826171875 + }, + { + "word": " never", + "start": 4487.6, + "end": 4488.04, + "probability": 1.0 + }, + { + "word": " had", + "start": 4488.04, + "end": 4488.24, + "probability": 1.0 + }, + { + "word": " good", + "start": 4488.24, + "end": 4488.4, + "probability": 0.99755859375 + }, + { + "word": " experience", + "start": 4488.4, + "end": 4488.76, + "probability": 1.0 + }, + { + "word": " with", + "start": 4488.76, + "end": 4489.1, + "probability": 1.0 + }, + { + "word": " Centrelink", + "start": 4489.1, + "end": 4490.06, + "probability": 0.9990234375 + }, + { + "word": " Internet.", + "start": 4490.06, + "end": 4490.28, + "probability": 0.77880859375 + } + ] + }, + { + "id": 1800, + "text": "Okay.", + "start": 4491.06, + "end": 4491.46, + "words": [ + { + "word": " Okay.", + "start": 4491.06, + "end": 4491.46, + "probability": 0.626953125 + } + ] + }, + { + "id": 1801, + "text": "I try to get everybody off of it.", + "start": 4491.86, + "end": 4492.94, + "words": [ + { + "word": " I", + "start": 4491.86, + "end": 4491.88, + "probability": 0.771484375 + }, + { + "word": " try", + "start": 4491.88, + "end": 4492.06, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 4492.06, + "end": 4492.16, + "probability": 1.0 + }, + { + "word": " get", + "start": 4492.16, + "end": 4492.22, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 4492.22, + "end": 4492.42, + "probability": 1.0 + }, + { + "word": " off", + "start": 4492.42, + "end": 4492.66, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4492.66, + "end": 4492.84, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 4492.84, + "end": 4492.94, + "probability": 1.0 + } + ] + }, + { + "id": 1802, + "text": "Could I...", + "start": 4493.46, + "end": 4494.06, + "words": [ + { + "word": " Could", + "start": 4493.46, + "end": 4493.72, + "probability": 0.3203125 + }, + { + "word": " I...", + "start": 4493.72, + "end": 4494.06, + "probability": 0.58056640625 + } + ] + }, + { + "id": 1803, + "text": "If I needed to, could I just pop up a Yagi?", + "start": 4494.06, + "end": 4496.54, + "words": [ + { + "word": " If", + "start": 4494.06, + "end": 4494.26, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 4494.26, + "end": 4494.4, + "probability": 1.0 + }, + { + "word": " needed", + "start": 4494.4, + "end": 4494.84, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4494.84, + "end": 4495.04, + "probability": 1.0 + }, + { + "word": " could", + "start": 4495.12, + "end": 4495.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 4495.28, + "end": 4495.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 4495.42, + "end": 4495.58, + "probability": 1.0 + }, + { + "word": " pop", + "start": 4495.58, + "end": 4495.84, + "probability": 1.0 + }, + { + "word": " up", + "start": 4495.84, + "end": 4496.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4496.08, + "end": 4496.18, + "probability": 0.99951171875 + }, + { + "word": " Yagi?", + "start": 4496.18, + "end": 4496.54, + "probability": 0.8642578125 + } + ] + }, + { + "id": 1804, + "text": "Yeah.", + "start": 4496.9, + "end": 4497.3, + "words": [ + { + "word": " Yeah.", + "start": 4496.9, + "end": 4497.3, + "probability": 0.11505126953125 + } + ] + }, + { + "id": 1805, + "text": "Yeah.", + "start": 4497.4, + "end": 4497.8, + "words": [ + { + "word": " Yeah.", + "start": 4497.4, + "end": 4497.8, + "probability": 0.344970703125 + } + ] + }, + { + "id": 1806, + "text": "Yeah.", + "start": 4497.8, + "end": 4498.12, + "words": [ + { + "word": " Yeah.", + "start": 4497.8, + "end": 4498.12, + "probability": 0.80322265625 + } + ] + }, + { + "id": 1807, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1808, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1809, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1810, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1811, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1812, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1813, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1814, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1815, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1816, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1817, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1818, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1819, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1820, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1821, + "text": "", + "start": 4498.12, + "end": 4498.12, + "words": [] + }, + { + "id": 1822, + "text": "Could I find a Comcast Wi-Fi system?", + "start": 4498.12, + "end": 4501.4, + "words": [ + { + "word": " Could", + "start": 4498.12, + "end": 4498.2, + "probability": 0.1441650390625 + }, + { + "word": " I", + "start": 4498.2, + "end": 4498.2, + "probability": 0.0943603515625 + }, + { + "word": " find", + "start": 4498.2, + "end": 4498.22, + "probability": 0.845703125 + }, + { + "word": " a", + "start": 4498.22, + "end": 4498.38, + "probability": 0.99755859375 + }, + { + "word": " Comcast", + "start": 4498.38, + "end": 4500.92, + "probability": 0.9150390625 + }, + { + "word": " Wi", + "start": 4500.92, + "end": 4501.4, + "probability": 0.91845703125 + }, + { + "word": "-Fi", + "start": 4501.4, + "end": 4501.4, + "probability": 1.0 + }, + { + "word": " system?", + "start": 4501.4, + "end": 4501.4, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1823, + "text": "Like a hotspot?", + "start": 4501.42, + "end": 4502.62, + "words": [ + { + "word": " Like", + "start": 4501.42, + "end": 4501.9, + "probability": 0.88134765625 + }, + { + "word": " a", + "start": 4501.9, + "end": 4501.98, + "probability": 1.0 + }, + { + "word": " hotspot?", + "start": 4501.98, + "end": 4502.62, + "probability": 0.98828125 + } + ] + }, + { + "id": 1824, + "text": "Problem?", + "start": 4503.34, + "end": 4503.82, + "words": [ + { + "word": " Problem?", + "start": 4503.34, + "end": 4503.82, + "probability": 0.0765380859375 + } + ] + }, + { + "id": 1825, + "text": "Yes, a hotspot.", + "start": 4504.06, + "end": 4504.84, + "words": [ + { + "word": " Yes,", + "start": 4504.06, + "end": 4504.38, + "probability": 0.9833984375 + }, + { + "word": " a", + "start": 4504.38, + "end": 4504.52, + "probability": 0.99853515625 + }, + { + "word": " hotspot.", + "start": 4504.52, + "end": 4504.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1826, + "text": "Well, Comcast does that.", + "start": 4505.0, + "end": 4506.6, + "words": [ + { + "word": " Well,", + "start": 4505.0, + "end": 4505.08, + "probability": 0.34814453125 + }, + { + "word": " Comcast", + "start": 4505.08, + "end": 4505.56, + "probability": 0.9970703125 + }, + { + "word": " does", + "start": 4505.56, + "end": 4506.3, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 4506.3, + "end": 4506.6, + "probability": 1.0 + } + ] + }, + { + "id": 1827, + "text": "Yeah.", + "start": 4506.78, + "end": 4507.2, + "words": [ + { + "word": " Yeah.", + "start": 4506.78, + "end": 4507.2, + "probability": 0.5771484375 + } + ] + }, + { + "id": 1828, + "text": "You could probably do that.", + "start": 4507.2, + "end": 4508.58, + "words": [ + { + "word": " You", + "start": 4507.2, + "end": 4507.56, + "probability": 0.82568359375 + }, + { + "word": " could", + "start": 4507.56, + "end": 4507.84, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4507.84, + "end": 4508.12, + "probability": 1.0 + }, + { + "word": " do", + "start": 4508.12, + "end": 4508.36, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4508.36, + "end": 4508.58, + "probability": 1.0 + } + ] + }, + { + "id": 1829, + "text": "Okay.", + "start": 4509.68, + "end": 4510.16, + "words": [ + { + "word": " Okay.", + "start": 4509.68, + "end": 4510.16, + "probability": 0.984375 + } + ] + }, + { + "id": 1830, + "text": "And they make directional antennas for Wi-Fi, for sure.", + "start": 4510.26, + "end": 4513.36, + "words": [ + { + "word": " And", + "start": 4510.26, + "end": 4510.44, + "probability": 0.93701171875 + }, + { + "word": " they", + "start": 4510.44, + "end": 4510.5, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 4510.5, + "end": 4510.72, + "probability": 1.0 + }, + { + "word": " directional", + "start": 4510.72, + "end": 4511.92, + "probability": 0.998046875 + }, + { + "word": " antennas", + "start": 4511.92, + "end": 4512.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 4512.46, + "end": 4512.58, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 4512.58, + "end": 4512.76, + "probability": 1.0 + }, + { + "word": "-Fi,", + "start": 4512.76, + "end": 4512.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 4513.02, + "end": 4513.16, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 4513.16, + "end": 4513.36, + "probability": 1.0 + } + ] + }, + { + "id": 1831, + "text": "Yeah.", + "start": 4514.02, + "end": 4514.5, + "words": [ + { + "word": " Yeah.", + "start": 4514.02, + "end": 4514.5, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1832, + "text": "And if I need to, could I...", + "start": 4514.56, + "end": 4516.84, + "words": [ + { + "word": " And", + "start": 4514.56, + "end": 4515.02, + "probability": 0.98486328125 + }, + { + "word": " if", + "start": 4515.02, + "end": 4515.2, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4515.2, + "end": 4515.3, + "probability": 1.0 + }, + { + "word": " need", + "start": 4515.3, + "end": 4515.54, + "probability": 0.9990234375 + }, + { + "word": " to,", + "start": 4515.54, + "end": 4515.78, + "probability": 1.0 + }, + { + "word": " could", + "start": 4515.86, + "end": 4516.1, + "probability": 0.40673828125 + }, + { + "word": " I...", + "start": 4516.1, + "end": 4516.84, + "probability": 0.69140625 + } + ] + }, + { + "id": 1833, + "text": "Probably it would be easier just for me to bring the desktops down to you guys to do all the important upgrades.", + "start": 4516.84, + "end": 4522.72, + "words": [ + { + "word": " Probably", + "start": 4516.84, + "end": 4517.6, + "probability": 0.6171875 + }, + { + "word": " it", + "start": 4517.6, + "end": 4517.78, + "probability": 0.9375 + }, + { + "word": " would", + "start": 4517.78, + "end": 4517.86, + "probability": 0.7490234375 + }, + { + "word": " be", + "start": 4517.86, + "end": 4517.92, + "probability": 1.0 + }, + { + "word": " easier", + "start": 4517.92, + "end": 4518.24, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 4518.24, + "end": 4518.46, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4518.46, + "end": 4518.64, + "probability": 1.0 + }, + { + "word": " me", + "start": 4518.64, + "end": 4518.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 4518.84, + "end": 4519.12, + "probability": 1.0 + }, + { + "word": " bring", + "start": 4519.12, + "end": 4519.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 4519.32, + "end": 4519.46, + "probability": 1.0 + }, + { + "word": " desktops", + "start": 4519.46, + "end": 4519.92, + "probability": 0.85302734375 + }, + { + "word": " down", + "start": 4519.92, + "end": 4520.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 4520.2, + "end": 4520.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 4520.42, + "end": 4520.6, + "probability": 1.0 + }, + { + "word": " guys", + "start": 4520.6, + "end": 4520.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 4520.9, + "end": 4521.44, + "probability": 0.8505859375 + }, + { + "word": " do", + "start": 4521.44, + "end": 4521.54, + "probability": 1.0 + }, + { + "word": " all", + "start": 4521.54, + "end": 4521.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 4521.76, + "end": 4521.88, + "probability": 1.0 + }, + { + "word": " important", + "start": 4521.88, + "end": 4522.2, + "probability": 1.0 + }, + { + "word": " upgrades.", + "start": 4522.2, + "end": 4522.72, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1834, + "text": "Right.", + "start": 4523.0, + "end": 4523.28, + "words": [ + { + "word": " Right.", + "start": 4523.0, + "end": 4523.28, + "probability": 0.8603515625 + } + ] + }, + { + "id": 1835, + "text": "Yeah.", + "start": 4523.44, + "end": 4523.92, + "words": [ + { + "word": " Yeah.", + "start": 4523.44, + "end": 4523.92, + "probability": 0.919921875 + } + ] + }, + { + "id": 1836, + "text": "The problem is right now, at least at the current cycle,", + "start": 4524.04, + "end": 4527.64, + "words": [ + { + "word": " The", + "start": 4524.04, + "end": 4524.52, + "probability": 0.73486328125 + }, + { + "word": " problem", + "start": 4524.52, + "end": 4524.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 4524.78, + "end": 4524.94, + "probability": 1.0 + }, + { + "word": " right", + "start": 4524.94, + "end": 4525.14, + "probability": 0.9169921875 + }, + { + "word": " now,", + "start": 4525.14, + "end": 4525.48, + "probability": 1.0 + }, + { + "word": " at", + "start": 4525.6, + "end": 4525.86, + "probability": 1.0 + }, + { + "word": " least", + "start": 4525.86, + "end": 4526.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 4526.12, + "end": 4526.3, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4526.3, + "end": 4526.42, + "probability": 1.0 + }, + { + "word": " current", + "start": 4526.42, + "end": 4527.04, + "probability": 1.0 + }, + { + "word": " cycle,", + "start": 4527.04, + "end": 4527.64, + "probability": 1.0 + } + ] + }, + { + "id": 1837, + "text": "where you're at with Windows 10,", + "start": 4528.12, + "end": 4529.2, + "words": [ + { + "word": " where", + "start": 4528.12, + "end": 4528.34, + "probability": 0.7607421875 + }, + { + "word": " you're", + "start": 4528.34, + "end": 4528.5, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 4528.5, + "end": 4528.58, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4528.58, + "end": 4528.74, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4528.74, + "end": 4528.94, + "probability": 0.9951171875 + }, + { + "word": " 10,", + "start": 4528.94, + "end": 4529.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1838, + "text": "is that there are large critical updates happening about every week.", + "start": 4529.3, + "end": 4533.94, + "words": [ + { + "word": " is", + "start": 4529.3, + "end": 4529.44, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4529.44, + "end": 4529.54, + "probability": 1.0 + }, + { + "word": " there", + "start": 4529.54, + "end": 4529.78, + "probability": 1.0 + }, + { + "word": " are", + "start": 4529.78, + "end": 4529.96, + "probability": 1.0 + }, + { + "word": " large", + "start": 4529.96, + "end": 4530.94, + "probability": 0.9990234375 + }, + { + "word": " critical", + "start": 4530.94, + "end": 4531.3, + "probability": 0.91796875 + }, + { + "word": " updates", + "start": 4531.3, + "end": 4531.68, + "probability": 1.0 + }, + { + "word": " happening", + "start": 4531.68, + "end": 4532.14, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 4532.14, + "end": 4533.12, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 4533.12, + "end": 4533.58, + "probability": 1.0 + }, + { + "word": " week.", + "start": 4533.58, + "end": 4533.94, + "probability": 1.0 + } + ] + }, + { + "id": 1839, + "text": "So, yeah.", + "start": 4535.380000000001, + "end": 4536.34, + "words": [ + { + "word": " So,", + "start": 4535.380000000001, + "end": 4535.860000000001, + "probability": 0.9580078125 + }, + { + "word": " yeah.", + "start": 4535.860000000001, + "end": 4536.34, + "probability": 0.90966796875 + } + ] + }, + { + "id": 1840, + "text": "Yeah.", + "start": 4536.62, + "end": 4537.1, + "words": [ + { + "word": " Yeah.", + "start": 4536.62, + "end": 4537.1, + "probability": 0.78125 + } + ] + }, + { + "id": 1841, + "text": "That'll calm down eventually, but...", + "start": 4537.32, + "end": 4539.34, + "words": [ + { + "word": " That'll", + "start": 4537.32, + "end": 4537.46, + "probability": 0.88525390625 + }, + { + "word": " calm", + "start": 4537.46, + "end": 4537.68, + "probability": 0.99658203125 + }, + { + "word": " down", + "start": 4537.68, + "end": 4537.88, + "probability": 1.0 + }, + { + "word": " eventually,", + "start": 4537.88, + "end": 4538.24, + "probability": 0.9951171875 + }, + { + "word": " but...", + "start": 4538.44, + "end": 4539.34, + "probability": 0.8388671875 + } + ] + }, + { + "id": 1842, + "text": "But will their servers pick up the speed enough to where it'll do the job?", + "start": 4539.34, + "end": 4544.6, + "words": [ + { + "word": " But", + "start": 4539.34, + "end": 4539.68, + "probability": 0.990234375 + }, + { + "word": " will", + "start": 4539.68, + "end": 4540.22, + "probability": 0.97509765625 + }, + { + "word": " their", + "start": 4540.22, + "end": 4540.54, + "probability": 0.99951171875 + }, + { + "word": " servers", + "start": 4540.54, + "end": 4541.08, + "probability": 1.0 + }, + { + "word": " pick", + "start": 4541.08, + "end": 4542.1, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 4542.1, + "end": 4542.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 4542.28, + "end": 4542.4, + "probability": 0.9912109375 + }, + { + "word": " speed", + "start": 4542.4, + "end": 4542.72, + "probability": 0.99951171875 + }, + { + "word": " enough", + "start": 4542.72, + "end": 4543.02, + "probability": 0.9892578125 + }, + { + "word": " to", + "start": 4543.02, + "end": 4543.22, + "probability": 0.99853515625 + }, + { + "word": " where", + "start": 4543.22, + "end": 4543.42, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 4543.42, + "end": 4543.74, + "probability": 0.9912109375 + }, + { + "word": " do", + "start": 4543.74, + "end": 4544.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 4544.18, + "end": 4544.32, + "probability": 1.0 + }, + { + "word": " job?", + "start": 4544.32, + "end": 4544.6, + "probability": 1.0 + } + ] + }, + { + "id": 1843, + "text": "Well, luckily they're doing something called...", + "start": 4544.98, + "end": 4546.92, + "words": [ + { + "word": " Well,", + "start": 4544.98, + "end": 4545.46, + "probability": 0.9990234375 + }, + { + "word": " luckily", + "start": 4545.5, + "end": 4545.74, + "probability": 1.0 + }, + { + "word": " they're", + "start": 4545.74, + "end": 4545.96, + "probability": 0.740234375 + }, + { + "word": " doing", + "start": 4545.96, + "end": 4546.14, + "probability": 1.0 + }, + { + "word": " something", + "start": 4546.14, + "end": 4546.44, + "probability": 1.0 + }, + { + "word": " called...", + "start": 4546.44, + "end": 4546.92, + "probability": 0.8486328125 + } + ] + }, + { + "id": 1844, + "text": "It's like torrenting.", + "start": 4546.92, + "end": 4548.28, + "words": [ + { + "word": " It's", + "start": 4546.92, + "end": 4547.7, + "probability": 0.9931640625 + }, + { + "word": " like", + "start": 4547.7, + "end": 4547.78, + "probability": 1.0 + }, + { + "word": " torrenting.", + "start": 4547.78, + "end": 4548.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1845, + "text": "They're doing peer-to-peer with the Windows 10 upgrades or updates.", + "start": 4548.28, + "end": 4551.64, + "words": [ + { + "word": " They're", + "start": 4548.28, + "end": 4548.4, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 4548.4, + "end": 4548.52, + "probability": 1.0 + }, + { + "word": " peer", + "start": 4548.52, + "end": 4548.76, + "probability": 0.99951171875 + }, + { + "word": "-to", + "start": 4548.76, + "end": 4548.88, + "probability": 0.9990234375 + }, + { + "word": "-peer", + "start": 4548.88, + "end": 4549.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 4549.08, + "end": 4549.54, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4549.54, + "end": 4550.06, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 4550.06, + "end": 4550.26, + "probability": 1.0 + }, + { + "word": " 10", + "start": 4550.26, + "end": 4550.5, + "probability": 1.0 + }, + { + "word": " upgrades", + "start": 4550.5, + "end": 4550.78, + "probability": 0.96630859375 + }, + { + "word": " or", + "start": 4550.78, + "end": 4551.36, + "probability": 0.8740234375 + }, + { + "word": " updates.", + "start": 4551.36, + "end": 4551.64, + "probability": 1.0 + } + ] + }, + { + "id": 1846, + "text": "Mm-hmm.", + "start": 4551.8, + "end": 4552.12, + "words": [ + { + "word": " Mm", + "start": 4551.8, + "end": 4551.92, + "probability": 0.2159423828125 + }, + { + "word": "-hmm.", + "start": 4551.92, + "end": 4552.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1847, + "text": "So those updates are available all over the place.", + "start": 4552.14, + "end": 4555.52, + "words": [ + { + "word": " So", + "start": 4552.14, + "end": 4552.56, + "probability": 0.9990234375 + }, + { + "word": " those", + "start": 4552.56, + "end": 4553.46, + "probability": 0.86328125 + }, + { + "word": " updates", + "start": 4553.46, + "end": 4553.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 4553.82, + "end": 4554.02, + "probability": 1.0 + }, + { + "word": " available", + "start": 4554.02, + "end": 4554.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 4554.3, + "end": 4554.88, + "probability": 1.0 + }, + { + "word": " over", + "start": 4554.88, + "end": 4555.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 4555.1, + "end": 4555.24, + "probability": 1.0 + }, + { + "word": " place.", + "start": 4555.24, + "end": 4555.52, + "probability": 1.0 + } + ] + }, + { + "id": 1848, + "text": "And so it's pretty quick.", + "start": 4555.64, + "end": 4557.18, + "words": [ + { + "word": " And", + "start": 4555.64, + "end": 4556.04, + "probability": 0.970703125 + }, + { + "word": " so", + "start": 4556.04, + "end": 4556.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4556.18, + "end": 4556.74, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 4556.74, + "end": 4556.9, + "probability": 1.0 + }, + { + "word": " quick.", + "start": 4556.9, + "end": 4557.18, + "probability": 1.0 + } + ] + }, + { + "id": 1849, + "text": "And I've never had a problem with slow updates.", + "start": 4558.4400000000005, + "end": 4560.94, + "words": [ + { + "word": " And", + "start": 4558.4400000000005, + "end": 4558.84, + "probability": 0.0138092041015625 + }, + { + "word": " I've", + "start": 4558.84, + "end": 4559.24, + "probability": 0.990234375 + }, + { + "word": " never", + "start": 4559.24, + "end": 4559.44, + "probability": 1.0 + }, + { + "word": " had", + "start": 4559.44, + "end": 4559.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 4559.72, + "end": 4559.82, + "probability": 1.0 + }, + { + "word": " problem", + "start": 4559.82, + "end": 4560.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 4560.08, + "end": 4560.22, + "probability": 0.9990234375 + }, + { + "word": " slow", + "start": 4560.22, + "end": 4560.48, + "probability": 1.0 + }, + { + "word": " updates.", + "start": 4560.48, + "end": 4560.94, + "probability": 1.0 + } + ] + }, + { + "id": 1850, + "text": "But anyway.", + "start": 4563.0, + "end": 4563.6, + "words": [ + { + "word": " But", + "start": 4563.0, + "end": 4563.4, + "probability": 0.8857421875 + }, + { + "word": " anyway.", + "start": 4563.4, + "end": 4563.6, + "probability": 0.9404296875 + } + ] + }, + { + "id": 1851, + "text": "Got it.", + "start": 4563.78, + "end": 4564.08, + "words": [ + { + "word": " Got", + "start": 4563.78, + "end": 4564.04, + "probability": 0.4150390625 + }, + { + "word": " it.", + "start": 4564.04, + "end": 4564.08, + "probability": 0.73193359375 + } + ] + }, + { + "id": 1852, + "text": "So if you want to bring it down, we can do the upgrades for you.", + "start": 4564.26, + "end": 4566.62, + "words": [ + { + "word": " So", + "start": 4564.26, + "end": 4564.64, + "probability": 0.9951171875 + }, + { + "word": " if", + "start": 4564.64, + "end": 4564.92, + "probability": 0.86328125 + }, + { + "word": " you", + "start": 4564.92, + "end": 4565.16, + "probability": 1.0 + }, + { + "word": " want", + "start": 4565.16, + "end": 4565.24, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4565.24, + "end": 4565.3, + "probability": 1.0 + }, + { + "word": " bring", + "start": 4565.3, + "end": 4565.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 4565.44, + "end": 4565.52, + "probability": 1.0 + }, + { + "word": " down,", + "start": 4565.52, + "end": 4565.62, + "probability": 1.0 + }, + { + "word": " we", + "start": 4565.68, + "end": 4565.72, + "probability": 1.0 + }, + { + "word": " can", + "start": 4565.72, + "end": 4565.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 4565.8, + "end": 4565.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 4565.9, + "end": 4565.98, + "probability": 0.9609375 + }, + { + "word": " upgrades", + "start": 4565.98, + "end": 4566.16, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 4566.16, + "end": 4566.4, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4566.4, + "end": 4566.62, + "probability": 1.0 + } + ] + }, + { + "id": 1853, + "text": "That's not a big deal.", + "start": 4566.62, + "end": 4567.34, + "words": [ + { + "word": " That's", + "start": 4566.62, + "end": 4566.84, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 4566.84, + "end": 4566.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 4566.92, + "end": 4567.04, + "probability": 1.0 + }, + { + "word": " big", + "start": 4567.04, + "end": 4567.14, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 4567.14, + "end": 4567.34, + "probability": 1.0 + } + ] + }, + { + "id": 1854, + "text": "I would suggest that you guys switch over to Comcast if possible.", + "start": 4567.72, + "end": 4570.64, + "words": [ + { + "word": " I", + "start": 4567.72, + "end": 4568.12, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 4568.12, + "end": 4568.32, + "probability": 1.0 + }, + { + "word": " suggest", + "start": 4568.32, + "end": 4568.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 4568.7, + "end": 4568.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 4568.9, + "end": 4568.98, + "probability": 1.0 + }, + { + "word": " guys", + "start": 4568.98, + "end": 4569.1, + "probability": 0.99853515625 + }, + { + "word": " switch", + "start": 4569.1, + "end": 4569.28, + "probability": 1.0 + }, + { + "word": " over", + "start": 4569.28, + "end": 4569.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 4569.44, + "end": 4569.56, + "probability": 1.0 + }, + { + "word": " Comcast", + "start": 4569.56, + "end": 4569.94, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 4569.94, + "end": 4570.26, + "probability": 0.96630859375 + }, + { + "word": " possible.", + "start": 4570.26, + "end": 4570.64, + "probability": 1.0 + } + ] + }, + { + "id": 1855, + "text": "You could go the other route of building a crazy antenna,", + "start": 4571.280000000001, + "end": 4574.44, + "words": [ + { + "word": " You", + "start": 4571.280000000001, + "end": 4571.68, + "probability": 1.0 + }, + { + "word": " could", + "start": 4571.68, + "end": 4571.86, + "probability": 0.98681640625 + }, + { + "word": " go", + "start": 4571.86, + "end": 4572.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 4572.04, + "end": 4572.16, + "probability": 1.0 + }, + { + "word": " other", + "start": 4572.16, + "end": 4572.4, + "probability": 1.0 + }, + { + "word": " route", + "start": 4572.4, + "end": 4572.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 4572.66, + "end": 4572.92, + "probability": 1.0 + }, + { + "word": " building", + "start": 4572.92, + "end": 4573.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 4573.26, + "end": 4573.54, + "probability": 0.97216796875 + }, + { + "word": " crazy", + "start": 4573.54, + "end": 4574.02, + "probability": 0.9599609375 + }, + { + "word": " antenna,", + "start": 4574.02, + "end": 4574.44, + "probability": 1.0 + } + ] + }, + { + "id": 1856, + "text": "but I think that you will have paid for the difference in cost", + "start": 4574.62, + "end": 4577.72, + "words": [ + { + "word": " but", + "start": 4574.62, + "end": 4574.76, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4574.76, + "end": 4575.22, + "probability": 1.0 + }, + { + "word": " think", + "start": 4575.22, + "end": 4575.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 4575.5, + "end": 4575.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 4575.6, + "end": 4575.68, + "probability": 1.0 + }, + { + "word": " will", + "start": 4575.68, + "end": 4575.84, + "probability": 1.0 + }, + { + "word": " have", + "start": 4575.84, + "end": 4575.98, + "probability": 1.0 + }, + { + "word": " paid", + "start": 4575.98, + "end": 4576.2, + "probability": 1.0 + }, + { + "word": " for", + "start": 4576.2, + "end": 4576.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 4576.42, + "end": 4576.52, + "probability": 1.0 + }, + { + "word": " difference", + "start": 4576.52, + "end": 4577.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 4577.0, + "end": 4577.34, + "probability": 1.0 + }, + { + "word": " cost", + "start": 4577.34, + "end": 4577.72, + "probability": 1.0 + } + ] + }, + { + "id": 1857, + "text": "just by getting a nice directional Wi-Fi antenna for a year.", + "start": 4578.42, + "end": 4583.48, + "words": [ + { + "word": " just", + "start": 4578.42, + "end": 4578.82, + "probability": 0.99755859375 + }, + { + "word": " by", + "start": 4578.82, + "end": 4579.12, + "probability": 1.0 + }, + { + "word": " getting", + "start": 4579.12, + "end": 4579.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 4579.36, + "end": 4579.56, + "probability": 1.0 + }, + { + "word": " nice", + "start": 4579.56, + "end": 4579.88, + "probability": 1.0 + }, + { + "word": " directional", + "start": 4579.88, + "end": 4580.72, + "probability": 0.99951171875 + }, + { + "word": " Wi", + "start": 4580.72, + "end": 4581.12, + "probability": 0.994140625 + }, + { + "word": "-Fi", + "start": 4581.12, + "end": 4581.36, + "probability": 1.0 + }, + { + "word": " antenna", + "start": 4581.36, + "end": 4581.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 4581.7, + "end": 4583.14, + "probability": 0.87890625 + }, + { + "word": " a", + "start": 4583.14, + "end": 4583.32, + "probability": 1.0 + }, + { + "word": " year.", + "start": 4583.32, + "end": 4583.48, + "probability": 1.0 + } + ] + }, + { + "id": 1858, + "text": "So just get off CenturyLink, man.", + "start": 4584.260000000001, + "end": 4587.3, + "words": [ + { + "word": " So", + "start": 4584.260000000001, + "end": 4584.660000000001, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 4584.660000000001, + "end": 4585.06, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 4585.06, + "end": 4586.5, + "probability": 0.99853515625 + }, + { + "word": " off", + "start": 4586.5, + "end": 4586.62, + "probability": 0.99951171875 + }, + { + "word": " CenturyLink,", + "start": 4586.62, + "end": 4587.12, + "probability": 0.7509765625 + }, + { + "word": " man.", + "start": 4587.14, + "end": 4587.3, + "probability": 1.0 + } + ] + }, + { + "id": 1859, + "text": "Come on.", + "start": 4587.32, + "end": 4587.7, + "words": [ + { + "word": " Come", + "start": 4587.32, + "end": 4587.54, + "probability": 0.99951171875 + }, + { + "word": " on.", + "start": 4587.54, + "end": 4587.7, + "probability": 1.0 + } + ] + }, + { + "id": 1860, + "text": "Okay.", + "start": 4589.3, + "end": 4589.74, + "words": [ + { + "word": " Okay.", + "start": 4589.3, + "end": 4589.74, + "probability": 0.9384765625 + } + ] + }, + { + "id": 1861, + "text": "Will do.", + "start": 4589.86, + "end": 4590.3, + "words": [ + { + "word": " Will", + "start": 4589.86, + "end": 4590.14, + "probability": 0.845703125 + }, + { + "word": " do.", + "start": 4590.14, + "end": 4590.3, + "probability": 1.0 + } + ] + }, + { + "id": 1862, + "text": "All right.", + "start": 4590.5, + "end": 4590.8, + "words": [ + { + "word": " All", + "start": 4590.5, + "end": 4590.74, + "probability": 0.556640625 + }, + { + "word": " right.", + "start": 4590.74, + "end": 4590.8, + "probability": 1.0 + } + ] + }, + { + "id": 1863, + "text": "I'll talk to you later.", + "start": 4590.88, + "end": 4591.98, + "words": [ + { + "word": " I'll", + "start": 4590.88, + "end": 4591.12, + "probability": 0.794921875 + }, + { + "word": " talk", + "start": 4591.12, + "end": 4591.18, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4591.18, + "end": 4591.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 4591.3, + "end": 4591.82, + "probability": 1.0 + }, + { + "word": " later.", + "start": 4591.82, + "end": 4591.98, + "probability": 1.0 + } + ] + }, + { + "id": 1864, + "text": "You know, that poses a very important question, though.", + "start": 4592.28, + "end": 4594.7, + "words": [ + { + "word": " You", + "start": 4592.28, + "end": 4592.7, + "probability": 0.9931640625 + }, + { + "word": " know,", + "start": 4592.7, + "end": 4592.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 4592.86, + "end": 4593.14, + "probability": 0.984375 + }, + { + "word": " poses", + "start": 4593.14, + "end": 4593.5, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4593.5, + "end": 4593.68, + "probability": 1.0 + }, + { + "word": " very", + "start": 4593.68, + "end": 4593.8, + "probability": 1.0 + }, + { + "word": " important", + "start": 4593.8, + "end": 4594.02, + "probability": 1.0 + }, + { + "word": " question,", + "start": 4594.02, + "end": 4594.46, + "probability": 1.0 + }, + { + "word": " though.", + "start": 4594.52, + "end": 4594.7, + "probability": 1.0 + } + ] + }, + { + "id": 1865, + "text": "What is it?", + "start": 4594.8, + "end": 4595.38, + "words": [ + { + "word": " What", + "start": 4594.8, + "end": 4595.18, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4595.18, + "end": 4595.28, + "probability": 1.0 + }, + { + "word": " it?", + "start": 4595.28, + "end": 4595.38, + "probability": 1.0 + } + ] + }, + { + "id": 1866, + "text": "If you start your Windows 10 download and it doesn't finish until after the free date ends,", + "start": 4595.42, + "end": 4600.48, + "words": [ + { + "word": " If", + "start": 4595.42, + "end": 4595.58, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 4595.58, + "end": 4595.7, + "probability": 1.0 + }, + { + "word": " start", + "start": 4595.7, + "end": 4596.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 4596.06, + "end": 4596.36, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4596.36, + "end": 4596.66, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 4596.66, + "end": 4596.94, + "probability": 0.99951171875 + }, + { + "word": " download", + "start": 4596.94, + "end": 4597.3, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4597.3, + "end": 4597.58, + "probability": 0.91943359375 + }, + { + "word": " it", + "start": 4597.58, + "end": 4597.66, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 4597.66, + "end": 4597.98, + "probability": 1.0 + }, + { + "word": " finish", + "start": 4597.98, + "end": 4598.24, + "probability": 0.99951171875 + }, + { + "word": " until", + "start": 4598.24, + "end": 4598.5, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 4598.5, + "end": 4598.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4598.96, + "end": 4599.32, + "probability": 0.8056640625 + }, + { + "word": " free", + "start": 4599.32, + "end": 4599.88, + "probability": 1.0 + }, + { + "word": " date", + "start": 4599.88, + "end": 4600.14, + "probability": 0.99609375 + }, + { + "word": " ends,", + "start": 4600.14, + "end": 4600.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1867, + "text": "is it still free?", + "start": 4600.66, + "end": 4601.74, + "words": [ + { + "word": " is", + "start": 4600.66, + "end": 4601.16, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 4601.16, + "end": 4601.3, + "probability": 1.0 + }, + { + "word": " still", + "start": 4601.3, + "end": 4601.52, + "probability": 1.0 + }, + { + "word": " free?", + "start": 4601.52, + "end": 4601.74, + "probability": 1.0 + } + ] + }, + { + "id": 1868, + "text": "I believe that it is.", + "start": 4602.8, + "end": 4603.88, + "words": [ + { + "word": " I", + "start": 4602.8, + "end": 4603.12, + "probability": 0.9990234375 + }, + { + "word": " believe", + "start": 4603.12, + "end": 4603.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 4603.38, + "end": 4603.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 4603.56, + "end": 4603.68, + "probability": 1.0 + }, + { + "word": " is.", + "start": 4603.68, + "end": 4603.88, + "probability": 1.0 + } + ] + }, + { + "id": 1869, + "text": "CenturyLink takes a month to download it.", + "start": 4605.4800000000005, + "end": 4607.16, + "words": [ + { + "word": " CenturyLink", + "start": 4605.4800000000005, + "end": 4605.92, + "probability": 0.9619140625 + }, + { + "word": " takes", + "start": 4605.92, + "end": 4606.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4606.08, + "end": 4606.24, + "probability": 1.0 + }, + { + "word": " month", + "start": 4606.24, + "end": 4606.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4606.46, + "end": 4606.68, + "probability": 1.0 + }, + { + "word": " download", + "start": 4606.68, + "end": 4606.94, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4606.94, + "end": 4607.16, + "probability": 0.982421875 + } + ] + }, + { + "id": 1870, + "text": "I believe that it is.", + "start": 4608.04, + "end": 4609.08, + "words": [ + { + "word": " I", + "start": 4608.04, + "end": 4608.48, + "probability": 1.0 + }, + { + "word": " believe", + "start": 4608.48, + "end": 4608.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 4608.72, + "end": 4608.88, + "probability": 0.9794921875 + }, + { + "word": " it", + "start": 4608.88, + "end": 4608.96, + "probability": 0.99658203125 + }, + { + "word": " is.", + "start": 4608.96, + "end": 4609.08, + "probability": 1.0 + } + ] + }, + { + "id": 1871, + "text": "I think all you have to do is start the process.", + "start": 4609.1, + "end": 4610.56, + "words": [ + { + "word": " I", + "start": 4609.1, + "end": 4609.18, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 4609.18, + "end": 4609.32, + "probability": 1.0 + }, + { + "word": " all", + "start": 4609.32, + "end": 4609.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 4609.44, + "end": 4609.52, + "probability": 1.0 + }, + { + "word": " have", + "start": 4609.52, + "end": 4609.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 4609.64, + "end": 4609.7, + "probability": 1.0 + }, + { + "word": " do", + "start": 4609.7, + "end": 4609.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 4609.8, + "end": 4609.9, + "probability": 1.0 + }, + { + "word": " start", + "start": 4609.9, + "end": 4610.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 4610.1, + "end": 4610.24, + "probability": 1.0 + }, + { + "word": " process.", + "start": 4610.24, + "end": 4610.56, + "probability": 1.0 + } + ] + }, + { + "id": 1872, + "text": "Yeah, I was just joking.", + "start": 4610.96, + "end": 4612.22, + "words": [ + { + "word": " Yeah,", + "start": 4610.96, + "end": 4611.38, + "probability": 0.97412109375 + }, + { + "word": " I", + "start": 4611.5, + "end": 4611.5, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 4611.5, + "end": 4611.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 4611.56, + "end": 4611.66, + "probability": 0.99951171875 + }, + { + "word": " joking.", + "start": 4611.66, + "end": 4612.22, + "probability": 1.0 + } + ] + }, + { + "id": 1873, + "text": "I mean, it's a valid question.", + "start": 4612.9800000000005, + "end": 4614.62, + "words": [ + { + "word": " I", + "start": 4612.9800000000005, + "end": 4613.42, + "probability": 0.994140625 + }, + { + "word": " mean,", + "start": 4613.42, + "end": 4613.76, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4613.78, + "end": 4614.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 4614.12, + "end": 4614.14, + "probability": 1.0 + }, + { + "word": " valid", + "start": 4614.14, + "end": 4614.28, + "probability": 1.0 + }, + { + "word": " question.", + "start": 4614.28, + "end": 4614.62, + "probability": 1.0 + } + ] + }, + { + "id": 1874, + "text": "For some users, apparently it is.", + "start": 4615.640000000001, + "end": 4617.62, + "words": [ + { + "word": " For", + "start": 4615.640000000001, + "end": 4616.080000000001, + "probability": 1.0 + }, + { + "word": " some", + "start": 4616.080000000001, + "end": 4616.52, + "probability": 1.0 + }, + { + "word": " users,", + "start": 4616.52, + "end": 4616.82, + "probability": 0.99951171875 + }, + { + "word": " apparently", + "start": 4616.88, + "end": 4617.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 4617.18, + "end": 4617.5, + "probability": 0.65478515625 + }, + { + "word": " is.", + "start": 4617.5, + "end": 4617.62, + "probability": 1.0 + } + ] + }, + { + "id": 1875, + "text": "You know, for some users.", + "start": 4617.62, + "end": 4618.1, + "words": [ + { + "word": " You", + "start": 4617.62, + "end": 4617.7, + "probability": 0.642578125 + }, + { + "word": " know,", + "start": 4617.7, + "end": 4617.72, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4617.72, + "end": 4617.9, + "probability": 0.99462890625 + }, + { + "word": " some", + "start": 4617.9, + "end": 4618.1, + "probability": 0.7548828125 + }, + { + "word": " users.", + "start": 4618.1, + "end": 4618.1, + "probability": 0.29296875 + } + ] + }, + { + "id": 1876, + "text": "", + "start": 4618.1, + "end": 4618.1, + "words": [] + }, + { + "id": 1877, + "text": "CenturyLink users.", + "start": 4618.1, + "end": 4618.6, + "words": [ + { + "word": " CenturyLink", + "start": 4618.1, + "end": 4618.38, + "probability": 0.49267578125 + }, + { + "word": " users.", + "start": 4618.38, + "end": 4618.6, + "probability": 0.998046875 + } + ] + }, + { + "id": 1878, + "text": "You know, you got to know.", + "start": 4619.3, + "end": 4620.8, + "words": [ + { + "word": " You", + "start": 4619.3, + "end": 4619.66, + "probability": 0.87939453125 + }, + { + "word": " know,", + "start": 4619.66, + "end": 4619.74, + "probability": 0.1680908203125 + }, + { + "word": " you", + "start": 4619.82, + "end": 4620.02, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 4620.02, + "end": 4620.52, + "probability": 0.48046875 + }, + { + "word": " to", + "start": 4620.52, + "end": 4620.66, + "probability": 1.0 + }, + { + "word": " know.", + "start": 4620.66, + "end": 4620.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1879, + "text": "You got to wonder.", + "start": 4620.9, + "end": 4621.78, + "words": [ + { + "word": " You", + "start": 4620.9, + "end": 4621.16, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 4621.16, + "end": 4621.24, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4621.24, + "end": 4621.36, + "probability": 0.9990234375 + }, + { + "word": " wonder.", + "start": 4621.36, + "end": 4621.78, + "probability": 0.94677734375 + } + ] + }, + { + "id": 1880, + "text": "We got to open up a guru internet cafe where people can just come and download Windows 10.", + "start": 4621.94, + "end": 4625.82, + "words": [ + { + "word": " We", + "start": 4621.94, + "end": 4622.08, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 4622.08, + "end": 4622.16, + "probability": 0.97998046875 + }, + { + "word": " to", + "start": 4622.16, + "end": 4622.26, + "probability": 1.0 + }, + { + "word": " open", + "start": 4622.26, + "end": 4622.46, + "probability": 1.0 + }, + { + "word": " up", + "start": 4622.46, + "end": 4622.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 4622.6, + "end": 4622.72, + "probability": 0.99951171875 + }, + { + "word": " guru", + "start": 4622.72, + "end": 4623.02, + "probability": 0.83251953125 + }, + { + "word": " internet", + "start": 4623.02, + "end": 4623.46, + "probability": 0.923828125 + }, + { + "word": " cafe", + "start": 4623.46, + "end": 4623.82, + "probability": 0.9970703125 + }, + { + "word": " where", + "start": 4623.82, + "end": 4624.26, + "probability": 0.99609375 + }, + { + "word": " people", + "start": 4624.26, + "end": 4624.46, + "probability": 1.0 + }, + { + "word": " can", + "start": 4624.46, + "end": 4624.62, + "probability": 1.0 + }, + { + "word": " just", + "start": 4624.62, + "end": 4624.8, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 4624.8, + "end": 4624.98, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4624.98, + "end": 4625.1, + "probability": 1.0 + }, + { + "word": " download", + "start": 4625.1, + "end": 4625.32, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 4625.32, + "end": 4625.54, + "probability": 0.99853515625 + }, + { + "word": " 10.", + "start": 4625.54, + "end": 4625.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1881, + "text": "I thought about doing that.", + "start": 4625.96, + "end": 4626.88, + "words": [ + { + "word": " I", + "start": 4625.96, + "end": 4626.2, + "probability": 0.99951171875 + }, + { + "word": " thought", + "start": 4626.2, + "end": 4626.32, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 4626.32, + "end": 4626.48, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4626.48, + "end": 4626.7, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4626.7, + "end": 4626.88, + "probability": 1.0 + } + ] + }, + { + "id": 1882, + "text": "I thought maybe we'd talk with Black Crown", + "start": 4626.94, + "end": 4628.46, + "words": [ + { + "word": " I", + "start": 4626.94, + "end": 4627.0, + "probability": 0.9951171875 + }, + { + "word": " thought", + "start": 4627.0, + "end": 4627.08, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 4627.08, + "end": 4627.24, + "probability": 0.99951171875 + }, + { + "word": " we'd", + "start": 4627.24, + "end": 4627.56, + "probability": 1.0 + }, + { + "word": " talk", + "start": 4627.56, + "end": 4627.74, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4627.74, + "end": 4627.94, + "probability": 0.99951171875 + }, + { + "word": " Black", + "start": 4627.94, + "end": 4628.18, + "probability": 0.9951171875 + }, + { + "word": " Crown", + "start": 4628.18, + "end": 4628.46, + "probability": 0.962890625 + } + ] + }, + { + "id": 1883, + "text": "and see if we can do like a joint venture for coffee shop slash...", + "start": 4628.46, + "end": 4633.46, + "words": [ + { + "word": " and", + "start": 4628.46, + "end": 4629.12, + "probability": 0.76611328125 + }, + { + "word": " see", + "start": 4629.12, + "end": 4629.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 4629.5, + "end": 4629.62, + "probability": 1.0 + }, + { + "word": " we", + "start": 4629.62, + "end": 4629.72, + "probability": 1.0 + }, + { + "word": " can", + "start": 4629.72, + "end": 4629.84, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 4629.84, + "end": 4629.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 4629.98, + "end": 4630.14, + "probability": 0.72998046875 + }, + { + "word": " a", + "start": 4630.14, + "end": 4630.24, + "probability": 0.99951171875 + }, + { + "word": " joint", + "start": 4630.24, + "end": 4630.54, + "probability": 0.99951171875 + }, + { + "word": " venture", + "start": 4630.54, + "end": 4630.8, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4630.8, + "end": 4631.5, + "probability": 0.99853515625 + }, + { + "word": " coffee", + "start": 4631.5, + "end": 4632.3, + "probability": 0.98193359375 + }, + { + "word": " shop", + "start": 4632.3, + "end": 4632.6, + "probability": 0.98291015625 + }, + { + "word": " slash...", + "start": 4632.6, + "end": 4633.46, + "probability": 0.5830078125 + } + ] + }, + { + "id": 1884, + "text": "Guru internet.", + "start": 4633.46, + "end": 4634.46, + "words": [ + { + "word": " Guru", + "start": 4633.46, + "end": 4634.12, + "probability": 0.9990234375 + }, + { + "word": " internet.", + "start": 4634.12, + "end": 4634.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1885, + "text": "Yeah, basically.", + "start": 4634.58, + "end": 4635.66, + "words": [ + { + "word": " Yeah,", + "start": 4634.58, + "end": 4634.94, + "probability": 0.99365234375 + }, + { + "word": " basically.", + "start": 4634.98, + "end": 4635.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1886, + "text": "If Google Fiber ever comes to Tucson.", + "start": 4635.96, + "end": 4637.76, + "words": [ + { + "word": " If", + "start": 4635.96, + "end": 4636.32, + "probability": 0.99658203125 + }, + { + "word": " Google", + "start": 4636.32, + "end": 4636.54, + "probability": 1.0 + }, + { + "word": " Fiber", + "start": 4636.54, + "end": 4636.9, + "probability": 0.9970703125 + }, + { + "word": " ever", + "start": 4636.9, + "end": 4637.04, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 4637.04, + "end": 4637.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 4637.28, + "end": 4637.5, + "probability": 1.0 + }, + { + "word": " Tucson.", + "start": 4637.5, + "end": 4637.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1887, + "text": "Yeah, there's not a whole lot of hope for that.", + "start": 4639.88, + "end": 4641.46, + "words": [ + { + "word": " Yeah,", + "start": 4639.88, + "end": 4640.24, + "probability": 0.9970703125 + }, + { + "word": " there's", + "start": 4640.32, + "end": 4640.48, + "probability": 1.0 + }, + { + "word": " not", + "start": 4640.48, + "end": 4640.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 4640.58, + "end": 4640.72, + "probability": 1.0 + }, + { + "word": " whole", + "start": 4640.72, + "end": 4640.78, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 4640.78, + "end": 4640.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 4640.94, + "end": 4641.02, + "probability": 1.0 + }, + { + "word": " hope", + "start": 4641.02, + "end": 4641.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 4641.16, + "end": 4641.32, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4641.32, + "end": 4641.46, + "probability": 1.0 + } + ] + }, + { + "id": 1888, + "text": "It just depresses me every time I hear Google Fiber.", + "start": 4641.56, + "end": 4643.76, + "words": [ + { + "word": " It", + "start": 4641.56, + "end": 4641.7, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 4641.7, + "end": 4642.04, + "probability": 0.99951171875 + }, + { + "word": " depresses", + "start": 4642.04, + "end": 4642.5, + "probability": 0.90625 + }, + { + "word": " me", + "start": 4642.5, + "end": 4642.66, + "probability": 1.0 + }, + { + "word": " every", + "start": 4642.66, + "end": 4642.8, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 4642.8, + "end": 4642.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 4642.94, + "end": 4643.08, + "probability": 1.0 + }, + { + "word": " hear", + "start": 4643.08, + "end": 4643.22, + "probability": 1.0 + }, + { + "word": " Google", + "start": 4643.22, + "end": 4643.62, + "probability": 0.9990234375 + }, + { + "word": " Fiber.", + "start": 4643.62, + "end": 4643.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1889, + "text": "What's the limit on Ethernet viability?", + "start": 4643.76, + "end": 4645.9, + "words": [ + { + "word": " What's", + "start": 4643.76, + "end": 4643.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4643.9, + "end": 4644.0, + "probability": 1.0 + }, + { + "word": " limit", + "start": 4644.0, + "end": 4644.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 4644.32, + "end": 4644.54, + "probability": 1.0 + }, + { + "word": " Ethernet", + "start": 4644.54, + "end": 4645.5, + "probability": 0.8779296875 + }, + { + "word": " viability?", + "start": 4645.5, + "end": 4645.9, + "probability": 1.0 + } + ] + }, + { + "id": 1890, + "text": "Is it 100 miles?", + "start": 4646.12, + "end": 4647.2, + "words": [ + { + "word": " Is", + "start": 4646.12, + "end": 4646.3, + "probability": 1.0 + }, + { + "word": " it", + "start": 4646.3, + "end": 4646.42, + "probability": 1.0 + }, + { + "word": " 100", + "start": 4646.42, + "end": 4646.76, + "probability": 0.9833984375 + }, + { + "word": " miles?", + "start": 4646.76, + "end": 4647.2, + "probability": 1.0 + } + ] + }, + { + "id": 1891, + "text": "Can we drag a cable down from Phoenix?", + "start": 4647.2, + "end": 4649.32, + "words": [ + { + "word": " Can", + "start": 4647.2, + "end": 4647.8, + "probability": 0.89306640625 + }, + { + "word": " we", + "start": 4647.8, + "end": 4648.06, + "probability": 1.0 + }, + { + "word": " drag", + "start": 4648.06, + "end": 4648.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 4648.26, + "end": 4648.4, + "probability": 1.0 + }, + { + "word": " cable", + "start": 4648.4, + "end": 4648.66, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 4648.66, + "end": 4648.86, + "probability": 1.0 + }, + { + "word": " from", + "start": 4648.86, + "end": 4649.02, + "probability": 0.9482421875 + }, + { + "word": " Phoenix?", + "start": 4649.02, + "end": 4649.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1892, + "text": "No, no.", + "start": 4649.44, + "end": 4650.2, + "words": [ + { + "word": " No,", + "start": 4649.44, + "end": 4649.8, + "probability": 0.9990234375 + }, + { + "word": " no.", + "start": 4649.84, + "end": 4650.2, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1893, + "text": "It's 300 feet, which is terrible.", + "start": 4650.28, + "end": 4652.02, + "words": [ + { + "word": " It's", + "start": 4650.28, + "end": 4650.6, + "probability": 0.9990234375 + }, + { + "word": " 300", + "start": 4650.6, + "end": 4650.86, + "probability": 0.99951171875 + }, + { + "word": " feet,", + "start": 4650.86, + "end": 4651.2, + "probability": 1.0 + }, + { + "word": " which", + "start": 4651.32, + "end": 4651.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 4651.58, + "end": 4651.68, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 4651.68, + "end": 4652.02, + "probability": 1.0 + } + ] + }, + { + "id": 1894, + "text": "It's not going to work.", + "start": 4652.34, + "end": 4653.3, + "words": [ + { + "word": " It's", + "start": 4652.34, + "end": 4652.7, + "probability": 1.0 + }, + { + "word": " not", + "start": 4652.7, + "end": 4652.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 4652.92, + "end": 4653.06, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 4653.06, + "end": 4653.14, + "probability": 1.0 + }, + { + "word": " work.", + "start": 4653.14, + "end": 4653.3, + "probability": 1.0 + } + ] + }, + { + "id": 1895, + "text": "That's not even close to long enough.", + "start": 4653.38, + "end": 4655.0, + "words": [ + { + "word": " That's", + "start": 4653.38, + "end": 4653.54, + "probability": 0.99609375 + }, + { + "word": " not", + "start": 4653.54, + "end": 4653.72, + "probability": 1.0 + }, + { + "word": " even", + "start": 4653.72, + "end": 4654.18, + "probability": 1.0 + }, + { + "word": " close", + "start": 4654.18, + "end": 4654.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 4654.52, + "end": 4654.68, + "probability": 1.0 + }, + { + "word": " long", + "start": 4654.68, + "end": 4654.84, + "probability": 1.0 + }, + { + "word": " enough.", + "start": 4654.84, + "end": 4655.0, + "probability": 1.0 + } + ] + }, + { + "id": 1896, + "text": "All right.", + "start": 4656.280000000001, + "end": 4656.84, + "words": [ + { + "word": " All", + "start": 4656.280000000001, + "end": 4656.64, + "probability": 0.96240234375 + }, + { + "word": " right.", + "start": 4656.64, + "end": 4656.84, + "probability": 1.0 + } + ] + }, + { + "id": 1897, + "text": "All right.", + "start": 4656.98, + "end": 4657.86, + "words": [ + { + "word": " All", + "start": 4656.98, + "end": 4657.26, + "probability": 0.798828125 + }, + { + "word": " right.", + "start": 4657.26, + "end": 4657.86, + "probability": 1.0 + } + ] + }, + { + "id": 1898, + "text": "So there's a question in the chat.", + "start": 4657.88, + "end": 4658.96, + "words": [ + { + "word": " So", + "start": 4657.88, + "end": 4657.96, + "probability": 0.984375 + }, + { + "word": " there's", + "start": 4657.96, + "end": 4658.2, + "probability": 0.9384765625 + }, + { + "word": " a", + "start": 4658.2, + "end": 4658.28, + "probability": 1.0 + }, + { + "word": " question", + "start": 4658.28, + "end": 4658.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 4658.54, + "end": 4658.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 4658.68, + "end": 4658.74, + "probability": 1.0 + }, + { + "word": " chat.", + "start": 4658.74, + "end": 4658.96, + "probability": 1.0 + } + ] + }, + { + "id": 1899, + "text": "And by the way, if you want to go to the chat, you can go to gurushow.com slash chat.", + "start": 4659.08, + "end": 4662.9, + "words": [ + { + "word": " And", + "start": 4659.08, + "end": 4659.12, + "probability": 0.9384765625 + }, + { + "word": " by", + "start": 4659.12, + "end": 4659.28, + "probability": 0.67919921875 + }, + { + "word": " the", + "start": 4659.28, + "end": 4659.42, + "probability": 1.0 + }, + { + "word": " way,", + "start": 4659.42, + "end": 4659.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 4659.52, + "end": 4659.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 4659.62, + "end": 4659.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 4659.66, + "end": 4659.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4659.76, + "end": 4659.86, + "probability": 1.0 + }, + { + "word": " go", + "start": 4659.86, + "end": 4660.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4660.0, + "end": 4660.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 4660.24, + "end": 4660.86, + "probability": 1.0 + }, + { + "word": " chat,", + "start": 4660.86, + "end": 4661.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 4661.5, + "end": 4661.6, + "probability": 0.9873046875 + }, + { + "word": " can", + "start": 4661.6, + "end": 4661.66, + "probability": 1.0 + }, + { + "word": " go", + "start": 4661.66, + "end": 4661.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 4661.72, + "end": 4661.8, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 4661.8, + "end": 4662.14, + "probability": 0.9091796875 + }, + { + "word": ".com", + "start": 4662.14, + "end": 4662.46, + "probability": 1.0 + }, + { + "word": " slash", + "start": 4662.46, + "end": 4662.62, + "probability": 0.9111328125 + }, + { + "word": " chat.", + "start": 4662.62, + "end": 4662.9, + "probability": 1.0 + } + ] + }, + { + "id": 1900, + "text": "And they're asking, what effect will net neutrality have on the mom and pop ISPs here, like SimplyBits and stuff like that?", + "start": 4663.06, + "end": 4669.6, + "words": [ + { + "word": " And", + "start": 4663.06, + "end": 4663.42, + "probability": 0.99755859375 + }, + { + "word": " they're", + "start": 4663.42, + "end": 4664.32, + "probability": 0.99853515625 + }, + { + "word": " asking,", + "start": 4664.32, + "end": 4664.54, + "probability": 1.0 + }, + { + "word": " what", + "start": 4664.62, + "end": 4664.76, + "probability": 0.9853515625 + }, + { + "word": " effect", + "start": 4664.76, + "end": 4665.14, + "probability": 1.0 + }, + { + "word": " will", + "start": 4665.14, + "end": 4665.32, + "probability": 1.0 + }, + { + "word": " net", + "start": 4665.32, + "end": 4665.48, + "probability": 0.99560546875 + }, + { + "word": " neutrality", + "start": 4665.48, + "end": 4665.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 4665.86, + "end": 4666.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 4666.2, + "end": 4666.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 4666.36, + "end": 4666.4, + "probability": 1.0 + }, + { + "word": " mom", + "start": 4666.4, + "end": 4666.56, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4666.56, + "end": 4666.66, + "probability": 0.740234375 + }, + { + "word": " pop", + "start": 4666.66, + "end": 4666.82, + "probability": 1.0 + }, + { + "word": " ISPs", + "start": 4666.82, + "end": 4667.38, + "probability": 0.99951171875 + }, + { + "word": " here,", + "start": 4667.38, + "end": 4667.62, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4667.72, + "end": 4667.96, + "probability": 1.0 + }, + { + "word": " SimplyBits", + "start": 4667.96, + "end": 4668.56, + "probability": 0.8203125 + }, + { + "word": " and", + "start": 4668.56, + "end": 4668.74, + "probability": 0.99853515625 + }, + { + "word": " stuff", + "start": 4668.74, + "end": 4669.28, + "probability": 1.0 + }, + { + "word": " like", + "start": 4669.28, + "end": 4669.46, + "probability": 1.0 + }, + { + "word": " that?", + "start": 4669.46, + "end": 4669.6, + "probability": 1.0 + } + ] + }, + { + "id": 1901, + "text": "He heard that it would put stress on them because they're not big enough to compete with the utilities.", + "start": 4671.02, + "end": 4675.76, + "words": [ + { + "word": " He", + "start": 4671.02, + "end": 4671.38, + "probability": 0.99755859375 + }, + { + "word": " heard", + "start": 4671.38, + "end": 4671.62, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4671.62, + "end": 4671.76, + "probability": 1.0 + }, + { + "word": " it", + "start": 4671.76, + "end": 4671.86, + "probability": 1.0 + }, + { + "word": " would", + "start": 4671.86, + "end": 4671.96, + "probability": 1.0 + }, + { + "word": " put", + "start": 4671.96, + "end": 4672.12, + "probability": 1.0 + }, + { + "word": " stress", + "start": 4672.12, + "end": 4672.44, + "probability": 1.0 + }, + { + "word": " on", + "start": 4672.44, + "end": 4672.72, + "probability": 1.0 + }, + { + "word": " them", + "start": 4672.72, + "end": 4672.96, + "probability": 1.0 + }, + { + "word": " because", + "start": 4672.96, + "end": 4673.34, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 4673.34, + "end": 4673.66, + "probability": 1.0 + }, + { + "word": " not", + "start": 4673.66, + "end": 4673.78, + "probability": 1.0 + }, + { + "word": " big", + "start": 4673.78, + "end": 4674.12, + "probability": 1.0 + }, + { + "word": " enough", + "start": 4674.12, + "end": 4674.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 4674.34, + "end": 4674.56, + "probability": 1.0 + }, + { + "word": " compete", + "start": 4674.56, + "end": 4674.78, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4674.78, + "end": 4675.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 4675.02, + "end": 4675.22, + "probability": 1.0 + }, + { + "word": " utilities.", + "start": 4675.22, + "end": 4675.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1902, + "text": "Is this true?", + "start": 4676.12, + "end": 4676.84, + "words": [ + { + "word": " Is", + "start": 4676.12, + "end": 4676.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 4676.48, + "end": 4676.62, + "probability": 1.0 + }, + { + "word": " true?", + "start": 4676.62, + "end": 4676.84, + "probability": 1.0 + } + ] + }, + { + "id": 1903, + "text": "Well, I mean, correct me if I'm wrong, but don't most of those mom and pop ISPs, as that person put it, they're just reselling other ISPs, right?", + "start": 4677.280000000001, + "end": 4686.84, + "words": [ + { + "word": " Well,", + "start": 4677.280000000001, + "end": 4677.72, + "probability": 0.9541015625 + }, + { + "word": " I", + "start": 4677.86, + "end": 4678.08, + "probability": 0.81640625 + }, + { + "word": " mean,", + "start": 4678.08, + "end": 4678.34, + "probability": 1.0 + }, + { + "word": " correct", + "start": 4678.36, + "end": 4678.54, + "probability": 1.0 + }, + { + "word": " me", + "start": 4678.54, + "end": 4678.72, + "probability": 1.0 + }, + { + "word": " if", + "start": 4678.72, + "end": 4678.8, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4678.8, + "end": 4678.92, + "probability": 1.0 + }, + { + "word": " wrong,", + "start": 4678.92, + "end": 4679.14, + "probability": 1.0 + }, + { + "word": " but", + "start": 4679.3, + "end": 4679.82, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 4679.82, + "end": 4680.18, + "probability": 0.9892578125 + }, + { + "word": " most", + "start": 4680.18, + "end": 4680.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 4680.4, + "end": 4680.54, + "probability": 1.0 + }, + { + "word": " those", + "start": 4680.54, + "end": 4680.72, + "probability": 1.0 + }, + { + "word": " mom", + "start": 4680.72, + "end": 4681.04, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 4681.04, + "end": 4681.16, + "probability": 0.259765625 + }, + { + "word": " pop", + "start": 4681.16, + "end": 4681.3, + "probability": 1.0 + }, + { + "word": " ISPs,", + "start": 4681.3, + "end": 4681.88, + "probability": 0.99609375 + }, + { + "word": " as", + "start": 4681.9, + "end": 4682.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 4682.16, + "end": 4682.44, + "probability": 0.99755859375 + }, + { + "word": " person", + "start": 4682.44, + "end": 4683.06, + "probability": 1.0 + }, + { + "word": " put", + "start": 4683.06, + "end": 4683.26, + "probability": 1.0 + }, + { + "word": " it,", + "start": 4683.26, + "end": 4683.42, + "probability": 1.0 + }, + { + "word": " they're", + "start": 4683.48, + "end": 4684.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 4684.44, + "end": 4684.6, + "probability": 1.0 + }, + { + "word": " reselling", + "start": 4684.6, + "end": 4685.06, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 4685.06, + "end": 4685.7, + "probability": 1.0 + }, + { + "word": " ISPs,", + "start": 4685.7, + "end": 4686.58, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4686.66, + "end": 4686.84, + "probability": 1.0 + } + ] + }, + { + "id": 1904, + "text": "Well, yeah.", + "start": 4687.52, + "end": 4688.14, + "words": [ + { + "word": " Well,", + "start": 4687.52, + "end": 4687.96, + "probability": 0.9990234375 + }, + { + "word": " yeah.", + "start": 4687.96, + "end": 4688.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1905, + "text": "I mean, everybody resells the backbone.", + "start": 4688.24, + "end": 4689.74, + "words": [ + { + "word": " I", + "start": 4688.24, + "end": 4688.5, + "probability": 0.994140625 + }, + { + "word": " mean,", + "start": 4688.5, + "end": 4688.64, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 4688.66, + "end": 4688.88, + "probability": 1.0 + }, + { + "word": " resells", + "start": 4688.88, + "end": 4689.32, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 4689.32, + "end": 4689.46, + "probability": 0.5166015625 + }, + { + "word": " backbone.", + "start": 4689.46, + "end": 4689.74, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1906, + "text": "Yeah.", + "start": 4689.98, + "end": 4690.16, + "words": [ + { + "word": " Yeah.", + "start": 4689.98, + "end": 4690.16, + "probability": 0.79443359375 + } + ] + }, + { + "id": 1907, + "text": "But as an example, SimplyBits uses both the Comcast network, or I'm sorry, the Cox network and the Centrelink network to do their thing.", + "start": 4691.240000000001, + "end": 4702.12, + "words": [ + { + "word": " But", + "start": 4691.240000000001, + "end": 4691.68, + "probability": 0.99658203125 + }, + { + "word": " as", + "start": 4691.68, + "end": 4692.12, + "probability": 0.8056640625 + }, + { + "word": " an", + "start": 4692.12, + "end": 4692.96, + "probability": 1.0 + }, + { + "word": " example,", + "start": 4692.96, + "end": 4693.34, + "probability": 1.0 + }, + { + "word": " SimplyBits", + "start": 4693.42, + "end": 4693.92, + "probability": 0.8642578125 + }, + { + "word": " uses", + "start": 4693.92, + "end": 4694.14, + "probability": 1.0 + }, + { + "word": " both", + "start": 4694.14, + "end": 4694.9, + "probability": 0.80908203125 + }, + { + "word": " the", + "start": 4694.9, + "end": 4696.08, + "probability": 1.0 + }, + { + "word": " Comcast", + "start": 4696.08, + "end": 4696.62, + "probability": 0.89990234375 + }, + { + "word": " network,", + "start": 4696.62, + "end": 4696.88, + "probability": 0.9853515625 + }, + { + "word": " or", + "start": 4697.24, + "end": 4697.6, + "probability": 0.9765625 + }, + { + "word": " I'm", + "start": 4697.6, + "end": 4697.82, + "probability": 1.0 + }, + { + "word": " sorry,", + "start": 4697.82, + "end": 4697.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 4697.98, + "end": 4698.18, + "probability": 1.0 + }, + { + "word": " Cox", + "start": 4698.18, + "end": 4698.46, + "probability": 0.9970703125 + }, + { + "word": " network", + "start": 4698.46, + "end": 4698.7, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 4698.7, + "end": 4699.22, + "probability": 0.6259765625 + }, + { + "word": " the", + "start": 4699.22, + "end": 4699.66, + "probability": 1.0 + }, + { + "word": " Centrelink", + "start": 4699.66, + "end": 4700.7, + "probability": 0.673828125 + }, + { + "word": " network", + "start": 4700.7, + "end": 4700.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 4700.9, + "end": 4701.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 4701.26, + "end": 4701.72, + "probability": 1.0 + }, + { + "word": " their", + "start": 4701.72, + "end": 4701.88, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 4701.88, + "end": 4702.12, + "probability": 1.0 + } + ] + }, + { + "id": 1908, + "text": "And depending on where their towers are at, those also have to connect to a larger network.", + "start": 4702.2, + "end": 4705.82, + "words": [ + { + "word": " And", + "start": 4702.2, + "end": 4702.28, + "probability": 0.9990234375 + }, + { + "word": " depending", + "start": 4702.28, + "end": 4702.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 4702.5, + "end": 4702.66, + "probability": 0.97509765625 + }, + { + "word": " where", + "start": 4702.66, + "end": 4702.74, + "probability": 1.0 + }, + { + "word": " their", + "start": 4702.74, + "end": 4702.86, + "probability": 1.0 + }, + { + "word": " towers", + "start": 4702.86, + "end": 4703.16, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4703.16, + "end": 4703.38, + "probability": 1.0 + }, + { + "word": " at,", + "start": 4703.38, + "end": 4703.6, + "probability": 1.0 + }, + { + "word": " those", + "start": 4703.7, + "end": 4704.14, + "probability": 1.0 + }, + { + "word": " also", + "start": 4704.14, + "end": 4704.46, + "probability": 1.0 + }, + { + "word": " have", + "start": 4704.46, + "end": 4704.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 4704.66, + "end": 4704.8, + "probability": 1.0 + }, + { + "word": " connect", + "start": 4704.8, + "end": 4705.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4705.0, + "end": 4705.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 4705.16, + "end": 4705.24, + "probability": 0.99951171875 + }, + { + "word": " larger", + "start": 4705.24, + "end": 4705.56, + "probability": 0.98095703125 + }, + { + "word": " network.", + "start": 4705.56, + "end": 4705.82, + "probability": 0.44140625 + } + ] + }, + { + "id": 1909, + "text": "Like Verizon, as an example.", + "start": 4707.2, + "end": 4708.3, + "words": [ + { + "word": " Like", + "start": 4707.2, + "end": 4707.26, + "probability": 0.56298828125 + }, + { + "word": " Verizon,", + "start": 4707.26, + "end": 4707.6, + "probability": 0.9833984375 + }, + { + "word": " as", + "start": 4707.7, + "end": 4707.88, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 4707.88, + "end": 4707.96, + "probability": 1.0 + }, + { + "word": " example.", + "start": 4707.96, + "end": 4708.3, + "probability": 1.0 + } + ] + }, + { + "id": 1910, + "text": "Verizon has towers all over Tucson.", + "start": 4709.18, + "end": 4711.36, + "words": [ + { + "word": " Verizon", + "start": 4709.18, + "end": 4709.74, + "probability": 0.9990234375 + }, + { + "word": " has", + "start": 4709.74, + "end": 4709.92, + "probability": 1.0 + }, + { + "word": " towers", + "start": 4709.92, + "end": 4710.22, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4710.22, + "end": 4710.72, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 4710.72, + "end": 4711.0, + "probability": 1.0 + }, + { + "word": " Tucson.", + "start": 4711.0, + "end": 4711.36, + "probability": 1.0 + } + ] + }, + { + "id": 1911, + "text": "And those Verizon towers are connected not only amongst each other, right, directly, but they also have, like, Cox connections going into them to help provide bandwidth for your 4G.", + "start": 4711.72, + "end": 4724.34, + "words": [ + { + "word": " And", + "start": 4711.72, + "end": 4712.28, + "probability": 0.94140625 + }, + { + "word": " those", + "start": 4712.28, + "end": 4712.72, + "probability": 0.99462890625 + }, + { + "word": " Verizon", + "start": 4712.72, + "end": 4713.06, + "probability": 1.0 + }, + { + "word": " towers", + "start": 4713.06, + "end": 4713.32, + "probability": 0.99267578125 + }, + { + "word": " are", + "start": 4713.32, + "end": 4713.62, + "probability": 1.0 + }, + { + "word": " connected", + "start": 4713.62, + "end": 4713.92, + "probability": 1.0 + }, + { + "word": " not", + "start": 4713.92, + "end": 4714.64, + "probability": 0.994140625 + }, + { + "word": " only", + "start": 4714.64, + "end": 4715.08, + "probability": 1.0 + }, + { + "word": " amongst", + "start": 4715.08, + "end": 4716.5, + "probability": 0.99951171875 + }, + { + "word": " each", + "start": 4716.5, + "end": 4716.76, + "probability": 1.0 + }, + { + "word": " other,", + "start": 4716.76, + "end": 4717.06, + "probability": 1.0 + }, + { + "word": " right,", + "start": 4717.1, + "end": 4717.42, + "probability": 0.81103515625 + }, + { + "word": " directly,", + "start": 4717.46, + "end": 4717.84, + "probability": 0.99853515625 + }, + { + "word": " but", + "start": 4717.9, + "end": 4718.12, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4718.12, + "end": 4718.3, + "probability": 1.0 + }, + { + "word": " also", + "start": 4718.3, + "end": 4718.54, + "probability": 1.0 + }, + { + "word": " have,", + "start": 4718.54, + "end": 4719.02, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4719.04, + "end": 4719.48, + "probability": 1.0 + }, + { + "word": " Cox", + "start": 4719.5, + "end": 4719.86, + "probability": 0.93310546875 + }, + { + "word": " connections", + "start": 4719.86, + "end": 4720.16, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 4720.16, + "end": 4720.64, + "probability": 1.0 + }, + { + "word": " into", + "start": 4720.64, + "end": 4720.9, + "probability": 1.0 + }, + { + "word": " them", + "start": 4720.9, + "end": 4721.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 4721.08, + "end": 4721.32, + "probability": 1.0 + }, + { + "word": " help", + "start": 4721.32, + "end": 4721.62, + "probability": 1.0 + }, + { + "word": " provide", + "start": 4721.62, + "end": 4721.96, + "probability": 1.0 + }, + { + "word": " bandwidth", + "start": 4721.96, + "end": 4722.56, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4722.56, + "end": 4722.94, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 4722.94, + "end": 4723.2, + "probability": 1.0 + }, + { + "word": " 4G.", + "start": 4723.2, + "end": 4724.34, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1912, + "text": "So there's an interconnectedness that goes on with all of the ISPs.", + "start": 4726.0199999999995, + "end": 4729.62, + "words": [ + { + "word": " So", + "start": 4726.0199999999995, + "end": 4726.58, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 4726.58, + "end": 4727.14, + "probability": 0.77734375 + }, + { + "word": " an", + "start": 4727.14, + "end": 4727.2, + "probability": 1.0 + }, + { + "word": " interconnectedness", + "start": 4727.2, + "end": 4727.88, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 4727.88, + "end": 4728.0, + "probability": 1.0 + }, + { + "word": " goes", + "start": 4728.0, + "end": 4728.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 4728.16, + "end": 4728.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 4728.38, + "end": 4728.6, + "probability": 1.0 + }, + { + "word": " all", + "start": 4728.6, + "end": 4728.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 4728.76, + "end": 4728.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 4728.9, + "end": 4729.06, + "probability": 1.0 + }, + { + "word": " ISPs.", + "start": 4729.06, + "end": 4729.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1913, + "text": "Now, luckily, I know some people who happen to own a mom and pop.", + "start": 4730.879999999999, + "end": 4737.04, + "words": [ + { + "word": " Now,", + "start": 4730.879999999999, + "end": 4731.44, + "probability": 0.99951171875 + }, + { + "word": " luckily,", + "start": 4731.44, + "end": 4732.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 4732.2, + "end": 4732.94, + "probability": 1.0 + }, + { + "word": " know", + "start": 4732.94, + "end": 4733.34, + "probability": 1.0 + }, + { + "word": " some", + "start": 4733.34, + "end": 4733.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 4733.52, + "end": 4733.8, + "probability": 1.0 + }, + { + "word": " who", + "start": 4733.8, + "end": 4733.98, + "probability": 1.0 + }, + { + "word": " happen", + "start": 4733.98, + "end": 4734.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 4734.2, + "end": 4734.46, + "probability": 1.0 + }, + { + "word": " own", + "start": 4734.46, + "end": 4735.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4735.56, + "end": 4735.98, + "probability": 1.0 + }, + { + "word": " mom", + "start": 4735.98, + "end": 4736.7, + "probability": 0.99072265625 + }, + { + "word": " and", + "start": 4736.7, + "end": 4736.84, + "probability": 0.42236328125 + }, + { + "word": " pop.", + "start": 4736.84, + "end": 4737.04, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1914, + "text": "And rather than me kind of talking out of my butt on this one, I will set up a meeting to go talk to them and ask them what they think and what their struggles are, and I'll get back to you.", + "start": 4738.22, + "end": 4747.94, + "words": [ + { + "word": " And", + "start": 4738.22, + "end": 4738.5, + "probability": 0.08734130859375 + }, + { + "word": " rather", + "start": 4738.5, + "end": 4738.78, + "probability": 0.990234375 + }, + { + "word": " than", + "start": 4738.78, + "end": 4739.08, + "probability": 1.0 + }, + { + "word": " me", + "start": 4739.08, + "end": 4739.24, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 4739.24, + "end": 4739.84, + "probability": 0.958984375 + }, + { + "word": " of", + "start": 4739.84, + "end": 4739.96, + "probability": 1.0 + }, + { + "word": " talking", + "start": 4739.96, + "end": 4740.2, + "probability": 1.0 + }, + { + "word": " out", + "start": 4740.2, + "end": 4740.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 4740.34, + "end": 4740.44, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4740.44, + "end": 4740.54, + "probability": 1.0 + }, + { + "word": " butt", + "start": 4740.54, + "end": 4740.78, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4740.78, + "end": 4740.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 4740.94, + "end": 4741.12, + "probability": 1.0 + }, + { + "word": " one,", + "start": 4741.12, + "end": 4741.26, + "probability": 1.0 + }, + { + "word": " I", + "start": 4741.36, + "end": 4742.1, + "probability": 1.0 + }, + { + "word": " will", + "start": 4742.1, + "end": 4742.44, + "probability": 1.0 + }, + { + "word": " set", + "start": 4742.44, + "end": 4743.5, + "probability": 0.98779296875 + }, + { + "word": " up", + "start": 4743.5, + "end": 4743.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 4743.66, + "end": 4743.76, + "probability": 1.0 + }, + { + "word": " meeting", + "start": 4743.76, + "end": 4743.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 4743.94, + "end": 4744.08, + "probability": 0.74267578125 + }, + { + "word": " go", + "start": 4744.08, + "end": 4744.14, + "probability": 1.0 + }, + { + "word": " talk", + "start": 4744.14, + "end": 4744.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 4744.32, + "end": 4744.42, + "probability": 1.0 + }, + { + "word": " them", + "start": 4744.42, + "end": 4744.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 4744.52, + "end": 4744.62, + "probability": 0.99853515625 + }, + { + "word": " ask", + "start": 4744.62, + "end": 4744.82, + "probability": 1.0 + }, + { + "word": " them", + "start": 4744.82, + "end": 4745.0, + "probability": 1.0 + }, + { + "word": " what", + "start": 4745.0, + "end": 4745.16, + "probability": 1.0 + }, + { + "word": " they", + "start": 4745.16, + "end": 4745.32, + "probability": 1.0 + }, + { + "word": " think", + "start": 4745.32, + "end": 4745.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 4745.56, + "end": 4745.7, + "probability": 0.99365234375 + }, + { + "word": " what", + "start": 4745.7, + "end": 4745.82, + "probability": 1.0 + }, + { + "word": " their", + "start": 4745.82, + "end": 4746.02, + "probability": 1.0 + }, + { + "word": " struggles", + "start": 4746.02, + "end": 4746.62, + "probability": 1.0 + }, + { + "word": " are,", + "start": 4746.62, + "end": 4746.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 4747.04, + "end": 4747.16, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 4747.16, + "end": 4747.5, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 4747.5, + "end": 4747.6, + "probability": 1.0 + }, + { + "word": " back", + "start": 4747.6, + "end": 4747.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4747.76, + "end": 4747.9, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4747.9, + "end": 4747.94, + "probability": 1.0 + } + ] + }, + { + "id": 1915, + "text": "Maybe we can get one of them on the show.", + "start": 4748.88, + "end": 4750.74, + "words": [ + { + "word": " Maybe", + "start": 4748.88, + "end": 4749.16, + "probability": 0.9951171875 + }, + { + "word": " we", + "start": 4749.16, + "end": 4749.34, + "probability": 1.0 + }, + { + "word": " can", + "start": 4749.34, + "end": 4749.4, + "probability": 1.0 + }, + { + "word": " get", + "start": 4749.4, + "end": 4749.86, + "probability": 0.7548828125 + }, + { + "word": " one", + "start": 4749.86, + "end": 4750.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 4750.24, + "end": 4750.3, + "probability": 1.0 + }, + { + "word": " them", + "start": 4750.3, + "end": 4750.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 4750.36, + "end": 4750.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4750.48, + "end": 4750.52, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4750.52, + "end": 4750.74, + "probability": 1.0 + } + ] + }, + { + "id": 1916, + "text": "That'd be cool.", + "start": 4750.78, + "end": 4751.14, + "words": [ + { + "word": " That'd", + "start": 4750.78, + "end": 4750.98, + "probability": 0.7421875 + }, + { + "word": " be", + "start": 4750.98, + "end": 4751.0, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 4751.0, + "end": 4751.14, + "probability": 1.0 + } + ] + }, + { + "id": 1917, + "text": "That would be nice.", + "start": 4751.28, + "end": 4752.02, + "words": [ + { + "word": " That", + "start": 4751.28, + "end": 4751.56, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 4751.56, + "end": 4751.66, + "probability": 1.0 + }, + { + "word": " be", + "start": 4751.66, + "end": 4751.78, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 4751.78, + "end": 4752.02, + "probability": 1.0 + } + ] + }, + { + "id": 1918, + "text": "All right.", + "start": 4752.9800000000005, + "end": 4753.48, + "words": [ + { + "word": " All", + "start": 4752.9800000000005, + "end": 4753.26, + "probability": 0.9833984375 + }, + { + "word": " right.", + "start": 4753.26, + "end": 4753.48, + "probability": 1.0 + } + ] + }, + { + "id": 1919, + "text": "Do we want to take some calls here, or do we want to do a break?", + "start": 4754.1, + "end": 4756.2, + "words": [ + { + "word": " Do", + "start": 4754.1, + "end": 4754.38, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 4754.38, + "end": 4754.48, + "probability": 1.0 + }, + { + "word": " want", + "start": 4754.48, + "end": 4754.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 4754.62, + "end": 4754.66, + "probability": 1.0 + }, + { + "word": " take", + "start": 4754.66, + "end": 4754.8, + "probability": 1.0 + }, + { + "word": " some", + "start": 4754.8, + "end": 4754.92, + "probability": 0.53759765625 + }, + { + "word": " calls", + "start": 4754.92, + "end": 4755.32, + "probability": 1.0 + }, + { + "word": " here,", + "start": 4755.32, + "end": 4755.48, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4755.54, + "end": 4755.6, + "probability": 1.0 + }, + { + "word": " do", + "start": 4755.6, + "end": 4755.6, + "probability": 1.0 + }, + { + "word": " we", + "start": 4755.6, + "end": 4755.68, + "probability": 0.998046875 + }, + { + "word": " want", + "start": 4755.68, + "end": 4755.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 4755.78, + "end": 4755.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 4755.82, + "end": 4755.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 4755.94, + "end": 4756.0, + "probability": 1.0 + }, + { + "word": " break?", + "start": 4756.0, + "end": 4756.2, + "probability": 1.0 + } + ] + }, + { + "id": 1920, + "text": "They're stacking up.", + "start": 4756.24, + "end": 4756.8, + "words": [ + { + "word": " They're", + "start": 4756.24, + "end": 4756.34, + "probability": 0.94775390625 + }, + { + "word": " stacking", + "start": 4756.34, + "end": 4756.62, + "probability": 0.99951171875 + }, + { + "word": " up.", + "start": 4756.62, + "end": 4756.8, + "probability": 1.0 + } + ] + }, + { + "id": 1921, + "text": "All right.", + "start": 4757.64, + "end": 4758.04, + "words": [ + { + "word": " All", + "start": 4757.64, + "end": 4757.92, + "probability": 1.0 + }, + { + "word": " right.", + "start": 4757.92, + "end": 4758.04, + "probability": 1.0 + } + ] + }, + { + "id": 1922, + "text": "You pick one.", + "start": 4758.06, + "end": 4758.46, + "words": [ + { + "word": " You", + "start": 4758.06, + "end": 4758.14, + "probability": 0.99853515625 + }, + { + "word": " pick", + "start": 4758.14, + "end": 4758.28, + "probability": 1.0 + }, + { + "word": " one.", + "start": 4758.28, + "end": 4758.46, + "probability": 1.0 + } + ] + }, + { + "id": 1923, + "text": "Put it on there.", + "start": 4758.740000000001, + "end": 4759.36, + "words": [ + { + "word": " Put", + "start": 4758.740000000001, + "end": 4759.02, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4759.02, + "end": 4759.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 4759.12, + "end": 4759.22, + "probability": 1.0 + }, + { + "word": " there.", + "start": 4759.22, + "end": 4759.36, + "probability": 1.0 + } + ] + }, + { + "id": 1924, + "text": "All right.", + "start": 4761.0, + "end": 4761.5, + "words": [ + { + "word": " All", + "start": 4761.0, + "end": 4761.28, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 4761.28, + "end": 4761.5, + "probability": 1.0 + } + ] + }, + { + "id": 1925, + "text": "Luxanne.", + "start": 4761.64, + "end": 4761.92, + "words": [ + { + "word": " Luxanne.", + "start": 4761.64, + "end": 4761.92, + "probability": 0.75 + } + ] + }, + { + "id": 1926, + "text": "Hello, Luxanne.", + "start": 4762.0, + "end": 4762.5, + "words": [ + { + "word": " Hello,", + "start": 4762.0, + "end": 4762.18, + "probability": 0.99560546875 + }, + { + "word": " Luxanne.", + "start": 4762.28, + "end": 4762.5, + "probability": 1.0 + } + ] + }, + { + "id": 1927, + "text": "How are you?", + "start": 4762.56, + "end": 4762.84, + "words": [ + { + "word": " How", + "start": 4762.56, + "end": 4762.66, + "probability": 0.99560546875 + }, + { + "word": " are", + "start": 4762.66, + "end": 4762.74, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4762.74, + "end": 4762.84, + "probability": 1.0 + } + ] + }, + { + "id": 1928, + "text": "I'm good.", + "start": 4764.2, + "end": 4764.74, + "words": [ + { + "word": " I'm", + "start": 4764.2, + "end": 4764.48, + "probability": 0.8486328125 + }, + { + "word": " good.", + "start": 4764.48, + "end": 4764.74, + "probability": 1.0 + } + ] + }, + { + "id": 1929, + "text": "Thank you for the tip.", + "start": 4765.02, + "end": 4766.82, + "words": [ + { + "word": " Thank", + "start": 4765.02, + "end": 4765.3, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 4765.3, + "end": 4765.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 4765.52, + "end": 4765.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4765.7, + "end": 4765.84, + "probability": 0.99951171875 + }, + { + "word": " tip.", + "start": 4765.84, + "end": 4766.82, + "probability": 0.62646484375 + } + ] + }, + { + "id": 1930, + "text": "It's on getting my speed faster after converting to Windows 10.", + "start": 4766.82, + "end": 4772.14, + "words": [ + { + "word": " It's", + "start": 4766.82, + "end": 4766.94, + "probability": 0.499267578125 + }, + { + "word": " on", + "start": 4766.94, + "end": 4767.12, + "probability": 0.271240234375 + }, + { + "word": " getting", + "start": 4767.12, + "end": 4768.24, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4768.24, + "end": 4768.56, + "probability": 1.0 + }, + { + "word": " speed", + "start": 4768.56, + "end": 4769.62, + "probability": 0.99169921875 + }, + { + "word": " faster", + "start": 4769.62, + "end": 4769.96, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 4769.96, + "end": 4770.46, + "probability": 0.9990234375 + }, + { + "word": " converting", + "start": 4770.46, + "end": 4771.2, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4771.2, + "end": 4771.5, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4771.5, + "end": 4771.76, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 4771.76, + "end": 4772.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1931, + "text": "Getting rid of the combating spyware really helped.", + "start": 4772.42, + "end": 4777.94, + "words": [ + { + "word": " Getting", + "start": 4772.42, + "end": 4773.14, + "probability": 0.9892578125 + }, + { + "word": " rid", + "start": 4773.14, + "end": 4773.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 4773.4, + "end": 4773.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 4773.6, + "end": 4773.7, + "probability": 1.0 + }, + { + "word": " combating", + "start": 4773.7, + "end": 4774.38, + "probability": 0.9873046875 + }, + { + "word": " spyware", + "start": 4774.38, + "end": 4777.04, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 4777.04, + "end": 4777.58, + "probability": 1.0 + }, + { + "word": " helped.", + "start": 4777.58, + "end": 4777.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1932, + "text": "Excellent.", + "start": 4778.26, + "end": 4778.74, + "words": [ + { + "word": " Excellent.", + "start": 4778.26, + "end": 4778.74, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1933, + "text": "Glad to hear it.", + "start": 4778.76, + "end": 4779.42, + "words": [ + { + "word": " Glad", + "start": 4778.76, + "end": 4779.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4779.02, + "end": 4779.18, + "probability": 1.0 + }, + { + "word": " hear", + "start": 4779.18, + "end": 4779.32, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4779.32, + "end": 4779.42, + "probability": 1.0 + } + ] + }, + { + "id": 1934, + "text": "I have a new question.", + "start": 4779.86, + "end": 4781.76, + "words": [ + { + "word": " I", + "start": 4779.86, + "end": 4780.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 4780.58, + "end": 4780.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 4780.74, + "end": 4780.88, + "probability": 1.0 + }, + { + "word": " new", + "start": 4780.88, + "end": 4781.36, + "probability": 1.0 + }, + { + "word": " question.", + "start": 4781.36, + "end": 4781.76, + "probability": 1.0 + } + ] + }, + { + "id": 1935, + "text": "I recently retired, and my $29.99 DirecTV and CenturyNet interlink now is almost $120 a month.", + "start": 4781.96, + "end": 4792.32, + "words": [ + { + "word": " I", + "start": 4781.96, + "end": 4782.26, + "probability": 0.99755859375 + }, + { + "word": " recently", + "start": 4782.26, + "end": 4783.4, + "probability": 1.0 + }, + { + "word": " retired,", + "start": 4783.4, + "end": 4784.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 4784.26, + "end": 4784.68, + "probability": 1.0 + }, + { + "word": " my", + "start": 4784.68, + "end": 4785.56, + "probability": 1.0 + }, + { + "word": " $29", + "start": 4785.56, + "end": 4785.98, + "probability": 0.96484375 + }, + { + "word": ".99", + "start": 4785.98, + "end": 4786.58, + "probability": 1.0 + }, + { + "word": " DirecTV", + "start": 4786.58, + "end": 4787.54, + "probability": 0.98291015625 + }, + { + "word": " and", + "start": 4787.54, + "end": 4788.16, + "probability": 0.99853515625 + }, + { + "word": " CenturyNet", + "start": 4788.16, + "end": 4789.02, + "probability": 0.7236328125 + }, + { + "word": " interlink", + "start": 4789.02, + "end": 4789.6, + "probability": 0.7578125 + }, + { + "word": " now", + "start": 4789.6, + "end": 4789.84, + "probability": 0.6689453125 + }, + { + "word": " is", + "start": 4789.84, + "end": 4790.32, + "probability": 0.99755859375 + }, + { + "word": " almost", + "start": 4790.32, + "end": 4790.62, + "probability": 1.0 + }, + { + "word": " $120", + "start": 4790.62, + "end": 4791.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 4791.56, + "end": 4792.08, + "probability": 1.0 + }, + { + "word": " month.", + "start": 4792.08, + "end": 4792.32, + "probability": 1.0 + } + ] + }, + { + "id": 1936, + "text": "And with my retirement, that would equal about 10% of my retirement.", + "start": 4792.58, + "end": 4796.78, + "words": [ + { + "word": " And", + "start": 4792.58, + "end": 4793.0, + "probability": 0.78955078125 + }, + { + "word": " with", + "start": 4793.0, + "end": 4793.14, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 4793.14, + "end": 4793.34, + "probability": 1.0 + }, + { + "word": " retirement,", + "start": 4793.34, + "end": 4793.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 4793.96, + "end": 4794.1, + "probability": 1.0 + }, + { + "word": " would", + "start": 4794.1, + "end": 4794.26, + "probability": 1.0 + }, + { + "word": " equal", + "start": 4794.26, + "end": 4794.54, + "probability": 1.0 + }, + { + "word": " about", + "start": 4794.54, + "end": 4794.94, + "probability": 1.0 + }, + { + "word": " 10", + "start": 4794.94, + "end": 4795.26, + "probability": 0.99951171875 + }, + { + "word": "%", + "start": 4795.26, + "end": 4795.64, + "probability": 0.9853515625 + }, + { + "word": " of", + "start": 4795.64, + "end": 4796.02, + "probability": 1.0 + }, + { + "word": " my", + "start": 4796.02, + "end": 4796.26, + "probability": 1.0 + }, + { + "word": " retirement.", + "start": 4796.26, + "end": 4796.78, + "probability": 0.90087890625 + } + ] + }, + { + "id": 1937, + "text": "So I wanted to find out if there is a low-cost Internet service, and I'm going to...", + "start": 4796.82, + "end": 4804.46, + "words": [ + { + "word": " So", + "start": 4796.82, + "end": 4797.88, + "probability": 0.65869140625 + }, + { + "word": " I", + "start": 4797.88, + "end": 4798.56, + "probability": 0.88818359375 + }, + { + "word": " wanted", + "start": 4798.56, + "end": 4799.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4799.02, + "end": 4799.32, + "probability": 1.0 + }, + { + "word": " find", + "start": 4799.32, + "end": 4799.72, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4799.72, + "end": 4799.98, + "probability": 1.0 + }, + { + "word": " if", + "start": 4799.98, + "end": 4800.24, + "probability": 0.99755859375 + }, + { + "word": " there", + "start": 4800.24, + "end": 4800.74, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4800.74, + "end": 4801.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 4801.08, + "end": 4801.36, + "probability": 0.99951171875 + }, + { + "word": " low", + "start": 4801.36, + "end": 4801.74, + "probability": 0.99951171875 + }, + { + "word": "-cost", + "start": 4801.74, + "end": 4802.2, + "probability": 0.9599609375 + }, + { + "word": " Internet", + "start": 4802.2, + "end": 4802.56, + "probability": 0.7578125 + }, + { + "word": " service,", + "start": 4802.56, + "end": 4803.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 4803.26, + "end": 4803.68, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 4803.68, + "end": 4803.92, + "probability": 0.65185546875 + }, + { + "word": " going", + "start": 4803.92, + "end": 4804.16, + "probability": 1.0 + }, + { + "word": " to...", + "start": 4804.16, + "end": 4804.46, + "probability": 0.662109375 + } + ] + }, + { + "id": 1938, + "text": "I have a converter box in a Roku.", + "start": 4804.46, + "end": 4806.12, + "words": [ + { + "word": " I", + "start": 4804.46, + "end": 4804.52, + "probability": 0.97802734375 + }, + { + "word": " have", + "start": 4804.52, + "end": 4804.72, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 4804.72, + "end": 4804.88, + "probability": 1.0 + }, + { + "word": " converter", + "start": 4804.88, + "end": 4805.22, + "probability": 0.98779296875 + }, + { + "word": " box", + "start": 4805.22, + "end": 4805.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 4805.46, + "end": 4805.74, + "probability": 0.60791015625 + }, + { + "word": " a", + "start": 4805.74, + "end": 4805.88, + "probability": 0.245361328125 + }, + { + "word": " Roku.", + "start": 4805.88, + "end": 4806.12, + "probability": 0.7802734375 + } + ] + }, + { + "id": 1939, + "text": "I can live without TV, but I desperately need to have some sort of Internet, primarily to", + "start": 4806.46, + "end": 4812.06, + "words": [ + { + "word": " I", + "start": 4806.46, + "end": 4807.02, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 4807.02, + "end": 4807.22, + "probability": 1.0 + }, + { + "word": " live", + "start": 4807.22, + "end": 4807.44, + "probability": 1.0 + }, + { + "word": " without", + "start": 4807.44, + "end": 4807.76, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 4807.76, + "end": 4808.18, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 4808.24, + "end": 4808.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 4808.38, + "end": 4808.48, + "probability": 1.0 + }, + { + "word": " desperately", + "start": 4808.48, + "end": 4808.86, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 4808.86, + "end": 4809.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 4809.18, + "end": 4809.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 4809.34, + "end": 4809.5, + "probability": 1.0 + }, + { + "word": " some", + "start": 4809.5, + "end": 4809.78, + "probability": 1.0 + }, + { + "word": " sort", + "start": 4809.78, + "end": 4810.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 4810.04, + "end": 4810.18, + "probability": 1.0 + }, + { + "word": " Internet,", + "start": 4810.18, + "end": 4810.4, + "probability": 0.99951171875 + }, + { + "word": " primarily", + "start": 4810.58, + "end": 4811.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 4811.6, + "end": 4812.06, + "probability": 1.0 + } + ] + }, + { + "id": 1940, + "text": "do email and a little Facebook here and there.", + "start": 4812.06, + "end": 4816.7, + "words": [ + { + "word": " do", + "start": 4812.06, + "end": 4812.3, + "probability": 1.0 + }, + { + "word": " email", + "start": 4812.3, + "end": 4813.5, + "probability": 0.81640625 + }, + { + "word": " and", + "start": 4813.5, + "end": 4814.3, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 4814.3, + "end": 4815.42, + "probability": 1.0 + }, + { + "word": " little", + "start": 4815.42, + "end": 4815.58, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 4815.58, + "end": 4816.0, + "probability": 1.0 + }, + { + "word": " here", + "start": 4816.0, + "end": 4816.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 4816.36, + "end": 4816.52, + "probability": 1.0 + }, + { + "word": " there.", + "start": 4816.52, + "end": 4816.7, + "probability": 1.0 + } + ] + }, + { + "id": 1941, + "text": "I'm not somebody who streams videos on my computer, but I'm looking for something that's", + "start": 4817.18, + "end": 4823.98, + "words": [ + { + "word": " I'm", + "start": 4817.18, + "end": 4817.74, + "probability": 1.0 + }, + { + "word": " not", + "start": 4817.74, + "end": 4818.1, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 4818.1, + "end": 4818.42, + "probability": 1.0 + }, + { + "word": " who", + "start": 4818.42, + "end": 4818.96, + "probability": 1.0 + }, + { + "word": " streams", + "start": 4818.96, + "end": 4819.24, + "probability": 0.9990234375 + }, + { + "word": " videos", + "start": 4819.24, + "end": 4819.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 4819.72, + "end": 4820.16, + "probability": 1.0 + }, + { + "word": " my", + "start": 4820.16, + "end": 4820.28, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 4820.28, + "end": 4822.24, + "probability": 0.9990234375 + }, + { + "word": " but", + "start": 4822.44, + "end": 4822.6, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4822.6, + "end": 4822.92, + "probability": 1.0 + }, + { + "word": " looking", + "start": 4822.92, + "end": 4823.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 4823.12, + "end": 4823.36, + "probability": 1.0 + }, + { + "word": " something", + "start": 4823.36, + "end": 4823.64, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4823.64, + "end": 4823.98, + "probability": 1.0 + } + ] + }, + { + "id": 1942, + "text": "reasonable and reliable.", + "start": 4823.98, + "end": 4825.38, + "words": [ + { + "word": " reasonable", + "start": 4823.98, + "end": 4824.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 4824.46, + "end": 4824.8, + "probability": 1.0 + }, + { + "word": " reliable.", + "start": 4824.8, + "end": 4825.38, + "probability": 1.0 + } + ] + }, + { + "id": 1943, + "text": "Okay.", + "start": 4825.92, + "end": 4826.48, + "words": [ + { + "word": " Okay.", + "start": 4825.92, + "end": 4826.48, + "probability": 0.9609375 + } + ] + }, + { + "id": 1944, + "text": "Just for my own personal use.", + "start": 4826.5, + "end": 4826.8, + "words": [ + { + "word": " Just", + "start": 4826.5, + "end": 4826.72, + "probability": 0.81396484375 + }, + { + "word": " for", + "start": 4826.72, + "end": 4826.8, + "probability": 0.11578369140625 + }, + { + "word": " my", + "start": 4826.8, + "end": 4826.8, + "probability": 0.048675537109375 + }, + { + "word": " own", + "start": 4826.8, + "end": 4826.8, + "probability": 0.1776123046875 + }, + { + "word": " personal", + "start": 4826.8, + "end": 4826.8, + "probability": 0.149658203125 + }, + { + "word": " use.", + "start": 4826.8, + "end": 4826.8, + "probability": 0.544921875 + } + ] + }, + { + "id": 1945, + "text": "I would say that, speaking of the mom-and-pop ISPs, depending on where you're at, what area", + "start": 4826.82, + "end": 4833.54, + "words": [ + { + "word": " I", + "start": 4826.82, + "end": 4827.12, + "probability": 0.05303955078125 + }, + { + "word": " would", + "start": 4827.12, + "end": 4828.32, + "probability": 0.96337890625 + }, + { + "word": " say", + "start": 4828.32, + "end": 4828.6, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 4828.6, + "end": 4829.08, + "probability": 0.99853515625 + }, + { + "word": " speaking", + "start": 4829.16, + "end": 4829.86, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4829.86, + "end": 4830.08, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 4830.08, + "end": 4830.22, + "probability": 0.99951171875 + }, + { + "word": " mom", + "start": 4830.22, + "end": 4830.38, + "probability": 0.9873046875 + }, + { + "word": "-and", + "start": 4830.38, + "end": 4830.52, + "probability": 0.8798828125 + }, + { + "word": "-pop", + "start": 4830.52, + "end": 4830.66, + "probability": 1.0 + }, + { + "word": " ISPs,", + "start": 4830.66, + "end": 4831.24, + "probability": 0.99609375 + }, + { + "word": " depending", + "start": 4831.46, + "end": 4832.26, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 4832.26, + "end": 4832.42, + "probability": 1.0 + }, + { + "word": " where", + "start": 4832.42, + "end": 4832.54, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4832.54, + "end": 4832.68, + "probability": 0.99755859375 + }, + { + "word": " at,", + "start": 4832.68, + "end": 4832.86, + "probability": 1.0 + }, + { + "word": " what", + "start": 4833.06, + "end": 4833.36, + "probability": 0.99853515625 + }, + { + "word": " area", + "start": 4833.36, + "end": 4833.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1946, + "text": "of town are you in?", + "start": 4833.54, + "end": 4834.1, + "words": [ + { + "word": " of", + "start": 4833.54, + "end": 4833.66, + "probability": 0.99853515625 + }, + { + "word": " town", + "start": 4833.66, + "end": 4833.8, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 4833.8, + "end": 4833.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 4833.92, + "end": 4834.0, + "probability": 1.0 + }, + { + "word": " in?", + "start": 4834.0, + "end": 4834.1, + "probability": 1.0 + } + ] + }, + { + "id": 1947, + "text": "I am right across from Flowing Wells High School.", + "start": 4834.68, + "end": 4836.84, + "words": [ + { + "word": " I", + "start": 4834.68, + "end": 4834.82, + "probability": 0.74462890625 + }, + { + "word": " am", + "start": 4834.82, + "end": 4835.16, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 4835.16, + "end": 4835.48, + "probability": 1.0 + }, + { + "word": " across", + "start": 4835.48, + "end": 4835.74, + "probability": 1.0 + }, + { + "word": " from", + "start": 4835.74, + "end": 4836.0, + "probability": 1.0 + }, + { + "word": " Flowing", + "start": 4836.0, + "end": 4836.26, + "probability": 0.71240234375 + }, + { + "word": " Wells", + "start": 4836.26, + "end": 4836.46, + "probability": 0.826171875 + }, + { + "word": " High", + "start": 4836.46, + "end": 4836.62, + "probability": 0.99951171875 + }, + { + "word": " School.", + "start": 4836.62, + "end": 4836.84, + "probability": 1.0 + } + ] + }, + { + "id": 1948, + "text": "Okay.", + "start": 4837.12, + "end": 4837.42, + "words": [ + { + "word": " Okay.", + "start": 4837.12, + "end": 4837.42, + "probability": 0.90234375 + } + ] + }, + { + "id": 1949, + "text": "So CenturyLink does offer sort of the cheapest Internet in town, because they have to, right?", + "start": 4839.260000000001, + "end": 4844.22, + "words": [ + { + "word": " So", + "start": 4839.260000000001, + "end": 4839.660000000001, + "probability": 0.98193359375 + }, + { + "word": " CenturyLink", + "start": 4839.660000000001, + "end": 4840.06, + "probability": 0.5537109375 + }, + { + "word": " does", + "start": 4840.06, + "end": 4840.46, + "probability": 1.0 + }, + { + "word": " offer", + "start": 4840.46, + "end": 4840.92, + "probability": 1.0 + }, + { + "word": " sort", + "start": 4840.92, + "end": 4841.42, + "probability": 0.97802734375 + }, + { + "word": " of", + "start": 4841.42, + "end": 4841.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 4841.54, + "end": 4841.64, + "probability": 1.0 + }, + { + "word": " cheapest", + "start": 4841.64, + "end": 4842.02, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 4842.02, + "end": 4842.32, + "probability": 0.488037109375 + }, + { + "word": " in", + "start": 4842.32, + "end": 4842.5, + "probability": 0.99951171875 + }, + { + "word": " town,", + "start": 4842.5, + "end": 4842.68, + "probability": 1.0 + }, + { + "word": " because", + "start": 4842.76, + "end": 4842.88, + "probability": 1.0 + }, + { + "word": " they", + "start": 4842.88, + "end": 4843.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 4843.04, + "end": 4843.22, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4843.22, + "end": 4843.48, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4843.56, + "end": 4844.22, + "probability": 0.83642578125 + } + ] + }, + { + "id": 1950, + "text": "As far as...", + "start": 4844.3, + "end": 4845.42, + "words": [ + { + "word": " As", + "start": 4844.3, + "end": 4844.5, + "probability": 0.9208984375 + }, + { + "word": " far", + "start": 4844.5, + "end": 4844.68, + "probability": 1.0 + }, + { + "word": " as...", + "start": 4844.68, + "end": 4845.42, + "probability": 0.625 + } + ] + }, + { + "id": 1951, + "text": "Yeah, they just have to, right?", + "start": 4846.740000000001, + "end": 4848.1, + "words": [ + { + "word": " Yeah,", + "start": 4846.740000000001, + "end": 4847.14, + "probability": 0.8623046875 + }, + { + "word": " they", + "start": 4847.14, + "end": 4847.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 4847.26, + "end": 4847.44, + "probability": 1.0 + }, + { + "word": " have", + "start": 4847.44, + "end": 4847.58, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4847.58, + "end": 4847.78, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4847.84, + "end": 4848.1, + "probability": 1.0 + } + ] + }, + { + "id": 1952, + "text": "It's the cheapest Internet out there is CenturyLink.", + "start": 4848.18, + "end": 4850.12, + "words": [ + { + "word": " It's", + "start": 4848.18, + "end": 4848.3, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 4848.3, + "end": 4848.38, + "probability": 1.0 + }, + { + "word": " cheapest", + "start": 4848.38, + "end": 4848.7, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 4848.7, + "end": 4848.96, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4848.96, + "end": 4849.26, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 4849.26, + "end": 4849.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 4849.48, + "end": 4849.62, + "probability": 0.98876953125 + }, + { + "word": " CenturyLink.", + "start": 4849.62, + "end": 4850.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1953, + "text": "But because of your previous bundling packages, and they keep raising the rates all the time.", + "start": 4850.92, + "end": 4855.26, + "words": [ + { + "word": " But", + "start": 4850.92, + "end": 4851.32, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 4851.32, + "end": 4851.6, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4851.6, + "end": 4851.72, + "probability": 0.82763671875 + }, + { + "word": " your", + "start": 4851.72, + "end": 4851.82, + "probability": 1.0 + }, + { + "word": " previous", + "start": 4851.82, + "end": 4852.74, + "probability": 0.99755859375 + }, + { + "word": " bundling", + "start": 4852.74, + "end": 4853.2, + "probability": 0.9990234375 + }, + { + "word": " packages,", + "start": 4853.2, + "end": 4853.58, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4853.68, + "end": 4853.78, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4853.78, + "end": 4853.82, + "probability": 1.0 + }, + { + "word": " keep", + "start": 4853.82, + "end": 4854.02, + "probability": 1.0 + }, + { + "word": " raising", + "start": 4854.02, + "end": 4854.32, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4854.32, + "end": 4854.52, + "probability": 0.99951171875 + }, + { + "word": " rates", + "start": 4854.52, + "end": 4854.72, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4854.72, + "end": 4854.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4854.86, + "end": 4855.0, + "probability": 1.0 + }, + { + "word": " time.", + "start": 4855.0, + "end": 4855.26, + "probability": 1.0 + } + ] + }, + { + "id": 1954, + "text": "Yeah.", + "start": 4855.34, + "end": 4855.66, + "words": [ + { + "word": " Yeah.", + "start": 4855.34, + "end": 4855.66, + "probability": 0.1435546875 + } + ] + }, + { + "id": 1955, + "text": "So...", + "start": 4855.66, + "end": 4855.82, + "words": [ + { + "word": " So...", + "start": 4855.66, + "end": 4855.82, + "probability": 0.3037109375 + } + ] + }, + { + "id": 1956, + "text": "Yeah.", + "start": 4855.82, + "end": 4856.22, + "words": [ + { + "word": " Yeah.", + "start": 4855.82, + "end": 4856.22, + "probability": 0.41357421875 + } + ] + }, + { + "id": 1957, + "text": "Yeah.", + "start": 4856.24, + "end": 4856.64, + "words": [ + { + "word": " Yeah.", + "start": 4856.24, + "end": 4856.64, + "probability": 0.1314697265625 + } + ] + }, + { + "id": 1958, + "text": "Yeah.", + "start": 4856.64, + "end": 4856.8, + "words": [ + { + "word": " Yeah.", + "start": 4856.64, + "end": 4856.8, + "probability": 0.51318359375 + } + ] + }, + { + "id": 1959, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1960, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1961, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1962, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1963, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1964, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1965, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1966, + "text": "", + "start": 4856.8, + "end": 4856.8, + "words": [] + }, + { + "id": 1967, + "text": "That's what I mentioned.", + "start": 4856.82, + "end": 4857.02, + "words": [ + { + "word": " That's", + "start": 4856.82, + "end": 4857.02, + "probability": 0.47265625 + }, + { + "word": " what", + "start": 4857.02, + "end": 4857.02, + "probability": 0.257080078125 + }, + { + "word": " I", + "start": 4857.02, + "end": 4857.02, + "probability": 0.7314453125 + }, + { + "word": " mentioned.", + "start": 4857.02, + "end": 4857.02, + "probability": 0.72314453125 + } + ] + }, + { + "id": 1968, + "text": "Look at SimplyBits.", + "start": 4857.92, + "end": 4859.06, + "words": [ + { + "word": " Look", + "start": 4857.92, + "end": 4858.32, + "probability": 0.98291015625 + }, + { + "word": " at", + "start": 4858.32, + "end": 4858.48, + "probability": 0.99951171875 + }, + { + "word": " SimplyBits.", + "start": 4858.48, + "end": 4859.06, + "probability": 0.76953125 + } + ] + }, + { + "id": 1969, + "text": "They offer a residential package, which I think is, it's like 1.5 meg or 3 meg, and", + "start": 4859.14, + "end": 4864.94, + "words": [ + { + "word": " They", + "start": 4859.14, + "end": 4859.48, + "probability": 0.99853515625 + }, + { + "word": " offer", + "start": 4859.48, + "end": 4859.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4859.84, + "end": 4860.04, + "probability": 0.99609375 + }, + { + "word": " residential", + "start": 4860.04, + "end": 4860.36, + "probability": 0.99951171875 + }, + { + "word": " package,", + "start": 4860.36, + "end": 4860.86, + "probability": 1.0 + }, + { + "word": " which", + "start": 4861.14, + "end": 4861.74, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4861.74, + "end": 4861.86, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 4861.86, + "end": 4862.12, + "probability": 1.0 + }, + { + "word": " is,", + "start": 4862.12, + "end": 4862.44, + "probability": 0.9931640625 + }, + { + "word": " it's", + "start": 4862.44, + "end": 4862.94, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 4862.94, + "end": 4863.02, + "probability": 0.98974609375 + }, + { + "word": " 1", + "start": 4863.02, + "end": 4863.2, + "probability": 0.94091796875 + }, + { + "word": ".5", + "start": 4863.2, + "end": 4863.76, + "probability": 1.0 + }, + { + "word": " meg", + "start": 4863.76, + "end": 4863.92, + "probability": 0.97265625 + }, + { + "word": " or", + "start": 4863.92, + "end": 4864.04, + "probability": 0.99560546875 + }, + { + "word": " 3", + "start": 4864.04, + "end": 4864.2, + "probability": 0.95654296875 + }, + { + "word": " meg,", + "start": 4864.2, + "end": 4864.46, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4864.66, + "end": 4864.94, + "probability": 1.0 + } + ] + }, + { + "id": 1970, + "text": "it's $20 a month.", + "start": 4864.94, + "end": 4865.86, + "words": [ + { + "word": " it's", + "start": 4864.94, + "end": 4865.1, + "probability": 1.0 + }, + { + "word": " $20", + "start": 4865.1, + "end": 4865.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 4865.44, + "end": 4865.68, + "probability": 0.99951171875 + }, + { + "word": " month.", + "start": 4865.68, + "end": 4865.86, + "probability": 1.0 + } + ] + }, + { + "id": 1971, + "text": "Wow.", + "start": 4866.58, + "end": 4866.98, + "words": [ + { + "word": " Wow.", + "start": 4866.58, + "end": 4866.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 1972, + "text": "That's incredible.", + "start": 4868.02, + "end": 4868.82, + "words": [ + { + "word": " That's", + "start": 4868.02, + "end": 4868.42, + "probability": 0.9892578125 + }, + { + "word": " incredible.", + "start": 4868.42, + "end": 4868.82, + "probability": 1.0 + } + ] + }, + { + "id": 1973, + "text": "The downside is that there's an upfront cost to them, because they have to put an antenna", + "start": 4869.04, + "end": 4873.08, + "words": [ + { + "word": " The", + "start": 4869.04, + "end": 4869.18, + "probability": 0.77099609375 + }, + { + "word": " downside", + "start": 4869.18, + "end": 4870.06, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4870.06, + "end": 4870.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 4870.48, + "end": 4870.72, + "probability": 0.84228515625 + }, + { + "word": " there's", + "start": 4870.72, + "end": 4871.02, + "probability": 1.0 + }, + { + "word": " an", + "start": 4871.02, + "end": 4871.14, + "probability": 1.0 + }, + { + "word": " upfront", + "start": 4871.14, + "end": 4871.32, + "probability": 0.98876953125 + }, + { + "word": " cost", + "start": 4871.32, + "end": 4871.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 4871.74, + "end": 4871.88, + "probability": 1.0 + }, + { + "word": " them,", + "start": 4871.88, + "end": 4872.0, + "probability": 1.0 + }, + { + "word": " because", + "start": 4872.04, + "end": 4872.2, + "probability": 1.0 + }, + { + "word": " they", + "start": 4872.2, + "end": 4872.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 4872.36, + "end": 4872.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 4872.5, + "end": 4872.56, + "probability": 1.0 + }, + { + "word": " put", + "start": 4872.56, + "end": 4872.7, + "probability": 1.0 + }, + { + "word": " an", + "start": 4872.7, + "end": 4872.82, + "probability": 1.0 + }, + { + "word": " antenna", + "start": 4872.82, + "end": 4873.08, + "probability": 1.0 + } + ] + }, + { + "id": 1974, + "text": "up at your house.", + "start": 4873.08, + "end": 4873.74, + "words": [ + { + "word": " up", + "start": 4873.08, + "end": 4873.28, + "probability": 1.0 + }, + { + "word": " at", + "start": 4873.28, + "end": 4873.36, + "probability": 0.99365234375 + }, + { + "word": " your", + "start": 4873.36, + "end": 4873.46, + "probability": 1.0 + }, + { + "word": " house.", + "start": 4873.46, + "end": 4873.74, + "probability": 1.0 + } + ] + }, + { + "id": 1975, + "text": "So you're looking at it like a $300 investment, but it's a one-time, you never pay anything", + "start": 4873.98, + "end": 4879.4, + "words": [ + { + "word": " So", + "start": 4873.98, + "end": 4874.38, + "probability": 0.75390625 + }, + { + "word": " you're", + "start": 4874.38, + "end": 4874.54, + "probability": 0.923828125 + }, + { + "word": " looking", + "start": 4874.54, + "end": 4875.32, + "probability": 0.99267578125 + }, + { + "word": " at", + "start": 4875.32, + "end": 4875.5, + "probability": 1.0 + }, + { + "word": " it", + "start": 4875.5, + "end": 4875.58, + "probability": 0.509765625 + }, + { + "word": " like", + "start": 4875.58, + "end": 4875.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 4875.72, + "end": 4875.9, + "probability": 1.0 + }, + { + "word": " $300", + "start": 4875.9, + "end": 4876.9, + "probability": 1.0 + }, + { + "word": " investment,", + "start": 4876.9, + "end": 4877.5, + "probability": 1.0 + }, + { + "word": " but", + "start": 4877.7, + "end": 4878.06, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4878.06, + "end": 4878.3, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4878.3, + "end": 4878.3, + "probability": 1.0 + }, + { + "word": " one", + "start": 4878.3, + "end": 4878.52, + "probability": 1.0 + }, + { + "word": "-time,", + "start": 4878.52, + "end": 4878.78, + "probability": 0.849609375 + }, + { + "word": " you", + "start": 4878.8, + "end": 4878.92, + "probability": 0.99951171875 + }, + { + "word": " never", + "start": 4878.92, + "end": 4879.02, + "probability": 0.99951171875 + }, + { + "word": " pay", + "start": 4879.02, + "end": 4879.24, + "probability": 1.0 + }, + { + "word": " anything", + "start": 4879.24, + "end": 4879.4, + "probability": 1.0 + } + ] + }, + { + "id": 1976, + "text": "like that again, and then it's $20 a month from there to, as far as I know, the end of", + "start": 4879.4, + "end": 4883.36, + "words": [ + { + "word": " like", + "start": 4879.4, + "end": 4879.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 4879.66, + "end": 4879.82, + "probability": 1.0 + }, + { + "word": " again,", + "start": 4879.82, + "end": 4880.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 4880.18, + "end": 4880.4, + "probability": 1.0 + }, + { + "word": " then", + "start": 4880.4, + "end": 4880.52, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4880.52, + "end": 4880.66, + "probability": 1.0 + }, + { + "word": " $20", + "start": 4880.66, + "end": 4880.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 4880.96, + "end": 4881.14, + "probability": 1.0 + }, + { + "word": " month", + "start": 4881.14, + "end": 4881.32, + "probability": 1.0 + }, + { + "word": " from", + "start": 4881.32, + "end": 4881.62, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 4881.62, + "end": 4881.92, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4881.92, + "end": 4882.14, + "probability": 0.98046875 + }, + { + "word": " as", + "start": 4882.2, + "end": 4882.46, + "probability": 1.0 + }, + { + "word": " far", + "start": 4882.46, + "end": 4882.62, + "probability": 1.0 + }, + { + "word": " as", + "start": 4882.62, + "end": 4882.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 4882.74, + "end": 4882.88, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4882.88, + "end": 4883.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 4883.06, + "end": 4883.14, + "probability": 0.99951171875 + }, + { + "word": " end", + "start": 4883.14, + "end": 4883.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 4883.26, + "end": 4883.36, + "probability": 1.0 + } + ] + }, + { + "id": 1977, + "text": "eternity.", + "start": 4883.36, + "end": 4883.58, + "words": [ + { + "word": " eternity.", + "start": 4883.36, + "end": 4883.58, + "probability": 1.0 + } + ] + }, + { + "id": 1978, + "text": "Yeah.", + "start": 4885.240000000001, + "end": 4885.64, + "words": [ + { + "word": " Yeah.", + "start": 4885.240000000001, + "end": 4885.64, + "probability": 0.97509765625 + } + ] + }, + { + "id": 1979, + "text": "That's incredible.", + "start": 4885.7, + "end": 4886.66, + "words": [ + { + "word": " That's", + "start": 4885.7, + "end": 4885.98, + "probability": 0.9970703125 + }, + { + "word": " incredible.", + "start": 4885.98, + "end": 4886.66, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1980, + "text": "That's incredible, because that's less than three months of my Cox, I mean, my CenturyLink", + "start": 4886.82, + "end": 4893.3, + "words": [ + { + "word": " That's", + "start": 4886.82, + "end": 4886.92, + "probability": 0.488525390625 + }, + { + "word": " incredible,", + "start": 4886.92, + "end": 4886.92, + "probability": 0.0445556640625 + }, + { + "word": " because", + "start": 4886.94, + "end": 4887.16, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 4887.16, + "end": 4887.58, + "probability": 0.99951171875 + }, + { + "word": " less", + "start": 4887.58, + "end": 4887.76, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 4887.76, + "end": 4887.98, + "probability": 0.99951171875 + }, + { + "word": " three", + "start": 4887.98, + "end": 4888.26, + "probability": 0.98876953125 + }, + { + "word": " months", + "start": 4888.26, + "end": 4888.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 4888.54, + "end": 4888.8, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 4888.8, + "end": 4889.0, + "probability": 0.9990234375 + }, + { + "word": " Cox,", + "start": 4889.0, + "end": 4891.26, + "probability": 0.043701171875 + }, + { + "word": " I", + "start": 4891.42, + "end": 4891.6, + "probability": 0.8203125 + }, + { + "word": " mean,", + "start": 4891.6, + "end": 4891.78, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4891.8, + "end": 4892.04, + "probability": 0.99853515625 + }, + { + "word": " CenturyLink", + "start": 4892.04, + "end": 4893.3, + "probability": 0.935546875 + } + ] + }, + { + "id": 1981, + "text": "and DirecTV, and I've been putting it off, but I need to downprice myself.", + "start": 4893.3, + "end": 4902.02, + "words": [ + { + "word": " and", + "start": 4893.3, + "end": 4893.44, + "probability": 0.9833984375 + }, + { + "word": " DirecTV,", + "start": 4893.44, + "end": 4893.9, + "probability": 0.98828125 + }, + { + "word": " and", + "start": 4894.38, + "end": 4894.42, + "probability": 0.99560546875 + }, + { + "word": " I've", + "start": 4894.42, + "end": 4896.66, + "probability": 0.98095703125 + }, + { + "word": " been", + "start": 4896.66, + "end": 4897.92, + "probability": 0.99951171875 + }, + { + "word": " putting", + "start": 4897.92, + "end": 4898.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 4898.2, + "end": 4898.32, + "probability": 1.0 + }, + { + "word": " off,", + "start": 4898.32, + "end": 4898.54, + "probability": 1.0 + }, + { + "word": " but", + "start": 4898.58, + "end": 4898.68, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4898.68, + "end": 4898.78, + "probability": 1.0 + }, + { + "word": " need", + "start": 4898.78, + "end": 4898.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4898.98, + "end": 4899.76, + "probability": 1.0 + }, + { + "word": " downprice", + "start": 4899.76, + "end": 4901.76, + "probability": 0.74853515625 + }, + { + "word": " myself.", + "start": 4901.76, + "end": 4902.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1982, + "text": "So are they open on Saturdays?", + "start": 4902.860000000001, + "end": 4904.84, + "words": [ + { + "word": " So", + "start": 4902.860000000001, + "end": 4903.3, + "probability": 0.358642578125 + }, + { + "word": " are", + "start": 4903.3, + "end": 4903.48, + "probability": 0.53466796875 + }, + { + "word": " they", + "start": 4903.48, + "end": 4903.84, + "probability": 1.0 + }, + { + "word": " open", + "start": 4903.84, + "end": 4904.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 4904.06, + "end": 4904.24, + "probability": 1.0 + }, + { + "word": " Saturdays?", + "start": 4904.24, + "end": 4904.84, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1983, + "text": "I don't know.", + "start": 4905.56, + "end": 4906.62, + "words": [ + { + "word": " I", + "start": 4905.56, + "end": 4906.0, + "probability": 0.99365234375 + }, + { + "word": " don't", + "start": 4906.0, + "end": 4906.44, + "probability": 1.0 + }, + { + "word": " know.", + "start": 4906.44, + "end": 4906.62, + "probability": 1.0 + } + ] + }, + { + "id": 1984, + "text": "I don't know if they're open on Saturdays.", + "start": 4906.74, + "end": 4908.5, + "words": [ + { + "word": " I", + "start": 4906.74, + "end": 4907.0, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4907.0, + "end": 4907.18, + "probability": 1.0 + }, + { + "word": " know", + "start": 4907.18, + "end": 4907.26, + "probability": 1.0 + }, + { + "word": " if", + "start": 4907.26, + "end": 4907.34, + "probability": 1.0 + }, + { + "word": " they're", + "start": 4907.34, + "end": 4907.46, + "probability": 1.0 + }, + { + "word": " open", + "start": 4907.46, + "end": 4907.68, + "probability": 1.0 + }, + { + "word": " on", + "start": 4907.68, + "end": 4907.84, + "probability": 1.0 + }, + { + "word": " Saturdays.", + "start": 4907.84, + "end": 4908.5, + "probability": 1.0 + } + ] + }, + { + "id": 1985, + "text": "545-0400 is their phone number, I think.", + "start": 4910.360000000001, + "end": 4912.7, + "words": [ + { + "word": " 545", + "start": 4910.360000000001, + "end": 4910.8, + "probability": 0.97216796875 + }, + { + "word": "-0400", + "start": 4910.8, + "end": 4911.24, + "probability": 0.99267578125 + }, + { + "word": " is", + "start": 4911.24, + "end": 4911.82, + "probability": 1.0 + }, + { + "word": " their", + "start": 4911.82, + "end": 4912.0, + "probability": 1.0 + }, + { + "word": " phone", + "start": 4912.0, + "end": 4912.16, + "probability": 1.0 + }, + { + "word": " number,", + "start": 4912.16, + "end": 4912.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 4912.4, + "end": 4912.52, + "probability": 1.0 + }, + { + "word": " think.", + "start": 4912.52, + "end": 4912.7, + "probability": 1.0 + } + ] + }, + { + "id": 1986, + "text": "545-0400.", + "start": 4914.140000000001, + "end": 4915.02, + "words": [ + { + "word": " 545", + "start": 4914.140000000001, + "end": 4914.580000000001, + "probability": 0.9990234375 + }, + { + "word": "-0400.", + "start": 4914.580000000001, + "end": 4915.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1987, + "text": "Hopefully I got that right.", + "start": 4915.06, + "end": 4915.98, + "words": [ + { + "word": " Hopefully", + "start": 4915.06, + "end": 4915.36, + "probability": 0.94384765625 + }, + { + "word": " I", + "start": 4915.36, + "end": 4915.5, + "probability": 0.95458984375 + }, + { + "word": " got", + "start": 4915.5, + "end": 4915.66, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4915.66, + "end": 4915.76, + "probability": 1.0 + }, + { + "word": " right.", + "start": 4915.76, + "end": 4915.98, + "probability": 1.0 + } + ] + }, + { + "id": 1988, + "text": "You can also just go to SimplyBits.com.", + "start": 4915.98, + "end": 4917.98, + "words": [ + { + "word": " You", + "start": 4915.98, + "end": 4916.18, + "probability": 0.94140625 + }, + { + "word": " can", + "start": 4916.18, + "end": 4916.28, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 4916.28, + "end": 4916.5, + "probability": 1.0 + }, + { + "word": " just", + "start": 4916.5, + "end": 4916.68, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 4916.68, + "end": 4916.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 4916.88, + "end": 4917.02, + "probability": 0.99951171875 + }, + { + "word": " SimplyBits", + "start": 4917.02, + "end": 4917.52, + "probability": 0.8154296875 + }, + { + "word": ".com.", + "start": 4917.52, + "end": 4917.98, + "probability": 1.0 + } + ] + }, + { + "id": 1989, + "text": "Yeah, SimplyBits.com is also the alternative there.", + "start": 4918.2, + "end": 4921.08, + "words": [ + { + "word": " Yeah,", + "start": 4918.2, + "end": 4918.58, + "probability": 0.7451171875 + }, + { + "word": " SimplyBits", + "start": 4918.6, + "end": 4919.1, + "probability": 0.99951171875 + }, + { + "word": ".com", + "start": 4919.1, + "end": 4919.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 4919.4, + "end": 4919.62, + "probability": 1.0 + }, + { + "word": " also", + "start": 4919.62, + "end": 4920.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 4920.0, + "end": 4920.18, + "probability": 1.0 + }, + { + "word": " alternative", + "start": 4920.18, + "end": 4920.8, + "probability": 1.0 + }, + { + "word": " there.", + "start": 4920.8, + "end": 4921.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1990, + "text": "Okay.", + "start": 4921.76, + "end": 4922.14, + "words": [ + { + "word": " Okay.", + "start": 4921.76, + "end": 4922.14, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1991, + "text": "Well, thank you so much.", + "start": 4922.16, + "end": 4923.26, + "words": [ + { + "word": " Well,", + "start": 4922.16, + "end": 4922.3, + "probability": 0.99755859375 + }, + { + "word": " thank", + "start": 4922.34, + "end": 4922.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 4922.56, + "end": 4922.78, + "probability": 1.0 + }, + { + "word": " so", + "start": 4922.78, + "end": 4922.94, + "probability": 1.0 + }, + { + "word": " much.", + "start": 4922.94, + "end": 4923.26, + "probability": 1.0 + } + ] + }, + { + "id": 1992, + "text": "You have a good weekend.", + "start": 4923.36, + "end": 4924.26, + "words": [ + { + "word": " You", + "start": 4923.36, + "end": 4923.54, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 4923.54, + "end": 4923.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 4923.7, + "end": 4923.82, + "probability": 1.0 + }, + { + "word": " good", + "start": 4923.82, + "end": 4923.94, + "probability": 0.99853515625 + }, + { + "word": " weekend.", + "start": 4923.94, + "end": 4924.26, + "probability": 1.0 + } + ] + }, + { + "id": 1993, + "text": "You too.", + "start": 4924.48, + "end": 4924.88, + "words": [ + { + "word": " You", + "start": 4924.48, + "end": 4924.68, + "probability": 0.9990234375 + }, + { + "word": " too.", + "start": 4924.68, + "end": 4924.88, + "probability": 0.84375 + } + ] + }, + { + "id": 1994, + "text": "Thank you for the call.", + "start": 4924.98, + "end": 4925.64, + "words": [ + { + "word": " Thank", + "start": 4924.98, + "end": 4925.16, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 4925.16, + "end": 4925.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 4925.28, + "end": 4925.46, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 4925.46, + "end": 4925.52, + "probability": 0.99658203125 + }, + { + "word": " call.", + "start": 4925.52, + "end": 4925.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1995, + "text": "Happy Father's Day.", + "start": 4925.68, + "end": 4926.02, + "words": [ + { + "word": " Happy", + "start": 4925.68, + "end": 4925.68, + "probability": 0.25048828125 + }, + { + "word": " Father's", + "start": 4925.68, + "end": 4925.9, + "probability": 0.99951171875 + }, + { + "word": " Day.", + "start": 4925.9, + "end": 4926.02, + "probability": 1.0 + } + ] + }, + { + "id": 1996, + "text": "Oh, there's a Happy Father's Day in there.", + "start": 4926.38, + "end": 4927.98, + "words": [ + { + "word": " Oh,", + "start": 4926.38, + "end": 4926.76, + "probability": 0.99853515625 + }, + { + "word": " there's", + "start": 4926.82, + "end": 4927.06, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4927.06, + "end": 4927.06, + "probability": 1.0 + }, + { + "word": " Happy", + "start": 4927.06, + "end": 4927.22, + "probability": 0.94775390625 + }, + { + "word": " Father's", + "start": 4927.22, + "end": 4927.64, + "probability": 1.0 + }, + { + "word": " Day", + "start": 4927.64, + "end": 4927.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 4927.72, + "end": 4927.86, + "probability": 0.998046875 + }, + { + "word": " there.", + "start": 4927.86, + "end": 4927.98, + "probability": 1.0 + } + ] + }, + { + "id": 1997, + "text": "I wonder how she knew.", + "start": 4928.12, + "end": 4929.18, + "words": [ + { + "word": " I", + "start": 4928.12, + "end": 4928.5, + "probability": 0.49853515625 + }, + { + "word": " wonder", + "start": 4928.5, + "end": 4928.66, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 4928.66, + "end": 4928.78, + "probability": 1.0 + }, + { + "word": " she", + "start": 4928.78, + "end": 4928.96, + "probability": 1.0 + }, + { + "word": " knew.", + "start": 4928.96, + "end": 4929.18, + "probability": 1.0 + } + ] + }, + { + "id": 1998, + "text": "All right.", + "start": 4929.36, + "end": 4929.94, + "words": [ + { + "word": " All", + "start": 4929.36, + "end": 4929.74, + "probability": 0.99169921875 + }, + { + "word": " right.", + "start": 4929.74, + "end": 4929.94, + "probability": 1.0 + } + ] + }, + { + "id": 1999, + "text": "We'll be right back after these messages.", + "start": 4930.04, + "end": 4931.7, + "words": [ + { + "word": " We'll", + "start": 4930.04, + "end": 4930.42, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 4930.42, + "end": 4930.5, + "probability": 1.0 + }, + { + "word": " right", + "start": 4930.5, + "end": 4930.68, + "probability": 1.0 + }, + { + "word": " back", + "start": 4930.68, + "end": 4931.0, + "probability": 1.0 + }, + { + "word": " after", + "start": 4931.0, + "end": 4931.24, + "probability": 1.0 + }, + { + "word": " these", + "start": 4931.24, + "end": 4931.38, + "probability": 1.0 + }, + { + "word": " messages.", + "start": 4931.38, + "end": 4931.7, + "probability": 1.0 + } + ] + }, + { + "id": 2000, + "text": "Your computer guru, Mike Swanson.", + "start": 4940.5599999999995, + "end": 4942.4, + "words": [ + { + "word": " Your", + "start": 4940.5599999999995, + "end": 4940.94, + "probability": 0.61962890625 + }, + { + "word": " computer", + "start": 4940.94, + "end": 4941.32, + "probability": 0.9853515625 + }, + { + "word": " guru,", + "start": 4941.32, + "end": 4941.74, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 4941.82, + "end": 4942.0, + "probability": 1.0 + }, + { + "word": " Swanson.", + "start": 4942.0, + "end": 4942.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2001, + "text": ". . .", + "start": 4944.34, + "end": 4945.4, + "words": [ + { + "word": " .", + "start": 4944.34, + "end": 4944.72, + "probability": 0.036041259765625 + }, + { + "word": " .", + "start": 4944.72, + "end": 4945.1, + "probability": 0.98974609375 + }, + { + "word": " .", + "start": 4945.1, + "end": 4945.4, + "probability": 0.9921875 + } + ] + }, + { + "id": 2002, + "text": ". . .", + "start": 4945.4, + "end": 4945.96, + "words": [ + { + "word": " .", + "start": 4945.4, + "end": 4945.56, + "probability": 0.9912109375 + }, + { + "word": " .", + "start": 4945.56, + "end": 4945.96, + "probability": 0.9951171875 + }, + { + "word": " .", + "start": 4945.96, + "end": 4945.96, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2003, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2004, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2005, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2006, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2007, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2008, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2009, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2010, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2011, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2012, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2013, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2014, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2015, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2016, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2017, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2018, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2019, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2020, + "text": "", + "start": 4945.96, + "end": 4945.96, + "words": [] + }, + { + "id": 2021, + "text": "Right now at gurushow.com or call in.", + "start": 4945.96, + "end": 4948.46, + "words": [ + { + "word": " Right", + "start": 4945.96, + "end": 4946.04, + "probability": 0.117919921875 + }, + { + "word": " now", + "start": 4946.04, + "end": 4946.22, + "probability": 0.99755859375 + }, + { + "word": " at", + "start": 4946.22, + "end": 4946.54, + "probability": 0.97607421875 + }, + { + "word": " gurushow", + "start": 4946.54, + "end": 4947.12, + "probability": 0.85107421875 + }, + { + "word": ".com", + "start": 4947.12, + "end": 4947.72, + "probability": 1.0 + }, + { + "word": " or", + "start": 4947.72, + "end": 4947.96, + "probability": 0.9755859375 + }, + { + "word": " call", + "start": 4947.96, + "end": 4948.2, + "probability": 1.0 + }, + { + "word": " in.", + "start": 4948.2, + "end": 4948.46, + "probability": 1.0 + } + ] + }, + { + "id": 2022, + "text": "This is the Computer Guru Show on KVOY, The Voice.", + "start": 4948.54, + "end": 4952.02, + "words": [ + { + "word": " This", + "start": 4948.54, + "end": 4948.88, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4948.88, + "end": 4949.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 4949.18, + "end": 4949.28, + "probability": 0.7177734375 + }, + { + "word": " Computer", + "start": 4949.28, + "end": 4949.54, + "probability": 0.97607421875 + }, + { + "word": " Guru", + "start": 4949.54, + "end": 4949.88, + "probability": 0.9951171875 + }, + { + "word": " Show", + "start": 4949.88, + "end": 4950.22, + "probability": 0.98486328125 + }, + { + "word": " on", + "start": 4950.22, + "end": 4950.66, + "probability": 0.9951171875 + }, + { + "word": " KVOY,", + "start": 4950.66, + "end": 4951.26, + "probability": 0.9091796875 + }, + { + "word": " The", + "start": 4951.48, + "end": 4951.7, + "probability": 0.98828125 + }, + { + "word": " Voice.", + "start": 4951.7, + "end": 4952.02, + "probability": 1.0 + } + ] + }, + { + "id": 2023, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 4963.9800000000005, + "end": 4967.08, + "words": [ + { + "word": " Mike", + "start": 4963.9800000000005, + "end": 4964.52, + "probability": 0.89501953125 + }, + { + "word": " Swanson,", + "start": 4964.52, + "end": 4964.94, + "probability": 0.9931640625 + }, + { + "word": " your", + "start": 4965.04, + "end": 4965.22, + "probability": 0.99072265625 + }, + { + "word": " computer", + "start": 4965.22, + "end": 4965.58, + "probability": 0.96728515625 + }, + { + "word": " guru,", + "start": 4965.58, + "end": 4965.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 4966.06, + "end": 4966.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 4966.3, + "end": 4966.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 4966.54, + "end": 4966.68, + "probability": 1.0 + }, + { + "word": " click", + "start": 4966.68, + "end": 4966.86, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 4966.86, + "end": 4967.08, + "probability": 1.0 + } + ] + }, + { + "id": 2024, + "text": "Listen and watch at gurushow.com.", + "start": 4967.28, + "end": 4969.62, + "words": [ + { + "word": " Listen", + "start": 4967.28, + "end": 4967.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 4967.78, + "end": 4967.96, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4967.96, + "end": 4968.24, + "probability": 1.0 + }, + { + "word": " at", + "start": 4968.24, + "end": 4968.4, + "probability": 0.99658203125 + }, + { + "word": " gurushow", + "start": 4968.4, + "end": 4968.98, + "probability": 0.99462890625 + }, + { + "word": ".com.", + "start": 4968.98, + "end": 4969.62, + "probability": 1.0 + } + ] + }, + { + "id": 2025, + "text": "This is the Computer Guru Show.", + "start": 4969.9, + "end": 4971.9, + "words": [ + { + "word": " This", + "start": 4969.9, + "end": 4970.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 4970.44, + "end": 4970.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 4970.74, + "end": 4970.9, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 4970.9, + "end": 4971.16, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 4971.16, + "end": 4971.5, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 4971.5, + "end": 4971.9, + "probability": 1.0 + } + ] + }, + { + "id": 2026, + "text": "Welcome back to the Computer Guru Show 7902040.", + "start": 4973.300000000001, + "end": 4976.44, + "words": [ + { + "word": " Welcome", + "start": 4973.300000000001, + "end": 4973.700000000001, + "probability": 0.60400390625 + }, + { + "word": " back", + "start": 4973.700000000001, + "end": 4974.1, + "probability": 0.29443359375 + }, + { + "word": " to", + "start": 4974.1, + "end": 4974.42, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4974.42, + "end": 4974.5, + "probability": 0.80224609375 + }, + { + "word": " Computer", + "start": 4974.5, + "end": 4974.7, + "probability": 0.9716796875 + }, + { + "word": " Guru", + "start": 4974.7, + "end": 4974.96, + "probability": 0.73828125 + }, + { + "word": " Show", + "start": 4974.96, + "end": 4975.16, + "probability": 0.96630859375 + }, + { + "word": " 7902040.", + "start": 4975.16, + "end": 4976.44, + "probability": 0.888671875 + } + ] + }, + { + "id": 2027, + "text": "If you want to be part of the show, let's talk to Ron, who's been waiting very patiently.", + "start": 4976.46, + "end": 4979.86, + "words": [ + { + "word": " If", + "start": 4976.46, + "end": 4976.62, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 4976.62, + "end": 4976.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 4976.66, + "end": 4976.76, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4976.76, + "end": 4976.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 4976.78, + "end": 4976.88, + "probability": 1.0 + }, + { + "word": " part", + "start": 4976.88, + "end": 4977.04, + "probability": 0.888671875 + }, + { + "word": " of", + "start": 4977.04, + "end": 4977.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 4977.14, + "end": 4977.18, + "probability": 1.0 + }, + { + "word": " show,", + "start": 4977.18, + "end": 4977.36, + "probability": 1.0 + }, + { + "word": " let's", + "start": 4977.48, + "end": 4977.82, + "probability": 1.0 + }, + { + "word": " talk", + "start": 4977.82, + "end": 4977.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4977.98, + "end": 4978.16, + "probability": 1.0 + }, + { + "word": " Ron,", + "start": 4978.16, + "end": 4978.44, + "probability": 0.9990234375 + }, + { + "word": " who's", + "start": 4978.66, + "end": 4978.82, + "probability": 0.99853515625 + }, + { + "word": " been", + "start": 4978.82, + "end": 4978.94, + "probability": 1.0 + }, + { + "word": " waiting", + "start": 4978.94, + "end": 4979.18, + "probability": 1.0 + }, + { + "word": " very", + "start": 4979.18, + "end": 4979.38, + "probability": 0.998046875 + }, + { + "word": " patiently.", + "start": 4979.38, + "end": 4979.86, + "probability": 1.0 + } + ] + }, + { + "id": 2028, + "text": "Hello, Ron. How are you?", + "start": 4980.16, + "end": 4980.98, + "words": [ + { + "word": " Hello,", + "start": 4980.16, + "end": 4980.4, + "probability": 0.9970703125 + }, + { + "word": " Ron.", + "start": 4980.46, + "end": 4980.62, + "probability": 1.0 + }, + { + "word": " How", + "start": 4980.66, + "end": 4980.8, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4980.8, + "end": 4980.84, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4980.84, + "end": 4980.98, + "probability": 1.0 + } + ] + }, + { + "id": 2029, + "text": "Hey, hope you're doing okay.", + "start": 4982.3, + "end": 4983.74, + "words": [ + { + "word": " Hey,", + "start": 4982.3, + "end": 4982.7, + "probability": 0.94921875 + }, + { + "word": " hope", + "start": 4982.72, + "end": 4982.98, + "probability": 0.97119140625 + }, + { + "word": " you're", + "start": 4982.98, + "end": 4983.18, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4983.18, + "end": 4983.36, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 4983.36, + "end": 4983.74, + "probability": 0.9736328125 + } + ] + }, + { + "id": 2030, + "text": "I'm doing lovely.", + "start": 4984.06, + "end": 4985.0, + "words": [ + { + "word": " I'm", + "start": 4984.06, + "end": 4984.46, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4984.46, + "end": 4984.62, + "probability": 1.0 + }, + { + "word": " lovely.", + "start": 4984.62, + "end": 4985.0, + "probability": 1.0 + } + ] + }, + { + "id": 2031, + "text": "On Windows 10, I have a whole heck of a lot of programs and games that work on 7.", + "start": 4986.780000000001, + "end": 4993.9, + "words": [ + { + "word": " On", + "start": 4986.780000000001, + "end": 4987.18, + "probability": 0.98828125 + }, + { + "word": " Windows", + "start": 4987.18, + "end": 4987.58, + "probability": 1.0 + }, + { + "word": " 10,", + "start": 4987.58, + "end": 4988.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 4988.12, + "end": 4988.32, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4988.32, + "end": 4988.5, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 4988.5, + "end": 4988.6, + "probability": 0.7939453125 + }, + { + "word": " whole", + "start": 4988.6, + "end": 4989.24, + "probability": 0.9716796875 + }, + { + "word": " heck", + "start": 4989.24, + "end": 4989.66, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4989.66, + "end": 4989.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 4989.8, + "end": 4989.9, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4989.9, + "end": 4990.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 4990.06, + "end": 4990.22, + "probability": 1.0 + }, + { + "word": " programs", + "start": 4990.22, + "end": 4990.62, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4990.62, + "end": 4991.12, + "probability": 0.9990234375 + }, + { + "word": " games", + "start": 4991.12, + "end": 4992.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 4992.02, + "end": 4992.44, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 4992.44, + "end": 4993.22, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4993.22, + "end": 4993.44, + "probability": 1.0 + }, + { + "word": " 7.", + "start": 4993.44, + "end": 4993.9, + "probability": 0.990234375 + } + ] + }, + { + "id": 2032, + "text": "So would that be a problem if I changed?", + "start": 4994.68, + "end": 4997.62, + "words": [ + { + "word": " So", + "start": 4994.68, + "end": 4995.08, + "probability": 0.9677734375 + }, + { + "word": " would", + "start": 4995.08, + "end": 4995.36, + "probability": 0.66845703125 + }, + { + "word": " that", + "start": 4995.36, + "end": 4995.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 4995.48, + "end": 4995.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 4995.6, + "end": 4995.7, + "probability": 1.0 + }, + { + "word": " problem", + "start": 4995.7, + "end": 4996.02, + "probability": 1.0 + }, + { + "word": " if", + "start": 4996.02, + "end": 4996.26, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4996.26, + "end": 4996.48, + "probability": 1.0 + }, + { + "word": " changed?", + "start": 4996.48, + "end": 4997.62, + "probability": 1.0 + } + ] + }, + { + "id": 2033, + "text": "Depends on the games.", + "start": 4998.320000000001, + "end": 4999.92, + "words": [ + { + "word": " Depends", + "start": 4998.320000000001, + "end": 4998.72, + "probability": 0.99609375 + }, + { + "word": " on", + "start": 4998.72, + "end": 4998.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 4998.84, + "end": 4999.44, + "probability": 1.0 + }, + { + "word": " games.", + "start": 4999.44, + "end": 4999.92, + "probability": 1.0 + } + ] + }, + { + "id": 2034, + "text": "Games?", + "start": 4999.92, + "end": 5000.14, + "words": [ + { + "word": " Games?", + "start": 4999.92, + "end": 5000.14, + "probability": 0.0029811859130859375 + } + ] + }, + { + "id": 2035, + "text": "Most of the time, no.", + "start": 5001.4400000000005, + "end": 5002.38, + "words": [ + { + "word": " Most", + "start": 5001.4400000000005, + "end": 5001.84, + "probability": 0.98876953125 + }, + { + "word": " of", + "start": 5001.84, + "end": 5001.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 5001.92, + "end": 5002.02, + "probability": 1.0 + }, + { + "word": " time,", + "start": 5002.02, + "end": 5002.18, + "probability": 1.0 + }, + { + "word": " no.", + "start": 5002.2, + "end": 5002.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2036, + "text": "We haven't seen too many problems with...", + "start": 5002.96, + "end": 5004.82, + "words": [ + { + "word": " We", + "start": 5002.96, + "end": 5003.36, + "probability": 0.9951171875 + }, + { + "word": " haven't", + "start": 5003.36, + "end": 5003.54, + "probability": 1.0 + }, + { + "word": " seen", + "start": 5003.54, + "end": 5003.68, + "probability": 1.0 + }, + { + "word": " too", + "start": 5003.68, + "end": 5003.8, + "probability": 1.0 + }, + { + "word": " many", + "start": 5003.8, + "end": 5003.92, + "probability": 1.0 + }, + { + "word": " problems", + "start": 5003.92, + "end": 5004.22, + "probability": 1.0 + }, + { + "word": " with...", + "start": 5004.22, + "end": 5004.82, + "probability": 0.64794921875 + } + ] + }, + { + "id": 2037, + "text": "There are issues with video drivers and the way video behaves between 7 and 10,", + "start": 5005.22, + "end": 5011.98, + "words": [ + { + "word": " There", + "start": 5005.22, + "end": 5005.62, + "probability": 0.9951171875 + }, + { + "word": " are", + "start": 5005.62, + "end": 5005.86, + "probability": 1.0 + }, + { + "word": " issues", + "start": 5005.86, + "end": 5006.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 5006.2, + "end": 5006.44, + "probability": 0.9970703125 + }, + { + "word": " video", + "start": 5006.44, + "end": 5006.68, + "probability": 0.9990234375 + }, + { + "word": " drivers", + "start": 5006.68, + "end": 5007.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 5007.08, + "end": 5007.7, + "probability": 0.93505859375 + }, + { + "word": " the", + "start": 5007.7, + "end": 5007.86, + "probability": 1.0 + }, + { + "word": " way", + "start": 5007.86, + "end": 5008.0, + "probability": 1.0 + }, + { + "word": " video", + "start": 5008.0, + "end": 5008.4, + "probability": 1.0 + }, + { + "word": " behaves", + "start": 5008.4, + "end": 5009.06, + "probability": 0.99951171875 + }, + { + "word": " between", + "start": 5009.06, + "end": 5010.72, + "probability": 0.99365234375 + }, + { + "word": " 7", + "start": 5010.72, + "end": 5011.56, + "probability": 0.96826171875 + }, + { + "word": " and", + "start": 5011.56, + "end": 5011.76, + "probability": 0.998046875 + }, + { + "word": " 10,", + "start": 5011.76, + "end": 5011.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2038, + "text": "depending on your card.", + "start": 5012.06, + "end": 5013.0, + "words": [ + { + "word": " depending", + "start": 5012.06, + "end": 5012.5, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 5012.5, + "end": 5012.64, + "probability": 1.0 + }, + { + "word": " your", + "start": 5012.64, + "end": 5012.76, + "probability": 1.0 + }, + { + "word": " card.", + "start": 5012.76, + "end": 5013.0, + "probability": 1.0 + } + ] + }, + { + "id": 2039, + "text": "Specifically with the high-end NVIDIA cards, I've seen some issues.", + "start": 5013.580000000001, + "end": 5016.32, + "words": [ + { + "word": " Specifically", + "start": 5013.580000000001, + "end": 5013.9800000000005, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 5013.9800000000005, + "end": 5014.38, + "probability": 0.98291015625 + }, + { + "word": " the", + "start": 5014.38, + "end": 5014.46, + "probability": 1.0 + }, + { + "word": " high", + "start": 5014.46, + "end": 5014.66, + "probability": 0.99951171875 + }, + { + "word": "-end", + "start": 5014.66, + "end": 5014.86, + "probability": 0.99609375 + }, + { + "word": " NVIDIA", + "start": 5014.86, + "end": 5015.28, + "probability": 0.951171875 + }, + { + "word": " cards,", + "start": 5015.28, + "end": 5015.56, + "probability": 1.0 + }, + { + "word": " I've", + "start": 5015.68, + "end": 5015.86, + "probability": 0.99951171875 + }, + { + "word": " seen", + "start": 5015.86, + "end": 5015.96, + "probability": 1.0 + }, + { + "word": " some", + "start": 5015.96, + "end": 5016.1, + "probability": 1.0 + }, + { + "word": " issues.", + "start": 5016.1, + "end": 5016.32, + "probability": 1.0 + } + ] + }, + { + "id": 2040, + "text": "What kind of video card do you have?", + "start": 5017.400000000001, + "end": 5018.54, + "words": [ + { + "word": " What", + "start": 5017.400000000001, + "end": 5017.8, + "probability": 1.0 + }, + { + "word": " kind", + "start": 5017.8, + "end": 5017.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 5017.92, + "end": 5018.0, + "probability": 1.0 + }, + { + "word": " video", + "start": 5018.0, + "end": 5018.12, + "probability": 0.998046875 + }, + { + "word": " card", + "start": 5018.12, + "end": 5018.28, + "probability": 1.0 + }, + { + "word": " do", + "start": 5018.28, + "end": 5018.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 5018.4, + "end": 5018.44, + "probability": 1.0 + }, + { + "word": " have?", + "start": 5018.44, + "end": 5018.54, + "probability": 1.0 + } + ] + }, + { + "id": 2041, + "text": "It's a high-end NVIDIA card.", + "start": 5019.34, + "end": 5021.22, + "words": [ + { + "word": " It's", + "start": 5019.34, + "end": 5019.74, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 5019.74, + "end": 5019.76, + "probability": 1.0 + }, + { + "word": " high", + "start": 5019.76, + "end": 5020.0, + "probability": 1.0 + }, + { + "word": "-end", + "start": 5020.0, + "end": 5020.14, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5020.14, + "end": 5020.94, + "probability": 0.99951171875 + }, + { + "word": " card.", + "start": 5020.94, + "end": 5021.22, + "probability": 1.0 + } + ] + }, + { + "id": 2042, + "text": "Right, so if you have the GeForce experience on your machine, that should go.", + "start": 5021.42, + "end": 5024.5, + "words": [ + { + "word": " Right,", + "start": 5021.42, + "end": 5021.56, + "probability": 0.697265625 + }, + { + "word": " so", + "start": 5021.64, + "end": 5021.8, + "probability": 1.0 + }, + { + "word": " if", + "start": 5021.8, + "end": 5022.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5022.22, + "end": 5022.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 5022.34, + "end": 5022.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 5022.44, + "end": 5022.52, + "probability": 1.0 + }, + { + "word": " GeForce", + "start": 5022.52, + "end": 5022.84, + "probability": 0.998046875 + }, + { + "word": " experience", + "start": 5022.84, + "end": 5023.04, + "probability": 0.8544921875 + }, + { + "word": " on", + "start": 5023.04, + "end": 5023.44, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5023.44, + "end": 5023.54, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 5023.54, + "end": 5023.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 5023.88, + "end": 5023.98, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 5023.98, + "end": 5024.22, + "probability": 1.0 + }, + { + "word": " go.", + "start": 5024.22, + "end": 5024.5, + "probability": 1.0 + } + ] + }, + { + "id": 2043, + "text": "I personally, right as you're about to do the upgrade,", + "start": 5025.9400000000005, + "end": 5029.02, + "words": [ + { + "word": " I", + "start": 5025.9400000000005, + "end": 5026.34, + "probability": 0.99853515625 + }, + { + "word": " personally,", + "start": 5026.34, + "end": 5026.74, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 5027.02, + "end": 5027.4, + "probability": 0.98681640625 + }, + { + "word": " as", + "start": 5027.4, + "end": 5027.84, + "probability": 1.0 + }, + { + "word": " you're", + "start": 5027.84, + "end": 5028.1, + "probability": 1.0 + }, + { + "word": " about", + "start": 5028.1, + "end": 5028.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 5028.32, + "end": 5028.46, + "probability": 1.0 + }, + { + "word": " do", + "start": 5028.46, + "end": 5028.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 5028.6, + "end": 5028.72, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 5028.72, + "end": 5029.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2044, + "text": "I found it worked out a whole lot better for me", + "start": 5029.92, + "end": 5032.64, + "words": [ + { + "word": " I", + "start": 5029.92, + "end": 5030.0, + "probability": 0.994140625 + }, + { + "word": " found", + "start": 5030.0, + "end": 5030.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 5030.28, + "end": 5030.42, + "probability": 0.99951171875 + }, + { + "word": " worked", + "start": 5030.42, + "end": 5030.98, + "probability": 1.0 + }, + { + "word": " out", + "start": 5030.98, + "end": 5031.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 5031.32, + "end": 5031.5, + "probability": 0.99951171875 + }, + { + "word": " whole", + "start": 5031.5, + "end": 5031.68, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5031.68, + "end": 5031.94, + "probability": 1.0 + }, + { + "word": " better", + "start": 5031.94, + "end": 5032.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 5032.24, + "end": 5032.44, + "probability": 1.0 + }, + { + "word": " me", + "start": 5032.44, + "end": 5032.64, + "probability": 1.0 + } + ] + }, + { + "id": 2045, + "text": "that right when I told it to go ahead and do the upgrade,", + "start": 5034.1, + "end": 5036.3, + "words": [ + { + "word": " that", + "start": 5034.1, + "end": 5034.5, + "probability": 0.8359375 + }, + { + "word": " right", + "start": 5034.5, + "end": 5034.9, + "probability": 0.99609375 + }, + { + "word": " when", + "start": 5034.9, + "end": 5035.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 5035.08, + "end": 5035.18, + "probability": 1.0 + }, + { + "word": " told", + "start": 5035.18, + "end": 5035.36, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5035.36, + "end": 5035.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 5035.52, + "end": 5035.6, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 5035.6, + "end": 5035.68, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 5035.68, + "end": 5035.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 5035.8, + "end": 5035.86, + "probability": 1.0 + }, + { + "word": " do", + "start": 5035.86, + "end": 5035.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 5035.96, + "end": 5036.08, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 5036.08, + "end": 5036.3, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2046, + "text": "I also uninstalled the video driver.", + "start": 5036.46, + "end": 5038.84, + "words": [ + { + "word": " I", + "start": 5036.46, + "end": 5036.6, + "probability": 0.99853515625 + }, + { + "word": " also", + "start": 5036.6, + "end": 5036.84, + "probability": 0.99951171875 + }, + { + "word": " uninstalled", + "start": 5036.84, + "end": 5038.0, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5038.0, + "end": 5038.24, + "probability": 1.0 + }, + { + "word": " video", + "start": 5038.24, + "end": 5038.48, + "probability": 0.9833984375 + }, + { + "word": " driver.", + "start": 5038.48, + "end": 5038.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2047, + "text": "And then it reinstalled it upon reboot after doing the Windows 10 upgrade,", + "start": 5039.720000000001, + "end": 5044.26, + "words": [ + { + "word": " And", + "start": 5039.720000000001, + "end": 5040.120000000001, + "probability": 0.94287109375 + }, + { + "word": " then", + "start": 5040.120000000001, + "end": 5040.52, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5040.52, + "end": 5041.02, + "probability": 0.99609375 + }, + { + "word": " reinstalled", + "start": 5041.02, + "end": 5041.62, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 5041.62, + "end": 5041.74, + "probability": 0.9970703125 + }, + { + "word": " upon", + "start": 5041.74, + "end": 5041.92, + "probability": 1.0 + }, + { + "word": " reboot", + "start": 5041.92, + "end": 5042.32, + "probability": 1.0 + }, + { + "word": " after", + "start": 5042.32, + "end": 5042.74, + "probability": 0.99853515625 + }, + { + "word": " doing", + "start": 5042.74, + "end": 5043.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 5043.1, + "end": 5043.38, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 5043.38, + "end": 5043.8, + "probability": 1.0 + }, + { + "word": " 10", + "start": 5043.8, + "end": 5044.0, + "probability": 0.99951171875 + }, + { + "word": " upgrade,", + "start": 5044.0, + "end": 5044.26, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2048, + "text": "and everything worked fine.", + "start": 5044.38, + "end": 5045.28, + "words": [ + { + "word": " and", + "start": 5044.38, + "end": 5044.6, + "probability": 1.0 + }, + { + "word": " everything", + "start": 5044.6, + "end": 5044.78, + "probability": 1.0 + }, + { + "word": " worked", + "start": 5044.78, + "end": 5045.04, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 5045.04, + "end": 5045.28, + "probability": 1.0 + } + ] + }, + { + "id": 2049, + "text": "I'll say that as far as gaming goes, because of that exact issue,", + "start": 5045.56, + "end": 5048.58, + "words": [ + { + "word": " I'll", + "start": 5045.56, + "end": 5045.96, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 5045.96, + "end": 5046.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 5046.14, + "end": 5046.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 5046.3, + "end": 5046.62, + "probability": 0.99609375 + }, + { + "word": " far", + "start": 5046.62, + "end": 5046.84, + "probability": 1.0 + }, + { + "word": " as", + "start": 5046.84, + "end": 5047.04, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 5047.04, + "end": 5047.24, + "probability": 1.0 + }, + { + "word": " goes,", + "start": 5047.24, + "end": 5047.48, + "probability": 1.0 + }, + { + "word": " because", + "start": 5047.52, + "end": 5047.68, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5047.68, + "end": 5047.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 5047.86, + "end": 5047.98, + "probability": 1.0 + }, + { + "word": " exact", + "start": 5047.98, + "end": 5048.18, + "probability": 1.0 + }, + { + "word": " issue,", + "start": 5048.18, + "end": 5048.58, + "probability": 1.0 + } + ] + }, + { + "id": 2050, + "text": "what worked for me was just doing a fresh install.", + "start": 5049.38, + "end": 5051.44, + "words": [ + { + "word": " what", + "start": 5049.38, + "end": 5049.78, + "probability": 1.0 + }, + { + "word": " worked", + "start": 5049.78, + "end": 5050.04, + "probability": 1.0 + }, + { + "word": " for", + "start": 5050.04, + "end": 5050.18, + "probability": 1.0 + }, + { + "word": " me", + "start": 5050.18, + "end": 5050.3, + "probability": 1.0 + }, + { + "word": " was", + "start": 5050.3, + "end": 5050.46, + "probability": 1.0 + }, + { + "word": " just", + "start": 5050.46, + "end": 5050.64, + "probability": 1.0 + }, + { + "word": " doing", + "start": 5050.64, + "end": 5050.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 5050.82, + "end": 5050.94, + "probability": 1.0 + }, + { + "word": " fresh", + "start": 5050.94, + "end": 5051.12, + "probability": 0.99951171875 + }, + { + "word": " install.", + "start": 5051.12, + "end": 5051.44, + "probability": 1.0 + } + ] + }, + { + "id": 2051, + "text": "Because if you're using Steam games, you can reassociate them after the install.", + "start": 5052.04, + "end": 5055.16, + "words": [ + { + "word": " Because", + "start": 5052.04, + "end": 5052.44, + "probability": 0.9921875 + }, + { + "word": " if", + "start": 5052.44, + "end": 5052.62, + "probability": 1.0 + }, + { + "word": " you're", + "start": 5052.62, + "end": 5052.86, + "probability": 1.0 + }, + { + "word": " using", + "start": 5052.86, + "end": 5053.06, + "probability": 1.0 + }, + { + "word": " Steam", + "start": 5053.06, + "end": 5053.3, + "probability": 0.99755859375 + }, + { + "word": " games,", + "start": 5053.3, + "end": 5053.56, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 5053.68, + "end": 5053.76, + "probability": 1.0 + }, + { + "word": " can", + "start": 5053.76, + "end": 5053.88, + "probability": 1.0 + }, + { + "word": " reassociate", + "start": 5053.88, + "end": 5054.42, + "probability": 0.9794921875 + }, + { + "word": " them", + "start": 5054.42, + "end": 5054.56, + "probability": 1.0 + }, + { + "word": " after", + "start": 5054.56, + "end": 5054.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 5054.78, + "end": 5054.92, + "probability": 1.0 + }, + { + "word": " install.", + "start": 5054.92, + "end": 5055.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2052, + "text": "You don't have to re-download them.", + "start": 5055.22, + "end": 5056.06, + "words": [ + { + "word": " You", + "start": 5055.22, + "end": 5055.32, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 5055.32, + "end": 5055.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 5055.4, + "end": 5055.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 5055.48, + "end": 5055.56, + "probability": 1.0 + }, + { + "word": " re", + "start": 5055.56, + "end": 5055.66, + "probability": 0.6357421875 + }, + { + "word": "-download", + "start": 5055.66, + "end": 5055.92, + "probability": 0.998046875 + }, + { + "word": " them.", + "start": 5055.92, + "end": 5056.06, + "probability": 1.0 + } + ] + }, + { + "id": 2053, + "text": "Okay, do you mean NVIDIA reinstalled?", + "start": 5057.1, + "end": 5059.9, + "words": [ + { + "word": " Okay,", + "start": 5057.1, + "end": 5057.5, + "probability": 0.97314453125 + }, + { + "word": " do", + "start": 5057.52, + "end": 5057.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 5057.66, + "end": 5057.8, + "probability": 1.0 + }, + { + "word": " mean", + "start": 5057.8, + "end": 5058.08, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5058.08, + "end": 5059.22, + "probability": 0.95751953125 + }, + { + "word": " reinstalled?", + "start": 5059.22, + "end": 5059.9, + "probability": 0.96875 + } + ] + }, + { + "id": 2054, + "text": "It reinstalls the driver for the game or Windows 10?", + "start": 5059.92, + "end": 5064.14, + "words": [ + { + "word": " It", + "start": 5059.92, + "end": 5059.94, + "probability": 0.148681640625 + }, + { + "word": " reinstalls", + "start": 5059.94, + "end": 5060.04, + "probability": 0.496826171875 + }, + { + "word": " the", + "start": 5060.04, + "end": 5060.38, + "probability": 0.9990234375 + }, + { + "word": " driver", + "start": 5060.38, + "end": 5061.84, + "probability": 0.99560546875 + }, + { + "word": " for", + "start": 5061.84, + "end": 5062.4, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 5062.4, + "end": 5062.82, + "probability": 1.0 + }, + { + "word": " game", + "start": 5062.82, + "end": 5063.1, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 5063.1, + "end": 5063.36, + "probability": 0.80810546875 + }, + { + "word": " Windows", + "start": 5063.36, + "end": 5063.92, + "probability": 0.99560546875 + }, + { + "word": " 10?", + "start": 5063.92, + "end": 5064.14, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2055, + "text": "So Windows 10 will install its own NVIDIA driver after you do an upgrade.", + "start": 5064.18, + "end": 5068.74, + "words": [ + { + "word": " So", + "start": 5064.18, + "end": 5064.36, + "probability": 0.82470703125 + }, + { + "word": " Windows", + "start": 5064.36, + "end": 5064.66, + "probability": 0.86328125 + }, + { + "word": " 10", + "start": 5064.66, + "end": 5064.9, + "probability": 1.0 + }, + { + "word": " will", + "start": 5064.9, + "end": 5065.04, + "probability": 1.0 + }, + { + "word": " install", + "start": 5065.04, + "end": 5065.32, + "probability": 1.0 + }, + { + "word": " its", + "start": 5065.32, + "end": 5065.56, + "probability": 0.9990234375 + }, + { + "word": " own", + "start": 5065.56, + "end": 5065.82, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5065.82, + "end": 5066.64, + "probability": 0.98486328125 + }, + { + "word": " driver", + "start": 5066.64, + "end": 5066.84, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 5066.84, + "end": 5067.66, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5067.66, + "end": 5067.94, + "probability": 1.0 + }, + { + "word": " do", + "start": 5067.94, + "end": 5068.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 5068.16, + "end": 5068.38, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 5068.38, + "end": 5068.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2056, + "text": "And then from there, you can go ahead and put on any,", + "start": 5068.98, + "end": 5071.5, + "words": [ + { + "word": " And", + "start": 5068.98, + "end": 5069.42, + "probability": 0.9775390625 + }, + { + "word": " then", + "start": 5069.42, + "end": 5069.6, + "probability": 1.0 + }, + { + "word": " from", + "start": 5069.6, + "end": 5069.8, + "probability": 0.998046875 + }, + { + "word": " there,", + "start": 5069.8, + "end": 5070.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 5070.1, + "end": 5070.22, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5070.22, + "end": 5070.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 5070.32, + "end": 5070.44, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 5070.44, + "end": 5070.58, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 5070.58, + "end": 5070.62, + "probability": 1.0 + }, + { + "word": " put", + "start": 5070.62, + "end": 5070.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 5070.78, + "end": 5070.96, + "probability": 1.0 + }, + { + "word": " any,", + "start": 5070.96, + "end": 5071.5, + "probability": 1.0 + } + ] + }, + { + "id": 2057, + "text": "like if you're using a beta driver or using the experience driver,", + "start": 5071.66, + "end": 5074.82, + "words": [ + { + "word": " like", + "start": 5071.66, + "end": 5072.2, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 5072.2, + "end": 5072.34, + "probability": 0.96337890625 + }, + { + "word": " you're", + "start": 5072.34, + "end": 5072.46, + "probability": 0.9990234375 + }, + { + "word": " using", + "start": 5072.46, + "end": 5072.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 5072.62, + "end": 5072.74, + "probability": 1.0 + }, + { + "word": " beta", + "start": 5072.74, + "end": 5072.88, + "probability": 0.99267578125 + }, + { + "word": " driver", + "start": 5072.88, + "end": 5073.16, + "probability": 1.0 + }, + { + "word": " or", + "start": 5073.16, + "end": 5073.62, + "probability": 0.99951171875 + }, + { + "word": " using", + "start": 5073.62, + "end": 5073.88, + "probability": 0.71533203125 + }, + { + "word": " the", + "start": 5073.88, + "end": 5074.12, + "probability": 1.0 + }, + { + "word": " experience", + "start": 5074.12, + "end": 5074.4, + "probability": 0.69677734375 + }, + { + "word": " driver,", + "start": 5074.4, + "end": 5074.82, + "probability": 1.0 + } + ] + }, + { + "id": 2058, + "text": "you can put that back on yourself.", + "start": 5075.02, + "end": 5076.22, + "words": [ + { + "word": " you", + "start": 5075.02, + "end": 5075.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 5075.14, + "end": 5075.24, + "probability": 1.0 + }, + { + "word": " put", + "start": 5075.24, + "end": 5075.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 5075.38, + "end": 5075.56, + "probability": 1.0 + }, + { + "word": " back", + "start": 5075.56, + "end": 5075.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 5075.72, + "end": 5075.94, + "probability": 1.0 + }, + { + "word": " yourself.", + "start": 5075.94, + "end": 5076.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2059, + "text": "However, the experience driver, we have seen lots of problems", + "start": 5076.64, + "end": 5080.34, + "words": [ + { + "word": " However,", + "start": 5076.64, + "end": 5077.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 5077.36, + "end": 5077.5, + "probability": 1.0 + }, + { + "word": " experience", + "start": 5077.5, + "end": 5077.84, + "probability": 0.9990234375 + }, + { + "word": " driver,", + "start": 5077.84, + "end": 5078.32, + "probability": 1.0 + }, + { + "word": " we", + "start": 5078.58, + "end": 5078.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 5078.98, + "end": 5079.14, + "probability": 1.0 + }, + { + "word": " seen", + "start": 5079.14, + "end": 5079.36, + "probability": 1.0 + }, + { + "word": " lots", + "start": 5079.36, + "end": 5079.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 5079.8, + "end": 5079.96, + "probability": 1.0 + }, + { + "word": " problems", + "start": 5079.96, + "end": 5080.34, + "probability": 1.0 + } + ] + }, + { + "id": 2060, + "text": "where if it's installed prior to upgrade,", + "start": 5080.34, + "end": 5082.54, + "words": [ + { + "word": " where", + "start": 5080.34, + "end": 5080.66, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 5080.66, + "end": 5080.92, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 5080.92, + "end": 5081.18, + "probability": 1.0 + }, + { + "word": " installed", + "start": 5081.18, + "end": 5081.48, + "probability": 1.0 + }, + { + "word": " prior", + "start": 5081.48, + "end": 5081.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 5081.86, + "end": 5082.22, + "probability": 1.0 + }, + { + "word": " upgrade,", + "start": 5082.22, + "end": 5082.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2061, + "text": "it breaks the crap out of the video settings after the upgrade.", + "start": 5082.8, + "end": 5087.28, + "words": [ + { + "word": " it", + "start": 5082.8, + "end": 5083.44, + "probability": 1.0 + }, + { + "word": " breaks", + "start": 5083.44, + "end": 5084.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 5084.02, + "end": 5084.42, + "probability": 1.0 + }, + { + "word": " crap", + "start": 5084.42, + "end": 5084.94, + "probability": 1.0 + }, + { + "word": " out", + "start": 5084.94, + "end": 5085.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 5085.24, + "end": 5085.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 5085.4, + "end": 5085.46, + "probability": 1.0 + }, + { + "word": " video", + "start": 5085.46, + "end": 5085.76, + "probability": 0.99951171875 + }, + { + "word": " settings", + "start": 5085.76, + "end": 5086.28, + "probability": 0.9990234375 + }, + { + "word": " after", + "start": 5086.28, + "end": 5086.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 5086.8, + "end": 5087.0, + "probability": 1.0 + }, + { + "word": " upgrade.", + "start": 5087.0, + "end": 5087.28, + "probability": 1.0 + } + ] + }, + { + "id": 2062, + "text": "What's the experience driver?", + "start": 5088.0, + "end": 5089.16, + "words": [ + { + "word": " What's", + "start": 5088.0, + "end": 5088.52, + "probability": 0.47802734375 + }, + { + "word": " the", + "start": 5088.52, + "end": 5088.52, + "probability": 0.9541015625 + }, + { + "word": " experience", + "start": 5088.52, + "end": 5088.92, + "probability": 0.99755859375 + }, + { + "word": " driver?", + "start": 5088.92, + "end": 5089.16, + "probability": 1.0 + } + ] + }, + { + "id": 2063, + "text": "Well, if you're not using it, then that's good.", + "start": 5090.22, + "end": 5092.1, + "words": [ + { + "word": " Well,", + "start": 5090.22, + "end": 5090.7, + "probability": 0.94189453125 + }, + { + "word": " if", + "start": 5090.7, + "end": 5091.14, + "probability": 1.0 + }, + { + "word": " you're", + "start": 5091.14, + "end": 5091.26, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 5091.26, + "end": 5091.3, + "probability": 1.0 + }, + { + "word": " using", + "start": 5091.3, + "end": 5091.48, + "probability": 1.0 + }, + { + "word": " it,", + "start": 5091.48, + "end": 5091.64, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 5091.66, + "end": 5091.76, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 5091.76, + "end": 5091.94, + "probability": 1.0 + }, + { + "word": " good.", + "start": 5091.94, + "end": 5092.1, + "probability": 1.0 + } + ] + }, + { + "id": 2064, + "text": "That means you don't have to uninstall it.", + "start": 5092.16, + "end": 5093.24, + "words": [ + { + "word": " That", + "start": 5092.16, + "end": 5092.24, + "probability": 0.9990234375 + }, + { + "word": " means", + "start": 5092.24, + "end": 5092.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 5092.36, + "end": 5092.5, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5092.5, + "end": 5092.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 5092.58, + "end": 5092.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 5092.66, + "end": 5092.74, + "probability": 1.0 + }, + { + "word": " uninstall", + "start": 5092.74, + "end": 5093.02, + "probability": 0.998046875 + }, + { + "word": " it.", + "start": 5093.02, + "end": 5093.24, + "probability": 1.0 + } + ] + }, + { + "id": 2065, + "text": "But it's sort of like a universal driver for NVIDIA.", + "start": 5093.32, + "end": 5097.88, + "words": [ + { + "word": " But", + "start": 5093.32, + "end": 5093.44, + "probability": 0.5986328125 + }, + { + "word": " it's", + "start": 5093.44, + "end": 5095.46, + "probability": 0.99609375 + }, + { + "word": " sort", + "start": 5095.46, + "end": 5095.46, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 5095.46, + "end": 5096.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 5096.14, + "end": 5096.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 5096.22, + "end": 5096.34, + "probability": 1.0 + }, + { + "word": " universal", + "start": 5096.34, + "end": 5096.68, + "probability": 0.9951171875 + }, + { + "word": " driver", + "start": 5096.68, + "end": 5097.02, + "probability": 1.0 + }, + { + "word": " for", + "start": 5097.02, + "end": 5097.38, + "probability": 1.0 + }, + { + "word": " NVIDIA.", + "start": 5097.38, + "end": 5097.88, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2066, + "text": "Okay.", + "start": 5098.52, + "end": 5098.98, + "words": [ + { + "word": " Okay.", + "start": 5098.52, + "end": 5098.98, + "probability": 0.9462890625 + } + ] + }, + { + "id": 2067, + "text": "So Windows 10 knows which driver goes to my NVIDIA card?", + "start": 5099.38, + "end": 5105.42, + "words": [ + { + "word": " So", + "start": 5099.38, + "end": 5099.86, + "probability": 0.9931640625 + }, + { + "word": " Windows", + "start": 5099.86, + "end": 5100.2, + "probability": 0.95654296875 + }, + { + "word": " 10", + "start": 5100.2, + "end": 5100.52, + "probability": 1.0 + }, + { + "word": " knows", + "start": 5100.52, + "end": 5100.9, + "probability": 1.0 + }, + { + "word": " which", + "start": 5100.9, + "end": 5101.46, + "probability": 1.0 + }, + { + "word": " driver", + "start": 5101.46, + "end": 5101.9, + "probability": 1.0 + }, + { + "word": " goes", + "start": 5101.9, + "end": 5103.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 5103.34, + "end": 5103.68, + "probability": 1.0 + }, + { + "word": " my", + "start": 5103.68, + "end": 5103.86, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5103.86, + "end": 5105.2, + "probability": 1.0 + }, + { + "word": " card?", + "start": 5105.2, + "end": 5105.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2068, + "text": "There is a basic NVIDIA WHQL driver that Microsoft definitely knows about.", + "start": 5105.78, + "end": 5111.4, + "words": [ + { + "word": " There", + "start": 5105.78, + "end": 5106.26, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5106.26, + "end": 5106.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 5106.42, + "end": 5106.54, + "probability": 1.0 + }, + { + "word": " basic", + "start": 5106.54, + "end": 5107.46, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5107.46, + "end": 5108.08, + "probability": 1.0 + }, + { + "word": " WHQL", + "start": 5108.08, + "end": 5109.0, + "probability": 0.9951171875 + }, + { + "word": " driver", + "start": 5109.0, + "end": 5109.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 5109.3, + "end": 5109.86, + "probability": 0.99951171875 + }, + { + "word": " Microsoft", + "start": 5109.86, + "end": 5110.5, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 5110.5, + "end": 5110.84, + "probability": 0.99951171875 + }, + { + "word": " knows", + "start": 5110.84, + "end": 5111.16, + "probability": 1.0 + }, + { + "word": " about.", + "start": 5111.16, + "end": 5111.4, + "probability": 1.0 + } + ] + }, + { + "id": 2069, + "text": "It's a GeForce driver, so that wouldn't be a problem?", + "start": 5111.9400000000005, + "end": 5114.38, + "words": [ + { + "word": " It's", + "start": 5111.9400000000005, + "end": 5112.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 5112.42, + "end": 5112.48, + "probability": 1.0 + }, + { + "word": " GeForce", + "start": 5112.48, + "end": 5112.94, + "probability": 0.998046875 + }, + { + "word": " driver,", + "start": 5112.94, + "end": 5113.2, + "probability": 1.0 + }, + { + "word": " so", + "start": 5113.46, + "end": 5113.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 5113.6, + "end": 5113.78, + "probability": 1.0 + }, + { + "word": " wouldn't", + "start": 5113.78, + "end": 5114.02, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 5114.02, + "end": 5114.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 5114.08, + "end": 5114.16, + "probability": 1.0 + }, + { + "word": " problem?", + "start": 5114.16, + "end": 5114.38, + "probability": 1.0 + } + ] + }, + { + "id": 2070, + "text": "No.", + "start": 5114.62, + "end": 5114.82, + "words": [ + { + "word": " No.", + "start": 5114.62, + "end": 5114.82, + "probability": 0.994140625 + } + ] + }, + { + "id": 2071, + "text": "Well, you'll still want to get your NVIDIA update for your card specifically,", + "start": 5114.88, + "end": 5119.74, + "words": [ + { + "word": " Well,", + "start": 5114.88, + "end": 5115.22, + "probability": 0.99853515625 + }, + { + "word": " you'll", + "start": 5115.26, + "end": 5115.36, + "probability": 1.0 + }, + { + "word": " still", + "start": 5115.36, + "end": 5115.56, + "probability": 1.0 + }, + { + "word": " want", + "start": 5115.56, + "end": 5115.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 5115.78, + "end": 5115.94, + "probability": 1.0 + }, + { + "word": " get", + "start": 5115.94, + "end": 5116.88, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 5116.88, + "end": 5117.12, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5117.12, + "end": 5117.52, + "probability": 1.0 + }, + { + "word": " update", + "start": 5117.52, + "end": 5118.54, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 5118.54, + "end": 5118.92, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5118.92, + "end": 5119.1, + "probability": 1.0 + }, + { + "word": " card", + "start": 5119.1, + "end": 5119.38, + "probability": 0.99462890625 + }, + { + "word": " specifically,", + "start": 5119.38, + "end": 5119.74, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2072, + "text": "after the install, because your performance on your NVIDIA card", + "start": 5119.92, + "end": 5123.02, + "words": [ + { + "word": " after", + "start": 5119.92, + "end": 5120.12, + "probability": 0.86767578125 + }, + { + "word": " the", + "start": 5120.12, + "end": 5120.32, + "probability": 0.99951171875 + }, + { + "word": " install,", + "start": 5120.32, + "end": 5120.62, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 5120.76, + "end": 5121.5, + "probability": 0.986328125 + }, + { + "word": " your", + "start": 5121.5, + "end": 5121.72, + "probability": 0.98779296875 + }, + { + "word": " performance", + "start": 5121.72, + "end": 5122.26, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5122.26, + "end": 5122.48, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5122.48, + "end": 5122.58, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 5122.58, + "end": 5122.84, + "probability": 0.94140625 + }, + { + "word": " card", + "start": 5122.84, + "end": 5123.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2073, + "text": "could be affected if you don't.", + "start": 5123.02, + "end": 5123.98, + "words": [ + { + "word": " could", + "start": 5123.02, + "end": 5123.14, + "probability": 0.330810546875 + }, + { + "word": " be", + "start": 5123.14, + "end": 5123.24, + "probability": 1.0 + }, + { + "word": " affected", + "start": 5123.24, + "end": 5123.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 5123.48, + "end": 5123.66, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 5123.66, + "end": 5123.74, + "probability": 1.0 + }, + { + "word": " don't.", + "start": 5123.74, + "end": 5123.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2074, + "text": "But as far as that goes, if you're upgrading, just get rid of it for now,", + "start": 5124.04, + "end": 5127.64, + "words": [ + { + "word": " But", + "start": 5124.04, + "end": 5124.42, + "probability": 0.9755859375 + }, + { + "word": " as", + "start": 5124.42, + "end": 5124.62, + "probability": 0.97412109375 + }, + { + "word": " far", + "start": 5124.62, + "end": 5124.78, + "probability": 1.0 + }, + { + "word": " as", + "start": 5124.78, + "end": 5125.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 5125.02, + "end": 5125.64, + "probability": 0.998046875 + }, + { + "word": " goes,", + "start": 5125.64, + "end": 5125.86, + "probability": 1.0 + }, + { + "word": " if", + "start": 5125.94, + "end": 5126.06, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 5126.06, + "end": 5126.16, + "probability": 0.9990234375 + }, + { + "word": " upgrading,", + "start": 5126.16, + "end": 5126.5, + "probability": 0.9951171875 + }, + { + "word": " just", + "start": 5126.64, + "end": 5126.8, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 5126.8, + "end": 5127.02, + "probability": 1.0 + }, + { + "word": " rid", + "start": 5127.02, + "end": 5127.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 5127.14, + "end": 5127.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 5127.24, + "end": 5127.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 5127.32, + "end": 5127.48, + "probability": 0.99951171875 + }, + { + "word": " now,", + "start": 5127.48, + "end": 5127.64, + "probability": 1.0 + } + ] + }, + { + "id": 2075, + "text": "and then you can fix it after the install.", + "start": 5127.72, + "end": 5129.02, + "words": [ + { + "word": " and", + "start": 5127.72, + "end": 5127.82, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 5127.82, + "end": 5127.94, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5127.94, + "end": 5128.18, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5128.18, + "end": 5128.3, + "probability": 1.0 + }, + { + "word": " fix", + "start": 5128.3, + "end": 5128.48, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5128.48, + "end": 5128.56, + "probability": 1.0 + }, + { + "word": " after", + "start": 5128.56, + "end": 5128.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5128.68, + "end": 5128.82, + "probability": 1.0 + }, + { + "word": " install.", + "start": 5128.82, + "end": 5129.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2076, + "text": "Okay.", + "start": 5129.54, + "end": 5129.98, + "words": [ + { + "word": " Okay.", + "start": 5129.54, + "end": 5129.98, + "probability": 0.86474609375 + } + ] + }, + { + "id": 2077, + "text": "But does Windows 10 use more RAM than 7?", + "start": 5130.02, + "end": 5133.5, + "words": [ + { + "word": " But", + "start": 5130.02, + "end": 5130.22, + "probability": 0.99365234375 + }, + { + "word": " does", + "start": 5130.22, + "end": 5130.88, + "probability": 0.9853515625 + }, + { + "word": " Windows", + "start": 5130.88, + "end": 5131.46, + "probability": 1.0 + }, + { + "word": " 10", + "start": 5131.46, + "end": 5131.72, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 5131.72, + "end": 5131.96, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 5131.96, + "end": 5132.22, + "probability": 1.0 + }, + { + "word": " RAM", + "start": 5132.22, + "end": 5132.68, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 5132.68, + "end": 5133.06, + "probability": 1.0 + }, + { + "word": " 7?", + "start": 5133.06, + "end": 5133.5, + "probability": 0.990234375 + } + ] + }, + { + "id": 2078, + "text": "In my experience, it's about the same.", + "start": 5134.360000000001, + "end": 5136.66, + "words": [ + { + "word": " In", + "start": 5134.360000000001, + "end": 5134.8, + "probability": 0.9716796875 + }, + { + "word": " my", + "start": 5134.8, + "end": 5135.08, + "probability": 1.0 + }, + { + "word": " experience,", + "start": 5135.08, + "end": 5135.58, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5135.78, + "end": 5136.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 5136.04, + "end": 5136.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 5136.2, + "end": 5136.4, + "probability": 1.0 + }, + { + "word": " same.", + "start": 5136.4, + "end": 5136.66, + "probability": 1.0 + } + ] + }, + { + "id": 2079, + "text": "Now, I mean, I've got sort of like a video editing rig that I did the upgrade on,", + "start": 5137.34, + "end": 5142.48, + "words": [ + { + "word": " Now,", + "start": 5137.34, + "end": 5137.78, + "probability": 0.955078125 + }, + { + "word": " I", + "start": 5137.84, + "end": 5138.02, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 5138.02, + "end": 5138.16, + "probability": 0.916015625 + }, + { + "word": " I've", + "start": 5138.16, + "end": 5138.4, + "probability": 1.0 + }, + { + "word": " got", + "start": 5138.4, + "end": 5138.8, + "probability": 1.0 + }, + { + "word": " sort", + "start": 5138.8, + "end": 5139.02, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 5139.02, + "end": 5139.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 5139.14, + "end": 5139.32, + "probability": 0.93212890625 + }, + { + "word": " a", + "start": 5139.32, + "end": 5139.46, + "probability": 1.0 + }, + { + "word": " video", + "start": 5139.46, + "end": 5139.76, + "probability": 1.0 + }, + { + "word": " editing", + "start": 5139.76, + "end": 5140.08, + "probability": 0.99365234375 + }, + { + "word": " rig", + "start": 5140.08, + "end": 5140.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 5140.4, + "end": 5140.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 5140.94, + "end": 5141.16, + "probability": 1.0 + }, + { + "word": " did", + "start": 5141.16, + "end": 5141.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 5141.74, + "end": 5141.9, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 5141.9, + "end": 5142.16, + "probability": 0.9990234375 + }, + { + "word": " on,", + "start": 5142.16, + "end": 5142.48, + "probability": 1.0 + } + ] + }, + { + "id": 2080, + "text": "and it's got 32 gigs of RAM on it, so I didn't really notice any difference at all.", + "start": 5143.2, + "end": 5147.68, + "words": [ + { + "word": " and", + "start": 5143.04, + "end": 5143.26, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5143.26, + "end": 5143.68, + "probability": 1.0 + }, + { + "word": " got", + "start": 5143.68, + "end": 5143.82, + "probability": 0.99951171875 + }, + { + "word": " 32", + "start": 5143.82, + "end": 5144.54, + "probability": 0.59228515625 + }, + { + "word": " gigs", + "start": 5144.54, + "end": 5144.92, + "probability": 0.98291015625 + }, + { + "word": " of", + "start": 5144.92, + "end": 5145.08, + "probability": 1.0 + }, + { + "word": " RAM", + "start": 5145.08, + "end": 5145.22, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 5145.22, + "end": 5145.44, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 5145.44, + "end": 5145.54, + "probability": 1.0 + }, + { + "word": " so", + "start": 5145.6, + "end": 5145.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 5145.66, + "end": 5145.98, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 5145.98, + "end": 5146.28, + "probability": 1.0 + }, + { + "word": " really", + "start": 5146.28, + "end": 5146.42, + "probability": 1.0 + }, + { + "word": " notice", + "start": 5146.42, + "end": 5146.8, + "probability": 1.0 + }, + { + "word": " any", + "start": 5146.8, + "end": 5146.96, + "probability": 1.0 + }, + { + "word": " difference", + "start": 5146.96, + "end": 5147.22, + "probability": 1.0 + }, + { + "word": " at", + "start": 5147.22, + "end": 5147.46, + "probability": 1.0 + }, + { + "word": " all.", + "start": 5147.46, + "end": 5147.68, + "probability": 1.0 + } + ] + }, + { + "id": 2081, + "text": "Okay.", + "start": 5148.160000000001, + "end": 5148.6, + "words": [ + { + "word": " Okay.", + "start": 5148.160000000001, + "end": 5148.6, + "probability": 0.0004978179931640625 + } + ] + }, + { + "id": 2082, + "text": "Okay.", + "start": 5148.6, + "end": 5148.88, + "words": [ + { + "word": " Okay.", + "start": 5148.6, + "end": 5148.88, + "probability": 0.036102294921875 + } + ] + }, + { + "id": 2083, + "text": "Okay.", + "start": 5149.26, + "end": 5149.42, + "words": [ + { + "word": " Okay.", + "start": 5149.26, + "end": 5149.42, + "probability": 0.427978515625 + } + ] + }, + { + "id": 2084, + "text": "Okay.", + "start": 5149.46, + "end": 5149.9, + "words": [ + { + "word": " Okay.", + "start": 5149.46, + "end": 5149.9, + "probability": 0.8134765625 + } + ] + }, + { + "id": 2085, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2086, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2087, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2088, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2089, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2090, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2091, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2092, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2093, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2094, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2095, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2096, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2097, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2098, + "text": "", + "start": 5149.9, + "end": 5149.9, + "words": [] + }, + { + "id": 2099, + "text": "Because the Windows, like my laptop here is Windows 10,", + "start": 5149.92, + "end": 5153.64, + "words": [ + { + "word": " Because", + "start": 5149.92, + "end": 5150.02, + "probability": 0.129638671875 + }, + { + "word": " the", + "start": 5150.02, + "end": 5150.06, + "probability": 0.6376953125 + }, + { + "word": " Windows,", + "start": 5150.06, + "end": 5150.56, + "probability": 0.98046875 + }, + { + "word": " like", + "start": 5150.9, + "end": 5151.4, + "probability": 0.998046875 + }, + { + "word": " my", + "start": 5151.4, + "end": 5151.54, + "probability": 0.96826171875 + }, + { + "word": " laptop", + "start": 5151.54, + "end": 5151.92, + "probability": 1.0 + }, + { + "word": " here", + "start": 5151.92, + "end": 5152.18, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5152.18, + "end": 5152.6, + "probability": 0.84130859375 + }, + { + "word": " Windows", + "start": 5152.6, + "end": 5153.16, + "probability": 1.0 + }, + { + "word": " 10,", + "start": 5153.16, + "end": 5153.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2100, + "text": "and I noticed that Chrome uses more RAM after the upgrade than it did before,", + "start": 5154.56, + "end": 5161.16, + "words": [ + { + "word": " and", + "start": 5154.56, + "end": 5155.0, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 5155.0, + "end": 5155.28, + "probability": 1.0 + }, + { + "word": " noticed", + "start": 5155.28, + "end": 5155.56, + "probability": 0.95654296875 + }, + { + "word": " that", + "start": 5155.56, + "end": 5155.76, + "probability": 1.0 + }, + { + "word": " Chrome", + "start": 5155.76, + "end": 5156.04, + "probability": 1.0 + }, + { + "word": " uses", + "start": 5156.04, + "end": 5156.56, + "probability": 1.0 + }, + { + "word": " more", + "start": 5156.56, + "end": 5157.0, + "probability": 1.0 + }, + { + "word": " RAM", + "start": 5157.0, + "end": 5157.44, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 5157.44, + "end": 5157.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 5157.88, + "end": 5158.1, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 5158.1, + "end": 5158.46, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 5158.46, + "end": 5159.9, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 5159.9, + "end": 5160.58, + "probability": 1.0 + }, + { + "word": " did", + "start": 5160.58, + "end": 5160.8, + "probability": 1.0 + }, + { + "word": " before,", + "start": 5160.8, + "end": 5161.16, + "probability": 1.0 + } + ] + }, + { + "id": 2101, + "text": "and more CPU for that matter, too.", + "start": 5161.38, + "end": 5162.74, + "words": [ + { + "word": " and", + "start": 5161.38, + "end": 5161.58, + "probability": 1.0 + }, + { + "word": " more", + "start": 5161.58, + "end": 5161.72, + "probability": 1.0 + }, + { + "word": " CPU", + "start": 5161.72, + "end": 5162.0, + "probability": 1.0 + }, + { + "word": " for", + "start": 5162.0, + "end": 5162.22, + "probability": 0.93994140625 + }, + { + "word": " that", + "start": 5162.22, + "end": 5162.36, + "probability": 1.0 + }, + { + "word": " matter,", + "start": 5162.36, + "end": 5162.58, + "probability": 1.0 + }, + { + "word": " too.", + "start": 5162.6, + "end": 5162.74, + "probability": 1.0 + } + ] + }, + { + "id": 2102, + "text": "So there is some sort of a penalty, a tradeoff there,", + "start": 5163.320000000001, + "end": 5167.12, + "words": [ + { + "word": " So", + "start": 5163.320000000001, + "end": 5163.76, + "probability": 0.9892578125 + }, + { + "word": " there", + "start": 5163.76, + "end": 5163.96, + "probability": 0.92529296875 + }, + { + "word": " is", + "start": 5163.96, + "end": 5164.24, + "probability": 1.0 + }, + { + "word": " some", + "start": 5164.24, + "end": 5164.48, + "probability": 1.0 + }, + { + "word": " sort", + "start": 5164.48, + "end": 5164.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 5164.76, + "end": 5164.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 5164.88, + "end": 5164.98, + "probability": 0.99951171875 + }, + { + "word": " penalty,", + "start": 5164.98, + "end": 5166.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 5166.3, + "end": 5166.4, + "probability": 1.0 + }, + { + "word": " tradeoff", + "start": 5166.4, + "end": 5166.9, + "probability": 0.80517578125 + }, + { + "word": " there,", + "start": 5166.9, + "end": 5167.12, + "probability": 1.0 + } + ] + }, + { + "id": 2103, + "text": "but I don't think it's enough that it needs to be warned about, like in the Vista era.", + "start": 5167.24, + "end": 5171.46, + "words": [ + { + "word": " but", + "start": 5167.24, + "end": 5167.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 5167.4, + "end": 5167.54, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5167.54, + "end": 5167.74, + "probability": 1.0 + }, + { + "word": " think", + "start": 5167.74, + "end": 5167.96, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5167.96, + "end": 5168.3, + "probability": 1.0 + }, + { + "word": " enough", + "start": 5168.3, + "end": 5168.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 5168.9, + "end": 5169.26, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5169.26, + "end": 5169.46, + "probability": 1.0 + }, + { + "word": " needs", + "start": 5169.46, + "end": 5169.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 5169.68, + "end": 5169.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 5169.8, + "end": 5169.9, + "probability": 1.0 + }, + { + "word": " warned", + "start": 5169.9, + "end": 5170.22, + "probability": 0.99951171875 + }, + { + "word": " about,", + "start": 5170.22, + "end": 5170.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 5170.58, + "end": 5170.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 5170.72, + "end": 5170.88, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5170.88, + "end": 5170.96, + "probability": 1.0 + }, + { + "word": " Vista", + "start": 5170.96, + "end": 5171.22, + "probability": 0.998046875 + }, + { + "word": " era.", + "start": 5171.22, + "end": 5171.46, + "probability": 1.0 + } + ] + }, + { + "id": 2104, + "text": "So you're saying certain programs, it differs by the program?", + "start": 5172.1, + "end": 5175.26, + "words": [ + { + "word": " So", + "start": 5172.1, + "end": 5172.54, + "probability": 0.9970703125 + }, + { + "word": " you're", + "start": 5172.54, + "end": 5172.7, + "probability": 1.0 + }, + { + "word": " saying", + "start": 5172.7, + "end": 5172.9, + "probability": 1.0 + }, + { + "word": " certain", + "start": 5172.9, + "end": 5173.26, + "probability": 0.9990234375 + }, + { + "word": " programs,", + "start": 5173.26, + "end": 5173.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 5174.1, + "end": 5174.38, + "probability": 1.0 + }, + { + "word": " differs", + "start": 5174.38, + "end": 5174.64, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 5174.64, + "end": 5174.82, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5174.82, + "end": 5174.9, + "probability": 1.0 + }, + { + "word": " program?", + "start": 5174.9, + "end": 5175.26, + "probability": 1.0 + } + ] + }, + { + "id": 2105, + "text": "It appears to be differing by the program.", + "start": 5175.44, + "end": 5177.56, + "words": [ + { + "word": " It", + "start": 5175.44, + "end": 5175.78, + "probability": 0.99951171875 + }, + { + "word": " appears", + "start": 5175.78, + "end": 5176.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 5176.2, + "end": 5176.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 5176.42, + "end": 5176.5, + "probability": 1.0 + }, + { + "word": " differing", + "start": 5176.5, + "end": 5176.9, + "probability": 1.0 + }, + { + "word": " by", + "start": 5176.9, + "end": 5177.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 5177.06, + "end": 5177.18, + "probability": 1.0 + }, + { + "word": " program.", + "start": 5177.18, + "end": 5177.56, + "probability": 1.0 + } + ] + }, + { + "id": 2106, + "text": "Do you know what, like the official?", + "start": 5178.26, + "end": 5179.84, + "words": [ + { + "word": " Do", + "start": 5178.26, + "end": 5178.7, + "probability": 0.95166015625 + }, + { + "word": " you", + "start": 5178.7, + "end": 5178.76, + "probability": 1.0 + }, + { + "word": " know", + "start": 5178.76, + "end": 5178.82, + "probability": 0.99951171875 + }, + { + "word": " what,", + "start": 5178.82, + "end": 5179.04, + "probability": 0.974609375 + }, + { + "word": " like", + "start": 5179.08, + "end": 5179.42, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 5179.42, + "end": 5179.58, + "probability": 0.7138671875 + }, + { + "word": " official?", + "start": 5179.58, + "end": 5179.84, + "probability": 0.60791015625 + } + ] + }, + { + "id": 2107, + "text": "The official usage is per each OS?", + "start": 5179.92, + "end": 5182.64, + "words": [ + { + "word": " The", + "start": 5179.92, + "end": 5180.12, + "probability": 0.0019626617431640625 + }, + { + "word": " official", + "start": 5180.12, + "end": 5180.12, + "probability": 0.046112060546875 + }, + { + "word": " usage", + "start": 5180.12, + "end": 5180.98, + "probability": 0.986328125 + }, + { + "word": " is", + "start": 5180.98, + "end": 5181.36, + "probability": 0.98974609375 + }, + { + "word": " per", + "start": 5181.36, + "end": 5181.56, + "probability": 0.64208984375 + }, + { + "word": " each", + "start": 5181.56, + "end": 5181.92, + "probability": 0.9970703125 + }, + { + "word": " OS?", + "start": 5181.92, + "end": 5182.64, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2108, + "text": "Off the top of my head, no.", + "start": 5183.72, + "end": 5184.76, + "words": [ + { + "word": " Off", + "start": 5183.72, + "end": 5184.16, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 5184.16, + "end": 5184.26, + "probability": 0.99609375 + }, + { + "word": " top", + "start": 5184.26, + "end": 5184.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 5184.4, + "end": 5184.46, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 5184.46, + "end": 5184.54, + "probability": 0.99951171875 + }, + { + "word": " head,", + "start": 5184.54, + "end": 5184.62, + "probability": 1.0 + }, + { + "word": " no.", + "start": 5184.64, + "end": 5184.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2109, + "text": "I'm sorry.", + "start": 5184.86, + "end": 5185.24, + "words": [ + { + "word": " I'm", + "start": 5184.86, + "end": 5185.04, + "probability": 0.99853515625 + }, + { + "word": " sorry.", + "start": 5185.04, + "end": 5185.24, + "probability": 1.0 + } + ] + }, + { + "id": 2110, + "text": "Okay.", + "start": 5185.46, + "end": 5185.72, + "words": [ + { + "word": " Okay.", + "start": 5185.46, + "end": 5185.72, + "probability": 0.6201171875 + } + ] + }, + { + "id": 2111, + "text": "Okay.", + "start": 5186.04, + "end": 5186.48, + "words": [ + { + "word": " Okay.", + "start": 5186.04, + "end": 5186.48, + "probability": 0.058013916015625 + } + ] + }, + { + "id": 2112, + "text": "But I don't think that, I mean, if you get a reasonable machine and you're playing games on it now,", + "start": 5187.280000000001, + "end": 5191.64, + "words": [ + { + "word": " But", + "start": 5187.280000000001, + "end": 5187.72, + "probability": 0.96240234375 + }, + { + "word": " I", + "start": 5187.72, + "end": 5188.04, + "probability": 0.9755859375 + }, + { + "word": " don't", + "start": 5188.04, + "end": 5188.28, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 5188.28, + "end": 5188.44, + "probability": 1.0 + }, + { + "word": " that,", + "start": 5188.44, + "end": 5188.64, + "probability": 0.91796875 + }, + { + "word": " I", + "start": 5188.7, + "end": 5188.78, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 5188.78, + "end": 5188.92, + "probability": 1.0 + }, + { + "word": " if", + "start": 5188.94, + "end": 5189.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 5189.06, + "end": 5189.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 5189.18, + "end": 5189.24, + "probability": 0.51953125 + }, + { + "word": " a", + "start": 5189.24, + "end": 5189.36, + "probability": 1.0 + }, + { + "word": " reasonable", + "start": 5189.36, + "end": 5189.72, + "probability": 0.99853515625 + }, + { + "word": " machine", + "start": 5189.72, + "end": 5190.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 5190.08, + "end": 5190.26, + "probability": 0.98046875 + }, + { + "word": " you're", + "start": 5190.26, + "end": 5190.4, + "probability": 1.0 + }, + { + "word": " playing", + "start": 5190.4, + "end": 5190.66, + "probability": 1.0 + }, + { + "word": " games", + "start": 5190.66, + "end": 5191.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 5191.06, + "end": 5191.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 5191.26, + "end": 5191.38, + "probability": 1.0 + }, + { + "word": " now,", + "start": 5191.38, + "end": 5191.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2113, + "text": "you're probably not going to notice any performance impact", + "start": 5192.14, + "end": 5195.14, + "words": [ + { + "word": " you're", + "start": 5192.14, + "end": 5192.58, + "probability": 1.0 + }, + { + "word": " probably", + "start": 5192.58, + "end": 5192.94, + "probability": 1.0 + }, + { + "word": " not", + "start": 5192.94, + "end": 5193.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 5193.24, + "end": 5193.4, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 5193.4, + "end": 5193.52, + "probability": 1.0 + }, + { + "word": " notice", + "start": 5193.52, + "end": 5193.8, + "probability": 1.0 + }, + { + "word": " any", + "start": 5193.8, + "end": 5194.02, + "probability": 1.0 + }, + { + "word": " performance", + "start": 5194.02, + "end": 5194.64, + "probability": 1.0 + }, + { + "word": " impact", + "start": 5194.64, + "end": 5195.14, + "probability": 1.0 + } + ] + }, + { + "id": 2114, + "text": "as long as you don't have your antivirus on there during the upgrade", + "start": 5195.14, + "end": 5199.84, + "words": [ + { + "word": " as", + "start": 5195.14, + "end": 5195.56, + "probability": 0.9365234375 + }, + { + "word": " long", + "start": 5195.56, + "end": 5195.72, + "probability": 1.0 + }, + { + "word": " as", + "start": 5195.72, + "end": 5195.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 5195.94, + "end": 5196.48, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5196.48, + "end": 5197.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 5197.38, + "end": 5197.52, + "probability": 1.0 + }, + { + "word": " your", + "start": 5197.52, + "end": 5197.74, + "probability": 0.99951171875 + }, + { + "word": " antivirus", + "start": 5197.74, + "end": 5198.18, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 5198.18, + "end": 5198.4, + "probability": 1.0 + }, + { + "word": " there", + "start": 5198.4, + "end": 5198.58, + "probability": 1.0 + }, + { + "word": " during", + "start": 5198.58, + "end": 5198.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 5198.9, + "end": 5199.14, + "probability": 1.0 + }, + { + "word": " upgrade", + "start": 5199.14, + "end": 5199.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2115, + "text": "and you deal with the video stuff beforehand.", + "start": 5199.84, + "end": 5204.1, + "words": [ + { + "word": " and", + "start": 5199.84, + "end": 5200.36, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 5200.36, + "end": 5200.72, + "probability": 1.0 + }, + { + "word": " deal", + "start": 5200.72, + "end": 5201.64, + "probability": 0.7236328125 + }, + { + "word": " with", + "start": 5201.64, + "end": 5202.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 5202.18, + "end": 5202.3, + "probability": 1.0 + }, + { + "word": " video", + "start": 5202.3, + "end": 5202.5, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 5202.5, + "end": 5202.78, + "probability": 0.99951171875 + }, + { + "word": " beforehand.", + "start": 5202.78, + "end": 5204.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2116, + "text": "Yeah, you said Conspiracy uses a lot of resources.", + "start": 5204.72, + "end": 5208.24, + "words": [ + { + "word": " Yeah,", + "start": 5204.72, + "end": 5205.16, + "probability": 0.76953125 + }, + { + "word": " you", + "start": 5205.16, + "end": 5205.26, + "probability": 0.99267578125 + }, + { + "word": " said", + "start": 5205.26, + "end": 5205.36, + "probability": 0.99951171875 + }, + { + "word": " Conspiracy", + "start": 5205.36, + "end": 5205.9, + "probability": 0.9267578125 + }, + { + "word": " uses", + "start": 5205.9, + "end": 5206.26, + "probability": 0.91015625 + }, + { + "word": " a", + "start": 5206.26, + "end": 5207.36, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5207.36, + "end": 5207.52, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5207.52, + "end": 5207.62, + "probability": 1.0 + }, + { + "word": " resources.", + "start": 5207.62, + "end": 5208.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2117, + "text": "Resources help out.", + "start": 5208.34, + "end": 5208.92, + "words": [ + { + "word": " Resources", + "start": 5208.34, + "end": 5208.62, + "probability": 3.635883331298828e-06 + }, + { + "word": " help", + "start": 5208.62, + "end": 5208.62, + "probability": 0.9833984375 + }, + { + "word": " out.", + "start": 5208.62, + "end": 5208.92, + "probability": 1.0 + } + ] + }, + { + "id": 2118, + "text": "Panda.", + "start": 5209.9800000000005, + "end": 5210.38, + "words": [ + { + "word": " Panda.", + "start": 5209.9800000000005, + "end": 5210.38, + "probability": 0.84765625 + } + ] + }, + { + "id": 2119, + "text": "Panda's not, my biggest problem with Panda is that it was irritating.", + "start": 5211.4800000000005, + "end": 5215.9, + "words": [ + { + "word": " Panda's", + "start": 5211.4800000000005, + "end": 5211.88, + "probability": 0.619140625 + }, + { + "word": " not,", + "start": 5211.88, + "end": 5211.96, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 5212.14, + "end": 5212.58, + "probability": 0.99609375 + }, + { + "word": " biggest", + "start": 5212.58, + "end": 5213.02, + "probability": 0.9990234375 + }, + { + "word": " problem", + "start": 5213.02, + "end": 5213.3, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 5213.3, + "end": 5213.4, + "probability": 0.9990234375 + }, + { + "word": " Panda", + "start": 5213.4, + "end": 5213.6, + "probability": 0.9853515625 + }, + { + "word": " is", + "start": 5213.6, + "end": 5213.74, + "probability": 0.99365234375 + }, + { + "word": " that", + "start": 5213.74, + "end": 5213.84, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5213.84, + "end": 5213.96, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 5213.96, + "end": 5214.1, + "probability": 0.99755859375 + }, + { + "word": " irritating.", + "start": 5214.1, + "end": 5215.9, + "probability": 0.85693359375 + } + ] + }, + { + "id": 2120, + "text": "But it's a decent antivirus, and it's nice and lightweight, and it's fast.", + "start": 5217.240000000001, + "end": 5221.54, + "words": [ + { + "word": " But", + "start": 5217.240000000001, + "end": 5217.64, + "probability": 0.9892578125 + }, + { + "word": " it's", + "start": 5217.64, + "end": 5218.04, + "probability": 0.9638671875 + }, + { + "word": " a", + "start": 5218.04, + "end": 5218.08, + "probability": 0.99365234375 + }, + { + "word": " decent", + "start": 5218.08, + "end": 5218.28, + "probability": 0.966796875 + }, + { + "word": " antivirus,", + "start": 5218.28, + "end": 5218.96, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 5219.06, + "end": 5219.62, + "probability": 0.994140625 + }, + { + "word": " it's", + "start": 5219.62, + "end": 5219.96, + "probability": 1.0 + }, + { + "word": " nice", + "start": 5219.96, + "end": 5220.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 5220.16, + "end": 5220.28, + "probability": 0.99951171875 + }, + { + "word": " lightweight,", + "start": 5220.28, + "end": 5220.6, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 5220.9, + "end": 5221.02, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5221.02, + "end": 5221.2, + "probability": 1.0 + }, + { + "word": " fast.", + "start": 5221.2, + "end": 5221.54, + "probability": 1.0 + } + ] + }, + { + "id": 2121, + "text": "So I have no issue with Panda as long as you go in and put it in, like, gaming mode", + "start": 5221.9, + "end": 5226.7, + "words": [ + { + "word": " So", + "start": 5221.9, + "end": 5222.3, + "probability": 0.98486328125 + }, + { + "word": " I", + "start": 5222.3, + "end": 5223.28, + "probability": 0.81982421875 + }, + { + "word": " have", + "start": 5223.28, + "end": 5223.52, + "probability": 1.0 + }, + { + "word": " no", + "start": 5223.52, + "end": 5223.68, + "probability": 1.0 + }, + { + "word": " issue", + "start": 5223.68, + "end": 5223.94, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 5223.94, + "end": 5224.08, + "probability": 1.0 + }, + { + "word": " Panda", + "start": 5224.08, + "end": 5224.36, + "probability": 1.0 + }, + { + "word": " as", + "start": 5224.36, + "end": 5224.66, + "probability": 0.86474609375 + }, + { + "word": " long", + "start": 5224.66, + "end": 5224.86, + "probability": 1.0 + }, + { + "word": " as", + "start": 5224.86, + "end": 5225.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 5225.04, + "end": 5225.12, + "probability": 1.0 + }, + { + "word": " go", + "start": 5225.12, + "end": 5225.22, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 5225.22, + "end": 5225.32, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 5225.32, + "end": 5225.42, + "probability": 1.0 + }, + { + "word": " put", + "start": 5225.42, + "end": 5225.82, + "probability": 1.0 + }, + { + "word": " it", + "start": 5225.82, + "end": 5225.92, + "probability": 1.0 + }, + { + "word": " in,", + "start": 5225.92, + "end": 5226.04, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 5226.08, + "end": 5226.18, + "probability": 0.99951171875 + }, + { + "word": " gaming", + "start": 5226.18, + "end": 5226.48, + "probability": 0.99951171875 + }, + { + "word": " mode", + "start": 5226.48, + "end": 5226.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2122, + "text": "so it doesn't give you a million updates every second.", + "start": 5226.7, + "end": 5229.12, + "words": [ + { + "word": " so", + "start": 5226.7, + "end": 5226.9, + "probability": 0.66162109375 + }, + { + "word": " it", + "start": 5226.9, + "end": 5227.02, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 5227.02, + "end": 5227.26, + "probability": 1.0 + }, + { + "word": " give", + "start": 5227.26, + "end": 5227.7, + "probability": 0.7880859375 + }, + { + "word": " you", + "start": 5227.7, + "end": 5227.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 5227.88, + "end": 5227.98, + "probability": 0.99951171875 + }, + { + "word": " million", + "start": 5227.98, + "end": 5228.16, + "probability": 0.9990234375 + }, + { + "word": " updates", + "start": 5228.16, + "end": 5228.52, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 5228.52, + "end": 5228.8, + "probability": 0.578125 + }, + { + "word": " second.", + "start": 5228.8, + "end": 5229.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2123, + "text": "Yeah, it's trying to sell you something.", + "start": 5229.6, + "end": 5230.28, + "words": [ + { + "word": " Yeah,", + "start": 5229.6, + "end": 5229.6, + "probability": 0.5078125 + }, + { + "word": " it's", + "start": 5229.7, + "end": 5229.74, + "probability": 0.7470703125 + }, + { + "word": " trying", + "start": 5229.74, + "end": 5229.84, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 5229.84, + "end": 5229.98, + "probability": 1.0 + }, + { + "word": " sell", + "start": 5229.98, + "end": 5230.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 5230.22, + "end": 5230.26, + "probability": 1.0 + }, + { + "word": " something.", + "start": 5230.26, + "end": 5230.28, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2124, + "text": "The reason why it's lighter is because it's more web-based, isn't it?", + "start": 5230.28, + "end": 5233.18, + "words": [ + { + "word": " The", + "start": 5230.28, + "end": 5230.5, + "probability": 0.63330078125 + }, + { + "word": " reason", + "start": 5230.5, + "end": 5230.64, + "probability": 1.0 + }, + { + "word": " why", + "start": 5230.64, + "end": 5230.9, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 5230.9, + "end": 5231.08, + "probability": 1.0 + }, + { + "word": " lighter", + "start": 5231.08, + "end": 5231.36, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5231.36, + "end": 5231.56, + "probability": 1.0 + }, + { + "word": " because", + "start": 5231.56, + "end": 5231.8, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5231.8, + "end": 5232.04, + "probability": 0.994140625 + }, + { + "word": " more", + "start": 5232.04, + "end": 5232.12, + "probability": 0.99609375 + }, + { + "word": " web", + "start": 5232.12, + "end": 5232.38, + "probability": 0.99658203125 + }, + { + "word": "-based,", + "start": 5232.38, + "end": 5232.82, + "probability": 0.99951171875 + }, + { + "word": " isn't", + "start": 5232.82, + "end": 5233.08, + "probability": 1.0 + }, + { + "word": " it?", + "start": 5233.08, + "end": 5233.18, + "probability": 1.0 + } + ] + }, + { + "id": 2125, + "text": "Well, sort of.", + "start": 5233.620000000001, + "end": 5234.48, + "words": [ + { + "word": " Well,", + "start": 5233.620000000001, + "end": 5234.02, + "probability": 1.0 + }, + { + "word": " sort", + "start": 5234.02, + "end": 5234.32, + "probability": 0.99951171875 + }, + { + "word": " of.", + "start": 5234.32, + "end": 5234.48, + "probability": 1.0 + } + ] + }, + { + "id": 2126, + "text": "That's sort of a misnomer with all those web-based ones.", + "start": 5234.48, + "end": 5236.66, + "words": [ + { + "word": " That's", + "start": 5234.48, + "end": 5234.6, + "probability": 0.970703125 + }, + { + "word": " sort", + "start": 5234.6, + "end": 5234.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 5234.74, + "end": 5234.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 5234.84, + "end": 5234.92, + "probability": 1.0 + }, + { + "word": " misnomer", + "start": 5234.92, + "end": 5235.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 5235.32, + "end": 5235.58, + "probability": 1.0 + }, + { + "word": " all", + "start": 5235.58, + "end": 5235.72, + "probability": 1.0 + }, + { + "word": " those", + "start": 5235.72, + "end": 5235.9, + "probability": 0.99072265625 + }, + { + "word": " web", + "start": 5235.9, + "end": 5236.22, + "probability": 1.0 + }, + { + "word": "-based", + "start": 5236.22, + "end": 5236.52, + "probability": 1.0 + }, + { + "word": " ones.", + "start": 5236.52, + "end": 5236.66, + "probability": 1.0 + } + ] + }, + { + "id": 2127, + "text": "They, they, it does.", + "start": 5236.78, + "end": 5239.28, + "words": [ + { + "word": " They,", + "start": 5236.78, + "end": 5236.96, + "probability": 0.57763671875 + }, + { + "word": " they,", + "start": 5237.0, + "end": 5237.48, + "probability": 0.2198486328125 + }, + { + "word": " it", + "start": 5237.54, + "end": 5238.72, + "probability": 0.99951171875 + }, + { + "word": " does.", + "start": 5238.72, + "end": 5239.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2128, + "text": "It does less as far as, like, Kaspersky is concerned, or compared to Kaspersky.", + "start": 5239.28, + "end": 5243.9, + "words": [ + { + "word": " It", + "start": 5239.28, + "end": 5239.36, + "probability": 0.476318359375 + }, + { + "word": " does", + "start": 5239.36, + "end": 5239.36, + "probability": 0.97705078125 + }, + { + "word": " less", + "start": 5239.36, + "end": 5239.88, + "probability": 0.9912109375 + }, + { + "word": " as", + "start": 5239.88, + "end": 5240.26, + "probability": 0.8095703125 + }, + { + "word": " far", + "start": 5240.26, + "end": 5240.54, + "probability": 0.99951171875 + }, + { + "word": " as,", + "start": 5240.54, + "end": 5240.88, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 5240.88, + "end": 5241.08, + "probability": 0.99951171875 + }, + { + "word": " Kaspersky", + "start": 5241.1, + "end": 5241.58, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 5241.58, + "end": 5241.74, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 5241.74, + "end": 5242.08, + "probability": 1.0 + }, + { + "word": " or", + "start": 5242.26, + "end": 5242.68, + "probability": 0.994140625 + }, + { + "word": " compared", + "start": 5242.68, + "end": 5243.16, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5243.16, + "end": 5243.34, + "probability": 1.0 + }, + { + "word": " Kaspersky.", + "start": 5243.34, + "end": 5243.9, + "probability": 1.0 + } + ] + }, + { + "id": 2129, + "text": "So.", + "start": 5244.6, + "end": 5244.84, + "words": [ + { + "word": " So.", + "start": 5244.6, + "end": 5244.84, + "probability": 0.194091796875 + } + ] + }, + { + "id": 2130, + "text": "It does less, you mean, on your machine as far as.", + "start": 5245.780000000001, + "end": 5248.3, + "words": [ + { + "word": " It", + "start": 5245.780000000001, + "end": 5246.22, + "probability": 0.97265625 + }, + { + "word": " does", + "start": 5246.22, + "end": 5246.38, + "probability": 0.998046875 + }, + { + "word": " less,", + "start": 5246.38, + "end": 5246.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5246.78, + "end": 5246.92, + "probability": 0.6630859375 + }, + { + "word": " mean,", + "start": 5246.92, + "end": 5247.02, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5247.1, + "end": 5247.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 5247.22, + "end": 5247.32, + "probability": 1.0 + }, + { + "word": " machine", + "start": 5247.32, + "end": 5247.6, + "probability": 1.0 + }, + { + "word": " as", + "start": 5247.6, + "end": 5247.9, + "probability": 0.98583984375 + }, + { + "word": " far", + "start": 5247.9, + "end": 5248.1, + "probability": 1.0 + }, + { + "word": " as.", + "start": 5248.1, + "end": 5248.3, + "probability": 1.0 + } + ] + }, + { + "id": 2131, + "text": "Yeah, I mean, it's monitoring less things.", + "start": 5248.36, + "end": 5250.06, + "words": [ + { + "word": " Yeah,", + "start": 5248.36, + "end": 5248.52, + "probability": 0.84326171875 + }, + { + "word": " I", + "start": 5248.64, + "end": 5248.64, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 5248.64, + "end": 5248.82, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5248.82, + "end": 5248.98, + "probability": 1.0 + }, + { + "word": " monitoring", + "start": 5248.98, + "end": 5249.36, + "probability": 1.0 + }, + { + "word": " less", + "start": 5249.36, + "end": 5249.68, + "probability": 1.0 + }, + { + "word": " things.", + "start": 5249.68, + "end": 5250.06, + "probability": 1.0 + } + ] + }, + { + "id": 2132, + "text": "It's, it's checking less things, and it uses a smaller database than Kaspersky", + "start": 5250.16, + "end": 5254.22, + "words": [ + { + "word": " It's,", + "start": 5250.16, + "end": 5250.48, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5250.5, + "end": 5250.78, + "probability": 1.0 + }, + { + "word": " checking", + "start": 5250.78, + "end": 5251.18, + "probability": 0.998046875 + }, + { + "word": " less", + "start": 5251.18, + "end": 5251.5, + "probability": 1.0 + }, + { + "word": " things,", + "start": 5251.5, + "end": 5251.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 5251.96, + "end": 5252.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 5252.08, + "end": 5252.14, + "probability": 1.0 + }, + { + "word": " uses", + "start": 5252.14, + "end": 5252.34, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5252.34, + "end": 5252.54, + "probability": 1.0 + }, + { + "word": " smaller", + "start": 5252.54, + "end": 5252.74, + "probability": 1.0 + }, + { + "word": " database", + "start": 5252.74, + "end": 5253.18, + "probability": 1.0 + }, + { + "word": " than", + "start": 5253.18, + "end": 5253.56, + "probability": 0.99951171875 + }, + { + "word": " Kaspersky", + "start": 5253.56, + "end": 5254.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2133, + "text": "because of that online feature.", + "start": 5254.22, + "end": 5255.58, + "words": [ + { + "word": " because", + "start": 5254.22, + "end": 5254.52, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 5254.52, + "end": 5254.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 5254.72, + "end": 5254.84, + "probability": 0.97705078125 + }, + { + "word": " online", + "start": 5254.84, + "end": 5255.08, + "probability": 0.970703125 + }, + { + "word": " feature.", + "start": 5255.08, + "end": 5255.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2134, + "text": "That's not necessarily bad.", + "start": 5256.02, + "end": 5257.1, + "words": [ + { + "word": " That's", + "start": 5256.02, + "end": 5256.46, + "probability": 0.8291015625 + }, + { + "word": " not", + "start": 5256.46, + "end": 5256.58, + "probability": 0.99951171875 + }, + { + "word": " necessarily", + "start": 5256.58, + "end": 5256.86, + "probability": 0.9970703125 + }, + { + "word": " bad.", + "start": 5256.86, + "end": 5257.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2135, + "text": "I think that, I think that if you're going to do something, you should do it well, right?", + "start": 5257.24, + "end": 5260.46, + "words": [ + { + "word": " I", + "start": 5257.24, + "end": 5257.36, + "probability": 0.99609375 + }, + { + "word": " think", + "start": 5257.36, + "end": 5257.58, + "probability": 1.0 + }, + { + "word": " that,", + "start": 5257.58, + "end": 5257.7, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 5257.7, + "end": 5257.96, + "probability": 1.0 + }, + { + "word": " think", + "start": 5257.96, + "end": 5258.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 5258.2, + "end": 5258.3, + "probability": 1.0 + }, + { + "word": " if", + "start": 5258.3, + "end": 5258.44, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 5258.44, + "end": 5258.56, + "probability": 1.0 + }, + { + "word": " going", + "start": 5258.56, + "end": 5258.64, + "probability": 0.99169921875 + }, + { + "word": " to", + "start": 5258.64, + "end": 5258.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 5258.74, + "end": 5259.06, + "probability": 1.0 + }, + { + "word": " something,", + "start": 5259.06, + "end": 5259.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 5259.54, + "end": 5259.66, + "probability": 1.0 + }, + { + "word": " should", + "start": 5259.66, + "end": 5259.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 5259.76, + "end": 5259.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 5259.88, + "end": 5260.0, + "probability": 1.0 + }, + { + "word": " well,", + "start": 5260.0, + "end": 5260.22, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 5260.28, + "end": 5260.46, + "probability": 1.0 + } + ] + }, + { + "id": 2136, + "text": "Right.", + "start": 5260.9800000000005, + "end": 5261.42, + "words": [ + { + "word": " Right.", + "start": 5260.9800000000005, + "end": 5261.42, + "probability": 0.67626953125 + } + ] + }, + { + "id": 2137, + "text": "And what I like about the antivirus-only antiviruses is that they do one thing,", + "start": 5261.42, + "end": 5267.72, + "words": [ + { + "word": " And", + "start": 5261.42, + "end": 5261.8, + "probability": 0.9765625 + }, + { + "word": " what", + "start": 5261.8, + "end": 5262.46, + "probability": 0.85791015625 + }, + { + "word": " I", + "start": 5262.46, + "end": 5262.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 5262.64, + "end": 5262.94, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 5262.94, + "end": 5263.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 5263.16, + "end": 5263.38, + "probability": 0.99951171875 + }, + { + "word": " antivirus", + "start": 5263.38, + "end": 5263.92, + "probability": 0.9951171875 + }, + { + "word": "-only", + "start": 5263.92, + "end": 5264.18, + "probability": 0.875 + }, + { + "word": " antiviruses", + "start": 5264.18, + "end": 5265.06, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 5265.06, + "end": 5265.48, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 5265.48, + "end": 5265.78, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 5265.78, + "end": 5266.52, + "probability": 0.99560546875 + }, + { + "word": " do", + "start": 5266.52, + "end": 5266.82, + "probability": 0.99462890625 + }, + { + "word": " one", + "start": 5266.82, + "end": 5267.2, + "probability": 0.99755859375 + }, + { + "word": " thing,", + "start": 5267.2, + "end": 5267.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2138, + "text": "and they hopefully should.", + "start": 5267.84, + "end": 5269.26, + "words": [ + { + "word": " and", + "start": 5267.84, + "end": 5268.3, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 5268.3, + "end": 5268.54, + "probability": 0.9990234375 + }, + { + "word": " hopefully", + "start": 5268.54, + "end": 5269.0, + "probability": 0.8134765625 + }, + { + "word": " should.", + "start": 5269.0, + "end": 5269.26, + "probability": 0.36474609375 + } + ] + }, + { + "id": 2139, + "text": "They strive to do that well.", + "start": 5269.26, + "end": 5270.16, + "words": [ + { + "word": " They", + "start": 5269.26, + "end": 5269.34, + "probability": 0.0309600830078125 + }, + { + "word": " strive", + "start": 5269.34, + "end": 5269.34, + "probability": 0.92626953125 + }, + { + "word": " to", + "start": 5269.34, + "end": 5269.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 5269.54, + "end": 5269.68, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5269.68, + "end": 5269.84, + "probability": 0.99951171875 + }, + { + "word": " well.", + "start": 5269.84, + "end": 5270.16, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2140, + "text": "Whereas Kaspersky and Norton and McAfee and these other larger suites,", + "start": 5271.800000000001, + "end": 5276.22, + "words": [ + { + "word": " Whereas", + "start": 5271.800000000001, + "end": 5272.200000000001, + "probability": 0.98486328125 + }, + { + "word": " Kaspersky", + "start": 5272.200000000001, + "end": 5272.6, + "probability": 0.97021484375 + }, + { + "word": " and", + "start": 5272.6, + "end": 5272.9, + "probability": 0.9375 + }, + { + "word": " Norton", + "start": 5272.9, + "end": 5273.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 5273.32, + "end": 5273.68, + "probability": 0.9990234375 + }, + { + "word": " McAfee", + "start": 5273.68, + "end": 5274.32, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 5274.32, + "end": 5274.5, + "probability": 0.99609375 + }, + { + "word": " these", + "start": 5274.5, + "end": 5274.64, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 5274.64, + "end": 5274.86, + "probability": 0.99951171875 + }, + { + "word": " larger", + "start": 5274.86, + "end": 5275.46, + "probability": 0.9990234375 + }, + { + "word": " suites,", + "start": 5275.46, + "end": 5276.22, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2141, + "text": "even Avast to a certain extent these days, they want to do all these things.", + "start": 5276.24, + "end": 5280.54, + "words": [ + { + "word": " even", + "start": 5276.24, + "end": 5276.44, + "probability": 0.98974609375 + }, + { + "word": " Avast", + "start": 5276.44, + "end": 5276.86, + "probability": 0.8525390625 + }, + { + "word": " to", + "start": 5276.86, + "end": 5277.06, + "probability": 0.79736328125 + }, + { + "word": " a", + "start": 5277.06, + "end": 5277.74, + "probability": 0.99951171875 + }, + { + "word": " certain", + "start": 5277.74, + "end": 5278.18, + "probability": 1.0 + }, + { + "word": " extent", + "start": 5278.18, + "end": 5278.38, + "probability": 1.0 + }, + { + "word": " these", + "start": 5278.38, + "end": 5278.6, + "probability": 0.99853515625 + }, + { + "word": " days,", + "start": 5278.6, + "end": 5278.86, + "probability": 1.0 + }, + { + "word": " they", + "start": 5279.0, + "end": 5279.3, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 5279.3, + "end": 5279.46, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5279.46, + "end": 5279.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 5279.56, + "end": 5279.68, + "probability": 1.0 + }, + { + "word": " all", + "start": 5279.68, + "end": 5279.94, + "probability": 1.0 + }, + { + "word": " these", + "start": 5279.94, + "end": 5280.2, + "probability": 0.9990234375 + }, + { + "word": " things.", + "start": 5280.2, + "end": 5280.54, + "probability": 1.0 + } + ] + }, + { + "id": 2142, + "text": "They want to check your spam and your email, and they want to,", + "start": 5280.62, + "end": 5284.28, + "words": [ + { + "word": " They", + "start": 5280.62, + "end": 5280.78, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 5280.78, + "end": 5280.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 5280.9, + "end": 5281.02, + "probability": 1.0 + }, + { + "word": " check", + "start": 5281.02, + "end": 5281.26, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 5281.26, + "end": 5281.58, + "probability": 1.0 + }, + { + "word": " spam", + "start": 5281.58, + "end": 5282.66, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 5282.66, + "end": 5282.96, + "probability": 0.998046875 + }, + { + "word": " your", + "start": 5282.96, + "end": 5283.06, + "probability": 1.0 + }, + { + "word": " email,", + "start": 5283.06, + "end": 5283.5, + "probability": 0.826171875 + }, + { + "word": " and", + "start": 5283.68, + "end": 5283.82, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 5283.82, + "end": 5283.88, + "probability": 1.0 + }, + { + "word": " want", + "start": 5283.88, + "end": 5284.08, + "probability": 1.0 + }, + { + "word": " to,", + "start": 5284.08, + "end": 5284.28, + "probability": 1.0 + } + ] + }, + { + "id": 2143, + "text": "they want to look for your privacy information.", + "start": 5284.28, + "end": 5286.64, + "words": [ + { + "word": " they", + "start": 5284.28, + "end": 5284.76, + "probability": 0.98681640625 + }, + { + "word": " want", + "start": 5284.76, + "end": 5284.98, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5284.98, + "end": 5285.1, + "probability": 1.0 + }, + { + "word": " look", + "start": 5285.1, + "end": 5285.24, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 5285.24, + "end": 5285.44, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5285.44, + "end": 5285.66, + "probability": 0.99951171875 + }, + { + "word": " privacy", + "start": 5285.66, + "end": 5286.18, + "probability": 1.0 + }, + { + "word": " information.", + "start": 5286.18, + "end": 5286.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2144, + "text": "Too many features.", + "start": 5287.1, + "end": 5288.06, + "words": [ + { + "word": " Too", + "start": 5287.1, + "end": 5287.34, + "probability": 0.978515625 + }, + { + "word": " many", + "start": 5287.34, + "end": 5287.56, + "probability": 1.0 + }, + { + "word": " features.", + "start": 5287.56, + "end": 5288.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2145, + "text": "Right, and all these features have a cost.", + "start": 5288.26, + "end": 5290.16, + "words": [ + { + "word": " Right,", + "start": 5288.26, + "end": 5288.44, + "probability": 0.9296875 + }, + { + "word": " and", + "start": 5288.5, + "end": 5288.58, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 5288.58, + "end": 5288.82, + "probability": 1.0 + }, + { + "word": " these", + "start": 5288.82, + "end": 5288.98, + "probability": 0.998046875 + }, + { + "word": " features", + "start": 5288.98, + "end": 5289.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 5289.32, + "end": 5289.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5289.56, + "end": 5289.68, + "probability": 1.0 + }, + { + "word": " cost.", + "start": 5289.68, + "end": 5290.16, + "probability": 1.0 + } + ] + }, + { + "id": 2146, + "text": "Jack of all trades, but master of none.", + "start": 5290.34, + "end": 5291.94, + "words": [ + { + "word": " Jack", + "start": 5290.34, + "end": 5290.56, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 5290.56, + "end": 5290.72, + "probability": 0.99072265625 + }, + { + "word": " all", + "start": 5290.72, + "end": 5290.82, + "probability": 1.0 + }, + { + "word": " trades,", + "start": 5290.82, + "end": 5291.12, + "probability": 1.0 + }, + { + "word": " but", + "start": 5291.18, + "end": 5291.32, + "probability": 0.99951171875 + }, + { + "word": " master", + "start": 5291.32, + "end": 5291.6, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5291.6, + "end": 5291.78, + "probability": 1.0 + }, + { + "word": " none.", + "start": 5291.78, + "end": 5291.94, + "probability": 1.0 + } + ] + }, + { + "id": 2147, + "text": "Right, so I just, I just want a good antivirus.", + "start": 5292.24, + "end": 5294.18, + "words": [ + { + "word": " Right,", + "start": 5292.24, + "end": 5292.42, + "probability": 0.8525390625 + }, + { + "word": " so", + "start": 5292.48, + "end": 5292.6, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 5292.6, + "end": 5292.82, + "probability": 0.998046875 + }, + { + "word": " just,", + "start": 5292.82, + "end": 5293.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 5293.04, + "end": 5293.26, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 5293.26, + "end": 5293.38, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 5293.38, + "end": 5293.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 5293.46, + "end": 5293.56, + "probability": 0.9990234375 + }, + { + "word": " good", + "start": 5293.56, + "end": 5293.72, + "probability": 1.0 + }, + { + "word": " antivirus.", + "start": 5293.72, + "end": 5294.18, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2148, + "text": "That's it.", + "start": 5294.22, + "end": 5294.5, + "words": [ + { + "word": " That's", + "start": 5294.22, + "end": 5294.42, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 5294.42, + "end": 5294.5, + "probability": 1.0 + } + ] + }, + { + "id": 2149, + "text": "So, so you're saying Penn is more specialized on that one purpose?", + "start": 5294.64, + "end": 5297.62, + "words": [ + { + "word": " So,", + "start": 5294.64, + "end": 5294.96, + "probability": 0.99658203125 + }, + { + "word": " so", + "start": 5294.96, + "end": 5295.24, + "probability": 0.82568359375 + }, + { + "word": " you're", + "start": 5295.24, + "end": 5295.4, + "probability": 0.998046875 + }, + { + "word": " saying", + "start": 5295.4, + "end": 5295.54, + "probability": 0.99951171875 + }, + { + "word": " Penn", + "start": 5295.54, + "end": 5295.76, + "probability": 0.67724609375 + }, + { + "word": " is", + "start": 5295.76, + "end": 5295.94, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 5295.94, + "end": 5296.08, + "probability": 0.99951171875 + }, + { + "word": " specialized", + "start": 5296.08, + "end": 5296.54, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 5296.54, + "end": 5296.96, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5296.96, + "end": 5297.08, + "probability": 1.0 + }, + { + "word": " one", + "start": 5297.08, + "end": 5297.24, + "probability": 1.0 + }, + { + "word": " purpose?", + "start": 5297.24, + "end": 5297.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2150, + "text": "Well, I hope so.", + "start": 5297.82, + "end": 5298.84, + "words": [ + { + "word": " Well,", + "start": 5297.82, + "end": 5297.94, + "probability": 0.322265625 + }, + { + "word": " I", + "start": 5297.94, + "end": 5298.04, + "probability": 0.998046875 + }, + { + "word": " hope", + "start": 5298.04, + "end": 5298.64, + "probability": 0.8798828125 + }, + { + "word": " so.", + "start": 5298.64, + "end": 5298.84, + "probability": 1.0 + } + ] + }, + { + "id": 2151, + "text": "Otherwise.", + "start": 5298.88, + "end": 5299.06, + "words": [ + { + "word": " Otherwise.", + "start": 5298.88, + "end": 5299.06, + "probability": 0.99267578125 + } + ] + }, + { + "id": 2152, + "text": "Because it has no purpose on the machine at all, because they purport to only be an antivirus.", + "start": 5299.26, + "end": 5303.18, + "words": [ + { + "word": " Because", + "start": 5299.26, + "end": 5299.32, + "probability": 0.0112762451171875 + }, + { + "word": " it", + "start": 5299.32, + "end": 5299.32, + "probability": 0.99853515625 + }, + { + "word": " has", + "start": 5299.32, + "end": 5299.58, + "probability": 1.0 + }, + { + "word": " no", + "start": 5299.58, + "end": 5299.84, + "probability": 1.0 + }, + { + "word": " purpose", + "start": 5299.84, + "end": 5300.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 5300.14, + "end": 5300.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 5300.3, + "end": 5300.4, + "probability": 1.0 + }, + { + "word": " machine", + "start": 5300.4, + "end": 5300.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 5300.58, + "end": 5300.72, + "probability": 1.0 + }, + { + "word": " all,", + "start": 5300.72, + "end": 5300.88, + "probability": 1.0 + }, + { + "word": " because", + "start": 5300.92, + "end": 5301.12, + "probability": 1.0 + }, + { + "word": " they", + "start": 5301.12, + "end": 5301.38, + "probability": 1.0 + }, + { + "word": " purport", + "start": 5301.38, + "end": 5301.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 5301.84, + "end": 5302.0, + "probability": 1.0 + }, + { + "word": " only", + "start": 5302.0, + "end": 5302.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 5302.28, + "end": 5302.54, + "probability": 1.0 + }, + { + "word": " an", + "start": 5302.54, + "end": 5302.68, + "probability": 0.99951171875 + }, + { + "word": " antivirus.", + "start": 5302.68, + "end": 5303.18, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2153, + "text": "Now, they do offer a firewall add-on in their paid version, but who needs that?", + "start": 5303.54, + "end": 5307.18, + "words": [ + { + "word": " Now,", + "start": 5303.54, + "end": 5303.9, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 5303.92, + "end": 5304.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 5304.0, + "end": 5304.1, + "probability": 1.0 + }, + { + "word": " offer", + "start": 5304.1, + "end": 5304.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 5304.36, + "end": 5304.54, + "probability": 1.0 + }, + { + "word": " firewall", + "start": 5304.54, + "end": 5304.82, + "probability": 0.98388671875 + }, + { + "word": " add", + "start": 5304.82, + "end": 5305.16, + "probability": 1.0 + }, + { + "word": "-on", + "start": 5305.16, + "end": 5305.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 5305.4, + "end": 5305.5, + "probability": 0.994140625 + }, + { + "word": " their", + "start": 5305.5, + "end": 5305.6, + "probability": 1.0 + }, + { + "word": " paid", + "start": 5305.6, + "end": 5305.8, + "probability": 1.0 + }, + { + "word": " version,", + "start": 5305.8, + "end": 5306.1, + "probability": 1.0 + }, + { + "word": " but", + "start": 5306.24, + "end": 5306.4, + "probability": 1.0 + }, + { + "word": " who", + "start": 5306.4, + "end": 5306.78, + "probability": 1.0 + }, + { + "word": " needs", + "start": 5306.78, + "end": 5307.0, + "probability": 1.0 + }, + { + "word": " that?", + "start": 5307.0, + "end": 5307.18, + "probability": 1.0 + } + ] + }, + { + "id": 2154, + "text": "Right.", + "start": 5308.02, + "end": 5308.38, + "words": [ + { + "word": " Right.", + "start": 5308.02, + "end": 5308.38, + "probability": 0.98486328125 + } + ] + }, + { + "id": 2155, + "text": "Okay.", + "start": 5308.7, + "end": 5309.06, + "words": [ + { + "word": " Okay.", + "start": 5308.7, + "end": 5309.06, + "probability": 0.955078125 + } + ] + }, + { + "id": 2156, + "text": "Yeah, because Windows has its own, its own firewall, right?", + "start": 5309.24, + "end": 5311.42, + "words": [ + { + "word": " Yeah,", + "start": 5309.24, + "end": 5309.6, + "probability": 0.98828125 + }, + { + "word": " because", + "start": 5309.62, + "end": 5309.7, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 5309.7, + "end": 5309.94, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 5309.94, + "end": 5310.12, + "probability": 0.978515625 + }, + { + "word": " its", + "start": 5310.12, + "end": 5310.38, + "probability": 0.99267578125 + }, + { + "word": " own,", + "start": 5310.38, + "end": 5310.48, + "probability": 0.9990234375 + }, + { + "word": " its", + "start": 5310.48, + "end": 5311.06, + "probability": 0.7333984375 + }, + { + "word": " own", + "start": 5311.06, + "end": 5311.18, + "probability": 0.9931640625 + }, + { + "word": " firewall,", + "start": 5311.18, + "end": 5311.42, + "probability": 0.93505859375 + }, + { + "word": " right?", + "start": 5311.42, + "end": 5311.42, + "probability": 0.994140625 + } + ] + }, + { + "id": 2157, + "text": "Windows does have a firewall, and it is very configurable,", + "start": 5312.0, + "end": 5314.54, + "words": [ + { + "word": " Windows", + "start": 5312.0, + "end": 5312.36, + "probability": 0.9892578125 + }, + { + "word": " does", + "start": 5312.36, + "end": 5312.52, + "probability": 0.80712890625 + }, + { + "word": " have", + "start": 5312.52, + "end": 5312.7, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 5312.7, + "end": 5312.84, + "probability": 1.0 + }, + { + "word": " firewall,", + "start": 5312.84, + "end": 5313.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 5313.32, + "end": 5313.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 5313.52, + "end": 5313.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 5313.62, + "end": 5313.72, + "probability": 1.0 + }, + { + "word": " very", + "start": 5313.72, + "end": 5313.9, + "probability": 1.0 + }, + { + "word": " configurable,", + "start": 5313.9, + "end": 5314.54, + "probability": 1.0 + } + ] + }, + { + "id": 2158, + "text": "especially if you go into the advanced version.", + "start": 5315.12, + "end": 5316.68, + "words": [ + { + "word": " especially", + "start": 5315.12, + "end": 5315.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 5315.48, + "end": 5315.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 5315.68, + "end": 5315.74, + "probability": 1.0 + }, + { + "word": " go", + "start": 5315.74, + "end": 5315.84, + "probability": 0.92724609375 + }, + { + "word": " into", + "start": 5315.84, + "end": 5315.94, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5315.94, + "end": 5316.04, + "probability": 1.0 + }, + { + "word": " advanced", + "start": 5316.04, + "end": 5316.28, + "probability": 0.998046875 + }, + { + "word": " version.", + "start": 5316.28, + "end": 5316.68, + "probability": 1.0 + } + ] + }, + { + "id": 2159, + "text": "So, yeah, you've got lots of options.", + "start": 5316.76, + "end": 5318.34, + "words": [ + { + "word": " So,", + "start": 5316.76, + "end": 5317.02, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 5317.08, + "end": 5317.36, + "probability": 1.0 + }, + { + "word": " you've", + "start": 5317.44, + "end": 5317.66, + "probability": 1.0 + }, + { + "word": " got", + "start": 5317.66, + "end": 5317.78, + "probability": 1.0 + }, + { + "word": " lots", + "start": 5317.78, + "end": 5317.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 5317.96, + "end": 5318.06, + "probability": 1.0 + }, + { + "word": " options.", + "start": 5318.06, + "end": 5318.34, + "probability": 1.0 + } + ] + }, + { + "id": 2160, + "text": "But.", + "start": 5318.54, + "end": 5318.9, + "words": [ + { + "word": " But.", + "start": 5318.54, + "end": 5318.9, + "probability": 0.7705078125 + } + ] + }, + { + "id": 2161, + "text": "Okay.", + "start": 5319.02, + "end": 5319.38, + "words": [ + { + "word": " Okay.", + "start": 5319.02, + "end": 5319.38, + "probability": 0.982421875 + } + ] + }, + { + "id": 2162, + "text": "I appreciate the call, Ron.", + "start": 5319.44, + "end": 5320.54, + "words": [ + { + "word": " I", + "start": 5319.44, + "end": 5319.7, + "probability": 0.99755859375 + }, + { + "word": " appreciate", + "start": 5319.7, + "end": 5319.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 5319.98, + "end": 5320.14, + "probability": 1.0 + }, + { + "word": " call,", + "start": 5320.14, + "end": 5320.28, + "probability": 1.0 + }, + { + "word": " Ron.", + "start": 5320.34, + "end": 5320.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2163, + "text": "Cool, thanks.", + "start": 5320.82, + "end": 5321.44, + "words": [ + { + "word": " Cool,", + "start": 5320.82, + "end": 5321.18, + "probability": 0.99951171875 + }, + { + "word": " thanks.", + "start": 5321.26, + "end": 5321.44, + "probability": 1.0 + } + ] + }, + { + "id": 2164, + "text": "It turns out that we ran out of time in our second hour.", + "start": 5321.66, + "end": 5323.6, + "words": [ + { + "word": " It", + "start": 5321.66, + "end": 5321.78, + "probability": 0.99365234375 + }, + { + "word": " turns", + "start": 5321.78, + "end": 5321.98, + "probability": 1.0 + }, + { + "word": " out", + "start": 5321.98, + "end": 5322.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 5322.16, + "end": 5322.3, + "probability": 1.0 + }, + { + "word": " we", + "start": 5322.3, + "end": 5322.42, + "probability": 1.0 + }, + { + "word": " ran", + "start": 5322.42, + "end": 5322.54, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 5322.54, + "end": 5322.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 5322.72, + "end": 5322.76, + "probability": 1.0 + }, + { + "word": " time", + "start": 5322.76, + "end": 5322.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 5322.98, + "end": 5323.08, + "probability": 0.998046875 + }, + { + "word": " our", + "start": 5323.08, + "end": 5323.18, + "probability": 1.0 + }, + { + "word": " second", + "start": 5323.18, + "end": 5323.36, + "probability": 1.0 + }, + { + "word": " hour.", + "start": 5323.36, + "end": 5323.6, + "probability": 1.0 + } + ] + }, + { + "id": 2165, + "text": "What's up with that?", + "start": 5324.4400000000005, + "end": 5325.12, + "words": [ + { + "word": " What's", + "start": 5324.4400000000005, + "end": 5324.8, + "probability": 1.0 + }, + { + "word": " up", + "start": 5324.8, + "end": 5324.84, + "probability": 1.0 + }, + { + "word": " with", + "start": 5324.84, + "end": 5324.96, + "probability": 1.0 + }, + { + "word": " that?", + "start": 5324.96, + "end": 5325.12, + "probability": 1.0 + } + ] + }, + { + "id": 2166, + "text": "What's up with that?", + "start": 5325.32, + "end": 5326.14, + "words": [ + { + "word": " What's", + "start": 5325.32, + "end": 5325.66, + "probability": 1.0 + }, + { + "word": " up", + "start": 5325.66, + "end": 5325.76, + "probability": 1.0 + }, + { + "word": " with", + "start": 5325.76, + "end": 5325.9, + "probability": 1.0 + }, + { + "word": " that?", + "start": 5325.9, + "end": 5326.14, + "probability": 1.0 + } + ] + }, + { + "id": 2167, + "text": "We're out of time.", + "start": 5326.16, + "end": 5326.78, + "words": [ + { + "word": " We're", + "start": 5326.16, + "end": 5326.34, + "probability": 0.8359375 + }, + { + "word": " out", + "start": 5326.34, + "end": 5326.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 5326.42, + "end": 5326.58, + "probability": 1.0 + }, + { + "word": " time.", + "start": 5326.58, + "end": 5326.78, + "probability": 1.0 + } + ] + }, + { + "id": 2168, + "text": "Out of time.", + "start": 5326.86, + "end": 5327.46, + "words": [ + { + "word": " Out", + "start": 5326.86, + "end": 5327.16, + "probability": 0.98828125 + }, + { + "word": " of", + "start": 5327.16, + "end": 5327.28, + "probability": 1.0 + }, + { + "word": " time.", + "start": 5327.28, + "end": 5327.46, + "probability": 1.0 + } + ] + }, + { + "id": 2169, + "text": "All right.", + "start": 5328.4400000000005, + "end": 5329.0, + "words": [ + { + "word": " All", + "start": 5328.4400000000005, + "end": 5328.8, + "probability": 0.9248046875 + }, + { + "word": " right.", + "start": 5328.8, + "end": 5329.0, + "probability": 1.0 + } + ] + }, + { + "id": 2170, + "text": "So, let's mention our sponsor that we didn't mention last time, which is Desert Pro Commercial Cleaners.", + "start": 5329.26, + "end": 5335.12, + "words": [ + { + "word": " So,", + "start": 5329.26, + "end": 5329.6, + "probability": 0.96533203125 + }, + { + "word": " let's", + "start": 5329.62, + "end": 5329.98, + "probability": 1.0 + }, + { + "word": " mention", + "start": 5329.98, + "end": 5330.14, + "probability": 1.0 + }, + { + "word": " our", + "start": 5330.14, + "end": 5330.3, + "probability": 0.95703125 + }, + { + "word": " sponsor", + "start": 5330.3, + "end": 5330.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 5330.5, + "end": 5330.66, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 5330.66, + "end": 5330.78, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 5330.78, + "end": 5330.92, + "probability": 1.0 + }, + { + "word": " mention", + "start": 5330.92, + "end": 5331.12, + "probability": 1.0 + }, + { + "word": " last", + "start": 5331.12, + "end": 5331.38, + "probability": 1.0 + }, + { + "word": " time,", + "start": 5331.38, + "end": 5331.74, + "probability": 1.0 + }, + { + "word": " which", + "start": 5331.86, + "end": 5332.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5332.32, + "end": 5332.74, + "probability": 1.0 + }, + { + "word": " Desert", + "start": 5332.74, + "end": 5333.2, + "probability": 0.99951171875 + }, + { + "word": " Pro", + "start": 5333.2, + "end": 5333.36, + "probability": 0.984375 + }, + { + "word": " Commercial", + "start": 5333.36, + "end": 5334.52, + "probability": 0.9404296875 + }, + { + "word": " Cleaners.", + "start": 5334.52, + "end": 5335.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 2171, + "text": "They are a Patreon sponsor, and you can be too.", + "start": 5335.16, + "end": 5337.7, + "words": [ + { + "word": " They", + "start": 5335.16, + "end": 5335.26, + "probability": 0.99658203125 + }, + { + "word": " are", + "start": 5335.26, + "end": 5335.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 5335.44, + "end": 5335.6, + "probability": 0.99462890625 + }, + { + "word": " Patreon", + "start": 5335.6, + "end": 5335.94, + "probability": 1.0 + }, + { + "word": " sponsor,", + "start": 5335.94, + "end": 5336.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 5336.5, + "end": 5336.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 5336.68, + "end": 5336.9, + "probability": 1.0 + }, + { + "word": " can", + "start": 5336.9, + "end": 5337.14, + "probability": 1.0 + }, + { + "word": " be", + "start": 5337.14, + "end": 5337.42, + "probability": 0.99951171875 + }, + { + "word": " too.", + "start": 5337.42, + "end": 5337.7, + "probability": 0.341552734375 + } + ] + }, + { + "id": 2172, + "text": "You can even make Tara say whatever you want.", + "start": 5338.160000000001, + "end": 5340.12, + "words": [ + { + "word": " You", + "start": 5338.160000000001, + "end": 5338.56, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 5338.56, + "end": 5338.68, + "probability": 1.0 + }, + { + "word": " even", + "start": 5338.68, + "end": 5338.84, + "probability": 1.0 + }, + { + "word": " make", + "start": 5338.84, + "end": 5339.1, + "probability": 1.0 + }, + { + "word": " Tara", + "start": 5339.1, + "end": 5339.3, + "probability": 0.99658203125 + }, + { + "word": " say", + "start": 5339.3, + "end": 5339.52, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 5339.52, + "end": 5339.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 5339.76, + "end": 5339.98, + "probability": 1.0 + }, + { + "word": " want.", + "start": 5339.98, + "end": 5340.12, + "probability": 1.0 + } + ] + }, + { + "id": 2173, + "text": "Right.", + "start": 5340.14, + "end": 5340.32, + "words": [ + { + "word": " Right.", + "start": 5340.14, + "end": 5340.32, + "probability": 0.912109375 + } + ] + }, + { + "id": 2174, + "text": "Or me.", + "start": 5340.42, + "end": 5341.08, + "words": [ + { + "word": " Or", + "start": 5340.42, + "end": 5340.82, + "probability": 0.9990234375 + }, + { + "word": " me.", + "start": 5340.82, + "end": 5341.08, + "probability": 1.0 + } + ] + }, + { + "id": 2175, + "text": "The rule is, is that if you donated a certain amount, Tara has to say whatever it is that you want her to say,", + "start": 5341.18, + "end": 5349.08, + "words": [ + { + "word": " The", + "start": 5341.18, + "end": 5341.48, + "probability": 0.99658203125 + }, + { + "word": " rule", + "start": 5341.48, + "end": 5343.04, + "probability": 0.99853515625 + }, + { + "word": " is,", + "start": 5343.04, + "end": 5343.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 5343.42, + "end": 5343.56, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 5343.56, + "end": 5343.62, + "probability": 1.0 + }, + { + "word": " if", + "start": 5343.62, + "end": 5343.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 5343.8, + "end": 5344.0, + "probability": 1.0 + }, + { + "word": " donated", + "start": 5344.0, + "end": 5344.62, + "probability": 0.9658203125 + }, + { + "word": " a", + "start": 5344.62, + "end": 5344.84, + "probability": 1.0 + }, + { + "word": " certain", + "start": 5344.84, + "end": 5345.0, + "probability": 1.0 + }, + { + "word": " amount,", + "start": 5345.0, + "end": 5345.26, + "probability": 1.0 + }, + { + "word": " Tara", + "start": 5345.58, + "end": 5346.56, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 5346.56, + "end": 5346.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 5346.78, + "end": 5346.98, + "probability": 1.0 + }, + { + "word": " say", + "start": 5346.98, + "end": 5347.22, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 5347.22, + "end": 5347.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 5347.64, + "end": 5347.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 5347.96, + "end": 5348.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 5348.16, + "end": 5348.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 5348.32, + "end": 5348.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 5348.42, + "end": 5348.62, + "probability": 1.0 + }, + { + "word": " her", + "start": 5348.62, + "end": 5348.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 5348.78, + "end": 5348.9, + "probability": 1.0 + }, + { + "word": " say,", + "start": 5348.9, + "end": 5349.08, + "probability": 1.0 + } + ] + }, + { + "id": 2176, + "text": "providing it's FCC friendly and won't get us in trouble.", + "start": 5349.14, + "end": 5351.68, + "words": [ + { + "word": " providing", + "start": 5349.14, + "end": 5349.52, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 5349.52, + "end": 5349.88, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 5349.88, + "end": 5350.08, + "probability": 0.99951171875 + }, + { + "word": " friendly", + "start": 5350.08, + "end": 5350.46, + "probability": 0.56201171875 + }, + { + "word": " and", + "start": 5350.46, + "end": 5350.88, + "probability": 0.998046875 + }, + { + "word": " won't", + "start": 5350.88, + "end": 5351.2, + "probability": 1.0 + }, + { + "word": " get", + "start": 5351.2, + "end": 5351.28, + "probability": 1.0 + }, + { + "word": " us", + "start": 5351.28, + "end": 5351.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 5351.4, + "end": 5351.46, + "probability": 1.0 + }, + { + "word": " trouble.", + "start": 5351.46, + "end": 5351.68, + "probability": 1.0 + } + ] + }, + { + "id": 2177, + "text": "We're really hoping that somebody is going to just have something hilarious for her to say.", + "start": 5351.82, + "end": 5356.0, + "words": [ + { + "word": " We're", + "start": 5351.82, + "end": 5351.98, + "probability": 1.0 + }, + { + "word": " really", + "start": 5351.98, + "end": 5352.14, + "probability": 1.0 + }, + { + "word": " hoping", + "start": 5352.14, + "end": 5352.86, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 5352.86, + "end": 5353.12, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 5353.12, + "end": 5353.36, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5353.36, + "end": 5353.54, + "probability": 1.0 + }, + { + "word": " going", + "start": 5353.54, + "end": 5353.66, + "probability": 0.9921875 + }, + { + "word": " to", + "start": 5353.66, + "end": 5353.8, + "probability": 1.0 + }, + { + "word": " just", + "start": 5353.8, + "end": 5354.34, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 5354.34, + "end": 5354.62, + "probability": 1.0 + }, + { + "word": " something", + "start": 5354.62, + "end": 5354.86, + "probability": 1.0 + }, + { + "word": " hilarious", + "start": 5354.86, + "end": 5355.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 5355.24, + "end": 5355.6, + "probability": 1.0 + }, + { + "word": " her", + "start": 5355.6, + "end": 5355.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 5355.7, + "end": 5355.82, + "probability": 1.0 + }, + { + "word": " say.", + "start": 5355.82, + "end": 5356.0, + "probability": 1.0 + } + ] + }, + { + "id": 2178, + "text": "I would love that.", + "start": 5356.06, + "end": 5356.94, + "words": [ + { + "word": " I", + "start": 5356.06, + "end": 5356.16, + "probability": 0.998046875 + }, + { + "word": " would", + "start": 5356.16, + "end": 5356.3, + "probability": 1.0 + }, + { + "word": " love", + "start": 5356.3, + "end": 5356.68, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5356.68, + "end": 5356.94, + "probability": 1.0 + } + ] + }, + { + "id": 2179, + "text": "But.", + "start": 5357.9800000000005, + "end": 5358.38, + "words": [ + { + "word": " But.", + "start": 5357.9800000000005, + "end": 5358.38, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2180, + "text": "But take an opportunity to support the show.", + "start": 5358.38, + "end": 5359.96, + "words": [ + { + "word": " But", + "start": 5358.38, + "end": 5358.48, + "probability": 0.7685546875 + }, + { + "word": " take", + "start": 5358.48, + "end": 5358.78, + "probability": 0.98974609375 + }, + { + "word": " an", + "start": 5358.78, + "end": 5358.94, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 5358.94, + "end": 5359.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 5359.22, + "end": 5359.38, + "probability": 0.99951171875 + }, + { + "word": " support", + "start": 5359.38, + "end": 5359.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 5359.62, + "end": 5359.8, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 5359.8, + "end": 5359.96, + "probability": 1.0 + } + ] + }, + { + "id": 2181, + "text": "Now that the show is even longer.", + "start": 5360.04, + "end": 5361.24, + "words": [ + { + "word": " Now", + "start": 5360.04, + "end": 5360.22, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 5360.22, + "end": 5360.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 5360.4, + "end": 5360.48, + "probability": 1.0 + }, + { + "word": " show", + "start": 5360.48, + "end": 5360.66, + "probability": 1.0 + }, + { + "word": " is", + "start": 5360.66, + "end": 5360.76, + "probability": 1.0 + }, + { + "word": " even", + "start": 5360.76, + "end": 5360.92, + "probability": 1.0 + }, + { + "word": " longer.", + "start": 5360.92, + "end": 5361.24, + "probability": 1.0 + } + ] + }, + { + "id": 2182, + "text": "Yep.", + "start": 5361.56, + "end": 5361.94, + "words": [ + { + "word": " Yep.", + "start": 5361.56, + "end": 5361.94, + "probability": 0.85107421875 + } + ] + }, + { + "id": 2183, + "text": "It costs a little bit more, so we're going to need your help to keep it on the air.", + "start": 5362.04, + "end": 5365.94, + "words": [ + { + "word": " It", + "start": 5362.04, + "end": 5362.36, + "probability": 0.9697265625 + }, + { + "word": " costs", + "start": 5362.36, + "end": 5362.64, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 5362.64, + "end": 5362.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 5362.78, + "end": 5362.88, + "probability": 1.0 + }, + { + "word": " bit", + "start": 5362.88, + "end": 5363.0, + "probability": 1.0 + }, + { + "word": " more,", + "start": 5363.0, + "end": 5363.24, + "probability": 1.0 + }, + { + "word": " so", + "start": 5363.36, + "end": 5363.56, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 5363.56, + "end": 5364.1, + "probability": 0.79736328125 + }, + { + "word": " going", + "start": 5364.1, + "end": 5364.22, + "probability": 0.8173828125 + }, + { + "word": " to", + "start": 5364.22, + "end": 5364.22, + "probability": 1.0 + }, + { + "word": " need", + "start": 5364.22, + "end": 5364.36, + "probability": 1.0 + }, + { + "word": " your", + "start": 5364.36, + "end": 5364.64, + "probability": 1.0 + }, + { + "word": " help", + "start": 5364.64, + "end": 5364.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 5364.98, + "end": 5365.12, + "probability": 1.0 + }, + { + "word": " keep", + "start": 5365.12, + "end": 5365.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 5365.34, + "end": 5365.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 5365.5, + "end": 5365.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 5365.6, + "end": 5365.72, + "probability": 0.99951171875 + }, + { + "word": " air.", + "start": 5365.72, + "end": 5365.94, + "probability": 1.0 + } + ] + }, + { + "id": 2184, + "text": "Go to gurushow.com slash Patreon or patreon.com slash gurushow.", + "start": 5366.14, + "end": 5370.48, + "words": [ + { + "word": " Go", + "start": 5366.14, + "end": 5366.52, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 5366.52, + "end": 5366.78, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 5366.78, + "end": 5367.26, + "probability": 0.9228515625 + }, + { + "word": ".com", + "start": 5367.26, + "end": 5367.58, + "probability": 1.0 + }, + { + "word": " slash", + "start": 5367.58, + "end": 5367.74, + "probability": 0.61767578125 + }, + { + "word": " Patreon", + "start": 5367.74, + "end": 5368.04, + "probability": 0.41748046875 + }, + { + "word": " or", + "start": 5368.04, + "end": 5368.3, + "probability": 0.89892578125 + }, + { + "word": " patreon", + "start": 5368.3, + "end": 5368.54, + "probability": 0.81640625 + }, + { + "word": ".com", + "start": 5368.54, + "end": 5369.12, + "probability": 1.0 + }, + { + "word": " slash", + "start": 5369.12, + "end": 5369.76, + "probability": 1.0 + }, + { + "word": " gurushow.", + "start": 5369.76, + "end": 5370.48, + "probability": 0.9755859375 + } + ] + }, + { + "id": 2185, + "text": "Works either way.", + "start": 5370.6, + "end": 5371.28, + "words": [ + { + "word": " Works", + "start": 5370.6, + "end": 5370.88, + "probability": 0.52294921875 + }, + { + "word": " either", + "start": 5370.88, + "end": 5371.08, + "probability": 1.0 + }, + { + "word": " way.", + "start": 5371.08, + "end": 5371.28, + "probability": 1.0 + } + ] + }, + { + "id": 2186, + "text": "I would also like to take a moment to tell you to go subscribe to our YouTube channel,", + "start": 5371.36, + "end": 5374.76, + "words": [ + { + "word": " I", + "start": 5371.36, + "end": 5371.66, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 5371.66, + "end": 5371.84, + "probability": 1.0 + }, + { + "word": " also", + "start": 5371.84, + "end": 5372.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 5372.06, + "end": 5372.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 5372.28, + "end": 5372.42, + "probability": 1.0 + }, + { + "word": " take", + "start": 5372.42, + "end": 5372.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 5372.62, + "end": 5372.74, + "probability": 1.0 + }, + { + "word": " moment", + "start": 5372.74, + "end": 5372.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5372.96, + "end": 5373.16, + "probability": 1.0 + }, + { + "word": " tell", + "start": 5373.16, + "end": 5373.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 5373.46, + "end": 5373.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 5373.58, + "end": 5373.64, + "probability": 1.0 + }, + { + "word": " go", + "start": 5373.64, + "end": 5373.72, + "probability": 1.0 + }, + { + "word": " subscribe", + "start": 5373.72, + "end": 5373.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 5373.96, + "end": 5374.24, + "probability": 1.0 + }, + { + "word": " our", + "start": 5374.24, + "end": 5374.28, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 5374.28, + "end": 5374.46, + "probability": 1.0 + }, + { + "word": " channel,", + "start": 5374.46, + "end": 5374.76, + "probability": 1.0 + } + ] + }, + { + "id": 2187, + "text": "because I'm putting a lot of work into that, and we're going to do all kinds of cool stuff with it.", + "start": 5374.86, + "end": 5378.2, + "words": [ + { + "word": " because", + "start": 5374.86, + "end": 5375.0, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 5375.0, + "end": 5375.2, + "probability": 1.0 + }, + { + "word": " putting", + "start": 5375.2, + "end": 5375.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 5375.32, + "end": 5375.46, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5375.46, + "end": 5375.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 5375.54, + "end": 5375.58, + "probability": 1.0 + }, + { + "word": " work", + "start": 5375.58, + "end": 5375.74, + "probability": 1.0 + }, + { + "word": " into", + "start": 5375.74, + "end": 5375.88, + "probability": 1.0 + }, + { + "word": " that,", + "start": 5375.88, + "end": 5376.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 5376.18, + "end": 5376.66, + "probability": 1.0 + }, + { + "word": " we're", + "start": 5376.66, + "end": 5376.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 5376.94, + "end": 5377.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 5377.0, + "end": 5377.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 5377.04, + "end": 5377.14, + "probability": 1.0 + }, + { + "word": " all", + "start": 5377.14, + "end": 5377.22, + "probability": 0.99951171875 + }, + { + "word": " kinds", + "start": 5377.22, + "end": 5377.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 5377.34, + "end": 5377.48, + "probability": 1.0 + }, + { + "word": " cool", + "start": 5377.48, + "end": 5377.64, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 5377.64, + "end": 5377.88, + "probability": 1.0 + }, + { + "word": " with", + "start": 5377.88, + "end": 5378.08, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5378.08, + "end": 5378.2, + "probability": 1.0 + } + ] + }, + { + "id": 2188, + "text": "But we need to get a certain number of subscribers before we can do some of those things.", + "start": 5378.22, + "end": 5382.54, + "words": [ + { + "word": " But", + "start": 5378.22, + "end": 5378.36, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 5378.36, + "end": 5378.7, + "probability": 0.9990234375 + }, + { + "word": " need", + "start": 5378.7, + "end": 5378.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 5378.94, + "end": 5379.12, + "probability": 1.0 + }, + { + "word": " get", + "start": 5379.12, + "end": 5379.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 5379.32, + "end": 5379.52, + "probability": 1.0 + }, + { + "word": " certain", + "start": 5379.52, + "end": 5380.0, + "probability": 1.0 + }, + { + "word": " number", + "start": 5380.0, + "end": 5380.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 5380.44, + "end": 5380.64, + "probability": 1.0 + }, + { + "word": " subscribers", + "start": 5380.64, + "end": 5380.9, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 5380.9, + "end": 5381.3, + "probability": 1.0 + }, + { + "word": " we", + "start": 5381.3, + "end": 5381.5, + "probability": 1.0 + }, + { + "word": " can", + "start": 5381.5, + "end": 5381.62, + "probability": 1.0 + }, + { + "word": " do", + "start": 5381.62, + "end": 5381.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 5381.84, + "end": 5382.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 5382.04, + "end": 5382.16, + "probability": 1.0 + }, + { + "word": " those", + "start": 5382.16, + "end": 5382.28, + "probability": 1.0 + }, + { + "word": " things.", + "start": 5382.28, + "end": 5382.54, + "probability": 1.0 + } + ] + }, + { + "id": 2189, + "text": "So, make me happy and go to gurushow.com, click the YouTube icon, and subscribe.", + "start": 5382.68, + "end": 5387.26, + "words": [ + { + "word": " So,", + "start": 5382.68, + "end": 5382.9, + "probability": 0.97900390625 + }, + { + "word": " make", + "start": 5382.92, + "end": 5383.42, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 5383.42, + "end": 5383.6, + "probability": 1.0 + }, + { + "word": " happy", + "start": 5383.6, + "end": 5383.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 5383.9, + "end": 5384.14, + "probability": 0.94580078125 + }, + { + "word": " go", + "start": 5384.14, + "end": 5384.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 5384.34, + "end": 5384.52, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 5384.52, + "end": 5385.16, + "probability": 0.9990234375 + }, + { + "word": ".com,", + "start": 5385.16, + "end": 5385.48, + "probability": 1.0 + }, + { + "word": " click", + "start": 5385.62, + "end": 5385.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 5385.78, + "end": 5385.92, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 5385.92, + "end": 5386.1, + "probability": 1.0 + }, + { + "word": " icon,", + "start": 5386.1, + "end": 5386.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 5386.64, + "end": 5386.94, + "probability": 1.0 + }, + { + "word": " subscribe.", + "start": 5386.94, + "end": 5387.26, + "probability": 1.0 + } + ] + }, + { + "id": 2190, + "text": "Not to mention.", + "start": 5387.62, + "end": 5388.2, + "words": [ + { + "word": " Not", + "start": 5387.62, + "end": 5387.82, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 5387.82, + "end": 5387.94, + "probability": 1.0 + }, + { + "word": " mention.", + "start": 5387.94, + "end": 5388.2, + "probability": 1.0 + } + ] + }, + { + "id": 2191, + "text": "There's going to be a whole bunch of giveaways coming up,", + "start": 5388.38, + "end": 5390.22, + "words": [ + { + "word": " There's", + "start": 5388.38, + "end": 5388.58, + "probability": 0.62646484375 + }, + { + "word": " going", + "start": 5388.58, + "end": 5388.68, + "probability": 0.98779296875 + }, + { + "word": " to", + "start": 5388.68, + "end": 5388.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 5388.74, + "end": 5388.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 5388.84, + "end": 5388.94, + "probability": 0.9892578125 + }, + { + "word": " whole", + "start": 5388.94, + "end": 5389.08, + "probability": 0.99853515625 + }, + { + "word": " bunch", + "start": 5389.08, + "end": 5389.24, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5389.24, + "end": 5389.34, + "probability": 0.99462890625 + }, + { + "word": " giveaways", + "start": 5389.34, + "end": 5389.66, + "probability": 0.99853515625 + }, + { + "word": " coming", + "start": 5389.66, + "end": 5389.92, + "probability": 0.99755859375 + }, + { + "word": " up,", + "start": 5389.92, + "end": 5390.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2192, + "text": "where we're going to give away something each month to someone who happens to be a YouTube subscriber.", + "start": 5390.24, + "end": 5395.42, + "words": [ + { + "word": " where", + "start": 5390.24, + "end": 5390.4, + "probability": 0.98974609375 + }, + { + "word": " we're", + "start": 5390.4, + "end": 5390.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 5390.78, + "end": 5390.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5390.88, + "end": 5391.02, + "probability": 1.0 + }, + { + "word": " give", + "start": 5391.02, + "end": 5391.32, + "probability": 0.99755859375 + }, + { + "word": " away", + "start": 5391.32, + "end": 5391.64, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 5391.64, + "end": 5392.48, + "probability": 0.9990234375 + }, + { + "word": " each", + "start": 5392.48, + "end": 5392.86, + "probability": 0.99951171875 + }, + { + "word": " month", + "start": 5392.86, + "end": 5393.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 5393.14, + "end": 5393.42, + "probability": 0.99755859375 + }, + { + "word": " someone", + "start": 5393.42, + "end": 5393.7, + "probability": 1.0 + }, + { + "word": " who", + "start": 5393.7, + "end": 5393.9, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 5393.9, + "end": 5394.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 5394.22, + "end": 5394.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 5394.4, + "end": 5394.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 5394.56, + "end": 5394.74, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 5394.74, + "end": 5394.96, + "probability": 1.0 + }, + { + "word": " subscriber.", + "start": 5394.96, + "end": 5395.42, + "probability": 1.0 + } + ] + }, + { + "id": 2193, + "text": "And maybe they have to be, you know, liked on the Facebook and all of that.", + "start": 5396.1, + "end": 5400.14, + "words": [ + { + "word": " And", + "start": 5396.1, + "end": 5396.54, + "probability": 0.82421875 + }, + { + "word": " maybe", + "start": 5396.54, + "end": 5396.98, + "probability": 0.99267578125 + }, + { + "word": " they", + "start": 5396.98, + "end": 5397.2, + "probability": 1.0 + }, + { + "word": " have", + "start": 5397.2, + "end": 5397.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 5397.34, + "end": 5397.46, + "probability": 1.0 + }, + { + "word": " be,", + "start": 5397.46, + "end": 5397.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 5397.76, + "end": 5397.94, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 5397.94, + "end": 5398.14, + "probability": 1.0 + }, + { + "word": " liked", + "start": 5398.14, + "end": 5398.48, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 5398.48, + "end": 5398.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 5398.64, + "end": 5398.76, + "probability": 0.998046875 + }, + { + "word": " Facebook", + "start": 5398.76, + "end": 5399.06, + "probability": 1.0 + }, + { + "word": " and", + "start": 5399.06, + "end": 5399.46, + "probability": 0.96484375 + }, + { + "word": " all", + "start": 5399.46, + "end": 5399.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 5399.8, + "end": 5399.94, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5399.94, + "end": 5400.14, + "probability": 1.0 + } + ] + }, + { + "id": 2194, + "text": "There's going to be some requirements, but if you want free stuff, sign up and tell your friends to sign up, too.", + "start": 5400.36, + "end": 5405.38, + "words": [ + { + "word": " There's", + "start": 5400.36, + "end": 5400.8, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 5400.8, + "end": 5400.86, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5400.86, + "end": 5400.94, + "probability": 1.0 + }, + { + "word": " be", + "start": 5400.94, + "end": 5400.96, + "probability": 1.0 + }, + { + "word": " some", + "start": 5400.96, + "end": 5401.08, + "probability": 1.0 + }, + { + "word": " requirements,", + "start": 5401.08, + "end": 5401.48, + "probability": 1.0 + }, + { + "word": " but", + "start": 5401.74, + "end": 5401.92, + "probability": 1.0 + }, + { + "word": " if", + "start": 5401.92, + "end": 5402.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 5402.1, + "end": 5402.24, + "probability": 1.0 + }, + { + "word": " want", + "start": 5402.24, + "end": 5402.4, + "probability": 1.0 + }, + { + "word": " free", + "start": 5402.4, + "end": 5402.6, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 5402.6, + "end": 5402.92, + "probability": 1.0 + }, + { + "word": " sign", + "start": 5403.12, + "end": 5403.66, + "probability": 1.0 + }, + { + "word": " up", + "start": 5403.66, + "end": 5403.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 5403.9, + "end": 5404.04, + "probability": 0.99658203125 + }, + { + "word": " tell", + "start": 5404.04, + "end": 5404.24, + "probability": 1.0 + }, + { + "word": " your", + "start": 5404.24, + "end": 5404.38, + "probability": 1.0 + }, + { + "word": " friends", + "start": 5404.38, + "end": 5404.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 5404.62, + "end": 5404.76, + "probability": 1.0 + }, + { + "word": " sign", + "start": 5404.76, + "end": 5404.96, + "probability": 1.0 + }, + { + "word": " up,", + "start": 5404.96, + "end": 5405.14, + "probability": 1.0 + }, + { + "word": " too.", + "start": 5405.18, + "end": 5405.38, + "probability": 1.0 + } + ] + }, + { + "id": 2195, + "text": "Also, visit our shop at 510 East Fort Lowell or 64 North Harrison,", + "start": 5405.92, + "end": 5410.52, + "words": [ + { + "word": " Also,", + "start": 5405.92, + "end": 5406.36, + "probability": 0.99951171875 + }, + { + "word": " visit", + "start": 5406.46, + "end": 5406.68, + "probability": 1.0 + }, + { + "word": " our", + "start": 5406.68, + "end": 5406.92, + "probability": 0.99951171875 + }, + { + "word": " shop", + "start": 5406.92, + "end": 5407.32, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 5407.32, + "end": 5407.6, + "probability": 1.0 + }, + { + "word": " 510", + "start": 5407.6, + "end": 5407.94, + "probability": 1.0 + }, + { + "word": " East", + "start": 5407.94, + "end": 5408.22, + "probability": 1.0 + }, + { + "word": " Fort", + "start": 5408.22, + "end": 5408.5, + "probability": 0.98193359375 + }, + { + "word": " Lowell", + "start": 5408.5, + "end": 5408.8, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 5408.8, + "end": 5409.04, + "probability": 0.99072265625 + }, + { + "word": " 64", + "start": 5409.04, + "end": 5409.5, + "probability": 0.99951171875 + }, + { + "word": " North", + "start": 5409.5, + "end": 5410.08, + "probability": 1.0 + }, + { + "word": " Harrison,", + "start": 5410.08, + "end": 5410.52, + "probability": 1.0 + } + ] + }, + { + "id": 2196, + "text": "or give us a call at 304-8300.", + "start": 5410.64, + "end": 5413.06, + "words": [ + { + "word": " or", + "start": 5410.64, + "end": 5411.1, + "probability": 1.0 + }, + { + "word": " give", + "start": 5411.1, + "end": 5411.24, + "probability": 1.0 + }, + { + "word": " us", + "start": 5411.24, + "end": 5411.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 5411.34, + "end": 5411.4, + "probability": 1.0 + }, + { + "word": " call", + "start": 5411.4, + "end": 5411.62, + "probability": 1.0 + }, + { + "word": " at", + "start": 5411.62, + "end": 5411.9, + "probability": 1.0 + }, + { + "word": " 304", + "start": 5411.9, + "end": 5412.54, + "probability": 0.99951171875 + }, + { + "word": "-8300.", + "start": 5412.54, + "end": 5413.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2197, + "text": "Visit the website at azcomputerguru.com.", + "start": 5413.54, + "end": 5416.96, + "words": [ + { + "word": " Visit", + "start": 5413.54, + "end": 5413.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5413.98, + "end": 5414.12, + "probability": 1.0 + }, + { + "word": " website", + "start": 5414.12, + "end": 5414.34, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 5414.34, + "end": 5414.8, + "probability": 1.0 + }, + { + "word": " azcomputerguru", + "start": 5414.8, + "end": 5416.06, + "probability": 0.98291015625 + }, + { + "word": ".com.", + "start": 5416.06, + "end": 5416.96, + "probability": 1.0 + } + ] + }, + { + "id": 2198, + "text": "Thanks.", + "start": 5417.2, + "end": 5417.64, + "words": [ + { + "word": " Thanks.", + "start": 5417.2, + "end": 5417.64, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2199, + "text": "Thanks.", + "start": 5417.64, + "end": 5417.78, + "words": [ + { + "word": " Thanks.", + "start": 5417.64, + "end": 5417.78, + "probability": 0.08197021484375 + } + ] + }, + { + "id": 2200, + "text": "We'll see you next week.", + "start": 5417.78, + "end": 5418.68, + "words": [ + { + "word": " We'll", + "start": 5417.78, + "end": 5418.14, + "probability": 0.998046875 + }, + { + "word": " see", + "start": 5418.14, + "end": 5418.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 5418.26, + "end": 5418.34, + "probability": 1.0 + }, + { + "word": " next", + "start": 5418.34, + "end": 5418.46, + "probability": 1.0 + }, + { + "word": " week.", + "start": 5418.46, + "end": 5418.68, + "probability": 1.0 + } + ] + }, + { + "id": 2201, + "text": "I'm going to go to bed.", + "start": 5419.84, + "end": 5422.14, + "words": [ + { + "word": " I'm", + "start": 5419.84, + "end": 5420.32, + "probability": 0.1885986328125 + }, + { + "word": " going", + "start": 5420.32, + "end": 5420.54, + "probability": 0.2257080078125 + }, + { + "word": " to", + "start": 5420.54, + "end": 5420.64, + "probability": 0.95751953125 + }, + { + "word": " go", + "start": 5420.64, + "end": 5420.92, + "probability": 0.2027587890625 + }, + { + "word": " to", + "start": 5420.92, + "end": 5421.9, + "probability": 0.1568603515625 + }, + { + "word": " bed.", + "start": 5421.9, + "end": 5422.14, + "probability": 0.6826171875 + } + ] + }, + { + "id": 2202, + "text": "I'm going to go to bed.", + "start": 5422.76, + "end": 5424.1, + "words": [ + { + "word": " I'm", + "start": 5422.76, + "end": 5423.24, + "probability": 0.8173828125 + }, + { + "word": " going", + "start": 5423.24, + "end": 5423.38, + "probability": 0.9921875 + }, + { + "word": " to", + "start": 5423.38, + "end": 5423.38, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 5423.38, + "end": 5423.38, + "probability": 0.9208984375 + }, + { + "word": " to", + "start": 5423.38, + "end": 5423.78, + "probability": 0.9853515625 + }, + { + "word": " bed.", + "start": 5423.78, + "end": 5424.1, + "probability": 0.9619140625 + } + ] + }, + { + "id": 2203, + "text": "I'm going to go to bed.", + "start": 5424.1, + "end": 5424.5, + "words": [ + { + "word": " I'm", + "start": 5424.1, + "end": 5424.1, + "probability": 0.98583984375 + }, + { + "word": " going", + "start": 5424.1, + "end": 5424.1, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5424.1, + "end": 5424.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 5424.1, + "end": 5424.1, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 5424.1, + "end": 5424.1, + "probability": 0.9970703125 + }, + { + "word": " bed.", + "start": 5424.1, + "end": 5424.5, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2204, + "text": "I'm going to go to bed.", + "start": 5424.5, + "end": 5424.6, + "words": [ + { + "word": " I'm", + "start": 5424.5, + "end": 5424.6, + "probability": 0.9921875 + }, + { + "word": " going", + "start": 5424.6, + "end": 5424.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5424.6, + "end": 5424.6, + "probability": 1.0 + }, + { + "word": " go", + "start": 5424.6, + "end": 5424.6, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 5424.6, + "end": 5424.6, + "probability": 0.998046875 + }, + { + "word": " bed.", + "start": 5424.6, + "end": 5424.6, + "probability": 0.99267578125 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.srt new file mode 100644 index 0000000..2b6962e --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.srt @@ -0,0 +1,8820 @@ +1 +00:00:01,760 --> 00:00:03,160 +Computer running slow? + +2 +00:00:03,400 --> 00:00:06,640 +Has your machine somehow acquired a life of its own? + +3 +00:00:07,140 --> 00:00:11,300 +Or do you simply desire a deeper and more meaningful connection? + +4 +00:00:11,820 --> 00:00:13,880 +Be one with your operating system. + +5 +00:00:14,680 --> 00:00:19,620 +It's Arizona's computer guru, Mike Swanson, and his show starts now. + +6 +00:00:19,940 --> 00:00:24,520 +Listen in, chat in, and watch live streaming at gurushow.com. + +7 +00:00:24,760 --> 00:00:26,200 +Want your voice to be heard? + +8 +00:00:26,300 --> 00:00:28,100 +Call in with your questions and riddles. + +9 +00:00:28,100 --> 00:00:31,660 +The number is 520-790-2040. + +10 +00:00:32,060 --> 00:00:35,240 +This is the Computer Guru Show on AM1030. + +11 +00:00:36,140 --> 00:00:37,180 +KVOI, The Voice. + +12 +00:00:38,720 --> 00:00:40,440 +Hello and welcome to the Computer Guru Show. + +13 +00:00:40,480 --> 00:00:44,800 +My name is Mike, here to deal with your technology needs and treat you like a person in the process. + +14 +00:00:45,540 --> 00:00:46,260 +790-2040. + +15 +00:00:46,560 --> 00:00:50,280 +That's 520-790-2040 if you want to be part of the show. + +16 +00:00:50,360 --> 00:00:53,620 +This is your free tech support for the weekend. + +17 +00:00:54,320 --> 00:00:57,340 +All you got to do is give us a call, let us know what's going on, and we can help you out. + +18 +00:00:57,360 --> 00:00:58,020 +I've got Rob here. + +19 +00:00:58,100 --> 00:00:59,140 +I am here this week. + +20 +00:00:59,180 --> 00:01:00,020 +Tara is MIA. + +21 +00:01:00,260 --> 00:01:01,100 +She's out of here. + +22 +00:01:01,200 --> 00:01:02,560 +Seems like I'm always covering for her. + +23 +00:01:02,720 --> 00:01:03,120 +Always. + +24 +00:01:03,280 --> 00:01:03,640 +Yeah. + +25 +00:01:03,960 --> 00:01:06,340 +Apparently she just doesn't know when to show up to the show. + +26 +00:01:06,760 --> 00:01:08,000 +No, it's just coincidence. + +27 +00:01:08,060 --> 00:01:09,020 +She's not here and I am. + +28 +00:01:09,200 --> 00:01:09,600 +Yep. + +29 +00:01:10,060 --> 00:01:10,980 +She's, uh, what's she doing? + +30 +00:01:11,120 --> 00:01:14,400 +She's, like, on a beach somewhere sipping Mai Tais, something like that. + +31 +00:01:14,760 --> 00:01:15,160 +Man. + +32 +00:01:15,820 --> 00:01:16,580 +Must be nice. + +33 +00:01:17,160 --> 00:01:19,620 +She's probably listening right now and laughing because she's not here. + +34 +00:01:20,160 --> 00:01:20,440 +Yep. + +35 +00:01:20,700 --> 00:01:27,720 +She's probably just being like, man, look at all this sand and not 117 degree weather that I'm experiencing. + +36 +00:01:28,100 --> 00:01:28,360 +Yeah. + +37 +00:01:28,420 --> 00:01:32,060 +Let's just say that, uh, here in Tucson, we need to spend this weekend indoors. + +38 +00:01:32,500 --> 00:01:32,900 +Yeah. + +39 +00:01:33,160 --> 00:01:37,080 +You're not supposed to talk about the weather on radio, but holy moly, it's hot. + +40 +00:01:37,800 --> 00:01:38,900 +It's not weather anymore. + +41 +00:01:39,060 --> 00:01:40,380 +That's like a hazard. + +42 +00:01:40,540 --> 00:01:45,060 +It's some sort of, there's a natural disaster created by the sun happening here this weekend. + +43 +00:01:45,300 --> 00:01:46,940 +It's, uh, it is unpleasant. + +44 +00:01:47,580 --> 00:01:50,000 +I have to go buy some sunscreen or something today. + +45 +00:01:50,080 --> 00:01:55,060 +Like at some point in the future, they're going to show clips from this weekend in IMAX theaters with Kevin Bacon talking over it. + +46 +00:01:55,140 --> 00:01:56,460 +I saw some picture. + +47 +00:01:56,720 --> 00:01:58,080 +Uh, I don't know where it was. + +48 +00:01:58,080 --> 00:02:07,620 +I don't know where it was at, but apparently they made their light posts on a pier out of some type of plastic and they were just all melted and leaning over. + +49 +00:02:07,920 --> 00:02:08,120 +Yeah. + +50 +00:02:08,140 --> 00:02:12,960 +I've seen, uh, I've seen like pictures where it's like, you know, you're in Arizona when, and it's just a dumpster that is melted. + +51 +00:02:13,060 --> 00:02:13,780 +It's like a puddle. + +52 +00:02:15,980 --> 00:02:17,080 +Pretty, pretty warm. + +53 +00:02:17,260 --> 00:02:17,540 +All right. + +54 +00:02:17,580 --> 00:02:19,300 +790-2040 if you want to be part of the show. + +55 +00:02:19,940 --> 00:02:23,380 +Uh, let's take a moment to mention net neutrality. + +56 +00:02:23,760 --> 00:02:24,120 +Yeah. + +57 +00:02:24,220 --> 00:02:27,960 +And, and for once it might be like a good. + +58 +00:02:28,080 --> 00:02:28,660 +Good conversation. + +59 +00:02:28,780 --> 00:02:28,920 +Yeah. + +60 +00:02:28,920 --> 00:02:31,480 +Because normally when I talk about net neutrality, it's me. + +61 +00:02:32,040 --> 00:02:37,340 +There's scorn and, and fury and just come on. + +62 +00:02:38,260 --> 00:02:43,220 +Uh, but, uh, maybe some good news potentially in the net neutrality world. + +63 +00:02:43,300 --> 00:02:47,160 +The, uh, the internet services are now classified as a utility. + +64 +00:02:47,620 --> 00:02:48,100 +Yeah. + +65 +00:02:48,180 --> 00:02:51,180 +And that's, that's what we've been trying to get done for quite a while now. + +66 +00:02:51,280 --> 00:02:51,580 +Right. + +67 +00:02:51,620 --> 00:02:56,040 +So we, I did a bunch of rants on, uh, net neutrality. + +68 +00:02:56,160 --> 00:02:57,460 +We'll probably throw one up in the. + +69 +00:02:58,080 --> 00:02:58,860 +There's already one up there. + +70 +00:02:58,940 --> 00:03:00,120 +Rants in the YouTube section. + +71 +00:03:01,500 --> 00:03:03,680 +Um, which Rob manages that. + +72 +00:03:03,820 --> 00:03:09,400 +So, uh, you know, golf clap to Rob for, you know, making sure that the, uh, the, uh, YouTube + +73 +00:03:09,400 --> 00:03:12,040 +channel is, is doing what it's supposed to be doing. + +74 +00:03:12,180 --> 00:03:14,860 +By the way, if you have an opportunity to go over there and subscribe to us, cause it + +75 +00:03:14,860 --> 00:03:15,480 +helps us out. + +76 +00:03:15,860 --> 00:03:19,680 +Then you get to hear, uh, Mike's, you know, furious rants about net neutrality and other + +77 +00:03:19,680 --> 00:03:19,900 +stuff. + +78 +00:03:20,080 --> 00:03:20,440 +Yeah. + +79 +00:03:20,460 --> 00:03:26,100 +You know, and I listened to the Verizon one and, um, that was the second Verizon rant + +80 +00:03:26,100 --> 00:03:26,640 +that I've had. + +81 +00:03:26,760 --> 00:03:28,060 +We got to go find the first one. + +82 +00:03:28,060 --> 00:03:29,440 +Cause that's like season four or something. + +83 +00:03:29,580 --> 00:03:30,660 +We're gonna have to go dig that up. + +84 +00:03:30,740 --> 00:03:35,780 +That one is where I just exploded on air. + +85 +00:03:36,260 --> 00:03:38,500 +It's really not, not cool. + +86 +00:03:39,000 --> 00:03:40,660 +Uh, we'll have to find one of those. + +87 +00:03:40,760 --> 00:03:45,700 +Um, but yeah, the net neutrality one from, uh, last season, last year is up there right + +88 +00:03:45,700 --> 00:03:45,920 +now. + +89 +00:03:46,000 --> 00:03:47,500 +So go check it out on our YouTube channel. + +90 +00:03:47,560 --> 00:03:47,860 +Right. + +91 +00:03:47,920 --> 00:03:52,940 +Then you can get sort of a background on what net neutrality is or is not, uh, at least + +92 +00:03:52,940 --> 00:03:55,020 +from the perspective of people in technology. + +93 +00:03:55,560 --> 00:03:57,900 +Uh, I, there was a whole bunch of political spin. + +94 +00:03:58,060 --> 00:04:00,820 +On it, uh, when it was actually happening. + +95 +00:04:01,140 --> 00:04:04,020 +Oh, and then, uh, that reminds me just to preview for you guys. + +96 +00:04:04,040 --> 00:04:07,940 +Next, next, the next excerpt that we're putting on YouTube is a throwback to act. + +97 +00:04:08,000 --> 00:04:08,620 +I remember act. + +98 +00:04:08,760 --> 00:04:09,000 +Yeah. + +99 +00:04:09,220 --> 00:04:10,980 +It's you talking about act in 2010. + +100 +00:04:12,020 --> 00:04:15,660 +Oh, I think it was more vitriolic, but in 2010, it's a good one. + +101 +00:04:15,760 --> 00:04:17,980 +So that was a little more angry. + +102 +00:04:18,960 --> 00:04:22,780 +I'm trying to, I'm trying to give some color, you know, to the net neutrality stuff that + +103 +00:04:22,780 --> 00:04:23,260 +we talk about. + +104 +00:04:23,480 --> 00:04:26,680 +So that's why I've been picking a few of those types of rants to put on there. + +105 +00:04:26,760 --> 00:04:27,200 +Right on. + +106 +00:04:27,260 --> 00:04:27,600 +Yeah. + +107 +00:04:27,600 --> 00:04:27,780 +Yeah. + +108 +00:04:27,780 --> 00:04:28,040 +Yeah. + +109 +00:04:28,040 --> 00:04:28,040 + + +110 +00:04:28,040 --> 00:04:28,040 + + +111 +00:04:28,040 --> 00:04:28,040 + + +112 +00:04:28,040 --> 00:04:28,040 + + +113 +00:04:28,040 --> 00:04:28,040 + + +114 +00:04:28,040 --> 00:04:28,040 + + +115 +00:04:28,040 --> 00:04:28,040 + + +116 +00:04:28,040 --> 00:04:28,040 + + +117 +00:04:28,040 --> 00:04:28,040 + + +118 +00:04:28,040 --> 00:04:28,040 + + +119 +00:04:28,040 --> 00:04:28,560 +Check out the YouTube channel. + +120 +00:04:28,620 --> 00:04:32,120 +You can listen to the net neutrality rant, but now it is finally classified as utility, + +121 +00:04:32,320 --> 00:04:40,300 +which is, uh, which is great because it allows for, uh, well, I guess the bigger, better + +122 +00:04:40,300 --> 00:04:47,200 +way of putting it is, is it disallows for the ISPs to prioritize packets based on pay. + +123 +00:04:47,660 --> 00:04:48,100 +Yeah. + +124 +00:04:48,120 --> 00:04:52,740 +And it makes it to where everyone has equal access to internet the same way that people + +125 +00:04:52,740 --> 00:04:56,980 +have access to indoor plumbing and electricity and, you know, those types of things. + +126 +00:04:57,140 --> 00:04:57,580 +Right. + +127 +00:04:58,040 --> 00:04:59,860 +Um, and that's a, that's a good thing in my opinion. + +128 +00:04:59,900 --> 00:05:03,000 +Now, the, the, of course with, as with everything, there are some drawbacks to it. + +129 +00:05:03,440 --> 00:05:09,640 +Um, but, uh, for right now, I'm pretty happy with the outcome and perhaps in a couple of + +130 +00:05:09,640 --> 00:05:13,320 +episodes, maybe two weeks from now, we can talk a little bit more about what that really + +131 +00:05:13,320 --> 00:05:19,000 +means and explore the pros and the cons of net neutrality because it isn't a one-sided + +132 +00:05:19,000 --> 00:05:19,280 +issue. + +133 +00:05:19,520 --> 00:05:22,700 +It's not like the encryption debate, which is very, very one-sided. + +134 +00:05:23,040 --> 00:05:28,020 +Uh, it's, it's very much a, well, you know, there are some, some drawbacks to it. + +135 +00:05:28,020 --> 00:05:28,020 + + +136 +00:05:28,020 --> 00:05:28,020 + + +137 +00:05:28,040 --> 00:05:31,780 +And yeah, I mean, like you're saying, uh, it's very politicized, but there really are + +138 +00:05:31,780 --> 00:05:35,320 +a couple of things that, I mean, the other side makes good points on, on a couple of + +139 +00:05:35,320 --> 00:05:35,520 +things. + +140 +00:05:35,900 --> 00:05:38,100 +Overall, though, net neutrality, I think will be a benefit. + +141 +00:05:38,980 --> 00:05:39,660 +That's the goal. + +142 +00:05:39,820 --> 00:05:40,820 +Let's go ahead and talk to Dave. + +143 +00:05:40,960 --> 00:05:41,440 +Hello, Dave. + +144 +00:05:41,520 --> 00:05:41,940 +How are you? + +145 +00:05:42,440 --> 00:05:42,820 +Okay. + +146 +00:05:42,940 --> 00:05:49,740 +Um, I have a Windows 7 desktop and when I hit the button that says check for updates, + +147 +00:05:49,860 --> 00:05:53,920 +it just looks for updates and never, never gets anything done. + +148 +00:05:54,660 --> 00:05:55,040 +Okay. + +149 +00:05:55,080 --> 00:05:57,720 +And then I went to the troubleshooting computer problems. + +150 +00:05:57,780 --> 00:05:58,020 +Okay. + +151 +00:05:58,040 --> 00:06:00,480 +And it's got a button that says fix problems with Windows update. + +152 +00:06:00,960 --> 00:06:03,660 +And that just goes out there and never does it. + +153 +00:06:03,700 --> 00:06:07,760 +It looks for stuff on the internet and it just keeps, you know, scrolling or whatever + +154 +00:06:07,760 --> 00:06:08,800 +and it never finishes. + +155 +00:06:09,220 --> 00:06:13,580 +Do you have the little Windows 10 update logo down in the lower right-hand corner? + +156 +00:06:13,700 --> 00:06:18,280 +I, I knew you'd say that first answer, but is there a possibility that I can fix the + +157 +00:06:18,280 --> 00:06:21,760 +Windows 7 or is it, you're just going to make me go to 10? + +158 +00:06:21,900 --> 00:06:25,720 +No, what I'm saying is that the reason you're not getting updates is because it's waiting + +159 +00:06:25,720 --> 00:06:27,420 +for the 10 because that's installed. + +160 +00:06:28,220 --> 00:06:32,000 +Well, the end, what I mean is waiting for the 10. + +161 +00:06:32,200 --> 00:06:36,500 +So if you have the little flag icon down by your clock, that, that's like. + +162 +00:06:36,560 --> 00:06:39,220 +Well, I have a little thing down there that says get Windows 10. + +163 +00:06:39,700 --> 00:06:40,100 +Right. + +164 +00:06:40,560 --> 00:06:44,040 +All other updates are paused until you decide on that one. + +165 +00:06:44,120 --> 00:06:46,900 +It's basically saying you're going to get Windows 10 anyway, so there's no point in + +166 +00:06:46,900 --> 00:06:47,880 +installing these other upgrades. + +167 +00:06:48,460 --> 00:06:50,020 +So what do I have to do then? + +168 +00:06:50,060 --> 00:06:54,940 +So you either uninstall the 303 update that we've talked about in previous episodes. + +169 +00:06:55,480 --> 00:06:55,880 +Okay. + +170 +00:06:55,900 --> 00:06:57,040 +I don't know what that is, but. + +171 +00:06:57,120 --> 00:06:57,460 +Okay. + +172 +00:06:57,460 --> 00:06:58,020 +So if you go to the Windows 10, you're going to get Windows 10. + +173 +00:06:58,020 --> 00:07:03,960 +If you go to add and remove programs, there is a button on the left where you can choose + +174 +00:07:03,960 --> 00:07:06,500 +to view installed updates. + +175 +00:07:06,880 --> 00:07:07,260 +Right. + +176 +00:07:07,540 --> 00:07:11,280 +One of them is KB303, I think. + +177 +00:07:11,300 --> 00:07:12,340 +Yeah, it's 303 something. + +178 +00:07:12,520 --> 00:07:15,160 +It's the only 303 update that you'll have. + +179 +00:07:16,080 --> 00:07:22,280 +And if you uninstall that, that makes the Windows 10 upgrade icon go away and your updates + +180 +00:07:22,280 --> 00:07:23,600 +will resume as normal. + +181 +00:07:23,940 --> 00:07:28,000 +But just know that as soon as you update, that 303 is going to go away. + +182 +00:07:28,020 --> 00:07:28,340 +It's coming back. + +183 +00:07:28,680 --> 00:07:32,360 +So you'll get one round of updates, and then it's going to be like, hey, it's time to get + +184 +00:07:32,360 --> 00:07:32,720 +Windows 10. + +185 +00:07:33,280 --> 00:07:36,160 +So they're making it harder for us to do this, is what you're saying. + +186 +00:07:36,320 --> 00:07:39,520 +They do not at all want you in Windows 7 anymore. + +187 +00:07:40,480 --> 00:07:48,140 +Well, for a guy who's been using the Windows menu ever since Windows came out, what's the + +188 +00:07:49,080 --> 00:07:50,800 +bad stuff about going to 10? + +189 +00:07:50,880 --> 00:07:55,000 +Because I'm used to Windows 7 and its previous versions. + +190 +00:07:56,600 --> 00:07:57,040 +So... + +191 +00:07:57,040 --> 00:07:58,000 +There's not a huge difference. + +192 +00:07:58,020 --> 00:07:59,400 +There's not a huge difference between 7 and 10. + +193 +00:07:59,960 --> 00:08:04,640 +Because for an old guy like me who's been using 7 and it's, like I say, forever, is it going + +194 +00:08:04,640 --> 00:08:05,480 +to be a big difference? + +195 +00:08:05,600 --> 00:08:05,940 +No. + +196 +00:08:06,240 --> 00:08:06,600 +No. + +197 +00:08:06,660 --> 00:08:08,880 +The difference is relatively minor. + +198 +00:08:09,500 --> 00:08:13,420 +Now, it's not like going to Windows 8, which was a huge change for the interface. + +199 +00:08:13,780 --> 00:08:14,140 +Right. + +200 +00:08:15,060 --> 00:08:20,420 +So I think they heard a little bit of the feedback there and decided that they'll go + +201 +00:08:20,420 --> 00:08:23,100 +back to an interface that's more similar to 7. + +202 +00:08:23,320 --> 00:08:26,440 +And I think that's a lot of the confusion that people have, and that's why they don't + +203 +00:08:26,440 --> 00:08:26,940 +want to go to 10. + +204 +00:08:26,960 --> 00:08:28,000 +That's because they think it's Windows 10. + +205 +00:08:28,000 --> 00:08:28,080 +It's Windows 8. + +206 +00:08:28,560 --> 00:08:29,360 +But it's not. + +207 +00:08:29,700 --> 00:08:33,960 +Well, will all my programs still work on 10, or is there something that's not going to + +208 +00:08:33,960 --> 00:08:34,180 +work? + +209 +00:08:34,240 --> 00:08:37,780 +As with any upgrade, there is the opportunity for things to not work. + +210 +00:08:37,960 --> 00:08:38,300 +Right. + +211 +00:08:39,120 --> 00:08:44,920 +But I have not seen any problems that I have found to be... + +212 +00:08:45,900 --> 00:08:48,100 +I haven't found any insurmountable problems. + +213 +00:08:48,540 --> 00:08:48,980 +Okay. + +214 +00:08:49,040 --> 00:08:54,860 +All the software that I've run across so far, we've either been able to make it work, or + +215 +00:08:54,860 --> 00:08:57,020 +it might require an update of some type. + +216 +00:08:57,380 --> 00:08:57,820 +Okay. + +217 +00:08:58,000 --> 00:09:00,220 +But don't fear that part of it. + +218 +00:09:00,260 --> 00:09:04,560 +The only thing that you really have to fear is, as usual with all versions of Windows + +219 +00:09:04,560 --> 00:09:06,080 +for upgrades, is scanners and printers. + +220 +00:09:07,060 --> 00:09:07,540 +Right. + +221 +00:09:07,780 --> 00:09:13,760 +So if you have a really old printer or a really old scanner, it's very likely that those won't + +222 +00:09:13,760 --> 00:09:13,980 +work. + +223 +00:09:14,240 --> 00:09:17,400 +But there will be a new driver out there somewhere to make it work? + +224 +00:09:17,740 --> 00:09:18,220 +Sometimes. + +225 +00:09:19,040 --> 00:09:19,520 +Sometimes. + +226 +00:09:19,760 --> 00:09:19,880 +Right. + +227 +00:09:19,960 --> 00:09:24,740 +A lot of times, though, whenever you do major Windows version updates, you get a new printer + +228 +00:09:24,740 --> 00:09:26,520 +is how that works. + +229 +00:09:26,940 --> 00:09:27,420 +Right. + +230 +00:09:27,460 --> 00:09:27,860 +Right. + +231 +00:09:27,980 --> 00:09:27,980 + + +232 +00:09:27,980 --> 00:09:27,980 + + +233 +00:09:27,980 --> 00:09:27,980 + + +234 +00:09:27,980 --> 00:09:27,980 + + +235 +00:09:27,980 --> 00:09:27,980 + + +236 +00:09:27,980 --> 00:09:27,980 + + +237 +00:09:27,980 --> 00:09:27,980 + + +238 +00:09:27,980 --> 00:09:27,980 + + +239 +00:09:27,980 --> 00:09:27,980 + + +240 +00:09:27,980 --> 00:09:27,980 + + +241 +00:09:27,980 --> 00:09:27,980 + + +242 +00:09:27,980 --> 00:09:27,980 + + +243 +00:09:27,980 --> 00:09:27,980 + + +244 +00:09:27,980 --> 00:09:27,980 + + +245 +00:09:28,000 --> 00:09:30,320 +So if I have all my internet stuff, that'll still all work. + +246 +00:09:30,360 --> 00:09:31,200 +All that stuff's going to work. + +247 +00:09:31,680 --> 00:09:32,040 +Okay. + +248 +00:09:32,420 --> 00:09:32,780 +Yeah. + +249 +00:09:32,800 --> 00:09:34,020 +So don't sweat that part a whole lot. + +250 +00:09:34,500 --> 00:09:37,540 +Well, like I say, I've feared the unknown for too long. + +251 +00:09:37,640 --> 00:09:38,420 +Maybe I should go to 10. + +252 +00:09:38,840 --> 00:09:40,540 +Well, you don't have a choice. + +253 +00:09:40,720 --> 00:09:42,300 +You're going to 10 whether you like it or not. + +254 +00:09:42,600 --> 00:09:42,960 +Yeah. + +255 +00:09:43,920 --> 00:09:46,640 +So, I mean, you can delay it for right now. + +256 +00:09:46,720 --> 00:09:52,240 +You can uninstall that 303 update, get the latest round of critical updates, but it's + +257 +00:09:52,240 --> 00:09:53,060 +going to push you into 10. + +258 +00:09:53,140 --> 00:09:56,380 +And by the end of July, that's the deadline. + +259 +00:09:56,480 --> 00:09:57,800 +They're going to keep pushing harder. + +260 +00:09:58,000 --> 00:09:59,120 +It's going to get harder and harder until that point. + +261 +00:09:59,240 --> 00:10:04,800 +Now, if you decide to hold out past the end of July, so let's say that August 1st shows + +262 +00:10:04,800 --> 00:10:09,820 +up and you have not upgraded to 10, that upgrade window goes away. + +263 +00:10:10,000 --> 00:10:13,960 +You'll start getting regular critical updates, but you'll no longer get optional updates + +264 +00:10:13,960 --> 00:10:14,540 +of any type. + +265 +00:10:15,880 --> 00:10:17,620 +And you get to stay. + +266 +00:10:17,700 --> 00:10:21,960 +You get to hang out in Windows 7 for as long as you like. + +267 +00:10:22,640 --> 00:10:26,920 +But just know that the opportunity to upgrade for free ends at the end of July. + +268 +00:10:27,140 --> 00:10:27,520 +Right. + +269 +00:10:28,620 --> 00:10:28,940 +Okay. + +270 +00:10:28,980 --> 00:10:30,620 +Well, I guess I have to think about that. + +271 +00:10:30,680 --> 00:10:31,760 +What do I want to do here then? + +272 +00:10:32,080 --> 00:10:32,600 +All right. + +273 +00:10:32,640 --> 00:10:33,620 +Well, thanks for the call, Dave. + +274 +00:10:33,780 --> 00:10:34,460 +Well, thank you. + +275 +00:10:34,600 --> 00:10:35,440 +Have a nice day. + +276 +00:10:35,680 --> 00:10:36,000 +Bye. + +277 +00:10:36,300 --> 00:10:38,000 +Let's take a moment to mention our sponsor. + +278 +00:10:38,440 --> 00:10:40,220 +That would be Perfection Auto Works. + +279 +00:10:41,820 --> 00:10:42,800 +You can go to their website. + +280 +00:10:42,900 --> 00:10:43,280 +It's new. + +281 +00:10:43,800 --> 00:10:44,400 +PerfectionAutoWorks.com. + +282 +00:10:44,480 --> 00:10:45,440 +Well, is it still new? + +283 +00:10:45,500 --> 00:10:46,540 +We've been saying that for six months. + +284 +00:10:46,760 --> 00:10:48,880 +Well, I mean, based on how long they had their old site. + +285 +00:10:49,220 --> 00:10:49,940 +Yeah, it's new. + +286 +00:10:50,080 --> 00:10:50,400 +It's still new. + +287 +00:10:50,840 --> 00:10:51,480 +PerfectionAutoWorks.com. + +288 +00:10:51,520 --> 00:10:52,000 +Go check it out. + +289 +00:10:52,100 --> 00:10:54,500 +Get your 26-point inspection for free. + +290 +00:10:54,960 --> 00:10:57,860 +I'm sure that your car will love you for it, especially right now. + +291 +00:10:58,740 --> 00:11:01,580 +Yeah, assuming that your tires don't literally melt off of your car. + +292 +00:11:02,140 --> 00:11:03,460 +Take it down to Perfection Auto Works. + +293 +00:11:03,520 --> 00:11:04,720 +The temperature is too darn high. + +294 +00:11:05,000 --> 00:11:06,920 +It's hot. + +295 +00:11:07,780 --> 00:11:08,460 +Holy moly. + +296 +00:11:08,480 --> 00:11:09,100 +We'll be right back. + +297 +00:11:09,140 --> 00:11:14,000 +Listen to their ad coming up next, and we will listen to your phone calls right after this break. + +298 +00:11:14,240 --> 00:11:15,240 +790-2040. + +299 +00:11:15,340 --> 00:11:15,860 +We'll be right back. + +300 +00:11:23,900 --> 00:11:27,900 +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. + +301 +00:11:28,000 --> 00:11:31,800 +Join the chat right now at gurushow.com or call in. + +302 +00:11:31,860 --> 00:11:35,340 +This is the Computer Guru Show on KVOY, The Voice. + +303 +00:11:36,720 --> 00:11:39,840 +I'm dirty and the extreme and lighter than sour cream. + +304 +00:11:40,020 --> 00:11:43,160 +I was in a B-Club and Glee Club and even the chess team. + +305 +00:11:43,260 --> 00:11:44,840 +Only question I ever thought was hard. + +306 +00:11:44,940 --> 00:11:46,520 +What do I like, Kirk, or do I like Picard? + +307 +00:11:46,660 --> 00:11:48,540 +Spend every weekend at the Renaissance Fair. + +308 +00:11:48,640 --> 00:11:49,740 +Got my name on my underwear. + +309 +00:11:50,860 --> 00:11:52,940 +Wow, that's a trip down memory lane. + +310 +00:11:53,560 --> 00:11:56,040 +To like the other day when I was just playing that in my house. + +311 +00:11:56,060 --> 00:11:56,500 +No, I know. + +312 +00:11:56,580 --> 00:11:57,520 +I'm talking about how... + +313 +00:11:57,520 --> 00:11:59,420 +Using that as bumper music. + +314 +00:11:59,660 --> 00:12:00,820 +Yeah, I miss those days. + +315 +00:12:00,940 --> 00:12:03,840 +It hasn't been on the show in years. + +316 +00:12:04,320 --> 00:12:05,580 +In yas, I tell ya. + +317 +00:12:05,680 --> 00:12:06,080 +Yas. + +318 +00:12:06,180 --> 00:12:07,520 +Yes, eons and stuff. + +319 +00:12:08,240 --> 00:12:11,560 +All right, if you'd like to be a part of the show, 790-2040, give us a call. + +320 +00:12:11,880 --> 00:12:13,260 +Let's go ahead and talk to Charles. + +321 +00:12:13,380 --> 00:12:13,800 +Hello, Charles. + +322 +00:12:14,520 --> 00:12:14,880 +Hello. + +323 +00:12:15,740 --> 00:12:18,840 +Boy, I love that Batman spot with Kazachik in the trunk. + +324 +00:12:19,380 --> 00:12:19,780 +What? + +325 +00:12:20,240 --> 00:12:21,980 +Oh, yeah, during the commercial break? + +326 +00:12:22,400 --> 00:12:22,800 +Yeah. + +327 +00:12:24,100 --> 00:12:25,460 +Anyway, I still laugh. + +328 +00:12:27,520 --> 00:12:28,640 +I'm looking for a machine. + +329 +00:12:28,860 --> 00:12:30,420 +I'm not saying this to irritate you. + +330 +00:12:30,480 --> 00:12:34,380 +I'm looking for a machine that runs XP because I don't... + +331 +00:12:35,120 --> 00:12:39,460 +I like the way it's far more user-friendly than Windows 7, + +332 +00:12:39,580 --> 00:12:44,120 +which I just spent $200 getting my computer back from service fixing. + +333 +00:12:45,520 --> 00:12:50,400 +And I'm betting that an XP machine will be cheap to buy if I could find one. + +334 +00:12:50,540 --> 00:12:54,900 +It's not going on the Internet, so I'm not worried about all the vulnerabilities on it. + +335 +00:12:55,080 --> 00:12:57,500 +And it's going to be used almost solely... + +336 +00:12:57,520 --> 00:13:03,040 +It's going to be used solely for production in Adobe Audition for things actually just + +337 +00:13:03,040 --> 00:13:06,280 +like that Batman spot, which was made on an XP machine. + +338 +00:13:06,980 --> 00:13:07,320 +Okay. + +339 +00:13:07,420 --> 00:13:12,740 +So can you direct me to a place? + +340 +00:13:12,820 --> 00:13:15,620 +Or do you have one that's like sitting in the back with dust on it? + +341 +00:13:15,720 --> 00:13:19,660 +I was going to say, you might start checking like dumpsters and those kinds of things. + +342 +00:13:19,880 --> 00:13:20,280 +Doorstops. + +343 +00:13:20,740 --> 00:13:23,880 +Well, there's always the swap shop, but I mean, you know, which I may do. + +344 +00:13:24,040 --> 00:13:26,940 +But the point of the matter is, is that I'm looking for... + +345 +00:13:26,940 --> 00:13:32,240 +One that maybe you used as a test bed for something, or it's been sitting indoors, not outdoors. + +346 +00:13:32,580 --> 00:13:34,780 +You know, because it's expired technology. + +347 +00:13:34,840 --> 00:13:35,600 +I get it. + +348 +00:13:35,840 --> 00:13:36,660 +But I like... + +349 +00:13:36,660 --> 00:13:43,700 +Or is there a way to make Windows 7 work and look more like XP so that it's more user-friendly? + +350 +00:13:43,860 --> 00:13:47,760 +I mean, for instance, you go to save something in Word and you have to save it to your computer. + +351 +00:13:47,880 --> 00:13:51,380 +It won't even let you open it without saving it first to your computer. + +352 +00:13:51,480 --> 00:13:54,980 +There's dumb stuff like that in 7 that was never true in XP. + +353 +00:13:55,280 --> 00:13:56,760 +Actually, that's still true. + +354 +00:13:56,940 --> 00:13:57,660 +That's always true. + +355 +00:13:57,920 --> 00:14:01,020 +The whole, you know, you can't open something unless it exists. + +356 +00:14:01,180 --> 00:14:03,940 +So it does save it to your computer first before it opens it. + +357 +00:14:04,360 --> 00:14:06,500 +Oh, it just did it in the background before. + +358 +00:14:06,500 --> 00:14:07,720 +It puts it in a temp folder. + +359 +00:14:07,960 --> 00:14:09,040 +And 7 does the same thing. + +360 +00:14:09,800 --> 00:14:10,620 +So there's... + +361 +00:14:11,240 --> 00:14:18,300 +I think there's a whole lot of like, we should just sit down sometime and I can just show you that it works the way that XP does. + +362 +00:14:19,080 --> 00:14:23,360 +The only difference is they added a security layer that doesn't allow you to save to the root. + +363 +00:14:24,100 --> 00:14:24,540 +Right? + +364 +00:14:24,580 --> 00:14:25,000 +So... + +365 +00:14:25,000 --> 00:14:26,360 +But for the most part... + +366 +00:14:26,940 --> 00:14:28,960 +XP and 7 are very, very similar. + +367 +00:14:29,940 --> 00:14:30,380 +Okay. + +368 +00:14:30,660 --> 00:14:37,080 +Well, but the thing about it is if I have a machine, if I buy a machine that has expired technology, it costs a lot less. + +369 +00:14:37,180 --> 00:14:40,280 +I like to buy the things that other people don't want. + +370 +00:14:40,420 --> 00:14:42,480 +That was probably true maybe five years ago. + +371 +00:14:43,460 --> 00:14:49,960 +But right now there's a premium on XP machines because if you're buying an XP machine, it's because you need an XP machine. + +372 +00:14:50,340 --> 00:14:51,440 +And they know it. + +373 +00:14:52,220 --> 00:14:54,500 +However, they are available out there on like eBay. + +374 +00:14:55,060 --> 00:14:55,500 +Craigslist. + +375 +00:14:55,660 --> 00:14:56,000 +Craigslist. + +376 +00:14:56,140 --> 00:14:56,640 +I wouldn't... + +377 +00:14:56,940 --> 00:14:59,540 +I don't like buying computers off Craigslist, but eBay is okay. + +378 +00:15:00,220 --> 00:15:04,320 +I like buying it from somebody I know, like, and trust, like yourself. + +379 +00:15:05,100 --> 00:15:12,540 +And so if you've got one or someone you know of that you trust that has machines like that, I'd be open to that. + +380 +00:15:12,740 --> 00:15:13,640 +You know, because I'm... + +381 +00:15:14,140 --> 00:15:16,220 +I'd much rather buy that locally than... + +382 +00:15:16,220 --> 00:15:18,860 +And again, from somebody that I know, like, and trust. + +383 +00:15:18,940 --> 00:15:19,860 +I know somebody has a good... + +384 +00:15:19,860 --> 00:15:26,220 +You'll have to call the office down at 304-8300 because I don't keep track of the old machine inventory. + +385 +00:15:26,940 --> 00:15:27,040 +Right. + +386 +00:15:27,200 --> 00:15:28,520 +I'm out fixing things. + +387 +00:15:28,760 --> 00:15:29,280 +Right. + +388 +00:15:29,420 --> 00:15:34,600 +But, you know, you can talk to Howard or Carl and they can let you know what they've got there. + +389 +00:15:34,820 --> 00:15:38,020 +You could also potentially explore an XP virtual machine. + +390 +00:15:38,480 --> 00:15:39,000 +Right. + +391 +00:15:39,060 --> 00:15:40,220 +You could virtualize a machine. + +392 +00:15:41,200 --> 00:15:41,540 +Okay. + +393 +00:15:41,640 --> 00:15:42,040 +Right. + +394 +00:15:42,180 --> 00:15:46,280 +But basically, I want a computer that's kept off the Internet. + +395 +00:15:46,400 --> 00:15:51,040 +It's just used for mostly one purpose, making radio commercials. + +396 +00:15:51,340 --> 00:15:54,540 +And, you know, and then the sneaker drive. + +397 +00:15:54,620 --> 00:15:56,920 +Take the USB thing and stick it in. + +398 +00:15:56,920 --> 00:15:56,920 + + +399 +00:15:56,920 --> 00:15:56,920 + + +400 +00:15:56,920 --> 00:15:56,920 + + +401 +00:15:56,920 --> 00:15:56,920 + + +402 +00:15:56,940 --> 00:15:58,240 +Take it in the other machine and archive it. + +403 +00:15:58,380 --> 00:15:59,040 +So that... + +404 +00:15:59,040 --> 00:16:00,480 +And that's the machine that gets on the Internet. + +405 +00:16:00,600 --> 00:16:02,360 +That, I have, you know, the most current stuff on. + +406 +00:16:02,360 --> 00:16:02,540 +Right. + +407 +00:16:02,540 --> 00:16:06,540 +So you could do something similar with, like, if you have a nice newer computer. + +408 +00:16:07,140 --> 00:16:07,500 +Yeah. + +409 +00:16:07,580 --> 00:16:13,480 +You could virtualize a copy of XP that would be its own standalone machine inside the other one, + +410 +00:16:13,580 --> 00:16:14,660 +which doesn't get on the Internet. + +411 +00:16:15,420 --> 00:16:17,640 +And you guys would be willing to build one of those for me? + +412 +00:16:17,780 --> 00:16:18,060 +Of course. + +413 +00:16:19,040 --> 00:16:19,400 +Okay. + +414 +00:16:20,080 --> 00:16:21,040 +Maybe we should talk. + +415 +00:16:21,400 --> 00:16:22,360 +Of course we should talk. + +416 +00:16:22,580 --> 00:16:25,440 +I don't know where you took your computer to get it fixed before, but I'm offended. + +417 +00:16:27,900 --> 00:16:35,900 +Well, somebody who has, who about six generations ago had the computer show on the station. + +418 +00:16:36,080 --> 00:16:36,660 +Oh, okay. + +419 +00:16:36,880 --> 00:16:37,900 +It's a trusted guy. + +420 +00:16:38,080 --> 00:16:38,340 +All right. + +421 +00:16:38,340 --> 00:16:39,020 +You want me to say his name? + +422 +00:16:39,360 --> 00:16:40,960 +I don't care. + +423 +00:16:41,120 --> 00:16:41,800 +Go for it, Todd. + +424 +00:16:42,100 --> 00:16:42,780 +Dave Mason. + +425 +00:16:42,940 --> 00:16:43,300 +Oh. + +426 +00:16:43,440 --> 00:16:44,580 +Yeah, I like Dave. + +427 +00:16:44,980 --> 00:16:49,660 +Dave is a friend, and so, and I've done business with him for years, so I just, and again, + +428 +00:16:49,800 --> 00:16:51,040 +I know, like, and trust him. + +429 +00:16:51,100 --> 00:16:52,300 +Tell Dave to give me a call sometime. + +430 +00:16:52,600 --> 00:16:53,440 +And give the shop a call. + +431 +00:16:53,440 --> 00:16:54,840 +They can get you set up with a virtual machine. + +432 +00:16:55,060 --> 00:16:55,340 +Yeah. + +433 +00:16:55,360 --> 00:16:55,880 +I will. + +434 +00:16:56,480 --> 00:16:56,920 +All right. + +435 +00:16:56,940 --> 00:16:57,920 +Thanks for the call, Charles. + +436 +00:16:57,940 --> 00:16:58,220 +That's what I should. + +437 +00:16:58,340 --> 00:16:59,400 +You do a wonderful show. + +438 +00:16:59,480 --> 00:17:00,220 +You should expand it. + +439 +00:17:00,380 --> 00:17:01,000 +I should, huh? + +440 +00:17:01,440 --> 00:17:02,080 +Yeah, you should. + +441 +00:17:02,380 --> 00:17:02,980 +You should really think about it. + +442 +00:17:02,980 --> 00:17:03,100 +I might. + +443 +00:17:03,200 --> 00:17:04,120 +I'll think about it. + +444 +00:17:04,160 --> 00:17:04,800 +I'll let you know. + +445 +00:17:04,920 --> 00:17:04,940 +All right. + +446 +00:17:04,940 --> 00:17:05,180 +See you. + +447 +00:17:05,220 --> 00:17:05,520 +Bye. + +448 +00:17:05,720 --> 00:17:06,020 +Bye. + +449 +00:17:07,660 --> 00:17:08,760 +Do you want to take this other call? + +450 +00:17:08,960 --> 00:17:10,260 +Yeah, let's go ahead and take it. + +451 +00:17:10,300 --> 00:17:11,060 +Let's go ahead and talk to Tom. + +452 +00:17:11,100 --> 00:17:11,520 +Hello, Tom. + +453 +00:17:11,580 --> 00:17:11,980 +How are you? + +454 +00:17:12,120 --> 00:17:12,360 +Hi. + +455 +00:17:12,500 --> 00:17:13,560 +Thanks for taking my call. + +456 +00:17:13,960 --> 00:17:18,660 +Hey, I'm getting ready to upgrade to 10, and I'm looking at my uninstall a change program + +457 +00:17:19,120 --> 00:17:19,440 +area. + +458 +00:17:19,960 --> 00:17:20,280 +Right. + +459 +00:17:20,580 --> 00:17:23,640 +There's a couple programs I wanted to ask you about, if I should remove them before + +460 +00:17:23,640 --> 00:17:24,120 +I do that. + +461 +00:17:25,340 --> 00:17:25,980 +All right. + +462 +00:17:25,980 --> 00:17:26,060 +Yes. + +463 +00:17:26,640 --> 00:17:27,120 +Okay. + +464 +00:17:27,160 --> 00:17:29,340 +How about like Pulse Secure Setup Client? + +465 +00:17:30,040 --> 00:17:31,320 +I don't think that'll matter. + +466 +00:17:32,000 --> 00:17:33,140 +Do you know what that is? + +467 +00:17:33,580 --> 00:17:34,660 +Not off the top of my head, no. + +468 +00:17:35,160 --> 00:17:38,080 +But I haven't heard anything about anything like that. + +469 +00:17:38,200 --> 00:17:42,640 +The stuff that's important is, do you have the NVIDIA Experience software installed? + +470 +00:17:43,300 --> 00:17:43,680 +No. + +471 +00:17:43,780 --> 00:17:44,200 +No. + +472 +00:17:44,420 --> 00:17:53,320 +It basically comes down to antivirus and NVIDIA software and things like firewalls. + +473 +00:17:53,340 --> 00:17:55,760 +Does the ATI equivalent make any difference? + +474 +00:17:56,240 --> 00:17:56,640 +Yeah. + +475 +00:17:56,740 --> 00:17:57,820 +I would pull that off, too. + +476 +00:17:57,920 --> 00:17:58,380 +Crossfire, all that. + +477 +00:17:58,420 --> 00:17:58,600 +Yeah. + +478 +00:17:58,640 --> 00:18:02,300 +So if you have ATI software on there for your video card, anything that's video card related, + +479 +00:18:02,480 --> 00:18:03,080 +just pull it. + +480 +00:18:03,320 --> 00:18:03,720 +Okay. + +481 +00:18:03,760 --> 00:18:04,700 +How about Malwarebytes? + +482 +00:18:05,080 --> 00:18:05,740 +Malwarebytes can stay. + +483 +00:18:06,300 --> 00:18:06,700 +Okay. + +484 +00:18:06,760 --> 00:18:09,060 +And Google Chrome and- + +485 +00:18:09,060 --> 00:18:09,280 +Yeah. + +486 +00:18:09,300 --> 00:18:09,960 +That's all fine. + +487 +00:18:10,560 --> 00:18:10,960 +Chromecraft. + +488 +00:18:11,160 --> 00:18:11,400 +Okay. + +489 +00:18:11,720 --> 00:18:12,120 +Great. + +490 +00:18:12,160 --> 00:18:12,320 +Yeah. + +491 +00:18:12,320 --> 00:18:16,100 +Mostly the stuff that we're concerned about is if it directly interfaces with hardware, + +492 +00:18:16,320 --> 00:18:24,420 +like antivirus directly interfaces with your network card, and your video software directly + +493 +00:18:24,420 --> 00:18:25,580 +interfaces with your video card. + +494 +00:18:25,640 --> 00:18:25,960 +Yeah. + +495 +00:18:25,960 --> 00:18:25,960 + + +496 +00:18:25,960 --> 00:18:31,160 +So we're looking for things that directly interface with hardware that should be removed. + +497 +00:18:31,520 --> 00:18:36,280 +That way, when it does the upgrade, it finds the proper versions, puts them on itself during + +498 +00:18:36,280 --> 00:18:39,280 +the upgrade, and then you can reinstall whatever you took off. + +499 +00:18:39,540 --> 00:18:41,560 +So my printer driver then, take that off? + +500 +00:18:42,200 --> 00:18:44,440 +Now most printer drivers are not a problem. + +501 +00:18:44,580 --> 00:18:45,700 +What kind of printer do you have? + +502 +00:18:46,120 --> 00:18:46,540 +HP. + +503 +00:18:46,700 --> 00:18:47,080 +Yeah. + +504 +00:18:47,100 --> 00:18:48,320 +HPs aren't going to be an issue. + +505 +00:18:48,600 --> 00:18:54,520 +We've seen some issues with Epson's, because the Epson's are ... Those are some crazy drivers + +506 +00:18:54,520 --> 00:18:55,340 +they put on those things. + +507 +00:18:55,960 --> 00:18:57,420 +But the HP ones seem to be fine. + +508 +00:18:57,940 --> 00:18:58,300 +Okay. + +509 +00:18:58,360 --> 00:18:58,720 +Great. + +510 +00:18:58,820 --> 00:18:59,280 +Thanks a lot. + +511 +00:18:59,480 --> 00:18:59,760 +All right. + +512 +00:18:59,800 --> 00:19:00,580 +Thanks for the call, Tom. + +513 +00:19:01,620 --> 00:19:01,980 +Yeah. + +514 +00:19:02,100 --> 00:19:03,980 +Just be careful when you're doing your upgrade. + +515 +00:19:04,200 --> 00:19:08,200 +You know, I can't wait until it's like a year from now and Windows 10 has been embraced + +516 +00:19:08,200 --> 00:19:10,400 +and everybody's fine with it again. + +517 +00:19:10,880 --> 00:19:11,240 +Yeah. + +518 +00:19:11,760 --> 00:19:13,980 +Well, this is the last version, according to Microsoft. + +519 +00:19:14,120 --> 00:19:14,240 +Yeah. + +520 +00:19:14,280 --> 00:19:15,220 +It's the final version. + +521 +00:19:15,480 --> 00:19:15,700 +All right. + +522 +00:19:17,480 --> 00:19:20,220 +And people have been asking me that, and I guess we should probably cover it. + +523 +00:19:20,280 --> 00:19:22,440 +They're like, so I'll just wait for the next one. + +524 +00:19:22,520 --> 00:19:23,800 +I'm like, there is no next one. + +525 +00:19:24,040 --> 00:19:24,400 +Yeah. + +526 +00:19:24,400 --> 00:19:25,380 +I mean, in a manner of speaking. + +527 +00:19:25,600 --> 00:19:28,300 +Ten years from now, it's going to be way different than Windows 10. + +528 +00:19:28,840 --> 00:19:29,200 +Right. + +529 +00:19:29,240 --> 00:19:34,200 +But they're going the Mac route, which is sort of the evolution of a singular platform. + +530 +00:19:35,780 --> 00:19:37,820 +I hope they give them better names than Mac does, though. + +531 +00:19:38,580 --> 00:19:38,900 +Yeah. + +532 +00:19:39,020 --> 00:19:39,820 +I don't know. + +533 +00:19:39,820 --> 00:19:42,060 +El Capitan and Yosemite. + +534 +00:19:42,060 --> 00:19:44,360 +Well, the new one is called Sierra. + +535 +00:19:44,880 --> 00:19:45,240 +Sierra. + +536 +00:19:45,240 --> 00:19:45,660 +Which is kind of a nice name. + +537 +00:19:45,660 --> 00:19:46,320 +That's not bad, I guess. + +538 +00:19:46,520 --> 00:19:46,540 +Yeah. + +539 +00:19:47,080 --> 00:19:48,160 +But Snow Leopard? + +540 +00:19:48,560 --> 00:19:49,140 +Come on. + +541 +00:19:50,540 --> 00:19:53,880 +Anyway, so there is no next version, in a manner of speaking. + +542 +00:19:54,020 --> 00:19:54,380 +Yeah. + +543 +00:19:54,380 --> 00:19:54,380 + + +544 +00:19:54,380 --> 00:19:54,380 + + +545 +00:19:54,400 --> 00:20:04,400 +So, just like Mac OS X, which came out 12 years ago, is still sort of the thing, even + +546 +00:20:04,400 --> 00:20:06,020 +though they refuse to call it OS X now. + +547 +00:20:06,280 --> 00:20:06,760 +Yeah. + +548 +00:20:08,380 --> 00:20:15,620 +It's been effectively a slow, gradual, minor upgrade process over the number of years. + +549 +00:20:16,100 --> 00:20:20,500 +And that's what Microsoft is planning to do now, is that they're going to get everybody + +550 +00:20:20,500 --> 00:20:20,980 +on 10. + +551 +00:20:21,120 --> 00:20:21,440 +Yeah. + +552 +00:20:21,520 --> 00:20:24,380 +And then they're going to do like, you know, 10 point whatever. + +553 +00:20:24,380 --> 00:20:25,060 +Right? + +554 +00:20:25,220 --> 00:20:28,580 +There should not be an 11 in the future. + +555 +00:20:28,780 --> 00:20:32,420 +And ultimately, you know, I know that a lot of people are hostile to the Windows 10 upgrade, + +556 +00:20:32,480 --> 00:20:34,960 +and it's kind of, you know, it's bad how they're forcing it on people. + +557 +00:20:35,200 --> 00:20:37,200 +But it's because of security concerns. + +558 +00:20:37,460 --> 00:20:39,680 +You know, 7 is very old at this point. + +559 +00:20:39,960 --> 00:20:40,360 +Yep. + +560 +00:20:40,820 --> 00:20:42,620 +Everybody's like, but I love me some 7. + +561 +00:20:42,680 --> 00:20:45,040 +Or in Charles' case, I love me some XP. + +562 +00:20:45,780 --> 00:20:49,040 +I can't wait until there's some guy who calls in and is like, I'm trying to run a Windows + +563 +00:20:49,040 --> 00:20:49,720 +3 machine. + +564 +00:20:50,160 --> 00:20:53,020 +I need a machine that only runs DOS. + +565 +00:20:53,960 --> 00:20:54,360 +We've got to get it. + +566 +00:20:54,360 --> 00:20:54,360 + + +567 +00:20:54,360 --> 00:20:54,360 + + +568 +00:20:54,360 --> 00:20:54,360 + + +569 +00:20:54,360 --> 00:20:54,360 + + +570 +00:20:54,360 --> 00:20:54,360 + + +571 +00:20:54,360 --> 00:20:54,360 + + +572 +00:20:54,360 --> 00:20:54,360 + + +573 +00:20:54,360 --> 00:20:54,360 + + +574 +00:20:54,360 --> 00:20:54,360 + + +575 +00:20:54,360 --> 00:20:54,360 + + +576 +00:20:54,360 --> 00:20:54,360 + + +577 +00:20:54,360 --> 00:20:54,360 + + +578 +00:20:54,360 --> 00:20:54,360 + + +579 +00:20:54,360 --> 00:20:54,360 + + +580 +00:20:54,380 --> 00:21:00,000 +We had one of those that came into the shop recently where the newest software he could + +581 +00:21:00,000 --> 00:21:00,780 +run on there was 98. + +582 +00:21:02,000 --> 00:21:05,300 +I think I remember that because I really wanted to, I was like, can we just take an extra + +583 +00:21:05,300 --> 00:21:07,360 +day so I can put Doom 98 on this and play it? + +584 +00:21:07,460 --> 00:21:09,340 +The techs were like, no, go away. + +585 +00:21:09,600 --> 00:21:11,520 +And see, this is one of those problems. + +586 +00:21:11,820 --> 00:21:15,220 +We tell people, you don't do the bleeding edge upgrades. + +587 +00:21:16,000 --> 00:21:21,280 +Don't do the like, upgrade immediately as soon as it's out there because you're going + +588 +00:21:21,280 --> 00:21:21,720 +to hurt yourself. + +589 +00:21:22,140 --> 00:21:22,520 +Right? + +590 +00:21:22,520 --> 00:21:29,200 +So at the same time, if you wait too long, if you get to the point where Windows XP is + +591 +00:21:29,200 --> 00:21:35,820 +still on your machine and it's been completely unserviceable by Microsoft for seven years, + +592 +00:21:36,800 --> 00:21:38,840 +you've painted yourself into an upgrade corner. + +593 +00:21:39,020 --> 00:21:40,500 +You can't upgrade at that point. + +594 +00:21:40,880 --> 00:21:45,900 +So before your upgrade ability expires, you should upgrade. + +595 +00:21:46,180 --> 00:21:49,320 +Not to mention that the upgrade shock that people get where they're like, Windows 10 + +596 +00:21:49,320 --> 00:21:50,300 +is just so much different. + +597 +00:21:50,400 --> 00:21:52,000 +That happens because you don't upgrade. + +598 +00:21:52,000 --> 00:21:55,120 +If you're on XP and then you jump to Windows 10, yeah, it's way different. + +599 +00:21:55,380 --> 00:21:55,540 +Right. + +600 +00:21:55,580 --> 00:21:57,280 +It's a huge difference if you're going from XP. + +601 +00:21:58,320 --> 00:22:03,320 +However, if you did like most of us did, which is you went to seven, then you went to eight, + +602 +00:22:03,340 --> 00:22:06,760 +and then you went back to seven, then you went to 10, yeah, it's not that big of a deal. + +603 +00:22:08,160 --> 00:22:09,800 +You forgot Vista and that whole thing. + +604 +00:22:11,020 --> 00:22:12,360 +We shall not name it. + +605 +00:22:12,360 --> 00:22:13,660 +We don't speak that name here. + +606 +00:22:14,160 --> 00:22:18,420 +There's two operating systems we don't say, Vista and Millennium. + +607 +00:22:18,480 --> 00:22:19,100 +Yeah, I was going to say. + +608 +00:22:19,160 --> 00:22:20,860 +Yeah, those don't exist. + +609 +00:22:21,620 --> 00:22:21,980 +Yeah. + +610 +00:22:21,980 --> 00:22:24,740 +There's just terrible, terrible pieces of software. + +611 +00:22:25,880 --> 00:22:28,480 +Oh, that's just gross. + +612 +00:22:29,080 --> 00:22:30,880 +I can't believe you mentioned that on the show. + +613 +00:22:31,020 --> 00:22:33,100 +Vista made us appreciate seven even more. + +614 +00:22:33,180 --> 00:22:33,860 +Is that what it is? + +615 +00:22:33,980 --> 00:22:34,100 +Yeah. + +616 +00:22:34,860 --> 00:22:36,740 +Give us a call, 790-2040. + +617 +00:22:36,840 --> 00:22:37,660 +We'll be right back. + +618 +00:22:47,380 --> 00:22:51,280 +Whether you're dealing with hardware installation or heaven forbid, a virus. + +619 +00:22:51,360 --> 00:22:51,500 +Oh. + +620 +00:22:51,560 --> 00:22:51,960 +I'm sorry. + +621 +00:22:51,960 --> 00:22:51,960 + + +622 +00:22:51,960 --> 00:22:51,960 + + +623 +00:22:51,960 --> 00:22:51,960 + + +624 +00:22:51,960 --> 00:22:51,960 + + +625 +00:22:51,960 --> 00:22:51,960 + + +626 +00:22:51,960 --> 00:22:51,960 + + +627 +00:22:51,960 --> 00:22:51,960 + + +628 +00:22:51,960 --> 00:22:51,960 + + +629 +00:22:51,960 --> 00:22:51,960 + + +630 +00:22:51,960 --> 00:22:51,960 + + +631 +00:22:51,960 --> 00:22:51,960 + + +632 +00:22:51,960 --> 00:22:51,960 + + +633 +00:22:51,960 --> 00:22:51,960 + + +634 +00:22:51,960 --> 00:22:51,960 + + +635 +00:22:51,960 --> 00:22:51,960 + + +636 +00:22:51,960 --> 00:22:51,960 + + +637 +00:22:51,960 --> 00:22:51,960 + + +638 +00:22:51,960 --> 00:22:51,960 + + +639 +00:22:51,960 --> 00:22:51,960 + + +640 +00:22:51,960 --> 00:22:52,380 +No. + +641 +00:22:52,380 --> 00:22:52,680 +No. + +642 +00:22:53,180 --> 00:22:56,440 +Mike Swanson is answering all your questions one by one. + +643 +00:22:56,540 --> 00:22:58,560 +So call in or chat in with yours. + +644 +00:22:58,840 --> 00:23:01,080 +The website gurushow.com. + +645 +00:23:01,880 --> 00:23:03,680 +Tune in, click in and kick back. + +646 +00:23:03,900 --> 00:23:08,700 +This is the Computer Guru Show on AM1030 KVOY The Voice. + +647 +00:23:18,700 --> 00:23:21,900 +Mike Swanson, your computer guru, is just a click away. + +648 +00:23:21,940 --> 00:23:21,940 + + +649 +00:23:21,940 --> 00:23:21,940 + + +650 +00:23:21,940 --> 00:23:21,940 + + +651 +00:23:21,940 --> 00:23:21,940 + + +652 +00:23:21,940 --> 00:23:24,500 +Listen and watch at gurushow.com. + +653 +00:23:24,880 --> 00:23:26,680 +This is the Computer Guru Show. + +654 +00:23:27,320 --> 00:23:28,500 +Welcome to my world. + +655 +00:23:28,500 --> 00:23:30,020 +Welcome back to the Computer Guru Show. + +656 +00:23:30,060 --> 00:23:34,140 +My name's Mike, here to deal with your technology needs and treat you like a person in the process. + +657 +00:23:35,120 --> 00:23:36,720 +790-2040 if you want to be a part of the show. + +658 +00:23:37,920 --> 00:23:38,440 +What do you think? + +659 +00:23:38,460 --> 00:23:39,100 +Calls first or? + +660 +00:23:39,280 --> 00:23:39,820 +Yeah, I might as well. + +661 +00:23:39,940 --> 00:23:40,060 +Yeah. + +662 +00:23:40,060 --> 00:23:40,200 +All right. + +663 +00:23:40,200 --> 00:23:40,960 +Let's go ahead and talk to Dave. + +664 +00:23:41,140 --> 00:23:41,660 +Hey, Dave. + +665 +00:23:41,700 --> 00:23:42,000 +How are you? + +666 +00:23:42,940 --> 00:23:43,300 +Okay. + +667 +00:23:43,620 --> 00:23:44,080 +How are you? + +668 +00:23:44,400 --> 00:23:44,760 +Lovely. + +669 +00:23:46,000 --> 00:23:51,920 +Well, a few months ago or like three months ago or so, I upgraded from 8.1 to 1.2. + +670 +00:23:51,920 --> 00:23:51,920 + + +671 +00:23:51,920 --> 00:23:51,920 + + +672 +00:23:51,920 --> 00:23:51,920 + + +673 +00:23:51,920 --> 00:23:51,920 + + +674 +00:23:51,940 --> 00:23:52,460 +I'm using Windows 10. + +675 +00:23:53,060 --> 00:23:53,540 +Okay. + +676 +00:23:53,680 --> 00:23:55,580 +And it is awful. + +677 +00:23:56,280 --> 00:23:56,940 +How so? + +678 +00:23:57,100 --> 00:23:59,080 +Everything is so unbelievably slow. + +679 +00:23:59,200 --> 00:24:04,640 +I click onto a browser window, it takes like a minute or two to even open it. + +680 +00:24:04,700 --> 00:24:08,100 +It just sits there and you look at the screen, nothing happens. + +681 +00:24:08,300 --> 00:24:09,440 +Which antivirus do you have on there? + +682 +00:24:09,440 --> 00:24:11,720 +My browser's always crashing, everything. + +683 +00:24:12,000 --> 00:24:12,380 +What's that? + +684 +00:24:12,500 --> 00:24:13,660 +Which antivirus do you have on there? + +685 +00:24:15,540 --> 00:24:16,020 +Kaspersky. + +686 +00:24:16,780 --> 00:24:17,260 +Okay. + +687 +00:24:17,900 --> 00:24:18,720 +That's your answer. + +688 +00:24:19,160 --> 00:24:21,820 +So you upgraded with the antivirus on there already. + +689 +00:24:21,820 --> 00:24:21,920 +Yeah. + +690 +00:24:21,920 --> 00:24:21,920 + + +691 +00:24:21,920 --> 00:24:21,920 + + +692 +00:24:21,940 --> 00:24:22,420 +I have that already I imagine. + +693 +00:24:23,620 --> 00:24:28,300 +Not to mention that first of all, don't upgrade with your antivirus installed because it causes + +694 +00:24:28,300 --> 00:24:29,180 +major problems. + +695 +00:24:29,280 --> 00:24:30,500 +I got it uninstalled before the upgrade. + +696 +00:24:31,240 --> 00:24:31,640 +Secondly. + +697 +00:24:31,760 --> 00:24:32,640 +Oh, I did that. + +698 +00:24:32,740 --> 00:24:33,200 +I did that. + +699 +00:24:33,400 --> 00:24:34,480 +Secondly, Kaspersky. + +700 +00:24:34,480 --> 00:24:35,040 +Because it says that on the install. + +701 +00:24:35,140 --> 00:24:36,820 +You have to disable it. + +702 +00:24:37,480 --> 00:24:38,240 +So I disabled it. + +703 +00:24:38,300 --> 00:24:40,000 +I upgraded it and then I re-enabled it. + +704 +00:24:40,040 --> 00:24:41,080 +This is not disable. + +705 +00:24:41,380 --> 00:24:42,400 +This is uninstall. + +706 +00:24:43,160 --> 00:24:46,280 +Like take it completely off the computer before you upgrade. + +707 +00:24:47,840 --> 00:24:49,180 +Now, second part of this. + +708 +00:24:49,860 --> 00:24:51,080 +Kaspersky is a dog. + +709 +00:24:51,520 --> 00:24:51,920 +Okay. + +710 +00:24:51,940 --> 00:24:53,500 +It's a great antivirus, don't get me wrong. + +711 +00:24:53,620 --> 00:24:55,180 +It's a fantastic antivirus. + +712 +00:24:55,800 --> 00:24:57,960 +But it makes everything slow. + +713 +00:24:58,540 --> 00:25:01,900 +Now, I think that yours is mostly slow because it got broken during the upgrade. + +714 +00:25:02,420 --> 00:25:09,620 +So if you were to completely uninstall Kaspersky, use a utility like Revo or something to help you uninstall that. + +715 +00:25:09,980 --> 00:25:13,460 +And then reinstall Kaspersky, it will probably be considerably better. + +716 +00:25:14,000 --> 00:25:15,480 +Second, what kind of machine is this? + +717 +00:25:16,300 --> 00:25:17,340 +It's a Toshiba. + +718 +00:25:17,600 --> 00:25:18,420 +How old is it? + +719 +00:25:18,680 --> 00:25:20,660 +Laptop, two years old. + +720 +00:25:20,860 --> 00:25:21,660 +Like two? Okay. + +721 +00:25:22,460 --> 00:25:32,540 +So if it is less than two years old or less than three years old, then you should be fine as far as hard drive and all of that is concerned. + +722 +00:25:32,680 --> 00:25:36,300 +So I'd imagine completely uninstall any antivirus apps that you have. + +723 +00:25:37,900 --> 00:25:40,680 +And here's the reason why it jacks things up. + +724 +00:25:41,120 --> 00:25:46,400 +When you do the upgrade, Windows is sort of blind to your antivirus setup. + +725 +00:25:47,020 --> 00:25:51,060 +So it assumes that it needs to enable its built-in antivirus. + +726 +00:25:51,180 --> 00:25:51,920 +It's called Defender. + +727 +00:25:51,940 --> 00:25:52,040 +Defender. + +728 +00:25:52,820 --> 00:25:53,260 +Okay. + +729 +00:25:53,440 --> 00:25:58,820 +And so whenever you have two antiviruses on a machine, oh, believe me, they don't get along. + +730 +00:25:59,700 --> 00:26:03,380 +And so everything gets very, very slow. + +731 +00:26:04,420 --> 00:26:05,860 +So uninstall the antivirus. + +732 +00:26:06,500 --> 00:26:09,320 +And when you do that, it's going to say, hey, guess what? + +733 +00:26:09,380 --> 00:26:10,340 +We've turned on Defender. + +734 +00:26:10,540 --> 00:26:11,420 +Defender's all happy. + +735 +00:26:11,980 --> 00:26:12,740 +Everything's great. + +736 +00:26:13,000 --> 00:26:16,900 +Then you install Kaspersky, and Kaspersky will disable Defender. + +737 +00:26:16,980 --> 00:26:18,140 +And everything should be better. + +738 +00:26:18,920 --> 00:26:19,360 +Okay. + +739 +00:26:19,880 --> 00:26:21,920 +Now, you could choose a lighter antivirus. + +740 +00:26:23,500 --> 00:26:33,220 +We don't particularly care for the sort of heavy, slow, basically the antiviruses that you have to pay for that just slow your machine down. + +741 +00:26:33,680 --> 00:26:36,360 +So you could pick something lighter if you want. + +742 +00:26:36,500 --> 00:26:42,360 +But if you're happy with Kaspersky and that's what you want to use, then by all means continue to do so. + +743 +00:26:42,420 --> 00:26:48,060 +But use something like Revo to utterly annihilate Kaspersky off the machine. + +744 +00:26:48,840 --> 00:26:49,280 +Okay. + +745 +00:26:49,400 --> 00:26:49,540 +Okay. + +746 +00:26:49,980 --> 00:26:50,040 +Yeah. + +747 +00:26:50,140 --> 00:26:51,860 +Well, we have Kaspersky on all of our. + +748 +00:26:51,940 --> 00:26:53,040 +So we got like a. + +749 +00:26:53,440 --> 00:26:56,020 +Yeah, everybody usually gets the home pack, and they put it on everything. + +750 +00:26:57,140 --> 00:27:01,440 +You will notice a dramatic difference in speed just by uninstalling Kaspersky. + +751 +00:27:02,540 --> 00:27:02,940 +Okay. + +752 +00:27:03,060 --> 00:27:04,960 +So give that a shot and let me know. + +753 +00:27:05,440 --> 00:27:05,960 +Thank you. + +754 +00:27:06,040 --> 00:27:06,380 +All right. + +755 +00:27:07,240 --> 00:27:07,840 +All right. + +756 +00:27:07,840 --> 00:27:08,660 +Let's go ahead and talk to Tom. + +757 +00:27:09,100 --> 00:27:09,940 +Tom, how are you? + +758 +00:27:10,220 --> 00:27:10,620 +Hi. + +759 +00:27:10,640 --> 00:27:10,840 +Hey. + +760 +00:27:11,440 --> 00:27:16,260 +I got a question regarding viruses upgrading to 10 virus protectors. + +761 +00:27:16,340 --> 00:27:16,700 +Yep. + +762 +00:27:16,700 --> 00:27:18,620 +What about Microsoft Security Essentials? + +763 +00:27:18,640 --> 00:27:19,220 +All antivirus. + +764 +00:27:19,280 --> 00:27:20,860 +If it's antivirus, uninstall it. + +765 +00:27:20,980 --> 00:27:21,320 +Okay. + +766 +00:27:21,320 --> 00:27:21,920 +So uninstall it. + +767 +00:27:21,940 --> 00:27:23,520 +Uninstall Microsoft Security Essentials. + +768 +00:27:23,560 --> 00:27:23,760 +Yep. + +769 +00:27:23,960 --> 00:27:27,400 +Because Essentials is actually a dead product as of Windows 7. + +770 +00:27:27,540 --> 00:27:29,120 +It's the last version it works on. + +771 +00:27:30,100 --> 00:27:30,620 +Uh-huh. + +772 +00:27:30,740 --> 00:27:32,460 +So, yeah, uninstall it. + +773 +00:27:32,700 --> 00:27:33,580 +Do your upgrade. + +774 +00:27:33,720 --> 00:27:38,000 +You don't have to reinstall Essentials because Defender's built in, which is the replacement + +775 +00:27:38,000 --> 00:27:38,820 +for Essentials. + +776 +00:27:38,820 --> 00:27:38,940 +The new version. + +777 +00:27:39,680 --> 00:27:40,080 +Okay. + +778 +00:27:40,120 --> 00:27:43,820 +So uninstall Microsoft Security Essentials first, and we'll get Defender when we upgrade. + +779 +00:27:44,040 --> 00:27:44,340 +Correct. + +780 +00:27:44,720 --> 00:27:45,620 +Thank you very much. + +781 +00:27:45,820 --> 00:27:46,660 +My pleasure. + +782 +00:27:47,240 --> 00:27:48,260 +That was quick and easy. + +783 +00:27:49,320 --> 00:27:50,820 +That's a lot of Windows 10 questions today. + +784 +00:27:51,520 --> 00:27:51,920 +Yeah. + +785 +00:27:51,940 --> 00:27:52,080 +Yeah. + +786 +00:27:52,580 --> 00:27:52,980 +Yeah. + +787 +00:27:53,020 --> 00:27:54,460 +Well, you know, the deadline is coming up. + +788 +00:27:54,520 --> 00:27:56,160 +We need to just start telling people, switch to Linux. + +789 +00:27:57,440 --> 00:27:59,020 +That won't confuse anyone at all. + +790 +00:27:59,480 --> 00:28:00,980 +We did that for a while, though. + +791 +00:28:01,860 --> 00:28:06,800 +When the 8 upgrade, when 8 first came out, we were like, you know what? + +792 +00:28:07,380 --> 00:28:08,000 +Screw this. + +793 +00:28:08,040 --> 00:28:08,700 +Let's go to Linux. + +794 +00:28:08,940 --> 00:28:10,040 +Everybody use Linux now. + +795 +00:28:10,380 --> 00:28:10,600 +Nah. + +796 +00:28:10,680 --> 00:28:12,980 +Real power users just code their own operating systems, Mike. + +797 +00:28:13,140 --> 00:28:13,460 +Oh, yeah. + +798 +00:28:13,580 --> 00:28:13,980 +Yeah. + +799 +00:28:14,220 --> 00:28:15,320 +Real power users. + +800 +00:28:15,620 --> 00:28:16,020 +Yep. + +801 +00:28:16,760 --> 00:28:19,180 +Manipulate the hard drive with magnets. + +802 +00:28:19,780 --> 00:28:20,180 +Right. + +803 +00:28:20,220 --> 00:28:21,520 +You know, rather than actually writing any code. + +804 +00:28:21,640 --> 00:28:21,920 +Right. + +805 +00:28:21,940 --> 00:28:23,420 +You gotta open a port and just suck it. + +806 +00:28:26,320 --> 00:28:31,460 +Have you ever watched, Kent, have you ever watched 24, the Jack Bauer show? + +807 +00:28:31,720 --> 00:28:32,340 +Did you ever see that? + +808 +00:28:32,560 --> 00:28:33,620 +No, I have not. + +809 +00:28:34,240 --> 00:28:36,040 +It's worth it to watch just for the tech speak. + +810 +00:28:36,240 --> 00:28:37,920 +Yeah, just the way they talk about computers. + +811 +00:28:38,140 --> 00:28:38,800 +I'll check it out. + +812 +00:28:39,000 --> 00:28:39,360 +It's... + +813 +00:28:39,860 --> 00:28:41,080 +Open up a port on that firewall. + +814 +00:28:41,220 --> 00:28:41,760 +Patch me through. + +815 +00:28:41,940 --> 00:28:42,500 +That's right. + +816 +00:28:42,980 --> 00:28:43,360 +There's... + +817 +00:28:44,000 --> 00:28:45,040 +It's open up a socket. + +818 +00:28:45,660 --> 00:28:47,300 +My terminal needs a socket opened. + +819 +00:28:48,180 --> 00:28:48,560 +And... + +820 +00:28:48,560 --> 00:28:48,740 +It... + +821 +00:28:50,560 --> 00:28:51,920 +The stuff that really... + +822 +00:28:51,940 --> 00:28:55,820 +The stuff that really killed me about that show is that, you know, anytime that I watch + +823 +00:28:55,820 --> 00:29:01,120 +any show where there's technology involved, there's so much just like, oh, that's not how + +824 +00:29:01,120 --> 00:29:01,600 +that works. + +825 +00:29:01,720 --> 00:29:02,360 +You know? + +826 +00:29:02,500 --> 00:29:02,980 +And... + +827 +00:29:02,980 --> 00:29:04,520 +But, you know, I try to be good about it. + +828 +00:29:04,580 --> 00:29:05,180 +I'm quiet. + +829 +00:29:05,440 --> 00:29:07,340 +I don't say anything generally. + +830 +00:29:07,820 --> 00:29:14,540 +But that show just repeated basically two phrases throughout the whole thing, which + +831 +00:29:14,540 --> 00:29:16,880 +was, I'm going to need you to trust me. + +832 +00:29:17,940 --> 00:29:20,660 +Which was said like every other dialogue. + +833 +00:29:20,660 --> 00:29:21,940 +Every other dialogue sequence. + +834 +00:29:22,740 --> 00:29:26,180 +And then we're going to have to get them to open up a socket. + +835 +00:29:27,160 --> 00:29:29,320 +And first of all, you don't open sockets. + +836 +00:29:29,820 --> 00:29:30,840 +That's not how that works. + +837 +00:29:30,920 --> 00:29:35,200 +The best one of all time is on that show, NCIS, when the two people, to use the computer + +838 +00:29:35,200 --> 00:29:37,540 +faster, they're typing on the same keyboard at the same time. + +839 +00:29:38,720 --> 00:29:39,800 +It's so dumb. + +840 +00:29:43,980 --> 00:29:44,700 +Oh, man. + +841 +00:29:46,020 --> 00:29:49,420 +Everybody knows that, like, when we need to hack faster, we just get more people on the + +842 +00:29:49,420 --> 00:29:49,980 +same keyboard. + +843 +00:29:50,100 --> 00:29:50,640 +It's like 12 people. + +844 +00:29:50,660 --> 00:29:50,980 +Yep. + +845 +00:29:51,700 --> 00:29:55,120 +That's actually how all these hacks happen, is they have like 80 people typing on one + +846 +00:29:55,120 --> 00:29:55,420 +keyboard. + +847 +00:29:55,680 --> 00:29:57,440 +The speed, you can't even comprehend. + +848 +00:29:59,220 --> 00:30:03,760 +Speaking of hacks, did anybody hear that the DNC got hacked? + +849 +00:30:04,040 --> 00:30:04,700 +Big time. + +850 +00:30:04,960 --> 00:30:05,560 +Heard that. + +851 +00:30:05,740 --> 00:30:06,000 +Yeah. + +852 +00:30:08,920 --> 00:30:10,680 +That's a pretty interesting story. + +853 +00:30:10,920 --> 00:30:12,000 +There's a lot going on there. + +854 +00:30:12,140 --> 00:30:14,080 +And all of it is really, really quiet. + +855 +00:30:15,260 --> 00:30:15,960 +Imagine that. + +856 +00:30:16,320 --> 00:30:16,780 +Imagine that. + +857 +00:30:16,780 --> 00:30:17,780 +Imagine the fact that the... + +858 +00:30:19,440 --> 00:30:20,520 +Basically, the highest... + +859 +00:30:20,520 --> 00:30:20,640 +The highest... + +860 +00:30:20,640 --> 00:30:25,880 +The echelons of the government are being really quiet about a gigantic hack. + +861 +00:30:27,040 --> 00:30:35,760 +And, of course, the government is blaming Russian spies, which is, I think, great that + +862 +00:30:35,760 --> 00:30:41,320 +they're blaming them, especially when the hacker came back and he's like, uh, no. + +863 +00:30:41,600 --> 00:30:44,060 +And he's not at all a Russian spy of any kind. + +864 +00:30:44,240 --> 00:30:44,400 +Yeah. + +865 +00:30:44,400 --> 00:30:45,320 +Not a Russian spy. + +866 +00:30:45,580 --> 00:30:49,280 +And then, of course, they said this, you know, they identified the... + +867 +00:30:50,080 --> 00:30:52,360 +This particular thing and, you know, the hack. + +868 +00:30:52,500 --> 00:30:56,860 +And they shut it down because, you know, because they're on top of things, technologically speaking. + +869 +00:30:58,540 --> 00:31:01,920 +And basically, the hacker came back and started taunting them. + +870 +00:31:02,420 --> 00:31:04,980 +And he's like, you didn't know I was in there. + +871 +00:31:06,480 --> 00:31:11,380 +And so they said, well, yeah, well, we know that he only had access to a couple of things. + +872 +00:31:11,960 --> 00:31:14,820 +And so he came back and he said, I was in your system for a year. + +873 +00:31:14,980 --> 00:31:16,480 +You think I downloaded two things? + +874 +00:31:16,640 --> 00:31:17,500 +Do you really think that? + +875 +00:31:17,840 --> 00:31:18,740 +Is that what you think? + +876 +00:31:20,640 --> 00:31:24,180 +And, yeah, it's pretty gnarly. + +877 +00:31:24,420 --> 00:31:27,600 +Some pretty crazy stuff has come out as a result of this hack. + +878 +00:31:28,020 --> 00:31:31,740 +Yeah, like a list of mega donors to the DNC, a... + +879 +00:31:32,400 --> 00:31:34,780 +Complete strategy for their campaign. + +880 +00:31:35,240 --> 00:31:35,500 +Right. + +881 +00:31:35,640 --> 00:31:41,340 +And the most interesting part is, at least to me, and this is definitely not a regular + +882 +00:31:41,340 --> 00:31:45,960 +show topic here, is that there sure is a lot of... + +883 +00:31:45,960 --> 00:31:49,260 +There's a lot of collusion going on behind the scenes. + +884 +00:31:50,700 --> 00:31:51,220 +There's a lot ofSure. + +885 +00:31:52,860 --> 00:31:54,180 +There's a lot of collaboration between different sides of the conversation. + +886 +00:31:54,180 --> 00:31:54,960 +And I think that's part of the reward of the investigation. + +887 +00:31:54,960 --> 00:31:54,960 + + +888 +00:31:54,960 --> 00:31:54,960 + + +889 +00:31:54,960 --> 00:32:00,980 +I've not run into an instance where I think something about one candidate that + +890 +00:32:00,980 --> 00:32:03,780 +undoubtedly isn't true about another. + +891 +00:32:06,460 --> 00:32:14,640 +So it's very interesting to me that there's an active push years in advance for who's + +892 +00:32:14,640 --> 00:32:16,340 +going to be the next president of the United States. + +893 +00:32:16,520 --> 00:32:19,240 +And the thing that really kills me about this that I've mentioned a couple of + +894 +00:32:19,240 --> 00:32:24,300 +times now is that how are we supposed to trust these people to protect our security and our + +895 +00:32:24,300 --> 00:32:28,200 +privacy when they can't even protect their own right and they're the ones calling for weaker + +896 +00:32:28,200 --> 00:32:33,320 +you know encryption they're like yeah that's the ironic thing is that if they had had strong + +897 +00:32:33,320 --> 00:32:39,560 +encryption on their own equipment this could not have happened yeah who knows man they're just + +898 +00:32:40,560 --> 00:32:45,380 +oh they're just dumb this is you know it's like when when a kid puts his hand on the stove and + +899 +00:32:45,380 --> 00:32:51,440 +then gets a burn on his hand and you go do you see why you don't do that now yeah so yeah maybe + +900 +00:32:51,440 --> 00:32:54,740 +maybe we should call for you know they're going to turn into something else though + +901 +00:32:54,740 --> 00:33:00,080 +right it's still going to be a weak a push for weaker encryption because now they want to find + +902 +00:33:00,080 --> 00:33:03,540 +the guy that's actually hidden behind encryption yeah you can't find him because he has the + +903 +00:33:03,540 --> 00:33:09,480 +encryption right so yeah let's let's just burn the whole thing down you know don't worry about + +904 +00:33:09,480 --> 00:33:13,740 +making things better right let's just let's just get angry about it and + +905 +00:33:14,900 --> 00:33:15,300 +it's + +906 +00:33:15,380 --> 00:33:22,400 +dumb all right so yeah there's a whole lot going on with the this DNC hack and it's one of those + +907 +00:33:22,400 --> 00:33:29,220 +things where you know you've got the two faces of the government right or where the government + +908 +00:33:29,220 --> 00:33:34,060 +is speaking out of both sides of its face right so to speak you know with the whole weaker encryption + +909 +00:33:34,060 --> 00:33:42,640 +bit and the all these laws that are put in place to make things more secure because they don't want + +910 +00:33:42,640 --> 00:33:44,540 +hackers they don't want any of these hackers in there + +911 +00:33:45,380 --> 00:33:51,340 +um but they are and they want basically to be in control they're like let us control your + +912 +00:33:51,340 --> 00:33:55,080 +infrastructure because you security guys don't know what you're doing with the threat of throwing + +913 +00:33:55,080 --> 00:34:01,000 +security guys in jail for not allowing the federal government to dictate how security is supposed to + +914 +00:34:01,000 --> 00:34:07,320 +happen in an IT environment however they're not setting the highest you know the bar very high + +915 +00:34:07,320 --> 00:34:12,360 +here well it all goes back to the idea that you know essentially these people are legislating + +916 +00:34:12,360 --> 00:34:15,360 +things that they don't understand you know when when you're in a situation where you're not able to + +917 +00:34:15,380 --> 00:34:19,460 +do anything you have when they're setting up laws that are just so comically bad when it comes to + +918 +00:34:19,460 --> 00:34:24,080 +stuff like encryption the people who actually know what they're doing it's like it's like child's play + +919 +00:34:24,080 --> 00:34:29,880 +to get into their their equipment and their servers this guy was in there for a year and + +920 +00:34:29,880 --> 00:34:36,520 +nobody knew he was there yep just making copies to everything and he uh he sent it all off to + +921 +00:34:36,520 --> 00:34:43,420 +to wikileaks so according to wikileaks they basically say they're they're going to be + +922 +00:34:43,420 --> 00:34:44,900 +dumping tons of information + +923 +00:34:45,600 --> 00:34:49,400 +uh and they're already some of it's already out there but apparently there's a whole lot more + +924 +00:34:50,040 --> 00:34:59,240 +and uh i don't know you know what what clinton did to piss off julian assange but uh he says + +925 +00:34:59,240 --> 00:35:04,240 +there's enough there to indict her and he wants to put it out there in the world okay julian do + +926 +00:35:04,240 --> 00:35:13,240 +what you do you know you have to on some level admire the tenacity of wikileaks yeah in this in + +927 +00:35:13,240 --> 00:35:15,360 +the face of like extreme odds against them + +928 +00:35:15,380 --> 00:35:18,200 +because they're targeting some of the most powerful people in the world + +929 +00:35:18,200 --> 00:35:22,920 +yeah and and when you get even when you even get edward snowden to start tweeting + +930 +00:35:22,920 --> 00:35:29,280 +oh this got interesting you know that's that yeah there's something going on there and + +931 +00:35:30,020 --> 00:35:35,860 +everyone's very tight-lipped about it there's not a whole lot being said but i'm sure just like with + +932 +00:35:35,860 --> 00:35:39,980 +the the panama papers and stuff like that there's going to be there's going to be some stuff out + +933 +00:35:39,980 --> 00:35:43,680 +there yeah i was a little shocked at first to see that this wasn't like headline news and then i was + +934 +00:35:43,680 --> 00:35:45,360 +like oh wait actually yeah of course it's not going to be like headline news and then i was like oh + +935 +00:35:45,380 --> 00:35:45,640 +wait actually yeah of course it's not going to be like headline news and then i was like oh + +936 +00:35:45,640 --> 00:35:49,380 +it's not of course it's not all right let's let's let's chew through some culture let's talk to + +937 +00:35:49,380 --> 00:36:03,300 +mark hello mark hold on hold on a second my windows populating with text anyway um it's done so when i + +938 +00:36:03,300 --> 00:36:10,440 +go to update 10 again another 10 update uh-huh i'm looking at my list to uninstall stuff do i + +939 +00:36:10,440 --> 00:36:15,160 +uninstall windows live essentials 2011 no essentials can stay + +940 +00:36:15,380 --> 00:36:18,780 +okay i thought i had defender but i don't see it in here + +941 +00:36:19,320 --> 00:36:25,240 +well great then it's not there i guess not would it be under microsoft defender or what it was called + +942 +00:36:25,240 --> 00:36:32,080 +that's called microsoft security essentials if you're in seven i am in seven and uh it's not + +943 +00:36:32,080 --> 00:36:39,080 +there all right that for sure i had it so anyway i have um avira i'll take that out good and then + +944 +00:36:39,080 --> 00:36:45,280 +when i put in a new antivirus what would i be just reactivating avira again + +945 +00:36:45,380 --> 00:36:47,040 +Sure, if that's what you want to do. + +946 +00:36:47,360 --> 00:36:48,980 +Well, what's the better one? + +947 +00:36:49,060 --> 00:36:50,560 +What's your choice of the week? + +948 +00:36:50,840 --> 00:36:51,800 +The choice of the week? + +949 +00:36:52,140 --> 00:36:54,180 +We're using Bitdefender right now at the shop. + +950 +00:36:54,400 --> 00:36:55,340 +Is that what they're recommending now? + +951 +00:36:55,480 --> 00:36:55,620 +Yeah. + +952 +00:36:57,100 --> 00:36:57,500 +Bitdefender. + +953 +00:36:57,740 --> 00:36:58,460 +Bitdefender, yeah. + +954 +00:36:58,640 --> 00:36:58,940 +Okay. + +955 +00:36:59,020 --> 00:37:00,720 +Talk to Howard, 304-8300. + +956 +00:37:00,900 --> 00:37:01,480 +He'll tell you everything. + +957 +00:37:02,220 --> 00:37:06,240 +The boy has some strong feelings and opinions about antivirus. + +958 +00:37:06,340 --> 00:37:08,240 +In fact, everybody just call Howard right now. + +959 +00:37:08,240 --> 00:37:08,940 +Yeah, just call Howard. + +960 +00:37:09,600 --> 00:37:10,000 +Everyone. + +961 +00:37:10,400 --> 00:37:11,540 +Just even to say hi. + +962 +00:37:13,440 --> 00:37:13,840 +Okay. + +963 +00:37:14,120 --> 00:37:15,140 +What's the shop number again? + +964 +00:37:16,040 --> 00:37:16,840 +304-8300. + +965 +00:37:17,120 --> 00:37:21,520 +If I get to the shop, though, and Howard burned it down because he got tired of all the phone calls, + +966 +00:37:21,660 --> 00:37:22,420 +that'll be interesting. + +967 +00:37:23,320 --> 00:37:25,000 +He's like, all the phones broke simultaneously. + +968 +00:37:25,240 --> 00:37:26,000 +I don't know what happened. + +969 +00:37:26,480 --> 00:37:26,940 +Don't know. + +970 +00:37:28,720 --> 00:37:32,280 +Anyway, he can talk to you about antivirus and what's recommended there. + +971 +00:37:32,960 --> 00:37:33,360 +Okay. + +972 +00:37:34,000 --> 00:37:35,860 +Okay, great. + +973 +00:37:36,020 --> 00:37:37,280 +I guess that was it. + +974 +00:37:37,360 --> 00:37:39,380 +I'm getting about ready to pull the trigger today. + +975 +00:37:40,080 --> 00:37:41,580 +Yeah, that's what I hear everybody say. + +976 +00:37:41,740 --> 00:37:42,260 +We'll see. + +977 +00:37:42,740 --> 00:37:45,360 +As soon as I back up some stuff that I'm not sure it's done. + +978 +00:37:45,380 --> 00:37:46,880 +Call me next week and you let me know. + +979 +00:37:47,160 --> 00:37:47,560 +Yeah. + +980 +00:37:48,380 --> 00:37:48,940 +Thanks, Mark. + +981 +00:37:49,160 --> 00:37:49,780 +All right, thanks. + +982 +00:37:49,920 --> 00:37:51,120 +All right, Shane, how are you? + +983 +00:37:51,140 --> 00:37:51,760 +How can I help you? + +984 +00:37:52,420 --> 00:37:53,440 +I'm doing great, Mike. + +985 +00:37:53,500 --> 00:37:53,920 +Great show. + +986 +00:37:54,740 --> 00:37:58,880 +Okay, so I'm going to go the full tinfoil hat conspiracy theory nut on you. + +987 +00:37:59,580 --> 00:38:07,700 +So I'm looking at the possibility of trying to get less trackable and less everything basically on the Internet. + +988 +00:38:07,900 --> 00:38:10,880 +I am a supporter of this view. + +989 +00:38:11,600 --> 00:38:12,000 +Okay. + +990 +00:38:12,040 --> 00:38:14,200 +So I've been reading all this stuff about... + +991 +00:38:14,200 --> 00:38:17,440 +I'm possibly instituting, you know, Internet... + +992 +00:38:17,440 --> 00:38:17,980 +What is it? + +993 +00:38:18,040 --> 00:38:18,820 +Internet user IDs? + +994 +00:38:19,260 --> 00:38:20,920 +You know, Europe's real big on it right now. + +995 +00:38:21,020 --> 00:38:23,220 +And I say we're in America to do it so they can track people. + +996 +00:38:23,460 --> 00:38:23,740 +Oh, yeah. + +997 +00:38:23,780 --> 00:38:25,020 +Believe me, that's an upcoming episode. + +998 +00:38:25,960 --> 00:38:28,040 +Oh, I will be listening intently. + +999 +00:38:29,080 --> 00:38:30,320 +I've looked at IPVanish. + +1000 +00:38:30,400 --> 00:38:33,420 +I've looked at a bunch of different VPNs and what countries they're based out of. + +1001 +00:38:34,580 --> 00:38:38,880 +I tried setting one up and I ran into the... + +1002 +00:38:38,880 --> 00:38:40,700 +And I'm sure you remember the terminology better than me. + +1003 +00:38:40,720 --> 00:38:44,060 +But, like, I use one of them, you know, CenturyLink, the non-Internet. + +1004 +00:38:44,200 --> 00:38:44,740 +Like you said. + +1005 +00:38:44,840 --> 00:38:45,120 +Right. + +1006 +00:38:45,260 --> 00:38:49,720 +And for some reason, it was putting the servers in Phoenix in between. + +1007 +00:38:50,380 --> 00:38:52,700 +Even though it said I was logged on, even though it said I was... + +1008 +00:38:53,620 --> 00:38:56,140 +That I was on IPVanish and that everything's working great. + +1009 +00:38:56,260 --> 00:39:00,800 +When I ran their testing tools, it said, oh, no, you're not anonymous because they've inserted their servers. + +1010 +00:39:01,440 --> 00:39:01,800 +Right. + +1011 +00:39:02,000 --> 00:39:02,780 +In the loop. + +1012 +00:39:03,060 --> 00:39:12,020 +So I'm like, okay, so for us non-computer efficient Americans that want to be anonymous and be able to do stuff and not have the government track us, what's a good program to set up? + +1013 +00:39:13,440 --> 00:39:15,000 +Well, that's not about a program. + +1014 +00:39:15,180 --> 00:39:17,440 +This is something that's completely outside of your control. + +1015 +00:39:17,780 --> 00:39:27,340 +So when you're using the CenturyLink, at least CenturyLink locally, you are not actually getting out to the quote-unquote Internet until it hits Phoenix. + +1016 +00:39:27,840 --> 00:39:28,360 +Right. + +1017 +00:39:28,400 --> 00:39:33,080 +So you can't do anything to circumvent that on that particular connection. + +1018 +00:39:34,780 --> 00:39:38,560 +Well, I guess what happened was they had me run the test tools. + +1019 +00:39:38,740 --> 00:39:39,140 +Mm-hmm. + +1020 +00:39:39,180 --> 00:39:42,000 +And basically, if it came back and showed... + +1021 +00:39:44,120 --> 00:39:52,480 +Well, they're doing something called packet inspection. + +1022 +00:39:53,460 --> 00:39:53,860 +Okay. + +1023 +00:39:54,040 --> 00:39:57,160 +And that packet inspection is what's tagging it with the geolocation. + +1024 +00:39:58,240 --> 00:39:58,640 +So... + +1025 +00:39:59,140 --> 00:40:00,380 +And that's a CenturyLink thing. + +1026 +00:40:00,500 --> 00:40:04,680 +You can complain all you want to CenturyLink and they're going to be like, yeah, that's just sort of the way it is. + +1027 +00:40:04,740 --> 00:40:05,200 +Deal with it. + +1028 +00:40:06,080 --> 00:40:08,000 +So part of the problem is CenturyLink. + +1029 +00:40:08,120 --> 00:40:10,640 +You could switch to a different provider and that goes away. + +1030 +00:40:10,720 --> 00:40:11,680 +I know that on... + +1031 +00:40:12,020 --> 00:40:21,180 +On Cox, at least locally, you can do fully end-to-end encrypted communications and you won't get any of that geotagging in the services there. + +1032 +00:40:22,080 --> 00:40:22,520 +Okay. + +1033 +00:40:23,400 --> 00:40:24,840 +So that's a CenturyLink issue. + +1034 +00:40:25,480 --> 00:40:25,920 +Gotcha. + +1035 +00:40:26,840 --> 00:40:27,280 +Unfortunately. + +1036 +00:40:28,320 --> 00:40:29,520 +Comcast also, same thing. + +1037 +00:40:29,600 --> 00:40:32,200 +You can use Comcast for that as well. + +1038 +00:40:32,460 --> 00:40:34,380 +Otherwise, you're going to have to get something like a Tor router. + +1039 +00:40:34,740 --> 00:40:35,300 +All right. + +1040 +00:40:35,340 --> 00:40:36,720 +You can get it like a WRT router. + +1041 +00:40:37,420 --> 00:40:39,960 +Any older Linksys router will work for this. + +1042 +00:40:40,060 --> 00:40:40,900 +You can... + +1043 +00:40:41,640 --> 00:40:47,620 +There's some software updates you can put on there which anonymizes your connection and makes you part of the Tor network. + +1044 +00:40:48,740 --> 00:40:51,620 +And that anonymizes your end-to-end anonymous. + +1045 +00:40:51,960 --> 00:40:52,820 +Just be careful with that stuff. + +1046 +00:40:52,900 --> 00:40:53,440 +It's hard to do. + +1047 +00:40:53,880 --> 00:40:53,960 +Yeah. + +1048 +00:40:54,720 --> 00:40:57,340 +But if you're feeling like you want to be anonymous, that's the way to do it, man. + +1049 +00:40:58,060 --> 00:40:58,420 +Okay. + +1050 +00:40:58,600 --> 00:40:59,720 +Well, I really appreciate that. + +1051 +00:40:59,820 --> 00:41:00,300 +And I'll definitely... + +1052 +00:41:00,300 --> 00:41:04,280 +Do you know, like, which episode upcoming you're going to be talking about all that and the privacy and stuff? + +1053 +00:41:04,720 --> 00:41:05,780 +Maybe next weekend. + +1054 +00:41:06,320 --> 00:41:06,680 +Okay. + +1055 +00:41:06,680 --> 00:41:10,100 +I need to do a little more research on what Europe's doing with the whole... + +1056 +00:41:10,100 --> 00:41:10,780 +Okay. + +1057 +00:41:10,780 --> 00:41:10,780 + + +1058 +00:41:10,900 --> 00:41:12,060 +...hard ID access thing. + +1059 +00:41:13,220 --> 00:41:19,800 +But I've seen a few people talk about it, and so I want to get to the bottom of it and figure out how long that's going to take to get here. + +1060 +00:41:21,360 --> 00:41:23,700 +But, yeah, well, probably next week or the week after. + +1061 +00:41:24,240 --> 00:41:25,740 +And just on a side note, if you... + +1062 +00:41:25,740 --> 00:41:28,760 +Because I know you can understand all the gobbledygooks better than I could reading it. + +1063 +00:41:29,840 --> 00:41:31,660 +I chose IPVanish because it was Italy. + +1064 +00:41:32,140 --> 00:41:35,660 +I think they said they were based out of Italy, and it had something to do with basically... + +1065 +00:41:36,060 --> 00:41:36,360 +Yeah. + +1066 +00:41:36,420 --> 00:41:40,260 +Even if somebody gives them a court order and says, hey, we need to find out what this person's doing, they said, okay, + +1067 +00:41:40,900 --> 00:41:42,600 +we set it up impossibly so nobody can. + +1068 +00:41:43,020 --> 00:41:45,060 +You can't track what people are doing on the system. + +1069 +00:41:45,340 --> 00:41:45,820 +Sort of. + +1070 +00:41:46,120 --> 00:41:47,720 +And we'll cover that when it comes to it. + +1071 +00:41:47,840 --> 00:41:47,960 +Great. + +1072 +00:41:48,060 --> 00:41:50,940 +There's a certain amount of hopeful optimism there. + +1073 +00:41:51,040 --> 00:41:51,180 +Yeah. + +1074 +00:41:51,880 --> 00:41:52,200 +Okay. + +1075 +00:41:52,660 --> 00:41:55,140 +Well, great show, and I will definitely keep listening. + +1076 +00:41:55,300 --> 00:41:55,780 +Thank you. + +1077 +00:41:55,840 --> 00:41:56,320 +Thanks, Shane. + +1078 +00:41:56,420 --> 00:41:56,720 +Bye-bye. + +1079 +00:41:57,360 --> 00:42:01,420 +We're going to take a quick break, and when we get back, I guess we'll be out of time. + +1080 +00:42:01,640 --> 00:42:01,960 +Yeah. + +1081 +00:42:02,120 --> 00:42:02,920 +That's how that's going to work. + +1082 +00:42:03,040 --> 00:42:04,160 +So listen up. + +1083 +00:42:04,180 --> 00:42:07,100 +We have some specials, some deals we want to talk with you about. + +1084 +00:42:07,400 --> 00:42:08,060 +We'll be right back. + +1085 +00:42:10,900 --> 00:42:12,020 +We'll be right back. + +1086 +00:42:42,180 --> 00:42:45,140 +So you know that we put this show up on the internet. + +1087 +00:42:46,760 --> 00:42:52,140 +It's live right now, either through the KVLY website or gurushow.com. + +1088 +00:42:52,400 --> 00:42:57,480 +And then later, we also put them on YouTube, so you should go check out the YouTube channel + +1089 +00:42:57,480 --> 00:43:00,860 +and subscribe there if you can, because it helps us out. + +1090 +00:43:01,080 --> 00:43:06,580 +And also, getting subscribed and getting on our boat early here is going to help you out + +1091 +00:43:06,580 --> 00:43:08,100 +in the long run, because we've got some cool stuff planned. + +1092 +00:43:08,240 --> 00:43:08,520 +Right. + +1093 +00:43:08,560 --> 00:43:10,020 +There's going to be some giveaways happening. + +1094 +00:43:10,520 --> 00:43:10,880 +Yeah. + +1095 +00:43:10,880 --> 00:43:10,880 + + +1096 +00:43:10,880 --> 00:43:10,880 + + +1097 +00:43:10,900 --> 00:43:15,900 +And you'll have to be subscribed, and you'll have chances to win based on sharing it on + +1098 +00:43:15,900 --> 00:43:19,120 +Facebook or Twitter or basically spamming your friends. + +1099 +00:43:19,400 --> 00:43:22,800 +We're going to give away stuff that I really don't want us to give away, because I want + +1100 +00:43:22,800 --> 00:43:22,980 +it. + +1101 +00:43:24,220 --> 00:43:24,580 +Yeah. + +1102 +00:43:24,600 --> 00:43:25,440 +Well, you can't have it. + +1103 +00:43:25,540 --> 00:43:25,760 +I know. + +1104 +00:43:25,800 --> 00:43:26,780 +I'm not even qualified to enter. + +1105 +00:43:26,860 --> 00:43:27,080 +Nope. + +1106 +00:43:27,120 --> 00:43:27,440 +Nope. + +1107 +00:43:27,480 --> 00:43:30,900 +You cannot qualify at all, even if you quit. + +1108 +00:43:31,720 --> 00:43:32,760 +Just forever banned. + +1109 +00:43:33,180 --> 00:43:34,380 +You're banned from winning. + +1110 +00:43:35,440 --> 00:43:38,520 +Also, I want to take a moment to thank our sponsor for this hour. + +1111 +00:43:38,620 --> 00:43:40,560 +That is Perfection Auto Works. + +1112 +00:43:41,520 --> 00:43:45,720 +And they're a great sponsor, and you should thank them for helping keep us on the air. + +1113 +00:43:45,780 --> 00:43:50,460 +You can do so by visiting their website at perfectionautoworks.com or giving them a call. + +1114 +00:43:52,580 --> 00:43:56,060 +Also, we want to say thank you to our Patreon sponsors. + +1115 +00:43:56,360 --> 00:43:57,720 +They're very, very important to us. + +1116 +00:43:58,540 --> 00:44:03,120 +They can donate as little as a dollar a month, and they help keep the show on the air. + +1117 +00:44:03,200 --> 00:44:05,220 +Go to gurushow.com slash Patreon. + +1118 +00:44:05,680 --> 00:44:07,440 +The new link that now works. + +1119 +00:44:07,760 --> 00:44:08,600 +Definitely works. + +1120 +00:44:08,760 --> 00:44:10,260 +Or patreon.com slash gurushow. + +1121 +00:44:11,300 --> 00:44:15,340 +And, yeah, thanks for listening very much to The Computer Guru Show. + +1122 +00:44:15,500 --> 00:44:18,060 +Oh, by the way, we'll be back in about six minutes. + +1123 +00:44:31,160 --> 00:44:33,720 +Welcome back to The Computer Guru Show, hour number two. + +1124 +00:44:34,260 --> 00:44:34,700 +What? + +1125 +00:44:34,780 --> 00:44:35,180 +What? + +1126 +00:44:35,480 --> 00:44:35,920 +What? + +1127 +00:44:36,040 --> 00:44:36,720 +I know. + +1128 +00:44:36,760 --> 00:44:37,060 +That's right. + +1129 +00:44:37,280 --> 00:44:37,900 +Wait, what? + +1130 +00:44:38,000 --> 00:44:40,440 +It's been years since we've had a two-hour show. + +1131 +00:44:41,000 --> 00:44:41,320 +Yeah. + +1132 +00:44:41,320 --> 00:44:41,840 +And here we are. + +1133 +00:44:41,860 --> 00:44:42,560 +That's crazy. + +1134 +00:44:43,660 --> 00:44:46,340 +And if you want to give us a call, 790-2040. + +1135 +00:44:46,440 --> 00:44:47,280 +That's what you should do. + +1136 +00:44:47,380 --> 00:44:49,700 +You can talk to us on our all-new shiny second hour. + +1137 +00:44:49,840 --> 00:44:50,000 +Right. + +1138 +00:44:51,000 --> 00:44:52,120 +Is it shinier in here? + +1139 +00:44:52,320 --> 00:44:52,820 +It is. + +1140 +00:44:52,820 --> 00:44:53,380 +It looks a little brighter. + +1141 +00:44:53,560 --> 00:44:54,580 +It looks a little bit brighter, yeah. + +1142 +00:44:54,940 --> 00:44:56,640 +I think it's because that light bulb came back on. + +1143 +00:44:56,700 --> 00:44:58,580 +But nevertheless, second hour. + +1144 +00:44:58,680 --> 00:44:59,220 +Second hour. + +1145 +00:45:00,000 --> 00:45:01,900 +So 790-2040 if you want to be part of the show. + +1146 +00:45:02,140 --> 00:45:02,820 +Give us a call. + +1147 +00:45:03,920 --> 00:45:10,260 +We're going to talk a lot in this particular, the second hour here, about privacy. + +1148 +00:45:10,900 --> 00:45:12,100 +And censorship. + +1149 +00:45:13,220 --> 00:45:15,800 +And how those two kind of correlate with one another. + +1150 +00:45:17,160 --> 00:45:24,620 +And it really came to light because of a less than wonderful event that happened. + +1151 +00:45:24,860 --> 00:45:26,280 +We'll say a tragedy. + +1152 +00:45:27,520 --> 00:45:37,100 +So as you may know, you should know by now, the Orlando shooting caused a very interesting + +1153 +00:45:37,100 --> 00:45:39,280 +set of things to happen on the internet. + +1154 +00:45:39,940 --> 00:45:40,880 +As far as... + +1155 +00:45:40,900 --> 00:45:46,040 +There are places that tout themselves to be... + +1156 +00:45:46,960 --> 00:45:47,660 +What's their slogan? + +1157 +00:45:47,900 --> 00:45:49,200 +The front page of the internet. + +1158 +00:45:49,280 --> 00:45:50,200 +The front page of the internet. + +1159 +00:45:50,320 --> 00:45:52,480 +Now, we've talked about Reddit before on this show. + +1160 +00:45:52,780 --> 00:45:58,180 +And, you know, over the last couple of years, our views on Reddit have changed for sure. + +1161 +00:45:58,300 --> 00:46:02,240 +Because it used to be, when Reddit first started and we were first on it, it was like awesome + +1162 +00:46:02,240 --> 00:46:03,060 +and we're all for it. + +1163 +00:46:03,140 --> 00:46:07,960 +But as they've grown and evolved, it's been leading inevitably to something like what + +1164 +00:46:07,960 --> 00:46:08,460 +just happened. + +1165 +00:46:08,800 --> 00:46:09,240 +Right. + +1166 +00:46:09,240 --> 00:46:09,420 +Right. + +1167 +00:46:09,420 --> 00:46:10,740 +So over the last couple of years... + +1168 +00:46:10,740 --> 00:46:10,880 +Right. + +1169 +00:46:10,880 --> 00:46:10,880 + + +1170 +00:46:10,880 --> 00:46:10,880 + + +1171 +00:46:10,880 --> 00:46:10,880 + + +1172 +00:46:10,880 --> 00:46:10,880 + + +1173 +00:46:10,880 --> 00:46:10,880 + + +1174 +00:46:10,880 --> 00:46:10,880 + + +1175 +00:46:10,880 --> 00:46:10,880 + + +1176 +00:46:10,880 --> 00:46:10,880 + + +1177 +00:46:10,900 --> 00:46:15,120 +There's been a few management shakeups over at Reddit. + +1178 +00:46:16,580 --> 00:46:18,980 +And it's very interesting because it's sort of a... + +1179 +00:46:19,560 --> 00:46:23,680 +At least in the beginning, it was very much a self-policing thing, right? + +1180 +00:46:23,720 --> 00:46:30,280 +Where there are moderators of each of the particular subreddits or boards that are on + +1181 +00:46:30,280 --> 00:46:30,420 +there. + +1182 +00:46:32,080 --> 00:46:37,780 +And it was a rather democratic process for the most part as far as, you know, people + +1183 +00:46:37,780 --> 00:46:38,820 +could put up their ideas. + +1184 +00:46:39,380 --> 00:46:40,800 +And those ideas... + +1185 +00:46:40,900 --> 00:46:44,260 +And those ideas would then be either upvoted or downvoted by the community. + +1186 +00:46:44,620 --> 00:46:48,140 +And you can say, well, either I support this or I think this is terrible. + +1187 +00:46:48,580 --> 00:46:53,220 +And, of course, the more that it has upvotes, the higher visibility it has on the site. + +1188 +00:46:53,300 --> 00:46:56,520 +And then the more downvotes it has, the less visibility it has on the site. + +1189 +00:46:57,800 --> 00:47:06,060 +And even that, even though that particular segment of the population, right, the entire + +1190 +00:47:06,060 --> 00:47:09,460 +site has a definite political leaning. + +1191 +00:47:10,900 --> 00:47:13,160 +And it's pretty obvious in the stuff that you see. + +1192 +00:47:14,560 --> 00:47:19,840 +And that part was bothersome for us, you know, the last time we talked about Reddit was more + +1193 +00:47:19,840 --> 00:47:23,700 +than a year ago as far as the problems seen there. + +1194 +00:47:23,840 --> 00:47:27,640 +But the Orlando shooting brought something else completely to light. + +1195 +00:47:27,700 --> 00:47:29,340 +There's a subreddit on there called News. + +1196 +00:47:30,260 --> 00:47:33,340 +And there's some other ones on there like World News and there's... + +1197 +00:47:33,340 --> 00:47:35,040 +News is one of the default subreddits. + +1198 +00:47:35,040 --> 00:47:38,060 +So when you first create an account, you're already subscribed to it. + +1199 +00:47:38,200 --> 00:47:38,480 +Right. + +1200 +00:47:38,520 --> 00:47:39,320 +Same with World News. + +1201 +00:47:39,440 --> 00:47:39,620 +Yeah. + +1202 +00:47:41,080 --> 00:47:45,640 +And it's designed so that the community can take things that it thinks are newsworthy, + +1203 +00:47:45,780 --> 00:47:49,960 +put them, submit them to Reddit, and then Reddit will either upvote them or downvote + +1204 +00:47:49,960 --> 00:47:50,600 +them for visibility. + +1205 +00:47:51,000 --> 00:47:57,460 +So if it's something that is getting a lot of coverage, it should very rapidly make it + +1206 +00:47:57,460 --> 00:48:01,480 +to the front page where that's what you see as soon as you log into Reddit. + +1207 +00:48:01,640 --> 00:48:05,280 +And in the past, many news stories have actually broken on Reddit first. + +1208 +00:48:05,600 --> 00:48:09,500 +Even before the news, the real news sites picked them up, people were reporting them + +1209 +00:48:09,500 --> 00:48:09,860 +on Reddit. + +1210 +00:48:10,000 --> 00:48:10,480 +Right. + +1211 +00:48:10,480 --> 00:48:10,880 +Right. + +1212 +00:48:10,880 --> 00:48:10,880 + + +1213 +00:48:10,880 --> 00:48:10,880 + + +1214 +00:48:10,880 --> 00:48:10,880 + + +1215 +00:48:10,880 --> 00:48:10,880 + + +1216 +00:48:10,880 --> 00:48:10,880 + + +1217 +00:48:10,880 --> 00:48:10,880 + + +1218 +00:48:10,880 --> 00:48:10,880 + + +1219 +00:48:10,880 --> 00:48:10,880 + + +1220 +00:48:10,880 --> 00:48:10,880 + + +1221 +00:48:10,880 --> 00:48:10,880 + + +1222 +00:48:10,880 --> 00:48:10,880 + + +1223 +00:48:10,880 --> 00:48:10,880 + + +1224 +00:48:10,880 --> 00:48:10,880 + + +1225 +00:48:10,880 --> 00:48:10,880 + + +1226 +00:48:10,880 --> 00:48:10,880 + + +1227 +00:48:10,900 --> 00:48:11,080 +They were posting them. + +1228 +00:48:11,160 --> 00:48:14,420 +They had mega threads and live threads regarding the discussion of those events. + +1229 +00:48:14,480 --> 00:48:16,520 +Boston bombing comes to mind there. + +1230 +00:48:16,680 --> 00:48:24,860 +So when the Boston Marathon bombing happened, it happened first on Reddit as far as a large + +1231 +00:48:24,860 --> 00:48:28,060 +scale noteworthiness. + +1232 +00:48:28,340 --> 00:48:28,440 +Yeah. + +1233 +00:48:28,440 --> 00:48:31,200 +People who were there were taking pictures and posting them on Reddit. + +1234 +00:48:31,580 --> 00:48:32,060 +Yeah. + +1235 +00:48:32,120 --> 00:48:33,180 +It's a big deal. + +1236 +00:48:33,300 --> 00:48:39,260 +Now, what happened during the Orlando shooting was really depressing. + +1237 +00:48:39,260 --> 00:48:50,140 +It was that the officials, the moderators of Reddit were straight up deleting entries, + +1238 +00:48:50,420 --> 00:48:58,160 +just censorship, just like you've been banned and banned people because someone made the + +1239 +00:48:58,160 --> 00:49:05,940 +association between Omar the shooter and ISIS because of the 911 call. + +1240 +00:49:06,020 --> 00:49:09,240 +They called it hate speech and banned the entire thread. + +1241 +00:49:09,260 --> 00:49:09,780 +Yeah. + +1242 +00:49:09,860 --> 00:49:13,160 +They were just immediately deleting anything that made a reference to that. + +1243 +00:49:13,860 --> 00:49:20,880 +So if they made a, even if somebody asked, you know, oh my, oh my, is this another, another + +1244 +00:49:20,880 --> 00:49:21,860 +terrorist attack? + +1245 +00:49:21,980 --> 00:49:22,960 +Bam, got deleted. + +1246 +00:49:23,140 --> 00:49:27,760 +It was to the tune of, you know, thousands of comments were deleted. + +1247 +00:49:28,320 --> 00:49:30,800 +Dozens and dozens of posts that were made were deleted. + +1248 +00:49:31,400 --> 00:49:35,540 +There was just entire threads where every comment was marked as removed. + +1249 +00:49:36,980 --> 00:49:37,460 +Yeah. + +1250 +00:49:37,520 --> 00:49:38,360 +It's pretty. + +1251 +00:49:38,360 --> 00:49:38,360 + + +1252 +00:49:40,360 --> 00:49:45,880 +And this is one of those things is that, you know, more and more people these days, they + +1253 +00:49:46,360 --> 00:49:49,900 +do not, especially in the younger generation, right? + +1254 +00:49:49,960 --> 00:49:51,380 +They don't, they don't look to TV for news. + +1255 +00:49:51,560 --> 00:49:58,920 +They don't look to the normal news outlets that nobody trusts in, in the younger demographics. + +1256 +00:49:59,160 --> 00:50:01,900 +Nobody trusts Fox news or CNN or MSNBC. + +1257 +00:50:01,960 --> 00:50:02,440 +We don't care. + +1258 +00:50:02,520 --> 00:50:03,960 +We don't trust them at all. + +1259 +00:50:04,900 --> 00:50:08,340 +Because they're sort of led by their own agenda. + +1260 +00:50:08,360 --> 00:50:15,760 +And for a long time, Reddit could be looked at as, as something where it's obviously community + +1261 +00:50:15,760 --> 00:50:21,860 +powered, community fueled, and it's what the world is talking about at that moment. + +1262 +00:50:22,660 --> 00:50:27,880 +So why, it basically seemed to be a more fair place to look for information. + +1263 +00:50:28,100 --> 00:50:28,460 +Yeah. + +1264 +00:50:28,540 --> 00:50:33,200 +It was supposed to be this platform where anyone could share anything without the fear + +1265 +00:50:33,200 --> 00:50:33,860 +of censorship. + +1266 +00:50:34,080 --> 00:50:34,600 +You know? + +1267 +00:50:34,640 --> 00:50:38,260 +Like you could discuss a newsworthy event that was happening. + +1268 +00:50:38,280 --> 00:50:38,340 +Yeah. + +1269 +00:50:38,340 --> 00:50:38,340 + + +1270 +00:50:38,340 --> 00:50:38,340 + + +1271 +00:50:38,360 --> 00:50:41,800 +And not worry about the government or mainstream media slanting it. + +1272 +00:50:42,580 --> 00:50:46,060 +But I mean, it's, I think people quickly forget that Reddit is a company. + +1273 +00:50:46,400 --> 00:50:46,960 +Right. + +1274 +00:50:47,120 --> 00:50:47,720 +They're a business. + +1275 +00:50:47,860 --> 00:50:53,900 +And more importantly though, is there's a certain mob mentality that happens on Reddit + +1276 +00:50:53,900 --> 00:50:56,800 +and it's unfortunate, right? + +1277 +00:50:56,860 --> 00:51:04,440 +That, that voices can be silenced effectively, not only by the community itself, but at the + +1278 +00:51:04,440 --> 00:51:05,280 +moderator level. + +1279 +00:51:05,420 --> 00:51:08,340 +And they came back with a couple of excuses about, well, I'm not going to do this. + +1280 +00:51:08,340 --> 00:51:08,340 + + +1281 +00:51:08,340 --> 00:51:08,600 +I'm going to do this. + +1282 +00:51:08,600 --> 00:51:08,600 + + +1283 +00:51:08,600 --> 00:51:08,600 + + +1284 +00:51:08,600 --> 00:51:13,240 +And so, you know, there's a, there's a bot, an auto moderator that saw these as duplicates + +1285 +00:51:13,240 --> 00:51:14,180 +and was deleting everything. + +1286 +00:51:15,840 --> 00:51:20,660 +But under any level of scrutiny, this argument doesn't hit, you know, it doesn't stand up. + +1287 +00:51:20,800 --> 00:51:21,100 +Yeah. + +1288 +00:51:21,180 --> 00:51:23,220 +I mean, they, they did remove one moderator. + +1289 +00:51:24,140 --> 00:51:27,620 +But I couldn't see that as anything other than a scapegoat tactic personally. + +1290 +00:51:27,860 --> 00:51:28,160 +Yeah. + +1291 +00:51:28,180 --> 00:51:31,160 +And to be fair, that moderator was telling people to go kill themselves. + +1292 +00:51:32,880 --> 00:51:36,320 +So you probably shouldn't be in that position anyway. + +1293 +00:51:36,340 --> 00:51:38,320 +But there were also things like you said, when it came to the, the, the, the, the, the, the, + +1294 +00:51:38,320 --> 00:51:54,740 +the only language that couldn't be seeded from the seed seed seed seed seed seed seed + +1295 +00:51:54,740 --> 00:51:56,580 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1296 +00:51:56,580 --> 00:51:56,600 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1297 +00:51:56,600 --> 00:51:56,620 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1298 +00:51:56,620 --> 00:51:56,660 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1299 +00:51:56,660 --> 00:51:56,760 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1300 +00:51:56,760 --> 00:51:56,760 + + +1301 +00:51:56,760 --> 00:51:57,440 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1302 +00:51:57,440 --> 00:51:58,100 +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +1303 +00:51:58,100 --> 00:52:05,900 +And we don't like the idea that the Internet can be silenced or moderated as a whole, especially at the state level. + +1304 +00:52:06,880 --> 00:52:12,720 +Because there are people who their only way of communicating with the world is through the Internet. + +1305 +00:52:12,840 --> 00:52:26,960 +And in some cases, there are places like in the Middle East that we've talked about where the only outlet that people have to say, hey, this is what's going on here, help, is potentially silenced. + +1306 +00:52:27,940 --> 00:52:33,700 +And, you know, China is a great issue of how the world can be manipulated. + +1307 +00:52:33,880 --> 00:52:42,900 +And same with North Korea, right, where you look at how the worldview can be manipulated just by changing the content or censoring the content that's on the Internet. + +1308 +00:52:43,640 --> 00:52:44,940 +And we don't like that. + +1309 +00:52:45,060 --> 00:52:52,540 +And I think that as Americans, we like to believe that we're exempt from that type of thing to some extent because we have freedom of speech here in the United States. + +1310 +00:52:52,620 --> 00:52:56,760 +But examples like what happened with Reddit are proof that that is not necessarily. + +1311 +00:52:56,960 --> 00:53:03,060 +The case all the time, if you trust one entity too much for your news, something like this is bound to happen. + +1312 +00:53:03,240 --> 00:53:16,680 +And the same thing with Facebook, right, where Facebook was basically accused of censoring the trending news topics and saying, well, this is a little too right leaning for us. + +1313 +00:53:16,700 --> 00:53:20,180 +So we're not going to post it as a as a trending topic. + +1314 +00:53:21,780 --> 00:53:26,660 +Now, the Young Turks did an interesting video on this and not. + +1315 +00:53:26,960 --> 00:53:29,220 +But I at all want people to watch the Young Turks. + +1316 +00:53:29,340 --> 00:53:34,420 +But they're an Internet news organization, is that what they call themselves? + +1317 +00:53:35,460 --> 00:53:43,980 +And their explanation was, well, you can't trust sources like Breitbart and you can't trust sources like Drudge Report. + +1318 +00:53:44,440 --> 00:53:47,280 +So you have to give it a little more time. + +1319 +00:53:47,320 --> 00:53:50,700 +You have to find other sources before they'll put it up in trending. + +1320 +00:53:51,100 --> 00:53:56,640 +But if Huffington Post put something up, you know, they put it up rather. + +1321 +00:53:56,720 --> 00:53:56,900 +I mean. + +1322 +00:53:56,960 --> 00:54:01,260 +Without the secondary looks, without the backup sources. + +1323 +00:54:02,360 --> 00:54:04,180 +Basically, if you were you can't. + +1324 +00:54:04,500 --> 00:54:14,940 +I think you can't unless you are a news organization that you shouldn't be trying to moderate the news. + +1325 +00:54:15,140 --> 00:54:20,080 +You shouldn't be determining for yourself what's important, especially like with the Facebook thing. + +1326 +00:54:20,260 --> 00:54:23,940 +It's like if there's a certain number of people saying it, it's trending. + +1327 +00:54:24,060 --> 00:54:24,480 +Right. + +1328 +00:54:24,560 --> 00:54:26,400 +It doesn't matter whether it's true or not. + +1329 +00:54:26,400 --> 00:54:26,780 +Right. + +1330 +00:54:27,000 --> 00:54:29,660 +The trend is, is that people are talking about this. + +1331 +00:54:30,780 --> 00:54:41,940 +So in order to to vet things for truthfulness on a trending list seems wrong, especially if you're not applying to the same rules to both sides of that spectrum. + +1332 +00:54:42,380 --> 00:54:43,520 +Now, don't get me wrong. + +1333 +00:54:43,640 --> 00:54:51,500 +You know, the as far as I'm concerned, the the news sources on the left and the right are both crazy. + +1334 +00:54:51,660 --> 00:54:52,280 +All right. + +1335 +00:54:52,340 --> 00:54:56,380 +It's there's a certain amount of centrism that I long for. + +1336 +00:54:56,400 --> 00:54:59,500 +I want Walter Cronkite to come back. + +1337 +00:55:00,800 --> 00:55:05,880 +I want to be told news with without any type of commentary. + +1338 +00:55:06,000 --> 00:55:14,640 +I want to know the details without any of the slant one way or the other opinion that is associated with it. + +1339 +00:55:14,720 --> 00:55:16,480 +I just want to be told the facts. + +1340 +00:55:16,780 --> 00:55:17,860 +Just the facts, man. + +1341 +00:55:17,940 --> 00:55:18,440 +That's it. + +1342 +00:55:21,040 --> 00:55:26,140 +And it's to me to have an organization like Reddit. + +1343 +00:55:26,400 --> 00:55:29,660 +Say, well, we don't think that this is news. + +1344 +00:55:29,860 --> 00:55:41,460 +So we're going to kill this, even though there are hundreds of submissions or thousands of comments on that particular thread to just kill that thread because they don't like the way it works. + +1345 +00:55:41,740 --> 00:55:42,880 +It bothers me. + +1346 +00:55:42,940 --> 00:55:49,440 +And where do you draw the line between when something becomes for the greater good? + +1347 +00:55:49,920 --> 00:55:54,480 +Or is it is it really the policing of thought? + +1348 +00:55:54,700 --> 00:55:54,980 +Right. + +1349 +00:55:55,000 --> 00:55:56,200 +And I think that the important thing. + +1350 +00:55:56,400 --> 00:56:11,400 +I remember here is that the only evidence that we have that a company like Reddit or any type of alternative news organization on the Internet, the only evidence we have that they are trying to uphold the ideals of, you know, open press and free speech is that they tell us that they are. + +1351 +00:56:12,120 --> 00:56:14,620 +You know, there's they're under no obligation as a company. + +1352 +00:56:14,660 --> 00:56:16,060 +They can delete whatever they want. + +1353 +00:56:16,180 --> 00:56:17,300 +You know, they're under no right. + +1354 +00:56:17,660 --> 00:56:18,060 +Yeah. + +1355 +00:56:18,140 --> 00:56:19,440 +They don't have to do that at all. + +1356 +00:56:19,500 --> 00:56:21,080 +They could have just said, yep, we deleted it. + +1357 +00:56:21,140 --> 00:56:25,600 +You know, but they know that because they are ultimately they have to answer to their users. + +1358 +00:56:25,600 --> 00:56:30,340 +They had to come out and say, well, yeah, it was a mistake, you know, and we're taking steps to undo it. + +1359 +00:56:31,080 --> 00:56:33,360 +But I have to wonder if they hadn't gotten caught. + +1360 +00:56:33,780 --> 00:56:35,560 +Of course, that, you know, that wouldn't have happened. + +1361 +00:56:35,620 --> 00:56:36,580 +They wouldn't have come forth. + +1362 +00:56:37,340 --> 00:56:49,940 +So in opposition to this, I would say that you have the opportunity to to choose other sources on the Internet to get your information from. + +1363 +00:56:50,260 --> 00:56:55,120 +Now, as with anything, there's always a there's always a flip side. + +1364 +00:56:55,120 --> 00:56:56,440 +There's always a side B. + +1365 +00:56:56,760 --> 00:57:04,980 +And so like to MSNBC, you end up with Fox News and to Huffington Post, you end up with Drudge Report. + +1366 +00:57:05,320 --> 00:57:13,360 +So you end up with these sort of left and right spectrum, I guess, A and B spectrum alternatives. + +1367 +00:57:14,400 --> 00:57:18,600 +The alternative to Reddit is Vote, which is V-O-A-T. + +1368 +00:57:19,100 --> 00:57:19,820 +Dot C-O. + +1369 +00:57:20,160 --> 00:57:23,260 +And that that's an interesting site. + +1370 +00:57:23,340 --> 00:57:24,940 +I mean, they're very similar. + +1371 +00:57:25,120 --> 00:57:32,780 +In appearance and how they work, but very different as far as content and how they deal with content. + +1372 +00:57:33,120 --> 00:57:45,480 +And as far as we can tell right now, at least looking when I looked on on Sunday and Monday last week at the differences between the Reddit news and the vote news, they were radically different. + +1373 +00:57:46,000 --> 00:57:46,560 +Yeah. + +1374 +00:57:46,680 --> 00:57:55,040 +And it's actually kind of funny because in direct as a direct result of this whole situation with Reddit vote has experienced what they call. + +1375 +00:57:55,120 --> 00:58:05,300 +Almost a doubling of traffic that weekend as people leave Reddit and go to vote because people were looking for information that couldn't find that was being deleted or censored at the other site. + +1376 +00:58:05,860 --> 00:58:07,080 +And and great. + +1377 +00:58:07,160 --> 00:58:09,480 +At least there is an alternative for now. + +1378 +00:58:09,920 --> 00:58:10,360 +Yeah. + +1379 +00:58:10,460 --> 00:58:15,560 +I mean, the future will show if if vote remains to be this bastion of free speech like they claim. + +1380 +00:58:16,400 --> 00:58:17,940 +But for now, it's a great site. + +1381 +00:58:18,580 --> 00:58:19,020 +Yeah. + +1382 +00:58:19,140 --> 00:58:25,080 +So we're going to talk a little bit more about how the Internet kind of forms the way that we. + +1383 +00:58:25,120 --> 00:58:31,220 +Put information out there and a little bit more about who's policing your thoughts online. + +1384 +00:58:31,500 --> 00:58:32,160 +We'll be right back. + +1385 +00:58:38,040 --> 00:58:42,240 +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. + +1386 +00:58:42,480 --> 00:58:46,080 +Join the chat right now at Guru show dot com or call in. + +1387 +00:58:46,180 --> 00:58:48,620 +This is a computer guru show on KV. + +1388 +00:58:48,700 --> 00:58:49,660 +Why the voice? + +1389 +00:58:51,100 --> 00:58:54,860 +Your technology guru, Mike Swanson, is answering all your questions. + +1390 +00:58:55,120 --> 00:58:55,460 +One by one. + +1391 +00:58:55,600 --> 00:58:56,300 +Yes, science. + +1392 +00:58:56,580 --> 00:58:57,640 +So chime in with yours. + +1393 +00:58:57,900 --> 00:59:00,000 +The website is Guru show dot com. + +1394 +00:59:00,200 --> 00:59:02,340 +Tune in, click in and kick back. + +1395 +00:59:02,580 --> 00:59:04,520 +This is a computer guru show. + +1396 +00:59:06,100 --> 00:59:07,660 +Welcome back to the computer guru show. + +1397 +00:59:07,760 --> 00:59:08,820 +Seven nine zero twenty forty. + +1398 +00:59:08,940 --> 00:59:09,800 +If you want to be part of the show. + +1399 +00:59:09,920 --> 00:59:11,680 +Five two zero seven nine zero twenty forty. + +1400 +00:59:12,000 --> 00:59:12,940 +Let's go and take Ingrid. + +1401 +00:59:13,100 --> 00:59:13,600 +Hello, Ingrid. + +1402 +00:59:13,640 --> 00:59:13,980 +How are you? + +1403 +00:59:14,260 --> 00:59:14,700 +Hi. + +1404 +00:59:15,400 --> 00:59:20,420 +I'd like to say, first of all, that I know virtually nothing about computers except the keyboard. + +1405 +00:59:21,420 --> 00:59:21,860 +And. + +1406 +00:59:23,080 --> 00:59:24,520 +But this business of. + +1407 +00:59:25,120 --> 00:59:30,180 +What's available to us and what kind of information is being given is really. + +1408 +00:59:30,620 --> 00:59:32,440 +This is a fabulous subject. + +1409 +00:59:32,540 --> 00:59:33,180 +Very important. + +1410 +00:59:33,280 --> 00:59:34,280 +Glad that you brought it up. + +1411 +00:59:34,360 --> 00:59:44,440 +Some days ago, there was discussion about Hillary Clinton's name being entered into various sites and different kinds of information coming up about her. + +1412 +00:59:44,560 --> 00:59:47,980 +Some was very bland, fluffy, inconsequential. + +1413 +00:59:48,900 --> 00:59:51,520 +And other stuff was of more substance. + +1414 +00:59:51,660 --> 00:59:54,780 +And of the things that, you know, people who are. + +1415 +00:59:55,120 --> 00:59:55,840 +Disappointed in her. + +1416 +00:59:56,320 --> 00:59:57,620 +Want to talk about. + +1417 +00:59:58,660 --> 01:00:01,420 +You mentioned Walter Cronkite. + +1418 +01:00:02,000 --> 01:00:05,960 +Who knows if he was giving us everything that was available? + +1419 +01:00:07,340 --> 01:00:17,360 +Who knows who is in the pool of people who have information, who will give it out or won't give it out or give out false information? + +1420 +01:00:18,380 --> 01:00:20,280 +Everything is really quite unknown. + +1421 +01:00:20,360 --> 01:00:22,060 +It's a matter of trusting people. + +1422 +01:00:22,900 --> 01:00:23,640 +Who do you trust? + +1423 +01:00:25,120 --> 01:00:28,220 +And the Internet is so big. + +1424 +01:00:28,460 --> 01:00:33,900 +And you talked about people in parts of the world where that's literally all they have available to them. + +1425 +01:00:36,040 --> 01:00:39,160 +It has made things very, very dangerous. + +1426 +01:00:39,220 --> 01:00:44,400 +And people are influenced and can be pitted against each other. + +1427 +01:00:44,500 --> 01:00:48,100 +Look what they're doing now with the terrorist attacks. + +1428 +01:00:48,620 --> 01:00:53,200 +They're looking at it from this direction, from that direction, manipulating everything. + +1429 +01:00:53,920 --> 01:00:54,720 +We're being. + +1430 +01:00:55,120 --> 01:00:56,200 +We're being ripped apart. + +1431 +01:00:56,480 --> 01:01:04,680 +Well, I guess that's sort of the point I was trying to get at is that information should be out there in the world for all of us to see and for all of us to make our own opinion about. + +1432 +01:01:04,980 --> 01:01:13,480 +And I think that if someone takes it upon themselves to censor that information for the masses, what right do they have to censor that information? + +1433 +01:01:14,860 --> 01:01:21,300 +The part that bothers me is not necessarily that there are there is misinformation out there. + +1434 +01:01:22,060 --> 01:01:24,600 +The part that bothers me is that someone has taken it upon themselves. + +1435 +01:01:27,040 --> 01:01:47,820 +And I think that's the part that bothers me. + +1436 +01:01:47,820 --> 01:01:49,820 +We have no way of knowing if he was giving us the truth. + +1437 +01:01:50,140 --> 01:01:55,020 +Well, now we have potentially a million new sources at our fingertips at any given moment. + +1438 +01:01:55,140 --> 01:01:57,540 +So we don't have to live in the forced echo chamber. + +1439 +01:01:57,760 --> 01:02:00,720 +You know, we can always go to a different source and fact check and verify. + +1440 +01:02:02,260 --> 01:02:03,720 +That doesn't mean that people do. + +1441 +01:02:04,620 --> 01:02:08,100 +But we have the ability to for the potentially the first time in human history. + +1442 +01:02:08,260 --> 01:02:11,920 +The thing is to go to all kinds of sources constantly. + +1443 +01:02:12,400 --> 01:02:14,160 +Listen to Canadian news. + +1444 +01:02:15,900 --> 01:02:17,800 +I used to do that some years ago. + +1445 +01:02:17,820 --> 01:02:22,100 +And I would listen to Canadian and American news and see what I was missing. + +1446 +01:02:22,500 --> 01:02:27,760 +And now, of course, I'm at this border and I like to hear both sides of things. + +1447 +01:02:27,900 --> 01:02:30,480 +And we listen to the national news at night. + +1448 +01:02:30,580 --> 01:02:40,880 +And that's one of what we're just saying is that now you have the opportunity to listen to news from all over the world to get a different perspective to different geographical areas within the United States. + +1449 +01:02:41,000 --> 01:02:47,760 +You get to listen to or have access to information from everywhere and from every site. + +1450 +01:02:47,820 --> 01:02:51,280 +And that's a double edged sword, right? + +1451 +01:02:51,360 --> 01:02:59,400 +Where you've got all this information and all of these opinions and viewpoints that sort of don't necessarily match up with one another. + +1452 +01:02:59,540 --> 01:03:04,640 +And then somebody is going to be offended and say, well, that's hate speech or that is this is totally offensive. + +1453 +01:03:04,740 --> 01:03:06,640 +I feel completely triggered or whatever. + +1454 +01:03:07,800 --> 01:03:16,780 +But that information needs to remain there because it is information from which you can form an opinion. + +1455 +01:03:17,100 --> 01:03:17,800 +Well, it's not. + +1456 +01:03:17,820 --> 01:03:23,040 +The young people need to have it drilled into their heads that they have to look everywhere for information. + +1457 +01:03:23,320 --> 01:03:28,500 +And when it's found out that somebody is censoring, that entity needs to be. + +1458 +01:03:29,320 --> 01:03:32,940 +And that's that's the thing with the whole journalistic integrity thing. + +1459 +01:03:33,180 --> 01:03:33,720 +All right. + +1460 +01:03:33,780 --> 01:03:41,800 +Where you have large news organizations like, you know, you had ABC News that had a big thing with Brian Williams and some of these other. + +1461 +01:03:41,840 --> 01:03:43,540 +What's a Tom Brokaw before that? + +1462 +01:03:43,680 --> 01:03:45,680 +You had these large news scandals. + +1463 +01:03:45,700 --> 01:03:47,720 +And the reason they were scandals were because. + +1464 +01:03:47,820 --> 01:03:50,380 +Because there was an implicit implied trust. + +1465 +01:03:50,560 --> 01:03:50,700 +Yeah. + +1466 +01:03:50,720 --> 01:03:52,860 +People trusted those people like Brian Williams. + +1467 +01:03:52,980 --> 01:03:54,040 +You know, it's a household name. + +1468 +01:03:54,160 --> 01:03:54,380 +Right. + +1469 +01:03:54,460 --> 01:03:58,580 +So there is an implied trust that goes along with saying I am the news. + +1470 +01:03:59,720 --> 01:04:04,300 +Whereas with these other sources, you know, when you're dealing with the Internet, it's not. + +1471 +01:04:04,400 --> 01:04:10,600 +But there there are people like Huffington Post, like even in some respects a drudge. + +1472 +01:04:10,800 --> 01:04:11,240 +Right. + +1473 +01:04:11,340 --> 01:04:14,620 +That are are trading in on the name. + +1474 +01:04:14,740 --> 01:04:14,980 +Right. + +1475 +01:04:15,040 --> 01:04:16,700 +They're saying I am a news source. + +1476 +01:04:16,840 --> 01:04:17,440 +Well, not. + +1477 +01:04:17,820 --> 01:04:18,240 +Really. + +1478 +01:04:18,380 --> 01:04:18,680 +Right. + +1479 +01:04:18,760 --> 01:04:22,300 +Because you you have your own slant. + +1480 +01:04:22,300 --> 01:04:30,160 +And what I'm looking for when I'm looking for a news source is someone is going to give me raw sort of unfiltered thought. + +1481 +01:04:30,460 --> 01:04:30,760 +Yeah. + +1482 +01:04:30,880 --> 01:04:37,080 +And I mean, even just in terms of this show, when we're doing research on a topic for that, we're going to talk about on the show. + +1483 +01:04:37,320 --> 01:04:42,860 +Like, for instance, I've got three articles on this one subject that we're going to maybe talk about in a little bit. + +1484 +01:04:42,900 --> 01:04:47,800 +And I'm checking each of those articles as we're doing the show to make sure that all the facts are straight. + +1485 +01:04:47,800 --> 01:04:49,520 +And that we're going to be giving accurate information. + +1486 +01:04:49,860 --> 01:04:53,560 +You can't just go to one source and then be like, I know everything about the story now. + +1487 +01:04:53,940 --> 01:04:54,340 +Right. + +1488 +01:04:54,400 --> 01:04:58,380 +And you almost have to make a last minute check to find out if something new didn't pop up. + +1489 +01:04:58,760 --> 01:04:59,520 +Yeah, absolutely. + +1490 +01:04:59,720 --> 01:05:00,500 +Thank you. + +1491 +01:05:00,580 --> 01:05:01,840 +I'll hang up and stop talking. + +1492 +01:05:01,960 --> 01:05:02,700 +Thanks for the call. + +1493 +01:05:02,700 --> 01:05:03,120 +Thanks for the call. + +1494 +01:05:03,560 --> 01:05:08,900 +Yeah, there's there's a certain amount of I give out information on the show that is occasionally wrong. + +1495 +01:05:09,120 --> 01:05:09,520 +Right. + +1496 +01:05:09,620 --> 01:05:11,680 +Sometimes it's just my opinion that's wrong. + +1497 +01:05:11,780 --> 01:05:14,060 +Sometimes the actual fact I give out is wrong. + +1498 +01:05:14,220 --> 01:05:14,620 +Right. + +1499 +01:05:14,740 --> 01:05:15,860 +And it happens. + +1500 +01:05:16,280 --> 01:05:16,680 +Right. + +1501 +01:05:16,720 --> 01:05:16,860 +Right. + +1502 +01:05:16,860 --> 01:05:16,900 +Right. + +1503 +01:05:16,900 --> 01:05:16,960 +Right. + +1504 +01:05:16,960 --> 01:05:17,100 +Right. + +1505 +01:05:17,200 --> 01:05:17,200 + + +1506 +01:05:17,220 --> 01:05:17,320 +Right. + +1507 +01:05:17,380 --> 01:05:17,780 +Right. + +1508 +01:05:17,780 --> 01:05:17,780 + + +1509 +01:05:17,780 --> 01:05:17,780 + + +1510 +01:05:17,780 --> 01:05:17,780 + + +1511 +01:05:17,780 --> 01:05:17,780 + + +1512 +01:05:17,780 --> 01:05:17,780 + + +1513 +01:05:17,780 --> 01:05:17,780 + + +1514 +01:05:17,780 --> 01:05:17,780 + + +1515 +01:05:17,780 --> 01:05:18,320 +Right. + +1516 +01:05:29,100 --> 01:05:30,500 +Right. + +1517 +01:05:30,500 --> 01:05:30,500 + + +1518 +01:05:30,500 --> 01:05:30,500 + + +1519 +01:05:30,500 --> 01:05:30,500 + + +1520 +01:05:30,500 --> 01:05:30,500 + + +1521 +01:05:30,500 --> 01:05:30,500 + + +1522 +01:05:30,500 --> 01:05:30,500 + + +1523 +01:05:30,500 --> 01:05:30,500 + + +1524 +01:05:30,500 --> 01:05:30,500 + + +1525 +01:05:30,500 --> 01:05:30,500 + + +1526 +01:05:30,500 --> 01:05:30,500 + + +1527 +01:05:30,500 --> 01:05:30,500 + + +1528 +01:05:30,500 --> 01:05:30,500 + + +1529 +01:05:30,500 --> 01:05:30,500 + + +1530 +01:05:30,500 --> 01:05:30,500 + + +1531 +01:05:30,500 --> 01:05:30,500 + + +1532 +01:05:30,500 --> 01:05:30,500 + + +1533 +01:05:30,500 --> 01:05:30,500 + + +1534 +01:05:30,500 --> 01:05:30,500 + + +1535 +01:05:30,500 --> 01:05:30,500 + + +1536 +01:05:30,500 --> 01:05:30,500 + + +1537 +01:05:30,500 --> 01:05:30,500 + + +1538 +01:05:30,500 --> 01:05:30,500 + + +1539 +01:05:30,500 --> 01:05:30,500 + + +1540 +01:05:30,500 --> 01:05:30,500 + + +1541 +01:05:30,500 --> 01:05:30,500 + + +1542 +01:05:30,500 --> 01:05:30,500 + + +1543 +01:05:30,500 --> 01:05:30,500 + + +1544 +01:05:30,500 --> 01:05:30,500 + + +1545 +01:05:30,500 --> 01:05:30,500 + + +1546 +01:05:30,500 --> 01:05:30,500 + + +1547 +01:05:30,500 --> 01:05:30,500 + + +1548 +01:05:30,500 --> 01:05:30,500 + + +1549 +01:05:30,500 --> 01:05:30,500 + + +1550 +01:05:30,500 --> 01:05:30,500 + + +1551 +01:05:30,500 --> 01:05:30,500 + + +1552 +01:05:30,500 --> 01:05:30,500 + + +1553 +01:05:30,500 --> 01:05:30,500 + + +1554 +01:05:30,500 --> 01:05:30,500 + + +1555 +01:05:30,500 --> 01:05:30,500 + + +1556 +01:05:30,500 --> 01:05:30,500 + + +1557 +01:05:30,500 --> 01:05:30,500 + + +1558 +01:05:30,500 --> 01:05:30,500 + + +1559 +01:05:30,500 --> 01:05:30,500 + + +1560 +01:05:30,500 --> 01:05:30,500 + + +1561 +01:05:30,500 --> 01:05:30,500 + + +1562 +01:05:30,500 --> 01:05:30,500 + + +1563 +01:05:30,500 --> 01:05:30,500 + + +1564 +01:05:30,500 --> 01:05:30,500 + + +1565 +01:05:30,500 --> 01:05:30,500 + + +1566 +01:05:30,500 --> 01:05:30,500 + + +1567 +01:05:30,500 --> 01:05:30,500 + + +1568 +01:05:30,500 --> 01:05:30,500 + + +1569 +01:05:30,500 --> 01:05:37,000 +So occasionally I get something wrong, or sometimes I misinterpret the question or whatever, + +1570 +01:05:37,200 --> 01:05:39,440 +and I feel bad about this every time that that happens. + +1571 +01:05:40,100 --> 01:05:44,580 +But there are people out there that are willing to put misinformation into the world, + +1572 +01:05:44,640 --> 01:05:51,440 +and the bigger problem for me isn't necessarily even the journalistic integrity. + +1573 +01:05:52,060 --> 01:05:59,820 +It's the idea that because someone doesn't like another idea that they have the right to censor it, + +1574 +01:05:59,820 --> 01:06:03,520 +and I think it's completely antithetical to the First Amendment. + +1575 +01:06:04,200 --> 01:06:08,920 +It goes against the idea that we have a protection of speech in this country, + +1576 +01:06:09,040 --> 01:06:16,700 +and at what point does your outrage, your ability to be offended, + +1577 +01:06:16,840 --> 01:06:23,920 +outweigh my constitutional right to say whatever it is that I feel, or any other human for that matter? + +1578 +01:06:24,400 --> 01:06:28,560 +We don't have the right to silence someone because we disagree with them, + +1579 +01:06:28,640 --> 01:06:29,800 +because if they're not going to be able to say what they want to say, + +1580 +01:06:29,800 --> 01:06:29,800 + + +1581 +01:06:29,800 --> 01:06:29,800 + + +1582 +01:06:29,800 --> 01:06:29,800 + + +1583 +01:06:29,800 --> 01:06:32,680 +if that's the case, you should just go to a regular college these days. + +1584 +01:06:32,900 --> 01:06:36,460 +And not to mention that everyone disagrees with everyone on everything anyway. + +1585 +01:06:36,780 --> 01:06:37,160 +Right. + +1586 +01:06:37,260 --> 01:06:40,880 +There will always be some guy sitting there listening to us right now going, + +1587 +01:06:41,060 --> 01:06:42,460 +these guys are totally wrong. + +1588 +01:06:42,700 --> 01:06:46,840 +Right, and there's another part of this that is very much involved with technology. + +1589 +01:06:47,500 --> 01:06:51,220 +I think that if you were to go back 50 years and wonder, + +1590 +01:06:51,320 --> 01:06:58,160 +well, why didn't we have these types of safe spaces and all of this craziness that's out there + +1591 +01:06:58,160 --> 01:06:59,060 +as far as... + +1592 +01:06:59,960 --> 01:07:02,920 +people not getting along and wanting to censor each other. + +1593 +01:07:02,980 --> 01:07:10,220 +If you were to look back 50 years ago, you didn't have the mashup of ideas that you have now. + +1594 +01:07:10,380 --> 01:07:15,860 +You didn't have billions of people just on the other end of your screen + +1595 +01:07:15,860 --> 01:07:20,640 +that could all communicate directly with one another in mass. + +1596 +01:07:21,080 --> 01:07:24,780 +Before it was like you had a local newspaper, maybe one TV channel + +1597 +01:07:24,780 --> 01:07:27,400 +that might have told you something interesting. + +1598 +01:07:28,400 --> 01:07:29,780 +But now you have the entire... + +1599 +01:07:29,800 --> 01:07:30,880 +You have the entire world at your fingertips. + +1600 +01:07:31,060 --> 01:07:35,000 +You have everything in front of you and there's way more to disagree with. + +1601 +01:07:35,420 --> 01:07:39,960 +Ultimately, I think that the only real reason anyone would have to censor another idea + +1602 +01:07:39,960 --> 01:07:42,300 +is because they're afraid that they're wrong. + +1603 +01:07:43,080 --> 01:07:45,960 +The safe space thing is they're afraid that they are wrong. + +1604 +01:07:46,400 --> 01:07:50,880 +And whether that's because they know it or not, I think that's ultimately the cause. + +1605 +01:07:51,140 --> 01:07:53,720 +You live in an echo chamber because you're afraid of what's on the outside of it. + +1606 +01:07:54,640 --> 01:07:55,560 +This is very true. + +1607 +01:07:55,900 --> 01:07:57,640 +All right, let's go ahead and talk to Mark real quick. + +1608 +01:07:57,700 --> 01:07:58,360 +Hello, Mark. How are you? + +1609 +01:07:59,040 --> 01:07:59,440 +Hey. + +1610 +01:07:59,800 --> 01:07:59,940 +Hi, Mike. + +1611 +01:08:00,180 --> 01:08:04,180 +I was pleasingly surprised to have you, hear you back on. + +1612 +01:08:04,280 --> 01:08:07,520 +And I want to thank you for coming back on for a second hour, + +1613 +01:08:07,660 --> 01:08:10,580 +which means I'm going to get less things done on this Saturday. + +1614 +01:08:11,040 --> 01:08:14,000 +Because I'll be listening to you more than I would be, you know, + +1615 +01:08:14,000 --> 01:08:17,720 +intently listening to the former pinko commie. + +1616 +01:08:17,800 --> 01:08:21,020 +Our plan is finally coming together to make Saturdays more lazy. + +1617 +01:08:21,840 --> 01:08:22,300 +Yes. + +1618 +01:08:22,300 --> 01:08:25,420 +Well, yeah, well, not lazy because anyway. + +1619 +01:08:26,040 --> 01:08:26,760 +So, yeah. + +1620 +01:08:27,080 --> 01:08:29,460 +So I'm going to miss some of those call-ins from the... + +1621 +01:08:29,800 --> 01:08:30,940 +from the other period. + +1622 +01:08:31,320 --> 01:08:35,940 +But maybe Emil can take up the slack and actually have a two-way dialogue + +1623 +01:08:35,940 --> 01:08:40,740 +instead of a socialistic public school perspective. + +1624 +01:08:41,560 --> 01:08:42,000 +Right. + +1625 +01:08:42,000 --> 01:08:46,500 +Well, you know, I don't know a whole lot about the show that was on during this hour. + +1626 +01:08:46,640 --> 01:08:50,700 +I listened a couple of times and very nice people. + +1627 +01:08:51,180 --> 01:08:51,620 +Yeah. + +1628 +01:08:53,080 --> 01:08:56,060 +But, you know, I figured who doesn't want more guru? + +1629 +01:08:56,600 --> 01:08:57,220 +That's correct. + +1630 +01:08:57,280 --> 01:08:58,360 +We would do a 12-hour show if we could. + +1631 +01:08:58,360 --> 01:08:59,220 +We want more guru. + +1632 +01:08:59,220 --> 01:09:00,640 +I would not do a 12-hour show. + +1633 +01:09:00,640 --> 01:09:01,120 +That's too much. + +1634 +01:09:01,420 --> 01:09:02,380 +So more guru. + +1635 +01:09:02,780 --> 01:09:04,280 +And so thanks for being on again. + +1636 +01:09:04,740 --> 01:09:05,520 +That's really great. + +1637 +01:09:05,820 --> 01:09:06,040 +Excellent. + +1638 +01:09:06,060 --> 01:09:08,480 +Also, I forgot to mention when I talked to you earlier. + +1639 +01:09:09,060 --> 01:09:11,820 +So I have two entries of Avera. + +1640 +01:09:11,920 --> 01:09:13,520 +The one is, of course, the antivirus. + +1641 +01:09:13,520 --> 01:09:14,420 +The other is the launcher. + +1642 +01:09:14,540 --> 01:09:15,900 +Do I uninstall both of those? + +1643 +01:09:16,600 --> 01:09:18,000 +Just the antivirus is the important one. + +1644 +01:09:18,200 --> 01:09:19,180 +But I would... + +1645 +01:09:19,180 --> 01:09:20,620 +The launcher is okay to leave in? + +1646 +01:09:20,720 --> 01:09:21,720 +I'd get rid of them both. + +1647 +01:09:22,000 --> 01:09:22,360 +Okay. + +1648 +01:09:22,380 --> 01:09:23,220 +That's what I wanted to know. + +1649 +01:09:23,480 --> 01:09:24,500 +So I'll get rid of them both. + +1650 +01:09:24,680 --> 01:09:26,500 +Oh, you know, and thank you for the call. + +1651 +01:09:26,560 --> 01:09:27,360 +I appreciate it, Mark. + +1652 +01:09:27,480 --> 01:09:27,940 +Thanks for... + +1653 +01:09:27,940 --> 01:09:29,040 +Thank you for the thank you. + +1654 +01:09:29,220 --> 01:09:30,020 +Thank you. + +1655 +01:09:30,480 --> 01:09:30,880 +Okay. + +1656 +01:09:31,040 --> 01:09:32,920 +One of the other things that I forgot to mention, + +1657 +01:09:33,120 --> 01:09:36,020 +that Computer Guru is in the Best of Tucson running. + +1658 +01:09:36,280 --> 01:09:36,880 +Oh, yeah, we are. + +1659 +01:09:36,960 --> 01:09:40,860 +Arizona Computer Guru is up for Best of Tucson in the finalists category. + +1660 +01:09:40,860 --> 01:09:47,640 +Yeah, so you should take an opportunity to go over to the Tucson Weekly site + +1661 +01:09:47,640 --> 01:09:51,580 +and vote for Arizona Computer Guru in the Best of Tucson. + +1662 +01:09:51,660 --> 01:09:53,880 +We posted it on our Facebook and all of our social, + +1663 +01:09:53,960 --> 01:09:55,960 +but if you just Google search Best of Tucson finalists, + +1664 +01:09:55,980 --> 01:09:56,880 +you can go vote for us. + +1665 +01:09:57,060 --> 01:09:57,460 +Yeah. + +1666 +01:09:57,640 --> 01:09:59,200 +So we're going to take a quick break. + +1667 +01:09:59,220 --> 01:10:02,180 +You can give us a call at 790-2040 if you want to be part of the show. + +1668 +01:10:02,280 --> 01:10:02,940 +We'll be right back. + +1669 +01:10:11,080 --> 01:10:15,100 +Whether you're dealing with hardware installation or, heaven forbid, a virus... + +1670 +01:10:15,100 --> 01:10:15,260 +No! + +1671 +01:10:15,560 --> 01:10:16,040 +No! + +1672 +01:10:16,120 --> 01:10:16,400 +No! + +1673 +01:10:16,980 --> 01:10:20,120 +Mike Swanson is answering all your questions one by one. + +1674 +01:10:20,240 --> 01:10:22,260 +So call in or chat in with yours. + +1675 +01:10:22,560 --> 01:10:23,260 +The website? + +1676 +01:10:23,720 --> 01:10:24,780 +Gurushow.com. + +1677 +01:10:25,140 --> 01:10:27,380 +Tune in, click in, and kick back. + +1678 +01:10:27,640 --> 01:10:28,660 +This is the... + +1679 +01:10:29,220 --> 01:10:32,420 +Guru Show on AM 1030, KVOI, The Voice. + +1680 +01:10:35,160 --> 01:10:38,220 +Mike Swanson, your computer guru, is just a click away. + +1681 +01:10:38,400 --> 01:10:40,560 +Listen and watch at gurushow.com. + +1682 +01:10:40,800 --> 01:10:44,560 +This is the Computer Guru Show on KVOI, The Voice. + +1683 +01:10:46,680 --> 01:10:49,260 +Well, let's talk about Windows upgrades for a moment. + +1684 +01:10:49,920 --> 01:10:50,440 +Again. + +1685 +01:10:50,520 --> 01:10:51,040 +Again. + +1686 +01:10:51,420 --> 01:10:56,760 +And the only reason is because I'm sitting here reading this subject here, right? + +1687 +01:10:56,780 --> 01:10:58,980 +Because when you guys call in, I get, + +1688 +01:10:59,220 --> 01:11:04,720 +generally, I get a name and three words about, + +1689 +01:11:04,840 --> 01:11:06,460 +this is sort of what this is about. + +1690 +01:11:06,780 --> 01:11:08,600 +And that's all I get, generally. + +1691 +01:11:09,460 --> 01:11:11,920 +But this one has an LOL in it. + +1692 +01:11:14,300 --> 01:11:15,620 +Is that yours, Kent, or his? + +1693 +01:11:15,800 --> 01:11:16,340 +It's his. + +1694 +01:11:18,320 --> 01:11:19,300 +Let's go ahead and bring him on here. + +1695 +01:11:19,420 --> 01:11:19,960 +Let's talk to Aaron. + +1696 +01:11:20,040 --> 01:11:20,400 +Hello, Aaron. + +1697 +01:11:21,700 --> 01:11:22,260 +Well, hi. + +1698 +01:11:23,380 --> 01:11:24,620 +Tell me about your issue. + +1699 +01:11:25,480 --> 01:11:27,760 +As I mentioned to the screener, + +1700 +01:11:28,360 --> 01:11:29,080 +I'm doing... + +1701 +01:11:29,080 --> 01:11:34,140 +I'm doing Windows 10 upgrades with only CenturyLink type of downloads. + +1702 +01:11:35,120 --> 01:11:36,860 +Yeah, that definitely requires an LOL. + +1703 +01:11:36,940 --> 01:11:38,120 +That's where the LOL comes in. + +1704 +01:11:39,000 --> 01:11:40,820 +Yeah, it's just not cutting it. + +1705 +01:11:41,680 --> 01:11:42,420 +You're right. + +1706 +01:11:43,080 --> 01:11:44,240 +I mean, I'm sorry. + +1707 +01:11:44,340 --> 01:11:44,660 +I'm shocked. + +1708 +01:11:44,920 --> 01:11:45,560 +I'm surprised. + +1709 +01:11:45,760 --> 01:11:47,900 +CenturyLink isn't amazingly fast. + +1710 +01:11:48,200 --> 01:11:48,680 +No. + +1711 +01:11:49,480 --> 01:11:50,540 +No, it's not. + +1712 +01:11:52,220 --> 01:11:55,120 +Okay, so how many machines do you have? + +1713 +01:11:56,300 --> 01:11:56,780 +Two. + +1714 +01:11:56,860 --> 01:11:57,660 +Two of them, okay. + +1715 +01:11:57,740 --> 01:11:58,200 +Okay. + +1716 +01:11:58,200 --> 01:11:59,040 +And are... + +1717 +01:11:59,080 --> 01:12:00,500 +Are they both desktops, or is one of them a laptop? + +1718 +01:12:00,960 --> 01:12:02,120 +They're both desktops. + +1719 +01:12:02,200 --> 01:12:02,520 +Okay. + +1720 +01:12:02,520 --> 01:12:03,560 +But I can bring them... + +1721 +01:12:03,560 --> 01:12:07,680 +I can take them to any place, even down to your store... + +1722 +01:12:07,680 --> 01:12:08,640 +Starbucks or something. + +1723 +01:12:09,420 --> 01:12:10,960 +...and have you guys work on them. + +1724 +01:12:11,140 --> 01:12:14,820 +Yeah, we can do the upgrade for you, because we have really, really fast internet at the + +1725 +01:12:14,820 --> 01:12:15,040 +shop. + +1726 +01:12:15,740 --> 01:12:16,120 +Yeah. + +1727 +01:12:16,640 --> 01:12:23,560 +We can do that for you, or you can take one of them somewhere and download Windows 10, + +1728 +01:12:23,700 --> 01:12:26,300 +and it'll share it with the other one, just so you know. + +1729 +01:12:27,340 --> 01:12:27,660 +Oh, yeah. + +1730 +01:12:27,660 --> 01:12:28,140 +Well, I've done... + +1731 +01:12:28,140 --> 01:12:29,220 +I've done the upgrades. + +1732 +01:12:29,320 --> 01:12:30,560 +It's just getting the... + +1733 +01:12:30,560 --> 01:12:31,380 +It's the... + +1734 +01:12:31,380 --> 01:12:34,400 +You know, periodically, you have to do a Windows upgrade. + +1735 +01:12:34,820 --> 01:12:36,260 +That's when the problem begins. + +1736 +01:12:36,500 --> 01:12:41,480 +So, let's talk about, like, do you have other options as far as internet where you're at? + +1737 +01:12:42,200 --> 01:12:42,860 +Well, yeah. + +1738 +01:12:43,520 --> 01:12:49,640 +But the white boss, only what she wants to do is do Amazons and Zappos. + +1739 +01:12:49,920 --> 01:12:54,880 +That's all she wants to do, and she's very happy with cutting corners on everything else, + +1740 +01:12:55,420 --> 01:12:58,020 +except when the operating system's at... + +1741 +01:12:58,140 --> 01:13:01,180 +It comes into play, but she doesn't understand. + +1742 +01:13:01,500 --> 01:13:06,000 +So, let me put my marriage counselor hat on for a minute, and I'm going to go ahead and + +1743 +01:13:06,000 --> 01:13:10,740 +say, you can tell your wife that the guru says that you need better internet, because + +1744 +01:13:11,580 --> 01:13:12,300 +that's ridiculous. + +1745 +01:13:13,740 --> 01:13:14,820 +What are you guys paying for internet? + +1746 +01:13:16,160 --> 01:13:16,640 +Do you know? + +1747 +01:13:17,600 --> 01:13:18,120 +Mm-hmm. + +1748 +01:13:18,240 --> 01:13:19,740 +Do you know how much you're paying for internet? + +1749 +01:13:21,100 --> 01:13:23,680 +Oh, maybe right now it's sub-40. + +1750 +01:13:24,280 --> 01:13:24,780 +All right. + +1751 +01:13:24,840 --> 01:13:25,560 +By baud rate. + +1752 +01:13:25,620 --> 01:13:27,140 +By baud rate on the... + +1753 +01:13:28,140 --> 01:13:29,720 +On the Speakeasy, it's like 15. + +1754 +01:13:30,160 --> 01:13:30,520 +All right. + +1755 +01:13:30,560 --> 01:13:32,600 +So, if you can measure it in baud, that's really nice. + +1756 +01:13:33,980 --> 01:13:34,440 +All right. + +1757 +01:13:34,440 --> 01:13:35,480 +So, you're getting, like, 15 megabit? + +1758 +01:13:36,260 --> 01:13:36,580 +Yeah. + +1759 +01:13:36,580 --> 01:13:37,540 +Or 1.5? + +1760 +01:13:37,580 --> 01:13:39,080 +Because I think you're getting 1.5. + +1761 +01:13:39,680 --> 01:13:40,120 +Oh, no. + +1762 +01:13:40,720 --> 01:13:41,040 +15. + +1763 +01:13:41,920 --> 01:13:42,820 +Now, 15's not bad. + +1764 +01:13:43,200 --> 01:13:44,220 +I mean, for Centrelink. + +1765 +01:13:44,360 --> 01:13:45,880 +For Centrelink, that's not bad. + +1766 +01:13:46,620 --> 01:13:46,940 +Right. + +1767 +01:13:47,100 --> 01:13:49,120 +But it needs to get up to around 50. + +1768 +01:13:49,300 --> 01:13:50,700 +It'd be nice to get to 75. + +1769 +01:13:51,760 --> 01:13:52,080 +Okay. + +1770 +01:13:52,120 --> 01:13:53,320 +For downspeed, right? + +1771 +01:13:54,200 --> 01:13:54,520 +Yes. + +1772 +01:13:54,600 --> 01:13:54,920 +Okay. + +1773 +01:13:55,000 --> 01:13:55,160 +Yeah. + +1774 +01:13:55,220 --> 01:13:56,540 +You're not doing that with Centrelink. + +1775 +01:13:58,280 --> 01:13:59,740 +What area of town are you in? + +1776 +01:14:00,540 --> 01:14:00,960 +Northwest. + +1777 +01:14:01,320 --> 01:14:01,700 +Northwest. + +1778 +01:14:01,900 --> 01:14:02,280 +Orange Grove Oracle. + +1779 +01:14:02,440 --> 01:14:02,960 +All right. + +1780 +01:14:02,980 --> 01:14:04,780 +So, you're looking at Comcast. + +1781 +01:14:07,100 --> 01:14:09,480 +And Comcast does offer a... + +1782 +01:14:09,480 --> 01:14:10,320 +What is that? + +1783 +01:14:10,360 --> 01:14:11,020 +$45 plan? + +1784 +01:14:11,240 --> 01:14:11,440 +Yeah. + +1785 +01:14:11,540 --> 01:14:14,740 +I'll tell you that I lived almost exactly where you're talking about not too long ago. + +1786 +01:14:14,800 --> 01:14:15,820 +I had Comcast. + +1787 +01:14:15,840 --> 01:14:18,880 +I paid 50 bucks a month, and I got over 40 megs. + +1788 +01:14:19,840 --> 01:14:20,680 +So, yeah. + +1789 +01:14:20,760 --> 01:14:26,020 +You add another $10 or $15 a month, and you get a lot more go. + +1790 +01:14:28,720 --> 01:14:29,900 +And Centrelink is... + +1791 +01:14:30,960 --> 01:14:31,500 +Hold on. + +1792 +01:14:31,520 --> 01:14:32,020 +What's the disclaimer? + +1793 +01:14:32,260 --> 01:14:33,860 +Everything that I say is my opinion. + +1794 +01:14:33,900 --> 01:14:36,640 +It does not necessarily represent this radio station or computer guru. + +1795 +01:14:38,020 --> 01:14:38,960 +God, they're terrible. + +1796 +01:14:39,260 --> 01:14:39,500 +Yeah. + +1797 +01:14:39,540 --> 01:14:41,500 +I was going to say, you know, you asked him if he had any other options. + +1798 +01:14:41,600 --> 01:14:42,420 +I was like, clearly not. + +1799 +01:14:42,800 --> 01:14:43,820 +He's on Centrelink. + +1800 +01:14:45,740 --> 01:14:50,280 +It's just I have never had good experience with Centrelink Internet. + +1801 +01:14:51,060 --> 01:14:51,460 +Okay. + +1802 +01:14:51,860 --> 01:14:52,940 +I try to get everybody off of it. + +1803 +01:14:53,460 --> 01:14:54,060 +Could I... + +1804 +01:14:54,060 --> 01:14:56,540 +If I needed to, could I just pop up a Yagi? + +1805 +01:14:56,900 --> 01:14:57,300 +Yeah. + +1806 +01:14:57,400 --> 01:14:57,800 +Yeah. + +1807 +01:14:57,800 --> 01:14:58,120 +Yeah. + +1808 +01:14:58,120 --> 01:14:58,120 + + +1809 +01:14:58,120 --> 01:14:58,120 + + +1810 +01:14:58,120 --> 01:14:58,120 + + +1811 +01:14:58,120 --> 01:14:58,120 + + +1812 +01:14:58,120 --> 01:14:58,120 + + +1813 +01:14:58,120 --> 01:14:58,120 + + +1814 +01:14:58,120 --> 01:14:58,120 + + +1815 +01:14:58,120 --> 01:14:58,120 + + +1816 +01:14:58,120 --> 01:14:58,120 + + +1817 +01:14:58,120 --> 01:14:58,120 + + +1818 +01:14:58,120 --> 01:14:58,120 + + +1819 +01:14:58,120 --> 01:14:58,120 + + +1820 +01:14:58,120 --> 01:14:58,120 + + +1821 +01:14:58,120 --> 01:14:58,120 + + +1822 +01:14:58,120 --> 01:14:58,120 + + +1823 +01:14:58,120 --> 01:15:01,400 +Could I find a Comcast Wi-Fi system? + +1824 +01:15:01,420 --> 01:15:02,620 +Like a hotspot? + +1825 +01:15:03,340 --> 01:15:03,820 +Problem? + +1826 +01:15:04,060 --> 01:15:04,840 +Yes, a hotspot. + +1827 +01:15:05,000 --> 01:15:06,600 +Well, Comcast does that. + +1828 +01:15:06,780 --> 01:15:07,200 +Yeah. + +1829 +01:15:07,200 --> 01:15:08,580 +You could probably do that. + +1830 +01:15:09,680 --> 01:15:10,160 +Okay. + +1831 +01:15:10,260 --> 01:15:13,360 +And they make directional antennas for Wi-Fi, for sure. + +1832 +01:15:14,020 --> 01:15:14,500 +Yeah. + +1833 +01:15:14,560 --> 01:15:16,840 +And if I need to, could I... + +1834 +01:15:16,840 --> 01:15:22,720 +Probably it would be easier just for me to bring the desktops down to you guys to do all the important upgrades. + +1835 +01:15:23,000 --> 01:15:23,280 +Right. + +1836 +01:15:23,440 --> 01:15:23,920 +Yeah. + +1837 +01:15:24,040 --> 01:15:27,640 +The problem is right now, at least at the current cycle, + +1838 +01:15:28,120 --> 01:15:29,200 +where you're at with Windows 10, + +1839 +01:15:29,300 --> 01:15:33,940 +is that there are large critical updates happening about every week. + +1840 +01:15:35,380 --> 01:15:36,340 +So, yeah. + +1841 +01:15:36,620 --> 01:15:37,100 +Yeah. + +1842 +01:15:37,320 --> 01:15:39,340 +That'll calm down eventually, but... + +1843 +01:15:39,340 --> 01:15:44,600 +But will their servers pick up the speed enough to where it'll do the job? + +1844 +01:15:44,980 --> 01:15:46,920 +Well, luckily they're doing something called... + +1845 +01:15:46,920 --> 01:15:48,280 +It's like torrenting. + +1846 +01:15:48,280 --> 01:15:51,640 +They're doing peer-to-peer with the Windows 10 upgrades or updates. + +1847 +01:15:51,800 --> 01:15:52,120 +Mm-hmm. + +1848 +01:15:52,140 --> 01:15:55,520 +So those updates are available all over the place. + +1849 +01:15:55,640 --> 01:15:57,180 +And so it's pretty quick. + +1850 +01:15:58,440 --> 01:16:00,940 +And I've never had a problem with slow updates. + +1851 +01:16:03,000 --> 01:16:03,600 +But anyway. + +1852 +01:16:03,780 --> 01:16:04,080 +Got it. + +1853 +01:16:04,260 --> 01:16:06,620 +So if you want to bring it down, we can do the upgrades for you. + +1854 +01:16:06,620 --> 01:16:07,340 +That's not a big deal. + +1855 +01:16:07,720 --> 01:16:10,640 +I would suggest that you guys switch over to Comcast if possible. + +1856 +01:16:11,280 --> 01:16:14,440 +You could go the other route of building a crazy antenna, + +1857 +01:16:14,620 --> 01:16:17,720 +but I think that you will have paid for the difference in cost + +1858 +01:16:18,420 --> 01:16:23,480 +just by getting a nice directional Wi-Fi antenna for a year. + +1859 +01:16:24,260 --> 01:16:27,300 +So just get off CenturyLink, man. + +1860 +01:16:27,320 --> 01:16:27,700 +Come on. + +1861 +01:16:29,300 --> 01:16:29,740 +Okay. + +1862 +01:16:29,860 --> 01:16:30,300 +Will do. + +1863 +01:16:30,500 --> 01:16:30,800 +All right. + +1864 +01:16:30,880 --> 01:16:31,980 +I'll talk to you later. + +1865 +01:16:32,280 --> 01:16:34,700 +You know, that poses a very important question, though. + +1866 +01:16:34,800 --> 01:16:35,380 +What is it? + +1867 +01:16:35,420 --> 01:16:40,480 +If you start your Windows 10 download and it doesn't finish until after the free date ends, + +1868 +01:16:40,660 --> 01:16:41,740 +is it still free? + +1869 +01:16:42,800 --> 01:16:43,880 +I believe that it is. + +1870 +01:16:45,480 --> 01:16:47,160 +CenturyLink takes a month to download it. + +1871 +01:16:48,040 --> 01:16:49,080 +I believe that it is. + +1872 +01:16:49,100 --> 01:16:50,560 +I think all you have to do is start the process. + +1873 +01:16:50,960 --> 01:16:52,220 +Yeah, I was just joking. + +1874 +01:16:52,980 --> 01:16:54,620 +I mean, it's a valid question. + +1875 +01:16:55,640 --> 01:16:57,620 +For some users, apparently it is. + +1876 +01:16:57,620 --> 01:16:58,100 +You know, for some users. + +1877 +01:16:58,100 --> 01:16:58,100 + + +1878 +01:16:58,100 --> 01:16:58,600 +CenturyLink users. + +1879 +01:16:59,300 --> 01:17:00,800 +You know, you got to know. + +1880 +01:17:00,900 --> 01:17:01,780 +You got to wonder. + +1881 +01:17:01,940 --> 01:17:05,820 +We got to open up a guru internet cafe where people can just come and download Windows 10. + +1882 +01:17:05,960 --> 01:17:06,880 +I thought about doing that. + +1883 +01:17:06,940 --> 01:17:08,460 +I thought maybe we'd talk with Black Crown + +1884 +01:17:08,460 --> 01:17:13,460 +and see if we can do like a joint venture for coffee shop slash... + +1885 +01:17:13,460 --> 01:17:14,460 +Guru internet. + +1886 +01:17:14,580 --> 01:17:15,660 +Yeah, basically. + +1887 +01:17:15,960 --> 01:17:17,760 +If Google Fiber ever comes to Tucson. + +1888 +01:17:19,880 --> 01:17:21,460 +Yeah, there's not a whole lot of hope for that. + +1889 +01:17:21,560 --> 01:17:23,760 +It just depresses me every time I hear Google Fiber. + +1890 +01:17:23,760 --> 01:17:25,900 +What's the limit on Ethernet viability? + +1891 +01:17:26,120 --> 01:17:27,200 +Is it 100 miles? + +1892 +01:17:27,200 --> 01:17:29,320 +Can we drag a cable down from Phoenix? + +1893 +01:17:29,440 --> 01:17:30,200 +No, no. + +1894 +01:17:30,280 --> 01:17:32,020 +It's 300 feet, which is terrible. + +1895 +01:17:32,340 --> 01:17:33,300 +It's not going to work. + +1896 +01:17:33,380 --> 01:17:35,000 +That's not even close to long enough. + +1897 +01:17:36,280 --> 01:17:36,840 +All right. + +1898 +01:17:36,980 --> 01:17:37,860 +All right. + +1899 +01:17:37,880 --> 01:17:38,960 +So there's a question in the chat. + +1900 +01:17:39,080 --> 01:17:42,900 +And by the way, if you want to go to the chat, you can go to gurushow.com slash chat. + +1901 +01:17:43,060 --> 01:17:49,600 +And they're asking, what effect will net neutrality have on the mom and pop ISPs here, like SimplyBits and stuff like that? + +1902 +01:17:51,020 --> 01:17:55,760 +He heard that it would put stress on them because they're not big enough to compete with the utilities. + +1903 +01:17:56,120 --> 01:17:56,840 +Is this true? + +1904 +01:17:57,280 --> 01:18:06,840 +Well, I mean, correct me if I'm wrong, but don't most of those mom and pop ISPs, as that person put it, they're just reselling other ISPs, right? + +1905 +01:18:07,520 --> 01:18:08,140 +Well, yeah. + +1906 +01:18:08,240 --> 01:18:09,740 +I mean, everybody resells the backbone. + +1907 +01:18:09,980 --> 01:18:10,160 +Yeah. + +1908 +01:18:11,240 --> 01:18:22,120 +But as an example, SimplyBits uses both the Comcast network, or I'm sorry, the Cox network and the Centrelink network to do their thing. + +1909 +01:18:22,200 --> 01:18:25,820 +And depending on where their towers are at, those also have to connect to a larger network. + +1910 +01:18:27,200 --> 01:18:28,300 +Like Verizon, as an example. + +1911 +01:18:29,180 --> 01:18:31,360 +Verizon has towers all over Tucson. + +1912 +01:18:31,720 --> 01:18:44,340 +And those Verizon towers are connected not only amongst each other, right, directly, but they also have, like, Cox connections going into them to help provide bandwidth for your 4G. + +1913 +01:18:46,020 --> 01:18:49,620 +So there's an interconnectedness that goes on with all of the ISPs. + +1914 +01:18:50,880 --> 01:18:57,040 +Now, luckily, I know some people who happen to own a mom and pop. + +1915 +01:18:58,220 --> 01:19:07,940 +And rather than me kind of talking out of my butt on this one, I will set up a meeting to go talk to them and ask them what they think and what their struggles are, and I'll get back to you. + +1916 +01:19:08,880 --> 01:19:10,740 +Maybe we can get one of them on the show. + +1917 +01:19:10,780 --> 01:19:11,140 +That'd be cool. + +1918 +01:19:11,280 --> 01:19:12,020 +That would be nice. + +1919 +01:19:12,980 --> 01:19:13,480 +All right. + +1920 +01:19:14,100 --> 01:19:16,200 +Do we want to take some calls here, or do we want to do a break? + +1921 +01:19:16,240 --> 01:19:16,800 +They're stacking up. + +1922 +01:19:17,640 --> 01:19:18,040 +All right. + +1923 +01:19:18,060 --> 01:19:18,460 +You pick one. + +1924 +01:19:18,740 --> 01:19:19,360 +Put it on there. + +1925 +01:19:21,000 --> 01:19:21,500 +All right. + +1926 +01:19:21,640 --> 01:19:21,920 +Luxanne. + +1927 +01:19:22,000 --> 01:19:22,500 +Hello, Luxanne. + +1928 +01:19:22,560 --> 01:19:22,840 +How are you? + +1929 +01:19:24,200 --> 01:19:24,740 +I'm good. + +1930 +01:19:25,020 --> 01:19:26,820 +Thank you for the tip. + +1931 +01:19:26,820 --> 01:19:32,140 +It's on getting my speed faster after converting to Windows 10. + +1932 +01:19:32,420 --> 01:19:37,940 +Getting rid of the combating spyware really helped. + +1933 +01:19:38,260 --> 01:19:38,740 +Excellent. + +1934 +01:19:38,760 --> 01:19:39,420 +Glad to hear it. + +1935 +01:19:39,860 --> 01:19:41,760 +I have a new question. + +1936 +01:19:41,960 --> 01:19:52,320 +I recently retired, and my $29.99 DirecTV and CenturyNet interlink now is almost $120 a month. + +1937 +01:19:52,580 --> 01:19:56,780 +And with my retirement, that would equal about 10% of my retirement. + +1938 +01:19:56,820 --> 01:20:04,460 +So I wanted to find out if there is a low-cost Internet service, and I'm going to... + +1939 +01:20:04,460 --> 01:20:06,120 +I have a converter box in a Roku. + +1940 +01:20:06,460 --> 01:20:12,060 +I can live without TV, but I desperately need to have some sort of Internet, primarily to + +1941 +01:20:12,060 --> 01:20:16,700 +do email and a little Facebook here and there. + +1942 +01:20:17,180 --> 01:20:23,980 +I'm not somebody who streams videos on my computer, but I'm looking for something that's + +1943 +01:20:23,980 --> 01:20:25,380 +reasonable and reliable. + +1944 +01:20:25,920 --> 01:20:26,480 +Okay. + +1945 +01:20:26,500 --> 01:20:26,800 +Just for my own personal use. + +1946 +01:20:26,820 --> 01:20:33,540 +I would say that, speaking of the mom-and-pop ISPs, depending on where you're at, what area + +1947 +01:20:33,540 --> 01:20:34,100 +of town are you in? + +1948 +01:20:34,680 --> 01:20:36,840 +I am right across from Flowing Wells High School. + +1949 +01:20:37,120 --> 01:20:37,420 +Okay. + +1950 +01:20:39,260 --> 01:20:44,220 +So CenturyLink does offer sort of the cheapest Internet in town, because they have to, right? + +1951 +01:20:44,300 --> 01:20:45,420 +As far as... + +1952 +01:20:46,740 --> 01:20:48,100 +Yeah, they just have to, right? + +1953 +01:20:48,180 --> 01:20:50,120 +It's the cheapest Internet out there is CenturyLink. + +1954 +01:20:50,920 --> 01:20:55,260 +But because of your previous bundling packages, and they keep raising the rates all the time. + +1955 +01:20:55,340 --> 01:20:55,660 +Yeah. + +1956 +01:20:55,660 --> 01:20:55,820 +So... + +1957 +01:20:55,820 --> 01:20:56,220 +Yeah. + +1958 +01:20:56,240 --> 01:20:56,640 +Yeah. + +1959 +01:20:56,640 --> 01:20:56,800 +Yeah. + +1960 +01:20:56,800 --> 01:20:56,800 + + +1961 +01:20:56,800 --> 01:20:56,800 + + +1962 +01:20:56,800 --> 01:20:56,800 + + +1963 +01:20:56,800 --> 01:20:56,800 + + +1964 +01:20:56,800 --> 01:20:56,800 + + +1965 +01:20:56,800 --> 01:20:56,800 + + +1966 +01:20:56,800 --> 01:20:56,800 + + +1967 +01:20:56,800 --> 01:20:56,800 + + +1968 +01:20:56,820 --> 01:20:57,020 +That's what I mentioned. + +1969 +01:20:57,920 --> 01:20:59,060 +Look at SimplyBits. + +1970 +01:20:59,140 --> 01:21:04,940 +They offer a residential package, which I think is, it's like 1.5 meg or 3 meg, and + +1971 +01:21:04,940 --> 01:21:05,860 +it's $20 a month. + +1972 +01:21:06,580 --> 01:21:06,980 +Wow. + +1973 +01:21:08,020 --> 01:21:08,820 +That's incredible. + +1974 +01:21:09,040 --> 01:21:13,080 +The downside is that there's an upfront cost to them, because they have to put an antenna + +1975 +01:21:13,080 --> 01:21:13,740 +up at your house. + +1976 +01:21:13,980 --> 01:21:19,400 +So you're looking at it like a $300 investment, but it's a one-time, you never pay anything + +1977 +01:21:19,400 --> 01:21:23,360 +like that again, and then it's $20 a month from there to, as far as I know, the end of + +1978 +01:21:23,360 --> 01:21:23,580 +eternity. + +1979 +01:21:25,240 --> 01:21:25,640 +Yeah. + +1980 +01:21:25,700 --> 01:21:26,660 +That's incredible. + +1981 +01:21:26,820 --> 01:21:33,300 +That's incredible, because that's less than three months of my Cox, I mean, my CenturyLink + +1982 +01:21:33,300 --> 01:21:42,020 +and DirecTV, and I've been putting it off, but I need to downprice myself. + +1983 +01:21:42,860 --> 01:21:44,840 +So are they open on Saturdays? + +1984 +01:21:45,560 --> 01:21:46,620 +I don't know. + +1985 +01:21:46,740 --> 01:21:48,500 +I don't know if they're open on Saturdays. + +1986 +01:21:50,360 --> 01:21:52,700 +545-0400 is their phone number, I think. + +1987 +01:21:54,140 --> 01:21:55,020 +545-0400. + +1988 +01:21:55,060 --> 01:21:55,980 +Hopefully I got that right. + +1989 +01:21:55,980 --> 01:21:57,980 +You can also just go to SimplyBits.com. + +1990 +01:21:58,200 --> 01:22:01,080 +Yeah, SimplyBits.com is also the alternative there. + +1991 +01:22:01,760 --> 01:22:02,140 +Okay. + +1992 +01:22:02,160 --> 01:22:03,260 +Well, thank you so much. + +1993 +01:22:03,360 --> 01:22:04,260 +You have a good weekend. + +1994 +01:22:04,480 --> 01:22:04,880 +You too. + +1995 +01:22:04,980 --> 01:22:05,640 +Thank you for the call. + +1996 +01:22:05,680 --> 01:22:06,020 +Happy Father's Day. + +1997 +01:22:06,380 --> 01:22:07,980 +Oh, there's a Happy Father's Day in there. + +1998 +01:22:08,120 --> 01:22:09,180 +I wonder how she knew. + +1999 +01:22:09,360 --> 01:22:09,940 +All right. + +2000 +01:22:10,040 --> 01:22:11,700 +We'll be right back after these messages. + +2001 +01:22:20,560 --> 01:22:22,400 +Your computer guru, Mike Swanson. + +2002 +01:22:24,340 --> 01:22:25,400 +. . . + +2003 +01:22:25,400 --> 01:22:25,960 +. . . + +2004 +01:22:25,960 --> 01:22:25,960 + + +2005 +01:22:25,960 --> 01:22:25,960 + + +2006 +01:22:25,960 --> 01:22:25,960 + + +2007 +01:22:25,960 --> 01:22:25,960 + + +2008 +01:22:25,960 --> 01:22:25,960 + + +2009 +01:22:25,960 --> 01:22:25,960 + + +2010 +01:22:25,960 --> 01:22:25,960 + + +2011 +01:22:25,960 --> 01:22:25,960 + + +2012 +01:22:25,960 --> 01:22:25,960 + + +2013 +01:22:25,960 --> 01:22:25,960 + + +2014 +01:22:25,960 --> 01:22:25,960 + + +2015 +01:22:25,960 --> 01:22:25,960 + + +2016 +01:22:25,960 --> 01:22:25,960 + + +2017 +01:22:25,960 --> 01:22:25,960 + + +2018 +01:22:25,960 --> 01:22:25,960 + + +2019 +01:22:25,960 --> 01:22:25,960 + + +2020 +01:22:25,960 --> 01:22:25,960 + + +2021 +01:22:25,960 --> 01:22:25,960 + + +2022 +01:22:25,960 --> 01:22:28,460 +Right now at gurushow.com or call in. + +2023 +01:22:28,540 --> 01:22:32,020 +This is the Computer Guru Show on KVOY, The Voice. + +2024 +01:22:43,980 --> 01:22:47,080 +Mike Swanson, your computer guru, is just a click away. + +2025 +01:22:47,280 --> 01:22:49,620 +Listen and watch at gurushow.com. + +2026 +01:22:49,900 --> 01:22:51,900 +This is the Computer Guru Show. + +2027 +01:22:53,300 --> 01:22:56,440 +Welcome back to the Computer Guru Show 7902040. + +2028 +01:22:56,460 --> 01:22:59,860 +If you want to be part of the show, let's talk to Ron, who's been waiting very patiently. + +2029 +01:23:00,160 --> 01:23:00,980 +Hello, Ron. How are you? + +2030 +01:23:02,300 --> 01:23:03,740 +Hey, hope you're doing okay. + +2031 +01:23:04,060 --> 01:23:05,000 +I'm doing lovely. + +2032 +01:23:06,780 --> 01:23:13,900 +On Windows 10, I have a whole heck of a lot of programs and games that work on 7. + +2033 +01:23:14,680 --> 01:23:17,620 +So would that be a problem if I changed? + +2034 +01:23:18,320 --> 01:23:19,920 +Depends on the games. + +2035 +01:23:19,920 --> 01:23:20,140 +Games? + +2036 +01:23:21,440 --> 01:23:22,380 +Most of the time, no. + +2037 +01:23:22,960 --> 01:23:24,820 +We haven't seen too many problems with... + +2038 +01:23:25,220 --> 01:23:31,980 +There are issues with video drivers and the way video behaves between 7 and 10, + +2039 +01:23:32,060 --> 01:23:33,000 +depending on your card. + +2040 +01:23:33,580 --> 01:23:36,320 +Specifically with the high-end NVIDIA cards, I've seen some issues. + +2041 +01:23:37,400 --> 01:23:38,540 +What kind of video card do you have? + +2042 +01:23:39,340 --> 01:23:41,220 +It's a high-end NVIDIA card. + +2043 +01:23:41,420 --> 01:23:44,500 +Right, so if you have the GeForce experience on your machine, that should go. + +2044 +01:23:45,940 --> 01:23:49,020 +I personally, right as you're about to do the upgrade, + +2045 +01:23:49,920 --> 01:23:52,640 +I found it worked out a whole lot better for me + +2046 +01:23:54,100 --> 01:23:56,300 +that right when I told it to go ahead and do the upgrade, + +2047 +01:23:56,460 --> 01:23:58,840 +I also uninstalled the video driver. + +2048 +01:23:59,720 --> 01:24:04,260 +And then it reinstalled it upon reboot after doing the Windows 10 upgrade, + +2049 +01:24:04,380 --> 01:24:05,280 +and everything worked fine. + +2050 +01:24:05,560 --> 01:24:08,580 +I'll say that as far as gaming goes, because of that exact issue, + +2051 +01:24:09,380 --> 01:24:11,440 +what worked for me was just doing a fresh install. + +2052 +01:24:12,040 --> 01:24:15,160 +Because if you're using Steam games, you can reassociate them after the install. + +2053 +01:24:15,220 --> 01:24:16,060 +You don't have to re-download them. + +2054 +01:24:17,100 --> 01:24:19,900 +Okay, do you mean NVIDIA reinstalled? + +2055 +01:24:19,920 --> 01:24:24,140 +It reinstalls the driver for the game or Windows 10? + +2056 +01:24:24,180 --> 01:24:28,740 +So Windows 10 will install its own NVIDIA driver after you do an upgrade. + +2057 +01:24:28,980 --> 01:24:31,500 +And then from there, you can go ahead and put on any, + +2058 +01:24:31,660 --> 01:24:34,820 +like if you're using a beta driver or using the experience driver, + +2059 +01:24:35,020 --> 01:24:36,220 +you can put that back on yourself. + +2060 +01:24:36,640 --> 01:24:40,340 +However, the experience driver, we have seen lots of problems + +2061 +01:24:40,340 --> 01:24:42,540 +where if it's installed prior to upgrade, + +2062 +01:24:42,800 --> 01:24:47,280 +it breaks the crap out of the video settings after the upgrade. + +2063 +01:24:48,000 --> 01:24:49,160 +What's the experience driver? + +2064 +01:24:50,220 --> 01:24:52,100 +Well, if you're not using it, then that's good. + +2065 +01:24:52,160 --> 01:24:53,240 +That means you don't have to uninstall it. + +2066 +01:24:53,320 --> 01:24:57,880 +But it's sort of like a universal driver for NVIDIA. + +2067 +01:24:58,520 --> 01:24:58,980 +Okay. + +2068 +01:24:59,380 --> 01:25:05,420 +So Windows 10 knows which driver goes to my NVIDIA card? + +2069 +01:25:05,780 --> 01:25:11,400 +There is a basic NVIDIA WHQL driver that Microsoft definitely knows about. + +2070 +01:25:11,940 --> 01:25:14,380 +It's a GeForce driver, so that wouldn't be a problem? + +2071 +01:25:14,620 --> 01:25:14,820 +No. + +2072 +01:25:14,880 --> 01:25:19,740 +Well, you'll still want to get your NVIDIA update for your card specifically, + +2073 +01:25:19,920 --> 01:25:23,020 +after the install, because your performance on your NVIDIA card + +2074 +01:25:23,020 --> 01:25:23,980 +could be affected if you don't. + +2075 +01:25:24,040 --> 01:25:27,640 +But as far as that goes, if you're upgrading, just get rid of it for now, + +2076 +01:25:27,720 --> 01:25:29,020 +and then you can fix it after the install. + +2077 +01:25:29,540 --> 01:25:29,980 +Okay. + +2078 +01:25:30,020 --> 01:25:33,500 +But does Windows 10 use more RAM than 7? + +2079 +01:25:34,360 --> 01:25:36,660 +In my experience, it's about the same. + +2080 +01:25:37,340 --> 01:25:42,480 +Now, I mean, I've got sort of like a video editing rig that I did the upgrade on, + +2081 +01:25:43,200 --> 01:25:47,680 +and it's got 32 gigs of RAM on it, so I didn't really notice any difference at all. + +2082 +01:25:48,160 --> 01:25:48,600 +Okay. + +2083 +01:25:48,600 --> 01:25:48,880 +Okay. + +2084 +01:25:49,260 --> 01:25:49,420 +Okay. + +2085 +01:25:49,460 --> 01:25:49,900 +Okay. + +2086 +01:25:49,900 --> 01:25:49,900 + + +2087 +01:25:49,900 --> 01:25:49,900 + + +2088 +01:25:49,900 --> 01:25:49,900 + + +2089 +01:25:49,900 --> 01:25:49,900 + + +2090 +01:25:49,900 --> 01:25:49,900 + + +2091 +01:25:49,900 --> 01:25:49,900 + + +2092 +01:25:49,900 --> 01:25:49,900 + + +2093 +01:25:49,900 --> 01:25:49,900 + + +2094 +01:25:49,900 --> 01:25:49,900 + + +2095 +01:25:49,900 --> 01:25:49,900 + + +2096 +01:25:49,900 --> 01:25:49,900 + + +2097 +01:25:49,900 --> 01:25:49,900 + + +2098 +01:25:49,900 --> 01:25:49,900 + + +2099 +01:25:49,900 --> 01:25:49,900 + + +2100 +01:25:49,920 --> 01:25:53,640 +Because the Windows, like my laptop here is Windows 10, + +2101 +01:25:54,560 --> 01:26:01,160 +and I noticed that Chrome uses more RAM after the upgrade than it did before, + +2102 +01:26:01,380 --> 01:26:02,740 +and more CPU for that matter, too. + +2103 +01:26:03,320 --> 01:26:07,120 +So there is some sort of a penalty, a tradeoff there, + +2104 +01:26:07,240 --> 01:26:11,460 +but I don't think it's enough that it needs to be warned about, like in the Vista era. + +2105 +01:26:12,100 --> 01:26:15,260 +So you're saying certain programs, it differs by the program? + +2106 +01:26:15,440 --> 01:26:17,560 +It appears to be differing by the program. + +2107 +01:26:18,260 --> 01:26:19,840 +Do you know what, like the official? + +2108 +01:26:19,920 --> 01:26:22,640 +The official usage is per each OS? + +2109 +01:26:23,720 --> 01:26:24,760 +Off the top of my head, no. + +2110 +01:26:24,860 --> 01:26:25,240 +I'm sorry. + +2111 +01:26:25,460 --> 01:26:25,720 +Okay. + +2112 +01:26:26,040 --> 01:26:26,480 +Okay. + +2113 +01:26:27,280 --> 01:26:31,640 +But I don't think that, I mean, if you get a reasonable machine and you're playing games on it now, + +2114 +01:26:32,140 --> 01:26:35,140 +you're probably not going to notice any performance impact + +2115 +01:26:35,140 --> 01:26:39,840 +as long as you don't have your antivirus on there during the upgrade + +2116 +01:26:39,840 --> 01:26:44,100 +and you deal with the video stuff beforehand. + +2117 +01:26:44,720 --> 01:26:48,240 +Yeah, you said Conspiracy uses a lot of resources. + +2118 +01:26:48,340 --> 01:26:48,920 +Resources help out. + +2119 +01:26:49,980 --> 01:26:50,380 +Panda. + +2120 +01:26:51,480 --> 01:26:55,900 +Panda's not, my biggest problem with Panda is that it was irritating. + +2121 +01:26:57,240 --> 01:27:01,540 +But it's a decent antivirus, and it's nice and lightweight, and it's fast. + +2122 +01:27:01,900 --> 01:27:06,700 +So I have no issue with Panda as long as you go in and put it in, like, gaming mode + +2123 +01:27:06,700 --> 01:27:09,120 +so it doesn't give you a million updates every second. + +2124 +01:27:09,600 --> 01:27:10,280 +Yeah, it's trying to sell you something. + +2125 +01:27:10,280 --> 01:27:13,180 +The reason why it's lighter is because it's more web-based, isn't it? + +2126 +01:27:13,620 --> 01:27:14,480 +Well, sort of. + +2127 +01:27:14,480 --> 01:27:16,660 +That's sort of a misnomer with all those web-based ones. + +2128 +01:27:16,780 --> 01:27:19,280 +They, they, it does. + +2129 +01:27:19,280 --> 01:27:23,900 +It does less as far as, like, Kaspersky is concerned, or compared to Kaspersky. + +2130 +01:27:24,600 --> 01:27:24,840 +So. + +2131 +01:27:25,780 --> 01:27:28,300 +It does less, you mean, on your machine as far as. + +2132 +01:27:28,360 --> 01:27:30,060 +Yeah, I mean, it's monitoring less things. + +2133 +01:27:30,160 --> 01:27:34,220 +It's, it's checking less things, and it uses a smaller database than Kaspersky + +2134 +01:27:34,220 --> 01:27:35,580 +because of that online feature. + +2135 +01:27:36,020 --> 01:27:37,100 +That's not necessarily bad. + +2136 +01:27:37,240 --> 01:27:40,460 +I think that, I think that if you're going to do something, you should do it well, right? + +2137 +01:27:40,980 --> 01:27:41,420 +Right. + +2138 +01:27:41,420 --> 01:27:47,720 +And what I like about the antivirus-only antiviruses is that they do one thing, + +2139 +01:27:47,840 --> 01:27:49,260 +and they hopefully should. + +2140 +01:27:49,260 --> 01:27:50,160 +They strive to do that well. + +2141 +01:27:51,800 --> 01:27:56,220 +Whereas Kaspersky and Norton and McAfee and these other larger suites, + +2142 +01:27:56,240 --> 01:28:00,540 +even Avast to a certain extent these days, they want to do all these things. + +2143 +01:28:00,620 --> 01:28:04,280 +They want to check your spam and your email, and they want to, + +2144 +01:28:04,280 --> 01:28:06,640 +they want to look for your privacy information. + +2145 +01:28:07,100 --> 01:28:08,060 +Too many features. + +2146 +01:28:08,260 --> 01:28:10,160 +Right, and all these features have a cost. + +2147 +01:28:10,340 --> 01:28:11,940 +Jack of all trades, but master of none. + +2148 +01:28:12,240 --> 01:28:14,180 +Right, so I just, I just want a good antivirus. + +2149 +01:28:14,220 --> 01:28:14,500 +That's it. + +2150 +01:28:14,640 --> 01:28:17,620 +So, so you're saying Penn is more specialized on that one purpose? + +2151 +01:28:17,820 --> 01:28:18,840 +Well, I hope so. + +2152 +01:28:18,880 --> 01:28:19,060 +Otherwise. + +2153 +01:28:19,260 --> 01:28:23,180 +Because it has no purpose on the machine at all, because they purport to only be an antivirus. + +2154 +01:28:23,540 --> 01:28:27,180 +Now, they do offer a firewall add-on in their paid version, but who needs that? + +2155 +01:28:28,020 --> 01:28:28,380 +Right. + +2156 +01:28:28,700 --> 01:28:29,060 +Okay. + +2157 +01:28:29,240 --> 01:28:31,420 +Yeah, because Windows has its own, its own firewall, right? + +2158 +01:28:32,000 --> 01:28:34,540 +Windows does have a firewall, and it is very configurable, + +2159 +01:28:35,120 --> 01:28:36,680 +especially if you go into the advanced version. + +2160 +01:28:36,760 --> 01:28:38,340 +So, yeah, you've got lots of options. + +2161 +01:28:38,540 --> 01:28:38,900 +But. + +2162 +01:28:39,020 --> 01:28:39,380 +Okay. + +2163 +01:28:39,440 --> 01:28:40,540 +I appreciate the call, Ron. + +2164 +01:28:40,820 --> 01:28:41,440 +Cool, thanks. + +2165 +01:28:41,660 --> 01:28:43,600 +It turns out that we ran out of time in our second hour. + +2166 +01:28:44,440 --> 01:28:45,120 +What's up with that? + +2167 +01:28:45,320 --> 01:28:46,140 +What's up with that? + +2168 +01:28:46,160 --> 01:28:46,780 +We're out of time. + +2169 +01:28:46,860 --> 01:28:47,460 +Out of time. + +2170 +01:28:48,440 --> 01:28:49,000 +All right. + +2171 +01:28:49,260 --> 01:28:55,120 +So, let's mention our sponsor that we didn't mention last time, which is Desert Pro Commercial Cleaners. + +2172 +01:28:55,160 --> 01:28:57,700 +They are a Patreon sponsor, and you can be too. + +2173 +01:28:58,160 --> 01:29:00,120 +You can even make Tara say whatever you want. + +2174 +01:29:00,140 --> 01:29:00,320 +Right. + +2175 +01:29:00,420 --> 01:29:01,080 +Or me. + +2176 +01:29:01,180 --> 01:29:09,080 +The rule is, is that if you donated a certain amount, Tara has to say whatever it is that you want her to say, + +2177 +01:29:09,140 --> 01:29:11,680 +providing it's FCC friendly and won't get us in trouble. + +2178 +01:29:11,820 --> 01:29:16,000 +We're really hoping that somebody is going to just have something hilarious for her to say. + +2179 +01:29:16,060 --> 01:29:16,940 +I would love that. + +2180 +01:29:17,980 --> 01:29:18,380 +But. + +2181 +01:29:18,380 --> 01:29:19,960 +But take an opportunity to support the show. + +2182 +01:29:20,040 --> 01:29:21,240 +Now that the show is even longer. + +2183 +01:29:21,560 --> 01:29:21,940 +Yep. + +2184 +01:29:22,040 --> 01:29:25,940 +It costs a little bit more, so we're going to need your help to keep it on the air. + +2185 +01:29:26,140 --> 01:29:30,480 +Go to gurushow.com slash Patreon or patreon.com slash gurushow. + +2186 +01:29:30,600 --> 01:29:31,280 +Works either way. + +2187 +01:29:31,360 --> 01:29:34,760 +I would also like to take a moment to tell you to go subscribe to our YouTube channel, + +2188 +01:29:34,860 --> 01:29:38,200 +because I'm putting a lot of work into that, and we're going to do all kinds of cool stuff with it. + +2189 +01:29:38,220 --> 01:29:42,540 +But we need to get a certain number of subscribers before we can do some of those things. + +2190 +01:29:42,680 --> 01:29:47,260 +So, make me happy and go to gurushow.com, click the YouTube icon, and subscribe. + +2191 +01:29:47,620 --> 01:29:48,200 +Not to mention. + +2192 +01:29:48,380 --> 01:29:50,220 +There's going to be a whole bunch of giveaways coming up, + +2193 +01:29:50,240 --> 01:29:55,420 +where we're going to give away something each month to someone who happens to be a YouTube subscriber. + +2194 +01:29:56,100 --> 01:30:00,140 +And maybe they have to be, you know, liked on the Facebook and all of that. + +2195 +01:30:00,360 --> 01:30:05,380 +There's going to be some requirements, but if you want free stuff, sign up and tell your friends to sign up, too. + +2196 +01:30:05,920 --> 01:30:10,520 +Also, visit our shop at 510 East Fort Lowell or 64 North Harrison, + +2197 +01:30:10,640 --> 01:30:13,060 +or give us a call at 304-8300. + +2198 +01:30:13,540 --> 01:30:16,960 +Visit the website at azcomputerguru.com. + +2199 +01:30:17,200 --> 01:30:17,640 +Thanks. + +2200 +01:30:17,640 --> 01:30:17,780 +Thanks. + +2201 +01:30:17,780 --> 01:30:18,680 +We'll see you next week. + +2202 +01:30:19,840 --> 01:30:22,140 +I'm going to go to bed. + +2203 +01:30:22,760 --> 01:30:24,100 +I'm going to go to bed. + +2204 +01:30:24,100 --> 01:30:24,500 +I'm going to go to bed. + +2205 +01:30:24,500 --> 01:30:24,600 +I'm going to go to bed. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.txt new file mode 100644 index 0000000..da3fc55 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2016-s8e42/transcript.txt @@ -0,0 +1,2205 @@ +Computer running slow? +Has your machine somehow acquired a life of its own? +Or do you simply desire a deeper and more meaningful connection? +Be one with your operating system. +It's Arizona's computer guru, Mike Swanson, and his show starts now. +Listen in, chat in, and watch live streaming at gurushow.com. +Want your voice to be heard? +Call in with your questions and riddles. +The number is 520-790-2040. +This is the Computer Guru Show on AM1030. +KVOI, The Voice. +Hello and welcome to the Computer Guru Show. +My name is Mike, here to deal with your technology needs and treat you like a person in the process. +790-2040. +That's 520-790-2040 if you want to be part of the show. +This is your free tech support for the weekend. +All you got to do is give us a call, let us know what's going on, and we can help you out. +I've got Rob here. +I am here this week. +Tara is MIA. +She's out of here. +Seems like I'm always covering for her. +Always. +Yeah. +Apparently she just doesn't know when to show up to the show. +No, it's just coincidence. +She's not here and I am. +Yep. +She's, uh, what's she doing? +She's, like, on a beach somewhere sipping Mai Tais, something like that. +Man. +Must be nice. +She's probably listening right now and laughing because she's not here. +Yep. +She's probably just being like, man, look at all this sand and not 117 degree weather that I'm experiencing. +Yeah. +Let's just say that, uh, here in Tucson, we need to spend this weekend indoors. +Yeah. +You're not supposed to talk about the weather on radio, but holy moly, it's hot. +It's not weather anymore. +That's like a hazard. +It's some sort of, there's a natural disaster created by the sun happening here this weekend. +It's, uh, it is unpleasant. +I have to go buy some sunscreen or something today. +Like at some point in the future, they're going to show clips from this weekend in IMAX theaters with Kevin Bacon talking over it. +I saw some picture. +Uh, I don't know where it was. +I don't know where it was at, but apparently they made their light posts on a pier out of some type of plastic and they were just all melted and leaning over. +Yeah. +I've seen, uh, I've seen like pictures where it's like, you know, you're in Arizona when, and it's just a dumpster that is melted. +It's like a puddle. +Pretty, pretty warm. +All right. +790-2040 if you want to be part of the show. +Uh, let's take a moment to mention net neutrality. +Yeah. +And, and for once it might be like a good. +Good conversation. +Yeah. +Because normally when I talk about net neutrality, it's me. +There's scorn and, and fury and just come on. +Uh, but, uh, maybe some good news potentially in the net neutrality world. +The, uh, the internet services are now classified as a utility. +Yeah. +And that's, that's what we've been trying to get done for quite a while now. +Right. +So we, I did a bunch of rants on, uh, net neutrality. +We'll probably throw one up in the. +There's already one up there. +Rants in the YouTube section. +Um, which Rob manages that. +So, uh, you know, golf clap to Rob for, you know, making sure that the, uh, the, uh, YouTube +channel is, is doing what it's supposed to be doing. +By the way, if you have an opportunity to go over there and subscribe to us, cause it +helps us out. +Then you get to hear, uh, Mike's, you know, furious rants about net neutrality and other +stuff. +Yeah. +You know, and I listened to the Verizon one and, um, that was the second Verizon rant +that I've had. +We got to go find the first one. +Cause that's like season four or something. +We're gonna have to go dig that up. +That one is where I just exploded on air. +It's really not, not cool. +Uh, we'll have to find one of those. +Um, but yeah, the net neutrality one from, uh, last season, last year is up there right +now. +So go check it out on our YouTube channel. +Right. +Then you can get sort of a background on what net neutrality is or is not, uh, at least +from the perspective of people in technology. +Uh, I, there was a whole bunch of political spin. +On it, uh, when it was actually happening. +Oh, and then, uh, that reminds me just to preview for you guys. +Next, next, the next excerpt that we're putting on YouTube is a throwback to act. +I remember act. +Yeah. +It's you talking about act in 2010. +Oh, I think it was more vitriolic, but in 2010, it's a good one. +So that was a little more angry. +I'm trying to, I'm trying to give some color, you know, to the net neutrality stuff that +we talk about. +So that's why I've been picking a few of those types of rants to put on there. +Right on. +Yeah. +Yeah. +Yeah. + + + + + + + + + + +Check out the YouTube channel. +You can listen to the net neutrality rant, but now it is finally classified as utility, +which is, uh, which is great because it allows for, uh, well, I guess the bigger, better +way of putting it is, is it disallows for the ISPs to prioritize packets based on pay. +Yeah. +And it makes it to where everyone has equal access to internet the same way that people +have access to indoor plumbing and electricity and, you know, those types of things. +Right. +Um, and that's a, that's a good thing in my opinion. +Now, the, the, of course with, as with everything, there are some drawbacks to it. +Um, but, uh, for right now, I'm pretty happy with the outcome and perhaps in a couple of +episodes, maybe two weeks from now, we can talk a little bit more about what that really +means and explore the pros and the cons of net neutrality because it isn't a one-sided +issue. +It's not like the encryption debate, which is very, very one-sided. +Uh, it's, it's very much a, well, you know, there are some, some drawbacks to it. + + +And yeah, I mean, like you're saying, uh, it's very politicized, but there really are +a couple of things that, I mean, the other side makes good points on, on a couple of +things. +Overall, though, net neutrality, I think will be a benefit. +That's the goal. +Let's go ahead and talk to Dave. +Hello, Dave. +How are you? +Okay. +Um, I have a Windows 7 desktop and when I hit the button that says check for updates, +it just looks for updates and never, never gets anything done. +Okay. +And then I went to the troubleshooting computer problems. +Okay. +And it's got a button that says fix problems with Windows update. +And that just goes out there and never does it. +It looks for stuff on the internet and it just keeps, you know, scrolling or whatever +and it never finishes. +Do you have the little Windows 10 update logo down in the lower right-hand corner? +I, I knew you'd say that first answer, but is there a possibility that I can fix the +Windows 7 or is it, you're just going to make me go to 10? +No, what I'm saying is that the reason you're not getting updates is because it's waiting +for the 10 because that's installed. +Well, the end, what I mean is waiting for the 10. +So if you have the little flag icon down by your clock, that, that's like. +Well, I have a little thing down there that says get Windows 10. +Right. +All other updates are paused until you decide on that one. +It's basically saying you're going to get Windows 10 anyway, so there's no point in +installing these other upgrades. +So what do I have to do then? +So you either uninstall the 303 update that we've talked about in previous episodes. +Okay. +I don't know what that is, but. +Okay. +So if you go to the Windows 10, you're going to get Windows 10. +If you go to add and remove programs, there is a button on the left where you can choose +to view installed updates. +Right. +One of them is KB303, I think. +Yeah, it's 303 something. +It's the only 303 update that you'll have. +And if you uninstall that, that makes the Windows 10 upgrade icon go away and your updates +will resume as normal. +But just know that as soon as you update, that 303 is going to go away. +It's coming back. +So you'll get one round of updates, and then it's going to be like, hey, it's time to get +Windows 10. +So they're making it harder for us to do this, is what you're saying. +They do not at all want you in Windows 7 anymore. +Well, for a guy who's been using the Windows menu ever since Windows came out, what's the +bad stuff about going to 10? +Because I'm used to Windows 7 and its previous versions. +So... +There's not a huge difference. +There's not a huge difference between 7 and 10. +Because for an old guy like me who's been using 7 and it's, like I say, forever, is it going +to be a big difference? +No. +No. +The difference is relatively minor. +Now, it's not like going to Windows 8, which was a huge change for the interface. +Right. +So I think they heard a little bit of the feedback there and decided that they'll go +back to an interface that's more similar to 7. +And I think that's a lot of the confusion that people have, and that's why they don't +want to go to 10. +That's because they think it's Windows 10. +It's Windows 8. +But it's not. +Well, will all my programs still work on 10, or is there something that's not going to +work? +As with any upgrade, there is the opportunity for things to not work. +Right. +But I have not seen any problems that I have found to be... +I haven't found any insurmountable problems. +Okay. +All the software that I've run across so far, we've either been able to make it work, or +it might require an update of some type. +Okay. +But don't fear that part of it. +The only thing that you really have to fear is, as usual with all versions of Windows +for upgrades, is scanners and printers. +Right. +So if you have a really old printer or a really old scanner, it's very likely that those won't +work. +But there will be a new driver out there somewhere to make it work? +Sometimes. +Sometimes. +Right. +A lot of times, though, whenever you do major Windows version updates, you get a new printer +is how that works. +Right. +Right. + + + + + + + + + + + + + + +So if I have all my internet stuff, that'll still all work. +All that stuff's going to work. +Okay. +Yeah. +So don't sweat that part a whole lot. +Well, like I say, I've feared the unknown for too long. +Maybe I should go to 10. +Well, you don't have a choice. +You're going to 10 whether you like it or not. +Yeah. +So, I mean, you can delay it for right now. +You can uninstall that 303 update, get the latest round of critical updates, but it's +going to push you into 10. +And by the end of July, that's the deadline. +They're going to keep pushing harder. +It's going to get harder and harder until that point. +Now, if you decide to hold out past the end of July, so let's say that August 1st shows +up and you have not upgraded to 10, that upgrade window goes away. +You'll start getting regular critical updates, but you'll no longer get optional updates +of any type. +And you get to stay. +You get to hang out in Windows 7 for as long as you like. +But just know that the opportunity to upgrade for free ends at the end of July. +Right. +Okay. +Well, I guess I have to think about that. +What do I want to do here then? +All right. +Well, thanks for the call, Dave. +Well, thank you. +Have a nice day. +Bye. +Let's take a moment to mention our sponsor. +That would be Perfection Auto Works. +You can go to their website. +It's new. +PerfectionAutoWorks.com. +Well, is it still new? +We've been saying that for six months. +Well, I mean, based on how long they had their old site. +Yeah, it's new. +It's still new. +PerfectionAutoWorks.com. +Go check it out. +Get your 26-point inspection for free. +I'm sure that your car will love you for it, especially right now. +Yeah, assuming that your tires don't literally melt off of your car. +Take it down to Perfection Auto Works. +The temperature is too darn high. +It's hot. +Holy moly. +We'll be right back. +Listen to their ad coming up next, and we will listen to your phone calls right after this break. +790-2040. +We'll be right back. +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. +Join the chat right now at gurushow.com or call in. +This is the Computer Guru Show on KVOY, The Voice. +I'm dirty and the extreme and lighter than sour cream. +I was in a B-Club and Glee Club and even the chess team. +Only question I ever thought was hard. +What do I like, Kirk, or do I like Picard? +Spend every weekend at the Renaissance Fair. +Got my name on my underwear. +Wow, that's a trip down memory lane. +To like the other day when I was just playing that in my house. +No, I know. +I'm talking about how... +Using that as bumper music. +Yeah, I miss those days. +It hasn't been on the show in years. +In yas, I tell ya. +Yas. +Yes, eons and stuff. +All right, if you'd like to be a part of the show, 790-2040, give us a call. +Let's go ahead and talk to Charles. +Hello, Charles. +Hello. +Boy, I love that Batman spot with Kazachik in the trunk. +What? +Oh, yeah, during the commercial break? +Yeah. +Anyway, I still laugh. +I'm looking for a machine. +I'm not saying this to irritate you. +I'm looking for a machine that runs XP because I don't... +I like the way it's far more user-friendly than Windows 7, +which I just spent $200 getting my computer back from service fixing. +And I'm betting that an XP machine will be cheap to buy if I could find one. +It's not going on the Internet, so I'm not worried about all the vulnerabilities on it. +And it's going to be used almost solely... +It's going to be used solely for production in Adobe Audition for things actually just +like that Batman spot, which was made on an XP machine. +Okay. +So can you direct me to a place? +Or do you have one that's like sitting in the back with dust on it? +I was going to say, you might start checking like dumpsters and those kinds of things. +Doorstops. +Well, there's always the swap shop, but I mean, you know, which I may do. +But the point of the matter is, is that I'm looking for... +One that maybe you used as a test bed for something, or it's been sitting indoors, not outdoors. +You know, because it's expired technology. +I get it. +But I like... +Or is there a way to make Windows 7 work and look more like XP so that it's more user-friendly? +I mean, for instance, you go to save something in Word and you have to save it to your computer. +It won't even let you open it without saving it first to your computer. +There's dumb stuff like that in 7 that was never true in XP. +Actually, that's still true. +That's always true. +The whole, you know, you can't open something unless it exists. +So it does save it to your computer first before it opens it. +Oh, it just did it in the background before. +It puts it in a temp folder. +And 7 does the same thing. +So there's... +I think there's a whole lot of like, we should just sit down sometime and I can just show you that it works the way that XP does. +The only difference is they added a security layer that doesn't allow you to save to the root. +Right? +So... +But for the most part... +XP and 7 are very, very similar. +Okay. +Well, but the thing about it is if I have a machine, if I buy a machine that has expired technology, it costs a lot less. +I like to buy the things that other people don't want. +That was probably true maybe five years ago. +But right now there's a premium on XP machines because if you're buying an XP machine, it's because you need an XP machine. +And they know it. +However, they are available out there on like eBay. +Craigslist. +Craigslist. +I wouldn't... +I don't like buying computers off Craigslist, but eBay is okay. +I like buying it from somebody I know, like, and trust, like yourself. +And so if you've got one or someone you know of that you trust that has machines like that, I'd be open to that. +You know, because I'm... +I'd much rather buy that locally than... +And again, from somebody that I know, like, and trust. +I know somebody has a good... +You'll have to call the office down at 304-8300 because I don't keep track of the old machine inventory. +Right. +I'm out fixing things. +Right. +But, you know, you can talk to Howard or Carl and they can let you know what they've got there. +You could also potentially explore an XP virtual machine. +Right. +You could virtualize a machine. +Okay. +Right. +But basically, I want a computer that's kept off the Internet. +It's just used for mostly one purpose, making radio commercials. +And, you know, and then the sneaker drive. +Take the USB thing and stick it in. + + + + +Take it in the other machine and archive it. +So that... +And that's the machine that gets on the Internet. +That, I have, you know, the most current stuff on. +Right. +So you could do something similar with, like, if you have a nice newer computer. +Yeah. +You could virtualize a copy of XP that would be its own standalone machine inside the other one, +which doesn't get on the Internet. +And you guys would be willing to build one of those for me? +Of course. +Okay. +Maybe we should talk. +Of course we should talk. +I don't know where you took your computer to get it fixed before, but I'm offended. +Well, somebody who has, who about six generations ago had the computer show on the station. +Oh, okay. +It's a trusted guy. +All right. +You want me to say his name? +I don't care. +Go for it, Todd. +Dave Mason. +Oh. +Yeah, I like Dave. +Dave is a friend, and so, and I've done business with him for years, so I just, and again, +I know, like, and trust him. +Tell Dave to give me a call sometime. +And give the shop a call. +They can get you set up with a virtual machine. +Yeah. +I will. +All right. +Thanks for the call, Charles. +That's what I should. +You do a wonderful show. +You should expand it. +I should, huh? +Yeah, you should. +You should really think about it. +I might. +I'll think about it. +I'll let you know. +All right. +See you. +Bye. +Bye. +Do you want to take this other call? +Yeah, let's go ahead and take it. +Let's go ahead and talk to Tom. +Hello, Tom. +How are you? +Hi. +Thanks for taking my call. +Hey, I'm getting ready to upgrade to 10, and I'm looking at my uninstall a change program +area. +Right. +There's a couple programs I wanted to ask you about, if I should remove them before +I do that. +All right. +Yes. +Okay. +How about like Pulse Secure Setup Client? +I don't think that'll matter. +Do you know what that is? +Not off the top of my head, no. +But I haven't heard anything about anything like that. +The stuff that's important is, do you have the NVIDIA Experience software installed? +No. +No. +It basically comes down to antivirus and NVIDIA software and things like firewalls. +Does the ATI equivalent make any difference? +Yeah. +I would pull that off, too. +Crossfire, all that. +Yeah. +So if you have ATI software on there for your video card, anything that's video card related, +just pull it. +Okay. +How about Malwarebytes? +Malwarebytes can stay. +Okay. +And Google Chrome and- +Yeah. +That's all fine. +Chromecraft. +Okay. +Great. +Yeah. +Mostly the stuff that we're concerned about is if it directly interfaces with hardware, +like antivirus directly interfaces with your network card, and your video software directly +interfaces with your video card. +Yeah. + +So we're looking for things that directly interface with hardware that should be removed. +That way, when it does the upgrade, it finds the proper versions, puts them on itself during +the upgrade, and then you can reinstall whatever you took off. +So my printer driver then, take that off? +Now most printer drivers are not a problem. +What kind of printer do you have? +HP. +Yeah. +HPs aren't going to be an issue. +We've seen some issues with Epson's, because the Epson's are ... Those are some crazy drivers +they put on those things. +But the HP ones seem to be fine. +Okay. +Great. +Thanks a lot. +All right. +Thanks for the call, Tom. +Yeah. +Just be careful when you're doing your upgrade. +You know, I can't wait until it's like a year from now and Windows 10 has been embraced +and everybody's fine with it again. +Yeah. +Well, this is the last version, according to Microsoft. +Yeah. +It's the final version. +All right. +And people have been asking me that, and I guess we should probably cover it. +They're like, so I'll just wait for the next one. +I'm like, there is no next one. +Yeah. +I mean, in a manner of speaking. +Ten years from now, it's going to be way different than Windows 10. +Right. +But they're going the Mac route, which is sort of the evolution of a singular platform. +I hope they give them better names than Mac does, though. +Yeah. +I don't know. +El Capitan and Yosemite. +Well, the new one is called Sierra. +Sierra. +Which is kind of a nice name. +That's not bad, I guess. +Yeah. +But Snow Leopard? +Come on. +Anyway, so there is no next version, in a manner of speaking. +Yeah. + + +So, just like Mac OS X, which came out 12 years ago, is still sort of the thing, even +though they refuse to call it OS X now. +Yeah. +It's been effectively a slow, gradual, minor upgrade process over the number of years. +And that's what Microsoft is planning to do now, is that they're going to get everybody +on 10. +Yeah. +And then they're going to do like, you know, 10 point whatever. +Right? +There should not be an 11 in the future. +And ultimately, you know, I know that a lot of people are hostile to the Windows 10 upgrade, +and it's kind of, you know, it's bad how they're forcing it on people. +But it's because of security concerns. +You know, 7 is very old at this point. +Yep. +Everybody's like, but I love me some 7. +Or in Charles' case, I love me some XP. +I can't wait until there's some guy who calls in and is like, I'm trying to run a Windows +3 machine. +I need a machine that only runs DOS. +We've got to get it. + + + + + + + + + + + + + + +We had one of those that came into the shop recently where the newest software he could +run on there was 98. +I think I remember that because I really wanted to, I was like, can we just take an extra +day so I can put Doom 98 on this and play it? +The techs were like, no, go away. +And see, this is one of those problems. +We tell people, you don't do the bleeding edge upgrades. +Don't do the like, upgrade immediately as soon as it's out there because you're going +to hurt yourself. +Right? +So at the same time, if you wait too long, if you get to the point where Windows XP is +still on your machine and it's been completely unserviceable by Microsoft for seven years, +you've painted yourself into an upgrade corner. +You can't upgrade at that point. +So before your upgrade ability expires, you should upgrade. +Not to mention that the upgrade shock that people get where they're like, Windows 10 +is just so much different. +That happens because you don't upgrade. +If you're on XP and then you jump to Windows 10, yeah, it's way different. +Right. +It's a huge difference if you're going from XP. +However, if you did like most of us did, which is you went to seven, then you went to eight, +and then you went back to seven, then you went to 10, yeah, it's not that big of a deal. +You forgot Vista and that whole thing. +We shall not name it. +We don't speak that name here. +There's two operating systems we don't say, Vista and Millennium. +Yeah, I was going to say. +Yeah, those don't exist. +Yeah. +There's just terrible, terrible pieces of software. +Oh, that's just gross. +I can't believe you mentioned that on the show. +Vista made us appreciate seven even more. +Is that what it is? +Yeah. +Give us a call, 790-2040. +We'll be right back. +Whether you're dealing with hardware installation or heaven forbid, a virus. +Oh. +I'm sorry. + + + + + + + + + + + + + + + + + + + +No. +No. +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours. +The website gurushow.com. +Tune in, click in and kick back. +This is the Computer Guru Show on AM1030 KVOY The Voice. +Mike Swanson, your computer guru, is just a click away. + + + + +Listen and watch at gurushow.com. +This is the Computer Guru Show. +Welcome to my world. +Welcome back to the Computer Guru Show. +My name's Mike, here to deal with your technology needs and treat you like a person in the process. +790-2040 if you want to be a part of the show. +What do you think? +Calls first or? +Yeah, I might as well. +Yeah. +All right. +Let's go ahead and talk to Dave. +Hey, Dave. +How are you? +Okay. +How are you? +Lovely. +Well, a few months ago or like three months ago or so, I upgraded from 8.1 to 1.2. + + + + +I'm using Windows 10. +Okay. +And it is awful. +How so? +Everything is so unbelievably slow. +I click onto a browser window, it takes like a minute or two to even open it. +It just sits there and you look at the screen, nothing happens. +Which antivirus do you have on there? +My browser's always crashing, everything. +What's that? +Which antivirus do you have on there? +Kaspersky. +Okay. +That's your answer. +So you upgraded with the antivirus on there already. +Yeah. + + +I have that already I imagine. +Not to mention that first of all, don't upgrade with your antivirus installed because it causes +major problems. +I got it uninstalled before the upgrade. +Secondly. +Oh, I did that. +I did that. +Secondly, Kaspersky. +Because it says that on the install. +You have to disable it. +So I disabled it. +I upgraded it and then I re-enabled it. +This is not disable. +This is uninstall. +Like take it completely off the computer before you upgrade. +Now, second part of this. +Kaspersky is a dog. +Okay. +It's a great antivirus, don't get me wrong. +It's a fantastic antivirus. +But it makes everything slow. +Now, I think that yours is mostly slow because it got broken during the upgrade. +So if you were to completely uninstall Kaspersky, use a utility like Revo or something to help you uninstall that. +And then reinstall Kaspersky, it will probably be considerably better. +Second, what kind of machine is this? +It's a Toshiba. +How old is it? +Laptop, two years old. +Like two? Okay. +So if it is less than two years old or less than three years old, then you should be fine as far as hard drive and all of that is concerned. +So I'd imagine completely uninstall any antivirus apps that you have. +And here's the reason why it jacks things up. +When you do the upgrade, Windows is sort of blind to your antivirus setup. +So it assumes that it needs to enable its built-in antivirus. +It's called Defender. +Defender. +Okay. +And so whenever you have two antiviruses on a machine, oh, believe me, they don't get along. +And so everything gets very, very slow. +So uninstall the antivirus. +And when you do that, it's going to say, hey, guess what? +We've turned on Defender. +Defender's all happy. +Everything's great. +Then you install Kaspersky, and Kaspersky will disable Defender. +And everything should be better. +Okay. +Now, you could choose a lighter antivirus. +We don't particularly care for the sort of heavy, slow, basically the antiviruses that you have to pay for that just slow your machine down. +So you could pick something lighter if you want. +But if you're happy with Kaspersky and that's what you want to use, then by all means continue to do so. +But use something like Revo to utterly annihilate Kaspersky off the machine. +Okay. +Okay. +Yeah. +Well, we have Kaspersky on all of our. +So we got like a. +Yeah, everybody usually gets the home pack, and they put it on everything. +You will notice a dramatic difference in speed just by uninstalling Kaspersky. +Okay. +So give that a shot and let me know. +Thank you. +All right. +All right. +Let's go ahead and talk to Tom. +Tom, how are you? +Hi. +Hey. +I got a question regarding viruses upgrading to 10 virus protectors. +Yep. +What about Microsoft Security Essentials? +All antivirus. +If it's antivirus, uninstall it. +Okay. +So uninstall it. +Uninstall Microsoft Security Essentials. +Yep. +Because Essentials is actually a dead product as of Windows 7. +It's the last version it works on. +Uh-huh. +So, yeah, uninstall it. +Do your upgrade. +You don't have to reinstall Essentials because Defender's built in, which is the replacement +for Essentials. +The new version. +Okay. +So uninstall Microsoft Security Essentials first, and we'll get Defender when we upgrade. +Correct. +Thank you very much. +My pleasure. +That was quick and easy. +That's a lot of Windows 10 questions today. +Yeah. +Yeah. +Yeah. +Well, you know, the deadline is coming up. +We need to just start telling people, switch to Linux. +That won't confuse anyone at all. +We did that for a while, though. +When the 8 upgrade, when 8 first came out, we were like, you know what? +Screw this. +Let's go to Linux. +Everybody use Linux now. +Nah. +Real power users just code their own operating systems, Mike. +Oh, yeah. +Yeah. +Real power users. +Yep. +Manipulate the hard drive with magnets. +Right. +You know, rather than actually writing any code. +Right. +You gotta open a port and just suck it. +Have you ever watched, Kent, have you ever watched 24, the Jack Bauer show? +Did you ever see that? +No, I have not. +It's worth it to watch just for the tech speak. +Yeah, just the way they talk about computers. +I'll check it out. +It's... +Open up a port on that firewall. +Patch me through. +That's right. +There's... +It's open up a socket. +My terminal needs a socket opened. +And... +It... +The stuff that really... +The stuff that really killed me about that show is that, you know, anytime that I watch +any show where there's technology involved, there's so much just like, oh, that's not how +that works. +You know? +And... +But, you know, I try to be good about it. +I'm quiet. +I don't say anything generally. +But that show just repeated basically two phrases throughout the whole thing, which +was, I'm going to need you to trust me. +Which was said like every other dialogue. +Every other dialogue sequence. +And then we're going to have to get them to open up a socket. +And first of all, you don't open sockets. +That's not how that works. +The best one of all time is on that show, NCIS, when the two people, to use the computer +faster, they're typing on the same keyboard at the same time. +It's so dumb. +Oh, man. +Everybody knows that, like, when we need to hack faster, we just get more people on the +same keyboard. +It's like 12 people. +Yep. +That's actually how all these hacks happen, is they have like 80 people typing on one +keyboard. +The speed, you can't even comprehend. +Speaking of hacks, did anybody hear that the DNC got hacked? +Big time. +Heard that. +Yeah. +That's a pretty interesting story. +There's a lot going on there. +And all of it is really, really quiet. +Imagine that. +Imagine that. +Imagine the fact that the... +Basically, the highest... +The highest... +The echelons of the government are being really quiet about a gigantic hack. +And, of course, the government is blaming Russian spies, which is, I think, great that +they're blaming them, especially when the hacker came back and he's like, uh, no. +And he's not at all a Russian spy of any kind. +Yeah. +Not a Russian spy. +And then, of course, they said this, you know, they identified the... +This particular thing and, you know, the hack. +And they shut it down because, you know, because they're on top of things, technologically speaking. +And basically, the hacker came back and started taunting them. +And he's like, you didn't know I was in there. +And so they said, well, yeah, well, we know that he only had access to a couple of things. +And so he came back and he said, I was in your system for a year. +You think I downloaded two things? +Do you really think that? +Is that what you think? +And, yeah, it's pretty gnarly. +Some pretty crazy stuff has come out as a result of this hack. +Yeah, like a list of mega donors to the DNC, a... +Complete strategy for their campaign. +Right. +And the most interesting part is, at least to me, and this is definitely not a regular +show topic here, is that there sure is a lot of... +There's a lot of collusion going on behind the scenes. +There's a lot ofSure. +There's a lot of collaboration between different sides of the conversation. +And I think that's part of the reward of the investigation. + + +I've not run into an instance where I think something about one candidate that +undoubtedly isn't true about another. +So it's very interesting to me that there's an active push years in advance for who's +going to be the next president of the United States. +And the thing that really kills me about this that I've mentioned a couple of +times now is that how are we supposed to trust these people to protect our security and our +privacy when they can't even protect their own right and they're the ones calling for weaker +you know encryption they're like yeah that's the ironic thing is that if they had had strong +encryption on their own equipment this could not have happened yeah who knows man they're just +oh they're just dumb this is you know it's like when when a kid puts his hand on the stove and +then gets a burn on his hand and you go do you see why you don't do that now yeah so yeah maybe +maybe we should call for you know they're going to turn into something else though +right it's still going to be a weak a push for weaker encryption because now they want to find +the guy that's actually hidden behind encryption yeah you can't find him because he has the +encryption right so yeah let's let's just burn the whole thing down you know don't worry about +making things better right let's just let's just get angry about it and +it's +dumb all right so yeah there's a whole lot going on with the this DNC hack and it's one of those +things where you know you've got the two faces of the government right or where the government +is speaking out of both sides of its face right so to speak you know with the whole weaker encryption +bit and the all these laws that are put in place to make things more secure because they don't want +hackers they don't want any of these hackers in there +um but they are and they want basically to be in control they're like let us control your +infrastructure because you security guys don't know what you're doing with the threat of throwing +security guys in jail for not allowing the federal government to dictate how security is supposed to +happen in an IT environment however they're not setting the highest you know the bar very high +here well it all goes back to the idea that you know essentially these people are legislating +things that they don't understand you know when when you're in a situation where you're not able to +do anything you have when they're setting up laws that are just so comically bad when it comes to +stuff like encryption the people who actually know what they're doing it's like it's like child's play +to get into their their equipment and their servers this guy was in there for a year and +nobody knew he was there yep just making copies to everything and he uh he sent it all off to +to wikileaks so according to wikileaks they basically say they're they're going to be +dumping tons of information +uh and they're already some of it's already out there but apparently there's a whole lot more +and uh i don't know you know what what clinton did to piss off julian assange but uh he says +there's enough there to indict her and he wants to put it out there in the world okay julian do +what you do you know you have to on some level admire the tenacity of wikileaks yeah in this in +the face of like extreme odds against them +because they're targeting some of the most powerful people in the world +yeah and and when you get even when you even get edward snowden to start tweeting +oh this got interesting you know that's that yeah there's something going on there and +everyone's very tight-lipped about it there's not a whole lot being said but i'm sure just like with +the the panama papers and stuff like that there's going to be there's going to be some stuff out +there yeah i was a little shocked at first to see that this wasn't like headline news and then i was +like oh wait actually yeah of course it's not going to be like headline news and then i was like oh +wait actually yeah of course it's not going to be like headline news and then i was like oh +it's not of course it's not all right let's let's let's chew through some culture let's talk to +mark hello mark hold on hold on a second my windows populating with text anyway um it's done so when i +go to update 10 again another 10 update uh-huh i'm looking at my list to uninstall stuff do i +uninstall windows live essentials 2011 no essentials can stay +okay i thought i had defender but i don't see it in here +well great then it's not there i guess not would it be under microsoft defender or what it was called +that's called microsoft security essentials if you're in seven i am in seven and uh it's not +there all right that for sure i had it so anyway i have um avira i'll take that out good and then +when i put in a new antivirus what would i be just reactivating avira again +Sure, if that's what you want to do. +Well, what's the better one? +What's your choice of the week? +The choice of the week? +We're using Bitdefender right now at the shop. +Is that what they're recommending now? +Yeah. +Bitdefender. +Bitdefender, yeah. +Okay. +Talk to Howard, 304-8300. +He'll tell you everything. +The boy has some strong feelings and opinions about antivirus. +In fact, everybody just call Howard right now. +Yeah, just call Howard. +Everyone. +Just even to say hi. +Okay. +What's the shop number again? +304-8300. +If I get to the shop, though, and Howard burned it down because he got tired of all the phone calls, +that'll be interesting. +He's like, all the phones broke simultaneously. +I don't know what happened. +Don't know. +Anyway, he can talk to you about antivirus and what's recommended there. +Okay. +Okay, great. +I guess that was it. +I'm getting about ready to pull the trigger today. +Yeah, that's what I hear everybody say. +We'll see. +As soon as I back up some stuff that I'm not sure it's done. +Call me next week and you let me know. +Yeah. +Thanks, Mark. +All right, thanks. +All right, Shane, how are you? +How can I help you? +I'm doing great, Mike. +Great show. +Okay, so I'm going to go the full tinfoil hat conspiracy theory nut on you. +So I'm looking at the possibility of trying to get less trackable and less everything basically on the Internet. +I am a supporter of this view. +Okay. +So I've been reading all this stuff about... +I'm possibly instituting, you know, Internet... +What is it? +Internet user IDs? +You know, Europe's real big on it right now. +And I say we're in America to do it so they can track people. +Oh, yeah. +Believe me, that's an upcoming episode. +Oh, I will be listening intently. +I've looked at IPVanish. +I've looked at a bunch of different VPNs and what countries they're based out of. +I tried setting one up and I ran into the... +And I'm sure you remember the terminology better than me. +But, like, I use one of them, you know, CenturyLink, the non-Internet. +Like you said. +Right. +And for some reason, it was putting the servers in Phoenix in between. +Even though it said I was logged on, even though it said I was... +That I was on IPVanish and that everything's working great. +When I ran their testing tools, it said, oh, no, you're not anonymous because they've inserted their servers. +Right. +In the loop. +So I'm like, okay, so for us non-computer efficient Americans that want to be anonymous and be able to do stuff and not have the government track us, what's a good program to set up? +Well, that's not about a program. +This is something that's completely outside of your control. +So when you're using the CenturyLink, at least CenturyLink locally, you are not actually getting out to the quote-unquote Internet until it hits Phoenix. +Right. +So you can't do anything to circumvent that on that particular connection. +Well, I guess what happened was they had me run the test tools. +Mm-hmm. +And basically, if it came back and showed... +Well, they're doing something called packet inspection. +Okay. +And that packet inspection is what's tagging it with the geolocation. +So... +And that's a CenturyLink thing. +You can complain all you want to CenturyLink and they're going to be like, yeah, that's just sort of the way it is. +Deal with it. +So part of the problem is CenturyLink. +You could switch to a different provider and that goes away. +I know that on... +On Cox, at least locally, you can do fully end-to-end encrypted communications and you won't get any of that geotagging in the services there. +Okay. +So that's a CenturyLink issue. +Gotcha. +Unfortunately. +Comcast also, same thing. +You can use Comcast for that as well. +Otherwise, you're going to have to get something like a Tor router. +All right. +You can get it like a WRT router. +Any older Linksys router will work for this. +You can... +There's some software updates you can put on there which anonymizes your connection and makes you part of the Tor network. +And that anonymizes your end-to-end anonymous. +Just be careful with that stuff. +It's hard to do. +Yeah. +But if you're feeling like you want to be anonymous, that's the way to do it, man. +Okay. +Well, I really appreciate that. +And I'll definitely... +Do you know, like, which episode upcoming you're going to be talking about all that and the privacy and stuff? +Maybe next weekend. +Okay. +I need to do a little more research on what Europe's doing with the whole... +Okay. + +...hard ID access thing. +But I've seen a few people talk about it, and so I want to get to the bottom of it and figure out how long that's going to take to get here. +But, yeah, well, probably next week or the week after. +And just on a side note, if you... +Because I know you can understand all the gobbledygooks better than I could reading it. +I chose IPVanish because it was Italy. +I think they said they were based out of Italy, and it had something to do with basically... +Yeah. +Even if somebody gives them a court order and says, hey, we need to find out what this person's doing, they said, okay, +we set it up impossibly so nobody can. +You can't track what people are doing on the system. +Sort of. +And we'll cover that when it comes to it. +Great. +There's a certain amount of hopeful optimism there. +Yeah. +Okay. +Well, great show, and I will definitely keep listening. +Thank you. +Thanks, Shane. +Bye-bye. +We're going to take a quick break, and when we get back, I guess we'll be out of time. +Yeah. +That's how that's going to work. +So listen up. +We have some specials, some deals we want to talk with you about. +We'll be right back. +We'll be right back. +So you know that we put this show up on the internet. +It's live right now, either through the KVLY website or gurushow.com. +And then later, we also put them on YouTube, so you should go check out the YouTube channel +and subscribe there if you can, because it helps us out. +And also, getting subscribed and getting on our boat early here is going to help you out +in the long run, because we've got some cool stuff planned. +Right. +There's going to be some giveaways happening. +Yeah. + + +And you'll have to be subscribed, and you'll have chances to win based on sharing it on +Facebook or Twitter or basically spamming your friends. +We're going to give away stuff that I really don't want us to give away, because I want +it. +Yeah. +Well, you can't have it. +I know. +I'm not even qualified to enter. +Nope. +Nope. +You cannot qualify at all, even if you quit. +Just forever banned. +You're banned from winning. +Also, I want to take a moment to thank our sponsor for this hour. +That is Perfection Auto Works. +And they're a great sponsor, and you should thank them for helping keep us on the air. +You can do so by visiting their website at perfectionautoworks.com or giving them a call. +Also, we want to say thank you to our Patreon sponsors. +They're very, very important to us. +They can donate as little as a dollar a month, and they help keep the show on the air. +Go to gurushow.com slash Patreon. +The new link that now works. +Definitely works. +Or patreon.com slash gurushow. +And, yeah, thanks for listening very much to The Computer Guru Show. +Oh, by the way, we'll be back in about six minutes. +Welcome back to The Computer Guru Show, hour number two. +What? +What? +What? +I know. +That's right. +Wait, what? +It's been years since we've had a two-hour show. +Yeah. +And here we are. +That's crazy. +And if you want to give us a call, 790-2040. +That's what you should do. +You can talk to us on our all-new shiny second hour. +Right. +Is it shinier in here? +It is. +It looks a little brighter. +It looks a little bit brighter, yeah. +I think it's because that light bulb came back on. +But nevertheless, second hour. +Second hour. +So 790-2040 if you want to be part of the show. +Give us a call. +We're going to talk a lot in this particular, the second hour here, about privacy. +And censorship. +And how those two kind of correlate with one another. +And it really came to light because of a less than wonderful event that happened. +We'll say a tragedy. +So as you may know, you should know by now, the Orlando shooting caused a very interesting +set of things to happen on the internet. +As far as... +There are places that tout themselves to be... +What's their slogan? +The front page of the internet. +The front page of the internet. +Now, we've talked about Reddit before on this show. +And, you know, over the last couple of years, our views on Reddit have changed for sure. +Because it used to be, when Reddit first started and we were first on it, it was like awesome +and we're all for it. +But as they've grown and evolved, it's been leading inevitably to something like what +just happened. +Right. +Right. +So over the last couple of years... +Right. + + + + + + + + +There's been a few management shakeups over at Reddit. +And it's very interesting because it's sort of a... +At least in the beginning, it was very much a self-policing thing, right? +Where there are moderators of each of the particular subreddits or boards that are on +there. +And it was a rather democratic process for the most part as far as, you know, people +could put up their ideas. +And those ideas... +And those ideas would then be either upvoted or downvoted by the community. +And you can say, well, either I support this or I think this is terrible. +And, of course, the more that it has upvotes, the higher visibility it has on the site. +And then the more downvotes it has, the less visibility it has on the site. +And even that, even though that particular segment of the population, right, the entire +site has a definite political leaning. +And it's pretty obvious in the stuff that you see. +And that part was bothersome for us, you know, the last time we talked about Reddit was more +than a year ago as far as the problems seen there. +But the Orlando shooting brought something else completely to light. +There's a subreddit on there called News. +And there's some other ones on there like World News and there's... +News is one of the default subreddits. +So when you first create an account, you're already subscribed to it. +Right. +Same with World News. +Yeah. +And it's designed so that the community can take things that it thinks are newsworthy, +put them, submit them to Reddit, and then Reddit will either upvote them or downvote +them for visibility. +So if it's something that is getting a lot of coverage, it should very rapidly make it +to the front page where that's what you see as soon as you log into Reddit. +And in the past, many news stories have actually broken on Reddit first. +Even before the news, the real news sites picked them up, people were reporting them +on Reddit. +Right. +Right. + + + + + + + + + + + + + + + +They were posting them. +They had mega threads and live threads regarding the discussion of those events. +Boston bombing comes to mind there. +So when the Boston Marathon bombing happened, it happened first on Reddit as far as a large +scale noteworthiness. +Yeah. +People who were there were taking pictures and posting them on Reddit. +Yeah. +It's a big deal. +Now, what happened during the Orlando shooting was really depressing. +It was that the officials, the moderators of Reddit were straight up deleting entries, +just censorship, just like you've been banned and banned people because someone made the +association between Omar the shooter and ISIS because of the 911 call. +They called it hate speech and banned the entire thread. +Yeah. +They were just immediately deleting anything that made a reference to that. +So if they made a, even if somebody asked, you know, oh my, oh my, is this another, another +terrorist attack? +Bam, got deleted. +It was to the tune of, you know, thousands of comments were deleted. +Dozens and dozens of posts that were made were deleted. +There was just entire threads where every comment was marked as removed. +Yeah. +It's pretty. + +And this is one of those things is that, you know, more and more people these days, they +do not, especially in the younger generation, right? +They don't, they don't look to TV for news. +They don't look to the normal news outlets that nobody trusts in, in the younger demographics. +Nobody trusts Fox news or CNN or MSNBC. +We don't care. +We don't trust them at all. +Because they're sort of led by their own agenda. +And for a long time, Reddit could be looked at as, as something where it's obviously community +powered, community fueled, and it's what the world is talking about at that moment. +So why, it basically seemed to be a more fair place to look for information. +Yeah. +It was supposed to be this platform where anyone could share anything without the fear +of censorship. +You know? +Like you could discuss a newsworthy event that was happening. +Yeah. + + +And not worry about the government or mainstream media slanting it. +But I mean, it's, I think people quickly forget that Reddit is a company. +Right. +They're a business. +And more importantly though, is there's a certain mob mentality that happens on Reddit +and it's unfortunate, right? +That, that voices can be silenced effectively, not only by the community itself, but at the +moderator level. +And they came back with a couple of excuses about, well, I'm not going to do this. + +I'm going to do this. + + +And so, you know, there's a, there's a bot, an auto moderator that saw these as duplicates +and was deleting everything. +But under any level of scrutiny, this argument doesn't hit, you know, it doesn't stand up. +Yeah. +I mean, they, they did remove one moderator. +But I couldn't see that as anything other than a scapegoat tactic personally. +Yeah. +And to be fair, that moderator was telling people to go kill themselves. +So you probably shouldn't be in that position anyway. +But there were also things like you said, when it came to the, the, the, the, the, the, the, +the only language that couldn't be seeded from the seed seed seed seed seed seed seed +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed + +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed +seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed seed +And we don't like the idea that the Internet can be silenced or moderated as a whole, especially at the state level. +Because there are people who their only way of communicating with the world is through the Internet. +And in some cases, there are places like in the Middle East that we've talked about where the only outlet that people have to say, hey, this is what's going on here, help, is potentially silenced. +And, you know, China is a great issue of how the world can be manipulated. +And same with North Korea, right, where you look at how the worldview can be manipulated just by changing the content or censoring the content that's on the Internet. +And we don't like that. +And I think that as Americans, we like to believe that we're exempt from that type of thing to some extent because we have freedom of speech here in the United States. +But examples like what happened with Reddit are proof that that is not necessarily. +The case all the time, if you trust one entity too much for your news, something like this is bound to happen. +And the same thing with Facebook, right, where Facebook was basically accused of censoring the trending news topics and saying, well, this is a little too right leaning for us. +So we're not going to post it as a as a trending topic. +Now, the Young Turks did an interesting video on this and not. +But I at all want people to watch the Young Turks. +But they're an Internet news organization, is that what they call themselves? +And their explanation was, well, you can't trust sources like Breitbart and you can't trust sources like Drudge Report. +So you have to give it a little more time. +You have to find other sources before they'll put it up in trending. +But if Huffington Post put something up, you know, they put it up rather. +I mean. +Without the secondary looks, without the backup sources. +Basically, if you were you can't. +I think you can't unless you are a news organization that you shouldn't be trying to moderate the news. +You shouldn't be determining for yourself what's important, especially like with the Facebook thing. +It's like if there's a certain number of people saying it, it's trending. +Right. +It doesn't matter whether it's true or not. +Right. +The trend is, is that people are talking about this. +So in order to to vet things for truthfulness on a trending list seems wrong, especially if you're not applying to the same rules to both sides of that spectrum. +Now, don't get me wrong. +You know, the as far as I'm concerned, the the news sources on the left and the right are both crazy. +All right. +It's there's a certain amount of centrism that I long for. +I want Walter Cronkite to come back. +I want to be told news with without any type of commentary. +I want to know the details without any of the slant one way or the other opinion that is associated with it. +I just want to be told the facts. +Just the facts, man. +That's it. +And it's to me to have an organization like Reddit. +Say, well, we don't think that this is news. +So we're going to kill this, even though there are hundreds of submissions or thousands of comments on that particular thread to just kill that thread because they don't like the way it works. +It bothers me. +And where do you draw the line between when something becomes for the greater good? +Or is it is it really the policing of thought? +Right. +And I think that the important thing. +I remember here is that the only evidence that we have that a company like Reddit or any type of alternative news organization on the Internet, the only evidence we have that they are trying to uphold the ideals of, you know, open press and free speech is that they tell us that they are. +You know, there's they're under no obligation as a company. +They can delete whatever they want. +You know, they're under no right. +Yeah. +They don't have to do that at all. +They could have just said, yep, we deleted it. +You know, but they know that because they are ultimately they have to answer to their users. +They had to come out and say, well, yeah, it was a mistake, you know, and we're taking steps to undo it. +But I have to wonder if they hadn't gotten caught. +Of course, that, you know, that wouldn't have happened. +They wouldn't have come forth. +So in opposition to this, I would say that you have the opportunity to to choose other sources on the Internet to get your information from. +Now, as with anything, there's always a there's always a flip side. +There's always a side B. +And so like to MSNBC, you end up with Fox News and to Huffington Post, you end up with Drudge Report. +So you end up with these sort of left and right spectrum, I guess, A and B spectrum alternatives. +The alternative to Reddit is Vote, which is V-O-A-T. +Dot C-O. +And that that's an interesting site. +I mean, they're very similar. +In appearance and how they work, but very different as far as content and how they deal with content. +And as far as we can tell right now, at least looking when I looked on on Sunday and Monday last week at the differences between the Reddit news and the vote news, they were radically different. +Yeah. +And it's actually kind of funny because in direct as a direct result of this whole situation with Reddit vote has experienced what they call. +Almost a doubling of traffic that weekend as people leave Reddit and go to vote because people were looking for information that couldn't find that was being deleted or censored at the other site. +And and great. +At least there is an alternative for now. +Yeah. +I mean, the future will show if if vote remains to be this bastion of free speech like they claim. +But for now, it's a great site. +Yeah. +So we're going to talk a little bit more about how the Internet kind of forms the way that we. +Put information out there and a little bit more about who's policing your thoughts online. +We'll be right back. +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. +Join the chat right now at Guru show dot com or call in. +This is a computer guru show on KV. +Why the voice? +Your technology guru, Mike Swanson, is answering all your questions. +One by one. +Yes, science. +So chime in with yours. +The website is Guru show dot com. +Tune in, click in and kick back. +This is a computer guru show. +Welcome back to the computer guru show. +Seven nine zero twenty forty. +If you want to be part of the show. +Five two zero seven nine zero twenty forty. +Let's go and take Ingrid. +Hello, Ingrid. +How are you? +Hi. +I'd like to say, first of all, that I know virtually nothing about computers except the keyboard. +And. +But this business of. +What's available to us and what kind of information is being given is really. +This is a fabulous subject. +Very important. +Glad that you brought it up. +Some days ago, there was discussion about Hillary Clinton's name being entered into various sites and different kinds of information coming up about her. +Some was very bland, fluffy, inconsequential. +And other stuff was of more substance. +And of the things that, you know, people who are. +Disappointed in her. +Want to talk about. +You mentioned Walter Cronkite. +Who knows if he was giving us everything that was available? +Who knows who is in the pool of people who have information, who will give it out or won't give it out or give out false information? +Everything is really quite unknown. +It's a matter of trusting people. +Who do you trust? +And the Internet is so big. +And you talked about people in parts of the world where that's literally all they have available to them. +It has made things very, very dangerous. +And people are influenced and can be pitted against each other. +Look what they're doing now with the terrorist attacks. +They're looking at it from this direction, from that direction, manipulating everything. +We're being. +We're being ripped apart. +Well, I guess that's sort of the point I was trying to get at is that information should be out there in the world for all of us to see and for all of us to make our own opinion about. +And I think that if someone takes it upon themselves to censor that information for the masses, what right do they have to censor that information? +The part that bothers me is not necessarily that there are there is misinformation out there. +The part that bothers me is that someone has taken it upon themselves. +And I think that's the part that bothers me. +We have no way of knowing if he was giving us the truth. +Well, now we have potentially a million new sources at our fingertips at any given moment. +So we don't have to live in the forced echo chamber. +You know, we can always go to a different source and fact check and verify. +That doesn't mean that people do. +But we have the ability to for the potentially the first time in human history. +The thing is to go to all kinds of sources constantly. +Listen to Canadian news. +I used to do that some years ago. +And I would listen to Canadian and American news and see what I was missing. +And now, of course, I'm at this border and I like to hear both sides of things. +And we listen to the national news at night. +And that's one of what we're just saying is that now you have the opportunity to listen to news from all over the world to get a different perspective to different geographical areas within the United States. +You get to listen to or have access to information from everywhere and from every site. +And that's a double edged sword, right? +Where you've got all this information and all of these opinions and viewpoints that sort of don't necessarily match up with one another. +And then somebody is going to be offended and say, well, that's hate speech or that is this is totally offensive. +I feel completely triggered or whatever. +But that information needs to remain there because it is information from which you can form an opinion. +Well, it's not. +The young people need to have it drilled into their heads that they have to look everywhere for information. +And when it's found out that somebody is censoring, that entity needs to be. +And that's that's the thing with the whole journalistic integrity thing. +All right. +Where you have large news organizations like, you know, you had ABC News that had a big thing with Brian Williams and some of these other. +What's a Tom Brokaw before that? +You had these large news scandals. +And the reason they were scandals were because. +Because there was an implicit implied trust. +Yeah. +People trusted those people like Brian Williams. +You know, it's a household name. +Right. +So there is an implied trust that goes along with saying I am the news. +Whereas with these other sources, you know, when you're dealing with the Internet, it's not. +But there there are people like Huffington Post, like even in some respects a drudge. +Right. +That are are trading in on the name. +Right. +They're saying I am a news source. +Well, not. +Really. +Right. +Because you you have your own slant. +And what I'm looking for when I'm looking for a news source is someone is going to give me raw sort of unfiltered thought. +Yeah. +And I mean, even just in terms of this show, when we're doing research on a topic for that, we're going to talk about on the show. +Like, for instance, I've got three articles on this one subject that we're going to maybe talk about in a little bit. +And I'm checking each of those articles as we're doing the show to make sure that all the facts are straight. +And that we're going to be giving accurate information. +You can't just go to one source and then be like, I know everything about the story now. +Right. +And you almost have to make a last minute check to find out if something new didn't pop up. +Yeah, absolutely. +Thank you. +I'll hang up and stop talking. +Thanks for the call. +Thanks for the call. +Yeah, there's there's a certain amount of I give out information on the show that is occasionally wrong. +Right. +Sometimes it's just my opinion that's wrong. +Sometimes the actual fact I give out is wrong. +Right. +And it happens. +Right. +Right. +Right. +Right. +Right. + +Right. +Right. + + + + + + + +Right. +Right. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +So occasionally I get something wrong, or sometimes I misinterpret the question or whatever, +and I feel bad about this every time that that happens. +But there are people out there that are willing to put misinformation into the world, +and the bigger problem for me isn't necessarily even the journalistic integrity. +It's the idea that because someone doesn't like another idea that they have the right to censor it, +and I think it's completely antithetical to the First Amendment. +It goes against the idea that we have a protection of speech in this country, +and at what point does your outrage, your ability to be offended, +outweigh my constitutional right to say whatever it is that I feel, or any other human for that matter? +We don't have the right to silence someone because we disagree with them, +because if they're not going to be able to say what they want to say, + + + +if that's the case, you should just go to a regular college these days. +And not to mention that everyone disagrees with everyone on everything anyway. +Right. +There will always be some guy sitting there listening to us right now going, +these guys are totally wrong. +Right, and there's another part of this that is very much involved with technology. +I think that if you were to go back 50 years and wonder, +well, why didn't we have these types of safe spaces and all of this craziness that's out there +as far as... +people not getting along and wanting to censor each other. +If you were to look back 50 years ago, you didn't have the mashup of ideas that you have now. +You didn't have billions of people just on the other end of your screen +that could all communicate directly with one another in mass. +Before it was like you had a local newspaper, maybe one TV channel +that might have told you something interesting. +But now you have the entire... +You have the entire world at your fingertips. +You have everything in front of you and there's way more to disagree with. +Ultimately, I think that the only real reason anyone would have to censor another idea +is because they're afraid that they're wrong. +The safe space thing is they're afraid that they are wrong. +And whether that's because they know it or not, I think that's ultimately the cause. +You live in an echo chamber because you're afraid of what's on the outside of it. +This is very true. +All right, let's go ahead and talk to Mark real quick. +Hello, Mark. How are you? +Hey. +Hi, Mike. +I was pleasingly surprised to have you, hear you back on. +And I want to thank you for coming back on for a second hour, +which means I'm going to get less things done on this Saturday. +Because I'll be listening to you more than I would be, you know, +intently listening to the former pinko commie. +Our plan is finally coming together to make Saturdays more lazy. +Yes. +Well, yeah, well, not lazy because anyway. +So, yeah. +So I'm going to miss some of those call-ins from the... +from the other period. +But maybe Emil can take up the slack and actually have a two-way dialogue +instead of a socialistic public school perspective. +Right. +Well, you know, I don't know a whole lot about the show that was on during this hour. +I listened a couple of times and very nice people. +Yeah. +But, you know, I figured who doesn't want more guru? +That's correct. +We would do a 12-hour show if we could. +We want more guru. +I would not do a 12-hour show. +That's too much. +So more guru. +And so thanks for being on again. +That's really great. +Excellent. +Also, I forgot to mention when I talked to you earlier. +So I have two entries of Avera. +The one is, of course, the antivirus. +The other is the launcher. +Do I uninstall both of those? +Just the antivirus is the important one. +But I would... +The launcher is okay to leave in? +I'd get rid of them both. +Okay. +That's what I wanted to know. +So I'll get rid of them both. +Oh, you know, and thank you for the call. +I appreciate it, Mark. +Thanks for... +Thank you for the thank you. +Thank you. +Okay. +One of the other things that I forgot to mention, +that Computer Guru is in the Best of Tucson running. +Oh, yeah, we are. +Arizona Computer Guru is up for Best of Tucson in the finalists category. +Yeah, so you should take an opportunity to go over to the Tucson Weekly site +and vote for Arizona Computer Guru in the Best of Tucson. +We posted it on our Facebook and all of our social, +but if you just Google search Best of Tucson finalists, +you can go vote for us. +Yeah. +So we're going to take a quick break. +You can give us a call at 790-2040 if you want to be part of the show. +We'll be right back. +Whether you're dealing with hardware installation or, heaven forbid, a virus... +No! +No! +No! +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours. +The website? +Gurushow.com. +Tune in, click in, and kick back. +This is the... +Guru Show on AM 1030, KVOI, The Voice. +Mike Swanson, your computer guru, is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show on KVOI, The Voice. +Well, let's talk about Windows upgrades for a moment. +Again. +Again. +And the only reason is because I'm sitting here reading this subject here, right? +Because when you guys call in, I get, +generally, I get a name and three words about, +this is sort of what this is about. +And that's all I get, generally. +But this one has an LOL in it. +Is that yours, Kent, or his? +It's his. +Let's go ahead and bring him on here. +Let's talk to Aaron. +Hello, Aaron. +Well, hi. +Tell me about your issue. +As I mentioned to the screener, +I'm doing... +I'm doing Windows 10 upgrades with only CenturyLink type of downloads. +Yeah, that definitely requires an LOL. +That's where the LOL comes in. +Yeah, it's just not cutting it. +You're right. +I mean, I'm sorry. +I'm shocked. +I'm surprised. +CenturyLink isn't amazingly fast. +No. +No, it's not. +Okay, so how many machines do you have? +Two. +Two of them, okay. +Okay. +And are... +Are they both desktops, or is one of them a laptop? +They're both desktops. +Okay. +But I can bring them... +I can take them to any place, even down to your store... +Starbucks or something. +...and have you guys work on them. +Yeah, we can do the upgrade for you, because we have really, really fast internet at the +shop. +Yeah. +We can do that for you, or you can take one of them somewhere and download Windows 10, +and it'll share it with the other one, just so you know. +Oh, yeah. +Well, I've done... +I've done the upgrades. +It's just getting the... +It's the... +You know, periodically, you have to do a Windows upgrade. +That's when the problem begins. +So, let's talk about, like, do you have other options as far as internet where you're at? +Well, yeah. +But the white boss, only what she wants to do is do Amazons and Zappos. +That's all she wants to do, and she's very happy with cutting corners on everything else, +except when the operating system's at... +It comes into play, but she doesn't understand. +So, let me put my marriage counselor hat on for a minute, and I'm going to go ahead and +say, you can tell your wife that the guru says that you need better internet, because +that's ridiculous. +What are you guys paying for internet? +Do you know? +Mm-hmm. +Do you know how much you're paying for internet? +Oh, maybe right now it's sub-40. +All right. +By baud rate. +By baud rate on the... +On the Speakeasy, it's like 15. +All right. +So, if you can measure it in baud, that's really nice. +All right. +So, you're getting, like, 15 megabit? +Yeah. +Or 1.5? +Because I think you're getting 1.5. +Oh, no. +15. +Now, 15's not bad. +I mean, for Centrelink. +For Centrelink, that's not bad. +Right. +But it needs to get up to around 50. +It'd be nice to get to 75. +Okay. +For downspeed, right? +Yes. +Okay. +Yeah. +You're not doing that with Centrelink. +What area of town are you in? +Northwest. +Northwest. +Orange Grove Oracle. +All right. +So, you're looking at Comcast. +And Comcast does offer a... +What is that? +$45 plan? +Yeah. +I'll tell you that I lived almost exactly where you're talking about not too long ago. +I had Comcast. +I paid 50 bucks a month, and I got over 40 megs. +So, yeah. +You add another $10 or $15 a month, and you get a lot more go. +And Centrelink is... +Hold on. +What's the disclaimer? +Everything that I say is my opinion. +It does not necessarily represent this radio station or computer guru. +God, they're terrible. +Yeah. +I was going to say, you know, you asked him if he had any other options. +I was like, clearly not. +He's on Centrelink. +It's just I have never had good experience with Centrelink Internet. +Okay. +I try to get everybody off of it. +Could I... +If I needed to, could I just pop up a Yagi? +Yeah. +Yeah. +Yeah. + + + + + + + + + + + + + + + +Could I find a Comcast Wi-Fi system? +Like a hotspot? +Problem? +Yes, a hotspot. +Well, Comcast does that. +Yeah. +You could probably do that. +Okay. +And they make directional antennas for Wi-Fi, for sure. +Yeah. +And if I need to, could I... +Probably it would be easier just for me to bring the desktops down to you guys to do all the important upgrades. +Right. +Yeah. +The problem is right now, at least at the current cycle, +where you're at with Windows 10, +is that there are large critical updates happening about every week. +So, yeah. +Yeah. +That'll calm down eventually, but... +But will their servers pick up the speed enough to where it'll do the job? +Well, luckily they're doing something called... +It's like torrenting. +They're doing peer-to-peer with the Windows 10 upgrades or updates. +Mm-hmm. +So those updates are available all over the place. +And so it's pretty quick. +And I've never had a problem with slow updates. +But anyway. +Got it. +So if you want to bring it down, we can do the upgrades for you. +That's not a big deal. +I would suggest that you guys switch over to Comcast if possible. +You could go the other route of building a crazy antenna, +but I think that you will have paid for the difference in cost +just by getting a nice directional Wi-Fi antenna for a year. +So just get off CenturyLink, man. +Come on. +Okay. +Will do. +All right. +I'll talk to you later. +You know, that poses a very important question, though. +What is it? +If you start your Windows 10 download and it doesn't finish until after the free date ends, +is it still free? +I believe that it is. +CenturyLink takes a month to download it. +I believe that it is. +I think all you have to do is start the process. +Yeah, I was just joking. +I mean, it's a valid question. +For some users, apparently it is. +You know, for some users. + +CenturyLink users. +You know, you got to know. +You got to wonder. +We got to open up a guru internet cafe where people can just come and download Windows 10. +I thought about doing that. +I thought maybe we'd talk with Black Crown +and see if we can do like a joint venture for coffee shop slash... +Guru internet. +Yeah, basically. +If Google Fiber ever comes to Tucson. +Yeah, there's not a whole lot of hope for that. +It just depresses me every time I hear Google Fiber. +What's the limit on Ethernet viability? +Is it 100 miles? +Can we drag a cable down from Phoenix? +No, no. +It's 300 feet, which is terrible. +It's not going to work. +That's not even close to long enough. +All right. +All right. +So there's a question in the chat. +And by the way, if you want to go to the chat, you can go to gurushow.com slash chat. +And they're asking, what effect will net neutrality have on the mom and pop ISPs here, like SimplyBits and stuff like that? +He heard that it would put stress on them because they're not big enough to compete with the utilities. +Is this true? +Well, I mean, correct me if I'm wrong, but don't most of those mom and pop ISPs, as that person put it, they're just reselling other ISPs, right? +Well, yeah. +I mean, everybody resells the backbone. +Yeah. +But as an example, SimplyBits uses both the Comcast network, or I'm sorry, the Cox network and the Centrelink network to do their thing. +And depending on where their towers are at, those also have to connect to a larger network. +Like Verizon, as an example. +Verizon has towers all over Tucson. +And those Verizon towers are connected not only amongst each other, right, directly, but they also have, like, Cox connections going into them to help provide bandwidth for your 4G. +So there's an interconnectedness that goes on with all of the ISPs. +Now, luckily, I know some people who happen to own a mom and pop. +And rather than me kind of talking out of my butt on this one, I will set up a meeting to go talk to them and ask them what they think and what their struggles are, and I'll get back to you. +Maybe we can get one of them on the show. +That'd be cool. +That would be nice. +All right. +Do we want to take some calls here, or do we want to do a break? +They're stacking up. +All right. +You pick one. +Put it on there. +All right. +Luxanne. +Hello, Luxanne. +How are you? +I'm good. +Thank you for the tip. +It's on getting my speed faster after converting to Windows 10. +Getting rid of the combating spyware really helped. +Excellent. +Glad to hear it. +I have a new question. +I recently retired, and my $29.99 DirecTV and CenturyNet interlink now is almost $120 a month. +And with my retirement, that would equal about 10% of my retirement. +So I wanted to find out if there is a low-cost Internet service, and I'm going to... +I have a converter box in a Roku. +I can live without TV, but I desperately need to have some sort of Internet, primarily to +do email and a little Facebook here and there. +I'm not somebody who streams videos on my computer, but I'm looking for something that's +reasonable and reliable. +Okay. +Just for my own personal use. +I would say that, speaking of the mom-and-pop ISPs, depending on where you're at, what area +of town are you in? +I am right across from Flowing Wells High School. +Okay. +So CenturyLink does offer sort of the cheapest Internet in town, because they have to, right? +As far as... +Yeah, they just have to, right? +It's the cheapest Internet out there is CenturyLink. +But because of your previous bundling packages, and they keep raising the rates all the time. +Yeah. +So... +Yeah. +Yeah. +Yeah. + + + + + + + + +That's what I mentioned. +Look at SimplyBits. +They offer a residential package, which I think is, it's like 1.5 meg or 3 meg, and +it's $20 a month. +Wow. +That's incredible. +The downside is that there's an upfront cost to them, because they have to put an antenna +up at your house. +So you're looking at it like a $300 investment, but it's a one-time, you never pay anything +like that again, and then it's $20 a month from there to, as far as I know, the end of +eternity. +Yeah. +That's incredible. +That's incredible, because that's less than three months of my Cox, I mean, my CenturyLink +and DirecTV, and I've been putting it off, but I need to downprice myself. +So are they open on Saturdays? +I don't know. +I don't know if they're open on Saturdays. +545-0400 is their phone number, I think. +545-0400. +Hopefully I got that right. +You can also just go to SimplyBits.com. +Yeah, SimplyBits.com is also the alternative there. +Okay. +Well, thank you so much. +You have a good weekend. +You too. +Thank you for the call. +Happy Father's Day. +Oh, there's a Happy Father's Day in there. +I wonder how she knew. +All right. +We'll be right back after these messages. +Your computer guru, Mike Swanson. +. . . +. . . + + + + + + + + + + + + + + + + + + +Right now at gurushow.com or call in. +This is the Computer Guru Show on KVOY, The Voice. +Mike Swanson, your computer guru, is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show. +Welcome back to the Computer Guru Show 7902040. +If you want to be part of the show, let's talk to Ron, who's been waiting very patiently. +Hello, Ron. How are you? +Hey, hope you're doing okay. +I'm doing lovely. +On Windows 10, I have a whole heck of a lot of programs and games that work on 7. +So would that be a problem if I changed? +Depends on the games. +Games? +Most of the time, no. +We haven't seen too many problems with... +There are issues with video drivers and the way video behaves between 7 and 10, +depending on your card. +Specifically with the high-end NVIDIA cards, I've seen some issues. +What kind of video card do you have? +It's a high-end NVIDIA card. +Right, so if you have the GeForce experience on your machine, that should go. +I personally, right as you're about to do the upgrade, +I found it worked out a whole lot better for me +that right when I told it to go ahead and do the upgrade, +I also uninstalled the video driver. +And then it reinstalled it upon reboot after doing the Windows 10 upgrade, +and everything worked fine. +I'll say that as far as gaming goes, because of that exact issue, +what worked for me was just doing a fresh install. +Because if you're using Steam games, you can reassociate them after the install. +You don't have to re-download them. +Okay, do you mean NVIDIA reinstalled? +It reinstalls the driver for the game or Windows 10? +So Windows 10 will install its own NVIDIA driver after you do an upgrade. +And then from there, you can go ahead and put on any, +like if you're using a beta driver or using the experience driver, +you can put that back on yourself. +However, the experience driver, we have seen lots of problems +where if it's installed prior to upgrade, +it breaks the crap out of the video settings after the upgrade. +What's the experience driver? +Well, if you're not using it, then that's good. +That means you don't have to uninstall it. +But it's sort of like a universal driver for NVIDIA. +Okay. +So Windows 10 knows which driver goes to my NVIDIA card? +There is a basic NVIDIA WHQL driver that Microsoft definitely knows about. +It's a GeForce driver, so that wouldn't be a problem? +No. +Well, you'll still want to get your NVIDIA update for your card specifically, +after the install, because your performance on your NVIDIA card +could be affected if you don't. +But as far as that goes, if you're upgrading, just get rid of it for now, +and then you can fix it after the install. +Okay. +But does Windows 10 use more RAM than 7? +In my experience, it's about the same. +Now, I mean, I've got sort of like a video editing rig that I did the upgrade on, +and it's got 32 gigs of RAM on it, so I didn't really notice any difference at all. +Okay. +Okay. +Okay. +Okay. + + + + + + + + + + + + + + +Because the Windows, like my laptop here is Windows 10, +and I noticed that Chrome uses more RAM after the upgrade than it did before, +and more CPU for that matter, too. +So there is some sort of a penalty, a tradeoff there, +but I don't think it's enough that it needs to be warned about, like in the Vista era. +So you're saying certain programs, it differs by the program? +It appears to be differing by the program. +Do you know what, like the official? +The official usage is per each OS? +Off the top of my head, no. +I'm sorry. +Okay. +Okay. +But I don't think that, I mean, if you get a reasonable machine and you're playing games on it now, +you're probably not going to notice any performance impact +as long as you don't have your antivirus on there during the upgrade +and you deal with the video stuff beforehand. +Yeah, you said Conspiracy uses a lot of resources. +Resources help out. +Panda. +Panda's not, my biggest problem with Panda is that it was irritating. +But it's a decent antivirus, and it's nice and lightweight, and it's fast. +So I have no issue with Panda as long as you go in and put it in, like, gaming mode +so it doesn't give you a million updates every second. +Yeah, it's trying to sell you something. +The reason why it's lighter is because it's more web-based, isn't it? +Well, sort of. +That's sort of a misnomer with all those web-based ones. +They, they, it does. +It does less as far as, like, Kaspersky is concerned, or compared to Kaspersky. +So. +It does less, you mean, on your machine as far as. +Yeah, I mean, it's monitoring less things. +It's, it's checking less things, and it uses a smaller database than Kaspersky +because of that online feature. +That's not necessarily bad. +I think that, I think that if you're going to do something, you should do it well, right? +Right. +And what I like about the antivirus-only antiviruses is that they do one thing, +and they hopefully should. +They strive to do that well. +Whereas Kaspersky and Norton and McAfee and these other larger suites, +even Avast to a certain extent these days, they want to do all these things. +They want to check your spam and your email, and they want to, +they want to look for your privacy information. +Too many features. +Right, and all these features have a cost. +Jack of all trades, but master of none. +Right, so I just, I just want a good antivirus. +That's it. +So, so you're saying Penn is more specialized on that one purpose? +Well, I hope so. +Otherwise. +Because it has no purpose on the machine at all, because they purport to only be an antivirus. +Now, they do offer a firewall add-on in their paid version, but who needs that? +Right. +Okay. +Yeah, because Windows has its own, its own firewall, right? +Windows does have a firewall, and it is very configurable, +especially if you go into the advanced version. +So, yeah, you've got lots of options. +But. +Okay. +I appreciate the call, Ron. +Cool, thanks. +It turns out that we ran out of time in our second hour. +What's up with that? +What's up with that? +We're out of time. +Out of time. +All right. +So, let's mention our sponsor that we didn't mention last time, which is Desert Pro Commercial Cleaners. +They are a Patreon sponsor, and you can be too. +You can even make Tara say whatever you want. +Right. +Or me. +The rule is, is that if you donated a certain amount, Tara has to say whatever it is that you want her to say, +providing it's FCC friendly and won't get us in trouble. +We're really hoping that somebody is going to just have something hilarious for her to say. +I would love that. +But. +But take an opportunity to support the show. +Now that the show is even longer. +Yep. +It costs a little bit more, so we're going to need your help to keep it on the air. +Go to gurushow.com slash Patreon or patreon.com slash gurushow. +Works either way. +I would also like to take a moment to tell you to go subscribe to our YouTube channel, +because I'm putting a lot of work into that, and we're going to do all kinds of cool stuff with it. +But we need to get a certain number of subscribers before we can do some of those things. +So, make me happy and go to gurushow.com, click the YouTube icon, and subscribe. +Not to mention. +There's going to be a whole bunch of giveaways coming up, +where we're going to give away something each month to someone who happens to be a YouTube subscriber. +And maybe they have to be, you know, liked on the Facebook and all of that. +There's going to be some requirements, but if you want free stuff, sign up and tell your friends to sign up, too. +Also, visit our shop at 510 East Fort Lowell or 64 North Harrison, +or give us a call at 304-8300. +Visit the website at azcomputerguru.com. +Thanks. +Thanks. +We'll see you next week. +I'm going to go to bed. +I'm going to go to bed. +I'm going to go to bed. +I'm going to go to bed. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.json new file mode 100644 index 0000000..d263086 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.json @@ -0,0 +1,118077 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 5365.131, + "segments": [ + { + "id": 0, + "text": "From my heart and from my hand, why don't people understand my intention?", + "start": 0.0, + "end": 4.38, + "words": [ + { + "word": " From", + "start": 0.0, + "end": 0.12, + "probability": 0.8583984375 + }, + { + "word": " my", + "start": 0.12, + "end": 0.42, + "probability": 0.9990234375 + }, + { + "word": " heart", + "start": 0.42, + "end": 0.76, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 0.76, + "end": 0.92, + "probability": 0.99853515625 + }, + { + "word": " from", + "start": 0.92, + "end": 1.14, + "probability": 1.0 + }, + { + "word": " my", + "start": 1.14, + "end": 1.4, + "probability": 1.0 + }, + { + "word": " hand,", + "start": 1.4, + "end": 1.74, + "probability": 0.994140625 + }, + { + "word": " why", + "start": 1.78, + "end": 2.02, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2.02, + "end": 2.4, + "probability": 1.0 + }, + { + "word": " people", + "start": 2.4, + "end": 2.7, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2.7, + "end": 3.22, + "probability": 1.0 + }, + { + "word": " my", + "start": 3.22, + "end": 3.92, + "probability": 1.0 + }, + { + "word": " intention?", + "start": 3.92, + "end": 4.38, + "probability": 0.89990234375 + } + ] + }, + { + "id": 1, + "text": "Computer running slow?", + "start": 5.04, + "end": 6.22, + "words": [ + { + "word": " Computer", + "start": 5.04, + "end": 5.6, + "probability": 0.99755859375 + }, + { + "word": " running", + "start": 5.6, + "end": 5.84, + "probability": 1.0 + }, + { + "word": " slow?", + "start": 5.84, + "end": 6.22, + "probability": 1.0 + } + ] + }, + { + "id": 2, + "text": "Avoiding.", + "start": 6.4, + "end": 6.72, + "words": [ + { + "word": " Avoiding.", + "start": 6.4, + "end": 6.72, + "probability": 0.8623046875 + } + ] + }, + { + "id": 3, + "text": "Caught a virus?", + "start": 6.92, + "end": 7.64, + "words": [ + { + "word": " Caught", + "start": 6.92, + "end": 7.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 7.32, + "end": 7.4, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 7.4, + "end": 7.64, + "probability": 1.0 + } + ] + }, + { + "id": 4, + "text": "What?", + "start": 7.92, + "end": 8.18, + "words": [ + { + "word": " What?", + "start": 7.92, + "end": 8.18, + "probability": 0.1519775390625 + } + ] + }, + { + "id": 5, + "text": "No!", + "start": 8.18, + "end": 8.68, + "words": [ + { + "word": " No!", + "start": 8.18, + "end": 8.68, + "probability": 0.666015625 + } + ] + }, + { + "id": 6, + "text": "Where?", + "start": 9.18, + "end": 9.46, + "words": [ + { + "word": " Where?", + "start": 9.18, + "end": 9.46, + "probability": 0.466064453125 + } + ] + }, + { + "id": 7, + "text": "Where?", + "start": 9.52, + "end": 9.86, + "words": [ + { + "word": " Where?", + "start": 9.52, + "end": 9.86, + "probability": 0.135986328125 + } + ] + }, + { + "id": 8, + "text": "Does your computer seem to have a life of its own?", + "start": 9.92, + "end": 13.14, + "words": [ + { + "word": " Does", + "start": 9.92, + "end": 10.48, + "probability": 0.99560546875 + }, + { + "word": " your", + "start": 10.48, + "end": 10.76, + "probability": 1.0 + }, + { + "word": " computer", + "start": 10.76, + "end": 11.24, + "probability": 1.0 + }, + { + "word": " seem", + "start": 11.24, + "end": 11.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 11.66, + "end": 11.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 11.86, + "end": 12.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 12.1, + "end": 12.24, + "probability": 1.0 + }, + { + "word": " life", + "start": 12.24, + "end": 12.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 12.58, + "end": 12.74, + "probability": 1.0 + }, + { + "word": " its", + "start": 12.74, + "end": 12.9, + "probability": 0.99951171875 + }, + { + "word": " own?", + "start": 12.9, + "end": 13.14, + "probability": 1.0 + } + ] + }, + { + "id": 9, + "text": "Malfunction.", + "start": 13.54, + "end": 14.1, + "words": [ + { + "word": " Malfunction.", + "start": 13.54, + "end": 14.1, + "probability": 0.9638671875 + } + ] + }, + { + "id": 10, + "text": "Need input.", + "start": 14.48, + "end": 15.56, + "words": [ + { + "word": " Need", + "start": 14.48, + "end": 15.04, + "probability": 0.7890625 + }, + { + "word": " input.", + "start": 15.04, + "end": 15.56, + "probability": 0.99755859375 + } + ] + }, + { + "id": 11, + "text": "The Computer Guru is here.", + "start": 15.92, + "end": 17.6, + "words": [ + { + "word": " The", + "start": 15.92, + "end": 16.1, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 16.1, + "end": 16.4, + "probability": 0.7705078125 + }, + { + "word": " Guru", + "start": 16.4, + "end": 16.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 16.82, + "end": 17.28, + "probability": 1.0 + }, + { + "word": " here.", + "start": 17.28, + "end": 17.6, + "probability": 1.0 + } + ] + }, + { + "id": 12, + "text": "My God, you're here!", + "start": 17.78, + "end": 18.68, + "words": [ + { + "word": " My", + "start": 17.78, + "end": 17.84, + "probability": 0.61181640625 + }, + { + "word": " God,", + "start": 17.84, + "end": 18.16, + "probability": 0.93701171875 + }, + { + "word": " you're", + "start": 18.26, + "end": 18.54, + "probability": 1.0 + }, + { + "word": " here!", + "start": 18.54, + "end": 18.68, + "probability": 0.99755859375 + } + ] + }, + { + "id": 13, + "text": "Call in now.", + "start": 19.12, + "end": 19.92, + "words": [ + { + "word": " Call", + "start": 19.12, + "end": 19.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 19.32, + "end": 19.6, + "probability": 1.0 + }, + { + "word": " now.", + "start": 19.6, + "end": 19.92, + "probability": 1.0 + } + ] + }, + { + "id": 14, + "text": "Now, it's Mike Swanson, your Computer Guru.", + "start": 20.28, + "end": 23.12, + "words": [ + { + "word": " Now,", + "start": 20.28, + "end": 20.66, + "probability": 1.0 + }, + { + "word": " it's", + "start": 20.68, + "end": 21.02, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 21.02, + "end": 21.24, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 21.24, + "end": 21.62, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 21.88, + "end": 22.14, + "probability": 0.99853515625 + }, + { + "word": " Computer", + "start": 22.14, + "end": 22.6, + "probability": 0.99658203125 + }, + { + "word": " Guru.", + "start": 22.6, + "end": 23.12, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 24.46, + "end": 26.54, + "words": [ + { + "word": " Hello", + "start": 24.46, + "end": 25.02, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 25.02, + "end": 25.3, + "probability": 0.85009765625 + }, + { + "word": " welcome", + "start": 25.3, + "end": 25.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 25.58, + "end": 25.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 25.8, + "end": 25.88, + "probability": 0.7578125 + }, + { + "word": " Computer", + "start": 25.88, + "end": 26.1, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 26.1, + "end": 26.32, + "probability": 0.99951171875 + }, + { + "word": " Show.", + "start": 26.32, + "end": 26.54, + "probability": 0.9873046875 + } + ] + }, + { + "id": 16, + "text": "My name is Mike, here to deal with your technology needs and treat you like a person in the process.", + "start": 26.54, + "end": 30.52, + "words": [ + { + "word": " My", + "start": 26.54, + "end": 26.64, + "probability": 0.673828125 + }, + { + "word": " name", + "start": 26.64, + "end": 26.78, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 26.78, + "end": 26.88, + "probability": 0.841796875 + }, + { + "word": " Mike,", + "start": 26.88, + "end": 27.04, + "probability": 0.98779296875 + }, + { + "word": " here", + "start": 27.12, + "end": 27.26, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 27.26, + "end": 27.4, + "probability": 1.0 + }, + { + "word": " deal", + "start": 27.4, + "end": 27.56, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 27.56, + "end": 27.68, + "probability": 1.0 + }, + { + "word": " your", + "start": 27.68, + "end": 27.76, + "probability": 1.0 + }, + { + "word": " technology", + "start": 27.76, + "end": 28.1, + "probability": 1.0 + }, + { + "word": " needs", + "start": 28.1, + "end": 28.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 28.44, + "end": 28.74, + "probability": 0.9912109375 + }, + { + "word": " treat", + "start": 28.74, + "end": 29.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 29.1, + "end": 29.32, + "probability": 1.0 + }, + { + "word": " like", + "start": 29.32, + "end": 29.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 29.48, + "end": 29.62, + "probability": 1.0 + }, + { + "word": " person", + "start": 29.62, + "end": 29.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 29.92, + "end": 30.08, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 30.08, + "end": 30.16, + "probability": 1.0 + }, + { + "word": " process.", + "start": 30.16, + "end": 30.52, + "probability": 1.0 + } + ] + }, + { + "id": 17, + "text": "790-2040.", + "start": 31.200000000000003, + "end": 31.92, + "words": [ + { + "word": " 790", + "start": 31.200000000000003, + "end": 31.560000000000002, + "probability": 0.9853515625 + }, + { + "word": "-2040.", + "start": 31.560000000000002, + "end": 31.92, + "probability": 0.7724609375 + } + ] + }, + { + "id": 18, + "text": "If you'd like to be part of the show, that's 520-790-2040.", + "start": 31.96, + "end": 34.98, + "words": [ + { + "word": " If", + "start": 31.96, + "end": 32.14, + "probability": 0.99951171875 + }, + { + "word": " you'd", + "start": 32.14, + "end": 32.26, + "probability": 1.0 + }, + { + "word": " like", + "start": 32.26, + "end": 32.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 32.34, + "end": 32.44, + "probability": 1.0 + }, + { + "word": " be", + "start": 32.44, + "end": 32.46, + "probability": 1.0 + }, + { + "word": " part", + "start": 32.46, + "end": 32.62, + "probability": 0.640625 + }, + { + "word": " of", + "start": 32.62, + "end": 32.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 32.74, + "end": 32.78, + "probability": 1.0 + }, + { + "word": " show,", + "start": 32.78, + "end": 32.92, + "probability": 1.0 + }, + { + "word": " that's", + "start": 32.98, + "end": 33.16, + "probability": 1.0 + }, + { + "word": " 520", + "start": 33.16, + "end": 33.54, + "probability": 0.998046875 + }, + { + "word": "-790", + "start": 33.54, + "end": 34.24, + "probability": 1.0 + }, + { + "word": "-2040.", + "start": 34.24, + "end": 34.98, + "probability": 1.0 + } + ] + }, + { + "id": 19, + "text": "And we'll help you out with whatever technology issues are ailing you.", + "start": 35.72, + "end": 38.94, + "words": [ + { + "word": " And", + "start": 35.72, + "end": 36.08, + "probability": 0.9560546875 + }, + { + "word": " we'll", + "start": 36.08, + "end": 36.26, + "probability": 1.0 + }, + { + "word": " help", + "start": 36.26, + "end": 36.68, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 36.68, + "end": 36.82, + "probability": 1.0 + }, + { + "word": " out", + "start": 36.82, + "end": 36.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 36.9, + "end": 37.04, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 37.04, + "end": 37.2, + "probability": 1.0 + }, + { + "word": " technology", + "start": 37.2, + "end": 37.56, + "probability": 1.0 + }, + { + "word": " issues", + "start": 37.56, + "end": 37.94, + "probability": 1.0 + }, + { + "word": " are", + "start": 37.94, + "end": 38.38, + "probability": 1.0 + }, + { + "word": " ailing", + "start": 38.38, + "end": 38.72, + "probability": 1.0 + }, + { + "word": " you.", + "start": 38.72, + "end": 38.94, + "probability": 1.0 + } + ] + }, + { + "id": 20, + "text": "Because that's what we do around here.", + "start": 39.96, + "end": 41.2, + "words": [ + { + "word": " Because", + "start": 39.96, + "end": 40.32, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 40.32, + "end": 40.52, + "probability": 1.0 + }, + { + "word": " what", + "start": 40.52, + "end": 40.58, + "probability": 1.0 + }, + { + "word": " we", + "start": 40.58, + "end": 40.7, + "probability": 1.0 + }, + { + "word": " do", + "start": 40.7, + "end": 40.82, + "probability": 1.0 + }, + { + "word": " around", + "start": 40.82, + "end": 40.98, + "probability": 1.0 + }, + { + "word": " here.", + "start": 40.98, + "end": 41.2, + "probability": 1.0 + } + ] + }, + { + "id": 21, + "text": "This week is Rob is in.", + "start": 41.58, + "end": 42.96, + "words": [ + { + "word": " This", + "start": 41.58, + "end": 41.94, + "probability": 1.0 + }, + { + "word": " week", + "start": 41.94, + "end": 42.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 42.12, + "end": 42.28, + "probability": 0.96533203125 + }, + { + "word": " Rob", + "start": 42.28, + "end": 42.62, + "probability": 0.966796875 + }, + { + "word": " is", + "start": 42.62, + "end": 42.82, + "probability": 0.97998046875 + }, + { + "word": " in.", + "start": 42.82, + "end": 42.96, + "probability": 1.0 + } + ] + }, + { + "id": 22, + "text": "Hello, Rob.", + "start": 43.02, + "end": 43.4, + "words": [ + { + "word": " Hello,", + "start": 43.02, + "end": 43.2, + "probability": 0.99951171875 + }, + { + "word": " Rob.", + "start": 43.24, + "end": 43.4, + "probability": 1.0 + } + ] + }, + { + "id": 23, + "text": "Hi, how's it going?", + "start": 43.5, + "end": 44.34, + "words": [ + { + "word": " Hi,", + "start": 43.5, + "end": 43.82, + "probability": 0.9990234375 + }, + { + "word": " how's", + "start": 43.84, + "end": 44.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 44.06, + "end": 44.06, + "probability": 1.0 + }, + { + "word": " going?", + "start": 44.06, + "end": 44.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 24, + "text": "And then we've got Kent over there pushing buttons.", + "start": 44.54, + "end": 46.48, + "words": [ + { + "word": " And", + "start": 44.54, + "end": 44.72, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 44.72, + "end": 44.9, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 44.9, + "end": 45.14, + "probability": 0.9609375 + }, + { + "word": " got", + "start": 45.14, + "end": 45.26, + "probability": 1.0 + }, + { + "word": " Kent", + "start": 45.26, + "end": 45.56, + "probability": 0.9931640625 + }, + { + "word": " over", + "start": 45.56, + "end": 45.72, + "probability": 1.0 + }, + { + "word": " there", + "start": 45.72, + "end": 45.92, + "probability": 1.0 + }, + { + "word": " pushing", + "start": 45.92, + "end": 46.14, + "probability": 0.9951171875 + }, + { + "word": " buttons.", + "start": 46.14, + "end": 46.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 25, + "text": "Good morning.", + "start": 46.56, + "end": 47.2, + "words": [ + { + "word": " Good", + "start": 46.56, + "end": 46.92, + "probability": 0.99951171875 + }, + { + "word": " morning.", + "start": 46.92, + "end": 47.2, + "probability": 1.0 + } + ] + }, + { + "id": 26, + "text": "Doing his thing.", + "start": 47.34, + "end": 47.84, + "words": [ + { + "word": " Doing", + "start": 47.34, + "end": 47.38, + "probability": 0.908203125 + }, + { + "word": " his", + "start": 47.38, + "end": 47.52, + "probability": 0.99755859375 + }, + { + "word": " thing.", + "start": 47.52, + "end": 47.84, + "probability": 1.0 + } + ] + }, + { + "id": 27, + "text": "And we've got new stuff to play during the breaks.", + "start": 49.52, + "end": 52.3, + "words": [ + { + "word": " And", + "start": 49.52, + "end": 49.88, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 49.88, + "end": 50.24, + "probability": 0.9814453125 + }, + { + "word": " got", + "start": 50.24, + "end": 50.24, + "probability": 1.0 + }, + { + "word": " new", + "start": 50.24, + "end": 50.72, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 50.72, + "end": 51.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 51.04, + "end": 51.28, + "probability": 1.0 + }, + { + "word": " play", + "start": 51.28, + "end": 51.52, + "probability": 1.0 + }, + { + "word": " during", + "start": 51.52, + "end": 51.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 51.68, + "end": 51.84, + "probability": 1.0 + }, + { + "word": " breaks.", + "start": 51.84, + "end": 52.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 28, + "text": "It feels like I can feel the energy today.", + "start": 52.58, + "end": 54.86, + "words": [ + { + "word": " It", + "start": 52.58, + "end": 52.86, + "probability": 0.9794921875 + }, + { + "word": " feels", + "start": 52.86, + "end": 53.04, + "probability": 1.0 + }, + { + "word": " like", + "start": 53.04, + "end": 53.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 53.2, + "end": 53.36, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 53.36, + "end": 53.96, + "probability": 0.89453125 + }, + { + "word": " feel", + "start": 53.96, + "end": 54.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 54.16, + "end": 54.28, + "probability": 1.0 + }, + { + "word": " energy", + "start": 54.28, + "end": 54.44, + "probability": 1.0 + }, + { + "word": " today.", + "start": 54.44, + "end": 54.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 29, + "text": "Yeah?", + "start": 55.08, + "end": 55.44, + "words": [ + { + "word": " Yeah?", + "start": 55.08, + "end": 55.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 30, + "text": "Yeah.", + "start": 55.52, + "end": 55.82, + "words": [ + { + "word": " Yeah.", + "start": 55.52, + "end": 55.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 31, + "text": "Yeah.", + "start": 56.0, + "end": 56.36, + "words": [ + { + "word": " Yeah.", + "start": 56.0, + "end": 56.36, + "probability": 0.99560546875 + } + ] + }, + { + "id": 32, + "text": "It's not bad.", + "start": 56.79999999999999, + "end": 57.8, + "words": [ + { + "word": " It's", + "start": 56.79999999999999, + "end": 57.16, + "probability": 0.947265625 + }, + { + "word": " not", + "start": 57.16, + "end": 57.18, + "probability": 0.99755859375 + }, + { + "word": " bad.", + "start": 57.18, + "end": 57.8, + "probability": 0.92822265625 + } + ] + }, + { + "id": 33, + "text": "What kind of energy is it, though?", + "start": 58.34, + "end": 59.6, + "words": [ + { + "word": " What", + "start": 58.34, + "end": 58.7, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 58.7, + "end": 58.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 58.84, + "end": 58.94, + "probability": 1.0 + }, + { + "word": " energy", + "start": 58.94, + "end": 59.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 59.16, + "end": 59.34, + "probability": 1.0 + }, + { + "word": " it,", + "start": 59.34, + "end": 59.48, + "probability": 1.0 + }, + { + "word": " though?", + "start": 59.5, + "end": 59.6, + "probability": 1.0 + } + ] + }, + { + "id": 34, + "text": "Hopefully good energy, because we're going to need it.", + "start": 59.92, + "end": 61.58, + "words": [ + { + "word": " Hopefully", + "start": 59.92, + "end": 60.28, + "probability": 0.9990234375 + }, + { + "word": " good", + "start": 60.28, + "end": 60.46, + "probability": 0.98291015625 + }, + { + "word": " energy,", + "start": 60.46, + "end": 60.74, + "probability": 1.0 + }, + { + "word": " because", + "start": 60.92, + "end": 61.04, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 61.04, + "end": 61.22, + "probability": 1.0 + }, + { + "word": " going", + "start": 61.22, + "end": 61.24, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 61.24, + "end": 61.3, + "probability": 1.0 + }, + { + "word": " need", + "start": 61.3, + "end": 61.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 61.44, + "end": 61.58, + "probability": 1.0 + } + ] + }, + { + "id": 35, + "text": "Yeah.", + "start": 61.82, + "end": 62.14, + "words": [ + { + "word": " Yeah.", + "start": 61.82, + "end": 62.14, + "probability": 0.869140625 + } + ] + }, + { + "id": 36, + "text": "There's going to be...", + "start": 63.66, + "end": 65.14, + "words": [ + { + "word": " There's", + "start": 63.66, + "end": 64.02, + "probability": 0.95654296875 + }, + { + "word": " going", + "start": 64.02, + "end": 64.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 64.2, + "end": 64.46, + "probability": 1.0 + }, + { + "word": " be...", + "start": 64.46, + "end": 65.14, + "probability": 0.69677734375 + } + ] + }, + { + "id": 37, + "text": "We're doing the filming stage of Destruction of Furbies today.", + "start": 65.53999999999999, + "end": 69.42, + "words": [ + { + "word": " We're", + "start": 65.53999999999999, + "end": 65.9, + "probability": 0.9853515625 + }, + { + "word": " doing", + "start": 65.9, + "end": 66.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 66.26, + "end": 66.42, + "probability": 1.0 + }, + { + "word": " filming", + "start": 66.42, + "end": 66.74, + "probability": 0.99951171875 + }, + { + "word": " stage", + "start": 66.74, + "end": 67.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 67.12, + "end": 67.78, + "probability": 1.0 + }, + { + "word": " Destruction", + "start": 67.78, + "end": 68.76, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 68.76, + "end": 68.9, + "probability": 0.99755859375 + }, + { + "word": " Furbies", + "start": 68.9, + "end": 69.18, + "probability": 0.9150390625 + }, + { + "word": " today.", + "start": 69.18, + "end": 69.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 38, + "text": "Finally.", + "start": 69.82, + "end": 70.18, + "words": [ + { + "word": " Finally.", + "start": 69.82, + "end": 70.18, + "probability": 0.98876953125 + } + ] + }, + { + "id": 39, + "text": "And so that's going to be fun.", + "start": 70.79999999999998, + "end": 72.48, + "words": [ + { + "word": " And", + "start": 70.79999999999998, + "end": 71.16, + "probability": 0.56396484375 + }, + { + "word": " so", + "start": 71.16, + "end": 71.52, + "probability": 0.9912109375 + }, + { + "word": " that's", + "start": 71.52, + "end": 71.8, + "probability": 0.9833984375 + }, + { + "word": " going", + "start": 71.8, + "end": 72.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 72.12, + "end": 72.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 72.22, + "end": 72.28, + "probability": 1.0 + }, + { + "word": " fun.", + "start": 72.28, + "end": 72.48, + "probability": 1.0 + } + ] + }, + { + "id": 40, + "text": "And hopefully nobody gets injured.", + "start": 73.99999999999997, + "end": 75.88, + "words": [ + { + "word": " And", + "start": 73.99999999999997, + "end": 74.35999999999999, + "probability": 0.99853515625 + }, + { + "word": " hopefully", + "start": 74.35999999999999, + "end": 74.72, + "probability": 0.998046875 + }, + { + "word": " nobody", + "start": 74.72, + "end": 75.36, + "probability": 0.99951171875 + }, + { + "word": " gets", + "start": 75.36, + "end": 75.6, + "probability": 1.0 + }, + { + "word": " injured.", + "start": 75.6, + "end": 75.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 41, + "text": "Yeah, I'm really hoping that we can walk away from this literally.", + "start": 76.56, + "end": 79.46, + "words": [ + { + "word": " Yeah,", + "start": 76.56, + "end": 76.92, + "probability": 0.9951171875 + }, + { + "word": " I'm", + "start": 77.04, + "end": 77.14, + "probability": 1.0 + }, + { + "word": " really", + "start": 77.14, + "end": 77.28, + "probability": 1.0 + }, + { + "word": " hoping", + "start": 77.28, + "end": 77.9, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 77.9, + "end": 78.32, + "probability": 1.0 + }, + { + "word": " we", + "start": 78.32, + "end": 78.4, + "probability": 1.0 + }, + { + "word": " can", + "start": 78.4, + "end": 78.5, + "probability": 1.0 + }, + { + "word": " walk", + "start": 78.5, + "end": 78.66, + "probability": 1.0 + }, + { + "word": " away", + "start": 78.66, + "end": 78.84, + "probability": 1.0 + }, + { + "word": " from", + "start": 78.84, + "end": 79.02, + "probability": 1.0 + }, + { + "word": " this", + "start": 79.02, + "end": 79.18, + "probability": 1.0 + }, + { + "word": " literally.", + "start": 79.18, + "end": 79.46, + "probability": 0.75732421875 + } + ] + }, + { + "id": 42, + "text": "Right.", + "start": 80.04, + "end": 80.4, + "words": [ + { + "word": " Right.", + "start": 80.04, + "end": 80.4, + "probability": 0.99658203125 + } + ] + }, + { + "id": 43, + "text": "Unscathed.", + "start": 81.04, + "end": 81.4, + "words": [ + { + "word": " Unscathed.", + "start": 81.04, + "end": 81.4, + "probability": 0.9873046875 + } + ] + }, + { + "id": 44, + "text": "Right.", + "start": 81.4, + "end": 81.56, + "words": [ + { + "word": " Right.", + "start": 81.4, + "end": 81.56, + "probability": 0.85546875 + } + ] + }, + { + "id": 45, + "text": "Although your mom said that she's going to take you out.", + "start": 82.08, + "end": 83.94, + "words": [ + { + "word": " Although", + "start": 82.08, + "end": 82.44, + "probability": 0.9951171875 + }, + { + "word": " your", + "start": 82.44, + "end": 82.62, + "probability": 0.99951171875 + }, + { + "word": " mom", + "start": 82.62, + "end": 82.8, + "probability": 1.0 + }, + { + "word": " said", + "start": 82.8, + "end": 83.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 83.02, + "end": 83.18, + "probability": 0.99951171875 + }, + { + "word": " she's", + "start": 83.18, + "end": 83.44, + "probability": 1.0 + }, + { + "word": " going", + "start": 83.44, + "end": 83.8, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 83.8, + "end": 83.94, + "probability": 1.0 + }, + { + "word": " take", + "start": 83.94, + "end": 83.94, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 83.94, + "end": 83.94, + "probability": 1.0 + }, + { + "word": " out.", + "start": 83.94, + "end": 83.94, + "probability": 1.0 + } + ] + }, + { + "id": 46, + "text": "She's going to get hurt.", + "start": 83.94, + "end": 84.94, + "words": [ + { + "word": " She's", + "start": 83.94, + "end": 84.12, + "probability": 0.5126953125 + }, + { + "word": " going", + "start": 84.12, + "end": 84.32, + "probability": 0.8994140625 + }, + { + "word": " to", + "start": 84.32, + "end": 84.32, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 84.32, + "end": 84.66, + "probability": 0.300048828125 + }, + { + "word": " hurt.", + "start": 84.66, + "end": 84.94, + "probability": 0.99462890625 + } + ] + }, + { + "id": 47, + "text": "She's going to kill me.", + "start": 85.04, + "end": 85.82, + "words": [ + { + "word": " She's", + "start": 85.04, + "end": 85.24, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 85.24, + "end": 85.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 85.38, + "end": 85.48, + "probability": 1.0 + }, + { + "word": " kill", + "start": 85.48, + "end": 85.66, + "probability": 0.99853515625 + }, + { + "word": " me.", + "start": 85.66, + "end": 85.82, + "probability": 1.0 + } + ] + }, + { + "id": 48, + "text": "Yeah.", + "start": 86.0, + "end": 86.36, + "words": [ + { + "word": " Yeah.", + "start": 86.0, + "end": 86.36, + "probability": 0.91748046875 + } + ] + }, + { + "id": 49, + "text": "Yeah.", + "start": 87.0, + "end": 87.32, + "words": [ + { + "word": " Yeah.", + "start": 87.0, + "end": 87.32, + "probability": 0.00717926025390625 + } + ] + }, + { + "id": 50, + "text": "I was like, that seems like an escalation that doesn't make sense, but all right.", + "start": 87.32, + "end": 90.94, + "words": [ + { + "word": " I", + "start": 87.32, + "end": 87.56, + "probability": 0.96875 + }, + { + "word": " was", + "start": 87.56, + "end": 87.66, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 87.66, + "end": 87.78, + "probability": 0.9921875 + }, + { + "word": " that", + "start": 87.8, + "end": 87.88, + "probability": 0.994140625 + }, + { + "word": " seems", + "start": 87.88, + "end": 88.12, + "probability": 1.0 + }, + { + "word": " like", + "start": 88.12, + "end": 88.32, + "probability": 1.0 + }, + { + "word": " an", + "start": 88.32, + "end": 88.5, + "probability": 0.78076171875 + }, + { + "word": " escalation", + "start": 88.5, + "end": 89.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 89.6, + "end": 89.94, + "probability": 0.962890625 + }, + { + "word": " doesn't", + "start": 89.94, + "end": 90.22, + "probability": 1.0 + }, + { + "word": " make", + "start": 90.22, + "end": 90.34, + "probability": 1.0 + }, + { + "word": " sense,", + "start": 90.34, + "end": 90.6, + "probability": 1.0 + }, + { + "word": " but", + "start": 90.62, + "end": 90.68, + "probability": 1.0 + }, + { + "word": " all", + "start": 90.68, + "end": 90.76, + "probability": 0.96923828125 + }, + { + "word": " right.", + "start": 90.76, + "end": 90.94, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "She goes, that's my job.", + "start": 91.68, + "end": 92.7, + "words": [ + { + "word": " She", + "start": 91.68, + "end": 92.0, + "probability": 0.5908203125 + }, + { + "word": " goes,", + "start": 92.0, + "end": 92.12, + "probability": 1.0 + }, + { + "word": " that's", + "start": 92.2, + "end": 92.38, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 92.38, + "end": 92.48, + "probability": 1.0 + }, + { + "word": " job.", + "start": 92.48, + "end": 92.7, + "probability": 1.0 + } + ] + }, + { + "id": 52, + "text": "Right on.", + "start": 93.74000000000001, + "end": 94.38, + "words": [ + { + "word": " Right", + "start": 93.74000000000001, + "end": 94.06, + "probability": 0.935546875 + }, + { + "word": " on.", + "start": 94.06, + "end": 94.38, + "probability": 1.0 + } + ] + }, + { + "id": 53, + "text": "So if I even get a paper cut today, that's it for me.", + "start": 94.6, + "end": 97.18, + "words": [ + { + "word": " So", + "start": 94.6, + "end": 94.92, + "probability": 0.94091796875 + }, + { + "word": " if", + "start": 94.92, + "end": 95.1, + "probability": 0.86328125 + }, + { + "word": " I", + "start": 95.1, + "end": 95.22, + "probability": 1.0 + }, + { + "word": " even", + "start": 95.22, + "end": 95.38, + "probability": 1.0 + }, + { + "word": " get", + "start": 95.38, + "end": 95.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 95.52, + "end": 95.6, + "probability": 0.54931640625 + }, + { + "word": " paper", + "start": 95.6, + "end": 95.92, + "probability": 0.9990234375 + }, + { + "word": " cut", + "start": 95.92, + "end": 96.16, + "probability": 0.9990234375 + }, + { + "word": " today,", + "start": 96.16, + "end": 96.38, + "probability": 1.0 + }, + { + "word": " that's", + "start": 96.54, + "end": 96.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 96.8, + "end": 96.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 96.9, + "end": 97.02, + "probability": 1.0 + }, + { + "word": " me.", + "start": 97.02, + "end": 97.18, + "probability": 1.0 + } + ] + }, + { + "id": 54, + "text": "You're a goner, man.", + "start": 97.68, + "end": 98.76, + "words": [ + { + "word": " You're", + "start": 97.68, + "end": 98.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 98.0, + "end": 98.2, + "probability": 0.892578125 + }, + { + "word": " goner,", + "start": 98.2, + "end": 98.62, + "probability": 0.71435546875 + }, + { + "word": " man.", + "start": 98.62, + "end": 98.76, + "probability": 1.0 + } + ] + }, + { + "id": 55, + "text": "Yeah, I guess so.", + "start": 98.92, + "end": 99.36, + "words": [ + { + "word": " Yeah,", + "start": 98.92, + "end": 99.0, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 99.02, + "end": 99.1, + "probability": 1.0 + }, + { + "word": " guess", + "start": 99.1, + "end": 99.22, + "probability": 1.0 + }, + { + "word": " so.", + "start": 99.22, + "end": 99.36, + "probability": 1.0 + } + ] + }, + { + "id": 56, + "text": "You have to go on the lam.", + "start": 100.06, + "end": 101.04, + "words": [ + { + "word": " You", + "start": 100.06, + "end": 100.38, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 100.38, + "end": 100.48, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 100.48, + "end": 100.56, + "probability": 1.0 + }, + { + "word": " go", + "start": 100.56, + "end": 100.68, + "probability": 1.0 + }, + { + "word": " on", + "start": 100.68, + "end": 100.78, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 100.78, + "end": 100.88, + "probability": 0.99560546875 + }, + { + "word": " lam.", + "start": 100.88, + "end": 101.04, + "probability": 0.9482421875 + } + ] + }, + { + "id": 57, + "text": "Well, yeah, my girlfriend said that there's going to be a line of people to injure me", + "start": 101.22, + "end": 104.94, + "words": [ + { + "word": " Well,", + "start": 101.22, + "end": 101.54, + "probability": 0.998046875 + }, + { + "word": " yeah,", + "start": 101.68, + "end": 101.9, + "probability": 0.76611328125 + }, + { + "word": " my", + "start": 101.92, + "end": 102.0, + "probability": 1.0 + }, + { + "word": " girlfriend", + "start": 102.0, + "end": 102.24, + "probability": 1.0 + }, + { + "word": " said", + "start": 102.24, + "end": 102.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 102.48, + "end": 102.7, + "probability": 1.0 + }, + { + "word": " there's", + "start": 102.7, + "end": 103.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 103.14, + "end": 103.22, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 103.22, + "end": 103.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 103.3, + "end": 103.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 103.38, + "end": 103.44, + "probability": 1.0 + }, + { + "word": " line", + "start": 103.44, + "end": 103.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 103.66, + "end": 103.96, + "probability": 1.0 + }, + { + "word": " people", + "start": 103.96, + "end": 104.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 104.2, + "end": 104.44, + "probability": 1.0 + }, + { + "word": " injure", + "start": 104.44, + "end": 104.82, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 104.82, + "end": 104.94, + "probability": 1.0 + } + ] + }, + { + "id": 58, + "text": "if I get injured.", + "start": 104.94, + "end": 105.46, + "words": [ + { + "word": " if", + "start": 104.94, + "end": 105.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 105.06, + "end": 105.12, + "probability": 1.0 + }, + { + "word": " get", + "start": 105.12, + "end": 105.22, + "probability": 1.0 + }, + { + "word": " injured.", + "start": 105.22, + "end": 105.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 59, + "text": "Oh, really?", + "start": 105.64, + "end": 106.12, + "words": [ + { + "word": " Oh,", + "start": 105.64, + "end": 105.96, + "probability": 0.99951171875 + }, + { + "word": " really?", + "start": 105.96, + "end": 106.12, + "probability": 1.0 + } + ] + }, + { + "id": 60, + "text": "You're going to take a number?", + "start": 106.32, + "end": 106.96, + "words": [ + { + "word": " You're", + "start": 106.32, + "end": 106.46, + "probability": 0.81689453125 + }, + { + "word": " going", + "start": 106.46, + "end": 106.54, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 106.54, + "end": 106.56, + "probability": 1.0 + }, + { + "word": " take", + "start": 106.56, + "end": 106.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 106.72, + "end": 106.78, + "probability": 1.0 + }, + { + "word": " number?", + "start": 106.78, + "end": 106.96, + "probability": 1.0 + } + ] + }, + { + "id": 61, + "text": "Apparently.", + "start": 107.24, + "end": 107.56, + "words": [ + { + "word": " Apparently.", + "start": 107.24, + "end": 107.56, + "probability": 0.982421875 + } + ] + }, + { + "id": 62, + "text": "All the women in my life are violent.", + "start": 107.9, + "end": 109.24, + "words": [ + { + "word": " All", + "start": 107.9, + "end": 108.22, + "probability": 0.9697265625 + }, + { + "word": " the", + "start": 108.22, + "end": 108.38, + "probability": 1.0 + }, + { + "word": " women", + "start": 108.38, + "end": 108.52, + "probability": 1.0 + }, + { + "word": " in", + "start": 108.52, + "end": 108.64, + "probability": 1.0 + }, + { + "word": " my", + "start": 108.64, + "end": 108.7, + "probability": 1.0 + }, + { + "word": " life", + "start": 108.7, + "end": 108.88, + "probability": 1.0 + }, + { + "word": " are", + "start": 108.88, + "end": 108.98, + "probability": 1.0 + }, + { + "word": " violent.", + "start": 108.98, + "end": 109.24, + "probability": 1.0 + } + ] + }, + { + "id": 63, + "text": "All right.", + "start": 112.58000000000001, + "end": 113.2, + "words": [ + { + "word": " All", + "start": 112.58000000000001, + "end": 112.9, + "probability": 0.99609375 + }, + { + "word": " right.", + "start": 112.9, + "end": 113.2, + "probability": 1.0 + } + ] + }, + { + "id": 64, + "text": "7-9-0-20-40 if you want to be part of the show.", + "start": 113.24, + "end": 115.66, + "words": [ + { + "word": " 7", + "start": 113.24, + "end": 113.52, + "probability": 0.93310546875 + }, + { + "word": "-9", + "start": 113.52, + "end": 113.74, + "probability": 0.50439453125 + }, + { + "word": "-0", + "start": 113.74, + "end": 113.94, + "probability": 1.0 + }, + { + "word": "-20", + "start": 113.94, + "end": 114.26, + "probability": 0.9970703125 + }, + { + "word": "-40", + "start": 114.26, + "end": 114.52, + "probability": 0.9892578125 + }, + { + "word": " if", + "start": 114.52, + "end": 114.72, + "probability": 0.93212890625 + }, + { + "word": " you", + "start": 114.72, + "end": 114.84, + "probability": 1.0 + }, + { + "word": " want", + "start": 114.84, + "end": 114.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 114.94, + "end": 115.04, + "probability": 1.0 + }, + { + "word": " be", + "start": 115.04, + "end": 115.12, + "probability": 1.0 + }, + { + "word": " part", + "start": 115.12, + "end": 115.26, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 115.26, + "end": 115.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 115.4, + "end": 115.44, + "probability": 1.0 + }, + { + "word": " show.", + "start": 115.44, + "end": 115.66, + "probability": 1.0 + } + ] + }, + { + "id": 65, + "text": "All right.", + "start": 116.94, + "end": 117.66, + "words": [ + { + "word": " All", + "start": 116.94, + "end": 117.3, + "probability": 0.0005402565002441406 + }, + { + "word": " right.", + "start": 117.3, + "end": 117.66, + "probability": 0.7861328125 + } + ] + }, + { + "id": 66, + "text": "This show kind of feels like a follow-up show.", + "start": 117.72, + "end": 119.74, + "words": [ + { + "word": " This", + "start": 117.72, + "end": 118.0, + "probability": 0.05047607421875 + }, + { + "word": " show", + "start": 118.0, + "end": 118.28, + "probability": 0.99072265625 + }, + { + "word": " kind", + "start": 118.28, + "end": 118.48, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 118.48, + "end": 118.6, + "probability": 1.0 + }, + { + "word": " feels", + "start": 118.6, + "end": 118.84, + "probability": 1.0 + }, + { + "word": " like", + "start": 118.84, + "end": 119.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 119.02, + "end": 119.1, + "probability": 1.0 + }, + { + "word": " follow", + "start": 119.1, + "end": 119.38, + "probability": 0.99951171875 + }, + { + "word": "-up", + "start": 119.38, + "end": 119.56, + "probability": 0.9833984375 + }, + { + "word": " show.", + "start": 119.56, + "end": 119.74, + "probability": 1.0 + } + ] + }, + { + "id": 67, + "text": "Oh, yeah?", + "start": 120.38, + "end": 120.74, + "words": [ + { + "word": " Oh,", + "start": 120.38, + "end": 120.74, + "probability": 0.51220703125 + }, + { + "word": " yeah?", + "start": 120.74, + "end": 120.74, + "probability": 1.0 + } + ] + }, + { + "id": 68, + "text": "Because we're talking about a lot of things that have been talked about before.", + "start": 120.74, + "end": 123.04, + "words": [ + { + "word": " Because", + "start": 120.74, + "end": 121.02, + "probability": 0.98583984375 + }, + { + "word": " we're", + "start": 121.02, + "end": 121.22, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 121.22, + "end": 121.42, + "probability": 1.0 + }, + { + "word": " about", + "start": 121.42, + "end": 121.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 121.6, + "end": 121.68, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 121.68, + "end": 121.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 121.8, + "end": 121.86, + "probability": 1.0 + }, + { + "word": " things", + "start": 121.86, + "end": 122.02, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 122.02, + "end": 122.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 122.16, + "end": 122.24, + "probability": 1.0 + }, + { + "word": " been", + "start": 122.24, + "end": 122.34, + "probability": 1.0 + }, + { + "word": " talked", + "start": 122.34, + "end": 122.54, + "probability": 1.0 + }, + { + "word": " about", + "start": 122.54, + "end": 122.74, + "probability": 1.0 + }, + { + "word": " before.", + "start": 122.74, + "end": 123.04, + "probability": 1.0 + } + ] + }, + { + "id": 69, + "text": "Yeah, we're going to be kind of bringing up stuff that we've talked about before and", + "start": 123.34, + "end": 127.44, + "words": [ + { + "word": " Yeah,", + "start": 123.34, + "end": 123.7, + "probability": 0.9990234375 + }, + { + "word": " we're", + "start": 123.74, + "end": 123.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 123.94, + "end": 123.94, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 123.94, + "end": 124.04, + "probability": 1.0 + }, + { + "word": " be", + "start": 124.04, + "end": 124.16, + "probability": 1.0 + }, + { + "word": " kind", + "start": 124.16, + "end": 124.5, + "probability": 0.99462890625 + }, + { + "word": " of", + "start": 124.5, + "end": 124.66, + "probability": 1.0 + }, + { + "word": " bringing", + "start": 124.66, + "end": 125.2, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 125.2, + "end": 125.38, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 125.38, + "end": 125.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 125.56, + "end": 125.92, + "probability": 1.0 + }, + { + "word": " we've", + "start": 125.92, + "end": 126.44, + "probability": 0.9990234375 + }, + { + "word": " talked", + "start": 126.44, + "end": 126.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 126.6, + "end": 126.84, + "probability": 1.0 + }, + { + "word": " before", + "start": 126.84, + "end": 127.06, + "probability": 1.0 + }, + { + "word": " and", + "start": 127.06, + "end": 127.44, + "probability": 0.98193359375 + } + ] + }, + { + "id": 70, + "text": "said that we would eventually follow up with.", + "start": 127.44, + "end": 129.16, + "words": [ + { + "word": " said", + "start": 127.44, + "end": 127.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 127.8, + "end": 127.94, + "probability": 1.0 + }, + { + "word": " we", + "start": 127.94, + "end": 128.06, + "probability": 1.0 + }, + { + "word": " would", + "start": 128.06, + "end": 128.2, + "probability": 1.0 + }, + { + "word": " eventually", + "start": 128.2, + "end": 128.38, + "probability": 1.0 + }, + { + "word": " follow", + "start": 128.38, + "end": 128.7, + "probability": 1.0 + }, + { + "word": " up", + "start": 128.7, + "end": 128.96, + "probability": 0.9912109375 + }, + { + "word": " with.", + "start": 128.96, + "end": 129.16, + "probability": 1.0 + } + ] + }, + { + "id": 71, + "text": "And some of those things are good.", + "start": 129.28, + "end": 130.5, + "words": [ + { + "word": " And", + "start": 129.28, + "end": 129.36, + "probability": 0.75146484375 + }, + { + "word": " some", + "start": 129.36, + "end": 129.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 129.8, + "end": 129.92, + "probability": 1.0 + }, + { + "word": " those", + "start": 129.92, + "end": 130.0, + "probability": 1.0 + }, + { + "word": " things", + "start": 130.0, + "end": 130.16, + "probability": 1.0 + }, + { + "word": " are", + "start": 130.16, + "end": 130.34, + "probability": 1.0 + }, + { + "word": " good.", + "start": 130.34, + "end": 130.5, + "probability": 1.0 + } + ] + }, + { + "id": 72, + "text": "Some of those things are not so good.", + "start": 130.58, + "end": 132.04, + "words": [ + { + "word": " Some", + "start": 130.58, + "end": 130.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 130.76, + "end": 130.9, + "probability": 1.0 + }, + { + "word": " those", + "start": 130.9, + "end": 130.98, + "probability": 1.0 + }, + { + "word": " things", + "start": 130.98, + "end": 131.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 131.18, + "end": 131.38, + "probability": 1.0 + }, + { + "word": " not", + "start": 131.38, + "end": 131.64, + "probability": 1.0 + }, + { + "word": " so", + "start": 131.64, + "end": 131.8, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 131.8, + "end": 132.04, + "probability": 1.0 + } + ] + }, + { + "id": 73, + "text": "Right.", + "start": 132.78, + "end": 133.14, + "words": [ + { + "word": " Right.", + "start": 132.78, + "end": 133.14, + "probability": 0.9921875 + } + ] + }, + { + "id": 74, + "text": "Some of these things are, I didn't want to talk about them again, necessarily.", + "start": 133.76, + "end": 139.62, + "words": [ + { + "word": " Some", + "start": 133.76, + "end": 134.12, + "probability": 0.990234375 + }, + { + "word": " of", + "start": 134.12, + "end": 134.28, + "probability": 1.0 + }, + { + "word": " these", + "start": 134.28, + "end": 134.38, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 134.38, + "end": 134.72, + "probability": 1.0 + }, + { + "word": " are,", + "start": 134.72, + "end": 135.06, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 135.22, + "end": 136.94, + "probability": 0.912109375 + }, + { + "word": " didn't", + "start": 136.94, + "end": 137.58, + "probability": 0.99365234375 + }, + { + "word": " want", + "start": 137.58, + "end": 137.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 137.7, + "end": 137.82, + "probability": 1.0 + }, + { + "word": " talk", + "start": 137.82, + "end": 138.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 138.0, + "end": 138.2, + "probability": 1.0 + }, + { + "word": " them", + "start": 138.2, + "end": 138.36, + "probability": 0.99755859375 + }, + { + "word": " again,", + "start": 138.36, + "end": 138.54, + "probability": 1.0 + }, + { + "word": " necessarily.", + "start": 138.62, + "end": 139.62, + "probability": 1.0 + } + ] + }, + { + "id": 75, + "text": "Yeah, I was really hoping that we wouldn't have to.", + "start": 139.64, + "end": 141.18, + "words": [ + { + "word": " Yeah,", + "start": 139.64, + "end": 140.0, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 140.02, + "end": 140.06, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 140.06, + "end": 140.1, + "probability": 1.0 + }, + { + "word": " really", + "start": 140.1, + "end": 140.22, + "probability": 1.0 + }, + { + "word": " hoping", + "start": 140.22, + "end": 140.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 140.42, + "end": 140.6, + "probability": 1.0 + }, + { + "word": " we", + "start": 140.6, + "end": 140.68, + "probability": 1.0 + }, + { + "word": " wouldn't", + "start": 140.68, + "end": 140.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 140.86, + "end": 140.98, + "probability": 1.0 + }, + { + "word": " to.", + "start": 140.98, + "end": 141.18, + "probability": 1.0 + } + ] + }, + { + "id": 76, + "text": "Yeah.", + "start": 142.26, + "end": 142.62, + "words": [ + { + "word": " Yeah.", + "start": 142.26, + "end": 142.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 77, + "text": "Yeah.", + "start": 142.64, + "end": 143.0, + "words": [ + { + "word": " Yeah.", + "start": 142.64, + "end": 143.0, + "probability": 0.0053253173828125 + } + ] + }, + { + "id": 78, + "text": "Well, let's start with one that we didn't have to.", + "start": 143.46, + "end": 146.52, + "words": [ + { + "word": " Well,", + "start": 143.46, + "end": 143.56, + "probability": 0.99462890625 + }, + { + "word": " let's", + "start": 143.66, + "end": 143.82, + "probability": 1.0 + }, + { + "word": " start", + "start": 143.82, + "end": 143.92, + "probability": 1.0 + }, + { + "word": " with", + "start": 143.92, + "end": 144.04, + "probability": 1.0 + }, + { + "word": " one", + "start": 144.04, + "end": 144.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 144.2, + "end": 144.32, + "probability": 1.0 + }, + { + "word": " we", + "start": 144.32, + "end": 144.4, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 144.4, + "end": 146.06, + "probability": 0.9892578125 + }, + { + "word": " have", + "start": 146.06, + "end": 146.3, + "probability": 0.998046875 + }, + { + "word": " to.", + "start": 146.3, + "end": 146.52, + "probability": 0.7548828125 + } + ] + }, + { + "id": 79, + "text": "I just wish we didn't have to talk about before.", + "start": 146.54, + "end": 147.0, + "words": [ + { + "word": " I", + "start": 146.54, + "end": 146.8, + "probability": 0.029510498046875 + }, + { + "word": " just", + "start": 146.8, + "end": 146.8, + "probability": 0.37060546875 + }, + { + "word": " wish", + "start": 146.8, + "end": 146.8, + "probability": 0.87890625 + }, + { + "word": " we", + "start": 146.8, + "end": 146.8, + "probability": 0.99072265625 + }, + { + "word": " didn't", + "start": 146.8, + "end": 146.8, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 146.8, + "end": 146.8, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 146.8, + "end": 146.8, + "probability": 0.998046875 + }, + { + "word": " talk", + "start": 146.8, + "end": 146.8, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 146.8, + "end": 146.86, + "probability": 0.99853515625 + }, + { + "word": " before.", + "start": 146.86, + "end": 147.0, + "probability": 0.006229400634765625 + } + ] + }, + { + "id": 80, + "text": "And I just wish we didn't have to talk about now.", + "start": 147.26, + "end": 148.98, + "words": [ + { + "word": " And", + "start": 147.26, + "end": 147.4, + "probability": 0.4814453125 + }, + { + "word": " I", + "start": 147.4, + "end": 147.62, + "probability": 0.9951171875 + }, + { + "word": " just", + "start": 147.62, + "end": 147.84, + "probability": 0.99755859375 + }, + { + "word": " wish", + "start": 147.84, + "end": 148.02, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 148.02, + "end": 148.1, + "probability": 0.99951171875 + }, + { + "word": " didn't", + "start": 148.1, + "end": 148.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 148.28, + "end": 148.38, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 148.38, + "end": 148.48, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 148.48, + "end": 148.6, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 148.6, + "end": 148.76, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 148.76, + "end": 148.98, + "probability": 0.984375 + } + ] + }, + { + "id": 81, + "text": "Which would be Pizza Hut.", + "start": 149.26, + "end": 150.46, + "words": [ + { + "word": " Which", + "start": 149.26, + "end": 149.66, + "probability": 0.8447265625 + }, + { + "word": " would", + "start": 149.66, + "end": 149.76, + "probability": 0.9931640625 + }, + { + "word": " be", + "start": 149.76, + "end": 149.88, + "probability": 0.9990234375 + }, + { + "word": " Pizza", + "start": 149.88, + "end": 150.28, + "probability": 0.99365234375 + }, + { + "word": " Hut.", + "start": 150.28, + "end": 150.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 82, + "text": "It's just dumb.", + "start": 152.58, + "end": 153.36, + "words": [ + { + "word": " It's", + "start": 152.58, + "end": 152.98, + "probability": 0.94921875 + }, + { + "word": " just", + "start": 152.98, + "end": 153.08, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 153.08, + "end": 153.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 83, + "text": "Yeah.", + "start": 153.6, + "end": 153.92, + "words": [ + { + "word": " Yeah.", + "start": 153.6, + "end": 153.92, + "probability": 0.96826171875 + } + ] + }, + { + "id": 84, + "text": "You know, a lot of times I feel that you're almost like a little bit curmudgeon-y with", + "start": 154.0, + "end": 158.4, + "words": [ + { + "word": " You", + "start": 154.0, + "end": 154.32, + "probability": 0.93603515625 + }, + { + "word": " know,", + "start": 154.32, + "end": 154.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 154.48, + "end": 154.88, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 154.88, + "end": 155.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 155.08, + "end": 155.14, + "probability": 1.0 + }, + { + "word": " times", + "start": 155.14, + "end": 155.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 155.38, + "end": 155.72, + "probability": 0.9375 + }, + { + "word": " feel", + "start": 155.72, + "end": 156.2, + "probability": 0.98876953125 + }, + { + "word": " that", + "start": 156.2, + "end": 156.4, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 156.4, + "end": 156.6, + "probability": 1.0 + }, + { + "word": " almost", + "start": 156.6, + "end": 157.1, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 157.1, + "end": 157.3, + "probability": 0.9619140625 + }, + { + "word": " a", + "start": 157.3, + "end": 157.4, + "probability": 1.0 + }, + { + "word": " little", + "start": 157.4, + "end": 157.5, + "probability": 1.0 + }, + { + "word": " bit", + "start": 157.5, + "end": 157.64, + "probability": 1.0 + }, + { + "word": " curmudgeon", + "start": 157.64, + "end": 158.1, + "probability": 0.82861328125 + }, + { + "word": "-y", + "start": 158.1, + "end": 158.2, + "probability": 0.9951171875 + }, + { + "word": " with", + "start": 158.2, + "end": 158.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 85, + "text": "some of the stuff that we talk about.", + "start": 158.4, + "end": 159.84, + "words": [ + { + "word": " some", + "start": 158.4, + "end": 158.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 158.54, + "end": 158.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 158.66, + "end": 158.7, + "probability": 0.98486328125 + }, + { + "word": " stuff", + "start": 158.7, + "end": 159.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 159.12, + "end": 159.32, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 159.32, + "end": 159.4, + "probability": 1.0 + }, + { + "word": " talk", + "start": 159.4, + "end": 159.54, + "probability": 1.0 + }, + { + "word": " about.", + "start": 159.54, + "end": 159.84, + "probability": 1.0 + } + ] + }, + { + "id": 86, + "text": "Right.", + "start": 160.04, + "end": 160.34, + "words": [ + { + "word": " Right.", + "start": 160.04, + "end": 160.34, + "probability": 0.89453125 + } + ] + }, + { + "id": 87, + "text": "But in this case, I'm with you.", + "start": 160.4, + "end": 161.54, + "words": [ + { + "word": " But", + "start": 160.4, + "end": 160.52, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 160.52, + "end": 160.62, + "probability": 0.9970703125 + }, + { + "word": " this", + "start": 160.62, + "end": 160.76, + "probability": 1.0 + }, + { + "word": " case,", + "start": 160.76, + "end": 161.02, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 161.06, + "end": 161.24, + "probability": 1.0 + }, + { + "word": " with", + "start": 161.24, + "end": 161.4, + "probability": 1.0 + }, + { + "word": " you.", + "start": 161.4, + "end": 161.54, + "probability": 0.99560546875 + } + ] + }, + { + "id": 88, + "text": "This is dumb.", + "start": 161.72, + "end": 162.5, + "words": [ + { + "word": " This", + "start": 161.72, + "end": 162.12, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 162.12, + "end": 162.28, + "probability": 1.0 + }, + { + "word": " dumb.", + "start": 162.28, + "end": 162.5, + "probability": 1.0 + } + ] + }, + { + "id": 89, + "text": "So Pizza Hut has some shoes that you can buy.", + "start": 163.07999999999998, + "end": 165.34, + "words": [ + { + "word": " So", + "start": 163.07999999999998, + "end": 163.48, + "probability": 0.99853515625 + }, + { + "word": " Pizza", + "start": 163.48, + "end": 163.88, + "probability": 0.8310546875 + }, + { + "word": " Hut", + "start": 163.88, + "end": 164.04, + "probability": 1.0 + }, + { + "word": " has", + "start": 164.04, + "end": 164.22, + "probability": 1.0 + }, + { + "word": " some", + "start": 164.22, + "end": 164.5, + "probability": 1.0 + }, + { + "word": " shoes", + "start": 164.5, + "end": 164.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 164.78, + "end": 164.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 164.96, + "end": 165.02, + "probability": 1.0 + }, + { + "word": " can", + "start": 165.02, + "end": 165.14, + "probability": 1.0 + }, + { + "word": " buy.", + "start": 165.14, + "end": 165.34, + "probability": 1.0 + } + ] + }, + { + "id": 90, + "text": "They are sort of retro-looking shoes.", + "start": 165.88, + "end": 168.28, + "words": [ + { + "word": " They", + "start": 165.88, + "end": 166.28, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 166.28, + "end": 166.56, + "probability": 1.0 + }, + { + "word": " sort", + "start": 166.56, + "end": 167.18, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 167.18, + "end": 167.32, + "probability": 1.0 + }, + { + "word": " retro", + "start": 167.32, + "end": 167.66, + "probability": 1.0 + }, + { + "word": "-looking", + "start": 167.66, + "end": 168.0, + "probability": 0.82568359375 + }, + { + "word": " shoes.", + "start": 168.0, + "end": 168.28, + "probability": 1.0 + } + ] + }, + { + "id": 91, + "text": "They're high-tops, but they call them pie-tops.", + "start": 168.56, + "end": 171.8, + "words": [ + { + "word": " They're", + "start": 168.56, + "end": 168.92, + "probability": 0.99951171875 + }, + { + "word": " high", + "start": 168.92, + "end": 170.12, + "probability": 0.99560546875 + }, + { + "word": "-tops,", + "start": 170.12, + "end": 170.4, + "probability": 0.82666015625 + }, + { + "word": " but", + "start": 170.42, + "end": 170.54, + "probability": 1.0 + }, + { + "word": " they", + "start": 170.54, + "end": 170.66, + "probability": 1.0 + }, + { + "word": " call", + "start": 170.66, + "end": 170.82, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 170.82, + "end": 171.06, + "probability": 1.0 + }, + { + "word": " pie", + "start": 171.06, + "end": 171.44, + "probability": 0.927734375 + }, + { + "word": "-tops.", + "start": 171.44, + "end": 171.8, + "probability": 0.99560546875 + } + ] + }, + { + "id": 92, + "text": "And there's a button in the tongue of the shoe that allows you to order.", + "start": 173.45999999999998, + "end": 176.52, + "words": [ + { + "word": " And", + "start": 173.45999999999998, + "end": 173.85999999999999, + "probability": 0.99755859375 + }, + { + "word": " there's", + "start": 173.85999999999999, + "end": 174.26, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 174.26, + "end": 174.3, + "probability": 1.0 + }, + { + "word": " button", + "start": 174.3, + "end": 174.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 174.58, + "end": 174.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 174.84, + "end": 174.96, + "probability": 1.0 + }, + { + "word": " tongue", + "start": 174.96, + "end": 175.18, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 175.18, + "end": 175.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 175.3, + "end": 175.38, + "probability": 1.0 + }, + { + "word": " shoe", + "start": 175.38, + "end": 175.58, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 175.58, + "end": 175.8, + "probability": 0.99853515625 + }, + { + "word": " allows", + "start": 175.8, + "end": 175.98, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 175.98, + "end": 176.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 176.2, + "end": 176.28, + "probability": 1.0 + }, + { + "word": " order.", + "start": 176.28, + "end": 176.52, + "probability": 0.93017578125 + } + ] + }, + { + "id": 93, + "text": "You can order a large pizza.", + "start": 176.52, + "end": 177.16, + "words": [ + { + "word": " You", + "start": 176.52, + "end": 176.62, + "probability": 0.0117034912109375 + }, + { + "word": " can", + "start": 176.62, + "end": 176.62, + "probability": 0.436279296875 + }, + { + "word": " order", + "start": 176.62, + "end": 176.62, + "probability": 0.29541015625 + }, + { + "word": " a", + "start": 176.62, + "end": 176.66, + "probability": 0.9990234375 + }, + { + "word": " large", + "start": 176.66, + "end": 176.86, + "probability": 0.99853515625 + }, + { + "word": " pizza.", + "start": 176.86, + "end": 177.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 94, + "text": "It's effectively an Amazon Dash button built into shoes.", + "start": 178.06, + "end": 181.96, + "words": [ + { + "word": " It's", + "start": 178.06, + "end": 178.5, + "probability": 0.99951171875 + }, + { + "word": " effectively", + "start": 178.5, + "end": 178.94, + "probability": 0.99658203125 + }, + { + "word": " an", + "start": 178.94, + "end": 179.38, + "probability": 0.99951171875 + }, + { + "word": " Amazon", + "start": 179.38, + "end": 179.68, + "probability": 0.99951171875 + }, + { + "word": " Dash", + "start": 179.68, + "end": 180.22, + "probability": 0.83544921875 + }, + { + "word": " button", + "start": 180.22, + "end": 180.54, + "probability": 0.90283203125 + }, + { + "word": " built", + "start": 180.54, + "end": 181.46, + "probability": 0.9970703125 + }, + { + "word": " into", + "start": 181.46, + "end": 181.68, + "probability": 1.0 + }, + { + "word": " shoes.", + "start": 181.68, + "end": 181.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 95, + "text": "And it's not even the coolest use of an Amazon Dash button that we've talked about recently.", + "start": 182.44, + "end": 187.56, + "words": [ + { + "word": " And", + "start": 182.44, + "end": 182.88, + "probability": 0.97900390625 + }, + { + "word": " it's", + "start": 182.88, + "end": 183.04, + "probability": 0.9931640625 + }, + { + "word": " not", + "start": 183.04, + "end": 183.16, + "probability": 1.0 + }, + { + "word": " even", + "start": 183.16, + "end": 183.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 183.38, + "end": 183.56, + "probability": 0.77880859375 + }, + { + "word": " coolest", + "start": 183.56, + "end": 184.14, + "probability": 0.8662109375 + }, + { + "word": " use", + "start": 184.14, + "end": 185.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 185.44, + "end": 185.64, + "probability": 1.0 + }, + { + "word": " an", + "start": 185.64, + "end": 185.74, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 185.74, + "end": 186.02, + "probability": 1.0 + }, + { + "word": " Dash", + "start": 186.02, + "end": 186.34, + "probability": 1.0 + }, + { + "word": " button", + "start": 186.34, + "end": 186.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 186.56, + "end": 186.72, + "probability": 0.99951171875 + }, + { + "word": " we've", + "start": 186.72, + "end": 186.86, + "probability": 1.0 + }, + { + "word": " talked", + "start": 186.86, + "end": 187.02, + "probability": 1.0 + }, + { + "word": " about", + "start": 187.02, + "end": 187.26, + "probability": 1.0 + }, + { + "word": " recently.", + "start": 187.26, + "end": 187.56, + "probability": 1.0 + } + ] + }, + { + "id": 96, + "text": "No.", + "start": 188.04, + "end": 188.48, + "words": [ + { + "word": " No.", + "start": 188.04, + "end": 188.48, + "probability": 0.98828125 + } + ] + }, + { + "id": 97, + "text": "Even the donating to, what was it?", + "start": 188.68, + "end": 191.26, + "words": [ + { + "word": " Even", + "start": 188.68, + "end": 188.86, + "probability": 0.83935546875 + }, + { + "word": " the", + "start": 188.86, + "end": 189.14, + "probability": 1.0 + }, + { + "word": " donating", + "start": 189.14, + "end": 190.2, + "probability": 1.0 + }, + { + "word": " to,", + "start": 190.2, + "end": 190.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 190.62, + "end": 190.96, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 190.96, + "end": 191.12, + "probability": 1.0 + }, + { + "word": " it?", + "start": 191.12, + "end": 191.26, + "probability": 1.0 + } + ] + }, + { + "id": 98, + "text": "The swear jar?", + "start": 192.48000000000002, + "end": 193.58, + "words": [ + { + "word": " The", + "start": 192.48000000000002, + "end": 192.92000000000002, + "probability": 1.0 + }, + { + "word": " swear", + "start": 192.92000000000002, + "end": 193.36, + "probability": 0.72265625 + }, + { + "word": " jar?", + "start": 193.36, + "end": 193.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 99, + "text": "Yeah, the swear jar.", + "start": 193.78, + "end": 194.74, + "words": [ + { + "word": " Yeah,", + "start": 193.78, + "end": 193.96, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 193.98, + "end": 194.1, + "probability": 0.81298828125 + }, + { + "word": " swear", + "start": 194.1, + "end": 194.44, + "probability": 1.0 + }, + { + "word": " jar.", + "start": 194.44, + "end": 194.74, + "probability": 1.0 + } + ] + }, + { + "id": 100, + "text": "Even that was better than this.", + "start": 194.82, + "end": 196.9, + "words": [ + { + "word": " Even", + "start": 194.82, + "end": 194.98, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 194.98, + "end": 195.12, + "probability": 1.0 + }, + { + "word": " was", + "start": 195.12, + "end": 195.28, + "probability": 1.0 + }, + { + "word": " better", + "start": 195.28, + "end": 195.54, + "probability": 1.0 + }, + { + "word": " than", + "start": 195.54, + "end": 195.84, + "probability": 1.0 + }, + { + "word": " this.", + "start": 195.84, + "end": 196.9, + "probability": 1.0 + } + ] + }, + { + "id": 101, + "text": "Yeah, you press a button and pizza gets ordered.", + "start": 197.24, + "end": 199.58, + "words": [ + { + "word": " Yeah,", + "start": 197.24, + "end": 197.68, + "probability": 0.92236328125 + }, + { + "word": " you", + "start": 197.76, + "end": 197.8, + "probability": 1.0 + }, + { + "word": " press", + "start": 197.8, + "end": 198.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 198.0, + "end": 198.12, + "probability": 0.99853515625 + }, + { + "word": " button", + "start": 198.12, + "end": 198.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 198.32, + "end": 198.56, + "probability": 0.83984375 + }, + { + "word": " pizza", + "start": 198.56, + "end": 198.98, + "probability": 0.9990234375 + }, + { + "word": " gets", + "start": 198.98, + "end": 199.24, + "probability": 1.0 + }, + { + "word": " ordered.", + "start": 199.24, + "end": 199.58, + "probability": 1.0 + } + ] + }, + { + "id": 102, + "text": "My question, though, is that if you're in a place long enough for a pizza to be delivered to you,", + "start": 199.98, + "end": 204.72, + "words": [ + { + "word": " My", + "start": 199.98, + "end": 200.42, + "probability": 1.0 + }, + { + "word": " question,", + "start": 200.42, + "end": 200.72, + "probability": 1.0 + }, + { + "word": " though,", + "start": 200.76, + "end": 200.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 200.92, + "end": 201.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 201.04, + "end": 201.16, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 201.16, + "end": 201.38, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 201.38, + "end": 201.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 201.64, + "end": 202.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 202.2, + "end": 202.3, + "probability": 1.0 + }, + { + "word": " place", + "start": 202.3, + "end": 202.54, + "probability": 1.0 + }, + { + "word": " long", + "start": 202.54, + "end": 202.94, + "probability": 1.0 + }, + { + "word": " enough", + "start": 202.94, + "end": 203.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 203.18, + "end": 203.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 203.36, + "end": 203.42, + "probability": 1.0 + }, + { + "word": " pizza", + "start": 203.42, + "end": 203.62, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 203.62, + "end": 203.86, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 203.86, + "end": 204.16, + "probability": 1.0 + }, + { + "word": " delivered", + "start": 204.16, + "end": 204.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 204.38, + "end": 204.58, + "probability": 1.0 + }, + { + "word": " you,", + "start": 204.58, + "end": 204.72, + "probability": 1.0 + } + ] + }, + { + "id": 103, + "text": "why are you wearing these absurd shoes?", + "start": 204.78, + "end": 206.24, + "words": [ + { + "word": " why", + "start": 204.78, + "end": 205.02, + "probability": 0.7998046875 + }, + { + "word": " are", + "start": 205.02, + "end": 205.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 205.18, + "end": 205.3, + "probability": 1.0 + }, + { + "word": " wearing", + "start": 205.3, + "end": 205.5, + "probability": 1.0 + }, + { + "word": " these", + "start": 205.5, + "end": 205.7, + "probability": 1.0 + }, + { + "word": " absurd", + "start": 205.7, + "end": 205.94, + "probability": 1.0 + }, + { + "word": " shoes?", + "start": 205.94, + "end": 206.24, + "probability": 1.0 + } + ] + }, + { + "id": 104, + "text": "Yeah, they're kind of dumb-looking.", + "start": 206.52, + "end": 208.46, + "words": [ + { + "word": " Yeah,", + "start": 206.52, + "end": 207.0, + "probability": 0.89453125 + }, + { + "word": " they're", + "start": 207.04, + "end": 207.18, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 207.18, + "end": 207.32, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 207.32, + "end": 207.48, + "probability": 1.0 + }, + { + "word": " dumb", + "start": 207.48, + "end": 208.1, + "probability": 0.94921875 + }, + { + "word": "-looking.", + "start": 208.1, + "end": 208.46, + "probability": 0.611328125 + } + ] + }, + { + "id": 105, + "text": "Yeah.", + "start": 209.54, + "end": 209.94, + "words": [ + { + "word": " Yeah.", + "start": 209.54, + "end": 209.94, + "probability": 0.44140625 + } + ] + }, + { + "id": 106, + "text": "It's so dumb!", + "start": 210.14, + "end": 211.22, + "words": [ + { + "word": " It's", + "start": 210.14, + "end": 210.52, + "probability": 0.9677734375 + }, + { + "word": " so", + "start": 210.52, + "end": 210.62, + "probability": 0.99951171875 + }, + { + "word": " dumb!", + "start": 210.62, + "end": 211.22, + "probability": 1.0 + } + ] + }, + { + "id": 107, + "text": "You could really mess with your friend who has these by just, like, punching him in the tongue of his shoe.", + "start": 212.1, + "end": 216.06, + "words": [ + { + "word": " You", + "start": 212.1, + "end": 212.5, + "probability": 0.9951171875 + }, + { + "word": " could", + "start": 212.5, + "end": 212.6, + "probability": 1.0 + }, + { + "word": " really", + "start": 212.6, + "end": 212.82, + "probability": 1.0 + }, + { + "word": " mess", + "start": 212.82, + "end": 213.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 213.06, + "end": 213.24, + "probability": 1.0 + }, + { + "word": " your", + "start": 213.24, + "end": 213.38, + "probability": 1.0 + }, + { + "word": " friend", + "start": 213.38, + "end": 213.6, + "probability": 1.0 + }, + { + "word": " who", + "start": 213.6, + "end": 213.72, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 213.72, + "end": 213.9, + "probability": 1.0 + }, + { + "word": " these", + "start": 213.9, + "end": 214.16, + "probability": 1.0 + }, + { + "word": " by", + "start": 214.16, + "end": 214.34, + "probability": 0.99755859375 + }, + { + "word": " just,", + "start": 214.34, + "end": 214.5, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 214.54, + "end": 214.68, + "probability": 1.0 + }, + { + "word": " punching", + "start": 214.7, + "end": 214.94, + "probability": 0.99951171875 + }, + { + "word": " him", + "start": 214.94, + "end": 215.12, + "probability": 0.97802734375 + }, + { + "word": " in", + "start": 215.12, + "end": 215.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 215.22, + "end": 215.3, + "probability": 1.0 + }, + { + "word": " tongue", + "start": 215.3, + "end": 215.64, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 215.64, + "end": 215.76, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 215.76, + "end": 215.86, + "probability": 0.96875 + }, + { + "word": " shoe.", + "start": 215.86, + "end": 216.06, + "probability": 1.0 + } + ] + }, + { + "id": 108, + "text": "Yeah, they said that there's some type of, uh, you won't accidentally order pizza.", + "start": 216.6, + "end": 220.96, + "words": [ + { + "word": " Yeah,", + "start": 216.6, + "end": 217.0, + "probability": 0.85400390625 + }, + { + "word": " they", + "start": 217.04, + "end": 217.2, + "probability": 1.0 + }, + { + "word": " said", + "start": 217.2, + "end": 217.4, + "probability": 0.9892578125 + }, + { + "word": " that", + "start": 217.4, + "end": 217.52, + "probability": 1.0 + }, + { + "word": " there's", + "start": 217.52, + "end": 217.72, + "probability": 1.0 + }, + { + "word": " some", + "start": 217.72, + "end": 217.84, + "probability": 1.0 + }, + { + "word": " type", + "start": 217.84, + "end": 218.04, + "probability": 0.80615234375 + }, + { + "word": " of,", + "start": 218.04, + "end": 218.36, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 218.46, + "end": 218.68, + "probability": 0.64990234375 + }, + { + "word": " you", + "start": 218.74, + "end": 218.98, + "probability": 0.99951171875 + }, + { + "word": " won't", + "start": 218.98, + "end": 219.26, + "probability": 0.7421875 + }, + { + "word": " accidentally", + "start": 219.26, + "end": 219.62, + "probability": 0.9990234375 + }, + { + "word": " order", + "start": 219.62, + "end": 220.06, + "probability": 1.0 + }, + { + "word": " pizza.", + "start": 220.06, + "end": 220.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 109, + "text": "They've got some sort of security built in.", + "start": 222.06, + "end": 223.88, + "words": [ + { + "word": " They've", + "start": 222.06, + "end": 222.46, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 222.46, + "end": 222.58, + "probability": 1.0 + }, + { + "word": " some", + "start": 222.58, + "end": 222.74, + "probability": 1.0 + }, + { + "word": " sort", + "start": 222.74, + "end": 222.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 222.92, + "end": 223.02, + "probability": 1.0 + }, + { + "word": " security", + "start": 223.02, + "end": 223.26, + "probability": 1.0 + }, + { + "word": " built", + "start": 223.26, + "end": 223.64, + "probability": 1.0 + }, + { + "word": " in.", + "start": 223.64, + "end": 223.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 110, + "text": "I can't think of a situation in which I will need enough pizza that it'll justify.", + "start": 224.06, + "end": 228.2, + "words": [ + { + "word": " I", + "start": 224.06, + "end": 224.42, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 224.42, + "end": 224.68, + "probability": 1.0 + }, + { + "word": " think", + "start": 224.68, + "end": 224.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 224.82, + "end": 224.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 224.92, + "end": 225.0, + "probability": 1.0 + }, + { + "word": " situation", + "start": 225.0, + "end": 225.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 225.4, + "end": 225.66, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 225.66, + "end": 225.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 225.78, + "end": 225.92, + "probability": 1.0 + }, + { + "word": " will", + "start": 225.92, + "end": 226.06, + "probability": 1.0 + }, + { + "word": " need", + "start": 226.06, + "end": 226.2, + "probability": 1.0 + }, + { + "word": " enough", + "start": 226.2, + "end": 226.44, + "probability": 1.0 + }, + { + "word": " pizza", + "start": 226.44, + "end": 226.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 226.76, + "end": 227.06, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 227.06, + "end": 227.74, + "probability": 0.81298828125 + }, + { + "word": " justify.", + "start": 227.74, + "end": 228.2, + "probability": 1.0 + } + ] + }, + { + "id": 111, + "text": "Yeah, I don't order pizza enough.", + "start": 228.48, + "end": 230.3, + "words": [ + { + "word": " Yeah,", + "start": 228.48, + "end": 228.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 228.74, + "end": 228.82, + "probability": 1.0 + }, + { + "word": " don't", + "start": 228.82, + "end": 229.02, + "probability": 1.0 + }, + { + "word": " order", + "start": 229.02, + "end": 229.26, + "probability": 1.0 + }, + { + "word": " pizza", + "start": 229.26, + "end": 229.56, + "probability": 0.9990234375 + }, + { + "word": " enough.", + "start": 229.56, + "end": 230.3, + "probability": 1.0 + } + ] + }, + { + "id": 112, + "text": "Right.", + "start": 230.72, + "end": 231.12, + "words": [ + { + "word": " Right.", + "start": 230.72, + "end": 231.12, + "probability": 0.93505859375 + } + ] + }, + { + "id": 113, + "text": "I would even have a Dash-style button.", + "start": 231.3, + "end": 234.98, + "words": [ + { + "word": " I", + "start": 231.3, + "end": 231.64, + "probability": 0.73046875 + }, + { + "word": " would", + "start": 231.64, + "end": 231.88, + "probability": 0.98681640625 + }, + { + "word": " even", + "start": 231.88, + "end": 232.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 232.0, + "end": 232.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 232.32, + "end": 232.74, + "probability": 1.0 + }, + { + "word": " Dash", + "start": 232.74, + "end": 234.18, + "probability": 0.280029296875 + }, + { + "word": "-style", + "start": 234.18, + "end": 234.54, + "probability": 0.9990234375 + }, + { + "word": " button.", + "start": 234.54, + "end": 234.98, + "probability": 1.0 + } + ] + }, + { + "id": 114, + "text": "I wouldn't.", + "start": 235.16, + "end": 235.66, + "words": [ + { + "word": " I", + "start": 235.16, + "end": 235.46, + "probability": 0.998046875 + }, + { + "word": " wouldn't.", + "start": 235.46, + "end": 235.66, + "probability": 0.5830078125 + } + ] + }, + { + "id": 115, + "text": "I don't know about even having a button.", + "start": 235.66, + "end": 236.5, + "words": [ + { + "word": " I", + "start": 235.66, + "end": 235.82, + "probability": 0.99658203125 + }, + { + "word": " don't", + "start": 235.82, + "end": 235.86, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 235.86, + "end": 235.94, + "probability": 0.88623046875 + }, + { + "word": " about", + "start": 235.94, + "end": 236.16, + "probability": 0.71044921875 + }, + { + "word": " even", + "start": 236.16, + "end": 236.34, + "probability": 0.9482421875 + }, + { + "word": " having", + "start": 236.34, + "end": 236.5, + "probability": 0.68212890625 + }, + { + "word": " a", + "start": 236.5, + "end": 236.5, + "probability": 0.352294921875 + }, + { + "word": " button.", + "start": 236.5, + "end": 236.5, + "probability": 0.423583984375 + } + ] + }, + { + "id": 116, + "text": "", + "start": 236.5, + "end": 236.5, + "words": [] + }, + { + "id": 117, + "text": "", + "start": 236.5, + "end": 236.5, + "words": [] + }, + { + "id": 118, + "text": "", + "start": 236.5, + "end": 236.5, + "words": [] + }, + { + "id": 119, + "text": "", + "start": 236.5, + "end": 236.5, + "words": [] + }, + { + "id": 120, + "text": "I would have to have the app on your phone, you know?", + "start": 236.52, + "end": 238.3, + "words": [ + { + "word": " I", + "start": 236.52, + "end": 236.52, + "probability": 0.05194091796875 + }, + { + "word": " would", + "start": 236.52, + "end": 236.52, + "probability": 0.0750732421875 + }, + { + "word": " have", + "start": 236.52, + "end": 236.52, + "probability": 0.09295654296875 + }, + { + "word": " to", + "start": 236.52, + "end": 236.52, + "probability": 0.22509765625 + }, + { + "word": " have", + "start": 236.52, + "end": 236.52, + "probability": 0.120361328125 + }, + { + "word": " the", + "start": 236.52, + "end": 236.6, + "probability": 0.34814453125 + }, + { + "word": " app", + "start": 236.6, + "end": 236.92, + "probability": 0.94873046875 + }, + { + "word": " on", + "start": 236.92, + "end": 237.34, + "probability": 0.99560546875 + }, + { + "word": " your", + "start": 237.34, + "end": 237.52, + "probability": 0.9912109375 + }, + { + "word": " phone,", + "start": 237.52, + "end": 237.8, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 237.92, + "end": 238.12, + "probability": 0.99755859375 + }, + { + "word": " know?", + "start": 238.12, + "end": 238.3, + "probability": 1.0 + } + ] + }, + { + "id": 121, + "text": "Right, and then beyond that, I don't order pizza enough to especially get a aforementioned Dash-style button", + "start": 238.44, + "end": 245.0, + "words": [ + { + "word": " Right,", + "start": 238.44, + "end": 238.84, + "probability": 0.97119140625 + }, + { + "word": " and", + "start": 238.88, + "end": 238.96, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 238.96, + "end": 239.08, + "probability": 0.9990234375 + }, + { + "word": " beyond", + "start": 239.08, + "end": 239.3, + "probability": 0.99658203125 + }, + { + "word": " that,", + "start": 239.3, + "end": 239.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 239.6, + "end": 239.72, + "probability": 1.0 + }, + { + "word": " don't", + "start": 239.72, + "end": 239.96, + "probability": 1.0 + }, + { + "word": " order", + "start": 239.96, + "end": 240.1, + "probability": 0.99951171875 + }, + { + "word": " pizza", + "start": 240.1, + "end": 240.36, + "probability": 0.98876953125 + }, + { + "word": " enough", + "start": 240.36, + "end": 240.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 240.58, + "end": 240.82, + "probability": 0.99951171875 + }, + { + "word": " especially", + "start": 240.82, + "end": 241.7, + "probability": 0.96240234375 + }, + { + "word": " get", + "start": 241.7, + "end": 242.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 242.84, + "end": 243.36, + "probability": 0.78564453125 + }, + { + "word": " aforementioned", + "start": 243.36, + "end": 244.08, + "probability": 0.90625 + }, + { + "word": " Dash", + "start": 244.08, + "end": 244.42, + "probability": 0.5078125 + }, + { + "word": "-style", + "start": 244.42, + "end": 244.7, + "probability": 0.45703125 + }, + { + "word": " button", + "start": 244.7, + "end": 245.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 122, + "text": "built into a pair of relatively ugly tennis shoes.", + "start": 245.46, + "end": 248.74, + "words": [ + { + "word": " built", + "start": 245.46, + "end": 245.86, + "probability": 0.9990234375 + }, + { + "word": " into", + "start": 245.86, + "end": 246.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 246.2, + "end": 246.48, + "probability": 1.0 + }, + { + "word": " pair", + "start": 246.48, + "end": 246.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 246.76, + "end": 247.06, + "probability": 1.0 + }, + { + "word": " relatively", + "start": 247.06, + "end": 247.74, + "probability": 0.99951171875 + }, + { + "word": " ugly", + "start": 247.74, + "end": 248.18, + "probability": 1.0 + }, + { + "word": " tennis", + "start": 248.18, + "end": 248.5, + "probability": 0.99951171875 + }, + { + "word": " shoes.", + "start": 248.5, + "end": 248.74, + "probability": 1.0 + } + ] + }, + { + "id": 123, + "text": "Not to mention that you've got to think about the back end here.", + "start": 248.96, + "end": 250.7, + "words": [ + { + "word": " Not", + "start": 248.96, + "end": 249.14, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 249.14, + "end": 249.26, + "probability": 1.0 + }, + { + "word": " mention", + "start": 249.26, + "end": 249.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 249.46, + "end": 249.58, + "probability": 0.9990234375 + }, + { + "word": " you've", + "start": 249.58, + "end": 249.68, + "probability": 0.9404296875 + }, + { + "word": " got", + "start": 249.68, + "end": 249.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 249.76, + "end": 249.76, + "probability": 1.0 + }, + { + "word": " think", + "start": 249.76, + "end": 249.92, + "probability": 1.0 + }, + { + "word": " about", + "start": 249.92, + "end": 250.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 250.02, + "end": 250.14, + "probability": 1.0 + }, + { + "word": " back", + "start": 250.14, + "end": 250.34, + "probability": 0.99658203125 + }, + { + "word": " end", + "start": 250.34, + "end": 250.52, + "probability": 0.98486328125 + }, + { + "word": " here.", + "start": 250.52, + "end": 250.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 124, + "text": "So this means that not only do you order pizza enough to have these shoes,", + "start": 250.82, + "end": 253.54, + "words": [ + { + "word": " So", + "start": 250.82, + "end": 250.94, + "probability": 0.99365234375 + }, + { + "word": " this", + "start": 250.94, + "end": 251.12, + "probability": 0.9228515625 + }, + { + "word": " means", + "start": 251.12, + "end": 251.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 251.34, + "end": 251.56, + "probability": 1.0 + }, + { + "word": " not", + "start": 251.56, + "end": 251.74, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 251.74, + "end": 251.94, + "probability": 1.0 + }, + { + "word": " do", + "start": 251.94, + "end": 252.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 252.08, + "end": 252.18, + "probability": 1.0 + }, + { + "word": " order", + "start": 252.18, + "end": 252.34, + "probability": 1.0 + }, + { + "word": " pizza", + "start": 252.34, + "end": 252.6, + "probability": 1.0 + }, + { + "word": " enough", + "start": 252.6, + "end": 252.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 252.8, + "end": 252.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 252.96, + "end": 253.1, + "probability": 1.0 + }, + { + "word": " these", + "start": 253.1, + "end": 253.28, + "probability": 1.0 + }, + { + "word": " shoes,", + "start": 253.28, + "end": 253.54, + "probability": 1.0 + } + ] + }, + { + "id": 125, + "text": "but, like, you have a pre-defined order that you like enough to have stored.", + "start": 253.7, + "end": 258.68, + "words": [ + { + "word": " but,", + "start": 253.7, + "end": 254.1, + "probability": 1.0 + }, + { + "word": " like,", + "start": 254.16, + "end": 254.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 254.28, + "end": 254.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 254.36, + "end": 254.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 254.54, + "end": 254.74, + "probability": 1.0 + }, + { + "word": " pre", + "start": 254.74, + "end": 255.24, + "probability": 1.0 + }, + { + "word": "-defined", + "start": 255.24, + "end": 255.86, + "probability": 0.68115234375 + }, + { + "word": " order", + "start": 255.86, + "end": 256.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 256.32, + "end": 257.18, + "probability": 0.919921875 + }, + { + "word": " you", + "start": 257.18, + "end": 257.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 257.44, + "end": 257.7, + "probability": 1.0 + }, + { + "word": " enough", + "start": 257.7, + "end": 257.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 257.96, + "end": 258.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 258.16, + "end": 258.3, + "probability": 1.0 + }, + { + "word": " stored.", + "start": 258.3, + "end": 258.68, + "probability": 1.0 + } + ] + }, + { + "id": 126, + "text": "What if you get tired of whatever type of pizza you're having?", + "start": 259.64000000000004, + "end": 261.92, + "words": [ + { + "word": " What", + "start": 259.64000000000004, + "end": 260.04, + "probability": 0.9892578125 + }, + { + "word": " if", + "start": 260.04, + "end": 260.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 260.16, + "end": 260.22, + "probability": 1.0 + }, + { + "word": " get", + "start": 260.22, + "end": 260.34, + "probability": 1.0 + }, + { + "word": " tired", + "start": 260.34, + "end": 260.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 260.6, + "end": 260.76, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 260.76, + "end": 260.94, + "probability": 1.0 + }, + { + "word": " type", + "start": 260.94, + "end": 261.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 261.26, + "end": 261.4, + "probability": 1.0 + }, + { + "word": " pizza", + "start": 261.4, + "end": 261.58, + "probability": 1.0 + }, + { + "word": " you're", + "start": 261.58, + "end": 261.72, + "probability": 1.0 + }, + { + "word": " having?", + "start": 261.72, + "end": 261.92, + "probability": 1.0 + } + ] + }, + { + "id": 127, + "text": "Well, I think the only way that I would get one of these is if I could program it.", + "start": 262.48, + "end": 266.44, + "words": [ + { + "word": " Well,", + "start": 262.48, + "end": 262.88, + "probability": 0.974609375 + }, + { + "word": " I", + "start": 262.9, + "end": 263.08, + "probability": 1.0 + }, + { + "word": " think", + "start": 263.08, + "end": 263.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 263.32, + "end": 263.42, + "probability": 1.0 + }, + { + "word": " only", + "start": 263.42, + "end": 263.54, + "probability": 1.0 + }, + { + "word": " way", + "start": 263.54, + "end": 263.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 263.74, + "end": 263.88, + "probability": 1.0 + }, + { + "word": " I", + "start": 263.88, + "end": 263.96, + "probability": 1.0 + }, + { + "word": " would", + "start": 263.96, + "end": 264.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 264.18, + "end": 264.9, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 264.9, + "end": 265.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 265.06, + "end": 265.18, + "probability": 1.0 + }, + { + "word": " these", + "start": 265.18, + "end": 265.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 265.34, + "end": 265.54, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 265.54, + "end": 265.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 265.7, + "end": 265.78, + "probability": 1.0 + }, + { + "word": " could", + "start": 265.78, + "end": 265.92, + "probability": 1.0 + }, + { + "word": " program", + "start": 265.92, + "end": 266.28, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 266.28, + "end": 266.44, + "probability": 0.4892578125 + } + ] + }, + { + "id": 128, + "text": "I think that's a good way to order from Brooklyn's.", + "start": 266.52, + "end": 267.82, + "words": [ + { + "word": " I", + "start": 266.52, + "end": 266.52, + "probability": 0.00540924072265625 + }, + { + "word": " think", + "start": 266.52, + "end": 266.52, + "probability": 0.0955810546875 + }, + { + "word": " that's", + "start": 266.52, + "end": 266.52, + "probability": 0.52734375 + }, + { + "word": " a", + "start": 266.52, + "end": 266.52, + "probability": 0.1982421875 + }, + { + "word": " good", + "start": 266.52, + "end": 266.52, + "probability": 0.7216796875 + }, + { + "word": " way", + "start": 266.52, + "end": 266.52, + "probability": 0.083984375 + }, + { + "word": " to", + "start": 266.52, + "end": 266.52, + "probability": 0.98583984375 + }, + { + "word": " order", + "start": 266.52, + "end": 266.74, + "probability": 0.8603515625 + }, + { + "word": " from", + "start": 266.74, + "end": 267.08, + "probability": 0.99755859375 + }, + { + "word": " Brooklyn's.", + "start": 267.08, + "end": 267.82, + "probability": 0.9365234375 + } + ] + }, + { + "id": 129, + "text": "Yeah, I could.", + "start": 268.46, + "end": 269.06, + "words": [ + { + "word": " Yeah,", + "start": 268.46, + "end": 268.9, + "probability": 0.52978515625 + }, + { + "word": " I", + "start": 269.0, + "end": 269.06, + "probability": 0.95849609375 + }, + { + "word": " could.", + "start": 269.06, + "end": 269.06, + "probability": 0.74365234375 + } + ] + }, + { + "id": 130, + "text": "Because Brooklyn's pizza is worth ordering from.", + "start": 269.06, + "end": 270.94, + "words": [ + { + "word": " Because", + "start": 269.06, + "end": 269.26, + "probability": 0.9775390625 + }, + { + "word": " Brooklyn's", + "start": 269.26, + "end": 269.6, + "probability": 1.0 + }, + { + "word": " pizza", + "start": 269.6, + "end": 269.84, + "probability": 0.91650390625 + }, + { + "word": " is", + "start": 269.84, + "end": 270.08, + "probability": 1.0 + }, + { + "word": " worth", + "start": 270.08, + "end": 270.3, + "probability": 1.0 + }, + { + "word": " ordering", + "start": 270.3, + "end": 270.64, + "probability": 1.0 + }, + { + "word": " from.", + "start": 270.64, + "end": 270.94, + "probability": 1.0 + } + ] + }, + { + "id": 131, + "text": "No, it's still not often enough, though.", + "start": 271.24, + "end": 273.04, + "words": [ + { + "word": " No,", + "start": 271.24, + "end": 271.68, + "probability": 0.9755859375 + }, + { + "word": " it's", + "start": 271.7, + "end": 271.92, + "probability": 0.8466796875 + }, + { + "word": " still", + "start": 271.92, + "end": 272.06, + "probability": 1.0 + }, + { + "word": " not", + "start": 272.06, + "end": 272.24, + "probability": 1.0 + }, + { + "word": " often", + "start": 272.24, + "end": 272.54, + "probability": 0.99609375 + }, + { + "word": " enough,", + "start": 272.54, + "end": 272.76, + "probability": 1.0 + }, + { + "word": " though.", + "start": 272.86, + "end": 273.04, + "probability": 1.0 + } + ] + }, + { + "id": 132, + "text": "No, that's true.", + "start": 273.46, + "end": 274.04, + "words": [ + { + "word": " No,", + "start": 273.46, + "end": 273.9, + "probability": 0.98828125 + }, + { + "word": " that's", + "start": 273.92, + "end": 274.04, + "probability": 0.94970703125 + }, + { + "word": " true.", + "start": 274.04, + "end": 274.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 133, + "text": "I can't think of anything that I need so often that I would want it built into my shoe.", + "start": 274.04, + "end": 279.46, + "words": [ + { + "word": " I", + "start": 274.04, + "end": 274.12, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 274.12, + "end": 274.28, + "probability": 1.0 + }, + { + "word": " think", + "start": 274.28, + "end": 274.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 274.48, + "end": 274.58, + "probability": 1.0 + }, + { + "word": " anything", + "start": 274.58, + "end": 274.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 274.9, + "end": 275.8, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 275.8, + "end": 275.92, + "probability": 1.0 + }, + { + "word": " need", + "start": 275.92, + "end": 276.16, + "probability": 1.0 + }, + { + "word": " so", + "start": 276.16, + "end": 276.4, + "probability": 1.0 + }, + { + "word": " often", + "start": 276.4, + "end": 276.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 276.84, + "end": 277.86, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 277.86, + "end": 278.14, + "probability": 1.0 + }, + { + "word": " would", + "start": 278.14, + "end": 278.38, + "probability": 1.0 + }, + { + "word": " want", + "start": 278.38, + "end": 278.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 278.62, + "end": 278.76, + "probability": 1.0 + }, + { + "word": " built", + "start": 278.76, + "end": 278.94, + "probability": 1.0 + }, + { + "word": " into", + "start": 278.94, + "end": 279.12, + "probability": 1.0 + }, + { + "word": " my", + "start": 279.12, + "end": 279.26, + "probability": 1.0 + }, + { + "word": " shoe.", + "start": 279.26, + "end": 279.46, + "probability": 1.0 + } + ] + }, + { + "id": 134, + "text": "Yeah, the only problem with Brooklyn's, though, I mean, they've got amazing pizza", + "start": 279.68, + "end": 282.4, + "words": [ + { + "word": " Yeah,", + "start": 279.68, + "end": 280.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 280.08, + "end": 280.16, + "probability": 0.998046875 + }, + { + "word": " only", + "start": 280.16, + "end": 280.28, + "probability": 1.0 + }, + { + "word": " problem", + "start": 280.28, + "end": 280.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 280.54, + "end": 280.66, + "probability": 0.998046875 + }, + { + "word": " Brooklyn's,", + "start": 280.66, + "end": 281.08, + "probability": 1.0 + }, + { + "word": " though,", + "start": 281.08, + "end": 281.24, + "probability": 1.0 + }, + { + "word": " I", + "start": 281.3, + "end": 281.44, + "probability": 0.99365234375 + }, + { + "word": " mean,", + "start": 281.44, + "end": 281.62, + "probability": 1.0 + }, + { + "word": " they've", + "start": 281.62, + "end": 281.78, + "probability": 0.84130859375 + }, + { + "word": " got", + "start": 281.78, + "end": 281.8, + "probability": 1.0 + }, + { + "word": " amazing", + "start": 281.8, + "end": 282.02, + "probability": 0.99755859375 + }, + { + "word": " pizza", + "start": 282.02, + "end": 282.4, + "probability": 1.0 + } + ] + }, + { + "id": 135, + "text": "and the best garlic knots in town.", + "start": 282.4, + "end": 284.44, + "words": [ + { + "word": " and", + "start": 282.4, + "end": 283.06, + "probability": 0.67529296875 + }, + { + "word": " the", + "start": 283.06, + "end": 283.36, + "probability": 0.9921875 + }, + { + "word": " best", + "start": 283.36, + "end": 283.56, + "probability": 1.0 + }, + { + "word": " garlic", + "start": 283.56, + "end": 283.82, + "probability": 0.99755859375 + }, + { + "word": " knots", + "start": 283.82, + "end": 284.04, + "probability": 0.99462890625 + }, + { + "word": " in", + "start": 284.04, + "end": 284.2, + "probability": 1.0 + }, + { + "word": " town.", + "start": 284.2, + "end": 284.44, + "probability": 1.0 + } + ] + }, + { + "id": 136, + "text": "But the problem is I think they have a delivery radius of, like,", + "start": 284.54, + "end": 287.52, + "words": [ + { + "word": " But", + "start": 284.54, + "end": 284.92, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 284.92, + "end": 285.2, + "probability": 0.99365234375 + }, + { + "word": " problem", + "start": 285.2, + "end": 285.5, + "probability": 1.0 + }, + { + "word": " is", + "start": 285.5, + "end": 285.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 285.66, + "end": 285.88, + "probability": 0.41162109375 + }, + { + "word": " think", + "start": 285.88, + "end": 286.1, + "probability": 1.0 + }, + { + "word": " they", + "start": 286.1, + "end": 286.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 286.22, + "end": 286.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 286.32, + "end": 286.4, + "probability": 1.0 + }, + { + "word": " delivery", + "start": 286.4, + "end": 286.68, + "probability": 1.0 + }, + { + "word": " radius", + "start": 286.68, + "end": 287.02, + "probability": 0.96142578125 + }, + { + "word": " of,", + "start": 287.02, + "end": 287.3, + "probability": 1.0 + }, + { + "word": " like,", + "start": 287.34, + "end": 287.52, + "probability": 1.0 + } + ] + }, + { + "id": 137, + "text": "Two feet?", + "start": 287.54, + "end": 288.22, + "words": [ + { + "word": " Two", + "start": 287.54, + "end": 287.92, + "probability": 0.0738525390625 + }, + { + "word": " feet?", + "start": 287.92, + "end": 288.22, + "probability": 1.0 + } + ] + }, + { + "id": 138, + "text": "Yeah, 45 feet or something.", + "start": 288.38, + "end": 289.54, + "words": [ + { + "word": " Yeah,", + "start": 288.38, + "end": 288.5, + "probability": 0.99951171875 + }, + { + "word": " 45", + "start": 288.5, + "end": 288.78, + "probability": 0.998046875 + }, + { + "word": " feet", + "start": 288.78, + "end": 289.24, + "probability": 1.0 + }, + { + "word": " or", + "start": 289.24, + "end": 289.38, + "probability": 1.0 + }, + { + "word": " something.", + "start": 289.38, + "end": 289.54, + "probability": 1.0 + } + ] + }, + { + "id": 139, + "text": "Skybar right next door?", + "start": 289.54, + "end": 290.62, + "words": [ + { + "word": " Skybar", + "start": 289.54, + "end": 289.78, + "probability": 0.6474609375 + }, + { + "word": " right", + "start": 289.78, + "end": 290.22, + "probability": 0.94091796875 + }, + { + "word": " next", + "start": 290.22, + "end": 290.4, + "probability": 1.0 + }, + { + "word": " door?", + "start": 290.4, + "end": 290.62, + "probability": 1.0 + } + ] + }, + { + "id": 140, + "text": "Yeah.", + "start": 290.74, + "end": 290.9, + "words": [ + { + "word": " Yeah.", + "start": 290.74, + "end": 290.9, + "probability": 0.943359375 + } + ] + }, + { + "id": 141, + "text": "That's about it.", + "start": 290.9, + "end": 291.82, + "words": [ + { + "word": " That's", + "start": 290.9, + "end": 291.28, + "probability": 0.8857421875 + }, + { + "word": " about", + "start": 291.28, + "end": 291.6, + "probability": 1.0 + }, + { + "word": " it.", + "start": 291.6, + "end": 291.82, + "probability": 1.0 + } + ] + }, + { + "id": 142, + "text": "Come on, guys.", + "start": 291.92, + "end": 292.54, + "words": [ + { + "word": " Come", + "start": 291.92, + "end": 292.1, + "probability": 0.99658203125 + }, + { + "word": " on,", + "start": 292.1, + "end": 292.28, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 292.28, + "end": 292.54, + "probability": 1.0 + } + ] + }, + { + "id": 143, + "text": "It's because they have to ride the trolley.", + "start": 294.34000000000003, + "end": 296.32, + "words": [ + { + "word": " It's", + "start": 294.34000000000003, + "end": 294.78000000000003, + "probability": 0.783203125 + }, + { + "word": " because", + "start": 294.78000000000003, + "end": 295.22, + "probability": 0.99609375 + }, + { + "word": " they", + "start": 295.22, + "end": 295.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 295.48, + "end": 295.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 295.58, + "end": 295.72, + "probability": 1.0 + }, + { + "word": " ride", + "start": 295.72, + "end": 295.8, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 295.8, + "end": 296.0, + "probability": 0.99951171875 + }, + { + "word": " trolley.", + "start": 296.0, + "end": 296.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 144, + "text": "It's everywhere.", + "start": 296.52, + "end": 296.74, + "words": [ + { + "word": " It's", + "start": 296.52, + "end": 296.74, + "probability": 0.423828125 + }, + { + "word": " everywhere.", + "start": 296.74, + "end": 296.74, + "probability": 0.75537109375 + } + ] + }, + { + "id": 145, + "text": "Well, maybe we'll get Uber Eats here in town at some point.", + "start": 296.76, + "end": 300.14, + "words": [ + { + "word": " Well,", + "start": 296.76, + "end": 297.02, + "probability": 0.97802734375 + }, + { + "word": " maybe", + "start": 297.06, + "end": 297.24, + "probability": 0.99951171875 + }, + { + "word": " we'll", + "start": 297.24, + "end": 297.72, + "probability": 0.9892578125 + }, + { + "word": " get", + "start": 297.72, + "end": 297.82, + "probability": 1.0 + }, + { + "word": " Uber", + "start": 297.82, + "end": 298.06, + "probability": 0.99951171875 + }, + { + "word": " Eats", + "start": 298.06, + "end": 298.4, + "probability": 0.99853515625 + }, + { + "word": " here", + "start": 298.4, + "end": 298.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 298.62, + "end": 298.78, + "probability": 1.0 + }, + { + "word": " town", + "start": 298.78, + "end": 299.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 299.02, + "end": 299.66, + "probability": 0.99609375 + }, + { + "word": " some", + "start": 299.66, + "end": 299.84, + "probability": 1.0 + }, + { + "word": " point.", + "start": 299.84, + "end": 300.14, + "probability": 1.0 + } + ] + }, + { + "id": 146, + "text": "Oh, Brooklyn's.", + "start": 302.7, + "end": 303.58, + "words": [ + { + "word": " Oh,", + "start": 302.7, + "end": 303.14, + "probability": 0.9541015625 + }, + { + "word": " Brooklyn's.", + "start": 303.14, + "end": 303.58, + "probability": 0.970703125 + } + ] + }, + { + "id": 147, + "text": "The solar-powered pizza cafe.", + "start": 303.76, + "end": 305.68, + "words": [ + { + "word": " The", + "start": 303.76, + "end": 304.2, + "probability": 0.99951171875 + }, + { + "word": " solar", + "start": 304.2, + "end": 304.62, + "probability": 0.958984375 + }, + { + "word": "-powered", + "start": 304.62, + "end": 305.1, + "probability": 0.9599609375 + }, + { + "word": " pizza", + "start": 305.1, + "end": 305.38, + "probability": 0.9931640625 + }, + { + "word": " cafe.", + "start": 305.38, + "end": 305.68, + "probability": 0.9931640625 + } + ] + }, + { + "id": 148, + "text": "Speaking of solar power, we've got some news about that.", + "start": 306.58, + "end": 308.6, + "words": [ + { + "word": " Speaking", + "start": 306.58, + "end": 307.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 307.02, + "end": 307.16, + "probability": 1.0 + }, + { + "word": " solar", + "start": 307.16, + "end": 307.32, + "probability": 1.0 + }, + { + "word": " power,", + "start": 307.32, + "end": 307.56, + "probability": 0.99853515625 + }, + { + "word": " we've", + "start": 307.66, + "end": 307.8, + "probability": 0.62548828125 + }, + { + "word": " got", + "start": 307.8, + "end": 307.86, + "probability": 1.0 + }, + { + "word": " some", + "start": 307.86, + "end": 308.0, + "probability": 1.0 + }, + { + "word": " news", + "start": 308.0, + "end": 308.22, + "probability": 1.0 + }, + { + "word": " about", + "start": 308.22, + "end": 308.42, + "probability": 1.0 + }, + { + "word": " that.", + "start": 308.42, + "end": 308.6, + "probability": 1.0 + } + ] + }, + { + "id": 149, + "text": "What about it, man?", + "start": 308.9, + "end": 309.82, + "words": [ + { + "word": " What", + "start": 308.9, + "end": 309.34, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 309.34, + "end": 309.5, + "probability": 1.0 + }, + { + "word": " it,", + "start": 309.5, + "end": 309.7, + "probability": 1.0 + }, + { + "word": " man?", + "start": 309.74, + "end": 309.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 150, + "text": "Apparently, at least in 2016, solar provided twice as many jobs as the coal industry in the United States.", + "start": 310.38, + "end": 316.4, + "words": [ + { + "word": " Apparently,", + "start": 310.38, + "end": 310.82, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 310.94, + "end": 311.12, + "probability": 1.0 + }, + { + "word": " least", + "start": 311.12, + "end": 311.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 311.3, + "end": 311.46, + "probability": 1.0 + }, + { + "word": " 2016,", + "start": 311.46, + "end": 311.94, + "probability": 1.0 + }, + { + "word": " solar", + "start": 312.38, + "end": 313.06, + "probability": 1.0 + }, + { + "word": " provided", + "start": 313.06, + "end": 313.42, + "probability": 1.0 + }, + { + "word": " twice", + "start": 313.42, + "end": 313.84, + "probability": 1.0 + }, + { + "word": " as", + "start": 313.84, + "end": 314.06, + "probability": 1.0 + }, + { + "word": " many", + "start": 314.06, + "end": 314.22, + "probability": 1.0 + }, + { + "word": " jobs", + "start": 314.22, + "end": 314.54, + "probability": 1.0 + }, + { + "word": " as", + "start": 314.54, + "end": 314.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 314.76, + "end": 314.88, + "probability": 1.0 + }, + { + "word": " coal", + "start": 314.88, + "end": 315.08, + "probability": 1.0 + }, + { + "word": " industry", + "start": 315.08, + "end": 315.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 315.34, + "end": 315.84, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 315.84, + "end": 315.96, + "probability": 1.0 + }, + { + "word": " United", + "start": 315.96, + "end": 316.04, + "probability": 1.0 + }, + { + "word": " States.", + "start": 316.04, + "end": 316.4, + "probability": 1.0 + } + ] + }, + { + "id": 151, + "text": "Wow.", + "start": 317.52, + "end": 317.96, + "words": [ + { + "word": " Wow.", + "start": 317.52, + "end": 317.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 152, + "text": "It's looking sunny.", + "start": 318.62, + "end": 319.5, + "words": [ + { + "word": " It's", + "start": 318.62, + "end": 319.06, + "probability": 0.9990234375 + }, + { + "word": " looking", + "start": 319.06, + "end": 319.18, + "probability": 1.0 + }, + { + "word": " sunny.", + "start": 319.18, + "end": 319.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 153, + "text": "Yeah.", + "start": 319.66, + "end": 320.06, + "words": [ + { + "word": " Yeah.", + "start": 319.66, + "end": 320.06, + "probability": 0.994140625 + } + ] + }, + { + "id": 154, + "text": "I mean, that's a good thing, you know?", + "start": 320.16, + "end": 323.0, + "words": [ + { + "word": " I", + "start": 320.16, + "end": 320.36, + "probability": 0.9716796875 + }, + { + "word": " mean,", + "start": 320.36, + "end": 320.6, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 320.88, + "end": 321.66, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 321.66, + "end": 321.74, + "probability": 1.0 + }, + { + "word": " good", + "start": 321.74, + "end": 322.2, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 322.2, + "end": 322.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 322.66, + "end": 322.84, + "probability": 1.0 + }, + { + "word": " know?", + "start": 322.84, + "end": 323.0, + "probability": 1.0 + } + ] + }, + { + "id": 155, + "text": "I mean, I'm all in favor of solar.", + "start": 323.06, + "end": 324.88, + "words": [ + { + "word": " I", + "start": 323.06, + "end": 323.28, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 323.28, + "end": 323.42, + "probability": 0.9931640625 + }, + { + "word": " I'm", + "start": 323.44, + "end": 323.92, + "probability": 1.0 + }, + { + "word": " all", + "start": 323.92, + "end": 324.18, + "probability": 1.0 + }, + { + "word": " in", + "start": 324.18, + "end": 324.34, + "probability": 1.0 + }, + { + "word": " favor", + "start": 324.34, + "end": 324.54, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 324.54, + "end": 324.7, + "probability": 1.0 + }, + { + "word": " solar.", + "start": 324.7, + "end": 324.88, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "I am, too.", + "start": 325.26, + "end": 325.98, + "words": [ + { + "word": " I", + "start": 325.26, + "end": 325.7, + "probability": 1.0 + }, + { + "word": " am,", + "start": 325.7, + "end": 325.88, + "probability": 1.0 + }, + { + "word": " too.", + "start": 325.9, + "end": 325.98, + "probability": 1.0 + } + ] + }, + { + "id": 157, + "text": "I think that this is probably a very good thing.", + "start": 325.98, + "end": 328.8, + "words": [ + { + "word": " I", + "start": 325.98, + "end": 326.12, + "probability": 0.432861328125 + }, + { + "word": " think", + "start": 326.12, + "end": 326.66, + "probability": 0.52734375 + }, + { + "word": " that", + "start": 326.66, + "end": 326.86, + "probability": 0.83984375 + }, + { + "word": " this", + "start": 326.86, + "end": 327.0, + "probability": 0.98974609375 + }, + { + "word": " is", + "start": 327.0, + "end": 327.2, + "probability": 0.99853515625 + }, + { + "word": " probably", + "start": 327.2, + "end": 327.44, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 327.44, + "end": 327.76, + "probability": 0.99462890625 + }, + { + "word": " very", + "start": 327.76, + "end": 328.18, + "probability": 0.99658203125 + }, + { + "word": " good", + "start": 328.18, + "end": 328.44, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 328.44, + "end": 328.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 158, + "text": "I like solar energy.", + "start": 328.94, + "end": 329.92, + "words": [ + { + "word": " I", + "start": 328.94, + "end": 329.12, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 329.12, + "end": 329.3, + "probability": 0.99951171875 + }, + { + "word": " solar", + "start": 329.3, + "end": 329.56, + "probability": 0.998046875 + }, + { + "word": " energy.", + "start": 329.56, + "end": 329.92, + "probability": 1.0 + } + ] + }, + { + "id": 159, + "text": "It's hot.", + "start": 330.76, + "end": 331.26, + "words": [ + { + "word": " It's", + "start": 330.76, + "end": 331.08, + "probability": 0.998046875 + }, + { + "word": " hot.", + "start": 331.08, + "end": 331.26, + "probability": 1.0 + } + ] + }, + { + "id": 160, + "text": "I'm the one who's supposed to be doing the corny jokes, okay?", + "start": 333.2, + "end": 335.44, + "words": [ + { + "word": " I'm", + "start": 333.2, + "end": 333.52, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 333.52, + "end": 333.8, + "probability": 0.99755859375 + }, + { + "word": " one", + "start": 333.8, + "end": 333.96, + "probability": 1.0 + }, + { + "word": " who's", + "start": 333.96, + "end": 334.1, + "probability": 0.99755859375 + }, + { + "word": " supposed", + "start": 334.1, + "end": 334.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 334.26, + "end": 334.36, + "probability": 1.0 + }, + { + "word": " be", + "start": 334.36, + "end": 334.46, + "probability": 1.0 + }, + { + "word": " doing", + "start": 334.46, + "end": 334.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 334.56, + "end": 334.7, + "probability": 1.0 + }, + { + "word": " corny", + "start": 334.7, + "end": 334.94, + "probability": 1.0 + }, + { + "word": " jokes,", + "start": 334.94, + "end": 335.22, + "probability": 1.0 + }, + { + "word": " okay?", + "start": 335.28, + "end": 335.44, + "probability": 0.9619140625 + } + ] + }, + { + "id": 161, + "text": "Oh, man.", + "start": 336.68, + "end": 337.18, + "words": [ + { + "word": " Oh,", + "start": 336.68, + "end": 337.0, + "probability": 0.9462890625 + }, + { + "word": " man.", + "start": 337.0, + "end": 337.18, + "probability": 1.0 + } + ] + }, + { + "id": 162, + "text": "I'm in a mood, though.", + "start": 337.3, + "end": 338.2, + "words": [ + { + "word": " I'm", + "start": 337.3, + "end": 337.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 337.62, + "end": 337.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 337.64, + "end": 337.76, + "probability": 0.998046875 + }, + { + "word": " mood,", + "start": 337.76, + "end": 337.98, + "probability": 1.0 + }, + { + "word": " though.", + "start": 338.04, + "end": 338.2, + "probability": 1.0 + } + ] + }, + { + "id": 163, + "text": "I'm in a mood.", + "start": 338.38, + "end": 339.02, + "words": [ + { + "word": " I'm", + "start": 338.38, + "end": 338.7, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 338.7, + "end": 338.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 338.72, + "end": 338.84, + "probability": 1.0 + }, + { + "word": " mood.", + "start": 338.84, + "end": 339.02, + "probability": 1.0 + } + ] + }, + { + "id": 164, + "text": "What can I say?", + "start": 339.08, + "end": 339.6, + "words": [ + { + "word": " What", + "start": 339.08, + "end": 339.22, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 339.22, + "end": 339.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 339.34, + "end": 339.42, + "probability": 1.0 + }, + { + "word": " say?", + "start": 339.42, + "end": 339.6, + "probability": 1.0 + } + ] + }, + { + "id": 165, + "text": "I know we switched roles.", + "start": 339.94, + "end": 340.92, + "words": [ + { + "word": " I", + "start": 339.94, + "end": 340.26, + "probability": 0.473876953125 + }, + { + "word": " know", + "start": 340.26, + "end": 340.34, + "probability": 0.9912109375 + }, + { + "word": " we", + "start": 340.34, + "end": 340.44, + "probability": 0.98486328125 + }, + { + "word": " switched", + "start": 340.44, + "end": 340.66, + "probability": 1.0 + }, + { + "word": " roles.", + "start": 340.66, + "end": 340.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 166, + "text": "I don't even have a corny joke to make.", + "start": 341.04, + "end": 342.26, + "words": [ + { + "word": " I", + "start": 341.04, + "end": 341.14, + "probability": 1.0 + }, + { + "word": " don't", + "start": 341.14, + "end": 341.18, + "probability": 1.0 + }, + { + "word": " even", + "start": 341.18, + "end": 341.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 341.28, + "end": 341.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 341.46, + "end": 341.6, + "probability": 1.0 + }, + { + "word": " corny", + "start": 341.6, + "end": 341.78, + "probability": 1.0 + }, + { + "word": " joke", + "start": 341.78, + "end": 341.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 341.96, + "end": 342.12, + "probability": 1.0 + }, + { + "word": " make.", + "start": 342.12, + "end": 342.26, + "probability": 1.0 + } + ] + }, + { + "id": 167, + "text": "Oh, okay.", + "start": 342.7, + "end": 343.3, + "words": [ + { + "word": " Oh,", + "start": 342.7, + "end": 343.02, + "probability": 0.98828125 + }, + { + "word": " okay.", + "start": 343.04, + "end": 343.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 168, + "text": "You just have to sit there and be curmudgeoning?", + "start": 343.8, + "end": 345.52, + "words": [ + { + "word": " You", + "start": 343.8, + "end": 344.12, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 344.12, + "end": 344.44, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 344.44, + "end": 344.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 344.54, + "end": 344.62, + "probability": 1.0 + }, + { + "word": " sit", + "start": 344.62, + "end": 344.76, + "probability": 1.0 + }, + { + "word": " there", + "start": 344.76, + "end": 344.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 344.9, + "end": 344.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 344.98, + "end": 345.04, + "probability": 0.99853515625 + }, + { + "word": " curmudgeoning?", + "start": 345.04, + "end": 345.52, + "probability": 0.8583984375 + } + ] + }, + { + "id": 169, + "text": "I guess so.", + "start": 345.62, + "end": 346.04, + "words": [ + { + "word": " I", + "start": 345.62, + "end": 345.76, + "probability": 0.9990234375 + }, + { + "word": " guess", + "start": 345.76, + "end": 345.88, + "probability": 1.0 + }, + { + "word": " so.", + "start": 345.88, + "end": 346.04, + "probability": 1.0 + } + ] + }, + { + "id": 170, + "text": "You're the curmudgeoning one today.", + "start": 346.2, + "end": 347.38, + "words": [ + { + "word": " You're", + "start": 346.2, + "end": 346.38, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 346.38, + "end": 346.52, + "probability": 1.0 + }, + { + "word": " curmudgeoning", + "start": 346.52, + "end": 347.04, + "probability": 0.97265625 + }, + { + "word": " one", + "start": 347.04, + "end": 347.1, + "probability": 0.99609375 + }, + { + "word": " today.", + "start": 347.1, + "end": 347.38, + "probability": 1.0 + } + ] + }, + { + "id": 171, + "text": "The Pizza Hut shoes, like, ruined it for me.", + "start": 347.5, + "end": 349.38, + "words": [ + { + "word": " The", + "start": 347.5, + "end": 347.62, + "probability": 0.88818359375 + }, + { + "word": " Pizza", + "start": 347.62, + "end": 348.08, + "probability": 0.9765625 + }, + { + "word": " Hut", + "start": 348.08, + "end": 348.26, + "probability": 0.99951171875 + }, + { + "word": " shoes,", + "start": 348.26, + "end": 348.5, + "probability": 0.9970703125 + }, + { + "word": " like,", + "start": 348.6, + "end": 348.78, + "probability": 0.99951171875 + }, + { + "word": " ruined", + "start": 348.8, + "end": 349.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 349.0, + "end": 349.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 349.14, + "end": 349.22, + "probability": 1.0 + }, + { + "word": " me.", + "start": 349.22, + "end": 349.38, + "probability": 1.0 + } + ] + }, + { + "id": 172, + "text": "Oh, okay.", + "start": 349.62, + "end": 349.98, + "words": [ + { + "word": " Oh,", + "start": 349.62, + "end": 349.84, + "probability": 0.99462890625 + }, + { + "word": " okay.", + "start": 349.84, + "end": 349.98, + "probability": 1.0 + } + ] + }, + { + "id": 173, + "text": "So, Mike, what are we talking about next?", + "start": 350.2, + "end": 352.92, + "words": [ + { + "word": " So,", + "start": 350.2, + "end": 350.52, + "probability": 0.9990234375 + }, + { + "word": " Mike,", + "start": 350.52, + "end": 351.2, + "probability": 0.98779296875 + }, + { + "word": " what", + "start": 352.24, + "end": 352.34, + "probability": 1.0 + }, + { + "word": " are", + "start": 352.34, + "end": 352.42, + "probability": 1.0 + }, + { + "word": " we", + "start": 352.42, + "end": 352.46, + "probability": 1.0 + }, + { + "word": " talking", + "start": 352.46, + "end": 352.62, + "probability": 1.0 + }, + { + "word": " about", + "start": 352.62, + "end": 352.78, + "probability": 1.0 + }, + { + "word": " next?", + "start": 352.78, + "end": 352.92, + "probability": 1.0 + } + ] + }, + { + "id": 174, + "text": "Well, I did want to talk about...", + "start": 354.44, + "end": 355.96, + "words": [ + { + "word": " Well,", + "start": 354.44, + "end": 354.76, + "probability": 0.9638671875 + }, + { + "word": " I", + "start": 355.46, + "end": 355.54, + "probability": 0.9990234375 + }, + { + "word": " did", + "start": 355.54, + "end": 355.72, + "probability": 0.99755859375 + }, + { + "word": " want", + "start": 355.72, + "end": 355.9, + "probability": 0.82861328125 + }, + { + "word": " to", + "start": 355.9, + "end": 355.96, + "probability": 0.1175537109375 + }, + { + "word": " talk", + "start": 355.96, + "end": 355.96, + "probability": 0.2005615234375 + }, + { + "word": " about...", + "start": 355.96, + "end": 355.96, + "probability": 0.6123046875 + } + ] + }, + { + "id": 175, + "text": "I did want to talk about Ryzen again, but we'll wait to get into that, because it's", + "start": 355.96, + "end": 359.3, + "words": [ + { + "word": " I", + "start": 355.96, + "end": 356.18, + "probability": 0.9560546875 + }, + { + "word": " did", + "start": 356.18, + "end": 356.5, + "probability": 0.9970703125 + }, + { + "word": " want", + "start": 356.5, + "end": 356.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 356.68, + "end": 356.78, + "probability": 1.0 + }, + { + "word": " talk", + "start": 356.78, + "end": 356.94, + "probability": 1.0 + }, + { + "word": " about", + "start": 356.94, + "end": 357.18, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 357.18, + "end": 357.66, + "probability": 0.830078125 + }, + { + "word": " again,", + "start": 357.66, + "end": 357.82, + "probability": 1.0 + }, + { + "word": " but", + "start": 357.9, + "end": 358.08, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 358.08, + "end": 358.24, + "probability": 1.0 + }, + { + "word": " wait", + "start": 358.24, + "end": 358.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 358.34, + "end": 358.44, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 358.44, + "end": 358.56, + "probability": 1.0 + }, + { + "word": " into", + "start": 358.56, + "end": 358.7, + "probability": 1.0 + }, + { + "word": " that,", + "start": 358.7, + "end": 358.86, + "probability": 1.0 + }, + { + "word": " because", + "start": 358.92, + "end": 359.02, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 359.02, + "end": 359.3, + "probability": 1.0 + } + ] + }, + { + "id": 176, + "text": "kind of a whole thing, and we already have a caller.", + "start": 359.3, + "end": 360.78, + "words": [ + { + "word": " kind", + "start": 359.3, + "end": 359.48, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 359.48, + "end": 359.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 359.56, + "end": 359.58, + "probability": 0.99951171875 + }, + { + "word": " whole", + "start": 359.58, + "end": 359.72, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 359.72, + "end": 359.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 360.02, + "end": 360.14, + "probability": 1.0 + }, + { + "word": " we", + "start": 360.14, + "end": 360.26, + "probability": 1.0 + }, + { + "word": " already", + "start": 360.26, + "end": 360.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 360.36, + "end": 360.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 360.52, + "end": 360.6, + "probability": 1.0 + }, + { + "word": " caller.", + "start": 360.6, + "end": 360.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 177, + "text": "They want to talk about shoes and pizza and stuff.", + "start": 361.08, + "end": 363.48, + "words": [ + { + "word": " They", + "start": 361.08, + "end": 361.4, + "probability": 0.99853515625 + }, + { + "word": " want", + "start": 361.4, + "end": 361.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 361.5, + "end": 361.58, + "probability": 1.0 + }, + { + "word": " talk", + "start": 361.58, + "end": 362.1, + "probability": 1.0 + }, + { + "word": " about", + "start": 362.1, + "end": 362.34, + "probability": 1.0 + }, + { + "word": " shoes", + "start": 362.34, + "end": 362.6, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 362.6, + "end": 362.92, + "probability": 0.99609375 + }, + { + "word": " pizza", + "start": 362.92, + "end": 363.16, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 363.16, + "end": 363.32, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 363.32, + "end": 363.48, + "probability": 1.0 + } + ] + }, + { + "id": 178, + "text": "All right.", + "start": 363.54, + "end": 363.8, + "words": [ + { + "word": " All", + "start": 363.54, + "end": 363.68, + "probability": 0.9794921875 + }, + { + "word": " right.", + "start": 363.68, + "end": 363.8, + "probability": 1.0 + } + ] + }, + { + "id": 179, + "text": "Let's talk...", + "start": 363.92, + "end": 364.56, + "words": [ + { + "word": " Let's", + "start": 363.92, + "end": 364.14, + "probability": 0.8974609375 + }, + { + "word": " talk...", + "start": 364.14, + "end": 364.56, + "probability": 0.5048828125 + } + ] + }, + { + "id": 180, + "text": "Bren?", + "start": 364.56, + "end": 365.16, + "words": [ + { + "word": " Bren?", + "start": 364.56, + "end": 365.16, + "probability": 0.974609375 + } + ] + }, + { + "id": 181, + "text": "Hello, Bren.", + "start": 365.3, + "end": 365.78, + "words": [ + { + "word": " Hello,", + "start": 365.3, + "end": 365.58, + "probability": 0.9990234375 + }, + { + "word": " Bren.", + "start": 365.64, + "end": 365.78, + "probability": 1.0 + } + ] + }, + { + "id": 182, + "text": "How are you?", + "start": 365.86, + "end": 366.24, + "words": [ + { + "word": " How", + "start": 365.86, + "end": 366.02, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 366.02, + "end": 366.12, + "probability": 1.0 + }, + { + "word": " you?", + "start": 366.12, + "end": 366.24, + "probability": 1.0 + } + ] + }, + { + "id": 183, + "text": "You got to hit the button.", + "start": 367.2, + "end": 367.96, + "words": [ + { + "word": " You", + "start": 367.2, + "end": 367.52, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 367.52, + "end": 367.58, + "probability": 0.51025390625 + }, + { + "word": " to", + "start": 367.58, + "end": 367.64, + "probability": 0.99267578125 + }, + { + "word": " hit", + "start": 367.64, + "end": 367.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 367.7, + "end": 367.78, + "probability": 1.0 + }, + { + "word": " button.", + "start": 367.78, + "end": 367.96, + "probability": 1.0 + } + ] + }, + { + "id": 184, + "text": "No, the call button.", + "start": 369.04, + "end": 370.12, + "words": [ + { + "word": " No,", + "start": 369.04, + "end": 369.36, + "probability": 0.34716796875 + }, + { + "word": " the", + "start": 369.38, + "end": 369.44, + "probability": 0.94775390625 + }, + { + "word": " call", + "start": 369.44, + "end": 369.86, + "probability": 0.99755859375 + }, + { + "word": " button.", + "start": 369.86, + "end": 370.12, + "probability": 1.0 + } + ] + }, + { + "id": 185, + "text": "They're on hold still.", + "start": 370.44, + "end": 371.3, + "words": [ + { + "word": " They're", + "start": 370.44, + "end": 370.76, + "probability": 0.99609375 + }, + { + "word": " on", + "start": 370.76, + "end": 370.86, + "probability": 1.0 + }, + { + "word": " hold", + "start": 370.86, + "end": 371.06, + "probability": 1.0 + }, + { + "word": " still.", + "start": 371.06, + "end": 371.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 186, + "text": "There you go.", + "start": 372.36, + "end": 373.02, + "words": [ + { + "word": " There", + "start": 372.36, + "end": 372.68, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 372.68, + "end": 372.78, + "probability": 1.0 + }, + { + "word": " go.", + "start": 372.78, + "end": 373.02, + "probability": 1.0 + } + ] + }, + { + "id": 187, + "text": "Hi.", + "start": 373.2, + "end": 373.46, + "words": [ + { + "word": " Hi.", + "start": 373.2, + "end": 373.46, + "probability": 0.9794921875 + } + ] + }, + { + "id": 188, + "text": "One of those buttons.", + "start": 374.08, + "end": 374.88, + "words": [ + { + "word": " One", + "start": 374.08, + "end": 374.4, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 374.4, + "end": 374.44, + "probability": 1.0 + }, + { + "word": " those", + "start": 374.44, + "end": 374.6, + "probability": 1.0 + }, + { + "word": " buttons.", + "start": 374.6, + "end": 374.88, + "probability": 1.0 + } + ] + }, + { + "id": 189, + "text": "Hi.", + "start": 375.02, + "end": 375.22, + "words": [ + { + "word": " Hi.", + "start": 375.02, + "end": 375.22, + "probability": 0.98193359375 + } + ] + }, + { + "id": 190, + "text": "Hi.", + "start": 376.1, + "end": 376.42, + "words": [ + { + "word": " Hi.", + "start": 376.1, + "end": 376.42, + "probability": 0.2467041015625 + } + ] + }, + { + "id": 191, + "text": "Thanks for taking my call.", + "start": 376.72, + "end": 377.66, + "words": [ + { + "word": " Thanks", + "start": 376.72, + "end": 377.04, + "probability": 0.98974609375 + }, + { + "word": " for", + "start": 377.04, + "end": 377.18, + "probability": 0.998046875 + }, + { + "word": " taking", + "start": 377.18, + "end": 377.32, + "probability": 0.97998046875 + }, + { + "word": " my", + "start": 377.32, + "end": 377.48, + "probability": 1.0 + }, + { + "word": " call.", + "start": 377.48, + "end": 377.66, + "probability": 1.0 + } + ] + }, + { + "id": 192, + "text": "I just wanted to know, if you have those shoes, do the pizzas come laced or unlaced?", + "start": 377.7, + "end": 382.1, + "words": [ + { + "word": " I", + "start": 377.7, + "end": 377.82, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 377.82, + "end": 377.92, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 377.92, + "end": 378.12, + "probability": 0.81005859375 + }, + { + "word": " to", + "start": 378.12, + "end": 378.28, + "probability": 1.0 + }, + { + "word": " know,", + "start": 378.28, + "end": 378.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 378.5, + "end": 378.72, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 378.72, + "end": 378.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 378.82, + "end": 378.96, + "probability": 1.0 + }, + { + "word": " those", + "start": 378.96, + "end": 379.2, + "probability": 0.99951171875 + }, + { + "word": " shoes,", + "start": 379.2, + "end": 379.68, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 379.96, + "end": 380.0, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 380.0, + "end": 380.12, + "probability": 0.9990234375 + }, + { + "word": " pizzas", + "start": 380.12, + "end": 380.8, + "probability": 0.97509765625 + }, + { + "word": " come", + "start": 380.8, + "end": 381.06, + "probability": 0.998046875 + }, + { + "word": " laced", + "start": 381.06, + "end": 381.44, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 381.44, + "end": 381.64, + "probability": 0.9990234375 + }, + { + "word": " unlaced?", + "start": 381.64, + "end": 382.1, + "probability": 0.9970703125 + } + ] + }, + { + "id": 193, + "text": "That's a good question.", + "start": 382.90000000000003, + "end": 384.12, + "words": [ + { + "word": " That's", + "start": 382.90000000000003, + "end": 383.22, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 383.22, + "end": 383.52, + "probability": 0.99755859375 + }, + { + "word": " good", + "start": 383.52, + "end": 383.88, + "probability": 0.9990234375 + }, + { + "word": " question.", + "start": 383.88, + "end": 384.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 194, + "text": "And do they know where to go?", + "start": 384.18, + "end": 385.64, + "words": [ + { + "word": " And", + "start": 384.18, + "end": 384.36, + "probability": 0.87646484375 + }, + { + "word": " do", + "start": 384.36, + "end": 385.02, + "probability": 0.99365234375 + }, + { + "word": " they", + "start": 385.02, + "end": 385.18, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 385.18, + "end": 385.3, + "probability": 1.0 + }, + { + "word": " where", + "start": 385.3, + "end": 385.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 385.4, + "end": 385.5, + "probability": 0.99951171875 + }, + { + "word": " go?", + "start": 385.5, + "end": 385.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 195, + "text": "Because, I mean, what if you're out at the basketball court shooting hoops and playing", + "start": 386.44, + "end": 390.2, + "words": [ + { + "word": " Because,", + "start": 386.44, + "end": 386.8, + "probability": 0.841796875 + }, + { + "word": " I", + "start": 386.8, + "end": 386.88, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 386.88, + "end": 386.98, + "probability": 1.0 + }, + { + "word": " what", + "start": 387.02, + "end": 387.2, + "probability": 1.0 + }, + { + "word": " if", + "start": 387.2, + "end": 387.32, + "probability": 1.0 + }, + { + "word": " you're", + "start": 387.32, + "end": 387.44, + "probability": 1.0 + }, + { + "word": " out", + "start": 387.44, + "end": 387.56, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 387.56, + "end": 387.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 387.66, + "end": 387.74, + "probability": 1.0 + }, + { + "word": " basketball", + "start": 387.74, + "end": 388.44, + "probability": 0.9990234375 + }, + { + "word": " court", + "start": 388.44, + "end": 388.88, + "probability": 1.0 + }, + { + "word": " shooting", + "start": 388.88, + "end": 389.34, + "probability": 0.90234375 + }, + { + "word": " hoops", + "start": 389.34, + "end": 389.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 389.76, + "end": 389.96, + "probability": 0.99951171875 + }, + { + "word": " playing", + "start": 389.96, + "end": 390.2, + "probability": 1.0 + } + ] + }, + { + "id": 196, + "text": "horse with your friends?", + "start": 390.2, + "end": 390.98, + "words": [ + { + "word": " horse", + "start": 390.2, + "end": 390.42, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 390.42, + "end": 390.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 390.58, + "end": 390.72, + "probability": 1.0 + }, + { + "word": " friends?", + "start": 390.72, + "end": 390.98, + "probability": 1.0 + } + ] + }, + { + "id": 197, + "text": "I imagine it must have some type of...", + "start": 391.34, + "end": 393.56, + "words": [ + { + "word": " I", + "start": 391.34, + "end": 391.62, + "probability": 0.998046875 + }, + { + "word": " imagine", + "start": 391.62, + "end": 392.2, + "probability": 0.99462890625 + }, + { + "word": " it", + "start": 392.2, + "end": 392.44, + "probability": 1.0 + }, + { + "word": " must", + "start": 392.44, + "end": 392.54, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 392.54, + "end": 392.74, + "probability": 1.0 + }, + { + "word": " some", + "start": 392.74, + "end": 392.92, + "probability": 1.0 + }, + { + "word": " type", + "start": 392.92, + "end": 393.12, + "probability": 0.99951171875 + }, + { + "word": " of...", + "start": 393.12, + "end": 393.56, + "probability": 0.673828125 + } + ] + }, + { + "id": 198, + "text": "Because it has to have, like, 4G or something built in in order for the order to even happen.", + "start": 393.56, + "end": 398.2, + "words": [ + { + "word": " Because", + "start": 393.56, + "end": 393.92, + "probability": 0.8583984375 + }, + { + "word": " it", + "start": 393.92, + "end": 394.04, + "probability": 1.0 + }, + { + "word": " has", + "start": 394.04, + "end": 394.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 394.18, + "end": 394.28, + "probability": 1.0 + }, + { + "word": " have,", + "start": 394.28, + "end": 394.4, + "probability": 1.0 + }, + { + "word": " like,", + "start": 394.46, + "end": 394.64, + "probability": 1.0 + }, + { + "word": " 4G", + "start": 394.68, + "end": 396.1, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 396.1, + "end": 396.24, + "probability": 1.0 + }, + { + "word": " something", + "start": 396.24, + "end": 396.44, + "probability": 1.0 + }, + { + "word": " built", + "start": 396.44, + "end": 396.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 396.72, + "end": 396.88, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 396.88, + "end": 397.0, + "probability": 0.99951171875 + }, + { + "word": " order", + "start": 397.0, + "end": 397.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 397.14, + "end": 397.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 397.28, + "end": 397.4, + "probability": 0.99951171875 + }, + { + "word": " order", + "start": 397.4, + "end": 397.56, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 397.56, + "end": 397.72, + "probability": 1.0 + }, + { + "word": " even", + "start": 397.72, + "end": 397.86, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 397.86, + "end": 398.2, + "probability": 1.0 + } + ] + }, + { + "id": 199, + "text": "Yeah, that would suck if you have to be within Wi-Fi range of your house.", + "start": 399.14, + "end": 403.82, + "words": [ + { + "word": " Yeah,", + "start": 399.14, + "end": 399.5, + "probability": 0.98486328125 + }, + { + "word": " that", + "start": 399.52, + "end": 399.76, + "probability": 1.0 + }, + { + "word": " would", + "start": 399.76, + "end": 399.96, + "probability": 1.0 + }, + { + "word": " suck", + "start": 399.96, + "end": 400.2, + "probability": 1.0 + }, + { + "word": " if", + "start": 400.2, + "end": 400.4, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 400.4, + "end": 400.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 400.5, + "end": 400.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 400.64, + "end": 400.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 400.76, + "end": 400.94, + "probability": 1.0 + }, + { + "word": " within", + "start": 400.94, + "end": 401.64, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 401.64, + "end": 401.88, + "probability": 0.99267578125 + }, + { + "word": "-Fi", + "start": 401.88, + "end": 402.16, + "probability": 1.0 + }, + { + "word": " range", + "start": 402.16, + "end": 402.42, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 402.42, + "end": 403.42, + "probability": 0.99365234375 + }, + { + "word": " your", + "start": 403.42, + "end": 403.56, + "probability": 1.0 + }, + { + "word": " house.", + "start": 403.56, + "end": 403.82, + "probability": 1.0 + } + ] + }, + { + "id": 200, + "text": "You know, I bet I could hack it so I could put Pyrmonics in there and get their pizza.", + "start": 403.84, + "end": 410.14, + "words": [ + { + "word": " You", + "start": 403.84, + "end": 403.98, + "probability": 0.4111328125 + }, + { + "word": " know,", + "start": 403.98, + "end": 403.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 404.06, + "end": 404.06, + "probability": 1.0 + }, + { + "word": " bet", + "start": 404.06, + "end": 404.42, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 404.42, + "end": 405.22, + "probability": 0.81640625 + }, + { + "word": " could", + "start": 405.22, + "end": 405.74, + "probability": 0.998046875 + }, + { + "word": " hack", + "start": 405.74, + "end": 406.0, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 406.0, + "end": 406.14, + "probability": 1.0 + }, + { + "word": " so", + "start": 406.14, + "end": 406.24, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 406.24, + "end": 406.36, + "probability": 1.0 + }, + { + "word": " could", + "start": 406.36, + "end": 406.5, + "probability": 1.0 + }, + { + "word": " put", + "start": 406.5, + "end": 406.72, + "probability": 0.99951171875 + }, + { + "word": " Pyrmonics", + "start": 406.72, + "end": 407.66, + "probability": 0.615234375 + }, + { + "word": " in", + "start": 407.66, + "end": 408.26, + "probability": 1.0 + }, + { + "word": " there", + "start": 408.26, + "end": 408.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 408.52, + "end": 408.86, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 408.86, + "end": 409.72, + "probability": 1.0 + }, + { + "word": " their", + "start": 409.72, + "end": 409.88, + "probability": 1.0 + }, + { + "word": " pizza.", + "start": 409.88, + "end": 410.14, + "probability": 0.9970703125 + } + ] + }, + { + "id": 201, + "text": "Well, that would be nice.", + "start": 411.08, + "end": 411.94, + "words": [ + { + "word": " Well,", + "start": 411.08, + "end": 411.44, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 411.44, + "end": 411.52, + "probability": 1.0 + }, + { + "word": " would", + "start": 411.52, + "end": 411.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 411.62, + "end": 411.74, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 411.74, + "end": 411.94, + "probability": 1.0 + } + ] + }, + { + "id": 202, + "text": "I think I'd still prefer the Amazon Dash button, because you could, like, put that on a keychain.", + "start": 412.6, + "end": 415.92, + "words": [ + { + "word": " I", + "start": 412.6, + "end": 412.96, + "probability": 1.0 + }, + { + "word": " think", + "start": 412.96, + "end": 413.14, + "probability": 1.0 + }, + { + "word": " I'd", + "start": 413.14, + "end": 413.32, + "probability": 0.8515625 + }, + { + "word": " still", + "start": 413.32, + "end": 413.52, + "probability": 1.0 + }, + { + "word": " prefer", + "start": 413.52, + "end": 413.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 413.78, + "end": 413.96, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 413.96, + "end": 414.18, + "probability": 1.0 + }, + { + "word": " Dash", + "start": 414.18, + "end": 414.5, + "probability": 0.98681640625 + }, + { + "word": " button,", + "start": 414.5, + "end": 414.74, + "probability": 0.99658203125 + }, + { + "word": " because", + "start": 414.84, + "end": 414.94, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 414.94, + "end": 415.04, + "probability": 1.0 + }, + { + "word": " could,", + "start": 415.04, + "end": 415.14, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 415.14, + "end": 415.24, + "probability": 1.0 + }, + { + "word": " put", + "start": 415.24, + "end": 415.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 415.3, + "end": 415.4, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 415.4, + "end": 415.52, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 415.52, + "end": 415.58, + "probability": 0.96533203125 + }, + { + "word": " keychain.", + "start": 415.58, + "end": 415.92, + "probability": 0.99267578125 + } + ] + }, + { + "id": 203, + "text": "It'd be way more...", + "start": 415.96, + "end": 416.64, + "words": [ + { + "word": " It'd", + "start": 415.96, + "end": 416.1, + "probability": 0.48486328125 + }, + { + "word": " be", + "start": 416.1, + "end": 416.16, + "probability": 1.0 + }, + { + "word": " way", + "start": 416.16, + "end": 416.32, + "probability": 1.0 + }, + { + "word": " more...", + "start": 416.32, + "end": 416.64, + "probability": 0.60546875 + } + ] + }, + { + "id": 204, + "text": "And these shoes are terrible looking, too, so...", + "start": 416.64, + "end": 418.46, + "words": [ + { + "word": " And", + "start": 416.64, + "end": 416.72, + "probability": 0.8916015625 + }, + { + "word": " these", + "start": 416.72, + "end": 416.86, + "probability": 0.994140625 + }, + { + "word": " shoes", + "start": 416.86, + "end": 417.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 417.18, + "end": 417.34, + "probability": 1.0 + }, + { + "word": " terrible", + "start": 417.34, + "end": 417.6, + "probability": 0.99951171875 + }, + { + "word": " looking,", + "start": 417.6, + "end": 417.84, + "probability": 0.8173828125 + }, + { + "word": " too,", + "start": 417.94, + "end": 418.12, + "probability": 1.0 + }, + { + "word": " so...", + "start": 418.18, + "end": 418.46, + "probability": 0.966796875 + } + ] + }, + { + "id": 205, + "text": "They're kind of ugly.", + "start": 418.46, + "end": 419.1, + "words": [ + { + "word": " They're", + "start": 418.46, + "end": 418.68, + "probability": 0.99609375 + }, + { + "word": " kind", + "start": 418.68, + "end": 418.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 418.8, + "end": 418.9, + "probability": 1.0 + }, + { + "word": " ugly.", + "start": 418.9, + "end": 419.1, + "probability": 1.0 + } + ] + }, + { + "id": 206, + "text": "We'll put them in the show notes so you can see them.", + "start": 419.24, + "end": 420.86, + "words": [ + { + "word": " We'll", + "start": 419.24, + "end": 419.56, + "probability": 0.9990234375 + }, + { + "word": " put", + "start": 419.56, + "end": 419.68, + "probability": 1.0 + }, + { + "word": " them", + "start": 419.68, + "end": 419.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 419.74, + "end": 419.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 419.88, + "end": 419.92, + "probability": 1.0 + }, + { + "word": " show", + "start": 419.92, + "end": 420.1, + "probability": 0.99951171875 + }, + { + "word": " notes", + "start": 420.1, + "end": 420.26, + "probability": 0.9873046875 + }, + { + "word": " so", + "start": 420.26, + "end": 420.46, + "probability": 0.98876953125 + }, + { + "word": " you", + "start": 420.46, + "end": 420.48, + "probability": 0.9052734375 + }, + { + "word": " can", + "start": 420.48, + "end": 420.6, + "probability": 1.0 + }, + { + "word": " see", + "start": 420.6, + "end": 420.76, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 420.76, + "end": 420.86, + "probability": 1.0 + } + ] + }, + { + "id": 207, + "text": "I think if you order them and put them away in 10 years, they might be worth something,", + "start": 421.08, + "end": 425.58, + "words": [ + { + "word": " I", + "start": 421.08, + "end": 421.4, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 421.4, + "end": 421.56, + "probability": 1.0 + }, + { + "word": " if", + "start": 421.56, + "end": 421.68, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 421.68, + "end": 421.82, + "probability": 1.0 + }, + { + "word": " order", + "start": 421.82, + "end": 422.02, + "probability": 1.0 + }, + { + "word": " them", + "start": 422.02, + "end": 422.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 422.26, + "end": 422.36, + "probability": 1.0 + }, + { + "word": " put", + "start": 422.36, + "end": 422.54, + "probability": 1.0 + }, + { + "word": " them", + "start": 422.54, + "end": 422.68, + "probability": 1.0 + }, + { + "word": " away", + "start": 422.68, + "end": 422.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 422.92, + "end": 423.64, + "probability": 0.98193359375 + }, + { + "word": " 10", + "start": 423.64, + "end": 424.18, + "probability": 0.7216796875 + }, + { + "word": " years,", + "start": 424.18, + "end": 424.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 424.5, + "end": 424.6, + "probability": 0.9990234375 + }, + { + "word": " might", + "start": 424.6, + "end": 424.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 424.82, + "end": 425.02, + "probability": 1.0 + }, + { + "word": " worth", + "start": 425.02, + "end": 425.26, + "probability": 0.99951171875 + }, + { + "word": " something,", + "start": 425.26, + "end": 425.58, + "probability": 1.0 + } + ] + }, + { + "id": 208, + "text": "because no one's popping it up.", + "start": 425.68, + "end": 427.02, + "words": [ + { + "word": " because", + "start": 425.68, + "end": 425.88, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 425.88, + "end": 426.24, + "probability": 0.99951171875 + }, + { + "word": " one's", + "start": 426.24, + "end": 426.46, + "probability": 0.99951171875 + }, + { + "word": " popping", + "start": 426.46, + "end": 426.68, + "probability": 0.5205078125 + }, + { + "word": " it", + "start": 426.68, + "end": 426.86, + "probability": 0.7861328125 + }, + { + "word": " up.", + "start": 426.86, + "end": 427.02, + "probability": 1.0 + } + ] + }, + { + "id": 209, + "text": "That's probably true.", + "start": 427.26, + "end": 428.1, + "words": [ + { + "word": " That's", + "start": 427.26, + "end": 427.58, + "probability": 0.9970703125 + }, + { + "word": " probably", + "start": 427.58, + "end": 427.86, + "probability": 1.0 + }, + { + "word": " true.", + "start": 427.86, + "end": 428.1, + "probability": 1.0 + } + ] + }, + { + "id": 210, + "text": "Order them.", + "start": 428.1, + "end": 428.48, + "words": [ + { + "word": " Order", + "start": 428.1, + "end": 428.24, + "probability": 0.41943359375 + }, + { + "word": " them.", + "start": 428.24, + "end": 428.48, + "probability": 1.0 + } + ] + }, + { + "id": 211, + "text": "That's probably true.", + "start": 429.1, + "end": 429.92, + "words": [ + { + "word": " That's", + "start": 429.1, + "end": 429.42, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 429.42, + "end": 429.64, + "probability": 1.0 + }, + { + "word": " true.", + "start": 429.64, + "end": 429.92, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "Their value is mostly as a collector's item.", + "start": 430.04, + "end": 432.04, + "words": [ + { + "word": " Their", + "start": 430.04, + "end": 430.18, + "probability": 0.9951171875 + }, + { + "word": " value", + "start": 430.18, + "end": 430.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 430.68, + "end": 430.88, + "probability": 1.0 + }, + { + "word": " mostly", + "start": 430.88, + "end": 431.12, + "probability": 1.0 + }, + { + "word": " as", + "start": 431.12, + "end": 431.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 431.32, + "end": 431.4, + "probability": 1.0 + }, + { + "word": " collector's", + "start": 431.4, + "end": 431.84, + "probability": 1.0 + }, + { + "word": " item.", + "start": 431.84, + "end": 432.04, + "probability": 1.0 + } + ] + }, + { + "id": 213, + "text": "Yeah.", + "start": 432.82, + "end": 433.14, + "words": [ + { + "word": " Yeah.", + "start": 432.82, + "end": 433.14, + "probability": 0.94384765625 + } + ] + }, + { + "id": 214, + "text": "Thanks for taking my call, Scott.", + "start": 433.18, + "end": 434.22, + "words": [ + { + "word": " Thanks", + "start": 433.18, + "end": 433.42, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 433.42, + "end": 433.54, + "probability": 1.0 + }, + { + "word": " taking", + "start": 433.54, + "end": 433.72, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 433.72, + "end": 433.82, + "probability": 0.63623046875 + }, + { + "word": " call,", + "start": 433.82, + "end": 434.02, + "probability": 0.658203125 + }, + { + "word": " Scott.", + "start": 434.06, + "end": 434.22, + "probability": 0.4794921875 + } + ] + }, + { + "id": 215, + "text": "Yeah, thanks.", + "start": 434.44, + "end": 434.82, + "words": [ + { + "word": " Yeah,", + "start": 434.44, + "end": 434.66, + "probability": 0.96533203125 + }, + { + "word": " thanks.", + "start": 434.66, + "end": 434.82, + "probability": 0.9658203125 + } + ] + }, + { + "id": 216, + "text": "And Pizza Hut's been doing the whole, like, you know, using technology as a gimmick for", + "start": 435.02, + "end": 438.76, + "words": [ + { + "word": " And", + "start": 435.02, + "end": 435.34, + "probability": 0.71875 + }, + { + "word": " Pizza", + "start": 435.34, + "end": 435.7, + "probability": 0.9970703125 + }, + { + "word": " Hut's", + "start": 435.7, + "end": 435.92, + "probability": 0.9951171875 + }, + { + "word": " been", + "start": 435.92, + "end": 436.04, + "probability": 1.0 + }, + { + "word": " doing", + "start": 436.04, + "end": 436.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 436.24, + "end": 436.38, + "probability": 1.0 + }, + { + "word": " whole,", + "start": 436.38, + "end": 436.48, + "probability": 1.0 + }, + { + "word": " like,", + "start": 436.56, + "end": 436.8, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 436.8, + "end": 436.9, + "probability": 0.9716796875 + }, + { + "word": " know,", + "start": 436.9, + "end": 437.06, + "probability": 1.0 + }, + { + "word": " using", + "start": 437.06, + "end": 437.38, + "probability": 1.0 + }, + { + "word": " technology", + "start": 437.38, + "end": 437.92, + "probability": 1.0 + }, + { + "word": " as", + "start": 437.92, + "end": 438.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 438.22, + "end": 438.3, + "probability": 1.0 + }, + { + "word": " gimmick", + "start": 438.3, + "end": 438.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 438.62, + "end": 438.76, + "probability": 1.0 + } + ] + }, + { + "id": 217, + "text": "a long time.", + "start": 438.76, + "end": 439.3, + "words": [ + { + "word": " a", + "start": 438.76, + "end": 438.88, + "probability": 1.0 + }, + { + "word": " long", + "start": 438.88, + "end": 439.04, + "probability": 1.0 + }, + { + "word": " time.", + "start": 439.04, + "end": 439.3, + "probability": 1.0 + } + ] + }, + { + "id": 218, + "text": "I mean, if they're just doing this as a promotional thing, whatever, if they really expect for", + "start": 439.5, + "end": 443.92, + "words": [ + { + "word": " I", + "start": 439.5, + "end": 439.62, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 439.62, + "end": 439.74, + "probability": 1.0 + }, + { + "word": " if", + "start": 439.76, + "end": 439.9, + "probability": 1.0 + }, + { + "word": " they're", + "start": 439.9, + "end": 440.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 440.06, + "end": 440.22, + "probability": 1.0 + }, + { + "word": " doing", + "start": 440.22, + "end": 440.38, + "probability": 1.0 + }, + { + "word": " this", + "start": 440.38, + "end": 440.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 440.5, + "end": 440.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 440.64, + "end": 440.72, + "probability": 1.0 + }, + { + "word": " promotional", + "start": 440.72, + "end": 441.04, + "probability": 0.9990234375 + }, + { + "word": " thing,", + "start": 441.04, + "end": 441.4, + "probability": 1.0 + }, + { + "word": " whatever,", + "start": 441.56, + "end": 442.06, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 442.2, + "end": 442.52, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 442.52, + "end": 442.64, + "probability": 1.0 + }, + { + "word": " really", + "start": 442.64, + "end": 442.86, + "probability": 1.0 + }, + { + "word": " expect", + "start": 442.86, + "end": 443.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 443.24, + "end": 443.92, + "probability": 0.72705078125 + } + ] + }, + { + "id": 219, + "text": "the...", + "start": 443.92, + "end": 444.06, + "words": [ + { + "word": " the...", + "start": 443.92, + "end": 444.06, + "probability": 0.9921875 + } + ] + }, + { + "id": 220, + "text": "I don't think they really expect for this to be a thing.", + "start": 444.06, + "end": 445.78, + "words": [ + { + "word": " I", + "start": 444.06, + "end": 444.18, + "probability": 0.99267578125 + }, + { + "word": " don't", + "start": 444.18, + "end": 444.3, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 444.3, + "end": 444.42, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 444.42, + "end": 444.56, + "probability": 1.0 + }, + { + "word": " really", + "start": 444.56, + "end": 444.72, + "probability": 1.0 + }, + { + "word": " expect", + "start": 444.72, + "end": 445.0, + "probability": 1.0 + }, + { + "word": " for", + "start": 445.0, + "end": 445.2, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 445.2, + "end": 445.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 445.3, + "end": 445.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 445.42, + "end": 445.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 445.5, + "end": 445.6, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 445.6, + "end": 445.78, + "probability": 1.0 + } + ] + }, + { + "id": 221, + "text": "I don't either.", + "start": 445.96, + "end": 446.4, + "words": [ + { + "word": " I", + "start": 445.96, + "end": 446.06, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 446.06, + "end": 446.18, + "probability": 1.0 + }, + { + "word": " either.", + "start": 446.18, + "end": 446.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 222, + "text": "You know, besides...", + "start": 446.58, + "end": 447.7, + "words": [ + { + "word": " You", + "start": 446.58, + "end": 446.8, + "probability": 0.47900390625 + }, + { + "word": " know,", + "start": 446.8, + "end": 447.0, + "probability": 1.0 + }, + { + "word": " besides...", + "start": 447.0, + "end": 447.7, + "probability": 0.541015625 + } + ] + }, + { + "id": 223, + "text": "Even if they do expect it, it's not going to be...", + "start": 447.7, + "end": 450.16, + "words": [ + { + "word": " Even", + "start": 447.7, + "end": 448.48, + "probability": 0.9892578125 + }, + { + "word": " if", + "start": 448.48, + "end": 448.64, + "probability": 1.0 + }, + { + "word": " they", + "start": 448.64, + "end": 448.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 448.76, + "end": 448.92, + "probability": 1.0 + }, + { + "word": " expect", + "start": 448.92, + "end": 449.26, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 449.26, + "end": 449.42, + "probability": 0.98388671875 + }, + { + "word": " it's", + "start": 449.46, + "end": 449.52, + "probability": 1.0 + }, + { + "word": " not", + "start": 449.52, + "end": 449.64, + "probability": 1.0 + }, + { + "word": " going", + "start": 449.64, + "end": 449.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 449.82, + "end": 450.0, + "probability": 1.0 + }, + { + "word": " be...", + "start": 450.0, + "end": 450.16, + "probability": 0.921875 + } + ] + }, + { + "id": 224, + "text": "Stop trying to make it happen.", + "start": 450.16, + "end": 451.1, + "words": [ + { + "word": " Stop", + "start": 450.16, + "end": 450.38, + "probability": 0.9951171875 + }, + { + "word": " trying", + "start": 450.38, + "end": 450.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 450.56, + "end": 450.68, + "probability": 1.0 + }, + { + "word": " make", + "start": 450.68, + "end": 450.78, + "probability": 1.0 + }, + { + "word": " it", + "start": 450.78, + "end": 450.86, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 450.86, + "end": 451.1, + "probability": 1.0 + } + ] + }, + { + "id": 225, + "text": "I heard that McDonald's was considering doing delivery, so maybe their shoes would be...", + "start": 451.8, + "end": 457.0, + "words": [ + { + "word": " I", + "start": 451.8, + "end": 452.24, + "probability": 0.9970703125 + }, + { + "word": " heard", + "start": 452.24, + "end": 452.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 452.56, + "end": 452.74, + "probability": 1.0 + }, + { + "word": " McDonald's", + "start": 452.74, + "end": 453.5, + "probability": 0.99609375 + }, + { + "word": " was", + "start": 453.5, + "end": 453.6, + "probability": 1.0 + }, + { + "word": " considering", + "start": 453.6, + "end": 453.96, + "probability": 1.0 + }, + { + "word": " doing", + "start": 453.96, + "end": 454.3, + "probability": 1.0 + }, + { + "word": " delivery,", + "start": 454.3, + "end": 454.7, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 454.86, + "end": 455.08, + "probability": 0.99951171875 + }, + { + "word": " maybe", + "start": 455.08, + "end": 455.34, + "probability": 1.0 + }, + { + "word": " their", + "start": 455.34, + "end": 455.66, + "probability": 1.0 + }, + { + "word": " shoes", + "start": 455.66, + "end": 455.92, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 455.92, + "end": 456.24, + "probability": 1.0 + }, + { + "word": " be...", + "start": 456.24, + "end": 457.0, + "probability": 1.0 + } + ] + }, + { + "id": 226, + "text": "Like, I'd have, like, a spicy McChicken shoe thing, I guess, maybe.", + "start": 457.0, + "end": 459.88, + "words": [ + { + "word": " Like,", + "start": 457.0, + "end": 457.44, + "probability": 0.9609375 + }, + { + "word": " I'd", + "start": 457.44, + "end": 457.54, + "probability": 1.0 + }, + { + "word": " have,", + "start": 457.54, + "end": 457.66, + "probability": 1.0 + }, + { + "word": " like,", + "start": 457.72, + "end": 457.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 457.84, + "end": 457.96, + "probability": 1.0 + }, + { + "word": " spicy", + "start": 457.96, + "end": 458.18, + "probability": 0.62646484375 + }, + { + "word": " McChicken", + "start": 458.18, + "end": 458.74, + "probability": 0.99169921875 + }, + { + "word": " shoe", + "start": 458.74, + "end": 459.04, + "probability": 0.99951171875 + }, + { + "word": " thing,", + "start": 459.04, + "end": 459.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 459.42, + "end": 459.54, + "probability": 1.0 + }, + { + "word": " guess,", + "start": 459.54, + "end": 459.72, + "probability": 1.0 + }, + { + "word": " maybe.", + "start": 459.72, + "end": 459.88, + "probability": 1.0 + } + ] + }, + { + "id": 227, + "text": "A spicy McChicken shoe.", + "start": 460.22, + "end": 461.86, + "words": [ + { + "word": " A", + "start": 460.22, + "end": 460.66, + "probability": 0.99951171875 + }, + { + "word": " spicy", + "start": 460.66, + "end": 460.94, + "probability": 0.99951171875 + }, + { + "word": " McChicken", + "start": 460.94, + "end": 461.6, + "probability": 0.99951171875 + }, + { + "word": " shoe.", + "start": 461.6, + "end": 461.86, + "probability": 1.0 + } + ] + }, + { + "id": 228, + "text": "Yeah.", + "start": 462.14, + "end": 462.54, + "words": [ + { + "word": " Yeah.", + "start": 462.14, + "end": 462.54, + "probability": 0.99658203125 + } + ] + }, + { + "id": 229, + "text": "Like, I could want a $1 item from McDonald's far more frequently than I would want a pizza,", + "start": 462.66, + "end": 467.04, + "words": [ + { + "word": " Like,", + "start": 462.66, + "end": 463.1, + "probability": 0.99365234375 + }, + { + "word": " I", + "start": 463.14, + "end": 463.24, + "probability": 1.0 + }, + { + "word": " could", + "start": 463.24, + "end": 463.38, + "probability": 1.0 + }, + { + "word": " want", + "start": 463.38, + "end": 463.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 463.62, + "end": 463.84, + "probability": 1.0 + }, + { + "word": " $1", + "start": 463.84, + "end": 464.32, + "probability": 0.974609375 + }, + { + "word": " item", + "start": 464.32, + "end": 464.64, + "probability": 0.998046875 + }, + { + "word": " from", + "start": 464.64, + "end": 464.86, + "probability": 0.99365234375 + }, + { + "word": " McDonald's", + "start": 464.86, + "end": 465.34, + "probability": 1.0 + }, + { + "word": " far", + "start": 465.34, + "end": 465.52, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 465.52, + "end": 465.76, + "probability": 1.0 + }, + { + "word": " frequently", + "start": 465.76, + "end": 466.08, + "probability": 1.0 + }, + { + "word": " than", + "start": 466.08, + "end": 466.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 466.34, + "end": 466.42, + "probability": 1.0 + }, + { + "word": " would", + "start": 466.42, + "end": 466.54, + "probability": 1.0 + }, + { + "word": " want", + "start": 466.54, + "end": 466.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 466.7, + "end": 466.78, + "probability": 1.0 + }, + { + "word": " pizza,", + "start": 466.78, + "end": 467.04, + "probability": 1.0 + } + ] + }, + { + "id": 230, + "text": "you know?", + "start": 467.14, + "end": 467.74, + "words": [ + { + "word": " you", + "start": 467.14, + "end": 467.6, + "probability": 1.0 + }, + { + "word": " know?", + "start": 467.6, + "end": 467.74, + "probability": 1.0 + } + ] + }, + { + "id": 231, + "text": "I don't know.", + "start": 469.22, + "end": 469.88, + "words": [ + { + "word": " I", + "start": 469.22, + "end": 469.66, + "probability": 1.0 + }, + { + "word": " don't", + "start": 469.66, + "end": 469.8, + "probability": 1.0 + }, + { + "word": " know.", + "start": 469.8, + "end": 469.88, + "probability": 1.0 + } + ] + }, + { + "id": 232, + "text": "It's a toss-up for me.", + "start": 469.92, + "end": 470.72, + "words": [ + { + "word": " It's", + "start": 469.92, + "end": 470.08, + "probability": 0.9716796875 + }, + { + "word": " a", + "start": 470.08, + "end": 470.1, + "probability": 1.0 + }, + { + "word": " toss", + "start": 470.1, + "end": 470.3, + "probability": 1.0 + }, + { + "word": "-up", + "start": 470.3, + "end": 470.44, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 470.44, + "end": 470.6, + "probability": 1.0 + }, + { + "word": " me.", + "start": 470.6, + "end": 470.72, + "probability": 1.0 + } + ] + }, + { + "id": 233, + "text": "I know me gusta on equal levels.", + "start": 471.0, + "end": 473.8, + "words": [ + { + "word": " I", + "start": 471.0, + "end": 471.44, + "probability": 0.9228515625 + }, + { + "word": " know", + "start": 471.44, + "end": 472.5, + "probability": 0.5947265625 + }, + { + "word": " me", + "start": 472.5, + "end": 472.64, + "probability": 0.94287109375 + }, + { + "word": " gusta", + "start": 472.64, + "end": 472.92, + "probability": 0.9150390625 + }, + { + "word": " on", + "start": 472.92, + "end": 473.2, + "probability": 1.0 + }, + { + "word": " equal", + "start": 473.2, + "end": 473.42, + "probability": 1.0 + }, + { + "word": " levels.", + "start": 473.42, + "end": 473.8, + "probability": 1.0 + } + ] + }, + { + "id": 234, + "text": "Do not want.", + "start": 474.26, + "end": 475.24, + "words": [ + { + "word": " Do", + "start": 474.26, + "end": 474.7, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 474.7, + "end": 474.96, + "probability": 1.0 + }, + { + "word": " want.", + "start": 474.96, + "end": 475.24, + "probability": 1.0 + } + ] + }, + { + "id": 235, + "text": "Say what you will about everything else at McDonald's, but the spicy McChicken's pretty", + "start": 476.48, + "end": 479.6, + "words": [ + { + "word": " Say", + "start": 476.48, + "end": 476.8, + "probability": 0.89111328125 + }, + { + "word": " what", + "start": 476.8, + "end": 476.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 476.96, + "end": 477.04, + "probability": 1.0 + }, + { + "word": " will", + "start": 477.04, + "end": 477.14, + "probability": 1.0 + }, + { + "word": " about", + "start": 477.14, + "end": 477.3, + "probability": 0.9990234375 + }, + { + "word": " everything", + "start": 477.3, + "end": 477.72, + "probability": 0.99951171875 + }, + { + "word": " else", + "start": 477.72, + "end": 478.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 478.02, + "end": 478.16, + "probability": 0.99755859375 + }, + { + "word": " McDonald's,", + "start": 478.16, + "end": 478.6, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 478.62, + "end": 478.68, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 478.68, + "end": 478.8, + "probability": 0.99951171875 + }, + { + "word": " spicy", + "start": 478.8, + "end": 478.98, + "probability": 0.8193359375 + }, + { + "word": " McChicken's", + "start": 478.98, + "end": 479.48, + "probability": 0.71728515625 + }, + { + "word": " pretty", + "start": 479.48, + "end": 479.6, + "probability": 1.0 + } + ] + }, + { + "id": 236, + "text": "good.", + "start": 479.6, + "end": 479.8, + "words": [ + { + "word": " good.", + "start": 479.6, + "end": 479.8, + "probability": 1.0 + } + ] + }, + { + "id": 237, + "text": "The spicy chicken is not bad, with the exception of the non-chicken parts of...", + "start": 479.92, + "end": 484.52, + "words": [ + { + "word": " The", + "start": 479.92, + "end": 480.16, + "probability": 0.99853515625 + }, + { + "word": " spicy", + "start": 480.16, + "end": 480.44, + "probability": 0.9931640625 + }, + { + "word": " chicken", + "start": 480.44, + "end": 480.88, + "probability": 0.9560546875 + }, + { + "word": " is", + "start": 480.88, + "end": 481.1, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 481.1, + "end": 481.32, + "probability": 1.0 + }, + { + "word": " bad,", + "start": 481.32, + "end": 481.82, + "probability": 0.98388671875 + }, + { + "word": " with", + "start": 482.08, + "end": 482.24, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 482.24, + "end": 482.38, + "probability": 1.0 + }, + { + "word": " exception", + "start": 482.38, + "end": 482.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 482.7, + "end": 482.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 482.98, + "end": 483.14, + "probability": 1.0 + }, + { + "word": " non", + "start": 483.14, + "end": 483.38, + "probability": 1.0 + }, + { + "word": "-chicken", + "start": 483.38, + "end": 483.68, + "probability": 1.0 + }, + { + "word": " parts", + "start": 483.68, + "end": 483.92, + "probability": 0.99951171875 + }, + { + "word": " of...", + "start": 483.92, + "end": 484.52, + "probability": 0.32080078125 + } + ] + }, + { + "id": 238, + "text": "I always have to tell them I'm allergic to lettuce, though, because their lettuce is", + "start": 484.52, + "end": 487.36, + "words": [ + { + "word": " I", + "start": 484.52, + "end": 484.9, + "probability": 0.99853515625 + }, + { + "word": " always", + "start": 484.9, + "end": 485.0, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 485.0, + "end": 485.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 485.14, + "end": 485.24, + "probability": 1.0 + }, + { + "word": " tell", + "start": 485.24, + "end": 485.4, + "probability": 1.0 + }, + { + "word": " them", + "start": 485.4, + "end": 485.54, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 485.54, + "end": 485.7, + "probability": 0.9990234375 + }, + { + "word": " allergic", + "start": 485.7, + "end": 485.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 485.88, + "end": 486.14, + "probability": 1.0 + }, + { + "word": " lettuce,", + "start": 486.14, + "end": 486.36, + "probability": 1.0 + }, + { + "word": " though,", + "start": 486.48, + "end": 486.58, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 486.62, + "end": 486.84, + "probability": 1.0 + }, + { + "word": " their", + "start": 486.84, + "end": 487.0, + "probability": 1.0 + }, + { + "word": " lettuce", + "start": 487.0, + "end": 487.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 487.2, + "end": 487.36, + "probability": 1.0 + } + ] + }, + { + "id": 239, + "text": "terrible, and I don't want any of that.", + "start": 487.36, + "end": 489.16, + "words": [ + { + "word": " terrible,", + "start": 487.36, + "end": 487.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 487.84, + "end": 488.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 488.4, + "end": 488.48, + "probability": 1.0 + }, + { + "word": " don't", + "start": 488.48, + "end": 488.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 488.6, + "end": 488.68, + "probability": 1.0 + }, + { + "word": " any", + "start": 488.68, + "end": 488.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 488.84, + "end": 488.96, + "probability": 1.0 + }, + { + "word": " that.", + "start": 488.96, + "end": 489.16, + "probability": 1.0 + } + ] + }, + { + "id": 240, + "text": "Yeah.", + "start": 489.68, + "end": 490.0, + "words": [ + { + "word": " Yeah.", + "start": 489.68, + "end": 490.0, + "probability": 0.99658203125 + } + ] + }, + { + "id": 241, + "text": "It's like...", + "start": 490.26, + "end": 490.88, + "words": [ + { + "word": " It's", + "start": 490.26, + "end": 490.58, + "probability": 0.9970703125 + }, + { + "word": " like...", + "start": 490.58, + "end": 490.88, + "probability": 0.6025390625 + } + ] + }, + { + "id": 242, + "text": "Oh.", + "start": 491.40000000000003, + "end": 491.72, + "words": [ + { + "word": " Oh.", + "start": 491.40000000000003, + "end": 491.72, + "probability": 0.22412109375 + } + ] + }, + { + "id": 243, + "text": "It's like reconstituted, and it's terrible.", + "start": 491.84, + "end": 493.98, + "words": [ + { + "word": " It's", + "start": 491.84, + "end": 492.06, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 492.06, + "end": 492.2, + "probability": 0.93115234375 + }, + { + "word": " reconstituted,", + "start": 492.2, + "end": 493.32, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 493.34, + "end": 493.52, + "probability": 1.0 + }, + { + "word": " it's", + "start": 493.52, + "end": 493.66, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 493.66, + "end": 493.98, + "probability": 0.9951171875 + } + ] + }, + { + "id": 244, + "text": "Yeah, it's horrible.", + "start": 494.1, + "end": 494.58, + "words": [ + { + "word": " Yeah,", + "start": 494.1, + "end": 494.24, + "probability": 0.91259765625 + }, + { + "word": " it's", + "start": 494.28, + "end": 494.34, + "probability": 1.0 + }, + { + "word": " horrible.", + "start": 494.34, + "end": 494.58, + "probability": 1.0 + } + ] + }, + { + "id": 245, + "text": "When I said iceberg lettuce, I didn't mean it was in a freezer for, like, 10 hours.", + "start": 494.62, + "end": 497.7, + "words": [ + { + "word": " When", + "start": 494.62, + "end": 494.72, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 494.72, + "end": 494.8, + "probability": 1.0 + }, + { + "word": " said", + "start": 494.8, + "end": 494.98, + "probability": 1.0 + }, + { + "word": " iceberg", + "start": 494.98, + "end": 495.22, + "probability": 0.99560546875 + }, + { + "word": " lettuce,", + "start": 495.22, + "end": 495.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 495.6, + "end": 495.7, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 495.7, + "end": 495.86, + "probability": 1.0 + }, + { + "word": " mean", + "start": 495.86, + "end": 495.98, + "probability": 1.0 + }, + { + "word": " it", + "start": 495.98, + "end": 496.08, + "probability": 1.0 + }, + { + "word": " was", + "start": 496.08, + "end": 496.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 496.2, + "end": 496.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 496.28, + "end": 496.38, + "probability": 0.99951171875 + }, + { + "word": " freezer", + "start": 496.38, + "end": 496.6, + "probability": 1.0 + }, + { + "word": " for,", + "start": 496.6, + "end": 496.82, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 496.88, + "end": 497.06, + "probability": 1.0 + }, + { + "word": " 10", + "start": 497.06, + "end": 497.44, + "probability": 0.410888671875 + }, + { + "word": " hours.", + "start": 497.44, + "end": 497.7, + "probability": 1.0 + } + ] + }, + { + "id": 246, + "text": "There you go.", + "start": 499.40000000000003, + "end": 500.12, + "words": [ + { + "word": " There", + "start": 499.40000000000003, + "end": 499.72, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 499.72, + "end": 499.92, + "probability": 1.0 + }, + { + "word": " go.", + "start": 499.92, + "end": 500.12, + "probability": 1.0 + } + ] + }, + { + "id": 247, + "text": "You got your mojo back.", + "start": 500.18, + "end": 501.06, + "words": [ + { + "word": " You", + "start": 500.18, + "end": 500.3, + "probability": 0.99755859375 + }, + { + "word": " got", + "start": 500.3, + "end": 500.44, + "probability": 0.5537109375 + }, + { + "word": " your", + "start": 500.44, + "end": 500.58, + "probability": 1.0 + }, + { + "word": " mojo", + "start": 500.58, + "end": 500.88, + "probability": 0.9990234375 + }, + { + "word": " back.", + "start": 500.88, + "end": 501.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 248, + "text": "Yeah.", + "start": 501.38, + "end": 501.4, + "words": [ + { + "word": " Yeah.", + "start": 501.38, + "end": 501.4, + "probability": 0.5830078125 + } + ] + }, + { + "id": 249, + "text": "There it is.", + "start": 501.4, + "end": 501.78, + "words": [ + { + "word": " There", + "start": 501.4, + "end": 501.52, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 501.52, + "end": 501.66, + "probability": 1.0 + }, + { + "word": " is.", + "start": 501.66, + "end": 501.78, + "probability": 1.0 + } + ] + }, + { + "id": 250, + "text": "You can be the silly one now.", + "start": 501.84, + "end": 503.76, + "words": [ + { + "word": " You", + "start": 501.84, + "end": 502.16, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 502.16, + "end": 502.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 502.3, + "end": 502.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 502.44, + "end": 502.98, + "probability": 0.998046875 + }, + { + "word": " silly", + "start": 502.98, + "end": 503.18, + "probability": 0.99755859375 + }, + { + "word": " one", + "start": 503.18, + "end": 503.46, + "probability": 1.0 + }, + { + "word": " now.", + "start": 503.46, + "end": 503.76, + "probability": 0.99755859375 + } + ] + }, + { + "id": 251, + "text": "All right.", + "start": 504.78000000000003, + "end": 505.18, + "words": [ + { + "word": " All", + "start": 504.78000000000003, + "end": 505.1, + "probability": 0.9736328125 + }, + { + "word": " right.", + "start": 505.1, + "end": 505.18, + "probability": 1.0 + } + ] + }, + { + "id": 252, + "text": "Let's take a moment.", + "start": 505.2, + "end": 505.84, + "words": [ + { + "word": " Let's", + "start": 505.2, + "end": 505.36, + "probability": 0.9892578125 + }, + { + "word": " take", + "start": 505.36, + "end": 505.5, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 505.5, + "end": 505.68, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 505.68, + "end": 505.84, + "probability": 1.0 + } + ] + }, + { + "id": 253, + "text": "I forgot to mention our sponsor.", + "start": 505.96, + "end": 506.54, + "words": [ + { + "word": " I", + "start": 505.96, + "end": 506.04, + "probability": 0.03472900390625 + }, + { + "word": " forgot", + "start": 506.04, + "end": 506.04, + "probability": 0.07867431640625 + }, + { + "word": " to", + "start": 506.04, + "end": 506.04, + "probability": 0.99365234375 + }, + { + "word": " mention", + "start": 506.04, + "end": 506.08, + "probability": 0.99853515625 + }, + { + "word": " our", + "start": 506.08, + "end": 506.26, + "probability": 0.990234375 + }, + { + "word": " sponsor.", + "start": 506.26, + "end": 506.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 254, + "text": "That would be Perfection Auto Works.", + "start": 506.62, + "end": 508.22, + "words": [ + { + "word": " That", + "start": 506.62, + "end": 506.72, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 506.72, + "end": 506.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 506.82, + "end": 506.94, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 506.94, + "end": 507.56, + "probability": 0.994140625 + }, + { + "word": " Auto", + "start": 507.56, + "end": 507.88, + "probability": 0.8837890625 + }, + { + "word": " Works.", + "start": 507.88, + "end": 508.22, + "probability": 0.95751953125 + } + ] + }, + { + "id": 255, + "text": "They can do wonderful things for your vehicle, and you should probably check them out.", + "start": 509.20000000000005, + "end": 512.9, + "words": [ + { + "word": " They", + "start": 509.20000000000005, + "end": 509.6, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 509.6, + "end": 510.0, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 510.0, + "end": 510.16, + "probability": 1.0 + }, + { + "word": " wonderful", + "start": 510.16, + "end": 510.4, + "probability": 1.0 + }, + { + "word": " things", + "start": 510.4, + "end": 510.66, + "probability": 1.0 + }, + { + "word": " for", + "start": 510.66, + "end": 510.84, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 510.84, + "end": 510.94, + "probability": 1.0 + }, + { + "word": " vehicle,", + "start": 510.94, + "end": 511.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 511.24, + "end": 511.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 511.42, + "end": 511.58, + "probability": 1.0 + }, + { + "word": " should", + "start": 511.58, + "end": 511.78, + "probability": 1.0 + }, + { + "word": " probably", + "start": 511.78, + "end": 512.04, + "probability": 1.0 + }, + { + "word": " check", + "start": 512.04, + "end": 512.36, + "probability": 1.0 + }, + { + "word": " them", + "start": 512.36, + "end": 512.62, + "probability": 1.0 + }, + { + "word": " out.", + "start": 512.62, + "end": 512.9, + "probability": 1.0 + } + ] + }, + { + "id": 256, + "text": "Maybe they should make, like, an oil change shoe button.", + "start": 513.1, + "end": 514.96, + "words": [ + { + "word": " Maybe", + "start": 513.1, + "end": 513.28, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 513.28, + "end": 513.42, + "probability": 1.0 + }, + { + "word": " should", + "start": 513.42, + "end": 513.56, + "probability": 1.0 + }, + { + "word": " make,", + "start": 513.56, + "end": 513.76, + "probability": 1.0 + }, + { + "word": " like,", + "start": 513.78, + "end": 513.9, + "probability": 1.0 + }, + { + "word": " an", + "start": 513.92, + "end": 514.0, + "probability": 1.0 + }, + { + "word": " oil", + "start": 514.0, + "end": 514.18, + "probability": 0.99951171875 + }, + { + "word": " change", + "start": 514.18, + "end": 514.44, + "probability": 0.99658203125 + }, + { + "word": " shoe", + "start": 514.44, + "end": 514.72, + "probability": 0.99951171875 + }, + { + "word": " button.", + "start": 514.72, + "end": 514.96, + "probability": 1.0 + } + ] + }, + { + "id": 257, + "text": "Oh, yeah.", + "start": 515.28, + "end": 516.02, + "words": [ + { + "word": " Oh,", + "start": 515.28, + "end": 515.64, + "probability": 0.99951171875 + }, + { + "word": " yeah.", + "start": 515.76, + "end": 516.02, + "probability": 1.0 + } + ] + }, + { + "id": 258, + "text": "Mike, get an oil change...", + "start": 516.06, + "end": 518.06, + "words": [ + { + "word": " Mike,", + "start": 516.06, + "end": 516.22, + "probability": 0.96435546875 + }, + { + "word": " get", + "start": 516.34, + "end": 516.46, + "probability": 0.99658203125 + }, + { + "word": " an", + "start": 516.46, + "end": 516.94, + "probability": 0.99169921875 + }, + { + "word": " oil", + "start": 516.94, + "end": 517.6, + "probability": 1.0 + }, + { + "word": " change...", + "start": 517.6, + "end": 518.06, + "probability": 0.51904296875 + } + ] + }, + { + "id": 259, + "text": "Make Perfection Auto Works shoes.", + "start": 518.06, + "end": 520.22, + "words": [ + { + "word": " Make", + "start": 518.06, + "end": 518.46, + "probability": 0.94384765625 + }, + { + "word": " Perfection", + "start": 518.46, + "end": 519.38, + "probability": 0.9990234375 + }, + { + "word": " Auto", + "start": 519.38, + "end": 519.64, + "probability": 0.99951171875 + }, + { + "word": " Works", + "start": 519.64, + "end": 519.9, + "probability": 0.9990234375 + }, + { + "word": " shoes.", + "start": 519.9, + "end": 520.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 260, + "text": "See, if you had an Amazon Dash button, you could put it on your dash.", + "start": 520.82, + "end": 523.94, + "words": [ + { + "word": " See,", + "start": 520.82, + "end": 521.22, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 521.26, + "end": 521.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 521.36, + "end": 521.46, + "probability": 1.0 + }, + { + "word": " had", + "start": 521.46, + "end": 521.6, + "probability": 1.0 + }, + { + "word": " an", + "start": 521.6, + "end": 521.76, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 521.76, + "end": 521.98, + "probability": 1.0 + }, + { + "word": " Dash", + "start": 521.98, + "end": 522.32, + "probability": 0.83349609375 + }, + { + "word": " button,", + "start": 522.32, + "end": 522.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 522.8, + "end": 523.0, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 523.0, + "end": 523.12, + "probability": 1.0 + }, + { + "word": " put", + "start": 523.12, + "end": 523.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 523.26, + "end": 523.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 523.34, + "end": 523.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 523.44, + "end": 523.58, + "probability": 1.0 + }, + { + "word": " dash.", + "start": 523.58, + "end": 523.94, + "probability": 0.6982421875 + } + ] + }, + { + "id": 261, + "text": "I have to...", + "start": 524.08, + "end": 524.8, + "words": [ + { + "word": " I", + "start": 524.08, + "end": 524.46, + "probability": 0.8662109375 + }, + { + "word": " have", + "start": 524.46, + "end": 524.64, + "probability": 0.998046875 + }, + { + "word": " to...", + "start": 524.64, + "end": 524.8, + "probability": 0.97607421875 + } + ] + }, + { + "id": 262, + "text": "Oh.", + "start": 524.8, + "end": 525.02, + "words": [ + { + "word": " Oh.", + "start": 524.8, + "end": 525.02, + "probability": 0.68310546875 + } + ] + }, + { + "id": 263, + "text": "Yeah.", + "start": 525.44, + "end": 525.84, + "words": [ + { + "word": " Yeah.", + "start": 525.44, + "end": 525.84, + "probability": 0.6728515625 + } + ] + }, + { + "id": 264, + "text": "I have to get my driving shoes on.", + "start": 525.96, + "end": 527.84, + "words": [ + { + "word": " I", + "start": 525.96, + "end": 526.16, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 526.16, + "end": 526.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 526.3, + "end": 526.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 526.36, + "end": 526.5, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 526.5, + "end": 526.66, + "probability": 0.99951171875 + }, + { + "word": " driving", + "start": 526.66, + "end": 527.1, + "probability": 0.99609375 + }, + { + "word": " shoes", + "start": 527.1, + "end": 527.38, + "probability": 1.0 + }, + { + "word": " on.", + "start": 527.38, + "end": 527.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 265, + "text": "On their high tops.", + "start": 529.66, + "end": 530.8, + "words": [ + { + "word": " On", + "start": 529.66, + "end": 530.06, + "probability": 0.75390625 + }, + { + "word": " their", + "start": 530.06, + "end": 530.3, + "probability": 0.99951171875 + }, + { + "word": " high", + "start": 530.3, + "end": 530.5, + "probability": 0.98583984375 + }, + { + "word": " tops.", + "start": 530.5, + "end": 530.8, + "probability": 0.9892578125 + } + ] + }, + { + "id": 266, + "text": "Anyway, PerfectionAutoWorks.com.", + "start": 533.5200000000001, + "end": 534.76, + "words": [ + { + "word": " Anyway,", + "start": 533.5200000000001, + "end": 533.9200000000001, + "probability": 0.998046875 + }, + { + "word": " PerfectionAutoWorks", + "start": 533.9200000000001, + "end": 534.32, + "probability": 0.951171875 + }, + { + "word": ".com.", + "start": 534.32, + "end": 534.76, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "Visit their website.", + "start": 534.82, + "end": 535.62, + "words": [ + { + "word": " Visit", + "start": 534.82, + "end": 535.08, + "probability": 0.998046875 + }, + { + "word": " their", + "start": 535.08, + "end": 535.28, + "probability": 1.0 + }, + { + "word": " website.", + "start": 535.28, + "end": 535.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 268, + "text": "Check out what they can do for your vehicle.", + "start": 535.96, + "end": 537.24, + "words": [ + { + "word": " Check", + "start": 535.96, + "end": 536.04, + "probability": 0.6611328125 + }, + { + "word": " out", + "start": 536.04, + "end": 536.22, + "probability": 1.0 + }, + { + "word": " what", + "start": 536.22, + "end": 536.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 536.34, + "end": 536.48, + "probability": 1.0 + }, + { + "word": " can", + "start": 536.48, + "end": 536.62, + "probability": 1.0 + }, + { + "word": " do", + "start": 536.62, + "end": 536.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 536.74, + "end": 536.88, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 536.88, + "end": 536.98, + "probability": 0.99951171875 + }, + { + "word": " vehicle.", + "start": 536.98, + "end": 537.24, + "probability": 1.0 + } + ] + }, + { + "id": 269, + "text": "26-point inspections are done for free down there, and they will take care of your vehicle", + "start": 537.32, + "end": 542.84, + "words": [ + { + "word": " 26", + "start": 537.32, + "end": 537.58, + "probability": 0.958984375 + }, + { + "word": "-point", + "start": 537.58, + "end": 537.86, + "probability": 0.921875 + }, + { + "word": " inspections", + "start": 537.86, + "end": 538.16, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 538.16, + "end": 538.6, + "probability": 1.0 + }, + { + "word": " done", + "start": 538.6, + "end": 538.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 538.9, + "end": 539.2, + "probability": 1.0 + }, + { + "word": " free", + "start": 539.2, + "end": 539.72, + "probability": 1.0 + }, + { + "word": " down", + "start": 539.72, + "end": 540.18, + "probability": 0.99951171875 + }, + { + "word": " there,", + "start": 540.18, + "end": 540.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 540.58, + "end": 541.2, + "probability": 1.0 + }, + { + "word": " they", + "start": 541.2, + "end": 541.42, + "probability": 1.0 + }, + { + "word": " will", + "start": 541.42, + "end": 541.62, + "probability": 1.0 + }, + { + "word": " take", + "start": 541.62, + "end": 541.84, + "probability": 1.0 + }, + { + "word": " care", + "start": 541.84, + "end": 542.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 542.12, + "end": 542.28, + "probability": 1.0 + }, + { + "word": " your", + "start": 542.28, + "end": 542.4, + "probability": 1.0 + }, + { + "word": " vehicle", + "start": 542.4, + "end": 542.84, + "probability": 1.0 + } + ] + }, + { + "id": 270, + "text": "in a way that will make you feel like the name is deserving of perfection.", + "start": 542.84, + "end": 546.4, + "words": [ + { + "word": " in", + "start": 542.84, + "end": 543.38, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 543.38, + "end": 543.52, + "probability": 1.0 + }, + { + "word": " way", + "start": 543.52, + "end": 543.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 543.68, + "end": 543.82, + "probability": 1.0 + }, + { + "word": " will", + "start": 543.82, + "end": 543.9, + "probability": 1.0 + }, + { + "word": " make", + "start": 543.9, + "end": 544.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 544.1, + "end": 544.28, + "probability": 1.0 + }, + { + "word": " feel", + "start": 544.28, + "end": 544.52, + "probability": 1.0 + }, + { + "word": " like", + "start": 544.52, + "end": 544.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 544.76, + "end": 544.96, + "probability": 0.99951171875 + }, + { + "word": " name", + "start": 544.96, + "end": 545.22, + "probability": 1.0 + }, + { + "word": " is", + "start": 545.22, + "end": 545.42, + "probability": 1.0 + }, + { + "word": " deserving", + "start": 545.42, + "end": 545.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 545.74, + "end": 546.08, + "probability": 0.99853515625 + }, + { + "word": " perfection.", + "start": 546.08, + "end": 546.4, + "probability": 0.994140625 + } + ] + }, + { + "id": 271, + "text": "Perfection Auto Works.", + "start": 546.62, + "end": 547.26, + "words": [ + { + "word": " Perfection", + "start": 546.62, + "end": 546.98, + "probability": 0.958984375 + }, + { + "word": " Auto", + "start": 546.98, + "end": 547.08, + "probability": 0.00498199462890625 + }, + { + "word": " Works.", + "start": 547.08, + "end": 547.26, + "probability": 0.9521484375 + } + ] + }, + { + "id": 272, + "text": "PerfectionAutoWorks.com.", + "start": 547.8, + "end": 548.54, + "words": [ + { + "word": " PerfectionAutoWorks", + "start": 547.8, + "end": 548.24, + "probability": 0.986328125 + }, + { + "word": ".com.", + "start": 548.24, + "end": 548.54, + "probability": 1.0 + } + ] + }, + { + "id": 273, + "text": "Check them out.", + "start": 548.6, + "end": 548.94, + "words": [ + { + "word": " Check", + "start": 548.6, + "end": 548.76, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 548.76, + "end": 548.84, + "probability": 0.99951171875 + }, + { + "word": " out.", + "start": 548.84, + "end": 548.94, + "probability": 1.0 + } + ] + }, + { + "id": 274, + "text": "We'll be back right after these messages and a little bit of comedy, as usual, for the", + "start": 549.4, + "end": 552.76, + "words": [ + { + "word": " We'll", + "start": 549.4, + "end": 549.84, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 549.84, + "end": 549.88, + "probability": 1.0 + }, + { + "word": " back", + "start": 549.88, + "end": 550.04, + "probability": 0.998046875 + }, + { + "word": " right", + "start": 550.04, + "end": 550.2, + "probability": 1.0 + }, + { + "word": " after", + "start": 550.2, + "end": 550.42, + "probability": 1.0 + }, + { + "word": " these", + "start": 550.42, + "end": 550.6, + "probability": 1.0 + }, + { + "word": " messages", + "start": 550.6, + "end": 551.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 551.0, + "end": 551.24, + "probability": 0.990234375 + }, + { + "word": " a", + "start": 551.24, + "end": 551.32, + "probability": 1.0 + }, + { + "word": " little", + "start": 551.32, + "end": 551.44, + "probability": 1.0 + }, + { + "word": " bit", + "start": 551.44, + "end": 551.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 551.56, + "end": 551.64, + "probability": 1.0 + }, + { + "word": " comedy,", + "start": 551.64, + "end": 551.86, + "probability": 1.0 + }, + { + "word": " as", + "start": 551.9, + "end": 552.1, + "probability": 1.0 + }, + { + "word": " usual,", + "start": 552.1, + "end": 552.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 552.42, + "end": 552.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 552.66, + "end": 552.76, + "probability": 1.0 + } + ] + }, + { + "id": 275, + "text": "first segment of the Computer Guru Show these days.", + "start": 552.76, + "end": 555.32, + "words": [ + { + "word": " first", + "start": 552.76, + "end": 553.1, + "probability": 1.0 + }, + { + "word": " segment", + "start": 553.1, + "end": 553.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 553.78, + "end": 554.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 554.12, + "end": 554.28, + "probability": 0.92919921875 + }, + { + "word": " Computer", + "start": 554.28, + "end": 554.48, + "probability": 0.98828125 + }, + { + "word": " Guru", + "start": 554.48, + "end": 554.74, + "probability": 0.98974609375 + }, + { + "word": " Show", + "start": 554.74, + "end": 554.9, + "probability": 0.9443359375 + }, + { + "word": " these", + "start": 554.9, + "end": 555.06, + "probability": 0.98291015625 + }, + { + "word": " days.", + "start": 555.06, + "end": 555.32, + "probability": 1.0 + } + ] + }, + { + "id": 276, + "text": "We'll be right back.", + "start": 555.98, + "end": 556.74, + "words": [ + { + "word": " We'll", + "start": 555.98, + "end": 556.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 556.42, + "end": 556.48, + "probability": 1.0 + }, + { + "word": " right", + "start": 556.48, + "end": 556.56, + "probability": 1.0 + }, + { + "word": " back.", + "start": 556.56, + "end": 556.74, + "probability": 1.0 + } + ] + }, + { + "id": 277, + "text": "I think foosball is a combination of soccer and shish kebabs.", + "start": 558.92, + "end": 563.52, + "words": [ + { + "word": " I", + "start": 558.92, + "end": 559.36, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 559.36, + "end": 559.58, + "probability": 1.0 + }, + { + "word": " foosball", + "start": 559.58, + "end": 560.02, + "probability": 0.98828125 + }, + { + "word": " is", + "start": 560.02, + "end": 560.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 560.32, + "end": 560.42, + "probability": 1.0 + }, + { + "word": " combination", + "start": 560.42, + "end": 560.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 560.72, + "end": 561.32, + "probability": 1.0 + }, + { + "word": " soccer", + "start": 561.32, + "end": 562.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 562.08, + "end": 562.74, + "probability": 1.0 + }, + { + "word": " shish", + "start": 562.74, + "end": 563.18, + "probability": 0.998046875 + }, + { + "word": " kebabs.", + "start": 563.18, + "end": 563.52, + "probability": 0.943359375 + } + ] + }, + { + "id": 278, + "text": "Foosball messed up my perception of soccer.", + "start": 565.6, + "end": 567.82, + "words": [ + { + "word": " Foosball", + "start": 565.6, + "end": 566.0, + "probability": 0.82666015625 + }, + { + "word": " messed", + "start": 566.0, + "end": 566.22, + "probability": 0.8466796875 + }, + { + "word": " up", + "start": 566.22, + "end": 566.46, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 566.46, + "end": 566.58, + "probability": 0.99169921875 + }, + { + "word": " perception", + "start": 566.58, + "end": 567.24, + "probability": 0.99365234375 + }, + { + "word": " of", + "start": 567.24, + "end": 567.58, + "probability": 0.998046875 + }, + { + "word": " soccer.", + "start": 567.58, + "end": 567.82, + "probability": 0.97216796875 + } + ] + }, + { + "id": 279, + "text": "I thought you had to kick the ball and then spin round and round.", + "start": 568.0, + "end": 570.52, + "words": [ + { + "word": " I", + "start": 568.0, + "end": 568.08, + "probability": 0.99267578125 + }, + { + "word": " thought", + "start": 568.08, + "end": 568.22, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 568.22, + "end": 568.32, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 568.32, + "end": 568.46, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 568.46, + "end": 568.56, + "probability": 0.9990234375 + }, + { + "word": " kick", + "start": 568.56, + "end": 568.74, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 568.74, + "end": 568.9, + "probability": 0.99951171875 + }, + { + "word": " ball", + "start": 568.9, + "end": 569.08, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 569.08, + "end": 569.42, + "probability": 0.90673828125 + }, + { + "word": " then", + "start": 569.42, + "end": 569.58, + "probability": 0.98095703125 + }, + { + "word": " spin", + "start": 569.58, + "end": 569.78, + "probability": 0.9912109375 + }, + { + "word": " round", + "start": 569.78, + "end": 570.1, + "probability": 0.9306640625 + }, + { + "word": " and", + "start": 570.1, + "end": 570.32, + "probability": 0.98828125 + }, + { + "word": " round.", + "start": 570.32, + "end": 570.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 280, + "text": "I can't do a backflip, much less several.", + "start": 571.96, + "end": 575.36, + "words": [ + { + "word": " I", + "start": 571.96, + "end": 572.36, + "probability": 0.99560546875 + }, + { + "word": " can't", + "start": 572.36, + "end": 572.68, + "probability": 0.99267578125 + }, + { + "word": " do", + "start": 572.68, + "end": 572.78, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 572.78, + "end": 572.9, + "probability": 0.99609375 + }, + { + "word": " backflip,", + "start": 572.9, + "end": 573.48, + "probability": 0.9130859375 + }, + { + "word": " much", + "start": 573.48, + "end": 574.7, + "probability": 0.9990234375 + }, + { + "word": " less", + "start": 574.7, + "end": 574.96, + "probability": 1.0 + }, + { + "word": " several.", + "start": 574.96, + "end": 575.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 281, + "text": "Simultaneously with two other guys that look just like me.", + "start": 577.6, + "end": 582.32, + "words": [ + { + "word": " Simultaneously", + "start": 577.6, + "end": 578.0, + "probability": 0.9951171875 + }, + { + "word": " with", + "start": 578.0, + "end": 578.34, + "probability": 0.9951171875 + }, + { + "word": " two", + "start": 578.34, + "end": 578.5, + "probability": 0.99755859375 + }, + { + "word": " other", + "start": 578.5, + "end": 578.68, + "probability": 1.0 + }, + { + "word": " guys", + "start": 578.68, + "end": 578.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 578.98, + "end": 579.66, + "probability": 0.90478515625 + }, + { + "word": " look", + "start": 579.66, + "end": 581.6, + "probability": 0.91357421875 + }, + { + "word": " just", + "start": 581.6, + "end": 581.82, + "probability": 1.0 + }, + { + "word": " like", + "start": 581.82, + "end": 582.06, + "probability": 1.0 + }, + { + "word": " me.", + "start": 582.06, + "end": 582.32, + "probability": 1.0 + } + ] + }, + { + "id": 282, + "text": "I was on the bus and it was the middle of the night, and I had a box of crackers and", + "start": 586.36, + "end": 590.38, + "words": [ + { + "word": " I", + "start": 586.36, + "end": 586.76, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 586.76, + "end": 586.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 586.98, + "end": 587.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 587.06, + "end": 587.14, + "probability": 0.7744140625 + }, + { + "word": " bus", + "start": 587.14, + "end": 587.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 587.38, + "end": 587.5, + "probability": 0.7861328125 + }, + { + "word": " it", + "start": 587.5, + "end": 587.58, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 587.58, + "end": 587.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 587.68, + "end": 587.74, + "probability": 0.99951171875 + }, + { + "word": " middle", + "start": 587.74, + "end": 587.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 587.94, + "end": 588.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 588.06, + "end": 588.06, + "probability": 1.0 + }, + { + "word": " night,", + "start": 588.06, + "end": 588.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 588.4, + "end": 589.3, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 589.3, + "end": 589.4, + "probability": 1.0 + }, + { + "word": " had", + "start": 589.4, + "end": 589.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 589.5, + "end": 589.56, + "probability": 1.0 + }, + { + "word": " box", + "start": 589.56, + "end": 589.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 589.72, + "end": 589.86, + "probability": 1.0 + }, + { + "word": " crackers", + "start": 589.86, + "end": 590.2, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 590.2, + "end": 590.38, + "probability": 0.9765625 + } + ] + }, + { + "id": 283, + "text": "I had a can of Easy Cheese.", + "start": 590.38, + "end": 591.62, + "words": [ + { + "word": " I", + "start": 590.38, + "end": 590.46, + "probability": 0.9912109375 + }, + { + "word": " had", + "start": 590.46, + "end": 590.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 590.56, + "end": 590.64, + "probability": 1.0 + }, + { + "word": " can", + "start": 590.64, + "end": 590.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 590.84, + "end": 590.98, + "probability": 1.0 + }, + { + "word": " Easy", + "start": 590.98, + "end": 591.2, + "probability": 0.7451171875 + }, + { + "word": " Cheese.", + "start": 591.2, + "end": 591.62, + "probability": 0.974609375 + } + ] + }, + { + "id": 284, + "text": "But it was the middle of the night, so I could not see.", + "start": 593.04, + "end": 595.18, + "words": [ + { + "word": " But", + "start": 593.04, + "end": 593.4, + "probability": 0.845703125 + }, + { + "word": " it", + "start": 593.4, + "end": 593.56, + "probability": 0.99169921875 + }, + { + "word": " was", + "start": 593.56, + "end": 593.66, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 593.66, + "end": 593.74, + "probability": 0.96044921875 + }, + { + "word": " middle", + "start": 593.74, + "end": 593.98, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 593.98, + "end": 594.1, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 594.1, + "end": 594.12, + "probability": 0.998046875 + }, + { + "word": " night,", + "start": 594.12, + "end": 594.32, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 594.38, + "end": 594.46, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 594.46, + "end": 594.54, + "probability": 0.994140625 + }, + { + "word": " could", + "start": 594.54, + "end": 594.7, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 594.7, + "end": 594.88, + "probability": 0.99951171875 + }, + { + "word": " see.", + "start": 594.88, + "end": 595.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 285, + "text": "So I could not see how much Easy Cheese I was applying to each cracker.", + "start": 596.36, + "end": 599.54, + "words": [ + { + "word": " So", + "start": 596.36, + "end": 596.72, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 596.72, + "end": 596.86, + "probability": 0.9794921875 + }, + { + "word": " could", + "start": 596.86, + "end": 596.98, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 596.98, + "end": 597.1, + "probability": 1.0 + }, + { + "word": " see", + "start": 597.1, + "end": 597.3, + "probability": 1.0 + }, + { + "word": " how", + "start": 597.3, + "end": 597.42, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 597.42, + "end": 597.56, + "probability": 1.0 + }, + { + "word": " Easy", + "start": 597.56, + "end": 597.78, + "probability": 0.87646484375 + }, + { + "word": " Cheese", + "start": 597.78, + "end": 598.02, + "probability": 0.9052734375 + }, + { + "word": " I", + "start": 598.02, + "end": 598.24, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 598.24, + "end": 598.38, + "probability": 0.99951171875 + }, + { + "word": " applying", + "start": 598.38, + "end": 598.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 598.6, + "end": 598.96, + "probability": 0.9990234375 + }, + { + "word": " each", + "start": 598.96, + "end": 599.14, + "probability": 0.99951171875 + }, + { + "word": " cracker.", + "start": 599.14, + "end": 599.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 286, + "text": "So each bite into the cracker was a surprise as to how much Easy Cheese I had applied.", + "start": 601.16, + "end": 606.64, + "words": [ + { + "word": " So", + "start": 601.16, + "end": 601.52, + "probability": 0.99609375 + }, + { + "word": " each", + "start": 601.52, + "end": 601.7, + "probability": 0.9990234375 + }, + { + "word": " bite", + "start": 601.7, + "end": 601.96, + "probability": 1.0 + }, + { + "word": " into", + "start": 601.96, + "end": 602.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 602.12, + "end": 602.24, + "probability": 1.0 + }, + { + "word": " cracker", + "start": 602.24, + "end": 602.64, + "probability": 1.0 + }, + { + "word": " was", + "start": 602.64, + "end": 602.76, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 602.76, + "end": 602.9, + "probability": 0.99951171875 + }, + { + "word": " surprise", + "start": 602.9, + "end": 603.3, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 603.3, + "end": 604.62, + "probability": 0.93017578125 + }, + { + "word": " to", + "start": 604.62, + "end": 605.32, + "probability": 1.0 + }, + { + "word": " how", + "start": 605.32, + "end": 605.48, + "probability": 1.0 + }, + { + "word": " much", + "start": 605.48, + "end": 605.66, + "probability": 1.0 + }, + { + "word": " Easy", + "start": 605.66, + "end": 605.86, + "probability": 0.99951171875 + }, + { + "word": " Cheese", + "start": 605.86, + "end": 606.12, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 606.12, + "end": 606.28, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 606.28, + "end": 606.42, + "probability": 1.0 + }, + { + "word": " applied.", + "start": 606.42, + "end": 606.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 287, + "text": "Which makes me believe they should have a glow-in-the-dark version of Easy Cheese.", + "start": 608.74, + "end": 611.82, + "words": [ + { + "word": " Which", + "start": 608.74, + "end": 609.1, + "probability": 0.998046875 + }, + { + "word": " makes", + "start": 609.1, + "end": 609.38, + "probability": 1.0 + }, + { + "word": " me", + "start": 609.38, + "end": 609.5, + "probability": 0.99951171875 + }, + { + "word": " believe", + "start": 609.5, + "end": 609.68, + "probability": 1.0 + }, + { + "word": " they", + "start": 609.68, + "end": 609.86, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 609.86, + "end": 610.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 610.0, + "end": 610.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 610.12, + "end": 610.26, + "probability": 0.99951171875 + }, + { + "word": " glow", + "start": 610.26, + "end": 610.44, + "probability": 0.99755859375 + }, + { + "word": "-in", + "start": 610.44, + "end": 610.58, + "probability": 0.982421875 + }, + { + "word": "-the", + "start": 610.58, + "end": 610.72, + "probability": 1.0 + }, + { + "word": "-dark", + "start": 610.72, + "end": 610.96, + "probability": 1.0 + }, + { + "word": " version", + "start": 610.96, + "end": 611.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 611.28, + "end": 611.44, + "probability": 1.0 + }, + { + "word": " Easy", + "start": 611.44, + "end": 611.56, + "probability": 0.99951171875 + }, + { + "word": " Cheese.", + "start": 611.56, + "end": 611.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 288, + "text": "It's not like the product has any integrity to begin with.", + "start": 613.78, + "end": 616.4, + "words": [ + { + "word": " It's", + "start": 613.78, + "end": 614.14, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 614.14, + "end": 614.24, + "probability": 1.0 + }, + { + "word": " like", + "start": 614.24, + "end": 614.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 614.42, + "end": 614.54, + "probability": 1.0 + }, + { + "word": " product", + "start": 614.54, + "end": 614.78, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 614.78, + "end": 615.0, + "probability": 0.9990234375 + }, + { + "word": " any", + "start": 615.0, + "end": 615.2, + "probability": 0.99951171875 + }, + { + "word": " integrity", + "start": 615.2, + "end": 615.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 615.58, + "end": 615.92, + "probability": 0.99951171875 + }, + { + "word": " begin", + "start": 615.92, + "end": 616.1, + "probability": 1.0 + }, + { + "word": " with.", + "start": 616.1, + "end": 616.4, + "probability": 1.0 + } + ] + }, + { + "id": 289, + "text": "If you buy a room temperature cheese that you squeeze out of a can,", + "start": 618.22, + "end": 621.18, + "words": [ + { + "word": " If", + "start": 618.22, + "end": 618.58, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 618.58, + "end": 618.72, + "probability": 1.0 + }, + { + "word": " buy", + "start": 618.72, + "end": 618.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 618.9, + "end": 619.02, + "probability": 0.99951171875 + }, + { + "word": " room", + "start": 619.02, + "end": 619.2, + "probability": 0.99951171875 + }, + { + "word": " temperature", + "start": 619.2, + "end": 619.46, + "probability": 0.611328125 + }, + { + "word": " cheese", + "start": 619.46, + "end": 619.82, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 619.82, + "end": 620.24, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 620.24, + "end": 620.34, + "probability": 1.0 + }, + { + "word": " squeeze", + "start": 620.34, + "end": 620.6, + "probability": 1.0 + }, + { + "word": " out", + "start": 620.6, + "end": 620.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 620.76, + "end": 620.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 620.88, + "end": 620.94, + "probability": 1.0 + }, + { + "word": " can,", + "start": 620.94, + "end": 621.18, + "probability": 1.0 + } + ] + }, + { + "id": 290, + "text": "you probably won't get mad because it glows in the dark as well.", + "start": 621.86, + "end": 624.84, + "words": [ + { + "word": " you", + "start": 621.86, + "end": 622.34, + "probability": 0.79541015625 + }, + { + "word": " probably", + "start": 622.34, + "end": 622.66, + "probability": 0.99951171875 + }, + { + "word": " won't", + "start": 622.66, + "end": 622.96, + "probability": 1.0 + }, + { + "word": " get", + "start": 622.96, + "end": 623.08, + "probability": 1.0 + }, + { + "word": " mad", + "start": 623.08, + "end": 623.28, + "probability": 1.0 + }, + { + "word": " because", + "start": 623.28, + "end": 623.6, + "probability": 0.9677734375 + }, + { + "word": " it", + "start": 623.6, + "end": 623.74, + "probability": 1.0 + }, + { + "word": " glows", + "start": 623.74, + "end": 623.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 623.96, + "end": 624.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 624.08, + "end": 624.16, + "probability": 1.0 + }, + { + "word": " dark", + "start": 624.16, + "end": 624.42, + "probability": 1.0 + }, + { + "word": " as", + "start": 624.42, + "end": 624.6, + "probability": 0.9990234375 + }, + { + "word": " well.", + "start": 624.6, + "end": 624.84, + "probability": 1.0 + } + ] + }, + { + "id": 291, + "text": "Your computer guru, Mike Swanson, is here to help you tame that beast of a machine.", + "start": 628.54, + "end": 632.64, + "words": [ + { + "word": " Your", + "start": 628.54, + "end": 629.02, + "probability": 0.96875 + }, + { + "word": " computer", + "start": 629.02, + "end": 629.4, + "probability": 0.99267578125 + }, + { + "word": " guru,", + "start": 629.4, + "end": 629.76, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 629.88, + "end": 630.08, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 630.08, + "end": 630.44, + "probability": 0.9814453125 + }, + { + "word": " is", + "start": 630.56, + "end": 630.7, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 630.7, + "end": 630.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 630.86, + "end": 630.98, + "probability": 1.0 + }, + { + "word": " help", + "start": 630.98, + "end": 631.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 631.2, + "end": 631.38, + "probability": 1.0 + }, + { + "word": " tame", + "start": 631.38, + "end": 631.58, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 631.58, + "end": 631.78, + "probability": 1.0 + }, + { + "word": " beast", + "start": 631.78, + "end": 632.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 632.06, + "end": 632.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 632.3, + "end": 632.38, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 632.38, + "end": 632.64, + "probability": 1.0 + } + ] + }, + { + "id": 292, + "text": "Join the chat right now at gurushow.com or call in.", + "start": 632.94, + "end": 636.52, + "words": [ + { + "word": " Join", + "start": 632.94, + "end": 633.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 633.42, + "end": 633.6, + "probability": 1.0 + }, + { + "word": " chat", + "start": 633.6, + "end": 633.8, + "probability": 1.0 + }, + { + "word": " right", + "start": 633.8, + "end": 634.04, + "probability": 1.0 + }, + { + "word": " now", + "start": 634.04, + "end": 634.32, + "probability": 1.0 + }, + { + "word": " at", + "start": 634.32, + "end": 634.62, + "probability": 0.9990234375 + }, + { + "word": " gurushow", + "start": 634.62, + "end": 635.18, + "probability": 0.90576171875 + }, + { + "word": ".com", + "start": 635.18, + "end": 635.74, + "probability": 1.0 + }, + { + "word": " or", + "start": 635.74, + "end": 636.04, + "probability": 0.99462890625 + }, + { + "word": " call", + "start": 636.04, + "end": 636.24, + "probability": 1.0 + }, + { + "word": " in.", + "start": 636.24, + "end": 636.52, + "probability": 1.0 + } + ] + }, + { + "id": 293, + "text": "This is the Computer Guru Show on KVOY, The Voice.", + "start": 636.58, + "end": 640.06, + "words": [ + { + "word": " This", + "start": 636.58, + "end": 636.88, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 636.88, + "end": 637.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 637.26, + "end": 637.34, + "probability": 0.67626953125 + }, + { + "word": " Computer", + "start": 637.34, + "end": 637.58, + "probability": 0.99267578125 + }, + { + "word": " Guru", + "start": 637.58, + "end": 637.94, + "probability": 0.998046875 + }, + { + "word": " Show", + "start": 637.94, + "end": 638.32, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 638.32, + "end": 638.72, + "probability": 0.99609375 + }, + { + "word": " KVOY,", + "start": 638.72, + "end": 639.32, + "probability": 0.87744140625 + }, + { + "word": " The", + "start": 639.54, + "end": 639.76, + "probability": 0.9931640625 + }, + { + "word": " Voice.", + "start": 639.76, + "end": 640.06, + "probability": 1.0 + } + ] + }, + { + "id": 294, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 652.14, + "end": 655.2, + "words": [ + { + "word": " Mike", + "start": 652.14, + "end": 652.66, + "probability": 0.916015625 + }, + { + "word": " Swanson,", + "start": 652.66, + "end": 653.06, + "probability": 0.99609375 + }, + { + "word": " your", + "start": 653.16, + "end": 653.34, + "probability": 0.98876953125 + }, + { + "word": " computer", + "start": 653.34, + "end": 653.72, + "probability": 0.95166015625 + }, + { + "word": " guru,", + "start": 653.72, + "end": 654.1, + "probability": 1.0 + }, + { + "word": " is", + "start": 654.2, + "end": 654.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 654.42, + "end": 654.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 654.66, + "end": 654.8, + "probability": 1.0 + }, + { + "word": " click", + "start": 654.8, + "end": 654.98, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 654.98, + "end": 655.2, + "probability": 1.0 + } + ] + }, + { + "id": 295, + "text": "Listen and watch at gurushow.com.", + "start": 655.42, + "end": 657.72, + "words": [ + { + "word": " Listen", + "start": 655.42, + "end": 655.88, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 655.88, + "end": 656.06, + "probability": 1.0 + }, + { + "word": " watch", + "start": 656.06, + "end": 656.34, + "probability": 1.0 + }, + { + "word": " at", + "start": 656.34, + "end": 656.52, + "probability": 0.9248046875 + }, + { + "word": " gurushow", + "start": 656.52, + "end": 657.1, + "probability": 0.8818359375 + }, + { + "word": ".com.", + "start": 657.1, + "end": 657.72, + "probability": 1.0 + } + ] + }, + { + "id": 296, + "text": "This is the Computer Guru Show.", + "start": 658.0, + "end": 659.98, + "words": [ + { + "word": " This", + "start": 658.0, + "end": 658.52, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 658.52, + "end": 658.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 658.9, + "end": 659.02, + "probability": 0.89892578125 + }, + { + "word": " Computer", + "start": 659.02, + "end": 659.26, + "probability": 0.9931640625 + }, + { + "word": " Guru", + "start": 659.26, + "end": 659.62, + "probability": 0.99658203125 + }, + { + "word": " Show.", + "start": 659.62, + "end": 659.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 297, + "text": "Welcome back to the Computer Guru Show.", + "start": 660.48, + "end": 663.4, + "words": [ + { + "word": " Welcome", + "start": 660.48, + "end": 661.0, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 661.0, + "end": 661.74, + "probability": 0.671875 + }, + { + "word": " to", + "start": 661.74, + "end": 662.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 662.68, + "end": 662.76, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 662.76, + "end": 662.98, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 662.98, + "end": 663.18, + "probability": 0.99951171875 + }, + { + "word": " Show.", + "start": 663.18, + "end": 663.4, + "probability": 1.0 + } + ] + }, + { + "id": 298, + "text": "Let's go ahead and talk about the fact that everyone in the federal government is an idiot.", + "start": 663.44, + "end": 667.1, + "words": [ + { + "word": " Let's", + "start": 663.44, + "end": 663.76, + "probability": 0.9921875 + }, + { + "word": " go", + "start": 663.76, + "end": 663.84, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 663.84, + "end": 663.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 663.98, + "end": 664.1, + "probability": 1.0 + }, + { + "word": " talk", + "start": 664.1, + "end": 664.34, + "probability": 1.0 + }, + { + "word": " about", + "start": 664.34, + "end": 664.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 664.64, + "end": 664.92, + "probability": 1.0 + }, + { + "word": " fact", + "start": 664.92, + "end": 665.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 665.18, + "end": 665.4, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 665.4, + "end": 665.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 665.68, + "end": 665.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 665.96, + "end": 666.02, + "probability": 1.0 + }, + { + "word": " federal", + "start": 666.02, + "end": 666.22, + "probability": 0.99951171875 + }, + { + "word": " government", + "start": 666.22, + "end": 666.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 666.56, + "end": 666.78, + "probability": 1.0 + }, + { + "word": " an", + "start": 666.78, + "end": 666.9, + "probability": 1.0 + }, + { + "word": " idiot.", + "start": 666.9, + "end": 667.1, + "probability": 1.0 + } + ] + }, + { + "id": 299, + "text": "Is this news?", + "start": 668.12, + "end": 669.04, + "words": [ + { + "word": " Is", + "start": 668.12, + "end": 668.64, + "probability": 0.8671875 + }, + { + "word": " this", + "start": 668.64, + "end": 668.8, + "probability": 1.0 + }, + { + "word": " news?", + "start": 668.8, + "end": 669.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 300, + "text": "Well, apparently.", + "start": 669.64, + "end": 670.5, + "words": [ + { + "word": " Well,", + "start": 669.64, + "end": 670.16, + "probability": 0.994140625 + }, + { + "word": " apparently.", + "start": 670.18, + "end": 670.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 301, + "text": "So the FCC got a new chairman.", + "start": 671.2, + "end": 674.14, + "words": [ + { + "word": " So", + "start": 671.2, + "end": 671.72, + "probability": 0.9716796875 + }, + { + "word": " the", + "start": 671.72, + "end": 671.9, + "probability": 0.90185546875 + }, + { + "word": " FCC", + "start": 671.9, + "end": 672.24, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 672.24, + "end": 673.2, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 673.2, + "end": 673.34, + "probability": 1.0 + }, + { + "word": " new", + "start": 673.34, + "end": 673.76, + "probability": 0.99951171875 + }, + { + "word": " chairman.", + "start": 673.76, + "end": 674.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 302, + "text": "Originally, we were a little concerned about Wheeler in the previous administration.", + "start": 674.88, + "end": 679.74, + "words": [ + { + "word": " Originally,", + "start": 674.88, + "end": 675.4, + "probability": 0.921875 + }, + { + "word": " we", + "start": 675.64, + "end": 675.9, + "probability": 1.0 + }, + { + "word": " were", + "start": 675.9, + "end": 676.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 676.08, + "end": 676.98, + "probability": 0.99853515625 + }, + { + "word": " little", + "start": 676.98, + "end": 677.14, + "probability": 1.0 + }, + { + "word": " concerned", + "start": 677.14, + "end": 677.4, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 677.4, + "end": 677.72, + "probability": 0.99951171875 + }, + { + "word": " Wheeler", + "start": 677.72, + "end": 678.06, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 678.06, + "end": 678.66, + "probability": 0.7607421875 + }, + { + "word": " the", + "start": 678.66, + "end": 678.96, + "probability": 1.0 + }, + { + "word": " previous", + "start": 678.96, + "end": 679.24, + "probability": 1.0 + }, + { + "word": " administration.", + "start": 679.24, + "end": 679.74, + "probability": 1.0 + } + ] + }, + { + "id": 303, + "text": "We were like, we don't know about that.", + "start": 679.82, + "end": 681.6, + "words": [ + { + "word": " We", + "start": 679.82, + "end": 680.18, + "probability": 0.99853515625 + }, + { + "word": " were", + "start": 680.18, + "end": 680.26, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 680.26, + "end": 680.52, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 680.62, + "end": 681.08, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 681.08, + "end": 681.22, + "probability": 0.9873046875 + }, + { + "word": " know", + "start": 681.22, + "end": 681.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 681.38, + "end": 681.58, + "probability": 0.9931640625 + }, + { + "word": " that.", + "start": 681.58, + "end": 681.6, + "probability": 0.42578125 + } + ] + }, + { + "id": 304, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 305, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 306, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 307, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 308, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 309, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 310, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 311, + "text": "", + "start": 681.6, + "end": 681.6, + "words": [] + }, + { + "id": 312, + "text": "We don't know about Tom Wheeler because he used to lobby for the cellular industry.", + "start": 681.62, + "end": 685.94, + "words": [ + { + "word": " We", + "start": 681.62, + "end": 681.62, + "probability": 0.00446319580078125 + }, + { + "word": " don't", + "start": 681.62, + "end": 681.62, + "probability": 0.50732421875 + }, + { + "word": " know", + "start": 681.62, + "end": 681.62, + "probability": 0.265869140625 + }, + { + "word": " about", + "start": 681.62, + "end": 681.62, + "probability": 0.5576171875 + }, + { + "word": " Tom", + "start": 681.62, + "end": 681.68, + "probability": 0.9775390625 + }, + { + "word": " Wheeler", + "start": 681.68, + "end": 682.02, + "probability": 0.9970703125 + }, + { + "word": " because", + "start": 682.02, + "end": 682.3, + "probability": 0.79443359375 + }, + { + "word": " he", + "start": 682.3, + "end": 683.38, + "probability": 0.689453125 + }, + { + "word": " used", + "start": 683.38, + "end": 684.32, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 684.32, + "end": 684.48, + "probability": 0.99560546875 + }, + { + "word": " lobby", + "start": 684.48, + "end": 684.66, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 684.66, + "end": 684.9, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 684.9, + "end": 685.02, + "probability": 0.99755859375 + }, + { + "word": " cellular", + "start": 685.02, + "end": 685.6, + "probability": 0.98291015625 + }, + { + "word": " industry.", + "start": 685.6, + "end": 685.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 313, + "text": "And he's probably going to mess some things up and make it so that consumers are hurt", + "start": 686.54, + "end": 693.1, + "words": [ + { + "word": " And", + "start": 686.54, + "end": 686.54, + "probability": 0.2384033203125 + }, + { + "word": " he's", + "start": 686.54, + "end": 688.6, + "probability": 0.978515625 + }, + { + "word": " probably", + "start": 688.6, + "end": 688.8, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 688.8, + "end": 688.94, + "probability": 0.95458984375 + }, + { + "word": " to", + "start": 688.94, + "end": 689.0, + "probability": 0.99951171875 + }, + { + "word": " mess", + "start": 689.0, + "end": 689.2, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 689.2, + "end": 689.32, + "probability": 0.9912109375 + }, + { + "word": " things", + "start": 689.32, + "end": 689.56, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 689.56, + "end": 689.88, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 689.88, + "end": 690.28, + "probability": 0.93505859375 + }, + { + "word": " make", + "start": 690.28, + "end": 690.48, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 690.48, + "end": 690.6, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 690.6, + "end": 690.76, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 690.76, + "end": 690.92, + "probability": 0.9951171875 + }, + { + "word": " consumers", + "start": 690.92, + "end": 691.98, + "probability": 0.496337890625 + }, + { + "word": " are", + "start": 691.98, + "end": 692.92, + "probability": 0.99951171875 + }, + { + "word": " hurt", + "start": 692.92, + "end": 693.1, + "probability": 0.97705078125 + } + ] + }, + { + "id": 314, + "text": "and the internet providers are super happy.", + "start": 693.1, + "end": 698.28, + "words": [ + { + "word": " and", + "start": 693.1, + "end": 693.26, + "probability": 0.96875 + }, + { + "word": " the", + "start": 693.26, + "end": 693.88, + "probability": 0.99169921875 + }, + { + "word": " internet", + "start": 693.88, + "end": 695.54, + "probability": 0.6650390625 + }, + { + "word": " providers", + "start": 695.54, + "end": 695.9, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 695.9, + "end": 696.54, + "probability": 0.99951171875 + }, + { + "word": " super", + "start": 696.54, + "end": 697.92, + "probability": 0.9990234375 + }, + { + "word": " happy.", + "start": 697.92, + "end": 698.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 315, + "text": "And it turned out that he did exactly the opposite.", + "start": 699.44, + "end": 701.52, + "words": [ + { + "word": " And", + "start": 699.44, + "end": 699.92, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 699.92, + "end": 700.12, + "probability": 0.99951171875 + }, + { + "word": " turned", + "start": 700.12, + "end": 700.28, + "probability": 0.9814453125 + }, + { + "word": " out", + "start": 700.28, + "end": 700.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 700.46, + "end": 700.58, + "probability": 0.994140625 + }, + { + "word": " he", + "start": 700.58, + "end": 700.7, + "probability": 1.0 + }, + { + "word": " did", + "start": 700.7, + "end": 700.82, + "probability": 0.99951171875 + }, + { + "word": " exactly", + "start": 700.82, + "end": 701.12, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 701.12, + "end": 701.26, + "probability": 0.97998046875 + }, + { + "word": " opposite.", + "start": 701.26, + "end": 701.52, + "probability": 1.0 + } + ] + }, + { + "id": 316, + "text": "He just angered every ISP and put rules into place that were supposed to keep us a little bit safer", + "start": 701.68, + "end": 708.42, + "words": [ + { + "word": " He", + "start": 701.68, + "end": 701.9, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 701.9, + "end": 702.16, + "probability": 0.99951171875 + }, + { + "word": " angered", + "start": 702.16, + "end": 702.82, + "probability": 1.0 + }, + { + "word": " every", + "start": 702.82, + "end": 703.08, + "probability": 0.99951171875 + }, + { + "word": " ISP", + "start": 703.08, + "end": 703.82, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 703.82, + "end": 704.24, + "probability": 0.99462890625 + }, + { + "word": " put", + "start": 704.24, + "end": 705.04, + "probability": 0.99755859375 + }, + { + "word": " rules", + "start": 705.04, + "end": 705.32, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 705.32, + "end": 705.58, + "probability": 0.79541015625 + }, + { + "word": " place", + "start": 705.58, + "end": 705.78, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 705.78, + "end": 706.02, + "probability": 0.99462890625 + }, + { + "word": " were", + "start": 706.02, + "end": 706.14, + "probability": 0.98876953125 + }, + { + "word": " supposed", + "start": 706.14, + "end": 706.36, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 706.36, + "end": 706.58, + "probability": 1.0 + }, + { + "word": " keep", + "start": 706.58, + "end": 707.04, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 707.04, + "end": 707.38, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 707.38, + "end": 707.64, + "probability": 0.99755859375 + }, + { + "word": " little", + "start": 707.64, + "end": 708.04, + "probability": 0.9990234375 + }, + { + "word": " bit", + "start": 708.04, + "end": 708.18, + "probability": 0.99609375 + }, + { + "word": " safer", + "start": 708.18, + "end": 708.42, + "probability": 1.0 + } + ] + }, + { + "id": 317, + "text": "as far as the wallets were concerned.", + "start": 708.42, + "end": 710.0, + "words": [ + { + "word": " as", + "start": 708.42, + "end": 708.64, + "probability": 0.99365234375 + }, + { + "word": " far", + "start": 708.64, + "end": 708.76, + "probability": 1.0 + }, + { + "word": " as", + "start": 708.76, + "end": 708.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 708.88, + "end": 708.98, + "probability": 0.99951171875 + }, + { + "word": " wallets", + "start": 708.98, + "end": 709.32, + "probability": 0.9990234375 + }, + { + "word": " were", + "start": 709.32, + "end": 709.56, + "probability": 0.99951171875 + }, + { + "word": " concerned.", + "start": 709.56, + "end": 710.0, + "probability": 1.0 + } + ] + }, + { + "id": 318, + "text": "What?", + "start": 711.0, + "end": 711.48, + "words": [ + { + "word": " What?", + "start": 711.0, + "end": 711.48, + "probability": 0.0160369873046875 + } + ] + }, + { + "id": 319, + "text": "The new chairman of the FCC is not necessarily on board with Wheeler's plan.", + "start": 711.62, + "end": 719.46, + "words": [ + { + "word": " The", + "start": 711.62, + "end": 711.72, + "probability": 0.861328125 + }, + { + "word": " new", + "start": 711.72, + "end": 712.52, + "probability": 0.99609375 + }, + { + "word": " chairman", + "start": 712.52, + "end": 712.9, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 712.9, + "end": 713.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 713.28, + "end": 713.44, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 713.44, + "end": 713.88, + "probability": 0.99072265625 + }, + { + "word": " is", + "start": 713.88, + "end": 714.96, + "probability": 1.0 + }, + { + "word": " not", + "start": 714.96, + "end": 716.92, + "probability": 0.9990234375 + }, + { + "word": " necessarily", + "start": 716.92, + "end": 717.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 717.4, + "end": 717.96, + "probability": 1.0 + }, + { + "word": " board", + "start": 717.96, + "end": 718.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 718.22, + "end": 718.58, + "probability": 1.0 + }, + { + "word": " Wheeler's", + "start": 718.58, + "end": 719.26, + "probability": 0.99755859375 + }, + { + "word": " plan.", + "start": 719.26, + "end": 719.46, + "probability": 1.0 + } + ] + }, + { + "id": 320, + "text": "In fact, I would say that he's very much not.", + "start": 719.64, + "end": 722.22, + "words": [ + { + "word": " In", + "start": 719.64, + "end": 719.92, + "probability": 1.0 + }, + { + "word": " fact,", + "start": 719.92, + "end": 720.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 720.1, + "end": 720.2, + "probability": 1.0 + }, + { + "word": " would", + "start": 720.2, + "end": 720.28, + "probability": 1.0 + }, + { + "word": " say", + "start": 720.28, + "end": 720.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 720.48, + "end": 720.66, + "probability": 1.0 + }, + { + "word": " he's", + "start": 720.66, + "end": 721.28, + "probability": 0.9990234375 + }, + { + "word": " very", + "start": 721.28, + "end": 721.72, + "probability": 1.0 + }, + { + "word": " much", + "start": 721.72, + "end": 721.9, + "probability": 1.0 + }, + { + "word": " not.", + "start": 721.9, + "end": 722.22, + "probability": 1.0 + } + ] + }, + { + "id": 321, + "text": "Yeah, and we had originally said, let's give this guy the benefit of the doubt.", + "start": 722.88, + "end": 726.16, + "words": [ + { + "word": " Yeah,", + "start": 722.88, + "end": 723.28, + "probability": 0.97021484375 + }, + { + "word": " and", + "start": 723.3, + "end": 723.42, + "probability": 1.0 + }, + { + "word": " we", + "start": 723.42, + "end": 723.82, + "probability": 1.0 + }, + { + "word": " had", + "start": 723.82, + "end": 724.06, + "probability": 0.9990234375 + }, + { + "word": " originally", + "start": 724.06, + "end": 724.4, + "probability": 1.0 + }, + { + "word": " said,", + "start": 724.4, + "end": 724.68, + "probability": 1.0 + }, + { + "word": " let's", + "start": 724.78, + "end": 725.12, + "probability": 0.998046875 + }, + { + "word": " give", + "start": 725.12, + "end": 725.2, + "probability": 1.0 + }, + { + "word": " this", + "start": 725.2, + "end": 725.36, + "probability": 1.0 + }, + { + "word": " guy", + "start": 725.36, + "end": 725.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 725.44, + "end": 725.56, + "probability": 1.0 + }, + { + "word": " benefit", + "start": 725.56, + "end": 725.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 725.76, + "end": 725.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 725.88, + "end": 725.96, + "probability": 1.0 + }, + { + "word": " doubt.", + "start": 725.96, + "end": 726.16, + "probability": 1.0 + } + ] + }, + { + "id": 322, + "text": "Let's see what he does.", + "start": 726.5, + "end": 727.46, + "words": [ + { + "word": " Let's", + "start": 726.5, + "end": 726.9, + "probability": 1.0 + }, + { + "word": " see", + "start": 726.9, + "end": 727.0, + "probability": 1.0 + }, + { + "word": " what", + "start": 727.0, + "end": 727.12, + "probability": 1.0 + }, + { + "word": " he", + "start": 727.12, + "end": 727.24, + "probability": 1.0 + }, + { + "word": " does.", + "start": 727.24, + "end": 727.46, + "probability": 1.0 + } + ] + }, + { + "id": 323, + "text": "Maybe it'll turn out to be like Wheeler.", + "start": 727.62, + "end": 728.88, + "words": [ + { + "word": " Maybe", + "start": 727.62, + "end": 727.8, + "probability": 0.99951171875 + }, + { + "word": " it'll", + "start": 727.8, + "end": 727.98, + "probability": 0.85888671875 + }, + { + "word": " turn", + "start": 727.98, + "end": 728.14, + "probability": 1.0 + }, + { + "word": " out", + "start": 728.14, + "end": 728.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 728.24, + "end": 728.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 728.34, + "end": 728.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 728.44, + "end": 728.6, + "probability": 1.0 + }, + { + "word": " Wheeler.", + "start": 728.6, + "end": 728.88, + "probability": 1.0 + } + ] + }, + { + "id": 324, + "text": "No, not quite.", + "start": 729.32, + "end": 730.18, + "words": [ + { + "word": " No,", + "start": 729.32, + "end": 729.72, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 729.82, + "end": 729.94, + "probability": 1.0 + }, + { + "word": " quite.", + "start": 729.94, + "end": 730.18, + "probability": 1.0 + } + ] + }, + { + "id": 325, + "text": "Nope.", + "start": 730.38, + "end": 730.62, + "words": [ + { + "word": " Nope.", + "start": 730.38, + "end": 730.62, + "probability": 0.81591796875 + } + ] + }, + { + "id": 326, + "text": "His name is Ajit Pai.", + "start": 731.1800000000001, + "end": 732.9, + "words": [ + { + "word": " His", + "start": 731.1800000000001, + "end": 731.58, + "probability": 0.99951171875 + }, + { + "word": " name", + "start": 731.58, + "end": 731.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 731.8, + "end": 732.16, + "probability": 1.0 + }, + { + "word": " Ajit", + "start": 732.16, + "end": 732.56, + "probability": 0.98095703125 + }, + { + "word": " Pai.", + "start": 732.56, + "end": 732.9, + "probability": 0.994140625 + } + ] + }, + { + "id": 327, + "text": "And he said that net neutrality was a mistake.", + "start": 733.74, + "end": 736.74, + "words": [ + { + "word": " And", + "start": 733.74, + "end": 734.14, + "probability": 0.94970703125 + }, + { + "word": " he", + "start": 734.14, + "end": 734.54, + "probability": 0.9990234375 + }, + { + "word": " said", + "start": 734.54, + "end": 734.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 734.94, + "end": 735.28, + "probability": 1.0 + }, + { + "word": " net", + "start": 735.28, + "end": 735.6, + "probability": 0.9990234375 + }, + { + "word": " neutrality", + "start": 735.6, + "end": 735.94, + "probability": 1.0 + }, + { + "word": " was", + "start": 735.94, + "end": 736.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 736.12, + "end": 736.22, + "probability": 1.0 + }, + { + "word": " mistake.", + "start": 736.22, + "end": 736.74, + "probability": 1.0 + } + ] + }, + { + "id": 328, + "text": "And the commission is now on track to return to a much lighter style of regulation.", + "start": 736.86, + "end": 741.02, + "words": [ + { + "word": " And", + "start": 736.86, + "end": 737.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 737.1, + "end": 737.28, + "probability": 1.0 + }, + { + "word": " commission", + "start": 737.28, + "end": 737.48, + "probability": 0.97119140625 + }, + { + "word": " is", + "start": 737.48, + "end": 737.68, + "probability": 1.0 + }, + { + "word": " now", + "start": 737.68, + "end": 737.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 737.84, + "end": 738.0, + "probability": 1.0 + }, + { + "word": " track", + "start": 738.0, + "end": 738.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 738.3, + "end": 738.68, + "probability": 1.0 + }, + { + "word": " return", + "start": 738.68, + "end": 739.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 739.18, + "end": 739.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 739.48, + "end": 739.6, + "probability": 1.0 + }, + { + "word": " much", + "start": 739.6, + "end": 739.78, + "probability": 1.0 + }, + { + "word": " lighter", + "start": 739.78, + "end": 740.2, + "probability": 1.0 + }, + { + "word": " style", + "start": 740.2, + "end": 740.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 740.54, + "end": 740.72, + "probability": 1.0 + }, + { + "word": " regulation.", + "start": 740.72, + "end": 741.02, + "probability": 1.0 + } + ] + }, + { + "id": 329, + "text": "Of course, this will make one of my listeners very happy, I'm sure.", + "start": 741.62, + "end": 744.6, + "words": [ + { + "word": " Of", + "start": 741.62, + "end": 741.84, + "probability": 0.315185546875 + }, + { + "word": " course,", + "start": 741.84, + "end": 741.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 742.02, + "end": 742.16, + "probability": 1.0 + }, + { + "word": " will", + "start": 742.16, + "end": 742.26, + "probability": 1.0 + }, + { + "word": " make", + "start": 742.26, + "end": 742.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 742.46, + "end": 742.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 742.96, + "end": 743.14, + "probability": 1.0 + }, + { + "word": " my", + "start": 743.14, + "end": 743.28, + "probability": 1.0 + }, + { + "word": " listeners", + "start": 743.28, + "end": 743.6, + "probability": 1.0 + }, + { + "word": " very", + "start": 743.6, + "end": 743.86, + "probability": 1.0 + }, + { + "word": " happy,", + "start": 743.86, + "end": 744.2, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 744.26, + "end": 744.4, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 744.4, + "end": 744.6, + "probability": 1.0 + } + ] + }, + { + "id": 330, + "text": "But he says some things that just don't make any sense to me.", + "start": 746.0799999999999, + "end": 750.36, + "words": [ + { + "word": " But", + "start": 746.0799999999999, + "end": 746.52, + "probability": 0.9833984375 + }, + { + "word": " he", + "start": 746.52, + "end": 746.96, + "probability": 0.98193359375 + }, + { + "word": " says", + "start": 746.96, + "end": 748.36, + "probability": 1.0 + }, + { + "word": " some", + "start": 748.36, + "end": 748.94, + "probability": 0.9326171875 + }, + { + "word": " things", + "start": 748.94, + "end": 749.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 749.22, + "end": 749.32, + "probability": 1.0 + }, + { + "word": " just", + "start": 749.32, + "end": 749.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 749.44, + "end": 749.62, + "probability": 1.0 + }, + { + "word": " make", + "start": 749.62, + "end": 749.7, + "probability": 1.0 + }, + { + "word": " any", + "start": 749.7, + "end": 749.82, + "probability": 1.0 + }, + { + "word": " sense", + "start": 749.82, + "end": 750.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 750.06, + "end": 750.26, + "probability": 1.0 + }, + { + "word": " me.", + "start": 750.26, + "end": 750.36, + "probability": 1.0 + } + ] + }, + { + "id": 331, + "text": "Well, unfortunately, I think most of the people who are proponents against net neutrality", + "start": 750.8, + "end": 754.8, + "words": [ + { + "word": " Well,", + "start": 750.8, + "end": 751.1, + "probability": 0.9990234375 + }, + { + "word": " unfortunately,", + "start": 751.18, + "end": 751.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 751.7, + "end": 751.86, + "probability": 1.0 + }, + { + "word": " think", + "start": 751.86, + "end": 751.98, + "probability": 1.0 + }, + { + "word": " most", + "start": 751.98, + "end": 752.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 752.24, + "end": 752.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 752.32, + "end": 752.38, + "probability": 1.0 + }, + { + "word": " people", + "start": 752.38, + "end": 752.62, + "probability": 1.0 + }, + { + "word": " who", + "start": 752.62, + "end": 752.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 752.82, + "end": 752.94, + "probability": 1.0 + }, + { + "word": " proponents", + "start": 752.94, + "end": 753.64, + "probability": 1.0 + }, + { + "word": " against", + "start": 753.64, + "end": 754.02, + "probability": 1.0 + }, + { + "word": " net", + "start": 754.02, + "end": 754.34, + "probability": 0.998046875 + }, + { + "word": " neutrality", + "start": 754.34, + "end": 754.8, + "probability": 1.0 + } + ] + }, + { + "id": 332, + "text": "say a lot of things that don't make sense.", + "start": 754.8, + "end": 756.68, + "words": [ + { + "word": " say", + "start": 754.8, + "end": 755.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 755.48, + "end": 755.66, + "probability": 1.0 + }, + { + "word": " lot", + "start": 755.66, + "end": 755.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 755.76, + "end": 755.82, + "probability": 1.0 + }, + { + "word": " things", + "start": 755.82, + "end": 755.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 755.98, + "end": 756.12, + "probability": 1.0 + }, + { + "word": " don't", + "start": 756.12, + "end": 756.28, + "probability": 1.0 + }, + { + "word": " make", + "start": 756.28, + "end": 756.4, + "probability": 1.0 + }, + { + "word": " sense.", + "start": 756.4, + "end": 756.68, + "probability": 1.0 + } + ] + }, + { + "id": 333, + "text": "Yeah.", + "start": 757.08, + "end": 757.52, + "words": [ + { + "word": " Yeah.", + "start": 757.08, + "end": 757.52, + "probability": 0.97265625 + } + ] + }, + { + "id": 334, + "text": "Basically, he says that, you know, look at how with the announcement of the return", + "start": 758.32, + "end": 765.36, + "words": [ + { + "word": " Basically,", + "start": 758.32, + "end": 758.76, + "probability": 0.99560546875 + }, + { + "word": " he", + "start": 758.76, + "end": 758.94, + "probability": 1.0 + }, + { + "word": " says", + "start": 758.94, + "end": 759.22, + "probability": 1.0 + }, + { + "word": " that,", + "start": 759.22, + "end": 759.56, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 759.58, + "end": 760.08, + "probability": 0.95751953125 + }, + { + "word": " know,", + "start": 760.08, + "end": 760.4, + "probability": 1.0 + }, + { + "word": " look", + "start": 760.4, + "end": 760.88, + "probability": 1.0 + }, + { + "word": " at", + "start": 760.88, + "end": 761.02, + "probability": 1.0 + }, + { + "word": " how", + "start": 761.02, + "end": 761.68, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 761.68, + "end": 762.76, + "probability": 0.7333984375 + }, + { + "word": " the", + "start": 762.76, + "end": 762.9, + "probability": 1.0 + }, + { + "word": " announcement", + "start": 762.9, + "end": 763.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 763.36, + "end": 764.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 764.04, + "end": 764.46, + "probability": 1.0 + }, + { + "word": " return", + "start": 764.46, + "end": 765.36, + "probability": 1.0 + } + ] + }, + { + "id": 335, + "text": "or basically of ending of net neutrality,", + "start": 765.36, + "end": 768.26, + "words": [ + { + "word": " or", + "start": 765.36, + "end": 766.04, + "probability": 0.496337890625 + }, + { + "word": " basically", + "start": 766.04, + "end": 766.62, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 766.62, + "end": 766.88, + "probability": 0.99853515625 + }, + { + "word": " ending", + "start": 766.88, + "end": 767.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 767.18, + "end": 767.54, + "probability": 1.0 + }, + { + "word": " net", + "start": 767.54, + "end": 767.76, + "probability": 1.0 + }, + { + "word": " neutrality,", + "start": 767.76, + "end": 768.26, + "probability": 1.0 + } + ] + }, + { + "id": 336, + "text": "now all of the providers are announcing that they're going to have,", + "start": 768.92, + "end": 771.54, + "words": [ + { + "word": " now", + "start": 768.92, + "end": 769.36, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 769.36, + "end": 769.64, + "probability": 0.80322265625 + }, + { + "word": " of", + "start": 769.64, + "end": 769.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 769.88, + "end": 770.0, + "probability": 1.0 + }, + { + "word": " providers", + "start": 770.0, + "end": 770.4, + "probability": 1.0 + }, + { + "word": " are", + "start": 770.4, + "end": 770.68, + "probability": 1.0 + }, + { + "word": " announcing", + "start": 770.68, + "end": 770.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 770.96, + "end": 771.18, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 771.18, + "end": 771.34, + "probability": 1.0 + }, + { + "word": " going", + "start": 771.34, + "end": 771.42, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 771.42, + "end": 771.46, + "probability": 1.0 + }, + { + "word": " have,", + "start": 771.46, + "end": 771.54, + "probability": 1.0 + } + ] + }, + { + "id": 337, + "text": "you know, unlimited data plans.", + "start": 771.54, + "end": 773.26, + "words": [ + { + "word": " you", + "start": 771.54, + "end": 771.94, + "probability": 0.0016040802001953125 + }, + { + "word": " know,", + "start": 771.94, + "end": 771.94, + "probability": 0.0810546875 + }, + { + "word": " unlimited", + "start": 771.94, + "end": 771.94, + "probability": 0.03857421875 + }, + { + "word": " data", + "start": 771.94, + "end": 772.86, + "probability": 0.91015625 + }, + { + "word": " plans.", + "start": 772.86, + "end": 773.26, + "probability": 0.994140625 + } + ] + }, + { + "id": 338, + "text": "And I think he's taking credit for something that he had absolutely nothing to do with.", + "start": 773.98, + "end": 777.72, + "words": [ + { + "word": " And", + "start": 773.98, + "end": 774.5, + "probability": 0.955078125 + }, + { + "word": " I", + "start": 774.5, + "end": 774.78, + "probability": 0.9755859375 + }, + { + "word": " think", + "start": 774.78, + "end": 775.06, + "probability": 0.9990234375 + }, + { + "word": " he's", + "start": 775.06, + "end": 775.26, + "probability": 0.98193359375 + }, + { + "word": " taking", + "start": 775.26, + "end": 775.48, + "probability": 0.99169921875 + }, + { + "word": " credit", + "start": 775.48, + "end": 775.74, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 775.74, + "end": 775.88, + "probability": 0.99609375 + }, + { + "word": " something", + "start": 775.88, + "end": 776.08, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 776.08, + "end": 776.3, + "probability": 0.95263671875 + }, + { + "word": " he", + "start": 776.3, + "end": 776.48, + "probability": 0.9921875 + }, + { + "word": " had", + "start": 776.48, + "end": 776.6, + "probability": 0.9755859375 + }, + { + "word": " absolutely", + "start": 776.6, + "end": 776.96, + "probability": 0.9951171875 + }, + { + "word": " nothing", + "start": 776.96, + "end": 777.24, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 777.24, + "end": 777.4, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 777.4, + "end": 777.58, + "probability": 0.99658203125 + }, + { + "word": " with.", + "start": 777.58, + "end": 777.72, + "probability": 0.99560546875 + } + ] + }, + { + "id": 339, + "text": "And I think that was all Wheeler basically saying, you have rules to follow.", + "start": 777.84, + "end": 781.44, + "words": [ + { + "word": " And", + "start": 777.84, + "end": 777.88, + "probability": 0.98828125 + }, + { + "word": " I", + "start": 777.88, + "end": 777.98, + "probability": 0.998046875 + }, + { + "word": " think", + "start": 777.98, + "end": 778.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 778.06, + "end": 778.16, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 778.16, + "end": 778.28, + "probability": 0.99609375 + }, + { + "word": " all", + "start": 778.28, + "end": 778.4, + "probability": 0.9970703125 + }, + { + "word": " Wheeler", + "start": 778.4, + "end": 778.74, + "probability": 0.96875 + }, + { + "word": " basically", + "start": 778.74, + "end": 779.52, + "probability": 0.86328125 + }, + { + "word": " saying,", + "start": 779.52, + "end": 780.12, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 780.16, + "end": 780.42, + "probability": 0.93115234375 + }, + { + "word": " have", + "start": 780.42, + "end": 780.62, + "probability": 0.9990234375 + }, + { + "word": " rules", + "start": 780.62, + "end": 780.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 780.86, + "end": 781.14, + "probability": 1.0 + }, + { + "word": " follow.", + "start": 781.14, + "end": 781.44, + "probability": 1.0 + } + ] + }, + { + "id": 340, + "text": "And if you want to, you know, compete, then you have to compete,", + "start": 781.76, + "end": 787.04, + "words": [ + { + "word": " And", + "start": 781.76, + "end": 782.28, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 782.28, + "end": 782.82, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 782.82, + "end": 784.26, + "probability": 0.732421875 + }, + { + "word": " want", + "start": 784.26, + "end": 784.64, + "probability": 0.99951171875 + }, + { + "word": " to,", + "start": 784.64, + "end": 785.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 785.0, + "end": 785.38, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 785.38, + "end": 785.54, + "probability": 1.0 + }, + { + "word": " compete,", + "start": 785.54, + "end": 785.92, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 786.06, + "end": 786.22, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 786.22, + "end": 786.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 786.36, + "end": 786.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 786.54, + "end": 786.68, + "probability": 1.0 + }, + { + "word": " compete,", + "start": 786.68, + "end": 787.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 341, + "text": "rather than just being able to muscle a particular market or segment of users,", + "start": 787.22, + "end": 792.74, + "words": [ + { + "word": " rather", + "start": 787.22, + "end": 787.9, + "probability": 1.0 + }, + { + "word": " than", + "start": 787.9, + "end": 788.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 788.3, + "end": 788.82, + "probability": 1.0 + }, + { + "word": " being", + "start": 788.82, + "end": 789.08, + "probability": 1.0 + }, + { + "word": " able", + "start": 789.08, + "end": 789.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 789.36, + "end": 789.7, + "probability": 1.0 + }, + { + "word": " muscle", + "start": 789.7, + "end": 790.44, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 790.44, + "end": 790.82, + "probability": 0.99951171875 + }, + { + "word": " particular", + "start": 790.82, + "end": 791.2, + "probability": 1.0 + }, + { + "word": " market", + "start": 791.2, + "end": 791.64, + "probability": 1.0 + }, + { + "word": " or", + "start": 791.64, + "end": 791.84, + "probability": 0.9990234375 + }, + { + "word": " segment", + "start": 791.84, + "end": 792.1, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 792.1, + "end": 792.38, + "probability": 1.0 + }, + { + "word": " users,", + "start": 792.38, + "end": 792.74, + "probability": 1.0 + } + ] + }, + { + "id": 342, + "text": "which is the problem with net neutrality in the first place,", + "start": 793.0, + "end": 795.8, + "words": [ + { + "word": " which", + "start": 793.0, + "end": 793.66, + "probability": 1.0 + }, + { + "word": " is", + "start": 793.66, + "end": 793.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 793.9, + "end": 794.1, + "probability": 1.0 + }, + { + "word": " problem", + "start": 794.1, + "end": 794.4, + "probability": 1.0 + }, + { + "word": " with", + "start": 794.4, + "end": 794.54, + "probability": 0.99951171875 + }, + { + "word": " net", + "start": 794.54, + "end": 794.66, + "probability": 0.990234375 + }, + { + "word": " neutrality", + "start": 794.66, + "end": 795.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 795.02, + "end": 795.3, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 795.3, + "end": 795.38, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 795.38, + "end": 795.54, + "probability": 0.99951171875 + }, + { + "word": " place,", + "start": 795.54, + "end": 795.8, + "probability": 1.0 + } + ] + }, + { + "id": 343, + "text": "where, you know, the lack of neutrality is that a provider then has the opportunity", + "start": 795.8, + "end": 800.74, + "words": [ + { + "word": " where,", + "start": 795.8, + "end": 795.94, + "probability": 0.4521484375 + }, + { + "word": " you", + "start": 796.02, + "end": 796.02, + "probability": 1.0 + }, + { + "word": " know,", + "start": 796.02, + "end": 796.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 796.14, + "end": 796.22, + "probability": 0.7236328125 + }, + { + "word": " lack", + "start": 796.22, + "end": 796.72, + "probability": 0.99169921875 + }, + { + "word": " of", + "start": 796.72, + "end": 797.18, + "probability": 1.0 + }, + { + "word": " neutrality", + "start": 797.18, + "end": 797.68, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 797.68, + "end": 798.46, + "probability": 0.77392578125 + }, + { + "word": " that", + "start": 798.46, + "end": 798.7, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 798.7, + "end": 798.98, + "probability": 0.99951171875 + }, + { + "word": " provider", + "start": 798.98, + "end": 799.66, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 799.66, + "end": 800.02, + "probability": 0.994140625 + }, + { + "word": " has", + "start": 800.02, + "end": 800.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 800.2, + "end": 800.34, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 800.34, + "end": 800.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 344, + "text": "to, you know, have a lot of data plans.", + "start": 800.74, + "end": 801.52, + "words": [ + { + "word": " to,", + "start": 800.74, + "end": 801.32, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 801.42, + "end": 801.52, + "probability": 0.9443359375 + }, + { + "word": " know,", + "start": 801.52, + "end": 801.52, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 801.52, + "end": 801.52, + "probability": 0.156005859375 + }, + { + "word": " a", + "start": 801.52, + "end": 801.52, + "probability": 0.357421875 + }, + { + "word": " lot", + "start": 801.52, + "end": 801.52, + "probability": 0.09246826171875 + }, + { + "word": " of", + "start": 801.52, + "end": 801.52, + "probability": 0.9853515625 + }, + { + "word": " data", + "start": 801.52, + "end": 801.52, + "probability": 0.15478515625 + }, + { + "word": " plans.", + "start": 801.52, + "end": 801.52, + "probability": 0.0704345703125 + } + ] + }, + { + "id": 345, + "text": "OK.", + "start": 805.2, + "end": 805.72, + "words": [ + { + "word": " OK.", + "start": 805.2, + "end": 805.72, + "probability": 2.1219253540039062e-05 + } + ] + }, + { + "id": 346, + "text": "OK.", + "start": 818.16, + "end": 818.42, + "words": [ + { + "word": " OK.", + "start": 818.16, + "end": 818.42, + "probability": 0.099853515625 + } + ] + }, + { + "id": 347, + "text": "", + "start": 818.84, + "end": 818.84, + "words": [] + }, + { + "id": 348, + "text": "OK.", + "start": 818.84, + "end": 819.14, + "words": [ + { + "word": " OK.", + "start": 818.84, + "end": 819.14, + "probability": 0.89892578125 + } + ] + }, + { + "id": 349, + "text": "OK.", + "start": 819.22, + "end": 819.74, + "words": [ + { + "word": " OK.", + "start": 819.22, + "end": 819.74, + "probability": 0.93994140625 + } + ] + }, + { + "id": 350, + "text": "", + "start": 819.74, + "end": 819.74, + "words": [] + }, + { + "id": 351, + "text": "", + "start": 819.74, + "end": 819.74, + "words": [] + }, + { + "id": 352, + "text": "OK.", + "start": 819.74, + "end": 819.78, + "words": [ + { + "word": " OK.", + "start": 819.74, + "end": 819.78, + "probability": 0.9619140625 + } + ] + }, + { + "id": 353, + "text": "", + "start": 819.84, + "end": 819.84, + "words": [] + }, + { + "id": 354, + "text": "", + "start": 819.86, + "end": 819.86, + "words": [] + }, + { + "id": 355, + "text": "", + "start": 819.86, + "end": 819.86, + "words": [] + }, + { + "id": 356, + "text": "", + "start": 819.86, + "end": 819.86, + "words": [] + }, + { + "id": 357, + "text": "", + "start": 819.9, + "end": 819.9, + "words": [] + }, + { + "id": 358, + "text": "", + "start": 819.9, + "end": 819.9, + "words": [] + }, + { + "id": 359, + "text": "OK.", + "start": 819.98, + "end": 820.08, + "words": [ + { + "word": " OK.", + "start": 819.98, + "end": 820.08, + "probability": 0.9697265625 + } + ] + }, + { + "id": 360, + "text": "OK.", + "start": 820.36, + "end": 820.76, + "words": [ + { + "word": " OK.", + "start": 820.36, + "end": 820.76, + "probability": 0.97021484375 + } + ] + }, + { + "id": 361, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 362, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 363, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 364, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 365, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 366, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 367, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 368, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 369, + "text": "", + "start": 820.76, + "end": 820.76, + "words": [] + }, + { + "id": 370, + "text": "OK.", + "start": 820.76, + "end": 820.78, + "words": [ + { + "word": " OK.", + "start": 820.76, + "end": 820.78, + "probability": 0.97265625 + } + ] + }, + { + "id": 371, + "text": "OK.", + "start": 820.78, + "end": 820.8, + "words": [ + { + "word": " OK.", + "start": 820.78, + "end": 820.8, + "probability": 0.97265625 + } + ] + }, + { + "id": 372, + "text": "OK.", + "start": 820.82, + "end": 820.84, + "words": [ + { + "word": " OK.", + "start": 820.82, + "end": 820.84, + "probability": 0.97265625 + } + ] + }, + { + "id": 373, + "text": "", + "start": 820.86, + "end": 820.86, + "words": [] + }, + { + "id": 374, + "text": "OK.", + "start": 820.86, + "end": 820.88, + "words": [ + { + "word": " OK.", + "start": 820.86, + "end": 820.88, + "probability": 0.97265625 + } + ] + }, + { + "id": 375, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 376, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 377, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 378, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 379, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 380, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 381, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 382, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 383, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 384, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 385, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 386, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 387, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 388, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 389, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 390, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 391, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 392, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 393, + "text": "", + "start": 820.88, + "end": 820.88, + "words": [] + }, + { + "id": 394, + "text": "OK.", + "start": 820.88, + "end": 821.16, + "words": [ + { + "word": " OK.", + "start": 820.88, + "end": 821.16, + "probability": 0.97314453125 + } + ] + }, + { + "id": 395, + "text": "OK.", + "start": 821.32, + "end": 821.8, + "words": [ + { + "word": " OK.", + "start": 821.32, + "end": 821.8, + "probability": 0.97314453125 + } + ] + }, + { + "id": 396, + "text": "OK.", + "start": 822.96, + "end": 823.48, + "words": [ + { + "word": " OK.", + "start": 822.96, + "end": 823.48, + "probability": 0.97314453125 + } + ] + }, + { + "id": 397, + "text": "OK.", + "start": 823.66, + "end": 823.92, + "words": [ + { + "word": " OK.", + "start": 823.66, + "end": 823.92, + "probability": 0.9736328125 + } + ] + }, + { + "id": 398, + "text": "OK.", + "start": 825.4200000000001, + "end": 825.94, + "words": [ + { + "word": " OK.", + "start": 825.4200000000001, + "end": 825.94, + "probability": 0.9736328125 + } + ] + }, + { + "id": 399, + "text": "OK.", + "start": 829.44, + "end": 829.96, + "words": [ + { + "word": " OK.", + "start": 829.44, + "end": 829.96, + "probability": 0.97314453125 + } + ] + }, + { + "id": 400, + "text": "Now, of course, they don't really necessarily count things like DSL providers or the point-to-point wireless providers because, let's be honest, they're technically not able to compete with the cable providers or even the cellular providers if you happen to have one of those.", + "start": 829.96, + "end": 845.9, + "words": [ + { + "word": " Now,", + "start": 829.96, + "end": 830.14, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 830.2, + "end": 830.52, + "probability": 1.0 + }, + { + "word": " course,", + "start": 830.52, + "end": 830.86, + "probability": 1.0 + }, + { + "word": " they", + "start": 830.9, + "end": 831.3, + "probability": 1.0 + }, + { + "word": " don't", + "start": 831.3, + "end": 831.56, + "probability": 1.0 + }, + { + "word": " really", + "start": 831.56, + "end": 831.64, + "probability": 0.9931640625 + }, + { + "word": " necessarily", + "start": 831.64, + "end": 832.08, + "probability": 1.0 + }, + { + "word": " count", + "start": 832.08, + "end": 832.62, + "probability": 1.0 + }, + { + "word": " things", + "start": 832.62, + "end": 832.86, + "probability": 1.0 + }, + { + "word": " like", + "start": 832.86, + "end": 833.24, + "probability": 1.0 + }, + { + "word": " DSL", + "start": 833.24, + "end": 834.44, + "probability": 0.9990234375 + }, + { + "word": " providers", + "start": 834.44, + "end": 834.66, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 834.66, + "end": 835.2, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 835.2, + "end": 835.34, + "probability": 1.0 + }, + { + "word": " point", + "start": 835.34, + "end": 835.56, + "probability": 0.99755859375 + }, + { + "word": "-to", + "start": 835.56, + "end": 835.68, + "probability": 0.986328125 + }, + { + "word": "-point", + "start": 835.68, + "end": 835.82, + "probability": 1.0 + }, + { + "word": " wireless", + "start": 835.82, + "end": 836.06, + "probability": 0.99951171875 + }, + { + "word": " providers", + "start": 836.06, + "end": 836.38, + "probability": 1.0 + }, + { + "word": " because,", + "start": 836.38, + "end": 836.94, + "probability": 0.826171875 + }, + { + "word": " let's", + "start": 837.12, + "end": 837.84, + "probability": 1.0 + }, + { + "word": " be", + "start": 837.84, + "end": 837.92, + "probability": 1.0 + }, + { + "word": " honest,", + "start": 837.92, + "end": 838.2, + "probability": 1.0 + }, + { + "word": " they're", + "start": 838.44, + "end": 838.78, + "probability": 1.0 + }, + { + "word": " technically", + "start": 838.78, + "end": 839.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 839.24, + "end": 839.72, + "probability": 1.0 + }, + { + "word": " able", + "start": 839.72, + "end": 840.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 840.14, + "end": 840.4, + "probability": 1.0 + }, + { + "word": " compete", + "start": 840.4, + "end": 840.72, + "probability": 1.0 + }, + { + "word": " with", + "start": 840.72, + "end": 841.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 841.26, + "end": 841.42, + "probability": 1.0 + }, + { + "word": " cable", + "start": 841.42, + "end": 841.62, + "probability": 1.0 + }, + { + "word": " providers", + "start": 841.62, + "end": 842.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 842.04, + "end": 843.1, + "probability": 0.77490234375 + }, + { + "word": " even", + "start": 843.1, + "end": 843.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 843.58, + "end": 843.76, + "probability": 1.0 + }, + { + "word": " cellular", + "start": 843.76, + "end": 843.98, + "probability": 1.0 + }, + { + "word": " providers", + "start": 843.98, + "end": 844.28, + "probability": 1.0 + }, + { + "word": " if", + "start": 844.28, + "end": 844.72, + "probability": 0.8623046875 + }, + { + "word": " you", + "start": 844.72, + "end": 844.86, + "probability": 1.0 + }, + { + "word": " happen", + "start": 844.86, + "end": 845.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 845.08, + "end": 845.2, + "probability": 1.0 + }, + { + "word": " have", + "start": 845.2, + "end": 845.34, + "probability": 1.0 + }, + { + "word": " one", + "start": 845.34, + "end": 845.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 845.52, + "end": 845.62, + "probability": 1.0 + }, + { + "word": " those.", + "start": 845.62, + "end": 845.9, + "probability": 1.0 + } + ] + }, + { + "id": 401, + "text": "But then you end up with a very expensive Internet bill and caps and overages and all of that stuff.", + "start": 846.78, + "end": 853.94, + "words": [ + { + "word": " But", + "start": 846.78, + "end": 847.3, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 847.3, + "end": 847.52, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 847.52, + "end": 847.66, + "probability": 0.99951171875 + }, + { + "word": " end", + "start": 847.66, + "end": 847.78, + "probability": 0.99658203125 + }, + { + "word": " up", + "start": 847.78, + "end": 848.44, + "probability": 1.0 + }, + { + "word": " with", + "start": 848.44, + "end": 848.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 848.68, + "end": 848.84, + "probability": 1.0 + }, + { + "word": " very", + "start": 848.84, + "end": 849.66, + "probability": 1.0 + }, + { + "word": " expensive", + "start": 849.66, + "end": 850.0, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 850.0, + "end": 850.8, + "probability": 0.64404296875 + }, + { + "word": " bill", + "start": 850.8, + "end": 851.16, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 851.16, + "end": 851.46, + "probability": 1.0 + }, + { + "word": " caps", + "start": 851.46, + "end": 852.2, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 852.2, + "end": 852.44, + "probability": 1.0 + }, + { + "word": " overages", + "start": 852.44, + "end": 852.92, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 852.92, + "end": 853.2, + "probability": 1.0 + }, + { + "word": " all", + "start": 853.2, + "end": 853.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 853.38, + "end": 853.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 853.52, + "end": 853.62, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 853.62, + "end": 853.94, + "probability": 1.0 + } + ] + }, + { + "id": 402, + "text": "Well, also, I mean, the cellular providers is what's making this whole situation a bit scary at the moment.", + "start": 854.26, + "end": 859.32, + "words": [ + { + "word": " Well,", + "start": 854.26, + "end": 854.68, + "probability": 0.99560546875 + }, + { + "word": " also,", + "start": 854.7, + "end": 854.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 855.16, + "end": 855.46, + "probability": 0.96923828125 + }, + { + "word": " mean,", + "start": 855.46, + "end": 855.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 855.72, + "end": 855.86, + "probability": 1.0 + }, + { + "word": " cellular", + "start": 855.86, + "end": 856.22, + "probability": 1.0 + }, + { + "word": " providers", + "start": 856.22, + "end": 856.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 856.68, + "end": 856.96, + "probability": 1.0 + }, + { + "word": " what's", + "start": 856.96, + "end": 857.2, + "probability": 1.0 + }, + { + "word": " making", + "start": 857.2, + "end": 857.38, + "probability": 1.0 + }, + { + "word": " this", + "start": 857.38, + "end": 857.6, + "probability": 1.0 + }, + { + "word": " whole", + "start": 857.6, + "end": 857.7, + "probability": 1.0 + }, + { + "word": " situation", + "start": 857.7, + "end": 858.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 858.1, + "end": 858.3, + "probability": 1.0 + }, + { + "word": " bit", + "start": 858.3, + "end": 858.42, + "probability": 1.0 + }, + { + "word": " scary", + "start": 858.42, + "end": 858.7, + "probability": 1.0 + }, + { + "word": " at", + "start": 858.7, + "end": 858.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 858.96, + "end": 859.06, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 859.06, + "end": 859.32, + "probability": 1.0 + } + ] + }, + { + "id": 403, + "text": "Because, as you said, everybody seems to be reintroducing their unlimited plans at the moment.", + "start": 859.32, + "end": 863.12, + "words": [ + { + "word": " Because,", + "start": 859.32, + "end": 859.86, + "probability": 0.7421875 + }, + { + "word": " as", + "start": 859.92, + "end": 860.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 860.0, + "end": 860.12, + "probability": 1.0 + }, + { + "word": " said,", + "start": 860.12, + "end": 860.26, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 860.36, + "end": 860.54, + "probability": 1.0 + }, + { + "word": " seems", + "start": 860.54, + "end": 860.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 860.92, + "end": 861.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 861.1, + "end": 861.24, + "probability": 1.0 + }, + { + "word": " reintroducing", + "start": 861.24, + "end": 861.74, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 861.74, + "end": 861.88, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 861.88, + "end": 862.16, + "probability": 0.98193359375 + }, + { + "word": " plans", + "start": 862.16, + "end": 862.52, + "probability": 1.0 + }, + { + "word": " at", + "start": 862.52, + "end": 862.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 862.76, + "end": 862.84, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 862.84, + "end": 863.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 404, + "text": "And a lot of these plans, if you look closely, are pretty anti-net neutrality.", + "start": 863.26, + "end": 866.6, + "words": [ + { + "word": " And", + "start": 863.26, + "end": 863.72, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 863.72, + "end": 863.84, + "probability": 0.99462890625 + }, + { + "word": " lot", + "start": 863.84, + "end": 863.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 863.94, + "end": 864.0, + "probability": 1.0 + }, + { + "word": " these", + "start": 864.0, + "end": 864.12, + "probability": 1.0 + }, + { + "word": " plans,", + "start": 864.12, + "end": 864.32, + "probability": 1.0 + }, + { + "word": " if", + "start": 864.46, + "end": 864.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 864.56, + "end": 864.6, + "probability": 1.0 + }, + { + "word": " look", + "start": 864.6, + "end": 864.72, + "probability": 1.0 + }, + { + "word": " closely,", + "start": 864.72, + "end": 865.08, + "probability": 1.0 + }, + { + "word": " are", + "start": 865.18, + "end": 865.28, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 865.28, + "end": 865.54, + "probability": 1.0 + }, + { + "word": " anti", + "start": 865.54, + "end": 865.88, + "probability": 1.0 + }, + { + "word": "-net", + "start": 865.88, + "end": 866.12, + "probability": 0.958984375 + }, + { + "word": " neutrality.", + "start": 866.12, + "end": 866.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 405, + "text": "Yeah.", + "start": 867.2, + "end": 867.68, + "words": [ + { + "word": " Yeah.", + "start": 867.2, + "end": 867.68, + "probability": 0.78564453125 + } + ] + }, + { + "id": 406, + "text": "Specifically, T-Mobile, who's had their binge-on thing for a while now, where certain streaming services don't count against your data cap.", + "start": 867.8, + "end": 874.66, + "words": [ + { + "word": " Specifically,", + "start": 867.8, + "end": 868.28, + "probability": 0.99755859375 + }, + { + "word": " T", + "start": 868.5, + "end": 868.64, + "probability": 1.0 + }, + { + "word": "-Mobile,", + "start": 868.64, + "end": 868.92, + "probability": 0.99951171875 + }, + { + "word": " who's", + "start": 869.02, + "end": 869.12, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 869.12, + "end": 869.26, + "probability": 1.0 + }, + { + "word": " their", + "start": 869.26, + "end": 869.4, + "probability": 1.0 + }, + { + "word": " binge", + "start": 869.4, + "end": 869.7, + "probability": 0.994140625 + }, + { + "word": "-on", + "start": 869.7, + "end": 869.86, + "probability": 0.81640625 + }, + { + "word": " thing", + "start": 869.86, + "end": 870.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 870.4, + "end": 870.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 870.62, + "end": 870.74, + "probability": 1.0 + }, + { + "word": " while", + "start": 870.74, + "end": 870.92, + "probability": 1.0 + }, + { + "word": " now,", + "start": 870.92, + "end": 871.12, + "probability": 1.0 + }, + { + "word": " where", + "start": 871.22, + "end": 871.72, + "probability": 1.0 + }, + { + "word": " certain", + "start": 871.72, + "end": 872.08, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 872.08, + "end": 872.52, + "probability": 1.0 + }, + { + "word": " services", + "start": 872.52, + "end": 872.82, + "probability": 1.0 + }, + { + "word": " don't", + "start": 872.82, + "end": 873.24, + "probability": 1.0 + }, + { + "word": " count", + "start": 873.24, + "end": 873.44, + "probability": 1.0 + }, + { + "word": " against", + "start": 873.44, + "end": 873.64, + "probability": 1.0 + }, + { + "word": " your", + "start": 873.64, + "end": 873.92, + "probability": 1.0 + }, + { + "word": " data", + "start": 873.92, + "end": 874.44, + "probability": 0.99951171875 + }, + { + "word": " cap.", + "start": 874.44, + "end": 874.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 407, + "text": "Right.", + "start": 875.28, + "end": 875.76, + "words": [ + { + "word": " Right.", + "start": 875.28, + "end": 875.76, + "probability": 0.9970703125 + } + ] + }, + { + "id": 408, + "text": "And they mention those in the article, which is basically the zero tier, meaning that they don't count specific sets of data against your usage,", + "start": 875.8, + "end": 887.18, + "words": [ + { + "word": " And", + "start": 875.8, + "end": 875.92, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 875.92, + "end": 876.04, + "probability": 1.0 + }, + { + "word": " mention", + "start": 876.04, + "end": 876.34, + "probability": 0.71533203125 + }, + { + "word": " those", + "start": 876.34, + "end": 876.54, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 876.54, + "end": 876.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 876.74, + "end": 877.1, + "probability": 1.0 + }, + { + "word": " article,", + "start": 877.1, + "end": 877.46, + "probability": 1.0 + }, + { + "word": " which", + "start": 877.64, + "end": 877.94, + "probability": 1.0 + }, + { + "word": " is", + "start": 877.94, + "end": 878.12, + "probability": 1.0 + }, + { + "word": " basically", + "start": 878.12, + "end": 878.82, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 878.82, + "end": 879.66, + "probability": 1.0 + }, + { + "word": " zero", + "start": 879.66, + "end": 880.0, + "probability": 0.99951171875 + }, + { + "word": " tier,", + "start": 880.0, + "end": 880.36, + "probability": 0.9921875 + }, + { + "word": " meaning", + "start": 880.62, + "end": 881.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 881.32, + "end": 881.66, + "probability": 1.0 + }, + { + "word": " they", + "start": 881.66, + "end": 882.24, + "probability": 1.0 + }, + { + "word": " don't", + "start": 882.24, + "end": 883.46, + "probability": 1.0 + }, + { + "word": " count", + "start": 883.46, + "end": 884.02, + "probability": 1.0 + }, + { + "word": " specific", + "start": 884.02, + "end": 884.64, + "probability": 1.0 + }, + { + "word": " sets", + "start": 884.64, + "end": 885.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 885.1, + "end": 885.4, + "probability": 1.0 + }, + { + "word": " data", + "start": 885.4, + "end": 885.68, + "probability": 1.0 + }, + { + "word": " against", + "start": 885.68, + "end": 886.38, + "probability": 1.0 + }, + { + "word": " your", + "start": 886.38, + "end": 886.76, + "probability": 1.0 + }, + { + "word": " usage,", + "start": 886.76, + "end": 887.18, + "probability": 1.0 + } + ] + }, + { + "id": 409, + "text": "which was exactly the thing that the\u2026", + "start": 887.4, + "end": 889.3, + "words": [ + { + "word": " which", + "start": 887.4, + "end": 887.68, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 887.68, + "end": 887.86, + "probability": 0.9892578125 + }, + { + "word": " exactly", + "start": 887.86, + "end": 888.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 888.24, + "end": 888.6, + "probability": 1.0 + }, + { + "word": " thing", + "start": 888.6, + "end": 888.8, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 888.8, + "end": 889.02, + "probability": 0.95263671875 + }, + { + "word": " the\u2026", + "start": 889.02, + "end": 889.3, + "probability": 0.282470703125 + } + ] + }, + { + "id": 410, + "text": "The net neutrality was trying to prevent.", + "start": 889.32, + "end": 890.78, + "words": [ + { + "word": " The", + "start": 889.32, + "end": 889.34, + "probability": 0.23876953125 + }, + { + "word": " net", + "start": 889.34, + "end": 889.44, + "probability": 0.9560546875 + }, + { + "word": " neutrality", + "start": 889.44, + "end": 889.82, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 889.82, + "end": 890.0, + "probability": 0.99462890625 + }, + { + "word": " trying", + "start": 890.0, + "end": 890.22, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 890.22, + "end": 890.4, + "probability": 1.0 + }, + { + "word": " prevent.", + "start": 890.4, + "end": 890.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 411, + "text": "And they have been under investigation by the FCC specifically because of that plan.", + "start": 891.02, + "end": 895.04, + "words": [ + { + "word": " And", + "start": 891.02, + "end": 891.2, + "probability": 0.97705078125 + }, + { + "word": " they", + "start": 891.2, + "end": 891.36, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 891.36, + "end": 891.52, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 891.52, + "end": 891.72, + "probability": 1.0 + }, + { + "word": " under", + "start": 891.72, + "end": 891.98, + "probability": 1.0 + }, + { + "word": " investigation", + "start": 891.98, + "end": 892.4, + "probability": 1.0 + }, + { + "word": " by", + "start": 892.4, + "end": 892.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 892.74, + "end": 892.86, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 892.86, + "end": 893.14, + "probability": 0.9990234375 + }, + { + "word": " specifically", + "start": 893.14, + "end": 893.96, + "probability": 0.9619140625 + }, + { + "word": " because", + "start": 893.96, + "end": 894.38, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 894.38, + "end": 894.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 894.64, + "end": 894.78, + "probability": 1.0 + }, + { + "word": " plan.", + "start": 894.78, + "end": 895.04, + "probability": 1.0 + } + ] + }, + { + "id": 412, + "text": "Not anymore because that stuff's now been enabled.", + "start": 895.2, + "end": 897.62, + "words": [ + { + "word": " Not", + "start": 895.2, + "end": 895.46, + "probability": 0.9990234375 + }, + { + "word": " anymore", + "start": 895.46, + "end": 895.66, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 895.66, + "end": 896.04, + "probability": 0.7197265625 + }, + { + "word": " that", + "start": 896.04, + "end": 896.48, + "probability": 1.0 + }, + { + "word": " stuff's", + "start": 896.48, + "end": 896.86, + "probability": 0.7861328125 + }, + { + "word": " now", + "start": 896.86, + "end": 896.94, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 896.94, + "end": 897.16, + "probability": 0.99951171875 + }, + { + "word": " enabled.", + "start": 897.16, + "end": 897.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 413, + "text": "You know, basically, the FCC says, yeah, you can go ahead and do that.", + "start": 897.84, + "end": 900.54, + "words": [ + { + "word": " You", + "start": 897.84, + "end": 897.96, + "probability": 0.22607421875 + }, + { + "word": " know,", + "start": 897.96, + "end": 898.12, + "probability": 1.0 + }, + { + "word": " basically,", + "start": 898.12, + "end": 898.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 898.52, + "end": 898.76, + "probability": 0.99951171875 + }, + { + "word": " FCC", + "start": 898.76, + "end": 898.98, + "probability": 1.0 + }, + { + "word": " says,", + "start": 898.98, + "end": 899.32, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 899.48, + "end": 899.82, + "probability": 0.978515625 + }, + { + "word": " you", + "start": 899.88, + "end": 899.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 899.98, + "end": 900.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 900.02, + "end": 900.1, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 900.1, + "end": 900.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 900.2, + "end": 900.3, + "probability": 1.0 + }, + { + "word": " do", + "start": 900.3, + "end": 900.38, + "probability": 1.0 + }, + { + "word": " that.", + "start": 900.38, + "end": 900.54, + "probability": 1.0 + } + ] + }, + { + "id": 414, + "text": "You can go ahead and zero tier stuff where you can say anything that is on this particular platform that it doesn't charge\u2026", + "start": 900.66, + "end": 908.02, + "words": [ + { + "word": " You", + "start": 900.66, + "end": 900.8, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 900.8, + "end": 900.9, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 900.9, + "end": 901.02, + "probability": 0.9990234375 + }, + { + "word": " ahead", + "start": 901.02, + "end": 901.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 901.16, + "end": 901.3, + "probability": 1.0 + }, + { + "word": " zero", + "start": 901.3, + "end": 901.78, + "probability": 0.99853515625 + }, + { + "word": " tier", + "start": 901.78, + "end": 902.12, + "probability": 0.81201171875 + }, + { + "word": " stuff", + "start": 902.12, + "end": 902.38, + "probability": 1.0 + }, + { + "word": " where", + "start": 902.38, + "end": 902.72, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 902.72, + "end": 902.84, + "probability": 1.0 + }, + { + "word": " can", + "start": 902.84, + "end": 902.98, + "probability": 1.0 + }, + { + "word": " say", + "start": 902.98, + "end": 903.2, + "probability": 1.0 + }, + { + "word": " anything", + "start": 903.2, + "end": 904.06, + "probability": 0.75146484375 + }, + { + "word": " that", + "start": 904.06, + "end": 904.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 904.46, + "end": 904.74, + "probability": 1.0 + }, + { + "word": " on", + "start": 904.74, + "end": 904.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 904.94, + "end": 905.16, + "probability": 1.0 + }, + { + "word": " particular", + "start": 905.16, + "end": 905.44, + "probability": 1.0 + }, + { + "word": " platform", + "start": 905.44, + "end": 906.0, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 906.0, + "end": 907.0, + "probability": 0.82080078125 + }, + { + "word": " it", + "start": 907.0, + "end": 907.48, + "probability": 0.6435546875 + }, + { + "word": " doesn't", + "start": 907.48, + "end": 907.7, + "probability": 1.0 + }, + { + "word": " charge\u2026", + "start": 907.7, + "end": 908.02, + "probability": 0.48779296875 + } + ] + }, + { + "id": 415, + "text": "We're not going to charge you for or doesn't necessarily have to count against your data plan.", + "start": 908.02, + "end": 911.02, + "words": [ + { + "word": " We're", + "start": 908.02, + "end": 908.18, + "probability": 0.79296875 + }, + { + "word": " not", + "start": 908.18, + "end": 908.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 908.26, + "end": 908.38, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 908.38, + "end": 908.42, + "probability": 1.0 + }, + { + "word": " charge", + "start": 908.42, + "end": 908.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 908.6, + "end": 908.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 908.74, + "end": 908.94, + "probability": 1.0 + }, + { + "word": " or", + "start": 908.94, + "end": 909.18, + "probability": 0.58935546875 + }, + { + "word": " doesn't", + "start": 909.18, + "end": 909.5, + "probability": 0.8857421875 + }, + { + "word": " necessarily", + "start": 909.5, + "end": 909.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 909.74, + "end": 910.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 910.0, + "end": 910.06, + "probability": 1.0 + }, + { + "word": " count", + "start": 910.06, + "end": 910.22, + "probability": 0.9921875 + }, + { + "word": " against", + "start": 910.22, + "end": 910.36, + "probability": 1.0 + }, + { + "word": " your", + "start": 910.36, + "end": 910.58, + "probability": 1.0 + }, + { + "word": " data", + "start": 910.58, + "end": 910.76, + "probability": 0.99951171875 + }, + { + "word": " plan.", + "start": 910.76, + "end": 911.02, + "probability": 1.0 + } + ] + }, + { + "id": 416, + "text": "And now that sounds really cool if you're already a member of one.", + "start": 911.24, + "end": 914.18, + "words": [ + { + "word": " And", + "start": 911.24, + "end": 911.32, + "probability": 0.984375 + }, + { + "word": " now", + "start": 911.32, + "end": 911.42, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 911.42, + "end": 911.54, + "probability": 0.8740234375 + }, + { + "word": " sounds", + "start": 911.54, + "end": 911.88, + "probability": 1.0 + }, + { + "word": " really", + "start": 911.88, + "end": 912.2, + "probability": 1.0 + }, + { + "word": " cool", + "start": 912.2, + "end": 912.52, + "probability": 1.0 + }, + { + "word": " if", + "start": 912.52, + "end": 912.96, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 912.96, + "end": 913.08, + "probability": 1.0 + }, + { + "word": " already", + "start": 913.08, + "end": 913.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 913.4, + "end": 913.62, + "probability": 1.0 + }, + { + "word": " member", + "start": 913.62, + "end": 913.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 913.84, + "end": 914.08, + "probability": 0.99755859375 + }, + { + "word": " one.", + "start": 914.08, + "end": 914.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 417, + "text": "Like, say you use Pandora's premium service or Spotify or something like that.", + "start": 914.2, + "end": 917.3, + "words": [ + { + "word": " Like,", + "start": 914.2, + "end": 914.34, + "probability": 0.998046875 + }, + { + "word": " say", + "start": 914.4, + "end": 914.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 914.5, + "end": 914.64, + "probability": 0.83544921875 + }, + { + "word": " use", + "start": 914.64, + "end": 914.82, + "probability": 1.0 + }, + { + "word": " Pandora's", + "start": 914.82, + "end": 915.34, + "probability": 0.99951171875 + }, + { + "word": " premium", + "start": 915.34, + "end": 915.52, + "probability": 0.79833984375 + }, + { + "word": " service", + "start": 915.52, + "end": 915.98, + "probability": 1.0 + }, + { + "word": " or", + "start": 915.98, + "end": 916.16, + "probability": 1.0 + }, + { + "word": " Spotify", + "start": 916.16, + "end": 916.44, + "probability": 1.0 + }, + { + "word": " or", + "start": 916.44, + "end": 916.68, + "probability": 1.0 + }, + { + "word": " something", + "start": 916.68, + "end": 916.88, + "probability": 1.0 + }, + { + "word": " like", + "start": 916.88, + "end": 917.06, + "probability": 1.0 + }, + { + "word": " that.", + "start": 917.06, + "end": 917.3, + "probability": 1.0 + } + ] + }, + { + "id": 418, + "text": "Right.", + "start": 917.34, + "end": 917.66, + "words": [ + { + "word": " Right.", + "start": 917.34, + "end": 917.66, + "probability": 0.448974609375 + } + ] + }, + { + "id": 419, + "text": "That sounds awesome.", + "start": 917.68, + "end": 918.26, + "words": [ + { + "word": " That", + "start": 917.68, + "end": 917.72, + "probability": 0.99951171875 + }, + { + "word": " sounds", + "start": 917.72, + "end": 917.94, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 917.94, + "end": 918.26, + "probability": 1.0 + } + ] + }, + { + "id": 420, + "text": "Like, why wouldn't I want to?", + "start": 918.34, + "end": 919.22, + "words": [ + { + "word": " Like,", + "start": 918.34, + "end": 918.58, + "probability": 0.9716796875 + }, + { + "word": " why", + "start": 918.62, + "end": 918.72, + "probability": 0.9990234375 + }, + { + "word": " wouldn't", + "start": 918.72, + "end": 918.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 918.96, + "end": 919.02, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 919.02, + "end": 919.14, + "probability": 0.9716796875 + }, + { + "word": " to?", + "start": 919.14, + "end": 919.22, + "probability": 0.880859375 + } + ] + }, + { + "id": 421, + "text": "I'm going to switch to T-Mobile and then I'll have unlimited data for that stuff.", + "start": 919.22, + "end": 922.0, + "words": [ + { + "word": " I'm", + "start": 919.22, + "end": 919.24, + "probability": 0.318115234375 + }, + { + "word": " going", + "start": 919.24, + "end": 919.24, + "probability": 0.97705078125 + }, + { + "word": " to", + "start": 919.24, + "end": 919.24, + "probability": 0.99951171875 + }, + { + "word": " switch", + "start": 919.24, + "end": 919.36, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 919.36, + "end": 919.58, + "probability": 0.99951171875 + }, + { + "word": " T", + "start": 919.58, + "end": 919.72, + "probability": 0.99365234375 + }, + { + "word": "-Mobile", + "start": 919.72, + "end": 919.94, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 919.94, + "end": 920.26, + "probability": 0.548828125 + }, + { + "word": " then", + "start": 920.26, + "end": 920.46, + "probability": 0.99755859375 + }, + { + "word": " I'll", + "start": 920.46, + "end": 920.62, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 920.62, + "end": 920.82, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 920.82, + "end": 921.16, + "probability": 0.9990234375 + }, + { + "word": " data", + "start": 921.16, + "end": 921.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 921.46, + "end": 921.64, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 921.64, + "end": 921.76, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 921.76, + "end": 922.0, + "probability": 1.0 + } + ] + }, + { + "id": 422, + "text": "But you're not realizing that they're forcing you to stay on that platform essentially at that point.", + "start": 922.16, + "end": 926.54, + "words": [ + { + "word": " But", + "start": 922.16, + "end": 922.6, + "probability": 0.9970703125 + }, + { + "word": " you're", + "start": 922.6, + "end": 922.72, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 922.72, + "end": 922.84, + "probability": 1.0 + }, + { + "word": " realizing", + "start": 922.84, + "end": 923.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 923.2, + "end": 923.48, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 923.48, + "end": 923.68, + "probability": 1.0 + }, + { + "word": " forcing", + "start": 923.68, + "end": 924.34, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 924.34, + "end": 924.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 924.54, + "end": 924.68, + "probability": 1.0 + }, + { + "word": " stay", + "start": 924.68, + "end": 924.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 924.9, + "end": 925.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 925.06, + "end": 925.2, + "probability": 1.0 + }, + { + "word": " platform", + "start": 925.2, + "end": 925.54, + "probability": 1.0 + }, + { + "word": " essentially", + "start": 925.54, + "end": 925.9, + "probability": 0.77099609375 + }, + { + "word": " at", + "start": 925.9, + "end": 926.16, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 926.16, + "end": 926.3, + "probability": 1.0 + }, + { + "word": " point.", + "start": 926.3, + "end": 926.54, + "probability": 1.0 + } + ] + }, + { + "id": 423, + "text": "So if some new streaming service comes out and it's way better and T-Mobile decides that they don't want to carry that on their zero plan\u2026", + "start": 926.66, + "end": 932.84, + "words": [ + { + "word": " So", + "start": 926.66, + "end": 927.04, + "probability": 0.99267578125 + }, + { + "word": " if", + "start": 927.04, + "end": 927.14, + "probability": 0.92822265625 + }, + { + "word": " some", + "start": 927.14, + "end": 927.3, + "probability": 1.0 + }, + { + "word": " new", + "start": 927.3, + "end": 927.48, + "probability": 0.99951171875 + }, + { + "word": " streaming", + "start": 927.48, + "end": 927.78, + "probability": 1.0 + }, + { + "word": " service", + "start": 927.78, + "end": 928.0, + "probability": 1.0 + }, + { + "word": " comes", + "start": 928.0, + "end": 928.28, + "probability": 1.0 + }, + { + "word": " out", + "start": 928.28, + "end": 928.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 928.46, + "end": 928.6, + "probability": 0.99267578125 + }, + { + "word": " it's", + "start": 928.6, + "end": 928.74, + "probability": 1.0 + }, + { + "word": " way", + "start": 928.74, + "end": 928.86, + "probability": 1.0 + }, + { + "word": " better", + "start": 928.86, + "end": 929.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 929.26, + "end": 929.84, + "probability": 0.9521484375 + }, + { + "word": " T", + "start": 929.84, + "end": 929.98, + "probability": 1.0 + }, + { + "word": "-Mobile", + "start": 929.98, + "end": 930.2, + "probability": 1.0 + }, + { + "word": " decides", + "start": 930.2, + "end": 930.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 930.44, + "end": 930.72, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 930.72, + "end": 930.86, + "probability": 1.0 + }, + { + "word": " don't", + "start": 930.86, + "end": 930.98, + "probability": 1.0 + }, + { + "word": " want", + "start": 930.98, + "end": 931.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 931.1, + "end": 931.2, + "probability": 1.0 + }, + { + "word": " carry", + "start": 931.2, + "end": 931.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 931.38, + "end": 931.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 931.54, + "end": 931.66, + "probability": 0.94677734375 + }, + { + "word": " their", + "start": 931.66, + "end": 931.78, + "probability": 1.0 + }, + { + "word": " zero", + "start": 931.78, + "end": 932.06, + "probability": 0.48974609375 + }, + { + "word": " plan\u2026", + "start": 932.06, + "end": 932.84, + "probability": 0.51953125 + } + ] + }, + { + "id": 424, + "text": "Or that company decides that they can't afford to pay T-Mobile to be in that included plan.", + "start": 933.6, + "end": 938.78, + "words": [ + { + "word": " Or", + "start": 933.4, + "end": 933.62, + "probability": 0.9765625 + }, + { + "word": " that", + "start": 933.62, + "end": 933.8, + "probability": 1.0 + }, + { + "word": " company", + "start": 933.8, + "end": 934.08, + "probability": 1.0 + }, + { + "word": " decides", + "start": 934.08, + "end": 934.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 934.3, + "end": 934.66, + "probability": 1.0 + }, + { + "word": " they", + "start": 934.66, + "end": 934.92, + "probability": 1.0 + }, + { + "word": " can't", + "start": 934.92, + "end": 935.18, + "probability": 1.0 + }, + { + "word": " afford", + "start": 935.18, + "end": 935.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 935.38, + "end": 935.64, + "probability": 1.0 + }, + { + "word": " pay", + "start": 935.64, + "end": 935.82, + "probability": 1.0 + }, + { + "word": " T", + "start": 935.82, + "end": 936.44, + "probability": 1.0 + }, + { + "word": "-Mobile", + "start": 936.44, + "end": 936.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 936.82, + "end": 937.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 937.22, + "end": 937.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 937.36, + "end": 937.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 937.8, + "end": 937.92, + "probability": 0.99951171875 + }, + { + "word": " included", + "start": 937.92, + "end": 938.42, + "probability": 0.99951171875 + }, + { + "word": " plan.", + "start": 938.42, + "end": 938.78, + "probability": 1.0 + } + ] + }, + { + "id": 425, + "text": "Because, yeah, make no mistake, they're charging those companies for that right.", + "start": 938.84, + "end": 941.72, + "words": [ + { + "word": " Because,", + "start": 938.84, + "end": 938.96, + "probability": 0.94482421875 + }, + { + "word": " yeah,", + "start": 939.1, + "end": 939.32, + "probability": 0.99365234375 + }, + { + "word": " make", + "start": 939.36, + "end": 939.54, + "probability": 1.0 + }, + { + "word": " no", + "start": 939.54, + "end": 939.68, + "probability": 1.0 + }, + { + "word": " mistake,", + "start": 939.68, + "end": 939.92, + "probability": 1.0 + }, + { + "word": " they're", + "start": 940.06, + "end": 940.18, + "probability": 1.0 + }, + { + "word": " charging", + "start": 940.18, + "end": 940.46, + "probability": 1.0 + }, + { + "word": " those", + "start": 940.46, + "end": 940.68, + "probability": 1.0 + }, + { + "word": " companies", + "start": 940.68, + "end": 941.0, + "probability": 1.0 + }, + { + "word": " for", + "start": 941.0, + "end": 941.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 941.28, + "end": 941.46, + "probability": 1.0 + }, + { + "word": " right.", + "start": 941.46, + "end": 941.72, + "probability": 0.8837890625 + } + ] + }, + { + "id": 426, + "text": "Right.", + "start": 942.02, + "end": 942.46, + "words": [ + { + "word": " Right.", + "start": 942.02, + "end": 942.46, + "probability": 0.97998046875 + } + ] + }, + { + "id": 427, + "text": "Then, yeah, it's stifling competition.", + "start": 944.02, + "end": 947.02, + "words": [ + { + "word": " Then,", + "start": 944.02, + "end": 944.46, + "probability": 0.99609375 + }, + { + "word": " yeah,", + "start": 944.46, + "end": 944.9, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 945.08, + "end": 945.66, + "probability": 1.0 + }, + { + "word": " stifling", + "start": 945.66, + "end": 946.6, + "probability": 1.0 + }, + { + "word": " competition.", + "start": 946.6, + "end": 947.02, + "probability": 1.0 + } + ] + }, + { + "id": 428, + "text": "Or even scarier, in my opinion.", + "start": 947.16, + "end": 948.66, + "words": [ + { + "word": " Or", + "start": 947.16, + "end": 947.4, + "probability": 0.9970703125 + }, + { + "word": " even", + "start": 947.4, + "end": 947.62, + "probability": 1.0 + }, + { + "word": " scarier,", + "start": 947.62, + "end": 948.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 948.14, + "end": 948.28, + "probability": 1.0 + }, + { + "word": " my", + "start": 948.28, + "end": 948.34, + "probability": 1.0 + }, + { + "word": " opinion.", + "start": 948.34, + "end": 948.66, + "probability": 1.0 + } + ] + }, + { + "id": 429, + "text": "T-Mobile decides that it wants to release its own service that you have to subscribe to.", + "start": 948.66, + "end": 953.9, + "words": [ + { + "word": " T", + "start": 948.66, + "end": 948.86, + "probability": 0.139404296875 + }, + { + "word": "-Mobile", + "start": 948.86, + "end": 949.2, + "probability": 1.0 + }, + { + "word": " decides", + "start": 949.2, + "end": 949.48, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 949.48, + "end": 949.84, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 949.84, + "end": 949.94, + "probability": 1.0 + }, + { + "word": " wants", + "start": 949.94, + "end": 950.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 950.1, + "end": 950.26, + "probability": 1.0 + }, + { + "word": " release", + "start": 950.26, + "end": 950.5, + "probability": 1.0 + }, + { + "word": " its", + "start": 950.5, + "end": 950.76, + "probability": 0.99951171875 + }, + { + "word": " own", + "start": 950.76, + "end": 950.94, + "probability": 1.0 + }, + { + "word": " service", + "start": 950.94, + "end": 951.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 951.38, + "end": 952.58, + "probability": 0.73486328125 + }, + { + "word": " you", + "start": 952.58, + "end": 952.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 952.92, + "end": 953.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 953.08, + "end": 953.26, + "probability": 1.0 + }, + { + "word": " subscribe", + "start": 953.26, + "end": 953.56, + "probability": 1.0 + }, + { + "word": " to.", + "start": 953.56, + "end": 953.9, + "probability": 1.0 + } + ] + }, + { + "id": 430, + "text": "Right.", + "start": 954.04, + "end": 954.36, + "words": [ + { + "word": " Right.", + "start": 954.04, + "end": 954.36, + "probability": 0.94921875 + } + ] + }, + { + "id": 431, + "text": "If you want to listen to music, which a lot of people do on their phones, then, yeah, these particular couple of services are going to be provided for you with no additional fee.", + "start": 954.44, + "end": 966.98, + "words": [ + { + "word": " If", + "start": 954.44, + "end": 954.6, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 954.6, + "end": 954.66, + "probability": 1.0 + }, + { + "word": " want", + "start": 954.66, + "end": 954.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 954.76, + "end": 954.84, + "probability": 1.0 + }, + { + "word": " listen", + "start": 954.84, + "end": 955.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 955.06, + "end": 955.34, + "probability": 1.0 + }, + { + "word": " music,", + "start": 955.34, + "end": 956.5, + "probability": 0.96142578125 + }, + { + "word": " which", + "start": 956.78, + "end": 956.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 956.94, + "end": 957.14, + "probability": 1.0 + }, + { + "word": " lot", + "start": 957.14, + "end": 957.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 957.38, + "end": 957.5, + "probability": 1.0 + }, + { + "word": " people", + "start": 957.5, + "end": 957.66, + "probability": 1.0 + }, + { + "word": " do", + "start": 957.66, + "end": 957.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 957.84, + "end": 957.96, + "probability": 1.0 + }, + { + "word": " their", + "start": 957.96, + "end": 958.08, + "probability": 1.0 + }, + { + "word": " phones,", + "start": 958.08, + "end": 958.38, + "probability": 1.0 + }, + { + "word": " then,", + "start": 958.52, + "end": 958.72, + "probability": 0.984375 + }, + { + "word": " yeah,", + "start": 958.86, + "end": 960.24, + "probability": 0.99853515625 + }, + { + "word": " these", + "start": 960.34, + "end": 960.72, + "probability": 1.0 + }, + { + "word": " particular", + "start": 960.72, + "end": 961.94, + "probability": 1.0 + }, + { + "word": " couple", + "start": 961.94, + "end": 962.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 962.72, + "end": 963.0, + "probability": 1.0 + }, + { + "word": " services", + "start": 963.0, + "end": 963.58, + "probability": 1.0 + }, + { + "word": " are", + "start": 963.58, + "end": 964.1, + "probability": 1.0 + }, + { + "word": " going", + "start": 964.1, + "end": 964.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 964.54, + "end": 964.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 964.76, + "end": 964.88, + "probability": 1.0 + }, + { + "word": " provided", + "start": 964.88, + "end": 965.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 965.24, + "end": 965.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 965.52, + "end": 965.76, + "probability": 1.0 + }, + { + "word": " with", + "start": 965.76, + "end": 965.96, + "probability": 1.0 + }, + { + "word": " no", + "start": 965.96, + "end": 966.18, + "probability": 1.0 + }, + { + "word": " additional", + "start": 966.18, + "end": 966.62, + "probability": 1.0 + }, + { + "word": " fee.", + "start": 966.62, + "end": 966.98, + "probability": 1.0 + } + ] + }, + { + "id": 432, + "text": "But if you want to watch those other ones, man, or listen to those other ones, it's going to cost you a little bit more.", + "start": 967.16, + "end": 972.18, + "words": [ + { + "word": " But", + "start": 967.16, + "end": 967.38, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 967.38, + "end": 968.4, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 968.4, + "end": 968.54, + "probability": 1.0 + }, + { + "word": " want", + "start": 968.54, + "end": 968.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 968.62, + "end": 968.7, + "probability": 1.0 + }, + { + "word": " watch", + "start": 968.7, + "end": 968.84, + "probability": 0.9990234375 + }, + { + "word": " those", + "start": 968.84, + "end": 968.94, + "probability": 0.970703125 + }, + { + "word": " other", + "start": 968.94, + "end": 969.1, + "probability": 1.0 + }, + { + "word": " ones,", + "start": 969.1, + "end": 969.28, + "probability": 1.0 + }, + { + "word": " man,", + "start": 969.34, + "end": 969.44, + "probability": 0.8486328125 + }, + { + "word": " or", + "start": 969.52, + "end": 969.78, + "probability": 1.0 + }, + { + "word": " listen", + "start": 969.78, + "end": 970.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 970.12, + "end": 970.28, + "probability": 1.0 + }, + { + "word": " those", + "start": 970.28, + "end": 970.36, + "probability": 1.0 + }, + { + "word": " other", + "start": 970.36, + "end": 970.5, + "probability": 1.0 + }, + { + "word": " ones,", + "start": 970.5, + "end": 970.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 970.68, + "end": 970.82, + "probability": 1.0 + }, + { + "word": " going", + "start": 970.82, + "end": 970.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 970.94, + "end": 971.14, + "probability": 1.0 + }, + { + "word": " cost", + "start": 971.14, + "end": 971.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 971.44, + "end": 971.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 971.64, + "end": 971.74, + "probability": 1.0 + }, + { + "word": " little", + "start": 971.74, + "end": 971.82, + "probability": 1.0 + }, + { + "word": " bit", + "start": 971.82, + "end": 971.96, + "probability": 1.0 + }, + { + "word": " more.", + "start": 971.96, + "end": 972.18, + "probability": 1.0 + } + ] + }, + { + "id": 433, + "text": "So you're less likely to do so.", + "start": 972.28, + "end": 974.0, + "words": [ + { + "word": " So", + "start": 972.28, + "end": 972.5, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 972.5, + "end": 972.76, + "probability": 0.9755859375 + }, + { + "word": " less", + "start": 972.76, + "end": 973.04, + "probability": 1.0 + }, + { + "word": " likely", + "start": 973.04, + "end": 973.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 973.42, + "end": 973.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 973.64, + "end": 973.82, + "probability": 1.0 + }, + { + "word": " so.", + "start": 973.82, + "end": 974.0, + "probability": 1.0 + } + ] + }, + { + "id": 434, + "text": "This is exactly the battle that we were talking about before with Comcast and Hulu versus Netflix.", + "start": 974.1, + "end": 978.26, + "words": [ + { + "word": " This", + "start": 974.1, + "end": 974.36, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 974.36, + "end": 974.54, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 974.54, + "end": 974.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 974.9, + "end": 975.16, + "probability": 1.0 + }, + { + "word": " battle", + "start": 975.16, + "end": 975.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 975.42, + "end": 975.54, + "probability": 1.0 + }, + { + "word": " we", + "start": 975.54, + "end": 975.6, + "probability": 1.0 + }, + { + "word": " were", + "start": 975.6, + "end": 975.66, + "probability": 1.0 + }, + { + "word": " talking", + "start": 975.66, + "end": 975.88, + "probability": 1.0 + }, + { + "word": " about", + "start": 975.88, + "end": 976.04, + "probability": 1.0 + }, + { + "word": " before", + "start": 976.04, + "end": 976.3, + "probability": 1.0 + }, + { + "word": " with", + "start": 976.3, + "end": 976.54, + "probability": 0.99951171875 + }, + { + "word": " Comcast", + "start": 976.54, + "end": 977.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 977.0, + "end": 977.3, + "probability": 1.0 + }, + { + "word": " Hulu", + "start": 977.3, + "end": 977.52, + "probability": 1.0 + }, + { + "word": " versus", + "start": 977.52, + "end": 977.84, + "probability": 0.99951171875 + }, + { + "word": " Netflix.", + "start": 977.84, + "end": 978.26, + "probability": 1.0 + } + ] + }, + { + "id": 435, + "text": "Yeah.", + "start": 979.02, + "end": 979.46, + "words": [ + { + "word": " Yeah.", + "start": 979.02, + "end": 979.46, + "probability": 0.94189453125 + } + ] + }, + { + "id": 436, + "text": "And, of course, everyone that's on the other side of this argument is just like, well, let them compete.", + "start": 979.58, + "end": 984.84, + "words": [ + { + "word": " And,", + "start": 979.58, + "end": 979.82, + "probability": 0.98681640625 + }, + { + "word": " of", + "start": 979.9, + "end": 980.34, + "probability": 0.37744140625 + }, + { + "word": " course,", + "start": 980.34, + "end": 981.2, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 981.24, + "end": 981.48, + "probability": 1.0 + }, + { + "word": " that's", + "start": 981.48, + "end": 981.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 981.8, + "end": 981.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 981.88, + "end": 982.02, + "probability": 1.0 + }, + { + "word": " other", + "start": 982.02, + "end": 982.14, + "probability": 1.0 + }, + { + "word": " side", + "start": 982.14, + "end": 982.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 982.32, + "end": 982.42, + "probability": 1.0 + }, + { + "word": " this", + "start": 982.42, + "end": 982.52, + "probability": 1.0 + }, + { + "word": " argument", + "start": 982.52, + "end": 983.3, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 983.3, + "end": 983.6, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 983.6, + "end": 983.72, + "probability": 0.99853515625 + }, + { + "word": " like,", + "start": 983.72, + "end": 983.96, + "probability": 0.99658203125 + }, + { + "word": " well,", + "start": 984.08, + "end": 984.2, + "probability": 0.99609375 + }, + { + "word": " let", + "start": 984.22, + "end": 984.4, + "probability": 1.0 + }, + { + "word": " them", + "start": 984.4, + "end": 984.56, + "probability": 0.9814453125 + }, + { + "word": " compete.", + "start": 984.56, + "end": 984.84, + "probability": 1.0 + } + ] + }, + { + "id": 437, + "text": "Do you know what Comcast is?", + "start": 985.58, + "end": 987.8, + "words": [ + { + "word": " Do", + "start": 985.58, + "end": 986.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 986.02, + "end": 986.18, + "probability": 1.0 + }, + { + "word": " know", + "start": 986.18, + "end": 986.52, + "probability": 1.0 + }, + { + "word": " what", + "start": 986.52, + "end": 986.98, + "probability": 1.0 + }, + { + "word": " Comcast", + "start": 986.98, + "end": 987.46, + "probability": 1.0 + }, + { + "word": " is?", + "start": 987.46, + "end": 987.8, + "probability": 1.0 + } + ] + }, + { + "id": 438, + "text": "I mean, have you seen NBCUniversal, what they \u2013 what is that company?", + "start": 988.3, + "end": 994.72, + "words": [ + { + "word": " I", + "start": 988.3, + "end": 988.32, + "probability": 0.97265625 + }, + { + "word": " mean,", + "start": 988.32, + "end": 988.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 988.48, + "end": 988.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 988.68, + "end": 989.16, + "probability": 1.0 + }, + { + "word": " seen", + "start": 989.16, + "end": 989.64, + "probability": 1.0 + }, + { + "word": " NBCUniversal,", + "start": 989.64, + "end": 991.34, + "probability": 0.8515625 + }, + { + "word": " what", + "start": 991.36, + "end": 991.96, + "probability": 1.0 + }, + { + "word": " they", + "start": 991.96, + "end": 992.26, + "probability": 0.67236328125 + }, + { + "word": " \u2013", + "start": 992.26, + "end": 992.58, + "probability": 0.54931640625 + }, + { + "word": " what", + "start": 992.58, + "end": 993.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 993.52, + "end": 993.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 993.82, + "end": 994.38, + "probability": 1.0 + }, + { + "word": " company?", + "start": 994.38, + "end": 994.72, + "probability": 1.0 + } + ] + }, + { + "id": 439, + "text": "I mean, they are everything.", + "start": 994.84, + "end": 995.8, + "words": [ + { + "word": " I", + "start": 994.84, + "end": 994.92, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 994.92, + "end": 995.02, + "probability": 1.0 + }, + { + "word": " they", + "start": 995.04, + "end": 995.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 995.18, + "end": 995.34, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 995.34, + "end": 995.8, + "probability": 1.0 + } + ] + }, + { + "id": 440, + "text": "They're \u2013 I mean, Disney owns all is really what it comes down to.", + "start": 996.36, + "end": 1000.12, + "words": [ + { + "word": " They're", + "start": 996.36, + "end": 996.8, + "probability": 0.7431640625 + }, + { + "word": " \u2013", + "start": 996.8, + "end": 996.86, + "probability": 0.888671875 + }, + { + "word": " I", + "start": 996.86, + "end": 996.98, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 996.98, + "end": 997.12, + "probability": 1.0 + }, + { + "word": " Disney", + "start": 997.18, + "end": 997.94, + "probability": 1.0 + }, + { + "word": " owns", + "start": 997.94, + "end": 998.18, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 998.18, + "end": 998.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 998.48, + "end": 999.1, + "probability": 0.9375 + }, + { + "word": " really", + "start": 999.1, + "end": 999.3, + "probability": 1.0 + }, + { + "word": " what", + "start": 999.3, + "end": 999.48, + "probability": 1.0 + }, + { + "word": " it", + "start": 999.48, + "end": 999.56, + "probability": 1.0 + }, + { + "word": " comes", + "start": 999.56, + "end": 999.72, + "probability": 1.0 + }, + { + "word": " down", + "start": 999.72, + "end": 999.9, + "probability": 1.0 + }, + { + "word": " to.", + "start": 999.9, + "end": 1000.12, + "probability": 1.0 + } + ] + }, + { + "id": 441, + "text": "And so it's impossible, I think, to realistically think that you're going to be able to compete with someone.", + "start": 1000.8599999999999, + "end": 1008.56, + "words": [ + { + "word": " And", + "start": 1000.8599999999999, + "end": 1001.3, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 1001.3, + "end": 1001.74, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1001.74, + "end": 1002.16, + "probability": 0.978515625 + }, + { + "word": " impossible,", + "start": 1002.16, + "end": 1003.2, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 1003.5, + "end": 1003.96, + "probability": 1.0 + }, + { + "word": " think,", + "start": 1003.96, + "end": 1004.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1004.26, + "end": 1004.56, + "probability": 1.0 + }, + { + "word": " realistically", + "start": 1004.56, + "end": 1006.64, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1006.64, + "end": 1007.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 1007.26, + "end": 1007.4, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1007.4, + "end": 1007.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 1007.5, + "end": 1007.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1007.56, + "end": 1007.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 1007.62, + "end": 1007.7, + "probability": 1.0 + }, + { + "word": " able", + "start": 1007.7, + "end": 1007.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1007.8, + "end": 1007.92, + "probability": 1.0 + }, + { + "word": " compete", + "start": 1007.92, + "end": 1008.16, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1008.16, + "end": 1008.36, + "probability": 0.99951171875 + }, + { + "word": " someone.", + "start": 1008.36, + "end": 1008.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 442, + "text": "That is able to hold down that tier, right, that has that much clout that is just able to say, well, you're going to use my service.", + "start": 1008.56, + "end": 1015.9, + "words": [ + { + "word": " That", + "start": 1008.56, + "end": 1008.7, + "probability": 0.032379150390625 + }, + { + "word": " is", + "start": 1008.7, + "end": 1009.28, + "probability": 0.63623046875 + }, + { + "word": " able", + "start": 1009.28, + "end": 1009.82, + "probability": 0.646484375 + }, + { + "word": " to", + "start": 1009.82, + "end": 1009.96, + "probability": 0.99853515625 + }, + { + "word": " hold", + "start": 1009.96, + "end": 1010.22, + "probability": 0.986328125 + }, + { + "word": " down", + "start": 1010.22, + "end": 1010.5, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1010.5, + "end": 1010.82, + "probability": 0.97119140625 + }, + { + "word": " tier,", + "start": 1010.82, + "end": 1011.26, + "probability": 0.880859375 + }, + { + "word": " right,", + "start": 1011.46, + "end": 1012.14, + "probability": 0.904296875 + }, + { + "word": " that", + "start": 1012.22, + "end": 1012.38, + "probability": 1.0 + }, + { + "word": " has", + "start": 1012.38, + "end": 1012.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1012.6, + "end": 1012.8, + "probability": 1.0 + }, + { + "word": " much", + "start": 1012.8, + "end": 1013.08, + "probability": 1.0 + }, + { + "word": " clout", + "start": 1013.08, + "end": 1013.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 1013.48, + "end": 1013.7, + "probability": 0.86181640625 + }, + { + "word": " is", + "start": 1013.7, + "end": 1013.9, + "probability": 1.0 + }, + { + "word": " just", + "start": 1013.9, + "end": 1014.16, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 1014.16, + "end": 1014.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1014.4, + "end": 1014.58, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1014.58, + "end": 1014.76, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1014.84, + "end": 1014.98, + "probability": 0.99462890625 + }, + { + "word": " you're", + "start": 1015.04, + "end": 1015.2, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1015.2, + "end": 1015.3, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 1015.3, + "end": 1015.32, + "probability": 1.0 + }, + { + "word": " use", + "start": 1015.32, + "end": 1015.42, + "probability": 1.0 + }, + { + "word": " my", + "start": 1015.42, + "end": 1015.58, + "probability": 0.99951171875 + }, + { + "word": " service.", + "start": 1015.58, + "end": 1015.9, + "probability": 1.0 + } + ] + }, + { + "id": 443, + "text": "You're going to use nothing at all.", + "start": 1015.98, + "end": 1016.96, + "words": [ + { + "word": " You're", + "start": 1015.98, + "end": 1016.08, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1016.08, + "end": 1016.16, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1016.16, + "end": 1016.2, + "probability": 1.0 + }, + { + "word": " use", + "start": 1016.2, + "end": 1016.3, + "probability": 1.0 + }, + { + "word": " nothing", + "start": 1016.3, + "end": 1016.6, + "probability": 1.0 + }, + { + "word": " at", + "start": 1016.6, + "end": 1016.74, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1016.74, + "end": 1016.96, + "probability": 1.0 + } + ] + }, + { + "id": 444, + "text": "And that's \u2013 or you'll be penalized for using something else.", + "start": 1018.0, + "end": 1022.38, + "words": [ + { + "word": " And", + "start": 1018.0, + "end": 1018.4, + "probability": 0.8720703125 + }, + { + "word": " that's", + "start": 1018.4, + "end": 1018.8, + "probability": 0.9990234375 + }, + { + "word": " \u2013", + "start": 1018.8, + "end": 1018.84, + "probability": 0.3232421875 + }, + { + "word": " or", + "start": 1018.84, + "end": 1020.64, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1020.64, + "end": 1020.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 1020.86, + "end": 1021.02, + "probability": 1.0 + }, + { + "word": " penalized", + "start": 1021.02, + "end": 1021.54, + "probability": 1.0 + }, + { + "word": " for", + "start": 1021.54, + "end": 1021.68, + "probability": 1.0 + }, + { + "word": " using", + "start": 1021.68, + "end": 1021.82, + "probability": 1.0 + }, + { + "word": " something", + "start": 1021.82, + "end": 1022.12, + "probability": 1.0 + }, + { + "word": " else.", + "start": 1022.12, + "end": 1022.38, + "probability": 1.0 + } + ] + }, + { + "id": 445, + "text": "And this is why the net neutrality argument even came to light in the first place.", + "start": 1022.6, + "end": 1027.8, + "words": [ + { + "word": " And", + "start": 1022.6, + "end": 1023.0, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1023.0, + "end": 1024.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 1024.12, + "end": 1024.26, + "probability": 1.0 + }, + { + "word": " why", + "start": 1024.26, + "end": 1024.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1024.46, + "end": 1024.8, + "probability": 1.0 + }, + { + "word": " net", + "start": 1024.8, + "end": 1025.12, + "probability": 0.99951171875 + }, + { + "word": " neutrality", + "start": 1025.12, + "end": 1025.5, + "probability": 0.99951171875 + }, + { + "word": " argument", + "start": 1025.5, + "end": 1025.86, + "probability": 1.0 + }, + { + "word": " even", + "start": 1025.86, + "end": 1026.34, + "probability": 1.0 + }, + { + "word": " came", + "start": 1026.34, + "end": 1026.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1026.66, + "end": 1026.84, + "probability": 1.0 + }, + { + "word": " light", + "start": 1026.84, + "end": 1027.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 1027.0, + "end": 1027.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1027.14, + "end": 1027.22, + "probability": 1.0 + }, + { + "word": " first", + "start": 1027.22, + "end": 1027.46, + "probability": 1.0 + }, + { + "word": " place.", + "start": 1027.46, + "end": 1027.8, + "probability": 1.0 + } + ] + }, + { + "id": 446, + "text": "But, you know, apparently nobody cares.", + "start": 1027.92, + "end": 1031.26, + "words": [ + { + "word": " But,", + "start": 1027.92, + "end": 1028.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 1028.18, + "end": 1028.6, + "probability": 0.94384765625 + }, + { + "word": " know,", + "start": 1028.6, + "end": 1028.74, + "probability": 1.0 + }, + { + "word": " apparently", + "start": 1028.82, + "end": 1029.52, + "probability": 0.9853515625 + }, + { + "word": " nobody", + "start": 1029.52, + "end": 1030.98, + "probability": 0.89013671875 + }, + { + "word": " cares.", + "start": 1030.98, + "end": 1031.26, + "probability": 1.0 + } + ] + }, + { + "id": 447, + "text": "Well, my issue is that I think that from what I've seen over the last few years, their plan is just to keep rephrasing the argument.", + "start": 1031.48, + "end": 1038.38, + "words": [ + { + "word": " Well,", + "start": 1031.48, + "end": 1031.64, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 1031.74, + "end": 1031.9, + "probability": 1.0 + }, + { + "word": " issue", + "start": 1031.9, + "end": 1032.4, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1032.4, + "end": 1032.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 1032.68, + "end": 1032.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 1032.78, + "end": 1032.9, + "probability": 1.0 + }, + { + "word": " think", + "start": 1032.9, + "end": 1033.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1033.12, + "end": 1033.3, + "probability": 1.0 + }, + { + "word": " from", + "start": 1033.3, + "end": 1033.66, + "probability": 0.82958984375 + }, + { + "word": " what", + "start": 1033.66, + "end": 1033.76, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1033.76, + "end": 1033.9, + "probability": 1.0 + }, + { + "word": " seen", + "start": 1033.9, + "end": 1034.06, + "probability": 1.0 + }, + { + "word": " over", + "start": 1034.06, + "end": 1034.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1034.22, + "end": 1034.32, + "probability": 1.0 + }, + { + "word": " last", + "start": 1034.32, + "end": 1034.48, + "probability": 1.0 + }, + { + "word": " few", + "start": 1034.48, + "end": 1034.64, + "probability": 1.0 + }, + { + "word": " years,", + "start": 1034.64, + "end": 1034.9, + "probability": 1.0 + }, + { + "word": " their", + "start": 1034.98, + "end": 1035.42, + "probability": 0.99951171875 + }, + { + "word": " plan", + "start": 1035.42, + "end": 1035.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 1035.7, + "end": 1035.88, + "probability": 1.0 + }, + { + "word": " just", + "start": 1035.88, + "end": 1036.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1036.08, + "end": 1036.44, + "probability": 1.0 + }, + { + "word": " keep", + "start": 1036.44, + "end": 1037.36, + "probability": 1.0 + }, + { + "word": " rephrasing", + "start": 1037.36, + "end": 1037.86, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1037.86, + "end": 1038.06, + "probability": 1.0 + }, + { + "word": " argument.", + "start": 1038.06, + "end": 1038.38, + "probability": 1.0 + } + ] + }, + { + "id": 448, + "text": "Until people just stop caring.", + "start": 1038.56, + "end": 1039.76, + "words": [ + { + "word": " Until", + "start": 1038.56, + "end": 1038.7, + "probability": 0.0159759521484375 + }, + { + "word": " people", + "start": 1038.7, + "end": 1038.96, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1038.96, + "end": 1039.22, + "probability": 0.99365234375 + }, + { + "word": " stop", + "start": 1039.22, + "end": 1039.48, + "probability": 0.91015625 + }, + { + "word": " caring.", + "start": 1039.48, + "end": 1039.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 449, + "text": "Right.", + "start": 1040.54, + "end": 1041.02, + "words": [ + { + "word": " Right.", + "start": 1040.54, + "end": 1041.02, + "probability": 0.34375 + } + ] + }, + { + "id": 450, + "text": "Hypervigilance is very tiring.", + "start": 1041.94, + "end": 1043.16, + "words": [ + { + "word": " Hypervigilance", + "start": 1041.94, + "end": 1042.42, + "probability": 0.935546875 + }, + { + "word": " is", + "start": 1042.42, + "end": 1042.56, + "probability": 0.9892578125 + }, + { + "word": " very", + "start": 1042.56, + "end": 1042.78, + "probability": 1.0 + }, + { + "word": " tiring.", + "start": 1042.78, + "end": 1043.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 451, + "text": "Yeah, it is.", + "start": 1043.44, + "end": 1044.0, + "words": [ + { + "word": " Yeah,", + "start": 1043.44, + "end": 1043.78, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 1043.8, + "end": 1043.84, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1043.84, + "end": 1044.0, + "probability": 1.0 + } + ] + }, + { + "id": 452, + "text": "So, yeah.", + "start": 1044.78, + "end": 1045.62, + "words": [ + { + "word": " So,", + "start": 1044.78, + "end": 1045.26, + "probability": 0.98095703125 + }, + { + "word": " yeah.", + "start": 1045.26, + "end": 1045.62, + "probability": 0.5634765625 + } + ] + }, + { + "id": 453, + "text": "So apparently we're losing our net neutrality, at least for a while.", + "start": 1045.74, + "end": 1048.82, + "words": [ + { + "word": " So", + "start": 1045.74, + "end": 1046.08, + "probability": 0.99951171875 + }, + { + "word": " apparently", + "start": 1046.08, + "end": 1046.32, + "probability": 0.53857421875 + }, + { + "word": " we're", + "start": 1046.32, + "end": 1046.58, + "probability": 0.990234375 + }, + { + "word": " losing", + "start": 1046.58, + "end": 1046.82, + "probability": 1.0 + }, + { + "word": " our", + "start": 1046.82, + "end": 1046.98, + "probability": 0.998046875 + }, + { + "word": " net", + "start": 1046.98, + "end": 1047.1, + "probability": 0.998046875 + }, + { + "word": " neutrality,", + "start": 1047.1, + "end": 1047.42, + "probability": 0.99755859375 + }, + { + "word": " at", + "start": 1047.58, + "end": 1047.78, + "probability": 0.99853515625 + }, + { + "word": " least", + "start": 1047.78, + "end": 1047.92, + "probability": 1.0 + }, + { + "word": " for", + "start": 1047.92, + "end": 1048.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 1048.06, + "end": 1048.48, + "probability": 0.99951171875 + }, + { + "word": " while.", + "start": 1048.48, + "end": 1048.82, + "probability": 1.0 + } + ] + }, + { + "id": 454, + "text": "Maybe permanently.", + "start": 1050.0, + "end": 1050.92, + "words": [ + { + "word": " Maybe", + "start": 1050.0, + "end": 1050.48, + "probability": 0.99755859375 + }, + { + "word": " permanently.", + "start": 1050.48, + "end": 1050.92, + "probability": 1.0 + } + ] + }, + { + "id": 455, + "text": "Who knows?", + "start": 1051.0, + "end": 1051.5, + "words": [ + { + "word": " Who", + "start": 1051.0, + "end": 1051.3, + "probability": 0.9990234375 + }, + { + "word": " knows?", + "start": 1051.3, + "end": 1051.5, + "probability": 0.9951171875 + } + ] + }, + { + "id": 456, + "text": "But when you wonder why that you want to watch that movie on Netflix or the next service that comes out after Netflix and you wonder why you can't afford it, this is why.", + "start": 1052.48, + "end": 1064.02, + "words": [ + { + "word": " But", + "start": 1052.48, + "end": 1052.96, + "probability": 0.95263671875 + }, + { + "word": " when", + "start": 1052.96, + "end": 1053.44, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1053.44, + "end": 1053.88, + "probability": 1.0 + }, + { + "word": " wonder", + "start": 1053.88, + "end": 1054.2, + "probability": 1.0 + }, + { + "word": " why", + "start": 1054.2, + "end": 1054.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1054.58, + "end": 1055.24, + "probability": 0.7919921875 + }, + { + "word": " you", + "start": 1055.24, + "end": 1056.1, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 1056.1, + "end": 1056.98, + "probability": 0.419677734375 + }, + { + "word": " to", + "start": 1056.98, + "end": 1057.16, + "probability": 1.0 + }, + { + "word": " watch", + "start": 1057.16, + "end": 1057.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 1057.32, + "end": 1057.48, + "probability": 1.0 + }, + { + "word": " movie", + "start": 1057.48, + "end": 1057.68, + "probability": 1.0 + }, + { + "word": " on", + "start": 1057.68, + "end": 1057.92, + "probability": 0.99951171875 + }, + { + "word": " Netflix", + "start": 1057.92, + "end": 1058.24, + "probability": 1.0 + }, + { + "word": " or", + "start": 1058.24, + "end": 1058.74, + "probability": 0.90283203125 + }, + { + "word": " the", + "start": 1058.74, + "end": 1059.18, + "probability": 1.0 + }, + { + "word": " next", + "start": 1059.18, + "end": 1059.66, + "probability": 0.9990234375 + }, + { + "word": " service", + "start": 1059.66, + "end": 1060.28, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1060.28, + "end": 1060.52, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1060.52, + "end": 1060.7, + "probability": 1.0 + }, + { + "word": " out", + "start": 1060.7, + "end": 1060.86, + "probability": 1.0 + }, + { + "word": " after", + "start": 1060.86, + "end": 1061.12, + "probability": 1.0 + }, + { + "word": " Netflix", + "start": 1061.12, + "end": 1061.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 1061.42, + "end": 1061.66, + "probability": 0.7666015625 + }, + { + "word": " you", + "start": 1061.66, + "end": 1061.76, + "probability": 1.0 + }, + { + "word": " wonder", + "start": 1061.76, + "end": 1061.92, + "probability": 1.0 + }, + { + "word": " why", + "start": 1061.92, + "end": 1062.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 1062.06, + "end": 1062.18, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1062.18, + "end": 1062.4, + "probability": 1.0 + }, + { + "word": " afford", + "start": 1062.4, + "end": 1062.62, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1062.62, + "end": 1062.86, + "probability": 1.0 + }, + { + "word": " this", + "start": 1062.92, + "end": 1063.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 1063.68, + "end": 1063.82, + "probability": 1.0 + }, + { + "word": " why.", + "start": 1063.82, + "end": 1064.02, + "probability": 1.0 + } + ] + }, + { + "id": 457, + "text": "And it's because the net neutrality argument was \u2013", + "start": 1064.74, + "end": 1068.0, + "words": [ + { + "word": " And", + "start": 1064.74, + "end": 1065.22, + "probability": 0.9794921875 + }, + { + "word": " it's", + "start": 1065.22, + "end": 1065.7, + "probability": 0.9951171875 + }, + { + "word": " because", + "start": 1065.7, + "end": 1065.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1065.96, + "end": 1066.18, + "probability": 1.0 + }, + { + "word": " net", + "start": 1066.18, + "end": 1066.32, + "probability": 1.0 + }, + { + "word": " neutrality", + "start": 1066.32, + "end": 1066.68, + "probability": 1.0 + }, + { + "word": " argument", + "start": 1066.68, + "end": 1067.34, + "probability": 1.0 + }, + { + "word": " was", + "start": 1067.34, + "end": 1067.78, + "probability": 0.99951171875 + }, + { + "word": " \u2013", + "start": 1067.78, + "end": 1068.0, + "probability": 0.004444122314453125 + } + ] + }, + { + "id": 458, + "text": "Yeah.", + "start": 1068.66, + "end": 1069.14, + "words": [ + { + "word": " Yeah.", + "start": 1068.66, + "end": 1069.14, + "probability": 0.00113677978515625 + } + ] + }, + { + "id": 459, + "text": "It's because the net neutrality argument was designed to make sure that everyone who wanted to provide a service was able to equally.", + "start": 1069.14, + "end": 1075.34, + "words": [ + { + "word": " It's", + "start": 1069.14, + "end": 1069.14, + "probability": 0.0963134765625 + }, + { + "word": " because", + "start": 1069.14, + "end": 1069.14, + "probability": 0.00015354156494140625 + }, + { + "word": " the", + "start": 1069.14, + "end": 1069.14, + "probability": 0.084716796875 + }, + { + "word": " net", + "start": 1069.14, + "end": 1069.14, + "probability": 5.137920379638672e-05 + }, + { + "word": " neutrality", + "start": 1069.14, + "end": 1069.14, + "probability": 0.496826171875 + }, + { + "word": " argument", + "start": 1069.14, + "end": 1069.14, + "probability": 0.00017380714416503906 + }, + { + "word": " was", + "start": 1069.14, + "end": 1069.14, + "probability": 0.062408447265625 + }, + { + "word": " designed", + "start": 1069.14, + "end": 1069.14, + "probability": 0.63720703125 + }, + { + "word": " to", + "start": 1069.14, + "end": 1069.6, + "probability": 0.99169921875 + }, + { + "word": " make", + "start": 1069.6, + "end": 1070.18, + "probability": 0.98828125 + }, + { + "word": " sure", + "start": 1070.18, + "end": 1070.56, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1070.56, + "end": 1071.32, + "probability": 0.9931640625 + }, + { + "word": " everyone", + "start": 1071.32, + "end": 1071.96, + "probability": 0.99072265625 + }, + { + "word": " who", + "start": 1071.96, + "end": 1072.34, + "probability": 0.99365234375 + }, + { + "word": " wanted", + "start": 1072.34, + "end": 1072.6, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1072.6, + "end": 1072.8, + "probability": 0.99951171875 + }, + { + "word": " provide", + "start": 1072.8, + "end": 1073.16, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1073.16, + "end": 1073.42, + "probability": 0.9921875 + }, + { + "word": " service", + "start": 1073.42, + "end": 1073.76, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1073.76, + "end": 1074.0, + "probability": 0.99609375 + }, + { + "word": " able", + "start": 1074.0, + "end": 1074.24, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1074.24, + "end": 1074.46, + "probability": 0.99951171875 + }, + { + "word": " equally.", + "start": 1074.46, + "end": 1075.34, + "probability": 0.9208984375 + } + ] + }, + { + "id": 460, + "text": "We're going to have to take a look at how much piracy increases as a result of this.", + "start": 1075.68, + "end": 1080.18, + "words": [ + { + "word": " We're", + "start": 1075.68, + "end": 1076.16, + "probability": 0.990234375 + }, + { + "word": " going", + "start": 1076.16, + "end": 1076.22, + "probability": 0.94677734375 + }, + { + "word": " to", + "start": 1076.22, + "end": 1076.32, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1076.32, + "end": 1076.44, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1076.44, + "end": 1076.62, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 1076.62, + "end": 1076.94, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1076.94, + "end": 1077.06, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 1077.06, + "end": 1077.2, + "probability": 1.0 + }, + { + "word": " at", + "start": 1077.2, + "end": 1077.38, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 1077.38, + "end": 1077.76, + "probability": 0.92578125 + }, + { + "word": " much", + "start": 1077.76, + "end": 1078.12, + "probability": 1.0 + }, + { + "word": " piracy", + "start": 1078.12, + "end": 1078.5, + "probability": 0.99853515625 + }, + { + "word": " increases", + "start": 1078.5, + "end": 1079.04, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 1079.04, + "end": 1079.44, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1079.44, + "end": 1079.54, + "probability": 1.0 + }, + { + "word": " result", + "start": 1079.54, + "end": 1079.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 1079.76, + "end": 1079.96, + "probability": 0.99951171875 + }, + { + "word": " this.", + "start": 1079.96, + "end": 1080.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 461, + "text": "Oh, it will.", + "start": 1080.34, + "end": 1081.22, + "words": [ + { + "word": " Oh,", + "start": 1080.34, + "end": 1080.76, + "probability": 0.89453125 + }, + { + "word": " it", + "start": 1080.76, + "end": 1080.94, + "probability": 0.99853515625 + }, + { + "word": " will.", + "start": 1080.94, + "end": 1081.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 462, + "text": "It will a bit, in my opinion.", + "start": 1081.88, + "end": 1084.08, + "words": [ + { + "word": " It", + "start": 1081.88, + "end": 1082.36, + "probability": 0.998046875 + }, + { + "word": " will", + "start": 1082.36, + "end": 1082.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 1082.54, + "end": 1082.78, + "probability": 0.97900390625 + }, + { + "word": " bit,", + "start": 1082.78, + "end": 1083.1, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1083.1, + "end": 1083.32, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1083.32, + "end": 1083.46, + "probability": 1.0 + }, + { + "word": " opinion.", + "start": 1083.46, + "end": 1084.08, + "probability": 1.0 + } + ] + }, + { + "id": 463, + "text": "I mean, yeah.", + "start": 1084.42, + "end": 1084.88, + "words": [ + { + "word": " I", + "start": 1084.42, + "end": 1084.54, + "probability": 0.953125 + }, + { + "word": " mean,", + "start": 1084.54, + "end": 1084.7, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 1084.72, + "end": 1084.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 464, + "text": "When the choice is to pay for Pandora or Spotify or whatever T-Mobile service ends up being or whatever, or, you know, just spin up your own streaming media service, the choice is clear if you're able.", + "start": 1084.94, + "end": 1096.22, + "words": [ + { + "word": " When", + "start": 1084.94, + "end": 1085.28, + "probability": 0.89794921875 + }, + { + "word": " the", + "start": 1085.28, + "end": 1085.52, + "probability": 0.9990234375 + }, + { + "word": " choice", + "start": 1085.52, + "end": 1085.76, + "probability": 0.97119140625 + }, + { + "word": " is", + "start": 1085.76, + "end": 1085.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1085.96, + "end": 1086.2, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1086.2, + "end": 1086.82, + "probability": 0.93408203125 + }, + { + "word": " for", + "start": 1086.82, + "end": 1087.12, + "probability": 1.0 + }, + { + "word": " Pandora", + "start": 1087.12, + "end": 1087.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 1087.58, + "end": 1087.68, + "probability": 0.984375 + }, + { + "word": " Spotify", + "start": 1087.68, + "end": 1087.9, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1087.9, + "end": 1088.26, + "probability": 0.9970703125 + }, + { + "word": " whatever", + "start": 1088.26, + "end": 1088.48, + "probability": 1.0 + }, + { + "word": " T", + "start": 1088.48, + "end": 1088.74, + "probability": 0.9912109375 + }, + { + "word": "-Mobile", + "start": 1088.74, + "end": 1088.92, + "probability": 0.9951171875 + }, + { + "word": " service", + "start": 1088.92, + "end": 1089.18, + "probability": 0.9990234375 + }, + { + "word": " ends", + "start": 1089.18, + "end": 1089.46, + "probability": 1.0 + }, + { + "word": " up", + "start": 1089.46, + "end": 1089.58, + "probability": 1.0 + }, + { + "word": " being", + "start": 1089.58, + "end": 1089.76, + "probability": 1.0 + }, + { + "word": " or", + "start": 1089.76, + "end": 1089.92, + "probability": 0.99560546875 + }, + { + "word": " whatever,", + "start": 1089.92, + "end": 1090.08, + "probability": 0.99951171875 + }, + { + "word": " or,", + "start": 1090.28, + "end": 1090.86, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1090.94, + "end": 1091.14, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1091.14, + "end": 1091.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 1091.28, + "end": 1091.46, + "probability": 0.99951171875 + }, + { + "word": " spin", + "start": 1091.46, + "end": 1091.88, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 1091.88, + "end": 1092.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 1092.0, + "end": 1092.14, + "probability": 1.0 + }, + { + "word": " own", + "start": 1092.14, + "end": 1092.34, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 1092.34, + "end": 1092.7, + "probability": 1.0 + }, + { + "word": " media", + "start": 1092.7, + "end": 1092.92, + "probability": 0.99951171875 + }, + { + "word": " service,", + "start": 1092.92, + "end": 1093.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1093.58, + "end": 1094.7, + "probability": 0.99462890625 + }, + { + "word": " choice", + "start": 1094.7, + "end": 1095.04, + "probability": 1.0 + }, + { + "word": " is", + "start": 1095.04, + "end": 1095.2, + "probability": 1.0 + }, + { + "word": " clear", + "start": 1095.2, + "end": 1095.42, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1095.42, + "end": 1095.7, + "probability": 0.99462890625 + }, + { + "word": " you're", + "start": 1095.7, + "end": 1095.92, + "probability": 1.0 + }, + { + "word": " able.", + "start": 1095.92, + "end": 1096.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 465, + "text": "Yep.", + "start": 1096.52, + "end": 1097.0, + "words": [ + { + "word": " Yep.", + "start": 1096.52, + "end": 1097.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 466, + "text": "And, you know, unfortunately I can't teach everyone how to do it, but, you know, it's \u2013 there are options.", + "start": 1097.6399999999999, + "end": 1103.54, + "words": [ + { + "word": " And,", + "start": 1097.6399999999999, + "end": 1098.08, + "probability": 0.76220703125 + }, + { + "word": " you", + "start": 1098.16, + "end": 1098.42, + "probability": 0.96630859375 + }, + { + "word": " know,", + "start": 1098.42, + "end": 1098.6, + "probability": 1.0 + }, + { + "word": " unfortunately", + "start": 1098.6, + "end": 1099.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 1099.46, + "end": 1099.7, + "probability": 0.5849609375 + }, + { + "word": " can't", + "start": 1099.7, + "end": 1099.86, + "probability": 1.0 + }, + { + "word": " teach", + "start": 1099.86, + "end": 1100.02, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 1100.02, + "end": 1100.26, + "probability": 1.0 + }, + { + "word": " how", + "start": 1100.26, + "end": 1100.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 1100.46, + "end": 1100.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 1100.54, + "end": 1100.66, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1100.66, + "end": 1100.8, + "probability": 1.0 + }, + { + "word": " but,", + "start": 1100.84, + "end": 1101.06, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1101.06, + "end": 1101.72, + "probability": 0.9873046875 + }, + { + "word": " know,", + "start": 1101.72, + "end": 1101.9, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1101.92, + "end": 1102.22, + "probability": 0.6669921875 + }, + { + "word": " \u2013", + "start": 1102.22, + "end": 1102.24, + "probability": 0.443115234375 + }, + { + "word": " there", + "start": 1102.24, + "end": 1102.92, + "probability": 0.9794921875 + }, + { + "word": " are", + "start": 1102.92, + "end": 1103.12, + "probability": 1.0 + }, + { + "word": " options.", + "start": 1103.12, + "end": 1103.54, + "probability": 1.0 + } + ] + }, + { + "id": 467, + "text": "I might post some links in the show notes.", + "start": 1103.68, + "end": 1105.58, + "words": [ + { + "word": " I", + "start": 1103.68, + "end": 1104.12, + "probability": 1.0 + }, + { + "word": " might", + "start": 1104.12, + "end": 1104.24, + "probability": 1.0 + }, + { + "word": " post", + "start": 1104.24, + "end": 1104.48, + "probability": 0.98876953125 + }, + { + "word": " some", + "start": 1104.48, + "end": 1104.66, + "probability": 1.0 + }, + { + "word": " links", + "start": 1104.66, + "end": 1104.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 1104.9, + "end": 1105.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1105.1, + "end": 1105.2, + "probability": 1.0 + }, + { + "word": " show", + "start": 1105.2, + "end": 1105.36, + "probability": 1.0 + }, + { + "word": " notes.", + "start": 1105.36, + "end": 1105.58, + "probability": 1.0 + } + ] + }, + { + "id": 468, + "text": "There are options.", + "start": 1107.42, + "end": 1108.5, + "words": [ + { + "word": " There", + "start": 1107.42, + "end": 1107.86, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1107.86, + "end": 1108.1, + "probability": 1.0 + }, + { + "word": " options.", + "start": 1108.1, + "end": 1108.5, + "probability": 1.0 + } + ] + }, + { + "id": 469, + "text": "And that's the good thing about the Internet, though, is that at least for the people who are willing to do a little bit of extra work involved in getting around this stuff, there's always a way.", + "start": 1108.66, + "end": 1120.38, + "words": [ + { + "word": " And", + "start": 1108.66, + "end": 1109.1, + "probability": 0.99560546875 + }, + { + "word": " that's", + "start": 1109.1, + "end": 1109.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1109.9, + "end": 1109.98, + "probability": 1.0 + }, + { + "word": " good", + "start": 1109.98, + "end": 1110.14, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1110.14, + "end": 1110.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 1110.26, + "end": 1110.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1110.4, + "end": 1110.56, + "probability": 1.0 + }, + { + "word": " Internet,", + "start": 1110.56, + "end": 1110.72, + "probability": 0.7578125 + }, + { + "word": " though,", + "start": 1110.88, + "end": 1111.06, + "probability": 1.0 + }, + { + "word": " is", + "start": 1111.08, + "end": 1111.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 1111.28, + "end": 1111.48, + "probability": 1.0 + }, + { + "word": " at", + "start": 1111.48, + "end": 1112.18, + "probability": 0.953125 + }, + { + "word": " least", + "start": 1112.18, + "end": 1112.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 1112.5, + "end": 1112.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 1112.58, + "end": 1112.66, + "probability": 1.0 + }, + { + "word": " people", + "start": 1112.66, + "end": 1112.88, + "probability": 1.0 + }, + { + "word": " who", + "start": 1112.88, + "end": 1113.02, + "probability": 1.0 + }, + { + "word": " are", + "start": 1113.02, + "end": 1113.1, + "probability": 1.0 + }, + { + "word": " willing", + "start": 1113.1, + "end": 1113.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1113.38, + "end": 1113.66, + "probability": 1.0 + }, + { + "word": " do", + "start": 1113.66, + "end": 1114.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 1114.12, + "end": 1114.2, + "probability": 0.763671875 + }, + { + "word": " little", + "start": 1114.2, + "end": 1114.4, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1114.4, + "end": 1114.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 1114.54, + "end": 1114.6, + "probability": 1.0 + }, + { + "word": " extra", + "start": 1114.6, + "end": 1114.82, + "probability": 1.0 + }, + { + "word": " work", + "start": 1114.82, + "end": 1115.12, + "probability": 1.0 + }, + { + "word": " involved", + "start": 1115.12, + "end": 1115.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 1115.54, + "end": 1116.12, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1116.12, + "end": 1117.04, + "probability": 1.0 + }, + { + "word": " around", + "start": 1117.04, + "end": 1117.36, + "probability": 1.0 + }, + { + "word": " this", + "start": 1117.36, + "end": 1117.68, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 1117.68, + "end": 1118.0, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1118.24, + "end": 1119.52, + "probability": 1.0 + }, + { + "word": " always", + "start": 1119.52, + "end": 1119.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 1119.92, + "end": 1120.18, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1120.18, + "end": 1120.38, + "probability": 1.0 + } + ] + }, + { + "id": 470, + "text": "So it's interesting to me, but I'm very disappointed in the FCC.", + "start": 1121.1999999999998, + "end": 1126.94, + "words": [ + { + "word": " So", + "start": 1121.1999999999998, + "end": 1121.6399999999999, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 1121.6399999999999, + "end": 1122.08, + "probability": 0.9892578125 + }, + { + "word": " interesting", + "start": 1122.08, + "end": 1122.98, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1122.98, + "end": 1123.24, + "probability": 1.0 + }, + { + "word": " me,", + "start": 1123.24, + "end": 1123.42, + "probability": 1.0 + }, + { + "word": " but", + "start": 1123.46, + "end": 1123.52, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1123.52, + "end": 1124.54, + "probability": 1.0 + }, + { + "word": " very", + "start": 1124.54, + "end": 1125.52, + "probability": 1.0 + }, + { + "word": " disappointed", + "start": 1125.52, + "end": 1126.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 1126.08, + "end": 1126.66, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 1126.66, + "end": 1126.72, + "probability": 0.9951171875 + }, + { + "word": " FCC.", + "start": 1126.72, + "end": 1126.94, + "probability": 0.54248046875 + } + ] + }, + { + "id": 471, + "text": "When it comes to the net neutrality decision here, to go back on something that is very, very, in my opinion, very helpful for the end user because it's forcing everyone to sort of live on \u2013 or play by the same rules.", + "start": 1127.0, + "end": 1145.74, + "words": [ + { + "word": " When", + "start": 1127.0, + "end": 1127.4, + "probability": 0.06512451171875 + }, + { + "word": " it", + "start": 1127.4, + "end": 1127.58, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 1127.58, + "end": 1127.78, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1127.78, + "end": 1127.94, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1127.94, + "end": 1128.14, + "probability": 0.99658203125 + }, + { + "word": " net", + "start": 1128.14, + "end": 1128.42, + "probability": 0.99365234375 + }, + { + "word": " neutrality", + "start": 1128.42, + "end": 1128.92, + "probability": 0.99951171875 + }, + { + "word": " decision", + "start": 1128.92, + "end": 1129.6, + "probability": 0.98828125 + }, + { + "word": " here,", + "start": 1129.6, + "end": 1130.0, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1130.1, + "end": 1130.66, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1130.66, + "end": 1130.84, + "probability": 1.0 + }, + { + "word": " back", + "start": 1130.84, + "end": 1131.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1131.1, + "end": 1131.3, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1131.3, + "end": 1131.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1131.54, + "end": 1131.88, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1131.88, + "end": 1132.16, + "probability": 0.99951171875 + }, + { + "word": " very,", + "start": 1132.16, + "end": 1133.92, + "probability": 0.869140625 + }, + { + "word": " very,", + "start": 1134.98, + "end": 1135.22, + "probability": 0.9931640625 + }, + { + "word": " in", + "start": 1135.24, + "end": 1136.24, + "probability": 1.0 + }, + { + "word": " my", + "start": 1136.24, + "end": 1136.42, + "probability": 1.0 + }, + { + "word": " opinion,", + "start": 1136.42, + "end": 1136.74, + "probability": 1.0 + }, + { + "word": " very", + "start": 1136.8, + "end": 1136.96, + "probability": 0.99951171875 + }, + { + "word": " helpful", + "start": 1136.96, + "end": 1137.38, + "probability": 1.0 + }, + { + "word": " for", + "start": 1137.38, + "end": 1138.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1138.0, + "end": 1138.16, + "probability": 1.0 + }, + { + "word": " end", + "start": 1138.16, + "end": 1138.34, + "probability": 1.0 + }, + { + "word": " user", + "start": 1138.34, + "end": 1138.7, + "probability": 0.99365234375 + }, + { + "word": " because", + "start": 1138.7, + "end": 1139.66, + "probability": 0.349365234375 + }, + { + "word": " it's", + "start": 1139.66, + "end": 1140.66, + "probability": 0.9990234375 + }, + { + "word": " forcing", + "start": 1140.66, + "end": 1141.54, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 1141.54, + "end": 1142.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 1142.04, + "end": 1142.5, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1142.5, + "end": 1143.28, + "probability": 0.984375 + }, + { + "word": " of", + "start": 1143.28, + "end": 1143.48, + "probability": 1.0 + }, + { + "word": " live", + "start": 1143.48, + "end": 1144.08, + "probability": 0.98486328125 + }, + { + "word": " on", + "start": 1144.08, + "end": 1144.34, + "probability": 0.9892578125 + }, + { + "word": " \u2013", + "start": 1144.34, + "end": 1144.48, + "probability": 0.055694580078125 + }, + { + "word": " or", + "start": 1144.48, + "end": 1144.96, + "probability": 0.75439453125 + }, + { + "word": " play", + "start": 1144.96, + "end": 1145.18, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 1145.18, + "end": 1145.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1145.32, + "end": 1145.4, + "probability": 1.0 + }, + { + "word": " same", + "start": 1145.4, + "end": 1145.56, + "probability": 1.0 + }, + { + "word": " rules.", + "start": 1145.56, + "end": 1145.74, + "probability": 1.0 + } + ] + }, + { + "id": 472, + "text": "All of the providers have to play by the same rules under net neutrality, and now they don't.", + "start": 1145.88, + "end": 1151.94, + "words": [ + { + "word": " All", + "start": 1145.88, + "end": 1146.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 1146.08, + "end": 1146.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1146.4, + "end": 1146.64, + "probability": 1.0 + }, + { + "word": " providers", + "start": 1146.64, + "end": 1147.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 1147.4, + "end": 1147.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1147.84, + "end": 1148.08, + "probability": 1.0 + }, + { + "word": " play", + "start": 1148.08, + "end": 1148.24, + "probability": 1.0 + }, + { + "word": " by", + "start": 1148.24, + "end": 1148.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 1148.38, + "end": 1148.46, + "probability": 1.0 + }, + { + "word": " same", + "start": 1148.46, + "end": 1148.66, + "probability": 1.0 + }, + { + "word": " rules", + "start": 1148.66, + "end": 1148.98, + "probability": 1.0 + }, + { + "word": " under", + "start": 1148.98, + "end": 1149.22, + "probability": 0.8701171875 + }, + { + "word": " net", + "start": 1149.22, + "end": 1149.38, + "probability": 0.99951171875 + }, + { + "word": " neutrality,", + "start": 1149.38, + "end": 1149.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 1149.94, + "end": 1150.68, + "probability": 1.0 + }, + { + "word": " now", + "start": 1150.68, + "end": 1151.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 1151.44, + "end": 1151.6, + "probability": 1.0 + }, + { + "word": " don't.", + "start": 1151.6, + "end": 1151.94, + "probability": 1.0 + } + ] + }, + { + "id": 473, + "text": "And so we'll see what happens with them.", + "start": 1152.02, + "end": 1154.42, + "words": [ + { + "word": " And", + "start": 1152.02, + "end": 1152.42, + "probability": 0.95458984375 + }, + { + "word": " so", + "start": 1152.42, + "end": 1152.76, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 1152.76, + "end": 1153.54, + "probability": 0.98046875 + }, + { + "word": " see", + "start": 1153.54, + "end": 1153.64, + "probability": 1.0 + }, + { + "word": " what", + "start": 1153.64, + "end": 1153.76, + "probability": 1.0 + }, + { + "word": " happens", + "start": 1153.76, + "end": 1154.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 1154.06, + "end": 1154.24, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1154.24, + "end": 1154.42, + "probability": 0.84375 + } + ] + }, + { + "id": 474, + "text": "Let's go ahead and take a call here.", + "start": 1155.18, + "end": 1156.14, + "words": [ + { + "word": " Let's", + "start": 1155.18, + "end": 1155.58, + "probability": 0.953125 + }, + { + "word": " go", + "start": 1155.58, + "end": 1155.6, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1155.6, + "end": 1155.72, + "probability": 0.99169921875 + }, + { + "word": " and", + "start": 1155.72, + "end": 1155.74, + "probability": 1.0 + }, + { + "word": " take", + "start": 1155.74, + "end": 1155.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 1155.84, + "end": 1155.9, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 1155.9, + "end": 1156.04, + "probability": 0.99609375 + }, + { + "word": " here.", + "start": 1156.04, + "end": 1156.14, + "probability": 0.978515625 + } + ] + }, + { + "id": 475, + "text": "We'll talk to Philip.", + "start": 1156.16, + "end": 1156.72, + "words": [ + { + "word": " We'll", + "start": 1156.16, + "end": 1156.26, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 1156.26, + "end": 1156.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 1156.4, + "end": 1156.54, + "probability": 1.0 + }, + { + "word": " Philip.", + "start": 1156.54, + "end": 1156.72, + "probability": 0.69091796875 + } + ] + }, + { + "id": 476, + "text": "Hey, Philip.", + "start": 1156.76, + "end": 1156.98, + "words": [ + { + "word": " Hey,", + "start": 1156.76, + "end": 1156.88, + "probability": 0.95947265625 + }, + { + "word": " Philip.", + "start": 1156.92, + "end": 1156.98, + "probability": 0.83447265625 + } + ] + }, + { + "id": 477, + "text": "Philip, how are you?", + "start": 1157.0, + "end": 1157.4, + "words": [ + { + "word": " Philip,", + "start": 1157.0, + "end": 1157.08, + "probability": 0.5244140625 + }, + { + "word": " how", + "start": 1157.12, + "end": 1157.2, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1157.2, + "end": 1157.3, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1157.3, + "end": 1157.4, + "probability": 1.0 + } + ] + }, + { + "id": 478, + "text": "Yeah, I went to Best Buy.", + "start": 1158.1200000000001, + "end": 1159.32, + "words": [ + { + "word": " Yeah,", + "start": 1158.1200000000001, + "end": 1158.48, + "probability": 0.96533203125 + }, + { + "word": " I", + "start": 1158.5, + "end": 1158.6, + "probability": 0.99951171875 + }, + { + "word": " went", + "start": 1158.6, + "end": 1158.78, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1158.78, + "end": 1158.88, + "probability": 0.9990234375 + }, + { + "word": " Best", + "start": 1158.88, + "end": 1159.06, + "probability": 0.99951171875 + }, + { + "word": " Buy.", + "start": 1159.06, + "end": 1159.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 479, + "text": "I was going to buy a Galaxy Tab E for $250.", + "start": 1159.4, + "end": 1162.36, + "words": [ + { + "word": " I", + "start": 1159.4, + "end": 1159.54, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 1159.54, + "end": 1159.62, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1159.62, + "end": 1159.72, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 1159.72, + "end": 1159.84, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1159.84, + "end": 1160.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1160.04, + "end": 1160.38, + "probability": 1.0 + }, + { + "word": " Galaxy", + "start": 1160.38, + "end": 1160.88, + "probability": 0.99951171875 + }, + { + "word": " Tab", + "start": 1160.88, + "end": 1161.22, + "probability": 0.998046875 + }, + { + "word": " E", + "start": 1161.22, + "end": 1161.48, + "probability": 0.99609375 + }, + { + "word": " for", + "start": 1161.48, + "end": 1161.68, + "probability": 0.99951171875 + }, + { + "word": " $250.", + "start": 1161.68, + "end": 1162.36, + "probability": 1.0 + } + ] + }, + { + "id": 480, + "text": "Okay.", + "start": 1163.0600000000002, + "end": 1163.42, + "words": [ + { + "word": " Okay.", + "start": 1163.0600000000002, + "end": 1163.42, + "probability": 0.9482421875 + } + ] + }, + { + "id": 481, + "text": "And they sent me over to the AT&T store on Oracle, and they gave it to me for 99 cents.", + "start": 1163.94, + "end": 1168.54, + "words": [ + { + "word": " And", + "start": 1163.94, + "end": 1164.3, + "probability": 0.98046875 + }, + { + "word": " they", + "start": 1164.3, + "end": 1164.5, + "probability": 0.9990234375 + }, + { + "word": " sent", + "start": 1164.5, + "end": 1164.78, + "probability": 1.0 + }, + { + "word": " me", + "start": 1164.78, + "end": 1164.96, + "probability": 1.0 + }, + { + "word": " over", + "start": 1164.96, + "end": 1165.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1165.14, + "end": 1165.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 1165.28, + "end": 1165.42, + "probability": 1.0 + }, + { + "word": " AT", + "start": 1165.42, + "end": 1165.78, + "probability": 0.99951171875 + }, + { + "word": "&T", + "start": 1165.78, + "end": 1166.02, + "probability": 1.0 + }, + { + "word": " store", + "start": 1166.02, + "end": 1166.34, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1166.34, + "end": 1166.5, + "probability": 0.40771484375 + }, + { + "word": " Oracle,", + "start": 1166.5, + "end": 1166.78, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1166.92, + "end": 1167.1, + "probability": 1.0 + }, + { + "word": " they", + "start": 1167.1, + "end": 1167.18, + "probability": 1.0 + }, + { + "word": " gave", + "start": 1167.18, + "end": 1167.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 1167.42, + "end": 1167.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1167.52, + "end": 1167.64, + "probability": 1.0 + }, + { + "word": " me", + "start": 1167.64, + "end": 1167.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 1167.74, + "end": 1167.86, + "probability": 1.0 + }, + { + "word": " 99", + "start": 1167.86, + "end": 1168.12, + "probability": 0.6142578125 + }, + { + "word": " cents.", + "start": 1168.12, + "end": 1168.54, + "probability": 1.0 + } + ] + }, + { + "id": 482, + "text": "With your contract, right?", + "start": 1169.38, + "end": 1170.62, + "words": [ + { + "word": " With", + "start": 1169.38, + "end": 1169.74, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1169.74, + "end": 1169.9, + "probability": 1.0 + }, + { + "word": " contract,", + "start": 1169.9, + "end": 1170.3, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1170.42, + "end": 1170.62, + "probability": 1.0 + } + ] + }, + { + "id": 483, + "text": "Yes.", + "start": 1171.46, + "end": 1171.82, + "words": [ + { + "word": " Yes.", + "start": 1171.46, + "end": 1171.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 484, + "text": "I was going to get a contract anyway, so I'm wondering, is this thing going to blow up on me?", + "start": 1172.08, + "end": 1175.54, + "words": [ + { + "word": " I", + "start": 1172.08, + "end": 1172.44, + "probability": 0.87548828125 + }, + { + "word": " was", + "start": 1172.44, + "end": 1172.6, + "probability": 1.0 + }, + { + "word": " going", + "start": 1172.6, + "end": 1172.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1172.68, + "end": 1172.78, + "probability": 1.0 + }, + { + "word": " get", + "start": 1172.78, + "end": 1172.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 1172.88, + "end": 1172.96, + "probability": 1.0 + }, + { + "word": " contract", + "start": 1172.96, + "end": 1173.2, + "probability": 1.0 + }, + { + "word": " anyway,", + "start": 1173.2, + "end": 1173.58, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 1173.64, + "end": 1173.8, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 1173.8, + "end": 1173.98, + "probability": 0.9970703125 + }, + { + "word": " wondering,", + "start": 1173.98, + "end": 1174.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 1174.22, + "end": 1174.4, + "probability": 1.0 + }, + { + "word": " this", + "start": 1174.4, + "end": 1174.52, + "probability": 0.95556640625 + }, + { + "word": " thing", + "start": 1174.52, + "end": 1174.66, + "probability": 0.99658203125 + }, + { + "word": " going", + "start": 1174.66, + "end": 1174.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1174.76, + "end": 1174.86, + "probability": 1.0 + }, + { + "word": " blow", + "start": 1174.86, + "end": 1175.02, + "probability": 1.0 + }, + { + "word": " up", + "start": 1175.02, + "end": 1175.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1175.2, + "end": 1175.34, + "probability": 1.0 + }, + { + "word": " me?", + "start": 1175.34, + "end": 1175.54, + "probability": 1.0 + } + ] + }, + { + "id": 485, + "text": "Well, you know, it is a Samsung product, but no, it's probably not going to burst into flames.", + "start": 1176.88, + "end": 1181.62, + "words": [ + { + "word": " Well,", + "start": 1176.88, + "end": 1177.24, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 1177.3, + "end": 1177.46, + "probability": 0.96435546875 + }, + { + "word": " know,", + "start": 1177.46, + "end": 1177.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 1177.64, + "end": 1177.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 1177.76, + "end": 1178.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1178.0, + "end": 1178.14, + "probability": 1.0 + }, + { + "word": " Samsung", + "start": 1178.14, + "end": 1178.4, + "probability": 1.0 + }, + { + "word": " product,", + "start": 1178.4, + "end": 1178.7, + "probability": 1.0 + }, + { + "word": " but", + "start": 1178.76, + "end": 1178.92, + "probability": 1.0 + }, + { + "word": " no,", + "start": 1178.92, + "end": 1179.12, + "probability": 0.96240234375 + }, + { + "word": " it's", + "start": 1179.24, + "end": 1179.44, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1179.44, + "end": 1179.68, + "probability": 1.0 + }, + { + "word": " not", + "start": 1179.68, + "end": 1180.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 1180.04, + "end": 1180.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1180.32, + "end": 1180.58, + "probability": 1.0 + }, + { + "word": " burst", + "start": 1180.58, + "end": 1181.06, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1181.06, + "end": 1181.3, + "probability": 1.0 + }, + { + "word": " flames.", + "start": 1181.3, + "end": 1181.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 486, + "text": "I'm just wondering, why would they give it to me?", + "start": 1182.68, + "end": 1184.66, + "words": [ + { + "word": " I'm", + "start": 1182.68, + "end": 1183.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 1183.04, + "end": 1183.16, + "probability": 1.0 + }, + { + "word": " wondering,", + "start": 1183.16, + "end": 1183.46, + "probability": 1.0 + }, + { + "word": " why", + "start": 1183.54, + "end": 1183.72, + "probability": 1.0 + }, + { + "word": " would", + "start": 1183.72, + "end": 1183.9, + "probability": 1.0 + }, + { + "word": " they", + "start": 1183.9, + "end": 1184.02, + "probability": 1.0 + }, + { + "word": " give", + "start": 1184.02, + "end": 1184.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 1184.2, + "end": 1184.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1184.3, + "end": 1184.5, + "probability": 1.0 + }, + { + "word": " me?", + "start": 1184.5, + "end": 1184.66, + "probability": 1.0 + } + ] + }, + { + "id": 487, + "text": "I mean \u2013", + "start": 1184.8, + "end": 1185.2, + "words": [ + { + "word": " I", + "start": 1184.8, + "end": 1184.92, + "probability": 0.8583984375 + }, + { + "word": " mean", + "start": 1184.92, + "end": 1185.08, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1185.08, + "end": 1185.2, + "probability": 0.0543212890625 + } + ] + }, + { + "id": 488, + "text": "It's worth it to them to get you on the call.", + "start": 1185.2, + "end": 1186.98, + "words": [ + { + "word": " It's", + "start": 1185.2, + "end": 1185.42, + "probability": 0.9853515625 + }, + { + "word": " worth", + "start": 1185.42, + "end": 1185.62, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1185.62, + "end": 1185.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1185.84, + "end": 1186.06, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 1186.06, + "end": 1186.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 1186.24, + "end": 1186.46, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 1186.46, + "end": 1186.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1186.6, + "end": 1186.76, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1186.76, + "end": 1186.88, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 1186.88, + "end": 1186.98, + "probability": 0.98388671875 + }, + { + "word": " call.", + "start": 1186.98, + "end": 1186.98, + "probability": 0.267578125 + } + ] + }, + { + "id": 489, + "text": "A contract is really what it comes down to.", + "start": 1186.98, + "end": 1188.68, + "words": [ + { + "word": " A", + "start": 1186.98, + "end": 1186.98, + "probability": 0.12890625 + }, + { + "word": " contract", + "start": 1186.98, + "end": 1187.18, + "probability": 0.99365234375 + }, + { + "word": " is", + "start": 1187.18, + "end": 1187.7, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 1187.7, + "end": 1188.0, + "probability": 1.0 + }, + { + "word": " what", + "start": 1188.0, + "end": 1188.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 1188.16, + "end": 1188.26, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1188.26, + "end": 1188.36, + "probability": 1.0 + }, + { + "word": " down", + "start": 1188.36, + "end": 1188.5, + "probability": 1.0 + }, + { + "word": " to.", + "start": 1188.5, + "end": 1188.68, + "probability": 1.0 + } + ] + }, + { + "id": 490, + "text": "So, I mean \u2013", + "start": 1188.86, + "end": 1189.64, + "words": [ + { + "word": " So,", + "start": 1188.86, + "end": 1189.24, + "probability": 0.316650390625 + }, + { + "word": " I", + "start": 1189.34, + "end": 1189.46, + "probability": 0.99951171875 + }, + { + "word": " mean", + "start": 1189.46, + "end": 1189.56, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1189.56, + "end": 1189.64, + "probability": 0.186767578125 + } + ] + }, + { + "id": 491, + "text": "You mentioned the unlimited thing, which is now part of their deal.", + "start": 1189.64, + "end": 1192.74, + "words": [ + { + "word": " You", + "start": 1189.64, + "end": 1189.7, + "probability": 0.91650390625 + }, + { + "word": " mentioned", + "start": 1189.7, + "end": 1190.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1190.1, + "end": 1190.44, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1190.44, + "end": 1190.9, + "probability": 0.98291015625 + }, + { + "word": " thing,", + "start": 1190.9, + "end": 1191.44, + "probability": 1.0 + }, + { + "word": " which", + "start": 1191.48, + "end": 1191.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 1191.72, + "end": 1191.86, + "probability": 1.0 + }, + { + "word": " now", + "start": 1191.86, + "end": 1192.1, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 1192.1, + "end": 1192.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 1192.3, + "end": 1192.42, + "probability": 1.0 + }, + { + "word": " their", + "start": 1192.42, + "end": 1192.5, + "probability": 0.9990234375 + }, + { + "word": " deal.", + "start": 1192.5, + "end": 1192.74, + "probability": 1.0 + } + ] + }, + { + "id": 492, + "text": "Of course, I've experienced what unlimited really means.", + "start": 1192.82, + "end": 1194.9, + "words": [ + { + "word": " Of", + "start": 1192.82, + "end": 1192.94, + "probability": 0.99609375 + }, + { + "word": " course,", + "start": 1192.94, + "end": 1193.14, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1193.18, + "end": 1193.4, + "probability": 1.0 + }, + { + "word": " experienced", + "start": 1193.4, + "end": 1193.74, + "probability": 1.0 + }, + { + "word": " what", + "start": 1193.74, + "end": 1193.98, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1193.98, + "end": 1194.26, + "probability": 1.0 + }, + { + "word": " really", + "start": 1194.26, + "end": 1194.58, + "probability": 1.0 + }, + { + "word": " means.", + "start": 1194.58, + "end": 1194.9, + "probability": 1.0 + } + ] + }, + { + "id": 493, + "text": "It means nothing.", + "start": 1194.94, + "end": 1195.52, + "words": [ + { + "word": " It", + "start": 1194.94, + "end": 1195.08, + "probability": 0.99755859375 + }, + { + "word": " means", + "start": 1195.08, + "end": 1195.18, + "probability": 1.0 + }, + { + "word": " nothing.", + "start": 1195.18, + "end": 1195.52, + "probability": 1.0 + } + ] + }, + { + "id": 494, + "text": "Well, it depends on your provider.", + "start": 1196.5, + "end": 1197.78, + "words": [ + { + "word": " Well,", + "start": 1196.5, + "end": 1196.88, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1196.92, + "end": 1197.02, + "probability": 1.0 + }, + { + "word": " depends", + "start": 1197.02, + "end": 1197.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1197.2, + "end": 1197.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 1197.32, + "end": 1197.4, + "probability": 1.0 + }, + { + "word": " provider.", + "start": 1197.4, + "end": 1197.78, + "probability": 1.0 + } + ] + }, + { + "id": 495, + "text": "So, like \u2013 yeah, it depends on the provider.", + "start": 1198.56, + "end": 1201.82, + "words": [ + { + "word": " So,", + "start": 1198.56, + "end": 1198.94, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 1199.0, + "end": 1199.32, + "probability": 0.99853515625 + }, + { + "word": " \u2013", + "start": 1199.32, + "end": 1199.58, + "probability": 0.55322265625 + }, + { + "word": " yeah,", + "start": 1199.58, + "end": 1201.1, + "probability": 0.89404296875 + }, + { + "word": " it", + "start": 1201.14, + "end": 1201.22, + "probability": 1.0 + }, + { + "word": " depends", + "start": 1201.22, + "end": 1201.38, + "probability": 1.0 + }, + { + "word": " on", + "start": 1201.38, + "end": 1201.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 1201.54, + "end": 1201.58, + "probability": 1.0 + }, + { + "word": " provider.", + "start": 1201.58, + "end": 1201.82, + "probability": 1.0 + } + ] + }, + { + "id": 496, + "text": "Some providers do the real, truly unlimited up to a certain point.", + "start": 1202.46, + "end": 1208.2, + "words": [ + { + "word": " Some", + "start": 1202.46, + "end": 1202.84, + "probability": 1.0 + }, + { + "word": " providers", + "start": 1202.84, + "end": 1203.14, + "probability": 1.0 + }, + { + "word": " do", + "start": 1203.14, + "end": 1203.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 1203.64, + "end": 1203.82, + "probability": 1.0 + }, + { + "word": " real,", + "start": 1203.82, + "end": 1204.2, + "probability": 0.99951171875 + }, + { + "word": " truly", + "start": 1204.22, + "end": 1204.56, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1204.56, + "end": 1205.04, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1205.04, + "end": 1205.94, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 1205.94, + "end": 1206.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1206.82, + "end": 1207.0, + "probability": 1.0 + }, + { + "word": " certain", + "start": 1207.0, + "end": 1207.82, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1207.82, + "end": 1208.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 497, + "text": "I mean, up to an unreasonable point.", + "start": 1208.28, + "end": 1209.82, + "words": [ + { + "word": " I", + "start": 1208.28, + "end": 1208.38, + "probability": 0.9970703125 + }, + { + "word": " mean,", + "start": 1208.38, + "end": 1208.46, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1208.48, + "end": 1208.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1208.64, + "end": 1208.78, + "probability": 1.0 + }, + { + "word": " an", + "start": 1208.78, + "end": 1208.84, + "probability": 1.0 + }, + { + "word": " unreasonable", + "start": 1208.84, + "end": 1209.26, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1209.26, + "end": 1209.82, + "probability": 1.0 + } + ] + }, + { + "id": 498, + "text": "I mean, 200 gigabytes for Verizon.", + "start": 1209.9, + "end": 1211.86, + "words": [ + { + "word": " I", + "start": 1209.9, + "end": 1210.02, + "probability": 0.998046875 + }, + { + "word": " mean,", + "start": 1210.02, + "end": 1210.1, + "probability": 0.99951171875 + }, + { + "word": " 200", + "start": 1210.1, + "end": 1210.24, + "probability": 0.65966796875 + }, + { + "word": " gigabytes", + "start": 1210.24, + "end": 1210.76, + "probability": 0.99755859375 + }, + { + "word": " for", + "start": 1210.76, + "end": 1211.46, + "probability": 0.9931640625 + }, + { + "word": " Verizon.", + "start": 1211.46, + "end": 1211.86, + "probability": 0.986328125 + } + ] + }, + { + "id": 499, + "text": "I don't know about AT&T, but, yeah, Verizon does have a limit in place, technically.", + "start": 1212.04, + "end": 1215.74, + "words": [ + { + "word": " I", + "start": 1212.04, + "end": 1212.42, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 1212.42, + "end": 1212.58, + "probability": 0.93310546875 + }, + { + "word": " know", + "start": 1212.58, + "end": 1212.62, + "probability": 1.0 + }, + { + "word": " about", + "start": 1212.62, + "end": 1212.78, + "probability": 1.0 + }, + { + "word": " AT", + "start": 1212.78, + "end": 1213.06, + "probability": 1.0 + }, + { + "word": "&T,", + "start": 1213.06, + "end": 1213.28, + "probability": 1.0 + }, + { + "word": " but,", + "start": 1213.34, + "end": 1213.52, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 1213.56, + "end": 1213.68, + "probability": 1.0 + }, + { + "word": " Verizon", + "start": 1213.7, + "end": 1213.94, + "probability": 1.0 + }, + { + "word": " does", + "start": 1213.94, + "end": 1214.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 1214.28, + "end": 1214.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1214.52, + "end": 1214.62, + "probability": 1.0 + }, + { + "word": " limit", + "start": 1214.62, + "end": 1214.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 1214.82, + "end": 1215.02, + "probability": 1.0 + }, + { + "word": " place,", + "start": 1215.02, + "end": 1215.3, + "probability": 1.0 + }, + { + "word": " technically.", + "start": 1215.38, + "end": 1215.74, + "probability": 1.0 + } + ] + }, + { + "id": 500, + "text": "Right.", + "start": 1216.34, + "end": 1216.72, + "words": [ + { + "word": " Right.", + "start": 1216.34, + "end": 1216.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 501, + "text": "So, it's \u2013 and the T-Mobile stuff does throttle you if you go over 23 gigabytes.", + "start": 1216.98, + "end": 1221.0, + "words": [ + { + "word": " So,", + "start": 1216.98, + "end": 1217.08, + "probability": 0.2125244140625 + }, + { + "word": " it's", + "start": 1217.08, + "end": 1217.54, + "probability": 0.9375 + }, + { + "word": " \u2013", + "start": 1217.54, + "end": 1217.58, + "probability": 0.30908203125 + }, + { + "word": " and", + "start": 1217.58, + "end": 1218.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1218.04, + "end": 1218.18, + "probability": 1.0 + }, + { + "word": " T", + "start": 1218.18, + "end": 1218.32, + "probability": 0.99658203125 + }, + { + "word": "-Mobile", + "start": 1218.32, + "end": 1218.52, + "probability": 0.998046875 + }, + { + "word": " stuff", + "start": 1218.52, + "end": 1218.76, + "probability": 1.0 + }, + { + "word": " does", + "start": 1218.76, + "end": 1219.04, + "probability": 1.0 + }, + { + "word": " throttle", + "start": 1219.04, + "end": 1219.36, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1219.36, + "end": 1219.62, + "probability": 1.0 + }, + { + "word": " if", + "start": 1219.62, + "end": 1219.78, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1219.78, + "end": 1219.86, + "probability": 1.0 + }, + { + "word": " go", + "start": 1219.86, + "end": 1220.0, + "probability": 1.0 + }, + { + "word": " over", + "start": 1220.0, + "end": 1220.12, + "probability": 1.0 + }, + { + "word": " 23", + "start": 1220.12, + "end": 1220.56, + "probability": 1.0 + }, + { + "word": " gigabytes.", + "start": 1220.56, + "end": 1221.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 502, + "text": "So, there is a certain amount of congestion there, and I think it's unlimited within reason is the way that they're looking at it.", + "start": 1222.48, + "end": 1231.14, + "words": [ + { + "word": " So,", + "start": 1222.48, + "end": 1222.84, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1223.0, + "end": 1223.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 1223.36, + "end": 1223.78, + "probability": 0.98388671875 + }, + { + "word": " a", + "start": 1223.78, + "end": 1223.94, + "probability": 1.0 + }, + { + "word": " certain", + "start": 1223.94, + "end": 1225.14, + "probability": 0.62939453125 + }, + { + "word": " amount", + "start": 1225.14, + "end": 1225.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 1225.66, + "end": 1225.92, + "probability": 1.0 + }, + { + "word": " congestion", + "start": 1225.92, + "end": 1226.34, + "probability": 1.0 + }, + { + "word": " there,", + "start": 1226.34, + "end": 1226.78, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1226.82, + "end": 1226.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 1226.92, + "end": 1227.0, + "probability": 1.0 + }, + { + "word": " think", + "start": 1227.0, + "end": 1227.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1227.18, + "end": 1227.4, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1227.4, + "end": 1228.38, + "probability": 0.99951171875 + }, + { + "word": " within", + "start": 1228.38, + "end": 1228.88, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1228.88, + "end": 1229.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1229.3, + "end": 1229.56, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 1229.56, + "end": 1229.7, + "probability": 0.5234375 + }, + { + "word": " way", + "start": 1229.7, + "end": 1230.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 1230.2, + "end": 1230.36, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1230.36, + "end": 1230.52, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1230.52, + "end": 1230.72, + "probability": 1.0 + }, + { + "word": " at", + "start": 1230.72, + "end": 1230.96, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1230.96, + "end": 1231.14, + "probability": 1.0 + } + ] + }, + { + "id": 503, + "text": "But you don't think I'm being scammed somehow?", + "start": 1231.96, + "end": 1233.88, + "words": [ + { + "word": " But", + "start": 1231.96, + "end": 1232.3, + "probability": 0.869140625 + }, + { + "word": " you", + "start": 1232.3, + "end": 1232.4, + "probability": 0.99658203125 + }, + { + "word": " don't", + "start": 1232.4, + "end": 1232.6, + "probability": 1.0 + }, + { + "word": " think", + "start": 1232.6, + "end": 1232.76, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1232.76, + "end": 1232.92, + "probability": 1.0 + }, + { + "word": " being", + "start": 1232.92, + "end": 1233.08, + "probability": 1.0 + }, + { + "word": " scammed", + "start": 1233.08, + "end": 1233.52, + "probability": 0.9990234375 + }, + { + "word": " somehow?", + "start": 1233.52, + "end": 1233.88, + "probability": 0.99072265625 + } + ] + }, + { + "id": 504, + "text": "I mean, why would they give it to me?", + "start": 1234.42, + "end": 1235.94, + "words": [ + { + "word": " I", + "start": 1234.42, + "end": 1234.78, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 1234.78, + "end": 1234.94, + "probability": 1.0 + }, + { + "word": " why", + "start": 1234.94, + "end": 1235.14, + "probability": 1.0 + }, + { + "word": " would", + "start": 1235.14, + "end": 1235.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 1235.34, + "end": 1235.44, + "probability": 1.0 + }, + { + "word": " give", + "start": 1235.44, + "end": 1235.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 1235.6, + "end": 1235.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1235.72, + "end": 1235.84, + "probability": 1.0 + }, + { + "word": " me?", + "start": 1235.84, + "end": 1235.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 505, + "text": "Well, of course you're being scammed.", + "start": 1235.96, + "end": 1237.08, + "words": [ + { + "word": " Well,", + "start": 1235.96, + "end": 1236.08, + "probability": 0.69921875 + }, + { + "word": " of", + "start": 1236.12, + "end": 1236.2, + "probability": 1.0 + }, + { + "word": " course", + "start": 1236.2, + "end": 1236.38, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1236.38, + "end": 1236.48, + "probability": 0.99462890625 + }, + { + "word": " being", + "start": 1236.48, + "end": 1236.64, + "probability": 1.0 + }, + { + "word": " scammed.", + "start": 1236.64, + "end": 1237.08, + "probability": 1.0 + } + ] + }, + { + "id": 506, + "text": "You're in a contract.", + "start": 1237.1, + "end": 1237.74, + "words": [ + { + "word": " You're", + "start": 1237.1, + "end": 1237.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 1237.28, + "end": 1237.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 1237.34, + "end": 1237.38, + "probability": 1.0 + }, + { + "word": " contract.", + "start": 1237.38, + "end": 1237.74, + "probability": 1.0 + } + ] + }, + { + "id": 507, + "text": "Yeah, that's the scam.", + "start": 1238.18, + "end": 1239.18, + "words": [ + { + "word": " Yeah,", + "start": 1238.18, + "end": 1238.54, + "probability": 0.9970703125 + }, + { + "word": " that's", + "start": 1238.56, + "end": 1238.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1238.8, + "end": 1238.88, + "probability": 1.0 + }, + { + "word": " scam.", + "start": 1238.88, + "end": 1239.18, + "probability": 1.0 + } + ] + }, + { + "id": 508, + "text": "Well, I was already going to go through a contract anyway.", + "start": 1240.1000000000001, + "end": 1242.3, + "words": [ + { + "word": " Well,", + "start": 1240.1000000000001, + "end": 1240.46, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1240.48, + "end": 1240.58, + "probability": 1.0 + }, + { + "word": " was", + "start": 1240.58, + "end": 1240.7, + "probability": 1.0 + }, + { + "word": " already", + "start": 1240.7, + "end": 1240.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 1240.94, + "end": 1241.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1241.14, + "end": 1241.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 1241.32, + "end": 1241.46, + "probability": 1.0 + }, + { + "word": " through", + "start": 1241.46, + "end": 1241.58, + "probability": 0.82568359375 + }, + { + "word": " a", + "start": 1241.58, + "end": 1241.7, + "probability": 0.9990234375 + }, + { + "word": " contract", + "start": 1241.7, + "end": 1241.96, + "probability": 0.99853515625 + }, + { + "word": " anyway.", + "start": 1241.96, + "end": 1242.3, + "probability": 0.97412109375 + } + ] + }, + { + "id": 509, + "text": "So, in your case, if you were already planning on going into a contract no matter what, it's a good deal?", + "start": 1242.42, + "end": 1246.04, + "words": [ + { + "word": " So,", + "start": 1242.42, + "end": 1242.6, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1242.64, + "end": 1242.74, + "probability": 1.0 + }, + { + "word": " your", + "start": 1242.74, + "end": 1242.86, + "probability": 1.0 + }, + { + "word": " case,", + "start": 1242.86, + "end": 1243.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 1243.16, + "end": 1243.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1243.3, + "end": 1243.38, + "probability": 1.0 + }, + { + "word": " were", + "start": 1243.38, + "end": 1243.46, + "probability": 1.0 + }, + { + "word": " already", + "start": 1243.46, + "end": 1243.72, + "probability": 1.0 + }, + { + "word": " planning", + "start": 1243.72, + "end": 1243.94, + "probability": 1.0 + }, + { + "word": " on", + "start": 1243.94, + "end": 1244.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 1244.16, + "end": 1244.4, + "probability": 1.0 + }, + { + "word": " into", + "start": 1244.4, + "end": 1244.6, + "probability": 0.99072265625 + }, + { + "word": " a", + "start": 1244.6, + "end": 1244.72, + "probability": 0.95166015625 + }, + { + "word": " contract", + "start": 1244.72, + "end": 1244.92, + "probability": 0.9970703125 + }, + { + "word": " no", + "start": 1244.92, + "end": 1245.18, + "probability": 0.8720703125 + }, + { + "word": " matter", + "start": 1245.18, + "end": 1245.34, + "probability": 1.0 + }, + { + "word": " what,", + "start": 1245.34, + "end": 1245.52, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1245.58, + "end": 1245.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1245.72, + "end": 1245.78, + "probability": 1.0 + }, + { + "word": " good", + "start": 1245.78, + "end": 1245.9, + "probability": 1.0 + }, + { + "word": " deal?", + "start": 1245.9, + "end": 1246.04, + "probability": 1.0 + } + ] + }, + { + "id": 510, + "text": "Right.", + "start": 1246.98, + "end": 1247.18, + "words": [ + { + "word": " Right.", + "start": 1246.98, + "end": 1247.18, + "probability": 0.80859375 + } + ] + }, + { + "id": 511, + "text": "All right.", + "start": 1247.18, + "end": 1247.52, + "words": [ + { + "word": " All", + "start": 1247.18, + "end": 1247.34, + "probability": 0.8505859375 + }, + { + "word": " right.", + "start": 1247.34, + "end": 1247.52, + "probability": 1.0 + } + ] + }, + { + "id": 512, + "text": "Right.", + "start": 1247.62, + "end": 1247.8, + "words": [ + { + "word": " Right.", + "start": 1247.62, + "end": 1247.8, + "probability": 0.580078125 + } + ] + }, + { + "id": 513, + "text": "If you're a person that is anti-contract like myself, then \u2013", + "start": 1247.8, + "end": 1250.72, + "words": [ + { + "word": " If", + "start": 1247.8, + "end": 1247.9, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 1247.9, + "end": 1248.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1248.0, + "end": 1248.08, + "probability": 1.0 + }, + { + "word": " person", + "start": 1248.08, + "end": 1248.28, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1248.28, + "end": 1248.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 1248.42, + "end": 1248.6, + "probability": 1.0 + }, + { + "word": " anti", + "start": 1248.6, + "end": 1248.94, + "probability": 0.9990234375 + }, + { + "word": "-contract", + "start": 1248.94, + "end": 1249.38, + "probability": 0.99462890625 + }, + { + "word": " like", + "start": 1249.38, + "end": 1249.56, + "probability": 0.9296875 + }, + { + "word": " myself,", + "start": 1249.56, + "end": 1249.88, + "probability": 1.0 + }, + { + "word": " then", + "start": 1250.16, + "end": 1250.66, + "probability": 0.93310546875 + }, + { + "word": " \u2013", + "start": 1250.66, + "end": 1250.72, + "probability": 0.019683837890625 + } + ] + }, + { + "id": 514, + "text": "I trust the guru.", + "start": 1250.72, + "end": 1251.54, + "words": [ + { + "word": " I", + "start": 1250.72, + "end": 1250.86, + "probability": 0.99755859375 + }, + { + "word": " trust", + "start": 1250.86, + "end": 1251.1, + "probability": 0.98095703125 + }, + { + "word": " the", + "start": 1251.1, + "end": 1251.3, + "probability": 0.974609375 + }, + { + "word": " guru.", + "start": 1251.3, + "end": 1251.54, + "probability": 0.953125 + } + ] + }, + { + "id": 515, + "text": "I wouldn't do it.", + "start": 1251.76, + "end": 1252.4, + "words": [ + { + "word": " I", + "start": 1251.76, + "end": 1251.82, + "probability": 0.98193359375 + }, + { + "word": " wouldn't", + "start": 1251.82, + "end": 1252.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 1252.1, + "end": 1252.24, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1252.24, + "end": 1252.4, + "probability": 1.0 + } + ] + }, + { + "id": 516, + "text": "But, you know, hey, if you're okay with the contract, if you want to be locked into that, you do that, man.", + "start": 1253.9600000000003, + "end": 1258.72, + "words": [ + { + "word": " But,", + "start": 1253.9600000000003, + "end": 1254.3200000000002, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1254.3200000000002, + "end": 1254.68, + "probability": 0.9462890625 + }, + { + "word": " know,", + "start": 1254.68, + "end": 1254.82, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 1254.84, + "end": 1255.02, + "probability": 1.0 + }, + { + "word": " if", + "start": 1255.14, + "end": 1255.28, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1255.28, + "end": 1255.52, + "probability": 0.99951171875 + }, + { + "word": " okay", + "start": 1255.52, + "end": 1255.8, + "probability": 0.97216796875 + }, + { + "word": " with", + "start": 1255.8, + "end": 1255.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1255.98, + "end": 1256.08, + "probability": 0.99951171875 + }, + { + "word": " contract,", + "start": 1256.08, + "end": 1256.4, + "probability": 1.0 + }, + { + "word": " if", + "start": 1256.54, + "end": 1256.68, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1256.68, + "end": 1256.72, + "probability": 1.0 + }, + { + "word": " want", + "start": 1256.72, + "end": 1256.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1256.84, + "end": 1256.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 1256.92, + "end": 1256.96, + "probability": 1.0 + }, + { + "word": " locked", + "start": 1256.96, + "end": 1257.14, + "probability": 1.0 + }, + { + "word": " into", + "start": 1257.14, + "end": 1257.34, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1257.34, + "end": 1257.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 1257.66, + "end": 1257.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 1257.82, + "end": 1258.26, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1258.26, + "end": 1258.54, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1258.56, + "end": 1258.72, + "probability": 1.0 + } + ] + }, + { + "id": 517, + "text": "You do you.", + "start": 1258.78, + "end": 1259.24, + "words": [ + { + "word": " You", + "start": 1258.78, + "end": 1258.96, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 1258.96, + "end": 1259.1, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1259.1, + "end": 1259.24, + "probability": 1.0 + } + ] + }, + { + "id": 518, + "text": "Well, I've never had one before, so I'll see what happens.", + "start": 1260.6600000000003, + "end": 1263.0, + "words": [ + { + "word": " Well,", + "start": 1260.6600000000003, + "end": 1261.0200000000002, + "probability": 0.998046875 + }, + { + "word": " I've", + "start": 1261.0200000000002, + "end": 1261.38, + "probability": 1.0 + }, + { + "word": " never", + "start": 1261.38, + "end": 1261.48, + "probability": 1.0 + }, + { + "word": " had", + "start": 1261.48, + "end": 1261.7, + "probability": 1.0 + }, + { + "word": " one", + "start": 1261.7, + "end": 1261.84, + "probability": 1.0 + }, + { + "word": " before,", + "start": 1261.84, + "end": 1262.1, + "probability": 1.0 + }, + { + "word": " so", + "start": 1262.18, + "end": 1262.36, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 1262.36, + "end": 1262.5, + "probability": 1.0 + }, + { + "word": " see", + "start": 1262.5, + "end": 1262.54, + "probability": 1.0 + }, + { + "word": " what", + "start": 1262.54, + "end": 1262.72, + "probability": 1.0 + }, + { + "word": " happens.", + "start": 1262.72, + "end": 1263.0, + "probability": 1.0 + } + ] + }, + { + "id": 519, + "text": "Thank you.", + "start": 1263.1, + "end": 1263.52, + "words": [ + { + "word": " Thank", + "start": 1263.1, + "end": 1263.34, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1263.34, + "end": 1263.52, + "probability": 1.0 + } + ] + }, + { + "id": 520, + "text": "Yeah, they're fun.", + "start": 1263.6, + "end": 1264.44, + "words": [ + { + "word": " Yeah,", + "start": 1263.6, + "end": 1263.86, + "probability": 0.99755859375 + }, + { + "word": " they're", + "start": 1263.86, + "end": 1264.2, + "probability": 1.0 + }, + { + "word": " fun.", + "start": 1264.2, + "end": 1264.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 521, + "text": "You'll enjoy it.", + "start": 1264.54, + "end": 1265.24, + "words": [ + { + "word": " You'll", + "start": 1264.54, + "end": 1264.74, + "probability": 0.99951171875 + }, + { + "word": " enjoy", + "start": 1264.74, + "end": 1265.02, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1265.02, + "end": 1265.24, + "probability": 1.0 + } + ] + }, + { + "id": 522, + "text": "You won't use it as much as you think you will, though.", + "start": 1265.58, + "end": 1267.76, + "words": [ + { + "word": " You", + "start": 1265.58, + "end": 1265.94, + "probability": 0.9990234375 + }, + { + "word": " won't", + "start": 1265.94, + "end": 1266.24, + "probability": 1.0 + }, + { + "word": " use", + "start": 1266.24, + "end": 1266.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 1266.44, + "end": 1266.58, + "probability": 1.0 + }, + { + "word": " as", + "start": 1266.58, + "end": 1266.68, + "probability": 1.0 + }, + { + "word": " much", + "start": 1266.68, + "end": 1266.88, + "probability": 1.0 + }, + { + "word": " as", + "start": 1266.88, + "end": 1266.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 1266.98, + "end": 1267.06, + "probability": 1.0 + }, + { + "word": " think", + "start": 1267.06, + "end": 1267.26, + "probability": 1.0 + }, + { + "word": " you", + "start": 1267.26, + "end": 1267.36, + "probability": 1.0 + }, + { + "word": " will,", + "start": 1267.36, + "end": 1267.54, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1267.58, + "end": 1267.76, + "probability": 1.0 + } + ] + }, + { + "id": 523, + "text": "Yeah, because you'll get tired of pressing the little buttons.", + "start": 1268.5, + "end": 1270.7, + "words": [ + { + "word": " Yeah,", + "start": 1268.5, + "end": 1268.86, + "probability": 0.8798828125 + }, + { + "word": " because", + "start": 1268.88, + "end": 1269.02, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1269.02, + "end": 1269.22, + "probability": 1.0 + }, + { + "word": " get", + "start": 1269.22, + "end": 1269.32, + "probability": 1.0 + }, + { + "word": " tired", + "start": 1269.32, + "end": 1269.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 1269.6, + "end": 1269.72, + "probability": 1.0 + }, + { + "word": " pressing", + "start": 1269.72, + "end": 1269.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1269.94, + "end": 1270.18, + "probability": 1.0 + }, + { + "word": " little", + "start": 1270.18, + "end": 1270.32, + "probability": 1.0 + }, + { + "word": " buttons.", + "start": 1270.32, + "end": 1270.7, + "probability": 1.0 + } + ] + }, + { + "id": 524, + "text": "Just tablet computing is really not all that pleasant.", + "start": 1271.7800000000002, + "end": 1275.02, + "words": [ + { + "word": " Just", + "start": 1271.7800000000002, + "end": 1272.14, + "probability": 0.9990234375 + }, + { + "word": " tablet", + "start": 1272.14, + "end": 1272.5, + "probability": 1.0 + }, + { + "word": " computing", + "start": 1272.5, + "end": 1272.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 1272.86, + "end": 1273.3, + "probability": 1.0 + }, + { + "word": " really", + "start": 1273.3, + "end": 1273.66, + "probability": 1.0 + }, + { + "word": " not", + "start": 1273.66, + "end": 1274.02, + "probability": 1.0 + }, + { + "word": " all", + "start": 1274.02, + "end": 1274.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 1274.46, + "end": 1274.62, + "probability": 1.0 + }, + { + "word": " pleasant.", + "start": 1274.62, + "end": 1275.02, + "probability": 1.0 + } + ] + }, + { + "id": 525, + "text": "I've \u2013 several times.", + "start": 1275.24, + "end": 1276.68, + "words": [ + { + "word": " I've", + "start": 1275.24, + "end": 1275.6, + "probability": 0.98095703125 + }, + { + "word": " \u2013", + "start": 1275.6, + "end": 1275.74, + "probability": 0.671875 + }, + { + "word": " several", + "start": 1275.74, + "end": 1276.26, + "probability": 0.99560546875 + }, + { + "word": " times.", + "start": 1276.26, + "end": 1276.68, + "probability": 1.0 + } + ] + }, + { + "id": 526, + "text": "I've really tried to, like, to be a tablet user.", + "start": 1276.98, + "end": 1279.46, + "words": [ + { + "word": " I've", + "start": 1276.98, + "end": 1276.98, + "probability": 0.560546875 + }, + { + "word": " really", + "start": 1276.98, + "end": 1277.26, + "probability": 0.986328125 + }, + { + "word": " tried", + "start": 1277.26, + "end": 1277.78, + "probability": 0.99951171875 + }, + { + "word": " to,", + "start": 1277.78, + "end": 1278.08, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1278.1, + "end": 1278.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1278.32, + "end": 1278.6, + "probability": 0.9775390625 + }, + { + "word": " be", + "start": 1278.6, + "end": 1278.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1278.72, + "end": 1278.9, + "probability": 1.0 + }, + { + "word": " tablet", + "start": 1278.9, + "end": 1279.18, + "probability": 0.9990234375 + }, + { + "word": " user.", + "start": 1279.18, + "end": 1279.46, + "probability": 1.0 + } + ] + }, + { + "id": 527, + "text": "And they're good.", + "start": 1280.04, + "end": 1280.78, + "words": [ + { + "word": " And", + "start": 1280.04, + "end": 1280.42, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 1280.42, + "end": 1280.58, + "probability": 0.994140625 + }, + { + "word": " good.", + "start": 1280.58, + "end": 1280.78, + "probability": 1.0 + } + ] + }, + { + "id": 528, + "text": "They have a very specific use case, which is like sitting on the couch watching TV, and you're just tooling around on your tablet on the Internet or something.", + "start": 1280.84, + "end": 1288.14, + "words": [ + { + "word": " They", + "start": 1280.84, + "end": 1281.02, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 1281.02, + "end": 1281.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 1281.18, + "end": 1281.32, + "probability": 1.0 + }, + { + "word": " very", + "start": 1281.32, + "end": 1281.56, + "probability": 1.0 + }, + { + "word": " specific", + "start": 1281.56, + "end": 1282.28, + "probability": 1.0 + }, + { + "word": " use", + "start": 1282.28, + "end": 1282.72, + "probability": 1.0 + }, + { + "word": " case,", + "start": 1282.72, + "end": 1282.98, + "probability": 1.0 + }, + { + "word": " which", + "start": 1283.04, + "end": 1283.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 1283.2, + "end": 1283.32, + "probability": 1.0 + }, + { + "word": " like", + "start": 1283.32, + "end": 1283.46, + "probability": 0.67578125 + }, + { + "word": " sitting", + "start": 1283.46, + "end": 1283.7, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1283.7, + "end": 1283.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1283.86, + "end": 1283.96, + "probability": 1.0 + }, + { + "word": " couch", + "start": 1283.96, + "end": 1284.16, + "probability": 1.0 + }, + { + "word": " watching", + "start": 1284.16, + "end": 1284.48, + "probability": 0.9873046875 + }, + { + "word": " TV,", + "start": 1284.48, + "end": 1284.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 1285.08, + "end": 1285.68, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1285.68, + "end": 1285.86, + "probability": 1.0 + }, + { + "word": " just", + "start": 1285.86, + "end": 1286.02, + "probability": 1.0 + }, + { + "word": " tooling", + "start": 1286.02, + "end": 1286.56, + "probability": 0.99609375 + }, + { + "word": " around", + "start": 1286.56, + "end": 1286.76, + "probability": 1.0 + }, + { + "word": " on", + "start": 1286.76, + "end": 1286.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 1286.94, + "end": 1287.06, + "probability": 1.0 + }, + { + "word": " tablet", + "start": 1287.06, + "end": 1287.28, + "probability": 1.0 + }, + { + "word": " on", + "start": 1287.28, + "end": 1287.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1287.48, + "end": 1287.58, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1287.58, + "end": 1287.74, + "probability": 0.6298828125 + }, + { + "word": " or", + "start": 1287.74, + "end": 1287.94, + "probability": 1.0 + }, + { + "word": " something.", + "start": 1287.94, + "end": 1288.14, + "probability": 1.0 + } + ] + }, + { + "id": 529, + "text": "Right.", + "start": 1288.22, + "end": 1288.44, + "words": [ + { + "word": " Right.", + "start": 1288.22, + "end": 1288.44, + "probability": 0.98583984375 + } + ] + }, + { + "id": 530, + "text": "If you've got a $600 way of playing Candy Crush, right?", + "start": 1288.48, + "end": 1292.56, + "words": [ + { + "word": " If", + "start": 1288.48, + "end": 1288.64, + "probability": 0.939453125 + }, + { + "word": " you've", + "start": 1288.64, + "end": 1288.84, + "probability": 0.794921875 + }, + { + "word": " got", + "start": 1288.84, + "end": 1288.86, + "probability": 0.9404296875 + }, + { + "word": " a", + "start": 1288.86, + "end": 1289.0, + "probability": 1.0 + }, + { + "word": " $600", + "start": 1289.0, + "end": 1290.1, + "probability": 1.0 + }, + { + "word": " way", + "start": 1290.1, + "end": 1290.52, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1290.52, + "end": 1290.72, + "probability": 1.0 + }, + { + "word": " playing", + "start": 1290.72, + "end": 1290.94, + "probability": 0.95703125 + }, + { + "word": " Candy", + "start": 1290.94, + "end": 1291.74, + "probability": 0.9990234375 + }, + { + "word": " Crush,", + "start": 1291.74, + "end": 1292.1, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1292.3, + "end": 1292.56, + "probability": 1.0 + } + ] + }, + { + "id": 531, + "text": "I mean, it was pretty good for balloons.", + "start": 1292.6, + "end": 1293.86, + "words": [ + { + "word": " I", + "start": 1292.6, + "end": 1292.84, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 1292.84, + "end": 1292.94, + "probability": 1.0 + }, + { + "word": " it", + "start": 1292.94, + "end": 1293.02, + "probability": 1.0 + }, + { + "word": " was", + "start": 1293.02, + "end": 1293.12, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1293.12, + "end": 1293.28, + "probability": 1.0 + }, + { + "word": " good", + "start": 1293.28, + "end": 1293.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 1293.44, + "end": 1293.62, + "probability": 1.0 + }, + { + "word": " balloons.", + "start": 1293.62, + "end": 1293.86, + "probability": 0.307861328125 + } + ] + }, + { + "id": 532, + "text": "Balloons is pretty awesome.", + "start": 1294.88, + "end": 1296.06, + "words": [ + { + "word": " Balloons", + "start": 1294.88, + "end": 1295.26, + "probability": 0.9638671875 + }, + { + "word": " is", + "start": 1295.26, + "end": 1295.48, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 1295.48, + "end": 1295.72, + "probability": 1.0 + }, + { + "word": " awesome.", + "start": 1295.72, + "end": 1296.06, + "probability": 1.0 + } + ] + }, + { + "id": 533, + "text": "Yeah.", + "start": 1296.32, + "end": 1296.5, + "words": [ + { + "word": " Yeah.", + "start": 1296.32, + "end": 1296.5, + "probability": 0.9892578125 + } + ] + }, + { + "id": 534, + "text": "But every time I've used a tablet and I've been like, all right, let's get something done, I've been like, man, I just need a laptop.", + "start": 1296.54, + "end": 1301.64, + "words": [ + { + "word": " But", + "start": 1296.54, + "end": 1296.72, + "probability": 0.99853515625 + }, + { + "word": " every", + "start": 1296.72, + "end": 1296.96, + "probability": 1.0 + }, + { + "word": " time", + "start": 1296.96, + "end": 1297.18, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1297.18, + "end": 1297.42, + "probability": 1.0 + }, + { + "word": " used", + "start": 1297.42, + "end": 1297.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 1297.62, + "end": 1297.76, + "probability": 1.0 + }, + { + "word": " tablet", + "start": 1297.76, + "end": 1298.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 1298.08, + "end": 1298.32, + "probability": 0.8837890625 + }, + { + "word": " I've", + "start": 1298.32, + "end": 1298.46, + "probability": 1.0 + }, + { + "word": " been", + "start": 1298.46, + "end": 1298.58, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1298.58, + "end": 1298.78, + "probability": 0.994140625 + }, + { + "word": " all", + "start": 1298.86, + "end": 1298.92, + "probability": 0.98828125 + }, + { + "word": " right,", + "start": 1298.92, + "end": 1299.04, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1299.06, + "end": 1299.28, + "probability": 1.0 + }, + { + "word": " get", + "start": 1299.28, + "end": 1299.38, + "probability": 1.0 + }, + { + "word": " something", + "start": 1299.38, + "end": 1299.6, + "probability": 1.0 + }, + { + "word": " done,", + "start": 1299.6, + "end": 1299.86, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1300.04, + "end": 1300.52, + "probability": 1.0 + }, + { + "word": " been", + "start": 1300.52, + "end": 1300.62, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1300.62, + "end": 1300.76, + "probability": 1.0 + }, + { + "word": " man,", + "start": 1300.8, + "end": 1300.9, + "probability": 1.0 + }, + { + "word": " I", + "start": 1300.96, + "end": 1301.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 1301.04, + "end": 1301.14, + "probability": 1.0 + }, + { + "word": " need", + "start": 1301.14, + "end": 1301.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 1301.28, + "end": 1301.36, + "probability": 1.0 + }, + { + "word": " laptop.", + "start": 1301.36, + "end": 1301.64, + "probability": 1.0 + } + ] + }, + { + "id": 535, + "text": "Right.", + "start": 1302.06, + "end": 1302.44, + "words": [ + { + "word": " Right.", + "start": 1302.06, + "end": 1302.44, + "probability": 0.99462890625 + } + ] + }, + { + "id": 536, + "text": "Why am I trying to do this?", + "start": 1302.6, + "end": 1304.04, + "words": [ + { + "word": " Why", + "start": 1302.6, + "end": 1302.98, + "probability": 0.99853515625 + }, + { + "word": " am", + "start": 1302.98, + "end": 1303.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 1303.2, + "end": 1303.28, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1303.28, + "end": 1303.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1303.5, + "end": 1303.6, + "probability": 1.0 + }, + { + "word": " do", + "start": 1303.6, + "end": 1303.8, + "probability": 1.0 + }, + { + "word": " this?", + "start": 1303.8, + "end": 1304.04, + "probability": 1.0 + } + ] + }, + { + "id": 537, + "text": "Why am I trying to do this on a tablet?", + "start": 1304.12, + "end": 1305.76, + "words": [ + { + "word": " Why", + "start": 1304.12, + "end": 1304.38, + "probability": 1.0 + }, + { + "word": " am", + "start": 1304.38, + "end": 1304.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 1304.64, + "end": 1304.74, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1304.74, + "end": 1304.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1304.96, + "end": 1305.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 1305.04, + "end": 1305.12, + "probability": 1.0 + }, + { + "word": " this", + "start": 1305.12, + "end": 1305.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 1305.22, + "end": 1305.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1305.32, + "end": 1305.4, + "probability": 1.0 + }, + { + "word": " tablet?", + "start": 1305.4, + "end": 1305.76, + "probability": 1.0 + } + ] + }, + { + "id": 538, + "text": "I'm so \u2013", + "start": 1306.1, + "end": 1306.96, + "words": [ + { + "word": " I'm", + "start": 1306.1, + "end": 1306.48, + "probability": 0.92578125 + }, + { + "word": " so", + "start": 1306.48, + "end": 1306.96, + "probability": 0.69287109375 + }, + { + "word": " \u2013", + "start": 1306.96, + "end": 1306.96, + "probability": 0.018768310546875 + } + ] + }, + { + "id": 539, + "text": "No, Dom.", + "start": 1306.98, + "end": 1307.24, + "words": [ + { + "word": " No,", + "start": 1306.98, + "end": 1307.06, + "probability": 0.68212890625 + }, + { + "word": " Dom.", + "start": 1307.06, + "end": 1307.24, + "probability": 0.9599609375 + } + ] + }, + { + "id": 540, + "text": "All right.", + "start": 1307.42, + "end": 1307.8, + "words": [ + { + "word": " All", + "start": 1307.42, + "end": 1307.68, + "probability": 0.97265625 + }, + { + "word": " right.", + "start": 1307.68, + "end": 1307.8, + "probability": 1.0 + } + ] + }, + { + "id": 541, + "text": "Let's go ahead and talk to Carl.", + "start": 1307.82, + "end": 1308.84, + "words": [ + { + "word": " Let's", + "start": 1307.82, + "end": 1308.04, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1308.04, + "end": 1308.1, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1308.1, + "end": 1308.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 1308.24, + "end": 1308.34, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1308.34, + "end": 1308.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1308.54, + "end": 1308.64, + "probability": 1.0 + }, + { + "word": " Carl.", + "start": 1308.64, + "end": 1308.84, + "probability": 0.9697265625 + } + ] + }, + { + "id": 542, + "text": "Hey, Carl.", + "start": 1308.94, + "end": 1309.26, + "words": [ + { + "word": " Hey,", + "start": 1308.94, + "end": 1309.08, + "probability": 0.81640625 + }, + { + "word": " Carl.", + "start": 1309.1, + "end": 1309.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 543, + "text": "How are you?", + "start": 1309.34, + "end": 1309.7, + "words": [ + { + "word": " How", + "start": 1309.34, + "end": 1309.44, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1309.44, + "end": 1309.56, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1309.56, + "end": 1309.7, + "probability": 1.0 + } + ] + }, + { + "id": 544, + "text": "I'm doing fine.", + "start": 1310.66, + "end": 1311.46, + "words": [ + { + "word": " I'm", + "start": 1310.66, + "end": 1310.98, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1310.98, + "end": 1311.14, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 1311.14, + "end": 1311.46, + "probability": 1.0 + } + ] + }, + { + "id": 545, + "text": "And, you know, one of the things that bothers me is I keep talking about unlimited data.", + "start": 1311.7, + "end": 1315.58, + "words": [ + { + "word": " And,", + "start": 1311.7, + "end": 1312.02, + "probability": 0.8330078125 + }, + { + "word": " you", + "start": 1312.1, + "end": 1312.24, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1312.24, + "end": 1312.3, + "probability": 1.0 + }, + { + "word": " one", + "start": 1312.34, + "end": 1312.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 1312.48, + "end": 1312.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 1312.58, + "end": 1312.64, + "probability": 1.0 + }, + { + "word": " things", + "start": 1312.64, + "end": 1312.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 1312.9, + "end": 1313.02, + "probability": 1.0 + }, + { + "word": " bothers", + "start": 1313.02, + "end": 1313.32, + "probability": 1.0 + }, + { + "word": " me", + "start": 1313.32, + "end": 1313.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 1313.62, + "end": 1313.76, + "probability": 0.8193359375 + }, + { + "word": " I", + "start": 1313.76, + "end": 1313.84, + "probability": 0.99755859375 + }, + { + "word": " keep", + "start": 1313.84, + "end": 1314.02, + "probability": 1.0 + }, + { + "word": " talking", + "start": 1314.02, + "end": 1314.34, + "probability": 1.0 + }, + { + "word": " about", + "start": 1314.34, + "end": 1314.64, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1314.64, + "end": 1315.02, + "probability": 0.99951171875 + }, + { + "word": " data.", + "start": 1315.02, + "end": 1315.58, + "probability": 1.0 + } + ] + }, + { + "id": 546, + "text": "That doesn't apply to a Wi-Fi hotspot, which is where I really need the unlimited data.", + "start": 1316.0000000000002, + "end": 1320.66, + "words": [ + { + "word": " That", + "start": 1316.0000000000002, + "end": 1316.3200000000002, + "probability": 0.9990234375 + }, + { + "word": " doesn't", + "start": 1316.3200000000002, + "end": 1316.64, + "probability": 1.0 + }, + { + "word": " apply", + "start": 1316.64, + "end": 1316.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 1316.84, + "end": 1317.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1317.2, + "end": 1317.32, + "probability": 0.958984375 + }, + { + "word": " Wi", + "start": 1317.32, + "end": 1317.48, + "probability": 0.998046875 + }, + { + "word": "-Fi", + "start": 1317.48, + "end": 1317.86, + "probability": 1.0 + }, + { + "word": " hotspot,", + "start": 1317.86, + "end": 1318.34, + "probability": 0.998046875 + }, + { + "word": " which", + "start": 1318.46, + "end": 1318.66, + "probability": 1.0 + }, + { + "word": " is", + "start": 1318.66, + "end": 1318.78, + "probability": 1.0 + }, + { + "word": " where", + "start": 1318.78, + "end": 1318.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 1318.94, + "end": 1319.14, + "probability": 1.0 + }, + { + "word": " really", + "start": 1319.14, + "end": 1319.38, + "probability": 1.0 + }, + { + "word": " need", + "start": 1319.38, + "end": 1319.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1319.74, + "end": 1319.96, + "probability": 0.99951171875 + }, + { + "word": " unlimited", + "start": 1319.96, + "end": 1320.22, + "probability": 1.0 + }, + { + "word": " data.", + "start": 1320.22, + "end": 1320.66, + "probability": 1.0 + } + ] + }, + { + "id": 547, + "text": "That is correct.", + "start": 1320.86, + "end": 1321.34, + "words": [ + { + "word": " That", + "start": 1320.86, + "end": 1321.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 1321.0, + "end": 1321.1, + "probability": 1.0 + }, + { + "word": " correct.", + "start": 1321.1, + "end": 1321.34, + "probability": 1.0 + } + ] + }, + { + "id": 548, + "text": "Well, you can root your phone and make it a Wi-Fi hotspot.", + "start": 1321.56, + "end": 1323.94, + "words": [ + { + "word": " Well,", + "start": 1321.56, + "end": 1321.86, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1322.0, + "end": 1322.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 1322.14, + "end": 1322.38, + "probability": 1.0 + }, + { + "word": " root", + "start": 1322.38, + "end": 1322.64, + "probability": 0.83203125 + }, + { + "word": " your", + "start": 1322.64, + "end": 1322.76, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1322.76, + "end": 1322.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1322.98, + "end": 1323.1, + "probability": 0.99560546875 + }, + { + "word": " make", + "start": 1323.1, + "end": 1323.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 1323.24, + "end": 1323.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1323.32, + "end": 1323.42, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1323.42, + "end": 1323.5, + "probability": 1.0 + }, + { + "word": "-Fi", + "start": 1323.5, + "end": 1323.64, + "probability": 1.0 + }, + { + "word": " hotspot.", + "start": 1323.64, + "end": 1323.94, + "probability": 1.0 + } + ] + }, + { + "id": 549, + "text": "Yeah.", + "start": 1324.48, + "end": 1324.8, + "words": [ + { + "word": " Yeah.", + "start": 1324.48, + "end": 1324.8, + "probability": 0.9326171875 + } + ] + }, + { + "id": 550, + "text": "Don't go down that road.", + "start": 1325.44, + "end": 1326.68, + "words": [ + { + "word": " Don't", + "start": 1325.44, + "end": 1325.76, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 1325.76, + "end": 1325.92, + "probability": 0.9892578125 + }, + { + "word": " down", + "start": 1325.92, + "end": 1326.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 1326.22, + "end": 1326.42, + "probability": 1.0 + }, + { + "word": " road.", + "start": 1326.42, + "end": 1326.68, + "probability": 1.0 + } + ] + }, + { + "id": 551, + "text": "No, I \u2013", + "start": 1327.28, + "end": 1328.06, + "words": [ + { + "word": " No,", + "start": 1327.28, + "end": 1327.6, + "probability": 0.448974609375 + }, + { + "word": " I", + "start": 1327.72, + "end": 1327.92, + "probability": 0.99755859375 + }, + { + "word": " \u2013", + "start": 1327.92, + "end": 1328.06, + "probability": 0.1180419921875 + } + ] + }, + { + "id": 552, + "text": "Don't listen to Rob right now.", + "start": 1329.0, + "end": 1330.22, + "words": [ + { + "word": " Don't", + "start": 1329.0, + "end": 1329.32, + "probability": 0.998046875 + }, + { + "word": " listen", + "start": 1329.32, + "end": 1329.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1329.48, + "end": 1329.62, + "probability": 1.0 + }, + { + "word": " Rob", + "start": 1329.62, + "end": 1329.76, + "probability": 1.0 + }, + { + "word": " right", + "start": 1329.76, + "end": 1329.96, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1329.96, + "end": 1330.22, + "probability": 1.0 + } + ] + }, + { + "id": 553, + "text": "He's saying stuff that \u2013 he's being irresponsible on the air.", + "start": 1330.32, + "end": 1333.14, + "words": [ + { + "word": " He's", + "start": 1330.32, + "end": 1330.54, + "probability": 0.998046875 + }, + { + "word": " saying", + "start": 1330.54, + "end": 1331.04, + "probability": 0.9853515625 + }, + { + "word": " stuff", + "start": 1331.04, + "end": 1331.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 1331.38, + "end": 1331.58, + "probability": 0.59619140625 + }, + { + "word": " \u2013", + "start": 1331.58, + "end": 1331.7, + "probability": 0.98486328125 + }, + { + "word": " he's", + "start": 1331.7, + "end": 1331.98, + "probability": 0.984375 + }, + { + "word": " being", + "start": 1331.98, + "end": 1332.12, + "probability": 0.99951171875 + }, + { + "word": " irresponsible", + "start": 1332.12, + "end": 1332.42, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1332.42, + "end": 1332.92, + "probability": 0.9560546875 + }, + { + "word": " the", + "start": 1332.92, + "end": 1333.0, + "probability": 1.0 + }, + { + "word": " air.", + "start": 1333.0, + "end": 1333.14, + "probability": 1.0 + } + ] + }, + { + "id": 554, + "text": "That's what he's doing.", + "start": 1333.2, + "end": 1333.74, + "words": [ + { + "word": " That's", + "start": 1333.2, + "end": 1333.34, + "probability": 0.998046875 + }, + { + "word": " what", + "start": 1333.34, + "end": 1333.42, + "probability": 1.0 + }, + { + "word": " he's", + "start": 1333.42, + "end": 1333.56, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 1333.56, + "end": 1333.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 555, + "text": "Okay.", + "start": 1335.8600000000001, + "end": 1336.18, + "words": [ + { + "word": " Okay.", + "start": 1335.8600000000001, + "end": 1336.18, + "probability": 0.99072265625 + } + ] + }, + { + "id": 556, + "text": "Yeah.", + "start": 1336.24, + "end": 1336.44, + "words": [ + { + "word": " Yeah.", + "start": 1336.24, + "end": 1336.44, + "probability": 0.9970703125 + } + ] + }, + { + "id": 557, + "text": "But, I mean, that's \u2013", + "start": 1336.5, + "end": 1336.96, + "words": [ + { + "word": " But,", + "start": 1336.5, + "end": 1336.64, + "probability": 0.93994140625 + }, + { + "word": " I", + "start": 1336.68, + "end": 1336.74, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1336.74, + "end": 1336.84, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1336.84, + "end": 1336.96, + "probability": 0.96875 + }, + { + "word": " \u2013", + "start": 1336.96, + "end": 1336.96, + "probability": 0.61767578125 + } + ] + }, + { + "id": 558, + "text": "That's one of the things because I use it for my business or what have you, and I keep saying \u2013 I think it's misleading.", + "start": 1336.98, + "end": 1343.54, + "words": [ + { + "word": " That's", + "start": 1336.98, + "end": 1337.26, + "probability": 0.984375 + }, + { + "word": " one", + "start": 1337.26, + "end": 1337.42, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1337.42, + "end": 1337.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1337.52, + "end": 1337.54, + "probability": 1.0 + }, + { + "word": " things", + "start": 1337.54, + "end": 1337.8, + "probability": 1.0 + }, + { + "word": " because", + "start": 1337.8, + "end": 1338.02, + "probability": 0.4287109375 + }, + { + "word": " I", + "start": 1338.02, + "end": 1338.24, + "probability": 1.0 + }, + { + "word": " use", + "start": 1338.24, + "end": 1339.52, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1339.52, + "end": 1339.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 1339.78, + "end": 1339.92, + "probability": 1.0 + }, + { + "word": " my", + "start": 1339.92, + "end": 1340.12, + "probability": 1.0 + }, + { + "word": " business", + "start": 1340.12, + "end": 1340.58, + "probability": 0.98046875 + }, + { + "word": " or", + "start": 1340.58, + "end": 1340.84, + "probability": 0.92431640625 + }, + { + "word": " what", + "start": 1340.84, + "end": 1341.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 1341.0, + "end": 1341.14, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1341.14, + "end": 1341.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 1341.34, + "end": 1341.42, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1341.42, + "end": 1341.44, + "probability": 0.98828125 + }, + { + "word": " keep", + "start": 1341.44, + "end": 1341.62, + "probability": 0.9990234375 + }, + { + "word": " saying", + "start": 1341.62, + "end": 1341.92, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1341.92, + "end": 1342.22, + "probability": 0.00433349609375 + }, + { + "word": " I", + "start": 1342.22, + "end": 1342.8, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 1342.8, + "end": 1343.06, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 1343.06, + "end": 1343.28, + "probability": 1.0 + }, + { + "word": " misleading.", + "start": 1343.28, + "end": 1343.54, + "probability": 0.97607421875 + } + ] + }, + { + "id": 559, + "text": "You know, you have to ask the question.", + "start": 1343.88, + "end": 1345.38, + "words": [ + { + "word": " You", + "start": 1343.88, + "end": 1344.28, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1344.28, + "end": 1344.3, + "probability": 0.341064453125 + }, + { + "word": " you", + "start": 1344.36, + "end": 1344.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 1344.48, + "end": 1344.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1344.58, + "end": 1344.78, + "probability": 1.0 + }, + { + "word": " ask", + "start": 1344.78, + "end": 1344.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1344.94, + "end": 1345.08, + "probability": 1.0 + }, + { + "word": " question.", + "start": 1345.08, + "end": 1345.38, + "probability": 1.0 + } + ] + }, + { + "id": 560, + "text": "But unlimited data, no, it's not unlimited for the Wi-Fi hotspot.", + "start": 1345.7, + "end": 1349.8, + "words": [ + { + "word": " But", + "start": 1345.7, + "end": 1346.1, + "probability": 0.9970703125 + }, + { + "word": " unlimited", + "start": 1346.1, + "end": 1346.46, + "probability": 0.998046875 + }, + { + "word": " data,", + "start": 1346.46, + "end": 1346.94, + "probability": 1.0 + }, + { + "word": " no,", + "start": 1347.1, + "end": 1347.38, + "probability": 0.98779296875 + }, + { + "word": " it's", + "start": 1347.44, + "end": 1347.62, + "probability": 1.0 + }, + { + "word": " not", + "start": 1347.62, + "end": 1347.76, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1347.76, + "end": 1348.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 1348.1, + "end": 1348.84, + "probability": 0.96435546875 + }, + { + "word": " the", + "start": 1348.84, + "end": 1349.02, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1349.02, + "end": 1349.16, + "probability": 0.998046875 + }, + { + "word": "-Fi", + "start": 1349.16, + "end": 1349.38, + "probability": 1.0 + }, + { + "word": " hotspot.", + "start": 1349.38, + "end": 1349.8, + "probability": 0.990234375 + } + ] + }, + { + "id": 561, + "text": "Right.", + "start": 1350.14, + "end": 1350.22, + "words": [ + { + "word": " Right.", + "start": 1350.14, + "end": 1350.22, + "probability": 0.53173828125 + } + ] + }, + { + "id": 562, + "text": "So the way that I do that is I do the hotspot on my phone rather than a separate Wi-Fi device.", + "start": 1350.22, + "end": 1355.02, + "words": [ + { + "word": " So", + "start": 1350.22, + "end": 1350.44, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1350.44, + "end": 1350.58, + "probability": 0.92919921875 + }, + { + "word": " way", + "start": 1350.58, + "end": 1350.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 1350.68, + "end": 1350.76, + "probability": 1.0 + }, + { + "word": " I", + "start": 1350.76, + "end": 1350.88, + "probability": 1.0 + }, + { + "word": " do", + "start": 1350.88, + "end": 1351.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 1351.02, + "end": 1351.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 1351.2, + "end": 1351.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 1351.34, + "end": 1351.54, + "probability": 1.0 + }, + { + "word": " do", + "start": 1351.54, + "end": 1352.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1352.18, + "end": 1352.4, + "probability": 1.0 + }, + { + "word": " hotspot", + "start": 1352.4, + "end": 1352.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 1352.86, + "end": 1352.96, + "probability": 1.0 + }, + { + "word": " my", + "start": 1352.96, + "end": 1353.06, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1353.06, + "end": 1353.38, + "probability": 1.0 + }, + { + "word": " rather", + "start": 1353.38, + "end": 1353.68, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 1353.68, + "end": 1353.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 1353.98, + "end": 1354.1, + "probability": 0.99853515625 + }, + { + "word": " separate", + "start": 1354.1, + "end": 1354.32, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1354.32, + "end": 1354.52, + "probability": 0.9990234375 + }, + { + "word": "-Fi", + "start": 1354.52, + "end": 1354.7, + "probability": 1.0 + }, + { + "word": " device.", + "start": 1354.7, + "end": 1355.02, + "probability": 1.0 + } + ] + }, + { + "id": 563, + "text": "And I have an unlimited data plan on my phone.", + "start": 1355.2, + "end": 1357.94, + "words": [ + { + "word": " And", + "start": 1355.2, + "end": 1355.6, + "probability": 0.74853515625 + }, + { + "word": " I", + "start": 1355.6, + "end": 1355.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 1355.86, + "end": 1356.16, + "probability": 1.0 + }, + { + "word": " an", + "start": 1356.16, + "end": 1356.58, + "probability": 0.998046875 + }, + { + "word": " unlimited", + "start": 1356.58, + "end": 1356.94, + "probability": 1.0 + }, + { + "word": " data", + "start": 1356.94, + "end": 1357.24, + "probability": 0.998046875 + }, + { + "word": " plan", + "start": 1357.24, + "end": 1357.46, + "probability": 0.958984375 + }, + { + "word": " on", + "start": 1357.46, + "end": 1357.6, + "probability": 1.0 + }, + { + "word": " my", + "start": 1357.6, + "end": 1357.7, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 1357.7, + "end": 1357.94, + "probability": 1.0 + } + ] + }, + { + "id": 564, + "text": "So that is unlimited for me.", + "start": 1358.34, + "end": 1360.66, + "words": [ + { + "word": " So", + "start": 1358.34, + "end": 1358.74, + "probability": 0.9921875 + }, + { + "word": " that", + "start": 1358.74, + "end": 1359.4, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1359.4, + "end": 1359.72, + "probability": 1.0 + }, + { + "word": " unlimited", + "start": 1359.72, + "end": 1360.04, + "probability": 1.0 + }, + { + "word": " for", + "start": 1360.04, + "end": 1360.5, + "probability": 0.99951171875 + }, + { + "word": " me.", + "start": 1360.5, + "end": 1360.66, + "probability": 1.0 + } + ] + }, + { + "id": 565, + "text": "No.", + "start": 1360.94, + "end": 1361.28, + "words": [ + { + "word": " No.", + "start": 1360.94, + "end": 1361.28, + "probability": 0.986328125 + } + ] + }, + { + "id": 566, + "text": "Nope.", + "start": 1361.36, + "end": 1361.76, + "words": [ + { + "word": " Nope.", + "start": 1361.36, + "end": 1361.76, + "probability": 0.72998046875 + } + ] + }, + { + "id": 567, + "text": "It's not because I \u2013 that's one of the things that I've been looking for.", + "start": 1362.16, + "end": 1364.94, + "words": [ + { + "word": " It's", + "start": 1362.16, + "end": 1362.56, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1362.56, + "end": 1362.74, + "probability": 1.0 + }, + { + "word": " because", + "start": 1362.74, + "end": 1363.08, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 1363.08, + "end": 1363.26, + "probability": 0.04742431640625 + }, + { + "word": " \u2013", + "start": 1363.26, + "end": 1363.36, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1363.36, + "end": 1363.64, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 1363.64, + "end": 1363.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 1363.8, + "end": 1363.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1363.88, + "end": 1363.92, + "probability": 1.0 + }, + { + "word": " things", + "start": 1363.92, + "end": 1364.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 1364.16, + "end": 1364.28, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1364.28, + "end": 1364.4, + "probability": 1.0 + }, + { + "word": " been", + "start": 1364.4, + "end": 1364.48, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1364.48, + "end": 1364.68, + "probability": 1.0 + }, + { + "word": " for.", + "start": 1364.68, + "end": 1364.94, + "probability": 1.0 + } + ] + }, + { + "id": 568, + "text": "I have a Wi-Fi hotspot on my phone.", + "start": 1365.0, + "end": 1366.96, + "words": [ + { + "word": " I", + "start": 1365.0, + "end": 1365.36, + "probability": 0.93212890625 + }, + { + "word": " have", + "start": 1365.36, + "end": 1365.58, + "probability": 0.96728515625 + }, + { + "word": " a", + "start": 1365.58, + "end": 1365.72, + "probability": 0.433837890625 + }, + { + "word": " Wi", + "start": 1365.72, + "end": 1365.88, + "probability": 1.0 + }, + { + "word": "-Fi", + "start": 1365.88, + "end": 1366.12, + "probability": 1.0 + }, + { + "word": " hotspot", + "start": 1366.12, + "end": 1366.6, + "probability": 1.0 + }, + { + "word": " on", + "start": 1366.6, + "end": 1366.78, + "probability": 0.8935546875 + }, + { + "word": " my", + "start": 1366.78, + "end": 1366.9, + "probability": 0.8486328125 + }, + { + "word": " phone.", + "start": 1366.9, + "end": 1366.96, + "probability": 0.8056640625 + } + ] + }, + { + "id": 569, + "text": "And it's an additional charge per month.", + "start": 1366.96, + "end": 1370.04, + "words": [ + { + "word": " And", + "start": 1366.96, + "end": 1367.74, + "probability": 0.03741455078125 + }, + { + "word": " it's", + "start": 1367.74, + "end": 1368.54, + "probability": 0.9609375 + }, + { + "word": " an", + "start": 1368.54, + "end": 1368.62, + "probability": 0.966796875 + }, + { + "word": " additional", + "start": 1368.62, + "end": 1368.9, + "probability": 0.9970703125 + }, + { + "word": " charge", + "start": 1368.9, + "end": 1369.44, + "probability": 0.9990234375 + }, + { + "word": " per", + "start": 1369.44, + "end": 1369.64, + "probability": 0.99072265625 + }, + { + "word": " month.", + "start": 1369.64, + "end": 1370.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 570, + "text": "And it's generally limited to 10 megabytes.", + "start": 1370.24, + "end": 1374.8, + "words": [ + { + "word": " And", + "start": 1370.24, + "end": 1370.72, + "probability": 0.99560546875 + }, + { + "word": " it's", + "start": 1370.72, + "end": 1371.02, + "probability": 0.9990234375 + }, + { + "word": " generally", + "start": 1371.02, + "end": 1371.32, + "probability": 0.9990234375 + }, + { + "word": " limited", + "start": 1371.32, + "end": 1371.88, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1371.88, + "end": 1372.66, + "probability": 0.9990234375 + }, + { + "word": " 10", + "start": 1372.66, + "end": 1373.8, + "probability": 0.91943359375 + }, + { + "word": " megabytes.", + "start": 1373.8, + "end": 1374.8, + "probability": 0.994140625 + } + ] + }, + { + "id": 571, + "text": "And if you go over that, then it gets \u2013 see, the throttles back are stopped.", + "start": 1375.16, + "end": 1381.2, + "words": [ + { + "word": " And", + "start": 1375.16, + "end": 1375.64, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 1375.64, + "end": 1375.92, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1375.92, + "end": 1376.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 1376.02, + "end": 1376.16, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 1376.16, + "end": 1376.32, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 1376.32, + "end": 1376.54, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1376.82, + "end": 1377.54, + "probability": 0.970703125 + }, + { + "word": " it", + "start": 1377.54, + "end": 1378.94, + "probability": 0.350830078125 + }, + { + "word": " gets", + "start": 1378.94, + "end": 1379.26, + "probability": 0.81884765625 + }, + { + "word": " \u2013", + "start": 1379.26, + "end": 1379.34, + "probability": 0.23876953125 + }, + { + "word": " see,", + "start": 1379.34, + "end": 1379.72, + "probability": 0.9326171875 + }, + { + "word": " the", + "start": 1379.8, + "end": 1379.9, + "probability": 0.99560546875 + }, + { + "word": " throttles", + "start": 1379.9, + "end": 1380.3, + "probability": 0.9677734375 + }, + { + "word": " back", + "start": 1380.3, + "end": 1380.52, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1380.52, + "end": 1380.78, + "probability": 0.96875 + }, + { + "word": " stopped.", + "start": 1380.78, + "end": 1381.2, + "probability": 0.673828125 + } + ] + }, + { + "id": 572, + "text": "Not in my case, but I have an old one.", + "start": 1381.58, + "end": 1383.58, + "words": [ + { + "word": " Not", + "start": 1381.58, + "end": 1381.88, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 1381.88, + "end": 1382.0, + "probability": 1.0 + }, + { + "word": " my", + "start": 1382.0, + "end": 1382.12, + "probability": 1.0 + }, + { + "word": " case,", + "start": 1382.12, + "end": 1382.42, + "probability": 1.0 + }, + { + "word": " but", + "start": 1382.42, + "end": 1382.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 1382.56, + "end": 1382.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 1382.9, + "end": 1383.08, + "probability": 1.0 + }, + { + "word": " an", + "start": 1383.08, + "end": 1383.22, + "probability": 1.0 + }, + { + "word": " old", + "start": 1383.22, + "end": 1383.36, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1383.36, + "end": 1383.58, + "probability": 1.0 + } + ] + }, + { + "id": 573, + "text": "I have a grandfathered one.", + "start": 1383.64, + "end": 1384.74, + "words": [ + { + "word": " I", + "start": 1383.64, + "end": 1383.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 1383.96, + "end": 1384.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 1384.08, + "end": 1384.14, + "probability": 1.0 + }, + { + "word": " grandfathered", + "start": 1384.14, + "end": 1384.72, + "probability": 0.7802734375 + }, + { + "word": " one.", + "start": 1384.72, + "end": 1384.74, + "probability": 0.3505859375 + } + ] + }, + { + "id": 574, + "text": "Oh, if you've got an old plan or whatever it is, yeah.", + "start": 1384.82, + "end": 1387.2, + "words": [ + { + "word": " Oh,", + "start": 1384.82, + "end": 1384.96, + "probability": 0.916015625 + }, + { + "word": " if", + "start": 1384.96, + "end": 1385.08, + "probability": 0.85546875 + }, + { + "word": " you've", + "start": 1385.08, + "end": 1385.28, + "probability": 1.0 + }, + { + "word": " got", + "start": 1385.28, + "end": 1385.42, + "probability": 1.0 + }, + { + "word": " an", + "start": 1385.42, + "end": 1385.54, + "probability": 1.0 + }, + { + "word": " old", + "start": 1385.54, + "end": 1385.66, + "probability": 1.0 + }, + { + "word": " plan", + "start": 1385.66, + "end": 1386.48, + "probability": 0.93994140625 + }, + { + "word": " or", + "start": 1386.48, + "end": 1386.66, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 1386.66, + "end": 1386.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 1386.84, + "end": 1386.96, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1386.96, + "end": 1387.08, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 1387.1, + "end": 1387.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 575, + "text": "Yeah.", + "start": 1387.42, + "end": 1387.8, + "words": [ + { + "word": " Yeah.", + "start": 1387.42, + "end": 1387.8, + "probability": 0.89697265625 + } + ] + }, + { + "id": 576, + "text": "So I pay an extra $29 for the ability to do the \u2013", + "start": 1387.82, + "end": 1391.78, + "words": [ + { + "word": " So", + "start": 1387.82, + "end": 1387.92, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 1387.92, + "end": 1388.1, + "probability": 0.92626953125 + }, + { + "word": " pay", + "start": 1388.1, + "end": 1388.3, + "probability": 1.0 + }, + { + "word": " an", + "start": 1388.3, + "end": 1388.54, + "probability": 0.99365234375 + }, + { + "word": " extra", + "start": 1388.54, + "end": 1389.06, + "probability": 1.0 + }, + { + "word": " $29", + "start": 1389.06, + "end": 1389.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 1389.8, + "end": 1390.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1390.2, + "end": 1390.52, + "probability": 1.0 + }, + { + "word": " ability", + "start": 1390.52, + "end": 1390.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1390.96, + "end": 1391.3, + "probability": 1.0 + }, + { + "word": " do", + "start": 1391.3, + "end": 1391.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1391.46, + "end": 1391.78, + "probability": 1.0 + }, + { + "word": " \u2013", + "start": 1391.78, + "end": 1391.78, + "probability": 0.1109619140625 + } + ] + }, + { + "id": 577, + "text": "Right.", + "start": 1392.28, + "end": 1392.76, + "words": [ + { + "word": " Right.", + "start": 1392.28, + "end": 1392.76, + "probability": 0.99658203125 + } + ] + }, + { + "id": 578, + "text": "The hotspot on my phone.", + "start": 1392.86, + "end": 1394.22, + "words": [ + { + "word": " The", + "start": 1392.86, + "end": 1393.26, + "probability": 0.8076171875 + }, + { + "word": " hotspot", + "start": 1393.26, + "end": 1393.68, + "probability": 0.97265625 + }, + { + "word": " on", + "start": 1393.68, + "end": 1393.82, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 1393.82, + "end": 1393.94, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 1393.94, + "end": 1394.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 579, + "text": "And my average usage right now is $4.", + "start": 1394.28, + "end": 1396.94, + "words": [ + { + "word": " And", + "start": 1394.28, + "end": 1394.52, + "probability": 0.927734375 + }, + { + "word": " my", + "start": 1394.52, + "end": 1394.7, + "probability": 0.9970703125 + }, + { + "word": " average", + "start": 1394.7, + "end": 1395.22, + "probability": 0.99951171875 + }, + { + "word": " usage", + "start": 1395.22, + "end": 1395.58, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 1395.58, + "end": 1395.94, + "probability": 0.9990234375 + }, + { + "word": " now", + "start": 1395.94, + "end": 1396.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 1396.24, + "end": 1396.68, + "probability": 0.99951171875 + }, + { + "word": " $4.", + "start": 1396.68, + "end": 1396.94, + "probability": 0.224609375 + } + ] + }, + { + "id": 580, + "text": "$4.", + "start": 1396.96, + "end": 1397.04, + "words": [ + { + "word": " $4.", + "start": 1396.96, + "end": 1397.04, + "probability": 0.0111083984375 + } + ] + }, + { + "id": 581, + "text": "$4.", + "start": 1397.24, + "end": 1397.68, + "words": [ + { + "word": " $4.", + "start": 1397.24, + "end": 1397.68, + "probability": 0.09454345703125 + } + ] + }, + { + "id": 582, + "text": "$4.", + "start": 1397.7, + "end": 1398.14, + "words": [ + { + "word": " $4.", + "start": 1397.7, + "end": 1398.14, + "probability": 0.29052734375 + } + ] + }, + { + "id": 583, + "text": "$4.", + "start": 1398.14, + "end": 1398.4, + "words": [ + { + "word": " $4.", + "start": 1398.14, + "end": 1398.4, + "probability": 0.45263671875 + } + ] + }, + { + "id": 584, + "text": "$4.", + "start": 1398.4, + "end": 1398.7, + "words": [ + { + "word": " $4.", + "start": 1398.4, + "end": 1398.7, + "probability": 0.67333984375 + } + ] + }, + { + "id": 585, + "text": "", + "start": 1398.76, + "end": 1398.76, + "words": [] + }, + { + "id": 586, + "text": "$4.", + "start": 1399.6, + "end": 1400.04, + "words": [ + { + "word": " $4.", + "start": 1399.6, + "end": 1400.04, + "probability": 0.892578125 + } + ] + }, + { + "id": 587, + "text": "", + "start": 1400.04, + "end": 1400.04, + "words": [] + }, + { + "id": 588, + "text": "I can't get that.", + "start": 1400.04, + "end": 1401.6, + "words": [ + { + "word": " I", + "start": 1400.04, + "end": 1400.04, + "probability": 0.042633056640625 + }, + { + "word": " can't", + "start": 1400.04, + "end": 1401.24, + "probability": 0.7763671875 + }, + { + "word": " get", + "start": 1401.24, + "end": 1401.38, + "probability": 0.98974609375 + }, + { + "word": " that.", + "start": 1401.38, + "end": 1401.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 589, + "text": "No fees.", + "start": 1401.74, + "end": 1402.18, + "words": [ + { + "word": " No", + "start": 1401.74, + "end": 1402.02, + "probability": 0.95947265625 + }, + { + "word": " fees.", + "start": 1402.02, + "end": 1402.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 590, + "text": "So that's \u2013 you still can under certain circumstances.", + "start": 1402.44, + "end": 1406.36, + "words": [ + { + "word": " So", + "start": 1402.44, + "end": 1402.82, + "probability": 0.36083984375 + }, + { + "word": " that's", + "start": 1402.82, + "end": 1403.9, + "probability": 0.64208984375 + }, + { + "word": " \u2013", + "start": 1403.9, + "end": 1403.98, + "probability": 0.1031494140625 + }, + { + "word": " you", + "start": 1403.98, + "end": 1404.64, + "probability": 0.990234375 + }, + { + "word": " still", + "start": 1404.64, + "end": 1404.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 1404.98, + "end": 1405.16, + "probability": 1.0 + }, + { + "word": " under", + "start": 1405.16, + "end": 1405.48, + "probability": 0.99853515625 + }, + { + "word": " certain", + "start": 1405.48, + "end": 1405.78, + "probability": 1.0 + }, + { + "word": " circumstances.", + "start": 1405.78, + "end": 1406.36, + "probability": 1.0 + } + ] + }, + { + "id": 591, + "text": "And it depends on how the plan is set up.", + "start": 1406.36, + "end": 1408.7, + "words": [ + { + "word": " And", + "start": 1406.36, + "end": 1406.76, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1406.76, + "end": 1406.9, + "probability": 1.0 + }, + { + "word": " depends", + "start": 1406.9, + "end": 1407.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 1407.18, + "end": 1407.42, + "probability": 1.0 + }, + { + "word": " how", + "start": 1407.42, + "end": 1407.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 1407.62, + "end": 1407.8, + "probability": 1.0 + }, + { + "word": " plan", + "start": 1407.8, + "end": 1408.1, + "probability": 1.0 + }, + { + "word": " is", + "start": 1408.1, + "end": 1408.3, + "probability": 1.0 + }, + { + "word": " set", + "start": 1408.3, + "end": 1408.52, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1408.52, + "end": 1408.7, + "probability": 1.0 + } + ] + }, + { + "id": 592, + "text": "But I wouldn't risk it, right?", + "start": 1409.18, + "end": 1411.6, + "words": [ + { + "word": " But", + "start": 1409.18, + "end": 1409.62, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1409.62, + "end": 1410.04, + "probability": 1.0 + }, + { + "word": " wouldn't", + "start": 1410.04, + "end": 1410.72, + "probability": 1.0 + }, + { + "word": " risk", + "start": 1410.72, + "end": 1410.92, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1410.92, + "end": 1411.14, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1411.18, + "end": 1411.6, + "probability": 1.0 + } + ] + }, + { + "id": 593, + "text": "It's one of these things like I don't even talk to the people about my phone at Verizon", + "start": 1411.7, + "end": 1415.28, + "words": [ + { + "word": " It's", + "start": 1411.7, + "end": 1412.02, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 1412.02, + "end": 1412.5, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1412.5, + "end": 1412.6, + "probability": 1.0 + }, + { + "word": " these", + "start": 1412.6, + "end": 1412.68, + "probability": 1.0 + }, + { + "word": " things", + "start": 1412.68, + "end": 1412.86, + "probability": 1.0 + }, + { + "word": " like", + "start": 1412.86, + "end": 1413.04, + "probability": 0.68408203125 + }, + { + "word": " I", + "start": 1413.04, + "end": 1413.2, + "probability": 0.98193359375 + }, + { + "word": " don't", + "start": 1413.2, + "end": 1413.36, + "probability": 1.0 + }, + { + "word": " even", + "start": 1413.36, + "end": 1413.46, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1413.46, + "end": 1413.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1413.74, + "end": 1413.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1413.88, + "end": 1413.96, + "probability": 1.0 + }, + { + "word": " people", + "start": 1413.96, + "end": 1414.18, + "probability": 1.0 + }, + { + "word": " about", + "start": 1414.18, + "end": 1414.4, + "probability": 1.0 + }, + { + "word": " my", + "start": 1414.4, + "end": 1414.6, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1414.6, + "end": 1414.86, + "probability": 1.0 + }, + { + "word": " at", + "start": 1414.86, + "end": 1415.0, + "probability": 0.99951171875 + }, + { + "word": " Verizon", + "start": 1415.0, + "end": 1415.28, + "probability": 1.0 + } + ] + }, + { + "id": 594, + "text": "because I don't want them to mess up my plan.", + "start": 1415.28, + "end": 1416.94, + "words": [ + { + "word": " because", + "start": 1415.28, + "end": 1415.56, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 1415.56, + "end": 1415.72, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1415.72, + "end": 1415.84, + "probability": 1.0 + }, + { + "word": " want", + "start": 1415.84, + "end": 1415.94, + "probability": 1.0 + }, + { + "word": " them", + "start": 1415.94, + "end": 1416.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1416.08, + "end": 1416.2, + "probability": 1.0 + }, + { + "word": " mess", + "start": 1416.2, + "end": 1416.4, + "probability": 1.0 + }, + { + "word": " up", + "start": 1416.4, + "end": 1416.48, + "probability": 1.0 + }, + { + "word": " my", + "start": 1416.48, + "end": 1416.64, + "probability": 1.0 + }, + { + "word": " plan.", + "start": 1416.64, + "end": 1416.94, + "probability": 1.0 + } + ] + }, + { + "id": 595, + "text": "Right.", + "start": 1417.2, + "end": 1417.64, + "words": [ + { + "word": " Right.", + "start": 1417.2, + "end": 1417.64, + "probability": 0.87939453125 + } + ] + }, + { + "id": 596, + "text": "Yeah.", + "start": 1417.64, + "end": 1417.9, + "words": [ + { + "word": " Yeah.", + "start": 1417.64, + "end": 1417.9, + "probability": 0.97119140625 + } + ] + }, + { + "id": 597, + "text": "That is the problem.", + "start": 1418.56, + "end": 1419.5, + "words": [ + { + "word": " That", + "start": 1418.56, + "end": 1419.0, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1419.0, + "end": 1419.14, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 1419.14, + "end": 1419.2, + "probability": 0.50390625 + }, + { + "word": " problem.", + "start": 1419.2, + "end": 1419.5, + "probability": 1.0 + } + ] + }, + { + "id": 598, + "text": "So, yeah, unfortunately for people who try to do mobile work like myself and you, it sounds like,", + "start": 1420.3, + "end": 1426.86, + "words": [ + { + "word": " So,", + "start": 1420.3, + "end": 1420.74, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 1420.8, + "end": 1420.96, + "probability": 1.0 + }, + { + "word": " unfortunately", + "start": 1421.02, + "end": 1421.58, + "probability": 1.0 + }, + { + "word": " for", + "start": 1421.58, + "end": 1422.14, + "probability": 0.9541015625 + }, + { + "word": " people", + "start": 1422.14, + "end": 1422.38, + "probability": 1.0 + }, + { + "word": " who", + "start": 1422.38, + "end": 1422.6, + "probability": 1.0 + }, + { + "word": " try", + "start": 1422.6, + "end": 1422.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1422.8, + "end": 1422.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 1422.9, + "end": 1423.1, + "probability": 1.0 + }, + { + "word": " mobile", + "start": 1423.1, + "end": 1424.18, + "probability": 1.0 + }, + { + "word": " work", + "start": 1424.18, + "end": 1424.72, + "probability": 1.0 + }, + { + "word": " like", + "start": 1424.72, + "end": 1425.24, + "probability": 0.845703125 + }, + { + "word": " myself", + "start": 1425.24, + "end": 1425.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 1425.5, + "end": 1425.8, + "probability": 0.99365234375 + }, + { + "word": " you,", + "start": 1425.8, + "end": 1426.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 1426.12, + "end": 1426.3, + "probability": 1.0 + }, + { + "word": " sounds", + "start": 1426.3, + "end": 1426.58, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1426.58, + "end": 1426.86, + "probability": 1.0 + } + ] + }, + { + "id": 599, + "text": "it's pretty hard to find a reasonable way to get on the Internet without war driving.", + "start": 1427.4399999999998, + "end": 1432.72, + "words": [ + { + "word": " it's", + "start": 1427.4399999999998, + "end": 1427.84, + "probability": 0.9697265625 + }, + { + "word": " pretty", + "start": 1427.84, + "end": 1428.14, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1428.14, + "end": 1428.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1428.54, + "end": 1428.88, + "probability": 1.0 + }, + { + "word": " find", + "start": 1428.88, + "end": 1429.54, + "probability": 0.98828125 + }, + { + "word": " a", + "start": 1429.54, + "end": 1430.06, + "probability": 1.0 + }, + { + "word": " reasonable", + "start": 1430.06, + "end": 1430.64, + "probability": 1.0 + }, + { + "word": " way", + "start": 1430.64, + "end": 1431.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1431.02, + "end": 1431.22, + "probability": 1.0 + }, + { + "word": " get", + "start": 1431.22, + "end": 1431.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 1431.34, + "end": 1431.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1431.46, + "end": 1431.56, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 1431.56, + "end": 1431.78, + "probability": 0.82177734375 + }, + { + "word": " without", + "start": 1431.78, + "end": 1432.16, + "probability": 1.0 + }, + { + "word": " war", + "start": 1432.16, + "end": 1432.4, + "probability": 0.90673828125 + }, + { + "word": " driving.", + "start": 1432.4, + "end": 1432.72, + "probability": 0.97216796875 + } + ] + }, + { + "id": 600, + "text": "And we'll probably see more of that if the cellular companies start clamping down.", + "start": 1434.8799999999999, + "end": 1440.14, + "words": [ + { + "word": " And", + "start": 1434.8799999999999, + "end": 1435.28, + "probability": 0.97900390625 + }, + { + "word": " we'll", + "start": 1435.28, + "end": 1435.68, + "probability": 0.98046875 + }, + { + "word": " probably", + "start": 1435.68, + "end": 1435.88, + "probability": 1.0 + }, + { + "word": " see", + "start": 1435.88, + "end": 1436.04, + "probability": 1.0 + }, + { + "word": " more", + "start": 1436.04, + "end": 1436.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1436.22, + "end": 1436.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 1436.4, + "end": 1436.56, + "probability": 1.0 + }, + { + "word": " if", + "start": 1436.56, + "end": 1437.14, + "probability": 0.84765625 + }, + { + "word": " the", + "start": 1437.14, + "end": 1437.32, + "probability": 1.0 + }, + { + "word": " cellular", + "start": 1437.32, + "end": 1438.84, + "probability": 0.99755859375 + }, + { + "word": " companies", + "start": 1438.84, + "end": 1439.24, + "probability": 1.0 + }, + { + "word": " start", + "start": 1439.24, + "end": 1439.44, + "probability": 1.0 + }, + { + "word": " clamping", + "start": 1439.44, + "end": 1439.94, + "probability": 1.0 + }, + { + "word": " down.", + "start": 1439.94, + "end": 1440.14, + "probability": 1.0 + } + ] + }, + { + "id": 601, + "text": "We'll probably see more war driving.", + "start": 1440.26, + "end": 1441.76, + "words": [ + { + "word": " We'll", + "start": 1440.26, + "end": 1440.58, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 1440.58, + "end": 1440.9, + "probability": 1.0 + }, + { + "word": " see", + "start": 1440.9, + "end": 1441.1, + "probability": 1.0 + }, + { + "word": " more", + "start": 1441.1, + "end": 1441.24, + "probability": 1.0 + }, + { + "word": " war", + "start": 1441.24, + "end": 1441.46, + "probability": 0.99951171875 + }, + { + "word": " driving.", + "start": 1441.46, + "end": 1441.76, + "probability": 1.0 + } + ] + }, + { + "id": 602, + "text": "And there's a bunch of utilities out there.", + "start": 1441.92, + "end": 1443.46, + "words": [ + { + "word": " And", + "start": 1441.92, + "end": 1442.08, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1442.08, + "end": 1442.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1442.52, + "end": 1442.54, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 1442.54, + "end": 1442.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 1442.7, + "end": 1442.8, + "probability": 1.0 + }, + { + "word": " utilities", + "start": 1442.8, + "end": 1443.02, + "probability": 1.0 + }, + { + "word": " out", + "start": 1443.02, + "end": 1443.3, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1443.3, + "end": 1443.46, + "probability": 1.0 + } + ] + }, + { + "id": 603, + "text": "Just so you know, you can break into a Wi-Fi network in about 10 seconds no matter what password you put on there", + "start": 1443.94, + "end": 1449.28, + "words": [ + { + "word": " Just", + "start": 1443.94, + "end": 1444.34, + "probability": 0.99658203125 + }, + { + "word": " so", + "start": 1444.34, + "end": 1444.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 1444.46, + "end": 1444.56, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1444.56, + "end": 1444.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 1444.72, + "end": 1444.84, + "probability": 1.0 + }, + { + "word": " can", + "start": 1444.84, + "end": 1445.0, + "probability": 1.0 + }, + { + "word": " break", + "start": 1445.0, + "end": 1445.46, + "probability": 0.99658203125 + }, + { + "word": " into", + "start": 1445.46, + "end": 1445.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1445.7, + "end": 1445.86, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1445.86, + "end": 1445.96, + "probability": 0.9990234375 + }, + { + "word": "-Fi", + "start": 1445.96, + "end": 1446.16, + "probability": 1.0 + }, + { + "word": " network", + "start": 1446.16, + "end": 1446.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 1446.42, + "end": 1446.68, + "probability": 1.0 + }, + { + "word": " about", + "start": 1446.68, + "end": 1446.8, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1446.8, + "end": 1447.1, + "probability": 0.91748046875 + }, + { + "word": " seconds", + "start": 1447.1, + "end": 1447.5, + "probability": 1.0 + }, + { + "word": " no", + "start": 1447.5, + "end": 1447.98, + "probability": 0.134033203125 + }, + { + "word": " matter", + "start": 1447.98, + "end": 1448.18, + "probability": 1.0 + }, + { + "word": " what", + "start": 1448.18, + "end": 1448.4, + "probability": 1.0 + }, + { + "word": " password", + "start": 1448.4, + "end": 1448.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 1448.74, + "end": 1448.86, + "probability": 1.0 + }, + { + "word": " put", + "start": 1448.86, + "end": 1448.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 1448.98, + "end": 1449.12, + "probability": 1.0 + }, + { + "word": " there", + "start": 1449.12, + "end": 1449.28, + "probability": 1.0 + } + ] + }, + { + "id": 604, + "text": "if you have the right applications.", + "start": 1449.28, + "end": 1450.4, + "words": [ + { + "word": " if", + "start": 1449.28, + "end": 1449.54, + "probability": 0.89990234375 + }, + { + "word": " you", + "start": 1449.54, + "end": 1449.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 1449.62, + "end": 1449.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1449.72, + "end": 1449.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 1449.84, + "end": 1449.96, + "probability": 1.0 + }, + { + "word": " applications.", + "start": 1449.96, + "end": 1450.4, + "probability": 1.0 + } + ] + }, + { + "id": 605, + "text": "So there's \u2013 you're going to see people that are going to be driving around breaking into wireless networks.", + "start": 1451.5199999999998, + "end": 1456.78, + "words": [ + { + "word": " So", + "start": 1451.5199999999998, + "end": 1451.9199999999998, + "probability": 0.994140625 + }, + { + "word": " there's", + "start": 1451.9199999999998, + "end": 1452.32, + "probability": 0.51220703125 + }, + { + "word": " \u2013", + "start": 1452.32, + "end": 1452.38, + "probability": 0.80908203125 + }, + { + "word": " you're", + "start": 1452.38, + "end": 1453.4, + "probability": 1.0 + }, + { + "word": " going", + "start": 1453.4, + "end": 1453.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1453.42, + "end": 1453.52, + "probability": 1.0 + }, + { + "word": " see", + "start": 1453.52, + "end": 1453.66, + "probability": 1.0 + }, + { + "word": " people", + "start": 1453.66, + "end": 1453.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 1453.98, + "end": 1454.12, + "probability": 0.99462890625 + }, + { + "word": " are", + "start": 1454.12, + "end": 1454.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 1454.16, + "end": 1454.26, + "probability": 0.85498046875 + }, + { + "word": " to", + "start": 1454.26, + "end": 1454.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 1454.26, + "end": 1454.4, + "probability": 0.9033203125 + }, + { + "word": " driving", + "start": 1454.4, + "end": 1454.64, + "probability": 0.9990234375 + }, + { + "word": " around", + "start": 1454.64, + "end": 1455.02, + "probability": 1.0 + }, + { + "word": " breaking", + "start": 1455.02, + "end": 1455.88, + "probability": 0.77392578125 + }, + { + "word": " into", + "start": 1455.88, + "end": 1456.12, + "probability": 0.99951171875 + }, + { + "word": " wireless", + "start": 1456.12, + "end": 1456.42, + "probability": 0.9990234375 + }, + { + "word": " networks.", + "start": 1456.42, + "end": 1456.78, + "probability": 1.0 + } + ] + }, + { + "id": 606, + "text": "You're going to see people that are going to be driving around breaking into wireless networks.", + "start": 1456.8, + "end": 1456.94, + "words": [ + { + "word": " You're", + "start": 1456.8, + "end": 1456.94, + "probability": 0.79296875 + }, + { + "word": " going", + "start": 1456.94, + "end": 1456.94, + "probability": 0.939453125 + }, + { + "word": " to", + "start": 1456.94, + "end": 1456.94, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 1456.94, + "end": 1456.94, + "probability": 0.9208984375 + }, + { + "word": " people", + "start": 1456.94, + "end": 1456.94, + "probability": 0.72802734375 + }, + { + "word": " that", + "start": 1456.94, + "end": 1456.94, + "probability": 0.515625 + }, + { + "word": " are", + "start": 1456.94, + "end": 1456.94, + "probability": 0.99072265625 + }, + { + "word": " going", + "start": 1456.94, + "end": 1456.94, + "probability": 0.9755859375 + }, + { + "word": " to", + "start": 1456.94, + "end": 1456.94, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 1456.94, + "end": 1456.94, + "probability": 0.93701171875 + }, + { + "word": " driving", + "start": 1456.94, + "end": 1456.94, + "probability": 0.3369140625 + }, + { + "word": " around", + "start": 1456.94, + "end": 1456.94, + "probability": 0.97216796875 + }, + { + "word": " breaking", + "start": 1456.94, + "end": 1456.94, + "probability": 0.822265625 + }, + { + "word": " into", + "start": 1456.94, + "end": 1456.94, + "probability": 0.99658203125 + }, + { + "word": " wireless", + "start": 1456.94, + "end": 1456.94, + "probability": 0.9228515625 + }, + { + "word": " networks.", + "start": 1456.94, + "end": 1456.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 607, + "text": "Just so they can get on the Internet.", + "start": 1456.94, + "end": 1457.72, + "words": [ + { + "word": " Just", + "start": 1456.94, + "end": 1456.98, + "probability": 0.035491943359375 + }, + { + "word": " so", + "start": 1456.98, + "end": 1457.08, + "probability": 0.99658203125 + }, + { + "word": " they", + "start": 1457.08, + "end": 1457.16, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 1457.16, + "end": 1457.28, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 1457.28, + "end": 1457.36, + "probability": 0.99169921875 + }, + { + "word": " on", + "start": 1457.36, + "end": 1457.44, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 1457.44, + "end": 1457.52, + "probability": 0.99951171875 + }, + { + "word": " Internet.", + "start": 1457.52, + "end": 1457.72, + "probability": 0.429931640625 + } + ] + }, + { + "id": 608, + "text": "Well, yeah, but that doesn't do me much good because I'm generally out in the field away from Wi-Fi spots.", + "start": 1458.62, + "end": 1466.1, + "words": [ + { + "word": " Well,", + "start": 1458.62, + "end": 1459.02, + "probability": 0.9482421875 + }, + { + "word": " yeah,", + "start": 1459.04, + "end": 1459.22, + "probability": 0.99072265625 + }, + { + "word": " but", + "start": 1459.28, + "end": 1459.38, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1459.38, + "end": 1459.52, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1459.52, + "end": 1459.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 1459.82, + "end": 1459.92, + "probability": 1.0 + }, + { + "word": " me", + "start": 1459.92, + "end": 1460.06, + "probability": 1.0 + }, + { + "word": " much", + "start": 1460.06, + "end": 1460.28, + "probability": 1.0 + }, + { + "word": " good", + "start": 1460.28, + "end": 1460.48, + "probability": 1.0 + }, + { + "word": " because", + "start": 1460.48, + "end": 1460.72, + "probability": 0.7763671875 + }, + { + "word": " I'm", + "start": 1460.72, + "end": 1460.98, + "probability": 0.9990234375 + }, + { + "word": " generally", + "start": 1460.98, + "end": 1461.24, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 1461.24, + "end": 1461.56, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1461.56, + "end": 1461.7, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 1461.7, + "end": 1461.78, + "probability": 1.0 + }, + { + "word": " field", + "start": 1461.78, + "end": 1462.14, + "probability": 1.0 + }, + { + "word": " away", + "start": 1462.14, + "end": 1462.58, + "probability": 0.912109375 + }, + { + "word": " from", + "start": 1462.58, + "end": 1462.88, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1462.88, + "end": 1463.12, + "probability": 0.97607421875 + }, + { + "word": "-Fi", + "start": 1463.12, + "end": 1465.88, + "probability": 1.0 + }, + { + "word": " spots.", + "start": 1465.88, + "end": 1466.1, + "probability": 0.9521484375 + } + ] + }, + { + "id": 609, + "text": "That's what I'm looking for is for downloading maps.", + "start": 1467.06, + "end": 1469.16, + "words": [ + { + "word": " That's", + "start": 1467.06, + "end": 1467.46, + "probability": 0.87060546875 + }, + { + "word": " what", + "start": 1467.46, + "end": 1467.46, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1467.46, + "end": 1467.7, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1467.7, + "end": 1467.92, + "probability": 1.0 + }, + { + "word": " for", + "start": 1467.92, + "end": 1468.2, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1468.2, + "end": 1468.34, + "probability": 0.91650390625 + }, + { + "word": " for", + "start": 1468.34, + "end": 1468.42, + "probability": 0.9619140625 + }, + { + "word": " downloading", + "start": 1468.42, + "end": 1468.74, + "probability": 1.0 + }, + { + "word": " maps.", + "start": 1468.74, + "end": 1469.16, + "probability": 0.5126953125 + } + ] + }, + { + "id": 610, + "text": "Right.", + "start": 1469.7, + "end": 1470.1, + "words": [ + { + "word": " Right.", + "start": 1469.7, + "end": 1470.1, + "probability": 0.9013671875 + } + ] + }, + { + "id": 611, + "text": "You're in rough shape, man.", + "start": 1470.18, + "end": 1471.14, + "words": [ + { + "word": " You're", + "start": 1470.18, + "end": 1470.52, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1470.52, + "end": 1470.52, + "probability": 1.0 + }, + { + "word": " rough", + "start": 1470.52, + "end": 1470.7, + "probability": 1.0 + }, + { + "word": " shape,", + "start": 1470.7, + "end": 1470.9, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1470.94, + "end": 1471.14, + "probability": 1.0 + } + ] + }, + { + "id": 612, + "text": "I don't have to tell you.", + "start": 1471.26, + "end": 1472.0, + "words": [ + { + "word": " I", + "start": 1471.26, + "end": 1471.6, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1471.6, + "end": 1471.7, + "probability": 0.5625 + }, + { + "word": " have", + "start": 1471.7, + "end": 1471.76, + "probability": 0.44970703125 + }, + { + "word": " to", + "start": 1471.76, + "end": 1471.84, + "probability": 0.98828125 + }, + { + "word": " tell", + "start": 1471.84, + "end": 1472.0, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1472.0, + "end": 1472.0, + "probability": 1.0 + } + ] + }, + { + "id": 613, + "text": "I am.", + "start": 1472.0, + "end": 1472.22, + "words": [ + { + "word": " I", + "start": 1472.0, + "end": 1472.12, + "probability": 0.9990234375 + }, + { + "word": " am.", + "start": 1472.12, + "end": 1472.22, + "probability": 0.943359375 + } + ] + }, + { + "id": 614, + "text": "I really am.", + "start": 1472.26, + "end": 1472.94, + "words": [ + { + "word": " I", + "start": 1472.26, + "end": 1472.52, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 1472.52, + "end": 1472.72, + "probability": 1.0 + }, + { + "word": " am.", + "start": 1472.72, + "end": 1472.94, + "probability": 1.0 + } + ] + }, + { + "id": 615, + "text": "You're going to have to have like four different cell phone numbers that you can get 10 gigabytes each off of.", + "start": 1473.28, + "end": 1478.62, + "words": [ + { + "word": " You're", + "start": 1473.28, + "end": 1473.68, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1473.68, + "end": 1473.74, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1473.74, + "end": 1473.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 1473.78, + "end": 1473.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1473.86, + "end": 1473.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 1473.9, + "end": 1474.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 1474.02, + "end": 1474.16, + "probability": 0.65673828125 + }, + { + "word": " four", + "start": 1474.16, + "end": 1474.48, + "probability": 0.99658203125 + }, + { + "word": " different", + "start": 1474.48, + "end": 1474.98, + "probability": 1.0 + }, + { + "word": " cell", + "start": 1474.98, + "end": 1475.64, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1475.64, + "end": 1475.88, + "probability": 1.0 + }, + { + "word": " numbers", + "start": 1475.88, + "end": 1476.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 1476.24, + "end": 1476.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1476.48, + "end": 1476.58, + "probability": 1.0 + }, + { + "word": " can", + "start": 1476.58, + "end": 1476.72, + "probability": 1.0 + }, + { + "word": " get", + "start": 1476.72, + "end": 1476.92, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1476.92, + "end": 1477.5, + "probability": 0.8701171875 + }, + { + "word": " gigabytes", + "start": 1477.5, + "end": 1477.92, + "probability": 0.99462890625 + }, + { + "word": " each", + "start": 1477.92, + "end": 1478.24, + "probability": 1.0 + }, + { + "word": " off", + "start": 1478.24, + "end": 1478.46, + "probability": 0.9990234375 + }, + { + "word": " of.", + "start": 1478.46, + "end": 1478.62, + "probability": 1.0 + } + ] + }, + { + "id": 616, + "text": "Well, that may be something to look at considering how cheap some of these things are getting.", + "start": 1479.28, + "end": 1483.0, + "words": [ + { + "word": " Well,", + "start": 1479.28, + "end": 1479.68, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 1479.68, + "end": 1479.76, + "probability": 1.0 + }, + { + "word": " may", + "start": 1479.76, + "end": 1479.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 1479.9, + "end": 1480.04, + "probability": 1.0 + }, + { + "word": " something", + "start": 1480.04, + "end": 1480.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1480.28, + "end": 1480.48, + "probability": 1.0 + }, + { + "word": " look", + "start": 1480.48, + "end": 1480.66, + "probability": 1.0 + }, + { + "word": " at", + "start": 1480.66, + "end": 1480.86, + "probability": 1.0 + }, + { + "word": " considering", + "start": 1480.86, + "end": 1481.28, + "probability": 0.90185546875 + }, + { + "word": " how", + "start": 1481.28, + "end": 1481.48, + "probability": 1.0 + }, + { + "word": " cheap", + "start": 1481.48, + "end": 1481.84, + "probability": 0.99560546875 + }, + { + "word": " some", + "start": 1481.84, + "end": 1482.24, + "probability": 0.95849609375 + }, + { + "word": " of", + "start": 1482.24, + "end": 1482.38, + "probability": 1.0 + }, + { + "word": " these", + "start": 1482.38, + "end": 1482.46, + "probability": 1.0 + }, + { + "word": " things", + "start": 1482.46, + "end": 1482.64, + "probability": 1.0 + }, + { + "word": " are", + "start": 1482.64, + "end": 1482.8, + "probability": 1.0 + }, + { + "word": " getting.", + "start": 1482.8, + "end": 1483.0, + "probability": 1.0 + } + ] + }, + { + "id": 617, + "text": "Yeah.", + "start": 1483.18, + "end": 1483.42, + "words": [ + { + "word": " Yeah.", + "start": 1483.18, + "end": 1483.42, + "probability": 0.93896484375 + } + ] + }, + { + "id": 618, + "text": "Well, good luck, man.", + "start": 1483.9, + "end": 1484.78, + "words": [ + { + "word": " Well,", + "start": 1483.9, + "end": 1484.3, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 1484.34, + "end": 1484.42, + "probability": 1.0 + }, + { + "word": " luck,", + "start": 1484.42, + "end": 1484.6, + "probability": 1.0 + }, + { + "word": " man.", + "start": 1484.64, + "end": 1484.78, + "probability": 1.0 + } + ] + }, + { + "id": 619, + "text": "All right.", + "start": 1485.1, + "end": 1485.54, + "words": [ + { + "word": " All", + "start": 1485.1, + "end": 1485.44, + "probability": 0.98828125 + }, + { + "word": " right.", + "start": 1485.44, + "end": 1485.54, + "probability": 1.0 + } + ] + }, + { + "id": 620, + "text": "Well, thanks.", + "start": 1485.54, + "end": 1486.0, + "words": [ + { + "word": " Well,", + "start": 1485.54, + "end": 1485.72, + "probability": 0.99951171875 + }, + { + "word": " thanks.", + "start": 1485.74, + "end": 1486.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 621, + "text": "Thanks.", + "start": 1486.12, + "end": 1486.38, + "words": [ + { + "word": " Thanks.", + "start": 1486.12, + "end": 1486.38, + "probability": 0.0016956329345703125 + } + ] + }, + { + "id": 622, + "text": "Sorry about that.", + "start": 1486.38, + "end": 1486.92, + "words": [ + { + "word": " Sorry", + "start": 1486.38, + "end": 1486.52, + "probability": 0.9912109375 + }, + { + "word": " about", + "start": 1486.52, + "end": 1486.8, + "probability": 0.96923828125 + }, + { + "word": " that.", + "start": 1486.8, + "end": 1486.92, + "probability": 0.779296875 + } + ] + }, + { + "id": 623, + "text": "Sorry about that.", + "start": 1486.94, + "end": 1487.04, + "words": [ + { + "word": " Sorry", + "start": 1486.94, + "end": 1486.98, + "probability": 0.0005450248718261719 + }, + { + "word": " about", + "start": 1486.98, + "end": 1486.98, + "probability": 0.97900390625 + }, + { + "word": " that.", + "start": 1486.98, + "end": 1487.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 624, + "text": "It does suck that the cellular companies are just sort of doing whatever they want.", + "start": 1487.6399999999999, + "end": 1491.94, + "words": [ + { + "word": " It", + "start": 1487.6399999999999, + "end": 1488.04, + "probability": 0.99560546875 + }, + { + "word": " does", + "start": 1488.04, + "end": 1488.44, + "probability": 0.99951171875 + }, + { + "word": " suck", + "start": 1488.44, + "end": 1488.76, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1488.76, + "end": 1488.86, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 1488.86, + "end": 1488.96, + "probability": 0.9990234375 + }, + { + "word": " cellular", + "start": 1488.96, + "end": 1489.14, + "probability": 0.99755859375 + }, + { + "word": " companies", + "start": 1489.14, + "end": 1489.46, + "probability": 1.0 + }, + { + "word": " are", + "start": 1489.46, + "end": 1489.7, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 1489.7, + "end": 1490.44, + "probability": 0.97412109375 + }, + { + "word": " sort", + "start": 1490.44, + "end": 1490.64, + "probability": 0.9853515625 + }, + { + "word": " of", + "start": 1490.64, + "end": 1491.0, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1491.0, + "end": 1491.2, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 1491.2, + "end": 1491.46, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 1491.46, + "end": 1491.68, + "probability": 1.0 + }, + { + "word": " want.", + "start": 1491.68, + "end": 1491.94, + "probability": 1.0 + } + ] + }, + { + "id": 625, + "text": "You know, and the FCC is to blame.", + "start": 1492.64, + "end": 1494.36, + "words": [ + { + "word": " You", + "start": 1492.64, + "end": 1493.04, + "probability": 0.9287109375 + }, + { + "word": " know,", + "start": 1493.04, + "end": 1493.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 1493.22, + "end": 1493.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1493.42, + "end": 1493.56, + "probability": 1.0 + }, + { + "word": " FCC", + "start": 1493.56, + "end": 1493.86, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 1493.86, + "end": 1494.06, + "probability": 0.876953125 + }, + { + "word": " to", + "start": 1494.06, + "end": 1494.14, + "probability": 0.99072265625 + }, + { + "word": " blame.", + "start": 1494.14, + "end": 1494.36, + "probability": 1.0 + } + ] + }, + { + "id": 626, + "text": "That's how I look at it.", + "start": 1494.5, + "end": 1495.74, + "words": [ + { + "word": " That's", + "start": 1494.5, + "end": 1494.88, + "probability": 1.0 + }, + { + "word": " how", + "start": 1494.88, + "end": 1494.98, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1494.98, + "end": 1495.14, + "probability": 1.0 + }, + { + "word": " look", + "start": 1495.14, + "end": 1495.34, + "probability": 1.0 + }, + { + "word": " at", + "start": 1495.34, + "end": 1495.52, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1495.52, + "end": 1495.74, + "probability": 1.0 + } + ] + }, + { + "id": 627, + "text": "Jerks.", + "start": 1496.98, + "end": 1497.38, + "words": [ + { + "word": " Jerks.", + "start": 1496.98, + "end": 1497.38, + "probability": 0.67138671875 + } + ] + }, + { + "id": 628, + "text": "Give me the blues.", + "start": 1497.4, + "end": 1497.9, + "words": [ + { + "word": " Give", + "start": 1497.4, + "end": 1497.44, + "probability": 0.448486328125 + }, + { + "word": " me", + "start": 1497.44, + "end": 1497.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 1497.54, + "end": 1497.68, + "probability": 0.99951171875 + }, + { + "word": " blues.", + "start": 1497.68, + "end": 1497.9, + "probability": 0.9873046875 + } + ] + }, + { + "id": 629, + "text": "I'll be right back.", + "start": 1498.08, + "end": 1498.86, + "words": [ + { + "word": " I'll", + "start": 1498.08, + "end": 1498.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 1498.4, + "end": 1498.48, + "probability": 1.0 + }, + { + "word": " right", + "start": 1498.48, + "end": 1498.58, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1498.58, + "end": 1498.86, + "probability": 1.0 + } + ] + }, + { + "id": 630, + "text": "I'll be right back.", + "start": 1506.82, + "end": 1507.22, + "words": [ + { + "word": " I'll", + "start": 1506.82, + "end": 1507.22, + "probability": 0.6337890625 + }, + { + "word": " be", + "start": 1507.22, + "end": 1507.22, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 1507.22, + "end": 1507.22, + "probability": 0.9892578125 + }, + { + "word": " back.", + "start": 1507.22, + "end": 1507.22, + "probability": 1.0 + } + ] + }, + { + "id": 631, + "text": "I'll be right back.", + "start": 1508.6, + "end": 1514.36, + "words": [ + { + "word": " I'll", + "start": 1508.6, + "end": 1509.0, + "probability": 0.9638671875 + }, + { + "word": " be", + "start": 1509.0, + "end": 1509.18, + "probability": 1.0 + }, + { + "word": " right", + "start": 1509.18, + "end": 1509.36, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1509.36, + "end": 1514.36, + "probability": 1.0 + } + ] + }, + { + "id": 632, + "text": "I'll be right back.", + "start": 1517.24, + "end": 1523.26, + "words": [ + { + "word": " I'll", + "start": 1517.24, + "end": 1518.64, + "probability": 0.09014892578125 + }, + { + "word": " be", + "start": 1518.64, + "end": 1518.64, + "probability": 0.08441162109375 + }, + { + "word": " right", + "start": 1518.64, + "end": 1521.62, + "probability": 0.66357421875 + }, + { + "word": " back.", + "start": 1521.62, + "end": 1523.26, + "probability": 0.9892578125 + } + ] + }, + { + "id": 633, + "text": "I'll be right back.", + "start": 1548.62, + "end": 1549.02, + "words": [ + { + "word": " I'll", + "start": 1548.62, + "end": 1549.02, + "probability": 0.02490234375 + }, + { + "word": " be", + "start": 1549.02, + "end": 1549.02, + "probability": 0.0274200439453125 + }, + { + "word": " right", + "start": 1549.02, + "end": 1549.02, + "probability": 0.89306640625 + }, + { + "word": " back.", + "start": 1549.02, + "end": 1549.02, + "probability": 0.99609375 + } + ] + }, + { + "id": 634, + "text": "", + "start": 1549.02, + "end": 1549.02, + "words": [] + }, + { + "id": 635, + "text": "", + "start": 1549.02, + "end": 1549.02, + "words": [] + }, + { + "id": 636, + "text": "", + "start": 1549.02, + "end": 1549.02, + "words": [] + }, + { + "id": 637, + "text": "", + "start": 1549.02, + "end": 1549.02, + "words": [] + }, + { + "id": 638, + "text": "", + "start": 1549.02, + "end": 1549.02, + "words": [] + }, + { + "id": 639, + "text": "", + "start": 1549.02, + "end": 1549.02, + "words": [] + }, + { + "id": 640, + "text": "Mike Swanson, your computer guru is just a click away.", + "start": 1549.02, + "end": 1551.62, + "words": [ + { + "word": " Mike", + "start": 1549.02, + "end": 1549.02, + "probability": 0.0169525146484375 + }, + { + "word": " Swanson,", + "start": 1549.02, + "end": 1549.46, + "probability": 0.990234375 + }, + { + "word": " your", + "start": 1549.6, + "end": 1549.76, + "probability": 0.99609375 + }, + { + "word": " computer", + "start": 1549.76, + "end": 1550.14, + "probability": 0.9208984375 + }, + { + "word": " guru", + "start": 1550.14, + "end": 1550.5, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1550.5, + "end": 1550.82, + "probability": 0.61376953125 + }, + { + "word": " just", + "start": 1550.82, + "end": 1551.06, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1551.06, + "end": 1551.24, + "probability": 1.0 + }, + { + "word": " click", + "start": 1551.24, + "end": 1551.42, + "probability": 0.99853515625 + }, + { + "word": " away.", + "start": 1551.42, + "end": 1551.62, + "probability": 1.0 + } + ] + }, + { + "id": 641, + "text": "Listen and watch at gurushow.com.", + "start": 1551.88, + "end": 1553.98, + "words": [ + { + "word": " Listen", + "start": 1551.88, + "end": 1552.28, + "probability": 0.9833984375 + }, + { + "word": " and", + "start": 1552.28, + "end": 1552.46, + "probability": 0.99951171875 + }, + { + "word": " watch", + "start": 1552.46, + "end": 1552.76, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1552.76, + "end": 1552.92, + "probability": 0.9072265625 + }, + { + "word": " gurushow", + "start": 1552.92, + "end": 1553.46, + "probability": 0.89208984375 + }, + { + "word": ".com.", + "start": 1553.46, + "end": 1553.98, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "This is a computer guru show on KVOI, The Voice.", + "start": 1554.3, + "end": 1557.96, + "words": [ + { + "word": " This", + "start": 1554.3, + "end": 1554.7, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1554.7, + "end": 1555.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 1555.02, + "end": 1555.14, + "probability": 0.5166015625 + }, + { + "word": " computer", + "start": 1555.14, + "end": 1555.4, + "probability": 0.7998046875 + }, + { + "word": " guru", + "start": 1555.4, + "end": 1555.76, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 1555.76, + "end": 1556.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1556.1, + "end": 1556.54, + "probability": 0.9990234375 + }, + { + "word": " KVOI,", + "start": 1556.54, + "end": 1557.38, + "probability": 0.9677734375 + }, + { + "word": " The", + "start": 1557.42, + "end": 1557.66, + "probability": 0.994140625 + }, + { + "word": " Voice.", + "start": 1557.66, + "end": 1557.96, + "probability": 1.0 + } + ] + }, + { + "id": 643, + "text": "Welcome back to the Computer Guru Show.", + "start": 1559.72, + "end": 1561.56, + "words": [ + { + "word": " Welcome", + "start": 1559.72, + "end": 1560.12, + "probability": 0.9921875 + }, + { + "word": " back", + "start": 1560.12, + "end": 1560.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1560.48, + "end": 1560.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1560.68, + "end": 1560.8, + "probability": 0.95849609375 + }, + { + "word": " Computer", + "start": 1560.8, + "end": 1561.02, + "probability": 0.364501953125 + }, + { + "word": " Guru", + "start": 1561.02, + "end": 1561.32, + "probability": 0.9931640625 + }, + { + "word": " Show.", + "start": 1561.32, + "end": 1561.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 644, + "text": "My name is Mike, here to deal with your technology needs and treat you like a person in the process.", + "start": 1561.6, + "end": 1564.84, + "words": [ + { + "word": " My", + "start": 1561.6, + "end": 1561.74, + "probability": 0.99462890625 + }, + { + "word": " name", + "start": 1561.74, + "end": 1561.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 1561.88, + "end": 1561.9, + "probability": 0.982421875 + }, + { + "word": " Mike,", + "start": 1561.9, + "end": 1562.16, + "probability": 1.0 + }, + { + "word": " here", + "start": 1562.16, + "end": 1562.32, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1562.32, + "end": 1562.46, + "probability": 1.0 + }, + { + "word": " deal", + "start": 1562.46, + "end": 1562.6, + "probability": 0.984375 + }, + { + "word": " with", + "start": 1562.6, + "end": 1562.7, + "probability": 1.0 + }, + { + "word": " your", + "start": 1562.7, + "end": 1562.76, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 1562.76, + "end": 1563.04, + "probability": 1.0 + }, + { + "word": " needs", + "start": 1563.04, + "end": 1563.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 1563.42, + "end": 1563.64, + "probability": 0.99658203125 + }, + { + "word": " treat", + "start": 1563.64, + "end": 1563.88, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1563.88, + "end": 1564.04, + "probability": 1.0 + }, + { + "word": " like", + "start": 1564.04, + "end": 1564.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 1564.16, + "end": 1564.24, + "probability": 0.99609375 + }, + { + "word": " person", + "start": 1564.24, + "end": 1564.44, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 1564.44, + "end": 1564.54, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 1564.54, + "end": 1564.56, + "probability": 1.0 + }, + { + "word": " process.", + "start": 1564.56, + "end": 1564.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 645, + "text": "790-2040 if you'd like to have your question answered.", + "start": 1565.84, + "end": 1568.28, + "words": [ + { + "word": " 790", + "start": 1565.84, + "end": 1566.24, + "probability": 0.982421875 + }, + { + "word": "-2040", + "start": 1566.24, + "end": 1566.64, + "probability": 0.8310546875 + }, + { + "word": " if", + "start": 1566.64, + "end": 1566.86, + "probability": 0.85009765625 + }, + { + "word": " you'd", + "start": 1566.86, + "end": 1566.98, + "probability": 0.99755859375 + }, + { + "word": " like", + "start": 1566.98, + "end": 1567.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 1567.1, + "end": 1567.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 1567.26, + "end": 1567.46, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1567.46, + "end": 1567.66, + "probability": 1.0 + }, + { + "word": " question", + "start": 1567.66, + "end": 1568.04, + "probability": 0.99853515625 + }, + { + "word": " answered.", + "start": 1568.04, + "end": 1568.28, + "probability": 1.0 + } + ] + }, + { + "id": 646, + "text": "Or you can join us in the chat, gurushow.com slash chat.", + "start": 1568.38, + "end": 1570.9, + "words": [ + { + "word": " Or", + "start": 1568.38, + "end": 1568.54, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 1568.54, + "end": 1568.66, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1568.66, + "end": 1568.74, + "probability": 1.0 + }, + { + "word": " join", + "start": 1568.74, + "end": 1568.92, + "probability": 1.0 + }, + { + "word": " us", + "start": 1568.92, + "end": 1569.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 1569.04, + "end": 1569.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1569.14, + "end": 1569.2, + "probability": 1.0 + }, + { + "word": " chat,", + "start": 1569.2, + "end": 1569.4, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 1569.54, + "end": 1569.9, + "probability": 0.99853515625 + }, + { + "word": ".com", + "start": 1569.9, + "end": 1570.34, + "probability": 1.0 + }, + { + "word": " slash", + "start": 1570.34, + "end": 1570.54, + "probability": 0.88720703125 + }, + { + "word": " chat.", + "start": 1570.54, + "end": 1570.9, + "probability": 1.0 + } + ] + }, + { + "id": 647, + "text": "We've got a question in the chat.", + "start": 1571.58, + "end": 1572.66, + "words": [ + { + "word": " We've", + "start": 1571.58, + "end": 1571.98, + "probability": 0.880859375 + }, + { + "word": " got", + "start": 1571.98, + "end": 1572.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 1572.06, + "end": 1572.12, + "probability": 1.0 + }, + { + "word": " question", + "start": 1572.12, + "end": 1572.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 1572.36, + "end": 1572.5, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1572.5, + "end": 1572.54, + "probability": 1.0 + }, + { + "word": " chat.", + "start": 1572.54, + "end": 1572.66, + "probability": 1.0 + } + ] + }, + { + "id": 648, + "text": "There is a chat question.", + "start": 1572.7, + "end": 1573.9, + "words": [ + { + "word": " There", + "start": 1572.7, + "end": 1572.88, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 1572.88, + "end": 1573.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1573.0, + "end": 1573.1, + "probability": 1.0 + }, + { + "word": " chat", + "start": 1573.1, + "end": 1573.34, + "probability": 0.99853515625 + }, + { + "word": " question.", + "start": 1573.34, + "end": 1573.9, + "probability": 0.99658203125 + } + ] + }, + { + "id": 649, + "text": "It says, I need a new router.", + "start": 1573.98, + "end": 1575.82, + "words": [ + { + "word": " It", + "start": 1573.98, + "end": 1574.36, + "probability": 0.99658203125 + }, + { + "word": " says,", + "start": 1574.36, + "end": 1574.6, + "probability": 1.0 + }, + { + "word": " I", + "start": 1574.7, + "end": 1575.1, + "probability": 1.0 + }, + { + "word": " need", + "start": 1575.1, + "end": 1575.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1575.26, + "end": 1575.4, + "probability": 1.0 + }, + { + "word": " new", + "start": 1575.4, + "end": 1575.52, + "probability": 1.0 + }, + { + "word": " router.", + "start": 1575.52, + "end": 1575.82, + "probability": 1.0 + } + ] + }, + { + "id": 650, + "text": "I know I've...", + "start": 1575.94, + "end": 1576.74, + "words": [ + { + "word": " I", + "start": 1575.94, + "end": 1576.26, + "probability": 0.9931640625 + }, + { + "word": " know", + "start": 1576.26, + "end": 1576.36, + "probability": 0.99755859375 + }, + { + "word": " I've...", + "start": 1576.36, + "end": 1576.74, + "probability": 0.7060546875 + } + ] + }, + { + "id": 651, + "text": "Mike has addressed this issue before, but I cannot remember the answer.", + "start": 1576.74, + "end": 1580.02, + "words": [ + { + "word": " Mike", + "start": 1576.74, + "end": 1577.22, + "probability": 0.88818359375 + }, + { + "word": " has", + "start": 1577.22, + "end": 1577.4, + "probability": 0.9248046875 + }, + { + "word": " addressed", + "start": 1577.4, + "end": 1577.92, + "probability": 0.98486328125 + }, + { + "word": " this", + "start": 1577.92, + "end": 1578.16, + "probability": 0.9970703125 + }, + { + "word": " issue", + "start": 1578.16, + "end": 1578.4, + "probability": 0.99853515625 + }, + { + "word": " before,", + "start": 1578.4, + "end": 1578.7, + "probability": 0.998046875 + }, + { + "word": " but", + "start": 1578.8, + "end": 1578.94, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1578.94, + "end": 1579.04, + "probability": 0.994140625 + }, + { + "word": " cannot", + "start": 1579.04, + "end": 1579.18, + "probability": 0.9521484375 + }, + { + "word": " remember", + "start": 1579.18, + "end": 1579.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1579.48, + "end": 1579.7, + "probability": 0.99853515625 + }, + { + "word": " answer.", + "start": 1579.7, + "end": 1580.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 652, + "text": "My router is now several years old, and I have definitely noticed a loss of wireless range.", + "start": 1580.52, + "end": 1585.66, + "words": [ + { + "word": " My", + "start": 1580.52, + "end": 1581.0, + "probability": 0.9228515625 + }, + { + "word": " router", + "start": 1581.0, + "end": 1581.26, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1581.26, + "end": 1581.4, + "probability": 0.99072265625 + }, + { + "word": " now", + "start": 1581.4, + "end": 1581.52, + "probability": 0.9921875 + }, + { + "word": " several", + "start": 1581.52, + "end": 1581.8, + "probability": 0.86865234375 + }, + { + "word": " years", + "start": 1581.8, + "end": 1582.38, + "probability": 0.99169921875 + }, + { + "word": " old,", + "start": 1582.38, + "end": 1582.74, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1582.82, + "end": 1582.94, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1582.94, + "end": 1583.02, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1583.02, + "end": 1583.24, + "probability": 0.9990234375 + }, + { + "word": " definitely", + "start": 1583.24, + "end": 1583.8, + "probability": 0.99853515625 + }, + { + "word": " noticed", + "start": 1583.8, + "end": 1584.16, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1584.16, + "end": 1584.36, + "probability": 0.99951171875 + }, + { + "word": " loss", + "start": 1584.36, + "end": 1584.66, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1584.66, + "end": 1584.86, + "probability": 0.99951171875 + }, + { + "word": " wireless", + "start": 1584.86, + "end": 1585.2, + "probability": 0.99853515625 + }, + { + "word": " range.", + "start": 1585.2, + "end": 1585.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 653, + "text": "What's the best router for a decent price with decent range?", + "start": 1586.04, + "end": 1589.28, + "words": [ + { + "word": " What's", + "start": 1586.04, + "end": 1586.48, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1586.48, + "end": 1586.52, + "probability": 0.9990234375 + }, + { + "word": " best", + "start": 1586.52, + "end": 1586.7, + "probability": 0.99951171875 + }, + { + "word": " router", + "start": 1586.7, + "end": 1586.9, + "probability": 0.96435546875 + }, + { + "word": " for", + "start": 1586.9, + "end": 1587.04, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1587.04, + "end": 1587.1, + "probability": 0.9990234375 + }, + { + "word": " decent", + "start": 1587.1, + "end": 1587.24, + "probability": 0.9990234375 + }, + { + "word": " price", + "start": 1587.24, + "end": 1587.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 1587.54, + "end": 1588.46, + "probability": 0.9677734375 + }, + { + "word": " decent", + "start": 1588.46, + "end": 1588.72, + "probability": 0.97998046875 + }, + { + "word": " range?", + "start": 1588.72, + "end": 1589.28, + "probability": 0.99658203125 + } + ] + }, + { + "id": 654, + "text": "Well, there's a couple of factors involved.", + "start": 1589.52, + "end": 1592.1, + "words": [ + { + "word": " Well,", + "start": 1589.52, + "end": 1589.84, + "probability": 0.99560546875 + }, + { + "word": " there's", + "start": 1589.98, + "end": 1591.36, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1591.36, + "end": 1591.38, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1591.38, + "end": 1591.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1591.56, + "end": 1591.64, + "probability": 1.0 + }, + { + "word": " factors", + "start": 1591.64, + "end": 1591.88, + "probability": 1.0 + }, + { + "word": " involved.", + "start": 1591.88, + "end": 1592.1, + "probability": 1.0 + } + ] + }, + { + "id": 655, + "text": "Age does play a factor in routers because they just sort of burn out over time.", + "start": 1592.48, + "end": 1596.52, + "words": [ + { + "word": " Age", + "start": 1592.48, + "end": 1592.96, + "probability": 0.9990234375 + }, + { + "word": " does", + "start": 1592.96, + "end": 1593.2, + "probability": 1.0 + }, + { + "word": " play", + "start": 1593.2, + "end": 1593.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 1593.46, + "end": 1593.6, + "probability": 1.0 + }, + { + "word": " factor", + "start": 1593.6, + "end": 1593.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 1593.88, + "end": 1594.12, + "probability": 0.99951171875 + }, + { + "word": " routers", + "start": 1594.12, + "end": 1594.5, + "probability": 1.0 + }, + { + "word": " because", + "start": 1594.5, + "end": 1594.64, + "probability": 0.84326171875 + }, + { + "word": " they", + "start": 1594.64, + "end": 1594.84, + "probability": 1.0 + }, + { + "word": " just", + "start": 1594.84, + "end": 1595.32, + "probability": 0.9951171875 + }, + { + "word": " sort", + "start": 1595.32, + "end": 1595.58, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1595.58, + "end": 1595.7, + "probability": 1.0 + }, + { + "word": " burn", + "start": 1595.7, + "end": 1595.92, + "probability": 1.0 + }, + { + "word": " out", + "start": 1595.92, + "end": 1596.08, + "probability": 1.0 + }, + { + "word": " over", + "start": 1596.08, + "end": 1596.26, + "probability": 1.0 + }, + { + "word": " time.", + "start": 1596.26, + "end": 1596.52, + "probability": 1.0 + } + ] + }, + { + "id": 656, + "text": "But generally, it's not a, you know, it doesn't get weaker.", + "start": 1596.6, + "end": 1600.8, + "words": [ + { + "word": " But", + "start": 1596.6, + "end": 1596.7, + "probability": 0.8095703125 + }, + { + "word": " generally,", + "start": 1596.7, + "end": 1597.38, + "probability": 0.97900390625 + }, + { + "word": " it's", + "start": 1597.52, + "end": 1597.66, + "probability": 0.8427734375 + }, + { + "word": " not", + "start": 1597.66, + "end": 1597.82, + "probability": 1.0 + }, + { + "word": " a,", + "start": 1597.82, + "end": 1598.04, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1598.22, + "end": 1599.38, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1599.38, + "end": 1599.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 1599.58, + "end": 1599.68, + "probability": 0.81298828125 + }, + { + "word": " doesn't", + "start": 1599.68, + "end": 1600.3, + "probability": 0.83251953125 + }, + { + "word": " get", + "start": 1600.3, + "end": 1600.4, + "probability": 1.0 + }, + { + "word": " weaker.", + "start": 1600.4, + "end": 1600.8, + "probability": 1.0 + } + ] + }, + { + "id": 657, + "text": "It just quits altogether.", + "start": 1600.94, + "end": 1602.72, + "words": [ + { + "word": " It", + "start": 1600.94, + "end": 1601.28, + "probability": 1.0 + }, + { + "word": " just", + "start": 1601.28, + "end": 1601.48, + "probability": 1.0 + }, + { + "word": " quits", + "start": 1601.48, + "end": 1602.14, + "probability": 1.0 + }, + { + "word": " altogether.", + "start": 1602.14, + "end": 1602.72, + "probability": 0.9931640625 + } + ] + }, + { + "id": 658, + "text": "So your loss of range is probably interference from...", + "start": 1603.6, + "end": 1606.72, + "words": [ + { + "word": " So", + "start": 1603.6, + "end": 1604.08, + "probability": 0.998046875 + }, + { + "word": " your", + "start": 1604.08, + "end": 1604.46, + "probability": 0.9130859375 + }, + { + "word": " loss", + "start": 1604.46, + "end": 1604.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 1604.78, + "end": 1604.98, + "probability": 1.0 + }, + { + "word": " range", + "start": 1604.98, + "end": 1605.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 1605.2, + "end": 1605.4, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1605.4, + "end": 1605.68, + "probability": 1.0 + }, + { + "word": " interference", + "start": 1605.68, + "end": 1606.08, + "probability": 0.99951171875 + }, + { + "word": " from...", + "start": 1606.08, + "end": 1606.72, + "probability": 0.49755859375 + } + ] + }, + { + "id": 659, + "text": "Other people.", + "start": 1606.74, + "end": 1607.38, + "words": [ + { + "word": " Other", + "start": 1606.74, + "end": 1607.02, + "probability": 0.01187896728515625 + }, + { + "word": " people.", + "start": 1607.02, + "end": 1607.38, + "probability": 0.90234375 + } + ] + }, + { + "id": 660, + "text": "You're probably picking up other networks around you that are stepping on your signal.", + "start": 1607.88, + "end": 1611.92, + "words": [ + { + "word": " You're", + "start": 1607.88, + "end": 1608.28, + "probability": 0.99267578125 + }, + { + "word": " probably", + "start": 1608.28, + "end": 1608.44, + "probability": 0.994140625 + }, + { + "word": " picking", + "start": 1608.44, + "end": 1608.68, + "probability": 0.939453125 + }, + { + "word": " up", + "start": 1608.68, + "end": 1608.92, + "probability": 0.9716796875 + }, + { + "word": " other", + "start": 1608.92, + "end": 1609.18, + "probability": 0.89794921875 + }, + { + "word": " networks", + "start": 1609.18, + "end": 1609.98, + "probability": 0.919921875 + }, + { + "word": " around", + "start": 1609.98, + "end": 1610.34, + "probability": 0.96435546875 + }, + { + "word": " you", + "start": 1610.34, + "end": 1610.68, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1610.68, + "end": 1610.84, + "probability": 0.85595703125 + }, + { + "word": " are", + "start": 1610.84, + "end": 1610.96, + "probability": 0.99951171875 + }, + { + "word": " stepping", + "start": 1610.96, + "end": 1611.28, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1611.28, + "end": 1611.5, + "probability": 1.0 + }, + { + "word": " your", + "start": 1611.5, + "end": 1611.62, + "probability": 0.99951171875 + }, + { + "word": " signal.", + "start": 1611.62, + "end": 1611.92, + "probability": 0.95458984375 + } + ] + }, + { + "id": 661, + "text": "And that's especially something that looks like it adapts over time or happens over time because people move in and move out.", + "start": 1612.08, + "end": 1616.72, + "words": [ + { + "word": " And", + "start": 1612.08, + "end": 1612.26, + "probability": 0.84423828125 + }, + { + "word": " that's", + "start": 1612.26, + "end": 1612.42, + "probability": 0.99853515625 + }, + { + "word": " especially", + "start": 1612.42, + "end": 1612.66, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 1612.66, + "end": 1613.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 1613.0, + "end": 1613.24, + "probability": 1.0 + }, + { + "word": " looks", + "start": 1613.24, + "end": 1613.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 1613.46, + "end": 1613.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 1613.62, + "end": 1613.74, + "probability": 1.0 + }, + { + "word": " adapts", + "start": 1613.74, + "end": 1614.12, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 1614.12, + "end": 1614.24, + "probability": 1.0 + }, + { + "word": " time", + "start": 1614.24, + "end": 1614.56, + "probability": 1.0 + }, + { + "word": " or", + "start": 1614.56, + "end": 1614.74, + "probability": 0.8876953125 + }, + { + "word": " happens", + "start": 1614.74, + "end": 1615.02, + "probability": 1.0 + }, + { + "word": " over", + "start": 1615.02, + "end": 1615.22, + "probability": 1.0 + }, + { + "word": " time", + "start": 1615.22, + "end": 1615.42, + "probability": 1.0 + }, + { + "word": " because", + "start": 1615.42, + "end": 1615.6, + "probability": 0.9814453125 + }, + { + "word": " people", + "start": 1615.6, + "end": 1615.8, + "probability": 1.0 + }, + { + "word": " move", + "start": 1615.8, + "end": 1616.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 1616.06, + "end": 1616.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 1616.22, + "end": 1616.34, + "probability": 1.0 + }, + { + "word": " move", + "start": 1616.34, + "end": 1616.5, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1616.5, + "end": 1616.72, + "probability": 1.0 + } + ] + }, + { + "id": 662, + "text": "Right.", + "start": 1616.92, + "end": 1617.28, + "words": [ + { + "word": " Right.", + "start": 1616.92, + "end": 1617.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 663, + "text": "And a lot of people don't...", + "start": 1617.36, + "end": 1618.88, + "words": [ + { + "word": " And", + "start": 1617.36, + "end": 1617.66, + "probability": 0.994140625 + }, + { + "word": " a", + "start": 1617.66, + "end": 1617.92, + "probability": 0.99755859375 + }, + { + "word": " lot", + "start": 1617.92, + "end": 1618.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1618.24, + "end": 1618.32, + "probability": 1.0 + }, + { + "word": " people", + "start": 1618.32, + "end": 1618.48, + "probability": 1.0 + }, + { + "word": " don't...", + "start": 1618.48, + "end": 1618.88, + "probability": 0.72412109375 + } + ] + }, + { + "id": 664, + "text": "It depends on the router, really, which one you have.", + "start": 1618.88, + "end": 1621.32, + "words": [ + { + "word": " It", + "start": 1618.88, + "end": 1619.46, + "probability": 0.947265625 + }, + { + "word": " depends", + "start": 1619.46, + "end": 1619.94, + "probability": 1.0 + }, + { + "word": " on", + "start": 1619.94, + "end": 1620.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1620.1, + "end": 1620.16, + "probability": 1.0 + }, + { + "word": " router,", + "start": 1620.16, + "end": 1620.4, + "probability": 1.0 + }, + { + "word": " really,", + "start": 1620.44, + "end": 1620.66, + "probability": 1.0 + }, + { + "word": " which", + "start": 1620.74, + "end": 1620.9, + "probability": 0.9755859375 + }, + { + "word": " one", + "start": 1620.9, + "end": 1621.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1621.04, + "end": 1621.16, + "probability": 1.0 + }, + { + "word": " have.", + "start": 1621.16, + "end": 1621.32, + "probability": 1.0 + } + ] + }, + { + "id": 665, + "text": "If you have a several-year-old one, it probably doesn't do auto-channel switching.", + "start": 1621.48, + "end": 1625.28, + "words": [ + { + "word": " If", + "start": 1621.48, + "end": 1621.88, + "probability": 0.93017578125 + }, + { + "word": " you", + "start": 1621.88, + "end": 1622.3, + "probability": 1.0 + }, + { + "word": " have", + "start": 1622.3, + "end": 1622.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 1622.42, + "end": 1622.52, + "probability": 1.0 + }, + { + "word": " several", + "start": 1622.52, + "end": 1622.8, + "probability": 0.99951171875 + }, + { + "word": "-year", + "start": 1622.8, + "end": 1623.04, + "probability": 0.9267578125 + }, + { + "word": "-old", + "start": 1623.04, + "end": 1623.26, + "probability": 0.99951171875 + }, + { + "word": " one,", + "start": 1623.26, + "end": 1623.5, + "probability": 1.0 + }, + { + "word": " it", + "start": 1623.56, + "end": 1623.64, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1623.64, + "end": 1623.82, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1623.82, + "end": 1624.18, + "probability": 1.0 + }, + { + "word": " do", + "start": 1624.18, + "end": 1624.34, + "probability": 1.0 + }, + { + "word": " auto", + "start": 1624.34, + "end": 1624.7, + "probability": 0.9990234375 + }, + { + "word": "-channel", + "start": 1624.7, + "end": 1625.02, + "probability": 0.90625 + }, + { + "word": " switching.", + "start": 1625.02, + "end": 1625.28, + "probability": 1.0 + } + ] + }, + { + "id": 666, + "text": "So you might want to just try a different channel rather than buying a new router.", + "start": 1626.2999999999997, + "end": 1630.72, + "words": [ + { + "word": " So", + "start": 1626.2999999999997, + "end": 1626.6999999999998, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1626.6999999999998, + "end": 1627.1, + "probability": 0.83349609375 + }, + { + "word": " might", + "start": 1627.1, + "end": 1627.26, + "probability": 1.0 + }, + { + "word": " want", + "start": 1627.26, + "end": 1627.4, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1627.4, + "end": 1627.5, + "probability": 1.0 + }, + { + "word": " just", + "start": 1627.5, + "end": 1627.64, + "probability": 1.0 + }, + { + "word": " try", + "start": 1627.64, + "end": 1627.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 1627.9, + "end": 1628.06, + "probability": 1.0 + }, + { + "word": " different", + "start": 1628.06, + "end": 1628.24, + "probability": 1.0 + }, + { + "word": " channel", + "start": 1628.24, + "end": 1628.7, + "probability": 1.0 + }, + { + "word": " rather", + "start": 1628.7, + "end": 1628.94, + "probability": 0.99560546875 + }, + { + "word": " than", + "start": 1628.94, + "end": 1629.28, + "probability": 1.0 + }, + { + "word": " buying", + "start": 1629.28, + "end": 1629.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 1629.56, + "end": 1629.98, + "probability": 1.0 + }, + { + "word": " new", + "start": 1629.98, + "end": 1630.4, + "probability": 1.0 + }, + { + "word": " router.", + "start": 1630.4, + "end": 1630.72, + "probability": 1.0 + } + ] + }, + { + "id": 667, + "text": "So you could...", + "start": 1631.78, + "end": 1632.8, + "words": [ + { + "word": " So", + "start": 1631.78, + "end": 1632.18, + "probability": 0.93310546875 + }, + { + "word": " you", + "start": 1632.18, + "end": 1632.38, + "probability": 0.98828125 + }, + { + "word": " could...", + "start": 1632.38, + "end": 1632.8, + "probability": 0.9638671875 + } + ] + }, + { + "id": 668, + "text": "By default, they come on channel 6, which is right in the middle of the range.", + "start": 1632.8, + "end": 1635.74, + "words": [ + { + "word": " By", + "start": 1632.8, + "end": 1633.22, + "probability": 0.99853515625 + }, + { + "word": " default,", + "start": 1633.22, + "end": 1633.6, + "probability": 1.0 + }, + { + "word": " they", + "start": 1633.64, + "end": 1633.74, + "probability": 1.0 + }, + { + "word": " come", + "start": 1633.74, + "end": 1633.86, + "probability": 1.0 + }, + { + "word": " on", + "start": 1633.86, + "end": 1633.98, + "probability": 1.0 + }, + { + "word": " channel", + "start": 1633.98, + "end": 1634.14, + "probability": 0.9521484375 + }, + { + "word": " 6,", + "start": 1634.14, + "end": 1634.42, + "probability": 0.80810546875 + }, + { + "word": " which", + "start": 1634.56, + "end": 1634.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 1634.76, + "end": 1634.86, + "probability": 1.0 + }, + { + "word": " right", + "start": 1634.86, + "end": 1635.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 1635.0, + "end": 1635.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1635.12, + "end": 1635.18, + "probability": 1.0 + }, + { + "word": " middle", + "start": 1635.18, + "end": 1635.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 1635.32, + "end": 1635.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 1635.42, + "end": 1635.46, + "probability": 1.0 + }, + { + "word": " range.", + "start": 1635.46, + "end": 1635.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 669, + "text": "There's 12 channels.", + "start": 1635.74, + "end": 1637.0, + "words": [ + { + "word": " There's", + "start": 1635.74, + "end": 1636.02, + "probability": 0.90087890625 + }, + { + "word": " 12", + "start": 1636.02, + "end": 1636.54, + "probability": 0.9736328125 + }, + { + "word": " channels.", + "start": 1636.54, + "end": 1637.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 670, + "text": "There's technically 14, but the last two don't count.", + "start": 1637.1, + "end": 1639.3, + "words": [ + { + "word": " There's", + "start": 1637.1, + "end": 1637.44, + "probability": 0.9931640625 + }, + { + "word": " technically", + "start": 1637.44, + "end": 1637.8, + "probability": 1.0 + }, + { + "word": " 14,", + "start": 1637.8, + "end": 1638.22, + "probability": 1.0 + }, + { + "word": " but", + "start": 1638.36, + "end": 1638.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1638.52, + "end": 1638.62, + "probability": 1.0 + }, + { + "word": " last", + "start": 1638.62, + "end": 1638.82, + "probability": 1.0 + }, + { + "word": " two", + "start": 1638.82, + "end": 1638.96, + "probability": 0.9970703125 + }, + { + "word": " don't", + "start": 1638.96, + "end": 1639.14, + "probability": 1.0 + }, + { + "word": " count.", + "start": 1639.14, + "end": 1639.3, + "probability": 1.0 + } + ] + }, + { + "id": 671, + "text": "So it's right in the middle of the range there.", + "start": 1640.9600000000003, + "end": 1642.74, + "words": [ + { + "word": " So", + "start": 1640.9600000000003, + "end": 1641.3200000000002, + "probability": 0.888671875 + }, + { + "word": " it's", + "start": 1641.3200000000002, + "end": 1641.68, + "probability": 0.9072265625 + }, + { + "word": " right", + "start": 1641.68, + "end": 1641.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 1641.78, + "end": 1641.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1641.92, + "end": 1641.94, + "probability": 1.0 + }, + { + "word": " middle", + "start": 1641.94, + "end": 1642.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 1642.1, + "end": 1642.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 1642.2, + "end": 1642.22, + "probability": 1.0 + }, + { + "word": " range", + "start": 1642.22, + "end": 1642.48, + "probability": 0.9990234375 + }, + { + "word": " there.", + "start": 1642.48, + "end": 1642.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 672, + "text": "And so you might want to try a different one.", + "start": 1642.92, + "end": 1644.64, + "words": [ + { + "word": " And", + "start": 1642.92, + "end": 1643.28, + "probability": 0.98486328125 + }, + { + "word": " so", + "start": 1643.28, + "end": 1643.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 1643.52, + "end": 1643.66, + "probability": 1.0 + }, + { + "word": " might", + "start": 1643.66, + "end": 1643.78, + "probability": 1.0 + }, + { + "word": " want", + "start": 1643.78, + "end": 1643.9, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1643.9, + "end": 1644.02, + "probability": 1.0 + }, + { + "word": " try", + "start": 1644.02, + "end": 1644.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 1644.18, + "end": 1644.28, + "probability": 1.0 + }, + { + "word": " different", + "start": 1644.28, + "end": 1644.46, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1644.46, + "end": 1644.64, + "probability": 1.0 + } + ] + }, + { + "id": 673, + "text": "You can get an app for your cell phone, especially if you have an Android phone that's called Wi-Fi Analyzer.", + "start": 1644.68, + "end": 1649.04, + "words": [ + { + "word": " You", + "start": 1644.68, + "end": 1644.78, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 1644.78, + "end": 1644.84, + "probability": 1.0 + }, + { + "word": " get", + "start": 1644.84, + "end": 1645.0, + "probability": 1.0 + }, + { + "word": " an", + "start": 1645.0, + "end": 1645.08, + "probability": 1.0 + }, + { + "word": " app", + "start": 1645.08, + "end": 1645.26, + "probability": 1.0 + }, + { + "word": " for", + "start": 1645.26, + "end": 1645.42, + "probability": 1.0 + }, + { + "word": " your", + "start": 1645.42, + "end": 1645.52, + "probability": 1.0 + }, + { + "word": " cell", + "start": 1645.52, + "end": 1645.7, + "probability": 0.99951171875 + }, + { + "word": " phone,", + "start": 1645.7, + "end": 1645.92, + "probability": 1.0 + }, + { + "word": " especially", + "start": 1646.02, + "end": 1646.26, + "probability": 1.0 + }, + { + "word": " if", + "start": 1646.26, + "end": 1646.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 1646.44, + "end": 1646.5, + "probability": 0.974609375 + }, + { + "word": " have", + "start": 1646.5, + "end": 1646.5, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 1646.5, + "end": 1646.62, + "probability": 1.0 + }, + { + "word": " Android", + "start": 1646.62, + "end": 1646.96, + "probability": 0.9990234375 + }, + { + "word": " phone", + "start": 1646.96, + "end": 1647.32, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1647.32, + "end": 1647.62, + "probability": 0.80615234375 + }, + { + "word": " called", + "start": 1647.62, + "end": 1647.82, + "probability": 0.99951171875 + }, + { + "word": " Wi", + "start": 1647.82, + "end": 1648.14, + "probability": 0.974609375 + }, + { + "word": "-Fi", + "start": 1648.14, + "end": 1648.42, + "probability": 1.0 + }, + { + "word": " Analyzer.", + "start": 1648.42, + "end": 1649.04, + "probability": 0.9951171875 + } + ] + }, + { + "id": 674, + "text": "It'll tell you what channels are most heavily used around you.", + "start": 1649.28, + "end": 1653.54, + "words": [ + { + "word": " It'll", + "start": 1649.28, + "end": 1649.64, + "probability": 0.630859375 + }, + { + "word": " tell", + "start": 1649.64, + "end": 1649.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 1649.84, + "end": 1650.06, + "probability": 1.0 + }, + { + "word": " what", + "start": 1650.06, + "end": 1651.24, + "probability": 1.0 + }, + { + "word": " channels", + "start": 1651.24, + "end": 1651.64, + "probability": 1.0 + }, + { + "word": " are", + "start": 1651.64, + "end": 1651.88, + "probability": 1.0 + }, + { + "word": " most", + "start": 1651.88, + "end": 1652.2, + "probability": 1.0 + }, + { + "word": " heavily", + "start": 1652.2, + "end": 1652.54, + "probability": 1.0 + }, + { + "word": " used", + "start": 1652.54, + "end": 1652.96, + "probability": 1.0 + }, + { + "word": " around", + "start": 1652.96, + "end": 1653.24, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1653.24, + "end": 1653.54, + "probability": 1.0 + } + ] + }, + { + "id": 675, + "text": "And you can then pick a channel that may be less congested.", + "start": 1653.62, + "end": 1658.22, + "words": [ + { + "word": " And", + "start": 1653.62, + "end": 1653.88, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1653.88, + "end": 1654.04, + "probability": 1.0 + }, + { + "word": " can", + "start": 1654.04, + "end": 1654.22, + "probability": 1.0 + }, + { + "word": " then", + "start": 1654.22, + "end": 1654.4, + "probability": 1.0 + }, + { + "word": " pick", + "start": 1654.4, + "end": 1654.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1654.7, + "end": 1655.04, + "probability": 1.0 + }, + { + "word": " channel", + "start": 1655.04, + "end": 1656.46, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 1656.46, + "end": 1656.82, + "probability": 1.0 + }, + { + "word": " may", + "start": 1656.82, + "end": 1657.0, + "probability": 1.0 + }, + { + "word": " be", + "start": 1657.0, + "end": 1657.24, + "probability": 1.0 + }, + { + "word": " less", + "start": 1657.24, + "end": 1657.52, + "probability": 1.0 + }, + { + "word": " congested.", + "start": 1657.52, + "end": 1658.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 676, + "text": "And that could probably help out.", + "start": 1658.24, + "end": 1660.0, + "words": [ + { + "word": " And", + "start": 1658.24, + "end": 1658.6, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1658.6, + "end": 1658.78, + "probability": 1.0 + }, + { + "word": " could", + "start": 1658.78, + "end": 1659.14, + "probability": 0.998046875 + }, + { + "word": " probably", + "start": 1659.14, + "end": 1659.42, + "probability": 1.0 + }, + { + "word": " help", + "start": 1659.42, + "end": 1659.78, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1659.78, + "end": 1660.0, + "probability": 1.0 + } + ] + }, + { + "id": 677, + "text": "Also, if you're going to go buy a new router, there's really no reason not to buy a dual-band router at this point.", + "start": 1660.22, + "end": 1664.38, + "words": [ + { + "word": " Also,", + "start": 1660.22, + "end": 1660.58, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1660.64, + "end": 1660.78, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1660.78, + "end": 1660.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 1660.88, + "end": 1660.92, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1660.92, + "end": 1661.0, + "probability": 1.0 + }, + { + "word": " go", + "start": 1661.0, + "end": 1661.1, + "probability": 0.99951171875 + }, + { + "word": " buy", + "start": 1661.1, + "end": 1661.24, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1661.24, + "end": 1661.36, + "probability": 1.0 + }, + { + "word": " new", + "start": 1661.36, + "end": 1661.44, + "probability": 1.0 + }, + { + "word": " router,", + "start": 1661.44, + "end": 1661.7, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1661.82, + "end": 1662.14, + "probability": 1.0 + }, + { + "word": " really", + "start": 1662.14, + "end": 1662.28, + "probability": 1.0 + }, + { + "word": " no", + "start": 1662.28, + "end": 1662.42, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1662.42, + "end": 1662.7, + "probability": 1.0 + }, + { + "word": " not", + "start": 1662.7, + "end": 1662.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1662.9, + "end": 1663.06, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1663.06, + "end": 1663.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 1663.22, + "end": 1663.32, + "probability": 1.0 + }, + { + "word": " dual", + "start": 1663.32, + "end": 1663.48, + "probability": 0.9931640625 + }, + { + "word": "-band", + "start": 1663.48, + "end": 1663.6, + "probability": 0.6845703125 + }, + { + "word": " router", + "start": 1663.6, + "end": 1663.82, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1663.82, + "end": 1664.02, + "probability": 1.0 + }, + { + "word": " this", + "start": 1664.02, + "end": 1664.14, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1664.14, + "end": 1664.38, + "probability": 1.0 + } + ] + }, + { + "id": 678, + "text": "Right.", + "start": 1664.7800000000002, + "end": 1665.14, + "words": [ + { + "word": " Right.", + "start": 1664.7800000000002, + "end": 1665.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 679, + "text": "So if you want a decent router that is priced somewhat affordably,", + "start": 1665.74, + "end": 1671.26, + "words": [ + { + "word": " So", + "start": 1665.74, + "end": 1665.94, + "probability": 0.77978515625 + }, + { + "word": " if", + "start": 1665.94, + "end": 1666.24, + "probability": 0.72802734375 + }, + { + "word": " you", + "start": 1666.24, + "end": 1667.32, + "probability": 1.0 + }, + { + "word": " want", + "start": 1667.32, + "end": 1667.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1667.52, + "end": 1667.66, + "probability": 1.0 + }, + { + "word": " decent", + "start": 1667.66, + "end": 1668.16, + "probability": 1.0 + }, + { + "word": " router", + "start": 1668.16, + "end": 1668.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1668.54, + "end": 1669.24, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1669.24, + "end": 1669.42, + "probability": 1.0 + }, + { + "word": " priced", + "start": 1669.42, + "end": 1669.9, + "probability": 1.0 + }, + { + "word": " somewhat", + "start": 1669.9, + "end": 1670.6, + "probability": 1.0 + }, + { + "word": " affordably,", + "start": 1670.6, + "end": 1671.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 680, + "text": "the AC routers by Asus are wonderful routers.", + "start": 1671.34, + "end": 1675.74, + "words": [ + { + "word": " the", + "start": 1671.34, + "end": 1672.06, + "probability": 0.99951171875 + }, + { + "word": " AC", + "start": 1672.06, + "end": 1672.46, + "probability": 0.99267578125 + }, + { + "word": " routers", + "start": 1672.46, + "end": 1673.02, + "probability": 0.986328125 + }, + { + "word": " by", + "start": 1673.02, + "end": 1673.16, + "probability": 1.0 + }, + { + "word": " Asus", + "start": 1673.16, + "end": 1673.54, + "probability": 0.8681640625 + }, + { + "word": " are", + "start": 1673.54, + "end": 1673.96, + "probability": 1.0 + }, + { + "word": " wonderful", + "start": 1673.96, + "end": 1675.1, + "probability": 1.0 + }, + { + "word": " routers.", + "start": 1675.1, + "end": 1675.74, + "probability": 1.0 + } + ] + }, + { + "id": 681, + "text": "They have decent range.", + "start": 1675.86, + "end": 1677.08, + "words": [ + { + "word": " They", + "start": 1675.86, + "end": 1676.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 1676.26, + "end": 1676.38, + "probability": 1.0 + }, + { + "word": " decent", + "start": 1676.38, + "end": 1676.68, + "probability": 0.99951171875 + }, + { + "word": " range.", + "start": 1676.68, + "end": 1677.08, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "They're tri-band in many cases, but at least dual-band.", + "start": 1677.28, + "end": 1680.88, + "words": [ + { + "word": " They're", + "start": 1677.28, + "end": 1677.46, + "probability": 1.0 + }, + { + "word": " tri", + "start": 1677.46, + "end": 1678.56, + "probability": 0.9970703125 + }, + { + "word": "-band", + "start": 1678.56, + "end": 1678.84, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 1678.84, + "end": 1679.16, + "probability": 0.99462890625 + }, + { + "word": " many", + "start": 1679.16, + "end": 1679.36, + "probability": 1.0 + }, + { + "word": " cases,", + "start": 1679.36, + "end": 1679.8, + "probability": 1.0 + }, + { + "word": " but", + "start": 1679.82, + "end": 1680.04, + "probability": 1.0 + }, + { + "word": " at", + "start": 1680.04, + "end": 1680.16, + "probability": 1.0 + }, + { + "word": " least", + "start": 1680.16, + "end": 1680.48, + "probability": 1.0 + }, + { + "word": " dual", + "start": 1680.48, + "end": 1680.64, + "probability": 1.0 + }, + { + "word": "-band.", + "start": 1680.64, + "end": 1680.88, + "probability": 0.7958984375 + } + ] + }, + { + "id": 683, + "text": "And they are nice and quick.", + "start": 1681.62, + "end": 1683.86, + "words": [ + { + "word": " And", + "start": 1681.62, + "end": 1682.02, + "probability": 0.99658203125 + }, + { + "word": " they", + "start": 1682.02, + "end": 1682.42, + "probability": 1.0 + }, + { + "word": " are", + "start": 1682.42, + "end": 1682.76, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1682.76, + "end": 1683.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 1683.54, + "end": 1683.66, + "probability": 1.0 + }, + { + "word": " quick.", + "start": 1683.66, + "end": 1683.86, + "probability": 1.0 + } + ] + }, + { + "id": 684, + "text": "And so you're looking at about $120 or so.", + "start": 1684.02, + "end": 1687.32, + "words": [ + { + "word": " And", + "start": 1684.02, + "end": 1684.34, + "probability": 0.93115234375 + }, + { + "word": " so", + "start": 1684.34, + "end": 1684.5, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1684.5, + "end": 1684.64, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1684.64, + "end": 1684.78, + "probability": 1.0 + }, + { + "word": " at", + "start": 1684.78, + "end": 1684.92, + "probability": 1.0 + }, + { + "word": " about", + "start": 1684.92, + "end": 1685.06, + "probability": 1.0 + }, + { + "word": " $120", + "start": 1685.06, + "end": 1686.34, + "probability": 0.9873046875 + }, + { + "word": " or", + "start": 1686.34, + "end": 1686.98, + "probability": 0.99853515625 + }, + { + "word": " so.", + "start": 1686.98, + "end": 1687.32, + "probability": 1.0 + } + ] + }, + { + "id": 685, + "text": "You know, I just bought a cheapo dual-band router because I was like,", + "start": 1687.54, + "end": 1690.1, + "words": [ + { + "word": " You", + "start": 1687.54, + "end": 1687.74, + "probability": 0.98681640625 + }, + { + "word": " know,", + "start": 1687.74, + "end": 1687.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 1687.84, + "end": 1687.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 1687.92, + "end": 1688.08, + "probability": 1.0 + }, + { + "word": " bought", + "start": 1688.08, + "end": 1688.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 1688.24, + "end": 1688.36, + "probability": 1.0 + }, + { + "word": " cheapo", + "start": 1688.36, + "end": 1688.74, + "probability": 0.9892578125 + }, + { + "word": " dual", + "start": 1688.74, + "end": 1688.94, + "probability": 0.9990234375 + }, + { + "word": "-band", + "start": 1688.94, + "end": 1689.12, + "probability": 1.0 + }, + { + "word": " router", + "start": 1689.12, + "end": 1689.34, + "probability": 1.0 + }, + { + "word": " because", + "start": 1689.34, + "end": 1689.64, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 1689.64, + "end": 1689.8, + "probability": 1.0 + }, + { + "word": " was", + "start": 1689.8, + "end": 1689.9, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1689.9, + "end": 1690.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 686, + "text": "I'm going to buy one anyway.", + "start": 1690.18, + "end": 1690.96, + "words": [ + { + "word": " I'm", + "start": 1690.18, + "end": 1690.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 1690.36, + "end": 1690.42, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1690.42, + "end": 1690.52, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1690.52, + "end": 1690.66, + "probability": 1.0 + }, + { + "word": " one", + "start": 1690.66, + "end": 1690.76, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 1690.76, + "end": 1690.96, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "Let's see if this TP-Link router can actually do anything.", + "start": 1691.1, + "end": 1693.9, + "words": [ + { + "word": " Let's", + "start": 1691.1, + "end": 1691.46, + "probability": 1.0 + }, + { + "word": " see", + "start": 1691.46, + "end": 1691.6, + "probability": 1.0 + }, + { + "word": " if", + "start": 1691.6, + "end": 1691.78, + "probability": 1.0 + }, + { + "word": " this", + "start": 1691.78, + "end": 1691.98, + "probability": 1.0 + }, + { + "word": " TP", + "start": 1691.98, + "end": 1692.3, + "probability": 0.99560546875 + }, + { + "word": "-Link", + "start": 1692.3, + "end": 1692.48, + "probability": 0.9931640625 + }, + { + "word": " router", + "start": 1692.48, + "end": 1692.78, + "probability": 1.0 + }, + { + "word": " can", + "start": 1692.78, + "end": 1693.08, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 1693.08, + "end": 1693.42, + "probability": 1.0 + }, + { + "word": " do", + "start": 1693.42, + "end": 1693.66, + "probability": 1.0 + }, + { + "word": " anything.", + "start": 1693.66, + "end": 1693.9, + "probability": 1.0 + } + ] + }, + { + "id": 688, + "text": "Surprisingly, so far...", + "start": 1694.58, + "end": 1695.72, + "words": [ + { + "word": " Surprisingly,", + "start": 1694.58, + "end": 1694.98, + "probability": 0.9912109375 + }, + { + "word": " so", + "start": 1695.1, + "end": 1695.32, + "probability": 1.0 + }, + { + "word": " far...", + "start": 1695.32, + "end": 1695.72, + "probability": 0.50146484375 + } + ] + }, + { + "id": 689, + "text": "Sure, no problems.", + "start": 1695.74, + "end": 1696.16, + "words": [ + { + "word": " Sure,", + "start": 1695.74, + "end": 1695.74, + "probability": 0.0186309814453125 + }, + { + "word": " no", + "start": 1695.74, + "end": 1695.82, + "probability": 0.9990234375 + }, + { + "word": " problems.", + "start": 1695.82, + "end": 1696.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 690, + "text": "And you're in a highly congested area.", + "start": 1696.34, + "end": 1698.92, + "words": [ + { + "word": " And", + "start": 1696.34, + "end": 1696.58, + "probability": 0.9599609375 + }, + { + "word": " you're", + "start": 1696.58, + "end": 1696.78, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1696.78, + "end": 1696.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 1696.88, + "end": 1697.02, + "probability": 0.9326171875 + }, + { + "word": " highly", + "start": 1697.02, + "end": 1698.04, + "probability": 0.99853515625 + }, + { + "word": " congested", + "start": 1698.04, + "end": 1698.74, + "probability": 0.998046875 + }, + { + "word": " area.", + "start": 1698.74, + "end": 1698.92, + "probability": 0.93359375 + } + ] + }, + { + "id": 691, + "text": "Yeah, it robs in an apartment complex, so there's lots of networks around it.", + "start": 1699.5, + "end": 1704.46, + "words": [ + { + "word": " Yeah,", + "start": 1699.5, + "end": 1699.86, + "probability": 0.4580078125 + }, + { + "word": " it", + "start": 1700.86, + "end": 1700.96, + "probability": 0.71728515625 + }, + { + "word": " robs", + "start": 1700.96, + "end": 1701.2, + "probability": 0.7685546875 + }, + { + "word": " in", + "start": 1701.2, + "end": 1701.34, + "probability": 0.87939453125 + }, + { + "word": " an", + "start": 1701.34, + "end": 1701.42, + "probability": 1.0 + }, + { + "word": " apartment", + "start": 1701.42, + "end": 1701.66, + "probability": 1.0 + }, + { + "word": " complex,", + "start": 1701.66, + "end": 1702.1, + "probability": 1.0 + }, + { + "word": " so", + "start": 1702.14, + "end": 1702.28, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1702.28, + "end": 1702.42, + "probability": 1.0 + }, + { + "word": " lots", + "start": 1702.42, + "end": 1702.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 1702.58, + "end": 1702.88, + "probability": 1.0 + }, + { + "word": " networks", + "start": 1702.88, + "end": 1703.7, + "probability": 0.99560546875 + }, + { + "word": " around", + "start": 1703.7, + "end": 1704.22, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1704.22, + "end": 1704.46, + "probability": 0.79443359375 + } + ] + }, + { + "id": 692, + "text": "My Wi-Fi is now the most powerful Wi-Fi.", + "start": 1704.5, + "end": 1706.26, + "words": [ + { + "word": " My", + "start": 1704.5, + "end": 1704.58, + "probability": 0.99267578125 + }, + { + "word": " Wi", + "start": 1704.58, + "end": 1704.76, + "probability": 0.99072265625 + }, + { + "word": "-Fi", + "start": 1704.76, + "end": 1704.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 1704.9, + "end": 1705.06, + "probability": 1.0 + }, + { + "word": " now", + "start": 1705.06, + "end": 1705.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1705.22, + "end": 1705.38, + "probability": 1.0 + }, + { + "word": " most", + "start": 1705.38, + "end": 1705.54, + "probability": 1.0 + }, + { + "word": " powerful", + "start": 1705.54, + "end": 1705.82, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 1705.82, + "end": 1706.1, + "probability": 1.0 + }, + { + "word": "-Fi.", + "start": 1706.1, + "end": 1706.26, + "probability": 1.0 + } + ] + }, + { + "id": 693, + "text": "Right.", + "start": 1706.8000000000002, + "end": 1707.16, + "words": [ + { + "word": " Right.", + "start": 1706.8000000000002, + "end": 1707.16, + "probability": 0.986328125 + } + ] + }, + { + "id": 694, + "text": "And if you have an older router, if you're feeling like you want to get some extra life out of it,", + "start": 1707.48, + "end": 1712.26, + "words": [ + { + "word": " And", + "start": 1707.48, + "end": 1707.84, + "probability": 0.9912109375 + }, + { + "word": " if", + "start": 1707.84, + "end": 1708.3, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1708.3, + "end": 1708.44, + "probability": 1.0 + }, + { + "word": " have", + "start": 1708.44, + "end": 1708.62, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1708.62, + "end": 1708.76, + "probability": 1.0 + }, + { + "word": " older", + "start": 1708.76, + "end": 1709.0, + "probability": 0.99853515625 + }, + { + "word": " router,", + "start": 1709.0, + "end": 1709.26, + "probability": 1.0 + }, + { + "word": " if", + "start": 1709.3, + "end": 1709.44, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 1709.44, + "end": 1709.54, + "probability": 1.0 + }, + { + "word": " feeling", + "start": 1709.54, + "end": 1709.84, + "probability": 1.0 + }, + { + "word": " like", + "start": 1709.84, + "end": 1710.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 1710.2, + "end": 1710.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 1710.4, + "end": 1710.56, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 1710.56, + "end": 1710.66, + "probability": 1.0 + }, + { + "word": " get", + "start": 1710.66, + "end": 1710.82, + "probability": 1.0 + }, + { + "word": " some", + "start": 1710.82, + "end": 1711.02, + "probability": 1.0 + }, + { + "word": " extra", + "start": 1711.02, + "end": 1711.38, + "probability": 1.0 + }, + { + "word": " life", + "start": 1711.38, + "end": 1711.7, + "probability": 1.0 + }, + { + "word": " out", + "start": 1711.7, + "end": 1711.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1711.92, + "end": 1712.08, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1712.08, + "end": 1712.26, + "probability": 1.0 + } + ] + }, + { + "id": 695, + "text": "and you want to be able to crank up the power on it or change any setting that you like,", + "start": 1712.28, + "end": 1717.98, + "words": [ + { + "word": " and", + "start": 1712.28, + "end": 1712.72, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1712.72, + "end": 1713.28, + "probability": 1.0 + }, + { + "word": " want", + "start": 1713.28, + "end": 1713.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1713.48, + "end": 1713.6, + "probability": 1.0 + }, + { + "word": " be", + "start": 1713.6, + "end": 1713.72, + "probability": 1.0 + }, + { + "word": " able", + "start": 1713.72, + "end": 1713.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1713.86, + "end": 1714.02, + "probability": 1.0 + }, + { + "word": " crank", + "start": 1714.02, + "end": 1714.28, + "probability": 1.0 + }, + { + "word": " up", + "start": 1714.28, + "end": 1714.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 1714.44, + "end": 1714.56, + "probability": 1.0 + }, + { + "word": " power", + "start": 1714.56, + "end": 1714.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 1714.78, + "end": 1715.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 1715.02, + "end": 1715.2, + "probability": 1.0 + }, + { + "word": " or", + "start": 1715.2, + "end": 1715.46, + "probability": 0.900390625 + }, + { + "word": " change", + "start": 1715.46, + "end": 1716.22, + "probability": 1.0 + }, + { + "word": " any", + "start": 1716.22, + "end": 1716.96, + "probability": 1.0 + }, + { + "word": " setting", + "start": 1716.96, + "end": 1717.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 1717.42, + "end": 1717.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 1717.62, + "end": 1717.74, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1717.74, + "end": 1717.98, + "probability": 1.0 + } + ] + }, + { + "id": 696, + "text": "you can look at something like the Tomato ROMs or the DDWRT.", + "start": 1718.02, + "end": 1722.74, + "words": [ + { + "word": " you", + "start": 1718.02, + "end": 1718.14, + "probability": 0.99755859375 + }, + { + "word": " can", + "start": 1718.14, + "end": 1718.26, + "probability": 1.0 + }, + { + "word": " look", + "start": 1718.26, + "end": 1718.4, + "probability": 1.0 + }, + { + "word": " at", + "start": 1718.4, + "end": 1718.52, + "probability": 1.0 + }, + { + "word": " something", + "start": 1718.52, + "end": 1718.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 1718.66, + "end": 1718.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1718.98, + "end": 1719.14, + "probability": 1.0 + }, + { + "word": " Tomato", + "start": 1719.14, + "end": 1720.5, + "probability": 0.7021484375 + }, + { + "word": " ROMs", + "start": 1720.5, + "end": 1721.14, + "probability": 0.97216796875 + }, + { + "word": " or", + "start": 1721.14, + "end": 1721.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1721.3, + "end": 1721.66, + "probability": 1.0 + }, + { + "word": " DDWRT.", + "start": 1721.66, + "end": 1722.74, + "probability": 0.943359375 + } + ] + }, + { + "id": 697, + "text": "Just be careful with that.", + "start": 1723.48, + "end": 1724.48, + "words": [ + { + "word": " Just", + "start": 1723.48, + "end": 1723.84, + "probability": 0.96044921875 + }, + { + "word": " be", + "start": 1723.84, + "end": 1723.88, + "probability": 1.0 + }, + { + "word": " careful", + "start": 1723.88, + "end": 1724.18, + "probability": 1.0 + }, + { + "word": " with", + "start": 1724.18, + "end": 1724.32, + "probability": 0.99853515625 + }, + { + "word": " that.", + "start": 1724.32, + "end": 1724.48, + "probability": 1.0 + } + ] + }, + { + "id": 698, + "text": "Yeah.", + "start": 1724.72, + "end": 1725.08, + "words": [ + { + "word": " Yeah.", + "start": 1724.72, + "end": 1725.08, + "probability": 0.98828125 + } + ] + }, + { + "id": 699, + "text": "If you think you might be buying a new router anyway, you can experiment.", + "start": 1725.76, + "end": 1729.62, + "words": [ + { + "word": " If", + "start": 1725.76, + "end": 1726.2, + "probability": 0.853515625 + }, + { + "word": " you", + "start": 1726.2, + "end": 1726.44, + "probability": 1.0 + }, + { + "word": " think", + "start": 1726.44, + "end": 1726.98, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 1726.98, + "end": 1727.42, + "probability": 1.0 + }, + { + "word": " might", + "start": 1727.42, + "end": 1727.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 1727.62, + "end": 1727.8, + "probability": 1.0 + }, + { + "word": " buying", + "start": 1727.8, + "end": 1728.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 1728.12, + "end": 1728.24, + "probability": 1.0 + }, + { + "word": " new", + "start": 1728.24, + "end": 1728.38, + "probability": 1.0 + }, + { + "word": " router", + "start": 1728.38, + "end": 1728.62, + "probability": 0.99951171875 + }, + { + "word": " anyway,", + "start": 1728.62, + "end": 1728.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 1729.0, + "end": 1729.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 1729.14, + "end": 1729.26, + "probability": 1.0 + }, + { + "word": " experiment.", + "start": 1729.26, + "end": 1729.62, + "probability": 1.0 + } + ] + }, + { + "id": 700, + "text": "Because it's entirely possible you'll brick it if you do it wrong.", + "start": 1730.12, + "end": 1732.92, + "words": [ + { + "word": " Because", + "start": 1730.12, + "end": 1730.56, + "probability": 0.9912109375 + }, + { + "word": " it's", + "start": 1730.56, + "end": 1730.96, + "probability": 0.99853515625 + }, + { + "word": " entirely", + "start": 1730.96, + "end": 1731.14, + "probability": 1.0 + }, + { + "word": " possible", + "start": 1731.14, + "end": 1731.48, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 1731.48, + "end": 1731.82, + "probability": 0.9306640625 + }, + { + "word": " brick", + "start": 1731.82, + "end": 1732.02, + "probability": 0.9443359375 + }, + { + "word": " it", + "start": 1732.02, + "end": 1732.22, + "probability": 1.0 + }, + { + "word": " if", + "start": 1732.22, + "end": 1732.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 1732.42, + "end": 1732.52, + "probability": 1.0 + }, + { + "word": " do", + "start": 1732.52, + "end": 1732.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 1732.64, + "end": 1732.72, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 1732.72, + "end": 1732.92, + "probability": 1.0 + } + ] + }, + { + "id": 701, + "text": "Yeah, you need to make sure you're looking at the revision numbers for that firmware because it does matter.", + "start": 1733.08, + "end": 1737.24, + "words": [ + { + "word": " Yeah,", + "start": 1733.08, + "end": 1733.22, + "probability": 0.98095703125 + }, + { + "word": " you", + "start": 1733.24, + "end": 1733.38, + "probability": 1.0 + }, + { + "word": " need", + "start": 1733.38, + "end": 1733.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 1733.52, + "end": 1733.64, + "probability": 1.0 + }, + { + "word": " make", + "start": 1733.64, + "end": 1733.74, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1733.74, + "end": 1733.94, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1733.94, + "end": 1734.14, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1734.14, + "end": 1734.32, + "probability": 1.0 + }, + { + "word": " at", + "start": 1734.32, + "end": 1734.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1734.48, + "end": 1734.58, + "probability": 1.0 + }, + { + "word": " revision", + "start": 1734.58, + "end": 1734.9, + "probability": 1.0 + }, + { + "word": " numbers", + "start": 1734.9, + "end": 1735.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 1735.14, + "end": 1735.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 1735.48, + "end": 1735.62, + "probability": 1.0 + }, + { + "word": " firmware", + "start": 1735.62, + "end": 1735.92, + "probability": 1.0 + }, + { + "word": " because", + "start": 1735.92, + "end": 1736.28, + "probability": 0.716796875 + }, + { + "word": " it", + "start": 1736.28, + "end": 1736.66, + "probability": 1.0 + }, + { + "word": " does", + "start": 1736.66, + "end": 1736.88, + "probability": 1.0 + }, + { + "word": " matter.", + "start": 1736.88, + "end": 1737.24, + "probability": 1.0 + } + ] + }, + { + "id": 702, + "text": "Revisions do count.", + "start": 1737.7, + "end": 1738.86, + "words": [ + { + "word": " Revisions", + "start": 1737.7, + "end": 1738.14, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 1738.14, + "end": 1738.54, + "probability": 1.0 + }, + { + "word": " count.", + "start": 1738.54, + "end": 1738.86, + "probability": 1.0 + } + ] + }, + { + "id": 703, + "text": "Otherwise, you'll have a very expensive paperweight.", + "start": 1739.04, + "end": 1740.72, + "words": [ + { + "word": " Otherwise,", + "start": 1739.04, + "end": 1739.32, + "probability": 0.9990234375 + }, + { + "word": " you'll", + "start": 1739.42, + "end": 1739.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 1739.54, + "end": 1739.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 1739.64, + "end": 1739.76, + "probability": 1.0 + }, + { + "word": " very", + "start": 1739.76, + "end": 1739.92, + "probability": 1.0 + }, + { + "word": " expensive", + "start": 1739.92, + "end": 1740.14, + "probability": 1.0 + }, + { + "word": " paperweight.", + "start": 1740.14, + "end": 1740.72, + "probability": 0.994140625 + } + ] + }, + { + "id": 704, + "text": "Yeah, so...", + "start": 1741.02, + "end": 1741.92, + "words": [ + { + "word": " Yeah,", + "start": 1741.02, + "end": 1741.46, + "probability": 0.96728515625 + }, + { + "word": " so...", + "start": 1741.46, + "end": 1741.92, + "probability": 0.427001953125 + } + ] + }, + { + "id": 705, + "text": "Yeah, if you're looking like you can afford a $100 router,", + "start": 1741.92, + "end": 1746.64, + "words": [ + { + "word": " Yeah,", + "start": 1741.92, + "end": 1742.76, + "probability": 0.9736328125 + }, + { + "word": " if", + "start": 1742.82, + "end": 1742.92, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1742.92, + "end": 1743.1, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1743.1, + "end": 1743.26, + "probability": 1.0 + }, + { + "word": " like", + "start": 1743.26, + "end": 1743.7, + "probability": 0.974609375 + }, + { + "word": " you", + "start": 1743.7, + "end": 1744.7, + "probability": 0.98193359375 + }, + { + "word": " can", + "start": 1744.7, + "end": 1745.3, + "probability": 1.0 + }, + { + "word": " afford", + "start": 1745.3, + "end": 1745.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 1745.6, + "end": 1745.82, + "probability": 1.0 + }, + { + "word": " $100", + "start": 1745.82, + "end": 1746.32, + "probability": 0.9990234375 + }, + { + "word": " router,", + "start": 1746.32, + "end": 1746.64, + "probability": 1.0 + } + ] + }, + { + "id": 706, + "text": "it'll last you for a good five or six years.", + "start": 1747.82, + "end": 1750.2, + "words": [ + { + "word": " it'll", + "start": 1747.82, + "end": 1748.26, + "probability": 0.9990234375 + }, + { + "word": " last", + "start": 1748.26, + "end": 1748.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 1748.5, + "end": 1748.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 1748.72, + "end": 1748.96, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1748.96, + "end": 1749.12, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 1749.12, + "end": 1749.3, + "probability": 1.0 + }, + { + "word": " five", + "start": 1749.3, + "end": 1749.52, + "probability": 0.85595703125 + }, + { + "word": " or", + "start": 1749.52, + "end": 1749.72, + "probability": 1.0 + }, + { + "word": " six", + "start": 1749.72, + "end": 1749.86, + "probability": 1.0 + }, + { + "word": " years.", + "start": 1749.86, + "end": 1750.2, + "probability": 1.0 + } + ] + }, + { + "id": 707, + "text": "And that's not a terrible investment.", + "start": 1750.38, + "end": 1752.84, + "words": [ + { + "word": " And", + "start": 1750.38, + "end": 1750.8, + "probability": 0.99560546875 + }, + { + "word": " that's", + "start": 1750.8, + "end": 1751.56, + "probability": 0.97216796875 + }, + { + "word": " not", + "start": 1751.56, + "end": 1751.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 1751.92, + "end": 1752.1, + "probability": 1.0 + }, + { + "word": " terrible", + "start": 1752.1, + "end": 1752.42, + "probability": 1.0 + }, + { + "word": " investment.", + "start": 1752.42, + "end": 1752.84, + "probability": 1.0 + } + ] + }, + { + "id": 708, + "text": "So, there you are.", + "start": 1753.14, + "end": 1755.04, + "words": [ + { + "word": " So,", + "start": 1753.14, + "end": 1753.56, + "probability": 0.95947265625 + }, + { + "word": " there", + "start": 1753.56, + "end": 1754.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 1754.56, + "end": 1754.78, + "probability": 1.0 + }, + { + "word": " are.", + "start": 1754.78, + "end": 1755.04, + "probability": 1.0 + } + ] + }, + { + "id": 709, + "text": "Ow.", + "start": 1756.1799999999998, + "end": 1756.56, + "words": [ + { + "word": " Ow.", + "start": 1756.1799999999998, + "end": 1756.56, + "probability": 0.85986328125 + } + ] + }, + { + "id": 710, + "text": "I just hit myself in the face.", + "start": 1756.96, + "end": 1758.36, + "words": [ + { + "word": " I", + "start": 1756.96, + "end": 1757.34, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1757.34, + "end": 1757.48, + "probability": 1.0 + }, + { + "word": " hit", + "start": 1757.48, + "end": 1757.6, + "probability": 0.99853515625 + }, + { + "word": " myself", + "start": 1757.6, + "end": 1757.8, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1757.8, + "end": 1758.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1758.04, + "end": 1758.1, + "probability": 1.0 + }, + { + "word": " face.", + "start": 1758.1, + "end": 1758.36, + "probability": 1.0 + } + ] + }, + { + "id": 711, + "text": "I thought it was me who was injuring myself with the headphones today.", + "start": 1758.38, + "end": 1760.48, + "words": [ + { + "word": " I", + "start": 1758.38, + "end": 1758.52, + "probability": 1.0 + }, + { + "word": " thought", + "start": 1758.52, + "end": 1758.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 1758.6, + "end": 1758.68, + "probability": 1.0 + }, + { + "word": " was", + "start": 1758.68, + "end": 1758.76, + "probability": 1.0 + }, + { + "word": " me", + "start": 1758.76, + "end": 1758.9, + "probability": 1.0 + }, + { + "word": " who", + "start": 1758.9, + "end": 1759.04, + "probability": 1.0 + }, + { + "word": " was", + "start": 1759.04, + "end": 1759.12, + "probability": 1.0 + }, + { + "word": " injuring", + "start": 1759.12, + "end": 1759.42, + "probability": 1.0 + }, + { + "word": " myself", + "start": 1759.42, + "end": 1759.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 1759.66, + "end": 1759.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1759.9, + "end": 1759.96, + "probability": 0.9990234375 + }, + { + "word": " headphones", + "start": 1759.96, + "end": 1760.18, + "probability": 1.0 + }, + { + "word": " today.", + "start": 1760.18, + "end": 1760.48, + "probability": 1.0 + } + ] + }, + { + "id": 712, + "text": "Yeah, it's just...", + "start": 1760.98, + "end": 1762.32, + "words": [ + { + "word": " Yeah,", + "start": 1760.98, + "end": 1761.36, + "probability": 0.94677734375 + }, + { + "word": " it's", + "start": 1761.4, + "end": 1761.54, + "probability": 1.0 + }, + { + "word": " just...", + "start": 1761.54, + "end": 1762.32, + "probability": 0.66162109375 + } + ] + }, + { + "id": 713, + "text": "No, that didn't happen, remember?", + "start": 1762.96, + "end": 1763.9, + "words": [ + { + "word": " No,", + "start": 1762.87, + "end": 1763.06, + "probability": 0.9736328125 + }, + { + "word": " that", + "start": 1763.22, + "end": 1763.3, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 1763.3, + "end": 1763.52, + "probability": 1.0 + }, + { + "word": " happen,", + "start": 1763.52, + "end": 1763.72, + "probability": 1.0 + }, + { + "word": " remember?", + "start": 1763.76, + "end": 1763.9, + "probability": 1.0 + } + ] + }, + { + "id": 714, + "text": "Yeah, that's right.", + "start": 1764.1, + "end": 1764.58, + "words": [ + { + "word": " Yeah,", + "start": 1764.1, + "end": 1764.28, + "probability": 0.99853515625 + }, + { + "word": " that's", + "start": 1764.3, + "end": 1764.46, + "probability": 1.0 + }, + { + "word": " right.", + "start": 1764.46, + "end": 1764.58, + "probability": 1.0 + } + ] + }, + { + "id": 715, + "text": "Okay.", + "start": 1765.44, + "end": 1765.82, + "words": [ + { + "word": " Okay.", + "start": 1765.44, + "end": 1765.82, + "probability": 0.9873046875 + } + ] + }, + { + "id": 716, + "text": "Let's talk about AMD for a moment.", + "start": 1766.9, + "end": 1769.1, + "words": [ + { + "word": " Let's", + "start": 1766.9, + "end": 1767.28, + "probability": 0.98388671875 + }, + { + "word": " talk", + "start": 1767.28, + "end": 1767.5, + "probability": 1.0 + }, + { + "word": " about", + "start": 1767.5, + "end": 1767.96, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1767.96, + "end": 1768.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 1768.32, + "end": 1768.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1768.7, + "end": 1768.84, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 1768.84, + "end": 1769.1, + "probability": 1.0 + } + ] + }, + { + "id": 717, + "text": "Okay.", + "start": 1769.44, + "end": 1769.82, + "words": [ + { + "word": " Okay.", + "start": 1769.44, + "end": 1769.82, + "probability": 0.99755859375 + } + ] + }, + { + "id": 718, + "text": "I'm actually excited to talk about this for once.", + "start": 1769.88, + "end": 1771.62, + "words": [ + { + "word": " I'm", + "start": 1769.88, + "end": 1770.14, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1770.14, + "end": 1770.32, + "probability": 1.0 + }, + { + "word": " excited", + "start": 1770.32, + "end": 1770.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1770.78, + "end": 1770.98, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1770.98, + "end": 1771.16, + "probability": 1.0 + }, + { + "word": " about", + "start": 1771.16, + "end": 1771.34, + "probability": 1.0 + }, + { + "word": " this", + "start": 1771.34, + "end": 1771.58, + "probability": 0.93310546875 + }, + { + "word": " for", + "start": 1771.58, + "end": 1771.62, + "probability": 0.83837890625 + }, + { + "word": " once.", + "start": 1771.62, + "end": 1771.62, + "probability": 0.9970703125 + } + ] + }, + { + "id": 719, + "text": "I told you last week.", + "start": 1771.62, + "end": 1773.36, + "words": [ + { + "word": " I", + "start": 1771.62, + "end": 1771.64, + "probability": 0.84033203125 + }, + { + "word": " told", + "start": 1771.64, + "end": 1771.94, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 1771.94, + "end": 1772.24, + "probability": 1.0 + }, + { + "word": " last", + "start": 1772.24, + "end": 1772.86, + "probability": 0.994140625 + }, + { + "word": " week.", + "start": 1772.86, + "end": 1773.36, + "probability": 1.0 + } + ] + }, + { + "id": 720, + "text": "I said, Rob will want to talk about this, so...", + "start": 1773.38, + "end": 1775.56, + "words": [ + { + "word": " I", + "start": 1773.38, + "end": 1773.58, + "probability": 0.9990234375 + }, + { + "word": " said,", + "start": 1773.58, + "end": 1773.82, + "probability": 1.0 + }, + { + "word": " Rob", + "start": 1773.86, + "end": 1774.06, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 1774.06, + "end": 1774.22, + "probability": 0.978515625 + }, + { + "word": " want", + "start": 1774.22, + "end": 1774.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1774.36, + "end": 1774.46, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1774.46, + "end": 1774.64, + "probability": 1.0 + }, + { + "word": " about", + "start": 1774.64, + "end": 1774.84, + "probability": 1.0 + }, + { + "word": " this,", + "start": 1774.84, + "end": 1775.04, + "probability": 1.0 + }, + { + "word": " so...", + "start": 1775.12, + "end": 1775.56, + "probability": 0.986328125 + } + ] + }, + { + "id": 721, + "text": "Yeah, well, especially...", + "start": 1775.56, + "end": 1777.18, + "words": [ + { + "word": " Yeah,", + "start": 1775.56, + "end": 1776.2, + "probability": 0.99853515625 + }, + { + "word": " well,", + "start": 1776.26, + "end": 1776.46, + "probability": 0.99951171875 + }, + { + "word": " especially...", + "start": 1776.58, + "end": 1777.18, + "probability": 0.953125 + } + ] + }, + { + "id": 722, + "text": "I'm glad that it was this week because last week was release.", + "start": 1777.18, + "end": 1779.22, + "words": [ + { + "word": " I'm", + "start": 1777.18, + "end": 1777.32, + "probability": 0.99951171875 + }, + { + "word": " glad", + "start": 1777.32, + "end": 1777.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 1777.48, + "end": 1777.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 1777.66, + "end": 1777.72, + "probability": 1.0 + }, + { + "word": " was", + "start": 1777.72, + "end": 1777.82, + "probability": 1.0 + }, + { + "word": " this", + "start": 1777.82, + "end": 1778.02, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 1778.02, + "end": 1778.2, + "probability": 1.0 + }, + { + "word": " because", + "start": 1778.2, + "end": 1778.4, + "probability": 0.349853515625 + }, + { + "word": " last", + "start": 1778.4, + "end": 1778.6, + "probability": 1.0 + }, + { + "word": " week", + "start": 1778.6, + "end": 1778.8, + "probability": 1.0 + }, + { + "word": " was", + "start": 1778.8, + "end": 1778.94, + "probability": 1.0 + }, + { + "word": " release.", + "start": 1778.94, + "end": 1779.22, + "probability": 0.9970703125 + } + ] + }, + { + "id": 723, + "text": "This week, we've had a week.", + "start": 1779.34, + "end": 1780.9, + "words": [ + { + "word": " This", + "start": 1779.34, + "end": 1779.72, + "probability": 0.99951171875 + }, + { + "word": " week,", + "start": 1779.72, + "end": 1780.08, + "probability": 1.0 + }, + { + "word": " we've", + "start": 1780.1, + "end": 1780.56, + "probability": 1.0 + }, + { + "word": " had", + "start": 1780.56, + "end": 1780.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 1780.64, + "end": 1780.74, + "probability": 1.0 + }, + { + "word": " week.", + "start": 1780.74, + "end": 1780.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 724, + "text": "So, people have played around with Ryzen and benchmarked it on their own.", + "start": 1780.96, + "end": 1785.06, + "words": [ + { + "word": " So,", + "start": 1780.96, + "end": 1781.28, + "probability": 0.9951171875 + }, + { + "word": " people", + "start": 1781.34, + "end": 1781.5, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1781.5, + "end": 1781.78, + "probability": 1.0 + }, + { + "word": " played", + "start": 1781.78, + "end": 1782.64, + "probability": 0.99951171875 + }, + { + "word": " around", + "start": 1782.64, + "end": 1782.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 1782.8, + "end": 1783.08, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1783.08, + "end": 1783.48, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1783.48, + "end": 1783.9, + "probability": 0.998046875 + }, + { + "word": " benchmarked", + "start": 1783.9, + "end": 1784.48, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1784.48, + "end": 1784.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 1784.56, + "end": 1784.7, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 1784.7, + "end": 1784.82, + "probability": 1.0 + }, + { + "word": " own.", + "start": 1784.82, + "end": 1785.06, + "probability": 1.0 + } + ] + }, + { + "id": 725, + "text": "So, we've seen stuff outside of AMD's carefully controlled environment.", + "start": 1785.74, + "end": 1788.7, + "words": [ + { + "word": " So,", + "start": 1785.74, + "end": 1785.76, + "probability": 0.8671875 + }, + { + "word": " we've", + "start": 1785.76, + "end": 1785.9, + "probability": 0.9970703125 + }, + { + "word": " seen", + "start": 1785.9, + "end": 1786.08, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1786.08, + "end": 1786.32, + "probability": 0.99951171875 + }, + { + "word": " outside", + "start": 1786.32, + "end": 1786.76, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1786.76, + "end": 1787.04, + "probability": 0.998046875 + }, + { + "word": " AMD's", + "start": 1787.04, + "end": 1787.5, + "probability": 0.99609375 + }, + { + "word": " carefully", + "start": 1787.5, + "end": 1787.92, + "probability": 0.99609375 + }, + { + "word": " controlled", + "start": 1787.92, + "end": 1788.24, + "probability": 0.9716796875 + }, + { + "word": " environment.", + "start": 1788.24, + "end": 1788.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 726, + "text": "And kind of what that has revealed is that not quite meeting up to the highest-end Intel stuff right now,", + "start": 1789.24, + "end": 1795.48, + "words": [ + { + "word": " And", + "start": 1789.24, + "end": 1789.76, + "probability": 0.88916015625 + }, + { + "word": " kind", + "start": 1789.76, + "end": 1790.06, + "probability": 0.91796875 + }, + { + "word": " of", + "start": 1790.06, + "end": 1790.16, + "probability": 1.0 + }, + { + "word": " what", + "start": 1790.16, + "end": 1790.24, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1790.24, + "end": 1790.36, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 1790.36, + "end": 1790.54, + "probability": 1.0 + }, + { + "word": " revealed", + "start": 1790.54, + "end": 1790.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 1790.86, + "end": 1791.1, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1791.1, + "end": 1791.3, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 1791.3, + "end": 1791.84, + "probability": 0.93994140625 + }, + { + "word": " quite", + "start": 1791.84, + "end": 1792.14, + "probability": 1.0 + }, + { + "word": " meeting", + "start": 1792.14, + "end": 1792.54, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1792.54, + "end": 1792.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1792.76, + "end": 1793.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1793.0, + "end": 1793.52, + "probability": 1.0 + }, + { + "word": " highest", + "start": 1793.52, + "end": 1793.84, + "probability": 1.0 + }, + { + "word": "-end", + "start": 1793.84, + "end": 1794.2, + "probability": 0.73046875 + }, + { + "word": " Intel", + "start": 1794.2, + "end": 1794.6, + "probability": 0.9970703125 + }, + { + "word": " stuff", + "start": 1794.6, + "end": 1794.9, + "probability": 1.0 + }, + { + "word": " right", + "start": 1794.9, + "end": 1795.22, + "probability": 0.99951171875 + }, + { + "word": " now,", + "start": 1795.22, + "end": 1795.48, + "probability": 1.0 + } + ] + }, + { + "id": 727, + "text": "but when you factor in the price and the performance you're getting for the price, it blows Intel away.", + "start": 1795.6, + "end": 1800.34, + "words": [ + { + "word": " but", + "start": 1795.6, + "end": 1795.96, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 1795.96, + "end": 1796.14, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1796.14, + "end": 1796.28, + "probability": 1.0 + }, + { + "word": " factor", + "start": 1796.28, + "end": 1796.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 1796.56, + "end": 1796.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 1796.78, + "end": 1796.9, + "probability": 1.0 + }, + { + "word": " price", + "start": 1796.9, + "end": 1797.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 1797.24, + "end": 1797.5, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1797.5, + "end": 1797.62, + "probability": 1.0 + }, + { + "word": " performance", + "start": 1797.62, + "end": 1797.94, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1797.94, + "end": 1798.2, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 1798.2, + "end": 1798.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 1798.36, + "end": 1798.52, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1798.52, + "end": 1798.62, + "probability": 1.0 + }, + { + "word": " price,", + "start": 1798.62, + "end": 1798.9, + "probability": 1.0 + }, + { + "word": " it", + "start": 1799.02, + "end": 1799.18, + "probability": 1.0 + }, + { + "word": " blows", + "start": 1799.18, + "end": 1799.56, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 1799.56, + "end": 1800.08, + "probability": 0.9990234375 + }, + { + "word": " away.", + "start": 1800.08, + "end": 1800.34, + "probability": 1.0 + } + ] + }, + { + "id": 728, + "text": "Right.", + "start": 1801.0, + "end": 1801.52, + "words": [ + { + "word": " Right.", + "start": 1801.0, + "end": 1801.52, + "probability": 0.95947265625 + } + ] + }, + { + "id": 729, + "text": "So, the performance differences are negligible.", + "start": 1801.56, + "end": 1804.8, + "words": [ + { + "word": " So,", + "start": 1801.56, + "end": 1801.7, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1801.8, + "end": 1802.12, + "probability": 1.0 + }, + { + "word": " performance", + "start": 1802.12, + "end": 1803.22, + "probability": 1.0 + }, + { + "word": " differences", + "start": 1803.22, + "end": 1803.62, + "probability": 1.0 + }, + { + "word": " are", + "start": 1803.62, + "end": 1804.16, + "probability": 1.0 + }, + { + "word": " negligible.", + "start": 1804.16, + "end": 1804.8, + "probability": 1.0 + } + ] + }, + { + "id": 730, + "text": "Yeah, especially when you consider that the highest-end Ryzen processor is $500.", + "start": 1804.9, + "end": 1808.92, + "words": [ + { + "word": " Yeah,", + "start": 1804.9, + "end": 1805.08, + "probability": 0.9921875 + }, + { + "word": " especially", + "start": 1805.14, + "end": 1805.46, + "probability": 1.0 + }, + { + "word": " when", + "start": 1805.46, + "end": 1805.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 1805.7, + "end": 1805.72, + "probability": 1.0 + }, + { + "word": " consider", + "start": 1805.72, + "end": 1805.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 1805.96, + "end": 1806.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1806.18, + "end": 1806.28, + "probability": 1.0 + }, + { + "word": " highest", + "start": 1806.28, + "end": 1806.58, + "probability": 1.0 + }, + { + "word": "-end", + "start": 1806.58, + "end": 1807.04, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1807.04, + "end": 1807.44, + "probability": 0.9990234375 + }, + { + "word": " processor", + "start": 1807.44, + "end": 1807.74, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1807.74, + "end": 1808.26, + "probability": 1.0 + }, + { + "word": " $500.", + "start": 1808.26, + "end": 1808.92, + "probability": 0.955078125 + } + ] + }, + { + "id": 731, + "text": "As opposed to $1,200?", + "start": 1809.72, + "end": 1810.98, + "words": [ + { + "word": " As", + "start": 1809.72, + "end": 1810.24, + "probability": 0.99755859375 + }, + { + "word": " opposed", + "start": 1810.24, + "end": 1810.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 1810.44, + "end": 1810.62, + "probability": 1.0 + }, + { + "word": " $1", + "start": 1810.62, + "end": 1810.8, + "probability": 0.98095703125 + }, + { + "word": ",200?", + "start": 1810.8, + "end": 1810.98, + "probability": 1.0 + } + ] + }, + { + "id": 732, + "text": "Yeah, as opposed to the cost of the machine if you buy the Ryzen processor.", + "start": 1811.28, + "end": 1814.94, + "words": [ + { + "word": " Yeah,", + "start": 1811.28, + "end": 1811.42, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 1811.5, + "end": 1811.72, + "probability": 1.0 + }, + { + "word": " opposed", + "start": 1811.72, + "end": 1811.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1811.9, + "end": 1812.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1812.12, + "end": 1812.26, + "probability": 0.517578125 + }, + { + "word": " cost", + "start": 1812.26, + "end": 1812.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 1812.58, + "end": 1812.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1812.84, + "end": 1812.94, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1812.94, + "end": 1813.24, + "probability": 1.0 + }, + { + "word": " if", + "start": 1813.24, + "end": 1813.48, + "probability": 0.99072265625 + }, + { + "word": " you", + "start": 1813.48, + "end": 1813.58, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1813.58, + "end": 1813.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1813.84, + "end": 1814.26, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1814.26, + "end": 1814.6, + "probability": 1.0 + }, + { + "word": " processor.", + "start": 1814.6, + "end": 1814.94, + "probability": 1.0 + } + ] + }, + { + "id": 733, + "text": "Right.", + "start": 1815.24, + "end": 1815.66, + "words": [ + { + "word": " Right.", + "start": 1815.24, + "end": 1815.66, + "probability": 0.98681640625 + } + ] + }, + { + "id": 734, + "text": "Now, a lot of people have said that the gaming performance isn't great.", + "start": 1815.74, + "end": 1819.44, + "words": [ + { + "word": " Now,", + "start": 1815.74, + "end": 1816.54, + "probability": 0.7099609375 + }, + { + "word": " a", + "start": 1816.54, + "end": 1817.1, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1817.1, + "end": 1817.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1817.24, + "end": 1817.3, + "probability": 1.0 + }, + { + "word": " people", + "start": 1817.3, + "end": 1817.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 1817.48, + "end": 1817.58, + "probability": 1.0 + }, + { + "word": " said", + "start": 1817.58, + "end": 1817.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 1817.74, + "end": 1817.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1817.86, + "end": 1818.0, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 1818.0, + "end": 1818.4, + "probability": 1.0 + }, + { + "word": " performance", + "start": 1818.4, + "end": 1818.7, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 1818.7, + "end": 1819.24, + "probability": 1.0 + }, + { + "word": " great.", + "start": 1819.24, + "end": 1819.44, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "That it's usually just best to use the Ryzen as a workhorse machine.", + "start": 1820.04, + "end": 1824.24, + "words": [ + { + "word": " That", + "start": 1820.04, + "end": 1820.52, + "probability": 0.99462890625 + }, + { + "word": " it's", + "start": 1820.52, + "end": 1820.76, + "probability": 0.9990234375 + }, + { + "word": " usually", + "start": 1820.76, + "end": 1820.96, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1820.96, + "end": 1821.48, + "probability": 0.99755859375 + }, + { + "word": " best", + "start": 1821.48, + "end": 1821.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 1821.78, + "end": 1821.96, + "probability": 1.0 + }, + { + "word": " use", + "start": 1821.96, + "end": 1822.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1822.18, + "end": 1822.4, + "probability": 0.99951171875 + }, + { + "word": " Ryzen", + "start": 1822.4, + "end": 1822.7, + "probability": 0.99755859375 + }, + { + "word": " as", + "start": 1822.7, + "end": 1823.46, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1823.46, + "end": 1823.58, + "probability": 1.0 + }, + { + "word": " workhorse", + "start": 1823.58, + "end": 1823.92, + "probability": 0.9990234375 + }, + { + "word": " machine.", + "start": 1823.92, + "end": 1824.24, + "probability": 1.0 + } + ] + }, + { + "id": 736, + "text": "But AMD's CEO has promised that patches and tweaks will fix that and that gaming performance will only go up.", + "start": 1824.46, + "end": 1830.56, + "words": [ + { + "word": " But", + "start": 1824.46, + "end": 1824.9, + "probability": 0.99951171875 + }, + { + "word": " AMD's", + "start": 1824.9, + "end": 1825.54, + "probability": 0.99951171875 + }, + { + "word": " CEO", + "start": 1825.54, + "end": 1825.82, + "probability": 1.0 + }, + { + "word": " has", + "start": 1825.82, + "end": 1826.08, + "probability": 1.0 + }, + { + "word": " promised", + "start": 1826.08, + "end": 1826.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 1826.42, + "end": 1826.66, + "probability": 1.0 + }, + { + "word": " patches", + "start": 1826.66, + "end": 1827.06, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1827.06, + "end": 1827.44, + "probability": 1.0 + }, + { + "word": " tweaks", + "start": 1827.44, + "end": 1827.78, + "probability": 1.0 + }, + { + "word": " will", + "start": 1827.78, + "end": 1828.14, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1828.14, + "end": 1828.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 1828.48, + "end": 1828.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 1828.7, + "end": 1829.08, + "probability": 0.487548828125 + }, + { + "word": " that", + "start": 1829.08, + "end": 1829.18, + "probability": 0.99609375 + }, + { + "word": " gaming", + "start": 1829.18, + "end": 1829.38, + "probability": 0.99853515625 + }, + { + "word": " performance", + "start": 1829.38, + "end": 1829.64, + "probability": 1.0 + }, + { + "word": " will", + "start": 1829.64, + "end": 1830.0, + "probability": 1.0 + }, + { + "word": " only", + "start": 1830.0, + "end": 1830.18, + "probability": 1.0 + }, + { + "word": " go", + "start": 1830.18, + "end": 1830.34, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1830.34, + "end": 1830.56, + "probability": 1.0 + } + ] + }, + { + "id": 737, + "text": "Right.", + "start": 1830.7, + "end": 1830.92, + "words": [ + { + "word": " Right.", + "start": 1830.7, + "end": 1830.92, + "probability": 0.96533203125 + } + ] + }, + { + "id": 738, + "text": "And I imagine that there's a certain amount of...", + "start": 1830.96, + "end": 1832.86, + "words": [ + { + "word": " And", + "start": 1830.96, + "end": 1831.06, + "probability": 0.73583984375 + }, + { + "word": " I", + "start": 1831.06, + "end": 1831.08, + "probability": 0.99951171875 + }, + { + "word": " imagine", + "start": 1831.08, + "end": 1831.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 1831.36, + "end": 1831.52, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1831.52, + "end": 1831.72, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 1831.72, + "end": 1831.8, + "probability": 1.0 + }, + { + "word": " certain", + "start": 1831.8, + "end": 1832.08, + "probability": 1.0 + }, + { + "word": " amount", + "start": 1832.08, + "end": 1832.32, + "probability": 1.0 + }, + { + "word": " of...", + "start": 1832.32, + "end": 1832.86, + "probability": 0.452880859375 + } + ] + }, + { + "id": 739, + "text": "That the games are written in such a way...", + "start": 1832.86, + "end": 1836.62, + "words": [ + { + "word": " That", + "start": 1832.86, + "end": 1833.54, + "probability": 0.59716796875 + }, + { + "word": " the", + "start": 1833.54, + "end": 1833.74, + "probability": 1.0 + }, + { + "word": " games", + "start": 1833.74, + "end": 1834.16, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1834.16, + "end": 1834.7, + "probability": 1.0 + }, + { + "word": " written", + "start": 1834.7, + "end": 1835.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 1835.86, + "end": 1836.06, + "probability": 1.0 + }, + { + "word": " such", + "start": 1836.06, + "end": 1836.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 1836.26, + "end": 1836.38, + "probability": 1.0 + }, + { + "word": " way...", + "start": 1836.38, + "end": 1836.62, + "probability": 0.70703125 + } + ] + }, + { + "id": 740, + "text": "Or the drivers for the processor are written in such a way that they favor Intel right now.", + "start": 1836.62, + "end": 1841.38, + "words": [ + { + "word": " Or", + "start": 1836.62, + "end": 1836.74, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 1836.74, + "end": 1836.9, + "probability": 0.99951171875 + }, + { + "word": " drivers", + "start": 1836.9, + "end": 1837.24, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1837.24, + "end": 1837.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 1837.4, + "end": 1837.44, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1837.44, + "end": 1837.86, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1837.86, + "end": 1838.18, + "probability": 1.0 + }, + { + "word": " written", + "start": 1838.18, + "end": 1838.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 1838.56, + "end": 1838.84, + "probability": 1.0 + }, + { + "word": " such", + "start": 1838.84, + "end": 1839.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1839.1, + "end": 1839.22, + "probability": 1.0 + }, + { + "word": " way", + "start": 1839.22, + "end": 1839.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 1839.36, + "end": 1839.52, + "probability": 1.0 + }, + { + "word": " they", + "start": 1839.52, + "end": 1839.72, + "probability": 1.0 + }, + { + "word": " favor", + "start": 1839.72, + "end": 1840.2, + "probability": 0.9990234375 + }, + { + "word": " Intel", + "start": 1840.2, + "end": 1840.74, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 1840.74, + "end": 1841.1, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 1841.1, + "end": 1841.38, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "Yeah.", + "start": 1841.62, + "end": 1841.9, + "words": [ + { + "word": " Yeah.", + "start": 1841.62, + "end": 1841.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 742, + "text": "And the other thing is that CPU performance isn't...", + "start": 1841.96, + "end": 1844.72, + "words": [ + { + "word": " And", + "start": 1841.96, + "end": 1842.08, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1842.08, + "end": 1842.18, + "probability": 1.0 + }, + { + "word": " other", + "start": 1842.18, + "end": 1842.34, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1842.34, + "end": 1842.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 1842.52, + "end": 1842.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 1842.66, + "end": 1842.86, + "probability": 1.0 + }, + { + "word": " CPU", + "start": 1842.86, + "end": 1843.48, + "probability": 0.99853515625 + }, + { + "word": " performance", + "start": 1843.48, + "end": 1844.04, + "probability": 1.0 + }, + { + "word": " isn't...", + "start": 1844.04, + "end": 1844.72, + "probability": 0.8046875 + } + ] + }, + { + "id": 743, + "text": "Isn't...", + "start": 1845.22, + "end": 1845.7, + "words": [ + { + "word": " Isn't...", + "start": 1845.22, + "end": 1845.7, + "probability": 0.9384765625 + } + ] + }, + { + "id": 744, + "text": "Isn't...", + "start": 1845.7, + "end": 1845.72, + "words": [ + { + "word": " Isn't...", + "start": 1845.7, + "end": 1845.72, + "probability": 0.84814453125 + } + ] + }, + { + "id": 745, + "text": "It's as important as a lot of people think when it comes to gaming.", + "start": 1845.74, + "end": 1847.96, + "words": [ + { + "word": " It's", + "start": 1845.74, + "end": 1845.74, + "probability": 0.50732421875 + }, + { + "word": " as", + "start": 1845.74, + "end": 1845.8, + "probability": 0.9677734375 + }, + { + "word": " important", + "start": 1845.8, + "end": 1846.2, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 1846.2, + "end": 1846.42, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1846.42, + "end": 1846.54, + "probability": 0.99755859375 + }, + { + "word": " lot", + "start": 1846.54, + "end": 1846.68, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1846.68, + "end": 1846.78, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 1846.78, + "end": 1846.94, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1846.94, + "end": 1847.18, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 1847.18, + "end": 1847.34, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 1847.34, + "end": 1847.42, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 1847.42, + "end": 1847.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1847.58, + "end": 1847.74, + "probability": 0.99951171875 + }, + { + "word": " gaming.", + "start": 1847.74, + "end": 1847.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 746, + "text": "Right.", + "start": 1848.22, + "end": 1848.54, + "words": [ + { + "word": " Right.", + "start": 1848.22, + "end": 1848.54, + "probability": 0.88525390625 + } + ] + }, + { + "id": 747, + "text": "Especially if you have a nice GPU.", + "start": 1848.9, + "end": 1850.52, + "words": [ + { + "word": " Especially", + "start": 1848.9, + "end": 1849.22, + "probability": 0.9775390625 + }, + { + "word": " if", + "start": 1849.22, + "end": 1849.48, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1849.48, + "end": 1849.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 1849.56, + "end": 1849.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1849.7, + "end": 1849.82, + "probability": 0.99951171875 + }, + { + "word": " nice", + "start": 1849.82, + "end": 1850.08, + "probability": 0.99951171875 + }, + { + "word": " GPU.", + "start": 1850.08, + "end": 1850.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 748, + "text": "And you've got RAM and all of that other good stuff that is important.", + "start": 1851.3600000000001, + "end": 1853.94, + "words": [ + { + "word": " And", + "start": 1851.3600000000001, + "end": 1851.68, + "probability": 0.98779296875 + }, + { + "word": " you've", + "start": 1851.68, + "end": 1851.88, + "probability": 0.99658203125 + }, + { + "word": " got", + "start": 1851.88, + "end": 1852.0, + "probability": 1.0 + }, + { + "word": " RAM", + "start": 1852.0, + "end": 1852.26, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1852.26, + "end": 1852.48, + "probability": 0.99267578125 + }, + { + "word": " all", + "start": 1852.48, + "end": 1852.58, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1852.58, + "end": 1852.7, + "probability": 0.97119140625 + }, + { + "word": " that", + "start": 1852.7, + "end": 1852.8, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 1852.8, + "end": 1852.94, + "probability": 0.99853515625 + }, + { + "word": " good", + "start": 1852.94, + "end": 1853.12, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1853.12, + "end": 1853.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 1853.38, + "end": 1853.6, + "probability": 0.99560546875 + }, + { + "word": " is", + "start": 1853.6, + "end": 1853.72, + "probability": 0.99951171875 + }, + { + "word": " important.", + "start": 1853.72, + "end": 1853.94, + "probability": 1.0 + } + ] + }, + { + "id": 749, + "text": "Now, if you're just...", + "start": 1854.4, + "end": 1855.54, + "words": [ + { + "word": " Now,", + "start": 1854.4, + "end": 1854.72, + "probability": 0.99560546875 + }, + { + "word": " if", + "start": 1854.76, + "end": 1854.88, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1854.88, + "end": 1855.04, + "probability": 0.75146484375 + }, + { + "word": " just...", + "start": 1855.04, + "end": 1855.54, + "probability": 0.62060546875 + } + ] + }, + { + "id": 750, + "text": "If this is like a workhorse machine that you also use as gaming, then, of course, CPU is going to make a difference.", + "start": 1855.54, + "end": 1860.94, + "words": [ + { + "word": " If", + "start": 1855.54, + "end": 1855.96, + "probability": 0.97509765625 + }, + { + "word": " this", + "start": 1855.96, + "end": 1856.08, + "probability": 0.98876953125 + }, + { + "word": " is", + "start": 1856.08, + "end": 1856.34, + "probability": 1.0 + }, + { + "word": " like", + "start": 1856.34, + "end": 1856.46, + "probability": 0.9228515625 + }, + { + "word": " a", + "start": 1856.46, + "end": 1856.56, + "probability": 1.0 + }, + { + "word": " workhorse", + "start": 1856.56, + "end": 1856.9, + "probability": 0.9990234375 + }, + { + "word": " machine", + "start": 1856.9, + "end": 1857.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 1857.18, + "end": 1857.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 1857.38, + "end": 1857.48, + "probability": 1.0 + }, + { + "word": " also", + "start": 1857.48, + "end": 1857.74, + "probability": 1.0 + }, + { + "word": " use", + "start": 1857.74, + "end": 1858.08, + "probability": 1.0 + }, + { + "word": " as", + "start": 1858.08, + "end": 1858.22, + "probability": 0.99951171875 + }, + { + "word": " gaming,", + "start": 1858.22, + "end": 1858.5, + "probability": 1.0 + }, + { + "word": " then,", + "start": 1858.68, + "end": 1859.2, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 1859.26, + "end": 1859.34, + "probability": 1.0 + }, + { + "word": " course,", + "start": 1859.34, + "end": 1859.58, + "probability": 1.0 + }, + { + "word": " CPU", + "start": 1859.64, + "end": 1860.02, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1860.02, + "end": 1860.28, + "probability": 1.0 + }, + { + "word": " going", + "start": 1860.28, + "end": 1860.36, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 1860.36, + "end": 1860.48, + "probability": 1.0 + }, + { + "word": " make", + "start": 1860.48, + "end": 1860.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 1860.6, + "end": 1860.66, + "probability": 1.0 + }, + { + "word": " difference.", + "start": 1860.66, + "end": 1860.94, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "But if you're a gamer, then...", + "start": 1861.6200000000001, + "end": 1863.34, + "words": [ + { + "word": " But", + "start": 1861.6200000000001, + "end": 1861.94, + "probability": 1.0 + }, + { + "word": " if", + "start": 1861.94, + "end": 1862.06, + "probability": 0.99462890625 + }, + { + "word": " you're", + "start": 1862.06, + "end": 1862.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1862.2, + "end": 1862.3, + "probability": 1.0 + }, + { + "word": " gamer,", + "start": 1862.3, + "end": 1862.66, + "probability": 1.0 + }, + { + "word": " then...", + "start": 1862.8, + "end": 1863.34, + "probability": 0.6962890625 + } + ] + }, + { + "id": 752, + "text": "Yeah, you should hopefully have a nice video card to go with it.", + "start": 1863.34, + "end": 1865.54, + "words": [ + { + "word": " Yeah,", + "start": 1863.34, + "end": 1863.58, + "probability": 0.24462890625 + }, + { + "word": " you", + "start": 1863.66, + "end": 1863.84, + "probability": 0.9814453125 + }, + { + "word": " should", + "start": 1863.84, + "end": 1863.98, + "probability": 1.0 + }, + { + "word": " hopefully", + "start": 1863.98, + "end": 1864.28, + "probability": 1.0 + }, + { + "word": " have", + "start": 1864.28, + "end": 1864.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 1864.5, + "end": 1864.6, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1864.6, + "end": 1864.78, + "probability": 1.0 + }, + { + "word": " video", + "start": 1864.78, + "end": 1864.94, + "probability": 0.99951171875 + }, + { + "word": " card", + "start": 1864.94, + "end": 1865.14, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1865.14, + "end": 1865.28, + "probability": 1.0 + }, + { + "word": " go", + "start": 1865.28, + "end": 1865.36, + "probability": 1.0 + }, + { + "word": " with", + "start": 1865.36, + "end": 1865.52, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1865.52, + "end": 1865.54, + "probability": 0.8515625 + } + ] + }, + { + "id": 753, + "text": "Right.", + "start": 1865.54, + "end": 1865.64, + "words": [ + { + "word": " Right.", + "start": 1865.54, + "end": 1865.64, + "probability": 0.958984375 + } + ] + }, + { + "id": 754, + "text": "It's important to have a nice processor, but your graphics card is going to make a bigger difference, obviously.", + "start": 1865.84, + "end": 1869.12, + "words": [ + { + "word": " It's", + "start": 1865.84, + "end": 1866.16, + "probability": 0.9990234375 + }, + { + "word": " important", + "start": 1866.16, + "end": 1866.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 1866.32, + "end": 1866.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 1866.5, + "end": 1866.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 1866.56, + "end": 1866.62, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1866.62, + "end": 1866.78, + "probability": 1.0 + }, + { + "word": " processor,", + "start": 1866.78, + "end": 1867.16, + "probability": 1.0 + }, + { + "word": " but", + "start": 1867.24, + "end": 1867.34, + "probability": 1.0 + }, + { + "word": " your", + "start": 1867.34, + "end": 1867.44, + "probability": 1.0 + }, + { + "word": " graphics", + "start": 1867.44, + "end": 1867.68, + "probability": 0.99951171875 + }, + { + "word": " card", + "start": 1867.68, + "end": 1867.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 1867.86, + "end": 1867.98, + "probability": 1.0 + }, + { + "word": " going", + "start": 1867.98, + "end": 1868.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 1868.06, + "end": 1868.1, + "probability": 1.0 + }, + { + "word": " make", + "start": 1868.1, + "end": 1868.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 1868.22, + "end": 1868.28, + "probability": 1.0 + }, + { + "word": " bigger", + "start": 1868.28, + "end": 1868.44, + "probability": 0.99951171875 + }, + { + "word": " difference,", + "start": 1868.44, + "end": 1868.72, + "probability": 1.0 + }, + { + "word": " obviously.", + "start": 1868.84, + "end": 1869.12, + "probability": 1.0 + } + ] + }, + { + "id": 755, + "text": "Right.", + "start": 1869.34, + "end": 1869.66, + "words": [ + { + "word": " Right.", + "start": 1869.34, + "end": 1869.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 756, + "text": "And, of course, AMD always...", + "start": 1869.7, + "end": 1870.78, + "words": [ + { + "word": " And,", + "start": 1869.7, + "end": 1869.82, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 1869.84, + "end": 1869.9, + "probability": 1.0 + }, + { + "word": " course,", + "start": 1869.9, + "end": 1870.04, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1870.1, + "end": 1870.34, + "probability": 1.0 + }, + { + "word": " always...", + "start": 1870.34, + "end": 1870.78, + "probability": 0.8984375 + } + ] + }, + { + "id": 757, + "text": "They tie in the ATI cards into their processing platforms.", + "start": 1870.78, + "end": 1874.8, + "words": [ + { + "word": " They", + "start": 1870.78, + "end": 1871.38, + "probability": 0.99462890625 + }, + { + "word": " tie", + "start": 1871.38, + "end": 1871.66, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1871.66, + "end": 1871.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1871.98, + "end": 1872.1, + "probability": 1.0 + }, + { + "word": " ATI", + "start": 1872.1, + "end": 1872.46, + "probability": 0.7744140625 + }, + { + "word": " cards", + "start": 1872.46, + "end": 1872.76, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1872.76, + "end": 1873.22, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 1873.22, + "end": 1873.52, + "probability": 1.0 + }, + { + "word": " processing", + "start": 1873.52, + "end": 1874.32, + "probability": 0.9990234375 + }, + { + "word": " platforms.", + "start": 1874.32, + "end": 1874.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 758, + "text": "So they can talk to each other directly.", + "start": 1874.8, + "end": 1877.38, + "words": [ + { + "word": " So", + "start": 1874.8, + "end": 1875.16, + "probability": 0.231689453125 + }, + { + "word": " they", + "start": 1875.16, + "end": 1875.78, + "probability": 0.9228515625 + }, + { + "word": " can", + "start": 1875.78, + "end": 1875.98, + "probability": 0.99853515625 + }, + { + "word": " talk", + "start": 1875.98, + "end": 1876.22, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 1876.22, + "end": 1876.32, + "probability": 0.947265625 + }, + { + "word": " each", + "start": 1876.32, + "end": 1876.76, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 1876.76, + "end": 1877.0, + "probability": 1.0 + }, + { + "word": " directly.", + "start": 1877.0, + "end": 1877.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 759, + "text": "Yeah.", + "start": 1877.62, + "end": 1877.98, + "words": [ + { + "word": " Yeah.", + "start": 1877.62, + "end": 1877.98, + "probability": 0.379638671875 + } + ] + }, + { + "id": 760, + "text": "And historically, that's what they've done.", + "start": 1878.06, + "end": 1880.02, + "words": [ + { + "word": " And", + "start": 1878.06, + "end": 1878.16, + "probability": 0.76953125 + }, + { + "word": " historically,", + "start": 1878.16, + "end": 1878.92, + "probability": 0.55322265625 + }, + { + "word": " that's", + "start": 1879.34, + "end": 1879.62, + "probability": 1.0 + }, + { + "word": " what", + "start": 1879.62, + "end": 1879.68, + "probability": 1.0 + }, + { + "word": " they've", + "start": 1879.68, + "end": 1879.86, + "probability": 1.0 + }, + { + "word": " done.", + "start": 1879.86, + "end": 1880.02, + "probability": 1.0 + } + ] + }, + { + "id": 761, + "text": "And I'm not sure that they're doing that with the Ryzen cards, but I imagine that's probably built in.", + "start": 1880.12, + "end": 1884.5, + "words": [ + { + "word": " And", + "start": 1880.12, + "end": 1880.22, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 1880.22, + "end": 1880.36, + "probability": 1.0 + }, + { + "word": " not", + "start": 1880.36, + "end": 1880.42, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1880.42, + "end": 1880.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1880.58, + "end": 1880.74, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1880.74, + "end": 1880.9, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1880.9, + "end": 1881.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 1881.02, + "end": 1881.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 1881.16, + "end": 1881.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1881.3, + "end": 1881.36, + "probability": 0.99609375 + }, + { + "word": " Ryzen", + "start": 1881.36, + "end": 1881.64, + "probability": 0.98046875 + }, + { + "word": " cards,", + "start": 1881.64, + "end": 1881.84, + "probability": 0.99853515625 + }, + { + "word": " but", + "start": 1881.96, + "end": 1882.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 1882.08, + "end": 1882.84, + "probability": 0.99951171875 + }, + { + "word": " imagine", + "start": 1882.84, + "end": 1883.24, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1883.24, + "end": 1883.64, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1883.64, + "end": 1883.9, + "probability": 1.0 + }, + { + "word": " built", + "start": 1883.9, + "end": 1884.28, + "probability": 1.0 + }, + { + "word": " in.", + "start": 1884.28, + "end": 1884.5, + "probability": 0.99462890625 + } + ] + }, + { + "id": 762, + "text": "Well, they've talked about how there's going to be a GPU refresh for AMD as well soon.", + "start": 1884.58, + "end": 1888.76, + "words": [ + { + "word": " Well,", + "start": 1884.58, + "end": 1884.68, + "probability": 0.99951171875 + }, + { + "word": " they've", + "start": 1884.7, + "end": 1884.84, + "probability": 1.0 + }, + { + "word": " talked", + "start": 1884.84, + "end": 1885.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 1885.04, + "end": 1885.26, + "probability": 1.0 + }, + { + "word": " how", + "start": 1885.26, + "end": 1885.48, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1885.48, + "end": 1885.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 1885.74, + "end": 1885.78, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1885.78, + "end": 1885.88, + "probability": 1.0 + }, + { + "word": " be", + "start": 1885.88, + "end": 1886.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1886.0, + "end": 1886.1, + "probability": 1.0 + }, + { + "word": " GPU", + "start": 1886.1, + "end": 1886.3, + "probability": 1.0 + }, + { + "word": " refresh", + "start": 1886.3, + "end": 1886.78, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1886.78, + "end": 1887.18, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1887.18, + "end": 1887.74, + "probability": 1.0 + }, + { + "word": " as", + "start": 1887.74, + "end": 1887.98, + "probability": 0.9990234375 + }, + { + "word": " well", + "start": 1887.98, + "end": 1888.2, + "probability": 1.0 + }, + { + "word": " soon.", + "start": 1888.2, + "end": 1888.76, + "probability": 0.9853515625 + } + ] + }, + { + "id": 763, + "text": "So that's good.", + "start": 1888.84, + "end": 1889.64, + "words": [ + { + "word": " So", + "start": 1888.84, + "end": 1889.2, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1889.2, + "end": 1889.5, + "probability": 0.99755859375 + }, + { + "word": " good.", + "start": 1889.5, + "end": 1889.64, + "probability": 1.0 + } + ] + }, + { + "id": 764, + "text": "I mean, overall, I'm just happy to see, like, some competition.", + "start": 1890.26, + "end": 1894.52, + "words": [ + { + "word": " I", + "start": 1890.26, + "end": 1890.7, + "probability": 0.998046875 + }, + { + "word": " mean,", + "start": 1890.7, + "end": 1890.98, + "probability": 1.0 + }, + { + "word": " overall,", + "start": 1891.08, + "end": 1891.52, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 1891.78, + "end": 1891.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 1891.96, + "end": 1892.1, + "probability": 1.0 + }, + { + "word": " happy", + "start": 1892.1, + "end": 1892.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1892.28, + "end": 1892.46, + "probability": 1.0 + }, + { + "word": " see,", + "start": 1892.46, + "end": 1892.7, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1892.7, + "end": 1893.98, + "probability": 1.0 + }, + { + "word": " some", + "start": 1894.02, + "end": 1894.14, + "probability": 1.0 + }, + { + "word": " competition.", + "start": 1894.14, + "end": 1894.52, + "probability": 1.0 + } + ] + }, + { + "id": 765, + "text": "Yeah.", + "start": 1895.44, + "end": 1895.88, + "words": [ + { + "word": " Yeah.", + "start": 1895.44, + "end": 1895.88, + "probability": 1.0 + } + ] + }, + { + "id": 766, + "text": "Yeah.", + "start": 1896.22, + "end": 1896.66, + "words": [ + { + "word": " Yeah.", + "start": 1896.22, + "end": 1896.66, + "probability": 0.99365234375 + } + ] + }, + { + "id": 767, + "text": "And I think that first generation, we can't put all of our hopes in a single basket when it comes to first generation processors.", + "start": 1896.72, + "end": 1902.94, + "words": [ + { + "word": " And", + "start": 1896.72, + "end": 1896.76, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 1896.76, + "end": 1896.84, + "probability": 1.0 + }, + { + "word": " think", + "start": 1896.84, + "end": 1897.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1897.06, + "end": 1897.22, + "probability": 1.0 + }, + { + "word": " first", + "start": 1897.22, + "end": 1897.72, + "probability": 0.9970703125 + }, + { + "word": " generation,", + "start": 1897.72, + "end": 1898.04, + "probability": 0.87744140625 + }, + { + "word": " we", + "start": 1898.26, + "end": 1898.84, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1898.84, + "end": 1899.08, + "probability": 1.0 + }, + { + "word": " put", + "start": 1899.08, + "end": 1899.18, + "probability": 1.0 + }, + { + "word": " all", + "start": 1899.18, + "end": 1899.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 1899.34, + "end": 1899.46, + "probability": 1.0 + }, + { + "word": " our", + "start": 1899.46, + "end": 1899.66, + "probability": 1.0 + }, + { + "word": " hopes", + "start": 1899.66, + "end": 1900.18, + "probability": 1.0 + }, + { + "word": " in", + "start": 1900.18, + "end": 1900.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1900.52, + "end": 1900.8, + "probability": 1.0 + }, + { + "word": " single", + "start": 1900.8, + "end": 1901.18, + "probability": 1.0 + }, + { + "word": " basket", + "start": 1901.18, + "end": 1901.48, + "probability": 1.0 + }, + { + "word": " when", + "start": 1901.48, + "end": 1901.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1901.7, + "end": 1901.8, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1901.8, + "end": 1901.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1901.92, + "end": 1902.04, + "probability": 1.0 + }, + { + "word": " first", + "start": 1902.04, + "end": 1902.2, + "probability": 1.0 + }, + { + "word": " generation", + "start": 1902.2, + "end": 1902.44, + "probability": 0.958984375 + }, + { + "word": " processors.", + "start": 1902.44, + "end": 1902.94, + "probability": 1.0 + } + ] + }, + { + "id": 768, + "text": "But I'm sure as AMD manages to, you know, kind of get the hang of this as far as, oh, yeah, we're building real processors now.", + "start": 1904.58, + "end": 1911.28, + "words": [ + { + "word": " But", + "start": 1904.58, + "end": 1904.98, + "probability": 0.53759765625 + }, + { + "word": " I'm", + "start": 1904.98, + "end": 1905.38, + "probability": 0.9892578125 + }, + { + "word": " sure", + "start": 1905.38, + "end": 1905.58, + "probability": 1.0 + }, + { + "word": " as", + "start": 1905.58, + "end": 1905.78, + "probability": 0.97998046875 + }, + { + "word": " AMD", + "start": 1905.78, + "end": 1906.14, + "probability": 0.99951171875 + }, + { + "word": " manages", + "start": 1906.14, + "end": 1906.66, + "probability": 0.99951171875 + }, + { + "word": " to,", + "start": 1906.66, + "end": 1907.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 1907.04, + "end": 1907.34, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 1907.34, + "end": 1907.48, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1907.48, + "end": 1907.64, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1907.64, + "end": 1907.74, + "probability": 1.0 + }, + { + "word": " get", + "start": 1907.74, + "end": 1908.4, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1908.4, + "end": 1908.58, + "probability": 1.0 + }, + { + "word": " hang", + "start": 1908.58, + "end": 1908.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 1908.74, + "end": 1908.9, + "probability": 1.0 + }, + { + "word": " this", + "start": 1908.9, + "end": 1909.06, + "probability": 0.998046875 + }, + { + "word": " as", + "start": 1909.06, + "end": 1909.28, + "probability": 0.97314453125 + }, + { + "word": " far", + "start": 1909.28, + "end": 1909.4, + "probability": 1.0 + }, + { + "word": " as,", + "start": 1909.4, + "end": 1909.64, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 1909.66, + "end": 1909.78, + "probability": 0.98486328125 + }, + { + "word": " yeah,", + "start": 1909.8, + "end": 1909.9, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 1909.94, + "end": 1910.06, + "probability": 1.0 + }, + { + "word": " building", + "start": 1910.06, + "end": 1910.28, + "probability": 1.0 + }, + { + "word": " real", + "start": 1910.28, + "end": 1910.54, + "probability": 0.998046875 + }, + { + "word": " processors", + "start": 1910.54, + "end": 1910.94, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1910.94, + "end": 1911.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 769, + "text": "This makes me happy because traditionally I've been a fan of AMD just because the price difference is so astronomical.", + "start": 1911.54, + "end": 1918.46, + "words": [ + { + "word": " This", + "start": 1911.54, + "end": 1911.94, + "probability": 0.9990234375 + }, + { + "word": " makes", + "start": 1911.94, + "end": 1912.14, + "probability": 1.0 + }, + { + "word": " me", + "start": 1912.14, + "end": 1912.32, + "probability": 1.0 + }, + { + "word": " happy", + "start": 1912.32, + "end": 1912.52, + "probability": 1.0 + }, + { + "word": " because", + "start": 1912.52, + "end": 1912.78, + "probability": 0.984375 + }, + { + "word": " traditionally", + "start": 1912.78, + "end": 1913.18, + "probability": 0.986328125 + }, + { + "word": " I've", + "start": 1913.18, + "end": 1913.58, + "probability": 0.9892578125 + }, + { + "word": " been", + "start": 1913.58, + "end": 1914.4, + "probability": 0.89306640625 + }, + { + "word": " a", + "start": 1914.4, + "end": 1914.62, + "probability": 1.0 + }, + { + "word": " fan", + "start": 1914.62, + "end": 1915.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1915.06, + "end": 1915.32, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1915.32, + "end": 1915.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 1915.56, + "end": 1915.9, + "probability": 0.984375 + }, + { + "word": " because", + "start": 1915.9, + "end": 1916.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1916.14, + "end": 1916.8, + "probability": 1.0 + }, + { + "word": " price", + "start": 1916.8, + "end": 1917.06, + "probability": 1.0 + }, + { + "word": " difference", + "start": 1917.06, + "end": 1917.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 1917.32, + "end": 1917.6, + "probability": 1.0 + }, + { + "word": " so", + "start": 1917.6, + "end": 1917.8, + "probability": 1.0 + }, + { + "word": " astronomical.", + "start": 1917.8, + "end": 1918.46, + "probability": 1.0 + } + ] + }, + { + "id": 770, + "text": "Yeah.", + "start": 1919.62, + "end": 1920.02, + "words": [ + { + "word": " Yeah.", + "start": 1919.62, + "end": 1920.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 771, + "text": "And unfortunately, though, previously your performance difference was so astronomical as well.", + "start": 1920.04, + "end": 1923.94, + "words": [ + { + "word": " And", + "start": 1920.04, + "end": 1920.14, + "probability": 0.99560546875 + }, + { + "word": " unfortunately,", + "start": 1920.14, + "end": 1920.42, + "probability": 0.9462890625 + }, + { + "word": " though,", + "start": 1920.64, + "end": 1920.8, + "probability": 1.0 + }, + { + "word": " previously", + "start": 1920.84, + "end": 1921.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 1921.22, + "end": 1921.5, + "probability": 0.916015625 + }, + { + "word": " performance", + "start": 1921.5, + "end": 1922.02, + "probability": 1.0 + }, + { + "word": " difference", + "start": 1922.02, + "end": 1922.34, + "probability": 1.0 + }, + { + "word": " was", + "start": 1922.34, + "end": 1922.64, + "probability": 1.0 + }, + { + "word": " so", + "start": 1922.64, + "end": 1922.8, + "probability": 1.0 + }, + { + "word": " astronomical", + "start": 1922.8, + "end": 1923.28, + "probability": 1.0 + }, + { + "word": " as", + "start": 1923.28, + "end": 1923.74, + "probability": 0.99951171875 + }, + { + "word": " well.", + "start": 1923.74, + "end": 1923.94, + "probability": 1.0 + } + ] + }, + { + "id": 772, + "text": "Right.", + "start": 1924.1, + "end": 1924.3, + "words": [ + { + "word": " Right.", + "start": 1924.1, + "end": 1924.3, + "probability": 0.99853515625 + } + ] + }, + { + "id": 773, + "text": "But, I mean, that's for people who are comparing the highest end AMD to the highest end Intel, which isn't a fair comparison at all.", + "start": 1924.36, + "end": 1930.24, + "words": [ + { + "word": " But,", + "start": 1924.36, + "end": 1924.52, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1924.54, + "end": 1924.62, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1924.62, + "end": 1924.68, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1924.7, + "end": 1924.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 1924.94, + "end": 1925.08, + "probability": 1.0 + }, + { + "word": " people", + "start": 1925.08, + "end": 1925.28, + "probability": 1.0 + }, + { + "word": " who", + "start": 1925.28, + "end": 1925.46, + "probability": 1.0 + }, + { + "word": " are", + "start": 1925.46, + "end": 1925.56, + "probability": 1.0 + }, + { + "word": " comparing", + "start": 1925.56, + "end": 1925.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1925.88, + "end": 1926.16, + "probability": 1.0 + }, + { + "word": " highest", + "start": 1926.16, + "end": 1926.42, + "probability": 1.0 + }, + { + "word": " end", + "start": 1926.42, + "end": 1926.68, + "probability": 0.63623046875 + }, + { + "word": " AMD", + "start": 1926.68, + "end": 1926.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 1926.96, + "end": 1927.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1927.3, + "end": 1927.42, + "probability": 1.0 + }, + { + "word": " highest", + "start": 1927.42, + "end": 1927.7, + "probability": 1.0 + }, + { + "word": " end", + "start": 1927.7, + "end": 1928.02, + "probability": 1.0 + }, + { + "word": " Intel,", + "start": 1928.02, + "end": 1928.64, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 1928.74, + "end": 1928.9, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 1928.9, + "end": 1929.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 1929.24, + "end": 1929.36, + "probability": 1.0 + }, + { + "word": " fair", + "start": 1929.36, + "end": 1929.54, + "probability": 1.0 + }, + { + "word": " comparison", + "start": 1929.54, + "end": 1929.92, + "probability": 1.0 + }, + { + "word": " at", + "start": 1929.92, + "end": 1930.1, + "probability": 0.99951171875 + }, + { + "word": " all.", + "start": 1930.1, + "end": 1930.24, + "probability": 1.0 + } + ] + }, + { + "id": 774, + "text": "Well, I was looking at the, you know, the stuff that I normally see.", + "start": 1930.36, + "end": 1932.82, + "words": [ + { + "word": " Well,", + "start": 1930.36, + "end": 1930.48, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1930.58, + "end": 1930.66, + "probability": 1.0 + }, + { + "word": " was", + "start": 1930.66, + "end": 1930.78, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1930.78, + "end": 1930.96, + "probability": 1.0 + }, + { + "word": " at", + "start": 1930.96, + "end": 1931.22, + "probability": 1.0 + }, + { + "word": " the,", + "start": 1931.22, + "end": 1931.44, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 1931.48, + "end": 1931.72, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1931.72, + "end": 1931.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1931.82, + "end": 1931.9, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1931.9, + "end": 1932.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 1932.04, + "end": 1932.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 1932.18, + "end": 1932.28, + "probability": 1.0 + }, + { + "word": " normally", + "start": 1932.28, + "end": 1932.54, + "probability": 1.0 + }, + { + "word": " see.", + "start": 1932.54, + "end": 1932.82, + "probability": 0.9931640625 + } + ] + }, + { + "id": 775, + "text": "It's where, you know, clients will go out and they'll be like, oh, it's a quad core.", + "start": 1932.94, + "end": 1936.18, + "words": [ + { + "word": " It's", + "start": 1932.94, + "end": 1933.0, + "probability": 0.445068359375 + }, + { + "word": " where,", + "start": 1933.0, + "end": 1933.16, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 1933.22, + "end": 1933.36, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1933.36, + "end": 1933.48, + "probability": 1.0 + }, + { + "word": " clients", + "start": 1933.48, + "end": 1933.72, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 1933.72, + "end": 1933.88, + "probability": 0.99462890625 + }, + { + "word": " go", + "start": 1933.88, + "end": 1933.96, + "probability": 0.9970703125 + }, + { + "word": " out", + "start": 1933.96, + "end": 1934.06, + "probability": 1.0 + }, + { + "word": " and", + "start": 1934.06, + "end": 1934.16, + "probability": 0.9453125 + }, + { + "word": " they'll", + "start": 1934.16, + "end": 1934.24, + "probability": 0.9951171875 + }, + { + "word": " be", + "start": 1934.24, + "end": 1934.36, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1934.36, + "end": 1934.56, + "probability": 0.99462890625 + }, + { + "word": " oh,", + "start": 1934.64, + "end": 1934.78, + "probability": 0.98828125 + }, + { + "word": " it's", + "start": 1934.78, + "end": 1934.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 1934.9, + "end": 1935.06, + "probability": 0.8818359375 + }, + { + "word": " quad", + "start": 1935.06, + "end": 1935.9, + "probability": 0.9990234375 + }, + { + "word": " core.", + "start": 1935.9, + "end": 1936.18, + "probability": 0.8427734375 + } + ] + }, + { + "id": 776, + "text": "Right.", + "start": 1936.46, + "end": 1936.82, + "words": [ + { + "word": " Right.", + "start": 1936.46, + "end": 1936.82, + "probability": 0.9677734375 + } + ] + }, + { + "id": 777, + "text": "And then it just performs like an atom.", + "start": 1936.92, + "end": 1939.38, + "words": [ + { + "word": " And", + "start": 1936.92, + "end": 1937.26, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1937.26, + "end": 1937.72, + "probability": 0.97509765625 + }, + { + "word": " it", + "start": 1937.72, + "end": 1938.0, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 1938.0, + "end": 1938.26, + "probability": 1.0 + }, + { + "word": " performs", + "start": 1938.26, + "end": 1938.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 1938.66, + "end": 1938.92, + "probability": 1.0 + }, + { + "word": " an", + "start": 1938.92, + "end": 1939.08, + "probability": 1.0 + }, + { + "word": " atom.", + "start": 1939.08, + "end": 1939.38, + "probability": 0.994140625 + } + ] + }, + { + "id": 778, + "text": "Well, in a lot of cases, that's because it basically is.", + "start": 1939.56, + "end": 1942.1, + "words": [ + { + "word": " Well,", + "start": 1939.56, + "end": 1939.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 1939.92, + "end": 1940.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 1940.02, + "end": 1940.12, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1940.12, + "end": 1940.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 1940.28, + "end": 1940.34, + "probability": 1.0 + }, + { + "word": " cases,", + "start": 1940.34, + "end": 1940.6, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1940.64, + "end": 1940.84, + "probability": 1.0 + }, + { + "word": " because", + "start": 1940.84, + "end": 1941.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 1941.06, + "end": 1941.36, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1941.36, + "end": 1941.68, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1941.68, + "end": 1942.1, + "probability": 1.0 + } + ] + }, + { + "id": 779, + "text": "Like, AMD was doing this thing before where you'd only have, like, say, four compute modules on the chip.", + "start": 1942.28, + "end": 1947.94, + "words": [ + { + "word": " Like,", + "start": 1942.28, + "end": 1942.62, + "probability": 0.9853515625 + }, + { + "word": " AMD", + "start": 1942.62, + "end": 1943.02, + "probability": 1.0 + }, + { + "word": " was", + "start": 1943.02, + "end": 1943.26, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1943.26, + "end": 1943.42, + "probability": 1.0 + }, + { + "word": " this", + "start": 1943.42, + "end": 1943.56, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1943.56, + "end": 1943.72, + "probability": 1.0 + }, + { + "word": " before", + "start": 1943.72, + "end": 1943.92, + "probability": 1.0 + }, + { + "word": " where", + "start": 1943.92, + "end": 1944.24, + "probability": 0.99951171875 + }, + { + "word": " you'd", + "start": 1944.24, + "end": 1944.78, + "probability": 1.0 + }, + { + "word": " only", + "start": 1944.78, + "end": 1944.92, + "probability": 1.0 + }, + { + "word": " have,", + "start": 1944.92, + "end": 1945.12, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1945.24, + "end": 1945.54, + "probability": 0.99169921875 + }, + { + "word": " say,", + "start": 1945.58, + "end": 1945.74, + "probability": 1.0 + }, + { + "word": " four", + "start": 1945.76, + "end": 1945.9, + "probability": 0.99853515625 + }, + { + "word": " compute", + "start": 1945.9, + "end": 1946.4, + "probability": 0.9990234375 + }, + { + "word": " modules", + "start": 1946.4, + "end": 1946.78, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1946.78, + "end": 1947.56, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1947.56, + "end": 1947.68, + "probability": 1.0 + }, + { + "word": " chip.", + "start": 1947.68, + "end": 1947.94, + "probability": 1.0 + } + ] + }, + { + "id": 780, + "text": "Right.", + "start": 1948.1, + "end": 1948.46, + "words": [ + { + "word": " Right.", + "start": 1948.1, + "end": 1948.46, + "probability": 0.98046875 + } + ] + }, + { + "id": 781, + "text": "And then they were using some software trickery to make it behave like an eight core.", + "start": 1948.52, + "end": 1951.8, + "words": [ + { + "word": " And", + "start": 1948.52, + "end": 1948.64, + "probability": 1.0 + }, + { + "word": " then", + "start": 1948.64, + "end": 1948.74, + "probability": 1.0 + }, + { + "word": " they", + "start": 1948.74, + "end": 1948.84, + "probability": 1.0 + }, + { + "word": " were", + "start": 1948.84, + "end": 1948.94, + "probability": 1.0 + }, + { + "word": " using", + "start": 1948.94, + "end": 1949.16, + "probability": 1.0 + }, + { + "word": " some", + "start": 1949.16, + "end": 1949.34, + "probability": 1.0 + }, + { + "word": " software", + "start": 1949.34, + "end": 1949.72, + "probability": 1.0 + }, + { + "word": " trickery", + "start": 1949.72, + "end": 1950.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 1950.12, + "end": 1950.3, + "probability": 1.0 + }, + { + "word": " make", + "start": 1950.3, + "end": 1950.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 1950.44, + "end": 1950.56, + "probability": 1.0 + }, + { + "word": " behave", + "start": 1950.56, + "end": 1950.8, + "probability": 1.0 + }, + { + "word": " like", + "start": 1950.8, + "end": 1951.18, + "probability": 1.0 + }, + { + "word": " an", + "start": 1951.18, + "end": 1951.48, + "probability": 1.0 + }, + { + "word": " eight", + "start": 1951.48, + "end": 1951.64, + "probability": 0.908203125 + }, + { + "word": " core.", + "start": 1951.64, + "end": 1951.8, + "probability": 0.99609375 + } + ] + }, + { + "id": 782, + "text": "So the new Ryzen stuff is actually eight core as well as actually four core.", + "start": 1953.0200000000002, + "end": 1958.64, + "words": [ + { + "word": " So", + "start": 1953.0200000000002, + "end": 1953.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1953.38, + "end": 1953.74, + "probability": 0.708984375 + }, + { + "word": " new", + "start": 1953.74, + "end": 1953.98, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1953.98, + "end": 1954.54, + "probability": 0.99462890625 + }, + { + "word": " stuff", + "start": 1954.54, + "end": 1954.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 1954.76, + "end": 1955.06, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1955.06, + "end": 1955.66, + "probability": 1.0 + }, + { + "word": " eight", + "start": 1955.66, + "end": 1955.98, + "probability": 1.0 + }, + { + "word": " core", + "start": 1955.98, + "end": 1956.2, + "probability": 1.0 + }, + { + "word": " as", + "start": 1956.2, + "end": 1956.52, + "probability": 0.5859375 + }, + { + "word": " well", + "start": 1956.52, + "end": 1957.68, + "probability": 1.0 + }, + { + "word": " as", + "start": 1957.68, + "end": 1957.86, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1957.86, + "end": 1958.18, + "probability": 1.0 + }, + { + "word": " four", + "start": 1958.18, + "end": 1958.44, + "probability": 1.0 + }, + { + "word": " core.", + "start": 1958.44, + "end": 1958.64, + "probability": 1.0 + } + ] + }, + { + "id": 783, + "text": "Thanks for not lying to me anymore, AMD.", + "start": 1958.76, + "end": 1960.52, + "words": [ + { + "word": " Thanks", + "start": 1958.76, + "end": 1958.9, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1958.9, + "end": 1959.06, + "probability": 1.0 + }, + { + "word": " not", + "start": 1959.06, + "end": 1959.2, + "probability": 1.0 + }, + { + "word": " lying", + "start": 1959.2, + "end": 1959.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 1959.52, + "end": 1959.74, + "probability": 1.0 + }, + { + "word": " me", + "start": 1959.74, + "end": 1959.8, + "probability": 1.0 + }, + { + "word": " anymore,", + "start": 1959.8, + "end": 1960.1, + "probability": 0.99951171875 + }, + { + "word": " AMD.", + "start": 1960.26, + "end": 1960.52, + "probability": 1.0 + } + ] + }, + { + "id": 784, + "text": "To be fair, Intel kind of did that, too, for a while.", + "start": 1960.72, + "end": 1962.82, + "words": [ + { + "word": " To", + "start": 1960.72, + "end": 1960.98, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1960.98, + "end": 1961.06, + "probability": 1.0 + }, + { + "word": " fair,", + "start": 1961.06, + "end": 1961.32, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 1961.42, + "end": 1961.6, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1961.6, + "end": 1961.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 1961.8, + "end": 1961.96, + "probability": 1.0 + }, + { + "word": " did", + "start": 1961.96, + "end": 1962.08, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1962.08, + "end": 1962.24, + "probability": 1.0 + }, + { + "word": " too,", + "start": 1962.28, + "end": 1962.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 1962.44, + "end": 1962.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1962.58, + "end": 1962.66, + "probability": 1.0 + }, + { + "word": " while.", + "start": 1962.66, + "end": 1962.82, + "probability": 1.0 + } + ] + }, + { + "id": 785, + "text": "Right.", + "start": 1962.94, + "end": 1963.42, + "words": [ + { + "word": " Right.", + "start": 1962.94, + "end": 1963.42, + "probability": 0.876953125 + } + ] + }, + { + "id": 786, + "text": "Well, like the processor that I have on my computer, it's a fairly high end Intel chip.", + "start": 1963.6, + "end": 1970.58, + "words": [ + { + "word": " Well,", + "start": 1963.6, + "end": 1963.72, + "probability": 0.66748046875 + }, + { + "word": " like", + "start": 1963.78, + "end": 1964.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1964.2, + "end": 1964.34, + "probability": 0.9931640625 + }, + { + "word": " processor", + "start": 1964.34, + "end": 1964.78, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1964.78, + "end": 1964.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 1964.92, + "end": 1965.08, + "probability": 1.0 + }, + { + "word": " have", + "start": 1965.08, + "end": 1965.38, + "probability": 1.0 + }, + { + "word": " on", + "start": 1965.38, + "end": 1965.8, + "probability": 0.970703125 + }, + { + "word": " my", + "start": 1965.8, + "end": 1966.08, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 1966.08, + "end": 1966.42, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1966.54, + "end": 1966.82, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1966.82, + "end": 1966.84, + "probability": 0.99951171875 + }, + { + "word": " fairly", + "start": 1966.84, + "end": 1967.96, + "probability": 0.9990234375 + }, + { + "word": " high", + "start": 1967.96, + "end": 1968.36, + "probability": 1.0 + }, + { + "word": " end", + "start": 1968.36, + "end": 1968.74, + "probability": 0.56884765625 + }, + { + "word": " Intel", + "start": 1968.74, + "end": 1969.4, + "probability": 0.9970703125 + }, + { + "word": " chip.", + "start": 1969.4, + "end": 1970.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 787, + "text": "And it reports 12 cores.", + "start": 1970.86, + "end": 1975.88, + "words": [ + { + "word": " And", + "start": 1970.86, + "end": 1971.22, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1971.22, + "end": 1971.98, + "probability": 0.97216796875 + }, + { + "word": " reports", + "start": 1971.98, + "end": 1972.4, + "probability": 0.99951171875 + }, + { + "word": " 12", + "start": 1972.4, + "end": 1975.28, + "probability": 0.38671875 + }, + { + "word": " cores.", + "start": 1975.28, + "end": 1975.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 788, + "text": "Right.", + "start": 1976.1, + "end": 1976.36, + "words": [ + { + "word": " Right.", + "start": 1976.1, + "end": 1976.36, + "probability": 0.97802734375 + } + ] + }, + { + "id": 789, + "text": "And it's an eight.", + "start": 1976.5, + "end": 1978.18, + "words": [ + { + "word": " And", + "start": 1976.5, + "end": 1976.76, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1976.76, + "end": 1977.5, + "probability": 1.0 + }, + { + "word": " an", + "start": 1977.5, + "end": 1977.82, + "probability": 0.99609375 + }, + { + "word": " eight.", + "start": 1977.82, + "end": 1978.18, + "probability": 0.488037109375 + } + ] + }, + { + "id": 790, + "text": "Right.", + "start": 1978.52, + "end": 1978.88, + "words": [ + { + "word": " Right.", + "start": 1978.52, + "end": 1978.88, + "probability": 0.98974609375 + } + ] + }, + { + "id": 791, + "text": "And so there's some software trickery happening there.", + "start": 1978.92, + "end": 1981.48, + "words": [ + { + "word": " And", + "start": 1978.92, + "end": 1979.06, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1979.06, + "end": 1979.22, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1979.22, + "end": 1979.52, + "probability": 0.99072265625 + }, + { + "word": " some", + "start": 1979.52, + "end": 1979.66, + "probability": 1.0 + }, + { + "word": " software", + "start": 1979.66, + "end": 1980.2, + "probability": 1.0 + }, + { + "word": " trickery", + "start": 1980.2, + "end": 1980.64, + "probability": 1.0 + }, + { + "word": " happening", + "start": 1980.64, + "end": 1981.04, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1981.04, + "end": 1981.48, + "probability": 1.0 + } + ] + }, + { + "id": 792, + "text": "No, and I mean, it's not like they're just straight up lying.", + "start": 1981.64, + "end": 1983.6, + "words": [ + { + "word": " No,", + "start": 1981.64, + "end": 1981.78, + "probability": 0.98828125 + }, + { + "word": " and", + "start": 1981.8, + "end": 1981.92, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1981.92, + "end": 1982.0, + "probability": 0.99169921875 + }, + { + "word": " mean,", + "start": 1982.0, + "end": 1982.1, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1982.12, + "end": 1982.26, + "probability": 1.0 + }, + { + "word": " not", + "start": 1982.26, + "end": 1982.42, + "probability": 1.0 + }, + { + "word": " like", + "start": 1982.42, + "end": 1982.62, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1982.62, + "end": 1982.76, + "probability": 1.0 + }, + { + "word": " just", + "start": 1982.76, + "end": 1982.94, + "probability": 1.0 + }, + { + "word": " straight", + "start": 1982.94, + "end": 1983.18, + "probability": 1.0 + }, + { + "word": " up", + "start": 1983.18, + "end": 1983.32, + "probability": 0.99951171875 + }, + { + "word": " lying.", + "start": 1983.32, + "end": 1983.6, + "probability": 1.0 + } + ] + }, + { + "id": 793, + "text": "Like, you do get better performance out of that processor than you would out of just an eight core.", + "start": 1983.72, + "end": 1987.68, + "words": [ + { + "word": " Like,", + "start": 1983.72, + "end": 1983.98, + "probability": 0.970703125 + }, + { + "word": " you", + "start": 1984.0, + "end": 1984.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 1984.1, + "end": 1984.24, + "probability": 1.0 + }, + { + "word": " get", + "start": 1984.24, + "end": 1984.4, + "probability": 1.0 + }, + { + "word": " better", + "start": 1984.4, + "end": 1984.66, + "probability": 1.0 + }, + { + "word": " performance", + "start": 1984.66, + "end": 1985.08, + "probability": 1.0 + }, + { + "word": " out", + "start": 1985.08, + "end": 1985.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 1985.32, + "end": 1985.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 1985.38, + "end": 1985.48, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1985.48, + "end": 1985.9, + "probability": 1.0 + }, + { + "word": " than", + "start": 1985.9, + "end": 1986.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1986.16, + "end": 1986.28, + "probability": 1.0 + }, + { + "word": " would", + "start": 1986.28, + "end": 1986.46, + "probability": 1.0 + }, + { + "word": " out", + "start": 1986.46, + "end": 1986.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 1986.64, + "end": 1986.78, + "probability": 1.0 + }, + { + "word": " just", + "start": 1986.78, + "end": 1986.96, + "probability": 1.0 + }, + { + "word": " an", + "start": 1986.96, + "end": 1987.16, + "probability": 1.0 + }, + { + "word": " eight", + "start": 1987.16, + "end": 1987.52, + "probability": 0.998046875 + }, + { + "word": " core.", + "start": 1987.52, + "end": 1987.68, + "probability": 0.99658203125 + } + ] + }, + { + "id": 794, + "text": "This is true.", + "start": 1987.96, + "end": 1988.7, + "words": [ + { + "word": " This", + "start": 1987.96, + "end": 1988.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1988.32, + "end": 1988.48, + "probability": 1.0 + }, + { + "word": " true.", + "start": 1988.48, + "end": 1988.7, + "probability": 1.0 + } + ] + }, + { + "id": 795, + "text": "I mean, and, yeah, don't get me wrong, that computer moves right along.", + "start": 1988.86, + "end": 1992.0, + "words": [ + { + "word": " I", + "start": 1988.86, + "end": 1989.1, + "probability": 0.96435546875 + }, + { + "word": " mean,", + "start": 1989.1, + "end": 1989.24, + "probability": 1.0 + }, + { + "word": " and,", + "start": 1989.26, + "end": 1989.48, + "probability": 0.99755859375 + }, + { + "word": " yeah,", + "start": 1989.56, + "end": 1990.18, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 1990.28, + "end": 1990.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 1990.44, + "end": 1990.48, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 1990.48, + "end": 1990.62, + "probability": 1.0 + }, + { + "word": " wrong,", + "start": 1990.62, + "end": 1990.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 1990.74, + "end": 1990.82, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1990.82, + "end": 1991.12, + "probability": 1.0 + }, + { + "word": " moves", + "start": 1991.12, + "end": 1991.42, + "probability": 0.9970703125 + }, + { + "word": " right", + "start": 1991.42, + "end": 1991.74, + "probability": 1.0 + }, + { + "word": " along.", + "start": 1991.74, + "end": 1992.0, + "probability": 1.0 + } + ] + }, + { + "id": 796, + "text": "But it somewhat feels dishonest.", + "start": 1993.0399999999997, + "end": 1996.54, + "words": [ + { + "word": " But", + "start": 1993.0399999999997, + "end": 1993.4399999999998, + "probability": 0.497802734375 + }, + { + "word": " it", + "start": 1993.4399999999998, + "end": 1993.84, + "probability": 0.9853515625 + }, + { + "word": " somewhat", + "start": 1993.84, + "end": 1995.24, + "probability": 0.91650390625 + }, + { + "word": " feels", + "start": 1995.24, + "end": 1995.88, + "probability": 1.0 + }, + { + "word": " dishonest.", + "start": 1995.88, + "end": 1996.54, + "probability": 0.9658203125 + } + ] + }, + { + "id": 797, + "text": "I think the reason why I've always liked AMD more than Intel is because I've never been somebody.", + "start": 1996.7, + "end": 2002.38, + "words": [ + { + "word": " I", + "start": 1996.7, + "end": 1996.86, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1996.86, + "end": 1997.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1997.02, + "end": 1997.14, + "probability": 1.0 + }, + { + "word": " reason", + "start": 1997.14, + "end": 1997.46, + "probability": 1.0 + }, + { + "word": " why", + "start": 1997.46, + "end": 1997.78, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1997.78, + "end": 1998.28, + "probability": 0.99951171875 + }, + { + "word": " always", + "start": 1998.28, + "end": 1998.44, + "probability": 1.0 + }, + { + "word": " liked", + "start": 1998.44, + "end": 1998.7, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1998.7, + "end": 1998.9, + "probability": 1.0 + }, + { + "word": " more", + "start": 1998.9, + "end": 1999.64, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 1999.64, + "end": 1999.84, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 1999.84, + "end": 2000.1, + "probability": 1.0 + }, + { + "word": " is", + "start": 2000.1, + "end": 2000.42, + "probability": 0.99267578125 + }, + { + "word": " because", + "start": 2000.42, + "end": 2000.7, + "probability": 1.0 + }, + { + "word": " I've", + "start": 2000.7, + "end": 2001.68, + "probability": 0.9609375 + }, + { + "word": " never", + "start": 2001.68, + "end": 2001.92, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 2001.92, + "end": 2002.12, + "probability": 0.99951171875 + }, + { + "word": " somebody.", + "start": 2002.12, + "end": 2002.38, + "probability": 0.794921875 + } + ] + }, + { + "id": 798, + "text": "I can't just, I'm not going to spend $5,000 on a computer.", + "start": 2002.46, + "end": 2005.02, + "words": [ + { + "word": " I", + "start": 2002.46, + "end": 2002.56, + "probability": 0.9912109375 + }, + { + "word": " can't", + "start": 2002.56, + "end": 2002.78, + "probability": 0.88134765625 + }, + { + "word": " just,", + "start": 2002.78, + "end": 2002.94, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2003.02, + "end": 2003.14, + "probability": 1.0 + }, + { + "word": " not", + "start": 2003.14, + "end": 2003.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 2003.2, + "end": 2003.3, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 2003.3, + "end": 2003.42, + "probability": 1.0 + }, + { + "word": " spend", + "start": 2003.42, + "end": 2003.46, + "probability": 0.998046875 + }, + { + "word": " $5", + "start": 2003.46, + "end": 2003.66, + "probability": 0.99951171875 + }, + { + "word": ",000", + "start": 2003.66, + "end": 2004.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 2004.08, + "end": 2004.64, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2004.64, + "end": 2004.76, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 2004.76, + "end": 2005.02, + "probability": 1.0 + } + ] + }, + { + "id": 799, + "text": "And I'm, like, this is my life, you know.", + "start": 2005.28, + "end": 2007.86, + "words": [ + { + "word": " And", + "start": 2005.28, + "end": 2005.68, + "probability": 0.994140625 + }, + { + "word": " I'm,", + "start": 2005.68, + "end": 2005.92, + "probability": 0.9765625 + }, + { + "word": " like,", + "start": 2005.92, + "end": 2006.28, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2006.32, + "end": 2006.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 2006.46, + "end": 2006.62, + "probability": 1.0 + }, + { + "word": " my", + "start": 2006.62, + "end": 2006.82, + "probability": 1.0 + }, + { + "word": " life,", + "start": 2006.82, + "end": 2007.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 2007.5, + "end": 2007.68, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2007.68, + "end": 2007.86, + "probability": 1.0 + } + ] + }, + { + "id": 800, + "text": "Right.", + "start": 2007.98, + "end": 2008.32, + "words": [ + { + "word": " Right.", + "start": 2007.98, + "end": 2008.32, + "probability": 0.9560546875 + } + ] + }, + { + "id": 801, + "text": "So I like AMD because it's like you can build a machine that does what you want it to do,", + "start": 2008.9799999999998, + "end": 2013.6, + "words": [ + { + "word": " So", + "start": 2008.9799999999998, + "end": 2009.3799999999999, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2009.3799999999999, + "end": 2009.78, + "probability": 0.81298828125 + }, + { + "word": " like", + "start": 2009.78, + "end": 2010.2, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 2010.2, + "end": 2010.56, + "probability": 1.0 + }, + { + "word": " because", + "start": 2010.56, + "end": 2010.92, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2010.92, + "end": 2011.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 2011.2, + "end": 2011.28, + "probability": 0.7373046875 + }, + { + "word": " you", + "start": 2011.28, + "end": 2011.44, + "probability": 0.98828125 + }, + { + "word": " can", + "start": 2011.44, + "end": 2011.6, + "probability": 1.0 + }, + { + "word": " build", + "start": 2011.6, + "end": 2011.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2011.96, + "end": 2012.1, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2012.1, + "end": 2012.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 2012.34, + "end": 2012.64, + "probability": 1.0 + }, + { + "word": " does", + "start": 2012.64, + "end": 2012.86, + "probability": 1.0 + }, + { + "word": " what", + "start": 2012.86, + "end": 2013.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 2013.0, + "end": 2013.12, + "probability": 1.0 + }, + { + "word": " want", + "start": 2013.12, + "end": 2013.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 2013.24, + "end": 2013.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 2013.34, + "end": 2013.44, + "probability": 1.0 + }, + { + "word": " do,", + "start": 2013.44, + "end": 2013.6, + "probability": 1.0 + } + ] + }, + { + "id": 802, + "text": "and it's not going to cost you the cost of a new car.", + "start": 2013.66, + "end": 2016.02, + "words": [ + { + "word": " and", + "start": 2013.66, + "end": 2013.78, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2013.78, + "end": 2013.92, + "probability": 1.0 + }, + { + "word": " not", + "start": 2013.92, + "end": 2014.06, + "probability": 1.0 + }, + { + "word": " going", + "start": 2014.06, + "end": 2014.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2014.16, + "end": 2014.34, + "probability": 1.0 + }, + { + "word": " cost", + "start": 2014.34, + "end": 2014.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 2014.82, + "end": 2015.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 2015.0, + "end": 2015.28, + "probability": 1.0 + }, + { + "word": " cost", + "start": 2015.28, + "end": 2015.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 2015.52, + "end": 2015.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2015.62, + "end": 2015.7, + "probability": 1.0 + }, + { + "word": " new", + "start": 2015.7, + "end": 2015.8, + "probability": 1.0 + }, + { + "word": " car.", + "start": 2015.8, + "end": 2016.02, + "probability": 1.0 + } + ] + }, + { + "id": 803, + "text": "Right.", + "start": 2016.42, + "end": 2016.8, + "words": [ + { + "word": " Right.", + "start": 2016.42, + "end": 2016.8, + "probability": 0.99072265625 + } + ] + }, + { + "id": 804, + "text": "Yeah, because you can easily, if you wanted to build a top end, like,", + "start": 2017.0, + "end": 2021.9, + "words": [ + { + "word": " Yeah,", + "start": 2017.0, + "end": 2017.4, + "probability": 0.99755859375 + }, + { + "word": " because", + "start": 2017.48, + "end": 2017.64, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2017.64, + "end": 2018.06, + "probability": 1.0 + }, + { + "word": " can", + "start": 2018.06, + "end": 2018.4, + "probability": 1.0 + }, + { + "word": " easily,", + "start": 2018.4, + "end": 2019.22, + "probability": 1.0 + }, + { + "word": " if", + "start": 2019.38, + "end": 2019.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 2019.6, + "end": 2019.7, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 2019.7, + "end": 2019.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2019.96, + "end": 2020.08, + "probability": 1.0 + }, + { + "word": " build", + "start": 2020.08, + "end": 2020.32, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2020.32, + "end": 2020.64, + "probability": 1.0 + }, + { + "word": " top", + "start": 2020.64, + "end": 2020.98, + "probability": 1.0 + }, + { + "word": " end,", + "start": 2020.98, + "end": 2021.48, + "probability": 0.058349609375 + }, + { + "word": " like,", + "start": 2021.5, + "end": 2021.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 805, + "text": "really high end machine, an Intel based machine, you can drop four grand easy.", + "start": 2021.9, + "end": 2027.84, + "words": [ + { + "word": " really", + "start": 2021.9, + "end": 2022.58, + "probability": 0.1290283203125 + }, + { + "word": " high", + "start": 2022.58, + "end": 2023.14, + "probability": 0.99658203125 + }, + { + "word": " end", + "start": 2023.14, + "end": 2023.46, + "probability": 0.19921875 + }, + { + "word": " machine,", + "start": 2023.46, + "end": 2024.64, + "probability": 0.98779296875 + }, + { + "word": " an", + "start": 2024.86, + "end": 2024.96, + "probability": 0.65283203125 + }, + { + "word": " Intel", + "start": 2024.96, + "end": 2025.2, + "probability": 0.94873046875 + }, + { + "word": " based", + "start": 2025.2, + "end": 2025.42, + "probability": 0.88916015625 + }, + { + "word": " machine,", + "start": 2025.42, + "end": 2025.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 2025.88, + "end": 2026.06, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 2026.06, + "end": 2026.38, + "probability": 0.98779296875 + }, + { + "word": " drop", + "start": 2026.38, + "end": 2026.98, + "probability": 0.9951171875 + }, + { + "word": " four", + "start": 2026.98, + "end": 2027.22, + "probability": 0.705078125 + }, + { + "word": " grand", + "start": 2027.22, + "end": 2027.5, + "probability": 1.0 + }, + { + "word": " easy.", + "start": 2027.5, + "end": 2027.84, + "probability": 0.9775390625 + } + ] + }, + { + "id": 806, + "text": "Yeah.", + "start": 2028.16, + "end": 2028.48, + "words": [ + { + "word": " Yeah.", + "start": 2028.16, + "end": 2028.48, + "probability": 0.459228515625 + } + ] + }, + { + "id": 807, + "text": "And especially if you're doing, like, you decide that you want to be a professional gamer,", + "start": 2028.78, + "end": 2033.38, + "words": [ + { + "word": " And", + "start": 2028.78, + "end": 2029.18, + "probability": 0.70361328125 + }, + { + "word": " especially", + "start": 2029.18, + "end": 2029.94, + "probability": 0.8916015625 + }, + { + "word": " if", + "start": 2029.94, + "end": 2030.22, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 2030.22, + "end": 2030.36, + "probability": 0.9619140625 + }, + { + "word": " doing,", + "start": 2030.36, + "end": 2030.56, + "probability": 0.99658203125 + }, + { + "word": " like,", + "start": 2030.66, + "end": 2031.34, + "probability": 0.94921875 + }, + { + "word": " you", + "start": 2031.4, + "end": 2031.52, + "probability": 0.998046875 + }, + { + "word": " decide", + "start": 2031.52, + "end": 2031.9, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 2031.9, + "end": 2032.26, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2032.26, + "end": 2032.34, + "probability": 1.0 + }, + { + "word": " want", + "start": 2032.34, + "end": 2032.46, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2032.46, + "end": 2032.54, + "probability": 1.0 + }, + { + "word": " be", + "start": 2032.54, + "end": 2032.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2032.62, + "end": 2032.7, + "probability": 1.0 + }, + { + "word": " professional", + "start": 2032.7, + "end": 2033.02, + "probability": 0.998046875 + }, + { + "word": " gamer,", + "start": 2033.02, + "end": 2033.38, + "probability": 0.998046875 + } + ] + }, + { + "id": 808, + "text": "and you've got three, you know, 1080s in there or something like that.", + "start": 2033.44, + "end": 2036.46, + "words": [ + { + "word": " and", + "start": 2033.44, + "end": 2033.56, + "probability": 0.998046875 + }, + { + "word": " you've", + "start": 2033.56, + "end": 2033.66, + "probability": 1.0 + }, + { + "word": " got", + "start": 2033.66, + "end": 2033.8, + "probability": 1.0 + }, + { + "word": " three,", + "start": 2033.8, + "end": 2034.3, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2034.38, + "end": 2034.74, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2034.74, + "end": 2034.92, + "probability": 1.0 + }, + { + "word": " 1080s", + "start": 2034.92, + "end": 2035.48, + "probability": 0.984375 + }, + { + "word": " in", + "start": 2035.48, + "end": 2035.6, + "probability": 1.0 + }, + { + "word": " there", + "start": 2035.6, + "end": 2035.74, + "probability": 1.0 + }, + { + "word": " or", + "start": 2035.74, + "end": 2035.86, + "probability": 0.4072265625 + }, + { + "word": " something", + "start": 2035.86, + "end": 2036.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 2036.06, + "end": 2036.28, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 2036.28, + "end": 2036.46, + "probability": 1.0 + } + ] + }, + { + "id": 809, + "text": "Yeah, and I mean, that's the other thing I was going to say is that I'm excited about a graphics refresh for AMD as well,", + "start": 2036.66, + "end": 2041.18, + "words": [ + { + "word": " Yeah,", + "start": 2036.66, + "end": 2036.96, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 2036.96, + "end": 2037.06, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 2037.06, + "end": 2037.12, + "probability": 0.982421875 + }, + { + "word": " mean,", + "start": 2037.12, + "end": 2037.28, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2037.3, + "end": 2037.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 2037.68, + "end": 2037.76, + "probability": 1.0 + }, + { + "word": " other", + "start": 2037.76, + "end": 2037.92, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2037.92, + "end": 2038.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 2038.06, + "end": 2038.14, + "probability": 0.96044921875 + }, + { + "word": " was", + "start": 2038.14, + "end": 2038.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 2038.24, + "end": 2038.4, + "probability": 0.9619140625 + }, + { + "word": " to", + "start": 2038.4, + "end": 2038.46, + "probability": 1.0 + }, + { + "word": " say", + "start": 2038.46, + "end": 2038.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 2038.62, + "end": 2038.74, + "probability": 0.4072265625 + }, + { + "word": " that", + "start": 2038.74, + "end": 2038.86, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2038.86, + "end": 2039.06, + "probability": 0.9990234375 + }, + { + "word": " excited", + "start": 2039.06, + "end": 2039.3, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2039.3, + "end": 2039.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 2039.58, + "end": 2039.72, + "probability": 0.99755859375 + }, + { + "word": " graphics", + "start": 2039.72, + "end": 2040.06, + "probability": 0.9990234375 + }, + { + "word": " refresh", + "start": 2040.06, + "end": 2040.42, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2040.42, + "end": 2040.64, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 2040.64, + "end": 2040.84, + "probability": 1.0 + }, + { + "word": " as", + "start": 2040.84, + "end": 2041.02, + "probability": 0.99853515625 + }, + { + "word": " well,", + "start": 2041.02, + "end": 2041.18, + "probability": 1.0 + } + ] + }, + { + "id": 810, + "text": "because I'm certainly not a fan of their graphics cards for the most part.", + "start": 2041.22, + "end": 2044.54, + "words": [ + { + "word": " because", + "start": 2041.22, + "end": 2041.42, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2041.42, + "end": 2041.92, + "probability": 1.0 + }, + { + "word": " certainly", + "start": 2041.92, + "end": 2042.22, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 2042.22, + "end": 2042.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2042.42, + "end": 2042.56, + "probability": 1.0 + }, + { + "word": " fan", + "start": 2042.56, + "end": 2042.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 2042.76, + "end": 2043.04, + "probability": 1.0 + }, + { + "word": " their", + "start": 2043.04, + "end": 2043.24, + "probability": 0.99951171875 + }, + { + "word": " graphics", + "start": 2043.24, + "end": 2043.6, + "probability": 0.99951171875 + }, + { + "word": " cards", + "start": 2043.6, + "end": 2043.88, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2043.88, + "end": 2044.08, + "probability": 0.939453125 + }, + { + "word": " the", + "start": 2044.08, + "end": 2044.16, + "probability": 1.0 + }, + { + "word": " most", + "start": 2044.16, + "end": 2044.34, + "probability": 0.99462890625 + }, + { + "word": " part.", + "start": 2044.34, + "end": 2044.54, + "probability": 1.0 + } + ] + }, + { + "id": 811, + "text": "You know, like, the RX 480 is like a cool card if you need budget VR kind of stuff.", + "start": 2045.24, + "end": 2050.24, + "words": [ + { + "word": " You", + "start": 2045.24, + "end": 2045.64, + "probability": 0.857421875 + }, + { + "word": " know,", + "start": 2045.64, + "end": 2045.82, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2045.84, + "end": 2045.98, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 2046.04, + "end": 2046.22, + "probability": 1.0 + }, + { + "word": " RX", + "start": 2046.22, + "end": 2047.1, + "probability": 0.99658203125 + }, + { + "word": " 480", + "start": 2047.1, + "end": 2047.54, + "probability": 0.974609375 + }, + { + "word": " is", + "start": 2047.54, + "end": 2047.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 2047.74, + "end": 2047.84, + "probability": 0.7138671875 + }, + { + "word": " a", + "start": 2047.84, + "end": 2047.94, + "probability": 0.998046875 + }, + { + "word": " cool", + "start": 2047.94, + "end": 2048.12, + "probability": 1.0 + }, + { + "word": " card", + "start": 2048.12, + "end": 2048.42, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2048.42, + "end": 2048.72, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 2048.72, + "end": 2048.84, + "probability": 1.0 + }, + { + "word": " need", + "start": 2048.84, + "end": 2048.98, + "probability": 1.0 + }, + { + "word": " budget", + "start": 2048.98, + "end": 2049.26, + "probability": 0.99072265625 + }, + { + "word": " VR", + "start": 2049.26, + "end": 2049.58, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2049.58, + "end": 2049.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 2049.9, + "end": 2050.04, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2050.04, + "end": 2050.24, + "probability": 1.0 + } + ] + }, + { + "id": 812, + "text": "Right.", + "start": 2050.44, + "end": 2050.66, + "words": [ + { + "word": " Right.", + "start": 2050.44, + "end": 2050.66, + "probability": 0.98291015625 + } + ] + }, + { + "id": 813, + "text": "But if you're a serious gamer or care about graphics at all, you're going the GTX route for sure.", + "start": 2050.66, + "end": 2055.92, + "words": [ + { + "word": " But", + "start": 2050.66, + "end": 2050.82, + "probability": 0.7958984375 + }, + { + "word": " if", + "start": 2050.82, + "end": 2051.28, + "probability": 0.99462890625 + }, + { + "word": " you're", + "start": 2051.28, + "end": 2051.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 2051.56, + "end": 2051.7, + "probability": 1.0 + }, + { + "word": " serious", + "start": 2051.7, + "end": 2052.06, + "probability": 1.0 + }, + { + "word": " gamer", + "start": 2052.06, + "end": 2052.68, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2052.68, + "end": 2053.02, + "probability": 0.99609375 + }, + { + "word": " care", + "start": 2053.02, + "end": 2053.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 2053.2, + "end": 2053.44, + "probability": 1.0 + }, + { + "word": " graphics", + "start": 2053.44, + "end": 2053.88, + "probability": 1.0 + }, + { + "word": " at", + "start": 2053.88, + "end": 2054.04, + "probability": 1.0 + }, + { + "word": " all,", + "start": 2054.04, + "end": 2054.18, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2054.28, + "end": 2054.52, + "probability": 1.0 + }, + { + "word": " going", + "start": 2054.52, + "end": 2054.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 2054.7, + "end": 2054.9, + "probability": 0.9990234375 + }, + { + "word": " GTX", + "start": 2054.9, + "end": 2055.36, + "probability": 0.9990234375 + }, + { + "word": " route", + "start": 2055.36, + "end": 2055.54, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 2055.54, + "end": 2055.72, + "probability": 0.9453125 + }, + { + "word": " sure.", + "start": 2055.72, + "end": 2055.92, + "probability": 1.0 + } + ] + }, + { + "id": 814, + "text": "Right.", + "start": 2056.12, + "end": 2056.3, + "words": [ + { + "word": " Right.", + "start": 2056.12, + "end": 2056.3, + "probability": 0.35009765625 + } + ] + }, + { + "id": 815, + "text": "NVIDIA all the way.", + "start": 2056.58, + "end": 2057.68, + "words": [ + { + "word": " NVIDIA", + "start": 2056.58, + "end": 2056.94, + "probability": 0.9072265625 + }, + { + "word": " all", + "start": 2056.94, + "end": 2057.24, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2057.24, + "end": 2057.42, + "probability": 1.0 + }, + { + "word": " way.", + "start": 2057.42, + "end": 2057.68, + "probability": 1.0 + } + ] + }, + { + "id": 816, + "text": "Let's go ahead and take a call here.", + "start": 2058.2, + "end": 2059.18, + "words": [ + { + "word": " Let's", + "start": 2058.2, + "end": 2058.56, + "probability": 0.74365234375 + }, + { + "word": " go", + "start": 2058.56, + "end": 2058.6, + "probability": 0.99853515625 + }, + { + "word": " ahead", + "start": 2058.6, + "end": 2058.7, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2058.7, + "end": 2058.76, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 2058.76, + "end": 2058.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2058.84, + "end": 2058.94, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 2058.94, + "end": 2059.08, + "probability": 0.90478515625 + }, + { + "word": " here.", + "start": 2059.08, + "end": 2059.18, + "probability": 0.90087890625 + } + ] + }, + { + "id": 817, + "text": "Let's talk to Ron.", + "start": 2059.2, + "end": 2059.7, + "words": [ + { + "word": " Let's", + "start": 2059.2, + "end": 2059.32, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 2059.32, + "end": 2059.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 2059.44, + "end": 2059.54, + "probability": 1.0 + }, + { + "word": " Ron.", + "start": 2059.54, + "end": 2059.7, + "probability": 1.0 + } + ] + }, + { + "id": 818, + "text": "Hey, Ron, how are you?", + "start": 2059.76, + "end": 2060.46, + "words": [ + { + "word": " Hey,", + "start": 2059.76, + "end": 2059.88, + "probability": 0.99853515625 + }, + { + "word": " Ron,", + "start": 2059.9, + "end": 2060.04, + "probability": 1.0 + }, + { + "word": " how", + "start": 2060.08, + "end": 2060.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 2060.18, + "end": 2060.32, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2060.32, + "end": 2060.46, + "probability": 1.0 + } + ] + }, + { + "id": 819, + "text": "I'm doing good.", + "start": 2061.7, + "end": 2062.44, + "words": [ + { + "word": " I'm", + "start": 2061.7, + "end": 2062.06, + "probability": 0.791015625 + }, + { + "word": " doing", + "start": 2062.06, + "end": 2062.16, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 2062.16, + "end": 2062.44, + "probability": 1.0 + } + ] + }, + { + "id": 820, + "text": "Hope you're doing good.", + "start": 2062.58, + "end": 2063.26, + "words": [ + { + "word": " Hope", + "start": 2062.58, + "end": 2062.78, + "probability": 0.935546875 + }, + { + "word": " you're", + "start": 2062.78, + "end": 2062.92, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2062.92, + "end": 2063.04, + "probability": 1.0 + }, + { + "word": " good.", + "start": 2063.04, + "end": 2063.26, + "probability": 1.0 + } + ] + }, + { + "id": 821, + "text": "We are.", + "start": 2063.6, + "end": 2064.14, + "words": [ + { + "word": " We", + "start": 2063.6, + "end": 2063.96, + "probability": 0.998046875 + }, + { + "word": " are.", + "start": 2063.96, + "end": 2064.14, + "probability": 1.0 + } + ] + }, + { + "id": 822, + "text": "I am anyway.", + "start": 2064.24, + "end": 2064.98, + "words": [ + { + "word": " I", + "start": 2064.24, + "end": 2064.58, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 2064.58, + "end": 2064.78, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 2064.78, + "end": 2064.98, + "probability": 0.75439453125 + } + ] + }, + { + "id": 823, + "text": "How are you doing, Ron?", + "start": 2065.06, + "end": 2065.66, + "words": [ + { + "word": " How", + "start": 2065.06, + "end": 2065.2, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2065.2, + "end": 2065.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 2065.28, + "end": 2065.32, + "probability": 1.0 + }, + { + "word": " doing,", + "start": 2065.32, + "end": 2065.48, + "probability": 1.0 + }, + { + "word": " Ron?", + "start": 2065.5, + "end": 2065.66, + "probability": 0.578125 + } + ] + }, + { + "id": 824, + "text": "Not bad.", + "start": 2065.76, + "end": 2066.04, + "words": [ + { + "word": " Not", + "start": 2065.76, + "end": 2065.9, + "probability": 0.99853515625 + }, + { + "word": " bad.", + "start": 2065.9, + "end": 2066.04, + "probability": 1.0 + } + ] + }, + { + "id": 825, + "text": "All right.", + "start": 2066.14, + "end": 2066.36, + "words": [ + { + "word": " All", + "start": 2066.14, + "end": 2066.28, + "probability": 0.88134765625 + }, + { + "word": " right.", + "start": 2066.28, + "end": 2066.36, + "probability": 1.0 + } + ] + }, + { + "id": 826, + "text": "Yep.", + "start": 2066.82, + "end": 2067.18, + "words": [ + { + "word": " Yep.", + "start": 2066.82, + "end": 2067.18, + "probability": 0.98974609375 + } + ] + }, + { + "id": 827, + "text": "Status check complete.", + "start": 2067.78, + "end": 2068.64, + "words": [ + { + "word": " Status", + "start": 2067.78, + "end": 2068.14, + "probability": 0.99658203125 + }, + { + "word": " check", + "start": 2068.14, + "end": 2068.36, + "probability": 0.99951171875 + }, + { + "word": " complete.", + "start": 2068.36, + "end": 2068.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 828, + "text": "Cool.", + "start": 2069.64, + "end": 2070.0, + "words": [ + { + "word": " Cool.", + "start": 2069.64, + "end": 2070.0, + "probability": 1.0 + } + ] + }, + { + "id": 829, + "text": "Good.", + "start": 2070.3, + "end": 2070.66, + "words": [ + { + "word": " Good.", + "start": 2070.3, + "end": 2070.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 830, + "text": "It passes.", + "start": 2070.8, + "end": 2071.28, + "words": [ + { + "word": " It", + "start": 2070.8, + "end": 2070.98, + "probability": 0.98046875 + }, + { + "word": " passes.", + "start": 2070.98, + "end": 2071.28, + "probability": 1.0 + } + ] + }, + { + "id": 831, + "text": "Now, is it a privacy concern to log into a website that's not Facebook with my phone?", + "start": 2073.4599999999996, + "end": 2080.64, + "words": [ + { + "word": " Now,", + "start": 2073.4599999999996, + "end": 2073.8199999999997, + "probability": 0.9892578125 + }, + { + "word": " is", + "start": 2073.8199999999997, + "end": 2074.18, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2074.18, + "end": 2074.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 2074.44, + "end": 2074.62, + "probability": 1.0 + }, + { + "word": " privacy", + "start": 2074.62, + "end": 2074.96, + "probability": 0.99951171875 + }, + { + "word": " concern", + "start": 2074.96, + "end": 2075.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 2075.3, + "end": 2076.16, + "probability": 1.0 + }, + { + "word": " log", + "start": 2076.16, + "end": 2076.66, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2076.66, + "end": 2076.94, + "probability": 0.97900390625 + }, + { + "word": " a", + "start": 2076.94, + "end": 2077.22, + "probability": 1.0 + }, + { + "word": " website", + "start": 2077.22, + "end": 2078.06, + "probability": 0.98681640625 + }, + { + "word": " that's", + "start": 2078.06, + "end": 2078.72, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 2078.72, + "end": 2078.96, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2078.96, + "end": 2079.5, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2079.5, + "end": 2080.36, + "probability": 0.927734375 + }, + { + "word": " my", + "start": 2080.36, + "end": 2080.62, + "probability": 0.257568359375 + }, + { + "word": " phone?", + "start": 2080.62, + "end": 2080.64, + "probability": 0.030303955078125 + } + ] + }, + { + "id": 832, + "text": "My Facebook email and password.", + "start": 2080.64, + "end": 2084.98, + "words": [ + { + "word": " My", + "start": 2080.64, + "end": 2080.7, + "probability": 0.81884765625 + }, + { + "word": " Facebook", + "start": 2080.7, + "end": 2081.4, + "probability": 0.994140625 + }, + { + "word": " email", + "start": 2081.4, + "end": 2082.88, + "probability": 0.94287109375 + }, + { + "word": " and", + "start": 2082.88, + "end": 2083.22, + "probability": 0.9931640625 + }, + { + "word": " password.", + "start": 2083.22, + "end": 2084.98, + "probability": 0.94091796875 + } + ] + }, + { + "id": 833, + "text": "All right.", + "start": 2085.92, + "end": 2086.54, + "words": [ + { + "word": " All", + "start": 2085.92, + "end": 2086.4, + "probability": 0.92578125 + }, + { + "word": " right.", + "start": 2086.4, + "end": 2086.54, + "probability": 1.0 + } + ] + }, + { + "id": 834, + "text": "So security concern, not so much.", + "start": 2086.56, + "end": 2089.4, + "words": [ + { + "word": " So", + "start": 2086.56, + "end": 2086.82, + "probability": 0.9697265625 + }, + { + "word": " security", + "start": 2086.82, + "end": 2088.1, + "probability": 0.8681640625 + }, + { + "word": " concern,", + "start": 2088.1, + "end": 2088.48, + "probability": 0.98876953125 + }, + { + "word": " not", + "start": 2088.7, + "end": 2088.98, + "probability": 1.0 + }, + { + "word": " so", + "start": 2088.98, + "end": 2089.16, + "probability": 1.0 + }, + { + "word": " much.", + "start": 2089.16, + "end": 2089.4, + "probability": 1.0 + } + ] + }, + { + "id": 835, + "text": "Privacy concern, yes.", + "start": 2089.44, + "end": 2090.74, + "words": [ + { + "word": " Privacy", + "start": 2089.44, + "end": 2089.88, + "probability": 1.0 + }, + { + "word": " concern,", + "start": 2089.88, + "end": 2090.2, + "probability": 1.0 + }, + { + "word": " yes.", + "start": 2090.46, + "end": 2090.74, + "probability": 1.0 + } + ] + }, + { + "id": 836, + "text": "So those are two different things.", + "start": 2092.32, + "end": 2094.18, + "words": [ + { + "word": " So", + "start": 2092.32, + "end": 2092.8, + "probability": 0.99560546875 + }, + { + "word": " those", + "start": 2092.8, + "end": 2093.2, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2093.2, + "end": 2093.56, + "probability": 1.0 + }, + { + "word": " two", + "start": 2093.56, + "end": 2093.68, + "probability": 1.0 + }, + { + "word": " different", + "start": 2093.68, + "end": 2093.88, + "probability": 1.0 + }, + { + "word": " things.", + "start": 2093.88, + "end": 2094.18, + "probability": 1.0 + } + ] + }, + { + "id": 837, + "text": "But privacy, yeah.", + "start": 2094.3, + "end": 2096.1, + "words": [ + { + "word": " But", + "start": 2094.3, + "end": 2094.62, + "probability": 0.998046875 + }, + { + "word": " privacy,", + "start": 2094.62, + "end": 2095.68, + "probability": 0.98046875 + }, + { + "word": " yeah.", + "start": 2095.98, + "end": 2096.1, + "probability": 0.98583984375 + } + ] + }, + { + "id": 838, + "text": "I mean, if you want to be private, you're not logging into anything with a Facebook login.", + "start": 2096.18, + "end": 2100.08, + "words": [ + { + "word": " I", + "start": 2096.18, + "end": 2096.28, + "probability": 0.9716796875 + }, + { + "word": " mean,", + "start": 2096.28, + "end": 2096.36, + "probability": 1.0 + }, + { + "word": " if", + "start": 2096.38, + "end": 2096.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 2096.88, + "end": 2097.04, + "probability": 1.0 + }, + { + "word": " want", + "start": 2097.04, + "end": 2097.24, + "probability": 0.95947265625 + }, + { + "word": " to", + "start": 2097.24, + "end": 2097.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 2097.48, + "end": 2097.58, + "probability": 1.0 + }, + { + "word": " private,", + "start": 2097.58, + "end": 2098.04, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2098.12, + "end": 2098.28, + "probability": 1.0 + }, + { + "word": " not", + "start": 2098.28, + "end": 2098.42, + "probability": 1.0 + }, + { + "word": " logging", + "start": 2098.42, + "end": 2098.78, + "probability": 0.9990234375 + }, + { + "word": " into", + "start": 2098.78, + "end": 2098.96, + "probability": 0.98291015625 + }, + { + "word": " anything", + "start": 2098.96, + "end": 2099.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 2099.22, + "end": 2099.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 2099.46, + "end": 2099.56, + "probability": 0.82275390625 + }, + { + "word": " Facebook", + "start": 2099.56, + "end": 2099.8, + "probability": 1.0 + }, + { + "word": " login.", + "start": 2099.8, + "end": 2100.08, + "probability": 0.95458984375 + } + ] + }, + { + "id": 839, + "text": "When you log in with Facebook, Facebook sees exactly what you're doing.", + "start": 2100.08, + "end": 2103.02, + "words": [ + { + "word": " When", + "start": 2100.08, + "end": 2100.12, + "probability": 0.9814453125 + }, + { + "word": " you", + "start": 2100.12, + "end": 2100.14, + "probability": 1.0 + }, + { + "word": " log", + "start": 2100.14, + "end": 2100.34, + "probability": 0.9912109375 + }, + { + "word": " in", + "start": 2100.34, + "end": 2100.52, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2100.52, + "end": 2100.66, + "probability": 1.0 + }, + { + "word": " Facebook,", + "start": 2100.66, + "end": 2101.0, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2101.1, + "end": 2101.42, + "probability": 0.9990234375 + }, + { + "word": " sees", + "start": 2101.42, + "end": 2101.74, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 2101.74, + "end": 2102.14, + "probability": 1.0 + }, + { + "word": " what", + "start": 2102.14, + "end": 2102.66, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2102.66, + "end": 2102.78, + "probability": 1.0 + }, + { + "word": " doing.", + "start": 2102.78, + "end": 2103.02, + "probability": 1.0 + } + ] + }, + { + "id": 840, + "text": "They can see everything.", + "start": 2103.1, + "end": 2103.7, + "words": [ + { + "word": " They", + "start": 2103.1, + "end": 2103.18, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2103.18, + "end": 2103.26, + "probability": 1.0 + }, + { + "word": " see", + "start": 2103.26, + "end": 2103.42, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 2103.42, + "end": 2103.7, + "probability": 1.0 + } + ] + }, + { + "id": 841, + "text": "Just know that when you do it.", + "start": 2103.96, + "end": 2105.74, + "words": [ + { + "word": " Just", + "start": 2103.96, + "end": 2104.44, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 2104.44, + "end": 2104.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 2104.66, + "end": 2104.92, + "probability": 1.0 + }, + { + "word": " when", + "start": 2104.92, + "end": 2105.32, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2105.32, + "end": 2105.44, + "probability": 1.0 + }, + { + "word": " do", + "start": 2105.44, + "end": 2105.58, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2105.58, + "end": 2105.74, + "probability": 1.0 + } + ] + }, + { + "id": 842, + "text": "Okay.", + "start": 2106.96, + "end": 2107.44, + "words": [ + { + "word": " Okay.", + "start": 2106.96, + "end": 2107.44, + "probability": 0.96826171875 + } + ] + }, + { + "id": 843, + "text": "All right.", + "start": 2107.56, + "end": 2107.66, + "words": [ + { + "word": " All", + "start": 2107.56, + "end": 2107.56, + "probability": 0.004062652587890625 + }, + { + "word": " right.", + "start": 2107.56, + "end": 2107.66, + "probability": 1.0 + } + ] + }, + { + "id": 844, + "text": "Now, you can...", + "start": 2107.82, + "end": 2109.06, + "words": [ + { + "word": " Now,", + "start": 2107.82, + "end": 2108.18, + "probability": 0.95849609375 + }, + { + "word": " you", + "start": 2108.28, + "end": 2108.44, + "probability": 0.9326171875 + }, + { + "word": " can...", + "start": 2108.44, + "end": 2109.06, + "probability": 0.615234375 + } + ] + }, + { + "id": 845, + "text": "You can...", + "start": 2109.06, + "end": 2109.78, + "words": [ + { + "word": " You", + "start": 2109.06, + "end": 2109.52, + "probability": 0.05126953125 + }, + { + "word": " can...", + "start": 2109.52, + "end": 2109.78, + "probability": 0.958984375 + } + ] + }, + { + "id": 846, + "text": "Even if you're doing something like a VPN, though, that allows that traffic to be reported", + "start": 2109.78, + "end": 2116.06, + "words": [ + { + "word": " Even", + "start": 2109.78, + "end": 2109.94, + "probability": 0.85791015625 + }, + { + "word": " if", + "start": 2109.94, + "end": 2110.44, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2110.44, + "end": 2110.58, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 2110.58, + "end": 2110.76, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2110.76, + "end": 2111.08, + "probability": 1.0 + }, + { + "word": " like", + "start": 2111.08, + "end": 2111.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 2111.36, + "end": 2111.42, + "probability": 1.0 + }, + { + "word": " VPN,", + "start": 2111.42, + "end": 2111.78, + "probability": 1.0 + }, + { + "word": " though,", + "start": 2111.9, + "end": 2112.1, + "probability": 0.98583984375 + }, + { + "word": " that", + "start": 2112.22, + "end": 2113.1, + "probability": 0.91357421875 + }, + { + "word": " allows", + "start": 2113.1, + "end": 2113.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 2113.76, + "end": 2114.52, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 2114.52, + "end": 2115.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 2115.08, + "end": 2115.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 2115.48, + "end": 2115.62, + "probability": 1.0 + }, + { + "word": " reported", + "start": 2115.62, + "end": 2116.06, + "probability": 1.0 + } + ] + }, + { + "id": 847, + "text": "to Facebook.", + "start": 2116.06, + "end": 2116.68, + "words": [ + { + "word": " to", + "start": 2116.06, + "end": 2116.34, + "probability": 1.0 + }, + { + "word": " Facebook.", + "start": 2116.34, + "end": 2116.68, + "probability": 1.0 + } + ] + }, + { + "id": 848, + "text": "So they at least...", + "start": 2116.74, + "end": 2117.58, + "words": [ + { + "word": " So", + "start": 2116.74, + "end": 2116.94, + "probability": 0.7548828125 + }, + { + "word": " they", + "start": 2116.94, + "end": 2117.06, + "probability": 0.81396484375 + }, + { + "word": " at", + "start": 2117.06, + "end": 2117.26, + "probability": 0.1224365234375 + }, + { + "word": " least...", + "start": 2117.26, + "end": 2117.58, + "probability": 0.501953125 + } + ] + }, + { + "id": 849, + "text": "They know something about your account.", + "start": 2117.58, + "end": 2119.2, + "words": [ + { + "word": " They", + "start": 2117.58, + "end": 2117.82, + "probability": 0.951171875 + }, + { + "word": " know", + "start": 2117.82, + "end": 2118.12, + "probability": 1.0 + }, + { + "word": " something", + "start": 2118.12, + "end": 2118.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 2118.4, + "end": 2118.74, + "probability": 1.0 + }, + { + "word": " your", + "start": 2118.74, + "end": 2118.96, + "probability": 1.0 + }, + { + "word": " account.", + "start": 2118.96, + "end": 2119.2, + "probability": 1.0 + } + ] + }, + { + "id": 850, + "text": "They know that you have an account there.", + "start": 2119.26, + "end": 2120.58, + "words": [ + { + "word": " They", + "start": 2119.26, + "end": 2119.34, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 2119.34, + "end": 2119.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2119.48, + "end": 2119.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 2119.58, + "end": 2119.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 2119.8, + "end": 2120.02, + "probability": 1.0 + }, + { + "word": " an", + "start": 2120.02, + "end": 2120.14, + "probability": 1.0 + }, + { + "word": " account", + "start": 2120.14, + "end": 2120.3, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2120.3, + "end": 2120.58, + "probability": 1.0 + } + ] + }, + { + "id": 851, + "text": "And so if you're concerned about Facebook being able to collect a bunch of information", + "start": 2121.22, + "end": 2125.42, + "words": [ + { + "word": " And", + "start": 2121.22, + "end": 2121.62, + "probability": 0.98388671875 + }, + { + "word": " so", + "start": 2121.62, + "end": 2121.86, + "probability": 1.0 + }, + { + "word": " if", + "start": 2121.86, + "end": 2122.04, + "probability": 0.986328125 + }, + { + "word": " you're", + "start": 2122.04, + "end": 2122.16, + "probability": 1.0 + }, + { + "word": " concerned", + "start": 2122.16, + "end": 2122.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 2122.4, + "end": 2122.74, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2122.74, + "end": 2123.28, + "probability": 1.0 + }, + { + "word": " being", + "start": 2123.28, + "end": 2123.7, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 2123.7, + "end": 2123.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2123.92, + "end": 2124.08, + "probability": 1.0 + }, + { + "word": " collect", + "start": 2124.08, + "end": 2124.68, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2124.68, + "end": 2124.88, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 2124.88, + "end": 2125.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 2125.02, + "end": 2125.12, + "probability": 1.0 + }, + { + "word": " information", + "start": 2125.12, + "end": 2125.42, + "probability": 1.0 + } + ] + }, + { + "id": 852, + "text": "about you, you don't log in with Facebook.", + "start": 2125.42, + "end": 2127.36, + "words": [ + { + "word": " about", + "start": 2125.42, + "end": 2125.74, + "probability": 0.99951171875 + }, + { + "word": " you,", + "start": 2125.74, + "end": 2126.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 2126.06, + "end": 2126.34, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2126.34, + "end": 2126.54, + "probability": 1.0 + }, + { + "word": " log", + "start": 2126.54, + "end": 2126.7, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 2126.7, + "end": 2126.86, + "probability": 1.0 + }, + { + "word": " with", + "start": 2126.86, + "end": 2127.04, + "probability": 1.0 + }, + { + "word": " Facebook.", + "start": 2127.04, + "end": 2127.36, + "probability": 1.0 + } + ] + }, + { + "id": 853, + "text": "Now, when it comes to security, if you're worried about that website having your Facebook", + "start": 2127.6, + "end": 2131.26, + "words": [ + { + "word": " Now,", + "start": 2127.6, + "end": 2127.94, + "probability": 0.99853515625 + }, + { + "word": " when", + "start": 2127.98, + "end": 2128.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 2128.08, + "end": 2128.16, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2128.16, + "end": 2128.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 2128.34, + "end": 2128.52, + "probability": 1.0 + }, + { + "word": " security,", + "start": 2128.52, + "end": 2128.86, + "probability": 1.0 + }, + { + "word": " if", + "start": 2129.06, + "end": 2129.26, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 2129.26, + "end": 2129.4, + "probability": 1.0 + }, + { + "word": " worried", + "start": 2129.4, + "end": 2129.6, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2129.6, + "end": 2129.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 2129.78, + "end": 2130.04, + "probability": 1.0 + }, + { + "word": " website", + "start": 2130.04, + "end": 2130.34, + "probability": 0.99853515625 + }, + { + "word": " having", + "start": 2130.34, + "end": 2130.64, + "probability": 0.998046875 + }, + { + "word": " your", + "start": 2130.64, + "end": 2130.94, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2130.94, + "end": 2131.26, + "probability": 1.0 + } + ] + }, + { + "id": 854, + "text": "username and password, in any legit case, that's not how it works.", + "start": 2131.26, + "end": 2135.16, + "words": [ + { + "word": " username", + "start": 2131.26, + "end": 2131.56, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2131.56, + "end": 2131.76, + "probability": 1.0 + }, + { + "word": " password,", + "start": 2131.76, + "end": 2132.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 2132.24, + "end": 2132.64, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 2132.64, + "end": 2133.18, + "probability": 0.72119140625 + }, + { + "word": " legit", + "start": 2133.18, + "end": 2133.9, + "probability": 1.0 + }, + { + "word": " case,", + "start": 2133.9, + "end": 2134.22, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2134.3, + "end": 2134.52, + "probability": 1.0 + }, + { + "word": " not", + "start": 2134.52, + "end": 2134.66, + "probability": 1.0 + }, + { + "word": " how", + "start": 2134.66, + "end": 2134.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 2134.8, + "end": 2134.92, + "probability": 1.0 + }, + { + "word": " works.", + "start": 2134.92, + "end": 2135.16, + "probability": 1.0 + } + ] + }, + { + "id": 855, + "text": "So you don't have to worry about that.", + "start": 2135.22, + "end": 2136.46, + "words": [ + { + "word": " So", + "start": 2135.22, + "end": 2135.48, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2135.48, + "end": 2135.66, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 2135.66, + "end": 2135.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 2135.8, + "end": 2135.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 2135.88, + "end": 2136.0, + "probability": 1.0 + }, + { + "word": " worry", + "start": 2136.0, + "end": 2136.12, + "probability": 1.0 + }, + { + "word": " about", + "start": 2136.12, + "end": 2136.26, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2136.26, + "end": 2136.46, + "probability": 1.0 + } + ] + }, + { + "id": 856, + "text": "So...", + "start": 2137.22, + "end": 2137.62, + "words": [ + { + "word": " So...", + "start": 2137.22, + "end": 2137.62, + "probability": 0.6328125 + } + ] + }, + { + "id": 857, + "text": "But when you type in your password...", + "start": 2138.1, + "end": 2139.68, + "words": [ + { + "word": " But", + "start": 2138.1, + "end": 2138.5, + "probability": 0.9990234375 + }, + { + "word": " when", + "start": 2138.5, + "end": 2138.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 2138.66, + "end": 2138.76, + "probability": 1.0 + }, + { + "word": " type", + "start": 2138.76, + "end": 2138.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 2138.96, + "end": 2139.14, + "probability": 1.0 + }, + { + "word": " your", + "start": 2139.14, + "end": 2139.28, + "probability": 1.0 + }, + { + "word": " password...", + "start": 2139.28, + "end": 2139.68, + "probability": 0.56396484375 + } + ] + }, + { + "id": 858, + "text": "Or don't they have it there?", + "start": 2139.78, + "end": 2141.34, + "words": [ + { + "word": " Or", + "start": 2139.78, + "end": 2139.86, + "probability": 0.4326171875 + }, + { + "word": " don't", + "start": 2139.86, + "end": 2140.64, + "probability": 0.9951171875 + }, + { + "word": " they", + "start": 2140.64, + "end": 2140.74, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2140.74, + "end": 2140.98, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2140.98, + "end": 2141.16, + "probability": 0.99951171875 + }, + { + "word": " there?", + "start": 2141.16, + "end": 2141.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 859, + "text": "Well, when you log...", + "start": 2141.56, + "end": 2142.98, + "words": [ + { + "word": " Well,", + "start": 2141.56, + "end": 2141.94, + "probability": 0.96728515625 + }, + { + "word": " when", + "start": 2142.04, + "end": 2142.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2142.18, + "end": 2142.32, + "probability": 1.0 + }, + { + "word": " log...", + "start": 2142.32, + "end": 2142.98, + "probability": 0.0809326171875 + } + ] + }, + { + "id": 860, + "text": "When you sign up with Facebook, normally it'll open a pop-up or a Facebook window or it'll", + "start": 2142.98, + "end": 2147.62, + "words": [ + { + "word": " When", + "start": 2142.98, + "end": 2143.06, + "probability": 0.8330078125 + }, + { + "word": " you", + "start": 2143.06, + "end": 2143.18, + "probability": 1.0 + }, + { + "word": " sign", + "start": 2143.18, + "end": 2143.54, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 2143.54, + "end": 2143.72, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 2143.72, + "end": 2143.92, + "probability": 0.99951171875 + }, + { + "word": " Facebook,", + "start": 2143.92, + "end": 2144.28, + "probability": 0.9990234375 + }, + { + "word": " normally", + "start": 2144.54, + "end": 2144.98, + "probability": 0.99658203125 + }, + { + "word": " it'll", + "start": 2144.98, + "end": 2145.28, + "probability": 0.91015625 + }, + { + "word": " open", + "start": 2145.28, + "end": 2145.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2145.56, + "end": 2145.82, + "probability": 0.99853515625 + }, + { + "word": " pop", + "start": 2145.82, + "end": 2146.14, + "probability": 0.99951171875 + }, + { + "word": "-up", + "start": 2146.14, + "end": 2146.32, + "probability": 0.978515625 + }, + { + "word": " or", + "start": 2146.32, + "end": 2146.52, + "probability": 0.99072265625 + }, + { + "word": " a", + "start": 2146.52, + "end": 2146.64, + "probability": 0.99951171875 + }, + { + "word": " Facebook", + "start": 2146.64, + "end": 2146.94, + "probability": 0.9990234375 + }, + { + "word": " window", + "start": 2146.94, + "end": 2147.26, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2147.26, + "end": 2147.48, + "probability": 0.62646484375 + }, + { + "word": " it'll", + "start": 2147.48, + "end": 2147.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 861, + "text": "go to Facebook.", + "start": 2147.62, + "end": 2148.26, + "words": [ + { + "word": " go", + "start": 2147.62, + "end": 2147.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2147.82, + "end": 2147.96, + "probability": 1.0 + }, + { + "word": " Facebook.", + "start": 2147.96, + "end": 2148.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 862, + "text": "And then at that point, you're just authenticating with Facebook and the website is looking to", + "start": 2148.48, + "end": 2152.22, + "words": [ + { + "word": " And", + "start": 2148.48, + "end": 2148.92, + "probability": 0.99755859375 + }, + { + "word": " then", + "start": 2148.92, + "end": 2149.0, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 2149.0, + "end": 2149.1, + "probability": 0.97705078125 + }, + { + "word": " that", + "start": 2149.1, + "end": 2149.22, + "probability": 1.0 + }, + { + "word": " point,", + "start": 2149.22, + "end": 2149.46, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2149.46, + "end": 2149.6, + "probability": 1.0 + }, + { + "word": " just", + "start": 2149.6, + "end": 2149.76, + "probability": 1.0 + }, + { + "word": " authenticating", + "start": 2149.76, + "end": 2150.34, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 2150.34, + "end": 2150.48, + "probability": 0.99951171875 + }, + { + "word": " Facebook", + "start": 2150.48, + "end": 2150.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 2150.8, + "end": 2151.1, + "probability": 0.7412109375 + }, + { + "word": " the", + "start": 2151.1, + "end": 2151.42, + "probability": 1.0 + }, + { + "word": " website", + "start": 2151.42, + "end": 2151.62, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 2151.62, + "end": 2151.84, + "probability": 1.0 + }, + { + "word": " looking", + "start": 2151.84, + "end": 2152.04, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2152.04, + "end": 2152.22, + "probability": 0.99755859375 + } + ] + }, + { + "id": 863, + "text": "Facebook to get a thumbs up, essentially.", + "start": 2152.22, + "end": 2154.2, + "words": [ + { + "word": " Facebook", + "start": 2152.22, + "end": 2152.5, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2152.5, + "end": 2152.74, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2152.74, + "end": 2152.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 2152.9, + "end": 2153.06, + "probability": 0.99755859375 + }, + { + "word": " thumbs", + "start": 2153.06, + "end": 2153.48, + "probability": 0.9970703125 + }, + { + "word": " up,", + "start": 2153.48, + "end": 2153.72, + "probability": 0.77734375 + }, + { + "word": " essentially.", + "start": 2153.8, + "end": 2154.2, + "probability": 1.0 + } + ] + }, + { + "id": 864, + "text": "Right.", + "start": 2154.5, + "end": 2154.88, + "words": [ + { + "word": " Right.", + "start": 2154.5, + "end": 2154.88, + "probability": 0.97314453125 + } + ] + }, + { + "id": 865, + "text": "So when you sign in with Facebook, that little pop-up that comes up and you say, hey, I'm", + "start": 2154.94, + "end": 2160.76, + "words": [ + { + "word": " So", + "start": 2154.94, + "end": 2155.08, + "probability": 0.98583984375 + }, + { + "word": " when", + "start": 2155.08, + "end": 2155.52, + "probability": 0.84765625 + }, + { + "word": " you", + "start": 2155.52, + "end": 2155.66, + "probability": 1.0 + }, + { + "word": " sign", + "start": 2155.66, + "end": 2155.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 2155.88, + "end": 2156.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 2156.1, + "end": 2156.26, + "probability": 1.0 + }, + { + "word": " Facebook,", + "start": 2156.26, + "end": 2156.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 2156.84, + "end": 2157.58, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 2157.58, + "end": 2157.84, + "probability": 1.0 + }, + { + "word": " pop", + "start": 2157.84, + "end": 2158.18, + "probability": 1.0 + }, + { + "word": "-up", + "start": 2158.18, + "end": 2158.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 2158.36, + "end": 2158.58, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 2158.58, + "end": 2159.02, + "probability": 1.0 + }, + { + "word": " up", + "start": 2159.02, + "end": 2159.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 2159.36, + "end": 2159.52, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2159.52, + "end": 2159.64, + "probability": 1.0 + }, + { + "word": " say,", + "start": 2159.64, + "end": 2159.86, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 2160.02, + "end": 2160.24, + "probability": 0.9306640625 + }, + { + "word": " I'm", + "start": 2160.3, + "end": 2160.76, + "probability": 1.0 + } + ] + }, + { + "id": 866, + "text": "allowing this to happen, Facebook sets a very special cookie that says, I am allowed to", + "start": 2160.76, + "end": 2166.46, + "words": [ + { + "word": " allowing", + "start": 2160.76, + "end": 2161.08, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2161.08, + "end": 2161.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2161.4, + "end": 2161.56, + "probability": 1.0 + }, + { + "word": " happen,", + "start": 2161.56, + "end": 2161.88, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2162.04, + "end": 2162.74, + "probability": 0.99951171875 + }, + { + "word": " sets", + "start": 2162.74, + "end": 2163.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2163.1, + "end": 2163.46, + "probability": 1.0 + }, + { + "word": " very", + "start": 2163.46, + "end": 2163.7, + "probability": 1.0 + }, + { + "word": " special", + "start": 2163.7, + "end": 2164.12, + "probability": 1.0 + }, + { + "word": " cookie", + "start": 2164.12, + "end": 2164.64, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2164.64, + "end": 2164.94, + "probability": 1.0 + }, + { + "word": " says,", + "start": 2164.94, + "end": 2165.22, + "probability": 1.0 + }, + { + "word": " I", + "start": 2165.38, + "end": 2165.9, + "probability": 1.0 + }, + { + "word": " am", + "start": 2165.9, + "end": 2166.04, + "probability": 0.9990234375 + }, + { + "word": " allowed", + "start": 2166.04, + "end": 2166.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 2166.26, + "end": 2166.46, + "probability": 1.0 + } + ] + }, + { + "id": 867, + "text": "do this.", + "start": 2166.46, + "end": 2166.84, + "words": [ + { + "word": " do", + "start": 2166.46, + "end": 2166.6, + "probability": 1.0 + }, + { + "word": " this.", + "start": 2166.6, + "end": 2166.84, + "probability": 1.0 + } + ] + }, + { + "id": 868, + "text": "And it's time limited.", + "start": 2166.94, + "end": 2168.3, + "words": [ + { + "word": " And", + "start": 2166.94, + "end": 2167.08, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 2167.08, + "end": 2167.24, + "probability": 1.0 + }, + { + "word": " time", + "start": 2167.24, + "end": 2167.88, + "probability": 0.99951171875 + }, + { + "word": " limited.", + "start": 2167.88, + "end": 2168.3, + "probability": 0.7822265625 + } + ] + }, + { + "id": 869, + "text": "It's a...", + "start": 2168.52, + "end": 2168.86, + "words": [ + { + "word": " It's", + "start": 2168.52, + "end": 2168.68, + "probability": 0.9990234375 + }, + { + "word": " a...", + "start": 2168.68, + "end": 2168.86, + "probability": 0.7177734375 + } + ] + }, + { + "id": 870, + "text": "It's a...", + "start": 2168.86, + "end": 2169.48, + "words": [ + { + "word": " It's", + "start": 2168.86, + "end": 2169.32, + "probability": 0.994140625 + }, + { + "word": " a...", + "start": 2169.32, + "end": 2169.48, + "probability": 0.408203125 + } + ] + }, + { + "id": 871, + "text": "", + "start": 2169.48, + "end": 2169.48, + "words": [] + }, + { + "id": 872, + "text": "It's a...", + "start": 2169.48, + "end": 2169.52, + "words": [ + { + "word": " It's", + "start": 2169.48, + "end": 2169.52, + "probability": 0.98046875 + }, + { + "word": " a...", + "start": 2169.52, + "end": 2169.52, + "probability": 0.8955078125 + } + ] + }, + { + "id": 873, + "text": "It's a...", + "start": 2169.52, + "end": 2169.6, + "words": [ + { + "word": " It's", + "start": 2169.52, + "end": 2169.6, + "probability": 0.986328125 + }, + { + "word": " a...", + "start": 2169.6, + "end": 2169.6, + "probability": 0.9189453125 + } + ] + }, + { + "id": 874, + "text": "It's a...", + "start": 2169.6, + "end": 2169.62, + "words": [ + { + "word": " It's", + "start": 2169.6, + "end": 2169.6, + "probability": 0.98876953125 + }, + { + "word": " a...", + "start": 2169.6, + "end": 2169.62, + "probability": 0.9365234375 + } + ] + }, + { + "id": 875, + "text": "It's a...", + "start": 2169.62, + "end": 2169.68, + "words": [ + { + "word": " It's", + "start": 2169.62, + "end": 2169.62, + "probability": 0.98974609375 + }, + { + "word": " a...", + "start": 2169.62, + "end": 2169.68, + "probability": 0.951171875 + } + ] + }, + { + "id": 876, + "text": "It's a...", + "start": 2169.68, + "end": 2169.76, + "words": [ + { + "word": " It's", + "start": 2169.68, + "end": 2169.68, + "probability": 0.990234375 + }, + { + "word": " a...", + "start": 2169.68, + "end": 2169.76, + "probability": 0.9638671875 + } + ] + }, + { + "id": 877, + "text": "", + "start": 2169.76, + "end": 2169.76, + "words": [] + }, + { + "id": 878, + "text": "It's a...", + "start": 2169.78, + "end": 2170.22, + "words": [ + { + "word": " It's", + "start": 2169.78, + "end": 2169.94, + "probability": 0.857421875 + }, + { + "word": " a...", + "start": 2169.94, + "end": 2170.22, + "probability": 0.0004944801330566406 + } + ] + }, + { + "id": 879, + "text": "It's fairly secure, but it is...", + "start": 2170.22, + "end": 2172.96, + "words": [ + { + "word": " It's", + "start": 2170.22, + "end": 2170.22, + "probability": 0.5068359375 + }, + { + "word": " fairly", + "start": 2170.22, + "end": 2170.22, + "probability": 0.68896484375 + }, + { + "word": " secure,", + "start": 2170.22, + "end": 2170.56, + "probability": 0.9951171875 + }, + { + "word": " but", + "start": 2170.84, + "end": 2171.84, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2171.84, + "end": 2172.34, + "probability": 0.9052734375 + }, + { + "word": " is...", + "start": 2172.34, + "end": 2172.96, + "probability": 0.9658203125 + } + ] + }, + { + "id": 880, + "text": "All it is is an authentication process.", + "start": 2172.96, + "end": 2174.52, + "words": [ + { + "word": " All", + "start": 2172.96, + "end": 2173.2, + "probability": 0.974609375 + }, + { + "word": " it", + "start": 2173.2, + "end": 2173.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 2173.4, + "end": 2173.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 2173.58, + "end": 2173.68, + "probability": 0.96337890625 + }, + { + "word": " an", + "start": 2173.68, + "end": 2173.8, + "probability": 0.99951171875 + }, + { + "word": " authentication", + "start": 2173.8, + "end": 2174.06, + "probability": 1.0 + }, + { + "word": " process.", + "start": 2174.06, + "end": 2174.52, + "probability": 1.0 + } + ] + }, + { + "id": 881, + "text": "So the website that you're logging into then goes to Facebook and says, hey, this user", + "start": 2174.74, + "end": 2179.9, + "words": [ + { + "word": " So", + "start": 2174.74, + "end": 2174.92, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 2174.92, + "end": 2175.06, + "probability": 0.7490234375 + }, + { + "word": " website", + "start": 2175.06, + "end": 2175.3, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2175.3, + "end": 2175.5, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2175.5, + "end": 2175.6, + "probability": 1.0 + }, + { + "word": " logging", + "start": 2175.6, + "end": 2175.84, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2175.84, + "end": 2176.18, + "probability": 0.99609375 + }, + { + "word": " then", + "start": 2176.18, + "end": 2176.52, + "probability": 0.9921875 + }, + { + "word": " goes", + "start": 2176.52, + "end": 2177.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 2177.06, + "end": 2177.38, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2177.38, + "end": 2177.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 2177.72, + "end": 2178.42, + "probability": 0.998046875 + }, + { + "word": " says,", + "start": 2178.42, + "end": 2178.84, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 2179.06, + "end": 2179.26, + "probability": 0.94873046875 + }, + { + "word": " this", + "start": 2179.34, + "end": 2179.58, + "probability": 1.0 + }, + { + "word": " user", + "start": 2179.58, + "end": 2179.9, + "probability": 1.0 + } + ] + }, + { + "id": 882, + "text": "says we can log in as them.", + "start": 2179.9, + "end": 2181.48, + "words": [ + { + "word": " says", + "start": 2179.9, + "end": 2180.16, + "probability": 1.0 + }, + { + "word": " we", + "start": 2180.16, + "end": 2180.5, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2180.5, + "end": 2180.78, + "probability": 1.0 + }, + { + "word": " log", + "start": 2180.78, + "end": 2181.0, + "probability": 0.994140625 + }, + { + "word": " in", + "start": 2181.0, + "end": 2181.16, + "probability": 1.0 + }, + { + "word": " as", + "start": 2181.16, + "end": 2181.3, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2181.3, + "end": 2181.48, + "probability": 1.0 + } + ] + }, + { + "id": 883, + "text": "Is that cool?", + "start": 2181.62, + "end": 2182.32, + "words": [ + { + "word": " Is", + "start": 2181.62, + "end": 2181.84, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2181.84, + "end": 2182.04, + "probability": 1.0 + }, + { + "word": " cool?", + "start": 2182.04, + "end": 2182.32, + "probability": 1.0 + } + ] + }, + { + "id": 884, + "text": "Facebook then responds yes and then deletes the cookie.", + "start": 2182.48, + "end": 2184.88, + "words": [ + { + "word": " Facebook", + "start": 2182.48, + "end": 2182.9, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 2182.9, + "end": 2183.16, + "probability": 1.0 + }, + { + "word": " responds", + "start": 2183.16, + "end": 2183.48, + "probability": 1.0 + }, + { + "word": " yes", + "start": 2183.48, + "end": 2183.78, + "probability": 0.93701171875 + }, + { + "word": " and", + "start": 2183.78, + "end": 2184.02, + "probability": 0.88232421875 + }, + { + "word": " then", + "start": 2184.02, + "end": 2184.18, + "probability": 1.0 + }, + { + "word": " deletes", + "start": 2184.18, + "end": 2184.54, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2184.54, + "end": 2184.68, + "probability": 1.0 + }, + { + "word": " cookie.", + "start": 2184.68, + "end": 2184.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 885, + "text": "Oh.", + "start": 2185.82, + "end": 2186.3, + "words": [ + { + "word": " Oh.", + "start": 2185.82, + "end": 2186.3, + "probability": 0.9921875 + } + ] + }, + { + "id": 886, + "text": "Okay.", + "start": 2186.94, + "end": 2187.42, + "words": [ + { + "word": " Okay.", + "start": 2186.94, + "end": 2187.42, + "probability": 0.970703125 + } + ] + }, + { + "id": 887, + "text": "So as far as security is concerned, it's not really a security issue, but privacy, yes.", + "start": 2187.5, + "end": 2192.52, + "words": [ + { + "word": " So", + "start": 2187.5, + "end": 2187.8, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 2187.8, + "end": 2188.1, + "probability": 0.9833984375 + }, + { + "word": " far", + "start": 2188.1, + "end": 2188.34, + "probability": 1.0 + }, + { + "word": " as", + "start": 2188.34, + "end": 2188.48, + "probability": 1.0 + }, + { + "word": " security", + "start": 2188.48, + "end": 2188.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 2188.82, + "end": 2189.12, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 2189.12, + "end": 2189.38, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2189.5, + "end": 2189.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 2189.64, + "end": 2189.78, + "probability": 1.0 + }, + { + "word": " really", + "start": 2189.78, + "end": 2189.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 2189.98, + "end": 2190.12, + "probability": 1.0 + }, + { + "word": " security", + "start": 2190.12, + "end": 2190.34, + "probability": 1.0 + }, + { + "word": " issue,", + "start": 2190.34, + "end": 2190.74, + "probability": 1.0 + }, + { + "word": " but", + "start": 2190.9, + "end": 2191.16, + "probability": 1.0 + }, + { + "word": " privacy,", + "start": 2191.16, + "end": 2191.86, + "probability": 0.99853515625 + }, + { + "word": " yes.", + "start": 2192.04, + "end": 2192.52, + "probability": 1.0 + } + ] + }, + { + "id": 888, + "text": "Okay.", + "start": 2193.9, + "end": 2194.38, + "words": [ + { + "word": " Okay.", + "start": 2193.9, + "end": 2194.38, + "probability": 0.83251953125 + } + ] + }, + { + "id": 889, + "text": "Because, you know, Facebook collects everything and then will be our future overlord.", + "start": 2194.38, + "end": 2198.88, + "words": [ + { + "word": " Because,", + "start": 2194.38, + "end": 2194.86, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2195.0, + "end": 2195.2, + "probability": 0.9970703125 + }, + { + "word": " know,", + "start": 2195.2, + "end": 2195.38, + "probability": 1.0 + }, + { + "word": " Facebook", + "start": 2195.4, + "end": 2195.78, + "probability": 0.99951171875 + }, + { + "word": " collects", + "start": 2195.78, + "end": 2196.08, + "probability": 0.99951171875 + }, + { + "word": " everything", + "start": 2196.08, + "end": 2196.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 2196.48, + "end": 2196.92, + "probability": 0.95166015625 + }, + { + "word": " then", + "start": 2196.92, + "end": 2197.1, + "probability": 1.0 + }, + { + "word": " will", + "start": 2197.1, + "end": 2197.46, + "probability": 0.450927734375 + }, + { + "word": " be", + "start": 2197.46, + "end": 2197.94, + "probability": 1.0 + }, + { + "word": " our", + "start": 2197.94, + "end": 2198.1, + "probability": 1.0 + }, + { + "word": " future", + "start": 2198.1, + "end": 2198.36, + "probability": 1.0 + }, + { + "word": " overlord.", + "start": 2198.36, + "end": 2198.88, + "probability": 0.880859375 + } + ] + }, + { + "id": 890, + "text": "Honestly, I'm really curious.", + "start": 2198.98, + "end": 2199.76, + "words": [ + { + "word": " Honestly,", + "start": 2198.98, + "end": 2199.34, + "probability": 0.9599609375 + }, + { + "word": " I'm", + "start": 2199.44, + "end": 2199.62, + "probability": 0.9951171875 + }, + { + "word": " really", + "start": 2199.62, + "end": 2199.76, + "probability": 0.9765625 + }, + { + "word": " curious.", + "start": 2199.76, + "end": 2199.76, + "probability": 0.00994873046875 + } + ] + }, + { + "id": 891, + "text": "not a fan of signing into websites with other websites. I kind of think you should have", + "start": 2199.76, + "end": 2203.84, + "words": [ + { + "word": " not", + "start": 2199.76, + "end": 2199.9, + "probability": 0.5244140625 + }, + { + "word": " a", + "start": 2199.9, + "end": 2200.1, + "probability": 0.9990234375 + }, + { + "word": " fan", + "start": 2200.1, + "end": 2200.3, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2200.3, + "end": 2200.48, + "probability": 0.99951171875 + }, + { + "word": " signing", + "start": 2200.48, + "end": 2200.7, + "probability": 0.99755859375 + }, + { + "word": " into", + "start": 2200.7, + "end": 2201.02, + "probability": 0.9912109375 + }, + { + "word": " websites", + "start": 2201.02, + "end": 2201.74, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 2201.74, + "end": 2202.06, + "probability": 0.9990234375 + }, + { + "word": " other", + "start": 2202.06, + "end": 2202.32, + "probability": 1.0 + }, + { + "word": " websites.", + "start": 2202.32, + "end": 2202.64, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2202.88, + "end": 2203.1, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 2203.1, + "end": 2203.22, + "probability": 0.947265625 + }, + { + "word": " of", + "start": 2203.22, + "end": 2203.32, + "probability": 1.0 + }, + { + "word": " think", + "start": 2203.32, + "end": 2203.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 2203.44, + "end": 2203.56, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 2203.56, + "end": 2203.7, + "probability": 1.0 + }, + { + "word": " have", + "start": 2203.7, + "end": 2203.84, + "probability": 1.0 + } + ] + }, + { + "id": 892, + "text": "a separate account for each one for security reasons.", + "start": 2203.84, + "end": 2206.4, + "words": [ + { + "word": " a", + "start": 2203.84, + "end": 2203.96, + "probability": 1.0 + }, + { + "word": " separate", + "start": 2203.96, + "end": 2204.24, + "probability": 0.998046875 + }, + { + "word": " account", + "start": 2204.24, + "end": 2204.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 2204.72, + "end": 2205.06, + "probability": 0.99951171875 + }, + { + "word": " each", + "start": 2205.06, + "end": 2205.26, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 2205.26, + "end": 2205.48, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2205.48, + "end": 2205.74, + "probability": 0.990234375 + }, + { + "word": " security", + "start": 2205.74, + "end": 2206.06, + "probability": 1.0 + }, + { + "word": " reasons.", + "start": 2206.06, + "end": 2206.4, + "probability": 1.0 + } + ] + }, + { + "id": 893, + "text": "It's because we are like paranoid security dudes.", + "start": 2206.48, + "end": 2209.44, + "words": [ + { + "word": " It's", + "start": 2206.48, + "end": 2206.6, + "probability": 0.8779296875 + }, + { + "word": " because", + "start": 2206.6, + "end": 2206.82, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 2206.82, + "end": 2207.1, + "probability": 1.0 + }, + { + "word": " are", + "start": 2207.1, + "end": 2207.28, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2207.28, + "end": 2208.14, + "probability": 0.45458984375 + }, + { + "word": " paranoid", + "start": 2208.14, + "end": 2208.6, + "probability": 0.99853515625 + }, + { + "word": " security", + "start": 2208.6, + "end": 2209.04, + "probability": 0.9990234375 + }, + { + "word": " dudes.", + "start": 2209.04, + "end": 2209.44, + "probability": 0.8876953125 + } + ] + }, + { + "id": 894, + "text": "Yeah.", + "start": 2209.48, + "end": 2209.62, + "words": [ + { + "word": " Yeah.", + "start": 2209.48, + "end": 2209.62, + "probability": 0.284912109375 + } + ] + }, + { + "id": 895, + "text": "But yes.", + "start": 2209.7, + "end": 2210.2, + "words": [ + { + "word": " But", + "start": 2209.7, + "end": 2209.92, + "probability": 0.059295654296875 + }, + { + "word": " yes.", + "start": 2209.92, + "end": 2210.2, + "probability": 0.7646484375 + } + ] + }, + { + "id": 896, + "text": "Mostly that extends for me. That's because of Wi-Fi, like sidejacking and that kind of", + "start": 2210.46, + "end": 2214.4, + "words": [ + { + "word": " Mostly", + "start": 2210.46, + "end": 2210.88, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2210.88, + "end": 2211.06, + "probability": 0.853515625 + }, + { + "word": " extends", + "start": 2211.06, + "end": 2211.4, + "probability": 0.77099609375 + }, + { + "word": " for", + "start": 2211.4, + "end": 2211.72, + "probability": 0.98681640625 + }, + { + "word": " me.", + "start": 2211.72, + "end": 2211.86, + "probability": 0.99951171875 + }, + { + "word": " That's", + "start": 2211.88, + "end": 2212.04, + "probability": 0.9970703125 + }, + { + "word": " because", + "start": 2212.04, + "end": 2212.22, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2212.22, + "end": 2212.48, + "probability": 1.0 + }, + { + "word": " Wi", + "start": 2212.48, + "end": 2212.7, + "probability": 0.9658203125 + }, + { + "word": "-Fi,", + "start": 2212.7, + "end": 2212.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 2212.96, + "end": 2213.16, + "probability": 0.998046875 + }, + { + "word": " sidejacking", + "start": 2213.16, + "end": 2213.84, + "probability": 0.79296875 + }, + { + "word": " and", + "start": 2213.84, + "end": 2214.04, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2214.04, + "end": 2214.14, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2214.14, + "end": 2214.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 2214.3, + "end": 2214.4, + "probability": 1.0 + } + ] + }, + { + "id": 897, + "text": "thing.", + "start": 2214.4, + "end": 2214.56, + "words": [ + { + "word": " thing.", + "start": 2214.4, + "end": 2214.56, + "probability": 1.0 + } + ] + }, + { + "id": 898, + "text": "Right. We should do a sidejacking demo. We're actually planning a get-together where we", + "start": 2214.74, + "end": 2220.1, + "words": [ + { + "word": " Right.", + "start": 2214.74, + "end": 2215.16, + "probability": 0.98974609375 + }, + { + "word": " We", + "start": 2215.4, + "end": 2215.82, + "probability": 0.97314453125 + }, + { + "word": " should", + "start": 2215.82, + "end": 2216.16, + "probability": 1.0 + }, + { + "word": " do", + "start": 2216.16, + "end": 2216.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 2216.3, + "end": 2216.38, + "probability": 1.0 + }, + { + "word": " sidejacking", + "start": 2216.38, + "end": 2216.84, + "probability": 0.998046875 + }, + { + "word": " demo.", + "start": 2216.84, + "end": 2217.16, + "probability": 0.99951171875 + }, + { + "word": " We're", + "start": 2217.28, + "end": 2217.5, + "probability": 0.9990234375 + }, + { + "word": " actually", + "start": 2217.5, + "end": 2217.76, + "probability": 0.99951171875 + }, + { + "word": " planning", + "start": 2217.76, + "end": 2218.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2218.1, + "end": 2218.4, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2218.4, + "end": 2218.6, + "probability": 0.9970703125 + }, + { + "word": "-together", + "start": 2218.6, + "end": 2218.84, + "probability": 0.88232421875 + }, + { + "word": " where", + "start": 2218.84, + "end": 2219.66, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 2219.66, + "end": 2220.1, + "probability": 1.0 + } + ] + }, + { + "id": 899, + "text": "can get listeners to come down probably April.", + "start": 2220.1, + "end": 2223.86, + "words": [ + { + "word": " can", + "start": 2220.1, + "end": 2220.2, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2220.2, + "end": 2220.34, + "probability": 0.99951171875 + }, + { + "word": " listeners", + "start": 2220.34, + "end": 2220.76, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2220.76, + "end": 2220.96, + "probability": 1.0 + }, + { + "word": " come", + "start": 2220.96, + "end": 2221.1, + "probability": 1.0 + }, + { + "word": " down", + "start": 2221.1, + "end": 2221.38, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 2221.38, + "end": 2222.58, + "probability": 0.98486328125 + }, + { + "word": " April.", + "start": 2222.58, + "end": 2223.86, + "probability": 0.994140625 + } + ] + }, + { + "id": 900, + "text": "Something like that.", + "start": 2224.16, + "end": 2224.8, + "words": [ + { + "word": " Something", + "start": 2224.16, + "end": 2224.48, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 2224.48, + "end": 2224.64, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2224.64, + "end": 2224.8, + "probability": 1.0 + } + ] + }, + { + "id": 901, + "text": "And we should do a sidejacking demo.", + "start": 2224.96, + "end": 2227.0, + "words": [ + { + "word": " And", + "start": 2224.96, + "end": 2225.32, + "probability": 0.97607421875 + }, + { + "word": " we", + "start": 2225.32, + "end": 2225.9, + "probability": 0.9990234375 + }, + { + "word": " should", + "start": 2225.9, + "end": 2226.08, + "probability": 1.0 + }, + { + "word": " do", + "start": 2226.08, + "end": 2226.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 2226.18, + "end": 2226.28, + "probability": 1.0 + }, + { + "word": " sidejacking", + "start": 2226.28, + "end": 2226.74, + "probability": 0.99951171875 + }, + { + "word": " demo.", + "start": 2226.74, + "end": 2227.0, + "probability": 1.0 + } + ] + }, + { + "id": 902, + "text": "Yeah, that would be a lot of fun.", + "start": 2227.16, + "end": 2227.66, + "words": [ + { + "word": " Yeah,", + "start": 2227.16, + "end": 2227.44, + "probability": 0.986328125 + }, + { + "word": " that", + "start": 2227.44, + "end": 2227.56, + "probability": 0.99755859375 + }, + { + "word": " would", + "start": 2227.56, + "end": 2227.62, + "probability": 0.97412109375 + }, + { + "word": " be", + "start": 2227.62, + "end": 2227.66, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2227.66, + "end": 2227.66, + "probability": 0.67041015625 + }, + { + "word": " lot", + "start": 2227.66, + "end": 2227.66, + "probability": 0.60693359375 + }, + { + "word": " of", + "start": 2227.66, + "end": 2227.66, + "probability": 0.9638671875 + }, + { + "word": " fun.", + "start": 2227.66, + "end": 2227.66, + "probability": 0.99560546875 + } + ] + }, + { + "id": 903, + "text": "Just to show how it works.", + "start": 2227.66, + "end": 2228.4, + "words": [ + { + "word": " Just", + "start": 2227.66, + "end": 2227.66, + "probability": 0.89306640625 + }, + { + "word": " to", + "start": 2227.66, + "end": 2227.66, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 2227.66, + "end": 2227.78, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 2227.78, + "end": 2227.98, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2227.98, + "end": 2228.0, + "probability": 1.0 + }, + { + "word": " works.", + "start": 2228.0, + "end": 2228.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 904, + "text": "Sounds good.", + "start": 2228.86, + "end": 2229.54, + "words": [ + { + "word": " Sounds", + "start": 2228.86, + "end": 2229.28, + "probability": 0.95654296875 + }, + { + "word": " good.", + "start": 2229.28, + "end": 2229.54, + "probability": 1.0 + } + ] + }, + { + "id": 905, + "text": "Where you guys can come down here and then we can show you the inner workings of your", + "start": 2229.76, + "end": 2234.06, + "words": [ + { + "word": " Where", + "start": 2229.76, + "end": 2230.0, + "probability": 0.33740234375 + }, + { + "word": " you", + "start": 2230.0, + "end": 2230.16, + "probability": 0.99951171875 + }, + { + "word": " guys", + "start": 2230.16, + "end": 2230.36, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2230.36, + "end": 2230.52, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 2230.52, + "end": 2230.7, + "probability": 1.0 + }, + { + "word": " down", + "start": 2230.7, + "end": 2230.86, + "probability": 1.0 + }, + { + "word": " here", + "start": 2230.86, + "end": 2231.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 2231.04, + "end": 2231.3, + "probability": 0.59716796875 + }, + { + "word": " then", + "start": 2231.3, + "end": 2231.5, + "probability": 0.97021484375 + }, + { + "word": " we", + "start": 2231.5, + "end": 2231.68, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2231.68, + "end": 2232.1, + "probability": 1.0 + }, + { + "word": " show", + "start": 2232.1, + "end": 2232.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 2232.34, + "end": 2232.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2232.58, + "end": 2233.1, + "probability": 0.9990234375 + }, + { + "word": " inner", + "start": 2233.1, + "end": 2233.3, + "probability": 0.99951171875 + }, + { + "word": " workings", + "start": 2233.3, + "end": 2233.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 2233.78, + "end": 2233.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 2233.9, + "end": 2234.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 906, + "text": "Facebook page without permission.", + "start": 2234.06, + "end": 2235.32, + "words": [ + { + "word": " Facebook", + "start": 2234.06, + "end": 2234.4, + "probability": 0.99853515625 + }, + { + "word": " page", + "start": 2234.4, + "end": 2234.72, + "probability": 1.0 + }, + { + "word": " without", + "start": 2234.72, + "end": 2234.98, + "probability": 0.9990234375 + }, + { + "word": " permission.", + "start": 2234.98, + "end": 2235.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 907, + "text": "That sounds good.", + "start": 2236.22, + "end": 2237.52, + "words": [ + { + "word": " That", + "start": 2236.22, + "end": 2236.74, + "probability": 0.91943359375 + }, + { + "word": " sounds", + "start": 2236.74, + "end": 2237.2, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 2237.2, + "end": 2237.52, + "probability": 1.0 + } + ] + }, + { + "id": 908, + "text": "So now I'm curious. So on that third or the other website, I guess at that point, once", + "start": 2238.14, + "end": 2245.42, + "words": [ + { + "word": " So", + "start": 2238.14, + "end": 2238.66, + "probability": 0.7724609375 + }, + { + "word": " now", + "start": 2238.66, + "end": 2239.18, + "probability": 0.767578125 + }, + { + "word": " I'm", + "start": 2239.18, + "end": 2239.36, + "probability": 0.998046875 + }, + { + "word": " curious.", + "start": 2239.36, + "end": 2239.56, + "probability": 1.0 + }, + { + "word": " So", + "start": 2239.7, + "end": 2240.02, + "probability": 0.99072265625 + }, + { + "word": " on", + "start": 2240.02, + "end": 2240.26, + "probability": 0.857421875 + }, + { + "word": " that", + "start": 2240.26, + "end": 2240.3, + "probability": 1.0 + }, + { + "word": " third", + "start": 2240.3, + "end": 2241.24, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 2241.24, + "end": 2241.48, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 2241.48, + "end": 2241.82, + "probability": 1.0 + }, + { + "word": " other", + "start": 2241.82, + "end": 2242.02, + "probability": 1.0 + }, + { + "word": " website,", + "start": 2242.02, + "end": 2242.38, + "probability": 0.98828125 + }, + { + "word": " I", + "start": 2242.64, + "end": 2243.74, + "probability": 1.0 + }, + { + "word": " guess", + "start": 2243.74, + "end": 2244.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 2244.02, + "end": 2244.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 2244.18, + "end": 2244.32, + "probability": 1.0 + }, + { + "word": " point,", + "start": 2244.32, + "end": 2244.76, + "probability": 1.0 + }, + { + "word": " once", + "start": 2244.78, + "end": 2245.42, + "probability": 1.0 + } + ] + }, + { + "id": 909, + "text": "they get permission from Facebook, they are able to, or their users on that website are", + "start": 2245.42, + "end": 2250.24, + "words": [ + { + "word": " they", + "start": 2245.42, + "end": 2245.56, + "probability": 0.99072265625 + }, + { + "word": " get", + "start": 2245.56, + "end": 2245.68, + "probability": 0.99951171875 + }, + { + "word": " permission", + "start": 2245.68, + "end": 2245.94, + "probability": 1.0 + }, + { + "word": " from", + "start": 2245.94, + "end": 2246.3, + "probability": 1.0 + }, + { + "word": " Facebook,", + "start": 2246.3, + "end": 2246.68, + "probability": 1.0 + }, + { + "word": " they", + "start": 2247.08, + "end": 2247.5, + "probability": 0.9951171875 + }, + { + "word": " are", + "start": 2247.5, + "end": 2248.34, + "probability": 0.978515625 + }, + { + "word": " able", + "start": 2248.34, + "end": 2248.6, + "probability": 1.0 + }, + { + "word": " to,", + "start": 2248.6, + "end": 2248.9, + "probability": 1.0 + }, + { + "word": " or", + "start": 2248.92, + "end": 2249.04, + "probability": 0.97900390625 + }, + { + "word": " their", + "start": 2249.04, + "end": 2249.3, + "probability": 0.9755859375 + }, + { + "word": " users", + "start": 2249.3, + "end": 2249.56, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2249.56, + "end": 2249.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2249.7, + "end": 2249.8, + "probability": 1.0 + }, + { + "word": " website", + "start": 2249.8, + "end": 2250.06, + "probability": 1.0 + }, + { + "word": " are", + "start": 2250.06, + "end": 2250.24, + "probability": 0.90869140625 + } + ] + }, + { + "id": 910, + "text": "able to see your profile as if they are...", + "start": 2250.24, + "end": 2254.16, + "words": [ + { + "word": " able", + "start": 2250.24, + "end": 2250.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 2250.42, + "end": 2250.68, + "probability": 1.0 + }, + { + "word": " see", + "start": 2250.68, + "end": 2251.68, + "probability": 0.99755859375 + }, + { + "word": " your", + "start": 2251.68, + "end": 2251.94, + "probability": 1.0 + }, + { + "word": " profile", + "start": 2251.94, + "end": 2252.46, + "probability": 1.0 + }, + { + "word": " as", + "start": 2252.46, + "end": 2252.82, + "probability": 0.97900390625 + }, + { + "word": " if", + "start": 2252.82, + "end": 2253.14, + "probability": 0.96923828125 + }, + { + "word": " they", + "start": 2253.14, + "end": 2254.16, + "probability": 0.84228515625 + }, + { + "word": " are...", + "start": 2254.16, + "end": 2254.16, + "probability": 0.54443359375 + } + ] + }, + { + "id": 911, + "text": "It depends on the permissions. It depends on the permissions that the website's requesting.", + "start": 2254.16, + "end": 2257.82, + "words": [ + { + "word": " It", + "start": 2254.16, + "end": 2254.36, + "probability": 0.9970703125 + }, + { + "word": " depends", + "start": 2254.36, + "end": 2254.54, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2254.54, + "end": 2254.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 2254.84, + "end": 2255.02, + "probability": 1.0 + }, + { + "word": " permissions.", + "start": 2255.02, + "end": 2255.5, + "probability": 0.99951171875 + }, + { + "word": " It", + "start": 2255.56, + "end": 2255.96, + "probability": 0.978515625 + }, + { + "word": " depends", + "start": 2255.96, + "end": 2256.16, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 2256.16, + "end": 2256.38, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2256.38, + "end": 2256.46, + "probability": 1.0 + }, + { + "word": " permissions", + "start": 2256.46, + "end": 2256.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2256.72, + "end": 2256.94, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2256.94, + "end": 2257.06, + "probability": 1.0 + }, + { + "word": " website's", + "start": 2257.06, + "end": 2257.42, + "probability": 0.919921875 + }, + { + "word": " requesting.", + "start": 2257.42, + "end": 2257.82, + "probability": 1.0 + } + ] + }, + { + "id": 912, + "text": "Right. In most cases...", + "start": 2258.08, + "end": 2259.32, + "words": [ + { + "word": " Right.", + "start": 2258.08, + "end": 2258.6, + "probability": 0.99853515625 + }, + { + "word": " In", + "start": 2258.64, + "end": 2258.78, + "probability": 0.98828125 + }, + { + "word": " most", + "start": 2258.78, + "end": 2258.98, + "probability": 1.0 + }, + { + "word": " cases...", + "start": 2258.98, + "end": 2259.32, + "probability": 0.51025390625 + } + ] + }, + { + "id": 913, + "text": "Yeah.", + "start": 2259.76, + "end": 2259.78, + "words": [ + { + "word": " Yeah.", + "start": 2259.76, + "end": 2259.78, + "probability": 0.00106048583984375 + } + ] + }, + { + "id": 914, + "text": "", + "start": 2259.78, + "end": 2259.78, + "words": [] + }, + { + "id": 915, + "text": "", + "start": 2259.78, + "end": 2259.78, + "words": [] + }, + { + "id": 916, + "text": "", + "start": 2259.78, + "end": 2259.78, + "words": [] + }, + { + "id": 917, + "text": "", + "start": 2259.78, + "end": 2259.78, + "words": [] + }, + { + "id": 918, + "text": "So the only thing that's passing across is your basic public profile information. So", + "start": 2259.78, + "end": 2265.72, + "words": [ + { + "word": " So", + "start": 2259.78, + "end": 2259.78, + "probability": 0.0810546875 + }, + { + "word": " the", + "start": 2259.78, + "end": 2259.78, + "probability": 0.436767578125 + }, + { + "word": " only", + "start": 2259.78, + "end": 2260.1, + "probability": 0.87353515625 + }, + { + "word": " thing", + "start": 2260.1, + "end": 2260.36, + "probability": 0.99365234375 + }, + { + "word": " that's", + "start": 2260.36, + "end": 2260.68, + "probability": 0.8486328125 + }, + { + "word": " passing", + "start": 2260.68, + "end": 2261.16, + "probability": 0.9365234375 + }, + { + "word": " across", + "start": 2261.16, + "end": 2261.46, + "probability": 0.97900390625 + }, + { + "word": " is", + "start": 2261.46, + "end": 2262.02, + "probability": 0.9873046875 + }, + { + "word": " your", + "start": 2262.02, + "end": 2262.44, + "probability": 0.99609375 + }, + { + "word": " basic", + "start": 2262.44, + "end": 2263.96, + "probability": 0.98486328125 + }, + { + "word": " public", + "start": 2263.96, + "end": 2264.46, + "probability": 0.97509765625 + }, + { + "word": " profile", + "start": 2264.46, + "end": 2264.9, + "probability": 0.99609375 + }, + { + "word": " information.", + "start": 2264.9, + "end": 2265.38, + "probability": 0.9892578125 + }, + { + "word": " So", + "start": 2265.52, + "end": 2265.72, + "probability": 0.84716796875 + } + ] + }, + { + "id": 919, + "text": "your name and anything else that you've marked as public consumption, that website has access", + "start": 2265.72, + "end": 2271.68, + "words": [ + { + "word": " your", + "start": 2265.72, + "end": 2266.02, + "probability": 0.9638671875 + }, + { + "word": " name", + "start": 2266.02, + "end": 2266.78, + "probability": 0.9677734375 + }, + { + "word": " and", + "start": 2266.78, + "end": 2267.98, + "probability": 0.59619140625 + }, + { + "word": " anything", + "start": 2267.98, + "end": 2268.72, + "probability": 0.990234375 + }, + { + "word": " else", + "start": 2268.72, + "end": 2269.02, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2269.02, + "end": 2269.14, + "probability": 0.98779296875 + }, + { + "word": " you've", + "start": 2269.14, + "end": 2269.3, + "probability": 0.9951171875 + }, + { + "word": " marked", + "start": 2269.3, + "end": 2269.54, + "probability": 0.99755859375 + }, + { + "word": " as", + "start": 2269.54, + "end": 2269.74, + "probability": 0.99609375 + }, + { + "word": " public", + "start": 2269.74, + "end": 2270.04, + "probability": 0.97265625 + }, + { + "word": " consumption,", + "start": 2270.04, + "end": 2270.48, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 2270.68, + "end": 2270.82, + "probability": 0.9970703125 + }, + { + "word": " website", + "start": 2270.82, + "end": 2271.12, + "probability": 0.990234375 + }, + { + "word": " has", + "start": 2271.12, + "end": 2271.38, + "probability": 0.9970703125 + }, + { + "word": " access", + "start": 2271.38, + "end": 2271.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 920, + "text": "to.", + "start": 2271.68, + "end": 2272.02, + "words": [ + { + "word": " to.", + "start": 2271.68, + "end": 2272.02, + "probability": 0.98046875 + } + ] + }, + { + "id": 921, + "text": "Okay.", + "start": 2272.2, + "end": 2272.78, + "words": [ + { + "word": " Okay.", + "start": 2272.2, + "end": 2272.78, + "probability": 0.9013671875 + } + ] + }, + { + "id": 922, + "text": "Anything that's marked as private or sensitive information is not passed across to those", + "start": 2272.98, + "end": 2277.7, + "words": [ + { + "word": " Anything", + "start": 2272.98, + "end": 2273.34, + "probability": 0.91064453125 + }, + { + "word": " that's", + "start": 2273.34, + "end": 2273.68, + "probability": 0.9970703125 + }, + { + "word": " marked", + "start": 2273.68, + "end": 2273.88, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 2273.88, + "end": 2274.04, + "probability": 0.99755859375 + }, + { + "word": " private", + "start": 2274.04, + "end": 2274.34, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 2274.34, + "end": 2274.66, + "probability": 0.99755859375 + }, + { + "word": " sensitive", + "start": 2274.66, + "end": 2275.0, + "probability": 0.99853515625 + }, + { + "word": " information", + "start": 2275.0, + "end": 2275.46, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 2275.46, + "end": 2276.12, + "probability": 0.98974609375 + }, + { + "word": " not", + "start": 2276.12, + "end": 2276.6, + "probability": 0.9990234375 + }, + { + "word": " passed", + "start": 2276.6, + "end": 2276.92, + "probability": 0.99755859375 + }, + { + "word": " across", + "start": 2276.92, + "end": 2277.24, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2277.24, + "end": 2277.56, + "probability": 0.99658203125 + }, + { + "word": " those", + "start": 2277.56, + "end": 2277.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 923, + "text": "things. And that's why a lot of pages, especially if they...even if they allow the sign-in as", + "start": 2277.7, + "end": 2282.28, + "words": [ + { + "word": " things.", + "start": 2277.7, + "end": 2277.94, + "probability": 0.99658203125 + }, + { + "word": " And", + "start": 2278.06, + "end": 2278.08, + "probability": 0.91650390625 + }, + { + "word": " that's", + "start": 2278.08, + "end": 2278.28, + "probability": 0.9990234375 + }, + { + "word": " why", + "start": 2278.28, + "end": 2278.4, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2278.4, + "end": 2278.52, + "probability": 0.998046875 + }, + { + "word": " lot", + "start": 2278.52, + "end": 2278.66, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2278.66, + "end": 2278.76, + "probability": 0.998046875 + }, + { + "word": " pages,", + "start": 2278.76, + "end": 2279.32, + "probability": 0.98779296875 + }, + { + "word": " especially", + "start": 2279.64, + "end": 2279.9, + "probability": 0.90673828125 + }, + { + "word": " if", + "start": 2279.9, + "end": 2280.24, + "probability": 0.91064453125 + }, + { + "word": " they...even", + "start": 2280.24, + "end": 2281.0, + "probability": 0.6708984375 + }, + { + "word": " if", + "start": 2281.0, + "end": 2281.16, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 2281.16, + "end": 2281.28, + "probability": 0.9990234375 + }, + { + "word": " allow", + "start": 2281.28, + "end": 2281.52, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2281.52, + "end": 2281.76, + "probability": 0.9716796875 + }, + { + "word": " sign", + "start": 2281.76, + "end": 2282.02, + "probability": 0.98046875 + }, + { + "word": "-in", + "start": 2282.02, + "end": 2282.14, + "probability": 0.8056640625 + }, + { + "word": " as", + "start": 2282.14, + "end": 2282.28, + "probability": 0.98974609375 + } + ] + }, + { + "id": 924, + "text": "Facebook, will then ask you for additional information. It's because they can't pull", + "start": 2282.28, + "end": 2285.84, + "words": [ + { + "word": " Facebook,", + "start": 2282.28, + "end": 2282.64, + "probability": 0.994140625 + }, + { + "word": " will", + "start": 2282.84, + "end": 2283.02, + "probability": 0.97900390625 + }, + { + "word": " then", + "start": 2283.02, + "end": 2283.18, + "probability": 0.998046875 + }, + { + "word": " ask", + "start": 2283.18, + "end": 2283.46, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2283.46, + "end": 2283.64, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 2283.64, + "end": 2283.78, + "probability": 0.99951171875 + }, + { + "word": " additional", + "start": 2283.78, + "end": 2284.08, + "probability": 0.998046875 + }, + { + "word": " information.", + "start": 2284.08, + "end": 2284.66, + "probability": 0.99951171875 + }, + { + "word": " It's", + "start": 2284.74, + "end": 2284.96, + "probability": 0.9365234375 + }, + { + "word": " because", + "start": 2284.96, + "end": 2285.14, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2285.14, + "end": 2285.32, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 2285.32, + "end": 2285.7, + "probability": 0.99951171875 + }, + { + "word": " pull", + "start": 2285.7, + "end": 2285.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 925, + "text": "that information from Facebook.", + "start": 2285.84, + "end": 2287.0, + "words": [ + { + "word": " that", + "start": 2285.84, + "end": 2286.0, + "probability": 0.99609375 + }, + { + "word": " information", + "start": 2286.0, + "end": 2286.34, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 2286.34, + "end": 2286.68, + "probability": 0.99853515625 + }, + { + "word": " Facebook.", + "start": 2286.68, + "end": 2287.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 926, + "text": "Okay.", + "start": 2287.62, + "end": 2288.2, + "words": [ + { + "word": " Okay.", + "start": 2287.62, + "end": 2288.2, + "probability": 0.986328125 + } + ] + }, + { + "id": 927, + "text": "So in other words, things you have marked as just for friends, they can't see unless", + "start": 2288.7999999999997, + "end": 2292.88, + "words": [ + { + "word": " So", + "start": 2288.7999999999997, + "end": 2289.24, + "probability": 0.2939453125 + }, + { + "word": " in", + "start": 2289.24, + "end": 2289.44, + "probability": 0.64013671875 + }, + { + "word": " other", + "start": 2289.44, + "end": 2289.56, + "probability": 1.0 + }, + { + "word": " words,", + "start": 2289.56, + "end": 2289.76, + "probability": 1.0 + }, + { + "word": " things", + "start": 2289.86, + "end": 2290.24, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2290.24, + "end": 2290.4, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2290.4, + "end": 2290.52, + "probability": 0.9912109375 + }, + { + "word": " marked", + "start": 2290.52, + "end": 2290.78, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2290.78, + "end": 2290.98, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 2290.98, + "end": 2291.22, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 2291.22, + "end": 2291.4, + "probability": 0.9951171875 + }, + { + "word": " friends,", + "start": 2291.4, + "end": 2291.72, + "probability": 0.98974609375 + }, + { + "word": " they", + "start": 2291.84, + "end": 2292.12, + "probability": 0.99609375 + }, + { + "word": " can't", + "start": 2292.12, + "end": 2292.42, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 2292.42, + "end": 2292.58, + "probability": 0.05377197265625 + }, + { + "word": " unless", + "start": 2292.58, + "end": 2292.88, + "probability": 0.61376953125 + } + ] + }, + { + "id": 928, + "text": "you give permission specifically.", + "start": 2292.88, + "end": 2294.56, + "words": [ + { + "word": " you", + "start": 2292.88, + "end": 2293.06, + "probability": 1.0 + }, + { + "word": " give", + "start": 2293.06, + "end": 2293.26, + "probability": 0.99755859375 + }, + { + "word": " permission", + "start": 2293.26, + "end": 2294.1, + "probability": 0.57568359375 + }, + { + "word": " specifically.", + "start": 2294.1, + "end": 2294.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 929, + "text": "Okay. Right.", + "start": 2294.8, + "end": 2295.3, + "words": [ + { + "word": " Okay.", + "start": 2294.8, + "end": 2294.96, + "probability": 0.955078125 + }, + { + "word": " Right.", + "start": 2295.04, + "end": 2295.3, + "probability": 0.339111328125 + } + ] + }, + { + "id": 930, + "text": "Sounds good.", + "start": 2295.38, + "end": 2295.7, + "words": [ + { + "word": " Sounds", + "start": 2295.38, + "end": 2295.52, + "probability": 0.873046875 + }, + { + "word": " good.", + "start": 2295.52, + "end": 2295.7, + "probability": 1.0 + } + ] + }, + { + "id": 931, + "text": "Now...", + "start": 2296.16, + "end": 2296.56, + "words": [ + { + "word": " Now...", + "start": 2296.16, + "end": 2296.56, + "probability": 0.03985595703125 + } + ] + }, + { + "id": 932, + "text": "All right. Thanks for the...", + "start": 2296.56, + "end": 2297.34, + "words": [ + { + "word": " All", + "start": 2296.56, + "end": 2296.7, + "probability": 0.5380859375 + }, + { + "word": " right.", + "start": 2296.7, + "end": 2296.8, + "probability": 1.0 + }, + { + "word": " Thanks", + "start": 2296.8, + "end": 2296.94, + "probability": 0.74365234375 + }, + { + "word": " for", + "start": 2296.94, + "end": 2297.12, + "probability": 0.76171875 + }, + { + "word": " the...", + "start": 2297.12, + "end": 2297.34, + "probability": 0.60595703125 + } + ] + }, + { + "id": 933, + "text": "And one of the reasons I don't do it is because there was a bad habit of several", + "start": 2297.34, + "end": 2301.76, + "words": [ + { + "word": " And", + "start": 2297.34, + "end": 2297.56, + "probability": 0.98828125 + }, + { + "word": " one", + "start": 2297.56, + "end": 2297.74, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2297.74, + "end": 2297.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 2297.84, + "end": 2297.86, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 2297.86, + "end": 2298.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 2298.04, + "end": 2298.26, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2298.26, + "end": 2298.5, + "probability": 1.0 + }, + { + "word": " do", + "start": 2298.5, + "end": 2298.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 2298.62, + "end": 2298.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 2298.76, + "end": 2298.94, + "probability": 1.0 + }, + { + "word": " because", + "start": 2298.94, + "end": 2299.14, + "probability": 1.0 + }, + { + "word": " there", + "start": 2299.14, + "end": 2299.42, + "probability": 1.0 + }, + { + "word": " was", + "start": 2299.42, + "end": 2299.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 2299.56, + "end": 2299.7, + "probability": 1.0 + }, + { + "word": " bad", + "start": 2299.7, + "end": 2300.0, + "probability": 1.0 + }, + { + "word": " habit", + "start": 2300.0, + "end": 2300.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 2300.34, + "end": 2300.7, + "probability": 1.0 + }, + { + "word": " several", + "start": 2300.7, + "end": 2301.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 934, + "text": "websites that would be like, hey, we're going to post as you whenever the heck we want.", + "start": 2301.76, + "end": 2306.48, + "words": [ + { + "word": " websites", + "start": 2301.76, + "end": 2302.24, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2302.24, + "end": 2302.82, + "probability": 1.0 + }, + { + "word": " would", + "start": 2302.82, + "end": 2303.02, + "probability": 1.0 + }, + { + "word": " be", + "start": 2303.02, + "end": 2303.26, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2303.26, + "end": 2303.56, + "probability": 0.9990234375 + }, + { + "word": " hey,", + "start": 2303.64, + "end": 2303.8, + "probability": 0.96484375 + }, + { + "word": " we're", + "start": 2303.82, + "end": 2303.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 2303.96, + "end": 2304.02, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 2304.02, + "end": 2304.16, + "probability": 1.0 + }, + { + "word": " post", + "start": 2304.16, + "end": 2304.48, + "probability": 1.0 + }, + { + "word": " as", + "start": 2304.48, + "end": 2304.72, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2304.72, + "end": 2305.14, + "probability": 1.0 + }, + { + "word": " whenever", + "start": 2305.14, + "end": 2305.44, + "probability": 0.5751953125 + }, + { + "word": " the", + "start": 2305.44, + "end": 2305.72, + "probability": 1.0 + }, + { + "word": " heck", + "start": 2305.72, + "end": 2305.94, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2305.94, + "end": 2306.12, + "probability": 1.0 + }, + { + "word": " want.", + "start": 2306.12, + "end": 2306.48, + "probability": 1.0 + } + ] + }, + { + "id": 935, + "text": "And we're going to be like, you signed in to twinkies.com with Facebook. And so it'll", + "start": 2306.7, + "end": 2314.5, + "words": [ + { + "word": " And", + "start": 2306.7, + "end": 2307.14, + "probability": 0.91259765625 + }, + { + "word": " we're", + "start": 2307.14, + "end": 2307.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 2307.36, + "end": 2307.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 2307.38, + "end": 2307.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 2307.48, + "end": 2307.56, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2307.56, + "end": 2307.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 2307.94, + "end": 2308.52, + "probability": 0.9990234375 + }, + { + "word": " signed", + "start": 2308.52, + "end": 2308.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 2308.88, + "end": 2309.34, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2309.34, + "end": 2309.92, + "probability": 0.90966796875 + }, + { + "word": " twinkies", + "start": 2309.92, + "end": 2311.68, + "probability": 0.88330078125 + }, + { + "word": ".com", + "start": 2311.68, + "end": 2312.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 2312.22, + "end": 2312.48, + "probability": 0.99951171875 + }, + { + "word": " Facebook.", + "start": 2312.48, + "end": 2312.9, + "probability": 1.0 + }, + { + "word": " And", + "start": 2312.9, + "end": 2313.3, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 2313.3, + "end": 2313.58, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 2313.58, + "end": 2314.5, + "probability": 0.7568359375 + } + ] + }, + { + "id": 936, + "text": "randomly post things like, I love Twinkies.", + "start": 2314.5, + "end": 2317.38, + "words": [ + { + "word": " randomly", + "start": 2314.5, + "end": 2315.1, + "probability": 1.0 + }, + { + "word": " post", + "start": 2315.1, + "end": 2315.56, + "probability": 1.0 + }, + { + "word": " things", + "start": 2315.56, + "end": 2315.84, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2315.84, + "end": 2316.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 2316.32, + "end": 2316.58, + "probability": 1.0 + }, + { + "word": " love", + "start": 2316.58, + "end": 2316.84, + "probability": 1.0 + }, + { + "word": " Twinkies.", + "start": 2316.84, + "end": 2317.38, + "probability": 0.98681640625 + } + ] + }, + { + "id": 937, + "text": "And it's just like, come on now.", + "start": 2317.98, + "end": 2319.64, + "words": [ + { + "word": " And", + "start": 2317.98, + "end": 2318.38, + "probability": 0.08062744140625 + }, + { + "word": " it's", + "start": 2318.38, + "end": 2318.76, + "probability": 0.94140625 + }, + { + "word": " just", + "start": 2318.76, + "end": 2318.86, + "probability": 0.61474609375 + }, + { + "word": " like,", + "start": 2318.86, + "end": 2319.02, + "probability": 0.998046875 + }, + { + "word": " come", + "start": 2319.08, + "end": 2319.22, + "probability": 0.9912109375 + }, + { + "word": " on", + "start": 2319.22, + "end": 2319.42, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2319.42, + "end": 2319.64, + "probability": 0.9931640625 + } + ] + }, + { + "id": 938, + "text": "I don't think that's happening so much these days because they kind of got called", + "start": 2319.82, + "end": 2322.9, + "words": [ + { + "word": " I", + "start": 2319.82, + "end": 2320.08, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 2320.08, + "end": 2320.2, + "probability": 1.0 + }, + { + "word": " think", + "start": 2320.2, + "end": 2320.28, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2320.28, + "end": 2320.52, + "probability": 1.0 + }, + { + "word": " happening", + "start": 2320.52, + "end": 2320.7, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 2320.7, + "end": 2320.94, + "probability": 1.0 + }, + { + "word": " much", + "start": 2320.94, + "end": 2321.14, + "probability": 1.0 + }, + { + "word": " these", + "start": 2321.14, + "end": 2321.3, + "probability": 1.0 + }, + { + "word": " days", + "start": 2321.3, + "end": 2321.64, + "probability": 1.0 + }, + { + "word": " because", + "start": 2321.64, + "end": 2321.9, + "probability": 0.88818359375 + }, + { + "word": " they", + "start": 2321.9, + "end": 2322.06, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 2322.06, + "end": 2322.38, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2322.38, + "end": 2322.48, + "probability": 1.0 + }, + { + "word": " got", + "start": 2322.48, + "end": 2322.6, + "probability": 1.0 + }, + { + "word": " called", + "start": 2322.6, + "end": 2322.9, + "probability": 1.0 + } + ] + }, + { + "id": 939, + "text": "out for that kind of stuff.", + "start": 2322.9, + "end": 2323.76, + "words": [ + { + "word": " out", + "start": 2322.9, + "end": 2323.06, + "probability": 1.0 + }, + { + "word": " for", + "start": 2323.06, + "end": 2323.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 2323.2, + "end": 2323.3, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2323.3, + "end": 2323.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 2323.44, + "end": 2323.56, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2323.56, + "end": 2323.76, + "probability": 1.0 + } + ] + }, + { + "id": 940, + "text": "Yeah. It doesn't happen. But that's what turned me off to the whole signing in as...with", + "start": 2324.16, + "end": 2328.84, + "words": [ + { + "word": " Yeah.", + "start": 2324.16, + "end": 2324.56, + "probability": 0.9130859375 + }, + { + "word": " It", + "start": 2324.56, + "end": 2324.66, + "probability": 0.87841796875 + }, + { + "word": " doesn't", + "start": 2324.66, + "end": 2324.76, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 2324.76, + "end": 2324.94, + "probability": 0.99951171875 + }, + { + "word": " But", + "start": 2325.04, + "end": 2325.22, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 2325.22, + "end": 2325.54, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 2325.54, + "end": 2325.62, + "probability": 1.0 + }, + { + "word": " turned", + "start": 2325.62, + "end": 2326.1, + "probability": 1.0 + }, + { + "word": " me", + "start": 2326.1, + "end": 2326.28, + "probability": 1.0 + }, + { + "word": " off", + "start": 2326.28, + "end": 2326.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2326.5, + "end": 2326.6, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2326.6, + "end": 2326.7, + "probability": 1.0 + }, + { + "word": " whole", + "start": 2326.7, + "end": 2326.78, + "probability": 0.99951171875 + }, + { + "word": " signing", + "start": 2326.78, + "end": 2327.12, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 2327.12, + "end": 2327.4, + "probability": 0.9970703125 + }, + { + "word": " as...with", + "start": 2327.4, + "end": 2328.84, + "probability": 0.1376953125 + } + ] + }, + { + "id": 941, + "text": "another website. Not to mention that how we like every week talk about, hey, this site", + "start": 2328.84, + "end": 2335.78, + "words": [ + { + "word": " another", + "start": 2328.84, + "end": 2329.14, + "probability": 0.99951171875 + }, + { + "word": " website.", + "start": 2329.14, + "end": 2329.54, + "probability": 0.990234375 + }, + { + "word": " Not", + "start": 2329.8, + "end": 2330.2, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2330.2, + "end": 2330.34, + "probability": 1.0 + }, + { + "word": " mention", + "start": 2330.34, + "end": 2330.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 2330.62, + "end": 2330.84, + "probability": 0.98486328125 + }, + { + "word": " how", + "start": 2330.84, + "end": 2332.06, + "probability": 0.484130859375 + }, + { + "word": " we", + "start": 2332.06, + "end": 2332.84, + "probability": 0.99365234375 + }, + { + "word": " like", + "start": 2332.84, + "end": 2333.2, + "probability": 0.4501953125 + }, + { + "word": " every", + "start": 2333.2, + "end": 2333.52, + "probability": 0.98974609375 + }, + { + "word": " week", + "start": 2333.52, + "end": 2333.8, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 2333.8, + "end": 2334.02, + "probability": 0.99072265625 + }, + { + "word": " about,", + "start": 2334.02, + "end": 2334.42, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 2334.64, + "end": 2335.02, + "probability": 0.73681640625 + }, + { + "word": " this", + "start": 2335.12, + "end": 2335.38, + "probability": 0.4912109375 + }, + { + "word": " site", + "start": 2335.38, + "end": 2335.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 942, + "text": "got hacked. You should probably change all your passwords. And that's one of the reasons", + "start": 2335.78, + "end": 2340.16, + "words": [ + { + "word": " got", + "start": 2335.78, + "end": 2335.92, + "probability": 0.9990234375 + }, + { + "word": " hacked.", + "start": 2335.92, + "end": 2336.28, + "probability": 1.0 + }, + { + "word": " You", + "start": 2336.42, + "end": 2336.76, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 2336.76, + "end": 2337.18, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 2337.18, + "end": 2337.46, + "probability": 1.0 + }, + { + "word": " change", + "start": 2337.46, + "end": 2337.86, + "probability": 1.0 + }, + { + "word": " all", + "start": 2337.86, + "end": 2338.02, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2338.02, + "end": 2338.14, + "probability": 0.99951171875 + }, + { + "word": " passwords.", + "start": 2338.14, + "end": 2338.54, + "probability": 1.0 + }, + { + "word": " And", + "start": 2338.78, + "end": 2339.12, + "probability": 0.9970703125 + }, + { + "word": " that's", + "start": 2339.12, + "end": 2339.6, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 2339.6, + "end": 2339.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 2339.76, + "end": 2339.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 2339.86, + "end": 2339.9, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 2339.9, + "end": 2340.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 943, + "text": "for it. It's just like, I don't sign in with anything as Facebook. It's just like, nope.", + "start": 2340.16, + "end": 2345.28, + "words": [ + { + "word": " for", + "start": 2340.16, + "end": 2340.38, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2340.38, + "end": 2340.56, + "probability": 1.0 + }, + { + "word": " It's", + "start": 2340.62, + "end": 2340.92, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 2340.92, + "end": 2341.06, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2341.06, + "end": 2341.26, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 2341.34, + "end": 2341.58, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 2341.58, + "end": 2341.74, + "probability": 1.0 + }, + { + "word": " sign", + "start": 2341.74, + "end": 2341.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 2341.9, + "end": 2342.1, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 2342.1, + "end": 2342.22, + "probability": 1.0 + }, + { + "word": " anything", + "start": 2342.22, + "end": 2342.54, + "probability": 1.0 + }, + { + "word": " as", + "start": 2342.54, + "end": 2343.56, + "probability": 0.9755859375 + }, + { + "word": " Facebook.", + "start": 2343.56, + "end": 2344.0, + "probability": 0.99951171875 + }, + { + "word": " It's", + "start": 2344.34, + "end": 2344.74, + "probability": 0.81396484375 + }, + { + "word": " just", + "start": 2344.74, + "end": 2344.82, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2344.82, + "end": 2345.02, + "probability": 0.99951171875 + }, + { + "word": " nope.", + "start": 2345.08, + "end": 2345.28, + "probability": 0.9951171875 + } + ] + }, + { + "id": 944, + "text": "In fact, I don't even open Facebook. I don't even...", + "start": 2345.46, + "end": 2347.36, + "words": [ + { + "word": " In", + "start": 2345.46, + "end": 2345.8, + "probability": 0.986328125 + }, + { + "word": " fact,", + "start": 2345.8, + "end": 2346.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 2346.1, + "end": 2346.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2346.2, + "end": 2346.28, + "probability": 1.0 + }, + { + "word": " even", + "start": 2346.28, + "end": 2346.4, + "probability": 1.0 + }, + { + "word": " open", + "start": 2346.4, + "end": 2346.8, + "probability": 0.99951171875 + }, + { + "word": " Facebook.", + "start": 2346.8, + "end": 2347.24, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2347.24, + "end": 2347.36, + "probability": 0.37255859375 + }, + { + "word": " don't", + "start": 2347.36, + "end": 2347.36, + "probability": 0.7958984375 + }, + { + "word": " even...", + "start": 2347.36, + "end": 2347.36, + "probability": 0.5068359375 + } + ] + }, + { + "id": 945, + "text": "", + "start": 2347.36, + "end": 2347.36, + "words": [] + }, + { + "id": 946, + "text": "I don't sign in with Facebook, but like once a month maybe.", + "start": 2347.36, + "end": 2348.58, + "words": [ + { + "word": " I", + "start": 2347.36, + "end": 2347.5, + "probability": 0.01045989990234375 + }, + { + "word": " don't", + "start": 2347.5, + "end": 2347.5, + "probability": 0.541015625 + }, + { + "word": " sign", + "start": 2347.5, + "end": 2347.5, + "probability": 0.039306640625 + }, + { + "word": " in", + "start": 2347.5, + "end": 2347.5, + "probability": 0.79443359375 + }, + { + "word": " with", + "start": 2347.5, + "end": 2347.5, + "probability": 0.001972198486328125 + }, + { + "word": " Facebook,", + "start": 2347.5, + "end": 2347.5, + "probability": 0.99169921875 + }, + { + "word": " but", + "start": 2347.5, + "end": 2347.5, + "probability": 0.297119140625 + }, + { + "word": " like", + "start": 2347.5, + "end": 2347.6, + "probability": 0.53955078125 + }, + { + "word": " once", + "start": 2347.6, + "end": 2347.84, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 2347.84, + "end": 2347.98, + "probability": 1.0 + }, + { + "word": " month", + "start": 2347.98, + "end": 2348.24, + "probability": 1.0 + }, + { + "word": " maybe.", + "start": 2348.24, + "end": 2348.58, + "probability": 0.66162109375 + } + ] + }, + { + "id": 947, + "text": "I do it at work for work and that's it. I don't have a Facebook.", + "start": 2349.04, + "end": 2351.98, + "words": [ + { + "word": " I", + "start": 2349.04, + "end": 2349.44, + "probability": 0.98583984375 + }, + { + "word": " do", + "start": 2349.44, + "end": 2349.54, + "probability": 1.0 + }, + { + "word": " it", + "start": 2349.54, + "end": 2349.62, + "probability": 1.0 + }, + { + "word": " at", + "start": 2349.62, + "end": 2349.7, + "probability": 0.99853515625 + }, + { + "word": " work", + "start": 2349.7, + "end": 2349.92, + "probability": 1.0 + }, + { + "word": " for", + "start": 2349.92, + "end": 2350.1, + "probability": 0.87841796875 + }, + { + "word": " work", + "start": 2350.1, + "end": 2350.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 2350.34, + "end": 2350.58, + "probability": 0.2239990234375 + }, + { + "word": " that's", + "start": 2350.58, + "end": 2350.9, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2350.9, + "end": 2351.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 2351.08, + "end": 2351.34, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2351.34, + "end": 2351.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 2351.5, + "end": 2351.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 2351.6, + "end": 2351.74, + "probability": 1.0 + }, + { + "word": " Facebook.", + "start": 2351.74, + "end": 2351.98, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "Yeah. So yeah. If you want my opinion, don't sign in as Facebook and just create an account", + "start": 2352.22, + "end": 2357.06, + "words": [ + { + "word": " Yeah.", + "start": 2352.22, + "end": 2352.6, + "probability": 0.7529296875 + }, + { + "word": " So", + "start": 2352.66, + "end": 2352.88, + "probability": 0.62451171875 + }, + { + "word": " yeah.", + "start": 2352.88, + "end": 2353.32, + "probability": 0.261962890625 + }, + { + "word": " If", + "start": 2353.6, + "end": 2354.0, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2354.0, + "end": 2354.38, + "probability": 0.9111328125 + }, + { + "word": " want", + "start": 2354.38, + "end": 2354.54, + "probability": 1.0 + }, + { + "word": " my", + "start": 2354.54, + "end": 2354.66, + "probability": 0.99951171875 + }, + { + "word": " opinion,", + "start": 2354.66, + "end": 2354.96, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2355.06, + "end": 2355.4, + "probability": 1.0 + }, + { + "word": " sign", + "start": 2355.4, + "end": 2355.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 2355.56, + "end": 2355.7, + "probability": 0.98681640625 + }, + { + "word": " as", + "start": 2355.7, + "end": 2355.82, + "probability": 0.402587890625 + }, + { + "word": " Facebook", + "start": 2355.82, + "end": 2356.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 2356.12, + "end": 2356.34, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 2356.34, + "end": 2356.46, + "probability": 1.0 + }, + { + "word": " create", + "start": 2356.46, + "end": 2356.7, + "probability": 1.0 + }, + { + "word": " an", + "start": 2356.7, + "end": 2356.84, + "probability": 1.0 + }, + { + "word": " account", + "start": 2356.84, + "end": 2357.06, + "probability": 1.0 + } + ] + }, + { + "id": 949, + "text": "and keep...have a separate password and make sure that it's different than any of your", + "start": 2357.06, + "end": 2360.54, + "words": [ + { + "word": " and", + "start": 2357.06, + "end": 2357.26, + "probability": 0.9990234375 + }, + { + "word": " keep...have", + "start": 2357.26, + "end": 2357.56, + "probability": 0.2578125 + }, + { + "word": " a", + "start": 2357.56, + "end": 2357.7, + "probability": 0.99951171875 + }, + { + "word": " separate", + "start": 2357.7, + "end": 2357.9, + "probability": 0.99853515625 + }, + { + "word": " password", + "start": 2357.9, + "end": 2358.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 2358.32, + "end": 2358.56, + "probability": 0.98291015625 + }, + { + "word": " make", + "start": 2358.56, + "end": 2358.7, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 2358.7, + "end": 2358.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 2358.86, + "end": 2359.0, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 2359.0, + "end": 2359.26, + "probability": 0.99462890625 + }, + { + "word": " different", + "start": 2359.26, + "end": 2359.92, + "probability": 0.99853515625 + }, + { + "word": " than", + "start": 2359.92, + "end": 2360.16, + "probability": 0.9990234375 + }, + { + "word": " any", + "start": 2360.16, + "end": 2360.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2360.36, + "end": 2360.46, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2360.46, + "end": 2360.54, + "probability": 1.0 + } + ] + }, + { + "id": 950, + "text": "other passwords because security and then be safe and then don't worry about it.", + "start": 2360.54, + "end": 2366.08, + "words": [ + { + "word": " other", + "start": 2360.54, + "end": 2360.68, + "probability": 0.99951171875 + }, + { + "word": " passwords", + "start": 2360.68, + "end": 2361.1, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 2361.1, + "end": 2361.44, + "probability": 0.92431640625 + }, + { + "word": " security", + "start": 2361.44, + "end": 2361.96, + "probability": 0.11248779296875 + }, + { + "word": " and", + "start": 2361.96, + "end": 2363.7, + "probability": 0.63525390625 + }, + { + "word": " then", + "start": 2363.7, + "end": 2364.72, + "probability": 0.966796875 + }, + { + "word": " be", + "start": 2364.72, + "end": 2365.12, + "probability": 0.89013671875 + }, + { + "word": " safe", + "start": 2365.12, + "end": 2365.4, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2365.4, + "end": 2365.56, + "probability": 0.9140625 + }, + { + "word": " then", + "start": 2365.56, + "end": 2365.62, + "probability": 0.693359375 + }, + { + "word": " don't", + "start": 2365.62, + "end": 2365.72, + "probability": 0.96484375 + }, + { + "word": " worry", + "start": 2365.72, + "end": 2365.82, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 2365.82, + "end": 2365.96, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2365.96, + "end": 2366.08, + "probability": 0.99755859375 + } + ] + }, + { + "id": 951, + "text": "So let's say if I want to...if I do that, but then I want people on the other website", + "start": 2366.48, + "end": 2371.1, + "words": [ + { + "word": " So", + "start": 2366.48, + "end": 2366.88, + "probability": 0.859375 + }, + { + "word": " let's", + "start": 2366.88, + "end": 2367.22, + "probability": 0.9775390625 + }, + { + "word": " say", + "start": 2367.22, + "end": 2367.3, + "probability": 0.99462890625 + }, + { + "word": " if", + "start": 2367.3, + "end": 2367.46, + "probability": 0.97314453125 + }, + { + "word": " I", + "start": 2367.46, + "end": 2367.52, + "probability": 0.99755859375 + }, + { + "word": " want", + "start": 2367.52, + "end": 2367.76, + "probability": 0.492431640625 + }, + { + "word": " to...if", + "start": 2367.76, + "end": 2368.6, + "probability": 0.791015625 + }, + { + "word": " I", + "start": 2368.6, + "end": 2368.72, + "probability": 0.9970703125 + }, + { + "word": " do", + "start": 2368.72, + "end": 2368.84, + "probability": 0.94775390625 + }, + { + "word": " that,", + "start": 2368.84, + "end": 2369.04, + "probability": 0.90771484375 + }, + { + "word": " but", + "start": 2369.06, + "end": 2369.18, + "probability": 0.9912109375 + }, + { + "word": " then", + "start": 2369.18, + "end": 2369.28, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 2369.28, + "end": 2369.38, + "probability": 0.998046875 + }, + { + "word": " want", + "start": 2369.38, + "end": 2369.6, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 2369.6, + "end": 2370.36, + "probability": 0.99658203125 + }, + { + "word": " on", + "start": 2370.36, + "end": 2370.6, + "probability": 0.95751953125 + }, + { + "word": " the", + "start": 2370.6, + "end": 2370.66, + "probability": 0.6630859375 + }, + { + "word": " other", + "start": 2370.66, + "end": 2370.78, + "probability": 0.60546875 + }, + { + "word": " website", + "start": 2370.78, + "end": 2371.1, + "probability": 0.86865234375 + } + ] + }, + { + "id": 952, + "text": "to see my profile, I would just send them, I guess, the URL of my basic...", + "start": 2371.1, + "end": 2376.08, + "words": [ + { + "word": " to", + "start": 2371.1, + "end": 2371.36, + "probability": 0.9951171875 + }, + { + "word": " see", + "start": 2371.36, + "end": 2371.56, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2371.56, + "end": 2371.72, + "probability": 0.99951171875 + }, + { + "word": " profile,", + "start": 2371.72, + "end": 2372.12, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2372.42, + "end": 2372.82, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2372.82, + "end": 2373.02, + "probability": 0.97900390625 + }, + { + "word": " just", + "start": 2373.02, + "end": 2373.2, + "probability": 0.99853515625 + }, + { + "word": " send", + "start": 2373.2, + "end": 2373.5, + "probability": 0.998046875 + }, + { + "word": " them,", + "start": 2373.5, + "end": 2373.72, + "probability": 0.91455078125 + }, + { + "word": " I", + "start": 2373.74, + "end": 2373.9, + "probability": 0.9970703125 + }, + { + "word": " guess,", + "start": 2373.9, + "end": 2374.14, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2374.22, + "end": 2374.32, + "probability": 0.9365234375 + }, + { + "word": " URL", + "start": 2374.32, + "end": 2374.74, + "probability": 0.98779296875 + }, + { + "word": " of", + "start": 2374.74, + "end": 2375.26, + "probability": 0.98974609375 + }, + { + "word": " my", + "start": 2375.26, + "end": 2375.38, + "probability": 0.96875 + }, + { + "word": " basic...", + "start": 2375.38, + "end": 2376.08, + "probability": 0.7568359375 + } + ] + }, + { + "id": 953, + "text": "Yeah.", + "start": 2376.94, + "end": 2377.34, + "words": [ + { + "word": " Yeah.", + "start": 2376.94, + "end": 2377.34, + "probability": 0.68994140625 + } + ] + }, + { + "id": 954, + "text": "...Facebook page.", + "start": 2377.34, + "end": 2377.56, + "words": [ + { + "word": " ...Facebook", + "start": 2377.34, + "end": 2377.48, + "probability": 0.49462890625 + }, + { + "word": " page.", + "start": 2377.48, + "end": 2377.56, + "probability": 0.8046875 + } + ] + }, + { + "id": 955, + "text": "Yeah. You could...I mean, if you're talking like another social network or something,", + "start": 2377.56, + "end": 2380.56, + "words": [ + { + "word": " Yeah.", + "start": 2377.56, + "end": 2377.58, + "probability": 0.1708984375 + }, + { + "word": " You", + "start": 2377.58, + "end": 2377.58, + "probability": 0.047821044921875 + }, + { + "word": " could...I", + "start": 2377.58, + "end": 2378.04, + "probability": 0.4091796875 + }, + { + "word": " mean,", + "start": 2378.04, + "end": 2378.16, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2378.24, + "end": 2378.34, + "probability": 0.9609375 + }, + { + "word": " you're", + "start": 2378.34, + "end": 2378.74, + "probability": 0.810546875 + }, + { + "word": " talking", + "start": 2378.74, + "end": 2379.16, + "probability": 0.96044921875 + }, + { + "word": " like", + "start": 2379.16, + "end": 2379.36, + "probability": 0.24658203125 + }, + { + "word": " another", + "start": 2379.36, + "end": 2379.54, + "probability": 0.95751953125 + }, + { + "word": " social", + "start": 2379.54, + "end": 2379.88, + "probability": 0.9990234375 + }, + { + "word": " network", + "start": 2379.88, + "end": 2380.12, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 2380.12, + "end": 2380.36, + "probability": 0.98974609375 + }, + { + "word": " something,", + "start": 2380.36, + "end": 2380.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 956, + "text": "you could just link to your Facebook page.", + "start": 2380.66, + "end": 2382.56, + "words": [ + { + "word": " you", + "start": 2380.66, + "end": 2380.74, + "probability": 0.9990234375 + }, + { + "word": " could", + "start": 2380.74, + "end": 2380.86, + "probability": 0.939453125 + }, + { + "word": " just", + "start": 2380.86, + "end": 2381.0, + "probability": 0.9970703125 + }, + { + "word": " link", + "start": 2381.0, + "end": 2381.32, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 2381.32, + "end": 2381.54, + "probability": 0.98828125 + }, + { + "word": " your", + "start": 2381.54, + "end": 2381.74, + "probability": 0.9990234375 + }, + { + "word": " Facebook", + "start": 2381.74, + "end": 2382.2, + "probability": 0.9970703125 + }, + { + "word": " page.", + "start": 2382.2, + "end": 2382.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 957, + "text": "Yeah. Okay.", + "start": 2382.72, + "end": 2383.88, + "words": [ + { + "word": " Yeah.", + "start": 2382.72, + "end": 2382.92, + "probability": 0.9619140625 + }, + { + "word": " Okay.", + "start": 2383.54, + "end": 2383.88, + "probability": 0.94970703125 + } + ] + }, + { + "id": 958, + "text": "And then that way, at least the two social sites don't have direct communication with", + "start": 2384.02, + "end": 2387.56, + "words": [ + { + "word": " And", + "start": 2384.02, + "end": 2384.12, + "probability": 0.9140625 + }, + { + "word": " then", + "start": 2384.12, + "end": 2384.24, + "probability": 0.98876953125 + }, + { + "word": " that", + "start": 2384.24, + "end": 2384.4, + "probability": 0.849609375 + }, + { + "word": " way,", + "start": 2384.4, + "end": 2384.56, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 2384.6, + "end": 2384.7, + "probability": 0.9970703125 + }, + { + "word": " least", + "start": 2384.7, + "end": 2385.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2385.0, + "end": 2385.12, + "probability": 0.96337890625 + }, + { + "word": " two", + "start": 2385.12, + "end": 2385.26, + "probability": 0.99560546875 + }, + { + "word": " social", + "start": 2385.26, + "end": 2385.6, + "probability": 0.9990234375 + }, + { + "word": " sites", + "start": 2385.6, + "end": 2385.88, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 2385.88, + "end": 2386.18, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 2386.18, + "end": 2386.32, + "probability": 1.0 + }, + { + "word": " direct", + "start": 2386.32, + "end": 2386.58, + "probability": 0.9990234375 + }, + { + "word": " communication", + "start": 2386.58, + "end": 2387.02, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2387.02, + "end": 2387.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 959, + "text": "one another at that point.", + "start": 2387.56, + "end": 2388.56, + "words": [ + { + "word": " one", + "start": 2387.56, + "end": 2387.7, + "probability": 0.9990234375 + }, + { + "word": " another", + "start": 2387.7, + "end": 2387.92, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2387.92, + "end": 2388.14, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 2388.14, + "end": 2388.26, + "probability": 0.99951171875 + }, + { + "word": " point.", + "start": 2388.26, + "end": 2388.56, + "probability": 1.0 + } + ] + }, + { + "id": 960, + "text": "Right. That's a good way of doing it. Okay. Thanks.", + "start": 2389.22, + "end": 2391.84, + "words": [ + { + "word": " Right.", + "start": 2389.22, + "end": 2389.56, + "probability": 0.9931640625 + }, + { + "word": " That's", + "start": 2389.56, + "end": 2389.9, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 2389.9, + "end": 2389.96, + "probability": 0.9990234375 + }, + { + "word": " good", + "start": 2389.96, + "end": 2390.14, + "probability": 0.998046875 + }, + { + "word": " way", + "start": 2390.14, + "end": 2390.3, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2390.3, + "end": 2390.38, + "probability": 0.98388671875 + }, + { + "word": " doing", + "start": 2390.38, + "end": 2390.5, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 2390.5, + "end": 2390.64, + "probability": 0.9970703125 + }, + { + "word": " Okay.", + "start": 2390.68, + "end": 2390.88, + "probability": 0.99560546875 + }, + { + "word": " Thanks.", + "start": 2391.5, + "end": 2391.84, + "probability": 0.66259765625 + } + ] + }, + { + "id": 961, + "text": "All right. Thanks for the call. I appreciate it.", + "start": 2391.84, + "end": 2393.46, + "words": [ + { + "word": " All", + "start": 2391.84, + "end": 2391.84, + "probability": 0.74462890625 + }, + { + "word": " right.", + "start": 2391.84, + "end": 2391.88, + "probability": 1.0 + }, + { + "word": " Thanks", + "start": 2392.06, + "end": 2392.4, + "probability": 0.9921875 + }, + { + "word": " for", + "start": 2392.4, + "end": 2392.5, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 2392.5, + "end": 2392.6, + "probability": 0.9970703125 + }, + { + "word": " call.", + "start": 2392.6, + "end": 2392.76, + "probability": 1.0 + }, + { + "word": " I", + "start": 2392.8, + "end": 2392.9, + "probability": 0.99609375 + }, + { + "word": " appreciate", + "start": 2392.9, + "end": 2393.18, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2393.18, + "end": 2393.46, + "probability": 1.0 + } + ] + }, + { + "id": 962, + "text": "Bye.", + "start": 2394.04, + "end": 2394.38, + "words": [ + { + "word": " Bye.", + "start": 2394.04, + "end": 2394.38, + "probability": 0.697265625 + } + ] + }, + { + "id": 963, + "text": "We're going to take a quick break. When we get back, more of The Computer Guru", + "start": 2394.5, + "end": 2398.3, + "words": [ + { + "word": " We're", + "start": 2394.5, + "end": 2394.84, + "probability": 0.9736328125 + }, + { + "word": " going", + "start": 2394.84, + "end": 2394.88, + "probability": 0.9619140625 + }, + { + "word": " to", + "start": 2394.88, + "end": 2394.9, + "probability": 1.0 + }, + { + "word": " take", + "start": 2394.9, + "end": 2395.04, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2395.04, + "end": 2395.08, + "probability": 1.0 + }, + { + "word": " quick", + "start": 2395.08, + "end": 2395.24, + "probability": 1.0 + }, + { + "word": " break.", + "start": 2395.24, + "end": 2395.44, + "probability": 1.0 + }, + { + "word": " When", + "start": 2395.68, + "end": 2396.02, + "probability": 0.99658203125 + }, + { + "word": " we", + "start": 2396.02, + "end": 2396.14, + "probability": 1.0 + }, + { + "word": " get", + "start": 2396.14, + "end": 2396.28, + "probability": 0.9970703125 + }, + { + "word": " back,", + "start": 2396.28, + "end": 2396.5, + "probability": 1.0 + }, + { + "word": " more", + "start": 2396.66, + "end": 2397.14, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2397.14, + "end": 2397.54, + "probability": 1.0 + }, + { + "word": " The", + "start": 2397.54, + "end": 2397.76, + "probability": 0.62841796875 + }, + { + "word": " Computer", + "start": 2397.76, + "end": 2398.04, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 2398.04, + "end": 2398.3, + "probability": 0.99755859375 + } + ] + }, + { + "id": 964, + "text": "Show at 7902040. Give us a call.", + "start": 2398.3, + "end": 2401.26, + "words": [ + { + "word": " Show", + "start": 2398.3, + "end": 2398.58, + "probability": 0.9912109375 + }, + { + "word": " at", + "start": 2398.58, + "end": 2398.98, + "probability": 0.89404296875 + }, + { + "word": " 7902040.", + "start": 2398.98, + "end": 2400.56, + "probability": 0.826171875 + }, + { + "word": " Give", + "start": 2400.6, + "end": 2400.94, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 2400.94, + "end": 2401.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 2401.06, + "end": 2401.08, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2401.08, + "end": 2401.26, + "probability": 1.0 + } + ] + }, + { + "id": 965, + "text": "All right.", + "start": 2407.34, + "end": 2410.1, + "words": [ + { + "word": " All", + "start": 2407.34, + "end": 2407.94, + "probability": 0.0031909942626953125 + }, + { + "word": " right.", + "start": 2407.94, + "end": 2410.1, + "probability": 0.9384765625 + } + ] + }, + { + "id": 966, + "text": "Bye.", + "start": 2410.44, + "end": 2411.52, + "words": [ + { + "word": " Bye.", + "start": 2410.44, + "end": 2411.52, + "probability": 0.1173095703125 + } + ] + }, + { + "id": 967, + "text": "Bye.", + "start": 2413.2, + "end": 2414.6, + "words": [ + { + "word": " Bye.", + "start": 2413.2, + "end": 2414.6, + "probability": 0.7578125 + } + ] + }, + { + "id": 968, + "text": "Bye.", + "start": 2421.68, + "end": 2421.7, + "words": [ + { + "word": " Bye.", + "start": 2421.68, + "end": 2421.7, + "probability": 0.87451171875 + } + ] + }, + { + "id": 969, + "text": "Bye.", + "start": 2421.96, + "end": 2422.78, + "words": [ + { + "word": " Bye.", + "start": 2421.96, + "end": 2422.78, + "probability": 0.90283203125 + } + ] + }, + { + "id": 970, + "text": "Bye.", + "start": 2427.32, + "end": 2428.72, + "words": [ + { + "word": " Bye.", + "start": 2427.32, + "end": 2428.72, + "probability": 0.90478515625 + } + ] + }, + { + "id": 971, + "text": "Bye.", + "start": 2428.72, + "end": 2429.96, + "words": [ + { + "word": " Bye.", + "start": 2428.72, + "end": 2429.96, + "probability": 0.8974609375 + } + ] + }, + { + "id": 972, + "text": "Bye.", + "start": 2429.96, + "end": 2430.18, + "words": [ + { + "word": " Bye.", + "start": 2429.96, + "end": 2430.18, + "probability": 0.88818359375 + } + ] + }, + { + "id": 973, + "text": "Bye.", + "start": 2430.32, + "end": 2430.76, + "words": [ + { + "word": " Bye.", + "start": 2430.32, + "end": 2430.76, + "probability": 0.87939453125 + } + ] + }, + { + "id": 974, + "text": "Bye.", + "start": 2437.5600000000004, + "end": 2438.3, + "words": [ + { + "word": " Bye.", + "start": 2437.5600000000004, + "end": 2438.3, + "probability": 6.455183029174805e-05 + } + ] + }, + { + "id": 975, + "text": "Bye.", + "start": 2449.86, + "end": 2450.6, + "words": [ + { + "word": " Bye.", + "start": 2449.86, + "end": 2450.6, + "probability": 0.85205078125 + } + ] + }, + { + "id": 976, + "text": "Bye.", + "start": 2452.44, + "end": 2453.18, + "words": [ + { + "word": " Bye.", + "start": 2452.44, + "end": 2453.18, + "probability": 0.88818359375 + } + ] + }, + { + "id": 977, + "text": "", + "start": 2453.38, + "end": 2453.38, + "words": [] + }, + { + "id": 978, + "text": "Bye.", + "start": 2453.98, + "end": 2454.72, + "words": [ + { + "word": " Bye.", + "start": 2453.98, + "end": 2454.72, + "probability": 0.89208984375 + } + ] + }, + { + "id": 979, + "text": "Bye.", + "start": 2454.8, + "end": 2455.16, + "words": [ + { + "word": " Bye.", + "start": 2454.8, + "end": 2455.16, + "probability": 0.89306640625 + } + ] + }, + { + "id": 980, + "text": "Bye.", + "start": 2455.34, + "end": 2456.08, + "words": [ + { + "word": " Bye.", + "start": 2455.34, + "end": 2456.08, + "probability": 0.8935546875 + } + ] + }, + { + "id": 981, + "text": "", + "start": 2456.08, + "end": 2456.08, + "words": [] + }, + { + "id": 982, + "text": "", + "start": 2456.08, + "end": 2456.08, + "words": [] + }, + { + "id": 983, + "text": "", + "start": 2456.08, + "end": 2456.08, + "words": [] + }, + { + "id": 984, + "text": "Bye.", + "start": 2456.08, + "end": 2456.38, + "words": [ + { + "word": " Bye.", + "start": 2456.08, + "end": 2456.38, + "probability": 0.89697265625 + } + ] + }, + { + "id": 985, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 986, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 987, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 988, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 989, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 990, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 991, + "text": "", + "start": 2456.38, + "end": 2456.38, + "words": [] + }, + { + "id": 992, + "text": "", + "start": 2456.44, + "end": 2456.44, + "words": [] + }, + { + "id": 993, + "text": "", + "start": 2456.44, + "end": 2456.44, + "words": [] + }, + { + "id": 994, + "text": "Bye.", + "start": 2456.62, + "end": 2457.04, + "words": [ + { + "word": " Bye.", + "start": 2456.62, + "end": 2457.04, + "probability": 0.91943359375 + } + ] + }, + { + "id": 995, + "text": "Bye.", + "start": 2457.22, + "end": 2457.6, + "words": [ + { + "word": " Bye.", + "start": 2457.22, + "end": 2457.6, + "probability": 0.92138671875 + } + ] + }, + { + "id": 996, + "text": "Bye.", + "start": 2457.76, + "end": 2457.9, + "words": [ + { + "word": " Bye.", + "start": 2457.76, + "end": 2457.9, + "probability": 0.92236328125 + } + ] + }, + { + "id": 997, + "text": "Bye.", + "start": 2458.02, + "end": 2458.42, + "words": [ + { + "word": " Bye.", + "start": 2458.02, + "end": 2458.42, + "probability": 0.9228515625 + } + ] + }, + { + "id": 998, + "text": "Bye.", + "start": 2458.44, + "end": 2458.46, + "words": [ + { + "word": " Bye.", + "start": 2458.44, + "end": 2458.46, + "probability": 0.923828125 + } + ] + }, + { + "id": 999, + "text": "Bye.", + "start": 2458.7, + "end": 2459.28, + "words": [ + { + "word": " Bye.", + "start": 2458.7, + "end": 2459.28, + "probability": 0.923828125 + } + ] + }, + { + "id": 1000, + "text": "Bye.", + "start": 2459.62, + "end": 2460.36, + "words": [ + { + "word": " Bye.", + "start": 2459.62, + "end": 2460.36, + "probability": 0.92431640625 + } + ] + }, + { + "id": 1001, + "text": "Bye.", + "start": 2460.9, + "end": 2461.1, + "words": [ + { + "word": " Bye.", + "start": 2460.9, + "end": 2461.1, + "probability": 0.9228515625 + } + ] + }, + { + "id": 1002, + "text": "Bye.", + "start": 2461.72, + "end": 2461.86, + "words": [ + { + "word": " Bye.", + "start": 2461.72, + "end": 2461.86, + "probability": 0.92333984375 + } + ] + }, + { + "id": 1003, + "text": "There's the, why haven't you changed your password recently?", + "start": 2461.86, + "end": 2464.12, + "words": [ + { + "word": " There's", + "start": 2461.86, + "end": 2462.02, + "probability": 0.93603515625 + }, + { + "word": " the,", + "start": 2462.02, + "end": 2462.14, + "probability": 0.99853515625 + }, + { + "word": " why", + "start": 2462.26, + "end": 2462.66, + "probability": 0.9892578125 + }, + { + "word": " haven't", + "start": 2462.66, + "end": 2462.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 2462.86, + "end": 2462.94, + "probability": 1.0 + }, + { + "word": " changed", + "start": 2462.94, + "end": 2463.18, + "probability": 1.0 + }, + { + "word": " your", + "start": 2463.18, + "end": 2463.32, + "probability": 1.0 + }, + { + "word": " password", + "start": 2463.32, + "end": 2463.64, + "probability": 1.0 + }, + { + "word": " recently?", + "start": 2463.64, + "end": 2464.12, + "probability": 0.97705078125 + } + ] + }, + { + "id": 1004, + "text": "And it's just the thing I complain about all the time.", + "start": 2467.24, + "end": 2469.26, + "words": [ + { + "word": " And", + "start": 2467.24, + "end": 2467.56, + "probability": 0.93603515625 + }, + { + "word": " it's", + "start": 2467.56, + "end": 2467.88, + "probability": 0.9521484375 + }, + { + "word": " just", + "start": 2467.88, + "end": 2468.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 2468.06, + "end": 2468.12, + "probability": 0.66552734375 + }, + { + "word": " thing", + "start": 2468.12, + "end": 2468.32, + "probability": 1.0 + }, + { + "word": " I", + "start": 2468.32, + "end": 2468.42, + "probability": 1.0 + }, + { + "word": " complain", + "start": 2468.42, + "end": 2468.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 2468.6, + "end": 2468.86, + "probability": 1.0 + }, + { + "word": " all", + "start": 2468.86, + "end": 2469.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2469.0, + "end": 2469.1, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2469.1, + "end": 2469.26, + "probability": 1.0 + } + ] + }, + { + "id": 1005, + "text": "Change your passwords, people.", + "start": 2469.28, + "end": 2470.1, + "words": [ + { + "word": " Change", + "start": 2469.28, + "end": 2469.38, + "probability": 0.9921875 + }, + { + "word": " your", + "start": 2469.38, + "end": 2469.54, + "probability": 1.0 + }, + { + "word": " passwords,", + "start": 2469.54, + "end": 2469.82, + "probability": 0.99267578125 + }, + { + "word": " people.", + "start": 2469.94, + "end": 2470.1, + "probability": 1.0 + } + ] + }, + { + "id": 1006, + "text": "But here's some reasons that you may want to, especially if you are traveling internationally.", + "start": 2470.34, + "end": 2475.36, + "words": [ + { + "word": " But", + "start": 2470.34, + "end": 2470.66, + "probability": 0.9990234375 + }, + { + "word": " here's", + "start": 2470.66, + "end": 2471.0, + "probability": 0.99609375 + }, + { + "word": " some", + "start": 2471.0, + "end": 2471.14, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 2471.14, + "end": 2472.02, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2472.02, + "end": 2472.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 2472.66, + "end": 2472.78, + "probability": 1.0 + }, + { + "word": " may", + "start": 2472.78, + "end": 2472.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 2472.96, + "end": 2473.2, + "probability": 1.0 + }, + { + "word": " to,", + "start": 2473.2, + "end": 2473.34, + "probability": 1.0 + }, + { + "word": " especially", + "start": 2473.36, + "end": 2473.6, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2473.6, + "end": 2473.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 2473.8, + "end": 2473.92, + "probability": 1.0 + }, + { + "word": " are", + "start": 2473.92, + "end": 2474.14, + "probability": 1.0 + }, + { + "word": " traveling", + "start": 2474.14, + "end": 2474.64, + "probability": 0.9990234375 + }, + { + "word": " internationally.", + "start": 2474.64, + "end": 2475.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 1007, + "text": "Yeah, we were talking about this before the show, and I think that we were both a little bit like,", + "start": 2475.98, + "end": 2479.72, + "words": [ + { + "word": " Yeah,", + "start": 2475.98, + "end": 2476.16, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 2476.16, + "end": 2476.24, + "probability": 1.0 + }, + { + "word": " were", + "start": 2476.24, + "end": 2476.36, + "probability": 1.0 + }, + { + "word": " talking", + "start": 2476.36, + "end": 2476.58, + "probability": 1.0 + }, + { + "word": " about", + "start": 2476.58, + "end": 2476.8, + "probability": 1.0 + }, + { + "word": " this", + "start": 2476.8, + "end": 2476.96, + "probability": 1.0 + }, + { + "word": " before", + "start": 2476.96, + "end": 2477.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2477.18, + "end": 2477.4, + "probability": 1.0 + }, + { + "word": " show,", + "start": 2477.4, + "end": 2477.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 2477.76, + "end": 2477.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 2477.94, + "end": 2478.22, + "probability": 1.0 + }, + { + "word": " think", + "start": 2478.22, + "end": 2478.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 2478.5, + "end": 2478.62, + "probability": 1.0 + }, + { + "word": " we", + "start": 2478.62, + "end": 2478.78, + "probability": 1.0 + }, + { + "word": " were", + "start": 2478.78, + "end": 2478.92, + "probability": 1.0 + }, + { + "word": " both", + "start": 2478.92, + "end": 2479.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2479.08, + "end": 2479.22, + "probability": 1.0 + }, + { + "word": " little", + "start": 2479.22, + "end": 2479.32, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2479.32, + "end": 2479.48, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2479.48, + "end": 2479.72, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1008, + "text": "that's so silly, but then at the end of the day, as long as you're changing your passwords regularly,", + "start": 2479.84, + "end": 2483.48, + "words": [ + { + "word": " that's", + "start": 2479.84, + "end": 2480.32, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 2480.32, + "end": 2480.42, + "probability": 1.0 + }, + { + "word": " silly,", + "start": 2480.42, + "end": 2480.78, + "probability": 1.0 + }, + { + "word": " but", + "start": 2480.86, + "end": 2480.96, + "probability": 1.0 + }, + { + "word": " then", + "start": 2480.96, + "end": 2481.08, + "probability": 1.0 + }, + { + "word": " at", + "start": 2481.08, + "end": 2481.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2481.2, + "end": 2481.24, + "probability": 1.0 + }, + { + "word": " end", + "start": 2481.24, + "end": 2481.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2481.32, + "end": 2481.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 2481.34, + "end": 2481.44, + "probability": 1.0 + }, + { + "word": " day,", + "start": 2481.44, + "end": 2481.62, + "probability": 1.0 + }, + { + "word": " as", + "start": 2481.74, + "end": 2482.16, + "probability": 1.0 + }, + { + "word": " long", + "start": 2482.16, + "end": 2482.28, + "probability": 1.0 + }, + { + "word": " as", + "start": 2482.28, + "end": 2482.44, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2482.44, + "end": 2482.54, + "probability": 0.99609375 + }, + { + "word": " changing", + "start": 2482.54, + "end": 2482.72, + "probability": 1.0 + }, + { + "word": " your", + "start": 2482.72, + "end": 2482.86, + "probability": 1.0 + }, + { + "word": " passwords", + "start": 2482.86, + "end": 2483.14, + "probability": 0.998046875 + }, + { + "word": " regularly,", + "start": 2483.14, + "end": 2483.48, + "probability": 1.0 + } + ] + }, + { + "id": 1009, + "text": "there's nothing to worry about.", + "start": 2483.94, + "end": 2484.8, + "words": [ + { + "word": " there's", + "start": 2483.94, + "end": 2484.26, + "probability": 0.9990234375 + }, + { + "word": " nothing", + "start": 2484.26, + "end": 2484.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2484.4, + "end": 2484.52, + "probability": 1.0 + }, + { + "word": " worry", + "start": 2484.52, + "end": 2484.62, + "probability": 1.0 + }, + { + "word": " about.", + "start": 2484.62, + "end": 2484.8, + "probability": 1.0 + } + ] + }, + { + "id": 1010, + "text": "All right, so it turns out that the TSA is not allowed to confiscate your laptop.", + "start": 2485.06, + "end": 2489.46, + "words": [ + { + "word": " All", + "start": 2485.06, + "end": 2485.34, + "probability": 0.84814453125 + }, + { + "word": " right,", + "start": 2485.34, + "end": 2485.4, + "probability": 1.0 + }, + { + "word": " so", + "start": 2485.42, + "end": 2485.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 2485.56, + "end": 2486.2, + "probability": 0.98291015625 + }, + { + "word": " turns", + "start": 2486.2, + "end": 2486.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 2486.96, + "end": 2487.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 2487.14, + "end": 2487.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2487.24, + "end": 2487.36, + "probability": 1.0 + }, + { + "word": " TSA", + "start": 2487.36, + "end": 2487.68, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2487.68, + "end": 2487.86, + "probability": 1.0 + }, + { + "word": " not", + "start": 2487.86, + "end": 2488.0, + "probability": 1.0 + }, + { + "word": " allowed", + "start": 2488.0, + "end": 2488.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 2488.22, + "end": 2488.48, + "probability": 1.0 + }, + { + "word": " confiscate", + "start": 2488.48, + "end": 2489.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 2489.06, + "end": 2489.16, + "probability": 1.0 + }, + { + "word": " laptop.", + "start": 2489.16, + "end": 2489.46, + "probability": 1.0 + } + ] + }, + { + "id": 1011, + "text": "They're not allowed to ask you for passwords.", + "start": 2489.66, + "end": 2491.06, + "words": [ + { + "word": " They're", + "start": 2489.66, + "end": 2489.86, + "probability": 1.0 + }, + { + "word": " not", + "start": 2489.86, + "end": 2489.96, + "probability": 1.0 + }, + { + "word": " allowed", + "start": 2489.96, + "end": 2490.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2490.16, + "end": 2490.32, + "probability": 1.0 + }, + { + "word": " ask", + "start": 2490.32, + "end": 2490.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 2490.5, + "end": 2490.6, + "probability": 1.0 + }, + { + "word": " for", + "start": 2490.6, + "end": 2490.7, + "probability": 1.0 + }, + { + "word": " passwords.", + "start": 2490.7, + "end": 2491.06, + "probability": 1.0 + } + ] + }, + { + "id": 1012, + "text": "They're not allowed to invade your, you know, there's some Fourth Amendment that applies to the TSA.", + "start": 2491.06, + "end": 2497.34, + "words": [ + { + "word": " They're", + "start": 2491.06, + "end": 2491.56, + "probability": 0.55908203125 + }, + { + "word": " not", + "start": 2491.56, + "end": 2491.68, + "probability": 0.98876953125 + }, + { + "word": " allowed", + "start": 2491.68, + "end": 2491.86, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2491.86, + "end": 2492.1, + "probability": 0.9990234375 + }, + { + "word": " invade", + "start": 2492.1, + "end": 2493.4, + "probability": 0.6806640625 + }, + { + "word": " your,", + "start": 2493.4, + "end": 2493.78, + "probability": 0.403564453125 + }, + { + "word": " you", + "start": 2493.82, + "end": 2493.92, + "probability": 0.7236328125 + }, + { + "word": " know,", + "start": 2493.92, + "end": 2494.0, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2494.0, + "end": 2494.18, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 2494.18, + "end": 2494.54, + "probability": 0.890625 + }, + { + "word": " Fourth", + "start": 2494.54, + "end": 2495.02, + "probability": 0.90478515625 + }, + { + "word": " Amendment", + "start": 2495.02, + "end": 2495.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 2495.3, + "end": 2495.8, + "probability": 1.0 + }, + { + "word": " applies", + "start": 2495.8, + "end": 2496.26, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2496.26, + "end": 2496.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 2496.76, + "end": 2496.9, + "probability": 1.0 + }, + { + "word": " TSA.", + "start": 2496.9, + "end": 2497.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1013, + "text": "But not so much with Border Patrol.", + "start": 2498.26, + "end": 2499.98, + "words": [ + { + "word": " But", + "start": 2498.26, + "end": 2498.74, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 2498.74, + "end": 2498.92, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 2498.92, + "end": 2499.08, + "probability": 1.0 + }, + { + "word": " much", + "start": 2499.08, + "end": 2499.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 2499.38, + "end": 2499.46, + "probability": 0.61767578125 + }, + { + "word": " Border", + "start": 2499.46, + "end": 2499.66, + "probability": 0.7978515625 + }, + { + "word": " Patrol.", + "start": 2499.66, + "end": 2499.98, + "probability": 1.0 + } + ] + }, + { + "id": 1014, + "text": "Yeah, they say it's a gray area.", + "start": 2500.38, + "end": 2501.92, + "words": [ + { + "word": " Yeah,", + "start": 2500.38, + "end": 2500.62, + "probability": 0.92578125 + }, + { + "word": " they", + "start": 2500.64, + "end": 2500.8, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 2500.8, + "end": 2501.12, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2501.12, + "end": 2501.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 2501.3, + "end": 2501.32, + "probability": 1.0 + }, + { + "word": " gray", + "start": 2501.32, + "end": 2501.56, + "probability": 0.998046875 + }, + { + "word": " area.", + "start": 2501.56, + "end": 2501.92, + "probability": 1.0 + } + ] + }, + { + "id": 1015, + "text": "Well, yeah, it turns out that 10 miles on either side of the border is this gray area.", + "start": 2502.08, + "end": 2507.0, + "words": [ + { + "word": " Well,", + "start": 2502.08, + "end": 2502.38, + "probability": 0.998046875 + }, + { + "word": " yeah,", + "start": 2502.42, + "end": 2502.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 2502.72, + "end": 2502.86, + "probability": 1.0 + }, + { + "word": " turns", + "start": 2502.86, + "end": 2503.64, + "probability": 1.0 + }, + { + "word": " out", + "start": 2503.64, + "end": 2503.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 2503.84, + "end": 2504.02, + "probability": 1.0 + }, + { + "word": " 10", + "start": 2504.02, + "end": 2504.2, + "probability": 0.90185546875 + }, + { + "word": " miles", + "start": 2504.2, + "end": 2504.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 2504.52, + "end": 2504.78, + "probability": 1.0 + }, + { + "word": " either", + "start": 2504.78, + "end": 2504.98, + "probability": 1.0 + }, + { + "word": " side", + "start": 2504.98, + "end": 2505.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 2505.24, + "end": 2505.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2505.38, + "end": 2505.44, + "probability": 1.0 + }, + { + "word": " border", + "start": 2505.44, + "end": 2505.7, + "probability": 1.0 + }, + { + "word": " is", + "start": 2505.7, + "end": 2506.02, + "probability": 1.0 + }, + { + "word": " this", + "start": 2506.02, + "end": 2506.18, + "probability": 1.0 + }, + { + "word": " gray", + "start": 2506.18, + "end": 2506.46, + "probability": 1.0 + }, + { + "word": " area.", + "start": 2506.46, + "end": 2507.0, + "probability": 1.0 + } + ] + }, + { + "id": 1016, + "text": "Literally, yeah.", + "start": 2507.08, + "end": 2507.68, + "words": [ + { + "word": " Literally,", + "start": 2507.08, + "end": 2507.38, + "probability": 0.93017578125 + }, + { + "word": " yeah.", + "start": 2507.48, + "end": 2507.68, + "probability": 1.0 + } + ] + }, + { + "id": 1017, + "text": "Where you don't necessarily have constitutional rights, which is pretty interesting.", + "start": 2507.84, + "end": 2512.34, + "words": [ + { + "word": " Where", + "start": 2507.84, + "end": 2508.0, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2508.0, + "end": 2508.66, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2508.66, + "end": 2509.0, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 2509.0, + "end": 2509.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 2509.26, + "end": 2509.76, + "probability": 1.0 + }, + { + "word": " constitutional", + "start": 2509.76, + "end": 2510.26, + "probability": 0.99951171875 + }, + { + "word": " rights,", + "start": 2510.26, + "end": 2510.88, + "probability": 1.0 + }, + { + "word": " which", + "start": 2511.12, + "end": 2511.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 2511.48, + "end": 2511.6, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 2511.6, + "end": 2511.86, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 2511.86, + "end": 2512.34, + "probability": 1.0 + } + ] + }, + { + "id": 1018, + "text": "I'm sure that some lawyer will be happy to explain to me how crazy it really is,", + "start": 2513.4, + "end": 2519.62, + "words": [ + { + "word": " I'm", + "start": 2513.4, + "end": 2513.88, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2513.88, + "end": 2514.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 2514.18, + "end": 2514.48, + "probability": 1.0 + }, + { + "word": " some", + "start": 2514.48, + "end": 2514.96, + "probability": 1.0 + }, + { + "word": " lawyer", + "start": 2514.96, + "end": 2515.26, + "probability": 1.0 + }, + { + "word": " will", + "start": 2515.26, + "end": 2515.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 2515.4, + "end": 2515.54, + "probability": 1.0 + }, + { + "word": " happy", + "start": 2515.54, + "end": 2515.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2515.84, + "end": 2515.98, + "probability": 1.0 + }, + { + "word": " explain", + "start": 2515.98, + "end": 2516.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2516.4, + "end": 2516.66, + "probability": 1.0 + }, + { + "word": " me", + "start": 2516.66, + "end": 2516.76, + "probability": 1.0 + }, + { + "word": " how", + "start": 2516.76, + "end": 2517.06, + "probability": 1.0 + }, + { + "word": " crazy", + "start": 2517.06, + "end": 2518.26, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 2518.26, + "end": 2518.86, + "probability": 1.0 + }, + { + "word": " really", + "start": 2518.86, + "end": 2519.08, + "probability": 1.0 + }, + { + "word": " is,", + "start": 2519.08, + "end": 2519.62, + "probability": 1.0 + } + ] + }, + { + "id": 1019, + "text": "or maybe it's more cut and dry.", + "start": 2519.7, + "end": 2520.96, + "words": [ + { + "word": " or", + "start": 2519.7, + "end": 2519.92, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 2519.92, + "end": 2520.2, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2520.2, + "end": 2520.42, + "probability": 1.0 + }, + { + "word": " more", + "start": 2520.42, + "end": 2520.52, + "probability": 1.0 + }, + { + "word": " cut", + "start": 2520.52, + "end": 2520.68, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 2520.68, + "end": 2520.84, + "probability": 0.97314453125 + }, + { + "word": " dry.", + "start": 2520.84, + "end": 2520.96, + "probability": 0.9033203125 + } + ] + }, + { + "id": 1020, + "text": "than I suspect it is.", + "start": 2521.06, + "end": 2521.9, + "words": [ + { + "word": " than", + "start": 2521.06, + "end": 2521.18, + "probability": 0.927734375 + }, + { + "word": " I", + "start": 2521.18, + "end": 2521.28, + "probability": 0.95166015625 + }, + { + "word": " suspect", + "start": 2521.28, + "end": 2521.54, + "probability": 0.99365234375 + }, + { + "word": " it", + "start": 2521.54, + "end": 2521.76, + "probability": 1.0 + }, + { + "word": " is.", + "start": 2521.76, + "end": 2521.9, + "probability": 1.0 + } + ] + }, + { + "id": 1021, + "text": "But according to the article, Border Patrol can do whatever the heck they want", + "start": 2521.98, + "end": 2525.86, + "words": [ + { + "word": " But", + "start": 2521.98, + "end": 2522.06, + "probability": 0.99462890625 + }, + { + "word": " according", + "start": 2522.06, + "end": 2522.22, + "probability": 0.98779296875 + }, + { + "word": " to", + "start": 2522.22, + "end": 2522.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2522.42, + "end": 2522.48, + "probability": 1.0 + }, + { + "word": " article,", + "start": 2522.48, + "end": 2522.8, + "probability": 1.0 + }, + { + "word": " Border", + "start": 2523.44, + "end": 2524.04, + "probability": 0.5634765625 + }, + { + "word": " Patrol", + "start": 2524.04, + "end": 2524.6, + "probability": 1.0 + }, + { + "word": " can", + "start": 2524.6, + "end": 2524.76, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2524.76, + "end": 2524.88, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 2524.88, + "end": 2525.06, + "probability": 0.96044921875 + }, + { + "word": " the", + "start": 2525.06, + "end": 2525.26, + "probability": 1.0 + }, + { + "word": " heck", + "start": 2525.26, + "end": 2525.44, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2525.44, + "end": 2525.62, + "probability": 1.0 + }, + { + "word": " want", + "start": 2525.62, + "end": 2525.86, + "probability": 1.0 + } + ] + }, + { + "id": 1022, + "text": "when it comes to getting into your digital persona.", + "start": 2525.86, + "end": 2528.7, + "words": [ + { + "word": " when", + "start": 2525.86, + "end": 2526.06, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2526.06, + "end": 2526.16, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2526.16, + "end": 2526.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 2526.36, + "end": 2526.56, + "probability": 1.0 + }, + { + "word": " getting", + "start": 2526.56, + "end": 2527.6, + "probability": 0.99755859375 + }, + { + "word": " into", + "start": 2527.6, + "end": 2527.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 2527.88, + "end": 2528.04, + "probability": 1.0 + }, + { + "word": " digital", + "start": 2528.04, + "end": 2528.3, + "probability": 0.99951171875 + }, + { + "word": " persona.", + "start": 2528.3, + "end": 2528.7, + "probability": 1.0 + } + ] + }, + { + "id": 1023, + "text": "Including just forcibly detaining you until you give them your password?", + "start": 2529.02, + "end": 2531.96, + "words": [ + { + "word": " Including", + "start": 2529.02, + "end": 2529.46, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 2529.46, + "end": 2529.74, + "probability": 1.0 + }, + { + "word": " forcibly", + "start": 2529.74, + "end": 2530.24, + "probability": 1.0 + }, + { + "word": " detaining", + "start": 2530.24, + "end": 2530.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 2530.64, + "end": 2530.86, + "probability": 1.0 + }, + { + "word": " until", + "start": 2530.86, + "end": 2531.12, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 2531.12, + "end": 2531.28, + "probability": 1.0 + }, + { + "word": " give", + "start": 2531.28, + "end": 2531.44, + "probability": 1.0 + }, + { + "word": " them", + "start": 2531.44, + "end": 2531.54, + "probability": 1.0 + }, + { + "word": " your", + "start": 2531.54, + "end": 2531.64, + "probability": 1.0 + }, + { + "word": " password?", + "start": 2531.64, + "end": 2531.96, + "probability": 1.0 + } + ] + }, + { + "id": 1024, + "text": "Yeah, and then they can search your devices and see which terrorist groups", + "start": 2532.22, + "end": 2538.36, + "words": [ + { + "word": " Yeah,", + "start": 2532.22, + "end": 2532.4, + "probability": 0.97998046875 + }, + { + "word": " and", + "start": 2532.44, + "end": 2532.84, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 2532.84, + "end": 2533.08, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2533.08, + "end": 2533.26, + "probability": 1.0 + }, + { + "word": " can", + "start": 2533.26, + "end": 2533.36, + "probability": 1.0 + }, + { + "word": " search", + "start": 2533.36, + "end": 2533.58, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2533.58, + "end": 2533.82, + "probability": 1.0 + }, + { + "word": " devices", + "start": 2533.82, + "end": 2534.48, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 2534.48, + "end": 2535.06, + "probability": 0.99560546875 + }, + { + "word": " see", + "start": 2535.06, + "end": 2536.02, + "probability": 1.0 + }, + { + "word": " which", + "start": 2536.02, + "end": 2537.46, + "probability": 0.99951171875 + }, + { + "word": " terrorist", + "start": 2537.46, + "end": 2538.06, + "probability": 1.0 + }, + { + "word": " groups", + "start": 2538.06, + "end": 2538.36, + "probability": 1.0 + } + ] + }, + { + "id": 1025, + "text": "that you have been chatting with recently.", + "start": 2538.36, + "end": 2539.88, + "words": [ + { + "word": " that", + "start": 2538.36, + "end": 2538.6, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 2538.6, + "end": 2538.76, + "probability": 1.0 + }, + { + "word": " have", + "start": 2538.76, + "end": 2538.86, + "probability": 0.62255859375 + }, + { + "word": " been", + "start": 2538.86, + "end": 2539.06, + "probability": 1.0 + }, + { + "word": " chatting", + "start": 2539.06, + "end": 2539.32, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2539.32, + "end": 2539.58, + "probability": 1.0 + }, + { + "word": " recently.", + "start": 2539.58, + "end": 2539.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1026, + "text": "And so, yeah, there's a little bit of a weirdness in there.", + "start": 2540.52, + "end": 2545.5, + "words": [ + { + "word": " And", + "start": 2540.52, + "end": 2540.56, + "probability": 0.2406005859375 + }, + { + "word": " so,", + "start": 2540.56, + "end": 2542.44, + "probability": 0.89599609375 + }, + { + "word": " yeah,", + "start": 2542.5, + "end": 2542.6, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 2542.62, + "end": 2542.82, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2542.82, + "end": 2542.84, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 2542.84, + "end": 2543.22, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2543.22, + "end": 2543.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 2543.36, + "end": 2543.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 2543.46, + "end": 2543.56, + "probability": 0.99951171875 + }, + { + "word": " weirdness", + "start": 2543.56, + "end": 2544.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 2544.78, + "end": 2545.22, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2545.22, + "end": 2545.5, + "probability": 1.0 + } + ] + }, + { + "id": 1027, + "text": "Now, it just turns out, you know, that one, I go through Border Patrol,", + "start": 2546.94, + "end": 2550.64, + "words": [ + { + "word": " Now,", + "start": 2546.94, + "end": 2547.38, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2547.38, + "end": 2547.82, + "probability": 1.0 + }, + { + "word": " just", + "start": 2547.82, + "end": 2548.06, + "probability": 1.0 + }, + { + "word": " turns", + "start": 2548.06, + "end": 2548.32, + "probability": 1.0 + }, + { + "word": " out,", + "start": 2548.32, + "end": 2548.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 2548.64, + "end": 2548.72, + "probability": 0.93359375 + }, + { + "word": " know,", + "start": 2548.72, + "end": 2548.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 2548.82, + "end": 2548.94, + "probability": 0.994140625 + }, + { + "word": " one,", + "start": 2548.94, + "end": 2549.22, + "probability": 0.8076171875 + }, + { + "word": " I", + "start": 2549.42, + "end": 2549.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 2549.92, + "end": 2550.1, + "probability": 0.8974609375 + }, + { + "word": " through", + "start": 2550.1, + "end": 2550.2, + "probability": 0.95654296875 + }, + { + "word": " Border", + "start": 2550.2, + "end": 2550.4, + "probability": 0.9970703125 + }, + { + "word": " Patrol,", + "start": 2550.4, + "end": 2550.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1028, + "text": "Border Patrol checkpoints all the time.", + "start": 2551.06, + "end": 2552.16, + "words": [ + { + "word": " Border", + "start": 2551.06, + "end": 2551.18, + "probability": 0.00011295080184936523 + }, + { + "word": " Patrol", + "start": 2551.18, + "end": 2551.18, + "probability": 0.98388671875 + }, + { + "word": " checkpoints", + "start": 2551.18, + "end": 2551.64, + "probability": 0.93212890625 + }, + { + "word": " all", + "start": 2551.64, + "end": 2551.8, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 2551.8, + "end": 2551.9, + "probability": 0.99462890625 + }, + { + "word": " time.", + "start": 2551.9, + "end": 2552.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1029, + "text": "And because I have to go out to places where there's a checkpoint in between.", + "start": 2552.18, + "end": 2557.76, + "words": [ + { + "word": " And", + "start": 2552.18, + "end": 2552.44, + "probability": 0.49267578125 + }, + { + "word": " because", + "start": 2552.44, + "end": 2553.06, + "probability": 0.58740234375 + }, + { + "word": " I", + "start": 2553.06, + "end": 2553.6, + "probability": 0.99267578125 + }, + { + "word": " have", + "start": 2553.6, + "end": 2553.78, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2553.78, + "end": 2554.0, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2554.0, + "end": 2554.16, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 2554.16, + "end": 2554.66, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 2554.66, + "end": 2554.96, + "probability": 0.99462890625 + }, + { + "word": " places", + "start": 2554.96, + "end": 2555.8, + "probability": 0.99462890625 + }, + { + "word": " where", + "start": 2555.8, + "end": 2556.22, + "probability": 0.9951171875 + }, + { + "word": " there's", + "start": 2556.22, + "end": 2556.46, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 2556.46, + "end": 2556.52, + "probability": 0.9990234375 + }, + { + "word": " checkpoint", + "start": 2556.52, + "end": 2556.8, + "probability": 0.9912109375 + }, + { + "word": " in", + "start": 2556.8, + "end": 2557.14, + "probability": 0.873046875 + }, + { + "word": " between.", + "start": 2557.14, + "end": 2557.76, + "probability": 0.6845703125 + } + ] + }, + { + "id": 1030, + "text": "And they never give me grief.", + "start": 2559.12, + "end": 2561.44, + "words": [ + { + "word": " And", + "start": 2559.12, + "end": 2559.48, + "probability": 0.9912109375 + }, + { + "word": " they", + "start": 2559.48, + "end": 2559.84, + "probability": 0.98974609375 + }, + { + "word": " never", + "start": 2559.84, + "end": 2560.64, + "probability": 0.8271484375 + }, + { + "word": " give", + "start": 2560.64, + "end": 2561.0, + "probability": 0.998046875 + }, + { + "word": " me", + "start": 2561.0, + "end": 2561.22, + "probability": 0.99951171875 + }, + { + "word": " grief.", + "start": 2561.22, + "end": 2561.44, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1031, + "text": "I mean, look at me.", + "start": 2561.96, + "end": 2563.18, + "words": [ + { + "word": " I", + "start": 2561.96, + "end": 2562.32, + "probability": 0.9853515625 + }, + { + "word": " mean,", + "start": 2562.32, + "end": 2562.64, + "probability": 1.0 + }, + { + "word": " look", + "start": 2562.66, + "end": 2562.94, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 2562.94, + "end": 2563.06, + "probability": 1.0 + }, + { + "word": " me.", + "start": 2563.06, + "end": 2563.18, + "probability": 1.0 + } + ] + }, + { + "id": 1032, + "text": "They never give me grief.", + "start": 2563.26, + "end": 2564.56, + "words": [ + { + "word": " They", + "start": 2563.26, + "end": 2563.54, + "probability": 0.9990234375 + }, + { + "word": " never", + "start": 2563.54, + "end": 2563.96, + "probability": 0.99755859375 + }, + { + "word": " give", + "start": 2563.96, + "end": 2564.16, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 2564.16, + "end": 2564.34, + "probability": 0.99951171875 + }, + { + "word": " grief.", + "start": 2564.34, + "end": 2564.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1033, + "text": "Although, I've been kind of messing with them a little bit, you know, as far as, you know,", + "start": 2565.8199999999997, + "end": 2570.18, + "words": [ + { + "word": " Although,", + "start": 2565.8199999999997, + "end": 2566.18, + "probability": 0.998046875 + }, + { + "word": " I've", + "start": 2566.18, + "end": 2566.54, + "probability": 0.9912109375 + }, + { + "word": " been", + "start": 2566.54, + "end": 2566.92, + "probability": 0.9970703125 + }, + { + "word": " kind", + "start": 2566.92, + "end": 2567.38, + "probability": 0.94482421875 + }, + { + "word": " of", + "start": 2567.38, + "end": 2567.46, + "probability": 0.99951171875 + }, + { + "word": " messing", + "start": 2567.46, + "end": 2567.66, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 2567.66, + "end": 2567.84, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 2567.84, + "end": 2567.94, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 2567.94, + "end": 2568.02, + "probability": 0.99755859375 + }, + { + "word": " little", + "start": 2568.02, + "end": 2568.12, + "probability": 0.99951171875 + }, + { + "word": " bit,", + "start": 2568.12, + "end": 2568.38, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2568.42, + "end": 2568.6, + "probability": 0.372802734375 + }, + { + "word": " know,", + "start": 2568.6, + "end": 2568.74, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 2568.74, + "end": 2568.82, + "probability": 0.99609375 + }, + { + "word": " far", + "start": 2568.82, + "end": 2568.94, + "probability": 1.0 + }, + { + "word": " as,", + "start": 2568.94, + "end": 2569.28, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2569.28, + "end": 2570.02, + "probability": 0.99072265625 + }, + { + "word": " know,", + "start": 2570.02, + "end": 2570.18, + "probability": 1.0 + } + ] + }, + { + "id": 1034, + "text": "I come back and they'll be like, are you an American citizen?", + "start": 2570.18, + "end": 2571.86, + "words": [ + { + "word": " I", + "start": 2570.18, + "end": 2570.28, + "probability": 0.99755859375 + }, + { + "word": " come", + "start": 2570.28, + "end": 2570.42, + "probability": 0.9755859375 + }, + { + "word": " back", + "start": 2570.42, + "end": 2570.66, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2570.66, + "end": 2570.84, + "probability": 0.880859375 + }, + { + "word": " they'll", + "start": 2570.84, + "end": 2570.94, + "probability": 0.927734375 + }, + { + "word": " be", + "start": 2570.94, + "end": 2571.02, + "probability": 0.998046875 + }, + { + "word": " like,", + "start": 2571.02, + "end": 2571.12, + "probability": 0.94580078125 + }, + { + "word": " are", + "start": 2571.16, + "end": 2571.22, + "probability": 0.7412109375 + }, + { + "word": " you", + "start": 2571.22, + "end": 2571.26, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 2571.26, + "end": 2571.32, + "probability": 0.9599609375 + }, + { + "word": " American", + "start": 2571.32, + "end": 2571.5, + "probability": 0.9990234375 + }, + { + "word": " citizen?", + "start": 2571.5, + "end": 2571.86, + "probability": 0.994140625 + } + ] + }, + { + "id": 1035, + "text": "And I'm like, see, you know, or something.", + "start": 2572.04, + "end": 2574.38, + "words": [ + { + "word": " And", + "start": 2572.04, + "end": 2572.14, + "probability": 0.94921875 + }, + { + "word": " I'm", + "start": 2572.14, + "end": 2572.2, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 2572.2, + "end": 2572.32, + "probability": 0.9990234375 + }, + { + "word": " see,", + "start": 2572.38, + "end": 2572.62, + "probability": 0.59619140625 + }, + { + "word": " you", + "start": 2572.88, + "end": 2573.42, + "probability": 0.96923828125 + }, + { + "word": " know,", + "start": 2573.42, + "end": 2573.7, + "probability": 1.0 + }, + { + "word": " or", + "start": 2573.7, + "end": 2573.88, + "probability": 0.99951171875 + }, + { + "word": " something.", + "start": 2573.88, + "end": 2574.38, + "probability": 0.998046875 + } + ] + }, + { + "id": 1036, + "text": "And they just wave me through, like, get out of here.", + "start": 2574.56, + "end": 2576.46, + "words": [ + { + "word": " And", + "start": 2574.56, + "end": 2574.68, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 2574.68, + "end": 2574.74, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 2574.74, + "end": 2574.9, + "probability": 1.0 + }, + { + "word": " wave", + "start": 2574.9, + "end": 2575.34, + "probability": 0.9267578125 + }, + { + "word": " me", + "start": 2575.34, + "end": 2575.64, + "probability": 1.0 + }, + { + "word": " through,", + "start": 2575.64, + "end": 2575.8, + "probability": 0.99267578125 + }, + { + "word": " like,", + "start": 2575.82, + "end": 2575.94, + "probability": 0.99267578125 + }, + { + "word": " get", + "start": 2575.98, + "end": 2576.14, + "probability": 1.0 + }, + { + "word": " out", + "start": 2576.14, + "end": 2576.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 2576.28, + "end": 2576.36, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2576.36, + "end": 2576.46, + "probability": 1.0 + } + ] + }, + { + "id": 1037, + "text": "If you started wearing glasses and driving an RV down there, I think they might have something to say.", + "start": 2576.6, + "end": 2579.98, + "words": [ + { + "word": " If", + "start": 2576.6, + "end": 2576.7, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 2576.7, + "end": 2576.78, + "probability": 0.99951171875 + }, + { + "word": " started", + "start": 2576.78, + "end": 2576.98, + "probability": 1.0 + }, + { + "word": " wearing", + "start": 2576.98, + "end": 2577.2, + "probability": 1.0 + }, + { + "word": " glasses", + "start": 2577.2, + "end": 2577.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 2577.58, + "end": 2577.8, + "probability": 1.0 + }, + { + "word": " driving", + "start": 2577.8, + "end": 2578.06, + "probability": 1.0 + }, + { + "word": " an", + "start": 2578.06, + "end": 2578.2, + "probability": 0.9990234375 + }, + { + "word": " RV", + "start": 2578.2, + "end": 2578.38, + "probability": 0.99853515625 + }, + { + "word": " down", + "start": 2578.38, + "end": 2578.6, + "probability": 0.99951171875 + }, + { + "word": " there,", + "start": 2578.6, + "end": 2578.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 2578.82, + "end": 2578.9, + "probability": 1.0 + }, + { + "word": " think", + "start": 2578.9, + "end": 2579.04, + "probability": 1.0 + }, + { + "word": " they", + "start": 2579.04, + "end": 2579.14, + "probability": 1.0 + }, + { + "word": " might", + "start": 2579.14, + "end": 2579.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 2579.32, + "end": 2579.48, + "probability": 1.0 + }, + { + "word": " something", + "start": 2579.48, + "end": 2579.66, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 2579.66, + "end": 2579.86, + "probability": 1.0 + }, + { + "word": " say.", + "start": 2579.86, + "end": 2579.98, + "probability": 1.0 + } + ] + }, + { + "id": 1038, + "text": "Oh, maybe I should go to Walter.", + "start": 2580.02, + "end": 2580.94, + "words": [ + { + "word": " Oh,", + "start": 2580.02, + "end": 2580.06, + "probability": 0.1744384765625 + }, + { + "word": " maybe", + "start": 2580.06, + "end": 2580.14, + "probability": 0.9892578125 + }, + { + "word": " I", + "start": 2580.14, + "end": 2580.3, + "probability": 0.7333984375 + }, + { + "word": " should", + "start": 2580.3, + "end": 2580.44, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2580.44, + "end": 2580.6, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 2580.6, + "end": 2580.72, + "probability": 0.98095703125 + }, + { + "word": " Walter.", + "start": 2580.72, + "end": 2580.94, + "probability": 0.395263671875 + } + ] + }, + { + "id": 1039, + "text": "Yeah.", + "start": 2581.06, + "end": 2581.4, + "words": [ + { + "word": " Yeah.", + "start": 2581.06, + "end": 2581.4, + "probability": 0.058807373046875 + } + ] + }, + { + "id": 1040, + "text": "But it turns out that they can ask you for your passwords and hold you.", + "start": 2582.9799999999996, + "end": 2587.52, + "words": [ + { + "word": " But", + "start": 2582.9799999999996, + "end": 2583.3399999999997, + "probability": 0.83251953125 + }, + { + "word": " it", + "start": 2583.3399999999997, + "end": 2583.7, + "probability": 0.9052734375 + }, + { + "word": " turns", + "start": 2583.7, + "end": 2584.62, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 2584.62, + "end": 2584.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 2584.8, + "end": 2584.88, + "probability": 0.9853515625 + }, + { + "word": " they", + "start": 2584.88, + "end": 2585.02, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2585.02, + "end": 2585.12, + "probability": 1.0 + }, + { + "word": " ask", + "start": 2585.12, + "end": 2585.32, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 2585.32, + "end": 2585.42, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2585.42, + "end": 2585.52, + "probability": 1.0 + }, + { + "word": " your", + "start": 2585.52, + "end": 2585.58, + "probability": 1.0 + }, + { + "word": " passwords", + "start": 2585.58, + "end": 2585.84, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 2585.84, + "end": 2586.1, + "probability": 0.99609375 + }, + { + "word": " hold", + "start": 2586.1, + "end": 2587.2, + "probability": 0.9990234375 + }, + { + "word": " you.", + "start": 2587.2, + "end": 2587.52, + "probability": 1.0 + } + ] + }, + { + "id": 1041, + "text": "And you know what you do?", + "start": 2588.08, + "end": 2589.46, + "words": [ + { + "word": " And", + "start": 2588.08, + "end": 2588.44, + "probability": 0.447998046875 + }, + { + "word": " you", + "start": 2588.44, + "end": 2588.74, + "probability": 0.99072265625 + }, + { + "word": " know", + "start": 2588.74, + "end": 2588.88, + "probability": 1.0 + }, + { + "word": " what", + "start": 2588.88, + "end": 2589.0, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2589.0, + "end": 2589.06, + "probability": 1.0 + }, + { + "word": " do?", + "start": 2589.06, + "end": 2589.46, + "probability": 1.0 + } + ] + }, + { + "id": 1042, + "text": "Change your password right afterwards.", + "start": 2589.74, + "end": 2591.48, + "words": [ + { + "word": " Change", + "start": 2589.74, + "end": 2590.1, + "probability": 0.994140625 + }, + { + "word": " your", + "start": 2590.1, + "end": 2590.4, + "probability": 1.0 + }, + { + "word": " password", + "start": 2590.4, + "end": 2590.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 2590.84, + "end": 2591.1, + "probability": 0.9990234375 + }, + { + "word": " afterwards.", + "start": 2591.1, + "end": 2591.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1043, + "text": "That's what you do.", + "start": 2591.7, + "end": 2592.68, + "words": [ + { + "word": " That's", + "start": 2591.7, + "end": 2592.06, + "probability": 1.0 + }, + { + "word": " what", + "start": 2592.06, + "end": 2592.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 2592.24, + "end": 2592.42, + "probability": 1.0 + }, + { + "word": " do.", + "start": 2592.42, + "end": 2592.68, + "probability": 1.0 + } + ] + }, + { + "id": 1044, + "text": "This is the Computer Guru Show.", + "start": 2593.62, + "end": 2594.74, + "words": [ + { + "word": " This", + "start": 2593.62, + "end": 2593.98, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2593.98, + "end": 2594.06, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2594.06, + "end": 2594.1, + "probability": 0.765625 + }, + { + "word": " Computer", + "start": 2594.1, + "end": 2594.32, + "probability": 0.9970703125 + }, + { + "word": " Guru", + "start": 2594.32, + "end": 2594.52, + "probability": 0.97314453125 + }, + { + "word": " Show.", + "start": 2594.52, + "end": 2594.74, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1045, + "text": "Stick around for the second hour coming up next, right after these messages.", + "start": 2594.82, + "end": 2597.7, + "words": [ + { + "word": " Stick", + "start": 2594.82, + "end": 2594.98, + "probability": 0.99755859375 + }, + { + "word": " around", + "start": 2594.98, + "end": 2595.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 2595.12, + "end": 2595.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 2595.26, + "end": 2595.34, + "probability": 1.0 + }, + { + "word": " second", + "start": 2595.34, + "end": 2595.58, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 2595.58, + "end": 2595.78, + "probability": 0.99951171875 + }, + { + "word": " coming", + "start": 2595.78, + "end": 2596.02, + "probability": 0.9951171875 + }, + { + "word": " up", + "start": 2596.02, + "end": 2596.2, + "probability": 1.0 + }, + { + "word": " next,", + "start": 2596.2, + "end": 2596.44, + "probability": 1.0 + }, + { + "word": " right", + "start": 2596.54, + "end": 2596.84, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 2596.84, + "end": 2597.06, + "probability": 1.0 + }, + { + "word": " these", + "start": 2597.06, + "end": 2597.3, + "probability": 1.0 + }, + { + "word": " messages.", + "start": 2597.3, + "end": 2597.7, + "probability": 1.0 + } + ] + }, + { + "id": 1046, + "text": "By the way, thanks to Protection Auto Works for supporting the first hour.", + "start": 2597.8, + "end": 2600.52, + "words": [ + { + "word": " By", + "start": 2597.8, + "end": 2597.98, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2597.98, + "end": 2598.06, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2598.06, + "end": 2598.2, + "probability": 1.0 + }, + { + "word": " thanks", + "start": 2598.24, + "end": 2598.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 2598.42, + "end": 2598.56, + "probability": 0.9970703125 + }, + { + "word": " Protection", + "start": 2598.56, + "end": 2598.88, + "probability": 0.73486328125 + }, + { + "word": " Auto", + "start": 2598.88, + "end": 2599.04, + "probability": 0.415283203125 + }, + { + "word": " Works", + "start": 2599.04, + "end": 2599.26, + "probability": 0.8251953125 + }, + { + "word": " for", + "start": 2599.26, + "end": 2599.5, + "probability": 0.99462890625 + }, + { + "word": " supporting", + "start": 2599.5, + "end": 2599.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2599.88, + "end": 2600.08, + "probability": 0.9951171875 + }, + { + "word": " first", + "start": 2600.08, + "end": 2600.24, + "probability": 0.9951171875 + }, + { + "word": " hour.", + "start": 2600.24, + "end": 2600.52, + "probability": 1.0 + } + ] + }, + { + "id": 1047, + "text": "We'll be right back.", + "start": 2600.66, + "end": 2601.28, + "words": [ + { + "word": " We'll", + "start": 2600.66, + "end": 2600.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 2600.86, + "end": 2600.92, + "probability": 1.0 + }, + { + "word": " right", + "start": 2600.92, + "end": 2601.08, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2601.08, + "end": 2601.28, + "probability": 1.0 + } + ] + }, + { + "id": 1048, + "text": "We love doing this show.", + "start": 2603.94, + "end": 2605.06, + "words": [ + { + "word": " We", + "start": 2603.94, + "end": 2604.3, + "probability": 0.81396484375 + }, + { + "word": " love", + "start": 2604.3, + "end": 2604.48, + "probability": 0.98046875 + }, + { + "word": " doing", + "start": 2604.48, + "end": 2604.64, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2604.64, + "end": 2604.88, + "probability": 0.99462890625 + }, + { + "word": " show.", + "start": 2604.88, + "end": 2605.06, + "probability": 1.0 + } + ] + }, + { + "id": 1049, + "text": "It's pretty expensive, though, so we could use your help.", + "start": 2605.18, + "end": 2607.22, + "words": [ + { + "word": " It's", + "start": 2605.18, + "end": 2605.48, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 2605.48, + "end": 2605.64, + "probability": 0.99951171875 + }, + { + "word": " expensive,", + "start": 2605.64, + "end": 2606.04, + "probability": 1.0 + }, + { + "word": " though,", + "start": 2606.08, + "end": 2606.28, + "probability": 1.0 + }, + { + "word": " so", + "start": 2606.3, + "end": 2606.42, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2606.42, + "end": 2606.52, + "probability": 1.0 + }, + { + "word": " could", + "start": 2606.52, + "end": 2606.64, + "probability": 1.0 + }, + { + "word": " use", + "start": 2606.64, + "end": 2606.8, + "probability": 1.0 + }, + { + "word": " your", + "start": 2606.8, + "end": 2606.98, + "probability": 1.0 + }, + { + "word": " help.", + "start": 2606.98, + "end": 2607.22, + "probability": 1.0 + } + ] + }, + { + "id": 1050, + "text": "For as little as a dollar a month, you can help us keep the lights on,", + "start": 2607.32, + "end": 2609.84, + "words": [ + { + "word": " For", + "start": 2607.32, + "end": 2607.68, + "probability": 0.998046875 + }, + { + "word": " as", + "start": 2607.68, + "end": 2607.8, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 2607.8, + "end": 2607.94, + "probability": 1.0 + }, + { + "word": " as", + "start": 2607.94, + "end": 2608.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2608.1, + "end": 2608.16, + "probability": 0.91357421875 + }, + { + "word": " dollar", + "start": 2608.16, + "end": 2608.38, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2608.38, + "end": 2608.52, + "probability": 1.0 + }, + { + "word": " month,", + "start": 2608.52, + "end": 2608.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 2608.74, + "end": 2608.84, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2608.84, + "end": 2608.92, + "probability": 1.0 + }, + { + "word": " help", + "start": 2608.92, + "end": 2609.08, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2609.08, + "end": 2609.18, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2609.18, + "end": 2609.32, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2609.32, + "end": 2609.46, + "probability": 0.9990234375 + }, + { + "word": " lights", + "start": 2609.46, + "end": 2609.62, + "probability": 0.99951171875 + }, + { + "word": " on,", + "start": 2609.62, + "end": 2609.84, + "probability": 1.0 + } + ] + }, + { + "id": 1051, + "text": "as well as contribute to our podcast.", + "start": 2609.9, + "end": 2611.04, + "words": [ + { + "word": " as", + "start": 2609.9, + "end": 2610.26, + "probability": 0.998046875 + }, + { + "word": " well", + "start": 2610.26, + "end": 2610.34, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2610.34, + "end": 2610.48, + "probability": 1.0 + }, + { + "word": " contribute", + "start": 2610.48, + "end": 2610.7, + "probability": 0.98681640625 + }, + { + "word": " to", + "start": 2610.7, + "end": 2610.98, + "probability": 0.9990234375 + }, + { + "word": " our", + "start": 2610.98, + "end": 2611.04, + "probability": 0.99609375 + }, + { + "word": " podcast.", + "start": 2611.04, + "end": 2611.04, + "probability": 0.08905029296875 + } + ] + }, + { + "id": 1052, + "text": "We're a fun side project.", + "start": 2611.06, + "end": 2611.8, + "words": [ + { + "word": " We're", + "start": 2611.06, + "end": 2611.18, + "probability": 0.09259033203125 + }, + { + "word": " a", + "start": 2611.18, + "end": 2611.18, + "probability": 0.02471923828125 + }, + { + "word": " fun", + "start": 2611.18, + "end": 2611.18, + "probability": 0.1817626953125 + }, + { + "word": " side", + "start": 2611.18, + "end": 2611.5, + "probability": 0.99072265625 + }, + { + "word": " project.", + "start": 2611.5, + "end": 2611.8, + "probability": 0.505859375 + } + ] + }, + { + "id": 1053, + "text": "You'll be funding everything from tech tutorial videos that we'll be putting on our YouTube channel", + "start": 2612.24, + "end": 2615.72, + "words": [ + { + "word": " You'll", + "start": 2612.24, + "end": 2612.6, + "probability": 0.92919921875 + }, + { + "word": " be", + "start": 2612.6, + "end": 2612.68, + "probability": 0.99755859375 + }, + { + "word": " funding", + "start": 2612.68, + "end": 2612.88, + "probability": 0.916015625 + }, + { + "word": " everything", + "start": 2612.88, + "end": 2613.1, + "probability": 0.99658203125 + }, + { + "word": " from", + "start": 2613.1, + "end": 2613.42, + "probability": 0.99658203125 + }, + { + "word": " tech", + "start": 2613.42, + "end": 2613.6, + "probability": 0.98876953125 + }, + { + "word": " tutorial", + "start": 2613.6, + "end": 2613.86, + "probability": 0.9873046875 + }, + { + "word": " videos", + "start": 2613.86, + "end": 2614.28, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 2614.28, + "end": 2614.56, + "probability": 0.96533203125 + }, + { + "word": " we'll", + "start": 2614.56, + "end": 2614.72, + "probability": 0.9921875 + }, + { + "word": " be", + "start": 2614.72, + "end": 2614.76, + "probability": 0.99658203125 + }, + { + "word": " putting", + "start": 2614.76, + "end": 2614.94, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 2614.94, + "end": 2615.08, + "probability": 0.99755859375 + }, + { + "word": " our", + "start": 2615.08, + "end": 2615.2, + "probability": 0.99462890625 + }, + { + "word": " YouTube", + "start": 2615.2, + "end": 2615.36, + "probability": 0.98876953125 + }, + { + "word": " channel", + "start": 2615.36, + "end": 2615.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 1054, + "text": "to crazy stuff like melting Furbies with thermite.", + "start": 2615.72, + "end": 2618.06, + "words": [ + { + "word": " to", + "start": 2615.72, + "end": 2616.14, + "probability": 0.81298828125 + }, + { + "word": " crazy", + "start": 2616.14, + "end": 2616.42, + "probability": 0.99609375 + }, + { + "word": " stuff", + "start": 2616.42, + "end": 2616.68, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 2616.68, + "end": 2616.88, + "probability": 0.9873046875 + }, + { + "word": " melting", + "start": 2616.88, + "end": 2617.14, + "probability": 0.96435546875 + }, + { + "word": " Furbies", + "start": 2617.14, + "end": 2617.48, + "probability": 0.82421875 + }, + { + "word": " with", + "start": 2617.48, + "end": 2617.66, + "probability": 0.998046875 + }, + { + "word": " thermite.", + "start": 2617.66, + "end": 2618.06, + "probability": 0.794921875 + } + ] + }, + { + "id": 1055, + "text": "We're not joking.", + "start": 2618.32, + "end": 2619.02, + "words": [ + { + "word": " We're", + "start": 2618.32, + "end": 2618.68, + "probability": 0.9970703125 + }, + { + "word": " not", + "start": 2618.68, + "end": 2618.74, + "probability": 0.99951171875 + }, + { + "word": " joking.", + "start": 2618.74, + "end": 2619.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1056, + "text": "We actually did that, and our Patreon supporters made it happen.", + "start": 2619.1, + "end": 2621.64, + "words": [ + { + "word": " We", + "start": 2619.1, + "end": 2619.2, + "probability": 0.9990234375 + }, + { + "word": " actually", + "start": 2619.2, + "end": 2619.42, + "probability": 0.9990234375 + }, + { + "word": " did", + "start": 2619.42, + "end": 2619.68, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 2619.68, + "end": 2619.9, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2619.98, + "end": 2620.28, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 2620.28, + "end": 2620.4, + "probability": 0.99853515625 + }, + { + "word": " Patreon", + "start": 2620.4, + "end": 2620.7, + "probability": 0.97900390625 + }, + { + "word": " supporters", + "start": 2620.7, + "end": 2620.94, + "probability": 0.9990234375 + }, + { + "word": " made", + "start": 2620.94, + "end": 2621.3, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2621.3, + "end": 2621.42, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 2621.42, + "end": 2621.64, + "probability": 1.0 + } + ] + }, + { + "id": 1057, + "text": "With your contribution, you'll not only get access to that content and more,", + "start": 2621.86, + "end": 2624.68, + "words": [ + { + "word": " With", + "start": 2621.86, + "end": 2622.22, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 2622.22, + "end": 2622.38, + "probability": 0.9990234375 + }, + { + "word": " contribution,", + "start": 2622.38, + "end": 2622.74, + "probability": 0.99609375 + }, + { + "word": " you'll", + "start": 2622.94, + "end": 2623.1, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2623.1, + "end": 2623.2, + "probability": 0.99853515625 + }, + { + "word": " only", + "start": 2623.2, + "end": 2623.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 2623.36, + "end": 2623.52, + "probability": 0.9990234375 + }, + { + "word": " access", + "start": 2623.52, + "end": 2623.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2623.72, + "end": 2623.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 2623.9, + "end": 2624.06, + "probability": 0.9990234375 + }, + { + "word": " content", + "start": 2624.06, + "end": 2624.4, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2624.4, + "end": 2624.54, + "probability": 0.99853515625 + }, + { + "word": " more,", + "start": 2624.54, + "end": 2624.68, + "probability": 1.0 + } + ] + }, + { + "id": 1058, + "text": "but you'll help us create more in the future.", + "start": 2624.82, + "end": 2626.32, + "words": [ + { + "word": " but", + "start": 2624.82, + "end": 2625.12, + "probability": 0.9990234375 + }, + { + "word": " you'll", + "start": 2625.12, + "end": 2625.24, + "probability": 0.9990234375 + }, + { + "word": " help", + "start": 2625.24, + "end": 2625.4, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 2625.4, + "end": 2625.52, + "probability": 1.0 + }, + { + "word": " create", + "start": 2625.52, + "end": 2625.66, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 2625.66, + "end": 2625.88, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2625.88, + "end": 2626.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2626.02, + "end": 2626.04, + "probability": 1.0 + }, + { + "word": " future.", + "start": 2626.04, + "end": 2626.32, + "probability": 1.0 + } + ] + }, + { + "id": 1059, + "text": "We even have rewards set up, depending on your contribution level,", + "start": 2626.76, + "end": 2629.26, + "words": [ + { + "word": " We", + "start": 2626.76, + "end": 2627.12, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 2627.12, + "end": 2627.28, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2627.28, + "end": 2627.44, + "probability": 1.0 + }, + { + "word": " rewards", + "start": 2627.44, + "end": 2627.7, + "probability": 0.990234375 + }, + { + "word": " set", + "start": 2627.7, + "end": 2627.9, + "probability": 0.9990234375 + }, + { + "word": " up,", + "start": 2627.9, + "end": 2628.08, + "probability": 1.0 + }, + { + "word": " depending", + "start": 2628.1, + "end": 2628.26, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2628.26, + "end": 2628.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 2628.44, + "end": 2628.56, + "probability": 0.99951171875 + }, + { + "word": " contribution", + "start": 2628.56, + "end": 2628.84, + "probability": 0.998046875 + }, + { + "word": " level,", + "start": 2628.84, + "end": 2629.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1060, + "text": "where you can do things like advertise your business with us", + "start": 2629.36, + "end": 2631.68, + "words": [ + { + "word": " where", + "start": 2629.36, + "end": 2629.54, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2629.54, + "end": 2629.64, + "probability": 1.0 + }, + { + "word": " can", + "start": 2629.64, + "end": 2629.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 2629.76, + "end": 2629.88, + "probability": 1.0 + }, + { + "word": " things", + "start": 2629.88, + "end": 2630.12, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2630.12, + "end": 2630.42, + "probability": 0.99951171875 + }, + { + "word": " advertise", + "start": 2630.42, + "end": 2630.72, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 2630.72, + "end": 2630.98, + "probability": 1.0 + }, + { + "word": " business", + "start": 2630.98, + "end": 2631.24, + "probability": 1.0 + }, + { + "word": " with", + "start": 2631.24, + "end": 2631.5, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2631.5, + "end": 2631.68, + "probability": 1.0 + } + ] + }, + { + "id": 1061, + "text": "or even be a guest on the show to talk about whatever you want.", + "start": 2631.68, + "end": 2634.34, + "words": [ + { + "word": " or", + "start": 2631.68, + "end": 2632.04, + "probability": 0.611328125 + }, + { + "word": " even", + "start": 2632.04, + "end": 2632.24, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2632.24, + "end": 2632.38, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2632.38, + "end": 2632.5, + "probability": 1.0 + }, + { + "word": " guest", + "start": 2632.5, + "end": 2632.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 2632.64, + "end": 2632.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2632.8, + "end": 2632.86, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 2632.86, + "end": 2633.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2633.04, + "end": 2633.3, + "probability": 0.9970703125 + }, + { + "word": " talk", + "start": 2633.3, + "end": 2633.48, + "probability": 1.0 + }, + { + "word": " about", + "start": 2633.48, + "end": 2633.68, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 2633.68, + "end": 2634.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2634.0, + "end": 2634.18, + "probability": 1.0 + }, + { + "word": " want.", + "start": 2634.18, + "end": 2634.34, + "probability": 1.0 + } + ] + }, + { + "id": 1062, + "text": "If you'd like to get started, go to gurushow.com and click the Patreon logo.", + "start": 2634.54, + "end": 2637.9, + "words": [ + { + "word": " If", + "start": 2634.54, + "end": 2634.9, + "probability": 0.99951171875 + }, + { + "word": " you'd", + "start": 2634.9, + "end": 2635.04, + "probability": 1.0 + }, + { + "word": " like", + "start": 2635.04, + "end": 2635.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 2635.14, + "end": 2635.24, + "probability": 1.0 + }, + { + "word": " get", + "start": 2635.24, + "end": 2635.34, + "probability": 0.99951171875 + }, + { + "word": " started,", + "start": 2635.34, + "end": 2635.62, + "probability": 1.0 + }, + { + "word": " go", + "start": 2635.74, + "end": 2635.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2635.88, + "end": 2636.0, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 2636.0, + "end": 2636.4, + "probability": 0.8857421875 + }, + { + "word": ".com", + "start": 2636.4, + "end": 2636.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 2636.78, + "end": 2636.98, + "probability": 0.99951171875 + }, + { + "word": " click", + "start": 2636.98, + "end": 2637.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2637.14, + "end": 2637.3, + "probability": 0.99951171875 + }, + { + "word": " Patreon", + "start": 2637.3, + "end": 2637.54, + "probability": 1.0 + }, + { + "word": " logo.", + "start": 2637.54, + "end": 2637.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1063, + "text": "Thank you.", + "start": 2640.3199999999997, + "end": 2641.04, + "words": [ + { + "word": " Thank", + "start": 2640.3199999999997, + "end": 2640.68, + "probability": 0.083740234375 + }, + { + "word": " you.", + "start": 2640.68, + "end": 2641.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1064, + "text": "Why don't people understand my intention?", + "start": 2641.06, + "end": 2643.3, + "words": [ + { + "word": " Why", + "start": 2641.06, + "end": 2641.2, + "probability": 0.6357421875 + }, + { + "word": " don't", + "start": 2641.2, + "end": 2641.28, + "probability": 0.99658203125 + }, + { + "word": " people", + "start": 2641.28, + "end": 2641.6, + "probability": 0.99951171875 + }, + { + "word": " understand", + "start": 2641.6, + "end": 2642.14, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2642.14, + "end": 2642.86, + "probability": 0.99853515625 + }, + { + "word": " intention?", + "start": 2642.86, + "end": 2643.3, + "probability": 0.552734375 + } + ] + }, + { + "id": 1065, + "text": "Computer running slow?", + "start": 2644.04, + "end": 2645.14, + "words": [ + { + "word": " Computer", + "start": 2644.04, + "end": 2644.56, + "probability": 0.98291015625 + }, + { + "word": " running", + "start": 2644.56, + "end": 2644.78, + "probability": 0.9990234375 + }, + { + "word": " slow?", + "start": 2644.78, + "end": 2645.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1066, + "text": "Avoiding.", + "start": 2645.34, + "end": 2645.62, + "words": [ + { + "word": " Avoiding.", + "start": 2645.34, + "end": 2645.62, + "probability": 0.63232421875 + } + ] + }, + { + "id": 1067, + "text": "Caught a virus?", + "start": 2645.84, + "end": 2646.62, + "words": [ + { + "word": " Caught", + "start": 2645.84, + "end": 2646.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 2646.22, + "end": 2646.28, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 2646.28, + "end": 2646.62, + "probability": 1.0 + } + ] + }, + { + "id": 1068, + "text": "What?", + "start": 2646.92, + "end": 2647.12, + "words": [ + { + "word": " What?", + "start": 2646.92, + "end": 2647.12, + "probability": 0.41748046875 + } + ] + }, + { + "id": 1069, + "text": "No!", + "start": 2647.3, + "end": 2647.62, + "words": [ + { + "word": " No!", + "start": 2647.3, + "end": 2647.62, + "probability": 0.404052734375 + } + ] + }, + { + "id": 1070, + "text": "When?", + "start": 2648.1, + "end": 2648.38, + "words": [ + { + "word": " When?", + "start": 2648.1, + "end": 2648.38, + "probability": 0.41796875 + } + ] + }, + { + "id": 1071, + "text": "Does your computer seem to have a life of its own?", + "start": 2648.66, + "end": 2652.08, + "words": [ + { + "word": " Does", + "start": 2648.66, + "end": 2649.18, + "probability": 0.72216796875 + }, + { + "word": " your", + "start": 2649.18, + "end": 2649.7, + "probability": 1.0 + }, + { + "word": " computer", + "start": 2649.7, + "end": 2650.18, + "probability": 1.0 + }, + { + "word": " seem", + "start": 2650.18, + "end": 2650.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2650.58, + "end": 2650.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 2650.78, + "end": 2651.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 2651.02, + "end": 2651.18, + "probability": 1.0 + }, + { + "word": " life", + "start": 2651.18, + "end": 2651.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 2651.5, + "end": 2651.68, + "probability": 1.0 + }, + { + "word": " its", + "start": 2651.68, + "end": 2651.84, + "probability": 0.99951171875 + }, + { + "word": " own?", + "start": 2651.84, + "end": 2652.08, + "probability": 1.0 + } + ] + }, + { + "id": 1072, + "text": "Malfunction.", + "start": 2652.5, + "end": 2653.02, + "words": [ + { + "word": " Malfunction.", + "start": 2652.5, + "end": 2653.02, + "probability": 0.9013671875 + } + ] + }, + { + "id": 1073, + "text": "Need input.", + "start": 2653.44, + "end": 2654.56, + "words": [ + { + "word": " Need", + "start": 2653.44, + "end": 2653.96, + "probability": 0.97802734375 + }, + { + "word": " input.", + "start": 2653.96, + "end": 2654.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1074, + "text": "The computer guru is here.", + "start": 2654.84, + "end": 2656.52, + "words": [ + { + "word": " The", + "start": 2654.84, + "end": 2655.04, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 2655.04, + "end": 2655.36, + "probability": 0.4619140625 + }, + { + "word": " guru", + "start": 2655.36, + "end": 2655.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 2655.76, + "end": 2656.22, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2656.22, + "end": 2656.52, + "probability": 1.0 + } + ] + }, + { + "id": 1075, + "text": "My God, you're here!", + "start": 2656.68, + "end": 2657.6, + "words": [ + { + "word": " My", + "start": 2656.68, + "end": 2656.78, + "probability": 0.68310546875 + }, + { + "word": " God,", + "start": 2656.78, + "end": 2657.14, + "probability": 0.8515625 + }, + { + "word": " you're", + "start": 2657.18, + "end": 2657.44, + "probability": 1.0 + }, + { + "word": " here!", + "start": 2657.44, + "end": 2657.6, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1076, + "text": "Call in now.", + "start": 2658.0, + "end": 2658.84, + "words": [ + { + "word": " Call", + "start": 2658.0, + "end": 2658.28, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2658.28, + "end": 2658.52, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 2658.52, + "end": 2658.84, + "probability": 1.0 + } + ] + }, + { + "id": 1077, + "text": "Now, it's Mike Swanson, your computer guru.", + "start": 2659.16, + "end": 2662.04, + "words": [ + { + "word": " Now,", + "start": 2659.16, + "end": 2659.6, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2659.6, + "end": 2659.94, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 2659.94, + "end": 2660.16, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 2660.16, + "end": 2660.54, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 2660.78, + "end": 2661.06, + "probability": 0.998046875 + }, + { + "word": " computer", + "start": 2661.06, + "end": 2661.58, + "probability": 0.99951171875 + }, + { + "word": " guru.", + "start": 2661.58, + "end": 2662.04, + "probability": 1.0 + } + ] + }, + { + "id": 1078, + "text": "Welcome back to the Computer Guru Show.", + "start": 2664.66, + "end": 2666.56, + "words": [ + { + "word": " Welcome", + "start": 2664.66, + "end": 2665.18, + "probability": 0.99609375 + }, + { + "word": " back", + "start": 2665.18, + "end": 2665.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2665.64, + "end": 2665.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 2665.84, + "end": 2665.94, + "probability": 0.62255859375 + }, + { + "word": " Computer", + "start": 2665.94, + "end": 2666.12, + "probability": 0.98291015625 + }, + { + "word": " Guru", + "start": 2666.12, + "end": 2666.36, + "probability": 0.9970703125 + }, + { + "word": " Show.", + "start": 2666.36, + "end": 2666.56, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1079, + "text": "My name is Mike, here to deal with your technology needs", + "start": 2666.6, + "end": 2668.38, + "words": [ + { + "word": " My", + "start": 2666.6, + "end": 2666.68, + "probability": 0.99755859375 + }, + { + "word": " name", + "start": 2666.68, + "end": 2666.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 2666.78, + "end": 2666.86, + "probability": 0.80322265625 + }, + { + "word": " Mike,", + "start": 2666.86, + "end": 2667.06, + "probability": 1.0 + }, + { + "word": " here", + "start": 2667.1, + "end": 2667.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2667.22, + "end": 2667.34, + "probability": 1.0 + }, + { + "word": " deal", + "start": 2667.34, + "end": 2667.48, + "probability": 1.0 + }, + { + "word": " with", + "start": 2667.48, + "end": 2667.6, + "probability": 1.0 + }, + { + "word": " your", + "start": 2667.6, + "end": 2667.7, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2667.7, + "end": 2668.04, + "probability": 1.0 + }, + { + "word": " needs", + "start": 2668.04, + "end": 2668.38, + "probability": 1.0 + } + ] + }, + { + "id": 1080, + "text": "and treat you like a person in the process.", + "start": 2668.38, + "end": 2670.24, + "words": [ + { + "word": " and", + "start": 2668.38, + "end": 2668.62, + "probability": 0.9931640625 + }, + { + "word": " treat", + "start": 2668.62, + "end": 2668.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 2668.88, + "end": 2669.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 2669.06, + "end": 2669.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 2669.16, + "end": 2669.28, + "probability": 1.0 + }, + { + "word": " person", + "start": 2669.28, + "end": 2669.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 2669.56, + "end": 2669.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2669.8, + "end": 2669.88, + "probability": 1.0 + }, + { + "word": " process.", + "start": 2669.88, + "end": 2670.24, + "probability": 1.0 + } + ] + }, + { + "id": 1081, + "text": "Give us a call if you'd like to be part of the show.", + "start": 2670.24, + "end": 2672.1, + "words": [ + { + "word": " Give", + "start": 2670.24, + "end": 2670.48, + "probability": 0.57861328125 + }, + { + "word": " us", + "start": 2670.48, + "end": 2671.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2671.04, + "end": 2671.06, + "probability": 1.0 + }, + { + "word": " call", + "start": 2671.06, + "end": 2671.18, + "probability": 1.0 + }, + { + "word": " if", + "start": 2671.18, + "end": 2671.32, + "probability": 0.99755859375 + }, + { + "word": " you'd", + "start": 2671.32, + "end": 2671.46, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2671.46, + "end": 2671.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 2671.54, + "end": 2671.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 2671.62, + "end": 2671.66, + "probability": 1.0 + }, + { + "word": " part", + "start": 2671.66, + "end": 2671.82, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2671.82, + "end": 2671.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2671.9, + "end": 2671.94, + "probability": 1.0 + }, + { + "word": " show.", + "start": 2671.94, + "end": 2672.1, + "probability": 1.0 + } + ] + }, + { + "id": 1082, + "text": "520-790-2040.", + "start": 2672.8199999999997, + "end": 2674.22, + "words": [ + { + "word": " 520", + "start": 2672.8199999999997, + "end": 2673.14, + "probability": 0.9814453125 + }, + { + "word": "-790", + "start": 2673.14, + "end": 2673.46, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 2673.46, + "end": 2674.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1083, + "text": "Or you can join us in the chat at gurushow.com slash chat.", + "start": 2674.32, + "end": 2677.5, + "words": [ + { + "word": " Or", + "start": 2674.32, + "end": 2674.5, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 2674.5, + "end": 2674.6, + "probability": 0.99560546875 + }, + { + "word": " can", + "start": 2674.6, + "end": 2674.72, + "probability": 1.0 + }, + { + "word": " join", + "start": 2674.72, + "end": 2674.92, + "probability": 1.0 + }, + { + "word": " us", + "start": 2674.92, + "end": 2675.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 2675.02, + "end": 2675.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2675.12, + "end": 2675.18, + "probability": 1.0 + }, + { + "word": " chat", + "start": 2675.18, + "end": 2675.38, + "probability": 1.0 + }, + { + "word": " at", + "start": 2675.38, + "end": 2675.66, + "probability": 0.99853515625 + }, + { + "word": " gurushow", + "start": 2675.66, + "end": 2676.14, + "probability": 0.8857421875 + }, + { + "word": ".com", + "start": 2676.14, + "end": 2676.64, + "probability": 1.0 + }, + { + "word": " slash", + "start": 2676.64, + "end": 2676.9, + "probability": 0.89404296875 + }, + { + "word": " chat.", + "start": 2676.9, + "end": 2677.5, + "probability": 1.0 + } + ] + }, + { + "id": 1084, + "text": "And you totally should, because there's people in there.", + "start": 2677.92, + "end": 2679.78, + "words": [ + { + "word": " And", + "start": 2677.92, + "end": 2678.24, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 2678.24, + "end": 2678.3, + "probability": 0.99951171875 + }, + { + "word": " totally", + "start": 2678.3, + "end": 2678.5, + "probability": 1.0 + }, + { + "word": " should,", + "start": 2678.5, + "end": 2678.68, + "probability": 1.0 + }, + { + "word": " because", + "start": 2678.76, + "end": 2678.88, + "probability": 0.99755859375 + }, + { + "word": " there's", + "start": 2678.88, + "end": 2679.24, + "probability": 1.0 + }, + { + "word": " people", + "start": 2679.24, + "end": 2679.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 2679.42, + "end": 2679.62, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2679.62, + "end": 2679.78, + "probability": 1.0 + } + ] + }, + { + "id": 1085, + "text": "Yeah, we're in there.", + "start": 2680.0, + "end": 2680.72, + "words": [ + { + "word": " Yeah,", + "start": 2680.0, + "end": 2680.32, + "probability": 0.90576171875 + }, + { + "word": " we're", + "start": 2680.34, + "end": 2680.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 2680.54, + "end": 2680.58, + "probability": 0.94677734375 + }, + { + "word": " there.", + "start": 2680.58, + "end": 2680.72, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1086, + "text": "We're chatting away.", + "start": 2680.86, + "end": 2681.42, + "words": [ + { + "word": " We're", + "start": 2680.86, + "end": 2681.0, + "probability": 0.9912109375 + }, + { + "word": " chatting", + "start": 2681.0, + "end": 2681.22, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 2681.22, + "end": 2681.42, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1087, + "text": "We're chatting it up.", + "start": 2681.58, + "end": 2682.42, + "words": [ + { + "word": " We're", + "start": 2681.58, + "end": 2681.7, + "probability": 0.998046875 + }, + { + "word": " chatting", + "start": 2681.7, + "end": 2682.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 2682.04, + "end": 2682.16, + "probability": 1.0 + }, + { + "word": " up.", + "start": 2682.16, + "end": 2682.42, + "probability": 1.0 + } + ] + }, + { + "id": 1088, + "text": "Chatting it up.", + "start": 2683.54, + "end": 2684.16, + "words": [ + { + "word": " Chatting", + "start": 2683.54, + "end": 2683.86, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 2683.86, + "end": 2683.98, + "probability": 1.0 + }, + { + "word": " up.", + "start": 2683.98, + "end": 2684.16, + "probability": 1.0 + } + ] + }, + { + "id": 1089, + "text": "Let's talk about cord cutting for a second.", + "start": 2684.2, + "end": 2685.74, + "words": [ + { + "word": " Let's", + "start": 2684.2, + "end": 2684.46, + "probability": 0.99462890625 + }, + { + "word": " talk", + "start": 2684.46, + "end": 2684.56, + "probability": 1.0 + }, + { + "word": " about", + "start": 2684.56, + "end": 2684.7, + "probability": 1.0 + }, + { + "word": " cord", + "start": 2684.7, + "end": 2684.94, + "probability": 0.998046875 + }, + { + "word": " cutting", + "start": 2684.94, + "end": 2685.14, + "probability": 0.9912109375 + }, + { + "word": " for", + "start": 2685.14, + "end": 2685.36, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2685.36, + "end": 2685.5, + "probability": 1.0 + }, + { + "word": " second.", + "start": 2685.5, + "end": 2685.74, + "probability": 1.0 + } + ] + }, + { + "id": 1090, + "text": "We haven't talked about that in a while.", + "start": 2685.96, + "end": 2687.32, + "words": [ + { + "word": " We", + "start": 2685.96, + "end": 2686.28, + "probability": 0.99853515625 + }, + { + "word": " haven't", + "start": 2686.28, + "end": 2686.42, + "probability": 1.0 + }, + { + "word": " talked", + "start": 2686.42, + "end": 2686.58, + "probability": 1.0 + }, + { + "word": " about", + "start": 2686.58, + "end": 2686.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 2686.76, + "end": 2686.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 2686.92, + "end": 2687.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2687.08, + "end": 2687.12, + "probability": 1.0 + }, + { + "word": " while.", + "start": 2687.12, + "end": 2687.32, + "probability": 1.0 + } + ] + }, + { + "id": 1091, + "text": "Yeah, and it'll be interesting to talk about, because I just did the opposite of that.", + "start": 2687.56, + "end": 2689.96, + "words": [ + { + "word": " Yeah,", + "start": 2687.56, + "end": 2687.78, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2687.84, + "end": 2687.86, + "probability": 0.99951171875 + }, + { + "word": " it'll", + "start": 2687.86, + "end": 2688.02, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 2688.02, + "end": 2688.1, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 2688.1, + "end": 2688.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 2688.36, + "end": 2688.48, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2688.48, + "end": 2688.64, + "probability": 1.0 + }, + { + "word": " about,", + "start": 2688.64, + "end": 2688.82, + "probability": 1.0 + }, + { + "word": " because", + "start": 2688.88, + "end": 2688.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 2688.96, + "end": 2689.08, + "probability": 1.0 + }, + { + "word": " just", + "start": 2689.08, + "end": 2689.2, + "probability": 1.0 + }, + { + "word": " did", + "start": 2689.2, + "end": 2689.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 2689.32, + "end": 2689.42, + "probability": 1.0 + }, + { + "word": " opposite", + "start": 2689.42, + "end": 2689.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 2689.64, + "end": 2689.8, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 2689.8, + "end": 2689.96, + "probability": 1.0 + } + ] + }, + { + "id": 1092, + "text": "Yeah, yeah, yeah.", + "start": 2690.4599999999996, + "end": 2691.6, + "words": [ + { + "word": " Yeah,", + "start": 2690.4599999999996, + "end": 2690.7799999999997, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 2690.7799999999997, + "end": 2691.1, + "probability": 0.9970703125 + }, + { + "word": " yeah.", + "start": 2691.24, + "end": 2691.6, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1093, + "text": "Poor you.", + "start": 2691.68, + "end": 2692.16, + "words": [ + { + "word": " Poor", + "start": 2691.68, + "end": 2691.94, + "probability": 0.9951171875 + }, + { + "word": " you.", + "start": 2691.94, + "end": 2692.16, + "probability": 1.0 + } + ] + }, + { + "id": 1094, + "text": "I got cable for the first time in like nearly a decade.", + "start": 2692.28, + "end": 2694.54, + "words": [ + { + "word": " I", + "start": 2692.28, + "end": 2692.46, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2692.46, + "end": 2692.58, + "probability": 0.99951171875 + }, + { + "word": " cable", + "start": 2692.58, + "end": 2692.88, + "probability": 0.9921875 + }, + { + "word": " for", + "start": 2692.88, + "end": 2693.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2693.12, + "end": 2693.22, + "probability": 1.0 + }, + { + "word": " first", + "start": 2693.22, + "end": 2693.42, + "probability": 1.0 + }, + { + "word": " time", + "start": 2693.42, + "end": 2693.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 2693.58, + "end": 2693.7, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2693.7, + "end": 2693.8, + "probability": 0.329345703125 + }, + { + "word": " nearly", + "start": 2693.8, + "end": 2694.04, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2694.04, + "end": 2694.22, + "probability": 1.0 + }, + { + "word": " decade.", + "start": 2694.22, + "end": 2694.54, + "probability": 1.0 + } + ] + }, + { + "id": 1095, + "text": "Because you just want to spend money unnecessarily.", + "start": 2694.92, + "end": 2697.26, + "words": [ + { + "word": " Because", + "start": 2694.92, + "end": 2695.24, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2695.24, + "end": 2695.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 2695.44, + "end": 2695.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 2695.6, + "end": 2695.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2695.84, + "end": 2696.04, + "probability": 1.0 + }, + { + "word": " spend", + "start": 2696.04, + "end": 2696.24, + "probability": 1.0 + }, + { + "word": " money", + "start": 2696.24, + "end": 2696.52, + "probability": 1.0 + }, + { + "word": " unnecessarily.", + "start": 2696.52, + "end": 2697.26, + "probability": 1.0 + } + ] + }, + { + "id": 1096, + "text": "I don't want to spend money unnecessarily.", + "start": 2697.46, + "end": 2699.36, + "words": [ + { + "word": " I", + "start": 2697.46, + "end": 2697.78, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2697.78, + "end": 2698.14, + "probability": 1.0 + }, + { + "word": " want", + "start": 2698.14, + "end": 2698.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 2698.22, + "end": 2698.34, + "probability": 1.0 + }, + { + "word": " spend", + "start": 2698.34, + "end": 2698.48, + "probability": 1.0 + }, + { + "word": " money", + "start": 2698.48, + "end": 2698.74, + "probability": 1.0 + }, + { + "word": " unnecessarily.", + "start": 2698.74, + "end": 2699.36, + "probability": 1.0 + } + ] + }, + { + "id": 1097, + "text": "Oh.", + "start": 2699.68, + "end": 2700.0, + "words": [ + { + "word": " Oh.", + "start": 2699.68, + "end": 2700.0, + "probability": 0.740234375 + } + ] + }, + { + "id": 1098, + "text": "Oh, I see what's going on here.", + "start": 2700.24, + "end": 2702.84, + "words": [ + { + "word": " Oh,", + "start": 2700.24, + "end": 2700.44, + "probability": 0.96923828125 + }, + { + "word": " I", + "start": 2700.44, + "end": 2701.28, + "probability": 0.87939453125 + }, + { + "word": " see", + "start": 2701.28, + "end": 2701.92, + "probability": 1.0 + }, + { + "word": " what's", + "start": 2701.92, + "end": 2702.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 2702.24, + "end": 2702.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 2702.36, + "end": 2702.62, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2702.62, + "end": 2702.84, + "probability": 1.0 + } + ] + }, + { + "id": 1099, + "text": "Well, we have to call your girlfriend out on it.", + "start": 2704.52, + "end": 2706.14, + "words": [ + { + "word": " Well,", + "start": 2704.52, + "end": 2704.88, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 2705.0, + "end": 2705.1, + "probability": 1.0 + }, + { + "word": " have", + "start": 2705.1, + "end": 2705.2, + "probability": 0.9189453125 + }, + { + "word": " to", + "start": 2705.2, + "end": 2705.3, + "probability": 1.0 + }, + { + "word": " call", + "start": 2705.3, + "end": 2705.38, + "probability": 1.0 + }, + { + "word": " your", + "start": 2705.38, + "end": 2705.5, + "probability": 1.0 + }, + { + "word": " girlfriend", + "start": 2705.5, + "end": 2705.72, + "probability": 1.0 + }, + { + "word": " out", + "start": 2705.72, + "end": 2705.9, + "probability": 0.927734375 + }, + { + "word": " on", + "start": 2705.9, + "end": 2706.04, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2706.04, + "end": 2706.14, + "probability": 1.0 + } + ] + }, + { + "id": 1100, + "text": "Well, she wanted certain channels that I didn't want to go through the hassle of setting up and making it work.", + "start": 2706.72, + "end": 2712.62, + "words": [ + { + "word": " Well,", + "start": 2706.72, + "end": 2707.08, + "probability": 0.994140625 + }, + { + "word": " she", + "start": 2707.16, + "end": 2707.32, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 2707.32, + "end": 2707.62, + "probability": 1.0 + }, + { + "word": " certain", + "start": 2707.62, + "end": 2708.26, + "probability": 0.95947265625 + }, + { + "word": " channels", + "start": 2708.26, + "end": 2708.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 2708.72, + "end": 2708.96, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2708.96, + "end": 2709.22, + "probability": 0.99951171875 + }, + { + "word": " didn't", + "start": 2709.22, + "end": 2709.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 2709.96, + "end": 2710.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 2710.24, + "end": 2710.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 2710.36, + "end": 2710.46, + "probability": 1.0 + }, + { + "word": " through", + "start": 2710.46, + "end": 2710.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 2710.64, + "end": 2710.76, + "probability": 0.99951171875 + }, + { + "word": " hassle", + "start": 2710.76, + "end": 2711.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 2711.0, + "end": 2711.28, + "probability": 1.0 + }, + { + "word": " setting", + "start": 2711.28, + "end": 2711.48, + "probability": 1.0 + }, + { + "word": " up", + "start": 2711.48, + "end": 2711.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 2711.78, + "end": 2712.02, + "probability": 0.99853515625 + }, + { + "word": " making", + "start": 2712.02, + "end": 2712.32, + "probability": 1.0 + }, + { + "word": " it", + "start": 2712.32, + "end": 2712.46, + "probability": 1.0 + }, + { + "word": " work.", + "start": 2712.46, + "end": 2712.62, + "probability": 1.0 + } + ] + }, + { + "id": 1101, + "text": "And also, she's just like, I just want to turn on the TV and have it be on.", + "start": 2712.76, + "end": 2715.12, + "words": [ + { + "word": " And", + "start": 2712.76, + "end": 2712.84, + "probability": 0.94873046875 + }, + { + "word": " also,", + "start": 2712.84, + "end": 2713.02, + "probability": 0.9921875 + }, + { + "word": " she's", + "start": 2713.08, + "end": 2713.24, + "probability": 0.85400390625 + }, + { + "word": " just", + "start": 2713.24, + "end": 2713.38, + "probability": 0.74560546875 + }, + { + "word": " like,", + "start": 2713.38, + "end": 2713.5, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2713.56, + "end": 2713.66, + "probability": 1.0 + }, + { + "word": " just", + "start": 2713.66, + "end": 2713.82, + "probability": 1.0 + }, + { + "word": " want", + "start": 2713.82, + "end": 2713.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2713.92, + "end": 2714.02, + "probability": 1.0 + }, + { + "word": " turn", + "start": 2714.02, + "end": 2714.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 2714.12, + "end": 2714.22, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2714.22, + "end": 2714.32, + "probability": 1.0 + }, + { + "word": " TV", + "start": 2714.32, + "end": 2714.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 2714.48, + "end": 2714.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 2714.64, + "end": 2714.78, + "probability": 1.0 + }, + { + "word": " it", + "start": 2714.78, + "end": 2714.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 2714.86, + "end": 2714.96, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2714.96, + "end": 2715.12, + "probability": 1.0 + } + ] + }, + { + "id": 1102, + "text": "I don't want to have to turn on 12 devices and sync everything up and cast things to things.", + "start": 2715.22, + "end": 2719.44, + "words": [ + { + "word": " I", + "start": 2715.22, + "end": 2715.34, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2715.34, + "end": 2715.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 2715.42, + "end": 2715.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 2715.46, + "end": 2715.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 2715.56, + "end": 2715.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2715.64, + "end": 2715.76, + "probability": 1.0 + }, + { + "word": " turn", + "start": 2715.76, + "end": 2715.96, + "probability": 0.85107421875 + }, + { + "word": " on", + "start": 2715.96, + "end": 2716.14, + "probability": 1.0 + }, + { + "word": " 12", + "start": 2716.14, + "end": 2716.32, + "probability": 0.99853515625 + }, + { + "word": " devices", + "start": 2716.32, + "end": 2716.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 2716.68, + "end": 2717.04, + "probability": 0.9990234375 + }, + { + "word": " sync", + "start": 2717.04, + "end": 2717.7, + "probability": 0.99755859375 + }, + { + "word": " everything", + "start": 2717.7, + "end": 2717.94, + "probability": 1.0 + }, + { + "word": " up", + "start": 2717.94, + "end": 2718.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 2718.18, + "end": 2718.34, + "probability": 1.0 + }, + { + "word": " cast", + "start": 2718.34, + "end": 2718.58, + "probability": 0.9990234375 + }, + { + "word": " things", + "start": 2718.58, + "end": 2718.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 2718.9, + "end": 2719.16, + "probability": 0.99951171875 + }, + { + "word": " things.", + "start": 2719.16, + "end": 2719.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1103, + "text": "Right.", + "start": 2719.98, + "end": 2720.34, + "words": [ + { + "word": " Right.", + "start": 2719.98, + "end": 2720.34, + "probability": 0.7490234375 + } + ] + }, + { + "id": 1104, + "text": "It's nowhere near that bad, but all right.", + "start": 2720.62, + "end": 2722.34, + "words": [ + { + "word": " It's", + "start": 2720.62, + "end": 2720.98, + "probability": 0.99072265625 + }, + { + "word": " nowhere", + "start": 2720.98, + "end": 2721.38, + "probability": 0.9462890625 + }, + { + "word": " near", + "start": 2721.38, + "end": 2721.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 2721.6, + "end": 2721.76, + "probability": 1.0 + }, + { + "word": " bad,", + "start": 2721.76, + "end": 2721.96, + "probability": 1.0 + }, + { + "word": " but", + "start": 2722.02, + "end": 2722.1, + "probability": 1.0 + }, + { + "word": " all", + "start": 2722.1, + "end": 2722.18, + "probability": 0.98095703125 + }, + { + "word": " right.", + "start": 2722.18, + "end": 2722.34, + "probability": 1.0 + } + ] + }, + { + "id": 1105, + "text": "So the Food Network.", + "start": 2724.7, + "end": 2725.8, + "words": [ + { + "word": " So", + "start": 2724.7, + "end": 2725.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2725.06, + "end": 2725.42, + "probability": 0.6787109375 + }, + { + "word": " Food", + "start": 2725.42, + "end": 2725.6, + "probability": 0.9501953125 + }, + { + "word": " Network.", + "start": 2725.6, + "end": 2725.8, + "probability": 1.0 + } + ] + }, + { + "id": 1106, + "text": "Well, she's a baker.", + "start": 2726.72, + "end": 2728.08, + "words": [ + { + "word": " Well,", + "start": 2726.72, + "end": 2727.08, + "probability": 0.94921875 + }, + { + "word": " she's", + "start": 2727.3, + "end": 2727.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 2727.52, + "end": 2727.82, + "probability": 1.0 + }, + { + "word": " baker.", + "start": 2727.82, + "end": 2728.08, + "probability": 1.0 + } + ] + }, + { + "id": 1107, + "text": "So she wanted the Food Network.", + "start": 2728.22, + "end": 2730.02, + "words": [ + { + "word": " So", + "start": 2728.22, + "end": 2728.5, + "probability": 0.93798828125 + }, + { + "word": " she", + "start": 2728.5, + "end": 2728.68, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 2728.68, + "end": 2728.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2728.92, + "end": 2729.62, + "probability": 0.99951171875 + }, + { + "word": " Food", + "start": 2729.62, + "end": 2729.8, + "probability": 1.0 + }, + { + "word": " Network.", + "start": 2729.8, + "end": 2730.02, + "probability": 1.0 + } + ] + }, + { + "id": 1108, + "text": "And also, I will say that it's kind of nice to just be able to turn something on and have something on there.", + "start": 2730.02, + "end": 2735.88, + "words": [ + { + "word": " And", + "start": 2730.02, + "end": 2730.34, + "probability": 0.074951171875 + }, + { + "word": " also,", + "start": 2730.34, + "end": 2731.24, + "probability": 0.91259765625 + }, + { + "word": " I", + "start": 2731.38, + "end": 2731.54, + "probability": 0.32421875 + }, + { + "word": " will", + "start": 2731.54, + "end": 2731.78, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 2731.78, + "end": 2732.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2732.0, + "end": 2732.08, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2732.08, + "end": 2732.2, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 2732.2, + "end": 2732.32, + "probability": 0.98095703125 + }, + { + "word": " of", + "start": 2732.32, + "end": 2732.42, + "probability": 1.0 + }, + { + "word": " nice", + "start": 2732.42, + "end": 2732.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 2732.56, + "end": 2732.68, + "probability": 0.99365234375 + }, + { + "word": " just", + "start": 2732.68, + "end": 2732.82, + "probability": 0.97802734375 + }, + { + "word": " be", + "start": 2732.82, + "end": 2732.94, + "probability": 1.0 + }, + { + "word": " able", + "start": 2732.94, + "end": 2733.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 2733.06, + "end": 2733.22, + "probability": 1.0 + }, + { + "word": " turn", + "start": 2733.22, + "end": 2733.46, + "probability": 1.0 + }, + { + "word": " something", + "start": 2733.46, + "end": 2733.7, + "probability": 1.0 + }, + { + "word": " on", + "start": 2733.7, + "end": 2733.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 2733.94, + "end": 2734.12, + "probability": 0.98876953125 + }, + { + "word": " have", + "start": 2734.12, + "end": 2734.64, + "probability": 1.0 + }, + { + "word": " something", + "start": 2734.64, + "end": 2734.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 2734.98, + "end": 2735.7, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2735.7, + "end": 2735.88, + "probability": 1.0 + } + ] + }, + { + "id": 1109, + "text": "But I don't know if that's worth $40 a month or whatever.", + "start": 2735.96, + "end": 2737.74, + "words": [ + { + "word": " But", + "start": 2735.96, + "end": 2736.04, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2736.04, + "end": 2736.14, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 2736.14, + "end": 2736.2, + "probability": 1.0 + }, + { + "word": " know", + "start": 2736.2, + "end": 2736.22, + "probability": 1.0 + }, + { + "word": " if", + "start": 2736.22, + "end": 2736.34, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2736.34, + "end": 2736.48, + "probability": 1.0 + }, + { + "word": " worth", + "start": 2736.48, + "end": 2736.62, + "probability": 0.9970703125 + }, + { + "word": " $40", + "start": 2736.62, + "end": 2737.08, + "probability": 0.8935546875 + }, + { + "word": " a", + "start": 2737.08, + "end": 2737.32, + "probability": 0.99951171875 + }, + { + "word": " month", + "start": 2737.32, + "end": 2737.44, + "probability": 1.0 + }, + { + "word": " or", + "start": 2737.44, + "end": 2737.58, + "probability": 0.99951171875 + }, + { + "word": " whatever.", + "start": 2737.58, + "end": 2737.74, + "probability": 1.0 + } + ] + }, + { + "id": 1110, + "text": "It's too boring for me.", + "start": 2737.94, + "end": 2738.94, + "words": [ + { + "word": " It's", + "start": 2737.94, + "end": 2738.16, + "probability": 0.9833984375 + }, + { + "word": " too", + "start": 2738.16, + "end": 2738.26, + "probability": 1.0 + }, + { + "word": " boring", + "start": 2738.26, + "end": 2738.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 2738.56, + "end": 2738.74, + "probability": 1.0 + }, + { + "word": " me.", + "start": 2738.74, + "end": 2738.94, + "probability": 1.0 + } + ] + }, + { + "id": 1111, + "text": "I like to use casting in the sense of I have to use like a magical spell to get what I want on the television.", + "start": 2739.32, + "end": 2746.76, + "words": [ + { + "word": " I", + "start": 2739.32, + "end": 2739.7, + "probability": 0.99365234375 + }, + { + "word": " like", + "start": 2739.7, + "end": 2740.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2740.76, + "end": 2740.96, + "probability": 1.0 + }, + { + "word": " use", + "start": 2740.96, + "end": 2741.14, + "probability": 0.9970703125 + }, + { + "word": " casting", + "start": 2741.14, + "end": 2742.62, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2742.62, + "end": 2742.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 2742.78, + "end": 2742.86, + "probability": 1.0 + }, + { + "word": " sense", + "start": 2742.86, + "end": 2743.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 2743.06, + "end": 2743.28, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2743.28, + "end": 2743.64, + "probability": 0.98486328125 + }, + { + "word": " have", + "start": 2743.64, + "end": 2743.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 2743.92, + "end": 2744.04, + "probability": 1.0 + }, + { + "word": " use", + "start": 2744.04, + "end": 2744.18, + "probability": 1.0 + }, + { + "word": " like", + "start": 2744.18, + "end": 2744.34, + "probability": 0.1080322265625 + }, + { + "word": " a", + "start": 2744.34, + "end": 2744.4, + "probability": 1.0 + }, + { + "word": " magical", + "start": 2744.4, + "end": 2744.7, + "probability": 1.0 + }, + { + "word": " spell", + "start": 2744.7, + "end": 2745.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2745.04, + "end": 2745.24, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 2745.24, + "end": 2745.38, + "probability": 0.98486328125 + }, + { + "word": " what", + "start": 2745.38, + "end": 2745.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 2745.72, + "end": 2745.9, + "probability": 1.0 + }, + { + "word": " want", + "start": 2745.9, + "end": 2746.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 2746.14, + "end": 2746.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2746.38, + "end": 2746.48, + "probability": 0.9990234375 + }, + { + "word": " television.", + "start": 2746.48, + "end": 2746.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1112, + "text": "I will also say that I forgot how terrible commercials are.", + "start": 2747.3, + "end": 2751.42, + "words": [ + { + "word": " I", + "start": 2747.3, + "end": 2747.68, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2747.68, + "end": 2747.84, + "probability": 1.0 + }, + { + "word": " also", + "start": 2747.84, + "end": 2748.08, + "probability": 1.0 + }, + { + "word": " say", + "start": 2748.08, + "end": 2748.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 2748.38, + "end": 2748.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 2748.58, + "end": 2749.54, + "probability": 1.0 + }, + { + "word": " forgot", + "start": 2749.54, + "end": 2750.06, + "probability": 1.0 + }, + { + "word": " how", + "start": 2750.06, + "end": 2750.38, + "probability": 1.0 + }, + { + "word": " terrible", + "start": 2750.38, + "end": 2750.72, + "probability": 1.0 + }, + { + "word": " commercials", + "start": 2750.72, + "end": 2751.04, + "probability": 0.99951171875 + }, + { + "word": " are.", + "start": 2751.04, + "end": 2751.42, + "probability": 1.0 + } + ] + }, + { + "id": 1113, + "text": "Yeah, I haven't seen a commercial in like three years.", + "start": 2751.88, + "end": 2754.3, + "words": [ + { + "word": " Yeah,", + "start": 2751.88, + "end": 2752.26, + "probability": 0.99072265625 + }, + { + "word": " I", + "start": 2752.32, + "end": 2752.58, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 2752.58, + "end": 2752.9, + "probability": 1.0 + }, + { + "word": " seen", + "start": 2752.9, + "end": 2753.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2753.08, + "end": 2753.18, + "probability": 1.0 + }, + { + "word": " commercial", + "start": 2753.18, + "end": 2753.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 2753.4, + "end": 2753.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 2753.64, + "end": 2753.78, + "probability": 0.9990234375 + }, + { + "word": " three", + "start": 2753.78, + "end": 2754.04, + "probability": 0.9951171875 + }, + { + "word": " years.", + "start": 2754.04, + "end": 2754.3, + "probability": 1.0 + } + ] + }, + { + "id": 1114, + "text": "Yeah, I was in the same boat.", + "start": 2754.38, + "end": 2755.34, + "words": [ + { + "word": " Yeah,", + "start": 2754.38, + "end": 2754.52, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2754.54, + "end": 2754.6, + "probability": 1.0 + }, + { + "word": " was", + "start": 2754.6, + "end": 2754.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 2754.72, + "end": 2754.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 2754.86, + "end": 2754.9, + "probability": 1.0 + }, + { + "word": " same", + "start": 2754.9, + "end": 2755.1, + "probability": 1.0 + }, + { + "word": " boat.", + "start": 2755.1, + "end": 2755.34, + "probability": 1.0 + } + ] + }, + { + "id": 1115, + "text": "Like I only saw commercials when I went to people's houses or something.", + "start": 2755.48, + "end": 2757.94, + "words": [ + { + "word": " Like", + "start": 2755.48, + "end": 2755.66, + "probability": 0.7822265625 + }, + { + "word": " I", + "start": 2755.66, + "end": 2755.76, + "probability": 0.85595703125 + }, + { + "word": " only", + "start": 2755.76, + "end": 2755.9, + "probability": 1.0 + }, + { + "word": " saw", + "start": 2755.9, + "end": 2756.04, + "probability": 1.0 + }, + { + "word": " commercials", + "start": 2756.04, + "end": 2756.4, + "probability": 1.0 + }, + { + "word": " when", + "start": 2756.4, + "end": 2756.62, + "probability": 1.0 + }, + { + "word": " I", + "start": 2756.62, + "end": 2756.7, + "probability": 1.0 + }, + { + "word": " went", + "start": 2756.7, + "end": 2756.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 2756.84, + "end": 2756.94, + "probability": 1.0 + }, + { + "word": " people's", + "start": 2756.94, + "end": 2757.22, + "probability": 0.9990234375 + }, + { + "word": " houses", + "start": 2757.22, + "end": 2757.44, + "probability": 1.0 + }, + { + "word": " or", + "start": 2757.44, + "end": 2757.66, + "probability": 1.0 + }, + { + "word": " something.", + "start": 2757.66, + "end": 2757.94, + "probability": 1.0 + } + ] + }, + { + "id": 1116, + "text": "You know?", + "start": 2758.0, + "end": 2758.4, + "words": [ + { + "word": " You", + "start": 2758.0, + "end": 2758.26, + "probability": 0.0081787109375 + }, + { + "word": " know?", + "start": 2758.26, + "end": 2758.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1117, + "text": "Yeah, I don't go to people's houses.", + "start": 2758.4, + "end": 2760.1, + "words": [ + { + "word": " Yeah,", + "start": 2758.4, + "end": 2758.98, + "probability": 0.94482421875 + }, + { + "word": " I", + "start": 2759.26, + "end": 2759.32, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2759.32, + "end": 2759.52, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 2759.52, + "end": 2759.56, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2759.56, + "end": 2759.64, + "probability": 0.99951171875 + }, + { + "word": " people's", + "start": 2759.64, + "end": 2759.9, + "probability": 0.9990234375 + }, + { + "word": " houses.", + "start": 2759.9, + "end": 2760.1, + "probability": 1.0 + } + ] + }, + { + "id": 1118, + "text": "There's so many commercials.", + "start": 2762.38, + "end": 2763.56, + "words": [ + { + "word": " There's", + "start": 2762.38, + "end": 2762.82, + "probability": 0.90087890625 + }, + { + "word": " so", + "start": 2762.82, + "end": 2762.98, + "probability": 1.0 + }, + { + "word": " many", + "start": 2762.98, + "end": 2763.14, + "probability": 1.0 + }, + { + "word": " commercials.", + "start": 2763.14, + "end": 2763.56, + "probability": 1.0 + } + ] + }, + { + "id": 1119, + "text": "It's like one minute of show and then there's an hour of commercials.", + "start": 2763.7, + "end": 2766.64, + "words": [ + { + "word": " It's", + "start": 2763.7, + "end": 2764.14, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2764.14, + "end": 2764.22, + "probability": 0.97119140625 + }, + { + "word": " one", + "start": 2764.22, + "end": 2764.42, + "probability": 1.0 + }, + { + "word": " minute", + "start": 2764.42, + "end": 2764.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 2764.72, + "end": 2764.86, + "probability": 1.0 + }, + { + "word": " show", + "start": 2764.86, + "end": 2765.04, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2765.04, + "end": 2765.24, + "probability": 0.587890625 + }, + { + "word": " then", + "start": 2765.24, + "end": 2765.36, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2765.36, + "end": 2765.62, + "probability": 1.0 + }, + { + "word": " an", + "start": 2765.62, + "end": 2765.92, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2765.92, + "end": 2766.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 2766.18, + "end": 2766.34, + "probability": 1.0 + }, + { + "word": " commercials.", + "start": 2766.34, + "end": 2766.64, + "probability": 1.0 + } + ] + }, + { + "id": 1120, + "text": "It's dawning on me that I am turning into Howard Hughes, right?", + "start": 2767.0, + "end": 2771.34, + "words": [ + { + "word": " It's", + "start": 2767.0, + "end": 2767.28, + "probability": 0.998046875 + }, + { + "word": " dawning", + "start": 2767.28, + "end": 2767.6, + "probability": 0.98583984375 + }, + { + "word": " on", + "start": 2767.6, + "end": 2767.74, + "probability": 1.0 + }, + { + "word": " me", + "start": 2767.74, + "end": 2767.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 2767.96, + "end": 2768.26, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2768.26, + "end": 2768.44, + "probability": 1.0 + }, + { + "word": " am", + "start": 2768.44, + "end": 2768.6, + "probability": 0.99853515625 + }, + { + "word": " turning", + "start": 2768.6, + "end": 2769.56, + "probability": 0.98681640625 + }, + { + "word": " into", + "start": 2769.56, + "end": 2769.94, + "probability": 1.0 + }, + { + "word": " Howard", + "start": 2769.94, + "end": 2770.18, + "probability": 1.0 + }, + { + "word": " Hughes,", + "start": 2770.18, + "end": 2770.44, + "probability": 1.0 + }, + { + "word": " right?", + "start": 2770.64, + "end": 2771.34, + "probability": 0.826171875 + } + ] + }, + { + "id": 1121, + "text": "Minus the money.", + "start": 2771.4, + "end": 2771.94, + "words": [ + { + "word": " Minus", + "start": 2771.4, + "end": 2771.7, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2771.7, + "end": 2771.76, + "probability": 1.0 + }, + { + "word": " money.", + "start": 2771.76, + "end": 2771.94, + "probability": 1.0 + } + ] + }, + { + "id": 1122, + "text": "And the pee jars, hopefully.", + "start": 2772.18, + "end": 2774.0, + "words": [ + { + "word": " And", + "start": 2772.18, + "end": 2772.48, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2772.48, + "end": 2772.7, + "probability": 1.0 + }, + { + "word": " pee", + "start": 2772.7, + "end": 2772.92, + "probability": 0.58935546875 + }, + { + "word": " jars,", + "start": 2772.92, + "end": 2773.6, + "probability": 0.99951171875 + }, + { + "word": " hopefully.", + "start": 2773.76, + "end": 2774.0, + "probability": 1.0 + } + ] + }, + { + "id": 1123, + "text": "Yeah, none of that either.", + "start": 2774.46, + "end": 2775.42, + "words": [ + { + "word": " Yeah,", + "start": 2774.46, + "end": 2774.9, + "probability": 0.99853515625 + }, + { + "word": " none", + "start": 2774.9, + "end": 2775.02, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 2775.02, + "end": 2775.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 2775.12, + "end": 2775.22, + "probability": 1.0 + }, + { + "word": " either.", + "start": 2775.22, + "end": 2775.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1124, + "text": "But it's just like I don't go to people's houses.", + "start": 2776.18, + "end": 2779.04, + "words": [ + { + "word": " But", + "start": 2776.18, + "end": 2776.62, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 2776.62, + "end": 2777.02, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2777.02, + "end": 2777.16, + "probability": 1.0 + }, + { + "word": " like", + "start": 2777.16, + "end": 2777.42, + "probability": 0.990234375 + }, + { + "word": " I", + "start": 2777.42, + "end": 2777.76, + "probability": 0.81005859375 + }, + { + "word": " don't", + "start": 2777.76, + "end": 2778.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 2778.32, + "end": 2778.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2778.4, + "end": 2778.48, + "probability": 1.0 + }, + { + "word": " people's", + "start": 2778.48, + "end": 2778.76, + "probability": 1.0 + }, + { + "word": " houses.", + "start": 2778.76, + "end": 2779.04, + "probability": 1.0 + } + ] + }, + { + "id": 1125, + "text": "I am mildly germaphobic.", + "start": 2779.22, + "end": 2781.48, + "words": [ + { + "word": " I", + "start": 2779.22, + "end": 2779.54, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 2779.54, + "end": 2779.8, + "probability": 1.0 + }, + { + "word": " mildly", + "start": 2779.8, + "end": 2780.96, + "probability": 1.0 + }, + { + "word": " germaphobic.", + "start": 2780.96, + "end": 2781.48, + "probability": 0.94677734375 + } + ] + }, + { + "id": 1126, + "text": "Are you going to be scrubbing your hands until they bleed?", + "start": 2782.4, + "end": 2784.44, + "words": [ + { + "word": " Are", + "start": 2782.4, + "end": 2782.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2782.84, + "end": 2782.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 2782.94, + "end": 2783.0, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 2783.0, + "end": 2783.06, + "probability": 1.0 + }, + { + "word": " be", + "start": 2783.06, + "end": 2783.1, + "probability": 1.0 + }, + { + "word": " scrubbing", + "start": 2783.1, + "end": 2783.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 2783.44, + "end": 2783.52, + "probability": 1.0 + }, + { + "word": " hands", + "start": 2783.52, + "end": 2783.74, + "probability": 1.0 + }, + { + "word": " until", + "start": 2783.74, + "end": 2783.94, + "probability": 1.0 + }, + { + "word": " they", + "start": 2783.94, + "end": 2784.1, + "probability": 1.0 + }, + { + "word": " bleed?", + "start": 2784.1, + "end": 2784.44, + "probability": 1.0 + } + ] + }, + { + "id": 1127, + "text": "No, I don't think I'll go that route.", + "start": 2784.78, + "end": 2786.58, + "words": [ + { + "word": " No,", + "start": 2784.78, + "end": 2785.22, + "probability": 0.697265625 + }, + { + "word": " I", + "start": 2785.24, + "end": 2785.36, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2785.36, + "end": 2785.58, + "probability": 1.0 + }, + { + "word": " think", + "start": 2785.58, + "end": 2785.7, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 2785.7, + "end": 2785.86, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 2785.86, + "end": 2785.98, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2785.98, + "end": 2786.44, + "probability": 1.0 + }, + { + "word": " route.", + "start": 2786.44, + "end": 2786.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1128, + "text": "Not that bad.", + "start": 2786.8, + "end": 2786.82, + "words": [ + { + "word": " Not", + "start": 2786.8, + "end": 2786.82, + "probability": 0.00020444393157958984 + }, + { + "word": " that", + "start": 2786.82, + "end": 2786.82, + "probability": 0.9921875 + }, + { + "word": " bad.", + "start": 2786.82, + "end": 2786.82, + "probability": 0.994140625 + } + ] + }, + { + "id": 1129, + "text": "Well, I don't think you had hand sanitizer either.", + "start": 2786.82, + "end": 2788.32, + "words": [ + { + "word": " Well,", + "start": 2786.82, + "end": 2786.84, + "probability": 0.97998046875 + }, + { + "word": " I", + "start": 2786.9, + "end": 2786.96, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2786.96, + "end": 2787.04, + "probability": 1.0 + }, + { + "word": " think", + "start": 2787.04, + "end": 2787.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 2787.16, + "end": 2787.24, + "probability": 0.6923828125 + }, + { + "word": " had", + "start": 2787.24, + "end": 2787.38, + "probability": 0.98876953125 + }, + { + "word": " hand", + "start": 2787.38, + "end": 2787.6, + "probability": 1.0 + }, + { + "word": " sanitizer", + "start": 2787.6, + "end": 2787.96, + "probability": 1.0 + }, + { + "word": " either.", + "start": 2787.96, + "end": 2788.32, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1130, + "text": "", + "start": 2788.38, + "end": 2788.38, + "words": [] + }, + { + "id": 1131, + "text": "Yeah, that's not good for you anyway.", + "start": 2788.86, + "end": 2790.4, + "words": [ + { + "word": " Yeah,", + "start": 2788.86, + "end": 2789.34, + "probability": 0.30078125 + }, + { + "word": " that's", + "start": 2789.44, + "end": 2789.66, + "probability": 0.52197265625 + }, + { + "word": " not", + "start": 2789.66, + "end": 2789.72, + "probability": 1.0 + }, + { + "word": " good", + "start": 2789.72, + "end": 2789.86, + "probability": 0.9931640625 + }, + { + "word": " for", + "start": 2789.86, + "end": 2790.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 2790.06, + "end": 2790.18, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 2790.18, + "end": 2790.4, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1132, + "text": "But anyway, there's a new option on the playing field here as far as the ability to do some cord cutting.", + "start": 2790.72, + "end": 2797.44, + "words": [ + { + "word": " But", + "start": 2790.72, + "end": 2791.2, + "probability": 0.98681640625 + }, + { + "word": " anyway,", + "start": 2791.2, + "end": 2791.34, + "probability": 0.9794921875 + }, + { + "word": " there's", + "start": 2791.58, + "end": 2792.24, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2792.24, + "end": 2792.38, + "probability": 1.0 + }, + { + "word": " new", + "start": 2792.38, + "end": 2792.46, + "probability": 1.0 + }, + { + "word": " option", + "start": 2792.46, + "end": 2792.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 2792.78, + "end": 2793.36, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2793.36, + "end": 2793.94, + "probability": 1.0 + }, + { + "word": " playing", + "start": 2793.94, + "end": 2794.22, + "probability": 0.99951171875 + }, + { + "word": " field", + "start": 2794.22, + "end": 2794.5, + "probability": 1.0 + }, + { + "word": " here", + "start": 2794.5, + "end": 2794.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 2794.82, + "end": 2795.14, + "probability": 0.84912109375 + }, + { + "word": " far", + "start": 2795.14, + "end": 2795.4, + "probability": 1.0 + }, + { + "word": " as", + "start": 2795.4, + "end": 2795.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 2795.7, + "end": 2796.0, + "probability": 1.0 + }, + { + "word": " ability", + "start": 2796.0, + "end": 2796.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 2796.32, + "end": 2796.62, + "probability": 1.0 + }, + { + "word": " do", + "start": 2796.62, + "end": 2796.76, + "probability": 1.0 + }, + { + "word": " some", + "start": 2796.76, + "end": 2796.92, + "probability": 1.0 + }, + { + "word": " cord", + "start": 2796.92, + "end": 2797.16, + "probability": 0.939453125 + }, + { + "word": " cutting.", + "start": 2797.16, + "end": 2797.44, + "probability": 0.97607421875 + } + ] + }, + { + "id": 1133, + "text": "And that would be, believe it or not, YouTube.", + "start": 2797.54, + "end": 2799.54, + "words": [ + { + "word": " And", + "start": 2797.54, + "end": 2797.64, + "probability": 0.99267578125 + }, + { + "word": " that", + "start": 2797.64, + "end": 2797.74, + "probability": 1.0 + }, + { + "word": " would", + "start": 2797.74, + "end": 2797.86, + "probability": 1.0 + }, + { + "word": " be,", + "start": 2797.86, + "end": 2798.1, + "probability": 1.0 + }, + { + "word": " believe", + "start": 2798.2, + "end": 2798.76, + "probability": 1.0 + }, + { + "word": " it", + "start": 2798.76, + "end": 2798.88, + "probability": 1.0 + }, + { + "word": " or", + "start": 2798.88, + "end": 2798.96, + "probability": 1.0 + }, + { + "word": " not,", + "start": 2798.96, + "end": 2799.12, + "probability": 1.0 + }, + { + "word": " YouTube.", + "start": 2799.24, + "end": 2799.54, + "probability": 1.0 + } + ] + }, + { + "id": 1134, + "text": "YouTube is offering a new service called YouTube TV.", + "start": 2799.98, + "end": 2802.34, + "words": [ + { + "word": " YouTube", + "start": 2799.98, + "end": 2800.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 2800.46, + "end": 2800.68, + "probability": 1.0 + }, + { + "word": " offering", + "start": 2800.68, + "end": 2800.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 2800.96, + "end": 2801.24, + "probability": 1.0 + }, + { + "word": " new", + "start": 2801.24, + "end": 2801.34, + "probability": 1.0 + }, + { + "word": " service", + "start": 2801.34, + "end": 2801.6, + "probability": 1.0 + }, + { + "word": " called", + "start": 2801.6, + "end": 2801.78, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 2801.78, + "end": 2802.06, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 2802.06, + "end": 2802.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1135, + "text": "They will have 40 networks to launch with and they're adding local providers.", + "start": 2802.76, + "end": 2808.0, + "words": [ + { + "word": " They", + "start": 2802.76, + "end": 2803.14, + "probability": 1.0 + }, + { + "word": " will", + "start": 2803.14, + "end": 2803.34, + "probability": 0.9638671875 + }, + { + "word": " have", + "start": 2803.34, + "end": 2803.6, + "probability": 1.0 + }, + { + "word": " 40", + "start": 2803.6, + "end": 2804.14, + "probability": 1.0 + }, + { + "word": " networks", + "start": 2804.14, + "end": 2804.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 2804.5, + "end": 2804.82, + "probability": 1.0 + }, + { + "word": " launch", + "start": 2804.82, + "end": 2805.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 2805.38, + "end": 2805.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 2805.66, + "end": 2806.06, + "probability": 0.346435546875 + }, + { + "word": " they're", + "start": 2806.06, + "end": 2806.4, + "probability": 1.0 + }, + { + "word": " adding", + "start": 2806.4, + "end": 2806.8, + "probability": 1.0 + }, + { + "word": " local", + "start": 2806.8, + "end": 2807.28, + "probability": 1.0 + }, + { + "word": " providers.", + "start": 2807.28, + "end": 2808.0, + "probability": 1.0 + } + ] + }, + { + "id": 1136, + "text": "I think the name is kind of silly though because like the whole point was that it was like, you know, a tube is like slang for TV.", + "start": 2808.46, + "end": 2813.92, + "words": [ + { + "word": " I", + "start": 2808.46, + "end": 2808.64, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 2808.64, + "end": 2808.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2808.8, + "end": 2808.9, + "probability": 1.0 + }, + { + "word": " name", + "start": 2808.9, + "end": 2809.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 2809.16, + "end": 2809.3, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2809.3, + "end": 2809.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 2809.44, + "end": 2809.54, + "probability": 1.0 + }, + { + "word": " silly", + "start": 2809.54, + "end": 2809.72, + "probability": 1.0 + }, + { + "word": " though", + "start": 2809.72, + "end": 2809.96, + "probability": 0.4765625 + }, + { + "word": " because", + "start": 2809.96, + "end": 2810.16, + "probability": 0.8935546875 + }, + { + "word": " like", + "start": 2810.16, + "end": 2810.34, + "probability": 0.1488037109375 + }, + { + "word": " the", + "start": 2810.34, + "end": 2810.54, + "probability": 0.99658203125 + }, + { + "word": " whole", + "start": 2810.54, + "end": 2810.7, + "probability": 1.0 + }, + { + "word": " point", + "start": 2810.7, + "end": 2811.0, + "probability": 1.0 + }, + { + "word": " was", + "start": 2811.0, + "end": 2811.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 2811.44, + "end": 2811.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 2811.6, + "end": 2811.68, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 2811.68, + "end": 2811.78, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2811.78, + "end": 2812.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 2812.02, + "end": 2812.12, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 2812.12, + "end": 2812.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2812.48, + "end": 2812.6, + "probability": 0.9853515625 + }, + { + "word": " tube", + "start": 2812.6, + "end": 2812.8, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 2812.8, + "end": 2813.02, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2813.02, + "end": 2813.14, + "probability": 1.0 + }, + { + "word": " slang", + "start": 2813.14, + "end": 2813.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 2813.4, + "end": 2813.62, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 2813.62, + "end": 2813.92, + "probability": 1.0 + } + ] + }, + { + "id": 1137, + "text": "Yeah, a little redundant.", + "start": 2814.24, + "end": 2815.6, + "words": [ + { + "word": " Yeah,", + "start": 2814.24, + "end": 2814.72, + "probability": 0.69482421875 + }, + { + "word": " a", + "start": 2815.08, + "end": 2815.14, + "probability": 1.0 + }, + { + "word": " little", + "start": 2815.14, + "end": 2815.26, + "probability": 1.0 + }, + { + "word": " redundant.", + "start": 2815.26, + "end": 2815.6, + "probability": 1.0 + } + ] + }, + { + "id": 1138, + "text": "Yeah.", + "start": 2815.8, + "end": 2815.92, + "words": [ + { + "word": " Yeah.", + "start": 2815.8, + "end": 2815.92, + "probability": 0.63232421875 + } + ] + }, + { + "id": 1139, + "text": "But for $35,000.", + "start": 2816.14, + "end": 2818.38, + "words": [ + { + "word": " But", + "start": 2816.14, + "end": 2816.62, + "probability": 0.98583984375 + }, + { + "word": " for", + "start": 2816.62, + "end": 2817.9, + "probability": 0.5791015625 + }, + { + "word": " $35", + "start": 2817.9, + "end": 2818.32, + "probability": 0.955078125 + }, + { + "word": ",000.", + "start": 2818.32, + "end": 2818.38, + "probability": 0.6669921875 + } + ] + }, + { + "id": 1140, + "text": "", + "start": 2818.38, + "end": 2818.38, + "words": [] + }, + { + "id": 1141, + "text": "For $35,000 a month, you can basically have on demand.", + "start": 2818.4, + "end": 2821.9, + "words": [ + { + "word": " For", + "start": 2818.4, + "end": 2818.54, + "probability": 7.909536361694336e-05 + }, + { + "word": " $35", + "start": 2818.54, + "end": 2818.62, + "probability": 0.46728515625 + }, + { + "word": ",000", + "start": 2818.62, + "end": 2818.62, + "probability": 0.06658935546875 + }, + { + "word": " a", + "start": 2818.62, + "end": 2818.64, + "probability": 0.91552734375 + }, + { + "word": " month,", + "start": 2818.64, + "end": 2818.8, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2818.96, + "end": 2819.52, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 2819.52, + "end": 2819.96, + "probability": 0.998046875 + }, + { + "word": " basically", + "start": 2819.96, + "end": 2821.0, + "probability": 0.98828125 + }, + { + "word": " have", + "start": 2821.0, + "end": 2821.22, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 2821.22, + "end": 2821.46, + "probability": 0.9580078125 + }, + { + "word": " demand.", + "start": 2821.46, + "end": 2821.9, + "probability": 0.225341796875 + } + ] + }, + { + "id": 1142, + "text": "So, I mean, Sling exists, which is basically the same service except it's not as good in any way.", + "start": 2822.32, + "end": 2827.46, + "words": [ + { + "word": " So,", + "start": 2822.32, + "end": 2822.54, + "probability": 0.7333984375 + }, + { + "word": " I", + "start": 2822.56, + "end": 2822.9, + "probability": 0.916015625 + }, + { + "word": " mean,", + "start": 2822.9, + "end": 2823.16, + "probability": 1.0 + }, + { + "word": " Sling", + "start": 2823.18, + "end": 2823.44, + "probability": 0.998046875 + }, + { + "word": " exists,", + "start": 2823.44, + "end": 2823.68, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 2823.92, + "end": 2824.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 2824.2, + "end": 2824.34, + "probability": 1.0 + }, + { + "word": " basically", + "start": 2824.34, + "end": 2824.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 2824.66, + "end": 2824.86, + "probability": 1.0 + }, + { + "word": " same", + "start": 2824.86, + "end": 2825.04, + "probability": 1.0 + }, + { + "word": " service", + "start": 2825.04, + "end": 2825.4, + "probability": 1.0 + }, + { + "word": " except", + "start": 2825.4, + "end": 2825.78, + "probability": 0.0221710205078125 + }, + { + "word": " it's", + "start": 2825.78, + "end": 2826.12, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2826.12, + "end": 2826.26, + "probability": 1.0 + }, + { + "word": " as", + "start": 2826.26, + "end": 2826.4, + "probability": 1.0 + }, + { + "word": " good", + "start": 2826.4, + "end": 2826.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 2826.58, + "end": 2826.98, + "probability": 0.99462890625 + }, + { + "word": " any", + "start": 2826.98, + "end": 2827.24, + "probability": 0.9990234375 + }, + { + "word": " way.", + "start": 2827.24, + "end": 2827.46, + "probability": 1.0 + } + ] + }, + { + "id": 1143, + "text": "Right.", + "start": 2827.64, + "end": 2828.04, + "words": [ + { + "word": " Right.", + "start": 2827.64, + "end": 2828.04, + "probability": 0.5498046875 + } + ] + }, + { + "id": 1144, + "text": "They do provide local channels but I think you have to pay extra for them.", + "start": 2828.12, + "end": 2830.66, + "words": [ + { + "word": " They", + "start": 2828.12, + "end": 2828.24, + "probability": 0.99658203125 + }, + { + "word": " do", + "start": 2828.24, + "end": 2828.28, + "probability": 1.0 + }, + { + "word": " provide", + "start": 2828.28, + "end": 2828.58, + "probability": 1.0 + }, + { + "word": " local", + "start": 2828.58, + "end": 2828.88, + "probability": 1.0 + }, + { + "word": " channels", + "start": 2828.88, + "end": 2829.34, + "probability": 1.0 + }, + { + "word": " but", + "start": 2829.34, + "end": 2829.54, + "probability": 0.1622314453125 + }, + { + "word": " I", + "start": 2829.54, + "end": 2829.64, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 2829.64, + "end": 2829.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 2829.74, + "end": 2829.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 2829.82, + "end": 2829.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2829.92, + "end": 2829.96, + "probability": 1.0 + }, + { + "word": " pay", + "start": 2829.96, + "end": 2830.08, + "probability": 1.0 + }, + { + "word": " extra", + "start": 2830.08, + "end": 2830.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 2830.3, + "end": 2830.5, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2830.5, + "end": 2830.66, + "probability": 1.0 + } + ] + }, + { + "id": 1145, + "text": "You do have to pay extra for them and they have fewer amounts of devices that you can stream to simultaneously.", + "start": 2830.78, + "end": 2837.56, + "words": [ + { + "word": " You", + "start": 2830.78, + "end": 2830.9, + "probability": 0.99658203125 + }, + { + "word": " do", + "start": 2830.9, + "end": 2831.04, + "probability": 0.9951171875 + }, + { + "word": " have", + "start": 2831.04, + "end": 2831.16, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2831.16, + "end": 2831.24, + "probability": 1.0 + }, + { + "word": " pay", + "start": 2831.24, + "end": 2831.36, + "probability": 1.0 + }, + { + "word": " extra", + "start": 2831.36, + "end": 2831.54, + "probability": 1.0 + }, + { + "word": " for", + "start": 2831.54, + "end": 2831.76, + "probability": 1.0 + }, + { + "word": " them", + "start": 2831.76, + "end": 2831.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 2831.9, + "end": 2832.2, + "probability": 0.85498046875 + }, + { + "word": " they", + "start": 2832.2, + "end": 2833.74, + "probability": 0.97412109375 + }, + { + "word": " have", + "start": 2833.74, + "end": 2834.84, + "probability": 0.99951171875 + }, + { + "word": " fewer", + "start": 2834.84, + "end": 2835.28, + "probability": 1.0 + }, + { + "word": " amounts", + "start": 2835.28, + "end": 2835.68, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2835.68, + "end": 2835.98, + "probability": 1.0 + }, + { + "word": " devices", + "start": 2835.98, + "end": 2836.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 2836.32, + "end": 2836.56, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2836.56, + "end": 2836.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 2836.68, + "end": 2836.82, + "probability": 1.0 + }, + { + "word": " stream", + "start": 2836.82, + "end": 2837.1, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2837.1, + "end": 2837.22, + "probability": 1.0 + }, + { + "word": " simultaneously.", + "start": 2837.22, + "end": 2837.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1146, + "text": "And it's just bad.", + "start": 2838.3, + "end": 2839.16, + "words": [ + { + "word": " And", + "start": 2838.3, + "end": 2838.7, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 2838.7, + "end": 2838.84, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 2838.84, + "end": 2838.96, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 2838.96, + "end": 2839.16, + "probability": 1.0 + } + ] + }, + { + "id": 1147, + "text": "I've tested it out before getting cable.", + "start": 2839.3, + "end": 2841.98, + "words": [ + { + "word": " I've", + "start": 2839.3, + "end": 2839.44, + "probability": 0.9951171875 + }, + { + "word": " tested", + "start": 2839.44, + "end": 2839.92, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2839.92, + "end": 2840.08, + "probability": 1.0 + }, + { + "word": " out", + "start": 2840.08, + "end": 2840.22, + "probability": 1.0 + }, + { + "word": " before", + "start": 2840.22, + "end": 2840.42, + "probability": 0.533203125 + }, + { + "word": " getting", + "start": 2840.42, + "end": 2841.56, + "probability": 0.7470703125 + }, + { + "word": " cable.", + "start": 2841.56, + "end": 2841.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 1148, + "text": "I was like maybe this will be the way to go.", + "start": 2842.12, + "end": 2843.62, + "words": [ + { + "word": " I", + "start": 2842.12, + "end": 2842.44, + "probability": 0.88134765625 + }, + { + "word": " was", + "start": 2842.44, + "end": 2842.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 2842.54, + "end": 2842.62, + "probability": 0.9990234375 + }, + { + "word": " maybe", + "start": 2842.62, + "end": 2842.82, + "probability": 0.1943359375 + }, + { + "word": " this", + "start": 2842.82, + "end": 2843.04, + "probability": 1.0 + }, + { + "word": " will", + "start": 2843.04, + "end": 2843.12, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 2843.12, + "end": 2843.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2843.24, + "end": 2843.32, + "probability": 1.0 + }, + { + "word": " way", + "start": 2843.32, + "end": 2843.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 2843.38, + "end": 2843.48, + "probability": 1.0 + }, + { + "word": " go.", + "start": 2843.48, + "end": 2843.62, + "probability": 1.0 + } + ] + }, + { + "id": 1149, + "text": "Nope.", + "start": 2843.84, + "end": 2844.02, + "words": [ + { + "word": " Nope.", + "start": 2843.84, + "end": 2844.02, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1150, + "text": "Nope.", + "start": 2844.08, + "end": 2844.4, + "words": [ + { + "word": " Nope.", + "start": 2844.08, + "end": 2844.4, + "probability": 0.81396484375 + } + ] + }, + { + "id": 1151, + "text": "Yeah, but YouTube, they do a pretty decent job of getting your\u2026", + "start": 2844.46, + "end": 2848.34, + "words": [ + { + "word": " Yeah,", + "start": 2844.46, + "end": 2844.86, + "probability": 0.98583984375 + }, + { + "word": " but", + "start": 2844.88, + "end": 2844.94, + "probability": 0.99951171875 + }, + { + "word": " YouTube,", + "start": 2844.94, + "end": 2845.22, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2845.36, + "end": 2846.02, + "probability": 1.0 + }, + { + "word": " do", + "start": 2846.02, + "end": 2846.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 2846.2, + "end": 2846.32, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 2846.32, + "end": 2846.52, + "probability": 1.0 + }, + { + "word": " decent", + "start": 2846.52, + "end": 2846.88, + "probability": 1.0 + }, + { + "word": " job", + "start": 2846.88, + "end": 2847.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 2847.24, + "end": 2847.48, + "probability": 0.9990234375 + }, + { + "word": " getting", + "start": 2847.48, + "end": 2847.68, + "probability": 0.9990234375 + }, + { + "word": " your\u2026", + "start": 2847.68, + "end": 2848.34, + "probability": 0.4814453125 + } + ] + }, + { + "id": 1152, + "text": "Yeah.", + "start": 2848.34, + "end": 2848.38, + "words": [ + { + "word": " Yeah.", + "start": 2848.34, + "end": 2848.38, + "probability": 0.161865234375 + } + ] + }, + { + "id": 1153, + "text": "\u2026their content to you and they have, you know, they have the infrastructure to be able to pull this off whereas I think Sling just doesn't.", + "start": 2848.38, + "end": 2854.94, + "words": [ + { + "word": " \u2026their", + "start": 2848.38, + "end": 2848.62, + "probability": 0.319580078125 + }, + { + "word": " content", + "start": 2848.62, + "end": 2848.62, + "probability": 0.98095703125 + }, + { + "word": " to", + "start": 2848.62, + "end": 2848.96, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2848.96, + "end": 2849.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 2849.18, + "end": 2849.94, + "probability": 0.0261077880859375 + }, + { + "word": " they", + "start": 2849.94, + "end": 2850.18, + "probability": 0.99462890625 + }, + { + "word": " have,", + "start": 2850.18, + "end": 2850.42, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2850.44, + "end": 2850.76, + "probability": 0.986328125 + }, + { + "word": " know,", + "start": 2850.76, + "end": 2850.88, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2850.88, + "end": 2850.96, + "probability": 0.99560546875 + }, + { + "word": " have", + "start": 2850.96, + "end": 2851.08, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2851.08, + "end": 2851.18, + "probability": 0.99951171875 + }, + { + "word": " infrastructure", + "start": 2851.18, + "end": 2851.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2851.52, + "end": 2851.82, + "probability": 0.9970703125 + }, + { + "word": " be", + "start": 2851.82, + "end": 2851.9, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 2851.9, + "end": 2852.02, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2852.02, + "end": 2852.14, + "probability": 0.99853515625 + }, + { + "word": " pull", + "start": 2852.14, + "end": 2852.34, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2852.34, + "end": 2852.5, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 2852.5, + "end": 2852.8, + "probability": 1.0 + }, + { + "word": " whereas", + "start": 2852.8, + "end": 2853.5, + "probability": 0.310791015625 + }, + { + "word": " I", + "start": 2853.5, + "end": 2853.78, + "probability": 0.998046875 + }, + { + "word": " think", + "start": 2853.78, + "end": 2853.98, + "probability": 1.0 + }, + { + "word": " Sling", + "start": 2853.98, + "end": 2854.28, + "probability": 0.9921875 + }, + { + "word": " just", + "start": 2854.28, + "end": 2854.48, + "probability": 0.99853515625 + }, + { + "word": " doesn't.", + "start": 2854.48, + "end": 2854.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1154, + "text": "We could do an entire episode about how YouTube delivers a video to you.", + "start": 2855.0, + "end": 2858.3, + "words": [ + { + "word": " We", + "start": 2855.0, + "end": 2855.1, + "probability": 0.9931640625 + }, + { + "word": " could", + "start": 2855.1, + "end": 2855.2, + "probability": 1.0 + }, + { + "word": " do", + "start": 2855.2, + "end": 2855.36, + "probability": 1.0 + }, + { + "word": " an", + "start": 2855.36, + "end": 2855.48, + "probability": 1.0 + }, + { + "word": " entire", + "start": 2855.48, + "end": 2855.7, + "probability": 0.99951171875 + }, + { + "word": " episode", + "start": 2855.7, + "end": 2856.14, + "probability": 1.0 + }, + { + "word": " about", + "start": 2856.14, + "end": 2856.38, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 2856.38, + "end": 2856.62, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 2856.62, + "end": 2857.0, + "probability": 0.99951171875 + }, + { + "word": " delivers", + "start": 2857.0, + "end": 2857.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 2857.48, + "end": 2857.74, + "probability": 1.0 + }, + { + "word": " video", + "start": 2857.74, + "end": 2858.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 2858.0, + "end": 2858.14, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2858.14, + "end": 2858.3, + "probability": 1.0 + } + ] + }, + { + "id": 1155, + "text": "It's actually fascinating.", + "start": 2858.34, + "end": 2859.18, + "words": [ + { + "word": " It's", + "start": 2858.34, + "end": 2858.44, + "probability": 0.9990234375 + }, + { + "word": " actually", + "start": 2858.44, + "end": 2858.74, + "probability": 1.0 + }, + { + "word": " fascinating.", + "start": 2858.74, + "end": 2859.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1156, + "text": "There's a lot going on, a lot more than you think there is as far as hitting play on a video.", + "start": 2859.56, + "end": 2865.08, + "words": [ + { + "word": " There's", + "start": 2859.56, + "end": 2860.02, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 2860.02, + "end": 2860.12, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2860.12, + "end": 2860.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 2860.48, + "end": 2860.78, + "probability": 1.0 + }, + { + "word": " on,", + "start": 2860.78, + "end": 2861.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 2861.24, + "end": 2861.34, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2861.34, + "end": 2861.42, + "probability": 1.0 + }, + { + "word": " more", + "start": 2861.42, + "end": 2861.54, + "probability": 1.0 + }, + { + "word": " than", + "start": 2861.54, + "end": 2861.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 2861.66, + "end": 2861.8, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 2861.8, + "end": 2862.06, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 2862.06, + "end": 2862.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 2862.26, + "end": 2862.58, + "probability": 1.0 + }, + { + "word": " as", + "start": 2862.58, + "end": 2863.08, + "probability": 0.98974609375 + }, + { + "word": " far", + "start": 2863.08, + "end": 2863.22, + "probability": 1.0 + }, + { + "word": " as", + "start": 2863.22, + "end": 2863.52, + "probability": 1.0 + }, + { + "word": " hitting", + "start": 2863.52, + "end": 2864.24, + "probability": 1.0 + }, + { + "word": " play", + "start": 2864.24, + "end": 2864.54, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2864.54, + "end": 2864.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 2864.74, + "end": 2864.8, + "probability": 0.9990234375 + }, + { + "word": " video.", + "start": 2864.8, + "end": 2865.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1157, + "text": "Like the science behind how the counter goes up for views is crazy.", + "start": 2865.22, + "end": 2869.12, + "words": [ + { + "word": " Like", + "start": 2865.22, + "end": 2865.34, + "probability": 0.9853515625 + }, + { + "word": " the", + "start": 2865.34, + "end": 2865.42, + "probability": 0.5126953125 + }, + { + "word": " science", + "start": 2865.42, + "end": 2865.92, + "probability": 0.99951171875 + }, + { + "word": " behind", + "start": 2865.92, + "end": 2866.32, + "probability": 1.0 + }, + { + "word": " how", + "start": 2866.32, + "end": 2866.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 2866.68, + "end": 2866.88, + "probability": 1.0 + }, + { + "word": " counter", + "start": 2866.88, + "end": 2867.24, + "probability": 1.0 + }, + { + "word": " goes", + "start": 2867.24, + "end": 2867.48, + "probability": 1.0 + }, + { + "word": " up", + "start": 2867.48, + "end": 2867.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 2867.78, + "end": 2867.98, + "probability": 1.0 + }, + { + "word": " views", + "start": 2867.98, + "end": 2868.26, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2868.26, + "end": 2868.64, + "probability": 1.0 + }, + { + "word": " crazy.", + "start": 2868.64, + "end": 2869.12, + "probability": 1.0 + } + ] + }, + { + "id": 1158, + "text": "Yeah, which is why it doesn't work.", + "start": 2869.56, + "end": 2870.66, + "words": [ + { + "word": " Yeah,", + "start": 2869.56, + "end": 2869.8, + "probability": 0.99853515625 + }, + { + "word": " which", + "start": 2869.8, + "end": 2869.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 2869.92, + "end": 2870.06, + "probability": 1.0 + }, + { + "word": " why", + "start": 2870.06, + "end": 2870.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 2870.18, + "end": 2870.3, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 2870.3, + "end": 2870.44, + "probability": 1.0 + }, + { + "word": " work.", + "start": 2870.44, + "end": 2870.66, + "probability": 1.0 + } + ] + }, + { + "id": 1159, + "text": "It merely gives the appearance of not working while it computes how to work in the background apparently.", + "start": 2872.04, + "end": 2876.38, + "words": [ + { + "word": " It", + "start": 2872.04, + "end": 2872.5, + "probability": 0.8427734375 + }, + { + "word": " merely", + "start": 2872.5, + "end": 2872.96, + "probability": 0.96728515625 + }, + { + "word": " gives", + "start": 2872.96, + "end": 2873.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 2873.28, + "end": 2873.44, + "probability": 1.0 + }, + { + "word": " appearance", + "start": 2873.44, + "end": 2873.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 2873.76, + "end": 2873.98, + "probability": 1.0 + }, + { + "word": " not", + "start": 2873.98, + "end": 2874.1, + "probability": 1.0 + }, + { + "word": " working", + "start": 2874.1, + "end": 2874.42, + "probability": 1.0 + }, + { + "word": " while", + "start": 2874.42, + "end": 2874.72, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 2874.72, + "end": 2874.92, + "probability": 1.0 + }, + { + "word": " computes", + "start": 2874.92, + "end": 2875.38, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 2875.38, + "end": 2875.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2875.52, + "end": 2875.66, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 2875.66, + "end": 2875.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 2875.82, + "end": 2875.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2875.96, + "end": 2876.04, + "probability": 1.0 + }, + { + "word": " background", + "start": 2876.04, + "end": 2876.36, + "probability": 1.0 + }, + { + "word": " apparently.", + "start": 2876.36, + "end": 2876.59, + "probability": 0.8232421875 + } + ] + }, + { + "id": 1160, + "text": "Right.", + "start": 2877.14, + "end": 2877.52, + "words": [ + { + "word": " Right.", + "start": 2877.14, + "end": 2877.52, + "probability": 0.66943359375 + } + ] + }, + { + "id": 1161, + "text": "Well, the Gangnam Style like broke the counter.", + "start": 2877.52, + "end": 2880.08, + "words": [ + { + "word": " Well,", + "start": 2877.52, + "end": 2878.14, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 2878.2, + "end": 2878.24, + "probability": 0.8466796875 + }, + { + "word": " Gangnam", + "start": 2878.24, + "end": 2878.6, + "probability": 0.64501953125 + }, + { + "word": " Style", + "start": 2878.6, + "end": 2878.78, + "probability": 0.71728515625 + }, + { + "word": " like", + "start": 2878.78, + "end": 2879.14, + "probability": 0.1292724609375 + }, + { + "word": " broke", + "start": 2879.14, + "end": 2879.44, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2879.44, + "end": 2879.78, + "probability": 1.0 + }, + { + "word": " counter.", + "start": 2879.78, + "end": 2880.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1162, + "text": "Yeah, it turns out that you couldn't have over a billion views.", + "start": 2880.48, + "end": 2883.76, + "words": [ + { + "word": " Yeah,", + "start": 2880.48, + "end": 2880.96, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 2881.1, + "end": 2881.32, + "probability": 0.99755859375 + }, + { + "word": " turns", + "start": 2881.32, + "end": 2881.58, + "probability": 1.0 + }, + { + "word": " out", + "start": 2881.58, + "end": 2881.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 2881.84, + "end": 2881.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 2881.98, + "end": 2882.18, + "probability": 1.0 + }, + { + "word": " couldn't", + "start": 2882.18, + "end": 2882.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 2882.48, + "end": 2882.6, + "probability": 1.0 + }, + { + "word": " over", + "start": 2882.6, + "end": 2882.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2882.86, + "end": 2883.06, + "probability": 1.0 + }, + { + "word": " billion", + "start": 2883.06, + "end": 2883.36, + "probability": 0.99951171875 + }, + { + "word": " views.", + "start": 2883.36, + "end": 2883.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1163, + "text": "I don't think they ever thought that was going to be a problem.", + "start": 2884.26, + "end": 2886.1, + "words": [ + { + "word": " I", + "start": 2884.26, + "end": 2884.52, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 2884.52, + "end": 2884.68, + "probability": 1.0 + }, + { + "word": " think", + "start": 2884.68, + "end": 2884.8, + "probability": 1.0 + }, + { + "word": " they", + "start": 2884.8, + "end": 2884.9, + "probability": 1.0 + }, + { + "word": " ever", + "start": 2884.9, + "end": 2885.04, + "probability": 1.0 + }, + { + "word": " thought", + "start": 2885.04, + "end": 2885.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 2885.24, + "end": 2885.38, + "probability": 1.0 + }, + { + "word": " was", + "start": 2885.38, + "end": 2885.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 2885.5, + "end": 2885.56, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 2885.56, + "end": 2885.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 2885.64, + "end": 2885.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 2885.76, + "end": 2885.82, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 2885.82, + "end": 2886.1, + "probability": 1.0 + } + ] + }, + { + "id": 1164, + "text": "Yeah.", + "start": 2886.38, + "end": 2886.56, + "words": [ + { + "word": " Yeah.", + "start": 2886.38, + "end": 2886.56, + "probability": 0.90576171875 + } + ] + }, + { + "id": 1165, + "text": "That is a huge amount of views.", + "start": 2887.14, + "end": 2888.56, + "words": [ + { + "word": " That", + "start": 2887.14, + "end": 2887.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 2887.62, + "end": 2887.76, + "probability": 0.98876953125 + }, + { + "word": " a", + "start": 2887.76, + "end": 2887.86, + "probability": 1.0 + }, + { + "word": " huge", + "start": 2887.86, + "end": 2888.14, + "probability": 1.0 + }, + { + "word": " amount", + "start": 2888.14, + "end": 2888.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2888.32, + "end": 2888.44, + "probability": 1.0 + }, + { + "word": " views.", + "start": 2888.44, + "end": 2888.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1166, + "text": "But anyway, YouTube is going to give you an option for cord cutting that requires less science involved.", + "start": 2888.64, + "end": 2893.5, + "words": [ + { + "word": " But", + "start": 2888.64, + "end": 2888.74, + "probability": 0.998046875 + }, + { + "word": " anyway,", + "start": 2888.74, + "end": 2888.9, + "probability": 0.9755859375 + }, + { + "word": " YouTube", + "start": 2889.12, + "end": 2890.0, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2890.0, + "end": 2890.26, + "probability": 0.9873046875 + }, + { + "word": " going", + "start": 2890.26, + "end": 2890.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 2890.32, + "end": 2890.4, + "probability": 1.0 + }, + { + "word": " give", + "start": 2890.4, + "end": 2890.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 2890.52, + "end": 2890.6, + "probability": 1.0 + }, + { + "word": " an", + "start": 2890.6, + "end": 2890.68, + "probability": 1.0 + }, + { + "word": " option", + "start": 2890.68, + "end": 2890.92, + "probability": 1.0 + }, + { + "word": " for", + "start": 2890.92, + "end": 2891.24, + "probability": 1.0 + }, + { + "word": " cord", + "start": 2891.24, + "end": 2891.48, + "probability": 0.99609375 + }, + { + "word": " cutting", + "start": 2891.48, + "end": 2891.7, + "probability": 0.97021484375 + }, + { + "word": " that", + "start": 2891.7, + "end": 2892.0, + "probability": 1.0 + }, + { + "word": " requires", + "start": 2892.0, + "end": 2892.34, + "probability": 1.0 + }, + { + "word": " less", + "start": 2892.34, + "end": 2892.74, + "probability": 1.0 + }, + { + "word": " science", + "start": 2892.74, + "end": 2893.12, + "probability": 1.0 + }, + { + "word": " involved.", + "start": 2893.12, + "end": 2893.5, + "probability": 1.0 + } + ] + }, + { + "id": 1167, + "text": "Considering that most streaming devices, in fact, I think all of them, the Roku, the Apple TV, the Plexbox, you know, Plex or not Plexbox, Amazon Fire TV,", + "start": 2894.08, + "end": 2906.06, + "words": [ + { + "word": " Considering", + "start": 2894.08, + "end": 2894.56, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2894.56, + "end": 2894.72, + "probability": 1.0 + }, + { + "word": " most", + "start": 2894.72, + "end": 2895.06, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 2895.06, + "end": 2895.62, + "probability": 1.0 + }, + { + "word": " devices,", + "start": 2895.62, + "end": 2895.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 2896.02, + "end": 2896.1, + "probability": 1.0 + }, + { + "word": " fact,", + "start": 2896.1, + "end": 2896.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 2896.34, + "end": 2896.66, + "probability": 1.0 + }, + { + "word": " think", + "start": 2896.66, + "end": 2896.84, + "probability": 1.0 + }, + { + "word": " all", + "start": 2896.84, + "end": 2897.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 2897.1, + "end": 2897.24, + "probability": 1.0 + }, + { + "word": " them,", + "start": 2897.24, + "end": 2897.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 2897.56, + "end": 2898.2, + "probability": 0.99951171875 + }, + { + "word": " Roku,", + "start": 2898.2, + "end": 2898.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 2899.0, + "end": 2899.34, + "probability": 1.0 + }, + { + "word": " Apple", + "start": 2899.34, + "end": 2900.26, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 2900.26, + "end": 2900.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2900.82, + "end": 2901.0, + "probability": 1.0 + }, + { + "word": " Plexbox,", + "start": 2901.0, + "end": 2902.22, + "probability": 0.92041015625 + }, + { + "word": " you", + "start": 2902.48, + "end": 2903.08, + "probability": 0.60595703125 + }, + { + "word": " know,", + "start": 2903.08, + "end": 2903.24, + "probability": 1.0 + }, + { + "word": " Plex", + "start": 2903.24, + "end": 2903.5, + "probability": 0.92578125 + }, + { + "word": " or", + "start": 2903.5, + "end": 2903.72, + "probability": 0.276123046875 + }, + { + "word": " not", + "start": 2903.72, + "end": 2904.08, + "probability": 0.99609375 + }, + { + "word": " Plexbox,", + "start": 2904.08, + "end": 2904.44, + "probability": 0.98974609375 + }, + { + "word": " Amazon", + "start": 2904.5, + "end": 2904.92, + "probability": 1.0 + }, + { + "word": " Fire", + "start": 2904.92, + "end": 2905.66, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 2905.66, + "end": 2906.06, + "probability": 1.0 + } + ] + }, + { + "id": 1168, + "text": "all of the different streaming devices have a YouTube app built in.", + "start": 2906.06, + "end": 2911.62, + "words": [ + { + "word": " all", + "start": 2906.06, + "end": 2907.06, + "probability": 0.06561279296875 + }, + { + "word": " of", + "start": 2907.06, + "end": 2908.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2908.12, + "end": 2908.3, + "probability": 1.0 + }, + { + "word": " different", + "start": 2908.3, + "end": 2908.58, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 2908.58, + "end": 2909.0, + "probability": 0.99951171875 + }, + { + "word": " devices", + "start": 2909.0, + "end": 2909.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 2909.32, + "end": 2909.84, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 2909.84, + "end": 2909.98, + "probability": 0.99951171875 + }, + { + "word": " YouTube", + "start": 2909.98, + "end": 2910.26, + "probability": 0.99267578125 + }, + { + "word": " app", + "start": 2910.26, + "end": 2910.64, + "probability": 0.99951171875 + }, + { + "word": " built", + "start": 2910.64, + "end": 2911.36, + "probability": 0.9990234375 + }, + { + "word": " in.", + "start": 2911.36, + "end": 2911.62, + "probability": 0.982421875 + } + ] + }, + { + "id": 1169, + "text": "And with the launch of YouTube TV, I'm sure they'll get a more refined, very YouTube style app for those things.", + "start": 2911.76, + "end": 2919.88, + "words": [ + { + "word": " And", + "start": 2911.76, + "end": 2912.28, + "probability": 0.93896484375 + }, + { + "word": " with", + "start": 2912.28, + "end": 2912.92, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 2912.92, + "end": 2913.1, + "probability": 1.0 + }, + { + "word": " launch", + "start": 2913.1, + "end": 2913.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 2913.38, + "end": 2913.56, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 2913.56, + "end": 2913.8, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 2913.8, + "end": 2914.16, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 2914.28, + "end": 2914.46, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2914.46, + "end": 2914.6, + "probability": 1.0 + }, + { + "word": " they'll", + "start": 2914.6, + "end": 2914.86, + "probability": 0.63427734375 + }, + { + "word": " get", + "start": 2914.86, + "end": 2915.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 2915.0, + "end": 2915.1, + "probability": 1.0 + }, + { + "word": " more", + "start": 2915.1, + "end": 2915.24, + "probability": 1.0 + }, + { + "word": " refined,", + "start": 2915.24, + "end": 2915.82, + "probability": 1.0 + }, + { + "word": " very", + "start": 2916.0, + "end": 2916.74, + "probability": 0.99560546875 + }, + { + "word": " YouTube", + "start": 2916.74, + "end": 2917.18, + "probability": 1.0 + }, + { + "word": " style", + "start": 2917.18, + "end": 2917.64, + "probability": 0.45703125 + }, + { + "word": " app", + "start": 2917.64, + "end": 2919.0, + "probability": 0.82958984375 + }, + { + "word": " for", + "start": 2919.0, + "end": 2919.36, + "probability": 0.9990234375 + }, + { + "word": " those", + "start": 2919.36, + "end": 2919.54, + "probability": 1.0 + }, + { + "word": " things.", + "start": 2919.54, + "end": 2919.88, + "probability": 1.0 + } + ] + }, + { + "id": 1170, + "text": "So it's something that I think is going to be useful just because I completely disagree with the entire business model of cable.", + "start": 2920.34, + "end": 2930.62, + "words": [ + { + "word": " So", + "start": 2920.34, + "end": 2921.02, + "probability": 0.9970703125 + }, + { + "word": " it's", + "start": 2921.02, + "end": 2921.46, + "probability": 0.98193359375 + }, + { + "word": " something", + "start": 2921.46, + "end": 2921.98, + "probability": 0.91748046875 + }, + { + "word": " that", + "start": 2921.98, + "end": 2922.26, + "probability": 1.0 + }, + { + "word": " I", + "start": 2922.26, + "end": 2922.38, + "probability": 1.0 + }, + { + "word": " think", + "start": 2922.38, + "end": 2922.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 2922.56, + "end": 2922.68, + "probability": 1.0 + }, + { + "word": " going", + "start": 2922.68, + "end": 2922.8, + "probability": 0.982421875 + }, + { + "word": " to", + "start": 2922.8, + "end": 2922.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 2922.82, + "end": 2922.92, + "probability": 1.0 + }, + { + "word": " useful", + "start": 2922.92, + "end": 2923.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 2923.3, + "end": 2924.28, + "probability": 0.439453125 + }, + { + "word": " because", + "start": 2924.28, + "end": 2924.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 2924.56, + "end": 2924.96, + "probability": 1.0 + }, + { + "word": " completely", + "start": 2924.96, + "end": 2925.76, + "probability": 1.0 + }, + { + "word": " disagree", + "start": 2925.76, + "end": 2926.52, + "probability": 1.0 + }, + { + "word": " with", + "start": 2926.52, + "end": 2927.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2927.12, + "end": 2927.8, + "probability": 0.42626953125 + }, + { + "word": " entire", + "start": 2927.8, + "end": 2928.46, + "probability": 0.62353515625 + }, + { + "word": " business", + "start": 2928.46, + "end": 2929.36, + "probability": 1.0 + }, + { + "word": " model", + "start": 2929.36, + "end": 2929.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 2929.82, + "end": 2930.22, + "probability": 1.0 + }, + { + "word": " cable.", + "start": 2930.22, + "end": 2930.62, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1171, + "text": "And so I have this aversion to anyone using cable.", + "start": 2930.88, + "end": 2935.7, + "words": [ + { + "word": " And", + "start": 2930.88, + "end": 2931.6, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 2931.6, + "end": 2931.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 2931.82, + "end": 2932.12, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2932.12, + "end": 2932.5, + "probability": 1.0 + }, + { + "word": " this", + "start": 2932.5, + "end": 2932.74, + "probability": 1.0 + }, + { + "word": " aversion", + "start": 2932.74, + "end": 2933.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 2933.88, + "end": 2934.5, + "probability": 1.0 + }, + { + "word": " anyone", + "start": 2934.5, + "end": 2934.9, + "probability": 1.0 + }, + { + "word": " using", + "start": 2934.9, + "end": 2935.36, + "probability": 1.0 + }, + { + "word": " cable.", + "start": 2935.36, + "end": 2935.7, + "probability": 1.0 + } + ] + }, + { + "id": 1172, + "text": "Yeah.", + "start": 2935.8, + "end": 2936.04, + "words": [ + { + "word": " Yeah.", + "start": 2935.8, + "end": 2936.04, + "probability": 0.01003265380859375 + } + ] + }, + { + "id": 1173, + "text": "But, you know, it's not like I'm anti-cable.", + "start": 2936.06, + "end": 2939.06, + "words": [ + { + "word": " But,", + "start": 2936.06, + "end": 2936.42, + "probability": 0.88671875 + }, + { + "word": " you", + "start": 2936.44, + "end": 2936.72, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 2936.72, + "end": 2936.86, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2936.88, + "end": 2937.22, + "probability": 1.0 + }, + { + "word": " not", + "start": 2937.22, + "end": 2937.64, + "probability": 0.97802734375 + }, + { + "word": " like", + "start": 2937.64, + "end": 2937.94, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 2937.94, + "end": 2938.16, + "probability": 1.0 + }, + { + "word": " anti", + "start": 2938.16, + "end": 2938.62, + "probability": 0.99853515625 + }, + { + "word": "-cable.", + "start": 2938.62, + "end": 2939.06, + "probability": 0.8837890625 + } + ] + }, + { + "id": 1174, + "text": "I'm just a cable.", + "start": 2939.18, + "end": 2940.24, + "words": [ + { + "word": " I'm", + "start": 2939.18, + "end": 2939.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 2939.44, + "end": 2939.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 2939.58, + "end": 2939.8, + "probability": 0.96875 + }, + { + "word": " cable.", + "start": 2939.8, + "end": 2940.24, + "probability": 0.376953125 + } + ] + }, + { + "id": 1175, + "text": "Well, I have cable and I'm still anti-cable.", + "start": 2940.46, + "end": 2942.22, + "words": [ + { + "word": " Well,", + "start": 2940.46, + "end": 2940.56, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2940.58, + "end": 2940.7, + "probability": 1.0 + }, + { + "word": " have", + "start": 2940.7, + "end": 2940.88, + "probability": 1.0 + }, + { + "word": " cable", + "start": 2940.88, + "end": 2941.2, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2941.2, + "end": 2941.34, + "probability": 0.455078125 + }, + { + "word": " I'm", + "start": 2941.34, + "end": 2941.44, + "probability": 1.0 + }, + { + "word": " still", + "start": 2941.44, + "end": 2941.62, + "probability": 1.0 + }, + { + "word": " anti", + "start": 2941.62, + "end": 2941.88, + "probability": 1.0 + }, + { + "word": "-cable.", + "start": 2941.88, + "end": 2942.22, + "probability": 1.0 + } + ] + }, + { + "id": 1176, + "text": "So I'm planning on seeing if I can, now that I've had it for a while and I'm not like blown away by how amazing it is, I think there might be some renegotiation happening.", + "start": 2942.42, + "end": 2950.68, + "words": [ + { + "word": " So", + "start": 2942.42, + "end": 2942.74, + "probability": 0.97265625 + }, + { + "word": " I'm", + "start": 2942.74, + "end": 2943.46, + "probability": 0.89892578125 + }, + { + "word": " planning", + "start": 2943.46, + "end": 2943.66, + "probability": 1.0 + }, + { + "word": " on", + "start": 2943.66, + "end": 2943.9, + "probability": 1.0 + }, + { + "word": " seeing", + "start": 2943.9, + "end": 2944.18, + "probability": 1.0 + }, + { + "word": " if", + "start": 2944.18, + "end": 2944.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 2944.34, + "end": 2944.44, + "probability": 1.0 + }, + { + "word": " can,", + "start": 2944.44, + "end": 2944.58, + "probability": 0.9990234375 + }, + { + "word": " now", + "start": 2944.64, + "end": 2944.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 2944.76, + "end": 2944.88, + "probability": 1.0 + }, + { + "word": " I've", + "start": 2944.88, + "end": 2944.98, + "probability": 1.0 + }, + { + "word": " had", + "start": 2944.98, + "end": 2945.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 2945.2, + "end": 2945.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 2945.3, + "end": 2945.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2945.42, + "end": 2945.52, + "probability": 1.0 + }, + { + "word": " while", + "start": 2945.52, + "end": 2945.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 2945.7, + "end": 2945.86, + "probability": 0.99560546875 + }, + { + "word": " I'm", + "start": 2945.86, + "end": 2946.0, + "probability": 1.0 + }, + { + "word": " not", + "start": 2946.0, + "end": 2946.12, + "probability": 1.0 + }, + { + "word": " like", + "start": 2946.12, + "end": 2946.32, + "probability": 0.548828125 + }, + { + "word": " blown", + "start": 2946.32, + "end": 2946.9, + "probability": 0.998046875 + }, + { + "word": " away", + "start": 2946.9, + "end": 2947.16, + "probability": 1.0 + }, + { + "word": " by", + "start": 2947.16, + "end": 2947.36, + "probability": 1.0 + }, + { + "word": " how", + "start": 2947.36, + "end": 2947.48, + "probability": 1.0 + }, + { + "word": " amazing", + "start": 2947.48, + "end": 2947.8, + "probability": 1.0 + }, + { + "word": " it", + "start": 2947.8, + "end": 2948.02, + "probability": 1.0 + }, + { + "word": " is,", + "start": 2948.02, + "end": 2948.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 2948.28, + "end": 2948.82, + "probability": 1.0 + }, + { + "word": " think", + "start": 2948.82, + "end": 2949.0, + "probability": 1.0 + }, + { + "word": " there", + "start": 2949.0, + "end": 2949.14, + "probability": 1.0 + }, + { + "word": " might", + "start": 2949.14, + "end": 2949.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 2949.4, + "end": 2949.52, + "probability": 1.0 + }, + { + "word": " some", + "start": 2949.52, + "end": 2949.64, + "probability": 1.0 + }, + { + "word": " renegotiation", + "start": 2949.64, + "end": 2950.22, + "probability": 0.998046875 + }, + { + "word": " happening.", + "start": 2950.22, + "end": 2950.68, + "probability": 1.0 + } + ] + }, + { + "id": 1177, + "text": "Oh, well, maybe you can figure out how to, you know, cut the cord for Food Network.", + "start": 2951.02, + "end": 2954.88, + "words": [ + { + "word": " Oh,", + "start": 2951.02, + "end": 2951.2, + "probability": 0.88037109375 + }, + { + "word": " well,", + "start": 2951.42, + "end": 2951.68, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 2951.72, + "end": 2951.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 2951.92, + "end": 2952.04, + "probability": 1.0 + }, + { + "word": " can", + "start": 2952.04, + "end": 2952.16, + "probability": 1.0 + }, + { + "word": " figure", + "start": 2952.16, + "end": 2952.32, + "probability": 1.0 + }, + { + "word": " out", + "start": 2952.32, + "end": 2952.46, + "probability": 1.0 + }, + { + "word": " how", + "start": 2952.46, + "end": 2952.58, + "probability": 1.0 + }, + { + "word": " to,", + "start": 2952.58, + "end": 2952.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 2952.78, + "end": 2953.06, + "probability": 1.0 + }, + { + "word": " know,", + "start": 2953.06, + "end": 2953.24, + "probability": 1.0 + }, + { + "word": " cut", + "start": 2953.24, + "end": 2953.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 2953.88, + "end": 2954.08, + "probability": 1.0 + }, + { + "word": " cord", + "start": 2954.08, + "end": 2954.28, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2954.28, + "end": 2954.44, + "probability": 1.0 + }, + { + "word": " Food", + "start": 2954.44, + "end": 2954.6, + "probability": 0.986328125 + }, + { + "word": " Network.", + "start": 2954.6, + "end": 2954.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1178, + "text": "Good luck with that, man.", + "start": 2955.12, + "end": 2955.72, + "words": [ + { + "word": " Good", + "start": 2955.12, + "end": 2955.2, + "probability": 0.99951171875 + }, + { + "word": " luck", + "start": 2955.2, + "end": 2955.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 2955.34, + "end": 2955.46, + "probability": 1.0 + }, + { + "word": " that,", + "start": 2955.46, + "end": 2955.6, + "probability": 1.0 + }, + { + "word": " man.", + "start": 2955.62, + "end": 2955.72, + "probability": 1.0 + } + ] + }, + { + "id": 1179, + "text": "Yeah.", + "start": 2955.9, + "end": 2956.16, + "words": [ + { + "word": " Yeah.", + "start": 2955.9, + "end": 2956.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1180, + "text": "Yeah.", + "start": 2956.36, + "end": 2956.68, + "words": [ + { + "word": " Yeah.", + "start": 2956.36, + "end": 2956.68, + "probability": 0.77880859375 + } + ] + }, + { + "id": 1181, + "text": "See, I like to argue with people though.", + "start": 2957.6, + "end": 2959.26, + "words": [ + { + "word": " See,", + "start": 2957.6, + "end": 2957.92, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2958.0, + "end": 2958.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 2958.14, + "end": 2958.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 2958.32, + "end": 2958.5, + "probability": 1.0 + }, + { + "word": " argue", + "start": 2958.5, + "end": 2958.7, + "probability": 1.0 + }, + { + "word": " with", + "start": 2958.7, + "end": 2958.86, + "probability": 1.0 + }, + { + "word": " people", + "start": 2958.86, + "end": 2959.06, + "probability": 1.0 + }, + { + "word": " though.", + "start": 2959.06, + "end": 2959.26, + "probability": 0.284423828125 + } + ] + }, + { + "id": 1182, + "text": "It's kind of a hobby.", + "start": 2959.44, + "end": 2960.3, + "words": [ + { + "word": " It's", + "start": 2959.44, + "end": 2959.76, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2959.76, + "end": 2959.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 2959.88, + "end": 2959.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 2959.98, + "end": 2960.04, + "probability": 1.0 + }, + { + "word": " hobby.", + "start": 2960.04, + "end": 2960.3, + "probability": 1.0 + } + ] + }, + { + "id": 1183, + "text": "It is kind of a, yeah.", + "start": 2960.7, + "end": 2962.38, + "words": [ + { + "word": " It", + "start": 2960.7, + "end": 2961.02, + "probability": 0.7919921875 + }, + { + "word": " is", + "start": 2961.02, + "end": 2961.24, + "probability": 1.0 + }, + { + "word": " kind", + "start": 2961.24, + "end": 2961.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 2961.4, + "end": 2961.54, + "probability": 1.0 + }, + { + "word": " a,", + "start": 2961.54, + "end": 2961.58, + "probability": 0.9814453125 + }, + { + "word": " yeah.", + "start": 2961.66, + "end": 2962.38, + "probability": 1.0 + } + ] + }, + { + "id": 1184, + "text": "We're not going to talk about that right now.", + "start": 2963.6, + "end": 2964.68, + "words": [ + { + "word": " We're", + "start": 2963.6, + "end": 2963.92, + "probability": 0.9873046875 + }, + { + "word": " not", + "start": 2963.92, + "end": 2963.96, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 2963.96, + "end": 2964.04, + "probability": 0.97265625 + }, + { + "word": " to", + "start": 2964.04, + "end": 2964.1, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2964.1, + "end": 2964.2, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 2964.2, + "end": 2964.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 2964.32, + "end": 2964.44, + "probability": 1.0 + }, + { + "word": " right", + "start": 2964.44, + "end": 2964.54, + "probability": 1.0 + }, + { + "word": " now.", + "start": 2964.54, + "end": 2964.68, + "probability": 1.0 + } + ] + }, + { + "id": 1185, + "text": "Let's talk to Thomas.", + "start": 2964.76, + "end": 2965.28, + "words": [ + { + "word": " Let's", + "start": 2964.76, + "end": 2964.9, + "probability": 0.8134765625 + }, + { + "word": " talk", + "start": 2964.9, + "end": 2964.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 2964.98, + "end": 2965.08, + "probability": 1.0 + }, + { + "word": " Thomas.", + "start": 2965.08, + "end": 2965.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1186, + "text": "How are you?", + "start": 2966.06, + "end": 2966.28, + "words": [ + { + "word": " How", + "start": 2966.06, + "end": 2966.12, + "probability": 0.140625 + }, + { + "word": " are", + "start": 2966.12, + "end": 2966.12, + "probability": 0.99462890625 + }, + { + "word": " you?", + "start": 2966.12, + "end": 2966.28, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1187, + "text": "I'm okay.", + "start": 2966.76, + "end": 2967.48, + "words": [ + { + "word": " I'm", + "start": 2966.76, + "end": 2967.2, + "probability": 0.9580078125 + }, + { + "word": " okay.", + "start": 2967.2, + "end": 2967.48, + "probability": 0.884765625 + } + ] + }, + { + "id": 1188, + "text": "I'm enjoying your show.", + "start": 2968.44, + "end": 2969.86, + "words": [ + { + "word": " I'm", + "start": 2968.44, + "end": 2968.92, + "probability": 0.99169921875 + }, + { + "word": " enjoying", + "start": 2968.92, + "end": 2969.38, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2969.38, + "end": 2969.62, + "probability": 0.994140625 + }, + { + "word": " show.", + "start": 2969.62, + "end": 2969.86, + "probability": 1.0 + } + ] + }, + { + "id": 1189, + "text": "I don't always get a chance to listen to it because most of the time, including today, you're talking about stuff I have no idea.", + "start": 2969.94, + "end": 2977.66, + "words": [ + { + "word": " I", + "start": 2969.94, + "end": 2970.12, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2970.12, + "end": 2970.28, + "probability": 1.0 + }, + { + "word": " always", + "start": 2970.28, + "end": 2970.5, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2970.5, + "end": 2970.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 2970.74, + "end": 2970.86, + "probability": 0.99609375 + }, + { + "word": " chance", + "start": 2970.86, + "end": 2971.1, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2971.1, + "end": 2971.32, + "probability": 0.99951171875 + }, + { + "word": " listen", + "start": 2971.32, + "end": 2972.32, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2972.32, + "end": 2972.54, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2972.54, + "end": 2972.76, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 2972.76, + "end": 2973.14, + "probability": 0.77880859375 + }, + { + "word": " most", + "start": 2973.14, + "end": 2973.56, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 2973.56, + "end": 2973.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2973.8, + "end": 2973.9, + "probability": 1.0 + }, + { + "word": " time,", + "start": 2973.9, + "end": 2974.18, + "probability": 1.0 + }, + { + "word": " including", + "start": 2974.26, + "end": 2974.62, + "probability": 0.99951171875 + }, + { + "word": " today,", + "start": 2974.62, + "end": 2975.12, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2975.26, + "end": 2975.46, + "probability": 0.9990234375 + }, + { + "word": " talking", + "start": 2975.46, + "end": 2975.72, + "probability": 1.0 + }, + { + "word": " about", + "start": 2975.72, + "end": 2975.98, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 2975.98, + "end": 2976.28, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2976.28, + "end": 2976.56, + "probability": 0.994140625 + }, + { + "word": " have", + "start": 2976.56, + "end": 2976.76, + "probability": 1.0 + }, + { + "word": " no", + "start": 2976.76, + "end": 2977.1, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 2977.1, + "end": 2977.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1190, + "text": "It's all way over my head.", + "start": 2977.72, + "end": 2979.46, + "words": [ + { + "word": " It's", + "start": 2977.72, + "end": 2977.98, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 2977.98, + "end": 2978.28, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 2978.28, + "end": 2978.72, + "probability": 0.998046875 + }, + { + "word": " over", + "start": 2978.72, + "end": 2978.96, + "probability": 1.0 + }, + { + "word": " my", + "start": 2978.96, + "end": 2979.22, + "probability": 1.0 + }, + { + "word": " head.", + "start": 2979.22, + "end": 2979.46, + "probability": 1.0 + } + ] + }, + { + "id": 1191, + "text": "Then you should call and say, I don't understand that, Mike.", + "start": 2979.6, + "end": 2981.28, + "words": [ + { + "word": " Then", + "start": 2979.6, + "end": 2979.66, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 2979.66, + "end": 2979.74, + "probability": 0.99853515625 + }, + { + "word": " should", + "start": 2979.74, + "end": 2979.86, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 2979.86, + "end": 2980.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 2980.02, + "end": 2980.18, + "probability": 0.99951171875 + }, + { + "word": " say,", + "start": 2980.18, + "end": 2980.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 2980.36, + "end": 2980.46, + "probability": 0.9951171875 + }, + { + "word": " don't", + "start": 2980.46, + "end": 2980.6, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2980.6, + "end": 2980.9, + "probability": 1.0 + }, + { + "word": " that,", + "start": 2980.9, + "end": 2981.08, + "probability": 0.99951171875 + }, + { + "word": " Mike.", + "start": 2981.14, + "end": 2981.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1192, + "text": "Explain it to me better.", + "start": 2981.38, + "end": 2982.44, + "words": [ + { + "word": " Explain", + "start": 2981.38, + "end": 2981.84, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 2981.84, + "end": 2982.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 2982.02, + "end": 2982.1, + "probability": 1.0 + }, + { + "word": " me", + "start": 2982.1, + "end": 2982.22, + "probability": 1.0 + }, + { + "word": " better.", + "start": 2982.22, + "end": 2982.44, + "probability": 1.0 + } + ] + }, + { + "id": 1193, + "text": "Well, I'm 77 years old and I got my first computer in 1998 and I still about the only thing I can really do is work.", + "start": 2983.32, + "end": 2996.04, + "words": [ + { + "word": " Well,", + "start": 2983.32, + "end": 2983.8, + "probability": 0.9765625 + }, + { + "word": " I'm", + "start": 2983.88, + "end": 2984.06, + "probability": 1.0 + }, + { + "word": " 77", + "start": 2984.06, + "end": 2985.72, + "probability": 0.99658203125 + }, + { + "word": " years", + "start": 2985.72, + "end": 2986.4, + "probability": 1.0 + }, + { + "word": " old", + "start": 2986.4, + "end": 2986.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 2986.84, + "end": 2987.5, + "probability": 0.188232421875 + }, + { + "word": " I", + "start": 2987.5, + "end": 2988.08, + "probability": 1.0 + }, + { + "word": " got", + "start": 2988.08, + "end": 2988.3, + "probability": 1.0 + }, + { + "word": " my", + "start": 2988.3, + "end": 2988.46, + "probability": 1.0 + }, + { + "word": " first", + "start": 2988.46, + "end": 2988.74, + "probability": 1.0 + }, + { + "word": " computer", + "start": 2988.74, + "end": 2989.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 2989.12, + "end": 2989.42, + "probability": 1.0 + }, + { + "word": " 1998", + "start": 2989.42, + "end": 2990.34, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2990.34, + "end": 2991.82, + "probability": 0.369140625 + }, + { + "word": " I", + "start": 2991.82, + "end": 2992.16, + "probability": 0.8642578125 + }, + { + "word": " still", + "start": 2992.16, + "end": 2992.72, + "probability": 0.431884765625 + }, + { + "word": " about", + "start": 2992.72, + "end": 2994.04, + "probability": 0.82275390625 + }, + { + "word": " the", + "start": 2994.04, + "end": 2994.24, + "probability": 0.99755859375 + }, + { + "word": " only", + "start": 2994.24, + "end": 2994.42, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2994.42, + "end": 2994.62, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2994.62, + "end": 2994.78, + "probability": 1.0 + }, + { + "word": " can", + "start": 2994.78, + "end": 2995.0, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 2995.0, + "end": 2995.54, + "probability": 0.99365234375 + }, + { + "word": " do", + "start": 2995.54, + "end": 2995.88, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2995.88, + "end": 2996.04, + "probability": 0.0277862548828125 + }, + { + "word": " work.", + "start": 2996.04, + "end": 2996.04, + "probability": 0.06298828125 + } + ] + }, + { + "id": 1194, + "text": "OK.", + "start": 2996.04, + "end": 2996.44, + "words": [ + { + "word": " OK.", + "start": 2996.04, + "end": 2996.44, + "probability": 4.947185516357422e-06 + } + ] + }, + { + "id": 1195, + "text": "", + "start": 3002.0, + "end": 3002.0, + "words": [] + }, + { + "id": 1196, + "text": "", + "start": 3002.0, + "end": 3002.0, + "words": [] + }, + { + "id": 1197, + "text": "", + "start": 3002.0, + "end": 3002.0, + "words": [] + }, + { + "id": 1198, + "text": "", + "start": 3002.0, + "end": 3002.0, + "words": [] + }, + { + "id": 1199, + "text": "OK.", + "start": 3003.06, + "end": 3003.58, + "words": [ + { + "word": " OK.", + "start": 3003.06, + "end": 3003.58, + "probability": 0.94189453125 + } + ] + }, + { + "id": 1200, + "text": "OK.", + "start": 3005.78, + "end": 3006.3, + "words": [ + { + "word": " OK.", + "start": 3005.78, + "end": 3006.3, + "probability": 0.94873046875 + } + ] + }, + { + "id": 1201, + "text": "", + "start": 3006.38, + "end": 3006.38, + "words": [] + }, + { + "id": 1202, + "text": "OK.", + "start": 3006.82, + "end": 3007.34, + "words": [ + { + "word": " OK.", + "start": 3006.82, + "end": 3007.34, + "probability": 0.955078125 + } + ] + }, + { + "id": 1203, + "text": "", + "start": 3007.34, + "end": 3007.34, + "words": [] + }, + { + "id": 1204, + "text": "OK.", + "start": 3007.34, + "end": 3007.56, + "words": [ + { + "word": " OK.", + "start": 3007.34, + "end": 3007.56, + "probability": 0.95849609375 + } + ] + }, + { + "id": 1205, + "text": "OK.", + "start": 3008.02, + "end": 3008.2, + "words": [ + { + "word": " OK.", + "start": 3008.02, + "end": 3008.2, + "probability": 0.9599609375 + } + ] + }, + { + "id": 1206, + "text": "OK.", + "start": 3008.48, + "end": 3008.58, + "words": [ + { + "word": " OK.", + "start": 3008.48, + "end": 3008.58, + "probability": 0.9619140625 + } + ] + }, + { + "id": 1207, + "text": "OK.", + "start": 3008.72, + "end": 3008.98, + "words": [ + { + "word": " OK.", + "start": 3008.72, + "end": 3008.98, + "probability": 0.96337890625 + } + ] + }, + { + "id": 1208, + "text": "OK.", + "start": 3009.18, + "end": 3009.28, + "words": [ + { + "word": " OK.", + "start": 3009.18, + "end": 3009.28, + "probability": 0.96484375 + } + ] + }, + { + "id": 1209, + "text": "OK.", + "start": 3009.86, + "end": 3010.38, + "words": [ + { + "word": " OK.", + "start": 3009.86, + "end": 3010.38, + "probability": 0.9658203125 + } + ] + }, + { + "id": 1210, + "text": "OK.", + "start": 3011.8, + "end": 3012.16, + "words": [ + { + "word": " OK.", + "start": 3011.8, + "end": 3012.16, + "probability": 0.966796875 + } + ] + }, + { + "id": 1211, + "text": "OK.", + "start": 3012.4, + "end": 3012.66, + "words": [ + { + "word": " OK.", + "start": 3012.4, + "end": 3012.66, + "probability": 0.96826171875 + } + ] + }, + { + "id": 1212, + "text": "OK.", + "start": 3013.42, + "end": 3013.94, + "words": [ + { + "word": " OK.", + "start": 3013.42, + "end": 3013.94, + "probability": 0.96875 + } + ] + }, + { + "id": 1213, + "text": "OK.", + "start": 3014.08, + "end": 3014.44, + "words": [ + { + "word": " OK.", + "start": 3014.08, + "end": 3014.44, + "probability": 0.9697265625 + } + ] + }, + { + "id": 1214, + "text": "OK.", + "start": 3014.84, + "end": 3014.96, + "words": [ + { + "word": " OK.", + "start": 3014.84, + "end": 3014.96, + "probability": 0.970703125 + } + ] + }, + { + "id": 1215, + "text": "OK.", + "start": 3016.0, + "end": 3016.52, + "words": [ + { + "word": " OK.", + "start": 3016.0, + "end": 3016.52, + "probability": 0.97119140625 + } + ] + }, + { + "id": 1216, + "text": "OK.", + "start": 3016.7, + "end": 3016.84, + "words": [ + { + "word": " OK.", + "start": 3016.7, + "end": 3016.84, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1217, + "text": "OK.", + "start": 3017.0, + "end": 3017.24, + "words": [ + { + "word": " OK.", + "start": 3017.0, + "end": 3017.24, + "probability": 0.97216796875 + } + ] + }, + { + "id": 1218, + "text": "OK.", + "start": 3017.42, + "end": 3017.64, + "words": [ + { + "word": " OK.", + "start": 3017.42, + "end": 3017.64, + "probability": 0.97265625 + } + ] + }, + { + "id": 1219, + "text": "OK.", + "start": 3018.42, + "end": 3018.56, + "words": [ + { + "word": " OK.", + "start": 3018.42, + "end": 3018.56, + "probability": 0.97314453125 + } + ] + }, + { + "id": 1220, + "text": "OK.", + "start": 3019.14, + "end": 3019.56, + "words": [ + { + "word": " OK.", + "start": 3019.14, + "end": 3019.56, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1221, + "text": "OK.", + "start": 3020.78, + "end": 3020.92, + "words": [ + { + "word": " OK.", + "start": 3020.78, + "end": 3020.92, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1222, + "text": "OK.", + "start": 3023.54, + "end": 3024.06, + "words": [ + { + "word": " OK.", + "start": 3023.54, + "end": 3024.06, + "probability": 0.974609375 + } + ] + }, + { + "id": 1223, + "text": "from Cox, my internet is $67.99.", + "start": 3024.06, + "end": 3027.3, + "words": [ + { + "word": " from", + "start": 3024.06, + "end": 3024.24, + "probability": 0.65234375 + }, + { + "word": " Cox,", + "start": 3024.24, + "end": 3024.54, + "probability": 0.6796875 + }, + { + "word": " my", + "start": 3024.9, + "end": 3025.38, + "probability": 0.98193359375 + }, + { + "word": " internet", + "start": 3025.38, + "end": 3025.72, + "probability": 0.70849609375 + }, + { + "word": " is", + "start": 3025.72, + "end": 3026.1, + "probability": 0.9970703125 + }, + { + "word": " $67", + "start": 3026.1, + "end": 3026.62, + "probability": 0.8955078125 + }, + { + "word": ".99.", + "start": 3026.62, + "end": 3027.3, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1224, + "text": "Yeah, I think he was just talking about the TV portion.", + "start": 3028.44, + "end": 3030.46, + "words": [ + { + "word": " Yeah,", + "start": 3028.44, + "end": 3028.88, + "probability": 0.93115234375 + }, + { + "word": " I", + "start": 3028.9, + "end": 3028.94, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 3028.94, + "end": 3029.1, + "probability": 1.0 + }, + { + "word": " he", + "start": 3029.1, + "end": 3029.18, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3029.18, + "end": 3029.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 3029.3, + "end": 3029.42, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 3029.42, + "end": 3029.62, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 3029.62, + "end": 3029.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 3029.78, + "end": 3029.92, + "probability": 0.99951171875 + }, + { + "word": " TV", + "start": 3029.92, + "end": 3030.16, + "probability": 0.998046875 + }, + { + "word": " portion.", + "start": 3030.16, + "end": 3030.46, + "probability": 0.9013671875 + } + ] + }, + { + "id": 1225, + "text": "Yeah, for the actual internet itself, I pay about, I think it's about $80.", + "start": 3030.46, + "end": 3034.6, + "words": [ + { + "word": " Yeah,", + "start": 3030.46, + "end": 3030.68, + "probability": 0.93603515625 + }, + { + "word": " for", + "start": 3030.68, + "end": 3030.74, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3030.74, + "end": 3030.94, + "probability": 0.9912109375 + }, + { + "word": " actual", + "start": 3030.94, + "end": 3031.5, + "probability": 0.99951171875 + }, + { + "word": " internet", + "start": 3031.5, + "end": 3031.88, + "probability": 0.998046875 + }, + { + "word": " itself,", + "start": 3031.88, + "end": 3032.28, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3032.52, + "end": 3032.66, + "probability": 0.99951171875 + }, + { + "word": " pay", + "start": 3032.66, + "end": 3032.86, + "probability": 0.87158203125 + }, + { + "word": " about,", + "start": 3032.86, + "end": 3033.12, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3033.26, + "end": 3033.92, + "probability": 0.99853515625 + }, + { + "word": " think", + "start": 3033.92, + "end": 3034.08, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 3034.08, + "end": 3034.22, + "probability": 1.0 + }, + { + "word": " about", + "start": 3034.22, + "end": 3034.32, + "probability": 0.99951171875 + }, + { + "word": " $80.", + "start": 3034.32, + "end": 3034.6, + "probability": 0.9541015625 + } + ] + }, + { + "id": 1226, + "text": "For the actual internet?", + "start": 3035.94, + "end": 3037.18, + "words": [ + { + "word": " For", + "start": 3035.94, + "end": 3036.38, + "probability": 0.611328125 + }, + { + "word": " the", + "start": 3036.38, + "end": 3036.54, + "probability": 1.0 + }, + { + "word": " actual", + "start": 3036.54, + "end": 3036.88, + "probability": 1.0 + }, + { + "word": " internet?", + "start": 3036.88, + "end": 3037.18, + "probability": 0.6611328125 + } + ] + }, + { + "id": 1227, + "text": "Just for the internet, and then I pay an additional $40 now for TV as well.", + "start": 3037.28, + "end": 3040.66, + "words": [ + { + "word": " Just", + "start": 3037.28, + "end": 3037.52, + "probability": 0.99365234375 + }, + { + "word": " for", + "start": 3037.52, + "end": 3037.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3037.54, + "end": 3037.66, + "probability": 1.0 + }, + { + "word": " internet,", + "start": 3037.66, + "end": 3037.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 3038.02, + "end": 3038.08, + "probability": 1.0 + }, + { + "word": " then", + "start": 3038.08, + "end": 3038.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 3038.18, + "end": 3038.28, + "probability": 1.0 + }, + { + "word": " pay", + "start": 3038.28, + "end": 3038.44, + "probability": 1.0 + }, + { + "word": " an", + "start": 3038.44, + "end": 3038.54, + "probability": 1.0 + }, + { + "word": " additional", + "start": 3038.54, + "end": 3038.76, + "probability": 1.0 + }, + { + "word": " $40", + "start": 3038.76, + "end": 3039.28, + "probability": 0.9990234375 + }, + { + "word": " now", + "start": 3039.28, + "end": 3039.62, + "probability": 0.98388671875 + }, + { + "word": " for", + "start": 3039.62, + "end": 3040.1, + "probability": 0.9912109375 + }, + { + "word": " TV", + "start": 3040.1, + "end": 3040.32, + "probability": 1.0 + }, + { + "word": " as", + "start": 3040.32, + "end": 3040.52, + "probability": 0.9970703125 + }, + { + "word": " well.", + "start": 3040.52, + "end": 3040.66, + "probability": 1.0 + } + ] + }, + { + "id": 1228, + "text": "Well, I got, under mine, under new charges, for TV, it says $146.99.", + "start": 3041.74, + "end": 3047.3, + "words": [ + { + "word": " Well,", + "start": 3041.74, + "end": 3042.18, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3042.22, + "end": 3042.36, + "probability": 0.8662109375 + }, + { + "word": " got,", + "start": 3042.36, + "end": 3042.56, + "probability": 0.9892578125 + }, + { + "word": " under", + "start": 3042.66, + "end": 3043.02, + "probability": 0.99658203125 + }, + { + "word": " mine,", + "start": 3043.02, + "end": 3043.36, + "probability": 0.99462890625 + }, + { + "word": " under", + "start": 3043.42, + "end": 3043.66, + "probability": 0.9599609375 + }, + { + "word": " new", + "start": 3043.66, + "end": 3043.92, + "probability": 0.5400390625 + }, + { + "word": " charges,", + "start": 3043.92, + "end": 3044.42, + "probability": 0.99658203125 + }, + { + "word": " for", + "start": 3044.46, + "end": 3044.8, + "probability": 0.99951171875 + }, + { + "word": " TV,", + "start": 3044.8, + "end": 3045.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 3045.34, + "end": 3045.5, + "probability": 1.0 + }, + { + "word": " says", + "start": 3045.5, + "end": 3045.66, + "probability": 1.0 + }, + { + "word": " $146", + "start": 3045.66, + "end": 3046.86, + "probability": 0.99951171875 + }, + { + "word": ".99.", + "start": 3046.86, + "end": 3047.3, + "probability": 1.0 + } + ] + }, + { + "id": 1229, + "text": "Internet, $67.99.", + "start": 3048.54, + "end": 3050.08, + "words": [ + { + "word": " Internet,", + "start": 3048.54, + "end": 3048.98, + "probability": 0.99755859375 + }, + { + "word": " $67", + "start": 3048.98, + "end": 3049.42, + "probability": 1.0 + }, + { + "word": ".99.", + "start": 3049.42, + "end": 3050.08, + "probability": 1.0 + } + ] + }, + { + "id": 1230, + "text": "Telephone, $14.09.", + "start": 3051.1, + "end": 3052.34, + "words": [ + { + "word": " Telephone,", + "start": 3051.1, + "end": 3051.54, + "probability": 1.0 + }, + { + "word": " $14", + "start": 3051.54, + "end": 3051.98, + "probability": 0.9140625 + }, + { + "word": ".09.", + "start": 3051.98, + "end": 3052.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1231, + "text": "$14.09.", + "start": 3052.34, + "end": 3052.46, + "words": [ + { + "word": " $14", + "start": 3052.34, + "end": 3052.34, + "probability": 0.0081787109375 + }, + { + "word": ".09.", + "start": 3052.34, + "end": 3052.46, + "probability": 0.0672607421875 + } + ] + }, + { + "id": 1232, + "text": "See, this is one of the reasons that I, I'm going to use a word that I don't use very often.", + "start": 3052.68, + "end": 3057.08, + "words": [ + { + "word": " See,", + "start": 3052.68, + "end": 3052.86, + "probability": 0.775390625 + }, + { + "word": " this", + "start": 3052.94, + "end": 3053.06, + "probability": 1.0 + }, + { + "word": " is", + "start": 3053.06, + "end": 3053.16, + "probability": 1.0 + }, + { + "word": " one", + "start": 3053.16, + "end": 3053.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 3053.3, + "end": 3053.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 3053.36, + "end": 3053.4, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 3053.4, + "end": 3053.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 3053.64, + "end": 3053.86, + "probability": 0.99951171875 + }, + { + "word": " I,", + "start": 3053.86, + "end": 3053.96, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3054.04, + "end": 3055.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 3055.26, + "end": 3055.26, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 3055.26, + "end": 3055.34, + "probability": 1.0 + }, + { + "word": " use", + "start": 3055.34, + "end": 3055.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 3055.44, + "end": 3055.54, + "probability": 1.0 + }, + { + "word": " word", + "start": 3055.54, + "end": 3055.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 3055.72, + "end": 3055.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3055.86, + "end": 3055.96, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3055.96, + "end": 3056.52, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 3056.52, + "end": 3056.68, + "probability": 1.0 + }, + { + "word": " very", + "start": 3056.68, + "end": 3056.86, + "probability": 0.99951171875 + }, + { + "word": " often.", + "start": 3056.86, + "end": 3057.08, + "probability": 1.0 + } + ] + }, + { + "id": 1233, + "text": "I hate the cable company.", + "start": 3057.2, + "end": 3058.52, + "words": [ + { + "word": " I", + "start": 3057.2, + "end": 3057.38, + "probability": 1.0 + }, + { + "word": " hate", + "start": 3057.38, + "end": 3057.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 3057.78, + "end": 3057.94, + "probability": 0.99560546875 + }, + { + "word": " cable", + "start": 3057.94, + "end": 3058.16, + "probability": 0.99951171875 + }, + { + "word": " company.", + "start": 3058.16, + "end": 3058.52, + "probability": 1.0 + } + ] + }, + { + "id": 1234, + "text": "Well, I do too.", + "start": 3058.82, + "end": 3059.82, + "words": [ + { + "word": " Well,", + "start": 3058.82, + "end": 3059.08, + "probability": 0.445556640625 + }, + { + "word": " I", + "start": 3059.2, + "end": 3059.34, + "probability": 1.0 + }, + { + "word": " do", + "start": 3059.34, + "end": 3059.54, + "probability": 1.0 + }, + { + "word": " too.", + "start": 3059.54, + "end": 3059.82, + "probability": 0.5849609375 + } + ] + }, + { + "id": 1235, + "text": "And this is the reason why, is because they'll sign you up and they'll say,", + "start": 3059.92, + "end": 3063.28, + "words": [ + { + "word": " And", + "start": 3059.92, + "end": 3060.08, + "probability": 0.9892578125 + }, + { + "word": " this", + "start": 3060.08, + "end": 3060.28, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 3060.28, + "end": 3060.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 3060.36, + "end": 3060.52, + "probability": 1.0 + }, + { + "word": " reason", + "start": 3060.52, + "end": 3060.82, + "probability": 1.0 + }, + { + "word": " why,", + "start": 3060.82, + "end": 3061.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 3061.24, + "end": 3061.42, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 3061.42, + "end": 3061.62, + "probability": 1.0 + }, + { + "word": " they'll", + "start": 3061.62, + "end": 3062.3, + "probability": 1.0 + }, + { + "word": " sign", + "start": 3062.3, + "end": 3062.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 3062.52, + "end": 3062.7, + "probability": 1.0 + }, + { + "word": " up", + "start": 3062.7, + "end": 3062.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 3062.86, + "end": 3062.98, + "probability": 0.90869140625 + }, + { + "word": " they'll", + "start": 3062.98, + "end": 3063.1, + "probability": 1.0 + }, + { + "word": " say,", + "start": 3063.1, + "end": 3063.28, + "probability": 1.0 + } + ] + }, + { + "id": 1236, + "text": "hey, for $9 a month, we'll get you on the internet and you can watch TV,", + "start": 3063.4, + "end": 3069.04, + "words": [ + { + "word": " hey,", + "start": 3063.4, + "end": 3063.84, + "probability": 0.93505859375 + }, + { + "word": " for", + "start": 3063.94, + "end": 3064.62, + "probability": 1.0 + }, + { + "word": " $9", + "start": 3064.62, + "end": 3066.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 3066.12, + "end": 3066.56, + "probability": 0.998046875 + }, + { + "word": " month,", + "start": 3066.56, + "end": 3066.8, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 3066.86, + "end": 3067.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 3067.04, + "end": 3067.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 3067.18, + "end": 3067.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 3067.32, + "end": 3067.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 3067.46, + "end": 3067.56, + "probability": 1.0 + }, + { + "word": " internet", + "start": 3067.56, + "end": 3067.84, + "probability": 0.611328125 + }, + { + "word": " and", + "start": 3067.84, + "end": 3068.18, + "probability": 0.94677734375 + }, + { + "word": " you", + "start": 3068.18, + "end": 3068.4, + "probability": 1.0 + }, + { + "word": " can", + "start": 3068.4, + "end": 3068.52, + "probability": 1.0 + }, + { + "word": " watch", + "start": 3068.52, + "end": 3068.72, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 3068.72, + "end": 3069.04, + "probability": 1.0 + } + ] + }, + { + "id": 1237, + "text": "and then suddenly your bill is $4,000, and you don't know why.", + "start": 3069.18, + "end": 3072.64, + "words": [ + { + "word": " and", + "start": 3069.18, + "end": 3069.32, + "probability": 1.0 + }, + { + "word": " then", + "start": 3069.32, + "end": 3069.42, + "probability": 1.0 + }, + { + "word": " suddenly", + "start": 3069.42, + "end": 3069.86, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3069.86, + "end": 3070.42, + "probability": 0.88671875 + }, + { + "word": " bill", + "start": 3070.42, + "end": 3070.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 3070.62, + "end": 3070.78, + "probability": 1.0 + }, + { + "word": " $4", + "start": 3070.78, + "end": 3070.94, + "probability": 1.0 + }, + { + "word": ",000,", + "start": 3070.94, + "end": 3071.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 3071.96, + "end": 3072.06, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 3072.06, + "end": 3072.18, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3072.18, + "end": 3072.3, + "probability": 1.0 + }, + { + "word": " know", + "start": 3072.3, + "end": 3072.42, + "probability": 1.0 + }, + { + "word": " why.", + "start": 3072.42, + "end": 3072.64, + "probability": 1.0 + } + ] + }, + { + "id": 1238, + "text": "And they do this all the time.", + "start": 3073.64, + "end": 3075.34, + "words": [ + { + "word": " And", + "start": 3073.64, + "end": 3074.0, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 3074.0, + "end": 3074.36, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 3074.36, + "end": 3074.56, + "probability": 1.0 + }, + { + "word": " this", + "start": 3074.56, + "end": 3074.74, + "probability": 1.0 + }, + { + "word": " all", + "start": 3074.74, + "end": 3074.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 3074.98, + "end": 3075.14, + "probability": 1.0 + }, + { + "word": " time.", + "start": 3075.14, + "end": 3075.34, + "probability": 1.0 + } + ] + }, + { + "id": 1239, + "text": "I mean, Rob, you had the, that old place, you had this, a war with Comcast.", + "start": 3075.4, + "end": 3081.22, + "words": [ + { + "word": " I", + "start": 3075.4, + "end": 3075.46, + "probability": 0.90625 + }, + { + "word": " mean,", + "start": 3075.46, + "end": 3075.52, + "probability": 0.99951171875 + }, + { + "word": " Rob,", + "start": 3075.54, + "end": 3075.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 3075.88, + "end": 3075.94, + "probability": 0.99365234375 + }, + { + "word": " had", + "start": 3075.94, + "end": 3076.14, + "probability": 1.0 + }, + { + "word": " the,", + "start": 3076.14, + "end": 3076.36, + "probability": 0.462646484375 + }, + { + "word": " that", + "start": 3076.36, + "end": 3076.98, + "probability": 0.654296875 + }, + { + "word": " old", + "start": 3076.98, + "end": 3077.46, + "probability": 1.0 + }, + { + "word": " place,", + "start": 3077.46, + "end": 3077.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 3077.86, + "end": 3077.98, + "probability": 1.0 + }, + { + "word": " had", + "start": 3077.98, + "end": 3078.2, + "probability": 1.0 + }, + { + "word": " this,", + "start": 3078.2, + "end": 3078.54, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3078.64, + "end": 3079.58, + "probability": 1.0 + }, + { + "word": " war", + "start": 3079.58, + "end": 3079.94, + "probability": 1.0 + }, + { + "word": " with", + "start": 3079.94, + "end": 3080.72, + "probability": 0.79296875 + }, + { + "word": " Comcast.", + "start": 3080.72, + "end": 3081.22, + "probability": 1.0 + } + ] + }, + { + "id": 1240, + "text": "Yeah, for sure.", + "start": 3081.22, + "end": 3081.58, + "words": [ + { + "word": " Yeah,", + "start": 3081.22, + "end": 3081.44, + "probability": 0.2037353515625 + }, + { + "word": " for", + "start": 3081.44, + "end": 3081.44, + "probability": 0.99951171875 + }, + { + "word": " sure.", + "start": 3081.44, + "end": 3081.58, + "probability": 1.0 + } + ] + }, + { + "id": 1241, + "text": "You know, talking about how they were like, they kept raising his price without telling him.", + "start": 3081.58, + "end": 3085.98, + "words": [ + { + "word": " You", + "start": 3081.58, + "end": 3082.02, + "probability": 0.0611572265625 + }, + { + "word": " know,", + "start": 3082.02, + "end": 3082.36, + "probability": 0.94775390625 + }, + { + "word": " talking", + "start": 3082.36, + "end": 3082.64, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 3082.64, + "end": 3082.96, + "probability": 1.0 + }, + { + "word": " how", + "start": 3082.96, + "end": 3083.3, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3083.3, + "end": 3083.62, + "probability": 0.9990234375 + }, + { + "word": " were", + "start": 3083.62, + "end": 3083.76, + "probability": 0.350830078125 + }, + { + "word": " like,", + "start": 3083.76, + "end": 3084.02, + "probability": 0.92919921875 + }, + { + "word": " they", + "start": 3084.12, + "end": 3084.2, + "probability": 0.9990234375 + }, + { + "word": " kept", + "start": 3084.2, + "end": 3084.4, + "probability": 1.0 + }, + { + "word": " raising", + "start": 3084.4, + "end": 3084.62, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 3084.62, + "end": 3084.98, + "probability": 0.99951171875 + }, + { + "word": " price", + "start": 3084.98, + "end": 3085.18, + "probability": 1.0 + }, + { + "word": " without", + "start": 3085.18, + "end": 3085.42, + "probability": 0.99951171875 + }, + { + "word": " telling", + "start": 3085.42, + "end": 3085.76, + "probability": 1.0 + }, + { + "word": " him.", + "start": 3085.76, + "end": 3085.98, + "probability": 1.0 + } + ] + }, + { + "id": 1242, + "text": "Yeah, I'd just get my bill and it'd be like $20 higher.", + "start": 3086.1, + "end": 3088.12, + "words": [ + { + "word": " Yeah,", + "start": 3086.1, + "end": 3086.28, + "probability": 0.9912109375 + }, + { + "word": " I'd", + "start": 3086.3, + "end": 3086.42, + "probability": 0.9921875 + }, + { + "word": " just", + "start": 3086.42, + "end": 3086.5, + "probability": 1.0 + }, + { + "word": " get", + "start": 3086.5, + "end": 3086.66, + "probability": 1.0 + }, + { + "word": " my", + "start": 3086.66, + "end": 3086.76, + "probability": 1.0 + }, + { + "word": " bill", + "start": 3086.76, + "end": 3086.98, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3086.98, + "end": 3087.1, + "probability": 0.77978515625 + }, + { + "word": " it'd", + "start": 3087.1, + "end": 3087.24, + "probability": 0.958984375 + }, + { + "word": " be", + "start": 3087.24, + "end": 3087.3, + "probability": 1.0 + }, + { + "word": " like", + "start": 3087.3, + "end": 3087.42, + "probability": 0.9931640625 + }, + { + "word": " $20", + "start": 3087.42, + "end": 3087.72, + "probability": 0.9990234375 + }, + { + "word": " higher.", + "start": 3087.72, + "end": 3088.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1243, + "text": "And then I'd call them up and they'd be like, oh, we'll take that off.", + "start": 3088.32, + "end": 3090.16, + "words": [ + { + "word": " And", + "start": 3088.32, + "end": 3088.48, + "probability": 0.9970703125 + }, + { + "word": " then", + "start": 3088.48, + "end": 3088.52, + "probability": 1.0 + }, + { + "word": " I'd", + "start": 3088.52, + "end": 3088.66, + "probability": 1.0 + }, + { + "word": " call", + "start": 3088.66, + "end": 3088.84, + "probability": 1.0 + }, + { + "word": " them", + "start": 3088.84, + "end": 3088.96, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 3088.96, + "end": 3089.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 3089.1, + "end": 3089.22, + "probability": 0.998046875 + }, + { + "word": " they'd", + "start": 3089.22, + "end": 3089.36, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 3089.36, + "end": 3089.42, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3089.42, + "end": 3089.52, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 3089.58, + "end": 3089.68, + "probability": 0.98583984375 + }, + { + "word": " we'll", + "start": 3089.68, + "end": 3089.78, + "probability": 0.998046875 + }, + { + "word": " take", + "start": 3089.78, + "end": 3089.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 3089.86, + "end": 3089.98, + "probability": 1.0 + }, + { + "word": " off.", + "start": 3089.98, + "end": 3090.16, + "probability": 1.0 + } + ] + }, + { + "id": 1244, + "text": "And then they slowed your internet down.", + "start": 3090.3, + "end": 3091.66, + "words": [ + { + "word": " And", + "start": 3090.3, + "end": 3090.6, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 3090.6, + "end": 3090.66, + "probability": 1.0 + }, + { + "word": " they", + "start": 3090.66, + "end": 3090.82, + "probability": 1.0 + }, + { + "word": " slowed", + "start": 3090.82, + "end": 3091.02, + "probability": 0.2158203125 + }, + { + "word": " your", + "start": 3091.02, + "end": 3091.2, + "probability": 1.0 + }, + { + "word": " internet", + "start": 3091.2, + "end": 3091.5, + "probability": 0.845703125 + }, + { + "word": " down.", + "start": 3091.5, + "end": 3091.66, + "probability": 0.65185546875 + } + ] + }, + { + "id": 1245, + "text": "Yeah, and I'm like, what, why did, why?", + "start": 3091.7, + "end": 3093.22, + "words": [ + { + "word": " Yeah,", + "start": 3091.7, + "end": 3091.82, + "probability": 0.98193359375 + }, + { + "word": " and", + "start": 3091.82, + "end": 3091.9, + "probability": 0.47607421875 + }, + { + "word": " I'm", + "start": 3091.9, + "end": 3091.96, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 3091.96, + "end": 3092.04, + "probability": 1.0 + }, + { + "word": " what,", + "start": 3092.06, + "end": 3092.16, + "probability": 0.53125 + }, + { + "word": " why", + "start": 3092.26, + "end": 3092.84, + "probability": 1.0 + }, + { + "word": " did,", + "start": 3092.84, + "end": 3092.98, + "probability": 0.038055419921875 + }, + { + "word": " why?", + "start": 3093.02, + "end": 3093.22, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1246, + "text": "You're just trying to see if I noticed?", + "start": 3093.4, + "end": 3094.62, + "words": [ + { + "word": " You're", + "start": 3093.4, + "end": 3093.64, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 3093.64, + "end": 3093.76, + "probability": 1.0 + }, + { + "word": " trying", + "start": 3093.76, + "end": 3093.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 3093.92, + "end": 3094.0, + "probability": 1.0 + }, + { + "word": " see", + "start": 3094.0, + "end": 3094.12, + "probability": 1.0 + }, + { + "word": " if", + "start": 3094.12, + "end": 3094.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 3094.2, + "end": 3094.3, + "probability": 1.0 + }, + { + "word": " noticed?", + "start": 3094.3, + "end": 3094.62, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1247, + "text": "It's not cool.", + "start": 3095.48, + "end": 3096.18, + "words": [ + { + "word": " It's", + "start": 3095.48, + "end": 3095.8, + "probability": 0.95703125 + }, + { + "word": " not", + "start": 3095.8, + "end": 3095.94, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 3095.94, + "end": 3096.18, + "probability": 1.0 + } + ] + }, + { + "id": 1248, + "text": "So, you might have to call up and force a renegotiation of your bill.", + "start": 3096.42, + "end": 3100.18, + "words": [ + { + "word": " So,", + "start": 3096.42, + "end": 3096.72, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 3096.72, + "end": 3097.26, + "probability": 0.91943359375 + }, + { + "word": " might", + "start": 3097.26, + "end": 3097.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 3097.58, + "end": 3097.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 3097.72, + "end": 3097.88, + "probability": 1.0 + }, + { + "word": " call", + "start": 3097.88, + "end": 3098.04, + "probability": 1.0 + }, + { + "word": " up", + "start": 3098.04, + "end": 3098.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 3098.24, + "end": 3098.38, + "probability": 1.0 + }, + { + "word": " force", + "start": 3098.38, + "end": 3098.66, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3098.66, + "end": 3098.82, + "probability": 1.0 + }, + { + "word": " renegotiation", + "start": 3098.82, + "end": 3099.52, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 3099.52, + "end": 3099.8, + "probability": 0.99267578125 + }, + { + "word": " your", + "start": 3099.8, + "end": 3099.92, + "probability": 1.0 + }, + { + "word": " bill.", + "start": 3099.92, + "end": 3100.18, + "probability": 1.0 + } + ] + }, + { + "id": 1249, + "text": "I just renegotiated with them in August.", + "start": 3100.96, + "end": 3103.24, + "words": [ + { + "word": " I", + "start": 3100.96, + "end": 3101.28, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 3101.28, + "end": 3101.38, + "probability": 1.0 + }, + { + "word": " renegotiated", + "start": 3101.38, + "end": 3102.42, + "probability": 1.0 + }, + { + "word": " with", + "start": 3102.42, + "end": 3102.6, + "probability": 1.0 + }, + { + "word": " them", + "start": 3102.6, + "end": 3102.76, + "probability": 0.418701171875 + }, + { + "word": " in", + "start": 3102.76, + "end": 3102.86, + "probability": 1.0 + }, + { + "word": " August.", + "start": 3102.86, + "end": 3103.24, + "probability": 1.0 + } + ] + }, + { + "id": 1250, + "text": "Well, do it again.", + "start": 3103.52, + "end": 3104.08, + "words": [ + { + "word": " Well,", + "start": 3103.52, + "end": 3103.6, + "probability": 0.99560546875 + }, + { + "word": " do", + "start": 3103.6, + "end": 3103.74, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3103.74, + "end": 3103.88, + "probability": 1.0 + }, + { + "word": " again.", + "start": 3103.88, + "end": 3104.08, + "probability": 1.0 + } + ] + }, + { + "id": 1251, + "text": "The magic words are usually, I can get this cheaper elsewhere.", + "start": 3104.28, + "end": 3106.68, + "words": [ + { + "word": " The", + "start": 3104.28, + "end": 3104.46, + "probability": 0.9990234375 + }, + { + "word": " magic", + "start": 3104.46, + "end": 3104.68, + "probability": 0.9990234375 + }, + { + "word": " words", + "start": 3104.68, + "end": 3104.94, + "probability": 1.0 + }, + { + "word": " are", + "start": 3104.94, + "end": 3105.14, + "probability": 1.0 + }, + { + "word": " usually,", + "start": 3105.14, + "end": 3105.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 3105.58, + "end": 3105.7, + "probability": 1.0 + }, + { + "word": " can", + "start": 3105.7, + "end": 3105.84, + "probability": 1.0 + }, + { + "word": " get", + "start": 3105.84, + "end": 3106.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 3106.0, + "end": 3106.12, + "probability": 1.0 + }, + { + "word": " cheaper", + "start": 3106.12, + "end": 3106.34, + "probability": 0.99951171875 + }, + { + "word": " elsewhere.", + "start": 3106.34, + "end": 3106.68, + "probability": 1.0 + } + ] + }, + { + "id": 1252, + "text": "Right.", + "start": 3107.68, + "end": 3108.0, + "words": [ + { + "word": " Right.", + "start": 3107.68, + "end": 3108.0, + "probability": 0.95068359375 + } + ] + }, + { + "id": 1253, + "text": "The magic words are usually, I can get this cheaper elsewhere.", + "start": 3108.02, + "end": 3110.6, + "words": [ + { + "word": " The", + "start": 3108.02, + "end": 3108.12, + "probability": 0.89501953125 + }, + { + "word": " magic", + "start": 3108.12, + "end": 3108.16, + "probability": 1.0 + }, + { + "word": " words", + "start": 3108.16, + "end": 3108.5, + "probability": 1.0 + }, + { + "word": " are", + "start": 3108.5, + "end": 3108.74, + "probability": 1.0 + }, + { + "word": " usually,", + "start": 3108.74, + "end": 3108.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 3109.04, + "end": 3109.22, + "probability": 1.0 + }, + { + "word": " can", + "start": 3109.22, + "end": 3109.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 3109.36, + "end": 3109.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 3109.58, + "end": 3109.78, + "probability": 1.0 + }, + { + "word": " cheaper", + "start": 3109.78, + "end": 3110.1, + "probability": 1.0 + }, + { + "word": " elsewhere.", + "start": 3110.1, + "end": 3110.6, + "probability": 1.0 + } + ] + }, + { + "id": 1254, + "text": "Oh, I see.", + "start": 3110.86, + "end": 3111.54, + "words": [ + { + "word": " Oh,", + "start": 3110.86, + "end": 3111.18, + "probability": 0.869140625 + }, + { + "word": " I", + "start": 3111.3, + "end": 3111.4, + "probability": 0.978515625 + }, + { + "word": " see.", + "start": 3111.4, + "end": 3111.54, + "probability": 0.89404296875 + } + ] + }, + { + "id": 1255, + "text": "I see.", + "start": 3111.58, + "end": 3111.76, + "words": [ + { + "word": " I", + "start": 3111.58, + "end": 3111.76, + "probability": 0.031982421875 + }, + { + "word": " see.", + "start": 3111.76, + "end": 3111.76, + "probability": 0.87890625 + } + ] + }, + { + "id": 1256, + "text": "Okay.", + "start": 3111.76, + "end": 3112.16, + "words": [ + { + "word": " Okay.", + "start": 3111.76, + "end": 3112.16, + "probability": 0.92919921875 + } + ] + }, + { + "id": 1257, + "text": "And you talk a lot about passwords and it's changing passwords.", + "start": 3113.08, + "end": 3120.06, + "words": [ + { + "word": " And", + "start": 3113.08, + "end": 3113.52, + "probability": 0.8984375 + }, + { + "word": " you", + "start": 3113.52, + "end": 3113.96, + "probability": 0.98583984375 + }, + { + "word": " talk", + "start": 3113.96, + "end": 3114.26, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3114.26, + "end": 3114.5, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3114.5, + "end": 3114.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 3114.7, + "end": 3114.96, + "probability": 1.0 + }, + { + "word": " passwords", + "start": 3114.96, + "end": 3115.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 3115.6, + "end": 3116.7, + "probability": 0.26611328125 + }, + { + "word": " it's", + "start": 3116.7, + "end": 3119.12, + "probability": 0.83447265625 + }, + { + "word": " changing", + "start": 3119.12, + "end": 3119.4, + "probability": 0.99951171875 + }, + { + "word": " passwords.", + "start": 3119.4, + "end": 3120.06, + "probability": 1.0 + } + ] + }, + { + "id": 1258, + "text": "You know, I have a, when I go to the bank, I stutter wondering whether I'm going to have the right pin.", + "start": 3120.26, + "end": 3126.4, + "words": [ + { + "word": " You", + "start": 3120.26, + "end": 3120.44, + "probability": 0.75927734375 + }, + { + "word": " know,", + "start": 3120.44, + "end": 3120.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 3120.66, + "end": 3120.86, + "probability": 0.2308349609375 + }, + { + "word": " have", + "start": 3120.86, + "end": 3121.1, + "probability": 1.0 + }, + { + "word": " a,", + "start": 3121.1, + "end": 3121.24, + "probability": 0.78369140625 + }, + { + "word": " when", + "start": 3121.28, + "end": 3121.72, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 3121.72, + "end": 3121.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 3121.92, + "end": 3122.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3122.08, + "end": 3122.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 3122.18, + "end": 3122.3, + "probability": 1.0 + }, + { + "word": " bank,", + "start": 3122.3, + "end": 3122.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 3122.6, + "end": 3122.76, + "probability": 1.0 + }, + { + "word": " stutter", + "start": 3122.76, + "end": 3123.2, + "probability": 0.99609375 + }, + { + "word": " wondering", + "start": 3123.2, + "end": 3123.68, + "probability": 0.90625 + }, + { + "word": " whether", + "start": 3123.68, + "end": 3124.16, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 3124.16, + "end": 3124.54, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 3124.54, + "end": 3124.58, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 3124.58, + "end": 3124.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 3124.74, + "end": 3124.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3124.94, + "end": 3125.12, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3125.12, + "end": 3126.08, + "probability": 0.99951171875 + }, + { + "word": " pin.", + "start": 3126.08, + "end": 3126.4, + "probability": 0.904296875 + } + ] + }, + { + "id": 1259, + "text": "And I only have two accounts and that's only four, four numbers.", + "start": 3126.52, + "end": 3131.16, + "words": [ + { + "word": " And", + "start": 3126.52, + "end": 3126.62, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 3126.62, + "end": 3126.7, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 3126.7, + "end": 3126.96, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3126.96, + "end": 3127.14, + "probability": 1.0 + }, + { + "word": " two", + "start": 3127.14, + "end": 3127.36, + "probability": 0.99951171875 + }, + { + "word": " accounts", + "start": 3127.36, + "end": 3127.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 3127.84, + "end": 3128.06, + "probability": 0.95361328125 + }, + { + "word": " that's", + "start": 3128.06, + "end": 3128.32, + "probability": 1.0 + }, + { + "word": " only", + "start": 3128.32, + "end": 3128.52, + "probability": 1.0 + }, + { + "word": " four,", + "start": 3128.52, + "end": 3128.86, + "probability": 0.86669921875 + }, + { + "word": " four", + "start": 3128.98, + "end": 3130.56, + "probability": 1.0 + }, + { + "word": " numbers.", + "start": 3130.56, + "end": 3131.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1260, + "text": "Right.", + "start": 3131.36, + "end": 3131.74, + "words": [ + { + "word": " Right.", + "start": 3131.36, + "end": 3131.74, + "probability": 0.0243377685546875 + } + ] + }, + { + "id": 1261, + "text": "Let alone, I've started writing them down in a book.", + "start": 3131.9, + "end": 3135.02, + "words": [ + { + "word": " Let", + "start": 3131.9, + "end": 3131.9, + "probability": 0.418701171875 + }, + { + "word": " alone,", + "start": 3131.9, + "end": 3131.9, + "probability": 0.97265625 + }, + { + "word": " I've", + "start": 3132.06, + "end": 3133.04, + "probability": 1.0 + }, + { + "word": " started", + "start": 3133.04, + "end": 3133.38, + "probability": 1.0 + }, + { + "word": " writing", + "start": 3133.38, + "end": 3133.82, + "probability": 1.0 + }, + { + "word": " them", + "start": 3133.82, + "end": 3134.08, + "probability": 1.0 + }, + { + "word": " down", + "start": 3134.08, + "end": 3134.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 3134.36, + "end": 3134.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 3134.62, + "end": 3134.7, + "probability": 1.0 + }, + { + "word": " book.", + "start": 3134.7, + "end": 3135.02, + "probability": 1.0 + } + ] + }, + { + "id": 1262, + "text": "Which is?", + "start": 3135.28, + "end": 3135.76, + "words": [ + { + "word": " Which", + "start": 3135.28, + "end": 3135.62, + "probability": 0.424560546875 + }, + { + "word": " is?", + "start": 3135.62, + "end": 3135.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1263, + "text": "Passwords to go to this guy, to go to that guy, to go to this guy.", + "start": 3135.82, + "end": 3139.0, + "words": [ + { + "word": " Passwords", + "start": 3135.82, + "end": 3136.08, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 3136.08, + "end": 3136.42, + "probability": 0.994140625 + }, + { + "word": " go", + "start": 3136.42, + "end": 3136.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 3136.64, + "end": 3136.78, + "probability": 1.0 + }, + { + "word": " this", + "start": 3136.78, + "end": 3137.0, + "probability": 1.0 + }, + { + "word": " guy,", + "start": 3137.0, + "end": 3137.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 3137.3, + "end": 3137.4, + "probability": 1.0 + }, + { + "word": " go", + "start": 3137.4, + "end": 3137.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3137.54, + "end": 3137.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 3137.68, + "end": 3137.84, + "probability": 1.0 + }, + { + "word": " guy,", + "start": 3137.84, + "end": 3138.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 3138.18, + "end": 3138.28, + "probability": 1.0 + }, + { + "word": " go", + "start": 3138.28, + "end": 3138.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 3138.44, + "end": 3138.56, + "probability": 1.0 + }, + { + "word": " this", + "start": 3138.56, + "end": 3138.76, + "probability": 1.0 + }, + { + "word": " guy.", + "start": 3138.76, + "end": 3139.0, + "probability": 1.0 + } + ] + }, + { + "id": 1264, + "text": "Because when I...", + "start": 3139.96, + "end": 3141.06, + "words": [ + { + "word": " Because", + "start": 3139.96, + "end": 3140.4, + "probability": 0.982421875 + }, + { + "word": " when", + "start": 3140.4, + "end": 3140.74, + "probability": 1.0 + }, + { + "word": " I...", + "start": 3140.74, + "end": 3141.06, + "probability": 0.5009765625 + } + ] + }, + { + "id": 1265, + "text": "If I'm not using it every day, my mind says, what the hell is that?", + "start": 3141.06, + "end": 3145.9, + "words": [ + { + "word": " If", + "start": 3141.06, + "end": 3141.4, + "probability": 0.541015625 + }, + { + "word": " I'm", + "start": 3141.4, + "end": 3142.22, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 3142.22, + "end": 3142.36, + "probability": 1.0 + }, + { + "word": " using", + "start": 3142.36, + "end": 3142.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 3142.7, + "end": 3142.92, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 3142.92, + "end": 3143.18, + "probability": 0.9951171875 + }, + { + "word": " day,", + "start": 3143.18, + "end": 3143.48, + "probability": 1.0 + }, + { + "word": " my", + "start": 3143.56, + "end": 3143.72, + "probability": 0.99951171875 + }, + { + "word": " mind", + "start": 3143.72, + "end": 3144.12, + "probability": 1.0 + }, + { + "word": " says,", + "start": 3144.12, + "end": 3144.38, + "probability": 1.0 + }, + { + "word": " what", + "start": 3144.66, + "end": 3145.26, + "probability": 0.9638671875 + }, + { + "word": " the", + "start": 3145.26, + "end": 3145.4, + "probability": 1.0 + }, + { + "word": " hell", + "start": 3145.4, + "end": 3145.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 3145.56, + "end": 3145.7, + "probability": 1.0 + }, + { + "word": " that?", + "start": 3145.7, + "end": 3145.9, + "probability": 1.0 + } + ] + }, + { + "id": 1266, + "text": "Right.", + "start": 3146.3, + "end": 3146.66, + "words": [ + { + "word": " Right.", + "start": 3146.3, + "end": 3146.66, + "probability": 0.50341796875 + } + ] + }, + { + "id": 1267, + "text": "So, I have to, you know, I go to this bank and tomorrow I go to the other bank and I", + "start": 3146.98, + "end": 3153.02, + "words": [ + { + "word": " So,", + "start": 3146.98, + "end": 3147.44, + "probability": 0.84521484375 + }, + { + "word": " I", + "start": 3147.44, + "end": 3147.84, + "probability": 0.880859375 + }, + { + "word": " have", + "start": 3147.84, + "end": 3148.12, + "probability": 0.53466796875 + }, + { + "word": " to,", + "start": 3148.12, + "end": 3148.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 3148.4, + "end": 3148.68, + "probability": 0.99365234375 + }, + { + "word": " know,", + "start": 3148.68, + "end": 3148.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 3148.78, + "end": 3148.88, + "probability": 1.0 + }, + { + "word": " go", + "start": 3148.88, + "end": 3149.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 3149.06, + "end": 3149.16, + "probability": 1.0 + }, + { + "word": " this", + "start": 3149.16, + "end": 3150.14, + "probability": 0.9990234375 + }, + { + "word": " bank", + "start": 3150.14, + "end": 3150.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 3150.64, + "end": 3150.84, + "probability": 0.62744140625 + }, + { + "word": " tomorrow", + "start": 3150.84, + "end": 3151.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 3151.1, + "end": 3151.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 3151.32, + "end": 3151.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 3151.48, + "end": 3151.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3151.58, + "end": 3151.72, + "probability": 1.0 + }, + { + "word": " other", + "start": 3151.72, + "end": 3151.96, + "probability": 1.0 + }, + { + "word": " bank", + "start": 3151.96, + "end": 3152.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 3152.24, + "end": 3152.82, + "probability": 0.60498046875 + }, + { + "word": " I", + "start": 3152.82, + "end": 3153.02, + "probability": 1.0 + } + ] + }, + { + "id": 1268, + "text": "got to go and get my little book that I got it written down in to make sure that I'm putting", + "start": 3153.02, + "end": 3157.58, + "words": [ + { + "word": " got", + "start": 3153.02, + "end": 3153.2, + "probability": 0.66357421875 + }, + { + "word": " to", + "start": 3153.2, + "end": 3153.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 3153.32, + "end": 3153.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 3153.48, + "end": 3153.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 3153.68, + "end": 3153.9, + "probability": 1.0 + }, + { + "word": " my", + "start": 3153.9, + "end": 3154.04, + "probability": 1.0 + }, + { + "word": " little", + "start": 3154.04, + "end": 3154.28, + "probability": 1.0 + }, + { + "word": " book", + "start": 3154.28, + "end": 3154.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 3154.54, + "end": 3154.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 3154.78, + "end": 3154.88, + "probability": 1.0 + }, + { + "word": " got", + "start": 3154.88, + "end": 3155.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 3155.02, + "end": 3155.16, + "probability": 0.64599609375 + }, + { + "word": " written", + "start": 3155.16, + "end": 3155.32, + "probability": 1.0 + }, + { + "word": " down", + "start": 3155.32, + "end": 3155.58, + "probability": 1.0 + }, + { + "word": " in", + "start": 3155.58, + "end": 3155.84, + "probability": 0.984375 + }, + { + "word": " to", + "start": 3155.84, + "end": 3155.98, + "probability": 0.9931640625 + }, + { + "word": " make", + "start": 3155.98, + "end": 3156.12, + "probability": 1.0 + }, + { + "word": " sure", + "start": 3156.12, + "end": 3156.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 3156.4, + "end": 3157.22, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3157.22, + "end": 3157.4, + "probability": 1.0 + }, + { + "word": " putting", + "start": 3157.4, + "end": 3157.58, + "probability": 1.0 + } + ] + }, + { + "id": 1269, + "text": "all the right information in.", + "start": 3157.58, + "end": 3158.96, + "words": [ + { + "word": " all", + "start": 3157.58, + "end": 3157.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 3157.78, + "end": 3157.92, + "probability": 1.0 + }, + { + "word": " right", + "start": 3157.92, + "end": 3158.1, + "probability": 1.0 + }, + { + "word": " information", + "start": 3158.1, + "end": 3158.6, + "probability": 1.0 + }, + { + "word": " in.", + "start": 3158.6, + "end": 3158.96, + "probability": 1.0 + } + ] + }, + { + "id": 1270, + "text": "And so, like, I don't like changing passwords.", + "start": 3159.26, + "end": 3162.8, + "words": [ + { + "word": " And", + "start": 3159.26, + "end": 3159.72, + "probability": 0.98388671875 + }, + { + "word": " so,", + "start": 3159.72, + "end": 3160.04, + "probability": 0.9951171875 + }, + { + "word": " like,", + "start": 3160.14, + "end": 3160.42, + "probability": 0.98974609375 + }, + { + "word": " I", + "start": 3160.5, + "end": 3161.12, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3161.12, + "end": 3161.56, + "probability": 1.0 + }, + { + "word": " like", + "start": 3161.56, + "end": 3161.78, + "probability": 1.0 + }, + { + "word": " changing", + "start": 3161.78, + "end": 3162.18, + "probability": 1.0 + }, + { + "word": " passwords.", + "start": 3162.18, + "end": 3162.8, + "probability": 1.0 + } + ] + }, + { + "id": 1271, + "text": "I understand that, but it's for your own good.", + "start": 3163.26, + "end": 3165.64, + "words": [ + { + "word": " I", + "start": 3163.26, + "end": 3163.58, + "probability": 1.0 + }, + { + "word": " understand", + "start": 3163.58, + "end": 3164.0, + "probability": 1.0 + }, + { + "word": " that,", + "start": 3164.0, + "end": 3164.32, + "probability": 1.0 + }, + { + "word": " but", + "start": 3164.4, + "end": 3164.56, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3164.56, + "end": 3164.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 3164.8, + "end": 3164.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 3164.88, + "end": 3165.16, + "probability": 1.0 + }, + { + "word": " own", + "start": 3165.16, + "end": 3165.42, + "probability": 1.0 + }, + { + "word": " good.", + "start": 3165.42, + "end": 3165.64, + "probability": 1.0 + } + ] + }, + { + "id": 1272, + "text": "I mean, you don't want anybody to have access to your stuff.", + "start": 3166.32, + "end": 3169.04, + "words": [ + { + "word": " I", + "start": 3166.32, + "end": 3166.78, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 3166.78, + "end": 3166.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 3166.94, + "end": 3167.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3167.2, + "end": 3167.58, + "probability": 1.0 + }, + { + "word": " want", + "start": 3167.58, + "end": 3167.66, + "probability": 1.0 + }, + { + "word": " anybody", + "start": 3167.66, + "end": 3167.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 3167.82, + "end": 3168.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 3168.02, + "end": 3168.12, + "probability": 1.0 + }, + { + "word": " access", + "start": 3168.12, + "end": 3168.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 3168.42, + "end": 3168.64, + "probability": 1.0 + }, + { + "word": " your", + "start": 3168.64, + "end": 3168.76, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3168.76, + "end": 3169.04, + "probability": 1.0 + } + ] + }, + { + "id": 1273, + "text": "And believe me.", + "start": 3169.26, + "end": 3170.46, + "words": [ + { + "word": " And", + "start": 3169.26, + "end": 3169.72, + "probability": 0.99951171875 + }, + { + "word": " believe", + "start": 3169.72, + "end": 3170.18, + "probability": 0.9814453125 + }, + { + "word": " me.", + "start": 3170.18, + "end": 3170.46, + "probability": 1.0 + } + ] + }, + { + "id": 1274, + "text": "They will have access to your stuff.", + "start": 3170.46, + "end": 3172.02, + "words": [ + { + "word": " They", + "start": 3170.46, + "end": 3170.74, + "probability": 0.89697265625 + }, + { + "word": " will", + "start": 3170.74, + "end": 3170.96, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3170.96, + "end": 3171.18, + "probability": 1.0 + }, + { + "word": " access", + "start": 3171.18, + "end": 3171.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 3171.48, + "end": 3171.74, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 3171.74, + "end": 3171.86, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3171.86, + "end": 3172.02, + "probability": 1.0 + } + ] + }, + { + "id": 1275, + "text": "In fact, there's a website that you can go to that will tell you whether or not somebody", + "start": 3172.12, + "end": 3176.34, + "words": [ + { + "word": " In", + "start": 3172.12, + "end": 3172.16, + "probability": 0.99462890625 + }, + { + "word": " fact,", + "start": 3172.16, + "end": 3172.24, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3172.32, + "end": 3172.46, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3172.46, + "end": 3172.54, + "probability": 0.99755859375 + }, + { + "word": " website", + "start": 3172.54, + "end": 3173.32, + "probability": 0.99365234375 + }, + { + "word": " that", + "start": 3173.32, + "end": 3173.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 3173.76, + "end": 3173.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 3173.94, + "end": 3174.08, + "probability": 1.0 + }, + { + "word": " go", + "start": 3174.08, + "end": 3174.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 3174.26, + "end": 3174.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 3174.44, + "end": 3175.06, + "probability": 0.9970703125 + }, + { + "word": " will", + "start": 3175.06, + "end": 3175.18, + "probability": 1.0 + }, + { + "word": " tell", + "start": 3175.18, + "end": 3175.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 3175.4, + "end": 3175.6, + "probability": 1.0 + }, + { + "word": " whether", + "start": 3175.6, + "end": 3175.78, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 3175.78, + "end": 3175.9, + "probability": 1.0 + }, + { + "word": " not", + "start": 3175.9, + "end": 3176.04, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 3176.04, + "end": 3176.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1276, + "text": "has probably has your password or not.", + "start": 3176.34, + "end": 3178.42, + "words": [ + { + "word": " has", + "start": 3176.34, + "end": 3176.96, + "probability": 0.027130126953125 + }, + { + "word": " probably", + "start": 3176.96, + "end": 3177.26, + "probability": 0.96875 + }, + { + "word": " has", + "start": 3177.26, + "end": 3177.58, + "probability": 0.9931640625 + }, + { + "word": " your", + "start": 3177.58, + "end": 3177.76, + "probability": 1.0 + }, + { + "word": " password", + "start": 3177.76, + "end": 3178.16, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 3178.16, + "end": 3178.34, + "probability": 0.54248046875 + }, + { + "word": " not.", + "start": 3178.34, + "end": 3178.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1277, + "text": "And in a lot of cases, if you use common websites, they do.", + "start": 3178.42, + "end": 3181.12, + "words": [ + { + "word": " And", + "start": 3178.42, + "end": 3178.54, + "probability": 0.869140625 + }, + { + "word": " in", + "start": 3178.54, + "end": 3178.54, + "probability": 0.4521484375 + }, + { + "word": " a", + "start": 3178.54, + "end": 3178.66, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3178.66, + "end": 3178.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 3178.86, + "end": 3178.94, + "probability": 1.0 + }, + { + "word": " cases,", + "start": 3178.94, + "end": 3179.24, + "probability": 1.0 + }, + { + "word": " if", + "start": 3179.28, + "end": 3179.48, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 3179.48, + "end": 3179.58, + "probability": 1.0 + }, + { + "word": " use", + "start": 3179.58, + "end": 3179.8, + "probability": 1.0 + }, + { + "word": " common", + "start": 3179.8, + "end": 3180.14, + "probability": 0.99951171875 + }, + { + "word": " websites,", + "start": 3180.14, + "end": 3180.52, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3180.74, + "end": 3180.94, + "probability": 0.99951171875 + }, + { + "word": " do.", + "start": 3180.94, + "end": 3181.12, + "probability": 1.0 + } + ] + }, + { + "id": 1278, + "text": "Right.", + "start": 3181.68, + "end": 3182.08, + "words": [ + { + "word": " Right.", + "start": 3181.68, + "end": 3182.08, + "probability": 0.9677734375 + } + ] + }, + { + "id": 1279, + "text": "So, I'm not a Facebook guy.", + "start": 3182.16, + "end": 3184.08, + "words": [ + { + "word": " So,", + "start": 3182.16, + "end": 3182.38, + "probability": 0.81396484375 + }, + { + "word": " I'm", + "start": 3182.44, + "end": 3182.66, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 3182.66, + "end": 3182.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 3182.74, + "end": 3182.9, + "probability": 0.90283203125 + }, + { + "word": " Facebook", + "start": 3182.9, + "end": 3183.6, + "probability": 0.921875 + }, + { + "word": " guy.", + "start": 3183.6, + "end": 3184.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1280, + "text": "I'm not on there.", + "start": 3184.24, + "end": 3185.1, + "words": [ + { + "word": " I'm", + "start": 3184.24, + "end": 3184.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 3184.54, + "end": 3184.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 3184.72, + "end": 3184.92, + "probability": 0.99462890625 + }, + { + "word": " there.", + "start": 3184.92, + "end": 3185.1, + "probability": 1.0 + } + ] + }, + { + "id": 1281, + "text": "I'm not a Twitter.", + "start": 3185.14, + "end": 3185.82, + "words": [ + { + "word": " I'm", + "start": 3185.14, + "end": 3185.32, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 3185.32, + "end": 3185.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 3185.44, + "end": 3185.6, + "probability": 0.98876953125 + }, + { + "word": " Twitter.", + "start": 3185.6, + "end": 3185.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1282, + "text": "I don't...", + "start": 3186.02, + "end": 3186.54, + "words": [ + { + "word": " I", + "start": 3186.02, + "end": 3186.24, + "probability": 0.91064453125 + }, + { + "word": " don't...", + "start": 3186.24, + "end": 3186.54, + "probability": 0.685546875 + } + ] + }, + { + "id": 1283, + "text": "Who's your email provider?", + "start": 3186.54, + "end": 3187.4, + "words": [ + { + "word": " Who's", + "start": 3186.54, + "end": 3186.86, + "probability": 0.99169921875 + }, + { + "word": " your", + "start": 3186.86, + "end": 3186.9, + "probability": 1.0 + }, + { + "word": " email", + "start": 3186.9, + "end": 3187.16, + "probability": 0.978515625 + }, + { + "word": " provider?", + "start": 3187.16, + "end": 3187.4, + "probability": 1.0 + } + ] + }, + { + "id": 1284, + "text": "My what?", + "start": 3189.12, + "end": 3189.92, + "words": [ + { + "word": " My", + "start": 3189.12, + "end": 3189.52, + "probability": 0.99658203125 + }, + { + "word": " what?", + "start": 3189.52, + "end": 3189.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1285, + "text": "What's after the at symbol in your email address?", + "start": 3190.38, + "end": 3192.42, + "words": [ + { + "word": " What's", + "start": 3190.38, + "end": 3190.78, + "probability": 0.998046875 + }, + { + "word": " after", + "start": 3190.78, + "end": 3190.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3190.94, + "end": 3191.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 3191.12, + "end": 3191.3, + "probability": 0.9990234375 + }, + { + "word": " symbol", + "start": 3191.3, + "end": 3191.6, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3191.6, + "end": 3191.8, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3191.8, + "end": 3191.92, + "probability": 1.0 + }, + { + "word": " email", + "start": 3191.92, + "end": 3192.18, + "probability": 1.0 + }, + { + "word": " address?", + "start": 3192.18, + "end": 3192.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1286, + "text": "I don't know.", + "start": 3194.54, + "end": 3195.5, + "words": [ + { + "word": " I", + "start": 3194.54, + "end": 3194.94, + "probability": 0.93701171875 + }, + { + "word": " don't", + "start": 3194.94, + "end": 3195.34, + "probability": 1.0 + }, + { + "word": " know.", + "start": 3195.34, + "end": 3195.5, + "probability": 1.0 + } + ] + }, + { + "id": 1287, + "text": "Oh, doc.com.", + "start": 3195.94, + "end": 3197.36, + "words": [ + { + "word": " Oh,", + "start": 3195.94, + "end": 3196.34, + "probability": 0.77197265625 + }, + { + "word": " doc", + "start": 3196.38, + "end": 3196.64, + "probability": 0.72265625 + }, + { + "word": ".com.", + "start": 3196.64, + "end": 3197.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 1288, + "text": "No, before that, though.", + "start": 3197.6, + "end": 3198.46, + "words": [ + { + "word": " No,", + "start": 3197.6, + "end": 3197.74, + "probability": 0.98779296875 + }, + { + "word": " before", + "start": 3197.76, + "end": 3197.96, + "probability": 1.0 + }, + { + "word": " that,", + "start": 3197.96, + "end": 3198.22, + "probability": 1.0 + }, + { + "word": " though.", + "start": 3198.28, + "end": 3198.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1289, + "text": "Cox.", + "start": 3199.12, + "end": 3199.52, + "words": [ + { + "word": " Cox.", + "start": 3199.12, + "end": 3199.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 1290, + "text": "There you go.", + "start": 3199.68, + "end": 3200.4, + "words": [ + { + "word": " There", + "start": 3199.68, + "end": 3200.06, + "probability": 0.89404296875 + }, + { + "word": " you", + "start": 3200.06, + "end": 3200.22, + "probability": 0.9990234375 + }, + { + "word": " go.", + "start": 3200.22, + "end": 3200.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1291, + "text": "No, no, no, no, no, no.", + "start": 3200.46, + "end": 3201.7, + "words": [ + { + "word": " No,", + "start": 3200.46, + "end": 3200.68, + "probability": 0.7314453125 + }, + { + "word": " no,", + "start": 3200.8, + "end": 3200.96, + "probability": 0.99951171875 + }, + { + "word": " no,", + "start": 3201.0, + "end": 3201.2, + "probability": 1.0 + }, + { + "word": " no,", + "start": 3201.2, + "end": 3201.38, + "probability": 0.99951171875 + }, + { + "word": " no,", + "start": 3201.38, + "end": 3201.62, + "probability": 0.99951171875 + }, + { + "word": " no.", + "start": 3201.62, + "end": 3201.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 1292, + "text": "Yeah.", + "start": 3201.7, + "end": 3201.82, + "words": [ + { + "word": " Yeah.", + "start": 3201.7, + "end": 3201.82, + "probability": 0.97216796875 + } + ] + }, + { + "id": 1293, + "text": "Cox.", + "start": 3201.84, + "end": 3202.18, + "words": [ + { + "word": " Cox.", + "start": 3201.84, + "end": 3202.18, + "probability": 0.978515625 + } + ] + }, + { + "id": 1294, + "text": "Cox.com.", + "start": 3202.28, + "end": 3202.98, + "words": [ + { + "word": " Cox", + "start": 3202.28, + "end": 3202.5, + "probability": 0.015960693359375 + }, + { + "word": ".com.", + "start": 3202.5, + "end": 3202.98, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1295, + "text": "Yeah.", + "start": 3203.16, + "end": 3203.32, + "words": [ + { + "word": " Yeah.", + "start": 3203.16, + "end": 3203.32, + "probability": 0.85302734375 + } + ] + }, + { + "id": 1296, + "text": "No, I don't have Cox.com.", + "start": 3203.62, + "end": 3205.46, + "words": [ + { + "word": " No,", + "start": 3203.62, + "end": 3204.06, + "probability": 0.9873046875 + }, + { + "word": " I", + "start": 3204.16, + "end": 3204.26, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3204.26, + "end": 3204.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 3204.5, + "end": 3204.56, + "probability": 0.9990234375 + }, + { + "word": " Cox", + "start": 3204.56, + "end": 3204.94, + "probability": 0.80908203125 + }, + { + "word": ".com.", + "start": 3204.94, + "end": 3205.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1297, + "text": "I've got...", + "start": 3205.52, + "end": 3206.32, + "words": [ + { + "word": " I've", + "start": 3205.52, + "end": 3205.8, + "probability": 0.994140625 + }, + { + "word": " got...", + "start": 3205.8, + "end": 3206.32, + "probability": 0.55908203125 + } + ] + }, + { + "id": 1298, + "text": "You see?", + "start": 3206.98, + "end": 3207.62, + "words": [ + { + "word": " You", + "start": 3206.98, + "end": 3207.42, + "probability": 0.99365234375 + }, + { + "word": " see?", + "start": 3207.42, + "end": 3207.62, + "probability": 1.0 + } + ] + }, + { + "id": 1299, + "text": "See?", + "start": 3207.84, + "end": 3208.08, + "words": [ + { + "word": " See?", + "start": 3207.84, + "end": 3208.08, + "probability": 0.94677734375 + } + ] + }, + { + "id": 1300, + "text": "All right.", + "start": 3208.28, + "end": 3208.92, + "words": [ + { + "word": " All", + "start": 3208.28, + "end": 3208.72, + "probability": 0.96728515625 + }, + { + "word": " right.", + "start": 3208.72, + "end": 3208.92, + "probability": 1.0 + } + ] + }, + { + "id": 1301, + "text": "So, chances are that if you're using a provider email, right, if you're, like, either email", + "start": 3208.94, + "end": 3214.46, + "words": [ + { + "word": " So,", + "start": 3208.94, + "end": 3209.18, + "probability": 0.92724609375 + }, + { + "word": " chances", + "start": 3209.22, + "end": 3209.98, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 3209.98, + "end": 3210.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3210.3, + "end": 3210.52, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 3210.52, + "end": 3210.7, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 3210.7, + "end": 3210.82, + "probability": 1.0 + }, + { + "word": " using", + "start": 3210.82, + "end": 3211.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 3211.1, + "end": 3211.38, + "probability": 1.0 + }, + { + "word": " provider", + "start": 3211.38, + "end": 3211.9, + "probability": 1.0 + }, + { + "word": " email,", + "start": 3211.9, + "end": 3212.34, + "probability": 0.982421875 + }, + { + "word": " right,", + "start": 3212.62, + "end": 3213.12, + "probability": 0.90234375 + }, + { + "word": " if", + "start": 3213.14, + "end": 3213.3, + "probability": 0.998046875 + }, + { + "word": " you're,", + "start": 3213.3, + "end": 3213.5, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3213.5, + "end": 3213.76, + "probability": 0.99951171875 + }, + { + "word": " either", + "start": 3213.78, + "end": 3214.02, + "probability": 0.984375 + }, + { + "word": " email", + "start": 3214.02, + "end": 3214.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1302, + "text": "provided by your internet provider or especially if you're using something like Yahoo for mail", + "start": 3214.46, + "end": 3221.2, + "words": [ + { + "word": " provided", + "start": 3214.46, + "end": 3214.66, + "probability": 0.99609375 + }, + { + "word": " by", + "start": 3214.66, + "end": 3215.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 3215.06, + "end": 3215.34, + "probability": 1.0 + }, + { + "word": " internet", + "start": 3215.34, + "end": 3216.76, + "probability": 0.7958984375 + }, + { + "word": " provider", + "start": 3216.76, + "end": 3217.12, + "probability": 1.0 + }, + { + "word": " or", + "start": 3217.12, + "end": 3217.78, + "probability": 0.55419921875 + }, + { + "word": " especially", + "start": 3217.78, + "end": 3218.38, + "probability": 0.99658203125 + }, + { + "word": " if", + "start": 3218.38, + "end": 3218.9, + "probability": 0.95458984375 + }, + { + "word": " you're", + "start": 3218.9, + "end": 3218.98, + "probability": 1.0 + }, + { + "word": " using", + "start": 3218.98, + "end": 3219.16, + "probability": 1.0 + }, + { + "word": " something", + "start": 3219.16, + "end": 3219.34, + "probability": 1.0 + }, + { + "word": " like", + "start": 3219.34, + "end": 3219.68, + "probability": 1.0 + }, + { + "word": " Yahoo", + "start": 3219.68, + "end": 3219.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 3219.96, + "end": 3220.88, + "probability": 0.970703125 + }, + { + "word": " mail", + "start": 3220.88, + "end": 3221.2, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1303, + "text": "or AOL, that those...", + "start": 3221.2, + "end": 3223.64, + "words": [ + { + "word": " or", + "start": 3221.2, + "end": 3221.92, + "probability": 0.99951171875 + }, + { + "word": " AOL,", + "start": 3221.92, + "end": 3222.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 3222.52, + "end": 3222.92, + "probability": 0.837890625 + }, + { + "word": " those...", + "start": 3222.92, + "end": 3223.64, + "probability": 0.92138671875 + } + ] + }, + { + "id": 1304, + "text": "Oh, I know what it is now.", + "start": 3223.64, + "end": 3224.68, + "words": [ + { + "word": " Oh,", + "start": 3223.64, + "end": 3223.84, + "probability": 0.9736328125 + }, + { + "word": " I", + "start": 3223.84, + "end": 3223.88, + "probability": 1.0 + }, + { + "word": " know", + "start": 3223.88, + "end": 3224.02, + "probability": 1.0 + }, + { + "word": " what", + "start": 3224.02, + "end": 3224.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 3224.18, + "end": 3224.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 3224.3, + "end": 3224.5, + "probability": 1.0 + }, + { + "word": " now.", + "start": 3224.5, + "end": 3224.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1305, + "text": "Hotmail and Google.", + "start": 3224.76, + "end": 3226.4, + "words": [ + { + "word": " Hotmail", + "start": 3224.76, + "end": 3225.2, + "probability": 0.994140625 + }, + { + "word": " and", + "start": 3225.2, + "end": 3225.68, + "probability": 0.99755859375 + }, + { + "word": " Google.", + "start": 3225.68, + "end": 3226.4, + "probability": 1.0 + } + ] + }, + { + "id": 1306, + "text": "All right.", + "start": 3226.82, + "end": 3227.42, + "words": [ + { + "word": " All", + "start": 3226.82, + "end": 3227.26, + "probability": 0.99755859375 + }, + { + "word": " right.", + "start": 3227.26, + "end": 3227.42, + "probability": 1.0 + } + ] + }, + { + "id": 1307, + "text": "The Google one, you're probably relatively safe there.", + "start": 3227.44, + "end": 3230.06, + "words": [ + { + "word": " The", + "start": 3227.44, + "end": 3227.56, + "probability": 0.97412109375 + }, + { + "word": " Google", + "start": 3227.56, + "end": 3227.78, + "probability": 1.0 + }, + { + "word": " one,", + "start": 3227.78, + "end": 3228.06, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 3228.2, + "end": 3228.68, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3228.68, + "end": 3228.96, + "probability": 1.0 + }, + { + "word": " relatively", + "start": 3228.96, + "end": 3229.34, + "probability": 1.0 + }, + { + "word": " safe", + "start": 3229.34, + "end": 3229.8, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3229.8, + "end": 3230.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1308, + "text": "Okay.", + "start": 3230.46, + "end": 3230.86, + "words": [ + { + "word": " Okay.", + "start": 3230.46, + "end": 3230.86, + "probability": 0.8447265625 + } + ] + }, + { + "id": 1309, + "text": "There was a Hotmail breach, wasn't there?", + "start": 3231.3, + "end": 3233.06, + "words": [ + { + "word": " There", + "start": 3231.3, + "end": 3231.78, + "probability": 0.93994140625 + }, + { + "word": " was", + "start": 3231.78, + "end": 3232.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3232.0, + "end": 3232.16, + "probability": 0.99951171875 + }, + { + "word": " Hotmail", + "start": 3232.16, + "end": 3232.44, + "probability": 0.8017578125 + }, + { + "word": " breach,", + "start": 3232.44, + "end": 3232.62, + "probability": 0.974609375 + }, + { + "word": " wasn't", + "start": 3232.74, + "end": 3232.92, + "probability": 1.0 + }, + { + "word": " there?", + "start": 3232.92, + "end": 3233.06, + "probability": 1.0 + } + ] + }, + { + "id": 1310, + "text": "But there's several Hotmail breaches.", + "start": 3233.28, + "end": 3235.0, + "words": [ + { + "word": " But", + "start": 3233.28, + "end": 3233.52, + "probability": 0.98876953125 + }, + { + "word": " there's", + "start": 3233.52, + "end": 3233.74, + "probability": 0.990234375 + }, + { + "word": " several", + "start": 3233.74, + "end": 3234.1, + "probability": 1.0 + }, + { + "word": " Hotmail", + "start": 3234.1, + "end": 3234.58, + "probability": 0.9990234375 + }, + { + "word": " breaches.", + "start": 3234.58, + "end": 3235.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1311, + "text": "So, if you haven't changed your password since, I don't know, ever, then somebody knows your", + "start": 3235.88, + "end": 3241.28, + "words": [ + { + "word": " So,", + "start": 3235.88, + "end": 3236.36, + "probability": 0.98828125 + }, + { + "word": " if", + "start": 3236.52, + "end": 3236.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3236.84, + "end": 3236.96, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 3236.96, + "end": 3237.1, + "probability": 1.0 + }, + { + "word": " changed", + "start": 3237.1, + "end": 3237.24, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3237.24, + "end": 3237.44, + "probability": 1.0 + }, + { + "word": " password", + "start": 3237.44, + "end": 3237.78, + "probability": 0.99951171875 + }, + { + "word": " since,", + "start": 3237.78, + "end": 3238.1, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 3238.26, + "end": 3238.62, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3238.62, + "end": 3238.76, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3238.76, + "end": 3238.88, + "probability": 1.0 + }, + { + "word": " ever,", + "start": 3238.96, + "end": 3239.32, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 3239.48, + "end": 3239.94, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 3239.94, + "end": 3240.96, + "probability": 0.998046875 + }, + { + "word": " knows", + "start": 3240.96, + "end": 3241.14, + "probability": 1.0 + }, + { + "word": " your", + "start": 3241.14, + "end": 3241.28, + "probability": 1.0 + } + ] + }, + { + "id": 1312, + "text": "password.", + "start": 3241.28, + "end": 3241.6, + "words": [ + { + "word": " password.", + "start": 3241.28, + "end": 3241.6, + "probability": 1.0 + } + ] + }, + { + "id": 1313, + "text": "And in some cases, you know, people just don't care, right?", + "start": 3242.62, + "end": 3245.74, + "words": [ + { + "word": " And", + "start": 3242.62, + "end": 3243.1, + "probability": 0.98193359375 + }, + { + "word": " in", + "start": 3243.1, + "end": 3243.58, + "probability": 0.9658203125 + }, + { + "word": " some", + "start": 3243.58, + "end": 3244.28, + "probability": 0.99951171875 + }, + { + "word": " cases,", + "start": 3244.28, + "end": 3244.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 3244.7, + "end": 3244.74, + "probability": 0.7431640625 + }, + { + "word": " know,", + "start": 3244.74, + "end": 3244.84, + "probability": 1.0 + }, + { + "word": " people", + "start": 3244.86, + "end": 3245.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 3245.02, + "end": 3245.2, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3245.2, + "end": 3245.36, + "probability": 1.0 + }, + { + "word": " care,", + "start": 3245.36, + "end": 3245.48, + "probability": 1.0 + }, + { + "word": " right?", + "start": 3245.56, + "end": 3245.74, + "probability": 1.0 + } + ] + }, + { + "id": 1314, + "text": "They're just like, I don't really have anything to hide here.", + "start": 3245.78, + "end": 3248.58, + "words": [ + { + "word": " They're", + "start": 3245.78, + "end": 3245.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 3245.92, + "end": 3246.08, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3246.08, + "end": 3246.26, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 3246.36, + "end": 3246.52, + "probability": 0.9267578125 + }, + { + "word": " don't", + "start": 3246.52, + "end": 3246.72, + "probability": 1.0 + }, + { + "word": " really", + "start": 3246.72, + "end": 3247.08, + "probability": 0.9970703125 + }, + { + "word": " have", + "start": 3247.08, + "end": 3247.32, + "probability": 1.0 + }, + { + "word": " anything", + "start": 3247.32, + "end": 3247.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3247.5, + "end": 3247.76, + "probability": 1.0 + }, + { + "word": " hide", + "start": 3247.76, + "end": 3248.28, + "probability": 1.0 + }, + { + "word": " here.", + "start": 3248.28, + "end": 3248.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1315, + "text": "But it can cause larger problems than that.", + "start": 3249.96, + "end": 3253.44, + "words": [ + { + "word": " But", + "start": 3249.96, + "end": 3250.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 3250.44, + "end": 3250.92, + "probability": 0.9931640625 + }, + { + "word": " can", + "start": 3250.92, + "end": 3251.6, + "probability": 1.0 + }, + { + "word": " cause", + "start": 3251.6, + "end": 3251.9, + "probability": 1.0 + }, + { + "word": " larger", + "start": 3251.9, + "end": 3252.22, + "probability": 1.0 + }, + { + "word": " problems", + "start": 3252.22, + "end": 3252.86, + "probability": 1.0 + }, + { + "word": " than", + "start": 3252.86, + "end": 3253.16, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3253.16, + "end": 3253.44, + "probability": 1.0 + } + ] + }, + { + "id": 1316, + "text": "You can end up being basically the source of a spam email.", + "start": 3254.34, + "end": 3259.22, + "words": [ + { + "word": " You", + "start": 3254.34, + "end": 3254.82, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 3254.82, + "end": 3255.18, + "probability": 1.0 + }, + { + "word": " end", + "start": 3255.18, + "end": 3255.42, + "probability": 1.0 + }, + { + "word": " up", + "start": 3255.42, + "end": 3255.6, + "probability": 1.0 + }, + { + "word": " being", + "start": 3255.6, + "end": 3255.84, + "probability": 1.0 + }, + { + "word": " basically", + "start": 3255.84, + "end": 3256.78, + "probability": 0.83203125 + }, + { + "word": " the", + "start": 3256.78, + "end": 3257.92, + "probability": 1.0 + }, + { + "word": " source", + "start": 3257.92, + "end": 3258.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 3258.22, + "end": 3258.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 3258.52, + "end": 3258.64, + "probability": 1.0 + }, + { + "word": " spam", + "start": 3258.64, + "end": 3258.9, + "probability": 0.99951171875 + }, + { + "word": " email.", + "start": 3258.9, + "end": 3259.22, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1317, + "text": "So, if you're using a provider email, if somebody can guess your email password, and that happens", + "start": 3259.22, + "end": 3262.16, + "words": [ + { + "word": " So,", + "start": 3259.22, + "end": 3259.44, + "probability": 0.023193359375 + }, + { + "word": " if", + "start": 3259.44, + "end": 3259.44, + "probability": 0.01739501953125 + }, + { + "word": " you're", + "start": 3259.44, + "end": 3259.44, + "probability": 0.40673828125 + }, + { + "word": " using", + "start": 3259.44, + "end": 3259.44, + "probability": 0.06640625 + }, + { + "word": " a", + "start": 3259.44, + "end": 3259.44, + "probability": 0.10205078125 + }, + { + "word": " provider", + "start": 3259.44, + "end": 3259.44, + "probability": 0.00018227100372314453 + }, + { + "word": " email,", + "start": 3259.44, + "end": 3259.44, + "probability": 0.00814056396484375 + }, + { + "word": " if", + "start": 3259.44, + "end": 3260.22, + "probability": 0.68017578125 + }, + { + "word": " somebody", + "start": 3260.22, + "end": 3260.44, + "probability": 0.9580078125 + }, + { + "word": " can", + "start": 3260.44, + "end": 3260.62, + "probability": 0.9951171875 + }, + { + "word": " guess", + "start": 3260.62, + "end": 3260.78, + "probability": 0.916015625 + }, + { + "word": " your", + "start": 3260.78, + "end": 3260.9, + "probability": 0.99609375 + }, + { + "word": " email", + "start": 3260.9, + "end": 3261.12, + "probability": 0.99755859375 + }, + { + "word": " password,", + "start": 3261.12, + "end": 3261.48, + "probability": 0.99267578125 + }, + { + "word": " and", + "start": 3261.62, + "end": 3261.76, + "probability": 0.95947265625 + }, + { + "word": " that", + "start": 3261.76, + "end": 3261.86, + "probability": 0.99853515625 + }, + { + "word": " happens", + "start": 3261.86, + "end": 3262.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1318, + "text": "a lot on Hotmail.", + "start": 3262.16, + "end": 3263.2, + "words": [ + { + "word": " a", + "start": 3262.16, + "end": 3262.3, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 3262.3, + "end": 3262.6, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3262.6, + "end": 3262.84, + "probability": 0.99609375 + }, + { + "word": " Hotmail.", + "start": 3262.84, + "end": 3263.2, + "probability": 0.90673828125 + } + ] + }, + { + "id": 1319, + "text": "So, the idea of password, keeping yourself safe online is an important topic.", + "start": 3263.68, + "end": 3270.94, + "words": [ + { + "word": " So,", + "start": 3263.68, + "end": 3264.2, + "probability": 0.9423828125 + }, + { + "word": " the", + "start": 3264.26, + "end": 3264.66, + "probability": 0.98046875 + }, + { + "word": " idea", + "start": 3264.66, + "end": 3265.4, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 3265.4, + "end": 3265.64, + "probability": 0.99951171875 + }, + { + "word": " password,", + "start": 3265.64, + "end": 3266.0, + "probability": 0.99169921875 + }, + { + "word": " keeping", + "start": 3266.16, + "end": 3266.72, + "probability": 0.9970703125 + }, + { + "word": " yourself", + "start": 3266.72, + "end": 3267.04, + "probability": 0.9990234375 + }, + { + "word": " safe", + "start": 3267.04, + "end": 3267.48, + "probability": 0.99951171875 + }, + { + "word": " online", + "start": 3267.48, + "end": 3268.22, + "probability": 0.984375 + }, + { + "word": " is", + "start": 3268.22, + "end": 3269.12, + "probability": 0.732421875 + }, + { + "word": " an", + "start": 3269.12, + "end": 3269.96, + "probability": 0.791015625 + }, + { + "word": " important", + "start": 3269.96, + "end": 3270.38, + "probability": 0.99951171875 + }, + { + "word": " topic.", + "start": 3270.38, + "end": 3270.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1320, + "text": "And especially for those that have a larger digital presence, right, where they're doing", + "start": 3270.98, + "end": 3274.5, + "words": [ + { + "word": " And", + "start": 3270.98, + "end": 3271.18, + "probability": 0.98876953125 + }, + { + "word": " especially", + "start": 3271.18, + "end": 3271.46, + "probability": 0.98291015625 + }, + { + "word": " for", + "start": 3271.46, + "end": 3271.78, + "probability": 0.98974609375 + }, + { + "word": " those", + "start": 3271.78, + "end": 3271.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3271.92, + "end": 3272.02, + "probability": 0.955078125 + }, + { + "word": " have", + "start": 3272.02, + "end": 3272.14, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 3272.14, + "end": 3272.24, + "probability": 0.99951171875 + }, + { + "word": " larger", + "start": 3272.24, + "end": 3272.5, + "probability": 0.99951171875 + }, + { + "word": " digital", + "start": 3272.5, + "end": 3272.78, + "probability": 0.99853515625 + }, + { + "word": " presence,", + "start": 3272.78, + "end": 3273.3, + "probability": 1.0 + }, + { + "word": " right,", + "start": 3273.46, + "end": 3273.66, + "probability": 0.9619140625 + }, + { + "word": " where", + "start": 3273.74, + "end": 3273.92, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 3273.92, + "end": 3274.24, + "probability": 0.99609375 + }, + { + "word": " doing", + "start": 3274.24, + "end": 3274.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1321, + "text": "more stuff online than just checking email.", + "start": 3274.5, + "end": 3277.06, + "words": [ + { + "word": " more", + "start": 3274.5, + "end": 3274.88, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 3274.88, + "end": 3275.2, + "probability": 0.99951171875 + }, + { + "word": " online", + "start": 3275.2, + "end": 3275.64, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 3275.64, + "end": 3275.98, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 3275.98, + "end": 3276.32, + "probability": 0.99951171875 + }, + { + "word": " checking", + "start": 3276.32, + "end": 3276.78, + "probability": 0.99951171875 + }, + { + "word": " email.", + "start": 3276.78, + "end": 3277.06, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1322, + "text": "But as you said in the beginning of the call, there are many places where you just can't", + "start": 3277.56, + "end": 3282.42, + "words": [ + { + "word": " But", + "start": 3277.56, + "end": 3278.08, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 3278.08, + "end": 3278.42, + "probability": 0.87548828125 + }, + { + "word": " you", + "start": 3278.42, + "end": 3278.62, + "probability": 1.0 + }, + { + "word": " said", + "start": 3278.62, + "end": 3278.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 3278.84, + "end": 3279.0, + "probability": 0.74853515625 + }, + { + "word": " the", + "start": 3279.0, + "end": 3279.02, + "probability": 0.9990234375 + }, + { + "word": " beginning", + "start": 3279.02, + "end": 3279.46, + "probability": 0.99169921875 + }, + { + "word": " of", + "start": 3279.46, + "end": 3279.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3279.7, + "end": 3279.78, + "probability": 1.0 + }, + { + "word": " call,", + "start": 3279.78, + "end": 3279.98, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 3280.2, + "end": 3280.84, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3280.84, + "end": 3280.98, + "probability": 0.99951171875 + }, + { + "word": " many", + "start": 3280.98, + "end": 3281.12, + "probability": 0.99951171875 + }, + { + "word": " places", + "start": 3281.12, + "end": 3281.42, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 3281.42, + "end": 3281.68, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3281.68, + "end": 3281.84, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3281.84, + "end": 3282.08, + "probability": 0.99755859375 + }, + { + "word": " can't", + "start": 3282.08, + "end": 3282.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1323, + "text": "do anything but to use an online service as an example for paying bills.", + "start": 3282.42, + "end": 3286.92, + "words": [ + { + "word": " do", + "start": 3282.42, + "end": 3282.58, + "probability": 0.99951171875 + }, + { + "word": " anything", + "start": 3282.58, + "end": 3283.04, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 3283.04, + "end": 3283.82, + "probability": 0.97509765625 + }, + { + "word": " to", + "start": 3283.82, + "end": 3284.0, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 3284.0, + "end": 3284.32, + "probability": 1.0 + }, + { + "word": " an", + "start": 3284.32, + "end": 3284.48, + "probability": 0.99951171875 + }, + { + "word": " online", + "start": 3284.48, + "end": 3284.74, + "probability": 1.0 + }, + { + "word": " service", + "start": 3284.74, + "end": 3285.22, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3285.22, + "end": 3285.7, + "probability": 0.78662109375 + }, + { + "word": " an", + "start": 3285.7, + "end": 3285.84, + "probability": 1.0 + }, + { + "word": " example", + "start": 3285.84, + "end": 3286.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 3286.16, + "end": 3286.4, + "probability": 0.99658203125 + }, + { + "word": " paying", + "start": 3286.4, + "end": 3286.62, + "probability": 0.99951171875 + }, + { + "word": " bills.", + "start": 3286.62, + "end": 3286.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1324, + "text": "Or like my daughter's homework.", + "start": 3287.06, + "end": 3289.0, + "words": [ + { + "word": " Or", + "start": 3287.06, + "end": 3287.24, + "probability": 0.99755859375 + }, + { + "word": " like", + "start": 3287.24, + "end": 3287.7, + "probability": 0.89892578125 + }, + { + "word": " my", + "start": 3287.7, + "end": 3287.82, + "probability": 0.9990234375 + }, + { + "word": " daughter's", + "start": 3287.82, + "end": 3288.42, + "probability": 0.99951171875 + }, + { + "word": " homework.", + "start": 3288.42, + "end": 3289.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1325, + "text": "Right?", + "start": 3289.44, + "end": 3289.84, + "words": [ + { + "word": " Right?", + "start": 3289.44, + "end": 3289.84, + "probability": 0.1162109375 + } + ] + }, + { + "id": 1326, + "text": "They don't send paper homework anymore.", + "start": 3289.86, + "end": 3291.4, + "words": [ + { + "word": " They", + "start": 3289.86, + "end": 3289.98, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 3289.98, + "end": 3290.12, + "probability": 1.0 + }, + { + "word": " send", + "start": 3290.12, + "end": 3290.32, + "probability": 1.0 + }, + { + "word": " paper", + "start": 3290.32, + "end": 3290.62, + "probability": 0.98046875 + }, + { + "word": " homework", + "start": 3290.62, + "end": 3290.96, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 3290.96, + "end": 3291.4, + "probability": 1.0 + } + ] + }, + { + "id": 1327, + "text": "They have a laptop that is provided, a Chromebook that is provided to them, and they have to", + "start": 3292.22, + "end": 3297.96, + "words": [ + { + "word": " They", + "start": 3292.22, + "end": 3292.62, + "probability": 0.88916015625 + }, + { + "word": " have", + "start": 3292.62, + "end": 3292.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 3292.9, + "end": 3293.08, + "probability": 1.0 + }, + { + "word": " laptop", + "start": 3293.08, + "end": 3293.92, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 3293.92, + "end": 3294.44, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3294.44, + "end": 3294.62, + "probability": 1.0 + }, + { + "word": " provided,", + "start": 3294.62, + "end": 3295.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 3295.28, + "end": 3295.42, + "probability": 0.99951171875 + }, + { + "word": " Chromebook", + "start": 3295.42, + "end": 3295.78, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3295.78, + "end": 3295.98, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3295.98, + "end": 3296.1, + "probability": 1.0 + }, + { + "word": " provided", + "start": 3296.1, + "end": 3296.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3296.38, + "end": 3296.62, + "probability": 1.0 + }, + { + "word": " them,", + "start": 3296.62, + "end": 3296.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 3296.86, + "end": 3297.4, + "probability": 1.0 + }, + { + "word": " they", + "start": 3297.4, + "end": 3297.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 3297.64, + "end": 3297.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 3297.8, + "end": 3297.96, + "probability": 1.0 + } + ] + }, + { + "id": 1328, + "text": "do all of their assignments online.", + "start": 3297.96, + "end": 3299.4, + "words": [ + { + "word": " do", + "start": 3297.96, + "end": 3298.1, + "probability": 1.0 + }, + { + "word": " all", + "start": 3298.1, + "end": 3298.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 3298.34, + "end": 3298.5, + "probability": 1.0 + }, + { + "word": " their", + "start": 3298.5, + "end": 3298.62, + "probability": 1.0 + }, + { + "word": " assignments", + "start": 3298.62, + "end": 3298.98, + "probability": 1.0 + }, + { + "word": " online.", + "start": 3298.98, + "end": 3299.4, + "probability": 1.0 + } + ] + }, + { + "id": 1329, + "text": "And if I want to be able to check on any of her work, I have to be able to sign into those", + "start": 3299.7, + "end": 3303.46, + "words": [ + { + "word": " And", + "start": 3299.7, + "end": 3299.84, + "probability": 0.9560546875 + }, + { + "word": " if", + "start": 3299.84, + "end": 3300.28, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 3300.28, + "end": 3300.52, + "probability": 1.0 + }, + { + "word": " want", + "start": 3300.52, + "end": 3300.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 3300.74, + "end": 3300.82, + "probability": 1.0 + }, + { + "word": " be", + "start": 3300.82, + "end": 3300.88, + "probability": 1.0 + }, + { + "word": " able", + "start": 3300.88, + "end": 3300.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 3300.98, + "end": 3301.12, + "probability": 1.0 + }, + { + "word": " check", + "start": 3301.12, + "end": 3301.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 3301.32, + "end": 3301.48, + "probability": 1.0 + }, + { + "word": " any", + "start": 3301.48, + "end": 3301.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 3301.66, + "end": 3301.76, + "probability": 1.0 + }, + { + "word": " her", + "start": 3301.76, + "end": 3301.82, + "probability": 0.7978515625 + }, + { + "word": " work,", + "start": 3301.82, + "end": 3302.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 3302.12, + "end": 3302.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 3302.32, + "end": 3302.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 3302.48, + "end": 3302.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 3302.62, + "end": 3302.68, + "probability": 1.0 + }, + { + "word": " able", + "start": 3302.68, + "end": 3302.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 3302.78, + "end": 3302.9, + "probability": 1.0 + }, + { + "word": " sign", + "start": 3302.9, + "end": 3303.08, + "probability": 1.0 + }, + { + "word": " into", + "start": 3303.08, + "end": 3303.28, + "probability": 0.9970703125 + }, + { + "word": " those", + "start": 3303.28, + "end": 3303.46, + "probability": 1.0 + } + ] + }, + { + "id": 1330, + "text": "accounts also.", + "start": 3303.46, + "end": 3304.0, + "words": [ + { + "word": " accounts", + "start": 3303.46, + "end": 3303.68, + "probability": 1.0 + }, + { + "word": " also.", + "start": 3303.68, + "end": 3304.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1331, + "text": "So, the world is moving completely digital.", + "start": 3304.98, + "end": 3308.82, + "words": [ + { + "word": " So,", + "start": 3304.98, + "end": 3305.38, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3305.38, + "end": 3305.78, + "probability": 0.98486328125 + }, + { + "word": " world", + "start": 3305.78, + "end": 3306.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 3306.92, + "end": 3307.26, + "probability": 1.0 + }, + { + "word": " moving", + "start": 3307.26, + "end": 3307.5, + "probability": 1.0 + }, + { + "word": " completely", + "start": 3307.5, + "end": 3308.26, + "probability": 1.0 + }, + { + "word": " digital.", + "start": 3308.26, + "end": 3308.82, + "probability": 1.0 + } + ] + }, + { + "id": 1332, + "text": "And so, password protection is important.", + "start": 3308.98, + "end": 3311.58, + "words": [ + { + "word": " And", + "start": 3308.98, + "end": 3309.36, + "probability": 0.99853515625 + }, + { + "word": " so,", + "start": 3309.36, + "end": 3309.56, + "probability": 0.99951171875 + }, + { + "word": " password", + "start": 3309.66, + "end": 3310.62, + "probability": 1.0 + }, + { + "word": " protection", + "start": 3310.62, + "end": 3310.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 3310.96, + "end": 3311.34, + "probability": 1.0 + }, + { + "word": " important.", + "start": 3311.34, + "end": 3311.58, + "probability": 1.0 + } + ] + }, + { + "id": 1333, + "text": "And you should probably get a password manager if you really want to sort of be safe.", + "start": 3312.08, + "end": 3315.9, + "words": [ + { + "word": " And", + "start": 3312.08, + "end": 3312.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 3312.48, + "end": 3312.62, + "probability": 1.0 + }, + { + "word": " should", + "start": 3312.62, + "end": 3312.72, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3312.72, + "end": 3312.86, + "probability": 1.0 + }, + { + "word": " get", + "start": 3312.86, + "end": 3313.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 3313.0, + "end": 3313.08, + "probability": 1.0 + }, + { + "word": " password", + "start": 3313.08, + "end": 3313.28, + "probability": 1.0 + }, + { + "word": " manager", + "start": 3313.28, + "end": 3313.6, + "probability": 1.0 + }, + { + "word": " if", + "start": 3313.6, + "end": 3314.04, + "probability": 0.958984375 + }, + { + "word": " you", + "start": 3314.04, + "end": 3314.16, + "probability": 1.0 + }, + { + "word": " really", + "start": 3314.16, + "end": 3314.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 3314.42, + "end": 3314.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 3314.68, + "end": 3314.94, + "probability": 1.0 + }, + { + "word": " sort", + "start": 3314.94, + "end": 3315.52, + "probability": 0.9814453125 + }, + { + "word": " of", + "start": 3315.52, + "end": 3315.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 3315.62, + "end": 3315.74, + "probability": 1.0 + }, + { + "word": " safe.", + "start": 3315.74, + "end": 3315.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1334, + "text": "That way, you only have to remember one password.", + "start": 3315.94, + "end": 3317.6, + "words": [ + { + "word": " That", + "start": 3315.94, + "end": 3316.02, + "probability": 0.99853515625 + }, + { + "word": " way,", + "start": 3316.02, + "end": 3316.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 3316.18, + "end": 3316.22, + "probability": 1.0 + }, + { + "word": " only", + "start": 3316.22, + "end": 3316.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 3316.38, + "end": 3316.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3316.5, + "end": 3316.62, + "probability": 1.0 + }, + { + "word": " remember", + "start": 3316.62, + "end": 3316.78, + "probability": 1.0 + }, + { + "word": " one", + "start": 3316.78, + "end": 3317.08, + "probability": 1.0 + }, + { + "word": " password.", + "start": 3317.08, + "end": 3317.6, + "probability": 1.0 + } + ] + }, + { + "id": 1335, + "text": "And the...", + "start": 3318.3999999999996, + "end": 3319.2, + "words": [ + { + "word": " And", + "start": 3318.3999999999996, + "end": 3318.7999999999997, + "probability": 0.982421875 + }, + { + "word": " the...", + "start": 3318.7999999999997, + "end": 3319.2, + "probability": 0.7265625 + } + ] + }, + { + "id": 1336, + "text": "The software takes care of the rest and remembers all the rest of your passwords.", + "start": 3319.2, + "end": 3322.3, + "words": [ + { + "word": " The", + "start": 3319.2, + "end": 3319.22, + "probability": 0.837890625 + }, + { + "word": " software", + "start": 3319.22, + "end": 3319.5, + "probability": 0.99951171875 + }, + { + "word": " takes", + "start": 3319.5, + "end": 3319.78, + "probability": 1.0 + }, + { + "word": " care", + "start": 3319.78, + "end": 3320.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 3320.1, + "end": 3320.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 3320.22, + "end": 3320.28, + "probability": 1.0 + }, + { + "word": " rest", + "start": 3320.28, + "end": 3320.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 3320.52, + "end": 3320.84, + "probability": 0.98779296875 + }, + { + "word": " remembers", + "start": 3320.84, + "end": 3321.2, + "probability": 1.0 + }, + { + "word": " all", + "start": 3321.2, + "end": 3321.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 3321.44, + "end": 3321.62, + "probability": 0.99755859375 + }, + { + "word": " rest", + "start": 3321.62, + "end": 3321.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 3321.82, + "end": 3321.9, + "probability": 1.0 + }, + { + "word": " your", + "start": 3321.9, + "end": 3321.96, + "probability": 1.0 + }, + { + "word": " passwords.", + "start": 3321.96, + "end": 3322.3, + "probability": 1.0 + } + ] + }, + { + "id": 1337, + "text": "Is that a program that you buy or a place, another place you go to on the internet to", + "start": 3322.58, + "end": 3326.74, + "words": [ + { + "word": " Is", + "start": 3322.58, + "end": 3322.8, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3322.8, + "end": 3322.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 3322.98, + "end": 3323.12, + "probability": 1.0 + }, + { + "word": " program", + "start": 3323.12, + "end": 3323.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 3323.46, + "end": 3323.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 3323.74, + "end": 3323.94, + "probability": 1.0 + }, + { + "word": " buy", + "start": 3323.94, + "end": 3324.16, + "probability": 1.0 + }, + { + "word": " or", + "start": 3324.16, + "end": 3324.4, + "probability": 0.96728515625 + }, + { + "word": " a", + "start": 3324.4, + "end": 3324.56, + "probability": 0.263916015625 + }, + { + "word": " place,", + "start": 3324.56, + "end": 3324.86, + "probability": 0.99853515625 + }, + { + "word": " another", + "start": 3324.9, + "end": 3325.16, + "probability": 0.99951171875 + }, + { + "word": " place", + "start": 3325.16, + "end": 3325.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 3325.42, + "end": 3325.64, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 3325.64, + "end": 3325.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 3325.8, + "end": 3325.94, + "probability": 1.0 + }, + { + "word": " on", + "start": 3325.94, + "end": 3326.14, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3326.14, + "end": 3326.22, + "probability": 1.0 + }, + { + "word": " internet", + "start": 3326.22, + "end": 3326.52, + "probability": 0.22802734375 + }, + { + "word": " to", + "start": 3326.52, + "end": 3326.74, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1338, + "text": "come up with that?", + "start": 3326.74, + "end": 3327.38, + "words": [ + { + "word": " come", + "start": 3326.74, + "end": 3326.86, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 3326.86, + "end": 3327.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 3327.08, + "end": 3327.22, + "probability": 1.0 + }, + { + "word": " that?", + "start": 3327.22, + "end": 3327.38, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1339, + "text": "Both.", + "start": 3327.54, + "end": 3327.7, + "words": [ + { + "word": " Both.", + "start": 3327.54, + "end": 3327.7, + "probability": 0.9638671875 + } + ] + }, + { + "id": 1340, + "text": "So, you have to go to the website to get the software and then purchase it.", + "start": 3328.18, + "end": 3331.72, + "words": [ + { + "word": " So,", + "start": 3328.18, + "end": 3328.56, + "probability": 0.93017578125 + }, + { + "word": " you", + "start": 3328.64, + "end": 3328.9, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3328.9, + "end": 3329.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 3329.24, + "end": 3329.38, + "probability": 1.0 + }, + { + "word": " go", + "start": 3329.38, + "end": 3329.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3329.5, + "end": 3329.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 3329.62, + "end": 3329.68, + "probability": 1.0 + }, + { + "word": " website", + "start": 3329.68, + "end": 3329.92, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3329.92, + "end": 3330.14, + "probability": 1.0 + }, + { + "word": " get", + "start": 3330.14, + "end": 3330.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 3330.26, + "end": 3330.36, + "probability": 1.0 + }, + { + "word": " software", + "start": 3330.36, + "end": 3330.7, + "probability": 1.0 + }, + { + "word": " and", + "start": 3330.7, + "end": 3331.02, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 3331.02, + "end": 3331.18, + "probability": 1.0 + }, + { + "word": " purchase", + "start": 3331.18, + "end": 3331.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3331.46, + "end": 3331.72, + "probability": 1.0 + } + ] + }, + { + "id": 1341, + "text": "The one that I like right now is LastPass.", + "start": 3332.68, + "end": 3334.84, + "words": [ + { + "word": " The", + "start": 3332.68, + "end": 3333.06, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 3333.06, + "end": 3333.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 3333.32, + "end": 3333.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 3333.46, + "end": 3333.56, + "probability": 1.0 + }, + { + "word": " like", + "start": 3333.56, + "end": 3333.82, + "probability": 1.0 + }, + { + "word": " right", + "start": 3333.82, + "end": 3333.94, + "probability": 1.0 + }, + { + "word": " now", + "start": 3333.94, + "end": 3334.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 3334.16, + "end": 3334.3, + "probability": 1.0 + }, + { + "word": " LastPass.", + "start": 3334.3, + "end": 3334.84, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1342, + "text": "And it's...", + "start": 3336.3799999999997, + "end": 3337.14, + "words": [ + { + "word": " And", + "start": 3336.3799999999997, + "end": 3336.7599999999998, + "probability": 0.83251953125 + }, + { + "word": " it's...", + "start": 3336.7599999999998, + "end": 3337.14, + "probability": 0.377197265625 + } + ] + }, + { + "id": 1343, + "text": "They taught themselves that the last password you'll ever have to remember.", + "start": 3337.14, + "end": 3339.98, + "words": [ + { + "word": " They", + "start": 3337.14, + "end": 3337.56, + "probability": 0.93701171875 + }, + { + "word": " taught", + "start": 3337.56, + "end": 3337.82, + "probability": 0.5986328125 + }, + { + "word": " themselves", + "start": 3337.82, + "end": 3338.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 3338.08, + "end": 3338.38, + "probability": 0.9365234375 + }, + { + "word": " the", + "start": 3338.38, + "end": 3338.48, + "probability": 0.99951171875 + }, + { + "word": " last", + "start": 3338.48, + "end": 3338.74, + "probability": 0.99365234375 + }, + { + "word": " password", + "start": 3338.74, + "end": 3339.1, + "probability": 0.99951171875 + }, + { + "word": " you'll", + "start": 3339.1, + "end": 3339.32, + "probability": 0.9228515625 + }, + { + "word": " ever", + "start": 3339.32, + "end": 3339.46, + "probability": 1.0 + }, + { + "word": " have", + "start": 3339.46, + "end": 3339.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 3339.62, + "end": 3339.74, + "probability": 1.0 + }, + { + "word": " remember.", + "start": 3339.74, + "end": 3339.98, + "probability": 1.0 + } + ] + }, + { + "id": 1344, + "text": "I'll put a link in the show notes.", + "start": 3340.22, + "end": 3341.56, + "words": [ + { + "word": " I'll", + "start": 3340.22, + "end": 3340.44, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 3340.44, + "end": 3340.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 3340.6, + "end": 3340.72, + "probability": 1.0 + }, + { + "word": " link", + "start": 3340.72, + "end": 3340.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 3340.9, + "end": 3341.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 3341.04, + "end": 3341.16, + "probability": 1.0 + }, + { + "word": " show", + "start": 3341.16, + "end": 3341.34, + "probability": 0.99951171875 + }, + { + "word": " notes.", + "start": 3341.34, + "end": 3341.56, + "probability": 1.0 + } + ] + }, + { + "id": 1345, + "text": "Right.", + "start": 3341.74, + "end": 3341.94, + "words": [ + { + "word": " Right.", + "start": 3341.74, + "end": 3341.94, + "probability": 0.81396484375 + } + ] + }, + { + "id": 1346, + "text": "So, if you manage to make it over to gurushow.com and check out the show notes, there'll be", + "start": 3342.0, + "end": 3346.5, + "words": [ + { + "word": " So,", + "start": 3342.0, + "end": 3342.14, + "probability": 0.98291015625 + }, + { + "word": " if", + "start": 3342.22, + "end": 3342.5, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 3342.5, + "end": 3343.38, + "probability": 1.0 + }, + { + "word": " manage", + "start": 3343.38, + "end": 3343.68, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3343.68, + "end": 3343.86, + "probability": 1.0 + }, + { + "word": " make", + "start": 3343.86, + "end": 3344.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 3344.0, + "end": 3344.12, + "probability": 1.0 + }, + { + "word": " over", + "start": 3344.12, + "end": 3344.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 3344.26, + "end": 3344.38, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 3344.38, + "end": 3344.76, + "probability": 0.85400390625 + }, + { + "word": ".com", + "start": 3344.76, + "end": 3345.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 3345.16, + "end": 3345.32, + "probability": 0.99951171875 + }, + { + "word": " check", + "start": 3345.32, + "end": 3345.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 3345.48, + "end": 3345.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 3345.62, + "end": 3345.74, + "probability": 1.0 + }, + { + "word": " show", + "start": 3345.74, + "end": 3345.88, + "probability": 1.0 + }, + { + "word": " notes,", + "start": 3345.88, + "end": 3346.06, + "probability": 1.0 + }, + { + "word": " there'll", + "start": 3346.24, + "end": 3346.38, + "probability": 0.9775390625 + }, + { + "word": " be", + "start": 3346.38, + "end": 3346.5, + "probability": 1.0 + } + ] + }, + { + "id": 1347, + "text": "a link there.", + "start": 3346.5, + "end": 3347.02, + "words": [ + { + "word": " a", + "start": 3346.5, + "end": 3346.58, + "probability": 1.0 + }, + { + "word": " link", + "start": 3346.58, + "end": 3346.78, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3346.78, + "end": 3347.02, + "probability": 1.0 + } + ] + }, + { + "id": 1348, + "text": "But there are several password managers.", + "start": 3347.66, + "end": 3349.18, + "words": [ + { + "word": " But", + "start": 3347.66, + "end": 3348.04, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 3348.04, + "end": 3348.16, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 3348.16, + "end": 3348.26, + "probability": 0.99267578125 + }, + { + "word": " several", + "start": 3348.26, + "end": 3348.54, + "probability": 1.0 + }, + { + "word": " password", + "start": 3348.54, + "end": 3349.0, + "probability": 0.9658203125 + }, + { + "word": " managers.", + "start": 3349.0, + "end": 3349.18, + "probability": 0.0016794204711914062 + } + ] + }, + { + "id": 1349, + "text": "", + "start": 3349.18, + "end": 3349.18, + "words": [] + }, + { + "id": 1350, + "text": "There are a lot of password managers out there to help keep you safe.", + "start": 3349.18, + "end": 3350.6, + "words": [ + { + "word": " There", + "start": 3349.18, + "end": 3349.28, + "probability": 0.024932861328125 + }, + { + "word": " are", + "start": 3349.28, + "end": 3349.28, + "probability": 0.283935546875 + }, + { + "word": " a", + "start": 3349.28, + "end": 3349.28, + "probability": 0.07720947265625 + }, + { + "word": " lot", + "start": 3349.28, + "end": 3349.28, + "probability": 0.671875 + }, + { + "word": " of", + "start": 3349.28, + "end": 3349.28, + "probability": 0.99853515625 + }, + { + "word": " password", + "start": 3349.28, + "end": 3349.28, + "probability": 0.12298583984375 + }, + { + "word": " managers", + "start": 3349.28, + "end": 3349.28, + "probability": 0.9560546875 + }, + { + "word": " out", + "start": 3349.28, + "end": 3349.62, + "probability": 0.99755859375 + }, + { + "word": " there", + "start": 3349.62, + "end": 3349.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 3349.8, + "end": 3349.88, + "probability": 0.94482421875 + }, + { + "word": " help", + "start": 3349.88, + "end": 3350.0, + "probability": 0.99462890625 + }, + { + "word": " keep", + "start": 3350.0, + "end": 3350.16, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 3350.16, + "end": 3350.3, + "probability": 0.99951171875 + }, + { + "word": " safe.", + "start": 3350.3, + "end": 3350.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1351, + "text": "They remember your passwords for you.", + "start": 3350.66, + "end": 3351.92, + "words": [ + { + "word": " They", + "start": 3350.66, + "end": 3350.78, + "probability": 0.998046875 + }, + { + "word": " remember", + "start": 3350.78, + "end": 3351.04, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 3351.04, + "end": 3351.24, + "probability": 0.9990234375 + }, + { + "word": " passwords", + "start": 3351.24, + "end": 3351.52, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 3351.52, + "end": 3351.72, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 3351.72, + "end": 3351.92, + "probability": 1.0 + } + ] + }, + { + "id": 1352, + "text": "And if you get the paid version, then it remembers all of your passwords across all of your devices.", + "start": 3352.02, + "end": 3356.7, + "words": [ + { + "word": " And", + "start": 3352.02, + "end": 3352.1, + "probability": 0.89599609375 + }, + { + "word": " if", + "start": 3352.1, + "end": 3352.2, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 3352.2, + "end": 3352.3, + "probability": 1.0 + }, + { + "word": " get", + "start": 3352.3, + "end": 3352.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3352.48, + "end": 3352.64, + "probability": 0.99951171875 + }, + { + "word": " paid", + "start": 3352.64, + "end": 3352.92, + "probability": 0.9990234375 + }, + { + "word": " version,", + "start": 3352.92, + "end": 3353.24, + "probability": 1.0 + }, + { + "word": " then", + "start": 3353.5, + "end": 3354.1, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3354.1, + "end": 3354.34, + "probability": 1.0 + }, + { + "word": " remembers", + "start": 3354.34, + "end": 3354.72, + "probability": 1.0 + }, + { + "word": " all", + "start": 3354.72, + "end": 3355.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 3355.0, + "end": 3355.1, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3355.1, + "end": 3355.18, + "probability": 1.0 + }, + { + "word": " passwords", + "start": 3355.18, + "end": 3355.5, + "probability": 1.0 + }, + { + "word": " across", + "start": 3355.5, + "end": 3355.78, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 3355.78, + "end": 3356.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 3356.1, + "end": 3356.24, + "probability": 1.0 + }, + { + "word": " your", + "start": 3356.24, + "end": 3356.34, + "probability": 1.0 + }, + { + "word": " devices.", + "start": 3356.34, + "end": 3356.7, + "probability": 1.0 + } + ] + }, + { + "id": 1353, + "text": "So that if you happen to have a smartphone or another computer...", + "start": 3356.82, + "end": 3360.98, + "words": [ + { + "word": " So", + "start": 3356.82, + "end": 3357.2, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 3357.2, + "end": 3357.42, + "probability": 0.56689453125 + }, + { + "word": " if", + "start": 3357.42, + "end": 3357.76, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3357.76, + "end": 3358.04, + "probability": 1.0 + }, + { + "word": " happen", + "start": 3358.04, + "end": 3358.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 3358.26, + "end": 3358.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 3358.4, + "end": 3358.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 3358.52, + "end": 3358.66, + "probability": 1.0 + }, + { + "word": " smartphone", + "start": 3358.66, + "end": 3358.88, + "probability": 0.98388671875 + }, + { + "word": " or", + "start": 3358.88, + "end": 3359.36, + "probability": 0.99853515625 + }, + { + "word": " another", + "start": 3359.36, + "end": 3359.96, + "probability": 0.99560546875 + }, + { + "word": " computer...", + "start": 3359.96, + "end": 3360.98, + "probability": 0.595703125 + } + ] + }, + { + "id": 1354, + "text": "No smartphone.", + "start": 3360.98, + "end": 3361.62, + "words": [ + { + "word": " No", + "start": 3360.98, + "end": 3361.06, + "probability": 0.99609375 + }, + { + "word": " smartphone.", + "start": 3361.06, + "end": 3361.62, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1355, + "text": "So, if you happen to have another device of any type that you get online with, it will", + "start": 3362.1, + "end": 3365.86, + "words": [ + { + "word": " So,", + "start": 3362.1, + "end": 3362.5, + "probability": 0.99462890625 + }, + { + "word": " if", + "start": 3362.52, + "end": 3362.64, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3362.64, + "end": 3362.76, + "probability": 0.99951171875 + }, + { + "word": " happen", + "start": 3362.76, + "end": 3362.9, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 3362.9, + "end": 3362.98, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3362.98, + "end": 3363.06, + "probability": 1.0 + }, + { + "word": " another", + "start": 3363.06, + "end": 3363.22, + "probability": 0.99853515625 + }, + { + "word": " device", + "start": 3363.22, + "end": 3363.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 3363.54, + "end": 3363.74, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 3363.74, + "end": 3363.88, + "probability": 1.0 + }, + { + "word": " type", + "start": 3363.88, + "end": 3364.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3364.14, + "end": 3364.52, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 3364.52, + "end": 3364.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 3364.68, + "end": 3364.86, + "probability": 0.99560546875 + }, + { + "word": " online", + "start": 3364.86, + "end": 3365.08, + "probability": 0.75390625 + }, + { + "word": " with,", + "start": 3365.08, + "end": 3365.5, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3365.58, + "end": 3365.74, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 3365.74, + "end": 3365.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1356, + "text": "synchronize those passwords to the other device.", + "start": 3365.86, + "end": 3367.6, + "words": [ + { + "word": " synchronize", + "start": 3365.86, + "end": 3366.4, + "probability": 0.9990234375 + }, + { + "word": " those", + "start": 3366.4, + "end": 3366.52, + "probability": 0.99951171875 + }, + { + "word": " passwords", + "start": 3366.52, + "end": 3366.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3366.82, + "end": 3367.08, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3367.08, + "end": 3367.18, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 3367.18, + "end": 3367.34, + "probability": 0.99951171875 + }, + { + "word": " device.", + "start": 3367.34, + "end": 3367.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1357, + "text": "So, you never have to remember a password ever other than the main password for LastPass.", + "start": 3367.76, + "end": 3372.8, + "words": [ + { + "word": " So,", + "start": 3367.76, + "end": 3367.9, + "probability": 0.98828125 + }, + { + "word": " you", + "start": 3367.9, + "end": 3367.9, + "probability": 1.0 + }, + { + "word": " never", + "start": 3367.9, + "end": 3368.08, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3368.08, + "end": 3368.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 3368.24, + "end": 3368.32, + "probability": 1.0 + }, + { + "word": " remember", + "start": 3368.32, + "end": 3368.52, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3368.52, + "end": 3368.7, + "probability": 0.99951171875 + }, + { + "word": " password", + "start": 3368.7, + "end": 3368.96, + "probability": 1.0 + }, + { + "word": " ever", + "start": 3368.96, + "end": 3369.32, + "probability": 0.94873046875 + }, + { + "word": " other", + "start": 3369.32, + "end": 3369.68, + "probability": 0.344482421875 + }, + { + "word": " than", + "start": 3369.68, + "end": 3369.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3369.98, + "end": 3370.64, + "probability": 0.99951171875 + }, + { + "word": " main", + "start": 3370.64, + "end": 3371.08, + "probability": 0.9990234375 + }, + { + "word": " password", + "start": 3371.08, + "end": 3371.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 3371.56, + "end": 3371.96, + "probability": 1.0 + }, + { + "word": " LastPass.", + "start": 3371.96, + "end": 3372.8, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1358, + "text": "And it'll actually even sign in the websites for you.", + "start": 3373.94, + "end": 3376.68, + "words": [ + { + "word": " And", + "start": 3373.94, + "end": 3374.34, + "probability": 0.8271484375 + }, + { + "word": " it'll", + "start": 3374.34, + "end": 3374.6, + "probability": 0.9365234375 + }, + { + "word": " actually", + "start": 3374.6, + "end": 3375.2, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 3375.2, + "end": 3375.38, + "probability": 0.99951171875 + }, + { + "word": " sign", + "start": 3375.38, + "end": 3375.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 3375.68, + "end": 3375.82, + "probability": 0.14404296875 + }, + { + "word": " the", + "start": 3375.82, + "end": 3375.9, + "probability": 0.97216796875 + }, + { + "word": " websites", + "start": 3375.9, + "end": 3376.12, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3376.12, + "end": 3376.44, + "probability": 1.0 + }, + { + "word": " you.", + "start": 3376.44, + "end": 3376.68, + "probability": 1.0 + } + ] + }, + { + "id": 1359, + "text": "So, you don't even have to see the login page anymore.", + "start": 3376.76, + "end": 3379.14, + "words": [ + { + "word": " So,", + "start": 3376.76, + "end": 3377.16, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3377.24, + "end": 3377.32, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3377.32, + "end": 3377.4, + "probability": 1.0 + }, + { + "word": " even", + "start": 3377.4, + "end": 3377.5, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3377.5, + "end": 3377.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 3377.68, + "end": 3377.84, + "probability": 1.0 + }, + { + "word": " see", + "start": 3377.84, + "end": 3378.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3378.04, + "end": 3378.18, + "probability": 0.99951171875 + }, + { + "word": " login", + "start": 3378.18, + "end": 3378.48, + "probability": 0.99609375 + }, + { + "word": " page", + "start": 3378.48, + "end": 3378.78, + "probability": 0.99658203125 + }, + { + "word": " anymore.", + "start": 3378.78, + "end": 3379.14, + "probability": 0.9091796875 + } + ] + }, + { + "id": 1360, + "text": "I have a laptop and it sits right by me when I'm watching TV.", + "start": 3379.96, + "end": 3386.04, + "words": [ + { + "word": " I", + "start": 3379.96, + "end": 3380.54, + "probability": 0.9814453125 + }, + { + "word": " have", + "start": 3380.54, + "end": 3380.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 3380.82, + "end": 3381.0, + "probability": 0.99951171875 + }, + { + "word": " laptop", + "start": 3381.0, + "end": 3381.9, + "probability": 0.9931640625 + }, + { + "word": " and", + "start": 3381.9, + "end": 3382.5, + "probability": 0.234375 + }, + { + "word": " it", + "start": 3382.5, + "end": 3382.84, + "probability": 0.99951171875 + }, + { + "word": " sits", + "start": 3382.84, + "end": 3383.32, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3383.32, + "end": 3383.86, + "probability": 1.0 + }, + { + "word": " by", + "start": 3383.86, + "end": 3384.38, + "probability": 1.0 + }, + { + "word": " me", + "start": 3384.38, + "end": 3384.66, + "probability": 1.0 + }, + { + "word": " when", + "start": 3384.66, + "end": 3385.24, + "probability": 0.99853515625 + }, + { + "word": " I'm", + "start": 3385.24, + "end": 3385.46, + "probability": 0.99951171875 + }, + { + "word": " watching", + "start": 3385.46, + "end": 3385.72, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 3385.72, + "end": 3386.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1361, + "text": "And I looked at it the other day.", + "start": 3386.28, + "end": 3388.22, + "words": [ + { + "word": " And", + "start": 3386.28, + "end": 3386.62, + "probability": 0.9111328125 + }, + { + "word": " I", + "start": 3386.62, + "end": 3386.88, + "probability": 0.99951171875 + }, + { + "word": " looked", + "start": 3386.88, + "end": 3387.26, + "probability": 1.0 + }, + { + "word": " at", + "start": 3387.26, + "end": 3387.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 3387.46, + "end": 3387.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 3387.62, + "end": 3387.74, + "probability": 1.0 + }, + { + "word": " other", + "start": 3387.74, + "end": 3387.96, + "probability": 1.0 + }, + { + "word": " day.", + "start": 3387.96, + "end": 3388.22, + "probability": 1.0 + } + ] + }, + { + "id": 1362, + "text": "I turned it on.", + "start": 3388.28, + "end": 3389.06, + "words": [ + { + "word": " I", + "start": 3388.28, + "end": 3388.44, + "probability": 0.99951171875 + }, + { + "word": " turned", + "start": 3388.44, + "end": 3388.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 3388.64, + "end": 3388.82, + "probability": 1.0 + }, + { + "word": " on.", + "start": 3388.82, + "end": 3389.06, + "probability": 1.0 + } + ] + }, + { + "id": 1363, + "text": "And a message came up that says Microsoft no longer supports...", + "start": 3389.7400000000002, + "end": 3396.48, + "words": [ + { + "word": " And", + "start": 3389.7400000000002, + "end": 3390.32, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3390.32, + "end": 3390.86, + "probability": 1.0 + }, + { + "word": " message", + "start": 3390.86, + "end": 3391.56, + "probability": 1.0 + }, + { + "word": " came", + "start": 3391.56, + "end": 3391.84, + "probability": 1.0 + }, + { + "word": " up", + "start": 3391.84, + "end": 3392.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 3392.14, + "end": 3392.28, + "probability": 1.0 + }, + { + "word": " says", + "start": 3392.28, + "end": 3392.54, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 3392.54, + "end": 3394.56, + "probability": 0.7763671875 + }, + { + "word": " no", + "start": 3394.56, + "end": 3395.2, + "probability": 1.0 + }, + { + "word": " longer", + "start": 3395.2, + "end": 3395.56, + "probability": 1.0 + }, + { + "word": " supports...", + "start": 3395.56, + "end": 3396.48, + "probability": 0.509765625 + } + ] + }, + { + "id": 1364, + "text": "Not number seven, but it's the one before seven.", + "start": 3398.2200000000003, + "end": 3402.24, + "words": [ + { + "word": " Not", + "start": 3398.2200000000003, + "end": 3398.8, + "probability": 0.892578125 + }, + { + "word": " number", + "start": 3398.8, + "end": 3399.38, + "probability": 0.98974609375 + }, + { + "word": " seven,", + "start": 3399.38, + "end": 3399.82, + "probability": 0.384765625 + }, + { + "word": " but", + "start": 3400.02, + "end": 3400.22, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3400.22, + "end": 3400.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 3400.42, + "end": 3400.54, + "probability": 1.0 + }, + { + "word": " one", + "start": 3400.54, + "end": 3400.76, + "probability": 1.0 + }, + { + "word": " before", + "start": 3400.76, + "end": 3401.06, + "probability": 1.0 + }, + { + "word": " seven.", + "start": 3401.06, + "end": 3402.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1365, + "text": "Well, you probably had it set for Vista?", + "start": 3403.2000000000003, + "end": 3405.88, + "words": [ + { + "word": " Well,", + "start": 3403.2000000000003, + "end": 3403.78, + "probability": 0.9443359375 + }, + { + "word": " you", + "start": 3403.98, + "end": 3404.4, + "probability": 0.99755859375 + }, + { + "word": " probably", + "start": 3404.4, + "end": 3405.0, + "probability": 1.0 + }, + { + "word": " had", + "start": 3405.0, + "end": 3405.26, + "probability": 0.96533203125 + }, + { + "word": " it", + "start": 3405.26, + "end": 3405.34, + "probability": 0.5693359375 + }, + { + "word": " set", + "start": 3405.34, + "end": 3405.42, + "probability": 0.330322265625 + }, + { + "word": " for", + "start": 3405.42, + "end": 3405.56, + "probability": 0.99267578125 + }, + { + "word": " Vista?", + "start": 3405.56, + "end": 3405.88, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1366, + "text": "Vista.", + "start": 3406.22, + "end": 3406.78, + "words": [ + { + "word": " Vista.", + "start": 3406.22, + "end": 3406.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1367, + "text": "Yeah.", + "start": 3406.96, + "end": 3407.28, + "words": [ + { + "word": " Yeah.", + "start": 3406.96, + "end": 3407.28, + "probability": 0.86865234375 + } + ] + }, + { + "id": 1368, + "text": "Yeah.", + "start": 3407.38, + "end": 3407.82, + "words": [ + { + "word": " Yeah.", + "start": 3407.38, + "end": 3407.82, + "probability": 0.091796875 + } + ] + }, + { + "id": 1369, + "text": "Vista.", + "start": 3409.14, + "end": 3409.28, + "words": [ + { + "word": " Vista.", + "start": 3409.14, + "end": 3409.28, + "probability": 0.23974609375 + } + ] + }, + { + "id": 1370, + "text": "My other computer in my room over here, which I haven't used in a few years, no longer supports", + "start": 3409.28, + "end": 3415.5, + "words": [ + { + "word": " My", + "start": 3409.28, + "end": 3409.38, + "probability": 0.9912109375 + }, + { + "word": " other", + "start": 3409.38, + "end": 3409.62, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 3409.62, + "end": 3410.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 3410.06, + "end": 3410.42, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 3410.42, + "end": 3410.56, + "probability": 1.0 + }, + { + "word": " room", + "start": 3410.56, + "end": 3410.86, + "probability": 1.0 + }, + { + "word": " over", + "start": 3410.86, + "end": 3411.1, + "probability": 0.99951171875 + }, + { + "word": " here,", + "start": 3411.1, + "end": 3411.32, + "probability": 1.0 + }, + { + "word": " which", + "start": 3411.46, + "end": 3412.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 3412.1, + "end": 3412.22, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 3412.22, + "end": 3412.5, + "probability": 1.0 + }, + { + "word": " used", + "start": 3412.5, + "end": 3412.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 3412.74, + "end": 3412.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 3412.92, + "end": 3413.02, + "probability": 1.0 + }, + { + "word": " few", + "start": 3413.02, + "end": 3413.16, + "probability": 0.99853515625 + }, + { + "word": " years,", + "start": 3413.16, + "end": 3413.46, + "probability": 1.0 + }, + { + "word": " no", + "start": 3413.56, + "end": 3414.44, + "probability": 0.99462890625 + }, + { + "word": " longer", + "start": 3414.44, + "end": 3414.84, + "probability": 1.0 + }, + { + "word": " supports", + "start": 3414.84, + "end": 3415.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1371, + "text": "that one that was before that.", + "start": 3416.3599999999997, + "end": 3418.38, + "words": [ + { + "word": " that", + "start": 3416.23, + "end": 3416.48, + "probability": 0.6572265625 + }, + { + "word": " one", + "start": 3416.48, + "end": 3417.18, + "probability": 0.98876953125 + }, + { + "word": " that", + "start": 3417.18, + "end": 3417.56, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3417.56, + "end": 3417.74, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 3417.74, + "end": 3418.06, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3418.06, + "end": 3418.38, + "probability": 1.0 + } + ] + }, + { + "id": 1372, + "text": "XP?", + "start": 3418.66, + "end": 3419.04, + "words": [ + { + "word": " XP?", + "start": 3418.66, + "end": 3419.04, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1373, + "text": "XP, right.", + "start": 3419.04, + "end": 3419.94, + "words": [ + { + "word": " XP,", + "start": 3419.04, + "end": 3419.42, + "probability": 0.97509765625 + }, + { + "word": " right.", + "start": 3419.68, + "end": 3419.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1374, + "text": "XP, right.", + "start": 3420.16, + "end": 3420.88, + "words": [ + { + "word": " XP,", + "start": 3420.16, + "end": 3420.46, + "probability": 0.87890625 + }, + { + "word": " right.", + "start": 3420.64, + "end": 3420.88, + "probability": 1.0 + } + ] + }, + { + "id": 1375, + "text": "We've got to get you with the times, man.", + "start": 3421.22, + "end": 3422.36, + "words": [ + { + "word": " We've", + "start": 3421.22, + "end": 3421.42, + "probability": 0.97119140625 + }, + { + "word": " got", + "start": 3421.42, + "end": 3421.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 3421.52, + "end": 3421.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 3421.52, + "end": 3421.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 3421.62, + "end": 3421.74, + "probability": 1.0 + }, + { + "word": " with", + "start": 3421.74, + "end": 3421.82, + "probability": 0.9375 + }, + { + "word": " the", + "start": 3421.82, + "end": 3421.88, + "probability": 0.98974609375 + }, + { + "word": " times,", + "start": 3421.88, + "end": 3422.14, + "probability": 0.978515625 + }, + { + "word": " man.", + "start": 3422.18, + "end": 3422.36, + "probability": 1.0 + } + ] + }, + { + "id": 1376, + "text": "You're way behind.", + "start": 3424.12, + "end": 3425.34, + "words": [ + { + "word": " You're", + "start": 3424.12, + "end": 3424.62, + "probability": 1.0 + }, + { + "word": " way", + "start": 3424.62, + "end": 3425.02, + "probability": 0.99951171875 + }, + { + "word": " behind.", + "start": 3425.02, + "end": 3425.34, + "probability": 1.0 + } + ] + }, + { + "id": 1377, + "text": "Oh, yeah.", + "start": 3426.34, + "end": 3427.0, + "words": [ + { + "word": " Oh,", + "start": 3426.34, + "end": 3426.84, + "probability": 0.95849609375 + }, + { + "word": " yeah.", + "start": 3426.84, + "end": 3427.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1378, + "text": "I don't...", + "start": 3427.22, + "end": 3427.9, + "words": [ + { + "word": " I", + "start": 3427.22, + "end": 3427.52, + "probability": 0.153076171875 + }, + { + "word": " don't...", + "start": 3427.52, + "end": 3427.9, + "probability": 0.6875 + } + ] + }, + { + "id": 1379, + "text": "You know, it's just here because I don't use it.", + "start": 3427.9, + "end": 3432.32, + "words": [ + { + "word": " You", + "start": 3427.9, + "end": 3427.92, + "probability": 0.433837890625 + }, + { + "word": " know,", + "start": 3427.92, + "end": 3428.08, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3428.12, + "end": 3428.78, + "probability": 0.96484375 + }, + { + "word": " just", + "start": 3428.78, + "end": 3428.88, + "probability": 1.0 + }, + { + "word": " here", + "start": 3428.88, + "end": 3429.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 3429.24, + "end": 3429.56, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3429.56, + "end": 3429.92, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3429.92, + "end": 3431.68, + "probability": 0.9619140625 + }, + { + "word": " use", + "start": 3431.68, + "end": 3432.02, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 3432.02, + "end": 3432.32, + "probability": 1.0 + } + ] + }, + { + "id": 1380, + "text": "I'm not...", + "start": 3432.38, + "end": 3432.84, + "words": [ + { + "word": " I'm", + "start": 3432.38, + "end": 3432.5, + "probability": 0.890625 + }, + { + "word": " not...", + "start": 3432.5, + "end": 3432.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1381, + "text": "I use it to maybe play a game or run a language thing or something where I don't have to go", + "start": 3433.46, + "end": 3438.72, + "words": [ + { + "word": " I", + "start": 3433.23, + "end": 3433.48, + "probability": 0.9990234375 + }, + { + "word": " use", + "start": 3433.48, + "end": 3433.76, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 3433.76, + "end": 3433.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 3433.94, + "end": 3434.04, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 3434.04, + "end": 3434.22, + "probability": 1.0 + }, + { + "word": " play", + "start": 3434.22, + "end": 3434.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 3434.6, + "end": 3434.86, + "probability": 1.0 + }, + { + "word": " game", + "start": 3434.86, + "end": 3435.62, + "probability": 1.0 + }, + { + "word": " or", + "start": 3435.62, + "end": 3435.82, + "probability": 0.99951171875 + }, + { + "word": " run", + "start": 3435.82, + "end": 3436.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 3436.04, + "end": 3436.14, + "probability": 1.0 + }, + { + "word": " language", + "start": 3436.14, + "end": 3436.78, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3436.78, + "end": 3437.14, + "probability": 1.0 + }, + { + "word": " or", + "start": 3437.14, + "end": 3437.36, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 3437.36, + "end": 3437.64, + "probability": 1.0 + }, + { + "word": " where", + "start": 3437.64, + "end": 3437.92, + "probability": 0.98046875 + }, + { + "word": " I", + "start": 3437.92, + "end": 3438.04, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3438.04, + "end": 3438.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 3438.26, + "end": 3438.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3438.38, + "end": 3438.58, + "probability": 1.0 + }, + { + "word": " go", + "start": 3438.58, + "end": 3438.72, + "probability": 1.0 + } + ] + }, + { + "id": 1382, + "text": "on the internet.", + "start": 3438.72, + "end": 3439.38, + "words": [ + { + "word": " on", + "start": 3438.72, + "end": 3438.84, + "probability": 0.1964111328125 + }, + { + "word": " the", + "start": 3438.84, + "end": 3439.12, + "probability": 0.99609375 + }, + { + "word": " internet.", + "start": 3439.12, + "end": 3439.38, + "probability": 0.68798828125 + } + ] + }, + { + "id": 1383, + "text": "I just stick in the DVD.", + "start": 3439.48, + "end": 3440.96, + "words": [ + { + "word": " I", + "start": 3439.48, + "end": 3439.6, + "probability": 0.99560546875 + }, + { + "word": " just", + "start": 3439.6, + "end": 3439.78, + "probability": 0.9853515625 + }, + { + "word": " stick", + "start": 3439.78, + "end": 3440.34, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3440.34, + "end": 3440.52, + "probability": 0.83056640625 + }, + { + "word": " the", + "start": 3440.52, + "end": 3440.64, + "probability": 0.99609375 + }, + { + "word": " DVD.", + "start": 3440.64, + "end": 3440.96, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1384, + "text": "All right.", + "start": 3441.68, + "end": 3442.22, + "words": [ + { + "word": " All", + "start": 3441.68, + "end": 3442.04, + "probability": 0.431884765625 + }, + { + "word": " right.", + "start": 3442.04, + "end": 3442.22, + "probability": 1.0 + } + ] + }, + { + "id": 1385, + "text": "Well, the one that...", + "start": 3442.24, + "end": 3443.16, + "words": [ + { + "word": " Well,", + "start": 3442.24, + "end": 3442.38, + "probability": 0.93505859375 + }, + { + "word": " the", + "start": 3442.44, + "end": 3442.8, + "probability": 0.468505859375 + }, + { + "word": " one", + "start": 3442.8, + "end": 3442.96, + "probability": 0.99267578125 + }, + { + "word": " that...", + "start": 3442.96, + "end": 3443.16, + "probability": 0.52587890625 + } + ] + }, + { + "id": 1386, + "text": "If you're not using it online, you're probably fine.", + "start": 3443.16, + "end": 3444.84, + "words": [ + { + "word": " If", + "start": 3443.16, + "end": 3443.24, + "probability": 0.96044921875 + }, + { + "word": " you're", + "start": 3443.24, + "end": 3443.38, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 3443.38, + "end": 3443.44, + "probability": 0.9931640625 + }, + { + "word": " using", + "start": 3443.44, + "end": 3443.66, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3443.66, + "end": 3443.76, + "probability": 0.93505859375 + }, + { + "word": " online,", + "start": 3443.76, + "end": 3443.94, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 3444.14, + "end": 3444.28, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3444.28, + "end": 3444.52, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 3444.52, + "end": 3444.84, + "probability": 1.0 + } + ] + }, + { + "id": 1387, + "text": "But if you're on the internet at all with something that old...", + "start": 3445.08, + "end": 3448.58, + "words": [ + { + "word": " But", + "start": 3445.08, + "end": 3445.26, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 3445.26, + "end": 3445.38, + "probability": 0.9951171875 + }, + { + "word": " you're", + "start": 3445.38, + "end": 3445.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 3445.5, + "end": 3445.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3445.74, + "end": 3445.84, + "probability": 1.0 + }, + { + "word": " internet", + "start": 3445.84, + "end": 3446.12, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3446.12, + "end": 3446.46, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 3446.46, + "end": 3446.86, + "probability": 1.0 + }, + { + "word": " with", + "start": 3446.86, + "end": 3447.36, + "probability": 0.9677734375 + }, + { + "word": " something", + "start": 3447.36, + "end": 3447.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 3447.62, + "end": 3447.9, + "probability": 1.0 + }, + { + "word": " old...", + "start": 3447.9, + "end": 3448.58, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1388, + "text": "No, I'm not.", + "start": 3448.58, + "end": 3449.1, + "words": [ + { + "word": " No,", + "start": 3448.58, + "end": 3448.74, + "probability": 0.99560546875 + }, + { + "word": " I'm", + "start": 3448.78, + "end": 3448.96, + "probability": 1.0 + }, + { + "word": " not.", + "start": 3448.96, + "end": 3449.1, + "probability": 1.0 + } + ] + }, + { + "id": 1389, + "text": "Definitely not.", + "start": 3449.26, + "end": 3449.64, + "words": [ + { + "word": " Definitely", + "start": 3449.26, + "end": 3449.62, + "probability": 0.99853515625 + }, + { + "word": " not.", + "start": 3449.62, + "end": 3449.64, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1390, + "text": "Even the Vista machine?", + "start": 3449.64, + "end": 3450.58, + "words": [ + { + "word": " Even", + "start": 3449.64, + "end": 3449.94, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 3449.94, + "end": 3450.1, + "probability": 0.99951171875 + }, + { + "word": " Vista", + "start": 3450.1, + "end": 3450.3, + "probability": 0.97998046875 + }, + { + "word": " machine?", + "start": 3450.3, + "end": 3450.58, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1391, + "text": "Even the Vista machine.", + "start": 3451.14, + "end": 3452.24, + "words": [ + { + "word": " Even", + "start": 3451.14, + "end": 3451.5, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 3451.5, + "end": 3451.66, + "probability": 1.0 + }, + { + "word": " Vista", + "start": 3451.66, + "end": 3451.96, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 3451.96, + "end": 3452.24, + "probability": 1.0 + } + ] + }, + { + "id": 1392, + "text": "I know.", + "start": 3452.32, + "end": 3452.68, + "words": [ + { + "word": " I", + "start": 3452.32, + "end": 3452.56, + "probability": 0.99560546875 + }, + { + "word": " know.", + "start": 3452.56, + "end": 3452.68, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1393, + "text": "I was a little bit...", + "start": 3452.76, + "end": 3453.56, + "words": [ + { + "word": " I", + "start": 3452.76, + "end": 3452.94, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3452.94, + "end": 3453.06, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3453.06, + "end": 3453.22, + "probability": 0.9521484375 + }, + { + "word": " little", + "start": 3453.22, + "end": 3453.38, + "probability": 1.0 + }, + { + "word": " bit...", + "start": 3453.38, + "end": 3453.56, + "probability": 0.94921875 + } + ] + }, + { + "id": 1394, + "text": "I was surprised they're not supporting Vista.", + "start": 3453.56, + "end": 3455.54, + "words": [ + { + "word": " I", + "start": 3453.56, + "end": 3453.68, + "probability": 0.99267578125 + }, + { + "word": " was", + "start": 3453.68, + "end": 3453.82, + "probability": 0.99951171875 + }, + { + "word": " surprised", + "start": 3453.82, + "end": 3454.14, + "probability": 0.998046875 + }, + { + "word": " they're", + "start": 3454.14, + "end": 3454.46, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 3454.46, + "end": 3454.6, + "probability": 1.0 + }, + { + "word": " supporting", + "start": 3454.6, + "end": 3455.0, + "probability": 0.99951171875 + }, + { + "word": " Vista.", + "start": 3455.0, + "end": 3455.54, + "probability": 1.0 + } + ] + }, + { + "id": 1395, + "text": "It's 15 years old.", + "start": 3455.74, + "end": 3456.94, + "words": [ + { + "word": " It's", + "start": 3455.74, + "end": 3456.1, + "probability": 0.9990234375 + }, + { + "word": " 15", + "start": 3456.1, + "end": 3456.36, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 3456.36, + "end": 3456.66, + "probability": 1.0 + }, + { + "word": " old.", + "start": 3456.66, + "end": 3456.94, + "probability": 1.0 + } + ] + }, + { + "id": 1396, + "text": "They're not going to support that.", + "start": 3457.06, + "end": 3458.22, + "words": [ + { + "word": " They're", + "start": 3457.06, + "end": 3457.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 3457.24, + "end": 3457.38, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 3457.38, + "end": 3457.54, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 3457.54, + "end": 3457.64, + "probability": 1.0 + }, + { + "word": " support", + "start": 3457.64, + "end": 3457.86, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3457.86, + "end": 3458.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1397, + "text": "Oh, it's 15 years old?", + "start": 3458.88, + "end": 3460.42, + "words": [ + { + "word": " Oh,", + "start": 3458.88, + "end": 3459.24, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 3459.24, + "end": 3459.42, + "probability": 1.0 + }, + { + "word": " 15", + "start": 3459.42, + "end": 3459.74, + "probability": 1.0 + }, + { + "word": " years", + "start": 3459.74, + "end": 3460.1, + "probability": 1.0 + }, + { + "word": " old?", + "start": 3460.1, + "end": 3460.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1398, + "text": "Yeah.", + "start": 3460.66, + "end": 3460.78, + "words": [ + { + "word": " Yeah.", + "start": 3460.66, + "end": 3460.78, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1399, + "text": "Seven was out for 10 years.", + "start": 3461.28, + "end": 3462.52, + "words": [ + { + "word": " Seven", + "start": 3461.28, + "end": 3461.64, + "probability": 0.07781982421875 + }, + { + "word": " was", + "start": 3461.64, + "end": 3461.82, + "probability": 1.0 + }, + { + "word": " out", + "start": 3461.82, + "end": 3461.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 3461.96, + "end": 3462.12, + "probability": 1.0 + }, + { + "word": " 10", + "start": 3462.12, + "end": 3462.28, + "probability": 0.9873046875 + }, + { + "word": " years.", + "start": 3462.28, + "end": 3462.52, + "probability": 1.0 + } + ] + }, + { + "id": 1400, + "text": "Vista was out for three years before that and was in beta for another year and a half", + "start": 3462.6, + "end": 3465.34, + "words": [ + { + "word": " Vista", + "start": 3462.6, + "end": 3462.82, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 3462.82, + "end": 3462.94, + "probability": 1.0 + }, + { + "word": " out", + "start": 3462.94, + "end": 3463.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 3463.1, + "end": 3463.24, + "probability": 0.896484375 + }, + { + "word": " three", + "start": 3463.24, + "end": 3463.44, + "probability": 0.96630859375 + }, + { + "word": " years", + "start": 3463.44, + "end": 3463.54, + "probability": 1.0 + }, + { + "word": " before", + "start": 3463.54, + "end": 3463.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 3463.78, + "end": 3464.06, + "probability": 1.0 + }, + { + "word": " and", + "start": 3464.06, + "end": 3464.22, + "probability": 0.87939453125 + }, + { + "word": " was", + "start": 3464.22, + "end": 3464.3, + "probability": 0.96044921875 + }, + { + "word": " in", + "start": 3464.3, + "end": 3464.4, + "probability": 0.99560546875 + }, + { + "word": " beta", + "start": 3464.4, + "end": 3464.56, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 3464.56, + "end": 3464.76, + "probability": 1.0 + }, + { + "word": " another", + "start": 3464.76, + "end": 3464.9, + "probability": 0.99951171875 + }, + { + "word": " year", + "start": 3464.9, + "end": 3465.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 3465.1, + "end": 3465.22, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3465.22, + "end": 3465.26, + "probability": 1.0 + }, + { + "word": " half", + "start": 3465.26, + "end": 3465.34, + "probability": 1.0 + } + ] + }, + { + "id": 1401, + "text": "before that.", + "start": 3465.34, + "end": 3465.76, + "words": [ + { + "word": " before", + "start": 3465.34, + "end": 3465.52, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 3465.52, + "end": 3465.76, + "probability": 1.0 + } + ] + }, + { + "id": 1402, + "text": "So it's 15 years old.", + "start": 3465.82, + "end": 3467.02, + "words": [ + { + "word": " So", + "start": 3465.82, + "end": 3465.94, + "probability": 0.9931640625 + }, + { + "word": " it's", + "start": 3465.94, + "end": 3466.08, + "probability": 0.900390625 + }, + { + "word": " 15", + "start": 3466.08, + "end": 3466.4, + "probability": 1.0 + }, + { + "word": " years", + "start": 3466.4, + "end": 3466.72, + "probability": 1.0 + }, + { + "word": " old.", + "start": 3466.72, + "end": 3467.02, + "probability": 1.0 + } + ] + }, + { + "id": 1403, + "text": "Oh, okay.", + "start": 3467.02, + "end": 3467.86, + "words": [ + { + "word": " Oh,", + "start": 3467.02, + "end": 3467.38, + "probability": 0.213134765625 + }, + { + "word": " okay.", + "start": 3467.5, + "end": 3467.86, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1404, + "text": "So you got to get with the times, man.", + "start": 3467.92, + "end": 3470.06, + "words": [ + { + "word": " So", + "start": 3467.92, + "end": 3468.04, + "probability": 0.92236328125 + }, + { + "word": " you", + "start": 3468.04, + "end": 3468.18, + "probability": 0.94580078125 + }, + { + "word": " got", + "start": 3468.18, + "end": 3468.26, + "probability": 0.130859375 + }, + { + "word": " to", + "start": 3468.26, + "end": 3468.72, + "probability": 0.99658203125 + }, + { + "word": " get", + "start": 3468.72, + "end": 3468.86, + "probability": 0.9248046875 + }, + { + "word": " with", + "start": 3468.86, + "end": 3469.4, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 3469.4, + "end": 3469.5, + "probability": 0.99951171875 + }, + { + "word": " times,", + "start": 3469.5, + "end": 3469.8, + "probability": 1.0 + }, + { + "word": " man.", + "start": 3469.86, + "end": 3470.06, + "probability": 1.0 + } + ] + }, + { + "id": 1405, + "text": "Come down and see us.", + "start": 3470.18, + "end": 3471.54, + "words": [ + { + "word": " Come", + "start": 3470.18, + "end": 3470.58, + "probability": 0.92138671875 + }, + { + "word": " down", + "start": 3470.58, + "end": 3470.8, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3470.8, + "end": 3470.82, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 3470.82, + "end": 3471.42, + "probability": 1.0 + }, + { + "word": " us.", + "start": 3471.42, + "end": 3471.54, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1406, + "text": "Yeah.", + "start": 3471.64, + "end": 3471.72, + "words": [ + { + "word": " Yeah.", + "start": 3471.64, + "end": 3471.72, + "probability": 0.16162109375 + } + ] + }, + { + "id": 1407, + "text": "Well, I was forced into Windows 10 because they just kept...", + "start": 3471.72, + "end": 3476.96, + "words": [ + { + "word": " Well,", + "start": 3471.72, + "end": 3471.72, + "probability": 0.54541015625 + }, + { + "word": " I", + "start": 3471.72, + "end": 3471.76, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3471.76, + "end": 3472.14, + "probability": 0.97802734375 + }, + { + "word": " forced", + "start": 3472.14, + "end": 3472.9, + "probability": 1.0 + }, + { + "word": " into", + "start": 3472.9, + "end": 3473.2, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 3473.2, + "end": 3474.76, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 3474.76, + "end": 3475.2, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 3475.2, + "end": 3475.86, + "probability": 0.85107421875 + }, + { + "word": " they", + "start": 3475.86, + "end": 3476.14, + "probability": 1.0 + }, + { + "word": " just", + "start": 3476.14, + "end": 3476.36, + "probability": 0.9140625 + }, + { + "word": " kept...", + "start": 3476.36, + "end": 3476.96, + "probability": 0.5732421875 + } + ] + }, + { + "id": 1408, + "text": "They'd break into whatever I was looking at and tell me, don't miss your opportunity to", + "start": 3477.58, + "end": 3481.82, + "words": [ + { + "word": " They'd", + "start": 3477.58, + "end": 3478.02, + "probability": 0.9921875 + }, + { + "word": " break", + "start": 3478.02, + "end": 3478.18, + "probability": 1.0 + }, + { + "word": " into", + "start": 3478.18, + "end": 3478.5, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 3478.5, + "end": 3478.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 3478.78, + "end": 3479.14, + "probability": 1.0 + }, + { + "word": " was", + "start": 3479.14, + "end": 3479.3, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3479.3, + "end": 3479.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 3479.54, + "end": 3479.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 3479.8, + "end": 3479.9, + "probability": 1.0 + }, + { + "word": " tell", + "start": 3479.9, + "end": 3480.1, + "probability": 1.0 + }, + { + "word": " me,", + "start": 3480.1, + "end": 3480.3, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3480.34, + "end": 3480.58, + "probability": 0.984375 + }, + { + "word": " miss", + "start": 3480.58, + "end": 3480.72, + "probability": 1.0 + }, + { + "word": " your", + "start": 3480.72, + "end": 3480.94, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 3480.94, + "end": 3481.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 3481.42, + "end": 3481.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1409, + "text": "get the free Windows 10.", + "start": 3481.82, + "end": 3483.38, + "words": [ + { + "word": " get", + "start": 3481.82, + "end": 3482.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 3482.08, + "end": 3482.26, + "probability": 1.0 + }, + { + "word": " free", + "start": 3482.26, + "end": 3482.48, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 3482.48, + "end": 3483.02, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 3483.02, + "end": 3483.38, + "probability": 1.0 + } + ] + }, + { + "id": 1410, + "text": "Finally one day I just said, I can't take this anymore, so I did.", + "start": 3483.52, + "end": 3486.96, + "words": [ + { + "word": " Finally", + "start": 3483.52, + "end": 3483.96, + "probability": 0.85791015625 + }, + { + "word": " one", + "start": 3483.96, + "end": 3484.34, + "probability": 0.06463623046875 + }, + { + "word": " day", + "start": 3484.34, + "end": 3484.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 3484.56, + "end": 3484.72, + "probability": 0.97265625 + }, + { + "word": " just", + "start": 3484.72, + "end": 3484.94, + "probability": 1.0 + }, + { + "word": " said,", + "start": 3484.94, + "end": 3485.14, + "probability": 1.0 + }, + { + "word": " I", + "start": 3485.22, + "end": 3485.32, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 3485.32, + "end": 3485.62, + "probability": 1.0 + }, + { + "word": " take", + "start": 3485.62, + "end": 3485.82, + "probability": 1.0 + }, + { + "word": " this", + "start": 3485.82, + "end": 3485.98, + "probability": 1.0 + }, + { + "word": " anymore,", + "start": 3485.98, + "end": 3486.28, + "probability": 1.0 + }, + { + "word": " so", + "start": 3486.42, + "end": 3486.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 3486.56, + "end": 3486.74, + "probability": 1.0 + }, + { + "word": " did.", + "start": 3486.74, + "end": 3486.96, + "probability": 1.0 + } + ] + }, + { + "id": 1411, + "text": "Yeah.", + "start": 3487.16, + "end": 3487.52, + "words": [ + { + "word": " Yeah.", + "start": 3487.16, + "end": 3487.52, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1412, + "text": "They got in trouble for that.", + "start": 3487.56, + "end": 3489.08, + "words": [ + { + "word": " They", + "start": 3487.56, + "end": 3487.96, + "probability": 0.990234375 + }, + { + "word": " got", + "start": 3487.96, + "end": 3488.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 3488.46, + "end": 3488.56, + "probability": 1.0 + }, + { + "word": " trouble", + "start": 3488.56, + "end": 3488.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 3488.72, + "end": 3488.92, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3488.92, + "end": 3489.08, + "probability": 1.0 + } + ] + }, + { + "id": 1413, + "text": "That's pretty much how all 10 users became 10 users.", + "start": 3489.14, + "end": 3491.92, + "words": [ + { + "word": " That's", + "start": 3489.14, + "end": 3489.32, + "probability": 0.99853515625 + }, + { + "word": " pretty", + "start": 3489.32, + "end": 3489.44, + "probability": 1.0 + }, + { + "word": " much", + "start": 3489.44, + "end": 3489.64, + "probability": 1.0 + }, + { + "word": " how", + "start": 3489.64, + "end": 3489.84, + "probability": 1.0 + }, + { + "word": " all", + "start": 3489.84, + "end": 3490.3, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 3490.3, + "end": 3490.64, + "probability": 0.982421875 + }, + { + "word": " users", + "start": 3490.64, + "end": 3490.94, + "probability": 1.0 + }, + { + "word": " became", + "start": 3490.94, + "end": 3491.32, + "probability": 1.0 + }, + { + "word": " 10", + "start": 3491.32, + "end": 3491.6, + "probability": 0.99951171875 + }, + { + "word": " users.", + "start": 3491.6, + "end": 3491.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1414, + "text": "We got to take a break though.", + "start": 3492.3, + "end": 3494.06, + "words": [ + { + "word": " We", + "start": 3492.3, + "end": 3492.7, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 3492.7, + "end": 3493.22, + "probability": 0.8818359375 + }, + { + "word": " to", + "start": 3493.22, + "end": 3493.36, + "probability": 1.0 + }, + { + "word": " take", + "start": 3493.36, + "end": 3493.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 3493.5, + "end": 3493.62, + "probability": 1.0 + }, + { + "word": " break", + "start": 3493.62, + "end": 3493.84, + "probability": 1.0 + }, + { + "word": " though.", + "start": 3493.84, + "end": 3494.06, + "probability": 0.175537109375 + } + ] + }, + { + "id": 1415, + "text": "Sorry about that.", + "start": 3494.08, + "end": 3494.84, + "words": [ + { + "word": " Sorry", + "start": 3494.08, + "end": 3494.36, + "probability": 0.94189453125 + }, + { + "word": " about", + "start": 3494.36, + "end": 3494.62, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3494.62, + "end": 3494.84, + "probability": 1.0 + } + ] + }, + { + "id": 1416, + "text": "Okay.", + "start": 3494.92, + "end": 3494.96, + "words": [ + { + "word": " Okay.", + "start": 3494.92, + "end": 3494.96, + "probability": 0.12115478515625 + } + ] + }, + { + "id": 1417, + "text": "Thanks a lot.", + "start": 3494.96, + "end": 3495.12, + "words": [ + { + "word": " Thanks", + "start": 3494.96, + "end": 3494.96, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 3494.96, + "end": 3495.0, + "probability": 0.99951171875 + }, + { + "word": " lot.", + "start": 3495.0, + "end": 3495.12, + "probability": 1.0 + } + ] + }, + { + "id": 1418, + "text": "Bye-bye.", + "start": 3495.52, + "end": 3496.08, + "words": [ + { + "word": " Bye", + "start": 3495.52, + "end": 3495.96, + "probability": 0.99951171875 + }, + { + "word": "-bye.", + "start": 3495.96, + "end": 3496.08, + "probability": 0.9697265625 + } + ] + }, + { + "id": 1419, + "text": "Well, come down and see us at the shop, 510 East Fort Lowell.", + "start": 3497.02, + "end": 3499.32, + "words": [ + { + "word": " Well,", + "start": 3497.02, + "end": 3497.04, + "probability": 0.77783203125 + }, + { + "word": " come", + "start": 3497.04, + "end": 3497.16, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 3497.16, + "end": 3497.3, + "probability": 0.99267578125 + }, + { + "word": " and", + "start": 3497.3, + "end": 3497.44, + "probability": 0.99560546875 + }, + { + "word": " see", + "start": 3497.44, + "end": 3497.6, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 3497.6, + "end": 3497.72, + "probability": 1.0 + }, + { + "word": " at", + "start": 3497.72, + "end": 3497.76, + "probability": 0.323486328125 + }, + { + "word": " the", + "start": 3497.76, + "end": 3497.9, + "probability": 0.908203125 + }, + { + "word": " shop,", + "start": 3497.9, + "end": 3498.14, + "probability": 0.69580078125 + }, + { + "word": " 510", + "start": 3498.28, + "end": 3498.64, + "probability": 0.9912109375 + }, + { + "word": " East", + "start": 3498.64, + "end": 3498.84, + "probability": 0.9990234375 + }, + { + "word": " Fort", + "start": 3498.84, + "end": 3499.02, + "probability": 0.97802734375 + }, + { + "word": " Lowell.", + "start": 3499.02, + "end": 3499.32, + "probability": 0.98828125 + } + ] + }, + { + "id": 1420, + "text": "We'll talk to you about your technology and keep you up to date.", + "start": 3499.44, + "end": 3501.94, + "words": [ + { + "word": " We'll", + "start": 3499.44, + "end": 3499.6, + "probability": 0.99609375 + }, + { + "word": " talk", + "start": 3499.6, + "end": 3500.0, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3500.0, + "end": 3500.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 3500.14, + "end": 3500.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 3500.2, + "end": 3500.36, + "probability": 1.0 + }, + { + "word": " your", + "start": 3500.36, + "end": 3500.52, + "probability": 1.0 + }, + { + "word": " technology", + "start": 3500.52, + "end": 3500.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 3500.98, + "end": 3501.2, + "probability": 1.0 + }, + { + "word": " keep", + "start": 3501.2, + "end": 3501.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 3501.36, + "end": 3501.52, + "probability": 1.0 + }, + { + "word": " up", + "start": 3501.52, + "end": 3501.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 3501.64, + "end": 3501.72, + "probability": 0.998046875 + }, + { + "word": " date.", + "start": 3501.72, + "end": 3501.94, + "probability": 1.0 + } + ] + }, + { + "id": 1421, + "text": "We'll be right back with more of the Computer Guru Show right after this.", + "start": 3502.26, + "end": 3504.8, + "words": [ + { + "word": " We'll", + "start": 3502.26, + "end": 3502.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 3502.58, + "end": 3502.66, + "probability": 1.0 + }, + { + "word": " right", + "start": 3502.66, + "end": 3502.82, + "probability": 1.0 + }, + { + "word": " back", + "start": 3502.82, + "end": 3503.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 3503.06, + "end": 3503.3, + "probability": 1.0 + }, + { + "word": " more", + "start": 3503.3, + "end": 3503.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 3503.48, + "end": 3503.56, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3503.56, + "end": 3503.58, + "probability": 0.7119140625 + }, + { + "word": " Computer", + "start": 3503.58, + "end": 3503.8, + "probability": 0.96240234375 + }, + { + "word": " Guru", + "start": 3503.8, + "end": 3504.06, + "probability": 0.9697265625 + }, + { + "word": " Show", + "start": 3504.06, + "end": 3504.24, + "probability": 0.8681640625 + }, + { + "word": " right", + "start": 3504.24, + "end": 3504.42, + "probability": 0.89306640625 + }, + { + "word": " after", + "start": 3504.42, + "end": 3504.5, + "probability": 1.0 + }, + { + "word": " this.", + "start": 3504.5, + "end": 3504.8, + "probability": 1.0 + } + ] + }, + { + "id": 1422, + "text": "Thanks for joining us.", + "start": 3530.1, + "end": 3530.54, + "words": [ + { + "word": " Thanks", + "start": 3530.1, + "end": 3530.54, + "probability": 0.005878448486328125 + }, + { + "word": " for", + "start": 3530.54, + "end": 3530.54, + "probability": 0.671875 + }, + { + "word": " joining", + "start": 3530.54, + "end": 3530.54, + "probability": 0.04315185546875 + }, + { + "word": " us.", + "start": 3530.54, + "end": 3530.54, + "probability": 0.78466796875 + } + ] + }, + { + "id": 1423, + "text": "", + "start": 3530.54, + "end": 3530.54, + "words": [] + }, + { + "id": 1424, + "text": "", + "start": 3530.54, + "end": 3530.54, + "words": [] + }, + { + "id": 1425, + "text": "", + "start": 3530.54, + "end": 3530.54, + "words": [] + }, + { + "id": 1426, + "text": "Your computer guru, Mike Swanson, is here to help you tame that beast of a machine.", + "start": 3530.54, + "end": 3534.2, + "words": [ + { + "word": " Your", + "start": 3530.54, + "end": 3530.54, + "probability": 0.0219573974609375 + }, + { + "word": " computer", + "start": 3530.54, + "end": 3530.92, + "probability": 0.98681640625 + }, + { + "word": " guru,", + "start": 3530.92, + "end": 3531.34, + "probability": 0.99951171875 + }, + { + "word": " Mike", + "start": 3531.42, + "end": 3531.6, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 3531.6, + "end": 3532.0, + "probability": 0.9296875 + }, + { + "word": " is", + "start": 3532.12, + "end": 3532.26, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 3532.26, + "end": 3532.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 3532.4, + "end": 3532.52, + "probability": 1.0 + }, + { + "word": " help", + "start": 3532.52, + "end": 3532.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 3532.76, + "end": 3532.92, + "probability": 1.0 + }, + { + "word": " tame", + "start": 3532.92, + "end": 3533.12, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3533.12, + "end": 3533.32, + "probability": 1.0 + }, + { + "word": " beast", + "start": 3533.32, + "end": 3533.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 3533.6, + "end": 3533.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 3533.84, + "end": 3533.94, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 3533.94, + "end": 3534.2, + "probability": 1.0 + } + ] + }, + { + "id": 1427, + "text": "Join the chat right now at gurushow.com or call in.", + "start": 3534.54, + "end": 3538.08, + "words": [ + { + "word": " Join", + "start": 3534.54, + "end": 3534.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3534.98, + "end": 3535.16, + "probability": 1.0 + }, + { + "word": " chat", + "start": 3535.16, + "end": 3535.34, + "probability": 1.0 + }, + { + "word": " right", + "start": 3535.34, + "end": 3535.58, + "probability": 1.0 + }, + { + "word": " now", + "start": 3535.58, + "end": 3535.88, + "probability": 1.0 + }, + { + "word": " at", + "start": 3535.88, + "end": 3536.16, + "probability": 0.99951171875 + }, + { + "word": " gurushow", + "start": 3536.16, + "end": 3536.72, + "probability": 0.90625 + }, + { + "word": ".com", + "start": 3536.72, + "end": 3537.34, + "probability": 1.0 + }, + { + "word": " or", + "start": 3537.34, + "end": 3537.58, + "probability": 0.97802734375 + }, + { + "word": " call", + "start": 3537.58, + "end": 3537.82, + "probability": 1.0 + }, + { + "word": " in.", + "start": 3537.82, + "end": 3538.08, + "probability": 1.0 + } + ] + }, + { + "id": 1428, + "text": "This is the Computer Guru Show on KVOY, The Voice.", + "start": 3538.16, + "end": 3541.54, + "words": [ + { + "word": " This", + "start": 3538.16, + "end": 3538.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 3538.44, + "end": 3538.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3538.8, + "end": 3538.88, + "probability": 0.79296875 + }, + { + "word": " Computer", + "start": 3538.88, + "end": 3539.14, + "probability": 0.99365234375 + }, + { + "word": " Guru", + "start": 3539.14, + "end": 3539.5, + "probability": 0.9990234375 + }, + { + "word": " Show", + "start": 3539.5, + "end": 3539.86, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 3539.86, + "end": 3540.26, + "probability": 0.9990234375 + }, + { + "word": " KVOY,", + "start": 3540.26, + "end": 3540.9, + "probability": 0.94580078125 + }, + { + "word": " The", + "start": 3541.1, + "end": 3541.32, + "probability": 0.85693359375 + }, + { + "word": " Voice.", + "start": 3541.32, + "end": 3541.54, + "probability": 0.78173828125 + } + ] + }, + { + "id": 1429, + "text": "I'm nerdy in the extreme and lighter than sour cream.", + "start": 3542.4, + "end": 3545.48, + "words": [ + { + "word": " I'm", + "start": 3542.4, + "end": 3542.84, + "probability": 0.865234375 + }, + { + "word": " nerdy", + "start": 3542.84, + "end": 3543.16, + "probability": 0.7802734375 + }, + { + "word": " in", + "start": 3543.16, + "end": 3543.36, + "probability": 0.39208984375 + }, + { + "word": " the", + "start": 3543.36, + "end": 3543.6, + "probability": 0.9990234375 + }, + { + "word": " extreme", + "start": 3543.6, + "end": 3544.02, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3544.02, + "end": 3544.26, + "probability": 0.939453125 + }, + { + "word": " lighter", + "start": 3544.26, + "end": 3544.6, + "probability": 0.55126953125 + }, + { + "word": " than", + "start": 3544.6, + "end": 3544.86, + "probability": 1.0 + }, + { + "word": " sour", + "start": 3544.86, + "end": 3545.12, + "probability": 0.99951171875 + }, + { + "word": " cream.", + "start": 3545.12, + "end": 3545.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1430, + "text": "I was in a V Club and Glee Club and even the Chess Team.", + "start": 3545.66, + "end": 3548.82, + "words": [ + { + "word": " I", + "start": 3545.66, + "end": 3546.08, + "probability": 1.0 + }, + { + "word": " was", + "start": 3546.08, + "end": 3546.22, + "probability": 1.0 + }, + { + "word": " in", + "start": 3546.22, + "end": 3546.36, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3546.36, + "end": 3546.5, + "probability": 0.27099609375 + }, + { + "word": " V", + "start": 3546.5, + "end": 3546.68, + "probability": 0.2064208984375 + }, + { + "word": " Club", + "start": 3546.68, + "end": 3546.92, + "probability": 0.416015625 + }, + { + "word": " and", + "start": 3546.92, + "end": 3547.18, + "probability": 0.99951171875 + }, + { + "word": " Glee", + "start": 3547.18, + "end": 3547.4, + "probability": 0.99609375 + }, + { + "word": " Club", + "start": 3547.4, + "end": 3547.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 3547.58, + "end": 3547.82, + "probability": 1.0 + }, + { + "word": " even", + "start": 3547.82, + "end": 3548.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 3548.06, + "end": 3548.22, + "probability": 0.99951171875 + }, + { + "word": " Chess", + "start": 3548.22, + "end": 3548.58, + "probability": 0.609375 + }, + { + "word": " Team.", + "start": 3548.58, + "end": 3548.82, + "probability": 0.9619140625 + } + ] + }, + { + "id": 1431, + "text": "Only question I ever thought was hard, what do I like, Kirk, or do I like Picard?", + "start": 3548.92, + "end": 3552.18, + "words": [ + { + "word": " Only", + "start": 3548.92, + "end": 3549.06, + "probability": 0.9697265625 + }, + { + "word": " question", + "start": 3549.06, + "end": 3549.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 3549.38, + "end": 3549.62, + "probability": 0.853515625 + }, + { + "word": " ever", + "start": 3549.62, + "end": 3549.92, + "probability": 0.70458984375 + }, + { + "word": " thought", + "start": 3549.92, + "end": 3550.1, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3550.1, + "end": 3550.26, + "probability": 1.0 + }, + { + "word": " hard,", + "start": 3550.26, + "end": 3550.5, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 3550.58, + "end": 3550.68, + "probability": 0.98583984375 + }, + { + "word": " do", + "start": 3550.68, + "end": 3550.78, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 3550.78, + "end": 3550.9, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3550.9, + "end": 3551.08, + "probability": 1.0 + }, + { + "word": " Kirk,", + "start": 3551.12, + "end": 3551.26, + "probability": 0.8564453125 + }, + { + "word": " or", + "start": 3551.3, + "end": 3551.44, + "probability": 1.0 + }, + { + "word": " do", + "start": 3551.44, + "end": 3551.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 3551.5, + "end": 3551.62, + "probability": 1.0 + }, + { + "word": " like", + "start": 3551.62, + "end": 3551.84, + "probability": 1.0 + }, + { + "word": " Picard?", + "start": 3551.84, + "end": 3552.18, + "probability": 0.966796875 + } + ] + }, + { + "id": 1432, + "text": "Spend every weekend at the Renaissance Fair, got my name on my underwear.", + "start": 3552.32, + "end": 3555.4, + "words": [ + { + "word": " Spend", + "start": 3552.32, + "end": 3552.62, + "probability": 0.97265625 + }, + { + "word": " every", + "start": 3552.62, + "end": 3552.78, + "probability": 0.99951171875 + }, + { + "word": " weekend", + "start": 3552.78, + "end": 3553.1, + "probability": 0.9658203125 + }, + { + "word": " at", + "start": 3553.1, + "end": 3553.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 3553.26, + "end": 3553.3, + "probability": 1.0 + }, + { + "word": " Renaissance", + "start": 3553.3, + "end": 3553.62, + "probability": 0.998046875 + }, + { + "word": " Fair,", + "start": 3553.62, + "end": 3554.22, + "probability": 0.970703125 + }, + { + "word": " got", + "start": 3554.32, + "end": 3554.38, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 3554.38, + "end": 3554.5, + "probability": 1.0 + }, + { + "word": " name", + "start": 3554.5, + "end": 3554.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 3554.72, + "end": 3554.86, + "probability": 1.0 + }, + { + "word": " my", + "start": 3554.86, + "end": 3555.0, + "probability": 0.99951171875 + }, + { + "word": " underwear.", + "start": 3555.0, + "end": 3555.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1433, + "text": "I've seen these trolls, I've seen these trolls, I've seen these trolls, I've seen these", + "start": 3555.9, + "end": 3557.0, + "words": [ + { + "word": " I've", + "start": 3555.9, + "end": 3556.16, + "probability": 0.255126953125 + }, + { + "word": " seen", + "start": 3556.16, + "end": 3556.38, + "probability": 0.9287109375 + }, + { + "word": " these", + "start": 3556.38, + "end": 3556.64, + "probability": 0.94677734375 + }, + { + "word": " trolls,", + "start": 3556.64, + "end": 3556.92, + "probability": 0.411865234375 + }, + { + "word": " I've", + "start": 3556.96, + "end": 3557.0, + "probability": 0.60107421875 + }, + { + "word": " seen", + "start": 3557.0, + "end": 3557.0, + "probability": 0.97119140625 + }, + { + "word": " these", + "start": 3557.0, + "end": 3557.0, + "probability": 0.82666015625 + }, + { + "word": " trolls,", + "start": 3557.0, + "end": 3557.0, + "probability": 0.51416015625 + }, + { + "word": " I've", + "start": 3557.0, + "end": 3557.0, + "probability": 0.935546875 + }, + { + "word": " seen", + "start": 3557.0, + "end": 3557.0, + "probability": 0.99755859375 + }, + { + "word": " these", + "start": 3557.0, + "end": 3557.0, + "probability": 0.98828125 + }, + { + "word": " trolls,", + "start": 3557.0, + "end": 3557.0, + "probability": 0.9892578125 + }, + { + "word": " I've", + "start": 3557.0, + "end": 3557.0, + "probability": 0.9541015625 + }, + { + "word": " seen", + "start": 3557.0, + "end": 3557.0, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 3557.0, + "end": 3557.0, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1434, + "text": "", + "start": 3557.0, + "end": 3557.0, + "words": [] + }, + { + "id": 1435, + "text": "trolls.", + "start": 3557.0, + "end": 3557.14, + "words": [ + { + "word": " trolls.", + "start": 3557.0, + "end": 3557.14, + "probability": 0.0 + } + ] + }, + { + "id": 1436, + "text": "Welcome back to the Computer Guru Show, 7902040 if you'd like to be part of the show or you", + "start": 3557.14, + "end": 3561.16, + "words": [ + { + "word": " Welcome", + "start": 3557.14, + "end": 3557.14, + "probability": 0.04913330078125 + }, + { + "word": " back", + "start": 3557.14, + "end": 3557.44, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 3557.44, + "end": 3557.64, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 3557.64, + "end": 3557.76, + "probability": 0.84423828125 + }, + { + "word": " Computer", + "start": 3557.76, + "end": 3557.98, + "probability": 0.8388671875 + }, + { + "word": " Guru", + "start": 3557.98, + "end": 3558.16, + "probability": 0.97509765625 + }, + { + "word": " Show,", + "start": 3558.16, + "end": 3558.38, + "probability": 0.96044921875 + }, + { + "word": " 7902040", + "start": 3558.52, + "end": 3559.66, + "probability": 0.84716796875 + }, + { + "word": " if", + "start": 3559.66, + "end": 3559.8, + "probability": 0.52880859375 + }, + { + "word": " you'd", + "start": 3559.8, + "end": 3559.94, + "probability": 0.994140625 + }, + { + "word": " like", + "start": 3559.94, + "end": 3560.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3560.08, + "end": 3560.18, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 3560.18, + "end": 3560.26, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 3560.26, + "end": 3560.42, + "probability": 0.98046875 + }, + { + "word": " of", + "start": 3560.42, + "end": 3560.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 3560.52, + "end": 3560.6, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 3560.6, + "end": 3560.78, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 3560.78, + "end": 3561.02, + "probability": 0.2149658203125 + }, + { + "word": " you", + "start": 3561.02, + "end": 3561.16, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1437, + "text": "can join us in the chat, gurushow.com slash chat.", + "start": 3561.16, + "end": 3563.34, + "words": [ + { + "word": " can", + "start": 3561.16, + "end": 3561.26, + "probability": 0.9990234375 + }, + { + "word": " join", + "start": 3561.26, + "end": 3561.44, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 3561.44, + "end": 3561.54, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3561.54, + "end": 3561.62, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 3561.62, + "end": 3561.66, + "probability": 0.99560546875 + }, + { + "word": " chat,", + "start": 3561.66, + "end": 3561.84, + "probability": 0.99755859375 + }, + { + "word": " gurushow", + "start": 3561.96, + "end": 3562.34, + "probability": 0.8857421875 + }, + { + "word": ".com", + "start": 3562.34, + "end": 3562.76, + "probability": 1.0 + }, + { + "word": " slash", + "start": 3562.76, + "end": 3562.96, + "probability": 0.859375 + }, + { + "word": " chat.", + "start": 3562.96, + "end": 3563.34, + "probability": 1.0 + } + ] + }, + { + "id": 1438, + "text": "Let's go ahead and talk to Sandy.", + "start": 3564.2, + "end": 3565.18, + "words": [ + { + "word": " Let's", + "start": 3564.2, + "end": 3564.56, + "probability": 0.978515625 + }, + { + "word": " go", + "start": 3564.56, + "end": 3564.62, + "probability": 0.9990234375 + }, + { + "word": " ahead", + "start": 3564.62, + "end": 3564.72, + "probability": 0.99169921875 + }, + { + "word": " and", + "start": 3564.72, + "end": 3564.78, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 3564.78, + "end": 3564.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 3564.92, + "end": 3565.02, + "probability": 1.0 + }, + { + "word": " Sandy.", + "start": 3565.02, + "end": 3565.18, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1439, + "text": "Hey, Sandy, how are you?", + "start": 3565.36, + "end": 3566.28, + "words": [ + { + "word": " Hey,", + "start": 3565.36, + "end": 3565.6, + "probability": 0.9755859375 + }, + { + "word": " Sandy,", + "start": 3565.62, + "end": 3565.8, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 3565.88, + "end": 3565.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 3565.98, + "end": 3566.12, + "probability": 1.0 + }, + { + "word": " you?", + "start": 3566.12, + "end": 3566.28, + "probability": 1.0 + } + ] + }, + { + "id": 1440, + "text": "Hi.", + "start": 3566.82, + "end": 3567.18, + "words": [ + { + "word": " Hi.", + "start": 3566.82, + "end": 3567.18, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1441, + "text": "Well, I have a question about password manager and it might sound dumb, but I just want to", + "start": 3567.42, + "end": 3572.14, + "words": [ + { + "word": " Well,", + "start": 3567.42, + "end": 3567.76, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 3567.9, + "end": 3568.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 3568.04, + "end": 3568.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 3568.22, + "end": 3568.32, + "probability": 1.0 + }, + { + "word": " question", + "start": 3568.32, + "end": 3568.66, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 3568.66, + "end": 3568.86, + "probability": 0.99951171875 + }, + { + "word": " password", + "start": 3568.86, + "end": 3569.38, + "probability": 0.8779296875 + }, + { + "word": " manager", + "start": 3569.38, + "end": 3569.86, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 3569.86, + "end": 3570.24, + "probability": 0.94189453125 + }, + { + "word": " it", + "start": 3570.24, + "end": 3570.34, + "probability": 0.9990234375 + }, + { + "word": " might", + "start": 3570.34, + "end": 3570.56, + "probability": 0.99951171875 + }, + { + "word": " sound", + "start": 3570.56, + "end": 3570.88, + "probability": 0.99951171875 + }, + { + "word": " dumb,", + "start": 3570.88, + "end": 3571.32, + "probability": 1.0 + }, + { + "word": " but", + "start": 3571.4, + "end": 3571.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 3571.56, + "end": 3571.66, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3571.66, + "end": 3571.82, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 3571.82, + "end": 3572.0, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 3572.0, + "end": 3572.14, + "probability": 1.0 + } + ] + }, + { + "id": 1442, + "text": "make sure I understand it.", + "start": 3572.14, + "end": 3573.46, + "words": [ + { + "word": " make", + "start": 3572.14, + "end": 3572.3, + "probability": 1.0 + }, + { + "word": " sure", + "start": 3572.3, + "end": 3572.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 3572.5, + "end": 3572.62, + "probability": 1.0 + }, + { + "word": " understand", + "start": 3572.62, + "end": 3573.04, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3573.04, + "end": 3573.46, + "probability": 1.0 + } + ] + }, + { + "id": 1443, + "text": "Okay.", + "start": 3573.8, + "end": 3574.16, + "words": [ + { + "word": " Okay.", + "start": 3573.8, + "end": 3574.16, + "probability": 0.6142578125 + } + ] + }, + { + "id": 1444, + "text": "If I use a password manager, I don't have to know the password, but then I go and visit", + "start": 3574.2, + "end": 3579.9, + "words": [ + { + "word": " If", + "start": 3574.2, + "end": 3574.4, + "probability": 0.98779296875 + }, + { + "word": " I", + "start": 3574.4, + "end": 3574.8, + "probability": 1.0 + }, + { + "word": " use", + "start": 3574.8, + "end": 3575.14, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3575.14, + "end": 3575.32, + "probability": 0.86865234375 + }, + { + "word": " password", + "start": 3575.32, + "end": 3575.74, + "probability": 1.0 + }, + { + "word": " manager,", + "start": 3575.74, + "end": 3576.2, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3576.44, + "end": 3576.58, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3576.58, + "end": 3576.72, + "probability": 1.0 + }, + { + "word": " have", + "start": 3576.72, + "end": 3576.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 3576.88, + "end": 3577.06, + "probability": 1.0 + }, + { + "word": " know", + "start": 3577.06, + "end": 3577.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 3577.32, + "end": 3577.5, + "probability": 1.0 + }, + { + "word": " password,", + "start": 3577.5, + "end": 3577.92, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 3578.1, + "end": 3578.82, + "probability": 1.0 + }, + { + "word": " then", + "start": 3578.82, + "end": 3579.0, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3579.0, + "end": 3579.12, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 3579.12, + "end": 3579.32, + "probability": 0.3583984375 + }, + { + "word": " and", + "start": 3579.32, + "end": 3579.66, + "probability": 0.99951171875 + }, + { + "word": " visit", + "start": 3579.66, + "end": 3579.9, + "probability": 0.99609375 + } + ] + }, + { + "id": 1445, + "text": "my daughter, I won't be able to log on to my account not knowing the password.", + "start": 3579.9, + "end": 3585.14, + "words": [ + { + "word": " my", + "start": 3579.9, + "end": 3580.12, + "probability": 1.0 + }, + { + "word": " daughter,", + "start": 3580.12, + "end": 3580.58, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3580.7, + "end": 3580.92, + "probability": 0.99951171875 + }, + { + "word": " won't", + "start": 3580.92, + "end": 3581.14, + "probability": 1.0 + }, + { + "word": " be", + "start": 3581.14, + "end": 3581.3, + "probability": 1.0 + }, + { + "word": " able", + "start": 3581.3, + "end": 3581.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 3581.58, + "end": 3581.82, + "probability": 1.0 + }, + { + "word": " log", + "start": 3581.82, + "end": 3582.02, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3582.02, + "end": 3582.22, + "probability": 0.94482421875 + }, + { + "word": " to", + "start": 3582.22, + "end": 3582.34, + "probability": 1.0 + }, + { + "word": " my", + "start": 3582.34, + "end": 3582.58, + "probability": 1.0 + }, + { + "word": " account", + "start": 3582.58, + "end": 3582.94, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 3582.94, + "end": 3584.2, + "probability": 0.98681640625 + }, + { + "word": " knowing", + "start": 3584.2, + "end": 3584.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3584.54, + "end": 3584.72, + "probability": 1.0 + }, + { + "word": " password.", + "start": 3584.72, + "end": 3585.14, + "probability": 1.0 + } + ] + }, + { + "id": 1446, + "text": "It's physically on my computer.", + "start": 3585.18, + "end": 3586.82, + "words": [ + { + "word": " It's", + "start": 3585.18, + "end": 3585.48, + "probability": 0.9990234375 + }, + { + "word": " physically", + "start": 3585.48, + "end": 3585.9, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 3585.9, + "end": 3586.2, + "probability": 1.0 + }, + { + "word": " my", + "start": 3586.2, + "end": 3586.4, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 3586.4, + "end": 3586.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1447, + "text": "Right?", + "start": 3586.82, + "end": 3587.26, + "words": [ + { + "word": " Right?", + "start": 3586.82, + "end": 3587.26, + "probability": 0.256103515625 + } + ] + }, + { + "id": 1448, + "text": "A physical.", + "start": 3587.42, + "end": 3587.84, + "words": [ + { + "word": " A", + "start": 3587.42, + "end": 3587.54, + "probability": 0.9794921875 + }, + { + "word": " physical.", + "start": 3587.54, + "end": 3587.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1449, + "text": "There's a few ways around that and it turns out that they've thought of that.", + "start": 3588.52, + "end": 3591.56, + "words": [ + { + "word": " There's", + "start": 3588.52, + "end": 3589.04, + "probability": 0.869140625 + }, + { + "word": " a", + "start": 3589.04, + "end": 3589.08, + "probability": 0.998046875 + }, + { + "word": " few", + "start": 3589.08, + "end": 3589.22, + "probability": 0.99951171875 + }, + { + "word": " ways", + "start": 3589.22, + "end": 3589.4, + "probability": 1.0 + }, + { + "word": " around", + "start": 3589.4, + "end": 3589.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 3589.58, + "end": 3589.78, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3589.78, + "end": 3590.0, + "probability": 0.06854248046875 + }, + { + "word": " it", + "start": 3590.0, + "end": 3590.36, + "probability": 0.98681640625 + }, + { + "word": " turns", + "start": 3590.36, + "end": 3590.68, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 3590.68, + "end": 3590.86, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3590.86, + "end": 3590.98, + "probability": 0.98828125 + }, + { + "word": " they've", + "start": 3590.98, + "end": 3591.14, + "probability": 0.9599609375 + }, + { + "word": " thought", + "start": 3591.14, + "end": 3591.28, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3591.28, + "end": 3591.42, + "probability": 0.998046875 + }, + { + "word": " that.", + "start": 3591.42, + "end": 3591.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1450, + "text": "You have a couple of options.", + "start": 3592.36, + "end": 3594.02, + "words": [ + { + "word": " You", + "start": 3592.36, + "end": 3592.88, + "probability": 0.037445068359375 + }, + { + "word": " have", + "start": 3592.88, + "end": 3593.32, + "probability": 0.98681640625 + }, + { + "word": " a", + "start": 3593.32, + "end": 3593.42, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 3593.42, + "end": 3593.64, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 3593.64, + "end": 3593.72, + "probability": 0.99853515625 + }, + { + "word": " options.", + "start": 3593.72, + "end": 3594.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1451, + "text": "You can carry around a backup copy or a portable version of your password manager on a memory", + "start": 3594.18, + "end": 3599.96, + "words": [ + { + "word": " You", + "start": 3594.18, + "end": 3594.28, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 3594.28, + "end": 3594.4, + "probability": 0.9990234375 + }, + { + "word": " carry", + "start": 3594.4, + "end": 3594.66, + "probability": 0.99951171875 + }, + { + "word": " around", + "start": 3594.66, + "end": 3594.96, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 3594.96, + "end": 3595.24, + "probability": 0.99951171875 + }, + { + "word": " backup", + "start": 3595.24, + "end": 3595.88, + "probability": 0.9873046875 + }, + { + "word": " copy", + "start": 3595.88, + "end": 3596.3, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 3596.3, + "end": 3596.58, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 3596.58, + "end": 3596.68, + "probability": 0.978515625 + }, + { + "word": " portable", + "start": 3596.68, + "end": 3597.02, + "probability": 0.9990234375 + }, + { + "word": " version", + "start": 3597.02, + "end": 3597.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 3597.44, + "end": 3597.82, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3597.82, + "end": 3598.16, + "probability": 1.0 + }, + { + "word": " password", + "start": 3598.16, + "end": 3598.8, + "probability": 0.97705078125 + }, + { + "word": " manager", + "start": 3598.8, + "end": 3599.08, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 3599.08, + "end": 3599.46, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3599.46, + "end": 3599.64, + "probability": 0.99951171875 + }, + { + "word": " memory", + "start": 3599.64, + "end": 3599.96, + "probability": 1.0 + } + ] + }, + { + "id": 1452, + "text": "stick that you keep in your pocket or something.", + "start": 3599.96, + "end": 3602.7, + "words": [ + { + "word": " stick", + "start": 3599.96, + "end": 3600.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3600.2, + "end": 3600.88, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 3600.88, + "end": 3601.02, + "probability": 0.99951171875 + }, + { + "word": " keep", + "start": 3601.02, + "end": 3601.26, + "probability": 0.68115234375 + }, + { + "word": " in", + "start": 3601.26, + "end": 3601.78, + "probability": 0.94384765625 + }, + { + "word": " your", + "start": 3601.78, + "end": 3602.1, + "probability": 0.99951171875 + }, + { + "word": " pocket", + "start": 3602.1, + "end": 3602.36, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 3602.36, + "end": 3602.5, + "probability": 0.99169921875 + }, + { + "word": " something.", + "start": 3602.5, + "end": 3602.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1453, + "text": "Then when you go somewhere else or using a machine that is not yours, you can put that", + "start": 3603.4, + "end": 3608.46, + "words": [ + { + "word": " Then", + "start": 3603.4, + "end": 3603.92, + "probability": 0.615234375 + }, + { + "word": " when", + "start": 3603.92, + "end": 3604.44, + "probability": 0.8740234375 + }, + { + "word": " you", + "start": 3604.44, + "end": 3604.52, + "probability": 1.0 + }, + { + "word": " go", + "start": 3604.52, + "end": 3604.68, + "probability": 1.0 + }, + { + "word": " somewhere", + "start": 3604.68, + "end": 3604.96, + "probability": 0.9990234375 + }, + { + "word": " else", + "start": 3604.96, + "end": 3605.18, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 3605.18, + "end": 3605.28, + "probability": 0.904296875 + }, + { + "word": " using", + "start": 3605.28, + "end": 3605.46, + "probability": 0.82861328125 + }, + { + "word": " a", + "start": 3605.46, + "end": 3605.86, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 3605.86, + "end": 3606.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3606.72, + "end": 3607.0, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3607.0, + "end": 3607.16, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 3607.16, + "end": 3607.34, + "probability": 1.0 + }, + { + "word": " yours,", + "start": 3607.34, + "end": 3607.68, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3607.8, + "end": 3607.94, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 3607.94, + "end": 3608.08, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 3608.08, + "end": 3608.22, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3608.22, + "end": 3608.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1454, + "text": "flash drive in and launch the password manager off of that particular stick.", + "start": 3608.46, + "end": 3613.54, + "words": [ + { + "word": " flash", + "start": 3608.46, + "end": 3609.02, + "probability": 0.9931640625 + }, + { + "word": " drive", + "start": 3609.02, + "end": 3609.28, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 3609.28, + "end": 3609.58, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3609.58, + "end": 3609.82, + "probability": 0.99951171875 + }, + { + "word": " launch", + "start": 3609.82, + "end": 3610.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3610.46, + "end": 3610.8, + "probability": 0.99951171875 + }, + { + "word": " password", + "start": 3610.8, + "end": 3611.2, + "probability": 0.99951171875 + }, + { + "word": " manager", + "start": 3611.2, + "end": 3611.5, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 3611.5, + "end": 3611.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3611.86, + "end": 3612.04, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3612.04, + "end": 3612.34, + "probability": 1.0 + }, + { + "word": " particular", + "start": 3612.34, + "end": 3612.94, + "probability": 0.99951171875 + }, + { + "word": " stick.", + "start": 3612.94, + "end": 3613.54, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1455, + "text": "Super.", + "start": 3613.62, + "end": 3613.98, + "words": [ + { + "word": " Super.", + "start": 3613.62, + "end": 3613.98, + "probability": 0.60888671875 + } + ] + }, + { + "id": 1456, + "text": "Super.", + "start": 3614.5, + "end": 3615.02, + "words": [ + { + "word": " Super.", + "start": 3614.5, + "end": 3615.02, + "probability": 0.75341796875 + } + ] + }, + { + "id": 1457, + "text": "Or in a lot of cases, you can just go and log in.", + "start": 3615.16, + "end": 3616.8, + "words": [ + { + "word": " Or", + "start": 3615.16, + "end": 3615.68, + "probability": 0.9677734375 + }, + { + "word": " in", + "start": 3615.68, + "end": 3616.32, + "probability": 0.41796875 + }, + { + "word": " a", + "start": 3616.32, + "end": 3616.46, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 3616.46, + "end": 3616.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 3616.54, + "end": 3616.6, + "probability": 1.0 + }, + { + "word": " cases,", + "start": 3616.6, + "end": 3616.8, + "probability": 0.9765625 + }, + { + "word": " you", + "start": 3616.8, + "end": 3616.8, + "probability": 0.56591796875 + }, + { + "word": " can", + "start": 3616.8, + "end": 3616.8, + "probability": 0.89013671875 + }, + { + "word": " just", + "start": 3616.8, + "end": 3616.8, + "probability": 0.1173095703125 + }, + { + "word": " go", + "start": 3616.8, + "end": 3616.8, + "probability": 0.08251953125 + }, + { + "word": " and", + "start": 3616.8, + "end": 3616.8, + "probability": 0.22900390625 + }, + { + "word": " log", + "start": 3616.8, + "end": 3616.8, + "probability": 0.0038318634033203125 + }, + { + "word": " in.", + "start": 3616.8, + "end": 3616.8, + "probability": 0.48828125 + } + ] + }, + { + "id": 1458, + "text": "In a lot of cases, as long as you have internet access, you can just sign into your account", + "start": 3616.82, + "end": 3620.32, + "words": [ + { + "word": " In", + "start": 3616.82, + "end": 3616.9, + "probability": 0.00011742115020751953 + }, + { + "word": " a", + "start": 3616.9, + "end": 3616.9, + "probability": 0.047698974609375 + }, + { + "word": " lot", + "start": 3616.9, + "end": 3616.9, + "probability": 0.044403076171875 + }, + { + "word": " of", + "start": 3616.9, + "end": 3616.9, + "probability": 0.99951171875 + }, + { + "word": " cases,", + "start": 3616.9, + "end": 3616.9, + "probability": 0.2198486328125 + }, + { + "word": " as", + "start": 3616.9, + "end": 3616.98, + "probability": 0.97802734375 + }, + { + "word": " long", + "start": 3616.98, + "end": 3617.12, + "probability": 1.0 + }, + { + "word": " as", + "start": 3617.12, + "end": 3617.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3617.18, + "end": 3617.24, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3617.24, + "end": 3617.32, + "probability": 0.99853515625 + }, + { + "word": " internet", + "start": 3617.32, + "end": 3617.52, + "probability": 0.28125 + }, + { + "word": " access,", + "start": 3617.52, + "end": 3617.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 3618.08, + "end": 3618.46, + "probability": 0.99755859375 + }, + { + "word": " can", + "start": 3618.46, + "end": 3618.88, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3618.88, + "end": 3619.02, + "probability": 0.99853515625 + }, + { + "word": " sign", + "start": 3619.02, + "end": 3619.34, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 3619.34, + "end": 3619.66, + "probability": 0.876953125 + }, + { + "word": " your", + "start": 3619.66, + "end": 3619.9, + "probability": 1.0 + }, + { + "word": " account", + "start": 3619.9, + "end": 3620.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1459, + "text": "and it will allow you to access your passwords.", + "start": 3620.94, + "end": 3623.52, + "words": [ + { + "word": " and", + "start": 3620.82, + "end": 3621.04, + "probability": 0.642578125 + }, + { + "word": " it", + "start": 3621.04, + "end": 3621.54, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 3621.54, + "end": 3621.9, + "probability": 0.99951171875 + }, + { + "word": " allow", + "start": 3621.9, + "end": 3622.34, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3622.34, + "end": 3622.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 3622.56, + "end": 3622.66, + "probability": 0.99951171875 + }, + { + "word": " access", + "start": 3622.66, + "end": 3622.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 3622.94, + "end": 3623.18, + "probability": 1.0 + }, + { + "word": " passwords.", + "start": 3623.18, + "end": 3623.52, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1460, + "text": "Super.", + "start": 3624.52, + "end": 3624.96, + "words": [ + { + "word": " Super.", + "start": 3624.52, + "end": 3624.96, + "probability": 0.79150390625 + } + ] + }, + { + "id": 1461, + "text": "Thank you very much.", + "start": 3625.36, + "end": 3626.62, + "words": [ + { + "word": " Thank", + "start": 3625.36, + "end": 3625.8, + "probability": 0.8349609375 + }, + { + "word": " you", + "start": 3625.8, + "end": 3626.12, + "probability": 1.0 + }, + { + "word": " very", + "start": 3626.12, + "end": 3626.3, + "probability": 0.9990234375 + }, + { + "word": " much.", + "start": 3626.3, + "end": 3626.62, + "probability": 1.0 + } + ] + }, + { + "id": 1462, + "text": "You're quite welcome.", + "start": 3626.8, + "end": 3627.84, + "words": [ + { + "word": " You're", + "start": 3626.8, + "end": 3627.0, + "probability": 0.99609375 + }, + { + "word": " quite", + "start": 3627.0, + "end": 3627.28, + "probability": 1.0 + }, + { + "word": " welcome.", + "start": 3627.28, + "end": 3627.84, + "probability": 1.0 + } + ] + }, + { + "id": 1463, + "text": "Okay.", + "start": 3628.52, + "end": 3628.96, + "words": [ + { + "word": " Okay.", + "start": 3628.52, + "end": 3628.96, + "probability": 0.927734375 + } + ] + }, + { + "id": 1464, + "text": "Bye-bye.", + "start": 3629.0, + "end": 3629.34, + "words": [ + { + "word": " Bye", + "start": 3629.0, + "end": 3629.2, + "probability": 0.9912109375 + }, + { + "word": "-bye.", + "start": 3629.2, + "end": 3629.34, + "probability": 0.994140625 + } + ] + }, + { + "id": 1465, + "text": "Thank you and thanks for calling.", + "start": 3629.46, + "end": 3630.68, + "words": [ + { + "word": " Thank", + "start": 3629.46, + "end": 3629.68, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 3629.68, + "end": 3629.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 3629.8, + "end": 3629.96, + "probability": 0.284912109375 + }, + { + "word": " thanks", + "start": 3629.96, + "end": 3630.38, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3630.38, + "end": 3630.52, + "probability": 1.0 + }, + { + "word": " calling.", + "start": 3630.52, + "end": 3630.68, + "probability": 1.0 + } + ] + }, + { + "id": 1466, + "text": "It turns out that security is something that is an important thing.", + "start": 3631.52, + "end": 3636.98, + "words": [ + { + "word": " It", + "start": 3631.52, + "end": 3631.96, + "probability": 0.99462890625 + }, + { + "word": " turns", + "start": 3631.96, + "end": 3632.4, + "probability": 1.0 + }, + { + "word": " out", + "start": 3632.4, + "end": 3632.66, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3632.66, + "end": 3632.82, + "probability": 0.99951171875 + }, + { + "word": " security", + "start": 3632.82, + "end": 3633.22, + "probability": 0.951171875 + }, + { + "word": " is", + "start": 3633.22, + "end": 3633.96, + "probability": 1.0 + }, + { + "word": " something", + "start": 3633.96, + "end": 3634.18, + "probability": 0.93505859375 + }, + { + "word": " that", + "start": 3634.18, + "end": 3634.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 3634.58, + "end": 3635.68, + "probability": 0.92578125 + }, + { + "word": " an", + "start": 3635.68, + "end": 3636.16, + "probability": 0.9462890625 + }, + { + "word": " important", + "start": 3636.16, + "end": 3636.52, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 3636.52, + "end": 3636.98, + "probability": 1.0 + } + ] + }, + { + "id": 1467, + "text": "In fact, it can cost you a little bit of money.", + "start": 3637.18, + "end": 3638.82, + "words": [ + { + "word": " In", + "start": 3637.18, + "end": 3637.4, + "probability": 0.92822265625 + }, + { + "word": " fact,", + "start": 3637.4, + "end": 3637.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 3637.66, + "end": 3637.82, + "probability": 1.0 + }, + { + "word": " can", + "start": 3637.82, + "end": 3637.9, + "probability": 1.0 + }, + { + "word": " cost", + "start": 3637.9, + "end": 3638.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 3638.16, + "end": 3638.3, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3638.3, + "end": 3638.38, + "probability": 1.0 + }, + { + "word": " little", + "start": 3638.38, + "end": 3638.46, + "probability": 1.0 + }, + { + "word": " bit", + "start": 3638.46, + "end": 3638.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 3638.58, + "end": 3638.66, + "probability": 1.0 + }, + { + "word": " money.", + "start": 3638.66, + "end": 3638.82, + "probability": 1.0 + } + ] + }, + { + "id": 1468, + "text": "A little bit or a lot of it if you're Marissa Meyer.", + "start": 3638.96, + "end": 3640.9, + "words": [ + { + "word": " A", + "start": 3638.96, + "end": 3639.14, + "probability": 0.99853515625 + }, + { + "word": " little", + "start": 3639.14, + "end": 3639.24, + "probability": 1.0 + }, + { + "word": " bit", + "start": 3639.24, + "end": 3639.4, + "probability": 1.0 + }, + { + "word": " or", + "start": 3639.4, + "end": 3639.68, + "probability": 0.9765625 + }, + { + "word": " a", + "start": 3639.68, + "end": 3639.9, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3639.9, + "end": 3640.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 3640.02, + "end": 3640.1, + "probability": 0.90380859375 + }, + { + "word": " it", + "start": 3640.1, + "end": 3640.18, + "probability": 0.416748046875 + }, + { + "word": " if", + "start": 3640.18, + "end": 3640.32, + "probability": 0.99658203125 + }, + { + "word": " you're", + "start": 3640.32, + "end": 3640.44, + "probability": 0.99951171875 + }, + { + "word": " Marissa", + "start": 3640.44, + "end": 3640.72, + "probability": 0.9912109375 + }, + { + "word": " Meyer.", + "start": 3640.72, + "end": 3640.9, + "probability": 0.919921875 + } + ] + }, + { + "id": 1469, + "text": "So how much money did Marissa Meyer lose?", + "start": 3641.12, + "end": 3643.38, + "words": [ + { + "word": " So", + "start": 3641.12, + "end": 3641.38, + "probability": 0.6650390625 + }, + { + "word": " how", + "start": 3641.38, + "end": 3641.6, + "probability": 0.900390625 + }, + { + "word": " much", + "start": 3641.6, + "end": 3641.82, + "probability": 1.0 + }, + { + "word": " money", + "start": 3641.82, + "end": 3642.46, + "probability": 0.99853515625 + }, + { + "word": " did", + "start": 3642.46, + "end": 3642.66, + "probability": 0.99853515625 + }, + { + "word": " Marissa", + "start": 3642.66, + "end": 3642.88, + "probability": 1.0 + }, + { + "word": " Meyer", + "start": 3642.88, + "end": 3643.1, + "probability": 1.0 + }, + { + "word": " lose?", + "start": 3643.1, + "end": 3643.38, + "probability": 1.0 + } + ] + }, + { + "id": 1470, + "text": "$54 million.", + "start": 3643.96, + "end": 3644.78, + "words": [ + { + "word": " $54", + "start": 3643.96, + "end": 3644.4, + "probability": 0.95068359375 + }, + { + "word": " million.", + "start": 3644.4, + "end": 3644.78, + "probability": 0.998046875 + } + ] + }, + { + "id": 1471, + "text": "$54 million.", + "start": 3645.66, + "end": 3646.18, + "words": [ + { + "word": " $54", + "start": 3645.66, + "end": 3646.1, + "probability": 0.87548828125 + }, + { + "word": " million.", + "start": 3646.1, + "end": 3646.18, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1472, + "text": "Marissa Meyer, by the way, is the formerly CEO of Yahoo.", + "start": 3646.18, + "end": 3650.74, + "words": [ + { + "word": " Marissa", + "start": 3646.18, + "end": 3646.28, + "probability": 0.0804443359375 + }, + { + "word": " Meyer,", + "start": 3646.28, + "end": 3646.28, + "probability": 0.7666015625 + }, + { + "word": " by", + "start": 3646.42, + "end": 3646.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3646.62, + "end": 3646.78, + "probability": 1.0 + }, + { + "word": " way,", + "start": 3646.78, + "end": 3647.0, + "probability": 1.0 + }, + { + "word": " is", + "start": 3647.08, + "end": 3647.28, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3647.28, + "end": 3647.98, + "probability": 0.970703125 + }, + { + "word": " formerly", + "start": 3647.98, + "end": 3648.44, + "probability": 0.69091796875 + }, + { + "word": " CEO", + "start": 3648.44, + "end": 3649.56, + "probability": 0.962890625 + }, + { + "word": " of", + "start": 3649.56, + "end": 3650.5, + "probability": 1.0 + }, + { + "word": " Yahoo.", + "start": 3650.5, + "end": 3650.74, + "probability": 1.0 + } + ] + }, + { + "id": 1473, + "text": "One of her exit contract agreements was that if her performance was good, she would get", + "start": 3653.12, + "end": 3659.76, + "words": [ + { + "word": " One", + "start": 3653.12, + "end": 3653.56, + "probability": 0.56103515625 + }, + { + "word": " of", + "start": 3653.56, + "end": 3654.0, + "probability": 1.0 + }, + { + "word": " her", + "start": 3654.0, + "end": 3654.12, + "probability": 1.0 + }, + { + "word": " exit", + "start": 3654.12, + "end": 3654.46, + "probability": 1.0 + }, + { + "word": " contract", + "start": 3654.46, + "end": 3656.34, + "probability": 1.0 + }, + { + "word": " agreements", + "start": 3656.34, + "end": 3657.44, + "probability": 1.0 + }, + { + "word": " was", + "start": 3657.44, + "end": 3657.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 3657.82, + "end": 3657.98, + "probability": 1.0 + }, + { + "word": " if", + "start": 3657.98, + "end": 3658.32, + "probability": 0.99853515625 + }, + { + "word": " her", + "start": 3658.32, + "end": 3658.44, + "probability": 1.0 + }, + { + "word": " performance", + "start": 3658.44, + "end": 3658.84, + "probability": 1.0 + }, + { + "word": " was", + "start": 3658.84, + "end": 3659.04, + "probability": 1.0 + }, + { + "word": " good,", + "start": 3659.04, + "end": 3659.22, + "probability": 1.0 + }, + { + "word": " she", + "start": 3659.26, + "end": 3659.38, + "probability": 1.0 + }, + { + "word": " would", + "start": 3659.38, + "end": 3659.54, + "probability": 1.0 + }, + { + "word": " get", + "start": 3659.54, + "end": 3659.76, + "probability": 1.0 + } + ] + }, + { + "id": 1474, + "text": "$54 million.", + "start": 3659.76, + "end": 3660.42, + "words": [ + { + "word": " $54", + "start": 3659.76, + "end": 3660.14, + "probability": 0.998046875 + }, + { + "word": " million.", + "start": 3660.14, + "end": 3660.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1475, + "text": "But because of that gigantic Yahoo mail breach that happened last year.", + "start": 3660.86, + "end": 3666.6, + "words": [ + { + "word": " But", + "start": 3660.86, + "end": 3661.24, + "probability": 0.900390625 + }, + { + "word": " because", + "start": 3661.24, + "end": 3661.62, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 3661.62, + "end": 3661.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 3661.78, + "end": 3661.9, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 3661.9, + "end": 3662.46, + "probability": 1.0 + }, + { + "word": " Yahoo", + "start": 3662.46, + "end": 3663.04, + "probability": 1.0 + }, + { + "word": " mail", + "start": 3663.04, + "end": 3663.38, + "probability": 0.96875 + }, + { + "word": " breach", + "start": 3663.38, + "end": 3663.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 3663.72, + "end": 3664.5, + "probability": 0.99951171875 + }, + { + "word": " happened", + "start": 3664.5, + "end": 3665.04, + "probability": 1.0 + }, + { + "word": " last", + "start": 3665.04, + "end": 3666.2, + "probability": 1.0 + }, + { + "word": " year.", + "start": 3666.2, + "end": 3666.6, + "probability": 1.0 + } + ] + }, + { + "id": 1476, + "text": "Didn't qualify.", + "start": 3667.1, + "end": 3667.78, + "words": [ + { + "word": " Didn't", + "start": 3667.1, + "end": 3667.54, + "probability": 0.9990234375 + }, + { + "word": " qualify.", + "start": 3667.54, + "end": 3667.78, + "probability": 1.0 + } + ] + }, + { + "id": 1477, + "text": "Yep.", + "start": 3668.0, + "end": 3668.22, + "words": [ + { + "word": " Yep.", + "start": 3668.0, + "end": 3668.22, + "probability": 0.4267578125 + } + ] + }, + { + "id": 1478, + "text": "$54 million no longer in her pocket.", + "start": 3668.46, + "end": 3670.6, + "words": [ + { + "word": " $54", + "start": 3668.46, + "end": 3668.9, + "probability": 0.9990234375 + }, + { + "word": " million", + "start": 3668.9, + "end": 3669.12, + "probability": 1.0 + }, + { + "word": " no", + "start": 3669.12, + "end": 3669.64, + "probability": 0.716796875 + }, + { + "word": " longer", + "start": 3669.64, + "end": 3669.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 3669.92, + "end": 3670.12, + "probability": 1.0 + }, + { + "word": " her", + "start": 3670.12, + "end": 3670.28, + "probability": 1.0 + }, + { + "word": " pocket.", + "start": 3670.28, + "end": 3670.6, + "probability": 1.0 + } + ] + }, + { + "id": 1479, + "text": "I mean, I'm sure she's not hurting for money, but that would have been nice.", + "start": 3670.66, + "end": 3674.44, + "words": [ + { + "word": " I", + "start": 3670.66, + "end": 3670.86, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 3670.86, + "end": 3671.0, + "probability": 0.9931640625 + }, + { + "word": " I'm", + "start": 3671.0, + "end": 3671.12, + "probability": 1.0 + }, + { + "word": " sure", + "start": 3671.12, + "end": 3671.26, + "probability": 1.0 + }, + { + "word": " she's", + "start": 3671.26, + "end": 3671.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 3671.5, + "end": 3671.64, + "probability": 1.0 + }, + { + "word": " hurting", + "start": 3671.64, + "end": 3671.9, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3671.9, + "end": 3672.1, + "probability": 1.0 + }, + { + "word": " money,", + "start": 3672.1, + "end": 3672.36, + "probability": 1.0 + }, + { + "word": " but", + "start": 3672.46, + "end": 3672.96, + "probability": 0.32080078125 + }, + { + "word": " that", + "start": 3672.96, + "end": 3673.98, + "probability": 1.0 + }, + { + "word": " would", + "start": 3673.98, + "end": 3674.1, + "probability": 1.0 + }, + { + "word": " have", + "start": 3674.1, + "end": 3674.2, + "probability": 0.99658203125 + }, + { + "word": " been", + "start": 3674.2, + "end": 3674.22, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 3674.22, + "end": 3674.44, + "probability": 1.0 + } + ] + }, + { + "id": 1480, + "text": "But who doesn't want an extra $54 million?", + "start": 3674.44, + "end": 3675.9, + "words": [ + { + "word": " But", + "start": 3674.44, + "end": 3674.64, + "probability": 0.91015625 + }, + { + "word": " who", + "start": 3674.64, + "end": 3674.74, + "probability": 0.99853515625 + }, + { + "word": " doesn't", + "start": 3674.74, + "end": 3674.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 3674.96, + "end": 3675.08, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 3675.08, + "end": 3675.16, + "probability": 0.99951171875 + }, + { + "word": " extra", + "start": 3675.16, + "end": 3675.3, + "probability": 1.0 + }, + { + "word": " $54", + "start": 3675.3, + "end": 3675.68, + "probability": 0.9892578125 + }, + { + "word": " million?", + "start": 3675.68, + "end": 3675.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 1481, + "text": "You know what I mean?", + "start": 3676.26, + "end": 3676.96, + "words": [ + { + "word": " You", + "start": 3676.26, + "end": 3676.6, + "probability": 0.9599609375 + }, + { + "word": " know", + "start": 3676.6, + "end": 3676.68, + "probability": 1.0 + }, + { + "word": " what", + "start": 3676.68, + "end": 3676.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 3676.78, + "end": 3676.82, + "probability": 1.0 + }, + { + "word": " mean?", + "start": 3676.82, + "end": 3676.96, + "probability": 1.0 + } + ] + }, + { + "id": 1482, + "text": "She was that close.", + "start": 3677.08, + "end": 3678.0, + "words": [ + { + "word": " She", + "start": 3677.08, + "end": 3677.32, + "probability": 0.9970703125 + }, + { + "word": " was", + "start": 3677.32, + "end": 3677.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 3677.42, + "end": 3677.64, + "probability": 1.0 + }, + { + "word": " close.", + "start": 3677.64, + "end": 3678.0, + "probability": 1.0 + } + ] + }, + { + "id": 1483, + "text": "Yeah.", + "start": 3678.32, + "end": 3678.58, + "words": [ + { + "word": " Yeah.", + "start": 3678.32, + "end": 3678.58, + "probability": 0.89697265625 + } + ] + }, + { + "id": 1484, + "text": "I guess Bill Gates could probably be like, meh.", + "start": 3678.62, + "end": 3680.86, + "words": [ + { + "word": " I", + "start": 3678.62, + "end": 3678.8, + "probability": 0.9990234375 + }, + { + "word": " guess", + "start": 3678.8, + "end": 3679.12, + "probability": 0.9990234375 + }, + { + "word": " Bill", + "start": 3679.12, + "end": 3679.3, + "probability": 0.9990234375 + }, + { + "word": " Gates", + "start": 3679.3, + "end": 3679.5, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 3679.5, + "end": 3679.68, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3679.68, + "end": 3679.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 3679.9, + "end": 3680.22, + "probability": 0.82763671875 + }, + { + "word": " like,", + "start": 3680.22, + "end": 3680.46, + "probability": 0.9833984375 + }, + { + "word": " meh.", + "start": 3680.56, + "end": 3680.86, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1485, + "text": "Yeah.", + "start": 3681.14, + "end": 3681.58, + "words": [ + { + "word": " Yeah.", + "start": 3681.14, + "end": 3681.58, + "probability": 0.7119140625 + } + ] + }, + { + "id": 1486, + "text": "There's a few people that are just like, eh, $54 million, whatever.", + "start": 3682.62, + "end": 3685.56, + "words": [ + { + "word": " There's", + "start": 3682.62, + "end": 3683.06, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3683.06, + "end": 3683.08, + "probability": 1.0 + }, + { + "word": " few", + "start": 3683.08, + "end": 3683.24, + "probability": 1.0 + }, + { + "word": " people", + "start": 3683.24, + "end": 3683.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 3683.52, + "end": 3683.66, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3683.66, + "end": 3683.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 3683.7, + "end": 3683.86, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 3683.86, + "end": 3684.0, + "probability": 1.0 + }, + { + "word": " eh,", + "start": 3684.12, + "end": 3684.18, + "probability": 0.1614990234375 + }, + { + "word": " $54", + "start": 3684.44, + "end": 3684.92, + "probability": 0.98876953125 + }, + { + "word": " million,", + "start": 3684.92, + "end": 3685.14, + "probability": 0.9990234375 + }, + { + "word": " whatever.", + "start": 3685.26, + "end": 3685.56, + "probability": 1.0 + } + ] + }, + { + "id": 1487, + "text": "Yeah.", + "start": 3685.8, + "end": 3686.16, + "words": [ + { + "word": " Yeah.", + "start": 3685.8, + "end": 3686.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1488, + "text": "Not a big deal.", + "start": 3686.3, + "end": 3687.08, + "words": [ + { + "word": " Not", + "start": 3686.3, + "end": 3686.58, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3686.58, + "end": 3686.74, + "probability": 1.0 + }, + { + "word": " big", + "start": 3686.74, + "end": 3686.86, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 3686.86, + "end": 3687.08, + "probability": 1.0 + } + ] + }, + { + "id": 1489, + "text": "Yeah.", + "start": 3687.22, + "end": 3687.48, + "words": [ + { + "word": " Yeah.", + "start": 3687.22, + "end": 3687.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 1490, + "text": "But Marissa Meyer is not one of them and I'm sure she's pretty sad.", + "start": 3687.54, + "end": 3689.88, + "words": [ + { + "word": " But", + "start": 3687.54, + "end": 3687.72, + "probability": 0.998046875 + }, + { + "word": " Marissa", + "start": 3687.72, + "end": 3688.04, + "probability": 0.9951171875 + }, + { + "word": " Meyer", + "start": 3688.04, + "end": 3688.22, + "probability": 0.94384765625 + }, + { + "word": " is", + "start": 3688.22, + "end": 3688.34, + "probability": 0.71240234375 + }, + { + "word": " not", + "start": 3688.34, + "end": 3688.44, + "probability": 1.0 + }, + { + "word": " one", + "start": 3688.44, + "end": 3688.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 3688.58, + "end": 3688.66, + "probability": 1.0 + }, + { + "word": " them", + "start": 3688.66, + "end": 3688.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 3688.8, + "end": 3688.9, + "probability": 0.09893798828125 + }, + { + "word": " I'm", + "start": 3688.9, + "end": 3689.06, + "probability": 1.0 + }, + { + "word": " sure", + "start": 3689.06, + "end": 3689.14, + "probability": 1.0 + }, + { + "word": " she's", + "start": 3689.14, + "end": 3689.44, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 3689.44, + "end": 3689.62, + "probability": 1.0 + }, + { + "word": " sad.", + "start": 3689.62, + "end": 3689.88, + "probability": 1.0 + } + ] + }, + { + "id": 1491, + "text": "I'm sure that that will affect her overall retirement plans.", + "start": 3690.22, + "end": 3693.28, + "words": [ + { + "word": " I'm", + "start": 3690.22, + "end": 3690.66, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 3690.66, + "end": 3690.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 3690.84, + "end": 3691.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 3691.04, + "end": 3691.18, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 3691.18, + "end": 3691.34, + "probability": 1.0 + }, + { + "word": " affect", + "start": 3691.34, + "end": 3691.6, + "probability": 1.0 + }, + { + "word": " her", + "start": 3691.6, + "end": 3691.86, + "probability": 1.0 + }, + { + "word": " overall", + "start": 3691.86, + "end": 3692.44, + "probability": 0.99462890625 + }, + { + "word": " retirement", + "start": 3692.44, + "end": 3692.86, + "probability": 0.99853515625 + }, + { + "word": " plans.", + "start": 3692.86, + "end": 3693.28, + "probability": 0.97314453125 + } + ] + }, + { + "id": 1492, + "text": "To be fair, she definitely didn't deserve it.", + "start": 3693.42, + "end": 3694.58, + "words": [ + { + "word": " To", + "start": 3693.42, + "end": 3693.44, + "probability": 0.8095703125 + }, + { + "word": " be", + "start": 3693.44, + "end": 3693.44, + "probability": 1.0 + }, + { + "word": " fair,", + "start": 3693.44, + "end": 3693.44, + "probability": 1.0 + }, + { + "word": " she", + "start": 3693.44, + "end": 3693.44, + "probability": 0.99951171875 + }, + { + "word": " definitely", + "start": 3693.44, + "end": 3693.58, + "probability": 0.99951171875 + }, + { + "word": " didn't", + "start": 3693.58, + "end": 3694.12, + "probability": 1.0 + }, + { + "word": " deserve", + "start": 3694.12, + "end": 3694.32, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3694.32, + "end": 3694.58, + "probability": 1.0 + } + ] + }, + { + "id": 1493, + "text": "No.", + "start": 3694.9, + "end": 3695.34, + "words": [ + { + "word": " No.", + "start": 3694.9, + "end": 3695.34, + "probability": 0.6953125 + } + ] + }, + { + "id": 1494, + "text": "No, she did not.", + "start": 3695.74, + "end": 3697.02, + "words": [ + { + "word": " No,", + "start": 3695.74, + "end": 3696.06, + "probability": 0.9990234375 + }, + { + "word": " she", + "start": 3696.12, + "end": 3696.28, + "probability": 1.0 + }, + { + "word": " did", + "start": 3696.28, + "end": 3696.74, + "probability": 0.99755859375 + }, + { + "word": " not.", + "start": 3696.74, + "end": 3697.02, + "probability": 1.0 + } + ] + }, + { + "id": 1495, + "text": "Just because the scope of that Yahoo breach was so massive.", + "start": 3697.76, + "end": 3702.94, + "words": [ + { + "word": " Just", + "start": 3697.76, + "end": 3698.2, + "probability": 0.994140625 + }, + { + "word": " because", + "start": 3698.2, + "end": 3698.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3698.54, + "end": 3699.16, + "probability": 1.0 + }, + { + "word": " scope", + "start": 3699.16, + "end": 3700.38, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 3700.38, + "end": 3700.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 3700.96, + "end": 3701.18, + "probability": 1.0 + }, + { + "word": " Yahoo", + "start": 3701.18, + "end": 3701.48, + "probability": 0.99951171875 + }, + { + "word": " breach", + "start": 3701.48, + "end": 3701.86, + "probability": 0.415283203125 + }, + { + "word": " was", + "start": 3701.86, + "end": 3702.2, + "probability": 1.0 + }, + { + "word": " so", + "start": 3702.2, + "end": 3702.5, + "probability": 1.0 + }, + { + "word": " massive.", + "start": 3702.5, + "end": 3702.94, + "probability": 1.0 + } + ] + }, + { + "id": 1496, + "text": "Yeah.", + "start": 3702.96, + "end": 3703.38, + "words": [ + { + "word": " Yeah.", + "start": 3702.96, + "end": 3703.38, + "probability": 0.01314544677734375 + } + ] + }, + { + "id": 1497, + "text": "She handled it and tried to cover it up.", + "start": 3704.44, + "end": 3705.74, + "words": [ + { + "word": " She", + "start": 3704.44, + "end": 3704.44, + "probability": 0.00051116943359375 + }, + { + "word": " handled", + "start": 3704.44, + "end": 3704.58, + "probability": 0.88037109375 + }, + { + "word": " it", + "start": 3704.58, + "end": 3704.84, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3704.84, + "end": 3704.92, + "probability": 0.9970703125 + }, + { + "word": " tried", + "start": 3704.92, + "end": 3705.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3705.08, + "end": 3705.18, + "probability": 1.0 + }, + { + "word": " cover", + "start": 3705.18, + "end": 3705.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 3705.44, + "end": 3705.56, + "probability": 1.0 + }, + { + "word": " up.", + "start": 3705.56, + "end": 3705.74, + "probability": 1.0 + } + ] + }, + { + "id": 1498, + "text": "If you write a book about Marissa Meyer's time at Yahoo, I'm pretty sure it would be", + "start": 3705.84, + "end": 3710.0, + "words": [ + { + "word": " If", + "start": 3705.84, + "end": 3706.1, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 3706.1, + "end": 3706.28, + "probability": 1.0 + }, + { + "word": " write", + "start": 3706.28, + "end": 3706.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 3706.48, + "end": 3706.6, + "probability": 1.0 + }, + { + "word": " book", + "start": 3706.6, + "end": 3706.78, + "probability": 1.0 + }, + { + "word": " about", + "start": 3706.78, + "end": 3707.1, + "probability": 0.99951171875 + }, + { + "word": " Marissa", + "start": 3707.1, + "end": 3707.56, + "probability": 0.9970703125 + }, + { + "word": " Meyer's", + "start": 3707.56, + "end": 3707.92, + "probability": 0.91259765625 + }, + { + "word": " time", + "start": 3707.92, + "end": 3708.26, + "probability": 1.0 + }, + { + "word": " at", + "start": 3708.26, + "end": 3708.66, + "probability": 1.0 + }, + { + "word": " Yahoo,", + "start": 3708.66, + "end": 3709.1, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3709.24, + "end": 3709.38, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 3709.38, + "end": 3709.48, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 3709.48, + "end": 3709.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 3709.68, + "end": 3709.8, + "probability": 1.0 + }, + { + "word": " would", + "start": 3709.8, + "end": 3709.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 3709.86, + "end": 3710.0, + "probability": 1.0 + } + ] + }, + { + "id": 1499, + "text": "called Mismanagement.", + "start": 3710.0, + "end": 3710.8, + "words": [ + { + "word": " called", + "start": 3710.0, + "end": 3710.12, + "probability": 1.0 + }, + { + "word": " Mismanagement.", + "start": 3710.12, + "end": 3710.8, + "probability": 0.890625 + } + ] + }, + { + "id": 1500, + "text": "Oh, that would be a good one.", + "start": 3711.74, + "end": 3713.24, + "words": [ + { + "word": " Oh,", + "start": 3711.74, + "end": 3712.1, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 3712.16, + "end": 3712.42, + "probability": 1.0 + }, + { + "word": " would", + "start": 3712.42, + "end": 3712.74, + "probability": 0.99072265625 + }, + { + "word": " be", + "start": 3712.74, + "end": 3712.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 3712.9, + "end": 3712.92, + "probability": 0.98681640625 + }, + { + "word": " good", + "start": 3712.92, + "end": 3713.1, + "probability": 0.9990234375 + }, + { + "word": " one.", + "start": 3713.1, + "end": 3713.24, + "probability": 0.6064453125 + } + ] + }, + { + "id": 1501, + "text": "I like that one there.", + "start": 3713.38, + "end": 3714.3, + "words": [ + { + "word": " I", + "start": 3713.38, + "end": 3713.52, + "probability": 0.990234375 + }, + { + "word": " like", + "start": 3713.52, + "end": 3713.76, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 3713.76, + "end": 3713.92, + "probability": 1.0 + }, + { + "word": " one", + "start": 3713.92, + "end": 3714.08, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 3714.08, + "end": 3714.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1502, + "text": "Oh, yeah.", + "start": 3715.14, + "end": 3715.86, + "words": [ + { + "word": " Oh,", + "start": 3715.14, + "end": 3715.5, + "probability": 0.96533203125 + }, + { + "word": " yeah.", + "start": 3715.5, + "end": 3715.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1503, + "text": "That's a good one.", + "start": 3716.32, + "end": 3717.04, + "words": [ + { + "word": " That's", + "start": 3716.32, + "end": 3716.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 3716.68, + "end": 3716.7, + "probability": 1.0 + }, + { + "word": " good", + "start": 3716.7, + "end": 3716.86, + "probability": 1.0 + }, + { + "word": " one.", + "start": 3716.86, + "end": 3717.04, + "probability": 1.0 + } + ] + }, + { + "id": 1504, + "text": "I'm going to have to patent that or trademark it anyway.", + "start": 3717.24, + "end": 3719.86, + "words": [ + { + "word": " I'm", + "start": 3717.24, + "end": 3717.6, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 3717.6, + "end": 3717.6, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 3717.6, + "end": 3717.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 3717.68, + "end": 3717.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 3717.8, + "end": 3717.92, + "probability": 1.0 + }, + { + "word": " patent", + "start": 3717.92, + "end": 3718.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 3718.24, + "end": 3718.42, + "probability": 1.0 + }, + { + "word": " or", + "start": 3718.42, + "end": 3718.64, + "probability": 0.99462890625 + }, + { + "word": " trademark", + "start": 3718.64, + "end": 3719.44, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 3719.44, + "end": 3719.68, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 3719.68, + "end": 3719.86, + "probability": 1.0 + } + ] + }, + { + "id": 1505, + "text": "Just go ahead and write the book.", + "start": 3720.5, + "end": 3721.5, + "words": [ + { + "word": " Just", + "start": 3720.5, + "end": 3720.86, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 3720.86, + "end": 3720.96, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 3720.96, + "end": 3721.04, + "probability": 0.99560546875 + }, + { + "word": " and", + "start": 3721.04, + "end": 3721.12, + "probability": 1.0 + }, + { + "word": " write", + "start": 3721.12, + "end": 3721.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 3721.24, + "end": 3721.36, + "probability": 1.0 + }, + { + "word": " book.", + "start": 3721.36, + "end": 3721.5, + "probability": 1.0 + } + ] + }, + { + "id": 1506, + "text": "Yeah.", + "start": 3721.58, + "end": 3721.7, + "words": [ + { + "word": " Yeah.", + "start": 3721.58, + "end": 3721.7, + "probability": 0.5751953125 + } + ] + }, + { + "id": 1507, + "text": "On the first page, it'll just say, I don't know any of this stuff.", + "start": 3722.88, + "end": 3725.78, + "words": [ + { + "word": " On", + "start": 3722.88, + "end": 3723.24, + "probability": 0.340576171875 + }, + { + "word": " the", + "start": 3723.24, + "end": 3723.42, + "probability": 1.0 + }, + { + "word": " first", + "start": 3723.42, + "end": 3723.68, + "probability": 1.0 + }, + { + "word": " page,", + "start": 3723.68, + "end": 3723.96, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 3723.96, + "end": 3724.08, + "probability": 0.873046875 + }, + { + "word": " just", + "start": 3724.08, + "end": 3724.18, + "probability": 0.9228515625 + }, + { + "word": " say,", + "start": 3724.18, + "end": 3724.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 3724.44, + "end": 3724.54, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3724.54, + "end": 3724.76, + "probability": 1.0 + }, + { + "word": " know", + "start": 3724.76, + "end": 3725.04, + "probability": 0.99853515625 + }, + { + "word": " any", + "start": 3725.04, + "end": 3725.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 3725.3, + "end": 3725.44, + "probability": 1.0 + }, + { + "word": " this", + "start": 3725.44, + "end": 3725.58, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3725.58, + "end": 3725.78, + "probability": 1.0 + } + ] + }, + { + "id": 1508, + "text": "I just came up with the title.", + "start": 3725.84, + "end": 3726.8, + "words": [ + { + "word": " I", + "start": 3725.84, + "end": 3725.98, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3725.98, + "end": 3726.06, + "probability": 1.0 + }, + { + "word": " came", + "start": 3726.06, + "end": 3726.2, + "probability": 1.0 + }, + { + "word": " up", + "start": 3726.2, + "end": 3726.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 3726.34, + "end": 3726.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 3726.44, + "end": 3726.56, + "probability": 0.9970703125 + }, + { + "word": " title.", + "start": 3726.56, + "end": 3726.8, + "probability": 1.0 + } + ] + }, + { + "id": 1509, + "text": "Right.", + "start": 3726.96, + "end": 3727.28, + "words": [ + { + "word": " Right.", + "start": 3726.96, + "end": 3727.28, + "probability": 0.422119140625 + } + ] + }, + { + "id": 1510, + "text": "Obviously, there was mismanagement.", + "start": 3728.42, + "end": 3730.08, + "words": [ + { + "word": " Obviously,", + "start": 3728.42, + "end": 3728.78, + "probability": 0.99853515625 + }, + { + "word": " there", + "start": 3728.98, + "end": 3729.32, + "probability": 1.0 + }, + { + "word": " was", + "start": 3729.32, + "end": 3729.5, + "probability": 1.0 + }, + { + "word": " mismanagement.", + "start": 3729.5, + "end": 3730.08, + "probability": 0.97314453125 + } + ] + }, + { + "id": 1511, + "text": "The end.", + "start": 3730.08, + "end": 3730.56, + "words": [ + { + "word": " The", + "start": 3730.08, + "end": 3730.34, + "probability": 0.99951171875 + }, + { + "word": " end.", + "start": 3730.34, + "end": 3730.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1512, + "text": "I mean, that pretty much sums it up.", + "start": 3731.48, + "end": 3733.48, + "words": [ + { + "word": " I", + "start": 3731.48, + "end": 3731.84, + "probability": 0.99609375 + }, + { + "word": " mean,", + "start": 3731.84, + "end": 3731.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 3731.98, + "end": 3732.1, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 3732.1, + "end": 3732.78, + "probability": 1.0 + }, + { + "word": " much", + "start": 3732.78, + "end": 3732.96, + "probability": 1.0 + }, + { + "word": " sums", + "start": 3732.96, + "end": 3733.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 3733.16, + "end": 3733.36, + "probability": 1.0 + }, + { + "word": " up.", + "start": 3733.36, + "end": 3733.48, + "probability": 1.0 + } + ] + }, + { + "id": 1513, + "text": "Yeah.", + "start": 3733.48, + "end": 3734.2, + "words": [ + { + "word": " Yeah.", + "start": 3733.48, + "end": 3734.2, + "probability": 0.81298828125 + } + ] + }, + { + "id": 1514, + "text": "There was a gigantic breach and it caused some problems with the acquisition of Yahoo", + "start": 3734.36, + "end": 3740.98, + "words": [ + { + "word": " There", + "start": 3734.36, + "end": 3734.8, + "probability": 0.0028781890869140625 + }, + { + "word": " was", + "start": 3734.8, + "end": 3735.3, + "probability": 0.7998046875 + }, + { + "word": " a", + "start": 3735.3, + "end": 3735.4, + "probability": 0.99951171875 + }, + { + "word": " gigantic", + "start": 3735.4, + "end": 3735.8, + "probability": 0.99951171875 + }, + { + "word": " breach", + "start": 3735.8, + "end": 3736.24, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3736.24, + "end": 3736.64, + "probability": 0.22802734375 + }, + { + "word": " it", + "start": 3736.64, + "end": 3737.4, + "probability": 0.99658203125 + }, + { + "word": " caused", + "start": 3737.4, + "end": 3738.04, + "probability": 0.99658203125 + }, + { + "word": " some", + "start": 3738.04, + "end": 3738.2, + "probability": 0.97216796875 + }, + { + "word": " problems", + "start": 3738.2, + "end": 3738.44, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3738.44, + "end": 3738.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3738.72, + "end": 3739.04, + "probability": 0.99951171875 + }, + { + "word": " acquisition", + "start": 3739.04, + "end": 3740.26, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 3740.26, + "end": 3740.76, + "probability": 0.99951171875 + }, + { + "word": " Yahoo", + "start": 3740.76, + "end": 3740.98, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1515, + "text": "Mail by Verizon even.", + "start": 3740.98, + "end": 3742.28, + "words": [ + { + "word": " Mail", + "start": 3740.98, + "end": 3741.22, + "probability": 0.8408203125 + }, + { + "word": " by", + "start": 3741.22, + "end": 3741.52, + "probability": 0.998046875 + }, + { + "word": " Verizon", + "start": 3741.52, + "end": 3741.98, + "probability": 0.99951171875 + }, + { + "word": " even.", + "start": 3741.98, + "end": 3742.28, + "probability": 0.7646484375 + } + ] + }, + { + "id": 1516, + "text": "I mean, when they say gigantic, they mean the biggest data breach that had happened", + "start": 3742.54, + "end": 3746.64, + "words": [ + { + "word": " I", + "start": 3742.54, + "end": 3742.64, + "probability": 0.427978515625 + }, + { + "word": " mean,", + "start": 3742.64, + "end": 3742.74, + "probability": 1.0 + }, + { + "word": " when", + "start": 3742.74, + "end": 3742.82, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 3742.82, + "end": 3742.96, + "probability": 1.0 + }, + { + "word": " say", + "start": 3742.96, + "end": 3743.12, + "probability": 1.0 + }, + { + "word": " gigantic,", + "start": 3743.12, + "end": 3743.46, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 3743.62, + "end": 3743.74, + "probability": 0.99951171875 + }, + { + "word": " mean", + "start": 3743.74, + "end": 3743.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 3743.92, + "end": 3744.2, + "probability": 0.533203125 + }, + { + "word": " biggest", + "start": 3744.2, + "end": 3744.78, + "probability": 0.99951171875 + }, + { + "word": " data", + "start": 3744.78, + "end": 3745.22, + "probability": 0.99951171875 + }, + { + "word": " breach", + "start": 3745.22, + "end": 3745.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 3745.5, + "end": 3746.12, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 3746.12, + "end": 3746.32, + "probability": 1.0 + }, + { + "word": " happened", + "start": 3746.32, + "end": 3746.64, + "probability": 1.0 + } + ] + }, + { + "id": 1517, + "text": "to that point.", + "start": 3746.64, + "end": 3747.54, + "words": [ + { + "word": " to", + "start": 3746.64, + "end": 3747.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 3747.04, + "end": 3747.22, + "probability": 1.0 + }, + { + "word": " point.", + "start": 3747.22, + "end": 3747.54, + "probability": 1.0 + } + ] + }, + { + "id": 1518, + "text": "It was like two billion accounts.", + "start": 3747.78, + "end": 3749.24, + "words": [ + { + "word": " It", + "start": 3747.78, + "end": 3748.24, + "probability": 0.8955078125 + }, + { + "word": " was", + "start": 3748.24, + "end": 3748.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 3748.38, + "end": 3748.5, + "probability": 0.9873046875 + }, + { + "word": " two", + "start": 3748.5, + "end": 3748.62, + "probability": 0.42236328125 + }, + { + "word": " billion", + "start": 3748.62, + "end": 3748.96, + "probability": 0.99951171875 + }, + { + "word": " accounts.", + "start": 3748.96, + "end": 3749.24, + "probability": 1.0 + } + ] + }, + { + "id": 1519, + "text": "Yeah.", + "start": 3750.2, + "end": 3750.66, + "words": [ + { + "word": " Yeah.", + "start": 3750.2, + "end": 3750.66, + "probability": 0.97509765625 + } + ] + }, + { + "id": 1520, + "text": "That's a lot of data.", + "start": 3750.74, + "end": 3752.44, + "words": [ + { + "word": " That's", + "start": 3750.74, + "end": 3751.0, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3751.0, + "end": 3751.24, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 3751.24, + "end": 3752.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 3752.16, + "end": 3752.34, + "probability": 0.90869140625 + }, + { + "word": " data.", + "start": 3752.34, + "end": 3752.44, + "probability": 0.42724609375 + } + ] + }, + { + "id": 1521, + "text": "I mean, that's impressive in its own route, I guess.", + "start": 3752.44, + "end": 3755.12, + "words": [ + { + "word": " I", + "start": 3752.44, + "end": 3752.52, + "probability": 0.95263671875 + }, + { + "word": " mean,", + "start": 3752.52, + "end": 3752.58, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 3752.6, + "end": 3752.8, + "probability": 0.99951171875 + }, + { + "word": " impressive", + "start": 3752.8, + "end": 3753.12, + "probability": 0.98828125 + }, + { + "word": " in", + "start": 3753.12, + "end": 3753.72, + "probability": 1.0 + }, + { + "word": " its", + "start": 3753.72, + "end": 3753.82, + "probability": 0.99951171875 + }, + { + "word": " own", + "start": 3753.82, + "end": 3754.06, + "probability": 1.0 + }, + { + "word": " route,", + "start": 3754.06, + "end": 3754.74, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3754.86, + "end": 3754.98, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 3754.98, + "end": 3755.12, + "probability": 1.0 + } + ] + }, + { + "id": 1522, + "text": "I mean, how much time does it take to actually get the information for two billion", + "start": 3755.3, + "end": 3758.22, + "words": [ + { + "word": " I", + "start": 3755.3, + "end": 3755.7, + "probability": 0.9501953125 + }, + { + "word": " mean,", + "start": 3755.7, + "end": 3755.78, + "probability": 1.0 + }, + { + "word": " how", + "start": 3755.78, + "end": 3755.86, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 3755.86, + "end": 3756.0, + "probability": 1.0 + }, + { + "word": " time", + "start": 3756.0, + "end": 3756.18, + "probability": 1.0 + }, + { + "word": " does", + "start": 3756.18, + "end": 3756.32, + "probability": 1.0 + }, + { + "word": " it", + "start": 3756.32, + "end": 3756.42, + "probability": 1.0 + }, + { + "word": " take", + "start": 3756.42, + "end": 3756.62, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3756.62, + "end": 3756.76, + "probability": 1.0 + }, + { + "word": " actually", + "start": 3756.76, + "end": 3756.94, + "probability": 1.0 + }, + { + "word": " get", + "start": 3756.94, + "end": 3757.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 3757.16, + "end": 3757.32, + "probability": 1.0 + }, + { + "word": " information", + "start": 3757.32, + "end": 3757.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 3757.64, + "end": 3757.9, + "probability": 1.0 + }, + { + "word": " two", + "start": 3757.9, + "end": 3758.02, + "probability": 0.99951171875 + }, + { + "word": " billion", + "start": 3758.02, + "end": 3758.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1523, + "text": "accounts?", + "start": 3758.22, + "end": 3758.48, + "words": [ + { + "word": " accounts?", + "start": 3758.22, + "end": 3758.48, + "probability": 1.0 + } + ] + }, + { + "id": 1524, + "text": "I mean, it's not instant.", + "start": 3758.76, + "end": 3759.56, + "words": [ + { + "word": " I", + "start": 3758.76, + "end": 3758.88, + "probability": 0.998046875 + }, + { + "word": " mean,", + "start": 3758.88, + "end": 3758.96, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3758.98, + "end": 3759.1, + "probability": 1.0 + }, + { + "word": " not", + "start": 3759.1, + "end": 3759.18, + "probability": 0.99951171875 + }, + { + "word": " instant.", + "start": 3759.18, + "end": 3759.56, + "probability": 1.0 + } + ] + }, + { + "id": 1525, + "text": "No.", + "start": 3759.82, + "end": 3760.28, + "words": [ + { + "word": " No.", + "start": 3759.82, + "end": 3760.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1526, + "text": "Even if they were one bit per file.", + "start": 3760.36, + "end": 3763.46, + "words": [ + { + "word": " Even", + "start": 3760.36, + "end": 3760.62, + "probability": 0.9951171875 + }, + { + "word": " if", + "start": 3760.62, + "end": 3760.8, + "probability": 1.0 + }, + { + "word": " they", + "start": 3760.8, + "end": 3760.9, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 3760.9, + "end": 3761.04, + "probability": 1.0 + }, + { + "word": " one", + "start": 3761.04, + "end": 3761.42, + "probability": 0.4365234375 + }, + { + "word": " bit", + "start": 3761.42, + "end": 3762.18, + "probability": 0.994140625 + }, + { + "word": " per", + "start": 3762.18, + "end": 3763.16, + "probability": 0.9921875 + }, + { + "word": " file.", + "start": 3763.16, + "end": 3763.46, + "probability": 0.41650390625 + } + ] + }, + { + "id": 1527, + "text": "", + "start": 3763.46, + "end": 3763.46, + "words": [] + }, + { + "id": 1528, + "text": "Right.", + "start": 3763.9199999999996, + "end": 3764.24, + "words": [ + { + "word": " Right.", + "start": 3763.9199999999996, + "end": 3764.24, + "probability": 0.56201171875 + } + ] + }, + { + "id": 1529, + "text": "That would take a long time.", + "start": 3765.02, + "end": 3768.28, + "words": [ + { + "word": " That", + "start": 3765.02, + "end": 3765.34, + "probability": 0.970703125 + }, + { + "word": " would", + "start": 3765.34, + "end": 3765.66, + "probability": 0.4404296875 + }, + { + "word": " take", + "start": 3765.66, + "end": 3767.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 3767.04, + "end": 3767.4, + "probability": 1.0 + }, + { + "word": " long", + "start": 3767.4, + "end": 3767.8, + "probability": 1.0 + }, + { + "word": " time.", + "start": 3767.8, + "end": 3768.28, + "probability": 1.0 + } + ] + }, + { + "id": 1530, + "text": "And nobody noticed that they were in there.", + "start": 3768.64, + "end": 3770.94, + "words": [ + { + "word": " And", + "start": 3768.64, + "end": 3768.96, + "probability": 0.97802734375 + }, + { + "word": " nobody", + "start": 3768.96, + "end": 3769.2, + "probability": 0.91943359375 + }, + { + "word": " noticed", + "start": 3769.2, + "end": 3769.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 3769.68, + "end": 3770.3, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 3770.3, + "end": 3770.5, + "probability": 1.0 + }, + { + "word": " were", + "start": 3770.5, + "end": 3770.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 3770.64, + "end": 3770.78, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3770.78, + "end": 3770.94, + "probability": 1.0 + } + ] + }, + { + "id": 1531, + "text": "I mean, it's much like the movie production house hack that happened a few years ago and", + "start": 3771.26, + "end": 3776.32, + "words": [ + { + "word": " I", + "start": 3771.26, + "end": 3771.36, + "probability": 0.9384765625 + }, + { + "word": " mean,", + "start": 3771.36, + "end": 3771.5, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3771.52, + "end": 3771.62, + "probability": 1.0 + }, + { + "word": " much", + "start": 3771.62, + "end": 3771.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 3771.74, + "end": 3771.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 3771.88, + "end": 3772.04, + "probability": 1.0 + }, + { + "word": " movie", + "start": 3772.04, + "end": 3772.98, + "probability": 0.9990234375 + }, + { + "word": " production", + "start": 3772.98, + "end": 3774.36, + "probability": 0.9921875 + }, + { + "word": " house", + "start": 3774.36, + "end": 3774.68, + "probability": 1.0 + }, + { + "word": " hack", + "start": 3774.68, + "end": 3775.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 3775.0, + "end": 3775.24, + "probability": 1.0 + }, + { + "word": " happened", + "start": 3775.24, + "end": 3775.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 3775.52, + "end": 3775.66, + "probability": 1.0 + }, + { + "word": " few", + "start": 3775.66, + "end": 3775.74, + "probability": 1.0 + }, + { + "word": " years", + "start": 3775.74, + "end": 3775.88, + "probability": 1.0 + }, + { + "word": " ago", + "start": 3775.88, + "end": 3776.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 3776.14, + "end": 3776.32, + "probability": 0.08819580078125 + } + ] + }, + { + "id": 1532, + "text": "it turned out that it was an inside job because people started going, wait a minute, there", + "start": 3776.32, + "end": 3780.34, + "words": [ + { + "word": " it", + "start": 3776.32, + "end": 3776.4, + "probability": 0.99951171875 + }, + { + "word": " turned", + "start": 3776.4, + "end": 3776.54, + "probability": 0.9970703125 + }, + { + "word": " out", + "start": 3776.54, + "end": 3776.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 3776.66, + "end": 3776.8, + "probability": 0.6513671875 + }, + { + "word": " it", + "start": 3776.8, + "end": 3776.88, + "probability": 0.97705078125 + }, + { + "word": " was", + "start": 3776.88, + "end": 3776.9, + "probability": 1.0 + }, + { + "word": " an", + "start": 3776.9, + "end": 3777.14, + "probability": 0.7880859375 + }, + { + "word": " inside", + "start": 3777.14, + "end": 3777.8, + "probability": 1.0 + }, + { + "word": " job", + "start": 3777.8, + "end": 3778.14, + "probability": 1.0 + }, + { + "word": " because", + "start": 3778.14, + "end": 3778.42, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 3778.42, + "end": 3778.64, + "probability": 1.0 + }, + { + "word": " started", + "start": 3778.64, + "end": 3778.88, + "probability": 1.0 + }, + { + "word": " going,", + "start": 3778.88, + "end": 3779.06, + "probability": 1.0 + }, + { + "word": " wait", + "start": 3779.28, + "end": 3779.88, + "probability": 0.97802734375 + }, + { + "word": " a", + "start": 3779.88, + "end": 3779.98, + "probability": 1.0 + }, + { + "word": " minute,", + "start": 3779.98, + "end": 3780.1, + "probability": 1.0 + }, + { + "word": " there", + "start": 3780.22, + "end": 3780.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1533, + "text": "is hundreds of terabytes of information that are-", + "start": 3780.34, + "end": 3783.92, + "words": [ + { + "word": " is", + "start": 3780.34, + "end": 3780.56, + "probability": 0.99462890625 + }, + { + "word": " hundreds", + "start": 3780.56, + "end": 3781.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3781.36, + "end": 3781.9, + "probability": 1.0 + }, + { + "word": " terabytes", + "start": 3781.9, + "end": 3782.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3782.36, + "end": 3782.68, + "probability": 1.0 + }, + { + "word": " information", + "start": 3782.68, + "end": 3783.04, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3783.04, + "end": 3783.58, + "probability": 0.94287109375 + }, + { + "word": " are", + "start": 3783.58, + "end": 3783.84, + "probability": 0.9990234375 + }, + { + "word": "-", + "start": 3783.84, + "end": 3783.92, + "probability": 0.06024169921875 + } + ] + }, + { + "id": 1534, + "text": "Yeah.", + "start": 3783.92, + "end": 3784.02, + "words": [ + { + "word": " Yeah.", + "start": 3783.92, + "end": 3784.02, + "probability": 0.83837890625 + } + ] + }, + { + "id": 1535, + "text": "At the very least, you'd notice that when your ISP called you and was like, hey, stop", + "start": 3784.04, + "end": 3787.02, + "words": [ + { + "word": " At", + "start": 3784.04, + "end": 3784.2, + "probability": 0.869140625 + }, + { + "word": " the", + "start": 3784.2, + "end": 3784.34, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 3784.34, + "end": 3784.48, + "probability": 0.99951171875 + }, + { + "word": " least,", + "start": 3784.48, + "end": 3784.72, + "probability": 0.99951171875 + }, + { + "word": " you'd", + "start": 3784.72, + "end": 3784.88, + "probability": 0.9990234375 + }, + { + "word": " notice", + "start": 3784.88, + "end": 3785.1, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 3785.1, + "end": 3785.26, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 3785.26, + "end": 3785.44, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3785.44, + "end": 3785.56, + "probability": 0.9990234375 + }, + { + "word": " ISP", + "start": 3785.56, + "end": 3786.0, + "probability": 1.0 + }, + { + "word": " called", + "start": 3786.0, + "end": 3786.2, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3786.2, + "end": 3786.36, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3786.36, + "end": 3786.46, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3786.46, + "end": 3786.56, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3786.56, + "end": 3786.68, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 3786.74, + "end": 3786.84, + "probability": 0.9970703125 + }, + { + "word": " stop", + "start": 3786.86, + "end": 3787.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1536, + "text": "using that much bandwidth.", + "start": 3787.02, + "end": 3787.94, + "words": [ + { + "word": " using", + "start": 3787.02, + "end": 3787.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3787.3, + "end": 3787.48, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 3787.48, + "end": 3787.6, + "probability": 1.0 + }, + { + "word": " bandwidth.", + "start": 3787.6, + "end": 3787.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1537, + "text": "Right.", + "start": 3788.54, + "end": 3788.86, + "words": [ + { + "word": " Right.", + "start": 3788.54, + "end": 3788.86, + "probability": 0.97998046875 + } + ] + }, + { + "id": 1538, + "text": "Well, I mean, I don't know that the movie houses are going to have the ISP call them,", + "start": 3788.94, + "end": 3793.16, + "words": [ + { + "word": " Well,", + "start": 3788.94, + "end": 3789.14, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 3789.28, + "end": 3789.34, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 3789.34, + "end": 3789.48, + "probability": 0.98681640625 + }, + { + "word": " I", + "start": 3789.5, + "end": 3789.62, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3789.62, + "end": 3789.74, + "probability": 1.0 + }, + { + "word": " know", + "start": 3789.74, + "end": 3789.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 3789.86, + "end": 3790.02, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 3790.02, + "end": 3790.16, + "probability": 0.99951171875 + }, + { + "word": " movie", + "start": 3790.16, + "end": 3791.66, + "probability": 0.9990234375 + }, + { + "word": " houses", + "start": 3791.66, + "end": 3791.88, + "probability": 0.99755859375 + }, + { + "word": " are", + "start": 3791.88, + "end": 3792.08, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 3792.08, + "end": 3792.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3792.18, + "end": 3792.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 3792.22, + "end": 3792.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 3792.36, + "end": 3792.46, + "probability": 0.99755859375 + }, + { + "word": " ISP", + "start": 3792.46, + "end": 3792.8, + "probability": 1.0 + }, + { + "word": " call", + "start": 3792.8, + "end": 3792.98, + "probability": 0.99755859375 + }, + { + "word": " them,", + "start": 3792.98, + "end": 3793.16, + "probability": 1.0 + } + ] + }, + { + "id": 1539, + "text": "but-", + "start": 3793.18, + "end": 3793.42, + "words": [ + { + "word": " but", + "start": 3793.18, + "end": 3793.4, + "probability": 0.99853515625 + }, + { + "word": "-", + "start": 3793.4, + "end": 3793.42, + "probability": 0.90673828125 + } + ] + }, + { + "id": 1540, + "text": "Yeah.", + "start": 3793.42, + "end": 3793.46, + "words": [ + { + "word": " Yeah.", + "start": 3793.42, + "end": 3793.46, + "probability": 0.71484375 + } + ] + }, + { + "id": 1541, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1542, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1543, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1544, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1545, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1546, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1547, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1548, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1549, + "text": "", + "start": 3793.46, + "end": 3793.46, + "words": [] + }, + { + "id": 1550, + "text": "I mean, it's just, I mean, there's a physics question here, right?", + "start": 3793.46, + "end": 3800.02, + "words": [ + { + "word": " I", + "start": 3793.46, + "end": 3793.92, + "probability": 0.00848388671875 + }, + { + "word": " mean,", + "start": 3793.92, + "end": 3794.74, + "probability": 0.98046875 + }, + { + "word": " it's", + "start": 3794.9, + "end": 3794.98, + "probability": 0.091796875 + }, + { + "word": " just,", + "start": 3794.98, + "end": 3795.32, + "probability": 0.0013113021850585938 + }, + { + "word": " I", + "start": 3796.1, + "end": 3796.7, + "probability": 0.96044921875 + }, + { + "word": " mean,", + "start": 3796.7, + "end": 3797.04, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3797.06, + "end": 3797.28, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3797.28, + "end": 3797.38, + "probability": 1.0 + }, + { + "word": " physics", + "start": 3797.38, + "end": 3798.28, + "probability": 0.9814453125 + }, + { + "word": " question", + "start": 3798.28, + "end": 3798.88, + "probability": 1.0 + }, + { + "word": " here,", + "start": 3798.88, + "end": 3799.26, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 3799.46, + "end": 3800.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1551, + "text": "Maybe they smuggled the data out in their blood.", + "start": 3800.14, + "end": 3803.28, + "words": [ + { + "word": " Maybe", + "start": 3800.14, + "end": 3800.58, + "probability": 0.99267578125 + }, + { + "word": " they", + "start": 3800.58, + "end": 3800.8, + "probability": 1.0 + }, + { + "word": " smuggled", + "start": 3800.8, + "end": 3802.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3802.0, + "end": 3802.16, + "probability": 1.0 + }, + { + "word": " data", + "start": 3802.16, + "end": 3802.34, + "probability": 1.0 + }, + { + "word": " out", + "start": 3802.34, + "end": 3802.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 3802.54, + "end": 3802.82, + "probability": 1.0 + }, + { + "word": " their", + "start": 3802.82, + "end": 3802.94, + "probability": 1.0 + }, + { + "word": " blood.", + "start": 3802.94, + "end": 3803.28, + "probability": 1.0 + } + ] + }, + { + "id": 1552, + "text": "Oh, they could have.", + "start": 3804.1, + "end": 3805.08, + "words": [ + { + "word": " Oh,", + "start": 3804.1, + "end": 3804.3, + "probability": 0.399658203125 + }, + { + "word": " they", + "start": 3804.4, + "end": 3804.6, + "probability": 1.0 + }, + { + "word": " could", + "start": 3804.6, + "end": 3804.84, + "probability": 1.0 + }, + { + "word": " have.", + "start": 3804.84, + "end": 3805.08, + "probability": 1.0 + } + ] + }, + { + "id": 1553, + "text": "They could have.", + "start": 3805.3, + "end": 3806.14, + "words": [ + { + "word": " They", + "start": 3805.3, + "end": 3805.78, + "probability": 0.99560546875 + }, + { + "word": " could", + "start": 3805.78, + "end": 3805.98, + "probability": 1.0 + }, + { + "word": " have.", + "start": 3805.98, + "end": 3806.14, + "probability": 1.0 + } + ] + }, + { + "id": 1554, + "text": "In fact, one person.", + "start": 3806.18, + "end": 3807.08, + "words": [ + { + "word": " In", + "start": 3806.18, + "end": 3806.28, + "probability": 0.9970703125 + }, + { + "word": " fact,", + "start": 3806.28, + "end": 3806.44, + "probability": 1.0 + }, + { + "word": " one", + "start": 3806.48, + "end": 3806.66, + "probability": 1.0 + }, + { + "word": " person.", + "start": 3806.66, + "end": 3807.08, + "probability": 1.0 + } + ] + }, + { + "id": 1555, + "text": "Yeah.", + "start": 3807.6, + "end": 3808.08, + "words": [ + { + "word": " Yeah.", + "start": 3807.6, + "end": 3808.08, + "probability": 0.50341796875 + } + ] + }, + { + "id": 1556, + "text": "Like many times over.", + "start": 3808.08, + "end": 3809.4, + "words": [ + { + "word": " Like", + "start": 3808.08, + "end": 3808.44, + "probability": 0.43310546875 + }, + { + "word": " many", + "start": 3808.44, + "end": 3808.78, + "probability": 0.46484375 + }, + { + "word": " times", + "start": 3808.78, + "end": 3809.06, + "probability": 1.0 + }, + { + "word": " over.", + "start": 3809.06, + "end": 3809.4, + "probability": 1.0 + } + ] + }, + { + "id": 1557, + "text": "So let's talk about DNA for a second here.", + "start": 3810.26, + "end": 3813.24, + "words": [ + { + "word": " So", + "start": 3810.26, + "end": 3810.74, + "probability": 0.998046875 + }, + { + "word": " let's", + "start": 3810.74, + "end": 3810.92, + "probability": 0.95751953125 + }, + { + "word": " talk", + "start": 3810.92, + "end": 3811.02, + "probability": 1.0 + }, + { + "word": " about", + "start": 3811.02, + "end": 3811.26, + "probability": 1.0 + }, + { + "word": " DNA", + "start": 3811.26, + "end": 3812.32, + "probability": 0.99267578125 + }, + { + "word": " for", + "start": 3812.32, + "end": 3812.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 3812.68, + "end": 3812.8, + "probability": 1.0 + }, + { + "word": " second", + "start": 3812.8, + "end": 3813.04, + "probability": 1.0 + }, + { + "word": " here.", + "start": 3813.04, + "end": 3813.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1558, + "text": "It turns out that DNA stores a lot of information.", + "start": 3814.02, + "end": 3818.1, + "words": [ + { + "word": " It", + "start": 3814.02, + "end": 3814.5, + "probability": 0.99951171875 + }, + { + "word": " turns", + "start": 3814.5, + "end": 3814.74, + "probability": 1.0 + }, + { + "word": " out", + "start": 3814.74, + "end": 3815.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 3815.06, + "end": 3815.22, + "probability": 1.0 + }, + { + "word": " DNA", + "start": 3815.22, + "end": 3815.6, + "probability": 1.0 + }, + { + "word": " stores", + "start": 3815.6, + "end": 3816.74, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3816.74, + "end": 3817.12, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3817.12, + "end": 3817.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 3817.66, + "end": 3817.84, + "probability": 1.0 + }, + { + "word": " information.", + "start": 3817.84, + "end": 3818.1, + "probability": 1.0 + } + ] + }, + { + "id": 1559, + "text": "We talked about DNA being tested as a storage medium about two years ago on the show.", + "start": 3818.1, + "end": 3823.1, + "words": [ + { + "word": " We", + "start": 3818.1, + "end": 3818.3, + "probability": 0.9951171875 + }, + { + "word": " talked", + "start": 3818.3, + "end": 3818.46, + "probability": 1.0 + }, + { + "word": " about", + "start": 3818.46, + "end": 3818.72, + "probability": 1.0 + }, + { + "word": " DNA", + "start": 3818.72, + "end": 3819.12, + "probability": 1.0 + }, + { + "word": " being", + "start": 3819.12, + "end": 3819.5, + "probability": 1.0 + }, + { + "word": " tested", + "start": 3819.5, + "end": 3819.96, + "probability": 1.0 + }, + { + "word": " as", + "start": 3819.96, + "end": 3820.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 3820.22, + "end": 3820.32, + "probability": 1.0 + }, + { + "word": " storage", + "start": 3820.32, + "end": 3820.6, + "probability": 1.0 + }, + { + "word": " medium", + "start": 3820.6, + "end": 3820.9, + "probability": 1.0 + }, + { + "word": " about", + "start": 3820.9, + "end": 3821.64, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 3821.64, + "end": 3821.86, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 3821.86, + "end": 3822.04, + "probability": 1.0 + }, + { + "word": " ago", + "start": 3822.04, + "end": 3822.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 3822.36, + "end": 3822.86, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 3822.86, + "end": 3822.98, + "probability": 1.0 + }, + { + "word": " show.", + "start": 3822.98, + "end": 3823.1, + "probability": 1.0 + } + ] + }, + { + "id": 1560, + "text": "Yeah.", + "start": 3823.2, + "end": 3823.44, + "words": [ + { + "word": " Yeah.", + "start": 3823.2, + "end": 3823.44, + "probability": 0.365478515625 + } + ] + }, + { + "id": 1561, + "text": "And they didn't really have any hard numbers about how much data they were able to store,", + "start": 3823.46, + "end": 3828.32, + "words": [ + { + "word": " And", + "start": 3823.46, + "end": 3823.96, + "probability": 0.82470703125 + }, + { + "word": " they", + "start": 3823.96, + "end": 3825.36, + "probability": 0.98974609375 + }, + { + "word": " didn't", + "start": 3825.36, + "end": 3825.78, + "probability": 1.0 + }, + { + "word": " really", + "start": 3825.78, + "end": 3825.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 3825.9, + "end": 3826.1, + "probability": 1.0 + }, + { + "word": " any", + "start": 3826.1, + "end": 3826.22, + "probability": 1.0 + }, + { + "word": " hard", + "start": 3826.22, + "end": 3826.42, + "probability": 1.0 + }, + { + "word": " numbers", + "start": 3826.42, + "end": 3826.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 3826.7, + "end": 3826.86, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 3826.86, + "end": 3827.02, + "probability": 1.0 + }, + { + "word": " much", + "start": 3827.02, + "end": 3827.22, + "probability": 1.0 + }, + { + "word": " data", + "start": 3827.22, + "end": 3827.42, + "probability": 0.9921875 + }, + { + "word": " they", + "start": 3827.42, + "end": 3827.58, + "probability": 1.0 + }, + { + "word": " were", + "start": 3827.58, + "end": 3827.68, + "probability": 1.0 + }, + { + "word": " able", + "start": 3827.68, + "end": 3827.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 3827.86, + "end": 3828.06, + "probability": 1.0 + }, + { + "word": " store,", + "start": 3828.06, + "end": 3828.32, + "probability": 1.0 + } + ] + }, + { + "id": 1562, + "text": "but it turns out that 215 petabytes per gram of DNA.", + "start": 3828.92, + "end": 3835.8, + "words": [ + { + "word": " but", + "start": 3828.92, + "end": 3829.4, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3829.4, + "end": 3829.54, + "probability": 1.0 + }, + { + "word": " turns", + "start": 3829.54, + "end": 3829.76, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 3829.76, + "end": 3830.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 3830.06, + "end": 3830.92, + "probability": 0.99951171875 + }, + { + "word": " 215", + "start": 3830.92, + "end": 3832.7, + "probability": 0.99853515625 + }, + { + "word": " petabytes", + "start": 3832.7, + "end": 3833.42, + "probability": 0.998046875 + }, + { + "word": " per", + "start": 3833.42, + "end": 3834.46, + "probability": 0.99951171875 + }, + { + "word": " gram", + "start": 3834.46, + "end": 3834.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 3834.98, + "end": 3835.4, + "probability": 1.0 + }, + { + "word": " DNA.", + "start": 3835.4, + "end": 3835.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1563, + "text": "And so this is coming to light right now because there were researchers who were able to completely", + "start": 3836.36, + "end": 3840.66, + "words": [ + { + "word": " And", + "start": 3836.36, + "end": 3836.84, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 3836.84, + "end": 3837.0, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 3837.0, + "end": 3837.16, + "probability": 0.98193359375 + }, + { + "word": " is", + "start": 3837.16, + "end": 3837.34, + "probability": 1.0 + }, + { + "word": " coming", + "start": 3837.34, + "end": 3837.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3837.54, + "end": 3837.68, + "probability": 1.0 + }, + { + "word": " light", + "start": 3837.68, + "end": 3837.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 3837.84, + "end": 3838.0, + "probability": 1.0 + }, + { + "word": " now", + "start": 3838.0, + "end": 3838.24, + "probability": 1.0 + }, + { + "word": " because", + "start": 3838.24, + "end": 3838.5, + "probability": 0.96142578125 + }, + { + "word": " there", + "start": 3838.5, + "end": 3838.86, + "probability": 1.0 + }, + { + "word": " were", + "start": 3838.86, + "end": 3838.98, + "probability": 0.91259765625 + }, + { + "word": " researchers", + "start": 3838.98, + "end": 3839.34, + "probability": 1.0 + }, + { + "word": " who", + "start": 3839.34, + "end": 3839.66, + "probability": 1.0 + }, + { + "word": " were", + "start": 3839.66, + "end": 3839.8, + "probability": 1.0 + }, + { + "word": " able", + "start": 3839.8, + "end": 3840.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 3840.02, + "end": 3840.26, + "probability": 1.0 + }, + { + "word": " completely", + "start": 3840.26, + "end": 3840.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1564, + "text": "write an entire operating system into-", + "start": 3840.66, + "end": 3844.18, + "words": [ + { + "word": " write", + "start": 3840.66, + "end": 3841.14, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 3841.14, + "end": 3841.88, + "probability": 1.0 + }, + { + "word": " entire", + "start": 3841.88, + "end": 3842.12, + "probability": 1.0 + }, + { + "word": " operating", + "start": 3842.12, + "end": 3842.64, + "probability": 1.0 + }, + { + "word": " system", + "start": 3842.64, + "end": 3843.12, + "probability": 1.0 + }, + { + "word": " into", + "start": 3843.12, + "end": 3843.98, + "probability": 0.94970703125 + }, + { + "word": "-", + "start": 3843.98, + "end": 3844.18, + "probability": 0.078125 + } + ] + }, + { + "id": 1565, + "text": "And a movie.", + "start": 3844.18, + "end": 3844.62, + "words": [ + { + "word": " And", + "start": 3844.18, + "end": 3844.3, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3844.3, + "end": 3844.36, + "probability": 1.0 + }, + { + "word": " movie.", + "start": 3844.36, + "end": 3844.62, + "probability": 1.0 + } + ] + }, + { + "id": 1566, + "text": "And a movie and an Amazon gift card and also a computer virus into a DNA sequence and then", + "start": 3844.72, + "end": 3850.84, + "words": [ + { + "word": " And", + "start": 3844.72, + "end": 3844.88, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 3844.88, + "end": 3844.98, + "probability": 0.99853515625 + }, + { + "word": " movie", + "start": 3844.98, + "end": 3845.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 3845.16, + "end": 3845.46, + "probability": 0.607421875 + }, + { + "word": " an", + "start": 3845.46, + "end": 3845.64, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 3845.64, + "end": 3845.94, + "probability": 1.0 + }, + { + "word": " gift", + "start": 3845.94, + "end": 3846.2, + "probability": 1.0 + }, + { + "word": " card", + "start": 3846.2, + "end": 3846.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 3846.42, + "end": 3847.04, + "probability": 0.9599609375 + }, + { + "word": " also", + "start": 3847.04, + "end": 3847.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 3847.28, + "end": 3847.44, + "probability": 1.0 + }, + { + "word": " computer", + "start": 3847.44, + "end": 3847.62, + "probability": 1.0 + }, + { + "word": " virus", + "start": 3847.62, + "end": 3847.98, + "probability": 1.0 + }, + { + "word": " into", + "start": 3847.98, + "end": 3848.94, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3848.94, + "end": 3849.28, + "probability": 1.0 + }, + { + "word": " DNA", + "start": 3849.28, + "end": 3849.6, + "probability": 1.0 + }, + { + "word": " sequence", + "start": 3849.6, + "end": 3849.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 3849.92, + "end": 3850.7, + "probability": 0.998046875 + }, + { + "word": " then", + "start": 3850.7, + "end": 3850.84, + "probability": 1.0 + } + ] + }, + { + "id": 1567, + "text": "recover it and run it.", + "start": 3850.84, + "end": 3852.36, + "words": [ + { + "word": " recover", + "start": 3850.84, + "end": 3851.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 3851.16, + "end": 3851.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 3851.46, + "end": 3851.94, + "probability": 0.99951171875 + }, + { + "word": " run", + "start": 3851.94, + "end": 3852.22, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3852.22, + "end": 3852.36, + "probability": 1.0 + } + ] + }, + { + "id": 1568, + "text": "Oh.", + "start": 3852.58, + "end": 3852.94, + "words": [ + { + "word": " Oh.", + "start": 3852.58, + "end": 3852.94, + "probability": 0.9599609375 + } + ] + }, + { + "id": 1569, + "text": "And when they recovered, there was zero errors.", + "start": 3853.46, + "end": 3855.22, + "words": [ + { + "word": " And", + "start": 3853.46, + "end": 3853.46, + "probability": 0.52978515625 + }, + { + "word": " when", + "start": 3853.46, + "end": 3853.46, + "probability": 0.98095703125 + }, + { + "word": " they", + "start": 3853.46, + "end": 3853.62, + "probability": 0.99951171875 + }, + { + "word": " recovered,", + "start": 3853.62, + "end": 3853.88, + "probability": 0.974609375 + }, + { + "word": " there", + "start": 3854.06, + "end": 3854.14, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3854.14, + "end": 3854.32, + "probability": 0.966796875 + }, + { + "word": " zero", + "start": 3854.32, + "end": 3854.76, + "probability": 0.994140625 + }, + { + "word": " errors.", + "start": 3854.76, + "end": 3855.22, + "probability": 1.0 + } + ] + }, + { + "id": 1570, + "text": "I mean, there's not even zero errors when you just transfer it to your flash drive.", + "start": 3855.74, + "end": 3859.02, + "words": [ + { + "word": " I", + "start": 3855.74, + "end": 3856.14, + "probability": 0.98291015625 + }, + { + "word": " mean,", + "start": 3856.14, + "end": 3856.22, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3856.22, + "end": 3856.38, + "probability": 1.0 + }, + { + "word": " not", + "start": 3856.38, + "end": 3856.48, + "probability": 1.0 + }, + { + "word": " even", + "start": 3856.48, + "end": 3856.66, + "probability": 1.0 + }, + { + "word": " zero", + "start": 3856.66, + "end": 3856.9, + "probability": 0.9990234375 + }, + { + "word": " errors", + "start": 3856.9, + "end": 3857.2, + "probability": 1.0 + }, + { + "word": " when", + "start": 3857.2, + "end": 3857.36, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3857.36, + "end": 3857.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 3857.44, + "end": 3857.62, + "probability": 0.99951171875 + }, + { + "word": " transfer", + "start": 3857.62, + "end": 3858.28, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 3858.28, + "end": 3858.38, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 3858.38, + "end": 3858.46, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3858.46, + "end": 3858.56, + "probability": 1.0 + }, + { + "word": " flash", + "start": 3858.56, + "end": 3858.8, + "probability": 0.99462890625 + }, + { + "word": " drive.", + "start": 3858.8, + "end": 3859.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1571, + "text": "Right.", + "start": 3859.22, + "end": 3859.44, + "words": [ + { + "word": " Right.", + "start": 3859.22, + "end": 3859.44, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1572, + "text": "There's errors when you read it off the hard drive that you use every day.", + "start": 3859.5, + "end": 3863.22, + "words": [ + { + "word": " There's", + "start": 3859.5, + "end": 3859.68, + "probability": 0.9990234375 + }, + { + "word": " errors", + "start": 3859.68, + "end": 3860.56, + "probability": 0.9560546875 + }, + { + "word": " when", + "start": 3860.56, + "end": 3861.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 3861.14, + "end": 3861.28, + "probability": 1.0 + }, + { + "word": " read", + "start": 3861.28, + "end": 3861.48, + "probability": 1.0 + }, + { + "word": " it", + "start": 3861.48, + "end": 3861.56, + "probability": 1.0 + }, + { + "word": " off", + "start": 3861.56, + "end": 3861.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3861.76, + "end": 3861.88, + "probability": 1.0 + }, + { + "word": " hard", + "start": 3861.88, + "end": 3862.06, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3862.06, + "end": 3862.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3862.26, + "end": 3862.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3862.44, + "end": 3862.54, + "probability": 1.0 + }, + { + "word": " use", + "start": 3862.54, + "end": 3862.78, + "probability": 1.0 + }, + { + "word": " every", + "start": 3862.78, + "end": 3863.0, + "probability": 0.99951171875 + }, + { + "word": " day.", + "start": 3863.0, + "end": 3863.22, + "probability": 1.0 + } + ] + }, + { + "id": 1573, + "text": "That's insane that they could pull that with zero errors, that much data.", + "start": 3864.8, + "end": 3869.96, + "words": [ + { + "word": " That's", + "start": 3864.8, + "end": 3865.2, + "probability": 0.998046875 + }, + { + "word": " insane", + "start": 3865.2, + "end": 3865.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 3865.46, + "end": 3866.96, + "probability": 0.96484375 + }, + { + "word": " they", + "start": 3866.96, + "end": 3867.4, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 3867.4, + "end": 3867.58, + "probability": 1.0 + }, + { + "word": " pull", + "start": 3867.58, + "end": 3867.88, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 3867.88, + "end": 3868.1, + "probability": 0.5 + }, + { + "word": " with", + "start": 3868.1, + "end": 3868.36, + "probability": 0.9892578125 + }, + { + "word": " zero", + "start": 3868.36, + "end": 3868.8, + "probability": 1.0 + }, + { + "word": " errors,", + "start": 3868.8, + "end": 3869.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3869.36, + "end": 3869.48, + "probability": 1.0 + }, + { + "word": " much", + "start": 3869.48, + "end": 3869.68, + "probability": 1.0 + }, + { + "word": " data.", + "start": 3869.68, + "end": 3869.96, + "probability": 1.0 + } + ] + }, + { + "id": 1574, + "text": "And so, yeah, they say that the storage capacity for DNA is pretty absurd.", + "start": 3870.24, + "end": 3874.24, + "words": [ + { + "word": " And", + "start": 3870.24, + "end": 3870.64, + "probability": 0.9970703125 + }, + { + "word": " so,", + "start": 3870.64, + "end": 3870.84, + "probability": 0.99951171875 + }, + { + "word": " yeah,", + "start": 3870.86, + "end": 3870.98, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3871.04, + "end": 3871.12, + "probability": 1.0 + }, + { + "word": " say", + "start": 3871.12, + "end": 3871.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 3871.36, + "end": 3871.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3871.58, + "end": 3872.02, + "probability": 1.0 + }, + { + "word": " storage", + "start": 3872.02, + "end": 3872.4, + "probability": 1.0 + }, + { + "word": " capacity", + "start": 3872.4, + "end": 3872.62, + "probability": 1.0 + }, + { + "word": " for", + "start": 3872.62, + "end": 3873.12, + "probability": 1.0 + }, + { + "word": " DNA", + "start": 3873.12, + "end": 3873.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 3873.4, + "end": 3873.62, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 3873.62, + "end": 3873.86, + "probability": 1.0 + }, + { + "word": " absurd.", + "start": 3873.86, + "end": 3874.24, + "probability": 1.0 + } + ] + }, + { + "id": 1575, + "text": "Like you said, 215 petabytes per gram of DNA.", + "start": 3874.54, + "end": 3877.8, + "words": [ + { + "word": " Like", + "start": 3874.54, + "end": 3874.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 3874.94, + "end": 3875.06, + "probability": 1.0 + }, + { + "word": " said,", + "start": 3875.06, + "end": 3875.18, + "probability": 1.0 + }, + { + "word": " 215", + "start": 3875.28, + "end": 3876.08, + "probability": 0.99951171875 + }, + { + "word": " petabytes", + "start": 3876.08, + "end": 3876.62, + "probability": 0.998046875 + }, + { + "word": " per", + "start": 3876.62, + "end": 3877.14, + "probability": 1.0 + }, + { + "word": " gram", + "start": 3877.14, + "end": 3877.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 3877.44, + "end": 3877.62, + "probability": 1.0 + }, + { + "word": " DNA.", + "start": 3877.62, + "end": 3877.8, + "probability": 1.0 + } + ] + }, + { + "id": 1576, + "text": "So we did a little napkin math based on the average amount of DNA that a person has in", + "start": 3878.12, + "end": 3882.6, + "words": [ + { + "word": " So", + "start": 3878.12, + "end": 3878.52, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 3878.52, + "end": 3878.64, + "probability": 0.94091796875 + }, + { + "word": " did", + "start": 3878.64, + "end": 3878.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 3878.74, + "end": 3878.86, + "probability": 1.0 + }, + { + "word": " little", + "start": 3878.86, + "end": 3878.98, + "probability": 1.0 + }, + { + "word": " napkin", + "start": 3878.98, + "end": 3879.86, + "probability": 1.0 + }, + { + "word": " math", + "start": 3879.86, + "end": 3880.06, + "probability": 1.0 + }, + { + "word": " based", + "start": 3880.06, + "end": 3880.76, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3880.76, + "end": 3880.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 3880.92, + "end": 3881.04, + "probability": 1.0 + }, + { + "word": " average", + "start": 3881.04, + "end": 3881.26, + "probability": 1.0 + }, + { + "word": " amount", + "start": 3881.26, + "end": 3881.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 3881.44, + "end": 3881.62, + "probability": 1.0 + }, + { + "word": " DNA", + "start": 3881.62, + "end": 3881.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 3881.82, + "end": 3882.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 3882.04, + "end": 3882.14, + "probability": 1.0 + }, + { + "word": " person", + "start": 3882.14, + "end": 3882.3, + "probability": 1.0 + }, + { + "word": " has", + "start": 3882.3, + "end": 3882.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 3882.48, + "end": 3882.6, + "probability": 1.0 + } + ] + }, + { + "id": 1577, + "text": "their body, which I guess equates to about 300 grams in your whole body.", + "start": 3882.6, + "end": 3886.1, + "words": [ + { + "word": " their", + "start": 3882.6, + "end": 3882.68, + "probability": 0.340087890625 + }, + { + "word": " body,", + "start": 3882.68, + "end": 3882.96, + "probability": 0.9912109375 + }, + { + "word": " which", + "start": 3883.08, + "end": 3883.5, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 3883.5, + "end": 3883.66, + "probability": 0.90478515625 + }, + { + "word": " guess", + "start": 3883.66, + "end": 3883.86, + "probability": 0.9990234375 + }, + { + "word": " equates", + "start": 3883.86, + "end": 3884.24, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 3884.24, + "end": 3884.36, + "probability": 0.99755859375 + }, + { + "word": " about", + "start": 3884.36, + "end": 3884.48, + "probability": 0.99462890625 + }, + { + "word": " 300", + "start": 3884.48, + "end": 3884.76, + "probability": 0.982421875 + }, + { + "word": " grams", + "start": 3884.76, + "end": 3885.18, + "probability": 0.97265625 + }, + { + "word": " in", + "start": 3885.18, + "end": 3885.58, + "probability": 0.98876953125 + }, + { + "word": " your", + "start": 3885.58, + "end": 3885.7, + "probability": 0.998046875 + }, + { + "word": " whole", + "start": 3885.7, + "end": 3885.82, + "probability": 0.9990234375 + }, + { + "word": " body.", + "start": 3885.82, + "end": 3886.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1578, + "text": "Right.", + "start": 3886.16, + "end": 3886.36, + "words": [ + { + "word": " Right.", + "start": 3886.16, + "end": 3886.36, + "probability": 0.61572265625 + } + ] + }, + { + "id": 1579, + "text": "So you could store something like, what was it?", + "start": 3886.48, + "end": 3888.6, + "words": [ + { + "word": " So", + "start": 3886.48, + "end": 3886.84, + "probability": 0.94580078125 + }, + { + "word": " you", + "start": 3886.84, + "end": 3886.96, + "probability": 0.876953125 + }, + { + "word": " could", + "start": 3886.96, + "end": 3887.06, + "probability": 0.9912109375 + }, + { + "word": " store", + "start": 3887.06, + "end": 3887.32, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 3887.32, + "end": 3887.54, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 3887.54, + "end": 3887.96, + "probability": 0.9970703125 + }, + { + "word": " what", + "start": 3887.98, + "end": 3888.32, + "probability": 0.63525390625 + }, + { + "word": " was", + "start": 3888.32, + "end": 3888.48, + "probability": 0.99853515625 + }, + { + "word": " it?", + "start": 3888.48, + "end": 3888.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1580, + "text": "64 Yottabytes of data.", + "start": 3888.62, + "end": 3890.4, + "words": [ + { + "word": " 64", + "start": 3888.62, + "end": 3889.02, + "probability": 0.97314453125 + }, + { + "word": " Yottabytes", + "start": 3889.02, + "end": 3889.5, + "probability": 0.75537109375 + }, + { + "word": " of", + "start": 3889.5, + "end": 3890.06, + "probability": 0.99609375 + }, + { + "word": " data.", + "start": 3890.06, + "end": 3890.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1581, + "text": "Yeah.", + "start": 3890.64, + "end": 3891.04, + "words": [ + { + "word": " Yeah.", + "start": 3890.64, + "end": 3891.04, + "probability": 0.962890625 + } + ] + }, + { + "id": 1582, + "text": "It's exabytes.", + "start": 3891.14, + "end": 3892.6, + "words": [ + { + "word": " It's", + "start": 3891.14, + "end": 3891.7, + "probability": 0.70751953125 + }, + { + "word": " exabytes.", + "start": 3891.7, + "end": 3892.6, + "probability": 0.755859375 + } + ] + }, + { + "id": 1583, + "text": "Exabytes.", + "start": 3893.64, + "end": 3893.94, + "words": [ + { + "word": " Exabytes.", + "start": 3893.64, + "end": 3893.94, + "probability": 0.994140625 + } + ] + }, + { + "id": 1584, + "text": "Yeah.", + "start": 3894.1, + "end": 3894.38, + "words": [ + { + "word": " Yeah.", + "start": 3894.1, + "end": 3894.38, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1585, + "text": "It is insane amounts of data.", + "start": 3894.5, + "end": 3898.24, + "words": [ + { + "word": " It", + "start": 3894.5, + "end": 3894.8, + "probability": 0.9814453125 + }, + { + "word": " is", + "start": 3894.8, + "end": 3895.16, + "probability": 0.99951171875 + }, + { + "word": " insane", + "start": 3895.16, + "end": 3896.98, + "probability": 0.98583984375 + }, + { + "word": " amounts", + "start": 3896.98, + "end": 3897.74, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3897.74, + "end": 3897.98, + "probability": 1.0 + }, + { + "word": " data.", + "start": 3897.98, + "end": 3898.24, + "probability": 1.0 + } + ] + }, + { + "id": 1586, + "text": "It is more data in one person than exists in entirety anywhere.", + "start": 3898.58, + "end": 3906.3, + "words": [ + { + "word": " It", + "start": 3898.58, + "end": 3899.14, + "probability": 0.96044921875 + }, + { + "word": " is", + "start": 3899.14, + "end": 3899.8, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 3899.8, + "end": 3901.1, + "probability": 0.9990234375 + }, + { + "word": " data", + "start": 3901.1, + "end": 3901.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 3901.46, + "end": 3901.86, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 3901.86, + "end": 3902.22, + "probability": 1.0 + }, + { + "word": " person", + "start": 3902.22, + "end": 3902.68, + "probability": 1.0 + }, + { + "word": " than", + "start": 3902.68, + "end": 3903.22, + "probability": 0.99853515625 + }, + { + "word": " exists", + "start": 3903.22, + "end": 3903.58, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3903.58, + "end": 3904.1, + "probability": 0.9990234375 + }, + { + "word": " entirety", + "start": 3904.1, + "end": 3904.98, + "probability": 0.994140625 + }, + { + "word": " anywhere.", + "start": 3904.98, + "end": 3906.3, + "probability": 0.8095703125 + } + ] + }, + { + "id": 1587, + "text": "Now, I mean, I doubt the read-write speeds are super great for DNA.", + "start": 3907.88, + "end": 3911.5, + "words": [ + { + "word": " Now,", + "start": 3907.88, + "end": 3908.44, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 3908.48, + "end": 3908.54, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 3908.54, + "end": 3908.7, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 3908.72, + "end": 3908.98, + "probability": 1.0 + }, + { + "word": " doubt", + "start": 3908.98, + "end": 3909.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 3909.22, + "end": 3909.4, + "probability": 0.99951171875 + }, + { + "word": " read", + "start": 3909.4, + "end": 3909.56, + "probability": 0.998046875 + }, + { + "word": "-write", + "start": 3909.56, + "end": 3909.72, + "probability": 0.78125 + }, + { + "word": " speeds", + "start": 3909.72, + "end": 3909.92, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3909.92, + "end": 3910.2, + "probability": 1.0 + }, + { + "word": " super", + "start": 3910.2, + "end": 3910.66, + "probability": 1.0 + }, + { + "word": " great", + "start": 3910.66, + "end": 3910.94, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3910.94, + "end": 3911.18, + "probability": 1.0 + }, + { + "word": " DNA.", + "start": 3911.18, + "end": 3911.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1588, + "text": "Right.", + "start": 3911.78, + "end": 3912.34, + "words": [ + { + "word": " Right.", + "start": 3911.78, + "end": 3912.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1589, + "text": "But imagine though that you have some type of secret information, right?", + "start": 3912.6, + "end": 3918.14, + "words": [ + { + "word": " But", + "start": 3912.6, + "end": 3912.86, + "probability": 0.6572265625 + }, + { + "word": " imagine", + "start": 3912.86, + "end": 3913.5, + "probability": 0.9990234375 + }, + { + "word": " though", + "start": 3913.5, + "end": 3913.68, + "probability": 0.1416015625 + }, + { + "word": " that", + "start": 3913.68, + "end": 3913.84, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3913.84, + "end": 3914.0, + "probability": 0.90869140625 + }, + { + "word": " have", + "start": 3914.0, + "end": 3914.74, + "probability": 0.99755859375 + }, + { + "word": " some", + "start": 3914.74, + "end": 3915.12, + "probability": 1.0 + }, + { + "word": " type", + "start": 3915.12, + "end": 3915.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 3915.4, + "end": 3915.68, + "probability": 1.0 + }, + { + "word": " secret", + "start": 3915.68, + "end": 3916.56, + "probability": 0.9951171875 + }, + { + "word": " information,", + "start": 3916.56, + "end": 3917.4, + "probability": 1.0 + }, + { + "word": " right?", + "start": 3917.64, + "end": 3918.14, + "probability": 0.78759765625 + } + ] + }, + { + "id": 1590, + "text": "And then it opens up another challenge for security, which is if you're storing important", + "start": 3918.26, + "end": 3922.96, + "words": [ + { + "word": " And", + "start": 3918.26, + "end": 3918.36, + "probability": 0.96533203125 + }, + { + "word": " then", + "start": 3918.36, + "end": 3918.46, + "probability": 0.3330078125 + }, + { + "word": " it", + "start": 3918.46, + "end": 3918.56, + "probability": 0.99755859375 + }, + { + "word": " opens", + "start": 3918.56, + "end": 3918.92, + "probability": 1.0 + }, + { + "word": " up", + "start": 3918.92, + "end": 3919.14, + "probability": 1.0 + }, + { + "word": " another", + "start": 3919.14, + "end": 3919.42, + "probability": 1.0 + }, + { + "word": " challenge", + "start": 3919.42, + "end": 3920.36, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 3920.36, + "end": 3920.68, + "probability": 1.0 + }, + { + "word": " security,", + "start": 3920.68, + "end": 3921.08, + "probability": 1.0 + }, + { + "word": " which", + "start": 3921.2, + "end": 3921.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 3921.86, + "end": 3922.04, + "probability": 1.0 + }, + { + "word": " if", + "start": 3922.04, + "end": 3922.24, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 3922.24, + "end": 3922.38, + "probability": 0.9697265625 + }, + { + "word": " storing", + "start": 3922.38, + "end": 3922.7, + "probability": 0.99951171875 + }, + { + "word": " important", + "start": 3922.7, + "end": 3922.96, + "probability": 1.0 + } + ] + }, + { + "id": 1591, + "text": "information within your own DNA, then ...", + "start": 3922.96, + "end": 3927.04, + "words": [ + { + "word": " information", + "start": 3922.96, + "end": 3923.52, + "probability": 1.0 + }, + { + "word": " within", + "start": 3923.52, + "end": 3924.14, + "probability": 1.0 + }, + { + "word": " your", + "start": 3924.14, + "end": 3924.5, + "probability": 1.0 + }, + { + "word": " own", + "start": 3924.5, + "end": 3924.8, + "probability": 1.0 + }, + { + "word": " DNA,", + "start": 3924.8, + "end": 3925.26, + "probability": 1.0 + }, + { + "word": " then", + "start": 3925.5, + "end": 3926.54, + "probability": 1.0 + }, + { + "word": " ...", + "start": 3926.54, + "end": 3927.04, + "probability": 0.006992340087890625 + } + ] + }, + { + "id": 1592, + "text": "Yeah.", + "start": 3927.04, + "end": 3927.42, + "words": [ + { + "word": " Yeah.", + "start": 3927.04, + "end": 3927.42, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1593, + "text": "That brings a whole new meaning to trust fund baby.", + "start": 3927.48, + "end": 3930.9, + "words": [ + { + "word": " That", + "start": 3927.48, + "end": 3927.72, + "probability": 0.78759765625 + }, + { + "word": " brings", + "start": 3927.72, + "end": 3929.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 3929.02, + "end": 3929.2, + "probability": 1.0 + }, + { + "word": " whole", + "start": 3929.2, + "end": 3929.32, + "probability": 1.0 + }, + { + "word": " new", + "start": 3929.32, + "end": 3929.64, + "probability": 1.0 + }, + { + "word": " meaning", + "start": 3929.64, + "end": 3929.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 3929.94, + "end": 3930.08, + "probability": 1.0 + }, + { + "word": " trust", + "start": 3930.08, + "end": 3930.36, + "probability": 0.91162109375 + }, + { + "word": " fund", + "start": 3930.36, + "end": 3930.66, + "probability": 0.99755859375 + }, + { + "word": " baby.", + "start": 3930.66, + "end": 3930.9, + "probability": 0.54248046875 + } + ] + }, + { + "id": 1594, + "text": "Yeah.", + "start": 3931.52, + "end": 3932.04, + "words": [ + { + "word": " Yeah.", + "start": 3931.52, + "end": 3932.04, + "probability": 0.98046875 + } + ] + }, + { + "id": 1595, + "text": "Well, but think about it.", + "start": 3932.06, + "end": 3932.92, + "words": [ + { + "word": " Well,", + "start": 3932.06, + "end": 3932.2, + "probability": 0.986328125 + }, + { + "word": " but", + "start": 3932.26, + "end": 3932.4, + "probability": 0.998046875 + }, + { + "word": " think", + "start": 3932.4, + "end": 3932.64, + "probability": 1.0 + }, + { + "word": " about", + "start": 3932.64, + "end": 3932.8, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3932.8, + "end": 3932.92, + "probability": 1.0 + } + ] + }, + { + "id": 1596, + "text": "Somebody could technically take the glass at the bar and then have access to your information.", + "start": 3932.94, + "end": 3939.54, + "words": [ + { + "word": " Somebody", + "start": 3932.94, + "end": 3933.14, + "probability": 0.9873046875 + }, + { + "word": " could", + "start": 3933.14, + "end": 3933.44, + "probability": 1.0 + }, + { + "word": " technically", + "start": 3933.44, + "end": 3934.7, + "probability": 1.0 + }, + { + "word": " take", + "start": 3934.7, + "end": 3935.66, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 3935.66, + "end": 3936.4, + "probability": 1.0 + }, + { + "word": " glass", + "start": 3936.4, + "end": 3936.68, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3936.68, + "end": 3937.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 3937.0, + "end": 3937.16, + "probability": 1.0 + }, + { + "word": " bar", + "start": 3937.16, + "end": 3937.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 3937.4, + "end": 3937.76, + "probability": 0.99755859375 + }, + { + "word": " then", + "start": 3937.76, + "end": 3937.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 3937.96, + "end": 3938.22, + "probability": 1.0 + }, + { + "word": " access", + "start": 3938.22, + "end": 3938.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 3938.78, + "end": 3939.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 3939.0, + "end": 3939.12, + "probability": 1.0 + }, + { + "word": " information.", + "start": 3939.12, + "end": 3939.54, + "probability": 1.0 + } + ] + }, + { + "id": 1597, + "text": "Yeah.", + "start": 3939.9, + "end": 3940.32, + "words": [ + { + "word": " Yeah.", + "start": 3939.9, + "end": 3940.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1598, + "text": "I mean, that's true.", + "start": 3940.34, + "end": 3941.1, + "words": [ + { + "word": " I", + "start": 3940.34, + "end": 3940.48, + "probability": 0.97802734375 + }, + { + "word": " mean,", + "start": 3940.48, + "end": 3940.6, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3940.62, + "end": 3940.9, + "probability": 1.0 + }, + { + "word": " true.", + "start": 3940.9, + "end": 3941.1, + "probability": 1.0 + } + ] + }, + { + "id": 1599, + "text": "You'd have to encrypt it, I guess.", + "start": 3941.1, + "end": 3942.28, + "words": [ + { + "word": " You'd", + "start": 3941.1, + "end": 3941.42, + "probability": 0.6103515625 + }, + { + "word": " have", + "start": 3941.42, + "end": 3941.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3941.48, + "end": 3941.58, + "probability": 0.99951171875 + }, + { + "word": " encrypt", + "start": 3941.58, + "end": 3941.92, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 3941.92, + "end": 3942.02, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3942.08, + "end": 3942.14, + "probability": 0.99951171875 + }, + { + "word": " guess.", + "start": 3942.14, + "end": 3942.28, + "probability": 1.0 + } + ] + }, + { + "id": 1600, + "text": "Yeah.", + "start": 3942.48, + "end": 3942.8, + "words": [ + { + "word": " Yeah.", + "start": 3942.48, + "end": 3942.8, + "probability": 0.82373046875 + } + ] + }, + { + "id": 1601, + "text": "It's going to be an interesting ...", + "start": 3943.62, + "end": 3944.92, + "words": [ + { + "word": " It's", + "start": 3943.62, + "end": 3943.94, + "probability": 0.9912109375 + }, + { + "word": " going", + "start": 3943.94, + "end": 3943.98, + "probability": 0.9912109375 + }, + { + "word": " to", + "start": 3943.98, + "end": 3944.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 3944.1, + "end": 3944.2, + "probability": 1.0 + }, + { + "word": " an", + "start": 3944.2, + "end": 3944.28, + "probability": 0.9990234375 + }, + { + "word": " interesting", + "start": 3944.28, + "end": 3944.62, + "probability": 1.0 + }, + { + "word": " ...", + "start": 3944.62, + "end": 3944.92, + "probability": 0.0011539459228515625 + } + ] + }, + { + "id": 1602, + "text": "Don't the police already have the right to get your DNA?", + "start": 3944.92, + "end": 3947.58, + "words": [ + { + "word": " Don't", + "start": 3944.92, + "end": 3945.28, + "probability": 0.94921875 + }, + { + "word": " the", + "start": 3945.28, + "end": 3945.32, + "probability": 0.99951171875 + }, + { + "word": " police", + "start": 3945.32, + "end": 3945.62, + "probability": 0.99951171875 + }, + { + "word": " already", + "start": 3945.62, + "end": 3945.92, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 3945.92, + "end": 3946.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 3946.18, + "end": 3946.34, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3946.34, + "end": 3946.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3946.5, + "end": 3946.72, + "probability": 1.0 + }, + { + "word": " get", + "start": 3946.72, + "end": 3947.12, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 3947.12, + "end": 3947.3, + "probability": 0.99951171875 + }, + { + "word": " DNA?", + "start": 3947.3, + "end": 3947.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1603, + "text": "No.", + "start": 3948.54, + "end": 3948.86, + "words": [ + { + "word": " No.", + "start": 3948.54, + "end": 3948.86, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1604, + "text": "That's another one of those weird areas too when it comes to ...", + "start": 3948.92, + "end": 3952.06, + "words": [ + { + "word": " That's", + "start": 3948.92, + "end": 3949.2, + "probability": 0.998046875 + }, + { + "word": " another", + "start": 3949.2, + "end": 3949.6, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 3949.6, + "end": 3949.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3949.8, + "end": 3949.88, + "probability": 1.0 + }, + { + "word": " those", + "start": 3949.88, + "end": 3950.0, + "probability": 0.99951171875 + }, + { + "word": " weird", + "start": 3950.0, + "end": 3950.26, + "probability": 0.99951171875 + }, + { + "word": " areas", + "start": 3950.26, + "end": 3951.04, + "probability": 0.99951171875 + }, + { + "word": " too", + "start": 3951.04, + "end": 3951.4, + "probability": 0.14208984375 + }, + { + "word": " when", + "start": 3951.4, + "end": 3951.86, + "probability": 0.45849609375 + }, + { + "word": " it", + "start": 3951.86, + "end": 3951.92, + "probability": 0.99853515625 + }, + { + "word": " comes", + "start": 3951.92, + "end": 3952.04, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 3952.04, + "end": 3952.06, + "probability": 0.87841796875 + }, + { + "word": " ...", + "start": 3952.06, + "end": 3952.06, + "probability": 0.86328125 + } + ] + }, + { + "id": 1605, + "text": "Because they can offer you like a soda in the ... Or is that just the movies?", + "start": 3952.06, + "end": 3954.32, + "words": [ + { + "word": " Because", + "start": 3952.06, + "end": 3952.1, + "probability": 0.95751953125 + }, + { + "word": " they", + "start": 3952.1, + "end": 3952.16, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 3952.16, + "end": 3952.2, + "probability": 0.99853515625 + }, + { + "word": " offer", + "start": 3952.2, + "end": 3952.38, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3952.38, + "end": 3952.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 3952.54, + "end": 3952.7, + "probability": 0.494873046875 + }, + { + "word": " a", + "start": 3952.7, + "end": 3952.78, + "probability": 0.99951171875 + }, + { + "word": " soda", + "start": 3952.78, + "end": 3953.04, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 3953.04, + "end": 3953.34, + "probability": 0.45703125 + }, + { + "word": " the", + "start": 3953.34, + "end": 3953.46, + "probability": 0.99951171875 + }, + { + "word": " ...", + "start": 3953.46, + "end": 3953.54, + "probability": 0.75634765625 + }, + { + "word": " Or", + "start": 3953.54, + "end": 3953.66, + "probability": 0.9150390625 + }, + { + "word": " is", + "start": 3953.66, + "end": 3953.74, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3953.74, + "end": 3953.82, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3953.82, + "end": 3953.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3953.96, + "end": 3954.08, + "probability": 0.99951171875 + }, + { + "word": " movies?", + "start": 3954.08, + "end": 3954.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1606, + "text": "Well, I mean, if they offer you something, then it's entrapment.", + "start": 3954.76, + "end": 3959.02, + "words": [ + { + "word": " Well,", + "start": 3954.76, + "end": 3955.08, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 3955.18, + "end": 3955.26, + "probability": 0.9951171875 + }, + { + "word": " mean,", + "start": 3955.26, + "end": 3955.46, + "probability": 1.0 + }, + { + "word": " if", + "start": 3955.52, + "end": 3956.48, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 3956.48, + "end": 3957.06, + "probability": 1.0 + }, + { + "word": " offer", + "start": 3957.06, + "end": 3957.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 3957.38, + "end": 3957.66, + "probability": 1.0 + }, + { + "word": " something,", + "start": 3957.66, + "end": 3958.0, + "probability": 1.0 + }, + { + "word": " then", + "start": 3958.14, + "end": 3958.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3958.36, + "end": 3958.62, + "probability": 1.0 + }, + { + "word": " entrapment.", + "start": 3958.62, + "end": 3959.02, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1607, + "text": "But if you ... They just take it up out of the trash.", + "start": 3959.12, + "end": 3960.52, + "words": [ + { + "word": " But", + "start": 3959.12, + "end": 3959.26, + "probability": 0.99609375 + }, + { + "word": " if", + "start": 3959.26, + "end": 3959.36, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 3959.36, + "end": 3959.5, + "probability": 0.51171875 + }, + { + "word": " ...", + "start": 3959.5, + "end": 3959.7, + "probability": 0.97900390625 + }, + { + "word": " They", + "start": 3959.7, + "end": 3959.82, + "probability": 0.9794921875 + }, + { + "word": " just", + "start": 3959.82, + "end": 3960.02, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 3960.02, + "end": 3960.2, + "probability": 0.9150390625 + }, + { + "word": " it", + "start": 3960.2, + "end": 3960.32, + "probability": 1.0 + }, + { + "word": " up", + "start": 3960.32, + "end": 3960.42, + "probability": 0.9794921875 + }, + { + "word": " out", + "start": 3960.42, + "end": 3960.52, + "probability": 0.96826171875 + }, + { + "word": " of", + "start": 3960.52, + "end": 3960.52, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 3960.52, + "end": 3960.52, + "probability": 0.97705078125 + }, + { + "word": " trash.", + "start": 3960.52, + "end": 3960.52, + "probability": 0.1385498046875 + } + ] + }, + { + "id": 1608, + "text": "If there's just sodas on the table and you just grab one ...", + "start": 3960.52, + "end": 3963.04, + "words": [ + { + "word": " If", + "start": 3960.52, + "end": 3960.6, + "probability": 0.966796875 + }, + { + "word": " there's", + "start": 3960.6, + "end": 3960.8, + "probability": 0.994140625 + }, + { + "word": " just", + "start": 3960.8, + "end": 3960.94, + "probability": 0.99951171875 + }, + { + "word": " sodas", + "start": 3960.94, + "end": 3961.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 3961.4, + "end": 3961.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 3961.5, + "end": 3961.62, + "probability": 1.0 + }, + { + "word": " table", + "start": 3961.62, + "end": 3961.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 3961.92, + "end": 3962.12, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 3962.12, + "end": 3962.22, + "probability": 1.0 + }, + { + "word": " just", + "start": 3962.22, + "end": 3962.36, + "probability": 1.0 + }, + { + "word": " grab", + "start": 3962.36, + "end": 3962.58, + "probability": 1.0 + }, + { + "word": " one", + "start": 3962.58, + "end": 3962.88, + "probability": 0.99951171875 + }, + { + "word": " ...", + "start": 3962.88, + "end": 3963.04, + "probability": 0.394287109375 + } + ] + }, + { + "id": 1609, + "text": "Right.", + "start": 3963.04, + "end": 3963.22, + "words": [ + { + "word": " Right.", + "start": 3963.04, + "end": 3963.22, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1610, + "text": "Then it's not.", + "start": 3963.22, + "end": 3963.72, + "words": [ + { + "word": " Then", + "start": 3963.22, + "end": 3963.4, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 3963.4, + "end": 3963.58, + "probability": 1.0 + }, + { + "word": " not.", + "start": 3963.58, + "end": 3963.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1611, + "text": "There you go.", + "start": 3963.84, + "end": 3964.34, + "words": [ + { + "word": " There", + "start": 3963.84, + "end": 3964.1, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 3964.1, + "end": 3964.22, + "probability": 1.0 + }, + { + "word": " go.", + "start": 3964.22, + "end": 3964.34, + "probability": 1.0 + } + ] + }, + { + "id": 1612, + "text": "All right.", + "start": 3965.24, + "end": 3965.74, + "words": [ + { + "word": " All", + "start": 3965.24, + "end": 3965.56, + "probability": 0.99560546875 + }, + { + "word": " right.", + "start": 3965.56, + "end": 3965.74, + "probability": 1.0 + } + ] + }, + { + "id": 1613, + "text": "Let's take a call here.", + "start": 3965.76, + "end": 3966.4, + "words": [ + { + "word": " Let's", + "start": 3965.76, + "end": 3965.92, + "probability": 0.9931640625 + }, + { + "word": " take", + "start": 3965.92, + "end": 3966.02, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3966.02, + "end": 3966.12, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 3966.12, + "end": 3966.26, + "probability": 0.7138671875 + }, + { + "word": " here.", + "start": 3966.26, + "end": 3966.4, + "probability": 0.89501953125 + } + ] + }, + { + "id": 1614, + "text": "Let's talk to Frank.", + "start": 3966.44, + "end": 3966.96, + "words": [ + { + "word": " Let's", + "start": 3966.44, + "end": 3966.58, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 3966.58, + "end": 3966.7, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3966.7, + "end": 3966.76, + "probability": 1.0 + }, + { + "word": " Frank.", + "start": 3966.76, + "end": 3966.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1615, + "text": "Hey, Frank.", + "start": 3967.08, + "end": 3967.4, + "words": [ + { + "word": " Hey,", + "start": 3967.08, + "end": 3967.24, + "probability": 0.9931640625 + }, + { + "word": " Frank.", + "start": 3967.24, + "end": 3967.4, + "probability": 1.0 + } + ] + }, + { + "id": 1616, + "text": "How are you?", + "start": 3967.44, + "end": 3967.8, + "words": [ + { + "word": " How", + "start": 3967.44, + "end": 3967.56, + "probability": 0.99365234375 + }, + { + "word": " are", + "start": 3967.56, + "end": 3967.68, + "probability": 1.0 + }, + { + "word": " you?", + "start": 3967.68, + "end": 3967.8, + "probability": 1.0 + } + ] + }, + { + "id": 1617, + "text": "Hey.", + "start": 3968.54, + "end": 3968.86, + "words": [ + { + "word": " Hey.", + "start": 3968.54, + "end": 3968.86, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1618, + "text": "Good, guys.", + "start": 3968.92, + "end": 3969.4, + "words": [ + { + "word": " Good,", + "start": 3968.92, + "end": 3969.08, + "probability": 0.98193359375 + }, + { + "word": " guys.", + "start": 3969.16, + "end": 3969.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1619, + "text": "Hey.", + "start": 3969.94, + "end": 3970.26, + "words": [ + { + "word": " Hey.", + "start": 3969.94, + "end": 3970.26, + "probability": 0.97412109375 + } + ] + }, + { + "id": 1620, + "text": "I heard you talking about the ...", + "start": 3970.36, + "end": 3971.08, + "words": [ + { + "word": " I", + "start": 3970.36, + "end": 3970.48, + "probability": 0.92529296875 + }, + { + "word": " heard", + "start": 3970.48, + "end": 3970.78, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 3970.78, + "end": 3970.88, + "probability": 0.9853515625 + }, + { + "word": " talking", + "start": 3970.88, + "end": 3971.08, + "probability": 0.73779296875 + }, + { + "word": " about", + "start": 3971.08, + "end": 3971.08, + "probability": 0.5361328125 + }, + { + "word": " the", + "start": 3971.08, + "end": 3971.08, + "probability": 0.194580078125 + }, + { + "word": " ...", + "start": 3971.08, + "end": 3971.08, + "probability": 0.27490234375 + } + ] + }, + { + "id": 1621, + "text": "", + "start": 3971.08, + "end": 3971.08, + "words": [] + }, + { + "id": 1622, + "text": "", + "start": 3971.08, + "end": 3971.08, + "words": [] + }, + { + "id": 1623, + "text": "You were talking earlier about YouTube TV and I'm curious.", + "start": 3971.1, + "end": 3974.06, + "words": [ + { + "word": " You", + "start": 3971.1, + "end": 3971.1, + "probability": 0.3271484375 + }, + { + "word": " were", + "start": 3971.1, + "end": 3971.1, + "probability": 0.92822265625 + }, + { + "word": " talking", + "start": 3971.1, + "end": 3971.1, + "probability": 0.98095703125 + }, + { + "word": " earlier", + "start": 3971.1, + "end": 3971.4, + "probability": 0.9921875 + }, + { + "word": " about", + "start": 3971.4, + "end": 3971.84, + "probability": 0.9990234375 + }, + { + "word": " YouTube", + "start": 3971.84, + "end": 3972.4, + "probability": 0.994140625 + }, + { + "word": " TV", + "start": 3972.4, + "end": 3972.98, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 3972.98, + "end": 3973.34, + "probability": 0.27197265625 + }, + { + "word": " I'm", + "start": 3973.34, + "end": 3973.52, + "probability": 0.986328125 + }, + { + "word": " curious.", + "start": 3973.52, + "end": 3974.06, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1624, + "text": "How does that work?", + "start": 3975.04, + "end": 3976.3, + "words": [ + { + "word": " How", + "start": 3975.04, + "end": 3975.48, + "probability": 0.490966796875 + }, + { + "word": " does", + "start": 3975.48, + "end": 3975.92, + "probability": 0.9736328125 + }, + { + "word": " that", + "start": 3975.92, + "end": 3976.04, + "probability": 0.99755859375 + }, + { + "word": " work?", + "start": 3976.04, + "end": 3976.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1625, + "text": "I have one of those bundled packages with phone, internet, and direct TV and I'm thinking", + "start": 3976.54, + "end": 3984.54, + "words": [ + { + "word": " I", + "start": 3976.54, + "end": 3976.54, + "probability": 0.9765625 + }, + { + "word": " have", + "start": 3976.54, + "end": 3977.42, + "probability": 0.97265625 + }, + { + "word": " one", + "start": 3977.42, + "end": 3977.62, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 3977.62, + "end": 3977.68, + "probability": 0.9990234375 + }, + { + "word": " those", + "start": 3977.68, + "end": 3977.8, + "probability": 0.9951171875 + }, + { + "word": " bundled", + "start": 3977.8, + "end": 3978.18, + "probability": 0.9873046875 + }, + { + "word": " packages", + "start": 3978.18, + "end": 3978.6, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 3978.6, + "end": 3979.04, + "probability": 0.99072265625 + }, + { + "word": " phone,", + "start": 3979.04, + "end": 3980.02, + "probability": 0.99072265625 + }, + { + "word": " internet,", + "start": 3980.08, + "end": 3980.42, + "probability": 0.58544921875 + }, + { + "word": " and", + "start": 3980.76, + "end": 3981.1, + "probability": 0.9921875 + }, + { + "word": " direct", + "start": 3981.1, + "end": 3982.2, + "probability": 0.8837890625 + }, + { + "word": " TV", + "start": 3982.2, + "end": 3982.68, + "probability": 0.99267578125 + }, + { + "word": " and", + "start": 3982.68, + "end": 3983.1, + "probability": 0.58447265625 + }, + { + "word": " I'm", + "start": 3983.1, + "end": 3983.38, + "probability": 0.9765625 + }, + { + "word": " thinking", + "start": 3983.38, + "end": 3984.54, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1626, + "text": "I'd like to get out of it pretty soon and that YouTube thing sounds interesting.", + "start": 3984.54, + "end": 3987.84, + "words": [ + { + "word": " I'd", + "start": 3984.54, + "end": 3984.76, + "probability": 0.9765625 + }, + { + "word": " like", + "start": 3984.76, + "end": 3984.88, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 3984.88, + "end": 3985.0, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 3985.0, + "end": 3985.1, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 3985.1, + "end": 3985.26, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 3985.26, + "end": 3985.36, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 3985.36, + "end": 3985.44, + "probability": 0.9951171875 + }, + { + "word": " pretty", + "start": 3985.44, + "end": 3985.66, + "probability": 0.9951171875 + }, + { + "word": " soon", + "start": 3985.66, + "end": 3985.98, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3985.98, + "end": 3986.2, + "probability": 0.80322265625 + }, + { + "word": " that", + "start": 3986.2, + "end": 3986.3, + "probability": 0.98974609375 + }, + { + "word": " YouTube", + "start": 3986.3, + "end": 3986.96, + "probability": 0.99658203125 + }, + { + "word": " thing", + "start": 3986.96, + "end": 3987.24, + "probability": 0.998046875 + }, + { + "word": " sounds", + "start": 3987.24, + "end": 3987.44, + "probability": 0.99658203125 + }, + { + "word": " interesting.", + "start": 3987.44, + "end": 3987.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1627, + "text": "Yeah.", + "start": 3988.52, + "end": 3988.96, + "words": [ + { + "word": " Yeah.", + "start": 3988.52, + "end": 3988.96, + "probability": 0.71533203125 + } + ] + }, + { + "id": 1628, + "text": "It sounds pretty good.", + "start": 3989.08, + "end": 3990.32, + "words": [ + { + "word": " It", + "start": 3989.08, + "end": 3989.4, + "probability": 0.97900390625 + }, + { + "word": " sounds", + "start": 3989.4, + "end": 3989.82, + "probability": 0.9970703125 + }, + { + "word": " pretty", + "start": 3989.82, + "end": 3990.14, + "probability": 0.9970703125 + }, + { + "word": " good.", + "start": 3990.14, + "end": 3990.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 1629, + "text": "I mean, you have to worry about data caps, of course, depending on your provider.", + "start": 3990.44, + "end": 3993.56, + "words": [ + { + "word": " I", + "start": 3990.44, + "end": 3990.48, + "probability": 0.58642578125 + }, + { + "word": " mean,", + "start": 3990.48, + "end": 3990.48, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3990.54, + "end": 3990.62, + "probability": 0.99609375 + }, + { + "word": " have", + "start": 3990.62, + "end": 3990.68, + "probability": 0.98779296875 + }, + { + "word": " to", + "start": 3990.68, + "end": 3990.72, + "probability": 0.9990234375 + }, + { + "word": " worry", + "start": 3990.72, + "end": 3990.86, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 3990.86, + "end": 3991.16, + "probability": 0.9990234375 + }, + { + "word": " data", + "start": 3991.16, + "end": 3991.74, + "probability": 0.99462890625 + }, + { + "word": " caps,", + "start": 3991.74, + "end": 3992.1, + "probability": 0.990234375 + }, + { + "word": " of", + "start": 3992.2, + "end": 3992.32, + "probability": 0.99609375 + }, + { + "word": " course,", + "start": 3992.32, + "end": 3992.48, + "probability": 1.0 + }, + { + "word": " depending", + "start": 3992.56, + "end": 3992.8, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 3992.8, + "end": 3993.0, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 3993.0, + "end": 3993.14, + "probability": 0.9990234375 + }, + { + "word": " provider.", + "start": 3993.14, + "end": 3993.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1630, + "text": "But $35 a month and being able to watch all kinds of stuff and they allow you to do like", + "start": 3993.96, + "end": 3999.98, + "words": [ + { + "word": " But", + "start": 3993.96, + "end": 3994.4, + "probability": 0.765625 + }, + { + "word": " $35", + "start": 3994.4, + "end": 3996.38, + "probability": 0.6533203125 + }, + { + "word": " a", + "start": 3996.38, + "end": 3996.86, + "probability": 0.97607421875 + }, + { + "word": " month", + "start": 3996.86, + "end": 3997.04, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3997.04, + "end": 3997.3, + "probability": 0.984375 + }, + { + "word": " being", + "start": 3997.3, + "end": 3997.6, + "probability": 0.99755859375 + }, + { + "word": " able", + "start": 3997.6, + "end": 3997.8, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3997.8, + "end": 3997.94, + "probability": 0.99951171875 + }, + { + "word": " watch", + "start": 3997.94, + "end": 3998.1, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 3998.1, + "end": 3998.24, + "probability": 0.99951171875 + }, + { + "word": " kinds", + "start": 3998.24, + "end": 3998.42, + "probability": 0.9814453125 + }, + { + "word": " of", + "start": 3998.42, + "end": 3998.58, + "probability": 0.9970703125 + }, + { + "word": " stuff", + "start": 3998.58, + "end": 3998.76, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3998.76, + "end": 3998.96, + "probability": 0.818359375 + }, + { + "word": " they", + "start": 3998.96, + "end": 3999.14, + "probability": 0.9990234375 + }, + { + "word": " allow", + "start": 3999.14, + "end": 3999.34, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3999.34, + "end": 3999.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3999.5, + "end": 3999.6, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 3999.6, + "end": 3999.76, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 3999.76, + "end": 3999.98, + "probability": 0.4287109375 + } + ] + }, + { + "id": 1631, + "text": "full DVR where you can just watch on demand and you even get the ability to fast forward", + "start": 3999.98, + "end": 4006.22, + "words": [ + { + "word": " full", + "start": 3999.98, + "end": 4000.84, + "probability": 0.76611328125 + }, + { + "word": " DVR", + "start": 4000.84, + "end": 4001.98, + "probability": 0.99072265625 + }, + { + "word": " where", + "start": 4001.98, + "end": 4002.9, + "probability": 0.8447265625 + }, + { + "word": " you", + "start": 4002.9, + "end": 4003.38, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 4003.38, + "end": 4003.48, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4003.48, + "end": 4003.62, + "probability": 0.9970703125 + }, + { + "word": " watch", + "start": 4003.62, + "end": 4003.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 4003.8, + "end": 4003.94, + "probability": 0.98095703125 + }, + { + "word": " demand", + "start": 4003.94, + "end": 4004.18, + "probability": 0.875 + }, + { + "word": " and", + "start": 4004.18, + "end": 4004.52, + "probability": 0.60498046875 + }, + { + "word": " you", + "start": 4004.52, + "end": 4004.64, + "probability": 0.994140625 + }, + { + "word": " even", + "start": 4004.64, + "end": 4004.82, + "probability": 0.8232421875 + }, + { + "word": " get", + "start": 4004.82, + "end": 4005.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 4005.26, + "end": 4005.38, + "probability": 0.99951171875 + }, + { + "word": " ability", + "start": 4005.38, + "end": 4005.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 4005.62, + "end": 4005.76, + "probability": 1.0 + }, + { + "word": " fast", + "start": 4005.76, + "end": 4005.98, + "probability": 0.99755859375 + }, + { + "word": " forward", + "start": 4005.98, + "end": 4006.22, + "probability": 0.95703125 + } + ] + }, + { + "id": 1632, + "text": "which you don't in Sling.", + "start": 4006.22, + "end": 4007.38, + "words": [ + { + "word": " which", + "start": 4006.22, + "end": 4006.46, + "probability": 0.74560546875 + }, + { + "word": " you", + "start": 4006.46, + "end": 4006.56, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4006.56, + "end": 4006.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 4006.92, + "end": 4007.04, + "probability": 0.99658203125 + }, + { + "word": " Sling.", + "start": 4007.04, + "end": 4007.38, + "probability": 0.986328125 + } + ] + }, + { + "id": 1633, + "text": "You'll have to check out their channel list for a full list and I'm sure it'll vary depending", + "start": 4007.62, + "end": 4011.54, + "words": [ + { + "word": " You'll", + "start": 4007.62, + "end": 4008.06, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 4008.06, + "end": 4008.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 4008.16, + "end": 4008.36, + "probability": 1.0 + }, + { + "word": " check", + "start": 4008.36, + "end": 4008.52, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4008.52, + "end": 4008.66, + "probability": 1.0 + }, + { + "word": " their", + "start": 4008.66, + "end": 4008.88, + "probability": 0.99951171875 + }, + { + "word": " channel", + "start": 4008.88, + "end": 4009.5, + "probability": 0.9912109375 + }, + { + "word": " list", + "start": 4009.5, + "end": 4009.8, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 4009.8, + "end": 4010.06, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 4010.06, + "end": 4010.16, + "probability": 0.9990234375 + }, + { + "word": " full", + "start": 4010.16, + "end": 4010.32, + "probability": 0.9990234375 + }, + { + "word": " list", + "start": 4010.32, + "end": 4010.56, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4010.56, + "end": 4010.68, + "probability": 0.921875 + }, + { + "word": " I'm", + "start": 4010.68, + "end": 4010.8, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 4010.8, + "end": 4010.88, + "probability": 0.99951171875 + }, + { + "word": " it'll", + "start": 4010.88, + "end": 4011.06, + "probability": 0.888671875 + }, + { + "word": " vary", + "start": 4011.06, + "end": 4011.24, + "probability": 0.99951171875 + }, + { + "word": " depending", + "start": 4011.24, + "end": 4011.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1634, + "text": "on where you are.", + "start": 4011.54, + "end": 4012.24, + "words": [ + { + "word": " on", + "start": 4011.54, + "end": 4011.78, + "probability": 1.0 + }, + { + "word": " where", + "start": 4011.78, + "end": 4011.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 4011.96, + "end": 4012.06, + "probability": 1.0 + }, + { + "word": " are.", + "start": 4012.06, + "end": 4012.24, + "probability": 1.0 + } + ] + }, + { + "id": 1635, + "text": "", + "start": 4012.6, + "end": 4012.6, + "words": [] + }, + { + "id": 1636, + "text": "Yeah, because we ... I mean, we recently got a smart TV and we tend to watch Netflix through", + "start": 4013.02, + "end": 4019.48, + "words": [ + { + "word": " Yeah,", + "start": 4013.02, + "end": 4013.46, + "probability": 0.353515625 + }, + { + "word": " because", + "start": 4013.58, + "end": 4013.6, + "probability": 0.99072265625 + }, + { + "word": " we", + "start": 4013.6, + "end": 4013.82, + "probability": 0.9951171875 + }, + { + "word": " ...", + "start": 4013.82, + "end": 4013.92, + "probability": 0.0005326271057128906 + }, + { + "word": " I", + "start": 4013.92, + "end": 4014.5, + "probability": 0.9599609375 + }, + { + "word": " mean,", + "start": 4014.5, + "end": 4014.62, + "probability": 0.990234375 + }, + { + "word": " we", + "start": 4014.64, + "end": 4014.76, + "probability": 0.99755859375 + }, + { + "word": " recently", + "start": 4014.76, + "end": 4015.04, + "probability": 0.98095703125 + }, + { + "word": " got", + "start": 4015.04, + "end": 4015.3, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4015.3, + "end": 4015.44, + "probability": 0.99951171875 + }, + { + "word": " smart", + "start": 4015.44, + "end": 4015.64, + "probability": 0.98388671875 + }, + { + "word": " TV", + "start": 4015.64, + "end": 4015.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 4015.96, + "end": 4016.5, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 4016.5, + "end": 4016.66, + "probability": 0.99951171875 + }, + { + "word": " tend", + "start": 4016.66, + "end": 4016.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4016.92, + "end": 4017.08, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4017.08, + "end": 4017.38, + "probability": 0.99951171875 + }, + { + "word": " Netflix", + "start": 4017.38, + "end": 4018.78, + "probability": 0.99951171875 + }, + { + "word": " through", + "start": 4018.78, + "end": 4019.48, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1637, + "text": "the TV more than we do any of the cable channels.", + "start": 4019.48, + "end": 4022.5, + "words": [ + { + "word": " the", + "start": 4019.48, + "end": 4019.64, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4019.64, + "end": 4019.94, + "probability": 1.0 + }, + { + "word": " more", + "start": 4019.94, + "end": 4020.36, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 4020.36, + "end": 4020.66, + "probability": 1.0 + }, + { + "word": " we", + "start": 4020.66, + "end": 4020.88, + "probability": 1.0 + }, + { + "word": " do", + "start": 4020.88, + "end": 4021.14, + "probability": 1.0 + }, + { + "word": " any", + "start": 4021.14, + "end": 4021.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4021.56, + "end": 4021.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4021.72, + "end": 4021.82, + "probability": 1.0 + }, + { + "word": " cable", + "start": 4021.82, + "end": 4022.08, + "probability": 1.0 + }, + { + "word": " channels.", + "start": 4022.08, + "end": 4022.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1638, + "text": "Right, which is normal.", + "start": 4022.78, + "end": 4024.16, + "words": [ + { + "word": " Right,", + "start": 4022.78, + "end": 4023.08, + "probability": 0.97900390625 + }, + { + "word": " which", + "start": 4023.24, + "end": 4023.76, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4023.76, + "end": 4023.88, + "probability": 1.0 + }, + { + "word": " normal.", + "start": 4023.88, + "end": 4024.16, + "probability": 1.0 + } + ] + }, + { + "id": 1639, + "text": "Yeah, which ... So I'm thinking that once I'm able to get out of my ... Whatever the", + "start": 4024.78, + "end": 4029.94, + "words": [ + { + "word": " Yeah,", + "start": 4024.78, + "end": 4025.22, + "probability": 0.99267578125 + }, + { + "word": " which", + "start": 4025.36, + "end": 4025.56, + "probability": 0.66162109375 + }, + { + "word": " ...", + "start": 4025.56, + "end": 4025.76, + "probability": 0.833984375 + }, + { + "word": " So", + "start": 4025.76, + "end": 4026.1, + "probability": 0.71484375 + }, + { + "word": " I'm", + "start": 4026.1, + "end": 4026.26, + "probability": 0.873046875 + }, + { + "word": " thinking", + "start": 4026.26, + "end": 4026.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 4026.52, + "end": 4026.86, + "probability": 1.0 + }, + { + "word": " once", + "start": 4026.86, + "end": 4027.96, + "probability": 0.98193359375 + }, + { + "word": " I'm", + "start": 4027.96, + "end": 4028.28, + "probability": 1.0 + }, + { + "word": " able", + "start": 4028.28, + "end": 4028.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 4028.38, + "end": 4028.5, + "probability": 1.0 + }, + { + "word": " get", + "start": 4028.5, + "end": 4028.64, + "probability": 1.0 + }, + { + "word": " out", + "start": 4028.64, + "end": 4028.78, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4028.78, + "end": 4028.9, + "probability": 1.0 + }, + { + "word": " my", + "start": 4028.9, + "end": 4029.0, + "probability": 0.9580078125 + }, + { + "word": " ...", + "start": 4029.0, + "end": 4029.16, + "probability": 0.619140625 + }, + { + "word": " Whatever", + "start": 4029.16, + "end": 4029.72, + "probability": 0.6552734375 + }, + { + "word": " the", + "start": 4029.72, + "end": 4029.94, + "probability": 0.7646484375 + } + ] + }, + { + "id": 1640, + "text": "cutoff deal is with the cable, I would prefer to get out of that and try something different.", + "start": 4029.94, + "end": 4035.96, + "words": [ + { + "word": " cutoff", + "start": 4029.94, + "end": 4030.24, + "probability": 0.318359375 + }, + { + "word": " deal", + "start": 4030.24, + "end": 4030.5, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4030.5, + "end": 4030.72, + "probability": 0.97705078125 + }, + { + "word": " with", + "start": 4030.72, + "end": 4030.92, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4030.92, + "end": 4031.18, + "probability": 0.99658203125 + }, + { + "word": " cable,", + "start": 4031.18, + "end": 4032.28, + "probability": 0.9765625 + }, + { + "word": " I", + "start": 4032.46, + "end": 4032.7, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 4032.7, + "end": 4032.88, + "probability": 0.9990234375 + }, + { + "word": " prefer", + "start": 4032.88, + "end": 4033.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4033.08, + "end": 4033.26, + "probability": 1.0 + }, + { + "word": " get", + "start": 4033.26, + "end": 4033.38, + "probability": 1.0 + }, + { + "word": " out", + "start": 4033.38, + "end": 4033.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 4033.54, + "end": 4033.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 4033.66, + "end": 4033.84, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4033.84, + "end": 4034.88, + "probability": 0.994140625 + }, + { + "word": " try", + "start": 4034.88, + "end": 4035.3, + "probability": 0.994140625 + }, + { + "word": " something", + "start": 4035.3, + "end": 4035.58, + "probability": 1.0 + }, + { + "word": " different.", + "start": 4035.58, + "end": 4035.96, + "probability": 1.0 + } + ] + }, + { + "id": 1641, + "text": "So just having an internet connection is all you need then to hook into it.", + "start": 4036.24, + "end": 4040.42, + "words": [ + { + "word": " So", + "start": 4036.24, + "end": 4036.36, + "probability": 0.8994140625 + }, + { + "word": " just", + "start": 4036.36, + "end": 4036.96, + "probability": 0.83935546875 + }, + { + "word": " having", + "start": 4036.96, + "end": 4037.28, + "probability": 1.0 + }, + { + "word": " an", + "start": 4037.28, + "end": 4037.48, + "probability": 1.0 + }, + { + "word": " internet", + "start": 4037.48, + "end": 4037.76, + "probability": 0.73974609375 + }, + { + "word": " connection", + "start": 4037.76, + "end": 4038.14, + "probability": 1.0 + }, + { + "word": " is", + "start": 4038.14, + "end": 4038.44, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4038.44, + "end": 4038.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 4038.62, + "end": 4038.74, + "probability": 1.0 + }, + { + "word": " need", + "start": 4038.74, + "end": 4038.96, + "probability": 1.0 + }, + { + "word": " then", + "start": 4038.96, + "end": 4039.14, + "probability": 0.88134765625 + }, + { + "word": " to", + "start": 4039.14, + "end": 4039.4, + "probability": 0.99853515625 + }, + { + "word": " hook", + "start": 4039.4, + "end": 4039.88, + "probability": 0.75048828125 + }, + { + "word": " into", + "start": 4039.88, + "end": 4040.18, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 4040.18, + "end": 4040.42, + "probability": 1.0 + } + ] + }, + { + "id": 1642, + "text": "Yep.", + "start": 4040.56, + "end": 4040.88, + "words": [ + { + "word": " Yep.", + "start": 4040.56, + "end": 4040.88, + "probability": 0.0187530517578125 + } + ] + }, + { + "id": 1643, + "text": "Oh, great.", + "start": 4040.88, + "end": 4041.12, + "words": [ + { + "word": " Oh,", + "start": 4040.88, + "end": 4040.88, + "probability": 0.95458984375 + }, + { + "word": " great.", + "start": 4040.96, + "end": 4041.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1644, + "text": "All right.", + "start": 4041.24, + "end": 4041.56, + "words": [ + { + "word": " All", + "start": 4041.24, + "end": 4041.42, + "probability": 0.923828125 + }, + { + "word": " right.", + "start": 4041.42, + "end": 4041.56, + "probability": 1.0 + } + ] + }, + { + "id": 1645, + "text": "Okay, thanks a lot.", + "start": 4041.72, + "end": 4042.44, + "words": [ + { + "word": " Okay,", + "start": 4041.72, + "end": 4042.08, + "probability": 0.96337890625 + }, + { + "word": " thanks", + "start": 4042.12, + "end": 4042.3, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 4042.3, + "end": 4042.38, + "probability": 0.9970703125 + }, + { + "word": " lot.", + "start": 4042.38, + "end": 4042.44, + "probability": 1.0 + } + ] + }, + { + "id": 1646, + "text": "Well, good luck with that.", + "start": 4042.62, + "end": 4043.68, + "words": [ + { + "word": " Well,", + "start": 4042.62, + "end": 4042.92, + "probability": 0.998046875 + }, + { + "word": " good", + "start": 4042.94, + "end": 4043.08, + "probability": 0.99951171875 + }, + { + "word": " luck", + "start": 4043.08, + "end": 4043.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 4043.32, + "end": 4043.48, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4043.48, + "end": 4043.68, + "probability": 1.0 + } + ] + }, + { + "id": 1647, + "text": "I mean, I'm all down ... I'm totally down for people not being on cable.", + "start": 4043.84, + "end": 4047.76, + "words": [ + { + "word": " I", + "start": 4043.84, + "end": 4043.98, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 4043.98, + "end": 4044.26, + "probability": 0.849609375 + }, + { + "word": " I'm", + "start": 4044.32, + "end": 4044.74, + "probability": 1.0 + }, + { + "word": " all", + "start": 4044.74, + "end": 4044.92, + "probability": 0.91943359375 + }, + { + "word": " down", + "start": 4044.92, + "end": 4045.2, + "probability": 1.0 + }, + { + "word": " ...", + "start": 4045.2, + "end": 4045.36, + "probability": 0.002765655517578125 + }, + { + "word": " I'm", + "start": 4045.36, + "end": 4045.46, + "probability": 0.9970703125 + }, + { + "word": " totally", + "start": 4045.46, + "end": 4045.9, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 4045.9, + "end": 4046.12, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4046.12, + "end": 4046.3, + "probability": 0.998046875 + }, + { + "word": " people", + "start": 4046.3, + "end": 4046.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 4046.5, + "end": 4046.8, + "probability": 0.99951171875 + }, + { + "word": " being", + "start": 4046.8, + "end": 4047.2, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4047.2, + "end": 4047.44, + "probability": 0.99951171875 + }, + { + "word": " cable.", + "start": 4047.44, + "end": 4047.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1648, + "text": "I mean, if this turns out to be good enough, maybe I should have waited a bit.", + "start": 4047.96, + "end": 4050.96, + "words": [ + { + "word": " I", + "start": 4047.96, + "end": 4048.1, + "probability": 0.9931640625 + }, + { + "word": " mean,", + "start": 4048.1, + "end": 4048.22, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 4048.22, + "end": 4048.34, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 4048.34, + "end": 4048.48, + "probability": 0.99951171875 + }, + { + "word": " turns", + "start": 4048.48, + "end": 4048.68, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4048.68, + "end": 4048.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 4048.88, + "end": 4049.3, + "probability": 0.9794921875 + }, + { + "word": " be", + "start": 4049.3, + "end": 4049.68, + "probability": 1.0 + }, + { + "word": " good", + "start": 4049.68, + "end": 4049.84, + "probability": 0.99951171875 + }, + { + "word": " enough,", + "start": 4049.84, + "end": 4049.96, + "probability": 0.99951171875 + }, + { + "word": " maybe", + "start": 4050.02, + "end": 4050.16, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4050.16, + "end": 4050.26, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 4050.26, + "end": 4050.38, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 4050.38, + "end": 4050.46, + "probability": 0.9462890625 + }, + { + "word": " waited", + "start": 4050.46, + "end": 4050.66, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4050.66, + "end": 4050.8, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 4050.8, + "end": 4050.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1649, + "text": "Yeah, well, you can take a look at the list.", + "start": 4051.48, + "end": 4053.38, + "words": [ + { + "word": " Yeah,", + "start": 4051.48, + "end": 4051.84, + "probability": 0.9951171875 + }, + { + "word": " well,", + "start": 4051.84, + "end": 4051.98, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4052.1, + "end": 4052.26, + "probability": 0.98681640625 + }, + { + "word": " can", + "start": 4052.26, + "end": 4052.6, + "probability": 0.82763671875 + }, + { + "word": " take", + "start": 4052.6, + "end": 4052.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4052.84, + "end": 4052.92, + "probability": 1.0 + }, + { + "word": " look", + "start": 4052.92, + "end": 4053.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 4053.02, + "end": 4053.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4053.1, + "end": 4053.14, + "probability": 0.99951171875 + }, + { + "word": " list.", + "start": 4053.14, + "end": 4053.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1650, + "text": "I can also cancel anytime.", + "start": 4053.46, + "end": 4054.24, + "words": [ + { + "word": " I", + "start": 4053.46, + "end": 4053.54, + "probability": 0.92919921875 + }, + { + "word": " can", + "start": 4053.54, + "end": 4053.54, + "probability": 0.98486328125 + }, + { + "word": " also", + "start": 4053.54, + "end": 4053.64, + "probability": 0.97021484375 + }, + { + "word": " cancel", + "start": 4053.64, + "end": 4053.9, + "probability": 0.99951171875 + }, + { + "word": " anytime.", + "start": 4053.9, + "end": 4054.24, + "probability": 0.1800537109375 + } + ] + }, + { + "id": 1651, + "text": "I made sure of that.", + "start": 4054.38, + "end": 4055.0, + "words": [ + { + "word": " I", + "start": 4054.38, + "end": 4054.52, + "probability": 0.99951171875 + }, + { + "word": " made", + "start": 4054.52, + "end": 4054.6, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 4054.6, + "end": 4054.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 4054.78, + "end": 4054.88, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 4054.88, + "end": 4055.0, + "probability": 1.0 + } + ] + }, + { + "id": 1652, + "text": "Yeah, no contract for you, man.", + "start": 4055.18, + "end": 4056.42, + "words": [ + { + "word": " Yeah,", + "start": 4055.18, + "end": 4055.36, + "probability": 0.9970703125 + }, + { + "word": " no", + "start": 4055.38, + "end": 4055.52, + "probability": 0.998046875 + }, + { + "word": " contract", + "start": 4055.52, + "end": 4055.8, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4055.8, + "end": 4056.02, + "probability": 0.99951171875 + }, + { + "word": " you,", + "start": 4056.02, + "end": 4056.16, + "probability": 1.0 + }, + { + "word": " man.", + "start": 4056.26, + "end": 4056.42, + "probability": 1.0 + } + ] + }, + { + "id": 1653, + "text": "Correct.", + "start": 4056.56, + "end": 4056.82, + "words": [ + { + "word": " Correct.", + "start": 4056.56, + "end": 4056.82, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1654, + "text": "That's not how we roll around.", + "start": 4056.94, + "end": 4058.3, + "words": [ + { + "word": " That's", + "start": 4056.94, + "end": 4057.3, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 4057.3, + "end": 4057.62, + "probability": 0.99560546875 + }, + { + "word": " how", + "start": 4057.62, + "end": 4057.78, + "probability": 1.0 + }, + { + "word": " we", + "start": 4057.78, + "end": 4057.94, + "probability": 1.0 + }, + { + "word": " roll", + "start": 4057.94, + "end": 4058.12, + "probability": 0.99951171875 + }, + { + "word": " around.", + "start": 4058.12, + "end": 4058.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1655, + "text": "We don't do contracts.", + "start": 4058.4, + "end": 4059.1, + "words": [ + { + "word": " We", + "start": 4058.4, + "end": 4058.5, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 4058.5, + "end": 4058.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 4058.64, + "end": 4058.72, + "probability": 0.99951171875 + }, + { + "word": " contracts.", + "start": 4058.72, + "end": 4059.1, + "probability": 1.0 + } + ] + }, + { + "id": 1656, + "text": "All right, stick around for more of the Computer Guru Show coming up right after these messages.", + "start": 4059.8399999999997, + "end": 4063.62, + "words": [ + { + "word": " All", + "start": 4059.8399999999997, + "end": 4060.18, + "probability": 0.74462890625 + }, + { + "word": " right,", + "start": 4060.18, + "end": 4060.52, + "probability": 1.0 + }, + { + "word": " stick", + "start": 4060.56, + "end": 4060.72, + "probability": 1.0 + }, + { + "word": " around", + "start": 4060.72, + "end": 4060.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 4060.9, + "end": 4061.04, + "probability": 1.0 + }, + { + "word": " more", + "start": 4061.04, + "end": 4061.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 4061.16, + "end": 4061.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4061.28, + "end": 4061.28, + "probability": 0.86669921875 + }, + { + "word": " Computer", + "start": 4061.28, + "end": 4061.48, + "probability": 0.98828125 + }, + { + "word": " Guru", + "start": 4061.48, + "end": 4061.7, + "probability": 0.9921875 + }, + { + "word": " Show", + "start": 4061.7, + "end": 4061.96, + "probability": 0.94091796875 + }, + { + "word": " coming", + "start": 4061.96, + "end": 4062.52, + "probability": 0.939453125 + }, + { + "word": " up", + "start": 4062.52, + "end": 4062.66, + "probability": 1.0 + }, + { + "word": " right", + "start": 4062.66, + "end": 4062.82, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 4062.82, + "end": 4063.04, + "probability": 1.0 + }, + { + "word": " these", + "start": 4063.04, + "end": 4063.18, + "probability": 1.0 + }, + { + "word": " messages.", + "start": 4063.18, + "end": 4063.62, + "probability": 1.0 + } + ] + }, + { + "id": 1657, + "text": "790-2040 if you want to get in line to have a conversation with us.", + "start": 4064.4999999999995, + "end": 4067.18, + "words": [ + { + "word": " 790", + "start": 4064.4999999999995, + "end": 4064.8399999999997, + "probability": 0.99365234375 + }, + { + "word": "-2040", + "start": 4064.8399999999997, + "end": 4065.18, + "probability": 0.935546875 + }, + { + "word": " if", + "start": 4065.18, + "end": 4065.34, + "probability": 0.92724609375 + }, + { + "word": " you", + "start": 4065.34, + "end": 4065.38, + "probability": 1.0 + }, + { + "word": " want", + "start": 4065.38, + "end": 4065.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4065.5, + "end": 4065.54, + "probability": 1.0 + }, + { + "word": " get", + "start": 4065.54, + "end": 4065.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 4065.68, + "end": 4065.74, + "probability": 1.0 + }, + { + "word": " line", + "start": 4065.74, + "end": 4065.94, + "probability": 0.859375 + }, + { + "word": " to", + "start": 4065.94, + "end": 4066.08, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4066.08, + "end": 4066.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 4066.2, + "end": 4066.28, + "probability": 1.0 + }, + { + "word": " conversation", + "start": 4066.28, + "end": 4066.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 4066.66, + "end": 4066.98, + "probability": 1.0 + }, + { + "word": " us.", + "start": 4066.98, + "end": 4067.18, + "probability": 1.0 + } + ] + }, + { + "id": 1658, + "text": "We'll be right back.", + "start": 4067.24, + "end": 4067.88, + "words": [ + { + "word": " We'll", + "start": 4067.24, + "end": 4067.48, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 4067.48, + "end": 4067.54, + "probability": 1.0 + }, + { + "word": " right", + "start": 4067.54, + "end": 4067.66, + "probability": 1.0 + }, + { + "word": " back.", + "start": 4067.66, + "end": 4067.88, + "probability": 1.0 + } + ] + }, + { + "id": 1659, + "text": ".", + "start": 4071.54, + "end": 4071.88, + "words": [ + { + "word": " .", + "start": 4071.54, + "end": 4071.88, + "probability": 0.00380706787109375 + } + ] + }, + { + "id": 1660, + "text": ".", + "start": 4083.2, + "end": 4083.54, + "words": [ + { + "word": " .", + "start": 4083.2, + "end": 4083.54, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1661, + "text": "", + "start": 4083.54, + "end": 4083.54, + "words": [] + }, + { + "id": 1662, + "text": ".", + "start": 4083.54, + "end": 4083.64, + "words": [ + { + "word": " .", + "start": 4083.54, + "end": 4083.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1663, + "text": ".", + "start": 4083.64, + "end": 4083.92, + "words": [ + { + "word": " .", + "start": 4083.64, + "end": 4083.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1664, + "text": ".", + "start": 4083.92, + "end": 4083.94, + "words": [ + { + "word": " .", + "start": 4083.92, + "end": 4083.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1665, + "text": "", + "start": 4083.94, + "end": 4083.94, + "words": [] + }, + { + "id": 1666, + "text": "", + "start": 4083.94, + "end": 4083.94, + "words": [] + }, + { + "id": 1667, + "text": ".", + "start": 4084.3399999999997, + "end": 4084.68, + "words": [ + { + "word": " .", + "start": 4084.3399999999997, + "end": 4084.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1668, + "text": ".", + "start": 4084.68, + "end": 4084.78, + "words": [ + { + "word": " .", + "start": 4084.68, + "end": 4084.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1669, + "text": "", + "start": 4084.78, + "end": 4084.78, + "words": [] + }, + { + "id": 1670, + "text": "", + "start": 4084.78, + "end": 4084.78, + "words": [] + }, + { + "id": 1671, + "text": ".", + "start": 4084.78, + "end": 4085.32, + "words": [ + { + "word": " .", + "start": 4084.78, + "end": 4085.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1672, + "text": ".", + "start": 4085.32, + "end": 4085.38, + "words": [ + { + "word": " .", + "start": 4085.32, + "end": 4085.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1673, + "text": ".", + "start": 4095.2400000000002, + "end": 4095.28, + "words": [ + { + "word": " .", + "start": 4095.2400000000002, + "end": 4095.28, + "probability": 0.005619049072265625 + } + ] + }, + { + "id": 1674, + "text": ".", + "start": 4097.24, + "end": 4097.28, + "words": [ + { + "word": " .", + "start": 4097.24, + "end": 4097.28, + "probability": 0.9375 + } + ] + }, + { + "id": 1675, + "text": ".", + "start": 4097.52, + "end": 4097.56, + "words": [ + { + "word": " .", + "start": 4097.52, + "end": 4097.56, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1676, + "text": ".", + "start": 4097.9, + "end": 4097.94, + "words": [ + { + "word": " .", + "start": 4097.9, + "end": 4097.94, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1677, + "text": ".", + "start": 4098.96, + "end": 4099.0, + "words": [ + { + "word": " .", + "start": 4098.96, + "end": 4099.0, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1678, + "text": "", + "start": 4099.0, + "end": 4099.0, + "words": [] + }, + { + "id": 1679, + "text": ".", + "start": 4099.6, + "end": 4099.64, + "words": [ + { + "word": " .", + "start": 4099.6, + "end": 4099.64, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1680, + "text": ".", + "start": 4099.64, + "end": 4099.66, + "words": [ + { + "word": " .", + "start": 4099.64, + "end": 4099.66, + "probability": 0.99609375 + } + ] + }, + { + "id": 1681, + "text": ".", + "start": 4099.66, + "end": 4099.7, + "words": [ + { + "word": " .", + "start": 4099.66, + "end": 4099.7, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1682, + "text": ".", + "start": 4099.76, + "end": 4099.8, + "words": [ + { + "word": " .", + "start": 4099.76, + "end": 4099.8, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1683, + "text": ".", + "start": 4100.84, + "end": 4100.88, + "words": [ + { + "word": " .", + "start": 4100.84, + "end": 4100.88, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1684, + "text": ".", + "start": 4100.88, + "end": 4100.9, + "words": [ + { + "word": " .", + "start": 4100.88, + "end": 4100.9, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1685, + "text": ".", + "start": 4104.58, + "end": 4104.62, + "words": [ + { + "word": " .", + "start": 4104.58, + "end": 4104.62, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1686, + "text": "", + "start": 4104.62, + "end": 4104.62, + "words": [] + }, + { + "id": 1687, + "text": "", + "start": 4104.62, + "end": 4104.62, + "words": [] + }, + { + "id": 1688, + "text": "", + "start": 4104.62, + "end": 4104.62, + "words": [] + }, + { + "id": 1689, + "text": ".", + "start": 4104.62, + "end": 4104.66, + "words": [ + { + "word": " .", + "start": 4104.62, + "end": 4104.66, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1690, + "text": "", + "start": 4104.66, + "end": 4104.66, + "words": [] + }, + { + "id": 1691, + "text": "", + "start": 4104.66, + "end": 4104.66, + "words": [] + }, + { + "id": 1692, + "text": "", + "start": 4104.66, + "end": 4104.66, + "words": [] + }, + { + "id": 1693, + "text": ".", + "start": 4104.66, + "end": 4104.68, + "words": [ + { + "word": " .", + "start": 4104.66, + "end": 4104.68, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1694, + "text": "", + "start": 4104.68, + "end": 4104.68, + "words": [] + }, + { + "id": 1695, + "text": ".", + "start": 4104.68, + "end": 4104.7, + "words": [ + { + "word": " .", + "start": 4104.68, + "end": 4104.7, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1696, + "text": ".", + "start": 4104.7, + "end": 4104.72, + "words": [ + { + "word": " .", + "start": 4104.7, + "end": 4104.72, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1697, + "text": ".", + "start": 4104.72, + "end": 4104.74, + "words": [ + { + "word": " .", + "start": 4104.72, + "end": 4104.74, + "probability": 0.9921875 + } + ] + }, + { + "id": 1698, + "text": ".", + "start": 4104.74, + "end": 4104.76, + "words": [ + { + "word": " .", + "start": 4104.74, + "end": 4104.76, + "probability": 0.9921875 + } + ] + }, + { + "id": 1699, + "text": ".", + "start": 4104.76, + "end": 4104.78, + "words": [ + { + "word": " .", + "start": 4104.76, + "end": 4104.78, + "probability": 0.9921875 + } + ] + }, + { + "id": 1700, + "text": ".", + "start": 4104.78, + "end": 4104.8, + "words": [ + { + "word": " .", + "start": 4104.78, + "end": 4104.8, + "probability": 0.9921875 + } + ] + }, + { + "id": 1701, + "text": ".", + "start": 4104.8, + "end": 4104.82, + "words": [ + { + "word": " .", + "start": 4104.8, + "end": 4104.82, + "probability": 0.9921875 + } + ] + }, + { + "id": 1702, + "text": ".", + "start": 4104.82, + "end": 4104.84, + "words": [ + { + "word": " .", + "start": 4104.82, + "end": 4104.84, + "probability": 0.9921875 + } + ] + }, + { + "id": 1703, + "text": ".", + "start": 4104.84, + "end": 4104.86, + "words": [ + { + "word": " .", + "start": 4104.84, + "end": 4104.86, + "probability": 0.9921875 + } + ] + }, + { + "id": 1704, + "text": ".", + "start": 4104.86, + "end": 4104.88, + "words": [ + { + "word": " .", + "start": 4104.86, + "end": 4104.88, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1705, + "text": ".", + "start": 4104.88, + "end": 4104.9, + "words": [ + { + "word": " .", + "start": 4104.88, + "end": 4104.9, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1706, + "text": ".", + "start": 4104.9, + "end": 4104.92, + "words": [ + { + "word": " .", + "start": 4104.9, + "end": 4104.92, + "probability": 0.9921875 + } + ] + }, + { + "id": 1707, + "text": ".", + "start": 4104.92, + "end": 4104.94, + "words": [ + { + "word": " .", + "start": 4104.92, + "end": 4104.94, + "probability": 0.9921875 + } + ] + }, + { + "id": 1708, + "text": ".", + "start": 4104.94, + "end": 4104.96, + "words": [ + { + "word": " .", + "start": 4104.94, + "end": 4104.96, + "probability": 0.9921875 + } + ] + }, + { + "id": 1709, + "text": ".", + "start": 4104.96, + "end": 4104.98, + "words": [ + { + "word": " .", + "start": 4104.96, + "end": 4104.98, + "probability": 0.9921875 + } + ] + }, + { + "id": 1710, + "text": ".", + "start": 4104.98, + "end": 4105.0, + "words": [ + { + "word": " .", + "start": 4104.98, + "end": 4105.0, + "probability": 0.9921875 + } + ] + }, + { + "id": 1711, + "text": ".", + "start": 4105.0, + "end": 4105.02, + "words": [ + { + "word": " .", + "start": 4105.0, + "end": 4105.02, + "probability": 0.9921875 + } + ] + }, + { + "id": 1712, + "text": ".", + "start": 4105.02, + "end": 4105.04, + "words": [ + { + "word": " .", + "start": 4105.02, + "end": 4105.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 1713, + "text": ".", + "start": 4105.04, + "end": 4105.06, + "words": [ + { + "word": " .", + "start": 4105.04, + "end": 4105.06, + "probability": 0.9921875 + } + ] + }, + { + "id": 1714, + "text": ".", + "start": 4105.06, + "end": 4105.08, + "words": [ + { + "word": " .", + "start": 4105.06, + "end": 4105.08, + "probability": 0.9921875 + } + ] + }, + { + "id": 1715, + "text": ".", + "start": 4105.08, + "end": 4105.1, + "words": [ + { + "word": " .", + "start": 4105.08, + "end": 4105.1, + "probability": 0.9921875 + } + ] + }, + { + "id": 1716, + "text": ".", + "start": 4105.46, + "end": 4105.5, + "words": [ + { + "word": " .", + "start": 4105.46, + "end": 4105.5, + "probability": 0.9921875 + } + ] + }, + { + "id": 1717, + "text": ".", + "start": 4105.56, + "end": 4105.6, + "words": [ + { + "word": " .", + "start": 4105.56, + "end": 4105.6, + "probability": 0.9921875 + } + ] + }, + { + "id": 1718, + "text": "", + "start": 4105.6, + "end": 4105.6, + "words": [] + }, + { + "id": 1719, + "text": "", + "start": 4105.6, + "end": 4105.6, + "words": [] + }, + { + "id": 1720, + "text": "", + "start": 4105.6, + "end": 4105.6, + "words": [] + }, + { + "id": 1721, + "text": ".", + "start": 4106.0, + "end": 4106.04, + "words": [ + { + "word": " .", + "start": 4106.0, + "end": 4106.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 1722, + "text": ".", + "start": 4106.04, + "end": 4106.08, + "words": [ + { + "word": " .", + "start": 4106.04, + "end": 4106.08, + "probability": 0.9921875 + } + ] + }, + { + "id": 1723, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1724, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1725, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1726, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1727, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1728, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1729, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1730, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1731, + "text": "", + "start": 4106.08, + "end": 4106.08, + "words": [] + }, + { + "id": 1732, + "text": ".", + "start": 4106.16, + "end": 4106.2, + "words": [ + { + "word": " .", + "start": 4106.16, + "end": 4106.2, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1733, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1734, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1735, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1736, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1737, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1738, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1739, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1740, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1741, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1742, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1743, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1744, + "text": "", + "start": 4106.2, + "end": 4106.2, + "words": [] + }, + { + "id": 1745, + "text": ".", + "start": 4106.2, + "end": 4106.22, + "words": [ + { + "word": " .", + "start": 4106.2, + "end": 4106.22, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1746, + "text": ".", + "start": 4107.9800000000005, + "end": 4108.02, + "words": [ + { + "word": " .", + "start": 4107.9800000000005, + "end": 4108.02, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1747, + "text": "Guru Show on AM 1030, KVOY The Voice.", + "start": 4115.38, + "end": 4118.52, + "words": [ + { + "word": " Guru", + "start": 4115.38, + "end": 4115.42, + "probability": 0.214599609375 + }, + { + "word": " Show", + "start": 4115.42, + "end": 4115.64, + "probability": 0.927734375 + }, + { + "word": " on", + "start": 4115.64, + "end": 4116.08, + "probability": 0.990234375 + }, + { + "word": " AM", + "start": 4116.08, + "end": 4116.38, + "probability": 0.99853515625 + }, + { + "word": " 1030,", + "start": 4116.38, + "end": 4117.0, + "probability": 0.8291015625 + }, + { + "word": " KVOY", + "start": 4117.2, + "end": 4117.9, + "probability": 0.767578125 + }, + { + "word": " The", + "start": 4117.9, + "end": 4118.26, + "probability": 0.513671875 + }, + { + "word": " Voice.", + "start": 4118.26, + "end": 4118.52, + "probability": 1.0 + } + ] + }, + { + "id": 1748, + "text": "Welcome back to the Computer Guru Show.", + "start": 4132.880000000001, + "end": 4134.6, + "words": [ + { + "word": " Welcome", + "start": 4132.880000000001, + "end": 4133.280000000001, + "probability": 0.970703125 + }, + { + "word": " back", + "start": 4133.280000000001, + "end": 4133.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 4133.68, + "end": 4133.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 4133.88, + "end": 4134.0, + "probability": 0.84765625 + }, + { + "word": " Computer", + "start": 4134.0, + "end": 4134.22, + "probability": 0.994140625 + }, + { + "word": " Guru", + "start": 4134.22, + "end": 4134.4, + "probability": 0.98828125 + }, + { + "word": " Show.", + "start": 4134.4, + "end": 4134.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1749, + "text": "My name is Mike.", + "start": 4134.68, + "end": 4135.16, + "words": [ + { + "word": " My", + "start": 4134.68, + "end": 4134.8, + "probability": 0.99853515625 + }, + { + "word": " name", + "start": 4134.8, + "end": 4134.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 4134.92, + "end": 4135.0, + "probability": 0.9619140625 + }, + { + "word": " Mike.", + "start": 4135.0, + "end": 4135.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1750, + "text": "Here to deal with your technology needs and treat you like a person in the process.", + "start": 4135.18, + "end": 4137.94, + "words": [ + { + "word": " Here", + "start": 4135.18, + "end": 4135.36, + "probability": 0.95361328125 + }, + { + "word": " to", + "start": 4135.36, + "end": 4135.46, + "probability": 0.99951171875 + }, + { + "word": " deal", + "start": 4135.46, + "end": 4135.58, + "probability": 0.744140625 + }, + { + "word": " with", + "start": 4135.58, + "end": 4135.64, + "probability": 1.0 + }, + { + "word": " your", + "start": 4135.64, + "end": 4135.74, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 4135.74, + "end": 4136.0, + "probability": 1.0 + }, + { + "word": " needs", + "start": 4136.0, + "end": 4136.34, + "probability": 0.994140625 + }, + { + "word": " and", + "start": 4136.34, + "end": 4136.64, + "probability": 0.998046875 + }, + { + "word": " treat", + "start": 4136.64, + "end": 4136.92, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4136.92, + "end": 4137.08, + "probability": 1.0 + }, + { + "word": " like", + "start": 4137.08, + "end": 4137.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 4137.18, + "end": 4137.3, + "probability": 1.0 + }, + { + "word": " person", + "start": 4137.3, + "end": 4137.54, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4137.54, + "end": 4137.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4137.66, + "end": 4137.72, + "probability": 1.0 + }, + { + "word": " process.", + "start": 4137.72, + "end": 4137.94, + "probability": 1.0 + } + ] + }, + { + "id": 1751, + "text": "That's 790-2040.", + "start": 4138.04, + "end": 4139.36, + "words": [ + { + "word": " That's", + "start": 4138.04, + "end": 4138.2, + "probability": 0.5302734375 + }, + { + "word": " 790", + "start": 4138.2, + "end": 4138.58, + "probability": 0.84375 + }, + { + "word": "-2040.", + "start": 4138.58, + "end": 4139.36, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1752, + "text": "That's 520-790-24.", + "start": 4139.44, + "end": 4141.08, + "words": [ + { + "word": " That's", + "start": 4139.44, + "end": 4139.62, + "probability": 0.9990234375 + }, + { + "word": " 520", + "start": 4139.62, + "end": 4140.04, + "probability": 0.998046875 + }, + { + "word": "-790", + "start": 4140.04, + "end": 4140.72, + "probability": 1.0 + }, + { + "word": "-24.", + "start": 4140.72, + "end": 4141.08, + "probability": 0.8564453125 + } + ] + }, + { + "id": 1753, + "text": "Wait, 2040?", + "start": 4141.780000000001, + "end": 4142.58, + "words": [ + { + "word": " Wait,", + "start": 4141.780000000001, + "end": 4142.18, + "probability": 0.796875 + }, + { + "word": " 2040?", + "start": 4142.18, + "end": 4142.58, + "probability": 0.998046875 + } + ] + }, + { + "id": 1754, + "text": "2040, or join us in the chat, gurushow.com slash chat.", + "start": 4142.58, + "end": 4146.28, + "words": [ + { + "word": " 2040,", + "start": 4142.58, + "end": 4142.66, + "probability": 0.1937255859375 + }, + { + "word": " or", + "start": 4142.66, + "end": 4143.08, + "probability": 0.98486328125 + }, + { + "word": " join", + "start": 4143.08, + "end": 4144.48, + "probability": 0.93603515625 + }, + { + "word": " us", + "start": 4144.48, + "end": 4144.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 4144.62, + "end": 4144.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4144.72, + "end": 4144.78, + "probability": 0.97705078125 + }, + { + "word": " chat,", + "start": 4144.78, + "end": 4144.9, + "probability": 0.99951171875 + }, + { + "word": " gurushow", + "start": 4145.02, + "end": 4145.42, + "probability": 0.7744140625 + }, + { + "word": ".com", + "start": 4145.42, + "end": 4145.86, + "probability": 1.0 + }, + { + "word": " slash", + "start": 4145.86, + "end": 4146.04, + "probability": 0.8974609375 + }, + { + "word": " chat.", + "start": 4146.04, + "end": 4146.28, + "probability": 1.0 + } + ] + }, + { + "id": 1755, + "text": "You can ask your question there, and we'll answer it on air.", + "start": 4146.34, + "end": 4148.3, + "words": [ + { + "word": " You", + "start": 4146.34, + "end": 4146.42, + "probability": 1.0 + }, + { + "word": " can", + "start": 4146.42, + "end": 4146.46, + "probability": 1.0 + }, + { + "word": " ask", + "start": 4146.46, + "end": 4146.6, + "probability": 0.99462890625 + }, + { + "word": " your", + "start": 4146.6, + "end": 4146.7, + "probability": 0.99853515625 + }, + { + "word": " question", + "start": 4146.7, + "end": 4146.96, + "probability": 1.0 + }, + { + "word": " there,", + "start": 4146.96, + "end": 4147.1, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4147.22, + "end": 4147.42, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 4147.42, + "end": 4147.58, + "probability": 1.0 + }, + { + "word": " answer", + "start": 4147.58, + "end": 4147.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 4147.96, + "end": 4148.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 4148.04, + "end": 4148.16, + "probability": 1.0 + }, + { + "word": " air.", + "start": 4148.16, + "end": 4148.3, + "probability": 0.994140625 + } + ] + }, + { + "id": 1756, + "text": "A lot of times, also, if we don't answer the questions on air, Howard's in there as well,", + "start": 4148.42, + "end": 4151.82, + "words": [ + { + "word": " A", + "start": 4148.42, + "end": 4148.5, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 4148.5, + "end": 4148.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 4148.58, + "end": 4148.64, + "probability": 1.0 + }, + { + "word": " times,", + "start": 4148.64, + "end": 4148.86, + "probability": 1.0 + }, + { + "word": " also,", + "start": 4148.86, + "end": 4149.08, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 4149.14, + "end": 4149.42, + "probability": 1.0 + }, + { + "word": " we", + "start": 4149.42, + "end": 4149.6, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4149.6, + "end": 4149.84, + "probability": 1.0 + }, + { + "word": " answer", + "start": 4149.84, + "end": 4150.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4150.06, + "end": 4150.18, + "probability": 1.0 + }, + { + "word": " questions", + "start": 4150.18, + "end": 4150.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 4150.42, + "end": 4150.66, + "probability": 1.0 + }, + { + "word": " air,", + "start": 4150.66, + "end": 4150.9, + "probability": 1.0 + }, + { + "word": " Howard's", + "start": 4151.02, + "end": 4151.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 4151.36, + "end": 4151.38, + "probability": 1.0 + }, + { + "word": " there", + "start": 4151.38, + "end": 4151.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 4151.5, + "end": 4151.6, + "probability": 0.97607421875 + }, + { + "word": " well,", + "start": 4151.6, + "end": 4151.82, + "probability": 1.0 + } + ] + }, + { + "id": 1757, + "text": "and he's helping people out, too.", + "start": 4151.92, + "end": 4153.44, + "words": [ + { + "word": " and", + "start": 4151.92, + "end": 4152.12, + "probability": 1.0 + }, + { + "word": " he's", + "start": 4152.12, + "end": 4152.44, + "probability": 1.0 + }, + { + "word": " helping", + "start": 4152.44, + "end": 4152.88, + "probability": 1.0 + }, + { + "word": " people", + "start": 4152.88, + "end": 4153.16, + "probability": 1.0 + }, + { + "word": " out,", + "start": 4153.16, + "end": 4153.32, + "probability": 1.0 + }, + { + "word": " too.", + "start": 4153.38, + "end": 4153.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1758, + "text": "I think John's in there, too, right?", + "start": 4153.5, + "end": 4154.38, + "words": [ + { + "word": " I", + "start": 4153.5, + "end": 4153.54, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 4153.54, + "end": 4153.64, + "probability": 1.0 + }, + { + "word": " John's", + "start": 4153.64, + "end": 4153.9, + "probability": 0.99169921875 + }, + { + "word": " in", + "start": 4153.9, + "end": 4153.98, + "probability": 1.0 + }, + { + "word": " there,", + "start": 4153.98, + "end": 4154.1, + "probability": 1.0 + }, + { + "word": " too,", + "start": 4154.14, + "end": 4154.24, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4154.26, + "end": 4154.38, + "probability": 1.0 + } + ] + }, + { + "id": 1759, + "text": "Yeah.", + "start": 4154.54, + "end": 4154.74, + "words": [ + { + "word": " Yeah.", + "start": 4154.54, + "end": 4154.74, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1760, + "text": "You've got mostly the whole crew in there, answering questions away.", + "start": 4154.82, + "end": 4158.42, + "words": [ + { + "word": " You've", + "start": 4154.82, + "end": 4155.12, + "probability": 0.5361328125 + }, + { + "word": " got", + "start": 4155.12, + "end": 4155.22, + "probability": 1.0 + }, + { + "word": " mostly", + "start": 4155.22, + "end": 4155.82, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4155.82, + "end": 4156.04, + "probability": 1.0 + }, + { + "word": " whole", + "start": 4156.04, + "end": 4156.18, + "probability": 1.0 + }, + { + "word": " crew", + "start": 4156.18, + "end": 4156.44, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4156.44, + "end": 4156.6, + "probability": 1.0 + }, + { + "word": " there,", + "start": 4156.6, + "end": 4156.76, + "probability": 1.0 + }, + { + "word": " answering", + "start": 4156.88, + "end": 4157.58, + "probability": 0.73095703125 + }, + { + "word": " questions", + "start": 4157.58, + "end": 4158.0, + "probability": 1.0 + }, + { + "word": " away.", + "start": 4158.0, + "end": 4158.42, + "probability": 1.0 + } + ] + }, + { + "id": 1761, + "text": "I try to get everybody to agree to the uniform guru underscore name, but only me did that.", + "start": 4158.860000000001, + "end": 4165.08, + "words": [ + { + "word": " I", + "start": 4158.860000000001, + "end": 4159.22, + "probability": 0.9990234375 + }, + { + "word": " try", + "start": 4159.22, + "end": 4159.34, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4159.34, + "end": 4159.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 4159.44, + "end": 4159.54, + "probability": 1.0 + }, + { + "word": " everybody", + "start": 4159.54, + "end": 4159.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4159.76, + "end": 4159.96, + "probability": 1.0 + }, + { + "word": " agree", + "start": 4159.96, + "end": 4160.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 4160.18, + "end": 4160.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 4160.38, + "end": 4160.6, + "probability": 0.7587890625 + }, + { + "word": " uniform", + "start": 4160.6, + "end": 4161.04, + "probability": 0.93505859375 + }, + { + "word": " guru", + "start": 4161.04, + "end": 4161.54, + "probability": 0.95654296875 + }, + { + "word": " underscore", + "start": 4161.54, + "end": 4162.06, + "probability": 0.99951171875 + }, + { + "word": " name,", + "start": 4162.06, + "end": 4162.78, + "probability": 1.0 + }, + { + "word": " but", + "start": 4162.98, + "end": 4163.44, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 4163.44, + "end": 4163.76, + "probability": 0.7412109375 + }, + { + "word": " me", + "start": 4163.76, + "end": 4164.74, + "probability": 1.0 + }, + { + "word": " did", + "start": 4164.74, + "end": 4164.9, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4164.9, + "end": 4165.08, + "probability": 1.0 + } + ] + }, + { + "id": 1762, + "text": "Right.", + "start": 4165.860000000001, + "end": 4166.22, + "words": [ + { + "word": " Right.", + "start": 4165.860000000001, + "end": 4166.22, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1763, + "text": "I never did.", + "start": 4166.32, + "end": 4167.28, + "words": [ + { + "word": " I", + "start": 4166.32, + "end": 4166.68, + "probability": 0.96875 + }, + { + "word": " never", + "start": 4166.68, + "end": 4167.08, + "probability": 1.0 + }, + { + "word": " did.", + "start": 4167.08, + "end": 4167.28, + "probability": 1.0 + } + ] + }, + { + "id": 1764, + "text": "Yeah.", + "start": 4167.700000000001, + "end": 4168.06, + "words": [ + { + "word": " Yeah.", + "start": 4167.700000000001, + "end": 4168.06, + "probability": 0.96142578125 + } + ] + }, + { + "id": 1765, + "text": "I am the guru.", + "start": 4168.32, + "end": 4169.46, + "words": [ + { + "word": " I", + "start": 4168.32, + "end": 4168.68, + "probability": 0.89013671875 + }, + { + "word": " am", + "start": 4168.68, + "end": 4169.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 4169.2, + "end": 4169.3, + "probability": 1.0 + }, + { + "word": " guru.", + "start": 4169.3, + "end": 4169.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1766, + "text": "Is that what I am?", + "start": 4169.72, + "end": 4171.0, + "words": [ + { + "word": " Is", + "start": 4169.72, + "end": 4169.98, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4169.98, + "end": 4170.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 4170.5, + "end": 4170.7, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 4170.7, + "end": 4170.86, + "probability": 1.0 + }, + { + "word": " am?", + "start": 4170.86, + "end": 4171.0, + "probability": 1.0 + } + ] + }, + { + "id": 1767, + "text": "It's just the computer guru.", + "start": 4171.0, + "end": 4172.14, + "words": [ + { + "word": " It's", + "start": 4171.0, + "end": 4171.22, + "probability": 0.9970703125 + }, + { + "word": " just", + "start": 4171.22, + "end": 4171.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4171.38, + "end": 4171.56, + "probability": 0.95703125 + }, + { + "word": " computer", + "start": 4171.56, + "end": 4171.86, + "probability": 0.95068359375 + }, + { + "word": " guru.", + "start": 4171.86, + "end": 4172.14, + "probability": 1.0 + } + ] + }, + { + "id": 1768, + "text": "Okay.", + "start": 4172.58, + "end": 4172.68, + "words": [ + { + "word": " Okay.", + "start": 4172.58, + "end": 4172.68, + "probability": 0.4873046875 + } + ] + }, + { + "id": 1769, + "text": "Well, let's talk to Rick.", + "start": 4173.900000000001, + "end": 4174.9, + "words": [ + { + "word": " Well,", + "start": 4173.900000000001, + "end": 4174.3, + "probability": 0.283447265625 + }, + { + "word": " let's", + "start": 4174.4, + "end": 4174.54, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 4174.54, + "end": 4174.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4174.64, + "end": 4174.74, + "probability": 1.0 + }, + { + "word": " Rick.", + "start": 4174.74, + "end": 4174.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1770, + "text": "Hey, Rick.", + "start": 4175.08, + "end": 4175.62, + "words": [ + { + "word": " Hey,", + "start": 4175.08, + "end": 4175.44, + "probability": 0.99658203125 + }, + { + "word": " Rick.", + "start": 4175.46, + "end": 4175.62, + "probability": 1.0 + } + ] + }, + { + "id": 1771, + "text": "How are you?", + "start": 4175.66, + "end": 4176.06, + "words": [ + { + "word": " How", + "start": 4175.66, + "end": 4175.78, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 4175.78, + "end": 4175.9, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4175.9, + "end": 4176.06, + "probability": 1.0 + } + ] + }, + { + "id": 1772, + "text": "Hey, I'm doing okay.", + "start": 4176.64, + "end": 4177.58, + "words": [ + { + "word": " Hey,", + "start": 4176.64, + "end": 4177.04, + "probability": 0.998046875 + }, + { + "word": " I'm", + "start": 4177.04, + "end": 4177.16, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4177.16, + "end": 4177.32, + "probability": 0.99951171875 + }, + { + "word": " okay.", + "start": 4177.32, + "end": 4177.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1773, + "text": "Hey, occasionally, I house-sit my son's house, and he's got internet television services", + "start": 4177.92, + "end": 4184.92, + "words": [ + { + "word": " Hey,", + "start": 4177.92, + "end": 4178.32, + "probability": 0.9228515625 + }, + { + "word": " occasionally,", + "start": 4178.34, + "end": 4179.7, + "probability": 0.99365234375 + }, + { + "word": " I", + "start": 4179.78, + "end": 4180.02, + "probability": 0.9990234375 + }, + { + "word": " house", + "start": 4180.02, + "end": 4180.4, + "probability": 0.99853515625 + }, + { + "word": "-sit", + "start": 4180.4, + "end": 4180.56, + "probability": 0.74169921875 + }, + { + "word": " my", + "start": 4180.56, + "end": 4180.7, + "probability": 0.92626953125 + }, + { + "word": " son's", + "start": 4180.7, + "end": 4181.1, + "probability": 1.0 + }, + { + "word": " house,", + "start": 4181.1, + "end": 4181.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 4181.4, + "end": 4181.54, + "probability": 1.0 + }, + { + "word": " he's", + "start": 4181.54, + "end": 4181.72, + "probability": 1.0 + }, + { + "word": " got", + "start": 4181.72, + "end": 4181.9, + "probability": 1.0 + }, + { + "word": " internet", + "start": 4181.9, + "end": 4182.68, + "probability": 0.79443359375 + }, + { + "word": " television", + "start": 4182.68, + "end": 4184.24, + "probability": 0.99951171875 + }, + { + "word": " services", + "start": 4184.24, + "end": 4184.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1774, + "text": "like Roku and Hulu and all that.", + "start": 4184.92, + "end": 4186.92, + "words": [ + { + "word": " like", + "start": 4184.92, + "end": 4185.34, + "probability": 0.9599609375 + }, + { + "word": " Roku", + "start": 4185.34, + "end": 4185.74, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4185.74, + "end": 4186.02, + "probability": 0.99365234375 + }, + { + "word": " Hulu", + "start": 4186.02, + "end": 4186.32, + "probability": 0.9873046875 + }, + { + "word": " and", + "start": 4186.32, + "end": 4186.6, + "probability": 0.99755859375 + }, + { + "word": " all", + "start": 4186.6, + "end": 4186.72, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4186.72, + "end": 4186.92, + "probability": 1.0 + } + ] + }, + { + "id": 1775, + "text": "Right.", + "start": 4187.14, + "end": 4187.42, + "words": [ + { + "word": " Right.", + "start": 4187.14, + "end": 4187.42, + "probability": 0.88330078125 + } + ] + }, + { + "id": 1776, + "text": "I find it kind of problematical and a little bit of a pain in the ass, but I don't think", + "start": 4188.080000000001, + "end": 4193.02, + "words": [ + { + "word": " I", + "start": 4188.080000000001, + "end": 4188.4800000000005, + "probability": 0.1021728515625 + }, + { + "word": " find", + "start": 4188.4800000000005, + "end": 4188.88, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 4188.88, + "end": 4189.06, + "probability": 1.0 + }, + { + "word": " kind", + "start": 4189.06, + "end": 4189.32, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 4189.32, + "end": 4189.44, + "probability": 1.0 + }, + { + "word": " problematical", + "start": 4189.44, + "end": 4190.16, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 4190.16, + "end": 4190.5, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 4190.5, + "end": 4190.72, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 4190.72, + "end": 4191.36, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4191.36, + "end": 4191.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 4191.54, + "end": 4191.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 4191.68, + "end": 4191.78, + "probability": 1.0 + }, + { + "word": " pain", + "start": 4191.78, + "end": 4191.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 4191.98, + "end": 4192.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 4192.12, + "end": 4192.22, + "probability": 1.0 + }, + { + "word": " ass,", + "start": 4192.22, + "end": 4192.5, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 4192.5, + "end": 4192.6, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4192.6, + "end": 4192.7, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4192.7, + "end": 4192.88, + "probability": 1.0 + }, + { + "word": " think", + "start": 4192.88, + "end": 4193.02, + "probability": 1.0 + } + ] + }, + { + "id": 1777, + "text": "it's as good as having satellite or cable.", + "start": 4193.02, + "end": 4195.92, + "words": [ + { + "word": " it's", + "start": 4193.02, + "end": 4193.22, + "probability": 1.0 + }, + { + "word": " as", + "start": 4193.22, + "end": 4193.32, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 4193.32, + "end": 4193.54, + "probability": 1.0 + }, + { + "word": " as", + "start": 4193.54, + "end": 4193.84, + "probability": 1.0 + }, + { + "word": " having", + "start": 4193.84, + "end": 4194.6, + "probability": 0.99951171875 + }, + { + "word": " satellite", + "start": 4194.6, + "end": 4195.06, + "probability": 0.9892578125 + }, + { + "word": " or", + "start": 4195.06, + "end": 4195.5, + "probability": 1.0 + }, + { + "word": " cable.", + "start": 4195.5, + "end": 4195.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1778, + "text": "It depends on what you're looking for, and especially if there's fragmentation, right?", + "start": 4196.760000000001, + "end": 4200.96, + "words": [ + { + "word": " It", + "start": 4196.760000000001, + "end": 4197.160000000001, + "probability": 0.99658203125 + }, + { + "word": " depends", + "start": 4197.160000000001, + "end": 4197.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 4197.56, + "end": 4197.68, + "probability": 0.97802734375 + }, + { + "word": " what", + "start": 4197.68, + "end": 4197.74, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4197.74, + "end": 4197.86, + "probability": 1.0 + }, + { + "word": " looking", + "start": 4197.86, + "end": 4198.04, + "probability": 1.0 + }, + { + "word": " for,", + "start": 4198.04, + "end": 4198.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 4198.4, + "end": 4198.52, + "probability": 0.4765625 + }, + { + "word": " especially", + "start": 4198.52, + "end": 4199.0, + "probability": 1.0 + }, + { + "word": " if", + "start": 4199.0, + "end": 4199.3, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 4199.3, + "end": 4199.56, + "probability": 1.0 + }, + { + "word": " fragmentation,", + "start": 4199.56, + "end": 4200.24, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4200.48, + "end": 4200.96, + "probability": 0.9921875 + } + ] + }, + { + "id": 1779, + "text": "Right.", + "start": 4200.96, + "end": 4201.04, + "words": [ + { + "word": " Right.", + "start": 4200.96, + "end": 4201.04, + "probability": 0.55126953125 + } + ] + }, + { + "id": 1780, + "text": "So if they're using multiple services on different devices.", + "start": 4201.04, + "end": 4206.1, + "words": [ + { + "word": " So", + "start": 4201.04, + "end": 4201.18, + "probability": 0.9306640625 + }, + { + "word": " if", + "start": 4201.18, + "end": 4201.6, + "probability": 0.83740234375 + }, + { + "word": " they're", + "start": 4201.6, + "end": 4201.96, + "probability": 0.9990234375 + }, + { + "word": " using", + "start": 4201.96, + "end": 4202.46, + "probability": 1.0 + }, + { + "word": " multiple", + "start": 4202.46, + "end": 4203.08, + "probability": 0.99951171875 + }, + { + "word": " services", + "start": 4203.08, + "end": 4204.06, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4204.06, + "end": 4205.16, + "probability": 0.9326171875 + }, + { + "word": " different", + "start": 4205.16, + "end": 4205.62, + "probability": 0.99560546875 + }, + { + "word": " devices.", + "start": 4205.62, + "end": 4206.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1781, + "text": "Right.", + "start": 4206.1, + "end": 4206.2, + "words": [ + { + "word": " Right.", + "start": 4206.1, + "end": 4206.2, + "probability": 0.84326171875 + } + ] + }, + { + "id": 1782, + "text": "Well, you've got about eight different ... You can do Hulu or Roku or this one or that one.", + "start": 4206.2, + "end": 4210.28, + "words": [ + { + "word": " Well,", + "start": 4206.2, + "end": 4206.2, + "probability": 0.962890625 + }, + { + "word": " you've", + "start": 4206.2, + "end": 4206.2, + "probability": 0.9619140625 + }, + { + "word": " got", + "start": 4206.2, + "end": 4206.2, + "probability": 1.0 + }, + { + "word": " about", + "start": 4206.2, + "end": 4206.42, + "probability": 0.28955078125 + }, + { + "word": " eight", + "start": 4206.42, + "end": 4206.96, + "probability": 0.97216796875 + }, + { + "word": " different", + "start": 4206.96, + "end": 4207.36, + "probability": 1.0 + }, + { + "word": " ...", + "start": 4207.36, + "end": 4207.58, + "probability": 0.006977081298828125 + }, + { + "word": " You", + "start": 4207.58, + "end": 4207.64, + "probability": 0.94091796875 + }, + { + "word": " can", + "start": 4207.64, + "end": 4207.88, + "probability": 0.92919921875 + }, + { + "word": " do", + "start": 4207.88, + "end": 4208.06, + "probability": 0.99365234375 + }, + { + "word": " Hulu", + "start": 4208.06, + "end": 4208.38, + "probability": 0.9921875 + }, + { + "word": " or", + "start": 4208.38, + "end": 4208.64, + "probability": 0.93115234375 + }, + { + "word": " Roku", + "start": 4208.64, + "end": 4209.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 4209.0, + "end": 4209.28, + "probability": 0.99072265625 + }, + { + "word": " this", + "start": 4209.28, + "end": 4209.54, + "probability": 1.0 + }, + { + "word": " one", + "start": 4209.54, + "end": 4209.76, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4209.76, + "end": 4209.88, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4209.88, + "end": 4210.04, + "probability": 1.0 + }, + { + "word": " one.", + "start": 4210.04, + "end": 4210.28, + "probability": 1.0 + } + ] + }, + { + "id": 1783, + "text": "There's about six or eight different choices.", + "start": 4210.56, + "end": 4212.32, + "words": [ + { + "word": " There's", + "start": 4210.56, + "end": 4211.0, + "probability": 0.853515625 + }, + { + "word": " about", + "start": 4211.0, + "end": 4211.12, + "probability": 0.9990234375 + }, + { + "word": " six", + "start": 4211.12, + "end": 4211.34, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4211.34, + "end": 4211.56, + "probability": 1.0 + }, + { + "word": " eight", + "start": 4211.56, + "end": 4211.7, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 4211.7, + "end": 4211.92, + "probability": 1.0 + }, + { + "word": " choices.", + "start": 4211.92, + "end": 4212.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1784, + "text": "Then I notice that, okay, I'll see a program that's on the menu.", + "start": 4212.64, + "end": 4216.54, + "words": [ + { + "word": " Then", + "start": 4212.64, + "end": 4213.08, + "probability": 0.42919921875 + }, + { + "word": " I", + "start": 4213.08, + "end": 4213.42, + "probability": 0.98828125 + }, + { + "word": " notice", + "start": 4213.42, + "end": 4213.76, + "probability": 0.8427734375 + }, + { + "word": " that,", + "start": 4213.76, + "end": 4214.0, + "probability": 0.439453125 + }, + { + "word": " okay,", + "start": 4214.06, + "end": 4214.26, + "probability": 0.5791015625 + }, + { + "word": " I'll", + "start": 4214.26, + "end": 4214.6, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 4214.6, + "end": 4214.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 4214.7, + "end": 4214.9, + "probability": 0.99951171875 + }, + { + "word": " program", + "start": 4214.9, + "end": 4215.22, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 4215.22, + "end": 4216.0, + "probability": 0.89453125 + }, + { + "word": " on", + "start": 4216.0, + "end": 4216.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 4216.14, + "end": 4216.28, + "probability": 1.0 + }, + { + "word": " menu.", + "start": 4216.28, + "end": 4216.54, + "probability": 1.0 + } + ] + }, + { + "id": 1785, + "text": "Hey, I'd like to watch that, right?", + "start": 4216.72, + "end": 4218.06, + "words": [ + { + "word": " Hey,", + "start": 4216.72, + "end": 4217.02, + "probability": 0.99462890625 + }, + { + "word": " I'd", + "start": 4217.04, + "end": 4217.12, + "probability": 1.0 + }, + { + "word": " like", + "start": 4217.12, + "end": 4217.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 4217.26, + "end": 4217.36, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4217.36, + "end": 4217.58, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4217.58, + "end": 4217.82, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4217.9, + "end": 4218.06, + "probability": 1.0 + } + ] + }, + { + "id": 1786, + "text": "Well, then a lot of times it'll be like $3.99, $7.99, $15.99.", + "start": 4218.22, + "end": 4225.42, + "words": [ + { + "word": " Well,", + "start": 4218.22, + "end": 4218.66, + "probability": 0.97412109375 + }, + { + "word": " then", + "start": 4218.66, + "end": 4218.92, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4218.92, + "end": 4219.04, + "probability": 0.994140625 + }, + { + "word": " lot", + "start": 4219.04, + "end": 4219.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 4219.92, + "end": 4220.0, + "probability": 1.0 + }, + { + "word": " times", + "start": 4220.0, + "end": 4220.2, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 4220.2, + "end": 4220.48, + "probability": 0.986328125 + }, + { + "word": " be", + "start": 4220.48, + "end": 4220.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 4220.7, + "end": 4220.96, + "probability": 0.94677734375 + }, + { + "word": " $3", + "start": 4220.96, + "end": 4221.74, + "probability": 0.96923828125 + }, + { + "word": ".99,", + "start": 4221.74, + "end": 4222.28, + "probability": 0.82568359375 + }, + { + "word": " $7", + "start": 4222.56, + "end": 4222.78, + "probability": 1.0 + }, + { + "word": ".99,", + "start": 4222.78, + "end": 4223.42, + "probability": 1.0 + }, + { + "word": " $15", + "start": 4224.46, + "end": 4224.86, + "probability": 0.99853515625 + }, + { + "word": ".99.", + "start": 4224.86, + "end": 4225.42, + "probability": 1.0 + } + ] + }, + { + "id": 1787, + "text": "You know what I'm saying?", + "start": 4225.5, + "end": 4226.1, + "words": [ + { + "word": " You", + "start": 4225.5, + "end": 4225.66, + "probability": 0.951171875 + }, + { + "word": " know", + "start": 4225.66, + "end": 4225.76, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 4225.76, + "end": 4225.86, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4225.86, + "end": 4225.96, + "probability": 1.0 + }, + { + "word": " saying?", + "start": 4225.96, + "end": 4226.1, + "probability": 1.0 + } + ] + }, + { + "id": 1788, + "text": "In other words, you've got to enter a credit card number right then in order to use it.", + "start": 4226.14, + "end": 4230.94, + "words": [ + { + "word": " In", + "start": 4226.14, + "end": 4226.28, + "probability": 0.982421875 + }, + { + "word": " other", + "start": 4226.28, + "end": 4226.28, + "probability": 0.99951171875 + }, + { + "word": " words,", + "start": 4226.28, + "end": 4226.52, + "probability": 1.0 + }, + { + "word": " you've", + "start": 4226.62, + "end": 4227.02, + "probability": 0.904296875 + }, + { + "word": " got", + "start": 4227.02, + "end": 4227.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 4227.56, + "end": 4227.76, + "probability": 1.0 + }, + { + "word": " enter", + "start": 4227.76, + "end": 4228.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 4228.42, + "end": 4228.58, + "probability": 1.0 + }, + { + "word": " credit", + "start": 4228.58, + "end": 4228.78, + "probability": 1.0 + }, + { + "word": " card", + "start": 4228.78, + "end": 4229.0, + "probability": 0.99951171875 + }, + { + "word": " number", + "start": 4229.0, + "end": 4229.34, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 4229.34, + "end": 4229.6, + "probability": 0.62255859375 + }, + { + "word": " then", + "start": 4229.6, + "end": 4229.76, + "probability": 0.96728515625 + }, + { + "word": " in", + "start": 4229.76, + "end": 4230.44, + "probability": 0.98583984375 + }, + { + "word": " order", + "start": 4230.44, + "end": 4230.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 4230.6, + "end": 4230.74, + "probability": 0.99658203125 + }, + { + "word": " use", + "start": 4230.74, + "end": 4230.94, + "probability": 0.94873046875 + }, + { + "word": " it.", + "start": 4230.94, + "end": 4230.94, + "probability": 0.7548828125 + } + ] + }, + { + "id": 1789, + "text": "", + "start": 4230.94, + "end": 4230.94, + "words": [] + }, + { + "id": 1790, + "text": "", + "start": 4230.94, + "end": 4230.94, + "words": [] + }, + { + "id": 1791, + "text": "This is true.", + "start": 4230.94, + "end": 4232.46, + "words": [ + { + "word": " This", + "start": 4230.94, + "end": 4231.82, + "probability": 0.59765625 + }, + { + "word": " is", + "start": 4231.82, + "end": 4232.28, + "probability": 0.99951171875 + }, + { + "word": " true.", + "start": 4232.28, + "end": 4232.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1792, + "text": "Now ...", + "start": 4232.8, + "end": 4233.18, + "words": [ + { + "word": " Now", + "start": 4232.8, + "end": 4232.98, + "probability": 0.076171875 + }, + { + "word": " ...", + "start": 4232.98, + "end": 4233.18, + "probability": 0.007965087890625 + } + ] + }, + { + "id": 1793, + "text": "So channel surfing and stuff, I mean, in the past I've had not only cable from a Tucson", + "start": 4233.18, + "end": 4240.5, + "words": [ + { + "word": " So", + "start": 4233.18, + "end": 4233.3, + "probability": 0.70703125 + }, + { + "word": " channel", + "start": 4233.3, + "end": 4233.66, + "probability": 0.376220703125 + }, + { + "word": " surfing", + "start": 4233.66, + "end": 4234.3, + "probability": 0.9921875 + }, + { + "word": " and", + "start": 4234.3, + "end": 4234.68, + "probability": 0.9912109375 + }, + { + "word": " stuff,", + "start": 4234.68, + "end": 4234.9, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 4235.08, + "end": 4235.12, + "probability": 0.78076171875 + }, + { + "word": " mean,", + "start": 4235.12, + "end": 4235.26, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4235.3, + "end": 4235.52, + "probability": 0.68603515625 + }, + { + "word": " the", + "start": 4235.52, + "end": 4236.2, + "probability": 0.99951171875 + }, + { + "word": " past", + "start": 4236.2, + "end": 4236.46, + "probability": 0.9990234375 + }, + { + "word": " I've", + "start": 4236.46, + "end": 4236.72, + "probability": 0.74853515625 + }, + { + "word": " had", + "start": 4236.72, + "end": 4236.9, + "probability": 0.9912109375 + }, + { + "word": " not", + "start": 4236.9, + "end": 4237.5, + "probability": 0.96923828125 + }, + { + "word": " only", + "start": 4237.5, + "end": 4237.78, + "probability": 0.99951171875 + }, + { + "word": " cable", + "start": 4237.78, + "end": 4238.18, + "probability": 0.97802734375 + }, + { + "word": " from", + "start": 4238.18, + "end": 4238.54, + "probability": 0.939453125 + }, + { + "word": " a", + "start": 4238.54, + "end": 4238.74, + "probability": 0.1666259765625 + }, + { + "word": " Tucson", + "start": 4238.74, + "end": 4240.5, + "probability": 0.7294921875 + } + ] + }, + { + "id": 1794, + "text": "cable or whatever, but then I had the Dish Network satellite top package, which was 200", + "start": 4240.5, + "end": 4247.26, + "words": [ + { + "word": " cable", + "start": 4240.5, + "end": 4240.96, + "probability": 0.9765625 + }, + { + "word": " or", + "start": 4240.96, + "end": 4241.24, + "probability": 0.984375 + }, + { + "word": " whatever,", + "start": 4241.24, + "end": 4241.48, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 4241.64, + "end": 4241.7, + "probability": 0.98974609375 + }, + { + "word": " then", + "start": 4241.7, + "end": 4241.84, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 4241.84, + "end": 4241.98, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 4241.98, + "end": 4242.16, + "probability": 0.98681640625 + }, + { + "word": " the", + "start": 4242.16, + "end": 4242.42, + "probability": 0.99609375 + }, + { + "word": " Dish", + "start": 4242.42, + "end": 4242.86, + "probability": 0.861328125 + }, + { + "word": " Network", + "start": 4242.86, + "end": 4243.12, + "probability": 0.61083984375 + }, + { + "word": " satellite", + "start": 4243.12, + "end": 4243.7, + "probability": 0.986328125 + }, + { + "word": " top", + "start": 4243.7, + "end": 4245.08, + "probability": 0.2705078125 + }, + { + "word": " package,", + "start": 4245.08, + "end": 4246.38, + "probability": 0.9912109375 + }, + { + "word": " which", + "start": 4246.52, + "end": 4246.72, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4246.72, + "end": 4246.84, + "probability": 0.99462890625 + }, + { + "word": " 200", + "start": 4246.84, + "end": 4247.26, + "probability": 0.986328125 + } + ] + }, + { + "id": 1795, + "text": "plus channels.", + "start": 4247.26, + "end": 4248.14, + "words": [ + { + "word": " plus", + "start": 4247.26, + "end": 4247.68, + "probability": 0.78759765625 + }, + { + "word": " channels.", + "start": 4247.68, + "end": 4248.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1796, + "text": "So here's the thing with the Rokus.", + "start": 4248.48, + "end": 4251.12, + "words": [ + { + "word": " So", + "start": 4248.48, + "end": 4248.98, + "probability": 0.94287109375 + }, + { + "word": " here's", + "start": 4248.98, + "end": 4249.42, + "probability": 0.97900390625 + }, + { + "word": " the", + "start": 4249.42, + "end": 4249.52, + "probability": 0.9990234375 + }, + { + "word": " thing", + "start": 4249.52, + "end": 4250.18, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4250.18, + "end": 4250.38, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4250.38, + "end": 4250.76, + "probability": 0.998046875 + }, + { + "word": " Rokus.", + "start": 4250.76, + "end": 4251.12, + "probability": 0.9150390625 + } + ] + }, + { + "id": 1797, + "text": "Roku and Apple TV both have this fatal flaw, in my opinion, is that they sell you a relatively", + "start": 4252.76, + "end": 4260.18, + "words": [ + { + "word": " Roku", + "start": 4252.76, + "end": 4253.3, + "probability": 0.7060546875 + }, + { + "word": " and", + "start": 4253.3, + "end": 4253.46, + "probability": 0.99951171875 + }, + { + "word": " Apple", + "start": 4253.46, + "end": 4253.7, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4253.7, + "end": 4253.96, + "probability": 0.9990234375 + }, + { + "word": " both", + "start": 4253.96, + "end": 4254.32, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 4254.32, + "end": 4254.94, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4254.94, + "end": 4255.14, + "probability": 0.99951171875 + }, + { + "word": " fatal", + "start": 4255.14, + "end": 4255.6, + "probability": 0.9990234375 + }, + { + "word": " flaw,", + "start": 4255.6, + "end": 4256.0, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4256.12, + "end": 4256.24, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4256.24, + "end": 4256.36, + "probability": 1.0 + }, + { + "word": " opinion,", + "start": 4256.36, + "end": 4256.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 4256.84, + "end": 4257.64, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4257.64, + "end": 4257.98, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4257.98, + "end": 4258.96, + "probability": 0.9990234375 + }, + { + "word": " sell", + "start": 4258.96, + "end": 4259.32, + "probability": 0.95263671875 + }, + { + "word": " you", + "start": 4259.32, + "end": 4259.48, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 4259.48, + "end": 4259.64, + "probability": 0.99560546875 + }, + { + "word": " relatively", + "start": 4259.64, + "end": 4260.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1798, + "text": "cheap device.", + "start": 4260.18, + "end": 4260.82, + "words": [ + { + "word": " cheap", + "start": 4260.18, + "end": 4260.4, + "probability": 0.01053619384765625 + }, + { + "word": " device.", + "start": 4260.4, + "end": 4260.82, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1799, + "text": "They say you can get online and watch whatever you want, but by the way, we're going to microcharge", + "start": 4261.08, + "end": 4265.12, + "words": [ + { + "word": " They", + "start": 4261.08, + "end": 4261.4, + "probability": 0.986328125 + }, + { + "word": " say", + "start": 4261.4, + "end": 4261.6, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 4261.6, + "end": 4261.78, + "probability": 0.85791015625 + }, + { + "word": " can", + "start": 4261.78, + "end": 4261.94, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 4261.94, + "end": 4262.08, + "probability": 0.9794921875 + }, + { + "word": " online", + "start": 4262.08, + "end": 4262.26, + "probability": 0.96533203125 + }, + { + "word": " and", + "start": 4262.26, + "end": 4262.46, + "probability": 0.998046875 + }, + { + "word": " watch", + "start": 4262.46, + "end": 4262.62, + "probability": 0.99951171875 + }, + { + "word": " whatever", + "start": 4262.62, + "end": 4262.8, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 4262.8, + "end": 4263.0, + "probability": 0.99951171875 + }, + { + "word": " want,", + "start": 4263.0, + "end": 4263.22, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 4263.34, + "end": 4263.5, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 4263.5, + "end": 4263.76, + "probability": 0.98583984375 + }, + { + "word": " the", + "start": 4263.76, + "end": 4263.88, + "probability": 1.0 + }, + { + "word": " way,", + "start": 4263.88, + "end": 4264.06, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4264.12, + "end": 4264.32, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 4264.32, + "end": 4264.38, + "probability": 0.97900390625 + }, + { + "word": " to", + "start": 4264.38, + "end": 4264.5, + "probability": 1.0 + }, + { + "word": " microcharge", + "start": 4264.5, + "end": 4265.12, + "probability": 0.92626953125 + } + ] + }, + { + "id": 1800, + "text": "the heck out of you.", + "start": 4265.12, + "end": 4266.08, + "words": [ + { + "word": " the", + "start": 4265.12, + "end": 4265.46, + "probability": 0.99951171875 + }, + { + "word": " heck", + "start": 4265.46, + "end": 4265.66, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 4265.66, + "end": 4265.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 4265.84, + "end": 4265.98, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4265.98, + "end": 4266.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1801, + "text": "Yeah, that's what I'm saying.", + "start": 4266.58, + "end": 4267.76, + "words": [ + { + "word": " Yeah,", + "start": 4266.58, + "end": 4266.82, + "probability": 0.931640625 + }, + { + "word": " that's", + "start": 4266.86, + "end": 4267.22, + "probability": 0.8427734375 + }, + { + "word": " what", + "start": 4267.22, + "end": 4267.34, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 4267.34, + "end": 4267.54, + "probability": 1.0 + }, + { + "word": " saying.", + "start": 4267.54, + "end": 4267.76, + "probability": 1.0 + } + ] + }, + { + "id": 1802, + "text": "I mean, in other words, there's many programs where it would say, yeah, you can watch this,", + "start": 4267.9, + "end": 4271.42, + "words": [ + { + "word": " I", + "start": 4267.9, + "end": 4267.98, + "probability": 0.54541015625 + }, + { + "word": " mean,", + "start": 4267.98, + "end": 4268.12, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 4268.16, + "end": 4268.28, + "probability": 0.99853515625 + }, + { + "word": " other", + "start": 4268.28, + "end": 4268.42, + "probability": 0.99951171875 + }, + { + "word": " words,", + "start": 4268.42, + "end": 4268.66, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4268.72, + "end": 4268.88, + "probability": 0.9990234375 + }, + { + "word": " many", + "start": 4268.88, + "end": 4269.06, + "probability": 0.99951171875 + }, + { + "word": " programs", + "start": 4269.06, + "end": 4269.54, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 4269.54, + "end": 4269.9, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4269.9, + "end": 4270.24, + "probability": 0.432861328125 + }, + { + "word": " would", + "start": 4270.24, + "end": 4270.32, + "probability": 0.982421875 + }, + { + "word": " say,", + "start": 4270.32, + "end": 4270.48, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 4270.52, + "end": 4270.68, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 4270.7, + "end": 4270.8, + "probability": 1.0 + }, + { + "word": " can", + "start": 4270.8, + "end": 4270.92, + "probability": 0.99951171875 + }, + { + "word": " watch", + "start": 4270.92, + "end": 4271.18, + "probability": 1.0 + }, + { + "word": " this,", + "start": 4271.18, + "end": 4271.42, + "probability": 1.0 + } + ] + }, + { + "id": 1803, + "text": "but it's like $7.99.", + "start": 4271.5, + "end": 4272.66, + "words": [ + { + "word": " but", + "start": 4271.5, + "end": 4271.58, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4271.58, + "end": 4271.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 4271.78, + "end": 4271.88, + "probability": 0.9912109375 + }, + { + "word": " $7", + "start": 4271.88, + "end": 4272.08, + "probability": 0.9892578125 + }, + { + "word": ".99.", + "start": 4272.08, + "end": 4272.66, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1804, + "text": "So here's ...", + "start": 4272.92, + "end": 4273.56, + "words": [ + { + "word": " So", + "start": 4272.92, + "end": 4273.2, + "probability": 0.52587890625 + }, + { + "word": " here's", + "start": 4273.2, + "end": 4273.46, + "probability": 0.958984375 + }, + { + "word": " ...", + "start": 4273.46, + "end": 4273.56, + "probability": 0.0037174224853515625 + } + ] + }, + { + "id": 1805, + "text": "Key in your credit card number or whatever.", + "start": 4273.56, + "end": 4275.68, + "words": [ + { + "word": " Key", + "start": 4273.56, + "end": 4273.72, + "probability": 0.7470703125 + }, + { + "word": " in", + "start": 4273.72, + "end": 4273.76, + "probability": 0.98486328125 + }, + { + "word": " your", + "start": 4273.76, + "end": 4273.96, + "probability": 1.0 + }, + { + "word": " credit", + "start": 4273.96, + "end": 4274.72, + "probability": 0.986328125 + }, + { + "word": " card", + "start": 4274.72, + "end": 4275.0, + "probability": 0.99951171875 + }, + { + "word": " number", + "start": 4275.0, + "end": 4275.28, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 4275.28, + "end": 4275.48, + "probability": 0.89111328125 + }, + { + "word": " whatever.", + "start": 4275.48, + "end": 4275.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1806, + "text": "Here's how I deal with it.", + "start": 4276.08, + "end": 4277.2, + "words": [ + { + "word": " Here's", + "start": 4276.08, + "end": 4276.48, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 4276.48, + "end": 4276.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 4276.56, + "end": 4276.74, + "probability": 1.0 + }, + { + "word": " deal", + "start": 4276.74, + "end": 4276.94, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4276.94, + "end": 4277.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4277.06, + "end": 4277.2, + "probability": 1.0 + } + ] + }, + { + "id": 1807, + "text": "I have an Apple ... Or I'm sorry, an Amazon Fire TV, and I have an Amazon Prime account.", + "start": 4277.3, + "end": 4283.38, + "words": [ + { + "word": " I", + "start": 4277.3, + "end": 4277.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 4277.6, + "end": 4277.96, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 4277.96, + "end": 4278.22, + "probability": 0.9990234375 + }, + { + "word": " Apple", + "start": 4278.22, + "end": 4278.54, + "probability": 0.72314453125 + }, + { + "word": " ...", + "start": 4278.54, + "end": 4278.76, + "probability": 0.204833984375 + }, + { + "word": " Or", + "start": 4278.76, + "end": 4278.9, + "probability": 0.70458984375 + }, + { + "word": " I'm", + "start": 4278.9, + "end": 4279.02, + "probability": 0.91650390625 + }, + { + "word": " sorry,", + "start": 4279.02, + "end": 4279.14, + "probability": 0.99560546875 + }, + { + "word": " an", + "start": 4279.2, + "end": 4279.3, + "probability": 0.9990234375 + }, + { + "word": " Amazon", + "start": 4279.3, + "end": 4279.56, + "probability": 1.0 + }, + { + "word": " Fire", + "start": 4279.56, + "end": 4279.92, + "probability": 0.9990234375 + }, + { + "word": " TV,", + "start": 4279.92, + "end": 4280.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 4280.46, + "end": 4281.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 4281.28, + "end": 4281.72, + "probability": 1.0 + }, + { + "word": " have", + "start": 4281.72, + "end": 4282.02, + "probability": 1.0 + }, + { + "word": " an", + "start": 4282.02, + "end": 4282.2, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 4282.2, + "end": 4282.52, + "probability": 1.0 + }, + { + "word": " Prime", + "start": 4282.52, + "end": 4283.0, + "probability": 1.0 + }, + { + "word": " account.", + "start": 4283.0, + "end": 4283.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1808, + "text": "With the two things together, I can watch basically any TV show.", + "start": 4284.380000000001, + "end": 4290.1, + "words": [ + { + "word": " With", + "start": 4284.380000000001, + "end": 4284.780000000001, + "probability": 0.1258544921875 + }, + { + "word": " the", + "start": 4284.780000000001, + "end": 4285.18, + "probability": 1.0 + }, + { + "word": " two", + "start": 4285.18, + "end": 4285.38, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 4285.38, + "end": 4285.64, + "probability": 0.99951171875 + }, + { + "word": " together,", + "start": 4285.64, + "end": 4286.0, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4286.26, + "end": 4286.92, + "probability": 1.0 + }, + { + "word": " can", + "start": 4286.92, + "end": 4287.12, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4287.12, + "end": 4287.48, + "probability": 0.99951171875 + }, + { + "word": " basically", + "start": 4287.48, + "end": 4288.32, + "probability": 0.93896484375 + }, + { + "word": " any", + "start": 4288.32, + "end": 4289.26, + "probability": 0.99951171875 + }, + { + "word": " TV", + "start": 4289.26, + "end": 4289.68, + "probability": 0.99755859375 + }, + { + "word": " show.", + "start": 4289.68, + "end": 4290.1, + "probability": 0.96142578125 + } + ] + }, + { + "id": 1809, + "text": "I can watch any video or any movie, and it's included in the price of my Amazon Prime account.", + "start": 4290.1, + "end": 4294.04, + "words": [ + { + "word": " I", + "start": 4290.1, + "end": 4290.22, + "probability": 0.00044155120849609375 + }, + { + "word": " can", + "start": 4290.22, + "end": 4290.22, + "probability": 0.01125335693359375 + }, + { + "word": " watch", + "start": 4290.22, + "end": 4290.22, + "probability": 0.158447265625 + }, + { + "word": " any", + "start": 4290.22, + "end": 4290.22, + "probability": 0.05352783203125 + }, + { + "word": " video", + "start": 4290.22, + "end": 4290.22, + "probability": 0.57275390625 + }, + { + "word": " or", + "start": 4290.22, + "end": 4290.28, + "probability": 0.98681640625 + }, + { + "word": " any", + "start": 4290.28, + "end": 4290.56, + "probability": 0.99951171875 + }, + { + "word": " movie,", + "start": 4290.56, + "end": 4290.96, + "probability": 1.0 + }, + { + "word": " and", + "start": 4291.1, + "end": 4291.68, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4291.68, + "end": 4291.88, + "probability": 1.0 + }, + { + "word": " included", + "start": 4291.88, + "end": 4292.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 4292.24, + "end": 4292.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 4292.52, + "end": 4292.6, + "probability": 1.0 + }, + { + "word": " price", + "start": 4292.6, + "end": 4292.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4292.86, + "end": 4293.0, + "probability": 1.0 + }, + { + "word": " my", + "start": 4293.0, + "end": 4293.14, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 4293.14, + "end": 4293.38, + "probability": 1.0 + }, + { + "word": " Prime", + "start": 4293.38, + "end": 4293.7, + "probability": 0.99951171875 + }, + { + "word": " account.", + "start": 4293.7, + "end": 4294.04, + "probability": 1.0 + } + ] + }, + { + "id": 1810, + "text": "Well, that's good.", + "start": 4294.58, + "end": 4295.4, + "words": [ + { + "word": " Well,", + "start": 4294.58, + "end": 4294.98, + "probability": 0.9736328125 + }, + { + "word": " that's", + "start": 4295.0, + "end": 4295.2, + "probability": 0.9990234375 + }, + { + "word": " good.", + "start": 4295.2, + "end": 4295.4, + "probability": 1.0 + } + ] + }, + { + "id": 1811, + "text": "See, I'm being just a house sitter.", + "start": 4295.52, + "end": 4297.64, + "words": [ + { + "word": " See,", + "start": 4295.52, + "end": 4295.68, + "probability": 0.94189453125 + }, + { + "word": " I'm", + "start": 4295.72, + "end": 4295.84, + "probability": 0.974609375 + }, + { + "word": " being", + "start": 4295.84, + "end": 4296.64, + "probability": 0.98779296875 + }, + { + "word": " just", + "start": 4296.64, + "end": 4297.04, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4297.04, + "end": 4297.16, + "probability": 0.99853515625 + }, + { + "word": " house", + "start": 4297.16, + "end": 4297.38, + "probability": 0.95458984375 + }, + { + "word": " sitter.", + "start": 4297.38, + "end": 4297.64, + "probability": 0.50537109375 + } + ] + }, + { + "id": 1812, + "text": "I wasn't ... I didn't have all of those.", + "start": 4298.18, + "end": 4300.18, + "words": [ + { + "word": " I", + "start": 4298.18, + "end": 4298.58, + "probability": 0.96875 + }, + { + "word": " wasn't", + "start": 4298.58, + "end": 4298.92, + "probability": 0.8359375 + }, + { + "word": " ...", + "start": 4298.92, + "end": 4298.94, + "probability": 0.00040650367736816406 + }, + { + "word": " I", + "start": 4298.94, + "end": 4299.26, + "probability": 0.92919921875 + }, + { + "word": " didn't", + "start": 4299.26, + "end": 4299.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 4299.54, + "end": 4299.68, + "probability": 1.0 + }, + { + "word": " all", + "start": 4299.68, + "end": 4299.9, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 4299.9, + "end": 4300.06, + "probability": 0.388427734375 + }, + { + "word": " those.", + "start": 4300.06, + "end": 4300.18, + "probability": 0.88720703125 + } + ] + }, + { + "id": 1813, + "text": "Well, this is information you can give to your son then, so he can have a better experience.", + "start": 4300.18, + "end": 4303.54, + "words": [ + { + "word": " Well,", + "start": 4300.18, + "end": 4300.32, + "probability": 0.83740234375 + }, + { + "word": " this", + "start": 4300.32, + "end": 4300.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 4300.6, + "end": 4300.76, + "probability": 1.0 + }, + { + "word": " information", + "start": 4300.76, + "end": 4300.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 4300.98, + "end": 4301.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 4301.36, + "end": 4301.46, + "probability": 1.0 + }, + { + "word": " give", + "start": 4301.46, + "end": 4301.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 4301.6, + "end": 4301.7, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4301.7, + "end": 4301.78, + "probability": 1.0 + }, + { + "word": " son", + "start": 4301.78, + "end": 4301.98, + "probability": 1.0 + }, + { + "word": " then,", + "start": 4301.98, + "end": 4302.2, + "probability": 0.5888671875 + }, + { + "word": " so", + "start": 4302.26, + "end": 4302.38, + "probability": 1.0 + }, + { + "word": " he", + "start": 4302.38, + "end": 4302.52, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 4302.52, + "end": 4302.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 4302.66, + "end": 4302.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 4302.8, + "end": 4302.86, + "probability": 1.0 + }, + { + "word": " better", + "start": 4302.86, + "end": 4303.06, + "probability": 1.0 + }, + { + "word": " experience.", + "start": 4303.06, + "end": 4303.54, + "probability": 1.0 + } + ] + }, + { + "id": 1814, + "text": "Yeah, he probably knows already.", + "start": 4303.66, + "end": 4304.84, + "words": [ + { + "word": " Yeah,", + "start": 4303.66, + "end": 4303.82, + "probability": 0.9130859375 + }, + { + "word": " he", + "start": 4303.82, + "end": 4303.82, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4303.82, + "end": 4304.04, + "probability": 1.0 + }, + { + "word": " knows", + "start": 4304.04, + "end": 4304.48, + "probability": 1.0 + }, + { + "word": " already.", + "start": 4304.48, + "end": 4304.84, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1815, + "text": "I'm just saying, when I was watching this ...", + "start": 4305.22, + "end": 4307.26, + "words": [ + { + "word": " I'm", + "start": 4305.22, + "end": 4305.62, + "probability": 0.646484375 + }, + { + "word": " just", + "start": 4305.62, + "end": 4305.68, + "probability": 0.9833984375 + }, + { + "word": " saying,", + "start": 4305.68, + "end": 4305.9, + "probability": 1.0 + }, + { + "word": " when", + "start": 4305.94, + "end": 4306.08, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4306.08, + "end": 4306.22, + "probability": 1.0 + }, + { + "word": " was", + "start": 4306.22, + "end": 4306.36, + "probability": 0.92529296875 + }, + { + "word": " watching", + "start": 4306.36, + "end": 4306.76, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 4306.76, + "end": 4306.98, + "probability": 0.5546875 + }, + { + "word": " ...", + "start": 4306.98, + "end": 4307.26, + "probability": 0.56494140625 + } + ] + }, + { + "id": 1816, + "text": "Well, what I found is a lot of people, they get locked into this idea, right?", + "start": 4307.26, + "end": 4311.92, + "words": [ + { + "word": " Well,", + "start": 4307.26, + "end": 4307.74, + "probability": 0.99853515625 + }, + { + "word": " what", + "start": 4307.86, + "end": 4307.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 4307.98, + "end": 4308.1, + "probability": 1.0 + }, + { + "word": " found", + "start": 4308.1, + "end": 4308.28, + "probability": 0.90576171875 + }, + { + "word": " is", + "start": 4308.28, + "end": 4308.48, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4308.48, + "end": 4308.6, + "probability": 0.99267578125 + }, + { + "word": " lot", + "start": 4308.6, + "end": 4308.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 4308.62, + "end": 4309.1, + "probability": 1.0 + }, + { + "word": " people,", + "start": 4309.1, + "end": 4309.36, + "probability": 1.0 + }, + { + "word": " they", + "start": 4309.44, + "end": 4309.56, + "probability": 1.0 + }, + { + "word": " get", + "start": 4309.56, + "end": 4309.7, + "probability": 1.0 + }, + { + "word": " locked", + "start": 4309.7, + "end": 4310.36, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 4310.36, + "end": 4310.76, + "probability": 1.0 + }, + { + "word": " this", + "start": 4310.76, + "end": 4311.04, + "probability": 1.0 + }, + { + "word": " idea,", + "start": 4311.04, + "end": 4311.48, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4311.7, + "end": 4311.92, + "probability": 1.0 + } + ] + }, + { + "id": 1817, + "text": "They're like, well, I bought this Roku.", + "start": 4312.02, + "end": 4313.5, + "words": [ + { + "word": " They're", + "start": 4312.02, + "end": 4312.24, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4312.24, + "end": 4312.58, + "probability": 1.0 + }, + { + "word": " well,", + "start": 4312.66, + "end": 4312.78, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 4312.8, + "end": 4312.88, + "probability": 1.0 + }, + { + "word": " bought", + "start": 4312.88, + "end": 4313.04, + "probability": 1.0 + }, + { + "word": " this", + "start": 4313.04, + "end": 4313.22, + "probability": 1.0 + }, + { + "word": " Roku.", + "start": 4313.22, + "end": 4313.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1818, + "text": "It cost me 40 bucks or 60 bucks or whatever, and then they never think, there's probably", + "start": 4313.66, + "end": 4318.02, + "words": [ + { + "word": " It", + "start": 4313.66, + "end": 4313.76, + "probability": 0.98974609375 + }, + { + "word": " cost", + "start": 4313.76, + "end": 4313.88, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 4313.88, + "end": 4314.04, + "probability": 1.0 + }, + { + "word": " 40", + "start": 4314.04, + "end": 4314.32, + "probability": 0.54296875 + }, + { + "word": " bucks", + "start": 4314.32, + "end": 4314.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 4314.58, + "end": 4314.84, + "probability": 0.93798828125 + }, + { + "word": " 60", + "start": 4314.84, + "end": 4315.32, + "probability": 1.0 + }, + { + "word": " bucks", + "start": 4315.32, + "end": 4315.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 4315.58, + "end": 4315.78, + "probability": 1.0 + }, + { + "word": " whatever,", + "start": 4315.78, + "end": 4315.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 4316.2, + "end": 4316.56, + "probability": 1.0 + }, + { + "word": " then", + "start": 4316.56, + "end": 4316.68, + "probability": 1.0 + }, + { + "word": " they", + "start": 4316.68, + "end": 4316.82, + "probability": 1.0 + }, + { + "word": " never", + "start": 4316.82, + "end": 4316.98, + "probability": 1.0 + }, + { + "word": " think,", + "start": 4316.98, + "end": 4317.26, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4317.36, + "end": 4317.8, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 4317.8, + "end": 4318.02, + "probability": 1.0 + } + ] + }, + { + "id": 1819, + "text": "something better out there.", + "start": 4318.02, + "end": 4318.98, + "words": [ + { + "word": " something", + "start": 4318.02, + "end": 4318.3, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 4318.3, + "end": 4318.58, + "probability": 1.0 + }, + { + "word": " out", + "start": 4318.58, + "end": 4318.76, + "probability": 1.0 + }, + { + "word": " there.", + "start": 4318.76, + "end": 4318.98, + "probability": 1.0 + } + ] + }, + { + "id": 1820, + "text": "It doesn't cost much.", + "start": 4319.04, + "end": 4319.86, + "words": [ + { + "word": " It", + "start": 4319.04, + "end": 4319.18, + "probability": 0.9970703125 + }, + { + "word": " doesn't", + "start": 4319.18, + "end": 4319.36, + "probability": 1.0 + }, + { + "word": " cost", + "start": 4319.36, + "end": 4319.54, + "probability": 1.0 + }, + { + "word": " much.", + "start": 4319.54, + "end": 4319.86, + "probability": 1.0 + } + ] + }, + { + "id": 1821, + "text": "Right?", + "start": 4320.1, + "end": 4320.62, + "words": [ + { + "word": " Right?", + "start": 4320.1, + "end": 4320.62, + "probability": 0.5791015625 + } + ] + }, + { + "id": 1822, + "text": "So, like the Amazon Fire Stick costs $35, and then your Amazon account gives you access", + "start": 4320.68, + "end": 4329.56, + "words": [ + { + "word": " So,", + "start": 4320.68, + "end": 4320.84, + "probability": 0.994140625 + }, + { + "word": " like", + "start": 4320.94, + "end": 4321.14, + "probability": 0.966796875 + }, + { + "word": " the", + "start": 4321.14, + "end": 4321.3, + "probability": 0.2017822265625 + }, + { + "word": " Amazon", + "start": 4321.3, + "end": 4322.08, + "probability": 0.9931640625 + }, + { + "word": " Fire", + "start": 4322.08, + "end": 4322.66, + "probability": 0.9951171875 + }, + { + "word": " Stick", + "start": 4322.66, + "end": 4323.12, + "probability": 0.96337890625 + }, + { + "word": " costs", + "start": 4323.12, + "end": 4324.06, + "probability": 0.94482421875 + }, + { + "word": " $35,", + "start": 4324.06, + "end": 4326.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 4326.32, + "end": 4327.14, + "probability": 1.0 + }, + { + "word": " then", + "start": 4327.14, + "end": 4327.4, + "probability": 1.0 + }, + { + "word": " your", + "start": 4327.4, + "end": 4327.62, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 4327.62, + "end": 4328.1, + "probability": 1.0 + }, + { + "word": " account", + "start": 4328.1, + "end": 4328.44, + "probability": 1.0 + }, + { + "word": " gives", + "start": 4328.44, + "end": 4329.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 4329.22, + "end": 4329.36, + "probability": 1.0 + }, + { + "word": " access", + "start": 4329.36, + "end": 4329.56, + "probability": 1.0 + } + ] + }, + { + "id": 1823, + "text": "to effectively everything.", + "start": 4329.56, + "end": 4331.66, + "words": [ + { + "word": " to", + "start": 4329.56, + "end": 4329.88, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 4329.88, + "end": 4330.62, + "probability": 0.9677734375 + }, + { + "word": " everything.", + "start": 4330.62, + "end": 4331.66, + "probability": 1.0 + } + ] + }, + { + "id": 1824, + "text": "Now, Amazon is not to be trifled with when it comes to the number of programs that they", + "start": 4332.320000000001, + "end": 4337.56, + "words": [ + { + "word": " Now,", + "start": 4332.320000000001, + "end": 4332.8, + "probability": 0.994140625 + }, + { + "word": " Amazon", + "start": 4332.82, + "end": 4333.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 4333.18, + "end": 4333.46, + "probability": 1.0 + }, + { + "word": " not", + "start": 4333.46, + "end": 4333.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 4333.66, + "end": 4333.8, + "probability": 1.0 + }, + { + "word": " be", + "start": 4333.8, + "end": 4333.92, + "probability": 1.0 + }, + { + "word": " trifled", + "start": 4333.92, + "end": 4334.74, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 4334.74, + "end": 4334.96, + "probability": 1.0 + }, + { + "word": " when", + "start": 4334.96, + "end": 4335.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 4335.16, + "end": 4335.26, + "probability": 1.0 + }, + { + "word": " comes", + "start": 4335.26, + "end": 4335.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 4335.42, + "end": 4335.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 4335.62, + "end": 4335.9, + "probability": 1.0 + }, + { + "word": " number", + "start": 4335.9, + "end": 4336.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 4336.46, + "end": 4336.7, + "probability": 1.0 + }, + { + "word": " programs", + "start": 4336.7, + "end": 4337.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 4337.14, + "end": 4337.4, + "probability": 1.0 + }, + { + "word": " they", + "start": 4337.4, + "end": 4337.56, + "probability": 1.0 + } + ] + }, + { + "id": 1825, + "text": "have available to you.", + "start": 4337.56, + "end": 4338.58, + "words": [ + { + "word": " have", + "start": 4337.56, + "end": 4337.72, + "probability": 1.0 + }, + { + "word": " available", + "start": 4337.72, + "end": 4338.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 4338.02, + "end": 4338.3, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4338.3, + "end": 4338.58, + "probability": 1.0 + } + ] + }, + { + "id": 1826, + "text": "They are ...", + "start": 4339.42, + "end": 4340.4, + "words": [ + { + "word": " They", + "start": 4339.42, + "end": 4339.9, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4339.9, + "end": 4340.1, + "probability": 0.2479248046875 + }, + { + "word": " ...", + "start": 4340.1, + "end": 4340.4, + "probability": 0.003574371337890625 + } + ] + }, + { + "id": 1827, + "text": "They have a lot?", + "start": 4340.4, + "end": 4341.0, + "words": [ + { + "word": " They", + "start": 4340.4, + "end": 4340.52, + "probability": 0.99169921875 + }, + { + "word": " have", + "start": 4340.52, + "end": 4340.62, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4340.62, + "end": 4340.74, + "probability": 1.0 + }, + { + "word": " lot?", + "start": 4340.74, + "end": 4341.0, + "probability": 1.0 + } + ] + }, + { + "id": 1828, + "text": "Oh, yeah.", + "start": 4341.12, + "end": 4341.78, + "words": [ + { + "word": " Oh,", + "start": 4341.12, + "end": 4341.6, + "probability": 0.708984375 + }, + { + "word": " yeah.", + "start": 4341.6, + "end": 4341.78, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1829, + "text": "They are Netflix and then some.", + "start": 4341.94, + "end": 4344.42, + "words": [ + { + "word": " They", + "start": 4341.94, + "end": 4342.12, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 4342.12, + "end": 4342.36, + "probability": 1.0 + }, + { + "word": " Netflix", + "start": 4342.36, + "end": 4343.54, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4343.54, + "end": 4343.94, + "probability": 0.99658203125 + }, + { + "word": " then", + "start": 4343.94, + "end": 4344.2, + "probability": 0.99755859375 + }, + { + "word": " some.", + "start": 4344.2, + "end": 4344.42, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1830, + "text": "It's like if you were to take Netflix and Hulu and stick them together.", + "start": 4344.78, + "end": 4348.26, + "words": [ + { + "word": " It's", + "start": 4344.78, + "end": 4345.26, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4345.26, + "end": 4345.4, + "probability": 1.0 + }, + { + "word": " if", + "start": 4345.4, + "end": 4346.04, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4346.04, + "end": 4346.12, + "probability": 1.0 + }, + { + "word": " were", + "start": 4346.12, + "end": 4346.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 4346.2, + "end": 4346.3, + "probability": 1.0 + }, + { + "word": " take", + "start": 4346.3, + "end": 4346.46, + "probability": 1.0 + }, + { + "word": " Netflix", + "start": 4346.46, + "end": 4346.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 4346.8, + "end": 4347.1, + "probability": 1.0 + }, + { + "word": " Hulu", + "start": 4347.1, + "end": 4347.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 4347.38, + "end": 4347.6, + "probability": 1.0 + }, + { + "word": " stick", + "start": 4347.6, + "end": 4347.88, + "probability": 1.0 + }, + { + "word": " them", + "start": 4347.88, + "end": 4348.02, + "probability": 1.0 + }, + { + "word": " together.", + "start": 4348.02, + "end": 4348.26, + "probability": 1.0 + } + ] + }, + { + "id": 1831, + "text": "They have got everything, and it's all included in the price.", + "start": 4348.26, + "end": 4352.86, + "words": [ + { + "word": " They", + "start": 4348.26, + "end": 4349.06, + "probability": 0.67138671875 + }, + { + "word": " have", + "start": 4349.06, + "end": 4349.84, + "probability": 0.82763671875 + }, + { + "word": " got", + "start": 4349.84, + "end": 4350.0, + "probability": 0.51904296875 + }, + { + "word": " everything,", + "start": 4350.0, + "end": 4350.5, + "probability": 0.83154296875 + }, + { + "word": " and", + "start": 4350.94, + "end": 4351.44, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 4351.44, + "end": 4352.14, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 4352.14, + "end": 4352.22, + "probability": 1.0 + }, + { + "word": " included", + "start": 4352.22, + "end": 4352.5, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4352.5, + "end": 4352.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 4352.66, + "end": 4352.72, + "probability": 1.0 + }, + { + "word": " price.", + "start": 4352.72, + "end": 4352.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1832, + "text": "So, it's a lot ...", + "start": 4353.12, + "end": 4353.62, + "words": [ + { + "word": " So,", + "start": 4353.12, + "end": 4353.12, + "probability": 0.2012939453125 + }, + { + "word": " it's", + "start": 4353.12, + "end": 4353.34, + "probability": 0.810546875 + }, + { + "word": " a", + "start": 4353.34, + "end": 4353.56, + "probability": 0.8759765625 + }, + { + "word": " lot", + "start": 4353.56, + "end": 4353.62, + "probability": 0.9990234375 + }, + { + "word": " ...", + "start": 4353.62, + "end": 4353.62, + "probability": 0.00811004638671875 + } + ] + }, + { + "id": 1833, + "text": "They have more than like Dish Network?", + "start": 4353.62, + "end": 4355.2, + "words": [ + { + "word": " They", + "start": 4353.62, + "end": 4353.7, + "probability": 0.5791015625 + }, + { + "word": " have", + "start": 4353.7, + "end": 4353.88, + "probability": 0.5341796875 + }, + { + "word": " more", + "start": 4353.88, + "end": 4354.12, + "probability": 0.93212890625 + }, + { + "word": " than", + "start": 4354.12, + "end": 4354.32, + "probability": 0.9931640625 + }, + { + "word": " like", + "start": 4354.32, + "end": 4354.6, + "probability": 0.37744140625 + }, + { + "word": " Dish", + "start": 4354.6, + "end": 4354.9, + "probability": 0.7470703125 + }, + { + "word": " Network?", + "start": 4354.9, + "end": 4355.2, + "probability": 0.96142578125 + } + ] + }, + { + "id": 1834, + "text": "As far as ... They have basically everything that's on ...", + "start": 4356.580000000001, + "end": 4359.52, + "words": [ + { + "word": " As", + "start": 4356.580000000001, + "end": 4357.06, + "probability": 0.8447265625 + }, + { + "word": " far", + "start": 4357.06, + "end": 4357.22, + "probability": 0.9912109375 + }, + { + "word": " as", + "start": 4357.22, + "end": 4357.38, + "probability": 0.99462890625 + }, + { + "word": " ...", + "start": 4357.38, + "end": 4357.54, + "probability": 0.84912109375 + }, + { + "word": " They", + "start": 4357.54, + "end": 4357.9, + "probability": 0.77099609375 + }, + { + "word": " have", + "start": 4357.9, + "end": 4358.08, + "probability": 0.99755859375 + }, + { + "word": " basically", + "start": 4358.08, + "end": 4358.48, + "probability": 0.99560546875 + }, + { + "word": " everything", + "start": 4358.48, + "end": 4358.98, + "probability": 0.9951171875 + }, + { + "word": " that's", + "start": 4358.98, + "end": 4359.46, + "probability": 0.982421875 + }, + { + "word": " on", + "start": 4359.46, + "end": 4359.46, + "probability": 0.99267578125 + }, + { + "word": " ...", + "start": 4359.46, + "end": 4359.52, + "probability": 0.311279296875 + } + ] + }, + { + "id": 1835, + "text": "The amount of choices.", + "start": 4359.52, + "end": 4359.92, + "words": [ + { + "word": " The", + "start": 4359.52, + "end": 4359.54, + "probability": 0.53125 + }, + { + "word": " amount", + "start": 4359.54, + "end": 4359.54, + "probability": 0.9833984375 + }, + { + "word": " of", + "start": 4359.54, + "end": 4359.54, + "probability": 0.998046875 + }, + { + "word": " choices.", + "start": 4359.54, + "end": 4359.92, + "probability": 0.93115234375 + } + ] + }, + { + "id": 1836, + "text": "Like if you get the top of the line Dish package, they got like 200 plus.", + "start": 4360.04, + "end": 4364.94, + "words": [ + { + "word": " Like", + "start": 4360.04, + "end": 4360.22, + "probability": 0.75537109375 + }, + { + "word": " if", + "start": 4360.22, + "end": 4360.32, + "probability": 0.1402587890625 + }, + { + "word": " you", + "start": 4360.32, + "end": 4360.42, + "probability": 0.998046875 + }, + { + "word": " get", + "start": 4360.42, + "end": 4360.52, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 4360.52, + "end": 4360.66, + "probability": 0.99609375 + }, + { + "word": " top", + "start": 4360.66, + "end": 4360.84, + "probability": 0.984375 + }, + { + "word": " of", + "start": 4360.84, + "end": 4361.02, + "probability": 0.7333984375 + }, + { + "word": " the", + "start": 4361.02, + "end": 4361.06, + "probability": 0.99755859375 + }, + { + "word": " line", + "start": 4361.06, + "end": 4361.36, + "probability": 0.9990234375 + }, + { + "word": " Dish", + "start": 4361.36, + "end": 4362.42, + "probability": 0.7509765625 + }, + { + "word": " package,", + "start": 4362.42, + "end": 4362.9, + "probability": 0.9560546875 + }, + { + "word": " they", + "start": 4363.18, + "end": 4363.54, + "probability": 0.95263671875 + }, + { + "word": " got", + "start": 4363.54, + "end": 4363.96, + "probability": 0.806640625 + }, + { + "word": " like", + "start": 4363.96, + "end": 4364.2, + "probability": 0.9736328125 + }, + { + "word": " 200", + "start": 4364.2, + "end": 4364.5, + "probability": 0.94580078125 + }, + { + "word": " plus.", + "start": 4364.5, + "end": 4364.94, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1837, + "text": "I have never, in my personal experience, I have never asked for a program to be displayed", + "start": 4365.46, + "end": 4371.3, + "words": [ + { + "word": " I", + "start": 4365.46, + "end": 4365.94, + "probability": 0.94482421875 + }, + { + "word": " have", + "start": 4365.94, + "end": 4366.06, + "probability": 0.9775390625 + }, + { + "word": " never,", + "start": 4366.06, + "end": 4366.3, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4366.48, + "end": 4366.7, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 4366.7, + "end": 4366.82, + "probability": 1.0 + }, + { + "word": " personal", + "start": 4366.82, + "end": 4367.16, + "probability": 0.9990234375 + }, + { + "word": " experience,", + "start": 4367.16, + "end": 4367.48, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4367.72, + "end": 4367.86, + "probability": 0.994140625 + }, + { + "word": " have", + "start": 4367.86, + "end": 4367.98, + "probability": 0.99853515625 + }, + { + "word": " never", + "start": 4367.98, + "end": 4368.22, + "probability": 0.9990234375 + }, + { + "word": " asked", + "start": 4368.22, + "end": 4368.64, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 4368.64, + "end": 4369.1, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4369.1, + "end": 4369.62, + "probability": 0.99951171875 + }, + { + "word": " program", + "start": 4369.62, + "end": 4370.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4370.5, + "end": 4370.8, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 4370.8, + "end": 4370.92, + "probability": 1.0 + }, + { + "word": " displayed", + "start": 4370.92, + "end": 4371.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1838, + "text": "on my television that was not available.", + "start": 4371.3, + "end": 4373.38, + "words": [ + { + "word": " on", + "start": 4371.3, + "end": 4371.62, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4371.62, + "end": 4371.78, + "probability": 0.99951171875 + }, + { + "word": " television", + "start": 4371.78, + "end": 4372.28, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 4372.28, + "end": 4372.76, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 4372.76, + "end": 4372.92, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 4372.92, + "end": 4373.08, + "probability": 1.0 + }, + { + "word": " available.", + "start": 4373.08, + "end": 4373.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1839, + "text": "Okay.", + "start": 4374.06, + "end": 4374.54, + "words": [ + { + "word": " Okay.", + "start": 4374.06, + "end": 4374.54, + "probability": 0.96728515625 + } + ] + }, + { + "id": 1840, + "text": "Like the Heroes Channel, which formerly was called the Heroes Channel.", + "start": 4374.56, + "end": 4378.24, + "words": [ + { + "word": " Like", + "start": 4374.56, + "end": 4374.74, + "probability": 0.89892578125 + }, + { + "word": " the", + "start": 4374.74, + "end": 4374.94, + "probability": 0.90966796875 + }, + { + "word": " Heroes", + "start": 4374.94, + "end": 4375.6, + "probability": 0.8427734375 + }, + { + "word": " Channel,", + "start": 4375.6, + "end": 4376.78, + "probability": 0.91796875 + }, + { + "word": " which", + "start": 4376.96, + "end": 4377.14, + "probability": 0.99951171875 + }, + { + "word": " formerly", + "start": 4377.14, + "end": 4377.64, + "probability": 0.98486328125 + }, + { + "word": " was", + "start": 4377.64, + "end": 4377.94, + "probability": 0.9873046875 + }, + { + "word": " called", + "start": 4377.94, + "end": 4378.14, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 4378.14, + "end": 4378.24, + "probability": 0.13818359375 + }, + { + "word": " Heroes", + "start": 4378.24, + "end": 4378.24, + "probability": 0.421630859375 + }, + { + "word": " Channel.", + "start": 4378.24, + "end": 4378.24, + "probability": 0.84130859375 + } + ] + }, + { + "id": 1841, + "text": "", + "start": 4378.24, + "end": 4378.24, + "words": [] + }, + { + "id": 1842, + "text": "", + "start": 4378.24, + "end": 4378.24, + "words": [] + }, + { + "id": 1843, + "text": "The Heroes Channel is the military channel.", + "start": 4378.24, + "end": 4379.12, + "words": [ + { + "word": " The", + "start": 4378.24, + "end": 4378.34, + "probability": 0.05108642578125 + }, + { + "word": " Heroes", + "start": 4378.34, + "end": 4378.56, + "probability": 1.0132789611816406e-06 + }, + { + "word": " Channel", + "start": 4378.56, + "end": 4378.56, + "probability": 8.535385131835938e-05 + }, + { + "word": " is", + "start": 4378.56, + "end": 4378.56, + "probability": 0.134521484375 + }, + { + "word": " the", + "start": 4378.56, + "end": 4378.56, + "probability": 0.114013671875 + }, + { + "word": " military", + "start": 4378.56, + "end": 4378.56, + "probability": 0.326171875 + }, + { + "word": " channel.", + "start": 4378.56, + "end": 4379.12, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1844, + "text": "That's one I like to watch a lot.", + "start": 4379.660000000001, + "end": 4381.14, + "words": [ + { + "word": " That's", + "start": 4379.660000000001, + "end": 4380.02, + "probability": 0.998046875 + }, + { + "word": " one", + "start": 4380.02, + "end": 4380.12, + "probability": 0.86865234375 + }, + { + "word": " I", + "start": 4380.12, + "end": 4380.3, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 4380.3, + "end": 4380.48, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 4380.48, + "end": 4380.6, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4380.6, + "end": 4380.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 4380.8, + "end": 4380.98, + "probability": 0.99951171875 + }, + { + "word": " lot.", + "start": 4380.98, + "end": 4381.14, + "probability": 1.0 + } + ] + }, + { + "id": 1845, + "text": "I don't know.", + "start": 4381.38, + "end": 4381.76, + "words": [ + { + "word": " I", + "start": 4381.38, + "end": 4381.38, + "probability": 0.031585693359375 + }, + { + "word": " don't", + "start": 4381.38, + "end": 4381.76, + "probability": 0.8984375 + }, + { + "word": " know.", + "start": 4381.76, + "end": 4381.76, + "probability": 0.728515625 + } + ] + }, + { + "id": 1846, + "text": "They definitely have a lot of those kinds of shows on Amazon Prime, because I watch some", + "start": 4381.9, + "end": 4385.32, + "words": [ + { + "word": " They", + "start": 4381.9, + "end": 4382.26, + "probability": 0.88623046875 + }, + { + "word": " definitely", + "start": 4382.26, + "end": 4382.58, + "probability": 0.9970703125 + }, + { + "word": " have", + "start": 4382.58, + "end": 4382.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 4382.86, + "end": 4382.88, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4382.88, + "end": 4383.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 4383.1, + "end": 4383.14, + "probability": 1.0 + }, + { + "word": " those", + "start": 4383.14, + "end": 4383.32, + "probability": 0.99951171875 + }, + { + "word": " kinds", + "start": 4383.32, + "end": 4383.56, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4383.56, + "end": 4383.7, + "probability": 1.0 + }, + { + "word": " shows", + "start": 4383.7, + "end": 4383.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 4383.9, + "end": 4384.14, + "probability": 0.99951171875 + }, + { + "word": " Amazon", + "start": 4384.14, + "end": 4384.4, + "probability": 0.99951171875 + }, + { + "word": " Prime,", + "start": 4384.4, + "end": 4384.74, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 4384.86, + "end": 4384.94, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4384.94, + "end": 4385.04, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4385.04, + "end": 4385.2, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 4385.2, + "end": 4385.32, + "probability": 1.0 + } + ] + }, + { + "id": 1847, + "text": "of that stuff too.", + "start": 4385.32, + "end": 4385.9, + "words": [ + { + "word": " of", + "start": 4385.32, + "end": 4385.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 4385.4, + "end": 4385.48, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4385.48, + "end": 4385.66, + "probability": 1.0 + }, + { + "word": " too.", + "start": 4385.66, + "end": 4385.9, + "probability": 0.259765625 + } + ] + }, + { + "id": 1848, + "text": "It might be worth just looking around.", + "start": 4386.56, + "end": 4387.98, + "words": [ + { + "word": " It", + "start": 4386.56, + "end": 4386.78, + "probability": 0.6220703125 + }, + { + "word": " might", + "start": 4386.78, + "end": 4387.12, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 4387.12, + "end": 4387.24, + "probability": 1.0 + }, + { + "word": " worth", + "start": 4387.24, + "end": 4387.4, + "probability": 0.921875 + }, + { + "word": " just", + "start": 4387.4, + "end": 4387.58, + "probability": 0.998046875 + }, + { + "word": " looking", + "start": 4387.58, + "end": 4387.82, + "probability": 1.0 + }, + { + "word": " around.", + "start": 4387.82, + "end": 4387.98, + "probability": 1.0 + } + ] + }, + { + "id": 1849, + "text": "You can go to the Amazon website and check out what they've got available as far as TV.", + "start": 4388.2, + "end": 4391.62, + "words": [ + { + "word": " You", + "start": 4388.2, + "end": 4388.32, + "probability": 0.990234375 + }, + { + "word": " can", + "start": 4388.32, + "end": 4388.44, + "probability": 1.0 + }, + { + "word": " go", + "start": 4388.44, + "end": 4388.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 4388.56, + "end": 4388.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 4388.68, + "end": 4388.74, + "probability": 0.99951171875 + }, + { + "word": " Amazon", + "start": 4388.74, + "end": 4388.98, + "probability": 1.0 + }, + { + "word": " website", + "start": 4388.98, + "end": 4389.5, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4389.5, + "end": 4389.84, + "probability": 0.98974609375 + }, + { + "word": " check", + "start": 4389.84, + "end": 4390.04, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4390.04, + "end": 4390.2, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 4390.2, + "end": 4390.34, + "probability": 1.0 + }, + { + "word": " they've", + "start": 4390.34, + "end": 4390.5, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 4390.5, + "end": 4390.6, + "probability": 1.0 + }, + { + "word": " available", + "start": 4390.6, + "end": 4390.88, + "probability": 1.0 + }, + { + "word": " as", + "start": 4390.88, + "end": 4391.14, + "probability": 0.97802734375 + }, + { + "word": " far", + "start": 4391.14, + "end": 4391.26, + "probability": 1.0 + }, + { + "word": " as", + "start": 4391.26, + "end": 4391.36, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 4391.36, + "end": 4391.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1850, + "text": "Yeah, I have to tell them about that, because like I said, when I was taking care of his", + "start": 4391.82, + "end": 4395.32, + "words": [ + { + "word": " Yeah,", + "start": 4391.82, + "end": 4391.92, + "probability": 0.828125 + }, + { + "word": " I", + "start": 4391.92, + "end": 4391.94, + "probability": 1.0 + }, + { + "word": " have", + "start": 4391.94, + "end": 4392.1, + "probability": 0.361572265625 + }, + { + "word": " to", + "start": 4392.1, + "end": 4392.26, + "probability": 1.0 + }, + { + "word": " tell", + "start": 4392.26, + "end": 4392.46, + "probability": 1.0 + }, + { + "word": " them", + "start": 4392.46, + "end": 4392.6, + "probability": 0.7607421875 + }, + { + "word": " about", + "start": 4392.6, + "end": 4392.82, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4392.82, + "end": 4393.04, + "probability": 1.0 + }, + { + "word": " because", + "start": 4393.14, + "end": 4393.26, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4393.26, + "end": 4393.52, + "probability": 0.900390625 + }, + { + "word": " I", + "start": 4393.52, + "end": 4393.9, + "probability": 1.0 + }, + { + "word": " said,", + "start": 4393.9, + "end": 4394.12, + "probability": 0.8173828125 + }, + { + "word": " when", + "start": 4394.18, + "end": 4394.28, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4394.28, + "end": 4394.4, + "probability": 1.0 + }, + { + "word": " was", + "start": 4394.4, + "end": 4394.56, + "probability": 1.0 + }, + { + "word": " taking", + "start": 4394.56, + "end": 4394.78, + "probability": 1.0 + }, + { + "word": " care", + "start": 4394.78, + "end": 4395.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 4395.08, + "end": 4395.2, + "probability": 1.0 + }, + { + "word": " his", + "start": 4395.2, + "end": 4395.32, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1851, + "text": "place for a week or two, I was both frustrated and a little PO'd about the way that they", + "start": 4395.32, + "end": 4402.2, + "words": [ + { + "word": " place", + "start": 4395.32, + "end": 4395.58, + "probability": 0.99658203125 + }, + { + "word": " for", + "start": 4395.58, + "end": 4395.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 4395.76, + "end": 4395.88, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 4395.88, + "end": 4396.08, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4396.08, + "end": 4396.22, + "probability": 1.0 + }, + { + "word": " two,", + "start": 4396.22, + "end": 4396.4, + "probability": 1.0 + }, + { + "word": " I", + "start": 4396.54, + "end": 4397.06, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4397.06, + "end": 4397.34, + "probability": 1.0 + }, + { + "word": " both", + "start": 4397.34, + "end": 4397.76, + "probability": 0.9931640625 + }, + { + "word": " frustrated", + "start": 4397.76, + "end": 4398.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 4398.36, + "end": 4398.68, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4398.68, + "end": 4398.8, + "probability": 1.0 + }, + { + "word": " little", + "start": 4398.8, + "end": 4399.08, + "probability": 1.0 + }, + { + "word": " PO'd", + "start": 4399.08, + "end": 4399.94, + "probability": 0.767578125 + }, + { + "word": " about", + "start": 4399.94, + "end": 4400.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4400.58, + "end": 4401.28, + "probability": 1.0 + }, + { + "word": " way", + "start": 4401.28, + "end": 4401.82, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4401.82, + "end": 4402.04, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4402.04, + "end": 4402.2, + "probability": 1.0 + } + ] + }, + { + "id": 1852, + "text": "had it set up.", + "start": 4402.2, + "end": 4402.98, + "words": [ + { + "word": " had", + "start": 4402.2, + "end": 4402.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 4402.36, + "end": 4402.52, + "probability": 1.0 + }, + { + "word": " set", + "start": 4402.52, + "end": 4402.72, + "probability": 1.0 + }, + { + "word": " up.", + "start": 4402.72, + "end": 4402.98, + "probability": 1.0 + } + ] + }, + { + "id": 1853, + "text": "I mean, there was a lot of choices, but almost everything.", + "start": 4403.16, + "end": 4406.18, + "words": [ + { + "word": " I", + "start": 4403.16, + "end": 4403.16, + "probability": 0.5654296875 + }, + { + "word": " mean,", + "start": 4403.16, + "end": 4403.28, + "probability": 1.0 + }, + { + "word": " there", + "start": 4403.3, + "end": 4403.54, + "probability": 0.97607421875 + }, + { + "word": " was", + "start": 4403.54, + "end": 4404.14, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 4404.14, + "end": 4404.24, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4404.24, + "end": 4404.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 4404.38, + "end": 4404.5, + "probability": 1.0 + }, + { + "word": " choices,", + "start": 4404.5, + "end": 4404.9, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 4405.0, + "end": 4405.54, + "probability": 0.9287109375 + }, + { + "word": " almost", + "start": 4405.54, + "end": 4405.78, + "probability": 0.99951171875 + }, + { + "word": " everything.", + "start": 4405.78, + "end": 4406.18, + "probability": 1.0 + } + ] + }, + { + "id": 1854, + "text": "There was a few things that I was a little bit frustrated about.", + "start": 4406.880000000001, + "end": 4408.22, + "words": [ + { + "word": " There", + "start": 4406.880000000001, + "end": 4407.240000000001, + "probability": 0.9755859375 + }, + { + "word": " was", + "start": 4407.240000000001, + "end": 4407.6, + "probability": 0.75439453125 + }, + { + "word": " a", + "start": 4407.6, + "end": 4407.74, + "probability": 1.0 + }, + { + "word": " few", + "start": 4407.74, + "end": 4407.92, + "probability": 1.0 + }, + { + "word": " things", + "start": 4407.92, + "end": 4408.14, + "probability": 0.994140625 + }, + { + "word": " that", + "start": 4408.14, + "end": 4408.22, + "probability": 0.439697265625 + }, + { + "word": " I", + "start": 4408.22, + "end": 4408.22, + "probability": 0.52685546875 + }, + { + "word": " was", + "start": 4408.22, + "end": 4408.22, + "probability": 0.21240234375 + }, + { + "word": " a", + "start": 4408.22, + "end": 4408.22, + "probability": 0.35400390625 + }, + { + "word": " little", + "start": 4408.22, + "end": 4408.22, + "probability": 0.97119140625 + }, + { + "word": " bit", + "start": 4408.22, + "end": 4408.22, + "probability": 0.46728515625 + }, + { + "word": " frustrated", + "start": 4408.22, + "end": 4408.22, + "probability": 0.1895751953125 + }, + { + "word": " about.", + "start": 4408.22, + "end": 4408.22, + "probability": 0.7998046875 + } + ] + }, + { + "id": 1855, + "text": "", + "start": 4408.22, + "end": 4408.22, + "words": [] + }, + { + "id": 1856, + "text": "", + "start": 4408.22, + "end": 4408.22, + "words": [] + }, + { + "id": 1857, + "text": "", + "start": 4408.22, + "end": 4408.22, + "words": [] + }, + { + "id": 1858, + "text": "I mean, I was a little bit frustrated about the fact that I was not able to get a lot", + "start": 4408.22, + "end": 4408.42, + "words": [ + { + "word": " I", + "start": 4408.22, + "end": 4408.42, + "probability": 0.0023250579833984375 + }, + { + "word": " mean,", + "start": 4408.42, + "end": 4408.42, + "probability": 0.041351318359375 + }, + { + "word": " I", + "start": 4408.42, + "end": 4408.42, + "probability": 0.10565185546875 + }, + { + "word": " was", + "start": 4408.42, + "end": 4408.42, + "probability": 0.07177734375 + }, + { + "word": " a", + "start": 4408.42, + "end": 4408.42, + "probability": 0.007350921630859375 + }, + { + "word": " little", + "start": 4408.42, + "end": 4408.42, + "probability": 0.1429443359375 + }, + { + "word": " bit", + "start": 4408.42, + "end": 4408.42, + "probability": 0.306640625 + }, + { + "word": " frustrated", + "start": 4408.42, + "end": 4408.42, + "probability": 0.00945281982421875 + }, + { + "word": " about", + "start": 4408.42, + "end": 4408.42, + "probability": 0.047760009765625 + }, + { + "word": " the", + "start": 4408.42, + "end": 4408.42, + "probability": 0.1243896484375 + }, + { + "word": " fact", + "start": 4408.42, + "end": 4408.42, + "probability": 0.1878662109375 + }, + { + "word": " that", + "start": 4408.42, + "end": 4408.42, + "probability": 0.97119140625 + }, + { + "word": " I", + "start": 4408.42, + "end": 4408.42, + "probability": 0.290771484375 + }, + { + "word": " was", + "start": 4408.42, + "end": 4408.42, + "probability": 0.3134765625 + }, + { + "word": " not", + "start": 4408.42, + "end": 4408.42, + "probability": 0.07257080078125 + }, + { + "word": " able", + "start": 4408.42, + "end": 4408.42, + "probability": 0.140869140625 + }, + { + "word": " to", + "start": 4408.42, + "end": 4408.42, + "probability": 0.9912109375 + }, + { + "word": " get", + "start": 4408.42, + "end": 4408.42, + "probability": 0.294921875 + }, + { + "word": " a", + "start": 4408.42, + "end": 4408.42, + "probability": 0.1129150390625 + }, + { + "word": " lot", + "start": 4408.42, + "end": 4408.42, + "probability": 0.05731201171875 + } + ] + }, + { + "id": 1859, + "text": "of the things that were available for free, maybe half a dozen things that were free, and", + "start": 4408.42, + "end": 4411.3, + "words": [ + { + "word": " of", + "start": 4408.42, + "end": 4408.42, + "probability": 0.95556640625 + }, + { + "word": " the", + "start": 4408.42, + "end": 4408.42, + "probability": 0.06842041015625 + }, + { + "word": " things", + "start": 4408.42, + "end": 4408.42, + "probability": 0.054351806640625 + }, + { + "word": " that", + "start": 4408.42, + "end": 4408.42, + "probability": 0.52978515625 + }, + { + "word": " were", + "start": 4408.42, + "end": 4408.42, + "probability": 0.378173828125 + }, + { + "word": " available", + "start": 4408.42, + "end": 4408.42, + "probability": 0.0211334228515625 + }, + { + "word": " for", + "start": 4408.42, + "end": 4408.42, + "probability": 0.3271484375 + }, + { + "word": " free,", + "start": 4408.42, + "end": 4408.56, + "probability": 0.9345703125 + }, + { + "word": " maybe", + "start": 4408.7, + "end": 4408.88, + "probability": 0.94970703125 + }, + { + "word": " half", + "start": 4408.88, + "end": 4409.18, + "probability": 0.9755859375 + }, + { + "word": " a", + "start": 4409.18, + "end": 4409.26, + "probability": 0.99755859375 + }, + { + "word": " dozen", + "start": 4409.26, + "end": 4409.56, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 4409.56, + "end": 4410.2, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 4410.2, + "end": 4410.4, + "probability": 0.99853515625 + }, + { + "word": " were", + "start": 4410.4, + "end": 4410.5, + "probability": 1.0 + }, + { + "word": " free,", + "start": 4410.5, + "end": 4410.76, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4410.84, + "end": 4411.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1860, + "text": "then the rest was key in your credit card.", + "start": 4411.3, + "end": 4414.38, + "words": [ + { + "word": " then", + "start": 4411.3, + "end": 4411.52, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 4411.52, + "end": 4411.9, + "probability": 0.9990234375 + }, + { + "word": " rest", + "start": 4411.9, + "end": 4412.16, + "probability": 1.0 + }, + { + "word": " was", + "start": 4412.16, + "end": 4412.4, + "probability": 0.99755859375 + }, + { + "word": " key", + "start": 4412.4, + "end": 4413.6, + "probability": 0.4169921875 + }, + { + "word": " in", + "start": 4413.6, + "end": 4413.76, + "probability": 0.97802734375 + }, + { + "word": " your", + "start": 4413.76, + "end": 4413.9, + "probability": 0.99853515625 + }, + { + "word": " credit", + "start": 4413.9, + "end": 4414.16, + "probability": 1.0 + }, + { + "word": " card.", + "start": 4414.16, + "end": 4414.38, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1861, + "text": "You still have to consider, though, that there is a ... He's paying probably nothing per", + "start": 4414.54, + "end": 4420.4, + "words": [ + { + "word": " You", + "start": 4414.54, + "end": 4415.02, + "probability": 0.771484375 + }, + { + "word": " still", + "start": 4415.02, + "end": 4415.62, + "probability": 0.9853515625 + }, + { + "word": " have", + "start": 4415.62, + "end": 4415.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 4415.8, + "end": 4415.9, + "probability": 1.0 + }, + { + "word": " consider,", + "start": 4415.9, + "end": 4416.18, + "probability": 1.0 + }, + { + "word": " though,", + "start": 4416.28, + "end": 4416.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 4416.52, + "end": 4416.8, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 4416.8, + "end": 4417.08, + "probability": 0.58056640625 + }, + { + "word": " is", + "start": 4417.08, + "end": 4417.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 4417.34, + "end": 4417.64, + "probability": 1.0 + }, + { + "word": " ...", + "start": 4417.64, + "end": 4418.0, + "probability": 0.0106201171875 + }, + { + "word": " He's", + "start": 4418.0, + "end": 4418.62, + "probability": 0.9091796875 + }, + { + "word": " paying", + "start": 4418.62, + "end": 4418.86, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 4418.86, + "end": 4419.3, + "probability": 0.99609375 + }, + { + "word": " nothing", + "start": 4419.3, + "end": 4420.02, + "probability": 0.99951171875 + }, + { + "word": " per", + "start": 4420.02, + "end": 4420.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1862, + "text": "month other than internet for that, as opposed to what would be involved with a monthly charge", + "start": 4420.4, + "end": 4425.68, + "words": [ + { + "word": " month", + "start": 4420.4, + "end": 4420.7, + "probability": 1.0 + }, + { + "word": " other", + "start": 4420.7, + "end": 4421.22, + "probability": 0.86767578125 + }, + { + "word": " than", + "start": 4421.22, + "end": 4421.54, + "probability": 1.0 + }, + { + "word": " internet", + "start": 4421.54, + "end": 4421.82, + "probability": 0.82177734375 + }, + { + "word": " for", + "start": 4421.82, + "end": 4422.24, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 4422.24, + "end": 4422.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 4422.6, + "end": 4422.84, + "probability": 0.99951171875 + }, + { + "word": " opposed", + "start": 4422.84, + "end": 4423.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 4423.14, + "end": 4423.42, + "probability": 1.0 + }, + { + "word": " what", + "start": 4423.42, + "end": 4423.6, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 4423.6, + "end": 4423.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 4423.74, + "end": 4423.96, + "probability": 0.99951171875 + }, + { + "word": " involved", + "start": 4423.96, + "end": 4424.5, + "probability": 1.0 + }, + { + "word": " with", + "start": 4424.5, + "end": 4424.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4424.84, + "end": 4424.96, + "probability": 0.9990234375 + }, + { + "word": " monthly", + "start": 4424.96, + "end": 4425.34, + "probability": 0.99951171875 + }, + { + "word": " charge", + "start": 4425.34, + "end": 4425.68, + "probability": 1.0 + } + ] + }, + { + "id": 1863, + "text": "for a satellite or cable.", + "start": 4425.68, + "end": 4427.08, + "words": [ + { + "word": " for", + "start": 4425.68, + "end": 4426.06, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4426.06, + "end": 4426.18, + "probability": 0.495849609375 + }, + { + "word": " satellite", + "start": 4426.18, + "end": 4426.5, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 4426.5, + "end": 4426.76, + "probability": 0.9990234375 + }, + { + "word": " cable.", + "start": 4426.76, + "end": 4427.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1864, + "text": "Right, right, right.", + "start": 4427.2, + "end": 4427.58, + "words": [ + { + "word": " Right,", + "start": 4427.2, + "end": 4427.22, + "probability": 0.978515625 + }, + { + "word": " right,", + "start": 4427.22, + "end": 4427.38, + "probability": 0.99951171875 + }, + { + "word": " right.", + "start": 4427.38, + "end": 4427.58, + "probability": 1.0 + } + ] + }, + { + "id": 1865, + "text": "I'm just saying, not carrying a calculator around with me at all times and all that,", + "start": 4428.900000000001, + "end": 4435.38, + "words": [ + { + "word": " I'm", + "start": 4428.900000000001, + "end": 4429.38, + "probability": 0.78955078125 + }, + { + "word": " just", + "start": 4429.38, + "end": 4429.86, + "probability": 0.91162109375 + }, + { + "word": " saying,", + "start": 4429.86, + "end": 4431.46, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 4431.48, + "end": 4431.6, + "probability": 0.96826171875 + }, + { + "word": " carrying", + "start": 4431.6, + "end": 4431.96, + "probability": 0.97314453125 + }, + { + "word": " a", + "start": 4431.96, + "end": 4432.2, + "probability": 0.99951171875 + }, + { + "word": " calculator", + "start": 4432.2, + "end": 4433.24, + "probability": 1.0 + }, + { + "word": " around", + "start": 4433.24, + "end": 4433.78, + "probability": 0.69677734375 + }, + { + "word": " with", + "start": 4433.78, + "end": 4434.04, + "probability": 0.89697265625 + }, + { + "word": " me", + "start": 4434.04, + "end": 4434.22, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 4434.22, + "end": 4434.42, + "probability": 0.794921875 + }, + { + "word": " all", + "start": 4434.42, + "end": 4434.52, + "probability": 0.99951171875 + }, + { + "word": " times", + "start": 4434.52, + "end": 4434.72, + "probability": 0.978515625 + }, + { + "word": " and", + "start": 4434.72, + "end": 4434.96, + "probability": 0.9833984375 + }, + { + "word": " all", + "start": 4434.96, + "end": 4435.14, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4435.14, + "end": 4435.38, + "probability": 1.0 + } + ] + }, + { + "id": 1866, + "text": "I could see where my bill ...", + "start": 4435.48, + "end": 4437.46, + "words": [ + { + "word": " I", + "start": 4435.48, + "end": 4436.18, + "probability": 0.99609375 + }, + { + "word": " could", + "start": 4436.18, + "end": 4436.38, + "probability": 0.9970703125 + }, + { + "word": " see", + "start": 4436.38, + "end": 4436.6, + "probability": 1.0 + }, + { + "word": " where", + "start": 4436.6, + "end": 4436.84, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4436.84, + "end": 4437.0, + "probability": 0.99951171875 + }, + { + "word": " bill", + "start": 4437.0, + "end": 4437.3, + "probability": 0.99609375 + }, + { + "word": " ...", + "start": 4437.3, + "end": 4437.46, + "probability": 0.57373046875 + } + ] + }, + { + "id": 1867, + "text": "Yeah, I understand.", + "start": 4437.46, + "end": 4438.2, + "words": [ + { + "word": " Yeah,", + "start": 4437.46, + "end": 4438.2, + "probability": 0.0276947021484375 + }, + { + "word": " I", + "start": 4438.2, + "end": 4438.2, + "probability": 0.1444091796875 + }, + { + "word": " understand.", + "start": 4438.2, + "end": 4438.2, + "probability": 0.0780029296875 + } + ] + }, + { + "id": 1868, + "text": "I was paying like $90 a month for the Capital Nine Dish Network.", + "start": 4438.22, + "end": 4443.42, + "words": [ + { + "word": " I", + "start": 4438.22, + "end": 4438.32, + "probability": 0.82763671875 + }, + { + "word": " was", + "start": 4438.32, + "end": 4439.22, + "probability": 0.179443359375 + }, + { + "word": " paying", + "start": 4439.22, + "end": 4439.54, + "probability": 0.87841796875 + }, + { + "word": " like", + "start": 4439.54, + "end": 4439.76, + "probability": 0.9306640625 + }, + { + "word": " $90", + "start": 4439.76, + "end": 4440.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 4440.4, + "end": 4440.9, + "probability": 0.99951171875 + }, + { + "word": " month", + "start": 4440.9, + "end": 4441.2, + "probability": 1.0 + }, + { + "word": " for", + "start": 4441.2, + "end": 4441.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4441.46, + "end": 4441.58, + "probability": 0.998046875 + }, + { + "word": " Capital", + "start": 4441.58, + "end": 4441.9, + "probability": 0.68603515625 + }, + { + "word": " Nine", + "start": 4441.9, + "end": 4442.28, + "probability": 0.62158203125 + }, + { + "word": " Dish", + "start": 4442.28, + "end": 4443.08, + "probability": 0.73779296875 + }, + { + "word": " Network.", + "start": 4443.08, + "end": 4443.42, + "probability": 0.7744140625 + } + ] + }, + { + "id": 1869, + "text": "At the rate I would watch interesting programs in a month, I would way, way exceed $90 a", + "start": 4444.880000000001, + "end": 4452.64, + "words": [ + { + "word": " At", + "start": 4444.880000000001, + "end": 4445.320000000001, + "probability": 0.1776123046875 + }, + { + "word": " the", + "start": 4445.320000000001, + "end": 4445.76, + "probability": 0.97021484375 + }, + { + "word": " rate", + "start": 4445.76, + "end": 4445.98, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4445.98, + "end": 4446.28, + "probability": 0.98486328125 + }, + { + "word": " would", + "start": 4446.28, + "end": 4446.6, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4446.6, + "end": 4446.88, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 4446.88, + "end": 4447.12, + "probability": 0.9921875 + }, + { + "word": " programs", + "start": 4447.12, + "end": 4447.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 4447.9, + "end": 4448.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 4448.22, + "end": 4448.32, + "probability": 0.99951171875 + }, + { + "word": " month,", + "start": 4448.32, + "end": 4448.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 4448.6, + "end": 4448.74, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 4448.74, + "end": 4448.94, + "probability": 1.0 + }, + { + "word": " way,", + "start": 4448.94, + "end": 4449.22, + "probability": 0.998046875 + }, + { + "word": " way", + "start": 4449.34, + "end": 4449.58, + "probability": 1.0 + }, + { + "word": " exceed", + "start": 4449.58, + "end": 4450.38, + "probability": 1.0 + }, + { + "word": " $90", + "start": 4450.38, + "end": 4452.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 4452.18, + "end": 4452.64, + "probability": 1.0 + } + ] + }, + { + "id": 1870, + "text": "month if I were to go ahead and pay for those programs individually.", + "start": 4452.64, + "end": 4456.44, + "words": [ + { + "word": " month", + "start": 4452.64, + "end": 4452.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 4452.84, + "end": 4453.46, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 4453.46, + "end": 4453.58, + "probability": 1.0 + }, + { + "word": " were", + "start": 4453.58, + "end": 4453.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 4453.72, + "end": 4453.86, + "probability": 1.0 + }, + { + "word": " go", + "start": 4453.86, + "end": 4454.1, + "probability": 0.919921875 + }, + { + "word": " ahead", + "start": 4454.1, + "end": 4454.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 4454.46, + "end": 4455.02, + "probability": 0.99609375 + }, + { + "word": " pay", + "start": 4455.02, + "end": 4455.18, + "probability": 0.98388671875 + }, + { + "word": " for", + "start": 4455.18, + "end": 4455.38, + "probability": 1.0 + }, + { + "word": " those", + "start": 4455.38, + "end": 4455.58, + "probability": 0.99951171875 + }, + { + "word": " programs", + "start": 4455.58, + "end": 4456.0, + "probability": 1.0 + }, + { + "word": " individually.", + "start": 4456.0, + "end": 4456.44, + "probability": 1.0 + } + ] + }, + { + "id": 1871, + "text": "Yeah.", + "start": 4456.9, + "end": 4457.0, + "words": [ + { + "word": " Yeah.", + "start": 4456.9, + "end": 4457.0, + "probability": 6.860494613647461e-05 + } + ] + }, + { + "id": 1872, + "text": "When it's set up right, a cord cutting service, like I said, when it's set up right can cost", + "start": 4457.0, + "end": 4462.3, + "words": [ + { + "word": " When", + "start": 4457.0, + "end": 4457.0, + "probability": 0.9658203125 + }, + { + "word": " it's", + "start": 4457.0, + "end": 4457.2, + "probability": 0.9990234375 + }, + { + "word": " set", + "start": 4457.2, + "end": 4457.3, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4457.3, + "end": 4457.44, + "probability": 0.9931640625 + }, + { + "word": " right,", + "start": 4457.44, + "end": 4457.66, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4457.84, + "end": 4458.24, + "probability": 0.99853515625 + }, + { + "word": " cord", + "start": 4458.24, + "end": 4458.94, + "probability": 0.998046875 + }, + { + "word": " cutting", + "start": 4458.94, + "end": 4459.46, + "probability": 0.22265625 + }, + { + "word": " service,", + "start": 4459.46, + "end": 4459.9, + "probability": 1.0 + }, + { + "word": " like", + "start": 4460.24, + "end": 4460.84, + "probability": 0.97802734375 + }, + { + "word": " I", + "start": 4460.84, + "end": 4461.14, + "probability": 1.0 + }, + { + "word": " said,", + "start": 4461.14, + "end": 4461.26, + "probability": 1.0 + }, + { + "word": " when", + "start": 4461.26, + "end": 4461.36, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 4461.36, + "end": 4461.5, + "probability": 1.0 + }, + { + "word": " set", + "start": 4461.5, + "end": 4461.58, + "probability": 1.0 + }, + { + "word": " up", + "start": 4461.58, + "end": 4461.7, + "probability": 1.0 + }, + { + "word": " right", + "start": 4461.7, + "end": 4461.84, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 4461.84, + "end": 4462.02, + "probability": 0.359130859375 + }, + { + "word": " cost", + "start": 4462.02, + "end": 4462.3, + "probability": 1.0 + } + ] + }, + { + "id": 1873, + "text": "a fraction of that, and you'll have access to nearly everything.", + "start": 4462.3, + "end": 4464.76, + "words": [ + { + "word": " a", + "start": 4462.3, + "end": 4462.56, + "probability": 0.99951171875 + }, + { + "word": " fraction", + "start": 4462.56, + "end": 4462.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 4462.92, + "end": 4463.16, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4463.16, + "end": 4463.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 4463.38, + "end": 4463.5, + "probability": 0.99951171875 + }, + { + "word": " you'll", + "start": 4463.5, + "end": 4463.66, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4463.66, + "end": 4463.74, + "probability": 1.0 + }, + { + "word": " access", + "start": 4463.74, + "end": 4464.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4464.0, + "end": 4464.2, + "probability": 1.0 + }, + { + "word": " nearly", + "start": 4464.2, + "end": 4464.34, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 4464.34, + "end": 4464.76, + "probability": 1.0 + } + ] + }, + { + "id": 1874, + "text": "Right.", + "start": 4464.98, + "end": 4465.16, + "words": [ + { + "word": " Right.", + "start": 4464.98, + "end": 4465.16, + "probability": 0.9677734375 + } + ] + }, + { + "id": 1875, + "text": "So everything that I watch, if I were to take a ... If I were to add everything I'd have", + "start": 4465.2, + "end": 4468.2, + "words": [ + { + "word": " So", + "start": 4465.2, + "end": 4465.3, + "probability": 0.8876953125 + }, + { + "word": " everything", + "start": 4465.3, + "end": 4465.52, + "probability": 0.9560546875 + }, + { + "word": " that", + "start": 4465.52, + "end": 4465.76, + "probability": 1.0 + }, + { + "word": " I", + "start": 4465.76, + "end": 4465.9, + "probability": 1.0 + }, + { + "word": " watch,", + "start": 4465.9, + "end": 4466.14, + "probability": 1.0 + }, + { + "word": " if", + "start": 4466.26, + "end": 4466.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 4466.34, + "end": 4466.4, + "probability": 1.0 + }, + { + "word": " were", + "start": 4466.4, + "end": 4466.58, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 4466.58, + "end": 4466.78, + "probability": 1.0 + }, + { + "word": " take", + "start": 4466.78, + "end": 4466.92, + "probability": 0.0206298828125 + }, + { + "word": " a", + "start": 4466.92, + "end": 4467.02, + "probability": 0.921875 + }, + { + "word": " ...", + "start": 4467.02, + "end": 4467.14, + "probability": 0.00022423267364501953 + }, + { + "word": " If", + "start": 4467.14, + "end": 4467.32, + "probability": 0.8984375 + }, + { + "word": " I", + "start": 4467.32, + "end": 4467.42, + "probability": 1.0 + }, + { + "word": " were", + "start": 4467.42, + "end": 4467.5, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4467.5, + "end": 4467.62, + "probability": 0.99951171875 + }, + { + "word": " add", + "start": 4467.62, + "end": 4467.72, + "probability": 0.9990234375 + }, + { + "word": " everything", + "start": 4467.72, + "end": 4468.02, + "probability": 0.99951171875 + }, + { + "word": " I'd", + "start": 4468.02, + "end": 4468.2, + "probability": 0.028167724609375 + }, + { + "word": " have", + "start": 4468.2, + "end": 4468.2, + "probability": 0.08355712890625 + } + ] + }, + { + "id": 1876, + "text": "", + "start": 4468.2, + "end": 4468.2, + "words": [] + }, + { + "id": 1877, + "text": "that is involved with the system that I use for being able to get everything.", + "start": 4468.22, + "end": 4473.82, + "words": [ + { + "word": " that", + "start": 4468.22, + "end": 4468.52, + "probability": 0.9775390625 + }, + { + "word": " is", + "start": 4468.52, + "end": 4468.84, + "probability": 0.99951171875 + }, + { + "word": " involved", + "start": 4468.84, + "end": 4469.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 4469.2, + "end": 4469.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 4469.62, + "end": 4469.92, + "probability": 1.0 + }, + { + "word": " system", + "start": 4469.92, + "end": 4470.96, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4470.96, + "end": 4471.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 4471.18, + "end": 4471.4, + "probability": 0.990234375 + }, + { + "word": " use", + "start": 4471.4, + "end": 4471.76, + "probability": 1.0 + }, + { + "word": " for", + "start": 4471.76, + "end": 4472.36, + "probability": 0.9990234375 + }, + { + "word": " being", + "start": 4472.36, + "end": 4473.2, + "probability": 1.0 + }, + { + "word": " able", + "start": 4473.2, + "end": 4473.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 4473.4, + "end": 4473.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 4473.52, + "end": 4473.6, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 4473.6, + "end": 4473.82, + "probability": 1.0 + } + ] + }, + { + "id": 1878, + "text": "Like I said, I've never run across a program that I did not have access to for the included price.", + "start": 4473.94, + "end": 4480.28, + "words": [ + { + "word": " Like", + "start": 4473.94, + "end": 4474.06, + "probability": 0.65771484375 + }, + { + "word": " I", + "start": 4474.06, + "end": 4474.22, + "probability": 1.0 + }, + { + "word": " said,", + "start": 4474.22, + "end": 4474.36, + "probability": 1.0 + }, + { + "word": " I've", + "start": 4474.4, + "end": 4474.56, + "probability": 0.99951171875 + }, + { + "word": " never", + "start": 4474.56, + "end": 4474.78, + "probability": 1.0 + }, + { + "word": " run", + "start": 4474.78, + "end": 4475.0, + "probability": 0.99951171875 + }, + { + "word": " across", + "start": 4475.0, + "end": 4475.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 4475.22, + "end": 4475.42, + "probability": 0.99951171875 + }, + { + "word": " program", + "start": 4475.42, + "end": 4475.68, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4475.68, + "end": 4475.9, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4475.9, + "end": 4476.02, + "probability": 1.0 + }, + { + "word": " did", + "start": 4476.02, + "end": 4476.36, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 4476.36, + "end": 4476.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 4476.56, + "end": 4476.94, + "probability": 1.0 + }, + { + "word": " access", + "start": 4476.94, + "end": 4477.84, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4477.84, + "end": 4478.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 4478.12, + "end": 4478.58, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4478.58, + "end": 4479.38, + "probability": 1.0 + }, + { + "word": " included", + "start": 4479.38, + "end": 4479.86, + "probability": 1.0 + }, + { + "word": " price.", + "start": 4479.86, + "end": 4480.28, + "probability": 1.0 + } + ] + }, + { + "id": 1879, + "text": "I pay $80 a year for Amazon Prime, and then I paid about $30 a month for the additional services", + "start": 4480.52, + "end": 4493.14, + "words": [ + { + "word": " I", + "start": 4480.52, + "end": 4480.96, + "probability": 0.99951171875 + }, + { + "word": " pay", + "start": 4480.96, + "end": 4481.14, + "probability": 0.99560546875 + }, + { + "word": " $80", + "start": 4481.14, + "end": 4481.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 4481.5, + "end": 4481.72, + "probability": 1.0 + }, + { + "word": " year", + "start": 4481.72, + "end": 4481.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 4481.94, + "end": 4482.5, + "probability": 0.99951171875 + }, + { + "word": " Amazon", + "start": 4482.5, + "end": 4483.08, + "probability": 1.0 + }, + { + "word": " Prime,", + "start": 4483.08, + "end": 4483.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 4483.8, + "end": 4484.46, + "probability": 0.998046875 + }, + { + "word": " then", + "start": 4484.46, + "end": 4485.18, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 4485.18, + "end": 4486.84, + "probability": 1.0 + }, + { + "word": " paid", + "start": 4486.84, + "end": 4487.4, + "probability": 0.974609375 + }, + { + "word": " about", + "start": 4487.4, + "end": 4488.04, + "probability": 1.0 + }, + { + "word": " $30", + "start": 4488.04, + "end": 4489.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 4489.66, + "end": 4490.12, + "probability": 1.0 + }, + { + "word": " month", + "start": 4490.12, + "end": 4490.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 4490.42, + "end": 4491.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 4491.38, + "end": 4492.06, + "probability": 1.0 + }, + { + "word": " additional", + "start": 4492.06, + "end": 4492.52, + "probability": 1.0 + }, + { + "word": " services", + "start": 4492.52, + "end": 4493.14, + "probability": 1.0 + } + ] + }, + { + "id": 1880, + "text": "that go on some of the back-end stuff of what I use, and then Internet.", + "start": 4493.14, + "end": 4496.44, + "words": [ + { + "word": " that", + "start": 4493.14, + "end": 4493.42, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 4493.42, + "end": 4493.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 4493.54, + "end": 4493.68, + "probability": 0.9384765625 + }, + { + "word": " some", + "start": 4493.68, + "end": 4493.84, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4493.84, + "end": 4493.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 4493.94, + "end": 4494.0, + "probability": 1.0 + }, + { + "word": " back", + "start": 4494.0, + "end": 4494.22, + "probability": 0.8935546875 + }, + { + "word": "-end", + "start": 4494.22, + "end": 4494.52, + "probability": 0.91015625 + }, + { + "word": " stuff", + "start": 4494.52, + "end": 4494.88, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4494.88, + "end": 4495.06, + "probability": 0.9931640625 + }, + { + "word": " what", + "start": 4495.06, + "end": 4495.36, + "probability": 1.0 + }, + { + "word": " I", + "start": 4495.36, + "end": 4495.48, + "probability": 1.0 + }, + { + "word": " use,", + "start": 4495.48, + "end": 4495.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 4495.84, + "end": 4496.02, + "probability": 1.0 + }, + { + "word": " then", + "start": 4496.02, + "end": 4496.14, + "probability": 0.9990234375 + }, + { + "word": " Internet.", + "start": 4496.14, + "end": 4496.44, + "probability": 0.7392578125 + } + ] + }, + { + "id": 1881, + "text": "And that's it.", + "start": 4496.6, + "end": 4497.54, + "words": [ + { + "word": " And", + "start": 4496.6, + "end": 4497.12, + "probability": 0.87158203125 + }, + { + "word": " that's", + "start": 4497.12, + "end": 4497.38, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4497.38, + "end": 4497.54, + "probability": 1.0 + } + ] + }, + { + "id": 1882, + "text": "Oh, that's pretty good because, I mean, yeah, obviously at $90 a month, you'd be paying a lot of money.", + "start": 4497.54, + "end": 4503.26, + "words": [ + { + "word": " Oh,", + "start": 4497.54, + "end": 4497.78, + "probability": 0.54248046875 + }, + { + "word": " that's", + "start": 4497.78, + "end": 4497.96, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 4497.96, + "end": 4498.12, + "probability": 0.99609375 + }, + { + "word": " good", + "start": 4498.12, + "end": 4498.76, + "probability": 0.99462890625 + }, + { + "word": " because,", + "start": 4498.76, + "end": 4499.32, + "probability": 0.5888671875 + }, + { + "word": " I", + "start": 4499.54, + "end": 4499.64, + "probability": 0.99267578125 + }, + { + "word": " mean,", + "start": 4499.64, + "end": 4499.78, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 4499.82, + "end": 4500.06, + "probability": 0.73828125 + }, + { + "word": " obviously", + "start": 4500.08, + "end": 4500.46, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 4500.46, + "end": 4500.74, + "probability": 0.94482421875 + }, + { + "word": " $90", + "start": 4500.74, + "end": 4501.12, + "probability": 0.9375 + }, + { + "word": " a", + "start": 4501.12, + "end": 4501.4, + "probability": 0.99951171875 + }, + { + "word": " month,", + "start": 4501.4, + "end": 4501.64, + "probability": 1.0 + }, + { + "word": " you'd", + "start": 4501.74, + "end": 4502.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 4502.28, + "end": 4502.38, + "probability": 1.0 + }, + { + "word": " paying", + "start": 4502.38, + "end": 4502.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 4502.64, + "end": 4502.78, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4502.78, + "end": 4502.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 4502.92, + "end": 4503.0, + "probability": 1.0 + }, + { + "word": " money.", + "start": 4503.0, + "end": 4503.26, + "probability": 1.0 + } + ] + }, + { + "id": 1883, + "text": "Right.", + "start": 4503.34, + "end": 4503.7, + "words": [ + { + "word": " Right.", + "start": 4503.34, + "end": 4503.7, + "probability": 0.85302734375 + } + ] + }, + { + "id": 1884, + "text": "And you'd be paying $1,200 almost a month.", + "start": 4503.82, + "end": 4506.38, + "words": [ + { + "word": " And", + "start": 4503.82, + "end": 4503.98, + "probability": 0.91552734375 + }, + { + "word": " you'd", + "start": 4503.98, + "end": 4504.24, + "probability": 0.8671875 + }, + { + "word": " be", + "start": 4504.24, + "end": 4504.3, + "probability": 1.0 + }, + { + "word": " paying", + "start": 4504.3, + "end": 4504.6, + "probability": 1.0 + }, + { + "word": " $1", + "start": 4504.6, + "end": 4504.98, + "probability": 0.99755859375 + }, + { + "word": ",200", + "start": 4504.98, + "end": 4505.22, + "probability": 1.0 + }, + { + "word": " almost", + "start": 4505.22, + "end": 4505.82, + "probability": 0.98779296875 + }, + { + "word": " a", + "start": 4505.82, + "end": 4506.12, + "probability": 1.0 + }, + { + "word": " month.", + "start": 4506.12, + "end": 4506.38, + "probability": 1.0 + } + ] + }, + { + "id": 1885, + "text": "When we do the get-together in, like, April or whatever, we'll show a demo of how to do it right.", + "start": 4506.48, + "end": 4512.72, + "words": [ + { + "word": " When", + "start": 4506.48, + "end": 4506.82, + "probability": 0.58349609375 + }, + { + "word": " we", + "start": 4506.82, + "end": 4508.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 4508.04, + "end": 4508.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 4508.18, + "end": 4508.28, + "probability": 1.0 + }, + { + "word": " get", + "start": 4508.28, + "end": 4508.4, + "probability": 0.9736328125 + }, + { + "word": "-together", + "start": 4508.4, + "end": 4508.72, + "probability": 0.98876953125 + }, + { + "word": " in,", + "start": 4508.72, + "end": 4509.1, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4509.1, + "end": 4509.56, + "probability": 1.0 + }, + { + "word": " April", + "start": 4509.66, + "end": 4509.94, + "probability": 1.0 + }, + { + "word": " or", + "start": 4509.94, + "end": 4510.1, + "probability": 1.0 + }, + { + "word": " whatever,", + "start": 4510.1, + "end": 4510.34, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 4510.54, + "end": 4510.8, + "probability": 1.0 + }, + { + "word": " show", + "start": 4510.8, + "end": 4511.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 4511.46, + "end": 4511.58, + "probability": 1.0 + }, + { + "word": " demo", + "start": 4511.58, + "end": 4511.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4511.86, + "end": 4512.04, + "probability": 1.0 + }, + { + "word": " how", + "start": 4512.04, + "end": 4512.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 4512.16, + "end": 4512.3, + "probability": 1.0 + }, + { + "word": " do", + "start": 4512.3, + "end": 4512.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 4512.44, + "end": 4512.56, + "probability": 1.0 + }, + { + "word": " right.", + "start": 4512.56, + "end": 4512.72, + "probability": 1.0 + } + ] + }, + { + "id": 1886, + "text": "And you guys can come down and check out what cord cutting actually looks like if you do it properly.", + "start": 4513.56, + "end": 4517.66, + "words": [ + { + "word": " And", + "start": 4513.56, + "end": 4513.92, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 4513.92, + "end": 4514.28, + "probability": 1.0 + }, + { + "word": " guys", + "start": 4514.28, + "end": 4514.48, + "probability": 1.0 + }, + { + "word": " can", + "start": 4514.48, + "end": 4514.64, + "probability": 1.0 + }, + { + "word": " come", + "start": 4514.64, + "end": 4514.94, + "probability": 1.0 + }, + { + "word": " down", + "start": 4514.94, + "end": 4515.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 4515.1, + "end": 4515.2, + "probability": 1.0 + }, + { + "word": " check", + "start": 4515.2, + "end": 4515.34, + "probability": 1.0 + }, + { + "word": " out", + "start": 4515.34, + "end": 4515.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 4515.5, + "end": 4515.64, + "probability": 1.0 + }, + { + "word": " cord", + "start": 4515.64, + "end": 4515.88, + "probability": 0.9970703125 + }, + { + "word": " cutting", + "start": 4515.88, + "end": 4516.06, + "probability": 0.90966796875 + }, + { + "word": " actually", + "start": 4516.06, + "end": 4516.44, + "probability": 1.0 + }, + { + "word": " looks", + "start": 4516.44, + "end": 4516.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 4516.74, + "end": 4517.0, + "probability": 1.0 + }, + { + "word": " if", + "start": 4517.0, + "end": 4517.12, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4517.12, + "end": 4517.18, + "probability": 1.0 + }, + { + "word": " do", + "start": 4517.18, + "end": 4517.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 4517.28, + "end": 4517.38, + "probability": 1.0 + }, + { + "word": " properly.", + "start": 4517.38, + "end": 4517.66, + "probability": 1.0 + } + ] + }, + { + "id": 1887, + "text": "But thanks for the call, Rick.", + "start": 4518.0, + "end": 4519.02, + "words": [ + { + "word": " But", + "start": 4518.0, + "end": 4518.36, + "probability": 0.97998046875 + }, + { + "word": " thanks", + "start": 4518.36, + "end": 4518.54, + "probability": 0.99609375 + }, + { + "word": " for", + "start": 4518.54, + "end": 4518.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 4518.58, + "end": 4518.74, + "probability": 1.0 + }, + { + "word": " call,", + "start": 4518.74, + "end": 4518.84, + "probability": 1.0 + }, + { + "word": " Rick.", + "start": 4518.9, + "end": 4519.02, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1888, + "text": "Yeah, I've got a question for you.", + "start": 4519.14, + "end": 4519.6, + "words": [ + { + "word": " Yeah,", + "start": 4519.14, + "end": 4519.26, + "probability": 0.8232421875 + }, + { + "word": " I've", + "start": 4519.26, + "end": 4519.26, + "probability": 0.78125 + }, + { + "word": " got", + "start": 4519.26, + "end": 4519.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 4519.26, + "end": 4519.26, + "probability": 1.0 + }, + { + "word": " question", + "start": 4519.26, + "end": 4519.26, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4519.26, + "end": 4519.46, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 4519.46, + "end": 4519.6, + "probability": 0.96630859375 + } + ] + }, + { + "id": 1889, + "text": "Yeah, go ahead.", + "start": 4519.6, + "end": 4520.16, + "words": [ + { + "word": " Yeah,", + "start": 4519.6, + "end": 4519.96, + "probability": 0.94140625 + }, + { + "word": " go", + "start": 4519.96, + "end": 4520.06, + "probability": 0.9951171875 + }, + { + "word": " ahead.", + "start": 4520.06, + "end": 4520.16, + "probability": 1.0 + } + ] + }, + { + "id": 1890, + "text": "I've got a question for you.", + "start": 4520.24, + "end": 4520.74, + "words": [ + { + "word": " I've", + "start": 4520.24, + "end": 4520.34, + "probability": 0.8984375 + }, + { + "word": " got", + "start": 4520.34, + "end": 4520.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 4520.34, + "end": 4520.34, + "probability": 0.99560546875 + }, + { + "word": " question", + "start": 4520.34, + "end": 4520.34, + "probability": 0.9716796875 + }, + { + "word": " for", + "start": 4520.34, + "end": 4520.58, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4520.58, + "end": 4520.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1891, + "text": "Yeah, maybe quick, though.", + "start": 4520.88, + "end": 4521.82, + "words": [ + { + "word": " Yeah,", + "start": 4520.88, + "end": 4521.24, + "probability": 0.49462890625 + }, + { + "word": " maybe", + "start": 4521.24, + "end": 4521.3, + "probability": 0.441650390625 + }, + { + "word": " quick,", + "start": 4521.3, + "end": 4521.6, + "probability": 0.9873046875 + }, + { + "word": " though.", + "start": 4521.66, + "end": 4521.82, + "probability": 1.0 + } + ] + }, + { + "id": 1892, + "text": "Yeah, I've got an HP executive laptop computer, and I've got the Dragon software.", + "start": 4522.240000000001, + "end": 4526.86, + "words": [ + { + "word": " Yeah,", + "start": 4522.240000000001, + "end": 4522.6, + "probability": 0.900390625 + }, + { + "word": " I've", + "start": 4522.7, + "end": 4522.78, + "probability": 0.9853515625 + }, + { + "word": " got", + "start": 4522.78, + "end": 4522.86, + "probability": 1.0 + }, + { + "word": " an", + "start": 4522.86, + "end": 4522.98, + "probability": 0.63720703125 + }, + { + "word": " HP", + "start": 4522.98, + "end": 4523.68, + "probability": 0.99951171875 + }, + { + "word": " executive", + "start": 4523.68, + "end": 4524.16, + "probability": 0.93994140625 + }, + { + "word": " laptop", + "start": 4524.16, + "end": 4524.66, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 4524.66, + "end": 4525.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 4525.36, + "end": 4525.62, + "probability": 1.0 + }, + { + "word": " I've", + "start": 4525.62, + "end": 4525.8, + "probability": 0.99609375 + }, + { + "word": " got", + "start": 4525.8, + "end": 4525.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 4525.92, + "end": 4526.08, + "probability": 0.99609375 + }, + { + "word": " Dragon", + "start": 4526.08, + "end": 4526.38, + "probability": 0.8623046875 + }, + { + "word": " software.", + "start": 4526.38, + "end": 4526.86, + "probability": 0.91064453125 + } + ] + }, + { + "id": 1893, + "text": "Oh.", + "start": 4527.1, + "end": 4527.46, + "words": [ + { + "word": " Oh.", + "start": 4527.1, + "end": 4527.46, + "probability": 0.43212890625 + } + ] + }, + { + "id": 1894, + "text": "And an inexpensive printer.", + "start": 4527.54, + "end": 4529.38, + "words": [ + { + "word": " And", + "start": 4527.54, + "end": 4527.82, + "probability": 0.6201171875 + }, + { + "word": " an", + "start": 4527.82, + "end": 4528.14, + "probability": 0.97314453125 + }, + { + "word": " inexpensive", + "start": 4528.14, + "end": 4528.78, + "probability": 1.0 + }, + { + "word": " printer.", + "start": 4528.78, + "end": 4529.38, + "probability": 1.0 + } + ] + }, + { + "id": 1895, + "text": "I was thinking about putting out a book on my own.", + "start": 4529.54, + "end": 4531.64, + "words": [ + { + "word": " I", + "start": 4529.54, + "end": 4529.64, + "probability": 0.8193359375 + }, + { + "word": " was", + "start": 4529.64, + "end": 4529.78, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 4529.78, + "end": 4530.0, + "probability": 1.0 + }, + { + "word": " about", + "start": 4530.0, + "end": 4530.3, + "probability": 1.0 + }, + { + "word": " putting", + "start": 4530.3, + "end": 4530.6, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4530.6, + "end": 4530.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 4530.78, + "end": 4530.88, + "probability": 1.0 + }, + { + "word": " book", + "start": 4530.88, + "end": 4531.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 4531.08, + "end": 4531.22, + "probability": 0.9921875 + }, + { + "word": " my", + "start": 4531.22, + "end": 4531.38, + "probability": 1.0 + }, + { + "word": " own.", + "start": 4531.38, + "end": 4531.64, + "probability": 1.0 + } + ] + }, + { + "id": 1896, + "text": "You know, I have an incredible life story.", + "start": 4531.72, + "end": 4533.56, + "words": [ + { + "word": " You", + "start": 4531.72, + "end": 4531.8, + "probability": 0.468505859375 + }, + { + "word": " know,", + "start": 4531.8, + "end": 4531.88, + "probability": 1.0 + }, + { + "word": " I", + "start": 4531.96, + "end": 4532.12, + "probability": 1.0 + }, + { + "word": " have", + "start": 4532.12, + "end": 4532.36, + "probability": 0.994140625 + }, + { + "word": " an", + "start": 4532.36, + "end": 4532.56, + "probability": 1.0 + }, + { + "word": " incredible", + "start": 4532.56, + "end": 4532.8, + "probability": 1.0 + }, + { + "word": " life", + "start": 4532.8, + "end": 4533.24, + "probability": 1.0 + }, + { + "word": " story.", + "start": 4533.24, + "end": 4533.56, + "probability": 1.0 + } + ] + }, + { + "id": 1897, + "text": "I was thinking about coming out with my own book and maybe self-publishing it or whatever.", + "start": 4533.86, + "end": 4538.08, + "words": [ + { + "word": " I", + "start": 4533.86, + "end": 4534.22, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 4534.22, + "end": 4534.36, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 4534.36, + "end": 4534.56, + "probability": 1.0 + }, + { + "word": " about", + "start": 4534.56, + "end": 4534.88, + "probability": 1.0 + }, + { + "word": " coming", + "start": 4534.88, + "end": 4535.46, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 4535.46, + "end": 4535.64, + "probability": 1.0 + }, + { + "word": " with", + "start": 4535.64, + "end": 4535.8, + "probability": 1.0 + }, + { + "word": " my", + "start": 4535.8, + "end": 4535.98, + "probability": 1.0 + }, + { + "word": " own", + "start": 4535.98, + "end": 4536.12, + "probability": 1.0 + }, + { + "word": " book", + "start": 4536.12, + "end": 4536.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 4536.36, + "end": 4536.54, + "probability": 0.97998046875 + }, + { + "word": " maybe", + "start": 4536.54, + "end": 4536.7, + "probability": 1.0 + }, + { + "word": " self", + "start": 4536.7, + "end": 4537.02, + "probability": 1.0 + }, + { + "word": "-publishing", + "start": 4537.02, + "end": 4537.46, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4537.46, + "end": 4537.74, + "probability": 1.0 + }, + { + "word": " or", + "start": 4537.74, + "end": 4537.84, + "probability": 0.9990234375 + }, + { + "word": " whatever.", + "start": 4537.84, + "end": 4538.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1898, + "text": "But where is your shop on Fort Lowell?", + "start": 4538.42, + "end": 4541.28, + "words": [ + { + "word": " But", + "start": 4538.42, + "end": 4538.78, + "probability": 0.99365234375 + }, + { + "word": " where", + "start": 4538.78, + "end": 4539.44, + "probability": 0.99169921875 + }, + { + "word": " is", + "start": 4539.44, + "end": 4539.58, + "probability": 0.97607421875 + }, + { + "word": " your", + "start": 4539.58, + "end": 4539.74, + "probability": 1.0 + }, + { + "word": " shop", + "start": 4539.74, + "end": 4540.46, + "probability": 1.0 + }, + { + "word": " on", + "start": 4540.46, + "end": 4540.68, + "probability": 0.99951171875 + }, + { + "word": " Fort", + "start": 4540.68, + "end": 4540.98, + "probability": 0.9970703125 + }, + { + "word": " Lowell?", + "start": 4540.98, + "end": 4541.28, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1899, + "text": "Because I may have to come over there and get your advice.", + "start": 4541.34, + "end": 4543.5, + "words": [ + { + "word": " Because", + "start": 4541.34, + "end": 4541.46, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 4541.46, + "end": 4541.58, + "probability": 1.0 + }, + { + "word": " may", + "start": 4541.58, + "end": 4541.7, + "probability": 1.0 + }, + { + "word": " have", + "start": 4541.7, + "end": 4541.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 4541.82, + "end": 4541.98, + "probability": 1.0 + }, + { + "word": " come", + "start": 4541.98, + "end": 4542.1, + "probability": 1.0 + }, + { + "word": " over", + "start": 4542.1, + "end": 4542.3, + "probability": 1.0 + }, + { + "word": " there", + "start": 4542.3, + "end": 4542.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 4542.5, + "end": 4542.62, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 4542.62, + "end": 4543.1, + "probability": 1.0 + }, + { + "word": " your", + "start": 4543.1, + "end": 4543.26, + "probability": 1.0 + }, + { + "word": " advice.", + "start": 4543.26, + "end": 4543.5, + "probability": 1.0 + } + ] + }, + { + "id": 1900, + "text": "510 East Fort Lowell.", + "start": 4544.14, + "end": 4545.1, + "words": [ + { + "word": " 510", + "start": 4544.14, + "end": 4544.5, + "probability": 0.98779296875 + }, + { + "word": " East", + "start": 4544.5, + "end": 4544.76, + "probability": 1.0 + }, + { + "word": " Fort", + "start": 4544.76, + "end": 4544.96, + "probability": 0.9990234375 + }, + { + "word": " Lowell.", + "start": 4544.96, + "end": 4545.1, + "probability": 1.0 + } + ] + }, + { + "id": 1901, + "text": "It's at 1st and Fort Lowell.", + "start": 4545.2, + "end": 4546.06, + "words": [ + { + "word": " It's", + "start": 4545.2, + "end": 4545.3, + "probability": 0.998046875 + }, + { + "word": " at", + "start": 4545.3, + "end": 4545.34, + "probability": 0.9951171875 + }, + { + "word": " 1st", + "start": 4545.34, + "end": 4545.62, + "probability": 0.8505859375 + }, + { + "word": " and", + "start": 4545.62, + "end": 4545.64, + "probability": 0.9951171875 + }, + { + "word": " Fort", + "start": 4545.64, + "end": 4545.86, + "probability": 0.99951171875 + }, + { + "word": " Lowell.", + "start": 4545.86, + "end": 4546.06, + "probability": 1.0 + } + ] + }, + { + "id": 1902, + "text": "All right.", + "start": 4546.86, + "end": 4547.2, + "words": [ + { + "word": " All", + "start": 4546.86, + "end": 4547.02, + "probability": 0.96240234375 + }, + { + "word": " right.", + "start": 4547.02, + "end": 4547.2, + "probability": 1.0 + } + ] + }, + { + "id": 1903, + "text": "Thanks, Mike.", + "start": 4547.28, + "end": 4547.84, + "words": [ + { + "word": " Thanks,", + "start": 4547.28, + "end": 4547.64, + "probability": 0.99951171875 + }, + { + "word": " Mike.", + "start": 4547.72, + "end": 4547.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1904, + "text": "All right.", + "start": 4547.98, + "end": 4548.26, + "words": [ + { + "word": " All", + "start": 4547.98, + "end": 4548.18, + "probability": 0.80224609375 + }, + { + "word": " right.", + "start": 4548.18, + "end": 4548.26, + "probability": 1.0 + } + ] + }, + { + "id": 1905, + "text": "Appreciate the call, Rick.", + "start": 4548.28, + "end": 4549.12, + "words": [ + { + "word": " Appreciate", + "start": 4548.28, + "end": 4548.6, + "probability": 0.79345703125 + }, + { + "word": " the", + "start": 4548.6, + "end": 4548.78, + "probability": 1.0 + }, + { + "word": " call,", + "start": 4548.78, + "end": 4548.92, + "probability": 1.0 + }, + { + "word": " Rick.", + "start": 4548.98, + "end": 4549.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1906, + "text": "Thank you very much.", + "start": 4549.18, + "end": 4549.78, + "words": [ + { + "word": " Thank", + "start": 4549.18, + "end": 4549.32, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4549.32, + "end": 4549.46, + "probability": 1.0 + }, + { + "word": " very", + "start": 4549.46, + "end": 4549.58, + "probability": 1.0 + }, + { + "word": " much.", + "start": 4549.58, + "end": 4549.78, + "probability": 1.0 + } + ] + }, + { + "id": 1907, + "text": "Hey, one more thing.", + "start": 4549.82, + "end": 4550.88, + "words": [ + { + "word": " Hey,", + "start": 4549.82, + "end": 4549.98, + "probability": 0.86669921875 + }, + { + "word": " one", + "start": 4549.98, + "end": 4550.4, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 4550.4, + "end": 4550.7, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 4550.7, + "end": 4550.88, + "probability": 1.0 + } + ] + }, + { + "id": 1908, + "text": "You are the guru.", + "start": 4551.02, + "end": 4551.9, + "words": [ + { + "word": " You", + "start": 4551.02, + "end": 4551.32, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4551.32, + "end": 4551.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 4551.44, + "end": 4551.58, + "probability": 1.0 + }, + { + "word": " guru.", + "start": 4551.58, + "end": 4551.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1909, + "text": "Yes, I am.", + "start": 4552.62, + "end": 4553.34, + "words": [ + { + "word": " Yes,", + "start": 4552.62, + "end": 4552.98, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4552.98, + "end": 4553.12, + "probability": 1.0 + }, + { + "word": " am.", + "start": 4553.12, + "end": 4553.34, + "probability": 1.0 + } + ] + }, + { + "id": 1910, + "text": "Thank you very much.", + "start": 4553.48, + "end": 4554.5, + "words": [ + { + "word": " Thank", + "start": 4553.48, + "end": 4553.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4553.78, + "end": 4553.96, + "probability": 1.0 + }, + { + "word": " very", + "start": 4553.96, + "end": 4554.14, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 4554.14, + "end": 4554.5, + "probability": 1.0 + } + ] + }, + { + "id": 1911, + "text": "All right.", + "start": 4554.76, + "end": 4555.66, + "words": [ + { + "word": " All", + "start": 4554.76, + "end": 4555.12, + "probability": 0.939453125 + }, + { + "word": " right.", + "start": 4555.12, + "end": 4555.66, + "probability": 1.0 + } + ] + }, + { + "id": 1912, + "text": "We're going to take another break, I think.", + "start": 4555.7, + "end": 4556.84, + "words": [ + { + "word": " We're", + "start": 4555.7, + "end": 4555.86, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 4555.86, + "end": 4555.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4555.88, + "end": 4555.96, + "probability": 1.0 + }, + { + "word": " take", + "start": 4555.96, + "end": 4556.08, + "probability": 1.0 + }, + { + "word": " another", + "start": 4556.08, + "end": 4556.24, + "probability": 1.0 + }, + { + "word": " break,", + "start": 4556.24, + "end": 4556.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 4556.58, + "end": 4556.68, + "probability": 1.0 + }, + { + "word": " think.", + "start": 4556.68, + "end": 4556.84, + "probability": 1.0 + } + ] + }, + { + "id": 1913, + "text": "That's what we're going to do.", + "start": 4556.9, + "end": 4557.52, + "words": [ + { + "word": " That's", + "start": 4556.9, + "end": 4557.08, + "probability": 0.978515625 + }, + { + "word": " what", + "start": 4557.08, + "end": 4557.42, + "probability": 0.787109375 + }, + { + "word": " we're", + "start": 4557.42, + "end": 4557.52, + "probability": 0.755859375 + }, + { + "word": " going", + "start": 4557.52, + "end": 4557.52, + "probability": 0.75830078125 + }, + { + "word": " to", + "start": 4557.52, + "end": 4557.52, + "probability": 0.998046875 + }, + { + "word": " do.", + "start": 4557.52, + "end": 4557.52, + "probability": 0.95849609375 + } + ] + }, + { + "id": 1914, + "text": "I'm going to make Kent push some buttons here.", + "start": 4557.52, + "end": 4559.18, + "words": [ + { + "word": " I'm", + "start": 4557.52, + "end": 4557.98, + "probability": 0.49951171875 + }, + { + "word": " going", + "start": 4557.98, + "end": 4558.0, + "probability": 0.9423828125 + }, + { + "word": " to", + "start": 4558.0, + "end": 4558.08, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 4558.08, + "end": 4558.18, + "probability": 0.98876953125 + }, + { + "word": " Kent", + "start": 4558.18, + "end": 4558.38, + "probability": 0.94677734375 + }, + { + "word": " push", + "start": 4558.38, + "end": 4558.64, + "probability": 0.9951171875 + }, + { + "word": " some", + "start": 4558.64, + "end": 4558.76, + "probability": 0.9951171875 + }, + { + "word": " buttons", + "start": 4558.76, + "end": 4559.0, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 4559.0, + "end": 4559.18, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1915, + "text": "And when we come back from the break, more Computer Guru at 790-2040.", + "start": 4559.4, + "end": 4563.64, + "words": [ + { + "word": " And", + "start": 4559.4, + "end": 4559.76, + "probability": 0.767578125 + }, + { + "word": " when", + "start": 4559.76, + "end": 4560.46, + "probability": 0.9794921875 + }, + { + "word": " we", + "start": 4560.46, + "end": 4560.58, + "probability": 1.0 + }, + { + "word": " come", + "start": 4560.58, + "end": 4560.7, + "probability": 1.0 + }, + { + "word": " back", + "start": 4560.7, + "end": 4560.86, + "probability": 1.0 + }, + { + "word": " from", + "start": 4560.86, + "end": 4560.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4560.98, + "end": 4561.08, + "probability": 0.99951171875 + }, + { + "word": " break,", + "start": 4561.08, + "end": 4561.26, + "probability": 1.0 + }, + { + "word": " more", + "start": 4561.42, + "end": 4561.88, + "probability": 0.9970703125 + }, + { + "word": " Computer", + "start": 4561.88, + "end": 4562.16, + "probability": 0.947265625 + }, + { + "word": " Guru", + "start": 4562.16, + "end": 4562.38, + "probability": 0.9921875 + }, + { + "word": " at", + "start": 4562.38, + "end": 4562.58, + "probability": 0.99853515625 + }, + { + "word": " 790", + "start": 4562.58, + "end": 4563.02, + "probability": 0.96875 + }, + { + "word": "-2040.", + "start": 4563.02, + "end": 4563.64, + "probability": 0.85888671875 + } + ] + }, + { + "id": 1916, + "text": "Thank you.", + "start": 4565.06, + "end": 4565.5, + "words": [ + { + "word": " Thank", + "start": 4565.06, + "end": 4565.5, + "probability": 0.4150390625 + }, + { + "word": " you.", + "start": 4565.5, + "end": 4565.5, + "probability": 1.0 + } + ] + }, + { + "id": 1917, + "text": "Thank you.", + "start": 4574.780000000001, + "end": 4575.44, + "words": [ + { + "word": " Thank", + "start": 4574.780000000001, + "end": 4575.22, + "probability": 0.8076171875 + }, + { + "word": " you.", + "start": 4575.22, + "end": 4575.44, + "probability": 1.0 + } + ] + }, + { + "id": 1918, + "text": "Thank you.", + "start": 4581.26, + "end": 4582.02, + "words": [ + { + "word": " Thank", + "start": 4581.26, + "end": 4581.26, + "probability": 0.9697265625 + }, + { + "word": " you.", + "start": 4581.26, + "end": 4582.02, + "probability": 1.0 + } + ] + }, + { + "id": 1919, + "text": "Thank you.", + "start": 4582.82, + "end": 4583.38, + "words": [ + { + "word": " Thank", + "start": 4582.82, + "end": 4582.82, + "probability": 0.97119140625 + }, + { + "word": " you.", + "start": 4582.82, + "end": 4583.38, + "probability": 1.0 + } + ] + }, + { + "id": 1920, + "text": "", + "start": 4583.38, + "end": 4583.38, + "words": [] + }, + { + "id": 1921, + "text": "Thank you.", + "start": 4583.64, + "end": 4584.1, + "words": [ + { + "word": " Thank", + "start": 4583.64, + "end": 4584.08, + "probability": 0.96826171875 + }, + { + "word": " you.", + "start": 4584.08, + "end": 4584.1, + "probability": 1.0 + } + ] + }, + { + "id": 1922, + "text": "", + "start": 4584.52, + "end": 4584.52, + "words": [] + }, + { + "id": 1923, + "text": "", + "start": 4584.52, + "end": 4584.52, + "words": [] + }, + { + "id": 1924, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1925, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1926, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1927, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1928, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1929, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1930, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1931, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1932, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1933, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1934, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1935, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1936, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1937, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1938, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1939, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1940, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1941, + "text": "", + "start": 4584.54, + "end": 4584.54, + "words": [] + }, + { + "id": 1942, + "text": "Thank you.", + "start": 4584.54, + "end": 4584.72, + "words": [ + { + "word": " Thank", + "start": 4584.54, + "end": 4584.72, + "probability": 0.95556640625 + }, + { + "word": " you.", + "start": 4584.72, + "end": 4584.72, + "probability": 1.0 + } + ] + }, + { + "id": 1943, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1944, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1945, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1946, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1947, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1948, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1949, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1950, + "text": "", + "start": 4584.76, + "end": 4584.76, + "words": [] + }, + { + "id": 1951, + "text": "Thank you.", + "start": 4584.84, + "end": 4585.2, + "words": [ + { + "word": " Thank", + "start": 4584.84, + "end": 4585.08, + "probability": 0.953125 + }, + { + "word": " you.", + "start": 4585.08, + "end": 4585.2, + "probability": 1.0 + } + ] + }, + { + "id": 1952, + "text": "Thank you.", + "start": 4585.42, + "end": 4585.56, + "words": [ + { + "word": " Thank", + "start": 4585.42, + "end": 4585.56, + "probability": 0.953125 + }, + { + "word": " you.", + "start": 4585.56, + "end": 4585.56, + "probability": 1.0 + } + ] + }, + { + "id": 1953, + "text": "She would do what you told her how to walk this way.", + "start": 4585.56, + "end": 4587.58, + "words": [ + { + "word": " She", + "start": 4585.56, + "end": 4585.62, + "probability": 0.1025390625 + }, + { + "word": " would", + "start": 4585.62, + "end": 4585.76, + "probability": 0.3876953125 + }, + { + "word": " do", + "start": 4585.76, + "end": 4585.94, + "probability": 0.986328125 + }, + { + "word": " what", + "start": 4585.94, + "end": 4586.1, + "probability": 0.66162109375 + }, + { + "word": " you", + "start": 4586.1, + "end": 4586.18, + "probability": 0.8115234375 + }, + { + "word": " told", + "start": 4586.18, + "end": 4586.44, + "probability": 0.990234375 + }, + { + "word": " her", + "start": 4586.44, + "end": 4586.62, + "probability": 0.97216796875 + }, + { + "word": " how", + "start": 4586.62, + "end": 4586.76, + "probability": 0.66015625 + }, + { + "word": " to", + "start": 4586.76, + "end": 4586.94, + "probability": 0.994140625 + }, + { + "word": " walk", + "start": 4586.94, + "end": 4587.12, + "probability": 0.9404296875 + }, + { + "word": " this", + "start": 4587.12, + "end": 4587.38, + "probability": 0.9091796875 + }, + { + "word": " way.", + "start": 4587.38, + "end": 4587.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1954, + "text": "Walk this way.", + "start": 4587.68, + "end": 4590.0, + "words": [ + { + "word": " Walk", + "start": 4587.68, + "end": 4588.28, + "probability": 0.75927734375 + }, + { + "word": " this", + "start": 4588.28, + "end": 4589.3, + "probability": 0.99560546875 + }, + { + "word": " way.", + "start": 4589.3, + "end": 4590.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1955, + "text": "Walk this way.", + "start": 4590.62, + "end": 4592.26, + "words": [ + { + "word": " Walk", + "start": 4590.62, + "end": 4591.22, + "probability": 0.2484130859375 + }, + { + "word": " this", + "start": 4591.22, + "end": 4591.68, + "probability": 0.99609375 + }, + { + "word": " way.", + "start": 4591.68, + "end": 4592.26, + "probability": 1.0 + } + ] + }, + { + "id": 1956, + "text": "Walk this way.", + "start": 4592.92, + "end": 4594.74, + "words": [ + { + "word": " Walk", + "start": 4592.92, + "end": 4593.52, + "probability": 0.85400390625 + }, + { + "word": " this", + "start": 4593.52, + "end": 4593.96, + "probability": 0.9990234375 + }, + { + "word": " way.", + "start": 4593.96, + "end": 4594.74, + "probability": 1.0 + } + ] + }, + { + "id": 1957, + "text": "Walk this way.", + "start": 4595.34, + "end": 4596.78, + "words": [ + { + "word": " Walk", + "start": 4595.34, + "end": 4595.94, + "probability": 0.50634765625 + }, + { + "word": " this", + "start": 4595.94, + "end": 4596.24, + "probability": 0.99951171875 + }, + { + "word": " way.", + "start": 4596.24, + "end": 4596.78, + "probability": 1.0 + } + ] + }, + { + "id": 1958, + "text": "She told me to walk this way.", + "start": 4597.0, + "end": 4599.36, + "words": [ + { + "word": " She", + "start": 4597.0, + "end": 4597.1, + "probability": 0.5947265625 + }, + { + "word": " told", + "start": 4597.1, + "end": 4597.36, + "probability": 0.9345703125 + }, + { + "word": " me", + "start": 4597.36, + "end": 4597.62, + "probability": 0.943359375 + }, + { + "word": " to", + "start": 4597.62, + "end": 4597.68, + "probability": 0.9921875 + }, + { + "word": " walk", + "start": 4597.68, + "end": 4598.12, + "probability": 0.9951171875 + }, + { + "word": " this", + "start": 4598.12, + "end": 4598.64, + "probability": 0.99951171875 + }, + { + "word": " way.", + "start": 4598.64, + "end": 4599.36, + "probability": 1.0 + } + ] + }, + { + "id": 1959, + "text": "Walk this way.", + "start": 4599.84, + "end": 4601.52, + "words": [ + { + "word": " Walk", + "start": 4599.84, + "end": 4600.44, + "probability": 0.962890625 + }, + { + "word": " this", + "start": 4600.44, + "end": 4600.96, + "probability": 0.99951171875 + }, + { + "word": " way.", + "start": 4600.96, + "end": 4601.52, + "probability": 1.0 + } + ] + }, + { + "id": 1960, + "text": "Walk this way.", + "start": 4602.12, + "end": 4603.94, + "words": [ + { + "word": " Walk", + "start": 4602.12, + "end": 4602.72, + "probability": 0.9658203125 + }, + { + "word": " this", + "start": 4602.72, + "end": 4603.28, + "probability": 1.0 + }, + { + "word": " way.", + "start": 4603.28, + "end": 4603.94, + "probability": 1.0 + } + ] + }, + { + "id": 1961, + "text": "Walk this way.", + "start": 4604.42, + "end": 4605.88, + "words": [ + { + "word": " Walk", + "start": 4604.42, + "end": 4605.02, + "probability": 0.73193359375 + }, + { + "word": " this", + "start": 4605.02, + "end": 4605.56, + "probability": 0.99951171875 + }, + { + "word": " way.", + "start": 4605.56, + "end": 4605.88, + "probability": 1.0 + } + ] + }, + { + "id": 1962, + "text": "She said give me a kiss.", + "start": 4606.02, + "end": 4607.38, + "words": [ + { + "word": " She", + "start": 4606.02, + "end": 4606.34, + "probability": 0.55126953125 + }, + { + "word": " said", + "start": 4606.34, + "end": 4606.52, + "probability": 0.61865234375 + }, + { + "word": " give", + "start": 4606.52, + "end": 4606.84, + "probability": 0.6015625 + }, + { + "word": " me", + "start": 4606.84, + "end": 4606.96, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4606.96, + "end": 4606.96, + "probability": 0.9931640625 + }, + { + "word": " kiss.", + "start": 4606.96, + "end": 4607.38, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1963, + "text": "Computer troubles? Need some advice? Call in now.", + "start": 4608.66, + "end": 4611.94, + "words": [ + { + "word": " Computer", + "start": 4608.66, + "end": 4609.26, + "probability": 0.994140625 + }, + { + "word": " troubles?", + "start": 4609.26, + "end": 4609.7, + "probability": 0.98486328125 + }, + { + "word": " Need", + "start": 4609.98, + "end": 4610.46, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 4610.46, + "end": 4610.64, + "probability": 1.0 + }, + { + "word": " advice?", + "start": 4610.64, + "end": 4610.92, + "probability": 0.99951171875 + }, + { + "word": " Call", + "start": 4611.22, + "end": 4611.54, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 4611.54, + "end": 4611.7, + "probability": 0.98974609375 + }, + { + "word": " now.", + "start": 4611.7, + "end": 4611.94, + "probability": 1.0 + } + ] + }, + { + "id": 1964, + "text": "Mike Swanson will be back after these messages.", + "start": 4612.1, + "end": 4614.34, + "words": [ + { + "word": " Mike", + "start": 4612.1, + "end": 4612.46, + "probability": 0.99755859375 + }, + { + "word": " Swanson", + "start": 4612.46, + "end": 4612.8, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 4612.8, + "end": 4613.04, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 4613.04, + "end": 4613.14, + "probability": 1.0 + }, + { + "word": " back", + "start": 4613.14, + "end": 4613.38, + "probability": 1.0 + }, + { + "word": " after", + "start": 4613.38, + "end": 4613.76, + "probability": 1.0 + }, + { + "word": " these", + "start": 4613.76, + "end": 4613.94, + "probability": 0.99951171875 + }, + { + "word": " messages.", + "start": 4613.94, + "end": 4614.34, + "probability": 1.0 + } + ] + }, + { + "id": 1965, + "text": "The Computer Guru Show.", + "start": 4614.34, + "end": 4616.0, + "words": [ + { + "word": " The", + "start": 4614.34, + "end": 4615.0, + "probability": 0.57373046875 + }, + { + "word": " Computer", + "start": 4615.0, + "end": 4615.26, + "probability": 0.91357421875 + }, + { + "word": " Guru", + "start": 4615.26, + "end": 4615.62, + "probability": 0.99853515625 + }, + { + "word": " Show.", + "start": 4615.62, + "end": 4616.0, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1966, + "text": "AM 1030, KVOY, The Voice.", + "start": 4616.16, + "end": 4619.0, + "words": [ + { + "word": " AM", + "start": 4616.16, + "end": 4616.6, + "probability": 0.8974609375 + }, + { + "word": " 1030,", + "start": 4616.6, + "end": 4617.18, + "probability": 0.93115234375 + }, + { + "word": " KVOY,", + "start": 4617.38, + "end": 4618.04, + "probability": 0.81591796875 + }, + { + "word": " The", + "start": 4618.32, + "end": 4618.66, + "probability": 0.9990234375 + }, + { + "word": " Voice.", + "start": 4618.66, + "end": 4619.0, + "probability": 1.0 + } + ] + }, + { + "id": 1967, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 4629.54, + "end": 4632.6, + "words": [ + { + "word": " Mike", + "start": 4629.54, + "end": 4630.04, + "probability": 0.87451171875 + }, + { + "word": " Swanson,", + "start": 4630.04, + "end": 4630.44, + "probability": 0.99755859375 + }, + { + "word": " your", + "start": 4630.54, + "end": 4630.72, + "probability": 0.98681640625 + }, + { + "word": " computer", + "start": 4630.72, + "end": 4631.08, + "probability": 0.95654296875 + }, + { + "word": " guru,", + "start": 4631.08, + "end": 4631.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 4631.58, + "end": 4631.8, + "probability": 1.0 + }, + { + "word": " just", + "start": 4631.8, + "end": 4632.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 4632.04, + "end": 4632.2, + "probability": 1.0 + }, + { + "word": " click", + "start": 4632.2, + "end": 4632.36, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 4632.36, + "end": 4632.6, + "probability": 1.0 + } + ] + }, + { + "id": 1968, + "text": "Listen and watch at gurushow.com.", + "start": 4632.84, + "end": 4635.1, + "words": [ + { + "word": " Listen", + "start": 4632.84, + "end": 4633.3, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4633.3, + "end": 4633.46, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4633.46, + "end": 4633.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 4633.74, + "end": 4633.9, + "probability": 0.99462890625 + }, + { + "word": " gurushow", + "start": 4633.9, + "end": 4634.48, + "probability": 0.8232421875 + }, + { + "word": ".com.", + "start": 4634.48, + "end": 4635.1, + "probability": 1.0 + } + ] + }, + { + "id": 1969, + "text": "This is the Computer Guru Show.", + "start": 4635.46, + "end": 4637.38, + "words": [ + { + "word": " This", + "start": 4635.46, + "end": 4635.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 4635.96, + "end": 4636.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 4636.26, + "end": 4636.38, + "probability": 0.2783203125 + }, + { + "word": " Computer", + "start": 4636.38, + "end": 4636.64, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 4636.64, + "end": 4637.0, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 4637.0, + "end": 4637.38, + "probability": 1.0 + } + ] + }, + { + "id": 1970, + "text": "Welcome back to the Computer Guru Show, 7902040.", + "start": 4638.08, + "end": 4642.56, + "words": [ + { + "word": " Welcome", + "start": 4638.08, + "end": 4638.58, + "probability": 0.998046875 + }, + { + "word": " back", + "start": 4638.58, + "end": 4639.08, + "probability": 0.60009765625 + }, + { + "word": " to", + "start": 4639.08, + "end": 4640.42, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4640.42, + "end": 4640.54, + "probability": 0.96923828125 + }, + { + "word": " Computer", + "start": 4640.54, + "end": 4640.74, + "probability": 0.99951171875 + }, + { + "word": " Guru", + "start": 4640.74, + "end": 4640.98, + "probability": 1.0 + }, + { + "word": " Show,", + "start": 4640.98, + "end": 4641.2, + "probability": 1.0 + }, + { + "word": " 7902040.", + "start": 4641.26, + "end": 4642.56, + "probability": 0.87109375 + } + ] + }, + { + "id": 1971, + "text": "If you'd like to be part of the show,", + "start": 4642.56, + "end": 4643.62, + "words": [ + { + "word": " If", + "start": 4642.56, + "end": 4642.72, + "probability": 0.9638671875 + }, + { + "word": " you'd", + "start": 4642.72, + "end": 4642.86, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 4642.86, + "end": 4642.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 4642.94, + "end": 4643.02, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 4643.02, + "end": 4643.1, + "probability": 0.9970703125 + }, + { + "word": " part", + "start": 4643.1, + "end": 4643.24, + "probability": 0.65478515625 + }, + { + "word": " of", + "start": 4643.24, + "end": 4643.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 4643.34, + "end": 4643.42, + "probability": 0.99853515625 + }, + { + "word": " show,", + "start": 4643.42, + "end": 4643.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1972, + "text": "or if you'd like to be part of the show,", + "start": 4643.64, + "end": 4644.32, + "words": [ + { + "word": " or", + "start": 4643.64, + "end": 4643.84, + "probability": 0.96533203125 + }, + { + "word": " if", + "start": 4643.84, + "end": 4644.04, + "probability": 0.458984375 + }, + { + "word": " you'd", + "start": 4644.04, + "end": 4644.32, + "probability": 0.9150390625 + }, + { + "word": " like", + "start": 4644.32, + "end": 4644.32, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4644.32, + "end": 4644.32, + "probability": 0.99072265625 + }, + { + "word": " be", + "start": 4644.32, + "end": 4644.32, + "probability": 0.921875 + }, + { + "word": " part", + "start": 4644.32, + "end": 4644.32, + "probability": 0.58740234375 + }, + { + "word": " of", + "start": 4644.32, + "end": 4644.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 4644.32, + "end": 4644.32, + "probability": 0.96337890625 + }, + { + "word": " show,", + "start": 4644.32, + "end": 4644.32, + "probability": 0.96142578125 + } + ] + }, + { + "id": 1973, + "text": "join us in the chat, gurushow.com.", + "start": 4644.32, + "end": 4645.98, + "words": [ + { + "word": " join", + "start": 4644.32, + "end": 4644.48, + "probability": 0.0543212890625 + }, + { + "word": " us", + "start": 4644.48, + "end": 4644.6, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4644.6, + "end": 4644.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4644.7, + "end": 4644.74, + "probability": 1.0 + }, + { + "word": " chat,", + "start": 4644.74, + "end": 4644.98, + "probability": 0.998046875 + }, + { + "word": " gurushow", + "start": 4645.12, + "end": 4645.62, + "probability": 0.5830078125 + }, + { + "word": ".com.", + "start": 4645.62, + "end": 4645.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1974, + "text": "You can ask your questions there,", + "start": 4646.3, + "end": 4648.14, + "words": [ + { + "word": " You", + "start": 4646.3, + "end": 4646.7, + "probability": 0.9052734375 + }, + { + "word": " can", + "start": 4646.7, + "end": 4647.42, + "probability": 1.0 + }, + { + "word": " ask", + "start": 4647.42, + "end": 4647.56, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4647.56, + "end": 4647.68, + "probability": 0.99951171875 + }, + { + "word": " questions", + "start": 4647.68, + "end": 4647.94, + "probability": 1.0 + }, + { + "word": " there,", + "start": 4647.94, + "end": 4648.14, + "probability": 1.0 + } + ] + }, + { + "id": 1975, + "text": "and you'll get a multitude of answers.", + "start": 4648.24, + "end": 4650.38, + "words": [ + { + "word": " and", + "start": 4648.24, + "end": 4648.62, + "probability": 0.99951171875 + }, + { + "word": " you'll", + "start": 4648.62, + "end": 4649.2, + "probability": 1.0 + }, + { + "word": " get", + "start": 4649.2, + "end": 4649.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 4649.34, + "end": 4649.46, + "probability": 1.0 + }, + { + "word": " multitude", + "start": 4649.46, + "end": 4649.82, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4649.82, + "end": 4650.12, + "probability": 1.0 + }, + { + "word": " answers.", + "start": 4650.12, + "end": 4650.38, + "probability": 1.0 + } + ] + }, + { + "id": 1976, + "text": "Probably too many.", + "start": 4650.64, + "end": 4651.36, + "words": [ + { + "word": " Probably", + "start": 4650.64, + "end": 4651.04, + "probability": 0.998046875 + }, + { + "word": " too", + "start": 4651.04, + "end": 4651.18, + "probability": 0.99951171875 + }, + { + "word": " many.", + "start": 4651.18, + "end": 4651.36, + "probability": 1.0 + } + ] + }, + { + "id": 1977, + "text": "You'll be answered so hard, you'll just want to leave.", + "start": 4651.860000000001, + "end": 4655.12, + "words": [ + { + "word": " You'll", + "start": 4651.860000000001, + "end": 4652.26, + "probability": 0.58935546875 + }, + { + "word": " be", + "start": 4652.26, + "end": 4652.42, + "probability": 0.9921875 + }, + { + "word": " answered", + "start": 4652.42, + "end": 4653.66, + "probability": 1.0 + }, + { + "word": " so", + "start": 4653.66, + "end": 4653.98, + "probability": 1.0 + }, + { + "word": " hard,", + "start": 4653.98, + "end": 4654.36, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 4654.42, + "end": 4654.56, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4654.56, + "end": 4654.7, + "probability": 1.0 + }, + { + "word": " want", + "start": 4654.7, + "end": 4654.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4654.82, + "end": 4654.92, + "probability": 1.0 + }, + { + "word": " leave.", + "start": 4654.92, + "end": 4655.12, + "probability": 1.0 + } + ] + }, + { + "id": 1978, + "text": "And then probably people will disagree about the answers", + "start": 4655.28, + "end": 4657.5, + "words": [ + { + "word": " And", + "start": 4655.28, + "end": 4655.38, + "probability": 0.95263671875 + }, + { + "word": " then", + "start": 4655.38, + "end": 4655.48, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 4655.48, + "end": 4655.82, + "probability": 0.96142578125 + }, + { + "word": " people", + "start": 4655.82, + "end": 4656.34, + "probability": 0.99755859375 + }, + { + "word": " will", + "start": 4656.34, + "end": 4656.56, + "probability": 1.0 + }, + { + "word": " disagree", + "start": 4656.56, + "end": 4656.82, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 4656.82, + "end": 4657.12, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4657.12, + "end": 4657.26, + "probability": 1.0 + }, + { + "word": " answers", + "start": 4657.26, + "end": 4657.5, + "probability": 1.0 + } + ] + }, + { + "id": 1979, + "text": "that other people gave, and everyone will just argue.", + "start": 4657.5, + "end": 4659.62, + "words": [ + { + "word": " that", + "start": 4657.5, + "end": 4657.68, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 4657.68, + "end": 4657.82, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 4657.82, + "end": 4658.0, + "probability": 1.0 + }, + { + "word": " gave,", + "start": 4658.0, + "end": 4658.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 4658.42, + "end": 4658.62, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 4658.62, + "end": 4659.04, + "probability": 0.99658203125 + }, + { + "word": " will", + "start": 4659.04, + "end": 4659.2, + "probability": 1.0 + }, + { + "word": " just", + "start": 4659.2, + "end": 4659.34, + "probability": 1.0 + }, + { + "word": " argue.", + "start": 4659.34, + "end": 4659.62, + "probability": 1.0 + } + ] + }, + { + "id": 1980, + "text": "And then I will settle it.", + "start": 4659.86, + "end": 4660.74, + "words": [ + { + "word": " And", + "start": 4659.86, + "end": 4660.02, + "probability": 0.998046875 + }, + { + "word": " then", + "start": 4660.02, + "end": 4660.12, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4660.12, + "end": 4660.2, + "probability": 1.0 + }, + { + "word": " will", + "start": 4660.2, + "end": 4660.3, + "probability": 1.0 + }, + { + "word": " settle", + "start": 4660.3, + "end": 4660.56, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4660.56, + "end": 4660.74, + "probability": 1.0 + } + ] + }, + { + "id": 1981, + "text": "And start kicking people out of the chat.", + "start": 4661.02, + "end": 4663.48, + "words": [ + { + "word": " And", + "start": 4661.02, + "end": 4661.42, + "probability": 0.6015625 + }, + { + "word": " start", + "start": 4661.42, + "end": 4662.36, + "probability": 0.99853515625 + }, + { + "word": " kicking", + "start": 4662.36, + "end": 4662.6, + "probability": 1.0 + }, + { + "word": " people", + "start": 4662.6, + "end": 4662.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 4662.96, + "end": 4663.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 4663.12, + "end": 4663.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 4663.16, + "end": 4663.26, + "probability": 1.0 + }, + { + "word": " chat.", + "start": 4663.26, + "end": 4663.48, + "probability": 1.0 + } + ] + }, + { + "id": 1982, + "text": "So I did want to mention one more thing", + "start": 4664.240000000001, + "end": 4665.7, + "words": [ + { + "word": " So", + "start": 4664.240000000001, + "end": 4664.64, + "probability": 0.98095703125 + }, + { + "word": " I", + "start": 4664.64, + "end": 4664.72, + "probability": 0.9794921875 + }, + { + "word": " did", + "start": 4664.72, + "end": 4664.84, + "probability": 1.0 + }, + { + "word": " want", + "start": 4664.84, + "end": 4664.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 4664.96, + "end": 4665.02, + "probability": 1.0 + }, + { + "word": " mention", + "start": 4665.02, + "end": 4665.22, + "probability": 1.0 + }, + { + "word": " one", + "start": 4665.22, + "end": 4665.36, + "probability": 1.0 + }, + { + "word": " more", + "start": 4665.36, + "end": 4665.5, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4665.5, + "end": 4665.7, + "probability": 1.0 + } + ] + }, + { + "id": 1983, + "text": "in the cord cutting world for a second.", + "start": 4665.7, + "end": 4667.64, + "words": [ + { + "word": " in", + "start": 4665.7, + "end": 4665.96, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 4665.96, + "end": 4666.1, + "probability": 1.0 + }, + { + "word": " cord", + "start": 4666.1, + "end": 4666.3, + "probability": 0.99560546875 + }, + { + "word": " cutting", + "start": 4666.3, + "end": 4666.5, + "probability": 0.303955078125 + }, + { + "word": " world", + "start": 4666.5, + "end": 4667.02, + "probability": 1.0 + }, + { + "word": " for", + "start": 4667.02, + "end": 4667.3, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 4667.3, + "end": 4667.42, + "probability": 1.0 + }, + { + "word": " second.", + "start": 4667.42, + "end": 4667.64, + "probability": 1.0 + } + ] + }, + { + "id": 1984, + "text": "A lot of the complaints that people have", + "start": 4667.84, + "end": 4670.12, + "words": [ + { + "word": " A", + "start": 4667.84, + "end": 4668.24, + "probability": 0.931640625 + }, + { + "word": " lot", + "start": 4668.24, + "end": 4668.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 4668.9, + "end": 4669.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 4669.02, + "end": 4669.16, + "probability": 1.0 + }, + { + "word": " complaints", + "start": 4669.16, + "end": 4669.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 4669.54, + "end": 4669.76, + "probability": 1.0 + }, + { + "word": " people", + "start": 4669.76, + "end": 4669.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 4669.92, + "end": 4670.12, + "probability": 1.0 + } + ] + }, + { + "id": 1985, + "text": "about the whole cord cutting setup", + "start": 4670.12, + "end": 4671.66, + "words": [ + { + "word": " about", + "start": 4670.12, + "end": 4670.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 4670.42, + "end": 4670.78, + "probability": 1.0 + }, + { + "word": " whole", + "start": 4670.78, + "end": 4670.92, + "probability": 1.0 + }, + { + "word": " cord", + "start": 4670.92, + "end": 4671.18, + "probability": 0.99951171875 + }, + { + "word": " cutting", + "start": 4671.18, + "end": 4671.36, + "probability": 1.0 + }, + { + "word": " setup", + "start": 4671.36, + "end": 4671.66, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1986, + "text": "is that it doesn't feel like actual TV,", + "start": 4671.66, + "end": 4673.92, + "words": [ + { + "word": " is", + "start": 4671.66, + "end": 4671.96, + "probability": 0.98681640625 + }, + { + "word": " that", + "start": 4671.96, + "end": 4672.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 4672.08, + "end": 4672.22, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 4672.22, + "end": 4672.44, + "probability": 1.0 + }, + { + "word": " feel", + "start": 4672.44, + "end": 4672.62, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4672.62, + "end": 4672.9, + "probability": 1.0 + }, + { + "word": " actual", + "start": 4672.9, + "end": 4673.56, + "probability": 0.99853515625 + }, + { + "word": " TV,", + "start": 4673.56, + "end": 4673.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1987, + "text": "where you can just flip through channels.", + "start": 4673.92, + "end": 4675.18, + "words": [ + { + "word": " where", + "start": 4673.92, + "end": 4674.1, + "probability": 0.0206298828125 + }, + { + "word": " you", + "start": 4674.1, + "end": 4674.28, + "probability": 0.998046875 + }, + { + "word": " can", + "start": 4674.28, + "end": 4674.4, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 4674.4, + "end": 4674.56, + "probability": 0.99658203125 + }, + { + "word": " flip", + "start": 4674.56, + "end": 4674.76, + "probability": 0.99853515625 + }, + { + "word": " through", + "start": 4674.76, + "end": 4674.9, + "probability": 0.99853515625 + }, + { + "word": " channels.", + "start": 4674.9, + "end": 4675.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 1988, + "text": "There is a solution for that, though.", + "start": 4675.68, + "end": 4677.52, + "words": [ + { + "word": " There", + "start": 4675.68, + "end": 4676.04, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4676.04, + "end": 4676.38, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 4676.38, + "end": 4676.6, + "probability": 0.9990234375 + }, + { + "word": " solution", + "start": 4676.6, + "end": 4677.0, + "probability": 1.0 + }, + { + "word": " for", + "start": 4677.0, + "end": 4677.22, + "probability": 0.9990234375 + }, + { + "word": " that,", + "start": 4677.22, + "end": 4677.36, + "probability": 1.0 + }, + { + "word": " though.", + "start": 4677.4, + "end": 4677.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1989, + "text": "There's a software called Pseudo TV Live,", + "start": 4677.86, + "end": 4680.16, + "words": [ + { + "word": " There's", + "start": 4677.86, + "end": 4678.22, + "probability": 0.97265625 + }, + { + "word": " a", + "start": 4678.22, + "end": 4678.32, + "probability": 0.9990234375 + }, + { + "word": " software", + "start": 4678.32, + "end": 4678.62, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 4678.62, + "end": 4678.98, + "probability": 0.99951171875 + }, + { + "word": " Pseudo", + "start": 4678.98, + "end": 4679.34, + "probability": 0.927734375 + }, + { + "word": " TV", + "start": 4679.34, + "end": 4679.86, + "probability": 0.810546875 + }, + { + "word": " Live,", + "start": 4679.86, + "end": 4680.16, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1990, + "text": "which you can set up on a computer,", + "start": 4680.62, + "end": 4681.92, + "words": [ + { + "word": " which", + "start": 4680.62, + "end": 4680.98, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 4680.98, + "end": 4681.12, + "probability": 1.0 + }, + { + "word": " can", + "start": 4681.12, + "end": 4681.24, + "probability": 1.0 + }, + { + "word": " set", + "start": 4681.24, + "end": 4681.38, + "probability": 0.99755859375 + }, + { + "word": " up", + "start": 4681.38, + "end": 4681.48, + "probability": 1.0 + }, + { + "word": " on", + "start": 4681.48, + "end": 4681.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 4681.58, + "end": 4681.62, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 4681.62, + "end": 4681.92, + "probability": 1.0 + } + ] + }, + { + "id": 1991, + "text": "or any device, really.", + "start": 4682.380000000001, + "end": 4683.7, + "words": [ + { + "word": " or", + "start": 4682.380000000001, + "end": 4682.740000000001, + "probability": 0.93994140625 + }, + { + "word": " any", + "start": 4682.740000000001, + "end": 4683.1, + "probability": 0.99951171875 + }, + { + "word": " device,", + "start": 4683.1, + "end": 4683.48, + "probability": 1.0 + }, + { + "word": " really.", + "start": 4683.52, + "end": 4683.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1992, + "text": "And then you just hook up all of your services to it,", + "start": 4683.84, + "end": 4685.98, + "words": [ + { + "word": " And", + "start": 4683.84, + "end": 4684.12, + "probability": 0.96728515625 + }, + { + "word": " then", + "start": 4684.12, + "end": 4684.24, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4684.24, + "end": 4684.36, + "probability": 0.994140625 + }, + { + "word": " just", + "start": 4684.36, + "end": 4684.52, + "probability": 1.0 + }, + { + "word": " hook", + "start": 4684.52, + "end": 4684.7, + "probability": 1.0 + }, + { + "word": " up", + "start": 4684.7, + "end": 4684.82, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4684.82, + "end": 4685.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 4685.0, + "end": 4685.12, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4685.12, + "end": 4685.24, + "probability": 1.0 + }, + { + "word": " services", + "start": 4685.24, + "end": 4685.54, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4685.54, + "end": 4685.76, + "probability": 1.0 + }, + { + "word": " it,", + "start": 4685.76, + "end": 4685.98, + "probability": 1.0 + } + ] + }, + { + "id": 1993, + "text": "and it makes them all into a pseudo cable device.", + "start": 4686.02, + "end": 4689.4, + "words": [ + { + "word": " and", + "start": 4686.02, + "end": 4686.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 4686.44, + "end": 4686.56, + "probability": 1.0 + }, + { + "word": " makes", + "start": 4686.56, + "end": 4687.28, + "probability": 0.8427734375 + }, + { + "word": " them", + "start": 4687.28, + "end": 4687.64, + "probability": 1.0 + }, + { + "word": " all", + "start": 4687.64, + "end": 4687.8, + "probability": 1.0 + }, + { + "word": " into", + "start": 4687.8, + "end": 4688.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 4688.02, + "end": 4688.2, + "probability": 1.0 + }, + { + "word": " pseudo", + "start": 4688.2, + "end": 4688.42, + "probability": 0.94580078125 + }, + { + "word": " cable", + "start": 4688.42, + "end": 4689.04, + "probability": 0.8369140625 + }, + { + "word": " device.", + "start": 4689.04, + "end": 4689.4, + "probability": 1.0 + } + ] + }, + { + "id": 1994, + "text": "So you can just flip through your channels.", + "start": 4689.64, + "end": 4690.98, + "words": [ + { + "word": " So", + "start": 4689.64, + "end": 4689.86, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4689.86, + "end": 4690.0, + "probability": 0.9580078125 + }, + { + "word": " can", + "start": 4690.0, + "end": 4690.12, + "probability": 1.0 + }, + { + "word": " just", + "start": 4690.12, + "end": 4690.26, + "probability": 1.0 + }, + { + "word": " flip", + "start": 4690.26, + "end": 4690.44, + "probability": 1.0 + }, + { + "word": " through", + "start": 4690.44, + "end": 4690.56, + "probability": 1.0 + }, + { + "word": " your", + "start": 4690.56, + "end": 4690.68, + "probability": 1.0 + }, + { + "word": " channels.", + "start": 4690.68, + "end": 4690.98, + "probability": 1.0 + } + ] + }, + { + "id": 1995, + "text": "There's stuff playing constantly.", + "start": 4691.22, + "end": 4692.42, + "words": [ + { + "word": " There's", + "start": 4691.22, + "end": 4691.58, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4691.58, + "end": 4691.74, + "probability": 1.0 + }, + { + "word": " playing", + "start": 4691.74, + "end": 4691.98, + "probability": 1.0 + }, + { + "word": " constantly.", + "start": 4691.98, + "end": 4692.42, + "probability": 1.0 + } + ] + }, + { + "id": 1996, + "text": "It's pretty cool.", + "start": 4692.68, + "end": 4693.3, + "words": [ + { + "word": " It's", + "start": 4692.68, + "end": 4693.04, + "probability": 0.9990234375 + }, + { + "word": " pretty", + "start": 4693.04, + "end": 4693.14, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 4693.14, + "end": 4693.3, + "probability": 1.0 + } + ] + }, + { + "id": 1997, + "text": "Yeah, I guess that I've been doing this for so long now", + "start": 4693.48, + "end": 4696.44, + "words": [ + { + "word": " Yeah,", + "start": 4693.48, + "end": 4693.74, + "probability": 0.9482421875 + }, + { + "word": " I", + "start": 4693.78, + "end": 4693.9, + "probability": 1.0 + }, + { + "word": " guess", + "start": 4693.9, + "end": 4694.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 4694.22, + "end": 4694.34, + "probability": 0.994140625 + }, + { + "word": " I've", + "start": 4694.34, + "end": 4694.58, + "probability": 1.0 + }, + { + "word": " been", + "start": 4694.58, + "end": 4694.72, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4694.72, + "end": 4694.92, + "probability": 1.0 + }, + { + "word": " this", + "start": 4694.92, + "end": 4695.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 4695.14, + "end": 4695.62, + "probability": 1.0 + }, + { + "word": " so", + "start": 4695.62, + "end": 4695.88, + "probability": 1.0 + }, + { + "word": " long", + "start": 4695.88, + "end": 4696.18, + "probability": 1.0 + }, + { + "word": " now", + "start": 4696.18, + "end": 4696.44, + "probability": 1.0 + } + ] + }, + { + "id": 1998, + "text": "that I have no nostalgia.", + "start": 4697.300000000001, + "end": 4699.0, + "words": [ + { + "word": " that", + "start": 4697.300000000001, + "end": 4697.660000000001, + "probability": 0.98681640625 + }, + { + "word": " I", + "start": 4697.660000000001, + "end": 4698.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 4698.02, + "end": 4698.22, + "probability": 1.0 + }, + { + "word": " no", + "start": 4698.22, + "end": 4698.44, + "probability": 1.0 + }, + { + "word": " nostalgia.", + "start": 4698.44, + "end": 4699.0, + "probability": 1.0 + } + ] + }, + { + "id": 1999, + "text": "Yeah, I agree.", + "start": 4699.5, + "end": 4700.24, + "words": [ + { + "word": " Yeah,", + "start": 4699.5, + "end": 4699.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4699.9, + "end": 4700.04, + "probability": 1.0 + }, + { + "word": " agree.", + "start": 4700.04, + "end": 4700.24, + "probability": 1.0 + } + ] + }, + { + "id": 2000, + "text": "For any of that stuff.", + "start": 4700.28, + "end": 4701.4, + "words": [ + { + "word": " For", + "start": 4700.28, + "end": 4700.5, + "probability": 0.97998046875 + }, + { + "word": " any", + "start": 4700.5, + "end": 4700.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 4700.98, + "end": 4701.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 4701.14, + "end": 4701.3, + "probability": 0.99951171875 + }, + { + "word": " stuff.", + "start": 4701.3, + "end": 4701.4, + "probability": 0.96484375 + } + ] + }, + { + "id": 2001, + "text": "I mean, so there are circumstances", + "start": 4701.4, + "end": 4703.12, + "words": [ + { + "word": " I", + "start": 4701.4, + "end": 4701.5, + "probability": 0.399169921875 + }, + { + "word": " mean,", + "start": 4701.5, + "end": 4701.62, + "probability": 0.9951171875 + }, + { + "word": " so", + "start": 4701.62, + "end": 4702.12, + "probability": 0.80419921875 + }, + { + "word": " there", + "start": 4702.12, + "end": 4702.72, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 4702.72, + "end": 4702.82, + "probability": 1.0 + }, + { + "word": " circumstances", + "start": 4702.82, + "end": 4703.12, + "probability": 1.0 + } + ] + }, + { + "id": 2002, + "text": "in which I like to do this.", + "start": 4703.12, + "end": 4703.9, + "words": [ + { + "word": " in", + "start": 4703.12, + "end": 4703.48, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 4703.48, + "end": 4703.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 4703.64, + "end": 4703.82, + "probability": 0.818359375 + }, + { + "word": " like", + "start": 4703.82, + "end": 4703.9, + "probability": 0.36181640625 + }, + { + "word": " to", + "start": 4703.9, + "end": 4703.9, + "probability": 0.583984375 + }, + { + "word": " do", + "start": 4703.9, + "end": 4703.9, + "probability": 0.373046875 + }, + { + "word": " this.", + "start": 4703.9, + "end": 4703.9, + "probability": 0.5849609375 + } + ] + }, + { + "id": 2003, + "text": "", + "start": 4703.9, + "end": 4703.9, + "words": [] + }, + { + "id": 2004, + "text": "", + "start": 4703.9, + "end": 4703.9, + "words": [] + }, + { + "id": 2005, + "text": "I like to just have something on in the background.", + "start": 4703.9, + "end": 4705.56, + "words": [ + { + "word": " I", + "start": 4703.9, + "end": 4703.9, + "probability": 0.2314453125 + }, + { + "word": " like", + "start": 4703.9, + "end": 4703.9, + "probability": 0.9482421875 + }, + { + "word": " to", + "start": 4703.9, + "end": 4704.04, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 4704.04, + "end": 4704.2, + "probability": 0.99169921875 + }, + { + "word": " have", + "start": 4704.2, + "end": 4704.34, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 4704.34, + "end": 4704.6, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4704.6, + "end": 4704.88, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4704.88, + "end": 4705.14, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 4705.14, + "end": 4705.24, + "probability": 1.0 + }, + { + "word": " background.", + "start": 4705.24, + "end": 4705.56, + "probability": 1.0 + } + ] + }, + { + "id": 2006, + "text": "But in that case, I'll just turn on autoplay, you know,", + "start": 4706.320000000001, + "end": 4709.04, + "words": [ + { + "word": " But", + "start": 4706.320000000001, + "end": 4706.72, + "probability": 0.86181640625 + }, + { + "word": " in", + "start": 4706.72, + "end": 4706.86, + "probability": 0.9912109375 + }, + { + "word": " that", + "start": 4706.86, + "end": 4706.96, + "probability": 1.0 + }, + { + "word": " case,", + "start": 4706.96, + "end": 4707.14, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 4707.22, + "end": 4707.34, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4707.34, + "end": 4707.46, + "probability": 1.0 + }, + { + "word": " turn", + "start": 4707.46, + "end": 4707.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 4707.84, + "end": 4707.98, + "probability": 0.99951171875 + }, + { + "word": " autoplay,", + "start": 4707.98, + "end": 4708.52, + "probability": 0.970703125 + }, + { + "word": " you", + "start": 4708.56, + "end": 4708.84, + "probability": 0.970703125 + }, + { + "word": " know,", + "start": 4708.84, + "end": 4709.04, + "probability": 1.0 + } + ] + }, + { + "id": 2007, + "text": "and I'll just watch a whole show or something.", + "start": 4709.06, + "end": 4711.26, + "words": [ + { + "word": " and", + "start": 4709.06, + "end": 4709.36, + "probability": 0.99951171875 + }, + { + "word": " I'll", + "start": 4709.36, + "end": 4710.02, + "probability": 0.84814453125 + }, + { + "word": " just", + "start": 4710.02, + "end": 4710.18, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4710.18, + "end": 4710.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 4710.4, + "end": 4710.54, + "probability": 1.0 + }, + { + "word": " whole", + "start": 4710.54, + "end": 4710.66, + "probability": 1.0 + }, + { + "word": " show", + "start": 4710.66, + "end": 4710.86, + "probability": 1.0 + }, + { + "word": " or", + "start": 4710.86, + "end": 4711.06, + "probability": 0.99951171875 + }, + { + "word": " something.", + "start": 4711.06, + "end": 4711.26, + "probability": 1.0 + } + ] + }, + { + "id": 2008, + "text": "I guess I'm weird in that respect,", + "start": 4711.48, + "end": 4713.26, + "words": [ + { + "word": " I", + "start": 4711.48, + "end": 4711.82, + "probability": 0.99853515625 + }, + { + "word": " guess", + "start": 4711.82, + "end": 4712.14, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4712.14, + "end": 4712.32, + "probability": 1.0 + }, + { + "word": " weird", + "start": 4712.32, + "end": 4712.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 4712.62, + "end": 4712.78, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4712.78, + "end": 4712.9, + "probability": 1.0 + }, + { + "word": " respect,", + "start": 4712.9, + "end": 4713.26, + "probability": 0.990234375 + } + ] + }, + { + "id": 2009, + "text": "is that a lot of people like to put things on", + "start": 4713.78, + "end": 4716.62, + "words": [ + { + "word": " is", + "start": 4713.78, + "end": 4714.04, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 4714.04, + "end": 4714.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 4714.24, + "end": 4714.46, + "probability": 0.55029296875 + }, + { + "word": " lot", + "start": 4714.46, + "end": 4715.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 4715.48, + "end": 4715.58, + "probability": 1.0 + }, + { + "word": " people", + "start": 4715.58, + "end": 4715.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 4715.74, + "end": 4715.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 4715.88, + "end": 4715.98, + "probability": 1.0 + }, + { + "word": " put", + "start": 4715.98, + "end": 4716.12, + "probability": 1.0 + }, + { + "word": " things", + "start": 4716.12, + "end": 4716.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 4716.34, + "end": 4716.62, + "probability": 1.0 + } + ] + }, + { + "id": 2010, + "text": "for background noise.", + "start": 4716.62, + "end": 4717.52, + "words": [ + { + "word": " for", + "start": 4716.62, + "end": 4716.86, + "probability": 1.0 + }, + { + "word": " background", + "start": 4716.86, + "end": 4717.22, + "probability": 1.0 + }, + { + "word": " noise.", + "start": 4717.22, + "end": 4717.52, + "probability": 1.0 + } + ] + }, + { + "id": 2011, + "text": "And the only background noise that I have in my life", + "start": 4717.76, + "end": 4720.32, + "words": [ + { + "word": " And", + "start": 4717.76, + "end": 4718.04, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 4718.04, + "end": 4718.74, + "probability": 1.0 + }, + { + "word": " only", + "start": 4718.74, + "end": 4718.94, + "probability": 1.0 + }, + { + "word": " background", + "start": 4718.94, + "end": 4719.26, + "probability": 1.0 + }, + { + "word": " noise", + "start": 4719.26, + "end": 4719.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 4719.56, + "end": 4719.72, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4719.72, + "end": 4719.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 4719.78, + "end": 4719.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 4719.9, + "end": 4720.0, + "probability": 1.0 + }, + { + "word": " my", + "start": 4720.0, + "end": 4720.08, + "probability": 1.0 + }, + { + "word": " life", + "start": 4720.08, + "end": 4720.32, + "probability": 1.0 + } + ] + }, + { + "id": 2012, + "text": "is a fan.", + "start": 4720.32, + "end": 4720.96, + "words": [ + { + "word": " is", + "start": 4720.32, + "end": 4720.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 4720.54, + "end": 4720.66, + "probability": 0.9912109375 + }, + { + "word": " fan.", + "start": 4720.66, + "end": 4720.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2013, + "text": "And then the rest of it is silence.", + "start": 4721.12, + "end": 4722.8, + "words": [ + { + "word": " And", + "start": 4721.12, + "end": 4721.36, + "probability": 1.0 + }, + { + "word": " then", + "start": 4721.36, + "end": 4721.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 4721.46, + "end": 4721.58, + "probability": 0.99951171875 + }, + { + "word": " rest", + "start": 4721.58, + "end": 4721.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 4721.78, + "end": 4721.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 4721.88, + "end": 4721.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 4721.98, + "end": 4722.24, + "probability": 1.0 + }, + { + "word": " silence.", + "start": 4722.24, + "end": 4722.8, + "probability": 0.990234375 + } + ] + }, + { + "id": 2014, + "text": "I just enjoy silence so much", + "start": 4722.98, + "end": 4725.16, + "words": [ + { + "word": " I", + "start": 4722.98, + "end": 4723.32, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4723.32, + "end": 4723.72, + "probability": 1.0 + }, + { + "word": " enjoy", + "start": 4723.72, + "end": 4724.1, + "probability": 1.0 + }, + { + "word": " silence", + "start": 4724.1, + "end": 4724.58, + "probability": 1.0 + }, + { + "word": " so", + "start": 4724.58, + "end": 4724.9, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 4724.9, + "end": 4725.16, + "probability": 1.0 + } + ] + }, + { + "id": 2015, + "text": "that I have noise-canceling headphones", + "start": 4725.16, + "end": 4728.94, + "words": [ + { + "word": " that", + "start": 4725.16, + "end": 4725.5, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4725.5, + "end": 4726.64, + "probability": 0.9912109375 + }, + { + "word": " have", + "start": 4726.64, + "end": 4726.86, + "probability": 1.0 + }, + { + "word": " noise", + "start": 4726.86, + "end": 4728.02, + "probability": 0.44921875 + }, + { + "word": "-canceling", + "start": 4728.02, + "end": 4728.68, + "probability": 0.97216796875 + }, + { + "word": " headphones", + "start": 4728.68, + "end": 4728.94, + "probability": 1.0 + } + ] + }, + { + "id": 2016, + "text": "that I don't plug into anything.", + "start": 4728.94, + "end": 4730.44, + "words": [ + { + "word": " that", + "start": 4728.94, + "end": 4729.58, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 4729.58, + "end": 4729.68, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4729.68, + "end": 4729.82, + "probability": 1.0 + }, + { + "word": " plug", + "start": 4729.82, + "end": 4730.02, + "probability": 1.0 + }, + { + "word": " into", + "start": 4730.02, + "end": 4730.22, + "probability": 1.0 + }, + { + "word": " anything.", + "start": 4730.22, + "end": 4730.44, + "probability": 1.0 + } + ] + }, + { + "id": 2017, + "text": "Well, what you don't have, Mike, is tinnitus.", + "start": 4730.58, + "end": 4732.42, + "words": [ + { + "word": " Well,", + "start": 4730.58, + "end": 4730.66, + "probability": 0.51025390625 + }, + { + "word": " what", + "start": 4730.68, + "end": 4730.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 4730.78, + "end": 4730.9, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4730.9, + "end": 4731.2, + "probability": 1.0 + }, + { + "word": " have,", + "start": 4731.2, + "end": 4731.34, + "probability": 1.0 + }, + { + "word": " Mike,", + "start": 4731.42, + "end": 4731.64, + "probability": 1.0 + }, + { + "word": " is", + "start": 4731.7, + "end": 4732.0, + "probability": 1.0 + }, + { + "word": " tinnitus.", + "start": 4732.0, + "end": 4732.42, + "probability": 0.99609375 + } + ] + }, + { + "id": 2018, + "text": "So...", + "start": 4732.8, + "end": 4733.2, + "words": [ + { + "word": " So...", + "start": 4732.8, + "end": 4733.2, + "probability": 0.33740234375 + } + ] + }, + { + "id": 2019, + "text": "This is...", + "start": 4733.2, + "end": 4733.58, + "words": [ + { + "word": " This", + "start": 4733.2, + "end": 4733.5, + "probability": 0.87548828125 + }, + { + "word": " is...", + "start": 4733.5, + "end": 4733.58, + "probability": 0.56640625 + } + ] + }, + { + "id": 2020, + "text": "This is...", + "start": 4733.58, + "end": 4733.84, + "words": [ + { + "word": " This", + "start": 4733.58, + "end": 4733.66, + "probability": 0.1798095703125 + }, + { + "word": " is...", + "start": 4733.66, + "end": 4733.84, + "probability": 0.65673828125 + } + ] + }, + { + "id": 2021, + "text": "This is...", + "start": 4733.84, + "end": 4733.88, + "words": [ + { + "word": " This", + "start": 4733.84, + "end": 4733.88, + "probability": 0.63232421875 + }, + { + "word": " is...", + "start": 4733.88, + "end": 4733.88, + "probability": 0.8125 + } + ] + }, + { + "id": 2022, + "text": "This is true.", + "start": 4733.88, + "end": 4734.0, + "words": [ + { + "word": " This", + "start": 4733.88, + "end": 4734.0, + "probability": 0.001628875732421875 + }, + { + "word": " is", + "start": 4734.0, + "end": 4734.0, + "probability": 0.96728515625 + }, + { + "word": " true.", + "start": 4734.0, + "end": 4734.0, + "probability": 0.955078125 + } + ] + }, + { + "id": 2023, + "text": "So, yeah, my dad was told me.", + "start": 4735.660000000001, + "end": 4737.28, + "words": [ + { + "word": " So,", + "start": 4735.660000000001, + "end": 4736.02, + "probability": 0.84521484375 + }, + { + "word": " yeah,", + "start": 4736.02, + "end": 4736.38, + "probability": 0.9453125 + }, + { + "word": " my", + "start": 4736.5, + "end": 4736.62, + "probability": 1.0 + }, + { + "word": " dad", + "start": 4736.62, + "end": 4736.84, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4736.84, + "end": 4736.96, + "probability": 0.7626953125 + }, + { + "word": " told", + "start": 4736.96, + "end": 4737.1, + "probability": 0.51708984375 + }, + { + "word": " me.", + "start": 4737.1, + "end": 4737.28, + "probability": 0.603515625 + } + ] + }, + { + "id": 2024, + "text": "He said that he's developed tinnitus recently.", + "start": 4737.28, + "end": 4739.04, + "words": [ + { + "word": " He", + "start": 4737.28, + "end": 4737.46, + "probability": 0.91796875 + }, + { + "word": " said", + "start": 4737.46, + "end": 4737.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 4737.66, + "end": 4737.78, + "probability": 0.86865234375 + }, + { + "word": " he's", + "start": 4737.78, + "end": 4738.0, + "probability": 0.9951171875 + }, + { + "word": " developed", + "start": 4738.0, + "end": 4738.28, + "probability": 0.99853515625 + }, + { + "word": " tinnitus", + "start": 4738.28, + "end": 4738.78, + "probability": 0.9970703125 + }, + { + "word": " recently.", + "start": 4738.78, + "end": 4739.04, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2025, + "text": "I've got some of that going on.", + "start": 4739.42, + "end": 4740.5, + "words": [ + { + "word": " I've", + "start": 4739.42, + "end": 4739.7, + "probability": 1.0 + }, + { + "word": " got", + "start": 4739.7, + "end": 4739.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 4739.84, + "end": 4740.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 4740.0, + "end": 4740.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 4740.08, + "end": 4740.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 4740.16, + "end": 4740.32, + "probability": 1.0 + }, + { + "word": " on.", + "start": 4740.32, + "end": 4740.5, + "probability": 1.0 + } + ] + }, + { + "id": 2026, + "text": "It's because you go to those acid rock concerts", + "start": 4740.96, + "end": 4743.88, + "words": [ + { + "word": " It's", + "start": 4740.96, + "end": 4741.32, + "probability": 0.9833984375 + }, + { + "word": " because", + "start": 4741.32, + "end": 4741.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 4741.42, + "end": 4741.58, + "probability": 1.0 + }, + { + "word": " go", + "start": 4741.58, + "end": 4741.68, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4741.68, + "end": 4741.78, + "probability": 1.0 + }, + { + "word": " those", + "start": 4741.78, + "end": 4742.0, + "probability": 1.0 + }, + { + "word": " acid", + "start": 4742.0, + "end": 4743.3, + "probability": 0.93310546875 + }, + { + "word": " rock", + "start": 4743.3, + "end": 4743.56, + "probability": 0.99951171875 + }, + { + "word": " concerts", + "start": 4743.56, + "end": 4743.88, + "probability": 1.0 + } + ] + }, + { + "id": 2027, + "text": "that you go to.", + "start": 4743.88, + "end": 4744.58, + "words": [ + { + "word": " that", + "start": 4743.88, + "end": 4744.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4744.16, + "end": 4744.26, + "probability": 1.0 + }, + { + "word": " go", + "start": 4744.26, + "end": 4744.4, + "probability": 1.0 + }, + { + "word": " to.", + "start": 4744.4, + "end": 4744.58, + "probability": 1.0 + } + ] + }, + { + "id": 2028, + "text": "Acid rock?", + "start": 4745.04, + "end": 4745.6, + "words": [ + { + "word": " Acid", + "start": 4745.04, + "end": 4745.4, + "probability": 0.9990234375 + }, + { + "word": " rock?", + "start": 4745.4, + "end": 4745.6, + "probability": 1.0 + } + ] + }, + { + "id": 2029, + "text": "It's what my grandfather used to call anything that was...", + "start": 4745.94, + "end": 4749.06, + "words": [ + { + "word": " It's", + "start": 4745.94, + "end": 4746.06, + "probability": 0.888671875 + }, + { + "word": " what", + "start": 4746.06, + "end": 4746.08, + "probability": 1.0 + }, + { + "word": " my", + "start": 4746.08, + "end": 4746.84, + "probability": 1.0 + }, + { + "word": " grandfather", + "start": 4746.84, + "end": 4747.2, + "probability": 0.99755859375 + }, + { + "word": " used", + "start": 4747.2, + "end": 4747.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 4747.44, + "end": 4747.6, + "probability": 1.0 + }, + { + "word": " call", + "start": 4747.6, + "end": 4747.84, + "probability": 1.0 + }, + { + "word": " anything", + "start": 4747.84, + "end": 4748.24, + "probability": 0.99267578125 + }, + { + "word": " that", + "start": 4748.24, + "end": 4748.66, + "probability": 1.0 + }, + { + "word": " was...", + "start": 4748.66, + "end": 4749.06, + "probability": 0.5107421875 + } + ] + }, + { + "id": 2030, + "text": "anything that was harder than the Beatles.", + "start": 4749.06, + "end": 4750.96, + "words": [ + { + "word": " anything", + "start": 4749.06, + "end": 4749.78, + "probability": 0.254638671875 + }, + { + "word": " that", + "start": 4749.78, + "end": 4750.02, + "probability": 1.0 + }, + { + "word": " was", + "start": 4750.02, + "end": 4750.14, + "probability": 1.0 + }, + { + "word": " harder", + "start": 4750.14, + "end": 4750.32, + "probability": 0.9990234375 + }, + { + "word": " than", + "start": 4750.32, + "end": 4750.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 4750.54, + "end": 4750.68, + "probability": 0.822265625 + }, + { + "word": " Beatles.", + "start": 4750.68, + "end": 4750.96, + "probability": 1.0 + } + ] + }, + { + "id": 2031, + "text": "Right?", + "start": 4751.4800000000005, + "end": 4751.84, + "words": [ + { + "word": " Right?", + "start": 4751.4800000000005, + "end": 4751.84, + "probability": 0.671875 + } + ] + }, + { + "id": 2032, + "text": "Yeah, it's all those acid rock shows that I go to.", + "start": 4752.700000000001, + "end": 4754.92, + "words": [ + { + "word": " Yeah,", + "start": 4752.700000000001, + "end": 4753.06, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 4753.12, + "end": 4753.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 4753.3, + "end": 4753.36, + "probability": 1.0 + }, + { + "word": " those", + "start": 4753.36, + "end": 4753.52, + "probability": 1.0 + }, + { + "word": " acid", + "start": 4753.52, + "end": 4753.84, + "probability": 0.99951171875 + }, + { + "word": " rock", + "start": 4753.84, + "end": 4754.06, + "probability": 1.0 + }, + { + "word": " shows", + "start": 4754.06, + "end": 4754.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4754.3, + "end": 4754.52, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4754.52, + "end": 4754.62, + "probability": 1.0 + }, + { + "word": " go", + "start": 4754.62, + "end": 4754.74, + "probability": 1.0 + }, + { + "word": " to.", + "start": 4754.74, + "end": 4754.92, + "probability": 1.0 + } + ] + }, + { + "id": 2033, + "text": "Oh, man.", + "start": 4755.92, + "end": 4757.42, + "words": [ + { + "word": " Oh,", + "start": 4755.92, + "end": 4756.28, + "probability": 0.625 + }, + { + "word": " man.", + "start": 4757.24, + "end": 4757.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2034, + "text": "That was...", + "start": 4757.56, + "end": 4757.88, + "words": [ + { + "word": " That", + "start": 4757.56, + "end": 4757.68, + "probability": 0.97412109375 + }, + { + "word": " was...", + "start": 4757.68, + "end": 4757.88, + "probability": 0.57568359375 + } + ] + }, + { + "id": 2035, + "text": "That just came out of nowhere.", + "start": 4758.76, + "end": 4760.02, + "words": [ + { + "word": " That", + "start": 4758.76, + "end": 4759.12, + "probability": 0.92919921875 + }, + { + "word": " just", + "start": 4759.12, + "end": 4759.28, + "probability": 0.998046875 + }, + { + "word": " came", + "start": 4759.28, + "end": 4759.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 4759.5, + "end": 4759.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 4759.7, + "end": 4759.8, + "probability": 1.0 + }, + { + "word": " nowhere.", + "start": 4759.8, + "end": 4760.02, + "probability": 1.0 + } + ] + }, + { + "id": 2036, + "text": "I just remember him saying that one time", + "start": 4760.12, + "end": 4761.68, + "words": [ + { + "word": " I", + "start": 4760.12, + "end": 4760.24, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 4760.24, + "end": 4760.36, + "probability": 0.9169921875 + }, + { + "word": " remember", + "start": 4760.36, + "end": 4760.6, + "probability": 1.0 + }, + { + "word": " him", + "start": 4760.6, + "end": 4760.86, + "probability": 1.0 + }, + { + "word": " saying", + "start": 4760.86, + "end": 4761.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 4761.1, + "end": 4761.3, + "probability": 1.0 + }, + { + "word": " one", + "start": 4761.3, + "end": 4761.44, + "probability": 1.0 + }, + { + "word": " time", + "start": 4761.44, + "end": 4761.68, + "probability": 1.0 + } + ] + }, + { + "id": 2037, + "text": "and I was just like,", + "start": 4761.68, + "end": 4762.46, + "words": [ + { + "word": " and", + "start": 4761.68, + "end": 4761.86, + "probability": 0.37109375 + }, + { + "word": " I", + "start": 4761.86, + "end": 4761.94, + "probability": 0.994140625 + }, + { + "word": " was", + "start": 4761.94, + "end": 4762.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 4762.06, + "end": 4762.2, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 4762.2, + "end": 4762.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2038, + "text": "oh, that's the funniest thing I've ever heard.", + "start": 4762.58, + "end": 4763.86, + "words": [ + { + "word": " oh,", + "start": 4762.58, + "end": 4762.82, + "probability": 0.982421875 + }, + { + "word": " that's", + "start": 4762.84, + "end": 4763.0, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4763.0, + "end": 4763.08, + "probability": 1.0 + }, + { + "word": " funniest", + "start": 4763.08, + "end": 4763.36, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 4763.36, + "end": 4763.58, + "probability": 0.9990234375 + }, + { + "word": " I've", + "start": 4763.58, + "end": 4763.72, + "probability": 0.966796875 + }, + { + "word": " ever", + "start": 4763.72, + "end": 4763.78, + "probability": 0.9970703125 + }, + { + "word": " heard.", + "start": 4763.78, + "end": 4763.86, + "probability": 0.84423828125 + } + ] + }, + { + "id": 2039, + "text": "Speaking of old man stuff, though,", + "start": 4763.86, + "end": 4765.88, + "words": [ + { + "word": " Speaking", + "start": 4763.86, + "end": 4764.34, + "probability": 0.231201171875 + }, + { + "word": " of", + "start": 4764.34, + "end": 4764.76, + "probability": 0.9990234375 + }, + { + "word": " old", + "start": 4764.76, + "end": 4765.1, + "probability": 0.9833984375 + }, + { + "word": " man", + "start": 4765.1, + "end": 4765.28, + "probability": 0.98095703125 + }, + { + "word": " stuff,", + "start": 4765.28, + "end": 4765.54, + "probability": 0.99853515625 + }, + { + "word": " though,", + "start": 4765.68, + "end": 4765.88, + "probability": 0.9833984375 + } + ] + }, + { + "id": 2040, + "text": "I wanted to kind of...", + "start": 4766.04, + "end": 4767.28, + "words": [ + { + "word": " I", + "start": 4766.04, + "end": 4766.54, + "probability": 0.994140625 + }, + { + "word": " wanted", + "start": 4766.54, + "end": 4766.76, + "probability": 0.9365234375 + }, + { + "word": " to", + "start": 4766.76, + "end": 4766.92, + "probability": 1.0 + }, + { + "word": " kind", + "start": 4766.92, + "end": 4767.06, + "probability": 0.213623046875 + }, + { + "word": " of...", + "start": 4767.06, + "end": 4767.28, + "probability": 0.53076171875 + } + ] + }, + { + "id": 2041, + "text": "I wanted to call you out", + "start": 4767.28, + "end": 4768.16, + "words": [ + { + "word": " I", + "start": 4767.28, + "end": 4767.48, + "probability": 0.9921875 + }, + { + "word": " wanted", + "start": 4767.48, + "end": 4767.62, + "probability": 0.923828125 + }, + { + "word": " to", + "start": 4767.62, + "end": 4767.72, + "probability": 1.0 + }, + { + "word": " call", + "start": 4767.72, + "end": 4767.86, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4767.86, + "end": 4768.0, + "probability": 1.0 + }, + { + "word": " out", + "start": 4768.0, + "end": 4768.16, + "probability": 1.0 + } + ] + }, + { + "id": 2042, + "text": "and see if you're as good as your word on something.", + "start": 4768.16, + "end": 4769.5, + "words": [ + { + "word": " and", + "start": 4768.16, + "end": 4768.26, + "probability": 0.99755859375 + }, + { + "word": " see", + "start": 4768.26, + "end": 4768.36, + "probability": 1.0 + }, + { + "word": " if", + "start": 4768.36, + "end": 4768.48, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4768.48, + "end": 4768.6, + "probability": 0.95703125 + }, + { + "word": " as", + "start": 4768.6, + "end": 4768.7, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 4768.7, + "end": 4768.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 4768.82, + "end": 4768.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 4768.92, + "end": 4769.0, + "probability": 0.9990234375 + }, + { + "word": " word", + "start": 4769.0, + "end": 4769.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 4769.16, + "end": 4769.28, + "probability": 1.0 + }, + { + "word": " something.", + "start": 4769.28, + "end": 4769.5, + "probability": 1.0 + } + ] + }, + { + "id": 2043, + "text": "Okay.", + "start": 4769.72, + "end": 4769.86, + "words": [ + { + "word": " Okay.", + "start": 4769.72, + "end": 4769.86, + "probability": 0.9189453125 + } + ] + }, + { + "id": 2044, + "text": "The Nokia 3310 is available once again.", + "start": 4770.12, + "end": 4773.56, + "words": [ + { + "word": " The", + "start": 4770.12, + "end": 4770.5, + "probability": 0.9970703125 + }, + { + "word": " Nokia", + "start": 4770.5, + "end": 4770.94, + "probability": 0.99951171875 + }, + { + "word": " 3310", + "start": 4770.94, + "end": 4772.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 4772.02, + "end": 4772.38, + "probability": 1.0 + }, + { + "word": " available", + "start": 4772.38, + "end": 4772.88, + "probability": 1.0 + }, + { + "word": " once", + "start": 4772.88, + "end": 4773.32, + "probability": 0.9990234375 + }, + { + "word": " again.", + "start": 4773.32, + "end": 4773.56, + "probability": 1.0 + } + ] + }, + { + "id": 2045, + "text": "That's the famous phone", + "start": 4773.66, + "end": 4774.72, + "words": [ + { + "word": " That's", + "start": 4773.66, + "end": 4774.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 4774.0, + "end": 4774.1, + "probability": 1.0 + }, + { + "word": " famous", + "start": 4774.1, + "end": 4774.38, + "probability": 1.0 + }, + { + "word": " phone", + "start": 4774.38, + "end": 4774.72, + "probability": 1.0 + } + ] + }, + { + "id": 2046, + "text": "that could stop a speeding bullet, as they said.", + "start": 4774.72, + "end": 4776.66, + "words": [ + { + "word": " that", + "start": 4774.72, + "end": 4774.98, + "probability": 1.0 + }, + { + "word": " could", + "start": 4774.98, + "end": 4775.18, + "probability": 1.0 + }, + { + "word": " stop", + "start": 4775.18, + "end": 4775.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 4775.42, + "end": 4775.56, + "probability": 1.0 + }, + { + "word": " speeding", + "start": 4775.56, + "end": 4775.7, + "probability": 0.99951171875 + }, + { + "word": " bullet,", + "start": 4775.7, + "end": 4776.0, + "probability": 1.0 + }, + { + "word": " as", + "start": 4776.12, + "end": 4776.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 4776.34, + "end": 4776.44, + "probability": 1.0 + }, + { + "word": " said.", + "start": 4776.44, + "end": 4776.66, + "probability": 1.0 + } + ] + }, + { + "id": 2047, + "text": "It used to be able to.", + "start": 4776.98, + "end": 4777.78, + "words": [ + { + "word": " It", + "start": 4776.98, + "end": 4777.14, + "probability": 0.99658203125 + }, + { + "word": " used", + "start": 4777.14, + "end": 4777.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 4777.34, + "end": 4777.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 4777.5, + "end": 4777.54, + "probability": 1.0 + }, + { + "word": " able", + "start": 4777.54, + "end": 4777.68, + "probability": 1.0 + }, + { + "word": " to.", + "start": 4777.68, + "end": 4777.78, + "probability": 1.0 + } + ] + }, + { + "id": 2048, + "text": "Yeah.", + "start": 4777.9, + "end": 4778.1, + "words": [ + { + "word": " Yeah.", + "start": 4777.9, + "end": 4778.1, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2049, + "text": "So, you were saying a couple weeks ago", + "start": 4778.56, + "end": 4780.64, + "words": [ + { + "word": " So,", + "start": 4778.56, + "end": 4778.94, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 4779.04, + "end": 4779.32, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4779.32, + "end": 4779.7, + "probability": 1.0 + }, + { + "word": " saying", + "start": 4779.7, + "end": 4779.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 4779.92, + "end": 4780.12, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 4780.12, + "end": 4780.28, + "probability": 1.0 + }, + { + "word": " weeks", + "start": 4780.28, + "end": 4780.4, + "probability": 0.98095703125 + }, + { + "word": " ago", + "start": 4780.4, + "end": 4780.64, + "probability": 1.0 + } + ] + }, + { + "id": 2050, + "text": "that you like the old phones?", + "start": 4780.64, + "end": 4782.54, + "words": [ + { + "word": " that", + "start": 4780.64, + "end": 4780.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 4780.94, + "end": 4781.68, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4781.68, + "end": 4781.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 4781.88, + "end": 4782.04, + "probability": 1.0 + }, + { + "word": " old", + "start": 4782.04, + "end": 4782.2, + "probability": 1.0 + }, + { + "word": " phones?", + "start": 4782.2, + "end": 4782.54, + "probability": 1.0 + } + ] + }, + { + "id": 2051, + "text": "I still have a wish", + "start": 4783.48, + "end": 4785.36, + "words": [ + { + "word": " I", + "start": 4783.48, + "end": 4783.86, + "probability": 0.9990234375 + }, + { + "word": " still", + "start": 4783.86, + "end": 4784.24, + "probability": 0.990234375 + }, + { + "word": " have", + "start": 4784.24, + "end": 4784.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 4784.72, + "end": 4784.96, + "probability": 1.0 + }, + { + "word": " wish", + "start": 4784.96, + "end": 4785.36, + "probability": 1.0 + } + ] + }, + { + "id": 2052, + "text": "that I could just have a non-smartphone.", + "start": 4785.36, + "end": 4787.74, + "words": [ + { + "word": " that", + "start": 4785.36, + "end": 4785.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 4785.68, + "end": 4785.8, + "probability": 1.0 + }, + { + "word": " could", + "start": 4785.8, + "end": 4785.94, + "probability": 1.0 + }, + { + "word": " just", + "start": 4785.94, + "end": 4786.14, + "probability": 1.0 + }, + { + "word": " have", + "start": 4786.14, + "end": 4786.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 4786.38, + "end": 4786.68, + "probability": 1.0 + }, + { + "word": " non", + "start": 4786.68, + "end": 4786.98, + "probability": 0.99951171875 + }, + { + "word": "-smartphone.", + "start": 4786.98, + "end": 4787.74, + "probability": 0.95263671875 + } + ] + }, + { + "id": 2053, + "text": "So, is this more of like a...", + "start": 4787.8, + "end": 4789.26, + "words": [ + { + "word": " So,", + "start": 4787.8, + "end": 4788.02, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 4788.12, + "end": 4788.32, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4788.32, + "end": 4788.46, + "probability": 1.0 + }, + { + "word": " more", + "start": 4788.46, + "end": 4788.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 4788.64, + "end": 4788.8, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4788.8, + "end": 4788.96, + "probability": 0.78662109375 + }, + { + "word": " a...", + "start": 4788.96, + "end": 4789.26, + "probability": 0.334716796875 + } + ] + }, + { + "id": 2054, + "text": "I dream of a world", + "start": 4789.26, + "end": 4790.7, + "words": [ + { + "word": " I", + "start": 4789.26, + "end": 4789.84, + "probability": 0.98779296875 + }, + { + "word": " dream", + "start": 4789.84, + "end": 4790.12, + "probability": 0.99169921875 + }, + { + "word": " of", + "start": 4790.12, + "end": 4790.34, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4790.34, + "end": 4790.44, + "probability": 0.99951171875 + }, + { + "word": " world", + "start": 4790.44, + "end": 4790.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2055, + "text": "in which I would be able to do that kind of thing?", + "start": 4790.7, + "end": 4792.54, + "words": [ + { + "word": " in", + "start": 4790.7, + "end": 4790.86, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 4790.86, + "end": 4791.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 4791.0, + "end": 4791.16, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 4791.16, + "end": 4791.28, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 4791.28, + "end": 4791.4, + "probability": 1.0 + }, + { + "word": " able", + "start": 4791.4, + "end": 4791.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 4791.56, + "end": 4791.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 4791.74, + "end": 4791.88, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4791.88, + "end": 4792.06, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 4792.06, + "end": 4792.24, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 4792.24, + "end": 4792.38, + "probability": 1.0 + }, + { + "word": " thing?", + "start": 4792.38, + "end": 4792.54, + "probability": 1.0 + } + ] + }, + { + "id": 2056, + "text": "Well, it's...", + "start": 4792.78, + "end": 4793.64, + "words": [ + { + "word": " Well,", + "start": 4792.78, + "end": 4793.16, + "probability": 0.9990234375 + }, + { + "word": " it's...", + "start": 4793.28, + "end": 4793.64, + "probability": 0.9814453125 + } + ] + }, + { + "id": 2057, + "text": "Because of my need for my smartphone", + "start": 4793.64, + "end": 4796.3, + "words": [ + { + "word": " Because", + "start": 4793.64, + "end": 4793.92, + "probability": 0.51416015625 + }, + { + "word": " of", + "start": 4793.92, + "end": 4794.36, + "probability": 0.9970703125 + }, + { + "word": " my", + "start": 4794.36, + "end": 4794.64, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 4794.64, + "end": 4795.38, + "probability": 0.9931640625 + }, + { + "word": " for", + "start": 4795.38, + "end": 4795.68, + "probability": 0.99658203125 + }, + { + "word": " my", + "start": 4795.68, + "end": 4795.96, + "probability": 0.998046875 + }, + { + "word": " smartphone", + "start": 4795.96, + "end": 4796.3, + "probability": 0.98046875 + } + ] + }, + { + "id": 2058, + "text": "for my data plan that I use all day,", + "start": 4796.3, + "end": 4798.38, + "words": [ + { + "word": " for", + "start": 4796.3, + "end": 4796.56, + "probability": 0.9931640625 + }, + { + "word": " my", + "start": 4796.56, + "end": 4796.7, + "probability": 1.0 + }, + { + "word": " data", + "start": 4796.7, + "end": 4796.96, + "probability": 0.99951171875 + }, + { + "word": " plan", + "start": 4796.96, + "end": 4797.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 4797.18, + "end": 4797.68, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 4797.68, + "end": 4797.8, + "probability": 1.0 + }, + { + "word": " use", + "start": 4797.8, + "end": 4798.0, + "probability": 1.0 + }, + { + "word": " all", + "start": 4798.0, + "end": 4798.18, + "probability": 1.0 + }, + { + "word": " day,", + "start": 4798.18, + "end": 4798.38, + "probability": 1.0 + } + ] + }, + { + "id": 2059, + "text": "I cannot switch.", + "start": 4798.56, + "end": 4799.86, + "words": [ + { + "word": " I", + "start": 4798.56, + "end": 4799.1, + "probability": 1.0 + }, + { + "word": " cannot", + "start": 4799.1, + "end": 4799.44, + "probability": 1.0 + }, + { + "word": " switch.", + "start": 4799.44, + "end": 4799.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 2060, + "text": "However, if I could,", + "start": 4800.76, + "end": 4803.04, + "words": [ + { + "word": " However,", + "start": 4800.76, + "end": 4801.16, + "probability": 1.0 + }, + { + "word": " if", + "start": 4801.38, + "end": 4801.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 4801.7, + "end": 4802.0, + "probability": 1.0 + }, + { + "word": " could,", + "start": 4802.0, + "end": 4803.04, + "probability": 0.97412109375 + } + ] + }, + { + "id": 2061, + "text": "if I did not need that plan anymore,", + "start": 4803.42, + "end": 4805.22, + "words": [ + { + "word": " if", + "start": 4803.42, + "end": 4803.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 4803.7, + "end": 4803.84, + "probability": 1.0 + }, + { + "word": " did", + "start": 4803.84, + "end": 4803.98, + "probability": 1.0 + }, + { + "word": " not", + "start": 4803.98, + "end": 4804.16, + "probability": 1.0 + }, + { + "word": " need", + "start": 4804.16, + "end": 4804.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 4804.42, + "end": 4804.66, + "probability": 1.0 + }, + { + "word": " plan", + "start": 4804.66, + "end": 4804.88, + "probability": 1.0 + }, + { + "word": " anymore,", + "start": 4804.88, + "end": 4805.22, + "probability": 1.0 + } + ] + }, + { + "id": 2062, + "text": "I would not have a smartphone.", + "start": 4805.42, + "end": 4806.44, + "words": [ + { + "word": " I", + "start": 4805.42, + "end": 4805.56, + "probability": 1.0 + }, + { + "word": " would", + "start": 4805.56, + "end": 4805.7, + "probability": 1.0 + }, + { + "word": " not", + "start": 4805.7, + "end": 4805.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 4805.92, + "end": 4806.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 4806.08, + "end": 4806.18, + "probability": 1.0 + }, + { + "word": " smartphone.", + "start": 4806.18, + "end": 4806.44, + "probability": 1.0 + } + ] + }, + { + "id": 2063, + "text": "Do you think that you would go", + "start": 4806.7, + "end": 4807.52, + "words": [ + { + "word": " Do", + "start": 4806.7, + "end": 4806.88, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4806.88, + "end": 4806.94, + "probability": 1.0 + }, + { + "word": " think", + "start": 4806.94, + "end": 4807.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 4807.08, + "end": 4807.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 4807.18, + "end": 4807.26, + "probability": 1.0 + }, + { + "word": " would", + "start": 4807.26, + "end": 4807.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 4807.36, + "end": 4807.52, + "probability": 1.0 + } + ] + }, + { + "id": 2064, + "text": "to the new old Nokia phone?", + "start": 4807.52, + "end": 4809.64, + "words": [ + { + "word": " to", + "start": 4807.52, + "end": 4807.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 4807.62, + "end": 4807.72, + "probability": 1.0 + }, + { + "word": " new", + "start": 4807.72, + "end": 4808.62, + "probability": 1.0 + }, + { + "word": " old", + "start": 4808.62, + "end": 4808.96, + "probability": 0.78955078125 + }, + { + "word": " Nokia", + "start": 4808.96, + "end": 4809.36, + "probability": 1.0 + }, + { + "word": " phone?", + "start": 4809.36, + "end": 4809.64, + "probability": 1.0 + } + ] + }, + { + "id": 2065, + "text": "Yeah.", + "start": 4810.64, + "end": 4811.04, + "words": [ + { + "word": " Yeah.", + "start": 4810.64, + "end": 4811.04, + "probability": 0.52734375 + } + ] + }, + { + "id": 2066, + "text": "I wish it would have been more like", + "start": 4811.06, + "end": 4812.16, + "words": [ + { + "word": " I", + "start": 4811.06, + "end": 4811.18, + "probability": 0.99951171875 + }, + { + "word": " wish", + "start": 4811.18, + "end": 4811.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 4811.38, + "end": 4811.48, + "probability": 1.0 + }, + { + "word": " would", + "start": 4811.48, + "end": 4811.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 4811.54, + "end": 4811.64, + "probability": 0.998046875 + }, + { + "word": " been", + "start": 4811.64, + "end": 4811.76, + "probability": 1.0 + }, + { + "word": " more", + "start": 4811.76, + "end": 4811.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 4811.94, + "end": 4812.16, + "probability": 1.0 + } + ] + }, + { + "id": 2067, + "text": "the old, old Nokia phone.", + "start": 4812.16, + "end": 4813.9, + "words": [ + { + "word": " the", + "start": 4812.16, + "end": 4812.34, + "probability": 1.0 + }, + { + "word": " old,", + "start": 4812.34, + "end": 4812.68, + "probability": 1.0 + }, + { + "word": " old", + "start": 4812.7, + "end": 4813.0, + "probability": 1.0 + }, + { + "word": " Nokia", + "start": 4813.0, + "end": 4813.44, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 4813.44, + "end": 4813.9, + "probability": 1.0 + } + ] + }, + { + "id": 2068, + "text": "The new one.", + "start": 4814.08, + "end": 4815.28, + "words": [ + { + "word": " The", + "start": 4814.08, + "end": 4814.48, + "probability": 0.9814453125 + }, + { + "word": " new", + "start": 4814.48, + "end": 4815.06, + "probability": 1.0 + }, + { + "word": " one.", + "start": 4815.06, + "end": 4815.28, + "probability": 1.0 + } + ] + }, + { + "id": 2069, + "text": "Or like, here's a name", + "start": 4815.48, + "end": 4816.46, + "words": [ + { + "word": " Or", + "start": 4815.48, + "end": 4815.68, + "probability": 0.994140625 + }, + { + "word": " like,", + "start": 4815.68, + "end": 4815.84, + "probability": 0.81884765625 + }, + { + "word": " here's", + "start": 4815.92, + "end": 4816.26, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4816.26, + "end": 4816.26, + "probability": 1.0 + }, + { + "word": " name", + "start": 4816.26, + "end": 4816.46, + "probability": 1.0 + } + ] + }, + { + "id": 2070, + "text": "you haven't heard in a while, probably.", + "start": 4816.46, + "end": 4817.42, + "words": [ + { + "word": " you", + "start": 4816.46, + "end": 4816.56, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 4816.56, + "end": 4816.76, + "probability": 1.0 + }, + { + "word": " heard", + "start": 4816.76, + "end": 4816.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 4816.88, + "end": 4816.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 4816.98, + "end": 4817.04, + "probability": 1.0 + }, + { + "word": " while,", + "start": 4817.04, + "end": 4817.14, + "probability": 1.0 + }, + { + "word": " probably.", + "start": 4817.2, + "end": 4817.42, + "probability": 1.0 + } + ] + }, + { + "id": 2071, + "text": "Like the old Kyocera phones.", + "start": 4817.52, + "end": 4818.8, + "words": [ + { + "word": " Like", + "start": 4817.52, + "end": 4817.7, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 4817.7, + "end": 4817.8, + "probability": 0.982421875 + }, + { + "word": " old", + "start": 4817.8, + "end": 4817.96, + "probability": 1.0 + }, + { + "word": " Kyocera", + "start": 4817.96, + "end": 4818.48, + "probability": 0.9814453125 + }, + { + "word": " phones.", + "start": 4818.48, + "end": 4818.8, + "probability": 1.0 + } + ] + }, + { + "id": 2072, + "text": "The StarTAC phones?", + "start": 4819.22, + "end": 4820.1, + "words": [ + { + "word": " The", + "start": 4819.22, + "end": 4819.4, + "probability": 0.45654296875 + }, + { + "word": " StarTAC", + "start": 4819.4, + "end": 4819.9, + "probability": 0.8037109375 + }, + { + "word": " phones?", + "start": 4819.9, + "end": 4820.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2073, + "text": "Yeah.", + "start": 4820.32, + "end": 4820.46, + "words": [ + { + "word": " Yeah.", + "start": 4820.32, + "end": 4820.46, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2074, + "text": "Remember playing Brick Attack on those things?", + "start": 4820.52, + "end": 4822.08, + "words": [ + { + "word": " Remember", + "start": 4820.52, + "end": 4820.78, + "probability": 0.9775390625 + }, + { + "word": " playing", + "start": 4820.78, + "end": 4821.0, + "probability": 1.0 + }, + { + "word": " Brick", + "start": 4821.0, + "end": 4821.28, + "probability": 0.9970703125 + }, + { + "word": " Attack", + "start": 4821.28, + "end": 4821.44, + "probability": 0.8251953125 + }, + { + "word": " on", + "start": 4821.44, + "end": 4821.68, + "probability": 1.0 + }, + { + "word": " those", + "start": 4821.68, + "end": 4821.84, + "probability": 1.0 + }, + { + "word": " things?", + "start": 4821.84, + "end": 4822.08, + "probability": 1.0 + } + ] + }, + { + "id": 2075, + "text": "Although,", + "start": 4822.4800000000005, + "end": 4822.88, + "words": [ + { + "word": " Although,", + "start": 4822.4800000000005, + "end": 4822.88, + "probability": 0.97021484375 + } + ] + }, + { + "id": 2076, + "text": "I have to...", + "start": 4822.94, + "end": 4823.5, + "words": [ + { + "word": " I", + "start": 4822.94, + "end": 4823.18, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 4823.18, + "end": 4823.36, + "probability": 0.998046875 + }, + { + "word": " to...", + "start": 4823.36, + "end": 4823.5, + "probability": 0.5126953125 + } + ] + }, + { + "id": 2077, + "text": "I have to admit,", + "start": 4823.5, + "end": 4823.6, + "words": [ + { + "word": " I", + "start": 4823.5, + "end": 4823.58, + "probability": 0.01025390625 + }, + { + "word": " have", + "start": 4823.58, + "end": 4823.58, + "probability": 0.492919921875 + }, + { + "word": " to", + "start": 4823.58, + "end": 4823.58, + "probability": 0.9853515625 + }, + { + "word": " admit,", + "start": 4823.58, + "end": 4823.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2078, + "text": "the only thing that made me really happy", + "start": 4823.74, + "end": 4825.28, + "words": [ + { + "word": " the", + "start": 4823.74, + "end": 4823.86, + "probability": 0.9970703125 + }, + { + "word": " only", + "start": 4823.86, + "end": 4824.16, + "probability": 0.9970703125 + }, + { + "word": " thing", + "start": 4824.16, + "end": 4824.36, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 4824.36, + "end": 4824.48, + "probability": 0.998046875 + }, + { + "word": " made", + "start": 4824.48, + "end": 4824.62, + "probability": 0.99365234375 + }, + { + "word": " me", + "start": 4824.62, + "end": 4824.76, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 4824.76, + "end": 4824.96, + "probability": 0.99267578125 + }, + { + "word": " happy", + "start": 4824.96, + "end": 4825.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2079, + "text": "about the new Nokia phone,", + "start": 4825.28, + "end": 4826.82, + "words": [ + { + "word": " about", + "start": 4825.28, + "end": 4825.46, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 4825.46, + "end": 4825.58, + "probability": 0.99853515625 + }, + { + "word": " new", + "start": 4825.58, + "end": 4825.76, + "probability": 0.9873046875 + }, + { + "word": " Nokia", + "start": 4825.76, + "end": 4826.42, + "probability": 0.99951171875 + }, + { + "word": " phone,", + "start": 4826.42, + "end": 4826.82, + "probability": 0.9921875 + } + ] + }, + { + "id": 2080, + "text": "which is modeled after the old one,", + "start": 4827.12, + "end": 4828.72, + "words": [ + { + "word": " which", + "start": 4827.12, + "end": 4827.3, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 4827.3, + "end": 4827.46, + "probability": 0.9990234375 + }, + { + "word": " modeled", + "start": 4827.46, + "end": 4827.82, + "probability": 0.99365234375 + }, + { + "word": " after", + "start": 4827.82, + "end": 4828.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4828.18, + "end": 4828.36, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 4828.36, + "end": 4828.52, + "probability": 0.99951171875 + }, + { + "word": " one,", + "start": 4828.52, + "end": 4828.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2081, + "text": "the one that was...", + "start": 4828.84, + "end": 4829.62, + "words": [ + { + "word": " the", + "start": 4828.84, + "end": 4828.86, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 4828.86, + "end": 4829.04, + "probability": 0.994140625 + }, + { + "word": " that", + "start": 4829.04, + "end": 4829.2, + "probability": 0.9921875 + }, + { + "word": " was...", + "start": 4829.2, + "end": 4829.62, + "probability": 0.16064453125 + } + ] + }, + { + "id": 2082, + "text": "The one that you find...", + "start": 4829.62, + "end": 4831.08, + "words": [ + { + "word": " The", + "start": 4829.62, + "end": 4829.96, + "probability": 0.80810546875 + }, + { + "word": " one", + "start": 4829.96, + "end": 4830.08, + "probability": 0.96728515625 + }, + { + "word": " that", + "start": 4830.08, + "end": 4830.18, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 4830.18, + "end": 4830.22, + "probability": 0.99951171875 + }, + { + "word": " find...", + "start": 4830.22, + "end": 4831.08, + "probability": 0.96923828125 + } + ] + }, + { + "id": 2083, + "text": "The only cell phone", + "start": 4832.040000000001, + "end": 4833.44, + "words": [ + { + "word": " The", + "start": 4832.040000000001, + "end": 4832.4400000000005, + "probability": 0.9716796875 + }, + { + "word": " only", + "start": 4832.4400000000005, + "end": 4832.84, + "probability": 0.99951171875 + }, + { + "word": " cell", + "start": 4832.84, + "end": 4833.24, + "probability": 0.99853515625 + }, + { + "word": " phone", + "start": 4833.24, + "end": 4833.44, + "probability": 1.0 + } + ] + }, + { + "id": 2084, + "text": "that will be found in archaeological digs", + "start": 4833.44, + "end": 4835.32, + "words": [ + { + "word": " that", + "start": 4833.44, + "end": 4833.64, + "probability": 1.0 + }, + { + "word": " will", + "start": 4833.64, + "end": 4833.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 4833.74, + "end": 4833.88, + "probability": 1.0 + }, + { + "word": " found", + "start": 4833.88, + "end": 4834.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 4834.12, + "end": 4834.3, + "probability": 1.0 + }, + { + "word": " archaeological", + "start": 4834.3, + "end": 4834.62, + "probability": 0.947265625 + }, + { + "word": " digs", + "start": 4834.62, + "end": 4835.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2085, + "text": "is the Nokia 3310", + "start": 4835.32, + "end": 4838.46, + "words": [ + { + "word": " is", + "start": 4835.32, + "end": 4836.04, + "probability": 0.73193359375 + }, + { + "word": " the", + "start": 4836.04, + "end": 4837.14, + "probability": 1.0 + }, + { + "word": " Nokia", + "start": 4837.14, + "end": 4837.82, + "probability": 0.99951171875 + }, + { + "word": " 3310", + "start": 4837.82, + "end": 4838.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2086, + "text": "or that whole family of Nokia phones.", + "start": 4838.46, + "end": 4842.06, + "words": [ + { + "word": " or", + "start": 4838.46, + "end": 4838.68, + "probability": 0.8857421875 + }, + { + "word": " that", + "start": 4838.68, + "end": 4838.9, + "probability": 0.9921875 + }, + { + "word": " whole", + "start": 4838.9, + "end": 4839.68, + "probability": 1.0 + }, + { + "word": " family", + "start": 4839.68, + "end": 4840.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4840.9, + "end": 4841.5, + "probability": 0.99951171875 + }, + { + "word": " Nokia", + "start": 4841.5, + "end": 4841.72, + "probability": 1.0 + }, + { + "word": " phones.", + "start": 4841.72, + "end": 4842.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2087, + "text": "I was very happy to know", + "start": 4844.6, + "end": 4846.52, + "words": [ + { + "word": " I", + "start": 4844.6, + "end": 4845.0, + "probability": 0.9931640625 + }, + { + "word": " was", + "start": 4845.0, + "end": 4845.32, + "probability": 0.99853515625 + }, + { + "word": " very", + "start": 4845.32, + "end": 4846.04, + "probability": 1.0 + }, + { + "word": " happy", + "start": 4846.04, + "end": 4846.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 4846.3, + "end": 4846.4, + "probability": 1.0 + }, + { + "word": " know", + "start": 4846.4, + "end": 4846.52, + "probability": 1.0 + } + ] + }, + { + "id": 2088, + "text": "that the Snake game still works on that.", + "start": 4846.52, + "end": 4848.4, + "words": [ + { + "word": " that", + "start": 4846.52, + "end": 4846.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 4846.68, + "end": 4846.82, + "probability": 0.99951171875 + }, + { + "word": " Snake", + "start": 4846.82, + "end": 4847.0, + "probability": 0.947265625 + }, + { + "word": " game", + "start": 4847.0, + "end": 4847.2, + "probability": 0.99462890625 + }, + { + "word": " still", + "start": 4847.2, + "end": 4847.46, + "probability": 1.0 + }, + { + "word": " works", + "start": 4847.46, + "end": 4847.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 4847.72, + "end": 4848.16, + "probability": 0.998046875 + }, + { + "word": " that.", + "start": 4848.16, + "end": 4848.4, + "probability": 1.0 + } + ] + }, + { + "id": 2089, + "text": "Yeah, if you weren't playing Snake, man,", + "start": 4848.72, + "end": 4850.2, + "words": [ + { + "word": " Yeah,", + "start": 4848.72, + "end": 4849.12, + "probability": 0.98583984375 + }, + { + "word": " if", + "start": 4849.14, + "end": 4849.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 4849.24, + "end": 4849.34, + "probability": 1.0 + }, + { + "word": " weren't", + "start": 4849.34, + "end": 4849.44, + "probability": 0.9990234375 + }, + { + "word": " playing", + "start": 4849.44, + "end": 4849.62, + "probability": 1.0 + }, + { + "word": " Snake,", + "start": 4849.62, + "end": 4849.9, + "probability": 0.99951171875 + }, + { + "word": " man,", + "start": 4850.02, + "end": 4850.2, + "probability": 1.0 + } + ] + }, + { + "id": 2090, + "text": "just get out of town.", + "start": 4850.34, + "end": 4851.36, + "words": [ + { + "word": " just", + "start": 4850.34, + "end": 4850.8, + "probability": 0.9794921875 + }, + { + "word": " get", + "start": 4850.8, + "end": 4850.82, + "probability": 0.99658203125 + }, + { + "word": " out", + "start": 4850.82, + "end": 4851.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 4851.08, + "end": 4851.18, + "probability": 1.0 + }, + { + "word": " town.", + "start": 4851.18, + "end": 4851.36, + "probability": 1.0 + } + ] + }, + { + "id": 2091, + "text": "Yeah.", + "start": 4851.54, + "end": 4851.74, + "words": [ + { + "word": " Yeah.", + "start": 4851.54, + "end": 4851.74, + "probability": 0.249755859375 + } + ] + }, + { + "id": 2092, + "text": "You don't know how to use a phone.", + "start": 4851.74, + "end": 4853.96, + "words": [ + { + "word": " You", + "start": 4851.74, + "end": 4851.98, + "probability": 0.66796875 + }, + { + "word": " don't", + "start": 4851.98, + "end": 4853.34, + "probability": 0.9931640625 + }, + { + "word": " know", + "start": 4853.34, + "end": 4853.4, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 4853.4, + "end": 4853.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 4853.48, + "end": 4853.54, + "probability": 1.0 + }, + { + "word": " use", + "start": 4853.54, + "end": 4853.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 4853.64, + "end": 4853.76, + "probability": 0.99853515625 + }, + { + "word": " phone.", + "start": 4853.76, + "end": 4853.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2093, + "text": "So, this one has a two...", + "start": 4853.98, + "end": 4855.04, + "words": [ + { + "word": " So,", + "start": 4853.98, + "end": 4854.08, + "probability": 0.93310546875 + }, + { + "word": " this", + "start": 4854.08, + "end": 4854.34, + "probability": 1.0 + }, + { + "word": " one", + "start": 4854.34, + "end": 4854.5, + "probability": 1.0 + }, + { + "word": " has", + "start": 4854.5, + "end": 4854.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 4854.66, + "end": 4854.76, + "probability": 1.0 + }, + { + "word": " two...", + "start": 4854.76, + "end": 4855.04, + "probability": 0.35888671875 + } + ] + }, + { + "id": 2094, + "text": "It has a two megapixel camera,", + "start": 4855.04, + "end": 4856.62, + "words": [ + { + "word": " It", + "start": 4855.04, + "end": 4855.38, + "probability": 0.9765625 + }, + { + "word": " has", + "start": 4855.38, + "end": 4855.56, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4855.56, + "end": 4855.68, + "probability": 1.0 + }, + { + "word": " two", + "start": 4855.68, + "end": 4855.86, + "probability": 0.998046875 + }, + { + "word": " megapixel", + "start": 4855.86, + "end": 4856.42, + "probability": 0.896484375 + }, + { + "word": " camera,", + "start": 4856.42, + "end": 4856.62, + "probability": 1.0 + } + ] + }, + { + "id": 2095, + "text": "whereas the old phone", + "start": 4856.82, + "end": 4857.76, + "words": [ + { + "word": " whereas", + "start": 4856.82, + "end": 4857.06, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4857.06, + "end": 4857.22, + "probability": 1.0 + }, + { + "word": " old", + "start": 4857.22, + "end": 4857.44, + "probability": 1.0 + }, + { + "word": " phone", + "start": 4857.44, + "end": 4857.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2096, + "text": "had like a two pixel camera, I think.", + "start": 4857.76, + "end": 4859.58, + "words": [ + { + "word": " had", + "start": 4857.76, + "end": 4857.92, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4857.92, + "end": 4858.08, + "probability": 0.5107421875 + }, + { + "word": " a", + "start": 4858.08, + "end": 4858.18, + "probability": 0.9990234375 + }, + { + "word": " two", + "start": 4858.18, + "end": 4858.36, + "probability": 1.0 + }, + { + "word": " pixel", + "start": 4858.36, + "end": 4858.68, + "probability": 0.9921875 + }, + { + "word": " camera,", + "start": 4858.68, + "end": 4858.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 4859.22, + "end": 4859.36, + "probability": 1.0 + }, + { + "word": " think.", + "start": 4859.36, + "end": 4859.58, + "probability": 1.0 + } + ] + }, + { + "id": 2097, + "text": "It had a potato.", + "start": 4859.72, + "end": 4860.5, + "words": [ + { + "word": " It", + "start": 4859.72, + "end": 4859.94, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 4859.94, + "end": 4860.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 4860.14, + "end": 4860.22, + "probability": 1.0 + }, + { + "word": " potato.", + "start": 4860.22, + "end": 4860.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2098, + "text": "They had cameras, right?", + "start": 4860.78, + "end": 4862.02, + "words": [ + { + "word": " They", + "start": 4860.78, + "end": 4861.0, + "probability": 0.64697265625 + }, + { + "word": " had", + "start": 4861.0, + "end": 4861.3, + "probability": 1.0 + }, + { + "word": " cameras,", + "start": 4861.3, + "end": 4861.74, + "probability": 1.0 + }, + { + "word": " right?", + "start": 4861.88, + "end": 4862.02, + "probability": 1.0 + } + ] + }, + { + "id": 2099, + "text": "Some of these older...", + "start": 4862.1, + "end": 4862.9, + "words": [ + { + "word": " Some", + "start": 4862.1, + "end": 4862.3, + "probability": 0.92919921875 + }, + { + "word": " of", + "start": 4862.3, + "end": 4862.42, + "probability": 1.0 + }, + { + "word": " these", + "start": 4862.42, + "end": 4862.5, + "probability": 1.0 + }, + { + "word": " older...", + "start": 4862.5, + "end": 4862.9, + "probability": 0.994140625 + } + ] + }, + { + "id": 2100, + "text": "Oh, I'm thinking of the Kyocera ones.", + "start": 4862.9, + "end": 4864.24, + "words": [ + { + "word": " Oh,", + "start": 4862.9, + "end": 4863.14, + "probability": 0.95458984375 + }, + { + "word": " I'm", + "start": 4863.26, + "end": 4863.4, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 4863.4, + "end": 4863.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 4863.54, + "end": 4863.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 4863.64, + "end": 4863.68, + "probability": 1.0 + }, + { + "word": " Kyocera", + "start": 4863.68, + "end": 4864.04, + "probability": 0.982421875 + }, + { + "word": " ones.", + "start": 4864.04, + "end": 4864.24, + "probability": 1.0 + } + ] + }, + { + "id": 2101, + "text": "There were cameras on those.", + "start": 4864.32, + "end": 4865.8, + "words": [ + { + "word": " There", + "start": 4864.32, + "end": 4864.44, + "probability": 0.998046875 + }, + { + "word": " were", + "start": 4864.44, + "end": 4864.8, + "probability": 0.99951171875 + }, + { + "word": " cameras", + "start": 4864.8, + "end": 4865.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 4865.3, + "end": 4865.66, + "probability": 1.0 + }, + { + "word": " those.", + "start": 4865.66, + "end": 4865.8, + "probability": 1.0 + } + ] + }, + { + "id": 2102, + "text": "Yeah, Nokia's did not have cameras.", + "start": 4865.8, + "end": 4867.0, + "words": [ + { + "word": " Yeah,", + "start": 4865.8, + "end": 4866.1, + "probability": 0.271484375 + }, + { + "word": " Nokia's", + "start": 4866.1, + "end": 4866.3, + "probability": 0.9619140625 + }, + { + "word": " did", + "start": 4866.3, + "end": 4866.34, + "probability": 1.0 + }, + { + "word": " not", + "start": 4866.34, + "end": 4866.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 4866.56, + "end": 4866.7, + "probability": 1.0 + }, + { + "word": " cameras.", + "start": 4866.7, + "end": 4867.0, + "probability": 1.0 + } + ] + }, + { + "id": 2103, + "text": "But they were measured in like...", + "start": 4867.06, + "end": 4868.12, + "words": [ + { + "word": " But", + "start": 4867.06, + "end": 4867.16, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 4867.16, + "end": 4867.2, + "probability": 0.98486328125 + }, + { + "word": " were", + "start": 4867.2, + "end": 4867.32, + "probability": 1.0 + }, + { + "word": " measured", + "start": 4867.32, + "end": 4867.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 4867.62, + "end": 4867.78, + "probability": 0.99853515625 + }, + { + "word": " like...", + "start": 4867.78, + "end": 4868.12, + "probability": 0.67578125 + } + ] + }, + { + "id": 2104, + "text": "Like I said, just pixels at that point.", + "start": 4868.12, + "end": 4870.76, + "words": [ + { + "word": " Like", + "start": 4868.12, + "end": 4868.72, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 4868.72, + "end": 4868.86, + "probability": 1.0 + }, + { + "word": " said,", + "start": 4868.86, + "end": 4869.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 4869.02, + "end": 4869.16, + "probability": 0.9990234375 + }, + { + "word": " pixels", + "start": 4869.16, + "end": 4869.5, + "probability": 1.0 + }, + { + "word": " at", + "start": 4869.5, + "end": 4869.86, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 4869.86, + "end": 4870.48, + "probability": 1.0 + }, + { + "word": " point.", + "start": 4870.48, + "end": 4870.76, + "probability": 1.0 + } + ] + }, + { + "id": 2105, + "text": "They were terrible.", + "start": 4871.160000000001, + "end": 4872.14, + "words": [ + { + "word": " They", + "start": 4871.160000000001, + "end": 4871.52, + "probability": 0.9951171875 + }, + { + "word": " were", + "start": 4871.52, + "end": 4871.74, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 4871.74, + "end": 4872.14, + "probability": 1.0 + } + ] + }, + { + "id": 2106, + "text": "Yeah, they were terrible.", + "start": 4873.040000000001, + "end": 4874.22, + "words": [ + { + "word": " Yeah,", + "start": 4873.040000000001, + "end": 4873.400000000001, + "probability": 0.9951171875 + }, + { + "word": " they", + "start": 4873.400000000001, + "end": 4873.76, + "probability": 0.97314453125 + }, + { + "word": " were", + "start": 4873.76, + "end": 4873.92, + "probability": 1.0 + }, + { + "word": " terrible.", + "start": 4873.92, + "end": 4874.22, + "probability": 1.0 + } + ] + }, + { + "id": 2107, + "text": "All right, let's fit a call in here", + "start": 4874.860000000001, + "end": 4876.24, + "words": [ + { + "word": " All", + "start": 4874.860000000001, + "end": 4875.22, + "probability": 0.76953125 + }, + { + "word": " right,", + "start": 4875.22, + "end": 4875.42, + "probability": 1.0 + }, + { + "word": " let's", + "start": 4875.44, + "end": 4875.62, + "probability": 1.0 + }, + { + "word": " fit", + "start": 4875.62, + "end": 4875.72, + "probability": 0.69384765625 + }, + { + "word": " a", + "start": 4875.72, + "end": 4875.8, + "probability": 1.0 + }, + { + "word": " call", + "start": 4875.8, + "end": 4875.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 4875.96, + "end": 4876.12, + "probability": 1.0 + }, + { + "word": " here", + "start": 4876.12, + "end": 4876.24, + "probability": 1.0 + } + ] + }, + { + "id": 2108, + "text": "before we run out of show time here.", + "start": 4876.24, + "end": 4878.12, + "words": [ + { + "word": " before", + "start": 4876.24, + "end": 4876.42, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 4876.42, + "end": 4876.54, + "probability": 1.0 + }, + { + "word": " run", + "start": 4876.54, + "end": 4876.72, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 4876.72, + "end": 4877.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 4877.34, + "end": 4877.44, + "probability": 1.0 + }, + { + "word": " show", + "start": 4877.44, + "end": 4877.58, + "probability": 0.9990234375 + }, + { + "word": " time", + "start": 4877.58, + "end": 4877.84, + "probability": 0.85400390625 + }, + { + "word": " here.", + "start": 4877.84, + "end": 4878.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2109, + "text": "Hey, Dave, how are you?", + "start": 4878.18, + "end": 4879.0, + "words": [ + { + "word": " Hey,", + "start": 4878.18, + "end": 4878.32, + "probability": 0.9990234375 + }, + { + "word": " Dave,", + "start": 4878.32, + "end": 4878.52, + "probability": 1.0 + }, + { + "word": " how", + "start": 4878.56, + "end": 4878.66, + "probability": 1.0 + }, + { + "word": " are", + "start": 4878.66, + "end": 4878.84, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4878.84, + "end": 4879.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 2110, + "text": "Yeah, hi.", + "start": 4880.1, + "end": 4880.7, + "words": [ + { + "word": " Yeah,", + "start": 4880.1, + "end": 4880.46, + "probability": 0.99853515625 + }, + { + "word": " hi.", + "start": 4880.48, + "end": 4880.7, + "probability": 1.0 + } + ] + }, + { + "id": 2111, + "text": "Good morning.", + "start": 4880.8, + "end": 4881.4, + "words": [ + { + "word": " Good", + "start": 4880.8, + "end": 4881.06, + "probability": 0.9970703125 + }, + { + "word": " morning.", + "start": 4881.06, + "end": 4881.4, + "probability": 1.0 + } + ] + }, + { + "id": 2112, + "text": "Hey, wanted to ask", + "start": 4882.1, + "end": 4883.8, + "words": [ + { + "word": " Hey,", + "start": 4882.1, + "end": 4882.68, + "probability": 0.83154296875 + }, + { + "word": " wanted", + "start": 4883.1, + "end": 4883.34, + "probability": 0.09002685546875 + }, + { + "word": " to", + "start": 4883.34, + "end": 4883.5, + "probability": 1.0 + }, + { + "word": " ask", + "start": 4883.5, + "end": 4883.8, + "probability": 1.0 + } + ] + }, + { + "id": 2113, + "text": "what you think about", + "start": 4883.8, + "end": 4885.5, + "words": [ + { + "word": " what", + "start": 4883.8, + "end": 4884.28, + "probability": 0.953125 + }, + { + "word": " you", + "start": 4884.28, + "end": 4884.68, + "probability": 0.9951171875 + }, + { + "word": " think", + "start": 4884.68, + "end": 4885.08, + "probability": 1.0 + }, + { + "word": " about", + "start": 4885.08, + "end": 4885.5, + "probability": 1.0 + } + ] + }, + { + "id": 2114, + "text": "how, if you're going to be a cable cutter", + "start": 4885.5, + "end": 4889.08, + "words": [ + { + "word": " how,", + "start": 4885.5, + "end": 4886.34, + "probability": 0.98974609375 + }, + { + "word": " if", + "start": 4886.34, + "end": 4887.78, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4887.78, + "end": 4887.98, + "probability": 1.0 + }, + { + "word": " going", + "start": 4887.98, + "end": 4888.04, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4888.04, + "end": 4888.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 4888.16, + "end": 4888.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 4888.26, + "end": 4888.38, + "probability": 1.0 + }, + { + "word": " cable", + "start": 4888.38, + "end": 4888.76, + "probability": 1.0 + }, + { + "word": " cutter", + "start": 4888.76, + "end": 4889.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2115, + "text": "or get away from cable TV,", + "start": 4889.08, + "end": 4891.18, + "words": [ + { + "word": " or", + "start": 4889.08, + "end": 4889.86, + "probability": 0.52099609375 + }, + { + "word": " get", + "start": 4889.86, + "end": 4890.28, + "probability": 1.0 + }, + { + "word": " away", + "start": 4890.28, + "end": 4890.46, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 4890.46, + "end": 4890.66, + "probability": 1.0 + }, + { + "word": " cable", + "start": 4890.66, + "end": 4890.9, + "probability": 0.99951171875 + }, + { + "word": " TV,", + "start": 4890.9, + "end": 4891.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2116, + "text": "how do you get your regular TV network stations?", + "start": 4891.54, + "end": 4896.68, + "words": [ + { + "word": " how", + "start": 4891.54, + "end": 4892.08, + "probability": 1.0 + }, + { + "word": " do", + "start": 4892.08, + "end": 4892.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 4892.24, + "end": 4892.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 4892.36, + "end": 4892.6, + "probability": 1.0 + }, + { + "word": " your", + "start": 4892.6, + "end": 4892.82, + "probability": 0.90869140625 + }, + { + "word": " regular", + "start": 4892.82, + "end": 4893.42, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4893.42, + "end": 4894.5, + "probability": 1.0 + }, + { + "word": " network", + "start": 4894.5, + "end": 4895.14, + "probability": 1.0 + }, + { + "word": " stations?", + "start": 4895.14, + "end": 4896.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2117, + "text": "Are you talking about local?", + "start": 4897.0, + "end": 4898.18, + "words": [ + { + "word": " Are", + "start": 4897.0, + "end": 4897.4, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4897.4, + "end": 4897.48, + "probability": 1.0 + }, + { + "word": " talking", + "start": 4897.48, + "end": 4897.68, + "probability": 1.0 + }, + { + "word": " about", + "start": 4897.68, + "end": 4897.86, + "probability": 1.0 + }, + { + "word": " local?", + "start": 4897.86, + "end": 4898.18, + "probability": 1.0 + } + ] + }, + { + "id": 2118, + "text": "Yeah, local stations.", + "start": 4898.84, + "end": 4900.3, + "words": [ + { + "word": " Yeah,", + "start": 4898.84, + "end": 4899.42, + "probability": 0.9931640625 + }, + { + "word": " local", + "start": 4899.46, + "end": 4899.66, + "probability": 1.0 + }, + { + "word": " stations.", + "start": 4899.66, + "end": 4900.3, + "probability": 1.0 + } + ] + }, + { + "id": 2119, + "text": "Now, I can't get over the air.", + "start": 4900.4, + "end": 4901.94, + "words": [ + { + "word": " Now,", + "start": 4900.4, + "end": 4900.74, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 4900.78, + "end": 4900.84, + "probability": 0.921875 + }, + { + "word": " can't", + "start": 4900.84, + "end": 4901.06, + "probability": 1.0 + }, + { + "word": " get", + "start": 4901.06, + "end": 4901.18, + "probability": 1.0 + }, + { + "word": " over", + "start": 4901.18, + "end": 4901.4, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4901.4, + "end": 4901.66, + "probability": 0.99951171875 + }, + { + "word": " air.", + "start": 4901.66, + "end": 4901.94, + "probability": 1.0 + } + ] + }, + { + "id": 2120, + "text": "I'm in a problem area", + "start": 4902.66, + "end": 4904.04, + "words": [ + { + "word": " I'm", + "start": 4902.66, + "end": 4903.24, + "probability": 1.0 + }, + { + "word": " in", + "start": 4903.24, + "end": 4903.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 4903.28, + "end": 4903.4, + "probability": 1.0 + }, + { + "word": " problem", + "start": 4903.4, + "end": 4903.74, + "probability": 1.0 + }, + { + "word": " area", + "start": 4903.74, + "end": 4904.04, + "probability": 1.0 + } + ] + }, + { + "id": 2121, + "text": "where there's no reception, whatever.", + "start": 4904.04, + "end": 4905.96, + "words": [ + { + "word": " where", + "start": 4904.04, + "end": 4904.46, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4904.46, + "end": 4904.9, + "probability": 1.0 + }, + { + "word": " no", + "start": 4904.9, + "end": 4905.04, + "probability": 1.0 + }, + { + "word": " reception,", + "start": 4905.04, + "end": 4905.46, + "probability": 1.0 + }, + { + "word": " whatever.", + "start": 4905.68, + "end": 4905.96, + "probability": 1.0 + } + ] + }, + { + "id": 2122, + "text": "Many of the official services,", + "start": 4906.32, + "end": 4908.46, + "words": [ + { + "word": " Many", + "start": 4906.32, + "end": 4906.9, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 4906.9, + "end": 4907.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 4907.1, + "end": 4907.34, + "probability": 1.0 + }, + { + "word": " official", + "start": 4907.34, + "end": 4908.0, + "probability": 1.0 + }, + { + "word": " services,", + "start": 4908.0, + "end": 4908.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2123, + "text": "like the upcoming YouTube TV", + "start": 4908.54, + "end": 4910.56, + "words": [ + { + "word": " like", + "start": 4908.54, + "end": 4908.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 4908.8, + "end": 4909.02, + "probability": 1.0 + }, + { + "word": " upcoming", + "start": 4909.02, + "end": 4909.48, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 4909.48, + "end": 4909.96, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4909.96, + "end": 4910.56, + "probability": 1.0 + } + ] + }, + { + "id": 2124, + "text": "that's being released here,", + "start": 4910.56, + "end": 4913.12, + "words": [ + { + "word": " that's", + "start": 4910.56, + "end": 4911.28, + "probability": 0.95458984375 + }, + { + "word": " being", + "start": 4911.28, + "end": 4911.68, + "probability": 0.982421875 + }, + { + "word": " released", + "start": 4911.68, + "end": 4912.66, + "probability": 0.85888671875 + }, + { + "word": " here,", + "start": 4912.66, + "end": 4913.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2125, + "text": "will offer...", + "start": 4913.26, + "end": 4914.08, + "words": [ + { + "word": " will", + "start": 4913.26, + "end": 4913.52, + "probability": 0.94091796875 + }, + { + "word": " offer...", + "start": 4913.52, + "end": 4914.08, + "probability": 0.7802734375 + } + ] + }, + { + "id": 2126, + "text": "Yeah, I read that with interest.", + "start": 4914.08, + "end": 4915.24, + "words": [ + { + "word": " Yeah,", + "start": 4914.08, + "end": 4914.14, + "probability": 0.9072265625 + }, + { + "word": " I", + "start": 4914.14, + "end": 4914.22, + "probability": 0.9990234375 + }, + { + "word": " read", + "start": 4914.22, + "end": 4914.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 4914.46, + "end": 4914.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 4914.66, + "end": 4914.84, + "probability": 0.99462890625 + }, + { + "word": " interest.", + "start": 4914.84, + "end": 4915.24, + "probability": 1.0 + } + ] + }, + { + "id": 2127, + "text": "They will offer local channels as well.", + "start": 4915.62, + "end": 4918.02, + "words": [ + { + "word": " They", + "start": 4915.62, + "end": 4915.82, + "probability": 0.9560546875 + }, + { + "word": " will", + "start": 4915.82, + "end": 4915.96, + "probability": 1.0 + }, + { + "word": " offer", + "start": 4915.96, + "end": 4916.8, + "probability": 0.998046875 + }, + { + "word": " local", + "start": 4916.8, + "end": 4917.12, + "probability": 0.99951171875 + }, + { + "word": " channels", + "start": 4917.12, + "end": 4917.52, + "probability": 1.0 + }, + { + "word": " as", + "start": 4917.52, + "end": 4917.82, + "probability": 0.9921875 + }, + { + "word": " well.", + "start": 4917.82, + "end": 4918.02, + "probability": 1.0 + } + ] + }, + { + "id": 2128, + "text": "So there's going to be...", + "start": 4920.360000000001, + "end": 4921.84, + "words": [ + { + "word": " So", + "start": 4920.360000000001, + "end": 4920.8, + "probability": 0.7451171875 + }, + { + "word": " there's", + "start": 4920.8, + "end": 4921.24, + "probability": 0.81787109375 + }, + { + "word": " going", + "start": 4921.24, + "end": 4921.32, + "probability": 0.98291015625 + }, + { + "word": " to", + "start": 4921.32, + "end": 4921.48, + "probability": 1.0 + }, + { + "word": " be...", + "start": 4921.48, + "end": 4921.84, + "probability": 0.97705078125 + } + ] + }, + { + "id": 2129, + "text": "Most of them offer some type of local add-on.", + "start": 4921.84, + "end": 4924.2, + "words": [ + { + "word": " Most", + "start": 4921.84, + "end": 4922.28, + "probability": 0.96875 + }, + { + "word": " of", + "start": 4922.28, + "end": 4922.38, + "probability": 1.0 + }, + { + "word": " them", + "start": 4922.38, + "end": 4922.48, + "probability": 1.0 + }, + { + "word": " offer", + "start": 4922.48, + "end": 4922.68, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 4922.68, + "end": 4922.94, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 4922.94, + "end": 4923.14, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4923.14, + "end": 4923.36, + "probability": 1.0 + }, + { + "word": " local", + "start": 4923.36, + "end": 4923.62, + "probability": 1.0 + }, + { + "word": " add", + "start": 4923.62, + "end": 4923.92, + "probability": 0.9990234375 + }, + { + "word": "-on.", + "start": 4923.92, + "end": 4924.2, + "probability": 1.0 + } + ] + }, + { + "id": 2130, + "text": "And it's usually an additional charge.", + "start": 4924.28, + "end": 4926.06, + "words": [ + { + "word": " And", + "start": 4924.28, + "end": 4924.44, + "probability": 0.9833984375 + }, + { + "word": " it's", + "start": 4924.44, + "end": 4924.7, + "probability": 0.9990234375 + }, + { + "word": " usually", + "start": 4924.7, + "end": 4924.88, + "probability": 1.0 + }, + { + "word": " an", + "start": 4924.88, + "end": 4925.08, + "probability": 0.99462890625 + }, + { + "word": " additional", + "start": 4925.08, + "end": 4925.64, + "probability": 1.0 + }, + { + "word": " charge.", + "start": 4925.64, + "end": 4926.06, + "probability": 1.0 + } + ] + }, + { + "id": 2131, + "text": "But apparently, from what I understand", + "start": 4926.12, + "end": 4928.14, + "words": [ + { + "word": " But", + "start": 4926.12, + "end": 4926.24, + "probability": 0.99853515625 + }, + { + "word": " apparently,", + "start": 4926.24, + "end": 4926.54, + "probability": 0.99658203125 + }, + { + "word": " from", + "start": 4926.64, + "end": 4927.06, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 4927.06, + "end": 4927.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 4927.78, + "end": 4927.88, + "probability": 1.0 + }, + { + "word": " understand", + "start": 4927.88, + "end": 4928.14, + "probability": 1.0 + } + ] + }, + { + "id": 2132, + "text": "with the YouTube TV one,", + "start": 4928.14, + "end": 4929.26, + "words": [ + { + "word": " with", + "start": 4928.14, + "end": 4928.36, + "probability": 0.740234375 + }, + { + "word": " the", + "start": 4928.36, + "end": 4928.42, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 4928.42, + "end": 4928.62, + "probability": 0.888671875 + }, + { + "word": " TV", + "start": 4928.62, + "end": 4928.98, + "probability": 0.9951171875 + }, + { + "word": " one,", + "start": 4928.98, + "end": 4929.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2133, + "text": "that they're going to be included", + "start": 4929.32, + "end": 4930.4, + "words": [ + { + "word": " that", + "start": 4929.32, + "end": 4929.46, + "probability": 0.92724609375 + }, + { + "word": " they're", + "start": 4929.46, + "end": 4929.64, + "probability": 1.0 + }, + { + "word": " going", + "start": 4929.64, + "end": 4929.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 4929.8, + "end": 4929.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 4929.92, + "end": 4930.0, + "probability": 1.0 + }, + { + "word": " included", + "start": 4930.0, + "end": 4930.4, + "probability": 1.0 + } + ] + }, + { + "id": 2134, + "text": "for your local area.", + "start": 4931.04, + "end": 4932.12, + "words": [ + { + "word": " for", + "start": 4931.04, + "end": 4931.48, + "probability": 0.99169921875 + }, + { + "word": " your", + "start": 4931.48, + "end": 4931.64, + "probability": 1.0 + }, + { + "word": " local", + "start": 4931.64, + "end": 4931.88, + "probability": 1.0 + }, + { + "word": " area.", + "start": 4931.88, + "end": 4932.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2135, + "text": "So that'll be interesting.", + "start": 4932.36, + "end": 4933.34, + "words": [ + { + "word": " So", + "start": 4932.36, + "end": 4932.64, + "probability": 0.99755859375 + }, + { + "word": " that'll", + "start": 4932.64, + "end": 4932.96, + "probability": 0.962890625 + }, + { + "word": " be", + "start": 4932.96, + "end": 4933.06, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 4933.06, + "end": 4933.34, + "probability": 1.0 + } + ] + }, + { + "id": 2136, + "text": "That's the only one you've heard of so far?", + "start": 4934.4400000000005, + "end": 4936.28, + "words": [ + { + "word": " That's", + "start": 4934.4400000000005, + "end": 4934.88, + "probability": 0.9599609375 + }, + { + "word": " the", + "start": 4934.88, + "end": 4934.94, + "probability": 1.0 + }, + { + "word": " only", + "start": 4934.94, + "end": 4935.12, + "probability": 1.0 + }, + { + "word": " one", + "start": 4935.12, + "end": 4935.28, + "probability": 1.0 + }, + { + "word": " you've", + "start": 4935.28, + "end": 4935.5, + "probability": 1.0 + }, + { + "word": " heard", + "start": 4935.5, + "end": 4935.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 4935.7, + "end": 4935.9, + "probability": 1.0 + }, + { + "word": " so", + "start": 4935.9, + "end": 4936.04, + "probability": 0.99951171875 + }, + { + "word": " far?", + "start": 4936.04, + "end": 4936.28, + "probability": 1.0 + } + ] + }, + { + "id": 2137, + "text": "Sling offers it as well, but it's a premium.", + "start": 4936.5, + "end": 4938.38, + "words": [ + { + "word": " Sling", + "start": 4936.5, + "end": 4936.82, + "probability": 0.998046875 + }, + { + "word": " offers", + "start": 4936.82, + "end": 4937.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 4937.0, + "end": 4937.28, + "probability": 1.0 + }, + { + "word": " as", + "start": 4937.28, + "end": 4937.38, + "probability": 1.0 + }, + { + "word": " well,", + "start": 4937.38, + "end": 4937.58, + "probability": 1.0 + }, + { + "word": " but", + "start": 4937.64, + "end": 4937.78, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4937.78, + "end": 4937.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 4937.96, + "end": 4938.02, + "probability": 0.9697265625 + }, + { + "word": " premium.", + "start": 4938.02, + "end": 4938.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2138, + "text": "You have to buy the extra package.", + "start": 4938.5, + "end": 4940.2, + "words": [ + { + "word": " You", + "start": 4938.5, + "end": 4938.72, + "probability": 1.0 + }, + { + "word": " have", + "start": 4938.72, + "end": 4938.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 4938.84, + "end": 4939.02, + "probability": 1.0 + }, + { + "word": " buy", + "start": 4939.02, + "end": 4939.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 4939.52, + "end": 4939.68, + "probability": 1.0 + }, + { + "word": " extra", + "start": 4939.68, + "end": 4939.9, + "probability": 1.0 + }, + { + "word": " package.", + "start": 4939.9, + "end": 4940.2, + "probability": 1.0 + } + ] + }, + { + "id": 2139, + "text": "Yep, Sling TV offers it.", + "start": 4940.88, + "end": 4942.54, + "words": [ + { + "word": " Yep,", + "start": 4940.88, + "end": 4941.28, + "probability": 0.9208984375 + }, + { + "word": " Sling", + "start": 4941.3, + "end": 4941.54, + "probability": 0.998046875 + }, + { + "word": " TV", + "start": 4941.54, + "end": 4941.72, + "probability": 0.98193359375 + }, + { + "word": " offers", + "start": 4941.72, + "end": 4942.1, + "probability": 0.998046875 + }, + { + "word": " it.", + "start": 4942.1, + "end": 4942.54, + "probability": 1.0 + } + ] + }, + { + "id": 2140, + "text": "YouTube TV is going to offer it for free.", + "start": 4942.74, + "end": 4944.34, + "words": [ + { + "word": " YouTube", + "start": 4942.74, + "end": 4943.14, + "probability": 0.99951171875 + }, + { + "word": " TV", + "start": 4943.14, + "end": 4943.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 4943.46, + "end": 4943.64, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 4943.64, + "end": 4943.7, + "probability": 0.99072265625 + }, + { + "word": " to", + "start": 4943.7, + "end": 4943.76, + "probability": 1.0 + }, + { + "word": " offer", + "start": 4943.76, + "end": 4943.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 4943.92, + "end": 4944.02, + "probability": 1.0 + }, + { + "word": " for", + "start": 4944.02, + "end": 4944.1, + "probability": 1.0 + }, + { + "word": " free.", + "start": 4944.1, + "end": 4944.34, + "probability": 1.0 + } + ] + }, + { + "id": 2141, + "text": "There's a couple of other services", + "start": 4944.92, + "end": 4946.74, + "words": [ + { + "word": " There's", + "start": 4944.92, + "end": 4945.32, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4945.32, + "end": 4945.48, + "probability": 1.0 + }, + { + "word": " couple", + "start": 4945.48, + "end": 4946.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 4946.12, + "end": 4946.22, + "probability": 1.0 + }, + { + "word": " other", + "start": 4946.22, + "end": 4946.4, + "probability": 1.0 + }, + { + "word": " services", + "start": 4946.4, + "end": 4946.74, + "probability": 1.0 + } + ] + }, + { + "id": 2142, + "text": "that historically have offered it.", + "start": 4946.74, + "end": 4949.64, + "words": [ + { + "word": " that", + "start": 4946.74, + "end": 4947.1, + "probability": 1.0 + }, + { + "word": " historically", + "start": 4947.1, + "end": 4948.76, + "probability": 0.99658203125 + }, + { + "word": " have", + "start": 4948.76, + "end": 4949.16, + "probability": 1.0 + }, + { + "word": " offered", + "start": 4949.16, + "end": 4949.44, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4949.44, + "end": 4949.64, + "probability": 1.0 + } + ] + }, + { + "id": 2143, + "text": "I know that one of them is in lawsuit entanglement", + "start": 4949.68, + "end": 4953.48, + "words": [ + { + "word": " I", + "start": 4949.68, + "end": 4949.76, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 4949.76, + "end": 4949.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 4949.88, + "end": 4949.98, + "probability": 1.0 + }, + { + "word": " one", + "start": 4949.98, + "end": 4950.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 4950.12, + "end": 4950.24, + "probability": 1.0 + }, + { + "word": " them", + "start": 4950.24, + "end": 4950.34, + "probability": 1.0 + }, + { + "word": " is", + "start": 4950.34, + "end": 4950.46, + "probability": 0.96435546875 + }, + { + "word": " in", + "start": 4950.46, + "end": 4950.54, + "probability": 0.99951171875 + }, + { + "word": " lawsuit", + "start": 4950.54, + "end": 4951.28, + "probability": 0.744140625 + }, + { + "word": " entanglement", + "start": 4951.28, + "end": 4953.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 2144, + "text": "at the moment,", + "start": 4953.48, + "end": 4954.06, + "words": [ + { + "word": " at", + "start": 4953.48, + "end": 4953.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 4953.74, + "end": 4953.8, + "probability": 1.0 + }, + { + "word": " moment,", + "start": 4953.8, + "end": 4954.06, + "probability": 1.0 + } + ] + }, + { + "id": 2145, + "text": "so they're no longer offering it.", + "start": 4954.1, + "end": 4955.32, + "words": [ + { + "word": " so", + "start": 4954.1, + "end": 4954.22, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 4954.22, + "end": 4954.36, + "probability": 1.0 + }, + { + "word": " no", + "start": 4954.36, + "end": 4954.44, + "probability": 1.0 + }, + { + "word": " longer", + "start": 4954.44, + "end": 4954.74, + "probability": 1.0 + }, + { + "word": " offering", + "start": 4954.74, + "end": 4955.08, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4955.08, + "end": 4955.32, + "probability": 1.0 + } + ] + }, + { + "id": 2146, + "text": "But there were several out there that offer that.", + "start": 4955.9800000000005, + "end": 4958.22, + "words": [ + { + "word": " But", + "start": 4955.9800000000005, + "end": 4956.38, + "probability": 0.98583984375 + }, + { + "word": " there", + "start": 4956.38, + "end": 4956.54, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4956.54, + "end": 4956.66, + "probability": 0.99267578125 + }, + { + "word": " several", + "start": 4956.66, + "end": 4957.28, + "probability": 1.0 + }, + { + "word": " out", + "start": 4957.28, + "end": 4957.5, + "probability": 1.0 + }, + { + "word": " there", + "start": 4957.5, + "end": 4957.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 4957.66, + "end": 4957.78, + "probability": 1.0 + }, + { + "word": " offer", + "start": 4957.78, + "end": 4957.98, + "probability": 0.7744140625 + }, + { + "word": " that.", + "start": 4957.98, + "end": 4958.22, + "probability": 1.0 + } + ] + }, + { + "id": 2147, + "text": "And to me, though,", + "start": 4958.72, + "end": 4960.26, + "words": [ + { + "word": " And", + "start": 4958.72, + "end": 4958.72, + "probability": 0.303955078125 + }, + { + "word": " to", + "start": 4958.72, + "end": 4959.82, + "probability": 0.998046875 + }, + { + "word": " me,", + "start": 4959.82, + "end": 4960.06, + "probability": 1.0 + }, + { + "word": " though,", + "start": 4960.06, + "end": 4960.26, + "probability": 1.0 + } + ] + }, + { + "id": 2148, + "text": "it's another one of those things", + "start": 4961.780000000001, + "end": 4962.84, + "words": [ + { + "word": " it's", + "start": 4961.780000000001, + "end": 4962.18, + "probability": 1.0 + }, + { + "word": " another", + "start": 4962.18, + "end": 4962.28, + "probability": 1.0 + }, + { + "word": " one", + "start": 4962.28, + "end": 4962.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 4962.46, + "end": 4962.54, + "probability": 1.0 + }, + { + "word": " those", + "start": 4962.54, + "end": 4962.64, + "probability": 1.0 + }, + { + "word": " things", + "start": 4962.64, + "end": 4962.84, + "probability": 1.0 + } + ] + }, + { + "id": 2149, + "text": "where when I started doing the cord-cutting bit,", + "start": 4962.84, + "end": 4965.92, + "words": [ + { + "word": " where", + "start": 4962.84, + "end": 4963.06, + "probability": 1.0 + }, + { + "word": " when", + "start": 4963.06, + "end": 4963.94, + "probability": 0.982421875 + }, + { + "word": " I", + "start": 4963.94, + "end": 4964.12, + "probability": 1.0 + }, + { + "word": " started", + "start": 4964.12, + "end": 4964.36, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4964.36, + "end": 4964.54, + "probability": 0.93994140625 + }, + { + "word": " the", + "start": 4964.54, + "end": 4964.8, + "probability": 0.99365234375 + }, + { + "word": " cord", + "start": 4964.8, + "end": 4965.38, + "probability": 0.9970703125 + }, + { + "word": "-cutting", + "start": 4965.38, + "end": 4965.74, + "probability": 0.9462890625 + }, + { + "word": " bit,", + "start": 4965.74, + "end": 4965.92, + "probability": 0.99609375 + } + ] + }, + { + "id": 2150, + "text": "there was no option for local channels.", + "start": 4965.96, + "end": 4967.66, + "words": [ + { + "word": " there", + "start": 4965.96, + "end": 4966.1, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4966.1, + "end": 4966.34, + "probability": 1.0 + }, + { + "word": " no", + "start": 4966.34, + "end": 4966.58, + "probability": 1.0 + }, + { + "word": " option", + "start": 4966.58, + "end": 4966.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 4966.9, + "end": 4967.12, + "probability": 1.0 + }, + { + "word": " local", + "start": 4967.12, + "end": 4967.22, + "probability": 0.9384765625 + }, + { + "word": " channels.", + "start": 4967.22, + "end": 4967.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2151, + "text": "So I've not seen a local channel,", + "start": 4967.68, + "end": 4969.96, + "words": [ + { + "word": " So", + "start": 4967.68, + "end": 4968.0, + "probability": 0.99462890625 + }, + { + "word": " I've", + "start": 4968.0, + "end": 4968.52, + "probability": 0.701171875 + }, + { + "word": " not", + "start": 4968.52, + "end": 4968.68, + "probability": 1.0 + }, + { + "word": " seen", + "start": 4968.68, + "end": 4969.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 4969.16, + "end": 4969.36, + "probability": 1.0 + }, + { + "word": " local", + "start": 4969.36, + "end": 4969.56, + "probability": 1.0 + }, + { + "word": " channel,", + "start": 4969.56, + "end": 4969.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2152, + "text": "and I've been on a local channel in about a decade.", + "start": 4970.56, + "end": 4971.28, + "words": [ + { + "word": " and", + "start": 4970.56, + "end": 4970.64, + "probability": 0.00475311279296875 + }, + { + "word": " I've", + "start": 4970.64, + "end": 4970.76, + "probability": 0.05535888671875 + }, + { + "word": " been", + "start": 4970.76, + "end": 4970.76, + "probability": 0.71630859375 + }, + { + "word": " on", + "start": 4970.76, + "end": 4970.76, + "probability": 0.42919921875 + }, + { + "word": " a", + "start": 4970.76, + "end": 4970.76, + "probability": 0.0947265625 + }, + { + "word": " local", + "start": 4970.76, + "end": 4970.76, + "probability": 0.0005884170532226562 + }, + { + "word": " channel", + "start": 4970.76, + "end": 4970.76, + "probability": 0.162353515625 + }, + { + "word": " in", + "start": 4970.76, + "end": 4970.76, + "probability": 0.7470703125 + }, + { + "word": " about", + "start": 4970.76, + "end": 4970.76, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 4970.76, + "end": 4970.96, + "probability": 1.0 + }, + { + "word": " decade.", + "start": 4970.96, + "end": 4971.28, + "probability": 1.0 + } + ] + }, + { + "id": 2153, + "text": "So I don't really know what that's like,", + "start": 4971.48, + "end": 4973.1, + "words": [ + { + "word": " So", + "start": 4971.48, + "end": 4971.76, + "probability": 0.953125 + }, + { + "word": " I", + "start": 4971.76, + "end": 4971.9, + "probability": 0.94091796875 + }, + { + "word": " don't", + "start": 4971.9, + "end": 4972.08, + "probability": 1.0 + }, + { + "word": " really", + "start": 4972.08, + "end": 4972.26, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 4972.26, + "end": 4972.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 4972.5, + "end": 4972.62, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4972.62, + "end": 4972.92, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 4972.92, + "end": 4973.1, + "probability": 1.0 + } + ] + }, + { + "id": 2154, + "text": "other than I just go to their website", + "start": 4973.2, + "end": 4974.32, + "words": [ + { + "word": " other", + "start": 4973.2, + "end": 4973.34, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 4973.34, + "end": 4973.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 4973.5, + "end": 4973.62, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4973.62, + "end": 4973.74, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 4973.74, + "end": 4973.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 4973.88, + "end": 4973.96, + "probability": 1.0 + }, + { + "word": " their", + "start": 4973.96, + "end": 4974.04, + "probability": 1.0 + }, + { + "word": " website", + "start": 4974.04, + "end": 4974.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2155, + "text": "and watch the videos that they put up.", + "start": 4974.32, + "end": 4975.62, + "words": [ + { + "word": " and", + "start": 4974.32, + "end": 4974.54, + "probability": 0.99853515625 + }, + { + "word": " watch", + "start": 4974.54, + "end": 4974.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 4974.7, + "end": 4974.82, + "probability": 0.99951171875 + }, + { + "word": " videos", + "start": 4974.82, + "end": 4975.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 4975.1, + "end": 4975.22, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 4975.22, + "end": 4975.34, + "probability": 1.0 + }, + { + "word": " put", + "start": 4975.34, + "end": 4975.44, + "probability": 1.0 + }, + { + "word": " up.", + "start": 4975.44, + "end": 4975.62, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2156, + "text": "Yeah, a lot of times, if you're worried about news,", + "start": 4975.94, + "end": 4977.78, + "words": [ + { + "word": " Yeah,", + "start": 4975.94, + "end": 4976.3, + "probability": 0.970703125 + }, + { + "word": " a", + "start": 4976.36, + "end": 4976.46, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4976.46, + "end": 4976.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 4976.6, + "end": 4976.68, + "probability": 1.0 + }, + { + "word": " times,", + "start": 4976.68, + "end": 4976.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 4976.88, + "end": 4977.02, + "probability": 0.32763671875 + }, + { + "word": " you're", + "start": 4977.02, + "end": 4977.2, + "probability": 1.0 + }, + { + "word": " worried", + "start": 4977.2, + "end": 4977.34, + "probability": 1.0 + }, + { + "word": " about", + "start": 4977.34, + "end": 4977.5, + "probability": 1.0 + }, + { + "word": " news,", + "start": 4977.5, + "end": 4977.78, + "probability": 1.0 + } + ] + }, + { + "id": 2157, + "text": "almost every news channel nowadays", + "start": 4978.22, + "end": 4979.88, + "words": [ + { + "word": " almost", + "start": 4978.22, + "end": 4978.58, + "probability": 1.0 + }, + { + "word": " every", + "start": 4978.58, + "end": 4978.9, + "probability": 1.0 + }, + { + "word": " news", + "start": 4978.9, + "end": 4979.2, + "probability": 1.0 + }, + { + "word": " channel", + "start": 4979.2, + "end": 4979.46, + "probability": 1.0 + }, + { + "word": " nowadays", + "start": 4979.46, + "end": 4979.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2158, + "text": "slices up their news segments", + "start": 4979.88, + "end": 4981.74, + "words": [ + { + "word": " slices", + "start": 4979.88, + "end": 4980.52, + "probability": 0.9970703125 + }, + { + "word": " up", + "start": 4980.52, + "end": 4980.9, + "probability": 1.0 + }, + { + "word": " their", + "start": 4980.9, + "end": 4981.04, + "probability": 1.0 + }, + { + "word": " news", + "start": 4981.04, + "end": 4981.46, + "probability": 0.994140625 + }, + { + "word": " segments", + "start": 4981.46, + "end": 4981.74, + "probability": 1.0 + } + ] + }, + { + "id": 2159, + "text": "and throws them on YouTube.", + "start": 4981.74, + "end": 4982.7, + "words": [ + { + "word": " and", + "start": 4981.74, + "end": 4981.98, + "probability": 1.0 + }, + { + "word": " throws", + "start": 4981.98, + "end": 4982.22, + "probability": 1.0 + }, + { + "word": " them", + "start": 4982.22, + "end": 4982.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 4982.34, + "end": 4982.44, + "probability": 1.0 + }, + { + "word": " YouTube.", + "start": 4982.44, + "end": 4982.7, + "probability": 1.0 + } + ] + }, + { + "id": 2160, + "text": "Yeah, yeah.", + "start": 4984.56, + "end": 4985.28, + "words": [ + { + "word": " Yeah,", + "start": 4984.56, + "end": 4984.92, + "probability": 0.99755859375 + }, + { + "word": " yeah.", + "start": 4984.92, + "end": 4985.28, + "probability": 0.95654296875 + } + ] + }, + { + "id": 2161, + "text": "Well, I give them enough already for the internet.", + "start": 4985.72, + "end": 4988.98, + "words": [ + { + "word": " Well,", + "start": 4985.72, + "end": 4986.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 4986.2, + "end": 4986.4, + "probability": 1.0 + }, + { + "word": " give", + "start": 4986.4, + "end": 4986.56, + "probability": 0.9931640625 + }, + { + "word": " them", + "start": 4986.56, + "end": 4986.68, + "probability": 1.0 + }, + { + "word": " enough", + "start": 4986.68, + "end": 4986.86, + "probability": 1.0 + }, + { + "word": " already", + "start": 4986.86, + "end": 4987.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 4987.28, + "end": 4987.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 4987.6, + "end": 4987.78, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 4987.78, + "end": 4988.98, + "probability": 0.49951171875 + } + ] + }, + { + "id": 2162, + "text": "Yeah, well, I mean, it's coming to this.", + "start": 4990.320000000001, + "end": 4992.56, + "words": [ + { + "word": " Yeah,", + "start": 4990.320000000001, + "end": 4990.68, + "probability": 0.9892578125 + }, + { + "word": " well,", + "start": 4990.74, + "end": 4990.88, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4990.96, + "end": 4991.08, + "probability": 0.58447265625 + }, + { + "word": " mean,", + "start": 4991.08, + "end": 4991.3, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4991.34, + "end": 4991.74, + "probability": 1.0 + }, + { + "word": " coming", + "start": 4991.74, + "end": 4992.22, + "probability": 0.962890625 + }, + { + "word": " to", + "start": 4992.22, + "end": 4992.38, + "probability": 1.0 + }, + { + "word": " this.", + "start": 4992.38, + "end": 4992.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 2163, + "text": "It's much like cell phones.", + "start": 4992.68, + "end": 4993.7, + "words": [ + { + "word": " It's", + "start": 4992.68, + "end": 4992.94, + "probability": 1.0 + }, + { + "word": " much", + "start": 4992.94, + "end": 4993.18, + "probability": 1.0 + }, + { + "word": " like", + "start": 4993.18, + "end": 4993.4, + "probability": 1.0 + }, + { + "word": " cell", + "start": 4993.4, + "end": 4993.54, + "probability": 0.9990234375 + }, + { + "word": " phones.", + "start": 4993.54, + "end": 4993.7, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2164, + "text": "We were talking before the show", + "start": 4993.78, + "end": 4994.7, + "words": [ + { + "word": " We", + "start": 4993.78, + "end": 4993.82, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4993.82, + "end": 4993.9, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 4993.9, + "end": 4994.06, + "probability": 1.0 + }, + { + "word": " before", + "start": 4994.06, + "end": 4994.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4994.26, + "end": 4994.5, + "probability": 1.0 + }, + { + "word": " show", + "start": 4994.5, + "end": 4994.7, + "probability": 1.0 + } + ] + }, + { + "id": 2165, + "text": "how voice minutes and text messages", + "start": 4994.7, + "end": 4998.2, + "words": [ + { + "word": " how", + "start": 4994.7, + "end": 4994.96, + "probability": 0.97607421875 + }, + { + "word": " voice", + "start": 4994.96, + "end": 4996.08, + "probability": 0.904296875 + }, + { + "word": " minutes", + "start": 4996.08, + "end": 4996.54, + "probability": 0.990234375 + }, + { + "word": " and", + "start": 4996.54, + "end": 4997.6, + "probability": 1.0 + }, + { + "word": " text", + "start": 4997.6, + "end": 4997.84, + "probability": 1.0 + }, + { + "word": " messages", + "start": 4997.84, + "end": 4998.2, + "probability": 1.0 + } + ] + }, + { + "id": 2166, + "text": "used to be a big...", + "start": 4998.2, + "end": 4999.66, + "words": [ + { + "word": " used", + "start": 4998.2, + "end": 4998.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4998.48, + "end": 4998.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 4998.62, + "end": 4998.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 4998.7, + "end": 4998.98, + "probability": 0.97802734375 + }, + { + "word": " big...", + "start": 4998.98, + "end": 4999.66, + "probability": 0.5615234375 + } + ] + }, + { + "id": 2167, + "text": "determining factor on which plan you're going to get.", + "start": 5000.56, + "end": 5002.5, + "words": [ + { + "word": " determining", + "start": 5000.56, + "end": 5000.96, + "probability": 0.93896484375 + }, + { + "word": " factor", + "start": 5000.96, + "end": 5001.3, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5001.3, + "end": 5001.54, + "probability": 0.9150390625 + }, + { + "word": " which", + "start": 5001.54, + "end": 5001.72, + "probability": 0.99951171875 + }, + { + "word": " plan", + "start": 5001.72, + "end": 5001.9, + "probability": 0.9326171875 + }, + { + "word": " you're", + "start": 5001.9, + "end": 5002.2, + "probability": 0.9912109375 + }, + { + "word": " going", + "start": 5002.2, + "end": 5002.26, + "probability": 0.982421875 + }, + { + "word": " to", + "start": 5002.26, + "end": 5002.36, + "probability": 1.0 + }, + { + "word": " get.", + "start": 5002.36, + "end": 5002.5, + "probability": 1.0 + } + ] + }, + { + "id": 2168, + "text": "And now it doesn't really mean anything.", + "start": 5002.64, + "end": 5004.02, + "words": [ + { + "word": " And", + "start": 5002.64, + "end": 5003.04, + "probability": 0.908203125 + }, + { + "word": " now", + "start": 5003.04, + "end": 5003.22, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 5003.22, + "end": 5003.32, + "probability": 0.97607421875 + }, + { + "word": " doesn't", + "start": 5003.32, + "end": 5003.46, + "probability": 1.0 + }, + { + "word": " really", + "start": 5003.46, + "end": 5003.56, + "probability": 1.0 + }, + { + "word": " mean", + "start": 5003.56, + "end": 5003.76, + "probability": 1.0 + }, + { + "word": " anything.", + "start": 5003.76, + "end": 5004.02, + "probability": 1.0 + } + ] + }, + { + "id": 2169, + "text": "Everything's data.", + "start": 5004.14, + "end": 5004.82, + "words": [ + { + "word": " Everything's", + "start": 5004.14, + "end": 5004.58, + "probability": 0.7451171875 + }, + { + "word": " data.", + "start": 5004.58, + "end": 5004.82, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2170, + "text": "And it's going to be the same thing when it comes to TV, right?", + "start": 5004.98, + "end": 5007.9, + "words": [ + { + "word": " And", + "start": 5004.98, + "end": 5005.28, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 5005.28, + "end": 5005.46, + "probability": 0.994140625 + }, + { + "word": " going", + "start": 5005.46, + "end": 5005.52, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 5005.52, + "end": 5005.52, + "probability": 1.0 + }, + { + "word": " be", + "start": 5005.52, + "end": 5005.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 5005.62, + "end": 5005.72, + "probability": 1.0 + }, + { + "word": " same", + "start": 5005.72, + "end": 5005.96, + "probability": 1.0 + }, + { + "word": " thing", + "start": 5005.96, + "end": 5006.12, + "probability": 1.0 + }, + { + "word": " when", + "start": 5006.12, + "end": 5006.26, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5006.26, + "end": 5006.32, + "probability": 1.0 + }, + { + "word": " comes", + "start": 5006.32, + "end": 5006.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5006.48, + "end": 5006.68, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 5006.68, + "end": 5007.24, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 5007.52, + "end": 5007.9, + "probability": 0.984375 + } + ] + }, + { + "id": 2171, + "text": "Because even your TV that you're watching on your cable box,", + "start": 5007.96, + "end": 5011.48, + "words": [ + { + "word": " Because", + "start": 5007.96, + "end": 5008.26, + "probability": 0.9990234375 + }, + { + "word": " even", + "start": 5008.26, + "end": 5008.82, + "probability": 1.0 + }, + { + "word": " your", + "start": 5008.82, + "end": 5009.04, + "probability": 1.0 + }, + { + "word": " TV", + "start": 5009.04, + "end": 5009.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 5009.44, + "end": 5009.96, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 5009.96, + "end": 5010.16, + "probability": 1.0 + }, + { + "word": " watching", + "start": 5010.16, + "end": 5010.48, + "probability": 1.0 + }, + { + "word": " on", + "start": 5010.48, + "end": 5010.7, + "probability": 1.0 + }, + { + "word": " your", + "start": 5010.7, + "end": 5010.9, + "probability": 1.0 + }, + { + "word": " cable", + "start": 5010.9, + "end": 5011.16, + "probability": 0.9990234375 + }, + { + "word": " box,", + "start": 5011.16, + "end": 5011.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2172, + "text": "probably half of it comes directly over data anyway.", + "start": 5012.200000000001, + "end": 5015.02, + "words": [ + { + "word": " probably", + "start": 5012.200000000001, + "end": 5012.64, + "probability": 1.0 + }, + { + "word": " half", + "start": 5012.64, + "end": 5013.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 5013.02, + "end": 5013.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 5013.18, + "end": 5013.28, + "probability": 1.0 + }, + { + "word": " comes", + "start": 5013.28, + "end": 5013.48, + "probability": 1.0 + }, + { + "word": " directly", + "start": 5013.48, + "end": 5013.92, + "probability": 1.0 + }, + { + "word": " over", + "start": 5013.92, + "end": 5014.3, + "probability": 1.0 + }, + { + "word": " data", + "start": 5014.3, + "end": 5014.58, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 5014.58, + "end": 5015.02, + "probability": 0.9677734375 + } + ] + }, + { + "id": 2173, + "text": "It's not real cable anymore anyway.", + "start": 5015.22, + "end": 5017.84, + "words": [ + { + "word": " It's", + "start": 5015.22, + "end": 5015.46, + "probability": 0.9921875 + }, + { + "word": " not", + "start": 5015.46, + "end": 5015.54, + "probability": 1.0 + }, + { + "word": " real", + "start": 5015.54, + "end": 5016.0, + "probability": 1.0 + }, + { + "word": " cable", + "start": 5016.0, + "end": 5016.98, + "probability": 1.0 + }, + { + "word": " anymore", + "start": 5016.98, + "end": 5017.44, + "probability": 0.99951171875 + }, + { + "word": " anyway.", + "start": 5017.44, + "end": 5017.84, + "probability": 0.8876953125 + } + ] + }, + { + "id": 2174, + "text": "It's all digital DVR craziness.", + "start": 5018.0, + "end": 5021.1, + "words": [ + { + "word": " It's", + "start": 5018.0, + "end": 5018.2, + "probability": 1.0 + }, + { + "word": " all", + "start": 5018.2, + "end": 5018.32, + "probability": 1.0 + }, + { + "word": " digital", + "start": 5018.32, + "end": 5019.0, + "probability": 1.0 + }, + { + "word": " DVR", + "start": 5019.0, + "end": 5019.76, + "probability": 0.998046875 + }, + { + "word": " craziness.", + "start": 5019.76, + "end": 5021.1, + "probability": 1.0 + } + ] + }, + { + "id": 2175, + "text": "Yeah, I mean, your Cox box is essentially", + "start": 5021.14, + "end": 5022.66, + "words": [ + { + "word": " Yeah,", + "start": 5021.14, + "end": 5021.46, + "probability": 0.970703125 + }, + { + "word": " I", + "start": 5021.48, + "end": 5021.5, + "probability": 0.98388671875 + }, + { + "word": " mean,", + "start": 5021.5, + "end": 5021.6, + "probability": 1.0 + }, + { + "word": " your", + "start": 5021.62, + "end": 5021.74, + "probability": 0.99951171875 + }, + { + "word": " Cox", + "start": 5021.74, + "end": 5021.96, + "probability": 0.98486328125 + }, + { + "word": " box", + "start": 5021.96, + "end": 5022.18, + "probability": 0.9326171875 + }, + { + "word": " is", + "start": 5022.18, + "end": 5022.42, + "probability": 1.0 + }, + { + "word": " essentially", + "start": 5022.42, + "end": 5022.66, + "probability": 1.0 + } + ] + }, + { + "id": 2176, + "text": "a really fancy Roku at this point.", + "start": 5022.66, + "end": 5024.7, + "words": [ + { + "word": " a", + "start": 5022.66, + "end": 5022.92, + "probability": 1.0 + }, + { + "word": " really", + "start": 5022.92, + "end": 5023.14, + "probability": 1.0 + }, + { + "word": " fancy", + "start": 5023.14, + "end": 5023.64, + "probability": 1.0 + }, + { + "word": " Roku", + "start": 5023.64, + "end": 5023.98, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 5023.98, + "end": 5024.28, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 5024.28, + "end": 5024.5, + "probability": 1.0 + }, + { + "word": " point.", + "start": 5024.5, + "end": 5024.7, + "probability": 1.0 + } + ] + }, + { + "id": 2177, + "text": "Right.", + "start": 5024.78, + "end": 5025.02, + "words": [ + { + "word": " Right.", + "start": 5024.78, + "end": 5025.02, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2178, + "text": "It's this mandatory Roku box", + "start": 5025.12, + "end": 5027.44, + "words": [ + { + "word": " It's", + "start": 5025.12, + "end": 5025.36, + "probability": 0.98876953125 + }, + { + "word": " this", + "start": 5025.36, + "end": 5025.54, + "probability": 0.99951171875 + }, + { + "word": " mandatory", + "start": 5025.54, + "end": 5026.44, + "probability": 1.0 + }, + { + "word": " Roku", + "start": 5026.44, + "end": 5027.12, + "probability": 1.0 + }, + { + "word": " box", + "start": 5027.12, + "end": 5027.44, + "probability": 1.0 + } + ] + }, + { + "id": 2179, + "text": "that you have to have to watch that service.", + "start": 5027.44, + "end": 5028.74, + "words": [ + { + "word": " that", + "start": 5027.44, + "end": 5027.66, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5027.66, + "end": 5027.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 5027.74, + "end": 5027.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 5027.86, + "end": 5027.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 5027.96, + "end": 5028.06, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5028.06, + "end": 5028.18, + "probability": 1.0 + }, + { + "word": " watch", + "start": 5028.18, + "end": 5028.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 5028.34, + "end": 5028.46, + "probability": 0.96533203125 + }, + { + "word": " service.", + "start": 5028.46, + "end": 5028.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2180, + "text": "And it's specialized for them.", + "start": 5028.96, + "end": 5030.36, + "words": [ + { + "word": " And", + "start": 5028.96, + "end": 5029.4, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 5029.4, + "end": 5029.6, + "probability": 1.0 + }, + { + "word": " specialized", + "start": 5029.6, + "end": 5029.92, + "probability": 0.99658203125 + }, + { + "word": " for", + "start": 5029.92, + "end": 5030.24, + "probability": 1.0 + }, + { + "word": " them.", + "start": 5030.24, + "end": 5030.36, + "probability": 1.0 + } + ] + }, + { + "id": 2181, + "text": "So it's really coming down to the fact that", + "start": 5030.36, + "end": 5032.24, + "words": [ + { + "word": " So", + "start": 5030.36, + "end": 5030.5, + "probability": 0.93359375 + }, + { + "word": " it's", + "start": 5030.5, + "end": 5031.08, + "probability": 0.97265625 + }, + { + "word": " really", + "start": 5031.08, + "end": 5031.2, + "probability": 1.0 + }, + { + "word": " coming", + "start": 5031.2, + "end": 5031.42, + "probability": 1.0 + }, + { + "word": " down", + "start": 5031.42, + "end": 5031.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 5031.66, + "end": 5031.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 5031.78, + "end": 5031.84, + "probability": 1.0 + }, + { + "word": " fact", + "start": 5031.84, + "end": 5032.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 5032.02, + "end": 5032.24, + "probability": 1.0 + } + ] + }, + { + "id": 2182, + "text": "at some point, you're just going to have a data package", + "start": 5032.24, + "end": 5034.54, + "words": [ + { + "word": " at", + "start": 5032.24, + "end": 5032.66, + "probability": 0.943359375 + }, + { + "word": " some", + "start": 5032.66, + "end": 5032.82, + "probability": 1.0 + }, + { + "word": " point,", + "start": 5032.82, + "end": 5033.1, + "probability": 1.0 + }, + { + "word": " you're", + "start": 5033.18, + "end": 5033.4, + "probability": 1.0 + }, + { + "word": " just", + "start": 5033.4, + "end": 5033.62, + "probability": 1.0 + }, + { + "word": " going", + "start": 5033.62, + "end": 5033.74, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5033.74, + "end": 5033.84, + "probability": 1.0 + }, + { + "word": " have", + "start": 5033.84, + "end": 5033.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 5033.94, + "end": 5034.02, + "probability": 1.0 + }, + { + "word": " data", + "start": 5034.02, + "end": 5034.18, + "probability": 0.99853515625 + }, + { + "word": " package", + "start": 5034.18, + "end": 5034.54, + "probability": 1.0 + } + ] + }, + { + "id": 2183, + "text": "and you're going to do whatever you want with it.", + "start": 5034.54, + "end": 5036.26, + "words": [ + { + "word": " and", + "start": 5034.54, + "end": 5034.78, + "probability": 0.2012939453125 + }, + { + "word": " you're", + "start": 5034.78, + "end": 5035.02, + "probability": 1.0 + }, + { + "word": " going", + "start": 5035.02, + "end": 5035.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 5035.08, + "end": 5035.1, + "probability": 1.0 + }, + { + "word": " do", + "start": 5035.1, + "end": 5035.26, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 5035.26, + "end": 5035.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 5035.5, + "end": 5035.74, + "probability": 1.0 + }, + { + "word": " want", + "start": 5035.74, + "end": 5035.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 5035.9, + "end": 5036.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5036.06, + "end": 5036.26, + "probability": 1.0 + } + ] + }, + { + "id": 2184, + "text": "And that's fine.", + "start": 5036.32, + "end": 5036.94, + "words": [ + { + "word": " And", + "start": 5036.32, + "end": 5036.46, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 5036.46, + "end": 5036.7, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 5036.7, + "end": 5036.94, + "probability": 1.0 + } + ] + }, + { + "id": 2185, + "text": "Interesting you brought up the Roku.", + "start": 5037.84, + "end": 5039.36, + "words": [ + { + "word": " Interesting", + "start": 5037.84, + "end": 5038.24, + "probability": 0.95751953125 + }, + { + "word": " you", + "start": 5038.24, + "end": 5038.44, + "probability": 0.38671875 + }, + { + "word": " brought", + "start": 5038.44, + "end": 5038.64, + "probability": 1.0 + }, + { + "word": " up", + "start": 5038.64, + "end": 5038.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 5038.92, + "end": 5039.06, + "probability": 1.0 + }, + { + "word": " Roku.", + "start": 5039.06, + "end": 5039.36, + "probability": 0.998046875 + } + ] + }, + { + "id": 2186, + "text": "I have a Roku.", + "start": 5039.54, + "end": 5040.76, + "words": [ + { + "word": " I", + "start": 5039.54, + "end": 5039.94, + "probability": 1.0 + }, + { + "word": " have", + "start": 5039.94, + "end": 5040.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 5040.3, + "end": 5040.42, + "probability": 1.0 + }, + { + "word": " Roku.", + "start": 5040.42, + "end": 5040.76, + "probability": 1.0 + } + ] + }, + { + "id": 2187, + "text": "And because of that, I can watch news", + "start": 5041.12, + "end": 5044.58, + "words": [ + { + "word": " And", + "start": 5041.12, + "end": 5041.52, + "probability": 0.99755859375 + }, + { + "word": " because", + "start": 5041.52, + "end": 5042.72, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5042.72, + "end": 5043.0, + "probability": 1.0 + }, + { + "word": " that,", + "start": 5043.0, + "end": 5043.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 5043.28, + "end": 5043.44, + "probability": 1.0 + }, + { + "word": " can", + "start": 5043.44, + "end": 5043.58, + "probability": 1.0 + }, + { + "word": " watch", + "start": 5043.58, + "end": 5043.88, + "probability": 1.0 + }, + { + "word": " news", + "start": 5043.88, + "end": 5044.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2188, + "text": "in like three other cities already, you know,", + "start": 5044.58, + "end": 5047.8, + "words": [ + { + "word": " in", + "start": 5044.58, + "end": 5045.0, + "probability": 0.953125 + }, + { + "word": " like", + "start": 5045.0, + "end": 5045.64, + "probability": 0.83447265625 + }, + { + "word": " three", + "start": 5045.64, + "end": 5045.88, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 5045.88, + "end": 5046.14, + "probability": 1.0 + }, + { + "word": " cities", + "start": 5046.14, + "end": 5046.64, + "probability": 1.0 + }, + { + "word": " already,", + "start": 5046.64, + "end": 5047.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 5047.52, + "end": 5047.6, + "probability": 0.91357421875 + }, + { + "word": " know,", + "start": 5047.6, + "end": 5047.8, + "probability": 1.0 + } + ] + }, + { + "id": 2189, + "text": "which I already use.", + "start": 5047.92, + "end": 5049.48, + "words": [ + { + "word": " which", + "start": 5047.92, + "end": 5048.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 5048.38, + "end": 5048.7, + "probability": 1.0 + }, + { + "word": " already", + "start": 5048.7, + "end": 5049.0, + "probability": 1.0 + }, + { + "word": " use.", + "start": 5049.0, + "end": 5049.48, + "probability": 1.0 + } + ] + }, + { + "id": 2190, + "text": "Right.", + "start": 5050.8, + "end": 5051.2, + "words": [ + { + "word": " Right.", + "start": 5050.8, + "end": 5051.2, + "probability": 0.93505859375 + } + ] + }, + { + "id": 2191, + "text": "And I'm not a fan of the Rokus myself, personally.", + "start": 5051.32, + "end": 5053.98, + "words": [ + { + "word": " And", + "start": 5051.32, + "end": 5051.44, + "probability": 0.9873046875 + }, + { + "word": " I'm", + "start": 5051.44, + "end": 5051.96, + "probability": 1.0 + }, + { + "word": " not", + "start": 5051.96, + "end": 5052.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 5052.14, + "end": 5052.3, + "probability": 1.0 + }, + { + "word": " fan", + "start": 5052.3, + "end": 5052.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 5052.48, + "end": 5052.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 5052.62, + "end": 5052.66, + "probability": 1.0 + }, + { + "word": " Rokus", + "start": 5052.66, + "end": 5052.92, + "probability": 0.994140625 + }, + { + "word": " myself,", + "start": 5052.92, + "end": 5053.4, + "probability": 0.65966796875 + }, + { + "word": " personally.", + "start": 5053.62, + "end": 5053.98, + "probability": 1.0 + } + ] + }, + { + "id": 2192, + "text": "I don't like the Rokus.", + "start": 5054.1, + "end": 5055.14, + "words": [ + { + "word": " I", + "start": 5054.1, + "end": 5054.22, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5054.22, + "end": 5054.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 5054.38, + "end": 5054.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 5054.68, + "end": 5054.84, + "probability": 1.0 + }, + { + "word": " Rokus.", + "start": 5054.84, + "end": 5055.14, + "probability": 1.0 + } + ] + }, + { + "id": 2193, + "text": "I mean, I bought one just to check it out.", + "start": 5055.26, + "end": 5057.36, + "words": [ + { + "word": " I", + "start": 5055.26, + "end": 5055.54, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 5055.54, + "end": 5055.68, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 5055.7, + "end": 5055.82, + "probability": 1.0 + }, + { + "word": " bought", + "start": 5055.82, + "end": 5056.04, + "probability": 1.0 + }, + { + "word": " one", + "start": 5056.04, + "end": 5056.36, + "probability": 1.0 + }, + { + "word": " just", + "start": 5056.36, + "end": 5056.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 5056.6, + "end": 5056.76, + "probability": 1.0 + }, + { + "word": " check", + "start": 5056.76, + "end": 5057.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 5057.02, + "end": 5057.14, + "probability": 1.0 + }, + { + "word": " out.", + "start": 5057.14, + "end": 5057.36, + "probability": 1.0 + } + ] + }, + { + "id": 2194, + "text": "And I think it's sitting at the shop now.", + "start": 5057.46, + "end": 5059.8, + "words": [ + { + "word": " And", + "start": 5057.46, + "end": 5057.86, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 5057.86, + "end": 5058.54, + "probability": 1.0 + }, + { + "word": " think", + "start": 5058.54, + "end": 5058.8, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5058.8, + "end": 5058.98, + "probability": 1.0 + }, + { + "word": " sitting", + "start": 5058.98, + "end": 5059.14, + "probability": 1.0 + }, + { + "word": " at", + "start": 5059.14, + "end": 5059.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 5059.28, + "end": 5059.36, + "probability": 1.0 + }, + { + "word": " shop", + "start": 5059.36, + "end": 5059.58, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 5059.58, + "end": 5059.8, + "probability": 1.0 + } + ] + }, + { + "id": 2195, + "text": "It is.", + "start": 5059.9, + "end": 5060.16, + "words": [ + { + "word": " It", + "start": 5059.9, + "end": 5060.04, + "probability": 0.9990234375 + }, + { + "word": " is.", + "start": 5060.04, + "end": 5060.16, + "probability": 0.998046875 + } + ] + }, + { + "id": 2196, + "text": "We were actually thinking about hooking it up.", + "start": 5060.36, + "end": 5061.78, + "words": [ + { + "word": " We", + "start": 5060.36, + "end": 5060.38, + "probability": 0.90869140625 + }, + { + "word": " were", + "start": 5060.38, + "end": 5060.44, + "probability": 0.98095703125 + }, + { + "word": " actually", + "start": 5060.44, + "end": 5060.64, + "probability": 0.9990234375 + }, + { + "word": " thinking", + "start": 5060.64, + "end": 5060.9, + "probability": 1.0 + }, + { + "word": " about", + "start": 5060.9, + "end": 5061.12, + "probability": 0.99951171875 + }, + { + "word": " hooking", + "start": 5061.12, + "end": 5061.54, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 5061.54, + "end": 5061.64, + "probability": 1.0 + }, + { + "word": " up.", + "start": 5061.64, + "end": 5061.78, + "probability": 1.0 + } + ] + }, + { + "id": 2197, + "text": "And it's one of these things.", + "start": 5061.82, + "end": 5063.88, + "words": [ + { + "word": " And", + "start": 5061.82, + "end": 5062.16, + "probability": 0.9296875 + }, + { + "word": " it's", + "start": 5062.16, + "end": 5063.34, + "probability": 0.994140625 + }, + { + "word": " one", + "start": 5063.34, + "end": 5063.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 5063.46, + "end": 5063.54, + "probability": 1.0 + }, + { + "word": " these", + "start": 5063.54, + "end": 5063.62, + "probability": 0.99951171875 + }, + { + "word": " things.", + "start": 5063.62, + "end": 5063.88, + "probability": 1.0 + } + ] + }, + { + "id": 2198, + "text": "It's just like, I don't like the interface.", + "start": 5063.92, + "end": 5065.22, + "words": [ + { + "word": " It's", + "start": 5063.92, + "end": 5064.08, + "probability": 0.9970703125 + }, + { + "word": " just", + "start": 5064.08, + "end": 5064.18, + "probability": 1.0 + }, + { + "word": " like,", + "start": 5064.18, + "end": 5064.4, + "probability": 0.955078125 + }, + { + "word": " I", + "start": 5064.46, + "end": 5064.56, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 5064.56, + "end": 5064.72, + "probability": 1.0 + }, + { + "word": " like", + "start": 5064.72, + "end": 5064.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 5064.82, + "end": 5064.94, + "probability": 1.0 + }, + { + "word": " interface.", + "start": 5064.94, + "end": 5065.22, + "probability": 1.0 + } + ] + }, + { + "id": 2199, + "text": "I definitely don't like the packages involved,", + "start": 5065.38, + "end": 5066.94, + "words": [ + { + "word": " I", + "start": 5065.38, + "end": 5065.5, + "probability": 0.99951171875 + }, + { + "word": " definitely", + "start": 5065.5, + "end": 5065.74, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 5065.74, + "end": 5066.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 5066.02, + "end": 5066.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 5066.14, + "end": 5066.26, + "probability": 1.0 + }, + { + "word": " packages", + "start": 5066.26, + "end": 5066.6, + "probability": 0.99951171875 + }, + { + "word": " involved,", + "start": 5066.6, + "end": 5066.94, + "probability": 0.693359375 + } + ] + }, + { + "id": 2200, + "text": "you know, that they include.", + "start": 5067.16, + "end": 5068.36, + "words": [ + { + "word": " you", + "start": 5067.16, + "end": 5067.48, + "probability": 0.97265625 + }, + { + "word": " know,", + "start": 5067.48, + "end": 5067.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 5067.62, + "end": 5067.76, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 5067.76, + "end": 5067.9, + "probability": 1.0 + }, + { + "word": " include.", + "start": 5067.9, + "end": 5068.36, + "probability": 1.0 + } + ] + }, + { + "id": 2201, + "text": "And then everything's a micro charge on top of that.", + "start": 5068.56, + "end": 5071.1, + "words": [ + { + "word": " And", + "start": 5068.56, + "end": 5068.92, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 5068.92, + "end": 5069.06, + "probability": 0.99951171875 + }, + { + "word": " everything's", + "start": 5069.06, + "end": 5069.54, + "probability": 0.79638671875 + }, + { + "word": " a", + "start": 5069.54, + "end": 5069.58, + "probability": 0.5673828125 + }, + { + "word": " micro", + "start": 5069.58, + "end": 5070.04, + "probability": 0.99951171875 + }, + { + "word": " charge", + "start": 5070.04, + "end": 5070.38, + "probability": 0.67333984375 + }, + { + "word": " on", + "start": 5070.38, + "end": 5070.6, + "probability": 1.0 + }, + { + "word": " top", + "start": 5070.6, + "end": 5070.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 5070.82, + "end": 5071.0, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5071.0, + "end": 5071.1, + "probability": 1.0 + } + ] + }, + { + "id": 2202, + "text": "And I don't like that either.", + "start": 5071.22, + "end": 5072.08, + "words": [ + { + "word": " And", + "start": 5071.22, + "end": 5071.28, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 5071.28, + "end": 5071.34, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5071.34, + "end": 5071.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 5071.46, + "end": 5071.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 5071.62, + "end": 5071.82, + "probability": 1.0 + }, + { + "word": " either.", + "start": 5071.82, + "end": 5072.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2203, + "text": "That's why I went with something like the Fire TV,", + "start": 5073.3, + "end": 5075.6, + "words": [ + { + "word": " That's", + "start": 5073.3, + "end": 5073.66, + "probability": 0.9931640625 + }, + { + "word": " why", + "start": 5073.66, + "end": 5073.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 5073.74, + "end": 5073.92, + "probability": 1.0 + }, + { + "word": " went", + "start": 5073.92, + "end": 5074.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 5074.06, + "end": 5074.14, + "probability": 1.0 + }, + { + "word": " something", + "start": 5074.14, + "end": 5074.34, + "probability": 1.0 + }, + { + "word": " like", + "start": 5074.34, + "end": 5074.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 5074.6, + "end": 5074.76, + "probability": 1.0 + }, + { + "word": " Fire", + "start": 5074.76, + "end": 5075.24, + "probability": 0.7841796875 + }, + { + "word": " TV,", + "start": 5075.24, + "end": 5075.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2204, + "text": "which I thought was a better deal.", + "start": 5075.84, + "end": 5077.06, + "words": [ + { + "word": " which", + "start": 5075.84, + "end": 5076.02, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 5076.02, + "end": 5076.12, + "probability": 1.0 + }, + { + "word": " thought", + "start": 5076.12, + "end": 5076.28, + "probability": 1.0 + }, + { + "word": " was", + "start": 5076.28, + "end": 5076.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 5076.4, + "end": 5076.5, + "probability": 1.0 + }, + { + "word": " better", + "start": 5076.5, + "end": 5076.7, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 5076.7, + "end": 5077.06, + "probability": 1.0 + } + ] + }, + { + "id": 2205, + "text": "And to me, it feels better.", + "start": 5077.860000000001, + "end": 5081.32, + "words": [ + { + "word": " And", + "start": 5077.860000000001, + "end": 5078.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5078.22, + "end": 5078.58, + "probability": 0.98974609375 + }, + { + "word": " me,", + "start": 5078.58, + "end": 5079.28, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5079.34, + "end": 5079.56, + "probability": 1.0 + }, + { + "word": " feels", + "start": 5079.56, + "end": 5080.78, + "probability": 0.99755859375 + }, + { + "word": " better.", + "start": 5080.78, + "end": 5081.32, + "probability": 1.0 + } + ] + }, + { + "id": 2206, + "text": "And so as far as the interface is concerned,", + "start": 5081.76, + "end": 5084.36, + "words": [ + { + "word": " And", + "start": 5081.76, + "end": 5082.12, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 5082.12, + "end": 5082.38, + "probability": 1.0 + }, + { + "word": " as", + "start": 5082.38, + "end": 5082.8, + "probability": 0.81494140625 + }, + { + "word": " far", + "start": 5082.8, + "end": 5083.3, + "probability": 1.0 + }, + { + "word": " as", + "start": 5083.3, + "end": 5083.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 5083.48, + "end": 5083.62, + "probability": 1.0 + }, + { + "word": " interface", + "start": 5083.62, + "end": 5083.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 5083.92, + "end": 5084.12, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 5084.12, + "end": 5084.36, + "probability": 1.0 + } + ] + }, + { + "id": 2207, + "text": "not to mention that I'm not being charged", + "start": 5084.5, + "end": 5086.1, + "words": [ + { + "word": " not", + "start": 5084.5, + "end": 5084.66, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5084.66, + "end": 5084.78, + "probability": 1.0 + }, + { + "word": " mention", + "start": 5084.78, + "end": 5085.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 5085.02, + "end": 5085.18, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 5085.18, + "end": 5085.36, + "probability": 1.0 + }, + { + "word": " not", + "start": 5085.36, + "end": 5085.5, + "probability": 1.0 + }, + { + "word": " being", + "start": 5085.5, + "end": 5085.72, + "probability": 1.0 + }, + { + "word": " charged", + "start": 5085.72, + "end": 5086.1, + "probability": 1.0 + } + ] + }, + { + "id": 2208, + "text": "for every little thing that I do.", + "start": 5086.1, + "end": 5087.76, + "words": [ + { + "word": " for", + "start": 5086.1, + "end": 5086.42, + "probability": 1.0 + }, + { + "word": " every", + "start": 5086.42, + "end": 5086.7, + "probability": 1.0 + }, + { + "word": " little", + "start": 5086.7, + "end": 5086.96, + "probability": 1.0 + }, + { + "word": " thing", + "start": 5086.96, + "end": 5087.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 5087.26, + "end": 5087.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 5087.44, + "end": 5087.54, + "probability": 1.0 + }, + { + "word": " do.", + "start": 5087.54, + "end": 5087.76, + "probability": 1.0 + } + ] + }, + { + "id": 2209, + "text": "Yeah, with the right services,", + "start": 5088.1, + "end": 5089.32, + "words": [ + { + "word": " Yeah,", + "start": 5088.1, + "end": 5088.46, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 5088.5, + "end": 5088.6, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5088.6, + "end": 5088.74, + "probability": 1.0 + }, + { + "word": " right", + "start": 5088.74, + "end": 5088.84, + "probability": 0.99951171875 + }, + { + "word": " services,", + "start": 5088.84, + "end": 5089.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2210, + "text": "those local channels aren't an issue.", + "start": 5089.32, + "end": 5091.26, + "words": [ + { + "word": " those", + "start": 5089.32, + "end": 5089.46, + "probability": 0.19384765625 + }, + { + "word": " local", + "start": 5089.46, + "end": 5090.24, + "probability": 0.99755859375 + }, + { + "word": " channels", + "start": 5090.24, + "end": 5090.58, + "probability": 0.99951171875 + }, + { + "word": " aren't", + "start": 5090.58, + "end": 5090.98, + "probability": 0.9951171875 + }, + { + "word": " an", + "start": 5090.98, + "end": 5091.0, + "probability": 0.99951171875 + }, + { + "word": " issue.", + "start": 5091.0, + "end": 5091.26, + "probability": 1.0 + } + ] + }, + { + "id": 2211, + "text": "Right.", + "start": 5091.740000000001, + "end": 5092.14, + "words": [ + { + "word": " Right.", + "start": 5091.740000000001, + "end": 5092.14, + "probability": 0.5712890625 + } + ] + }, + { + "id": 2212, + "text": "They've gotten better, I'll tell you,", + "start": 5092.26, + "end": 5093.94, + "words": [ + { + "word": " They've", + "start": 5092.26, + "end": 5092.4, + "probability": 0.9970703125 + }, + { + "word": " gotten", + "start": 5092.4, + "end": 5092.86, + "probability": 0.98779296875 + }, + { + "word": " better,", + "start": 5092.86, + "end": 5093.2, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 5093.36, + "end": 5093.56, + "probability": 0.9990234375 + }, + { + "word": " tell", + "start": 5093.56, + "end": 5093.76, + "probability": 0.99951171875 + }, + { + "word": " you,", + "start": 5093.76, + "end": 5093.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2213, + "text": "on the Roku over the years.", + "start": 5093.98, + "end": 5095.84, + "words": [ + { + "word": " on", + "start": 5093.98, + "end": 5094.12, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 5094.12, + "end": 5094.2, + "probability": 0.99951171875 + }, + { + "word": " Roku", + "start": 5094.2, + "end": 5094.48, + "probability": 0.99609375 + }, + { + "word": " over", + "start": 5094.48, + "end": 5095.06, + "probability": 0.93212890625 + }, + { + "word": " the", + "start": 5095.06, + "end": 5095.5, + "probability": 1.0 + }, + { + "word": " years.", + "start": 5095.5, + "end": 5095.84, + "probability": 1.0 + } + ] + }, + { + "id": 2214, + "text": "Well, we'll fire up that Roku at the shop", + "start": 5096.14, + "end": 5098.3, + "words": [ + { + "word": " Well,", + "start": 5096.14, + "end": 5096.46, + "probability": 0.96142578125 + }, + { + "word": " we'll", + "start": 5096.5, + "end": 5097.18, + "probability": 0.712890625 + }, + { + "word": " fire", + "start": 5097.18, + "end": 5097.34, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 5097.34, + "end": 5097.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 5097.5, + "end": 5097.6, + "probability": 0.99951171875 + }, + { + "word": " Roku", + "start": 5097.6, + "end": 5097.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 5097.84, + "end": 5098.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5098.0, + "end": 5098.06, + "probability": 1.0 + }, + { + "word": " shop", + "start": 5098.06, + "end": 5098.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 2215, + "text": "and we'll check it out and I'll give you an update.", + "start": 5098.3, + "end": 5099.66, + "words": [ + { + "word": " and", + "start": 5098.3, + "end": 5098.46, + "probability": 0.62939453125 + }, + { + "word": " we'll", + "start": 5098.46, + "end": 5098.54, + "probability": 0.9990234375 + }, + { + "word": " check", + "start": 5098.54, + "end": 5098.68, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5098.68, + "end": 5098.8, + "probability": 1.0 + }, + { + "word": " out", + "start": 5098.8, + "end": 5098.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 5098.94, + "end": 5099.06, + "probability": 0.814453125 + }, + { + "word": " I'll", + "start": 5099.06, + "end": 5099.16, + "probability": 0.9970703125 + }, + { + "word": " give", + "start": 5099.16, + "end": 5099.24, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5099.24, + "end": 5099.34, + "probability": 1.0 + }, + { + "word": " an", + "start": 5099.34, + "end": 5099.42, + "probability": 1.0 + }, + { + "word": " update.", + "start": 5099.42, + "end": 5099.66, + "probability": 1.0 + } + ] + }, + { + "id": 2216, + "text": "Please do.", + "start": 5100.3, + "end": 5100.86, + "words": [ + { + "word": " Please", + "start": 5100.3, + "end": 5100.7, + "probability": 0.99169921875 + }, + { + "word": " do.", + "start": 5100.7, + "end": 5100.86, + "probability": 1.0 + } + ] + }, + { + "id": 2217, + "text": "All right.", + "start": 5101.08, + "end": 5101.52, + "words": [ + { + "word": " All", + "start": 5101.08, + "end": 5101.34, + "probability": 0.7236328125 + }, + { + "word": " right.", + "start": 5101.34, + "end": 5101.52, + "probability": 1.0 + } + ] + }, + { + "id": 2218, + "text": "Thanks for the call, Dave.", + "start": 5101.56, + "end": 5102.54, + "words": [ + { + "word": " Thanks", + "start": 5101.56, + "end": 5101.82, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 5101.82, + "end": 5101.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 5101.98, + "end": 5102.1, + "probability": 1.0 + }, + { + "word": " call,", + "start": 5102.1, + "end": 5102.32, + "probability": 1.0 + }, + { + "word": " Dave.", + "start": 5102.36, + "end": 5102.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2219, + "text": "I appreciate it.", + "start": 5102.58, + "end": 5103.12, + "words": [ + { + "word": " I", + "start": 5102.58, + "end": 5102.68, + "probability": 0.99755859375 + }, + { + "word": " appreciate", + "start": 5102.68, + "end": 5102.96, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5102.96, + "end": 5103.12, + "probability": 1.0 + } + ] + }, + { + "id": 2220, + "text": "Bye.", + "start": 5103.54, + "end": 5103.94, + "words": [ + { + "word": " Bye.", + "start": 5103.54, + "end": 5103.94, + "probability": 0.6708984375 + } + ] + }, + { + "id": 2221, + "text": "Well, before the show ends,", + "start": 5104.900000000001, + "end": 5106.56, + "words": [ + { + "word": " Well,", + "start": 5104.900000000001, + "end": 5105.3, + "probability": 0.9677734375 + }, + { + "word": " before", + "start": 5105.38, + "end": 5105.6, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5105.6, + "end": 5106.16, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 5106.16, + "end": 5106.34, + "probability": 0.99951171875 + }, + { + "word": " ends,", + "start": 5106.34, + "end": 5106.56, + "probability": 1.0 + } + ] + }, + { + "id": 2222, + "text": "I wanted to take a moment to thank Desert Pro Cleaning", + "start": 5106.7, + "end": 5109.48, + "words": [ + { + "word": " I", + "start": 5106.7, + "end": 5106.8, + "probability": 0.998046875 + }, + { + "word": " wanted", + "start": 5106.8, + "end": 5107.06, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 5107.06, + "end": 5107.26, + "probability": 1.0 + }, + { + "word": " take", + "start": 5107.26, + "end": 5107.6, + "probability": 0.98193359375 + }, + { + "word": " a", + "start": 5107.6, + "end": 5107.72, + "probability": 1.0 + }, + { + "word": " moment", + "start": 5107.72, + "end": 5107.92, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 5107.92, + "end": 5108.1, + "probability": 0.9990234375 + }, + { + "word": " thank", + "start": 5108.1, + "end": 5108.36, + "probability": 0.9990234375 + }, + { + "word": " Desert", + "start": 5108.36, + "end": 5108.88, + "probability": 0.9990234375 + }, + { + "word": " Pro", + "start": 5108.88, + "end": 5109.06, + "probability": 0.97900390625 + }, + { + "word": " Cleaning", + "start": 5109.06, + "end": 5109.48, + "probability": 0.99609375 + } + ] + }, + { + "id": 2223, + "text": "for being our Patreon sponsor.", + "start": 5109.48, + "end": 5110.82, + "words": [ + { + "word": " for", + "start": 5109.48, + "end": 5109.94, + "probability": 0.998046875 + }, + { + "word": " being", + "start": 5109.94, + "end": 5110.2, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 5110.2, + "end": 5110.34, + "probability": 0.99951171875 + }, + { + "word": " Patreon", + "start": 5110.34, + "end": 5110.56, + "probability": 0.99853515625 + }, + { + "word": " sponsor.", + "start": 5110.56, + "end": 5110.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2224, + "text": "Yeah.", + "start": 5111.5, + "end": 5111.8, + "words": [ + { + "word": " Yeah.", + "start": 5111.5, + "end": 5111.8, + "probability": 0.98046875 + } + ] + }, + { + "id": 2225, + "text": "They do a great job.", + "start": 5111.98, + "end": 5113.84, + "words": [ + { + "word": " They", + "start": 5111.98, + "end": 5112.38, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 5112.38, + "end": 5112.86, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5112.86, + "end": 5113.36, + "probability": 0.99609375 + }, + { + "word": " great", + "start": 5113.36, + "end": 5113.58, + "probability": 1.0 + }, + { + "word": " job.", + "start": 5113.58, + "end": 5113.84, + "probability": 1.0 + } + ] + }, + { + "id": 2226, + "text": "Did we pay off and send those recordings in yet?", + "start": 5114.02, + "end": 5116.0, + "words": [ + { + "word": " Did", + "start": 5114.02, + "end": 5114.06, + "probability": 0.63525390625 + }, + { + "word": " we", + "start": 5114.06, + "end": 5114.22, + "probability": 1.0 + }, + { + "word": " pay", + "start": 5114.22, + "end": 5114.78, + "probability": 0.447998046875 + }, + { + "word": " off", + "start": 5114.78, + "end": 5114.88, + "probability": 0.364990234375 + }, + { + "word": " and", + "start": 5114.88, + "end": 5114.98, + "probability": 0.98291015625 + }, + { + "word": " send", + "start": 5114.98, + "end": 5115.12, + "probability": 0.6103515625 + }, + { + "word": " those", + "start": 5115.12, + "end": 5115.28, + "probability": 0.99951171875 + }, + { + "word": " recordings", + "start": 5115.28, + "end": 5115.62, + "probability": 1.0 + }, + { + "word": " in", + "start": 5115.62, + "end": 5115.86, + "probability": 0.98828125 + }, + { + "word": " yet?", + "start": 5115.86, + "end": 5116.0, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2227, + "text": "Not yet.", + "start": 5116.16, + "end": 5116.8, + "words": [ + { + "word": " Not", + "start": 5116.16, + "end": 5116.56, + "probability": 0.98681640625 + }, + { + "word": " yet.", + "start": 5116.56, + "end": 5116.8, + "probability": 1.0 + } + ] + }, + { + "id": 2228, + "text": "But this way, we will never, ever forget", + "start": 5116.84, + "end": 5119.14, + "words": [ + { + "word": " But", + "start": 5116.84, + "end": 5117.02, + "probability": 0.96484375 + }, + { + "word": " this", + "start": 5117.02, + "end": 5117.62, + "probability": 0.994140625 + }, + { + "word": " way,", + "start": 5117.62, + "end": 5117.8, + "probability": 1.0 + }, + { + "word": " we", + "start": 5117.86, + "end": 5118.04, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 5118.04, + "end": 5118.3, + "probability": 0.998046875 + }, + { + "word": " never,", + "start": 5118.3, + "end": 5118.58, + "probability": 0.99951171875 + }, + { + "word": " ever", + "start": 5118.6, + "end": 5118.8, + "probability": 0.9990234375 + }, + { + "word": " forget", + "start": 5118.8, + "end": 5119.14, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2229, + "text": "to do it like we accidentally did a couple of weeks ago.", + "start": 5119.14, + "end": 5121.38, + "words": [ + { + "word": " to", + "start": 5119.14, + "end": 5119.26, + "probability": 0.04168701171875 + }, + { + "word": " do", + "start": 5119.26, + "end": 5119.44, + "probability": 0.98974609375 + }, + { + "word": " it", + "start": 5119.44, + "end": 5119.58, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 5119.58, + "end": 5119.76, + "probability": 0.91748046875 + }, + { + "word": " we", + "start": 5119.76, + "end": 5119.98, + "probability": 0.9990234375 + }, + { + "word": " accidentally", + "start": 5119.98, + "end": 5120.34, + "probability": 0.970703125 + }, + { + "word": " did", + "start": 5120.34, + "end": 5120.62, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5120.62, + "end": 5120.78, + "probability": 0.99755859375 + }, + { + "word": " couple", + "start": 5120.78, + "end": 5121.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5121.0, + "end": 5121.08, + "probability": 0.984375 + }, + { + "word": " weeks", + "start": 5121.08, + "end": 5121.24, + "probability": 0.99951171875 + }, + { + "word": " ago.", + "start": 5121.24, + "end": 5121.38, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2230, + "text": "I'm sorry about that over Desert Pro.", + "start": 5121.66, + "end": 5123.4, + "words": [ + { + "word": " I'm", + "start": 5121.66, + "end": 5121.72, + "probability": 0.9384765625 + }, + { + "word": " sorry", + "start": 5121.72, + "end": 5121.92, + "probability": 0.99853515625 + }, + { + "word": " about", + "start": 5121.92, + "end": 5122.2, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 5122.2, + "end": 5122.52, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 5122.52, + "end": 5122.72, + "probability": 0.98291015625 + }, + { + "word": " Desert", + "start": 5122.72, + "end": 5123.14, + "probability": 0.8525390625 + }, + { + "word": " Pro.", + "start": 5123.14, + "end": 5123.4, + "probability": 0.8818359375 + } + ] + }, + { + "id": 2231, + "text": "I mean, I forget things.", + "start": 5123.62, + "end": 5125.94, + "words": [ + { + "word": " I", + "start": 5123.62, + "end": 5123.86, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 5123.86, + "end": 5124.0, + "probability": 0.89697265625 + }, + { + "word": " I", + "start": 5124.04, + "end": 5124.38, + "probability": 0.99169921875 + }, + { + "word": " forget", + "start": 5124.38, + "end": 5125.06, + "probability": 0.91748046875 + }, + { + "word": " things.", + "start": 5125.06, + "end": 5125.94, + "probability": 1.0 + } + ] + }, + { + "id": 2232, + "text": "I'm just here trying to fix people's problems on the air", + "start": 5126.04, + "end": 5129.66, + "words": [ + { + "word": " I'm", + "start": 5126.04, + "end": 5126.3, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 5126.3, + "end": 5126.52, + "probability": 1.0 + }, + { + "word": " here", + "start": 5126.52, + "end": 5126.76, + "probability": 1.0 + }, + { + "word": " trying", + "start": 5126.76, + "end": 5127.04, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5127.04, + "end": 5127.28, + "probability": 1.0 + }, + { + "word": " fix", + "start": 5127.28, + "end": 5127.54, + "probability": 1.0 + }, + { + "word": " people's", + "start": 5127.54, + "end": 5128.68, + "probability": 1.0 + }, + { + "word": " problems", + "start": 5128.68, + "end": 5129.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 5129.04, + "end": 5129.34, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5129.34, + "end": 5129.48, + "probability": 1.0 + }, + { + "word": " air", + "start": 5129.48, + "end": 5129.66, + "probability": 1.0 + } + ] + }, + { + "id": 2233, + "text": "and I forget to say things like,", + "start": 5129.66, + "end": 5131.0, + "words": [ + { + "word": " and", + "start": 5129.66, + "end": 5129.8, + "probability": 0.482666015625 + }, + { + "word": " I", + "start": 5129.8, + "end": 5129.88, + "probability": 0.99951171875 + }, + { + "word": " forget", + "start": 5129.88, + "end": 5130.12, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 5130.12, + "end": 5130.28, + "probability": 1.0 + }, + { + "word": " say", + "start": 5130.28, + "end": 5130.44, + "probability": 1.0 + }, + { + "word": " things", + "start": 5130.44, + "end": 5130.62, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 5130.62, + "end": 5131.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 2234, + "text": "hey, thanks for giving us money and supporting the show.", + "start": 5131.18, + "end": 5133.78, + "words": [ + { + "word": " hey,", + "start": 5131.18, + "end": 5131.72, + "probability": 0.9638671875 + }, + { + "word": " thanks", + "start": 5131.78, + "end": 5132.04, + "probability": 1.0 + }, + { + "word": " for", + "start": 5132.04, + "end": 5132.2, + "probability": 1.0 + }, + { + "word": " giving", + "start": 5132.2, + "end": 5132.52, + "probability": 0.63671875 + }, + { + "word": " us", + "start": 5132.52, + "end": 5132.8, + "probability": 1.0 + }, + { + "word": " money", + "start": 5132.8, + "end": 5132.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 5132.98, + "end": 5133.14, + "probability": 1.0 + }, + { + "word": " supporting", + "start": 5133.14, + "end": 5133.4, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5133.4, + "end": 5133.6, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 5133.6, + "end": 5133.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2235, + "text": "And they've been a big sponsor on Patreon for us", + "start": 5133.98, + "end": 5136.48, + "words": [ + { + "word": " And", + "start": 5133.98, + "end": 5134.06, + "probability": 0.99267578125 + }, + { + "word": " they've", + "start": 5134.06, + "end": 5134.22, + "probability": 1.0 + }, + { + "word": " been", + "start": 5134.22, + "end": 5134.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 5134.4, + "end": 5134.64, + "probability": 1.0 + }, + { + "word": " big", + "start": 5134.64, + "end": 5134.92, + "probability": 0.99951171875 + }, + { + "word": " sponsor", + "start": 5134.92, + "end": 5135.44, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5135.44, + "end": 5135.68, + "probability": 0.99951171875 + }, + { + "word": " Patreon", + "start": 5135.68, + "end": 5135.96, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 5135.96, + "end": 5136.28, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 5136.28, + "end": 5136.48, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2236, + "text": "for quite some time now,", + "start": 5136.48, + "end": 5137.7, + "words": [ + { + "word": " for", + "start": 5136.48, + "end": 5136.64, + "probability": 1.0 + }, + { + "word": " quite", + "start": 5136.64, + "end": 5137.06, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 5137.06, + "end": 5137.28, + "probability": 1.0 + }, + { + "word": " time", + "start": 5137.28, + "end": 5137.52, + "probability": 1.0 + }, + { + "word": " now,", + "start": 5137.52, + "end": 5137.7, + "probability": 1.0 + } + ] + }, + { + "id": 2237, + "text": "so we definitely appreciate them.", + "start": 5137.76, + "end": 5138.92, + "words": [ + { + "word": " so", + "start": 5137.76, + "end": 5137.86, + "probability": 1.0 + }, + { + "word": " we", + "start": 5137.86, + "end": 5137.96, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 5137.96, + "end": 5138.22, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5138.22, + "end": 5138.58, + "probability": 1.0 + }, + { + "word": " them.", + "start": 5138.58, + "end": 5138.92, + "probability": 1.0 + } + ] + }, + { + "id": 2238, + "text": "Yes.", + "start": 5139.08, + "end": 5139.48, + "words": [ + { + "word": " Yes.", + "start": 5139.08, + "end": 5139.48, + "probability": 0.7275390625 + } + ] + }, + { + "id": 2239, + "text": "And they also do really good work", + "start": 5139.52, + "end": 5140.78, + "words": [ + { + "word": " And", + "start": 5139.52, + "end": 5139.72, + "probability": 1.0 + }, + { + "word": " they", + "start": 5139.72, + "end": 5139.82, + "probability": 1.0 + }, + { + "word": " also", + "start": 5139.82, + "end": 5140.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 5140.0, + "end": 5140.2, + "probability": 1.0 + }, + { + "word": " really", + "start": 5140.2, + "end": 5140.42, + "probability": 1.0 + }, + { + "word": " good", + "start": 5140.42, + "end": 5140.58, + "probability": 1.0 + }, + { + "word": " work", + "start": 5140.58, + "end": 5140.78, + "probability": 1.0 + } + ] + }, + { + "id": 2240, + "text": "because we use them in our Eastside location", + "start": 5140.78, + "end": 5142.0, + "words": [ + { + "word": " because", + "start": 5140.78, + "end": 5140.96, + "probability": 0.9599609375 + }, + { + "word": " we", + "start": 5140.96, + "end": 5141.08, + "probability": 1.0 + }, + { + "word": " use", + "start": 5141.08, + "end": 5141.22, + "probability": 1.0 + }, + { + "word": " them", + "start": 5141.22, + "end": 5141.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 5141.32, + "end": 5141.42, + "probability": 0.9951171875 + }, + { + "word": " our", + "start": 5141.42, + "end": 5141.52, + "probability": 1.0 + }, + { + "word": " Eastside", + "start": 5141.52, + "end": 5141.76, + "probability": 0.88232421875 + }, + { + "word": " location", + "start": 5141.76, + "end": 5142.0, + "probability": 1.0 + } + ] + }, + { + "id": 2241, + "text": "and every time I go there, it looks nice.", + "start": 5142.0, + "end": 5143.62, + "words": [ + { + "word": " and", + "start": 5142.0, + "end": 5142.38, + "probability": 0.8544921875 + }, + { + "word": " every", + "start": 5142.38, + "end": 5142.56, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 5142.56, + "end": 5142.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 5142.7, + "end": 5142.8, + "probability": 1.0 + }, + { + "word": " go", + "start": 5142.8, + "end": 5142.9, + "probability": 1.0 + }, + { + "word": " there,", + "start": 5142.9, + "end": 5143.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 5143.12, + "end": 5143.22, + "probability": 1.0 + }, + { + "word": " looks", + "start": 5143.22, + "end": 5143.38, + "probability": 0.99951171875 + }, + { + "word": " nice.", + "start": 5143.38, + "end": 5143.62, + "probability": 1.0 + } + ] + }, + { + "id": 2242, + "text": "It does.", + "start": 5143.86, + "end": 5144.38, + "words": [ + { + "word": " It", + "start": 5143.86, + "end": 5144.14, + "probability": 0.99951171875 + }, + { + "word": " does.", + "start": 5144.14, + "end": 5144.38, + "probability": 1.0 + } + ] + }, + { + "id": 2243, + "text": "Yeah, so Desert Pro Commercial Cleaning.", + "start": 5144.58, + "end": 5146.84, + "words": [ + { + "word": " Yeah,", + "start": 5144.58, + "end": 5144.98, + "probability": 0.98974609375 + }, + { + "word": " so", + "start": 5145.04, + "end": 5145.2, + "probability": 1.0 + }, + { + "word": " Desert", + "start": 5145.2, + "end": 5145.64, + "probability": 0.99169921875 + }, + { + "word": " Pro", + "start": 5145.64, + "end": 5145.94, + "probability": 0.99951171875 + }, + { + "word": " Commercial", + "start": 5145.94, + "end": 5146.44, + "probability": 0.875 + }, + { + "word": " Cleaning.", + "start": 5146.44, + "end": 5146.84, + "probability": 0.2269287109375 + } + ] + }, + { + "id": 2244, + "text": "I don't know why Mike loves the Eastside more than he does.", + "start": 5146.84, + "end": 5149.12, + "words": [ + { + "word": " I", + "start": 5146.84, + "end": 5146.96, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 5146.96, + "end": 5147.06, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 5147.06, + "end": 5147.1, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 5147.1, + "end": 5147.3, + "probability": 0.99951171875 + }, + { + "word": " Mike", + "start": 5147.3, + "end": 5147.52, + "probability": 0.99169921875 + }, + { + "word": " loves", + "start": 5147.52, + "end": 5147.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5147.84, + "end": 5148.12, + "probability": 1.0 + }, + { + "word": " Eastside", + "start": 5148.12, + "end": 5148.54, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 5148.54, + "end": 5148.76, + "probability": 0.9990234375 + }, + { + "word": " than", + "start": 5148.76, + "end": 5148.92, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 5148.92, + "end": 5149.04, + "probability": 0.9931640625 + }, + { + "word": " does.", + "start": 5149.04, + "end": 5149.12, + "probability": 0.053955078125 + } + ] + }, + { + "id": 2245, + "text": "", + "start": 5149.12, + "end": 5149.12, + "words": [] + }, + { + "id": 2246, + "text": "", + "start": 5149.12, + "end": 5149.12, + "words": [] + }, + { + "id": 2247, + "text": "He likes the Fort Lowell office,", + "start": 5149.12, + "end": 5150.1, + "words": [ + { + "word": " He", + "start": 5149.12, + "end": 5149.12, + "probability": 0.80224609375 + }, + { + "word": " likes", + "start": 5149.12, + "end": 5149.34, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5149.34, + "end": 5149.44, + "probability": 0.9990234375 + }, + { + "word": " Fort", + "start": 5149.44, + "end": 5149.62, + "probability": 0.9990234375 + }, + { + "word": " Lowell", + "start": 5149.62, + "end": 5149.82, + "probability": 0.99658203125 + }, + { + "word": " office,", + "start": 5149.82, + "end": 5150.1, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2248, + "text": "which could definitely use it, but...", + "start": 5150.88, + "end": 5152.44, + "words": [ + { + "word": " which", + "start": 5150.76, + "end": 5151.0, + "probability": 1.0 + }, + { + "word": " could", + "start": 5151.0, + "end": 5151.12, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 5151.12, + "end": 5151.44, + "probability": 1.0 + }, + { + "word": " use", + "start": 5151.44, + "end": 5151.74, + "probability": 1.0 + }, + { + "word": " it,", + "start": 5151.74, + "end": 5151.96, + "probability": 1.0 + }, + { + "word": " but...", + "start": 5151.98, + "end": 5152.44, + "probability": 0.6826171875 + } + ] + }, + { + "id": 2249, + "text": "Well, we'll just say that there's a political matter involved", + "start": 5152.44, + "end": 5155.96, + "words": [ + { + "word": " Well,", + "start": 5152.44, + "end": 5153.08, + "probability": 0.96435546875 + }, + { + "word": " we'll", + "start": 5153.26, + "end": 5153.58, + "probability": 1.0 + }, + { + "word": " just", + "start": 5153.58, + "end": 5153.78, + "probability": 1.0 + }, + { + "word": " say", + "start": 5153.78, + "end": 5154.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 5154.06, + "end": 5154.22, + "probability": 1.0 + }, + { + "word": " there's", + "start": 5154.22, + "end": 5154.54, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5154.54, + "end": 5154.64, + "probability": 1.0 + }, + { + "word": " political", + "start": 5154.64, + "end": 5155.2, + "probability": 1.0 + }, + { + "word": " matter", + "start": 5155.2, + "end": 5155.58, + "probability": 1.0 + }, + { + "word": " involved", + "start": 5155.58, + "end": 5155.96, + "probability": 1.0 + } + ] + }, + { + "id": 2250, + "text": "with Fort Lowell.", + "start": 5155.96, + "end": 5156.92, + "words": [ + { + "word": " with", + "start": 5155.96, + "end": 5156.38, + "probability": 1.0 + }, + { + "word": " Fort", + "start": 5156.38, + "end": 5156.62, + "probability": 0.99951171875 + }, + { + "word": " Lowell.", + "start": 5156.62, + "end": 5156.92, + "probability": 1.0 + } + ] + }, + { + "id": 2251, + "text": "Ah.", + "start": 5157.0, + "end": 5157.12, + "words": [ + { + "word": " Ah.", + "start": 5157.0, + "end": 5157.12, + "probability": 0.2442626953125 + } + ] + }, + { + "id": 2252, + "text": "And, you know, there's an agreement", + "start": 5157.42, + "end": 5159.8, + "words": [ + { + "word": " And,", + "start": 5157.42, + "end": 5157.9, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 5157.98, + "end": 5158.42, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 5158.42, + "end": 5158.58, + "probability": 1.0 + }, + { + "word": " there's", + "start": 5158.62, + "end": 5159.44, + "probability": 1.0 + }, + { + "word": " an", + "start": 5159.44, + "end": 5159.54, + "probability": 1.0 + }, + { + "word": " agreement", + "start": 5159.54, + "end": 5159.8, + "probability": 1.0 + } + ] + }, + { + "id": 2253, + "text": "that has already been reached for cleaning of Fort Lowell", + "start": 5159.8, + "end": 5162.68, + "words": [ + { + "word": " that", + "start": 5159.8, + "end": 5160.12, + "probability": 1.0 + }, + { + "word": " has", + "start": 5160.12, + "end": 5160.22, + "probability": 1.0 + }, + { + "word": " already", + "start": 5160.22, + "end": 5160.44, + "probability": 1.0 + }, + { + "word": " been", + "start": 5160.44, + "end": 5160.64, + "probability": 1.0 + }, + { + "word": " reached", + "start": 5160.64, + "end": 5160.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 5160.96, + "end": 5161.3, + "probability": 1.0 + }, + { + "word": " cleaning", + "start": 5161.3, + "end": 5161.82, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 5161.82, + "end": 5162.12, + "probability": 0.58935546875 + }, + { + "word": " Fort", + "start": 5162.12, + "end": 5162.36, + "probability": 1.0 + }, + { + "word": " Lowell", + "start": 5162.36, + "end": 5162.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2254, + "text": "and, you know, I can't go messing with that.", + "start": 5162.68, + "end": 5166.0, + "words": [ + { + "word": " and,", + "start": 5162.68, + "end": 5163.08, + "probability": 0.04522705078125 + }, + { + "word": " you", + "start": 5163.22, + "end": 5163.84, + "probability": 1.0 + }, + { + "word": " know,", + "start": 5163.84, + "end": 5163.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 5163.94, + "end": 5164.22, + "probability": 1.0 + }, + { + "word": " can't", + "start": 5164.22, + "end": 5164.56, + "probability": 1.0 + }, + { + "word": " go", + "start": 5164.56, + "end": 5164.66, + "probability": 1.0 + }, + { + "word": " messing", + "start": 5164.66, + "end": 5165.46, + "probability": 0.919921875 + }, + { + "word": " with", + "start": 5165.46, + "end": 5165.74, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5165.74, + "end": 5166.0, + "probability": 1.0 + } + ] + }, + { + "id": 2255, + "text": "That's true.", + "start": 5166.06, + "end": 5166.54, + "words": [ + { + "word": " That's", + "start": 5166.06, + "end": 5166.32, + "probability": 1.0 + }, + { + "word": " true.", + "start": 5166.32, + "end": 5166.54, + "probability": 1.0 + } + ] + }, + { + "id": 2256, + "text": "That's true.", + "start": 5166.66, + "end": 5167.06, + "words": [ + { + "word": " That's", + "start": 5166.66, + "end": 5166.9, + "probability": 0.9951171875 + }, + { + "word": " true.", + "start": 5166.9, + "end": 5167.06, + "probability": 1.0 + } + ] + }, + { + "id": 2257, + "text": "So, it's politics, man.", + "start": 5167.42, + "end": 5170.46, + "words": [ + { + "word": " So,", + "start": 5167.42, + "end": 5167.9, + "probability": 0.9912109375 + }, + { + "word": " it's", + "start": 5167.9, + "end": 5169.3, + "probability": 0.94775390625 + }, + { + "word": " politics,", + "start": 5169.3, + "end": 5170.12, + "probability": 1.0 + }, + { + "word": " man.", + "start": 5170.26, + "end": 5170.46, + "probability": 1.0 + } + ] + }, + { + "id": 2258, + "text": "You know, what can you say?", + "start": 5170.58, + "end": 5171.64, + "words": [ + { + "word": " You", + "start": 5170.58, + "end": 5170.86, + "probability": 0.83251953125 + }, + { + "word": " know,", + "start": 5170.86, + "end": 5171.0, + "probability": 1.0 + }, + { + "word": " what", + "start": 5171.02, + "end": 5171.28, + "probability": 0.9970703125 + }, + { + "word": " can", + "start": 5171.28, + "end": 5171.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 5171.4, + "end": 5171.48, + "probability": 0.9814453125 + }, + { + "word": " say?", + "start": 5171.48, + "end": 5171.64, + "probability": 1.0 + } + ] + }, + { + "id": 2259, + "text": "Especially family politics.", + "start": 5171.72, + "end": 5172.82, + "words": [ + { + "word": " Especially", + "start": 5171.72, + "end": 5171.98, + "probability": 0.9990234375 + }, + { + "word": " family", + "start": 5171.98, + "end": 5172.36, + "probability": 1.0 + }, + { + "word": " politics.", + "start": 5172.36, + "end": 5172.82, + "probability": 1.0 + } + ] + }, + { + "id": 2260, + "text": "Yeah, and I shouldn't, you know,", + "start": 5173.12, + "end": 5175.06, + "words": [ + { + "word": " Yeah,", + "start": 5173.12, + "end": 5173.6, + "probability": 0.99609375 + }, + { + "word": " and", + "start": 5173.66, + "end": 5173.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 5173.84, + "end": 5174.3, + "probability": 1.0 + }, + { + "word": " shouldn't,", + "start": 5174.3, + "end": 5174.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 5174.84, + "end": 5174.96, + "probability": 1.0 + }, + { + "word": " know,", + "start": 5174.96, + "end": 5175.06, + "probability": 1.0 + } + ] + }, + { + "id": 2261, + "text": "the job gets done very well.", + "start": 5175.14, + "end": 5176.92, + "words": [ + { + "word": " the", + "start": 5175.14, + "end": 5175.88, + "probability": 0.99951171875 + }, + { + "word": " job", + "start": 5175.88, + "end": 5176.12, + "probability": 1.0 + }, + { + "word": " gets", + "start": 5176.12, + "end": 5176.3, + "probability": 1.0 + }, + { + "word": " done", + "start": 5176.3, + "end": 5176.48, + "probability": 1.0 + }, + { + "word": " very", + "start": 5176.48, + "end": 5176.7, + "probability": 1.0 + }, + { + "word": " well.", + "start": 5176.7, + "end": 5176.92, + "probability": 1.0 + } + ] + }, + { + "id": 2262, + "text": "Good.", + "start": 5178.200000000001, + "end": 5178.68, + "words": [ + { + "word": " Good.", + "start": 5178.200000000001, + "end": 5178.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 2263, + "text": "Good recovery, man.", + "start": 5179.56, + "end": 5180.58, + "words": [ + { + "word": " Good", + "start": 5179.56, + "end": 5179.92, + "probability": 0.95166015625 + }, + { + "word": " recovery,", + "start": 5179.92, + "end": 5180.28, + "probability": 0.99853515625 + }, + { + "word": " man.", + "start": 5180.46, + "end": 5180.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2264, + "text": "Yeah.", + "start": 5180.68, + "end": 5180.8, + "words": [ + { + "word": " Yeah.", + "start": 5180.68, + "end": 5180.8, + "probability": 0.77001953125 + } + ] + }, + { + "id": 2265, + "text": "I'm going to take this part of the podcast out", + "start": 5181.26, + "end": 5184.7, + "words": [ + { + "word": " I'm", + "start": 5181.26, + "end": 5181.62, + "probability": 0.97802734375 + }, + { + "word": " going", + "start": 5181.62, + "end": 5181.66, + "probability": 0.9892578125 + }, + { + "word": " to", + "start": 5181.66, + "end": 5182.0, + "probability": 1.0 + }, + { + "word": " take", + "start": 5182.0, + "end": 5182.44, + "probability": 0.9169921875 + }, + { + "word": " this", + "start": 5182.44, + "end": 5183.26, + "probability": 1.0 + }, + { + "word": " part", + "start": 5183.26, + "end": 5183.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 5183.48, + "end": 5183.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 5183.66, + "end": 5183.74, + "probability": 1.0 + }, + { + "word": " podcast", + "start": 5183.74, + "end": 5184.28, + "probability": 1.0 + }, + { + "word": " out", + "start": 5184.28, + "end": 5184.7, + "probability": 1.0 + } + ] + }, + { + "id": 2266, + "text": "and then I'm going to send it to my mom.", + "start": 5184.7, + "end": 5186.06, + "words": [ + { + "word": " and", + "start": 5184.7, + "end": 5184.96, + "probability": 0.341796875 + }, + { + "word": " then", + "start": 5184.96, + "end": 5185.1, + "probability": 0.99462890625 + }, + { + "word": " I'm", + "start": 5185.1, + "end": 5185.26, + "probability": 1.0 + }, + { + "word": " going", + "start": 5185.26, + "end": 5185.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 5185.3, + "end": 5185.32, + "probability": 1.0 + }, + { + "word": " send", + "start": 5185.32, + "end": 5185.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 5185.52, + "end": 5185.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 5185.62, + "end": 5185.72, + "probability": 1.0 + }, + { + "word": " my", + "start": 5185.72, + "end": 5185.82, + "probability": 1.0 + }, + { + "word": " mom.", + "start": 5185.82, + "end": 5186.06, + "probability": 1.0 + } + ] + }, + { + "id": 2267, + "text": "Or you could not do that.", + "start": 5186.32, + "end": 5187.58, + "words": [ + { + "word": " Or", + "start": 5186.32, + "end": 5186.68, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5186.68, + "end": 5186.82, + "probability": 1.0 + }, + { + "word": " could", + "start": 5186.82, + "end": 5187.0, + "probability": 1.0 + }, + { + "word": " not", + "start": 5187.0, + "end": 5187.26, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 5187.26, + "end": 5187.46, + "probability": 0.72998046875 + }, + { + "word": " that.", + "start": 5187.46, + "end": 5187.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2268, + "text": "So, yeah.", + "start": 5190.040000000001, + "end": 5190.76, + "words": [ + { + "word": " So,", + "start": 5190.040000000001, + "end": 5190.400000000001, + "probability": 0.5576171875 + }, + { + "word": " yeah.", + "start": 5190.400000000001, + "end": 5190.76, + "probability": 0.9794921875 + } + ] + }, + { + "id": 2269, + "text": "You could just take this part of the podcast out, actually.", + "start": 5190.76, + "end": 5192.82, + "words": [ + { + "word": " You", + "start": 5190.76, + "end": 5190.84, + "probability": 0.99462890625 + }, + { + "word": " could", + "start": 5190.84, + "end": 5190.9, + "probability": 0.64013671875 + }, + { + "word": " just", + "start": 5190.9, + "end": 5191.08, + "probability": 1.0 + }, + { + "word": " take", + "start": 5191.08, + "end": 5191.24, + "probability": 1.0 + }, + { + "word": " this", + "start": 5191.24, + "end": 5191.4, + "probability": 1.0 + }, + { + "word": " part", + "start": 5191.4, + "end": 5191.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 5191.56, + "end": 5191.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 5191.7, + "end": 5191.72, + "probability": 1.0 + }, + { + "word": " podcast", + "start": 5191.72, + "end": 5192.02, + "probability": 1.0 + }, + { + "word": " out,", + "start": 5192.02, + "end": 5192.36, + "probability": 1.0 + }, + { + "word": " actually.", + "start": 5192.44, + "end": 5192.82, + "probability": 1.0 + } + ] + }, + { + "id": 2270, + "text": "There we go.", + "start": 5192.9, + "end": 5193.44, + "words": [ + { + "word": " There", + "start": 5192.9, + "end": 5193.06, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 5193.06, + "end": 5193.32, + "probability": 1.0 + }, + { + "word": " go.", + "start": 5193.32, + "end": 5193.44, + "probability": 1.0 + } + ] + }, + { + "id": 2271, + "text": "So, yeah, Desert Pro Commercial Cleaners,", + "start": 5193.54, + "end": 5195.42, + "words": [ + { + "word": " So,", + "start": 5193.54, + "end": 5193.82, + "probability": 0.99853515625 + }, + { + "word": " yeah,", + "start": 5193.9, + "end": 5194.1, + "probability": 1.0 + }, + { + "word": " Desert", + "start": 5194.12, + "end": 5194.4, + "probability": 0.998046875 + }, + { + "word": " Pro", + "start": 5194.4, + "end": 5194.58, + "probability": 0.9755859375 + }, + { + "word": " Commercial", + "start": 5194.58, + "end": 5194.92, + "probability": 0.9111328125 + }, + { + "word": " Cleaners,", + "start": 5194.92, + "end": 5195.42, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2272, + "text": "you can visit their website.", + "start": 5195.52, + "end": 5196.78, + "words": [ + { + "word": " you", + "start": 5195.52, + "end": 5195.92, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5195.92, + "end": 5196.1, + "probability": 1.0 + }, + { + "word": " visit", + "start": 5196.1, + "end": 5196.3, + "probability": 1.0 + }, + { + "word": " their", + "start": 5196.3, + "end": 5196.46, + "probability": 1.0 + }, + { + "word": " website.", + "start": 5196.46, + "end": 5196.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2273, + "text": "You can check them out.", + "start": 5196.88, + "end": 5197.82, + "words": [ + { + "word": " You", + "start": 5196.88, + "end": 5197.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 5197.14, + "end": 5197.26, + "probability": 1.0 + }, + { + "word": " check", + "start": 5197.26, + "end": 5197.48, + "probability": 1.0 + }, + { + "word": " them", + "start": 5197.48, + "end": 5197.66, + "probability": 1.0 + }, + { + "word": " out.", + "start": 5197.66, + "end": 5197.82, + "probability": 1.0 + } + ] + }, + { + "id": 2274, + "text": "It'll be linked in the show notes.", + "start": 5197.88, + "end": 5199.36, + "words": [ + { + "word": " It'll", + "start": 5197.88, + "end": 5198.06, + "probability": 0.90380859375 + }, + { + "word": " be", + "start": 5198.06, + "end": 5198.18, + "probability": 1.0 + }, + { + "word": " linked", + "start": 5198.18, + "end": 5198.5, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 5198.5, + "end": 5198.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 5198.76, + "end": 5198.9, + "probability": 1.0 + }, + { + "word": " show", + "start": 5198.9, + "end": 5199.18, + "probability": 1.0 + }, + { + "word": " notes.", + "start": 5199.18, + "end": 5199.36, + "probability": 1.0 + } + ] + }, + { + "id": 2275, + "text": "And we really appreciate them supporting us on Patreon.", + "start": 5199.780000000001, + "end": 5202.56, + "words": [ + { + "word": " And", + "start": 5199.780000000001, + "end": 5200.14, + "probability": 0.99609375 + }, + { + "word": " we", + "start": 5200.14, + "end": 5200.32, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 5200.32, + "end": 5200.62, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5200.62, + "end": 5201.06, + "probability": 1.0 + }, + { + "word": " them", + "start": 5201.06, + "end": 5201.32, + "probability": 1.0 + }, + { + "word": " supporting", + "start": 5201.32, + "end": 5201.82, + "probability": 0.99755859375 + }, + { + "word": " us", + "start": 5201.82, + "end": 5202.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 5202.12, + "end": 5202.22, + "probability": 1.0 + }, + { + "word": " Patreon.", + "start": 5202.22, + "end": 5202.56, + "probability": 1.0 + } + ] + }, + { + "id": 2276, + "text": "They do a great job of cleaning Harrison", + "start": 5202.74, + "end": 5204.16, + "words": [ + { + "word": " They", + "start": 5202.74, + "end": 5202.9, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 5202.9, + "end": 5203.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 5203.0, + "end": 5203.1, + "probability": 1.0 + }, + { + "word": " great", + "start": 5203.1, + "end": 5203.22, + "probability": 1.0 + }, + { + "word": " job", + "start": 5203.22, + "end": 5203.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 5203.38, + "end": 5203.48, + "probability": 0.93603515625 + }, + { + "word": " cleaning", + "start": 5203.48, + "end": 5203.64, + "probability": 0.99951171875 + }, + { + "word": " Harrison", + "start": 5203.64, + "end": 5204.16, + "probability": 0.9443359375 + } + ] + }, + { + "id": 2277, + "text": "and it's just lovely.", + "start": 5204.16, + "end": 5206.46, + "words": [ + { + "word": " and", + "start": 5204.16, + "end": 5204.74, + "probability": 0.2342529296875 + }, + { + "word": " it's", + "start": 5204.74, + "end": 5205.72, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 5205.72, + "end": 5206.22, + "probability": 0.98095703125 + }, + { + "word": " lovely.", + "start": 5206.22, + "end": 5206.46, + "probability": 0.96240234375 + } + ] + }, + { + "id": 2278, + "text": "They're very, very nice people to deal with.", + "start": 5206.54, + "end": 5208.06, + "words": [ + { + "word": " They're", + "start": 5206.54, + "end": 5206.64, + "probability": 0.9990234375 + }, + { + "word": " very,", + "start": 5206.64, + "end": 5206.9, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 5207.02, + "end": 5207.18, + "probability": 1.0 + }, + { + "word": " nice", + "start": 5207.18, + "end": 5207.4, + "probability": 1.0 + }, + { + "word": " people", + "start": 5207.4, + "end": 5207.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 5207.62, + "end": 5207.76, + "probability": 1.0 + }, + { + "word": " deal", + "start": 5207.76, + "end": 5207.92, + "probability": 1.0 + }, + { + "word": " with.", + "start": 5207.92, + "end": 5208.06, + "probability": 1.0 + } + ] + }, + { + "id": 2279, + "text": "Especially because...", + "start": 5208.14, + "end": 5208.82, + "words": [ + { + "word": " Especially", + "start": 5208.14, + "end": 5208.46, + "probability": 0.99853515625 + }, + { + "word": " because...", + "start": 5208.46, + "end": 5208.82, + "probability": 0.587890625 + } + ] + }, + { + "id": 2280, + "text": "You know, when I get to go blow things up later,", + "start": 5209.12, + "end": 5210.9, + "words": [ + { + "word": " You", + "start": 5209.12, + "end": 5209.32, + "probability": 0.093017578125 + }, + { + "word": " know,", + "start": 5209.32, + "end": 5209.48, + "probability": 0.990234375 + }, + { + "word": " when", + "start": 5209.52, + "end": 5209.76, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 5209.76, + "end": 5209.84, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 5209.84, + "end": 5209.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 5209.94, + "end": 5210.04, + "probability": 0.99658203125 + }, + { + "word": " go", + "start": 5210.04, + "end": 5210.14, + "probability": 0.99609375 + }, + { + "word": " blow", + "start": 5210.14, + "end": 5210.3, + "probability": 0.98291015625 + }, + { + "word": " things", + "start": 5210.3, + "end": 5210.5, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 5210.5, + "end": 5210.66, + "probability": 1.0 + }, + { + "word": " later,", + "start": 5210.66, + "end": 5210.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2281, + "text": "that's in large part thanks to them.", + "start": 5211.02, + "end": 5212.58, + "words": [ + { + "word": " that's", + "start": 5211.02, + "end": 5211.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 5211.38, + "end": 5211.46, + "probability": 0.99755859375 + }, + { + "word": " large", + "start": 5211.46, + "end": 5211.72, + "probability": 1.0 + }, + { + "word": " part", + "start": 5211.72, + "end": 5211.9, + "probability": 1.0 + }, + { + "word": " thanks", + "start": 5211.9, + "end": 5212.14, + "probability": 0.8310546875 + }, + { + "word": " to", + "start": 5212.14, + "end": 5212.4, + "probability": 1.0 + }, + { + "word": " them.", + "start": 5212.4, + "end": 5212.58, + "probability": 1.0 + } + ] + }, + { + "id": 2282, + "text": "Yeah, and I don't get to, you know,", + "start": 5212.7, + "end": 5215.14, + "words": [ + { + "word": " Yeah,", + "start": 5212.7, + "end": 5213.0, + "probability": 0.60302734375 + }, + { + "word": " and", + "start": 5213.06, + "end": 5213.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 5213.2, + "end": 5213.34, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5213.34, + "end": 5213.9, + "probability": 0.98974609375 + }, + { + "word": " get", + "start": 5213.9, + "end": 5213.98, + "probability": 1.0 + }, + { + "word": " to,", + "start": 5213.98, + "end": 5214.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 5214.2, + "end": 5215.0, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 5215.0, + "end": 5215.14, + "probability": 1.0 + } + ] + }, + { + "id": 2283, + "text": "I don't get to see those guys", + "start": 5215.14, + "end": 5216.66, + "words": [ + { + "word": " I", + "start": 5215.14, + "end": 5215.2, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 5215.2, + "end": 5215.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 5215.36, + "end": 5215.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 5215.44, + "end": 5215.6, + "probability": 1.0 + }, + { + "word": " see", + "start": 5215.6, + "end": 5216.12, + "probability": 1.0 + }, + { + "word": " those", + "start": 5216.12, + "end": 5216.42, + "probability": 1.0 + }, + { + "word": " guys", + "start": 5216.42, + "end": 5216.66, + "probability": 1.0 + } + ] + }, + { + "id": 2284, + "text": "other than on the security cameras at night", + "start": 5216.66, + "end": 5218.5, + "words": [ + { + "word": " other", + "start": 5216.66, + "end": 5217.0, + "probability": 0.978515625 + }, + { + "word": " than", + "start": 5217.0, + "end": 5217.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 5217.22, + "end": 5217.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 5217.4, + "end": 5217.48, + "probability": 0.42626953125 + }, + { + "word": " security", + "start": 5217.48, + "end": 5217.72, + "probability": 1.0 + }, + { + "word": " cameras", + "start": 5217.72, + "end": 5218.14, + "probability": 1.0 + }, + { + "word": " at", + "start": 5218.14, + "end": 5218.32, + "probability": 1.0 + }, + { + "word": " night", + "start": 5218.32, + "end": 5218.5, + "probability": 1.0 + } + ] + }, + { + "id": 2285, + "text": "when they're in there cleaning.", + "start": 5218.5, + "end": 5219.2, + "words": [ + { + "word": " when", + "start": 5218.5, + "end": 5218.66, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 5218.66, + "end": 5218.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 5218.82, + "end": 5218.84, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 5218.84, + "end": 5218.94, + "probability": 0.452880859375 + }, + { + "word": " cleaning.", + "start": 5218.94, + "end": 5219.2, + "probability": 1.0 + } + ] + }, + { + "id": 2286, + "text": "But they seem to be doing a great job.", + "start": 5220.320000000001, + "end": 5223.26, + "words": [ + { + "word": " But", + "start": 5220.320000000001, + "end": 5220.64, + "probability": 0.923828125 + }, + { + "word": " they", + "start": 5220.64, + "end": 5220.96, + "probability": 0.99169921875 + }, + { + "word": " seem", + "start": 5220.96, + "end": 5221.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 5221.24, + "end": 5221.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 5221.3, + "end": 5221.42, + "probability": 1.0 + }, + { + "word": " doing", + "start": 5221.42, + "end": 5222.2, + "probability": 0.9384765625 + }, + { + "word": " a", + "start": 5222.2, + "end": 5222.6, + "probability": 1.0 + }, + { + "word": " great", + "start": 5222.6, + "end": 5222.96, + "probability": 1.0 + }, + { + "word": " job.", + "start": 5222.96, + "end": 5223.26, + "probability": 1.0 + } + ] + }, + { + "id": 2287, + "text": "And every time I go over there,", + "start": 5223.5, + "end": 5224.98, + "words": [ + { + "word": " And", + "start": 5223.5, + "end": 5223.76, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 5223.76, + "end": 5224.34, + "probability": 1.0 + }, + { + "word": " time", + "start": 5224.34, + "end": 5224.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 5224.5, + "end": 5224.6, + "probability": 1.0 + }, + { + "word": " go", + "start": 5224.6, + "end": 5224.7, + "probability": 1.0 + }, + { + "word": " over", + "start": 5224.7, + "end": 5224.8, + "probability": 1.0 + }, + { + "word": " there,", + "start": 5224.8, + "end": 5224.98, + "probability": 1.0 + } + ] + }, + { + "id": 2288, + "text": "the place is clean.", + "start": 5225.04, + "end": 5225.68, + "words": [ + { + "word": " the", + "start": 5225.04, + "end": 5225.16, + "probability": 1.0 + }, + { + "word": " place", + "start": 5225.16, + "end": 5225.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 5225.38, + "end": 5225.48, + "probability": 1.0 + }, + { + "word": " clean.", + "start": 5225.48, + "end": 5225.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 2289, + "text": "So, that's good.", + "start": 5225.78, + "end": 5226.56, + "words": [ + { + "word": " So,", + "start": 5225.78, + "end": 5226.04, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 5226.04, + "end": 5226.42, + "probability": 1.0 + }, + { + "word": " good.", + "start": 5226.42, + "end": 5226.56, + "probability": 1.0 + } + ] + }, + { + "id": 2290, + "text": "That's what I like.", + "start": 5226.66, + "end": 5227.26, + "words": [ + { + "word": " That's", + "start": 5226.66, + "end": 5226.9, + "probability": 1.0 + }, + { + "word": " what", + "start": 5226.9, + "end": 5226.98, + "probability": 1.0 + }, + { + "word": " I", + "start": 5226.98, + "end": 5227.06, + "probability": 1.0 + }, + { + "word": " like.", + "start": 5227.06, + "end": 5227.26, + "probability": 1.0 + } + ] + }, + { + "id": 2291, + "text": "So, you can be a Patreon sponsor, too.", + "start": 5228.12, + "end": 5229.94, + "words": [ + { + "word": " So,", + "start": 5228.12, + "end": 5228.44, + "probability": 0.78759765625 + }, + { + "word": " you", + "start": 5228.48, + "end": 5228.76, + "probability": 1.0 + }, + { + "word": " can", + "start": 5228.76, + "end": 5228.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 5228.92, + "end": 5229.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 5229.02, + "end": 5229.14, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 5229.14, + "end": 5229.36, + "probability": 0.99365234375 + }, + { + "word": " sponsor,", + "start": 5229.36, + "end": 5229.6, + "probability": 0.99853515625 + }, + { + "word": " too.", + "start": 5229.78, + "end": 5229.94, + "probability": 1.0 + } + ] + }, + { + "id": 2292, + "text": "Yeah, and if you want to be able to help us out,", + "start": 5230.2, + "end": 5231.82, + "words": [ + { + "word": " Yeah,", + "start": 5230.2, + "end": 5230.52, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 5230.54, + "end": 5230.62, + "probability": 1.0 + }, + { + "word": " if", + "start": 5230.62, + "end": 5230.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 5230.74, + "end": 5230.86, + "probability": 1.0 + }, + { + "word": " want", + "start": 5230.86, + "end": 5231.0, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5231.0, + "end": 5231.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 5231.08, + "end": 5231.18, + "probability": 1.0 + }, + { + "word": " able", + "start": 5231.18, + "end": 5231.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 5231.28, + "end": 5231.4, + "probability": 1.0 + }, + { + "word": " help", + "start": 5231.4, + "end": 5231.54, + "probability": 1.0 + }, + { + "word": " us", + "start": 5231.54, + "end": 5231.66, + "probability": 1.0 + }, + { + "word": " out,", + "start": 5231.66, + "end": 5231.82, + "probability": 1.0 + } + ] + }, + { + "id": 2293, + "text": "you can go ahead and support us on Patreon.", + "start": 5231.86, + "end": 5233.48, + "words": [ + { + "word": " you", + "start": 5231.86, + "end": 5231.92, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5231.92, + "end": 5232.04, + "probability": 1.0 + }, + { + "word": " go", + "start": 5232.04, + "end": 5232.12, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 5232.12, + "end": 5232.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 5232.24, + "end": 5232.34, + "probability": 1.0 + }, + { + "word": " support", + "start": 5232.34, + "end": 5232.98, + "probability": 1.0 + }, + { + "word": " us", + "start": 5232.98, + "end": 5233.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 5233.2, + "end": 5233.26, + "probability": 1.0 + }, + { + "word": " Patreon.", + "start": 5233.26, + "end": 5233.48, + "probability": 1.0 + } + ] + }, + { + "id": 2294, + "text": "Go to gurushow.com", + "start": 5233.54, + "end": 5234.78, + "words": [ + { + "word": " Go", + "start": 5233.54, + "end": 5233.66, + "probability": 0.9892578125 + }, + { + "word": " to", + "start": 5233.66, + "end": 5233.74, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 5233.74, + "end": 5234.16, + "probability": 0.8857421875 + }, + { + "word": ".com", + "start": 5234.16, + "end": 5234.78, + "probability": 1.0 + } + ] + }, + { + "id": 2295, + "text": "and there's a link, a Patreon link", + "start": 5234.78, + "end": 5236.88, + "words": [ + { + "word": " and", + "start": 5234.78, + "end": 5235.04, + "probability": 0.2257080078125 + }, + { + "word": " there's", + "start": 5235.04, + "end": 5235.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 5235.4, + "end": 5235.52, + "probability": 1.0 + }, + { + "word": " link,", + "start": 5235.52, + "end": 5236.02, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 5236.14, + "end": 5236.24, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 5236.24, + "end": 5236.56, + "probability": 1.0 + }, + { + "word": " link", + "start": 5236.56, + "end": 5236.88, + "probability": 1.0 + } + ] + }, + { + "id": 2296, + "text": "that you can go to to support us", + "start": 5236.88, + "end": 5238.96, + "words": [ + { + "word": " that", + "start": 5236.88, + "end": 5237.26, + "probability": 0.79736328125 + }, + { + "word": " you", + "start": 5237.26, + "end": 5237.36, + "probability": 1.0 + }, + { + "word": " can", + "start": 5237.36, + "end": 5237.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 5237.48, + "end": 5237.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 5237.62, + "end": 5237.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 5237.82, + "end": 5238.22, + "probability": 0.736328125 + }, + { + "word": " support", + "start": 5238.22, + "end": 5238.82, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 5238.82, + "end": 5238.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2297, + "text": "with as little as a dollar a month.", + "start": 5238.96, + "end": 5240.26, + "words": [ + { + "word": " with", + "start": 5238.96, + "end": 5239.1, + "probability": 0.9638671875 + }, + { + "word": " as", + "start": 5239.1, + "end": 5239.22, + "probability": 0.99853515625 + }, + { + "word": " little", + "start": 5239.22, + "end": 5239.38, + "probability": 1.0 + }, + { + "word": " as", + "start": 5239.38, + "end": 5239.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 5239.54, + "end": 5239.62, + "probability": 0.78759765625 + }, + { + "word": " dollar", + "start": 5239.62, + "end": 5239.88, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 5239.88, + "end": 5240.06, + "probability": 1.0 + }, + { + "word": " month.", + "start": 5240.06, + "end": 5240.26, + "probability": 1.0 + } + ] + }, + { + "id": 2298, + "text": "You find more in your couch cushions.", + "start": 5240.6, + "end": 5243.32, + "words": [ + { + "word": " You", + "start": 5240.6, + "end": 5240.96, + "probability": 0.859375 + }, + { + "word": " find", + "start": 5240.96, + "end": 5241.98, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 5241.98, + "end": 5242.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 5242.36, + "end": 5242.5, + "probability": 0.7734375 + }, + { + "word": " your", + "start": 5242.5, + "end": 5242.64, + "probability": 1.0 + }, + { + "word": " couch", + "start": 5242.64, + "end": 5242.88, + "probability": 0.9990234375 + }, + { + "word": " cushions.", + "start": 5242.88, + "end": 5243.32, + "probability": 1.0 + } + ] + }, + { + "id": 2299, + "text": "And if you do that,", + "start": 5243.42, + "end": 5244.32, + "words": [ + { + "word": " And", + "start": 5243.42, + "end": 5243.62, + "probability": 0.9677734375 + }, + { + "word": " if", + "start": 5243.62, + "end": 5243.74, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5243.74, + "end": 5243.86, + "probability": 1.0 + }, + { + "word": " do", + "start": 5243.86, + "end": 5244.08, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 5244.08, + "end": 5244.32, + "probability": 1.0 + } + ] + }, + { + "id": 2300, + "text": "if you contribute that one dollar a month,", + "start": 5244.38, + "end": 5245.76, + "words": [ + { + "word": " if", + "start": 5244.38, + "end": 5244.54, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5244.54, + "end": 5244.62, + "probability": 1.0 + }, + { + "word": " contribute", + "start": 5244.62, + "end": 5244.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5244.92, + "end": 5245.14, + "probability": 1.0 + }, + { + "word": " one", + "start": 5245.14, + "end": 5245.32, + "probability": 0.359375 + }, + { + "word": " dollar", + "start": 5245.32, + "end": 5245.5, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5245.5, + "end": 5245.64, + "probability": 1.0 + }, + { + "word": " month,", + "start": 5245.64, + "end": 5245.76, + "probability": 1.0 + } + ] + }, + { + "id": 2301, + "text": "you will get access to this awesome video", + "start": 5245.86, + "end": 5248.28, + "words": [ + { + "word": " you", + "start": 5245.86, + "end": 5245.94, + "probability": 0.99560546875 + }, + { + "word": " will", + "start": 5245.94, + "end": 5246.06, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 5246.06, + "end": 5246.18, + "probability": 1.0 + }, + { + "word": " access", + "start": 5246.18, + "end": 5246.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 5246.44, + "end": 5246.82, + "probability": 1.0 + }, + { + "word": " this", + "start": 5246.82, + "end": 5247.66, + "probability": 0.9990234375 + }, + { + "word": " awesome", + "start": 5247.66, + "end": 5247.92, + "probability": 1.0 + }, + { + "word": " video", + "start": 5247.92, + "end": 5248.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2302, + "text": "that we've been planning for a while", + "start": 5248.28, + "end": 5249.44, + "words": [ + { + "word": " that", + "start": 5248.28, + "end": 5248.58, + "probability": 0.9990234375 + }, + { + "word": " we've", + "start": 5248.58, + "end": 5248.74, + "probability": 0.998046875 + }, + { + "word": " been", + "start": 5248.74, + "end": 5248.82, + "probability": 0.99951171875 + }, + { + "word": " planning", + "start": 5248.82, + "end": 5249.04, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 5249.04, + "end": 5249.2, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 5249.2, + "end": 5249.3, + "probability": 1.0 + }, + { + "word": " while", + "start": 5249.3, + "end": 5249.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2303, + "text": "as well as many others", + "start": 5249.44, + "end": 5250.46, + "words": [ + { + "word": " as", + "start": 5249.44, + "end": 5249.64, + "probability": 0.54150390625 + }, + { + "word": " well", + "start": 5249.64, + "end": 5249.78, + "probability": 1.0 + }, + { + "word": " as", + "start": 5249.78, + "end": 5249.94, + "probability": 1.0 + }, + { + "word": " many", + "start": 5249.94, + "end": 5250.14, + "probability": 0.99951171875 + }, + { + "word": " others", + "start": 5250.14, + "end": 5250.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2304, + "text": "that we have already started planning", + "start": 5250.46, + "end": 5251.94, + "words": [ + { + "word": " that", + "start": 5250.46, + "end": 5250.7, + "probability": 0.9970703125 + }, + { + "word": " we", + "start": 5250.7, + "end": 5250.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 5250.82, + "end": 5250.96, + "probability": 0.99951171875 + }, + { + "word": " already", + "start": 5250.96, + "end": 5251.34, + "probability": 0.99951171875 + }, + { + "word": " started", + "start": 5251.34, + "end": 5251.62, + "probability": 0.99951171875 + }, + { + "word": " planning", + "start": 5251.62, + "end": 5251.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2305, + "text": "and are going to do.", + "start": 5251.94, + "end": 5252.9, + "words": [ + { + "word": " and", + "start": 5251.94, + "end": 5252.22, + "probability": 0.9970703125 + }, + { + "word": " are", + "start": 5252.22, + "end": 5252.34, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 5252.34, + "end": 5252.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5252.52, + "end": 5252.72, + "probability": 1.0 + }, + { + "word": " do.", + "start": 5252.72, + "end": 5252.9, + "probability": 1.0 + } + ] + }, + { + "id": 2306, + "text": "Because it turns out this stuff's really fun", + "start": 5253.280000000001, + "end": 5254.74, + "words": [ + { + "word": " Because", + "start": 5253.280000000001, + "end": 5253.64, + "probability": 0.9912109375 + }, + { + "word": " it", + "start": 5253.64, + "end": 5253.8, + "probability": 0.9990234375 + }, + { + "word": " turns", + "start": 5253.8, + "end": 5253.94, + "probability": 1.0 + }, + { + "word": " out", + "start": 5253.94, + "end": 5254.08, + "probability": 1.0 + }, + { + "word": " this", + "start": 5254.08, + "end": 5254.2, + "probability": 0.99755859375 + }, + { + "word": " stuff's", + "start": 5254.2, + "end": 5254.4, + "probability": 0.8896484375 + }, + { + "word": " really", + "start": 5254.4, + "end": 5254.54, + "probability": 1.0 + }, + { + "word": " fun", + "start": 5254.54, + "end": 5254.74, + "probability": 1.0 + } + ] + }, + { + "id": 2307, + "text": "and we really like doing it.", + "start": 5254.74, + "end": 5255.92, + "words": [ + { + "word": " and", + "start": 5254.74, + "end": 5255.04, + "probability": 0.84033203125 + }, + { + "word": " we", + "start": 5255.04, + "end": 5255.2, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 5255.2, + "end": 5255.36, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 5255.36, + "end": 5255.58, + "probability": 1.0 + }, + { + "word": " doing", + "start": 5255.58, + "end": 5255.72, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5255.72, + "end": 5255.92, + "probability": 1.0 + } + ] + }, + { + "id": 2308, + "text": "Right.", + "start": 5256.22, + "end": 5256.58, + "words": [ + { + "word": " Right.", + "start": 5256.22, + "end": 5256.58, + "probability": 0.91064453125 + } + ] + }, + { + "id": 2309, + "text": "The one I'm looking forward to", + "start": 5256.7, + "end": 5257.68, + "words": [ + { + "word": " The", + "start": 5256.7, + "end": 5256.8, + "probability": 0.97021484375 + }, + { + "word": " one", + "start": 5256.8, + "end": 5256.92, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 5256.92, + "end": 5257.08, + "probability": 1.0 + }, + { + "word": " looking", + "start": 5257.08, + "end": 5257.22, + "probability": 0.99951171875 + }, + { + "word": " forward", + "start": 5257.22, + "end": 5257.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 5257.46, + "end": 5257.68, + "probability": 1.0 + } + ] + }, + { + "id": 2310, + "text": "is the home automation project.", + "start": 5257.68, + "end": 5258.82, + "words": [ + { + "word": " is", + "start": 5257.68, + "end": 5257.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5257.86, + "end": 5258.0, + "probability": 0.99755859375 + }, + { + "word": " home", + "start": 5258.0, + "end": 5258.18, + "probability": 0.55810546875 + }, + { + "word": " automation", + "start": 5258.18, + "end": 5258.4, + "probability": 0.99951171875 + }, + { + "word": " project.", + "start": 5258.4, + "end": 5258.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2311, + "text": "That's going to be a lot of fun.", + "start": 5259.1, + "end": 5259.8, + "words": [ + { + "word": " That's", + "start": 5259.1, + "end": 5259.22, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 5259.22, + "end": 5259.32, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 5259.32, + "end": 5259.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 5259.38, + "end": 5259.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 5259.46, + "end": 5259.52, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5259.52, + "end": 5259.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 5259.6, + "end": 5259.66, + "probability": 1.0 + }, + { + "word": " fun.", + "start": 5259.66, + "end": 5259.8, + "probability": 1.0 + } + ] + }, + { + "id": 2312, + "text": "So, the recording studio is going to get fully automated", + "start": 5259.9, + "end": 5262.4, + "words": [ + { + "word": " So,", + "start": 5259.9, + "end": 5260.1, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 5260.12, + "end": 5260.18, + "probability": 0.9970703125 + }, + { + "word": " recording", + "start": 5260.18, + "end": 5260.46, + "probability": 0.99951171875 + }, + { + "word": " studio", + "start": 5260.46, + "end": 5260.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 5260.76, + "end": 5261.04, + "probability": 0.99560546875 + }, + { + "word": " going", + "start": 5261.04, + "end": 5261.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 5261.2, + "end": 5261.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 5261.36, + "end": 5261.56, + "probability": 0.998046875 + }, + { + "word": " fully", + "start": 5261.56, + "end": 5261.98, + "probability": 0.99951171875 + }, + { + "word": " automated", + "start": 5261.98, + "end": 5262.4, + "probability": 1.0 + } + ] + }, + { + "id": 2313, + "text": "so I can walk in the room and, you know,", + "start": 5262.4, + "end": 5266.16, + "words": [ + { + "word": " so", + "start": 5262.4, + "end": 5262.76, + "probability": 0.81396484375 + }, + { + "word": " I", + "start": 5262.76, + "end": 5262.92, + "probability": 1.0 + }, + { + "word": " can", + "start": 5262.92, + "end": 5263.08, + "probability": 1.0 + }, + { + "word": " walk", + "start": 5263.08, + "end": 5263.44, + "probability": 1.0 + }, + { + "word": " in", + "start": 5263.44, + "end": 5263.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 5263.6, + "end": 5263.68, + "probability": 1.0 + }, + { + "word": " room", + "start": 5263.68, + "end": 5263.92, + "probability": 1.0 + }, + { + "word": " and,", + "start": 5263.92, + "end": 5264.24, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5264.24, + "end": 5265.46, + "probability": 0.9853515625 + }, + { + "word": " know,", + "start": 5265.46, + "end": 5266.16, + "probability": 1.0 + } + ] + }, + { + "id": 2314, + "text": "just do whatever.", + "start": 5266.16, + "end": 5266.8, + "words": [ + { + "word": " just", + "start": 5266.16, + "end": 5266.42, + "probability": 0.73681640625 + }, + { + "word": " do", + "start": 5266.42, + "end": 5266.62, + "probability": 1.0 + }, + { + "word": " whatever.", + "start": 5266.62, + "end": 5266.8, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2315, + "text": "Star Trek style.", + "start": 5266.96, + "end": 5267.7, + "words": [ + { + "word": " Star", + "start": 5266.96, + "end": 5267.26, + "probability": 0.99169921875 + }, + { + "word": " Trek", + "start": 5267.26, + "end": 5267.46, + "probability": 1.0 + }, + { + "word": " style.", + "start": 5267.46, + "end": 5267.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2316, + "text": "Yeah.", + "start": 5267.92, + "end": 5268.22, + "words": [ + { + "word": " Yeah.", + "start": 5267.92, + "end": 5268.22, + "probability": 0.986328125 + } + ] + }, + { + "id": 2317, + "text": "And then we're going to show you the weaknesses.", + "start": 5268.96, + "end": 5270.54, + "words": [ + { + "word": " And", + "start": 5268.96, + "end": 5269.04, + "probability": 0.2939453125 + }, + { + "word": " then", + "start": 5269.04, + "end": 5269.3, + "probability": 0.98388671875 + }, + { + "word": " we're", + "start": 5269.3, + "end": 5269.56, + "probability": 0.982421875 + }, + { + "word": " going", + "start": 5269.56, + "end": 5269.62, + "probability": 0.98486328125 + }, + { + "word": " to", + "start": 5269.62, + "end": 5269.74, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 5269.74, + "end": 5269.9, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5269.9, + "end": 5270.06, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5270.06, + "end": 5270.18, + "probability": 0.9990234375 + }, + { + "word": " weaknesses.", + "start": 5270.18, + "end": 5270.54, + "probability": 0.998046875 + } + ] + }, + { + "id": 2318, + "text": "We're going to basically hack the system.", + "start": 5270.74, + "end": 5273.36, + "words": [ + { + "word": " We're", + "start": 5270.74, + "end": 5271.1, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 5271.1, + "end": 5271.2, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 5271.2, + "end": 5271.36, + "probability": 0.99755859375 + }, + { + "word": " basically", + "start": 5271.36, + "end": 5272.12, + "probability": 0.9716796875 + }, + { + "word": " hack", + "start": 5272.12, + "end": 5272.82, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5272.82, + "end": 5273.02, + "probability": 0.99951171875 + }, + { + "word": " system.", + "start": 5273.02, + "end": 5273.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2319, + "text": "See, I'm excited for that part", + "start": 5273.58, + "end": 5274.54, + "words": [ + { + "word": " See,", + "start": 5273.58, + "end": 5273.72, + "probability": 0.984375 + }, + { + "word": " I'm", + "start": 5273.74, + "end": 5273.84, + "probability": 1.0 + }, + { + "word": " excited", + "start": 5273.84, + "end": 5274.06, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 5274.06, + "end": 5274.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 5274.24, + "end": 5274.38, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 5274.38, + "end": 5274.54, + "probability": 1.0 + } + ] + }, + { + "id": 2320, + "text": "because this is my interest anyway.", + "start": 5274.54, + "end": 5275.84, + "words": [ + { + "word": " because", + "start": 5274.54, + "end": 5274.72, + "probability": 0.84716796875 + }, + { + "word": " this", + "start": 5274.72, + "end": 5274.9, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5274.9, + "end": 5275.06, + "probability": 1.0 + }, + { + "word": " my", + "start": 5275.06, + "end": 5275.3, + "probability": 0.99951171875 + }, + { + "word": " interest", + "start": 5275.3, + "end": 5275.56, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 5275.56, + "end": 5275.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2321, + "text": "So, go to Patreon.", + "start": 5276.1, + "end": 5277.84, + "words": [ + { + "word": " So,", + "start": 5276.1, + "end": 5276.46, + "probability": 0.50927734375 + }, + { + "word": " go", + "start": 5276.46, + "end": 5277.06, + "probability": 0.982421875 + }, + { + "word": " to", + "start": 5277.06, + "end": 5277.5, + "probability": 1.0 + }, + { + "word": " Patreon.", + "start": 5277.5, + "end": 5277.84, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2322, + "text": "Go to our website, gurushow.com.", + "start": 5278.0, + "end": 5279.8, + "words": [ + { + "word": " Go", + "start": 5278.0, + "end": 5278.26, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5278.26, + "end": 5278.34, + "probability": 1.0 + }, + { + "word": " our", + "start": 5278.34, + "end": 5278.76, + "probability": 0.99951171875 + }, + { + "word": " website,", + "start": 5278.76, + "end": 5279.04, + "probability": 0.99951171875 + }, + { + "word": " gurushow", + "start": 5279.14, + "end": 5279.46, + "probability": 0.81298828125 + }, + { + "word": ".com.", + "start": 5279.46, + "end": 5279.8, + "probability": 1.0 + } + ] + }, + { + "id": 2323, + "text": "Click the Patreon logo.", + "start": 5279.8, + "end": 5280.7, + "words": [ + { + "word": " Click", + "start": 5279.8, + "end": 5280.0, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5280.0, + "end": 5280.14, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 5280.14, + "end": 5280.4, + "probability": 1.0 + }, + { + "word": " logo.", + "start": 5280.4, + "end": 5280.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2324, + "text": "Get signed up for a dollar a month", + "start": 5280.82, + "end": 5282.58, + "words": [ + { + "word": " Get", + "start": 5280.82, + "end": 5281.14, + "probability": 0.998046875 + }, + { + "word": " signed", + "start": 5281.14, + "end": 5281.36, + "probability": 1.0 + }, + { + "word": " up", + "start": 5281.36, + "end": 5281.68, + "probability": 1.0 + }, + { + "word": " for", + "start": 5281.68, + "end": 5281.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 5281.88, + "end": 5281.98, + "probability": 0.77978515625 + }, + { + "word": " dollar", + "start": 5281.98, + "end": 5282.22, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5282.22, + "end": 5282.4, + "probability": 1.0 + }, + { + "word": " month", + "start": 5282.4, + "end": 5282.58, + "probability": 1.0 + } + ] + }, + { + "id": 2325, + "text": "and you will get access to all of this and more.", + "start": 5282.58, + "end": 5284.2, + "words": [ + { + "word": " and", + "start": 5282.58, + "end": 5282.78, + "probability": 0.34375 + }, + { + "word": " you", + "start": 5282.78, + "end": 5282.92, + "probability": 1.0 + }, + { + "word": " will", + "start": 5282.92, + "end": 5283.0, + "probability": 0.99609375 + }, + { + "word": " get", + "start": 5283.0, + "end": 5283.1, + "probability": 1.0 + }, + { + "word": " access", + "start": 5283.1, + "end": 5283.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 5283.3, + "end": 5283.48, + "probability": 1.0 + }, + { + "word": " all", + "start": 5283.48, + "end": 5283.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 5283.68, + "end": 5283.78, + "probability": 1.0 + }, + { + "word": " this", + "start": 5283.78, + "end": 5283.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 5283.92, + "end": 5284.04, + "probability": 1.0 + }, + { + "word": " more.", + "start": 5284.04, + "end": 5284.2, + "probability": 1.0 + } + ] + }, + { + "id": 2326, + "text": "Right.", + "start": 5284.700000000001, + "end": 5285.1, + "words": [ + { + "word": " Right.", + "start": 5284.700000000001, + "end": 5285.1, + "probability": 0.97119140625 + } + ] + }, + { + "id": 2327, + "text": "And if you're concerned about security,", + "start": 5285.14, + "end": 5286.8, + "words": [ + { + "word": " And", + "start": 5285.14, + "end": 5285.38, + "probability": 0.9970703125 + }, + { + "word": " if", + "start": 5285.38, + "end": 5285.8, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 5285.8, + "end": 5285.98, + "probability": 1.0 + }, + { + "word": " concerned", + "start": 5285.98, + "end": 5286.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 5286.3, + "end": 5286.48, + "probability": 1.0 + }, + { + "word": " security,", + "start": 5286.48, + "end": 5286.8, + "probability": 1.0 + } + ] + }, + { + "id": 2328, + "text": "if you want to make sure", + "start": 5287.06, + "end": 5287.66, + "words": [ + { + "word": " if", + "start": 5287.06, + "end": 5287.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5287.18, + "end": 5287.2, + "probability": 1.0 + }, + { + "word": " want", + "start": 5287.2, + "end": 5287.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 5287.34, + "end": 5287.42, + "probability": 1.0 + }, + { + "word": " make", + "start": 5287.42, + "end": 5287.5, + "probability": 1.0 + }, + { + "word": " sure", + "start": 5287.5, + "end": 5287.66, + "probability": 1.0 + } + ] + }, + { + "id": 2329, + "text": "that you're being a little bit safer online,", + "start": 5287.66, + "end": 5289.54, + "words": [ + { + "word": " that", + "start": 5287.66, + "end": 5287.8, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 5287.8, + "end": 5287.96, + "probability": 1.0 + }, + { + "word": " being", + "start": 5287.96, + "end": 5288.52, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5288.52, + "end": 5288.66, + "probability": 1.0 + }, + { + "word": " little", + "start": 5288.66, + "end": 5288.8, + "probability": 0.998046875 + }, + { + "word": " bit", + "start": 5288.8, + "end": 5288.92, + "probability": 0.99951171875 + }, + { + "word": " safer", + "start": 5288.92, + "end": 5289.22, + "probability": 1.0 + }, + { + "word": " online,", + "start": 5289.22, + "end": 5289.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2330, + "text": "get yourself involved with some VPN service,", + "start": 5289.64, + "end": 5292.06, + "words": [ + { + "word": " get", + "start": 5289.64, + "end": 5289.82, + "probability": 0.99560546875 + }, + { + "word": " yourself", + "start": 5289.82, + "end": 5290.12, + "probability": 1.0 + }, + { + "word": " involved", + "start": 5290.12, + "end": 5290.84, + "probability": 1.0 + }, + { + "word": " with", + "start": 5290.84, + "end": 5291.12, + "probability": 1.0 + }, + { + "word": " some", + "start": 5291.12, + "end": 5291.3, + "probability": 1.0 + }, + { + "word": " VPN", + "start": 5291.3, + "end": 5291.64, + "probability": 0.99951171875 + }, + { + "word": " service,", + "start": 5291.64, + "end": 5292.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2331, + "text": "you go to gurushow.com slash VPN", + "start": 5292.3, + "end": 5294.1, + "words": [ + { + "word": " you", + "start": 5292.3, + "end": 5292.66, + "probability": 0.99560546875 + }, + { + "word": " go", + "start": 5292.66, + "end": 5292.78, + "probability": 0.9501953125 + }, + { + "word": " to", + "start": 5292.78, + "end": 5292.86, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 5292.86, + "end": 5293.2, + "probability": 0.9990234375 + }, + { + "word": ".com", + "start": 5293.2, + "end": 5293.54, + "probability": 1.0 + }, + { + "word": " slash", + "start": 5293.54, + "end": 5293.74, + "probability": 0.787109375 + }, + { + "word": " VPN", + "start": 5293.74, + "end": 5294.1, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2332, + "text": "and you can be linked up with TunnelBear.", + "start": 5294.1, + "end": 5296.28, + "words": [ + { + "word": " and", + "start": 5294.1, + "end": 5294.64, + "probability": 0.98876953125 + }, + { + "word": " you", + "start": 5294.64, + "end": 5294.78, + "probability": 1.0 + }, + { + "word": " can", + "start": 5294.78, + "end": 5294.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 5294.92, + "end": 5295.12, + "probability": 1.0 + }, + { + "word": " linked", + "start": 5295.12, + "end": 5295.44, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 5295.44, + "end": 5295.64, + "probability": 1.0 + }, + { + "word": " with", + "start": 5295.64, + "end": 5295.78, + "probability": 1.0 + }, + { + "word": " TunnelBear.", + "start": 5295.78, + "end": 5296.28, + "probability": 0.990234375 + } + ] + }, + { + "id": 2333, + "text": "And that's the VPN service", + "start": 5296.54, + "end": 5298.64, + "words": [ + { + "word": " And", + "start": 5296.54, + "end": 5296.94, + "probability": 0.9951171875 + }, + { + "word": " that's", + "start": 5296.94, + "end": 5297.54, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5297.54, + "end": 5297.66, + "probability": 1.0 + }, + { + "word": " VPN", + "start": 5297.66, + "end": 5298.28, + "probability": 0.99951171875 + }, + { + "word": " service", + "start": 5298.28, + "end": 5298.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2334, + "text": "that we're recommending for everyone to use", + "start": 5298.64, + "end": 5300.24, + "words": [ + { + "word": " that", + "start": 5298.64, + "end": 5298.76, + "probability": 0.6162109375 + }, + { + "word": " we're", + "start": 5298.76, + "end": 5298.96, + "probability": 0.98388671875 + }, + { + "word": " recommending", + "start": 5298.96, + "end": 5299.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 5299.32, + "end": 5299.62, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 5299.62, + "end": 5299.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 5299.86, + "end": 5300.06, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 5300.06, + "end": 5300.24, + "probability": 1.0 + } + ] + }, + { + "id": 2335, + "text": "to keep yourself just a little bit safer online.", + "start": 5300.24, + "end": 5302.38, + "words": [ + { + "word": " to", + "start": 5300.24, + "end": 5300.48, + "probability": 0.99755859375 + }, + { + "word": " keep", + "start": 5300.48, + "end": 5300.84, + "probability": 0.99951171875 + }, + { + "word": " yourself", + "start": 5300.84, + "end": 5301.12, + "probability": 1.0 + }, + { + "word": " just", + "start": 5301.12, + "end": 5301.4, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 5301.4, + "end": 5301.52, + "probability": 1.0 + }, + { + "word": " little", + "start": 5301.52, + "end": 5301.62, + "probability": 1.0 + }, + { + "word": " bit", + "start": 5301.62, + "end": 5301.76, + "probability": 1.0 + }, + { + "word": " safer", + "start": 5301.76, + "end": 5302.06, + "probability": 1.0 + }, + { + "word": " online.", + "start": 5302.06, + "end": 5302.38, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2336, + "text": "Make sure that you can maintain some anonymity.", + "start": 5302.48, + "end": 5305.2, + "words": [ + { + "word": " Make", + "start": 5302.48, + "end": 5302.74, + "probability": 0.99560546875 + }, + { + "word": " sure", + "start": 5302.74, + "end": 5302.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 5302.94, + "end": 5303.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 5303.08, + "end": 5303.22, + "probability": 1.0 + }, + { + "word": " can", + "start": 5303.22, + "end": 5303.68, + "probability": 1.0 + }, + { + "word": " maintain", + "start": 5303.68, + "end": 5304.08, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 5304.08, + "end": 5304.48, + "probability": 1.0 + }, + { + "word": " anonymity.", + "start": 5304.48, + "end": 5305.2, + "probability": 1.0 + } + ] + }, + { + "id": 2337, + "text": "You can also visit us at 510 East Fort Lowell", + "start": 5305.3, + "end": 5307.48, + "words": [ + { + "word": " You", + "start": 5305.3, + "end": 5305.58, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5305.58, + "end": 5305.66, + "probability": 1.0 + }, + { + "word": " also", + "start": 5305.66, + "end": 5305.78, + "probability": 1.0 + }, + { + "word": " visit", + "start": 5305.78, + "end": 5306.02, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 5306.02, + "end": 5306.24, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 5306.24, + "end": 5306.3, + "probability": 0.99951171875 + }, + { + "word": " 510", + "start": 5306.3, + "end": 5306.66, + "probability": 0.99951171875 + }, + { + "word": " East", + "start": 5306.66, + "end": 5306.9, + "probability": 0.99951171875 + }, + { + "word": " Fort", + "start": 5306.9, + "end": 5307.16, + "probability": 0.826171875 + }, + { + "word": " Lowell", + "start": 5307.16, + "end": 5307.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 2338, + "text": "or 64 North Harrison in Tucson.", + "start": 5307.48, + "end": 5309.18, + "words": [ + { + "word": " or", + "start": 5307.48, + "end": 5307.62, + "probability": 0.99462890625 + }, + { + "word": " 64", + "start": 5307.62, + "end": 5307.98, + "probability": 0.99951171875 + }, + { + "word": " North", + "start": 5307.98, + "end": 5308.32, + "probability": 1.0 + }, + { + "word": " Harrison", + "start": 5308.32, + "end": 5308.62, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 5308.62, + "end": 5308.92, + "probability": 0.9990234375 + }, + { + "word": " Tucson.", + "start": 5308.92, + "end": 5309.18, + "probability": 1.0 + } + ] + }, + { + "id": 2339, + "text": "That way you can help us keep the show on the air", + "start": 5309.48, + "end": 5311.4, + "words": [ + { + "word": " That", + "start": 5309.48, + "end": 5309.84, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 5309.84, + "end": 5310.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 5310.0, + "end": 5310.1, + "probability": 0.90576171875 + }, + { + "word": " can", + "start": 5310.1, + "end": 5310.22, + "probability": 1.0 + }, + { + "word": " help", + "start": 5310.22, + "end": 5310.34, + "probability": 1.0 + }, + { + "word": " us", + "start": 5310.34, + "end": 5310.48, + "probability": 1.0 + }, + { + "word": " keep", + "start": 5310.48, + "end": 5310.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 5310.64, + "end": 5310.9, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 5310.9, + "end": 5311.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 5311.04, + "end": 5311.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 5311.16, + "end": 5311.26, + "probability": 1.0 + }, + { + "word": " air", + "start": 5311.26, + "end": 5311.4, + "probability": 1.0 + } + ] + }, + { + "id": 2340, + "text": "by, I don't know, supporting the business.", + "start": 5311.4, + "end": 5313.08, + "words": [ + { + "word": " by,", + "start": 5311.4, + "end": 5311.58, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 5311.7, + "end": 5311.94, + "probability": 1.0 + }, + { + "word": " don't", + "start": 5311.94, + "end": 5312.04, + "probability": 1.0 + }, + { + "word": " know,", + "start": 5312.04, + "end": 5312.14, + "probability": 1.0 + }, + { + "word": " supporting", + "start": 5312.2, + "end": 5312.6, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5312.6, + "end": 5312.86, + "probability": 1.0 + }, + { + "word": " business.", + "start": 5312.86, + "end": 5313.08, + "probability": 1.0 + } + ] + }, + { + "id": 2341, + "text": "Letting us fix your computers and all of that.", + "start": 5313.68, + "end": 5315.46, + "words": [ + { + "word": " Letting", + "start": 5313.68, + "end": 5314.04, + "probability": 0.998046875 + }, + { + "word": " us", + "start": 5314.04, + "end": 5314.1, + "probability": 1.0 + }, + { + "word": " fix", + "start": 5314.1, + "end": 5314.28, + "probability": 1.0 + }, + { + "word": " your", + "start": 5314.28, + "end": 5314.44, + "probability": 1.0 + }, + { + "word": " computers", + "start": 5314.44, + "end": 5314.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 5314.86, + "end": 5315.02, + "probability": 1.0 + }, + { + "word": " all", + "start": 5315.02, + "end": 5315.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 5315.14, + "end": 5315.26, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5315.26, + "end": 5315.46, + "probability": 1.0 + } + ] + }, + { + "id": 2342, + "text": "Because that's what we do all week.", + "start": 5315.66, + "end": 5316.98, + "words": [ + { + "word": " Because", + "start": 5315.66, + "end": 5316.02, + "probability": 0.994140625 + }, + { + "word": " that's", + "start": 5316.02, + "end": 5316.2, + "probability": 1.0 + }, + { + "word": " what", + "start": 5316.2, + "end": 5316.22, + "probability": 1.0 + }, + { + "word": " we", + "start": 5316.22, + "end": 5316.34, + "probability": 1.0 + }, + { + "word": " do", + "start": 5316.34, + "end": 5316.46, + "probability": 1.0 + }, + { + "word": " all", + "start": 5316.46, + "end": 5316.7, + "probability": 1.0 + }, + { + "word": " week.", + "start": 5316.7, + "end": 5316.98, + "probability": 1.0 + } + ] + }, + { + "id": 2343, + "text": "This is just a hobby on the weekends.", + "start": 5317.16, + "end": 5318.84, + "words": [ + { + "word": " This", + "start": 5317.16, + "end": 5317.52, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 5317.52, + "end": 5317.62, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 5317.62, + "end": 5317.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 5317.98, + "end": 5318.08, + "probability": 1.0 + }, + { + "word": " hobby", + "start": 5318.08, + "end": 5318.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 5318.3, + "end": 5318.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5318.46, + "end": 5318.56, + "probability": 1.0 + }, + { + "word": " weekends.", + "start": 5318.56, + "end": 5318.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2344, + "text": "But thanks again for listening to the Computer Guru Show.", + "start": 5319.280000000001, + "end": 5321.14, + "words": [ + { + "word": " But", + "start": 5319.280000000001, + "end": 5319.64, + "probability": 0.99169921875 + }, + { + "word": " thanks", + "start": 5319.64, + "end": 5319.78, + "probability": 0.9990234375 + }, + { + "word": " again", + "start": 5319.78, + "end": 5319.92, + "probability": 1.0 + }, + { + "word": " for", + "start": 5319.92, + "end": 5320.06, + "probability": 1.0 + }, + { + "word": " listening", + "start": 5320.06, + "end": 5320.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 5320.28, + "end": 5320.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 5320.4, + "end": 5320.48, + "probability": 0.68505859375 + }, + { + "word": " Computer", + "start": 5320.48, + "end": 5320.66, + "probability": 0.9990234375 + }, + { + "word": " Guru", + "start": 5320.66, + "end": 5320.9, + "probability": 0.966796875 + }, + { + "word": " Show.", + "start": 5320.9, + "end": 5321.14, + "probability": 0.9541015625 + } + ] + }, + { + "id": 2345, + "text": "Give us a call down at the shop, 304-8300.", + "start": 5321.3, + "end": 5323.28, + "words": [ + { + "word": " Give", + "start": 5321.3, + "end": 5321.54, + "probability": 0.99609375 + }, + { + "word": " us", + "start": 5321.54, + "end": 5321.64, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 5321.64, + "end": 5321.64, + "probability": 1.0 + }, + { + "word": " call", + "start": 5321.64, + "end": 5321.74, + "probability": 1.0 + }, + { + "word": " down", + "start": 5321.74, + "end": 5321.86, + "probability": 0.70361328125 + }, + { + "word": " at", + "start": 5321.86, + "end": 5321.94, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 5321.94, + "end": 5322.0, + "probability": 0.9013671875 + }, + { + "word": " shop,", + "start": 5322.0, + "end": 5322.1, + "probability": 0.98291015625 + }, + { + "word": " 304", + "start": 5322.18, + "end": 5322.76, + "probability": 0.99951171875 + }, + { + "word": "-8300.", + "start": 5322.76, + "end": 5323.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2346, + "text": "And we'll see you next week.", + "start": 5323.5, + "end": 5324.6, + "words": [ + { + "word": " And", + "start": 5323.5, + "end": 5323.8, + "probability": 0.99853515625 + }, + { + "word": " we'll", + "start": 5323.8, + "end": 5323.94, + "probability": 1.0 + }, + { + "word": " see", + "start": 5323.94, + "end": 5324.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 5324.06, + "end": 5324.18, + "probability": 1.0 + }, + { + "word": " next", + "start": 5324.18, + "end": 5324.32, + "probability": 1.0 + }, + { + "word": " week.", + "start": 5324.32, + "end": 5324.6, + "probability": 1.0 + } + ] + }, + { + "id": 2347, + "text": "You know, we really enjoy doing this show.", + "start": 5330.06, + "end": 5331.84, + "words": [ + { + "word": " You", + "start": 5330.06, + "end": 5330.42, + "probability": 0.1551513671875 + }, + { + "word": " know,", + "start": 5330.42, + "end": 5330.56, + "probability": 0.97705078125 + }, + { + "word": " we", + "start": 5330.58, + "end": 5330.64, + "probability": 0.7509765625 + }, + { + "word": " really", + "start": 5330.64, + "end": 5330.84, + "probability": 0.998046875 + }, + { + "word": " enjoy", + "start": 5330.84, + "end": 5331.16, + "probability": 0.9990234375 + }, + { + "word": " doing", + "start": 5331.16, + "end": 5331.42, + "probability": 1.0 + }, + { + "word": " this", + "start": 5331.42, + "end": 5331.64, + "probability": 0.99755859375 + }, + { + "word": " show.", + "start": 5331.64, + "end": 5331.84, + "probability": 1.0 + } + ] + }, + { + "id": 2348, + "text": "I mean, I've been doing it for, what, nine years now?", + "start": 5331.98, + "end": 5334.22, + "words": [ + { + "word": " I", + "start": 5331.98, + "end": 5332.16, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 5332.16, + "end": 5332.28, + "probability": 0.98291015625 + }, + { + "word": " I've", + "start": 5332.3, + "end": 5332.44, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 5332.44, + "end": 5332.54, + "probability": 1.0 + }, + { + "word": " doing", + "start": 5332.54, + "end": 5332.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 5332.7, + "end": 5332.82, + "probability": 1.0 + }, + { + "word": " for,", + "start": 5332.82, + "end": 5332.92, + "probability": 1.0 + }, + { + "word": " what,", + "start": 5332.96, + "end": 5333.28, + "probability": 0.99853515625 + }, + { + "word": " nine", + "start": 5333.3, + "end": 5333.52, + "probability": 0.97705078125 + }, + { + "word": " years", + "start": 5333.52, + "end": 5333.96, + "probability": 1.0 + }, + { + "word": " now?", + "start": 5333.96, + "end": 5334.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2349, + "text": "So I must be liking it.", + "start": 5334.34, + "end": 5335.5, + "words": [ + { + "word": " So", + "start": 5334.34, + "end": 5334.6, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 5334.6, + "end": 5334.7, + "probability": 0.94482421875 + }, + { + "word": " must", + "start": 5334.7, + "end": 5334.88, + "probability": 1.0 + }, + { + "word": " be", + "start": 5334.88, + "end": 5335.04, + "probability": 1.0 + }, + { + "word": " liking", + "start": 5335.04, + "end": 5335.28, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5335.28, + "end": 5335.5, + "probability": 1.0 + } + ] + }, + { + "id": 2350, + "text": "But here's the thing.", + "start": 5335.76, + "end": 5336.58, + "words": [ + { + "word": " But", + "start": 5335.76, + "end": 5336.12, + "probability": 0.99951171875 + }, + { + "word": " here's", + "start": 5336.12, + "end": 5336.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 5336.3, + "end": 5336.36, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 5336.36, + "end": 5336.58, + "probability": 1.0 + } + ] + }, + { + "id": 2351, + "text": "It costs a lot of money to put this show on.", + "start": 5336.76, + "end": 5339.0, + "words": [ + { + "word": " It", + "start": 5336.76, + "end": 5337.12, + "probability": 1.0 + }, + { + "word": " costs", + "start": 5337.12, + "end": 5337.38, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 5337.38, + "end": 5337.66, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5337.66, + "end": 5337.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 5337.86, + "end": 5337.96, + "probability": 1.0 + }, + { + "word": " money", + "start": 5337.96, + "end": 5338.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 5338.12, + "end": 5338.24, + "probability": 1.0 + }, + { + "word": " put", + "start": 5338.24, + "end": 5338.36, + "probability": 1.0 + }, + { + "word": " this", + "start": 5338.36, + "end": 5338.54, + "probability": 1.0 + }, + { + "word": " show", + "start": 5338.54, + "end": 5338.74, + "probability": 1.0 + }, + { + "word": " on.", + "start": 5338.74, + "end": 5339.0, + "probability": 1.0 + } + ] + }, + { + "id": 2352, + "text": "And you can help us keep this show on the air", + "start": 5339.2, + "end": 5341.12, + "words": [ + { + "word": " And", + "start": 5339.2, + "end": 5339.56, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5339.56, + "end": 5339.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 5339.68, + "end": 5339.82, + "probability": 1.0 + }, + { + "word": " help", + "start": 5339.82, + "end": 5340.06, + "probability": 1.0 + }, + { + "word": " us", + "start": 5340.06, + "end": 5340.2, + "probability": 1.0 + }, + { + "word": " keep", + "start": 5340.2, + "end": 5340.36, + "probability": 1.0 + }, + { + "word": " this", + "start": 5340.36, + "end": 5340.54, + "probability": 0.98388671875 + }, + { + "word": " show", + "start": 5340.54, + "end": 5340.72, + "probability": 1.0 + }, + { + "word": " on", + "start": 5340.72, + "end": 5340.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 5340.86, + "end": 5340.96, + "probability": 1.0 + }, + { + "word": " air", + "start": 5340.96, + "end": 5341.12, + "probability": 1.0 + } + ] + }, + { + "id": 2353, + "text": "for as little as a dollar a month.", + "start": 5341.12, + "end": 5342.3, + "words": [ + { + "word": " for", + "start": 5341.12, + "end": 5341.28, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 5341.28, + "end": 5341.38, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 5341.38, + "end": 5341.56, + "probability": 1.0 + }, + { + "word": " as", + "start": 5341.56, + "end": 5341.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 5341.72, + "end": 5341.8, + "probability": 0.9794921875 + }, + { + "word": " dollar", + "start": 5341.8, + "end": 5342.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5342.0, + "end": 5342.14, + "probability": 1.0 + }, + { + "word": " month.", + "start": 5342.14, + "end": 5342.3, + "probability": 1.0 + } + ] + }, + { + "id": 2354, + "text": "All you've got to do is go to gurushow.com", + "start": 5342.62, + "end": 5344.62, + "words": [ + { + "word": " All", + "start": 5342.62, + "end": 5342.98, + "probability": 1.0 + }, + { + "word": " you've", + "start": 5342.98, + "end": 5343.16, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 5343.16, + "end": 5343.22, + "probability": 0.98828125 + }, + { + "word": " to", + "start": 5343.22, + "end": 5343.32, + "probability": 1.0 + }, + { + "word": " do", + "start": 5343.32, + "end": 5343.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 5343.46, + "end": 5343.6, + "probability": 1.0 + }, + { + "word": " go", + "start": 5343.6, + "end": 5343.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 5343.7, + "end": 5343.78, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 5343.78, + "end": 5344.18, + "probability": 0.88232421875 + }, + { + "word": ".com", + "start": 5344.18, + "end": 5344.62, + "probability": 1.0 + } + ] + }, + { + "id": 2355, + "text": "and click on the Patreon link.", + "start": 5344.62, + "end": 5345.96, + "words": [ + { + "word": " and", + "start": 5344.62, + "end": 5344.9, + "probability": 0.998046875 + }, + { + "word": " click", + "start": 5344.9, + "end": 5345.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 5345.06, + "end": 5345.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 5345.22, + "end": 5345.32, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 5345.32, + "end": 5345.6, + "probability": 1.0 + }, + { + "word": " link.", + "start": 5345.6, + "end": 5345.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2356, + "text": "And from there, you can see that we have", + "start": 5346.14, + "end": 5347.48, + "words": [ + { + "word": " And", + "start": 5346.14, + "end": 5346.46, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 5346.46, + "end": 5346.56, + "probability": 0.9990234375 + }, + { + "word": " there,", + "start": 5346.56, + "end": 5346.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 5346.76, + "end": 5346.84, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5346.84, + "end": 5346.96, + "probability": 1.0 + }, + { + "word": " see", + "start": 5346.96, + "end": 5347.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 5347.14, + "end": 5347.24, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 5347.24, + "end": 5347.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 5347.32, + "end": 5347.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2357, + "text": "all kinds of rewards for Patreon members.", + "start": 5347.48, + "end": 5349.3, + "words": [ + { + "word": " all", + "start": 5347.48, + "end": 5347.7, + "probability": 0.99853515625 + }, + { + "word": " kinds", + "start": 5347.7, + "end": 5347.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 5347.9, + "end": 5348.1, + "probability": 1.0 + }, + { + "word": " rewards", + "start": 5348.1, + "end": 5348.34, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 5348.34, + "end": 5348.68, + "probability": 0.9990234375 + }, + { + "word": " Patreon", + "start": 5348.68, + "end": 5348.96, + "probability": 0.99853515625 + }, + { + "word": " members.", + "start": 5348.96, + "end": 5349.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 2358, + "text": "You also get exclusive access to content", + "start": 5349.48, + "end": 5351.94, + "words": [ + { + "word": " You", + "start": 5349.48, + "end": 5349.7, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 5349.7, + "end": 5349.84, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 5349.84, + "end": 5350.08, + "probability": 1.0 + }, + { + "word": " exclusive", + "start": 5350.08, + "end": 5350.52, + "probability": 0.99951171875 + }, + { + "word": " access", + "start": 5350.52, + "end": 5351.04, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5351.04, + "end": 5351.5, + "probability": 1.0 + }, + { + "word": " content", + "start": 5351.5, + "end": 5351.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2359, + "text": "that is made strictly for Patreon members.", + "start": 5351.94, + "end": 5354.34, + "words": [ + { + "word": " that", + "start": 5351.94, + "end": 5352.2, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5352.2, + "end": 5352.3, + "probability": 1.0 + }, + { + "word": " made", + "start": 5352.3, + "end": 5352.48, + "probability": 0.99951171875 + }, + { + "word": " strictly", + "start": 5352.48, + "end": 5352.92, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 5352.92, + "end": 5353.38, + "probability": 0.99951171875 + }, + { + "word": " Patreon", + "start": 5353.38, + "end": 5353.82, + "probability": 0.99658203125 + }, + { + "word": " members.", + "start": 5353.82, + "end": 5354.34, + "probability": 0.998046875 + } + ] + }, + { + "id": 2360, + "text": "We get to blow up Furbies, automate homes,", + "start": 5354.72, + "end": 5356.72, + "words": [ + { + "word": " We", + "start": 5354.72, + "end": 5355.08, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 5355.08, + "end": 5355.16, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5355.16, + "end": 5355.22, + "probability": 0.99853515625 + }, + { + "word": " blow", + "start": 5355.22, + "end": 5355.36, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 5355.36, + "end": 5355.54, + "probability": 0.99951171875 + }, + { + "word": " Furbies,", + "start": 5355.54, + "end": 5355.9, + "probability": 0.92822265625 + }, + { + "word": " automate", + "start": 5356.04, + "end": 5356.34, + "probability": 0.99853515625 + }, + { + "word": " homes,", + "start": 5356.34, + "end": 5356.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2361, + "text": "and put fun tech videos", + "start": 5356.92, + "end": 5358.48, + "words": [ + { + "word": " and", + "start": 5356.92, + "end": 5357.3, + "probability": 1.0 + }, + { + "word": " put", + "start": 5357.3, + "end": 5357.44, + "probability": 0.99951171875 + }, + { + "word": " fun", + "start": 5357.44, + "end": 5357.76, + "probability": 0.9990234375 + }, + { + "word": " tech", + "start": 5357.76, + "end": 5358.04, + "probability": 0.99755859375 + }, + { + "word": " videos", + "start": 5358.04, + "end": 5358.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2362, + "text": "on.", + "start": 5358.48, + "end": 5358.72, + "words": [ + { + "word": " on.", + "start": 5358.48, + "end": 5358.72, + "probability": 0.301025390625 + } + ] + }, + { + "id": 2363, + "text": "We're here to help you learn.", + "start": 5358.84, + "end": 5360.02, + "words": [ + { + "word": " We're", + "start": 5358.84, + "end": 5359.2, + "probability": 0.986328125 + }, + { + "word": " here", + "start": 5359.2, + "end": 5359.34, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5359.34, + "end": 5359.44, + "probability": 0.9990234375 + }, + { + "word": " help", + "start": 5359.44, + "end": 5359.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5359.6, + "end": 5359.74, + "probability": 0.99951171875 + }, + { + "word": " learn.", + "start": 5359.74, + "end": 5360.02, + "probability": 0.998046875 + } + ] + }, + { + "id": 2364, + "text": "And maybe you can help us keep that going", + "start": 5360.32, + "end": 5362.68, + "words": [ + { + "word": " And", + "start": 5360.32, + "end": 5360.78, + "probability": 0.96826171875 + }, + { + "word": " maybe", + "start": 5360.78, + "end": 5361.0, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 5361.0, + "end": 5361.14, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 5361.14, + "end": 5361.26, + "probability": 0.998046875 + }, + { + "word": " help", + "start": 5361.26, + "end": 5361.48, + "probability": 0.998046875 + }, + { + "word": " us", + "start": 5361.48, + "end": 5361.7, + "probability": 0.998046875 + }, + { + "word": " keep", + "start": 5361.7, + "end": 5362.12, + "probability": 0.9912109375 + }, + { + "word": " that", + "start": 5362.12, + "end": 5362.4, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 5362.4, + "end": 5362.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2365, + "text": "by supporting us on Patreon.", + "start": 5362.68, + "end": 5364.5, + "words": [ + { + "word": " by", + "start": 5362.68, + "end": 5363.36, + "probability": 0.9248046875 + }, + { + "word": " supporting", + "start": 5363.36, + "end": 5363.66, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 5363.66, + "end": 5364.0, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5364.0, + "end": 5364.26, + "probability": 0.99853515625 + }, + { + "word": " Patreon.", + "start": 5364.26, + "end": 5364.5, + "probability": 0.96826171875 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.srt new file mode 100644 index 0000000..30b18cf --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.srt @@ -0,0 +1,9464 @@ +1 +00:00:00,000 --> 00:00:04,380 +From my heart and from my hand, why don't people understand my intention? + +2 +00:00:05,040 --> 00:00:06,220 +Computer running slow? + +3 +00:00:06,400 --> 00:00:06,720 +Avoiding. + +4 +00:00:06,920 --> 00:00:07,640 +Caught a virus? + +5 +00:00:07,920 --> 00:00:08,180 +What? + +6 +00:00:08,180 --> 00:00:08,680 +No! + +7 +00:00:09,180 --> 00:00:09,460 +Where? + +8 +00:00:09,520 --> 00:00:09,860 +Where? + +9 +00:00:09,920 --> 00:00:13,140 +Does your computer seem to have a life of its own? + +10 +00:00:13,540 --> 00:00:14,100 +Malfunction. + +11 +00:00:14,480 --> 00:00:15,560 +Need input. + +12 +00:00:15,920 --> 00:00:17,600 +The Computer Guru is here. + +13 +00:00:17,780 --> 00:00:18,680 +My God, you're here! + +14 +00:00:19,120 --> 00:00:19,920 +Call in now. + +15 +00:00:20,280 --> 00:00:23,120 +Now, it's Mike Swanson, your Computer Guru. + +16 +00:00:24,460 --> 00:00:26,540 +Hello and welcome to the Computer Guru Show. + +17 +00:00:26,540 --> 00:00:30,520 +My name is Mike, here to deal with your technology needs and treat you like a person in the process. + +18 +00:00:31,200 --> 00:00:31,920 +790-2040. + +19 +00:00:31,960 --> 00:00:34,980 +If you'd like to be part of the show, that's 520-790-2040. + +20 +00:00:35,720 --> 00:00:38,940 +And we'll help you out with whatever technology issues are ailing you. + +21 +00:00:39,960 --> 00:00:41,200 +Because that's what we do around here. + +22 +00:00:41,580 --> 00:00:42,960 +This week is Rob is in. + +23 +00:00:43,020 --> 00:00:43,400 +Hello, Rob. + +24 +00:00:43,500 --> 00:00:44,340 +Hi, how's it going? + +25 +00:00:44,540 --> 00:00:46,480 +And then we've got Kent over there pushing buttons. + +26 +00:00:46,560 --> 00:00:47,200 +Good morning. + +27 +00:00:47,340 --> 00:00:47,840 +Doing his thing. + +28 +00:00:49,520 --> 00:00:52,300 +And we've got new stuff to play during the breaks. + +29 +00:00:52,580 --> 00:00:54,860 +It feels like I can feel the energy today. + +30 +00:00:55,080 --> 00:00:55,440 +Yeah? + +31 +00:00:55,520 --> 00:00:55,820 +Yeah. + +32 +00:00:56,000 --> 00:00:56,360 +Yeah. + +33 +00:00:56,800 --> 00:00:57,800 +It's not bad. + +34 +00:00:58,340 --> 00:00:59,600 +What kind of energy is it, though? + +35 +00:00:59,920 --> 00:01:01,580 +Hopefully good energy, because we're going to need it. + +36 +00:01:01,820 --> 00:01:02,140 +Yeah. + +37 +00:01:03,660 --> 00:01:05,140 +There's going to be... + +38 +00:01:05,540 --> 00:01:09,420 +We're doing the filming stage of Destruction of Furbies today. + +39 +00:01:09,820 --> 00:01:10,180 +Finally. + +40 +00:01:10,800 --> 00:01:12,480 +And so that's going to be fun. + +41 +00:01:14,000 --> 00:01:15,880 +And hopefully nobody gets injured. + +42 +00:01:16,560 --> 00:01:19,460 +Yeah, I'm really hoping that we can walk away from this literally. + +43 +00:01:20,040 --> 00:01:20,400 +Right. + +44 +00:01:21,040 --> 00:01:21,400 +Unscathed. + +45 +00:01:21,400 --> 00:01:21,560 +Right. + +46 +00:01:22,080 --> 00:01:23,940 +Although your mom said that she's going to take you out. + +47 +00:01:23,940 --> 00:01:24,940 +She's going to get hurt. + +48 +00:01:25,040 --> 00:01:25,820 +She's going to kill me. + +49 +00:01:26,000 --> 00:01:26,360 +Yeah. + +50 +00:01:27,000 --> 00:01:27,320 +Yeah. + +51 +00:01:27,320 --> 00:01:30,940 +I was like, that seems like an escalation that doesn't make sense, but all right. + +52 +00:01:31,680 --> 00:01:32,700 +She goes, that's my job. + +53 +00:01:33,740 --> 00:01:34,380 +Right on. + +54 +00:01:34,600 --> 00:01:37,180 +So if I even get a paper cut today, that's it for me. + +55 +00:01:37,680 --> 00:01:38,760 +You're a goner, man. + +56 +00:01:38,920 --> 00:01:39,360 +Yeah, I guess so. + +57 +00:01:40,060 --> 00:01:41,040 +You have to go on the lam. + +58 +00:01:41,220 --> 00:01:44,940 +Well, yeah, my girlfriend said that there's going to be a line of people to injure me + +59 +00:01:44,940 --> 00:01:45,460 +if I get injured. + +60 +00:01:45,640 --> 00:01:46,120 +Oh, really? + +61 +00:01:46,320 --> 00:01:46,960 +You're going to take a number? + +62 +00:01:47,240 --> 00:01:47,560 +Apparently. + +63 +00:01:47,900 --> 00:01:49,240 +All the women in my life are violent. + +64 +00:01:52,580 --> 00:01:53,200 +All right. + +65 +00:01:53,240 --> 00:01:55,660 +7-9-0-20-40 if you want to be part of the show. + +66 +00:01:56,940 --> 00:01:57,660 +All right. + +67 +00:01:57,720 --> 00:01:59,740 +This show kind of feels like a follow-up show. + +68 +00:02:00,380 --> 00:02:00,740 +Oh, yeah? + +69 +00:02:00,740 --> 00:02:03,040 +Because we're talking about a lot of things that have been talked about before. + +70 +00:02:03,340 --> 00:02:07,440 +Yeah, we're going to be kind of bringing up stuff that we've talked about before and + +71 +00:02:07,440 --> 00:02:09,160 +said that we would eventually follow up with. + +72 +00:02:09,280 --> 00:02:10,500 +And some of those things are good. + +73 +00:02:10,580 --> 00:02:12,040 +Some of those things are not so good. + +74 +00:02:12,780 --> 00:02:13,140 +Right. + +75 +00:02:13,760 --> 00:02:19,620 +Some of these things are, I didn't want to talk about them again, necessarily. + +76 +00:02:19,640 --> 00:02:21,180 +Yeah, I was really hoping that we wouldn't have to. + +77 +00:02:22,260 --> 00:02:22,620 +Yeah. + +78 +00:02:22,640 --> 00:02:23,000 +Yeah. + +79 +00:02:23,460 --> 00:02:26,520 +Well, let's start with one that we didn't have to. + +80 +00:02:26,540 --> 00:02:27,000 +I just wish we didn't have to talk about before. + +81 +00:02:27,260 --> 00:02:28,980 +And I just wish we didn't have to talk about now. + +82 +00:02:29,260 --> 00:02:30,460 +Which would be Pizza Hut. + +83 +00:02:32,580 --> 00:02:33,360 +It's just dumb. + +84 +00:02:33,600 --> 00:02:33,920 +Yeah. + +85 +00:02:34,000 --> 00:02:38,400 +You know, a lot of times I feel that you're almost like a little bit curmudgeon-y with + +86 +00:02:38,400 --> 00:02:39,840 +some of the stuff that we talk about. + +87 +00:02:40,040 --> 00:02:40,340 +Right. + +88 +00:02:40,400 --> 00:02:41,540 +But in this case, I'm with you. + +89 +00:02:41,720 --> 00:02:42,500 +This is dumb. + +90 +00:02:43,080 --> 00:02:45,340 +So Pizza Hut has some shoes that you can buy. + +91 +00:02:45,880 --> 00:02:48,280 +They are sort of retro-looking shoes. + +92 +00:02:48,560 --> 00:02:51,800 +They're high-tops, but they call them pie-tops. + +93 +00:02:53,460 --> 00:02:56,520 +And there's a button in the tongue of the shoe that allows you to order. + +94 +00:02:56,520 --> 00:02:57,160 +You can order a large pizza. + +95 +00:02:58,060 --> 00:03:01,960 +It's effectively an Amazon Dash button built into shoes. + +96 +00:03:02,440 --> 00:03:07,560 +And it's not even the coolest use of an Amazon Dash button that we've talked about recently. + +97 +00:03:08,040 --> 00:03:08,480 +No. + +98 +00:03:08,680 --> 00:03:11,260 +Even the donating to, what was it? + +99 +00:03:12,480 --> 00:03:13,580 +The swear jar? + +100 +00:03:13,780 --> 00:03:14,740 +Yeah, the swear jar. + +101 +00:03:14,820 --> 00:03:16,900 +Even that was better than this. + +102 +00:03:17,240 --> 00:03:19,580 +Yeah, you press a button and pizza gets ordered. + +103 +00:03:19,980 --> 00:03:24,720 +My question, though, is that if you're in a place long enough for a pizza to be delivered to you, + +104 +00:03:24,780 --> 00:03:26,240 +why are you wearing these absurd shoes? + +105 +00:03:26,520 --> 00:03:28,460 +Yeah, they're kind of dumb-looking. + +106 +00:03:29,540 --> 00:03:29,940 +Yeah. + +107 +00:03:30,140 --> 00:03:31,220 +It's so dumb! + +108 +00:03:32,100 --> 00:03:36,060 +You could really mess with your friend who has these by just, like, punching him in the tongue of his shoe. + +109 +00:03:36,600 --> 00:03:40,960 +Yeah, they said that there's some type of, uh, you won't accidentally order pizza. + +110 +00:03:42,060 --> 00:03:43,880 +They've got some sort of security built in. + +111 +00:03:44,060 --> 00:03:48,200 +I can't think of a situation in which I will need enough pizza that it'll justify. + +112 +00:03:48,480 --> 00:03:50,300 +Yeah, I don't order pizza enough. + +113 +00:03:50,720 --> 00:03:51,120 +Right. + +114 +00:03:51,300 --> 00:03:54,980 +I would even have a Dash-style button. + +115 +00:03:55,160 --> 00:03:55,660 +I wouldn't. + +116 +00:03:55,660 --> 00:03:56,500 +I don't know about even having a button. + +117 +00:03:56,500 --> 00:03:56,500 + + +118 +00:03:56,500 --> 00:03:56,500 + + +119 +00:03:56,500 --> 00:03:56,500 + + +120 +00:03:56,500 --> 00:03:56,500 + + +121 +00:03:56,520 --> 00:03:58,300 +I would have to have the app on your phone, you know? + +122 +00:03:58,440 --> 00:04:05,000 +Right, and then beyond that, I don't order pizza enough to especially get a aforementioned Dash-style button + +123 +00:04:05,460 --> 00:04:08,740 +built into a pair of relatively ugly tennis shoes. + +124 +00:04:08,960 --> 00:04:10,700 +Not to mention that you've got to think about the back end here. + +125 +00:04:10,820 --> 00:04:13,540 +So this means that not only do you order pizza enough to have these shoes, + +126 +00:04:13,700 --> 00:04:18,680 +but, like, you have a pre-defined order that you like enough to have stored. + +127 +00:04:19,640 --> 00:04:21,920 +What if you get tired of whatever type of pizza you're having? + +128 +00:04:22,480 --> 00:04:26,440 +Well, I think the only way that I would get one of these is if I could program it. + +129 +00:04:26,520 --> 00:04:27,820 +I think that's a good way to order from Brooklyn's. + +130 +00:04:28,460 --> 00:04:29,060 +Yeah, I could. + +131 +00:04:29,060 --> 00:04:30,940 +Because Brooklyn's pizza is worth ordering from. + +132 +00:04:31,240 --> 00:04:33,040 +No, it's still not often enough, though. + +133 +00:04:33,460 --> 00:04:34,040 +No, that's true. + +134 +00:04:34,040 --> 00:04:39,460 +I can't think of anything that I need so often that I would want it built into my shoe. + +135 +00:04:39,680 --> 00:04:42,400 +Yeah, the only problem with Brooklyn's, though, I mean, they've got amazing pizza + +136 +00:04:42,400 --> 00:04:44,440 +and the best garlic knots in town. + +137 +00:04:44,540 --> 00:04:47,520 +But the problem is I think they have a delivery radius of, like, + +138 +00:04:47,540 --> 00:04:48,220 +Two feet? + +139 +00:04:48,380 --> 00:04:49,540 +Yeah, 45 feet or something. + +140 +00:04:49,540 --> 00:04:50,620 +Skybar right next door? + +141 +00:04:50,740 --> 00:04:50,900 +Yeah. + +142 +00:04:50,900 --> 00:04:51,820 +That's about it. + +143 +00:04:51,920 --> 00:04:52,540 +Come on, guys. + +144 +00:04:54,340 --> 00:04:56,320 +It's because they have to ride the trolley. + +145 +00:04:56,520 --> 00:04:56,740 +It's everywhere. + +146 +00:04:56,760 --> 00:05:00,140 +Well, maybe we'll get Uber Eats here in town at some point. + +147 +00:05:02,700 --> 00:05:03,580 +Oh, Brooklyn's. + +148 +00:05:03,760 --> 00:05:05,680 +The solar-powered pizza cafe. + +149 +00:05:06,580 --> 00:05:08,600 +Speaking of solar power, we've got some news about that. + +150 +00:05:08,900 --> 00:05:09,820 +What about it, man? + +151 +00:05:10,380 --> 00:05:16,400 +Apparently, at least in 2016, solar provided twice as many jobs as the coal industry in the United States. + +152 +00:05:17,520 --> 00:05:17,960 +Wow. + +153 +00:05:18,620 --> 00:05:19,500 +It's looking sunny. + +154 +00:05:19,660 --> 00:05:20,060 +Yeah. + +155 +00:05:20,160 --> 00:05:23,000 +I mean, that's a good thing, you know? + +156 +00:05:23,060 --> 00:05:24,880 +I mean, I'm all in favor of solar. + +157 +00:05:25,260 --> 00:05:25,980 +I am, too. + +158 +00:05:25,980 --> 00:05:28,800 +I think that this is probably a very good thing. + +159 +00:05:28,940 --> 00:05:29,920 +I like solar energy. + +160 +00:05:30,760 --> 00:05:31,260 +It's hot. + +161 +00:05:33,200 --> 00:05:35,440 +I'm the one who's supposed to be doing the corny jokes, okay? + +162 +00:05:36,680 --> 00:05:37,180 +Oh, man. + +163 +00:05:37,300 --> 00:05:38,200 +I'm in a mood, though. + +164 +00:05:38,380 --> 00:05:39,020 +I'm in a mood. + +165 +00:05:39,080 --> 00:05:39,600 +What can I say? + +166 +00:05:39,940 --> 00:05:40,920 +I know we switched roles. + +167 +00:05:41,040 --> 00:05:42,260 +I don't even have a corny joke to make. + +168 +00:05:42,700 --> 00:05:43,300 +Oh, okay. + +169 +00:05:43,800 --> 00:05:45,520 +You just have to sit there and be curmudgeoning? + +170 +00:05:45,620 --> 00:05:46,040 +I guess so. + +171 +00:05:46,200 --> 00:05:47,380 +You're the curmudgeoning one today. + +172 +00:05:47,500 --> 00:05:49,380 +The Pizza Hut shoes, like, ruined it for me. + +173 +00:05:49,620 --> 00:05:49,980 +Oh, okay. + +174 +00:05:50,200 --> 00:05:52,920 +So, Mike, what are we talking about next? + +175 +00:05:54,440 --> 00:05:55,960 +Well, I did want to talk about... + +176 +00:05:55,960 --> 00:05:59,300 +I did want to talk about Ryzen again, but we'll wait to get into that, because it's + +177 +00:05:59,300 --> 00:06:00,780 +kind of a whole thing, and we already have a caller. + +178 +00:06:01,080 --> 00:06:03,480 +They want to talk about shoes and pizza and stuff. + +179 +00:06:03,540 --> 00:06:03,800 +All right. + +180 +00:06:03,920 --> 00:06:04,560 +Let's talk... + +181 +00:06:04,560 --> 00:06:05,160 +Bren? + +182 +00:06:05,300 --> 00:06:05,780 +Hello, Bren. + +183 +00:06:05,860 --> 00:06:06,240 +How are you? + +184 +00:06:07,200 --> 00:06:07,960 +You got to hit the button. + +185 +00:06:09,040 --> 00:06:10,120 +No, the call button. + +186 +00:06:10,440 --> 00:06:11,300 +They're on hold still. + +187 +00:06:12,360 --> 00:06:13,020 +There you go. + +188 +00:06:13,200 --> 00:06:13,460 +Hi. + +189 +00:06:14,080 --> 00:06:14,880 +One of those buttons. + +190 +00:06:15,020 --> 00:06:15,220 +Hi. + +191 +00:06:16,100 --> 00:06:16,420 +Hi. + +192 +00:06:16,720 --> 00:06:17,660 +Thanks for taking my call. + +193 +00:06:17,700 --> 00:06:22,100 +I just wanted to know, if you have those shoes, do the pizzas come laced or unlaced? + +194 +00:06:22,900 --> 00:06:24,120 +That's a good question. + +195 +00:06:24,180 --> 00:06:25,640 +And do they know where to go? + +196 +00:06:26,440 --> 00:06:30,200 +Because, I mean, what if you're out at the basketball court shooting hoops and playing + +197 +00:06:30,200 --> 00:06:30,980 +horse with your friends? + +198 +00:06:31,340 --> 00:06:33,560 +I imagine it must have some type of... + +199 +00:06:33,560 --> 00:06:38,200 +Because it has to have, like, 4G or something built in in order for the order to even happen. + +200 +00:06:39,140 --> 00:06:43,820 +Yeah, that would suck if you have to be within Wi-Fi range of your house. + +201 +00:06:43,840 --> 00:06:50,140 +You know, I bet I could hack it so I could put Pyrmonics in there and get their pizza. + +202 +00:06:51,080 --> 00:06:51,940 +Well, that would be nice. + +203 +00:06:52,600 --> 00:06:55,920 +I think I'd still prefer the Amazon Dash button, because you could, like, put that on a keychain. + +204 +00:06:55,960 --> 00:06:56,640 +It'd be way more... + +205 +00:06:56,640 --> 00:06:58,460 +And these shoes are terrible looking, too, so... + +206 +00:06:58,460 --> 00:06:59,100 +They're kind of ugly. + +207 +00:06:59,240 --> 00:07:00,860 +We'll put them in the show notes so you can see them. + +208 +00:07:01,080 --> 00:07:05,580 +I think if you order them and put them away in 10 years, they might be worth something, + +209 +00:07:05,680 --> 00:07:07,020 +because no one's popping it up. + +210 +00:07:07,260 --> 00:07:08,100 +That's probably true. + +211 +00:07:08,100 --> 00:07:08,480 +Order them. + +212 +00:07:09,100 --> 00:07:09,920 +That's probably true. + +213 +00:07:10,040 --> 00:07:12,040 +Their value is mostly as a collector's item. + +214 +00:07:12,820 --> 00:07:13,140 +Yeah. + +215 +00:07:13,180 --> 00:07:14,220 +Thanks for taking my call, Scott. + +216 +00:07:14,440 --> 00:07:14,820 +Yeah, thanks. + +217 +00:07:15,020 --> 00:07:18,760 +And Pizza Hut's been doing the whole, like, you know, using technology as a gimmick for + +218 +00:07:18,760 --> 00:07:19,300 +a long time. + +219 +00:07:19,500 --> 00:07:23,920 +I mean, if they're just doing this as a promotional thing, whatever, if they really expect for + +220 +00:07:23,920 --> 00:07:24,060 +the... + +221 +00:07:24,060 --> 00:07:25,780 +I don't think they really expect for this to be a thing. + +222 +00:07:25,960 --> 00:07:26,400 +I don't either. + +223 +00:07:26,580 --> 00:07:27,700 +You know, besides... + +224 +00:07:27,700 --> 00:07:30,160 +Even if they do expect it, it's not going to be... + +225 +00:07:30,160 --> 00:07:31,100 +Stop trying to make it happen. + +226 +00:07:31,800 --> 00:07:37,000 +I heard that McDonald's was considering doing delivery, so maybe their shoes would be... + +227 +00:07:37,000 --> 00:07:39,880 +Like, I'd have, like, a spicy McChicken shoe thing, I guess, maybe. + +228 +00:07:40,220 --> 00:07:41,860 +A spicy McChicken shoe. + +229 +00:07:42,140 --> 00:07:42,540 +Yeah. + +230 +00:07:42,660 --> 00:07:47,040 +Like, I could want a $1 item from McDonald's far more frequently than I would want a pizza, + +231 +00:07:47,140 --> 00:07:47,740 +you know? + +232 +00:07:49,220 --> 00:07:49,880 +I don't know. + +233 +00:07:49,920 --> 00:07:50,720 +It's a toss-up for me. + +234 +00:07:51,000 --> 00:07:53,800 +I know me gusta on equal levels. + +235 +00:07:54,260 --> 00:07:55,240 +Do not want. + +236 +00:07:56,480 --> 00:07:59,600 +Say what you will about everything else at McDonald's, but the spicy McChicken's pretty + +237 +00:07:59,600 --> 00:07:59,800 +good. + +238 +00:07:59,920 --> 00:08:04,520 +The spicy chicken is not bad, with the exception of the non-chicken parts of... + +239 +00:08:04,520 --> 00:08:07,360 +I always have to tell them I'm allergic to lettuce, though, because their lettuce is + +240 +00:08:07,360 --> 00:08:09,160 +terrible, and I don't want any of that. + +241 +00:08:09,680 --> 00:08:10,000 +Yeah. + +242 +00:08:10,260 --> 00:08:10,880 +It's like... + +243 +00:08:11,400 --> 00:08:11,720 +Oh. + +244 +00:08:11,840 --> 00:08:13,980 +It's like reconstituted, and it's terrible. + +245 +00:08:14,100 --> 00:08:14,580 +Yeah, it's horrible. + +246 +00:08:14,620 --> 00:08:17,700 +When I said iceberg lettuce, I didn't mean it was in a freezer for, like, 10 hours. + +247 +00:08:19,400 --> 00:08:20,120 +There you go. + +248 +00:08:20,180 --> 00:08:21,060 +You got your mojo back. + +249 +00:08:21,380 --> 00:08:21,400 +Yeah. + +250 +00:08:21,400 --> 00:08:21,780 +There it is. + +251 +00:08:21,840 --> 00:08:23,760 +You can be the silly one now. + +252 +00:08:24,780 --> 00:08:25,180 +All right. + +253 +00:08:25,200 --> 00:08:25,840 +Let's take a moment. + +254 +00:08:25,960 --> 00:08:26,540 +I forgot to mention our sponsor. + +255 +00:08:26,620 --> 00:08:28,220 +That would be Perfection Auto Works. + +256 +00:08:29,200 --> 00:08:32,900 +They can do wonderful things for your vehicle, and you should probably check them out. + +257 +00:08:33,100 --> 00:08:34,960 +Maybe they should make, like, an oil change shoe button. + +258 +00:08:35,280 --> 00:08:36,020 +Oh, yeah. + +259 +00:08:36,060 --> 00:08:38,060 +Mike, get an oil change... + +260 +00:08:38,060 --> 00:08:40,220 +Make Perfection Auto Works shoes. + +261 +00:08:40,820 --> 00:08:43,940 +See, if you had an Amazon Dash button, you could put it on your dash. + +262 +00:08:44,080 --> 00:08:44,800 +I have to... + +263 +00:08:44,800 --> 00:08:45,020 +Oh. + +264 +00:08:45,440 --> 00:08:45,840 +Yeah. + +265 +00:08:45,960 --> 00:08:47,840 +I have to get my driving shoes on. + +266 +00:08:49,660 --> 00:08:50,800 +On their high tops. + +267 +00:08:53,520 --> 00:08:54,760 +Anyway, PerfectionAutoWorks.com. + +268 +00:08:54,820 --> 00:08:55,620 +Visit their website. + +269 +00:08:55,960 --> 00:08:57,240 +Check out what they can do for your vehicle. + +270 +00:08:57,320 --> 00:09:02,840 +26-point inspections are done for free down there, and they will take care of your vehicle + +271 +00:09:02,840 --> 00:09:06,400 +in a way that will make you feel like the name is deserving of perfection. + +272 +00:09:06,620 --> 00:09:07,260 +Perfection Auto Works. + +273 +00:09:07,800 --> 00:09:08,540 +PerfectionAutoWorks.com. + +274 +00:09:08,600 --> 00:09:08,940 +Check them out. + +275 +00:09:09,400 --> 00:09:12,760 +We'll be back right after these messages and a little bit of comedy, as usual, for the + +276 +00:09:12,760 --> 00:09:15,320 +first segment of the Computer Guru Show these days. + +277 +00:09:15,980 --> 00:09:16,740 +We'll be right back. + +278 +00:09:18,920 --> 00:09:23,520 +I think foosball is a combination of soccer and shish kebabs. + +279 +00:09:25,600 --> 00:09:27,820 +Foosball messed up my perception of soccer. + +280 +00:09:28,000 --> 00:09:30,520 +I thought you had to kick the ball and then spin round and round. + +281 +00:09:31,960 --> 00:09:35,360 +I can't do a backflip, much less several. + +282 +00:09:37,600 --> 00:09:42,320 +Simultaneously with two other guys that look just like me. + +283 +00:09:46,360 --> 00:09:50,380 +I was on the bus and it was the middle of the night, and I had a box of crackers and + +284 +00:09:50,380 --> 00:09:51,620 +I had a can of Easy Cheese. + +285 +00:09:53,040 --> 00:09:55,180 +But it was the middle of the night, so I could not see. + +286 +00:09:56,360 --> 00:09:59,540 +So I could not see how much Easy Cheese I was applying to each cracker. + +287 +00:10:01,160 --> 00:10:06,640 +So each bite into the cracker was a surprise as to how much Easy Cheese I had applied. + +288 +00:10:08,740 --> 00:10:11,820 +Which makes me believe they should have a glow-in-the-dark version of Easy Cheese. + +289 +00:10:13,780 --> 00:10:16,400 +It's not like the product has any integrity to begin with. + +290 +00:10:18,220 --> 00:10:21,180 +If you buy a room temperature cheese that you squeeze out of a can, + +291 +00:10:21,860 --> 00:10:24,840 +you probably won't get mad because it glows in the dark as well. + +292 +00:10:28,540 --> 00:10:32,640 +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. + +293 +00:10:32,940 --> 00:10:36,520 +Join the chat right now at gurushow.com or call in. + +294 +00:10:36,580 --> 00:10:40,060 +This is the Computer Guru Show on KVOY, The Voice. + +295 +00:10:52,140 --> 00:10:55,200 +Mike Swanson, your computer guru, is just a click away. + +296 +00:10:55,420 --> 00:10:57,720 +Listen and watch at gurushow.com. + +297 +00:10:58,000 --> 00:10:59,980 +This is the Computer Guru Show. + +298 +00:11:00,480 --> 00:11:03,400 +Welcome back to the Computer Guru Show. + +299 +00:11:03,440 --> 00:11:07,100 +Let's go ahead and talk about the fact that everyone in the federal government is an idiot. + +300 +00:11:08,120 --> 00:11:09,040 +Is this news? + +301 +00:11:09,640 --> 00:11:10,500 +Well, apparently. + +302 +00:11:11,200 --> 00:11:14,140 +So the FCC got a new chairman. + +303 +00:11:14,880 --> 00:11:19,740 +Originally, we were a little concerned about Wheeler in the previous administration. + +304 +00:11:19,820 --> 00:11:21,600 +We were like, we don't know about that. + +305 +00:11:21,600 --> 00:11:21,600 + + +306 +00:11:21,600 --> 00:11:21,600 + + +307 +00:11:21,600 --> 00:11:21,600 + + +308 +00:11:21,600 --> 00:11:21,600 + + +309 +00:11:21,600 --> 00:11:21,600 + + +310 +00:11:21,600 --> 00:11:21,600 + + +311 +00:11:21,600 --> 00:11:21,600 + + +312 +00:11:21,600 --> 00:11:21,600 + + +313 +00:11:21,620 --> 00:11:25,940 +We don't know about Tom Wheeler because he used to lobby for the cellular industry. + +314 +00:11:26,540 --> 00:11:33,100 +And he's probably going to mess some things up and make it so that consumers are hurt + +315 +00:11:33,100 --> 00:11:38,280 +and the internet providers are super happy. + +316 +00:11:39,440 --> 00:11:41,520 +And it turned out that he did exactly the opposite. + +317 +00:11:41,680 --> 00:11:48,420 +He just angered every ISP and put rules into place that were supposed to keep us a little bit safer + +318 +00:11:48,420 --> 00:11:50,000 +as far as the wallets were concerned. + +319 +00:11:51,000 --> 00:11:51,480 +What? + +320 +00:11:51,620 --> 00:11:59,460 +The new chairman of the FCC is not necessarily on board with Wheeler's plan. + +321 +00:11:59,640 --> 00:12:02,220 +In fact, I would say that he's very much not. + +322 +00:12:02,880 --> 00:12:06,160 +Yeah, and we had originally said, let's give this guy the benefit of the doubt. + +323 +00:12:06,500 --> 00:12:07,460 +Let's see what he does. + +324 +00:12:07,620 --> 00:12:08,880 +Maybe it'll turn out to be like Wheeler. + +325 +00:12:09,320 --> 00:12:10,180 +No, not quite. + +326 +00:12:10,380 --> 00:12:10,620 +Nope. + +327 +00:12:11,180 --> 00:12:12,900 +His name is Ajit Pai. + +328 +00:12:13,740 --> 00:12:16,740 +And he said that net neutrality was a mistake. + +329 +00:12:16,860 --> 00:12:21,020 +And the commission is now on track to return to a much lighter style of regulation. + +330 +00:12:21,620 --> 00:12:24,600 +Of course, this will make one of my listeners very happy, I'm sure. + +331 +00:12:26,080 --> 00:12:30,360 +But he says some things that just don't make any sense to me. + +332 +00:12:30,800 --> 00:12:34,800 +Well, unfortunately, I think most of the people who are proponents against net neutrality + +333 +00:12:34,800 --> 00:12:36,680 +say a lot of things that don't make sense. + +334 +00:12:37,080 --> 00:12:37,520 +Yeah. + +335 +00:12:38,320 --> 00:12:45,360 +Basically, he says that, you know, look at how with the announcement of the return + +336 +00:12:45,360 --> 00:12:48,260 +or basically of ending of net neutrality, + +337 +00:12:48,920 --> 00:12:51,540 +now all of the providers are announcing that they're going to have, + +338 +00:12:51,540 --> 00:12:53,260 +you know, unlimited data plans. + +339 +00:12:53,980 --> 00:12:57,720 +And I think he's taking credit for something that he had absolutely nothing to do with. + +340 +00:12:57,840 --> 00:13:01,440 +And I think that was all Wheeler basically saying, you have rules to follow. + +341 +00:13:01,760 --> 00:13:07,040 +And if you want to, you know, compete, then you have to compete, + +342 +00:13:07,220 --> 00:13:12,740 +rather than just being able to muscle a particular market or segment of users, + +343 +00:13:13,000 --> 00:13:15,800 +which is the problem with net neutrality in the first place, + +344 +00:13:15,800 --> 00:13:20,740 +where, you know, the lack of neutrality is that a provider then has the opportunity + +345 +00:13:20,740 --> 00:13:21,520 +to, you know, have a lot of data plans. + +346 +00:13:25,200 --> 00:13:25,720 +OK. + +347 +00:13:38,160 --> 00:13:38,420 +OK. + +348 +00:13:38,840 --> 00:13:38,840 + + +349 +00:13:38,840 --> 00:13:39,140 +OK. + +350 +00:13:39,220 --> 00:13:39,740 +OK. + +351 +00:13:39,740 --> 00:13:39,740 + + +352 +00:13:39,740 --> 00:13:39,740 + + +353 +00:13:39,740 --> 00:13:39,780 +OK. + +354 +00:13:39,840 --> 00:13:39,840 + + +355 +00:13:39,860 --> 00:13:39,860 + + +356 +00:13:39,860 --> 00:13:39,860 + + +357 +00:13:39,860 --> 00:13:39,860 + + +358 +00:13:39,900 --> 00:13:39,900 + + +359 +00:13:39,900 --> 00:13:39,900 + + +360 +00:13:39,980 --> 00:13:40,080 +OK. + +361 +00:13:40,360 --> 00:13:40,760 +OK. + +362 +00:13:40,760 --> 00:13:40,760 + + +363 +00:13:40,760 --> 00:13:40,760 + + +364 +00:13:40,760 --> 00:13:40,760 + + +365 +00:13:40,760 --> 00:13:40,760 + + +366 +00:13:40,760 --> 00:13:40,760 + + +367 +00:13:40,760 --> 00:13:40,760 + + +368 +00:13:40,760 --> 00:13:40,760 + + +369 +00:13:40,760 --> 00:13:40,760 + + +370 +00:13:40,760 --> 00:13:40,760 + + +371 +00:13:40,760 --> 00:13:40,780 +OK. + +372 +00:13:40,780 --> 00:13:40,800 +OK. + +373 +00:13:40,820 --> 00:13:40,840 +OK. + +374 +00:13:40,860 --> 00:13:40,860 + + +375 +00:13:40,860 --> 00:13:40,880 +OK. + +376 +00:13:40,880 --> 00:13:40,880 + + +377 +00:13:40,880 --> 00:13:40,880 + + +378 +00:13:40,880 --> 00:13:40,880 + + +379 +00:13:40,880 --> 00:13:40,880 + + +380 +00:13:40,880 --> 00:13:40,880 + + +381 +00:13:40,880 --> 00:13:40,880 + + +382 +00:13:40,880 --> 00:13:40,880 + + +383 +00:13:40,880 --> 00:13:40,880 + + +384 +00:13:40,880 --> 00:13:40,880 + + +385 +00:13:40,880 --> 00:13:40,880 + + +386 +00:13:40,880 --> 00:13:40,880 + + +387 +00:13:40,880 --> 00:13:40,880 + + +388 +00:13:40,880 --> 00:13:40,880 + + +389 +00:13:40,880 --> 00:13:40,880 + + +390 +00:13:40,880 --> 00:13:40,880 + + +391 +00:13:40,880 --> 00:13:40,880 + + +392 +00:13:40,880 --> 00:13:40,880 + + +393 +00:13:40,880 --> 00:13:40,880 + + +394 +00:13:40,880 --> 00:13:40,880 + + +395 +00:13:40,880 --> 00:13:41,160 +OK. + +396 +00:13:41,320 --> 00:13:41,800 +OK. + +397 +00:13:42,960 --> 00:13:43,480 +OK. + +398 +00:13:43,660 --> 00:13:43,920 +OK. + +399 +00:13:45,420 --> 00:13:45,940 +OK. + +400 +00:13:49,440 --> 00:13:49,960 +OK. + +401 +00:13:49,960 --> 00:14:05,900 +Now, of course, they don't really necessarily count things like DSL providers or the point-to-point wireless providers because, let's be honest, they're technically not able to compete with the cable providers or even the cellular providers if you happen to have one of those. + +402 +00:14:06,780 --> 00:14:13,940 +But then you end up with a very expensive Internet bill and caps and overages and all of that stuff. + +403 +00:14:14,260 --> 00:14:19,320 +Well, also, I mean, the cellular providers is what's making this whole situation a bit scary at the moment. + +404 +00:14:19,320 --> 00:14:23,120 +Because, as you said, everybody seems to be reintroducing their unlimited plans at the moment. + +405 +00:14:23,260 --> 00:14:26,600 +And a lot of these plans, if you look closely, are pretty anti-net neutrality. + +406 +00:14:27,200 --> 00:14:27,680 +Yeah. + +407 +00:14:27,800 --> 00:14:34,660 +Specifically, T-Mobile, who's had their binge-on thing for a while now, where certain streaming services don't count against your data cap. + +408 +00:14:35,280 --> 00:14:35,760 +Right. + +409 +00:14:35,800 --> 00:14:47,180 +And they mention those in the article, which is basically the zero tier, meaning that they don't count specific sets of data against your usage, + +410 +00:14:47,400 --> 00:14:49,300 +which was exactly the thing that the… + +411 +00:14:49,320 --> 00:14:50,780 +The net neutrality was trying to prevent. + +412 +00:14:51,020 --> 00:14:55,040 +And they have been under investigation by the FCC specifically because of that plan. + +413 +00:14:55,200 --> 00:14:57,620 +Not anymore because that stuff's now been enabled. + +414 +00:14:57,840 --> 00:15:00,540 +You know, basically, the FCC says, yeah, you can go ahead and do that. + +415 +00:15:00,660 --> 00:15:08,020 +You can go ahead and zero tier stuff where you can say anything that is on this particular platform that it doesn't charge… + +416 +00:15:08,020 --> 00:15:11,020 +We're not going to charge you for or doesn't necessarily have to count against your data plan. + +417 +00:15:11,240 --> 00:15:14,180 +And now that sounds really cool if you're already a member of one. + +418 +00:15:14,200 --> 00:15:17,300 +Like, say you use Pandora's premium service or Spotify or something like that. + +419 +00:15:17,340 --> 00:15:17,660 +Right. + +420 +00:15:17,680 --> 00:15:18,260 +That sounds awesome. + +421 +00:15:18,340 --> 00:15:19,220 +Like, why wouldn't I want to? + +422 +00:15:19,220 --> 00:15:22,000 +I'm going to switch to T-Mobile and then I'll have unlimited data for that stuff. + +423 +00:15:22,160 --> 00:15:26,540 +But you're not realizing that they're forcing you to stay on that platform essentially at that point. + +424 +00:15:26,660 --> 00:15:32,840 +So if some new streaming service comes out and it's way better and T-Mobile decides that they don't want to carry that on their zero plan… + +425 +00:15:33,600 --> 00:15:38,780 +Or that company decides that they can't afford to pay T-Mobile to be in that included plan. + +426 +00:15:38,840 --> 00:15:41,720 +Because, yeah, make no mistake, they're charging those companies for that right. + +427 +00:15:42,020 --> 00:15:42,460 +Right. + +428 +00:15:44,020 --> 00:15:47,020 +Then, yeah, it's stifling competition. + +429 +00:15:47,160 --> 00:15:48,660 +Or even scarier, in my opinion. + +430 +00:15:48,660 --> 00:15:53,900 +T-Mobile decides that it wants to release its own service that you have to subscribe to. + +431 +00:15:54,040 --> 00:15:54,360 +Right. + +432 +00:15:54,440 --> 00:16:06,980 +If you want to listen to music, which a lot of people do on their phones, then, yeah, these particular couple of services are going to be provided for you with no additional fee. + +433 +00:16:07,160 --> 00:16:12,180 +But if you want to watch those other ones, man, or listen to those other ones, it's going to cost you a little bit more. + +434 +00:16:12,280 --> 00:16:14,000 +So you're less likely to do so. + +435 +00:16:14,100 --> 00:16:18,260 +This is exactly the battle that we were talking about before with Comcast and Hulu versus Netflix. + +436 +00:16:19,020 --> 00:16:19,460 +Yeah. + +437 +00:16:19,580 --> 00:16:24,840 +And, of course, everyone that's on the other side of this argument is just like, well, let them compete. + +438 +00:16:25,580 --> 00:16:27,800 +Do you know what Comcast is? + +439 +00:16:28,300 --> 00:16:34,720 +I mean, have you seen NBCUniversal, what they – what is that company? + +440 +00:16:34,840 --> 00:16:35,800 +I mean, they are everything. + +441 +00:16:36,360 --> 00:16:40,120 +They're – I mean, Disney owns all is really what it comes down to. + +442 +00:16:40,860 --> 00:16:48,560 +And so it's impossible, I think, to realistically think that you're going to be able to compete with someone. + +443 +00:16:48,560 --> 00:16:55,900 +That is able to hold down that tier, right, that has that much clout that is just able to say, well, you're going to use my service. + +444 +00:16:55,980 --> 00:16:56,960 +You're going to use nothing at all. + +445 +00:16:58,000 --> 00:17:02,380 +And that's – or you'll be penalized for using something else. + +446 +00:17:02,600 --> 00:17:07,800 +And this is why the net neutrality argument even came to light in the first place. + +447 +00:17:07,920 --> 00:17:11,260 +But, you know, apparently nobody cares. + +448 +00:17:11,480 --> 00:17:18,380 +Well, my issue is that I think that from what I've seen over the last few years, their plan is just to keep rephrasing the argument. + +449 +00:17:18,560 --> 00:17:19,760 +Until people just stop caring. + +450 +00:17:20,540 --> 00:17:21,020 +Right. + +451 +00:17:21,940 --> 00:17:23,160 +Hypervigilance is very tiring. + +452 +00:17:23,440 --> 00:17:24,000 +Yeah, it is. + +453 +00:17:24,780 --> 00:17:25,620 +So, yeah. + +454 +00:17:25,740 --> 00:17:28,820 +So apparently we're losing our net neutrality, at least for a while. + +455 +00:17:30,000 --> 00:17:30,920 +Maybe permanently. + +456 +00:17:31,000 --> 00:17:31,500 +Who knows? + +457 +00:17:32,480 --> 00:17:44,020 +But when you wonder why that you want to watch that movie on Netflix or the next service that comes out after Netflix and you wonder why you can't afford it, this is why. + +458 +00:17:44,740 --> 00:17:48,000 +And it's because the net neutrality argument was – + +459 +00:17:48,660 --> 00:17:49,140 +Yeah. + +460 +00:17:49,140 --> 00:17:55,340 +It's because the net neutrality argument was designed to make sure that everyone who wanted to provide a service was able to equally. + +461 +00:17:55,680 --> 00:18:00,180 +We're going to have to take a look at how much piracy increases as a result of this. + +462 +00:18:00,340 --> 00:18:01,220 +Oh, it will. + +463 +00:18:01,880 --> 00:18:04,080 +It will a bit, in my opinion. + +464 +00:18:04,420 --> 00:18:04,880 +I mean, yeah. + +465 +00:18:04,940 --> 00:18:16,220 +When the choice is to pay for Pandora or Spotify or whatever T-Mobile service ends up being or whatever, or, you know, just spin up your own streaming media service, the choice is clear if you're able. + +466 +00:18:16,520 --> 00:18:17,000 +Yep. + +467 +00:18:17,640 --> 00:18:23,540 +And, you know, unfortunately I can't teach everyone how to do it, but, you know, it's – there are options. + +468 +00:18:23,680 --> 00:18:25,580 +I might post some links in the show notes. + +469 +00:18:27,420 --> 00:18:28,500 +There are options. + +470 +00:18:28,660 --> 00:18:40,380 +And that's the good thing about the Internet, though, is that at least for the people who are willing to do a little bit of extra work involved in getting around this stuff, there's always a way. + +471 +00:18:41,200 --> 00:18:46,940 +So it's interesting to me, but I'm very disappointed in the FCC. + +472 +00:18:47,000 --> 00:19:05,740 +When it comes to the net neutrality decision here, to go back on something that is very, very, in my opinion, very helpful for the end user because it's forcing everyone to sort of live on – or play by the same rules. + +473 +00:19:05,880 --> 00:19:11,940 +All of the providers have to play by the same rules under net neutrality, and now they don't. + +474 +00:19:12,020 --> 00:19:14,420 +And so we'll see what happens with them. + +475 +00:19:15,180 --> 00:19:16,140 +Let's go ahead and take a call here. + +476 +00:19:16,160 --> 00:19:16,720 +We'll talk to Philip. + +477 +00:19:16,760 --> 00:19:16,980 +Hey, Philip. + +478 +00:19:17,000 --> 00:19:17,400 +Philip, how are you? + +479 +00:19:18,120 --> 00:19:19,320 +Yeah, I went to Best Buy. + +480 +00:19:19,400 --> 00:19:22,360 +I was going to buy a Galaxy Tab E for $250. + +481 +00:19:23,060 --> 00:19:23,420 +Okay. + +482 +00:19:23,940 --> 00:19:28,540 +And they sent me over to the AT&T store on Oracle, and they gave it to me for 99 cents. + +483 +00:19:29,380 --> 00:19:30,620 +With your contract, right? + +484 +00:19:31,460 --> 00:19:31,820 +Yes. + +485 +00:19:32,080 --> 00:19:35,540 +I was going to get a contract anyway, so I'm wondering, is this thing going to blow up on me? + +486 +00:19:36,880 --> 00:19:41,620 +Well, you know, it is a Samsung product, but no, it's probably not going to burst into flames. + +487 +00:19:42,680 --> 00:19:44,660 +I'm just wondering, why would they give it to me? + +488 +00:19:44,800 --> 00:19:45,200 +I mean – + +489 +00:19:45,200 --> 00:19:46,980 +It's worth it to them to get you on the call. + +490 +00:19:46,980 --> 00:19:48,680 +A contract is really what it comes down to. + +491 +00:19:48,860 --> 00:19:49,640 +So, I mean – + +492 +00:19:49,640 --> 00:19:52,740 +You mentioned the unlimited thing, which is now part of their deal. + +493 +00:19:52,820 --> 00:19:54,900 +Of course, I've experienced what unlimited really means. + +494 +00:19:54,940 --> 00:19:55,520 +It means nothing. + +495 +00:19:56,500 --> 00:19:57,780 +Well, it depends on your provider. + +496 +00:19:58,560 --> 00:20:01,820 +So, like – yeah, it depends on the provider. + +497 +00:20:02,460 --> 00:20:08,200 +Some providers do the real, truly unlimited up to a certain point. + +498 +00:20:08,280 --> 00:20:09,820 +I mean, up to an unreasonable point. + +499 +00:20:09,900 --> 00:20:11,860 +I mean, 200 gigabytes for Verizon. + +500 +00:20:12,040 --> 00:20:15,740 +I don't know about AT&T, but, yeah, Verizon does have a limit in place, technically. + +501 +00:20:16,340 --> 00:20:16,720 +Right. + +502 +00:20:16,980 --> 00:20:21,000 +So, it's – and the T-Mobile stuff does throttle you if you go over 23 gigabytes. + +503 +00:20:22,480 --> 00:20:31,140 +So, there is a certain amount of congestion there, and I think it's unlimited within reason is the way that they're looking at it. + +504 +00:20:31,960 --> 00:20:33,880 +But you don't think I'm being scammed somehow? + +505 +00:20:34,420 --> 00:20:35,940 +I mean, why would they give it to me? + +506 +00:20:35,960 --> 00:20:37,080 +Well, of course you're being scammed. + +507 +00:20:37,100 --> 00:20:37,740 +You're in a contract. + +508 +00:20:38,180 --> 00:20:39,180 +Yeah, that's the scam. + +509 +00:20:40,100 --> 00:20:42,300 +Well, I was already going to go through a contract anyway. + +510 +00:20:42,420 --> 00:20:46,040 +So, in your case, if you were already planning on going into a contract no matter what, it's a good deal? + +511 +00:20:46,980 --> 00:20:47,180 +Right. + +512 +00:20:47,180 --> 00:20:47,520 +All right. + +513 +00:20:47,620 --> 00:20:47,800 +Right. + +514 +00:20:47,800 --> 00:20:50,720 +If you're a person that is anti-contract like myself, then – + +515 +00:20:50,720 --> 00:20:51,540 +I trust the guru. + +516 +00:20:51,760 --> 00:20:52,400 +I wouldn't do it. + +517 +00:20:53,960 --> 00:20:58,720 +But, you know, hey, if you're okay with the contract, if you want to be locked into that, you do that, man. + +518 +00:20:58,780 --> 00:20:59,240 +You do you. + +519 +00:21:00,660 --> 00:21:03,000 +Well, I've never had one before, so I'll see what happens. + +520 +00:21:03,100 --> 00:21:03,520 +Thank you. + +521 +00:21:03,600 --> 00:21:04,440 +Yeah, they're fun. + +522 +00:21:04,540 --> 00:21:05,240 +You'll enjoy it. + +523 +00:21:05,580 --> 00:21:07,760 +You won't use it as much as you think you will, though. + +524 +00:21:08,500 --> 00:21:10,700 +Yeah, because you'll get tired of pressing the little buttons. + +525 +00:21:11,780 --> 00:21:15,020 +Just tablet computing is really not all that pleasant. + +526 +00:21:15,240 --> 00:21:16,680 +I've – several times. + +527 +00:21:16,980 --> 00:21:19,460 +I've really tried to, like, to be a tablet user. + +528 +00:21:20,040 --> 00:21:20,780 +And they're good. + +529 +00:21:20,840 --> 00:21:28,140 +They have a very specific use case, which is like sitting on the couch watching TV, and you're just tooling around on your tablet on the Internet or something. + +530 +00:21:28,220 --> 00:21:28,440 +Right. + +531 +00:21:28,480 --> 00:21:32,560 +If you've got a $600 way of playing Candy Crush, right? + +532 +00:21:32,600 --> 00:21:33,860 +I mean, it was pretty good for balloons. + +533 +00:21:34,880 --> 00:21:36,060 +Balloons is pretty awesome. + +534 +00:21:36,320 --> 00:21:36,500 +Yeah. + +535 +00:21:36,540 --> 00:21:41,640 +But every time I've used a tablet and I've been like, all right, let's get something done, I've been like, man, I just need a laptop. + +536 +00:21:42,060 --> 00:21:42,440 +Right. + +537 +00:21:42,600 --> 00:21:44,040 +Why am I trying to do this? + +538 +00:21:44,120 --> 00:21:45,760 +Why am I trying to do this on a tablet? + +539 +00:21:46,100 --> 00:21:46,960 +I'm so – + +540 +00:21:46,980 --> 00:21:47,240 +No, Dom. + +541 +00:21:47,420 --> 00:21:47,800 +All right. + +542 +00:21:47,820 --> 00:21:48,840 +Let's go ahead and talk to Carl. + +543 +00:21:48,940 --> 00:21:49,260 +Hey, Carl. + +544 +00:21:49,340 --> 00:21:49,700 +How are you? + +545 +00:21:50,660 --> 00:21:51,460 +I'm doing fine. + +546 +00:21:51,700 --> 00:21:55,580 +And, you know, one of the things that bothers me is I keep talking about unlimited data. + +547 +00:21:56,000 --> 00:22:00,660 +That doesn't apply to a Wi-Fi hotspot, which is where I really need the unlimited data. + +548 +00:22:00,860 --> 00:22:01,340 +That is correct. + +549 +00:22:01,560 --> 00:22:03,940 +Well, you can root your phone and make it a Wi-Fi hotspot. + +550 +00:22:04,480 --> 00:22:04,800 +Yeah. + +551 +00:22:05,440 --> 00:22:06,680 +Don't go down that road. + +552 +00:22:07,280 --> 00:22:08,060 +No, I – + +553 +00:22:09,000 --> 00:22:10,220 +Don't listen to Rob right now. + +554 +00:22:10,320 --> 00:22:13,140 +He's saying stuff that – he's being irresponsible on the air. + +555 +00:22:13,200 --> 00:22:13,740 +That's what he's doing. + +556 +00:22:15,860 --> 00:22:16,180 +Okay. + +557 +00:22:16,240 --> 00:22:16,440 +Yeah. + +558 +00:22:16,500 --> 00:22:16,960 +But, I mean, that's – + +559 +00:22:16,980 --> 00:22:23,540 +That's one of the things because I use it for my business or what have you, and I keep saying – I think it's misleading. + +560 +00:22:23,880 --> 00:22:25,380 +You know, you have to ask the question. + +561 +00:22:25,700 --> 00:22:29,800 +But unlimited data, no, it's not unlimited for the Wi-Fi hotspot. + +562 +00:22:30,140 --> 00:22:30,220 +Right. + +563 +00:22:30,220 --> 00:22:35,020 +So the way that I do that is I do the hotspot on my phone rather than a separate Wi-Fi device. + +564 +00:22:35,200 --> 00:22:37,940 +And I have an unlimited data plan on my phone. + +565 +00:22:38,340 --> 00:22:40,660 +So that is unlimited for me. + +566 +00:22:40,940 --> 00:22:41,280 +No. + +567 +00:22:41,360 --> 00:22:41,760 +Nope. + +568 +00:22:42,160 --> 00:22:44,940 +It's not because I – that's one of the things that I've been looking for. + +569 +00:22:45,000 --> 00:22:46,960 +I have a Wi-Fi hotspot on my phone. + +570 +00:22:46,960 --> 00:22:50,040 +And it's an additional charge per month. + +571 +00:22:50,240 --> 00:22:54,800 +And it's generally limited to 10 megabytes. + +572 +00:22:55,160 --> 00:23:01,200 +And if you go over that, then it gets – see, the throttles back are stopped. + +573 +00:23:01,580 --> 00:23:03,580 +Not in my case, but I have an old one. + +574 +00:23:03,640 --> 00:23:04,740 +I have a grandfathered one. + +575 +00:23:04,820 --> 00:23:07,200 +Oh, if you've got an old plan or whatever it is, yeah. + +576 +00:23:07,420 --> 00:23:07,800 +Yeah. + +577 +00:23:07,820 --> 00:23:11,780 +So I pay an extra $29 for the ability to do the – + +578 +00:23:12,280 --> 00:23:12,760 +Right. + +579 +00:23:12,860 --> 00:23:14,220 +The hotspot on my phone. + +580 +00:23:14,280 --> 00:23:16,940 +And my average usage right now is $4. + +581 +00:23:16,960 --> 00:23:17,040 +$4. + +582 +00:23:17,240 --> 00:23:17,680 +$4. + +583 +00:23:17,700 --> 00:23:18,140 +$4. + +584 +00:23:18,140 --> 00:23:18,400 +$4. + +585 +00:23:18,400 --> 00:23:18,700 +$4. + +586 +00:23:18,760 --> 00:23:18,760 + + +587 +00:23:19,600 --> 00:23:20,040 +$4. + +588 +00:23:20,040 --> 00:23:20,040 + + +589 +00:23:20,040 --> 00:23:21,600 +I can't get that. + +590 +00:23:21,740 --> 00:23:22,180 +No fees. + +591 +00:23:22,440 --> 00:23:26,360 +So that's – you still can under certain circumstances. + +592 +00:23:26,360 --> 00:23:28,700 +And it depends on how the plan is set up. + +593 +00:23:29,180 --> 00:23:31,600 +But I wouldn't risk it, right? + +594 +00:23:31,700 --> 00:23:35,280 +It's one of these things like I don't even talk to the people about my phone at Verizon + +595 +00:23:35,280 --> 00:23:36,940 +because I don't want them to mess up my plan. + +596 +00:23:37,200 --> 00:23:37,640 +Right. + +597 +00:23:37,640 --> 00:23:37,900 +Yeah. + +598 +00:23:38,560 --> 00:23:39,500 +That is the problem. + +599 +00:23:40,300 --> 00:23:46,860 +So, yeah, unfortunately for people who try to do mobile work like myself and you, it sounds like, + +600 +00:23:47,440 --> 00:23:52,720 +it's pretty hard to find a reasonable way to get on the Internet without war driving. + +601 +00:23:54,880 --> 00:24:00,140 +And we'll probably see more of that if the cellular companies start clamping down. + +602 +00:24:00,260 --> 00:24:01,760 +We'll probably see more war driving. + +603 +00:24:01,920 --> 00:24:03,460 +And there's a bunch of utilities out there. + +604 +00:24:03,940 --> 00:24:09,280 +Just so you know, you can break into a Wi-Fi network in about 10 seconds no matter what password you put on there + +605 +00:24:09,280 --> 00:24:10,400 +if you have the right applications. + +606 +00:24:11,520 --> 00:24:16,780 +So there's – you're going to see people that are going to be driving around breaking into wireless networks. + +607 +00:24:16,800 --> 00:24:16,940 +You're going to see people that are going to be driving around breaking into wireless networks. + +608 +00:24:16,940 --> 00:24:17,720 +Just so they can get on the Internet. + +609 +00:24:18,620 --> 00:24:26,100 +Well, yeah, but that doesn't do me much good because I'm generally out in the field away from Wi-Fi spots. + +610 +00:24:27,060 --> 00:24:29,160 +That's what I'm looking for is for downloading maps. + +611 +00:24:29,700 --> 00:24:30,100 +Right. + +612 +00:24:30,180 --> 00:24:31,140 +You're in rough shape, man. + +613 +00:24:31,260 --> 00:24:32,000 +I don't have to tell you. + +614 +00:24:32,000 --> 00:24:32,220 +I am. + +615 +00:24:32,260 --> 00:24:32,940 +I really am. + +616 +00:24:33,280 --> 00:24:38,620 +You're going to have to have like four different cell phone numbers that you can get 10 gigabytes each off of. + +617 +00:24:39,280 --> 00:24:43,000 +Well, that may be something to look at considering how cheap some of these things are getting. + +618 +00:24:43,180 --> 00:24:43,420 +Yeah. + +619 +00:24:43,900 --> 00:24:44,780 +Well, good luck, man. + +620 +00:24:45,100 --> 00:24:45,540 +All right. + +621 +00:24:45,540 --> 00:24:46,000 +Well, thanks. + +622 +00:24:46,120 --> 00:24:46,380 +Thanks. + +623 +00:24:46,380 --> 00:24:46,920 +Sorry about that. + +624 +00:24:46,940 --> 00:24:47,040 +Sorry about that. + +625 +00:24:47,640 --> 00:24:51,940 +It does suck that the cellular companies are just sort of doing whatever they want. + +626 +00:24:52,640 --> 00:24:54,360 +You know, and the FCC is to blame. + +627 +00:24:54,500 --> 00:24:55,740 +That's how I look at it. + +628 +00:24:56,980 --> 00:24:57,380 +Jerks. + +629 +00:24:57,400 --> 00:24:57,900 +Give me the blues. + +630 +00:24:58,080 --> 00:24:58,860 +I'll be right back. + +631 +00:25:06,820 --> 00:25:07,220 +I'll be right back. + +632 +00:25:08,600 --> 00:25:14,360 +I'll be right back. + +633 +00:25:17,240 --> 00:25:23,260 +I'll be right back. + +634 +00:25:48,620 --> 00:25:49,020 +I'll be right back. + +635 +00:25:49,020 --> 00:25:49,020 + + +636 +00:25:49,020 --> 00:25:49,020 + + +637 +00:25:49,020 --> 00:25:49,020 + + +638 +00:25:49,020 --> 00:25:49,020 + + +639 +00:25:49,020 --> 00:25:49,020 + + +640 +00:25:49,020 --> 00:25:49,020 + + +641 +00:25:49,020 --> 00:25:51,620 +Mike Swanson, your computer guru is just a click away. + +642 +00:25:51,880 --> 00:25:53,980 +Listen and watch at gurushow.com. + +643 +00:25:54,300 --> 00:25:57,960 +This is a computer guru show on KVOI, The Voice. + +644 +00:25:59,720 --> 00:26:01,560 +Welcome back to the Computer Guru Show. + +645 +00:26:01,600 --> 00:26:04,840 +My name is Mike, here to deal with your technology needs and treat you like a person in the process. + +646 +00:26:05,840 --> 00:26:08,280 +790-2040 if you'd like to have your question answered. + +647 +00:26:08,380 --> 00:26:10,900 +Or you can join us in the chat, gurushow.com slash chat. + +648 +00:26:11,580 --> 00:26:12,660 +We've got a question in the chat. + +649 +00:26:12,700 --> 00:26:13,900 +There is a chat question. + +650 +00:26:13,980 --> 00:26:15,820 +It says, I need a new router. + +651 +00:26:15,940 --> 00:26:16,740 +I know I've... + +652 +00:26:16,740 --> 00:26:20,020 +Mike has addressed this issue before, but I cannot remember the answer. + +653 +00:26:20,520 --> 00:26:25,660 +My router is now several years old, and I have definitely noticed a loss of wireless range. + +654 +00:26:26,040 --> 00:26:29,280 +What's the best router for a decent price with decent range? + +655 +00:26:29,520 --> 00:26:32,100 +Well, there's a couple of factors involved. + +656 +00:26:32,480 --> 00:26:36,520 +Age does play a factor in routers because they just sort of burn out over time. + +657 +00:26:36,600 --> 00:26:40,800 +But generally, it's not a, you know, it doesn't get weaker. + +658 +00:26:40,940 --> 00:26:42,720 +It just quits altogether. + +659 +00:26:43,600 --> 00:26:46,720 +So your loss of range is probably interference from... + +660 +00:26:46,740 --> 00:26:47,380 +Other people. + +661 +00:26:47,880 --> 00:26:51,920 +You're probably picking up other networks around you that are stepping on your signal. + +662 +00:26:52,080 --> 00:26:56,720 +And that's especially something that looks like it adapts over time or happens over time because people move in and move out. + +663 +00:26:56,920 --> 00:26:57,280 +Right. + +664 +00:26:57,360 --> 00:26:58,880 +And a lot of people don't... + +665 +00:26:58,880 --> 00:27:01,320 +It depends on the router, really, which one you have. + +666 +00:27:01,480 --> 00:27:05,280 +If you have a several-year-old one, it probably doesn't do auto-channel switching. + +667 +00:27:06,300 --> 00:27:10,720 +So you might want to just try a different channel rather than buying a new router. + +668 +00:27:11,780 --> 00:27:12,800 +So you could... + +669 +00:27:12,800 --> 00:27:15,740 +By default, they come on channel 6, which is right in the middle of the range. + +670 +00:27:15,740 --> 00:27:17,000 +There's 12 channels. + +671 +00:27:17,100 --> 00:27:19,300 +There's technically 14, but the last two don't count. + +672 +00:27:20,960 --> 00:27:22,740 +So it's right in the middle of the range there. + +673 +00:27:22,920 --> 00:27:24,640 +And so you might want to try a different one. + +674 +00:27:24,680 --> 00:27:29,040 +You can get an app for your cell phone, especially if you have an Android phone that's called Wi-Fi Analyzer. + +675 +00:27:29,280 --> 00:27:33,540 +It'll tell you what channels are most heavily used around you. + +676 +00:27:33,620 --> 00:27:38,220 +And you can then pick a channel that may be less congested. + +677 +00:27:38,240 --> 00:27:40,000 +And that could probably help out. + +678 +00:27:40,220 --> 00:27:44,380 +Also, if you're going to go buy a new router, there's really no reason not to buy a dual-band router at this point. + +679 +00:27:44,780 --> 00:27:45,140 +Right. + +680 +00:27:45,740 --> 00:27:51,260 +So if you want a decent router that is priced somewhat affordably, + +681 +00:27:51,340 --> 00:27:55,740 +the AC routers by Asus are wonderful routers. + +682 +00:27:55,860 --> 00:27:57,080 +They have decent range. + +683 +00:27:57,280 --> 00:28:00,880 +They're tri-band in many cases, but at least dual-band. + +684 +00:28:01,620 --> 00:28:03,860 +And they are nice and quick. + +685 +00:28:04,020 --> 00:28:07,320 +And so you're looking at about $120 or so. + +686 +00:28:07,540 --> 00:28:10,100 +You know, I just bought a cheapo dual-band router because I was like, + +687 +00:28:10,180 --> 00:28:10,960 +I'm going to buy one anyway. + +688 +00:28:11,100 --> 00:28:13,900 +Let's see if this TP-Link router can actually do anything. + +689 +00:28:14,580 --> 00:28:15,720 +Surprisingly, so far... + +690 +00:28:15,740 --> 00:28:16,160 +Sure, no problems. + +691 +00:28:16,340 --> 00:28:18,920 +And you're in a highly congested area. + +692 +00:28:19,500 --> 00:28:24,460 +Yeah, it robs in an apartment complex, so there's lots of networks around it. + +693 +00:28:24,500 --> 00:28:26,260 +My Wi-Fi is now the most powerful Wi-Fi. + +694 +00:28:26,800 --> 00:28:27,160 +Right. + +695 +00:28:27,480 --> 00:28:32,260 +And if you have an older router, if you're feeling like you want to get some extra life out of it, + +696 +00:28:32,280 --> 00:28:37,980 +and you want to be able to crank up the power on it or change any setting that you like, + +697 +00:28:38,020 --> 00:28:42,740 +you can look at something like the Tomato ROMs or the DDWRT. + +698 +00:28:43,480 --> 00:28:44,480 +Just be careful with that. + +699 +00:28:44,720 --> 00:28:45,080 +Yeah. + +700 +00:28:45,760 --> 00:28:49,620 +If you think you might be buying a new router anyway, you can experiment. + +701 +00:28:50,120 --> 00:28:52,920 +Because it's entirely possible you'll brick it if you do it wrong. + +702 +00:28:53,080 --> 00:28:57,240 +Yeah, you need to make sure you're looking at the revision numbers for that firmware because it does matter. + +703 +00:28:57,700 --> 00:28:58,860 +Revisions do count. + +704 +00:28:59,040 --> 00:29:00,720 +Otherwise, you'll have a very expensive paperweight. + +705 +00:29:01,020 --> 00:29:01,920 +Yeah, so... + +706 +00:29:01,920 --> 00:29:06,640 +Yeah, if you're looking like you can afford a $100 router, + +707 +00:29:07,820 --> 00:29:10,200 +it'll last you for a good five or six years. + +708 +00:29:10,380 --> 00:29:12,840 +And that's not a terrible investment. + +709 +00:29:13,140 --> 00:29:15,040 +So, there you are. + +710 +00:29:16,180 --> 00:29:16,560 +Ow. + +711 +00:29:16,960 --> 00:29:18,360 +I just hit myself in the face. + +712 +00:29:18,380 --> 00:29:20,480 +I thought it was me who was injuring myself with the headphones today. + +713 +00:29:20,980 --> 00:29:22,320 +Yeah, it's just... + +714 +00:29:22,960 --> 00:29:23,900 +No, that didn't happen, remember? + +715 +00:29:24,100 --> 00:29:24,580 +Yeah, that's right. + +716 +00:29:25,440 --> 00:29:25,820 +Okay. + +717 +00:29:26,900 --> 00:29:29,100 +Let's talk about AMD for a moment. + +718 +00:29:29,440 --> 00:29:29,820 +Okay. + +719 +00:29:29,880 --> 00:29:31,620 +I'm actually excited to talk about this for once. + +720 +00:29:31,620 --> 00:29:33,360 +I told you last week. + +721 +00:29:33,380 --> 00:29:35,560 +I said, Rob will want to talk about this, so... + +722 +00:29:35,560 --> 00:29:37,180 +Yeah, well, especially... + +723 +00:29:37,180 --> 00:29:39,220 +I'm glad that it was this week because last week was release. + +724 +00:29:39,340 --> 00:29:40,900 +This week, we've had a week. + +725 +00:29:40,960 --> 00:29:45,060 +So, people have played around with Ryzen and benchmarked it on their own. + +726 +00:29:45,740 --> 00:29:48,700 +So, we've seen stuff outside of AMD's carefully controlled environment. + +727 +00:29:49,240 --> 00:29:55,480 +And kind of what that has revealed is that not quite meeting up to the highest-end Intel stuff right now, + +728 +00:29:55,600 --> 00:30:00,340 +but when you factor in the price and the performance you're getting for the price, it blows Intel away. + +729 +00:30:01,000 --> 00:30:01,520 +Right. + +730 +00:30:01,560 --> 00:30:04,800 +So, the performance differences are negligible. + +731 +00:30:04,900 --> 00:30:08,920 +Yeah, especially when you consider that the highest-end Ryzen processor is $500. + +732 +00:30:09,720 --> 00:30:10,980 +As opposed to $1,200? + +733 +00:30:11,280 --> 00:30:14,940 +Yeah, as opposed to the cost of the machine if you buy the Ryzen processor. + +734 +00:30:15,240 --> 00:30:15,660 +Right. + +735 +00:30:15,740 --> 00:30:19,440 +Now, a lot of people have said that the gaming performance isn't great. + +736 +00:30:20,040 --> 00:30:24,240 +That it's usually just best to use the Ryzen as a workhorse machine. + +737 +00:30:24,460 --> 00:30:30,560 +But AMD's CEO has promised that patches and tweaks will fix that and that gaming performance will only go up. + +738 +00:30:30,700 --> 00:30:30,920 +Right. + +739 +00:30:30,960 --> 00:30:32,860 +And I imagine that there's a certain amount of... + +740 +00:30:32,860 --> 00:30:36,620 +That the games are written in such a way... + +741 +00:30:36,620 --> 00:30:41,380 +Or the drivers for the processor are written in such a way that they favor Intel right now. + +742 +00:30:41,620 --> 00:30:41,900 +Yeah. + +743 +00:30:41,960 --> 00:30:44,720 +And the other thing is that CPU performance isn't... + +744 +00:30:45,220 --> 00:30:45,700 +Isn't... + +745 +00:30:45,700 --> 00:30:45,720 +Isn't... + +746 +00:30:45,740 --> 00:30:47,960 +It's as important as a lot of people think when it comes to gaming. + +747 +00:30:48,220 --> 00:30:48,540 +Right. + +748 +00:30:48,900 --> 00:30:50,520 +Especially if you have a nice GPU. + +749 +00:30:51,360 --> 00:30:53,940 +And you've got RAM and all of that other good stuff that is important. + +750 +00:30:54,400 --> 00:30:55,540 +Now, if you're just... + +751 +00:30:55,540 --> 00:31:00,940 +If this is like a workhorse machine that you also use as gaming, then, of course, CPU is going to make a difference. + +752 +00:31:01,620 --> 00:31:03,340 +But if you're a gamer, then... + +753 +00:31:03,340 --> 00:31:05,540 +Yeah, you should hopefully have a nice video card to go with it. + +754 +00:31:05,540 --> 00:31:05,640 +Right. + +755 +00:31:05,840 --> 00:31:09,120 +It's important to have a nice processor, but your graphics card is going to make a bigger difference, obviously. + +756 +00:31:09,340 --> 00:31:09,660 +Right. + +757 +00:31:09,700 --> 00:31:10,780 +And, of course, AMD always... + +758 +00:31:10,780 --> 00:31:14,800 +They tie in the ATI cards into their processing platforms. + +759 +00:31:14,800 --> 00:31:17,380 +So they can talk to each other directly. + +760 +00:31:17,620 --> 00:31:17,980 +Yeah. + +761 +00:31:18,060 --> 00:31:20,020 +And historically, that's what they've done. + +762 +00:31:20,120 --> 00:31:24,500 +And I'm not sure that they're doing that with the Ryzen cards, but I imagine that's probably built in. + +763 +00:31:24,580 --> 00:31:28,760 +Well, they've talked about how there's going to be a GPU refresh for AMD as well soon. + +764 +00:31:28,840 --> 00:31:29,640 +So that's good. + +765 +00:31:30,260 --> 00:31:34,520 +I mean, overall, I'm just happy to see, like, some competition. + +766 +00:31:35,440 --> 00:31:35,880 +Yeah. + +767 +00:31:36,220 --> 00:31:36,660 +Yeah. + +768 +00:31:36,720 --> 00:31:42,940 +And I think that first generation, we can't put all of our hopes in a single basket when it comes to first generation processors. + +769 +00:31:44,580 --> 00:31:51,280 +But I'm sure as AMD manages to, you know, kind of get the hang of this as far as, oh, yeah, we're building real processors now. + +770 +00:31:51,540 --> 00:31:58,460 +This makes me happy because traditionally I've been a fan of AMD just because the price difference is so astronomical. + +771 +00:31:59,620 --> 00:32:00,020 +Yeah. + +772 +00:32:00,040 --> 00:32:03,940 +And unfortunately, though, previously your performance difference was so astronomical as well. + +773 +00:32:04,100 --> 00:32:04,300 +Right. + +774 +00:32:04,360 --> 00:32:10,240 +But, I mean, that's for people who are comparing the highest end AMD to the highest end Intel, which isn't a fair comparison at all. + +775 +00:32:10,360 --> 00:32:12,820 +Well, I was looking at the, you know, the stuff that I normally see. + +776 +00:32:12,940 --> 00:32:16,180 +It's where, you know, clients will go out and they'll be like, oh, it's a quad core. + +777 +00:32:16,460 --> 00:32:16,820 +Right. + +778 +00:32:16,920 --> 00:32:19,380 +And then it just performs like an atom. + +779 +00:32:19,560 --> 00:32:22,100 +Well, in a lot of cases, that's because it basically is. + +780 +00:32:22,280 --> 00:32:27,940 +Like, AMD was doing this thing before where you'd only have, like, say, four compute modules on the chip. + +781 +00:32:28,100 --> 00:32:28,460 +Right. + +782 +00:32:28,520 --> 00:32:31,800 +And then they were using some software trickery to make it behave like an eight core. + +783 +00:32:33,020 --> 00:32:38,640 +So the new Ryzen stuff is actually eight core as well as actually four core. + +784 +00:32:38,760 --> 00:32:40,520 +Thanks for not lying to me anymore, AMD. + +785 +00:32:40,720 --> 00:32:42,820 +To be fair, Intel kind of did that, too, for a while. + +786 +00:32:42,940 --> 00:32:43,420 +Right. + +787 +00:32:43,600 --> 00:32:50,580 +Well, like the processor that I have on my computer, it's a fairly high end Intel chip. + +788 +00:32:50,860 --> 00:32:55,880 +And it reports 12 cores. + +789 +00:32:56,100 --> 00:32:56,360 +Right. + +790 +00:32:56,500 --> 00:32:58,180 +And it's an eight. + +791 +00:32:58,520 --> 00:32:58,880 +Right. + +792 +00:32:58,920 --> 00:33:01,480 +And so there's some software trickery happening there. + +793 +00:33:01,640 --> 00:33:03,600 +No, and I mean, it's not like they're just straight up lying. + +794 +00:33:03,720 --> 00:33:07,680 +Like, you do get better performance out of that processor than you would out of just an eight core. + +795 +00:33:07,960 --> 00:33:08,700 +This is true. + +796 +00:33:08,860 --> 00:33:12,000 +I mean, and, yeah, don't get me wrong, that computer moves right along. + +797 +00:33:13,040 --> 00:33:16,540 +But it somewhat feels dishonest. + +798 +00:33:16,700 --> 00:33:22,380 +I think the reason why I've always liked AMD more than Intel is because I've never been somebody. + +799 +00:33:22,460 --> 00:33:25,020 +I can't just, I'm not going to spend $5,000 on a computer. + +800 +00:33:25,280 --> 00:33:27,860 +And I'm, like, this is my life, you know. + +801 +00:33:27,980 --> 00:33:28,320 +Right. + +802 +00:33:28,980 --> 00:33:33,600 +So I like AMD because it's like you can build a machine that does what you want it to do, + +803 +00:33:33,660 --> 00:33:36,020 +and it's not going to cost you the cost of a new car. + +804 +00:33:36,420 --> 00:33:36,800 +Right. + +805 +00:33:37,000 --> 00:33:41,900 +Yeah, because you can easily, if you wanted to build a top end, like, + +806 +00:33:41,900 --> 00:33:47,840 +really high end machine, an Intel based machine, you can drop four grand easy. + +807 +00:33:48,160 --> 00:33:48,480 +Yeah. + +808 +00:33:48,780 --> 00:33:53,380 +And especially if you're doing, like, you decide that you want to be a professional gamer, + +809 +00:33:53,440 --> 00:33:56,460 +and you've got three, you know, 1080s in there or something like that. + +810 +00:33:56,660 --> 00:34:01,180 +Yeah, and I mean, that's the other thing I was going to say is that I'm excited about a graphics refresh for AMD as well, + +811 +00:34:01,220 --> 00:34:04,540 +because I'm certainly not a fan of their graphics cards for the most part. + +812 +00:34:05,240 --> 00:34:10,240 +You know, like, the RX 480 is like a cool card if you need budget VR kind of stuff. + +813 +00:34:10,440 --> 00:34:10,660 +Right. + +814 +00:34:10,660 --> 00:34:15,920 +But if you're a serious gamer or care about graphics at all, you're going the GTX route for sure. + +815 +00:34:16,120 --> 00:34:16,300 +Right. + +816 +00:34:16,580 --> 00:34:17,680 +NVIDIA all the way. + +817 +00:34:18,200 --> 00:34:19,180 +Let's go ahead and take a call here. + +818 +00:34:19,200 --> 00:34:19,700 +Let's talk to Ron. + +819 +00:34:19,760 --> 00:34:20,460 +Hey, Ron, how are you? + +820 +00:34:21,700 --> 00:34:22,440 +I'm doing good. + +821 +00:34:22,580 --> 00:34:23,260 +Hope you're doing good. + +822 +00:34:23,600 --> 00:34:24,140 +We are. + +823 +00:34:24,240 --> 00:34:24,980 +I am anyway. + +824 +00:34:25,060 --> 00:34:25,660 +How are you doing, Ron? + +825 +00:34:25,760 --> 00:34:26,040 +Not bad. + +826 +00:34:26,140 --> 00:34:26,360 +All right. + +827 +00:34:26,820 --> 00:34:27,180 +Yep. + +828 +00:34:27,780 --> 00:34:28,640 +Status check complete. + +829 +00:34:29,640 --> 00:34:30,000 +Cool. + +830 +00:34:30,300 --> 00:34:30,660 +Good. + +831 +00:34:30,800 --> 00:34:31,280 +It passes. + +832 +00:34:33,460 --> 00:34:40,640 +Now, is it a privacy concern to log into a website that's not Facebook with my phone? + +833 +00:34:40,640 --> 00:34:44,980 +My Facebook email and password. + +834 +00:34:45,920 --> 00:34:46,540 +All right. + +835 +00:34:46,560 --> 00:34:49,400 +So security concern, not so much. + +836 +00:34:49,440 --> 00:34:50,740 +Privacy concern, yes. + +837 +00:34:52,320 --> 00:34:54,180 +So those are two different things. + +838 +00:34:54,300 --> 00:34:56,100 +But privacy, yeah. + +839 +00:34:56,180 --> 00:35:00,080 +I mean, if you want to be private, you're not logging into anything with a Facebook login. + +840 +00:35:00,080 --> 00:35:03,020 +When you log in with Facebook, Facebook sees exactly what you're doing. + +841 +00:35:03,100 --> 00:35:03,700 +They can see everything. + +842 +00:35:03,960 --> 00:35:05,740 +Just know that when you do it. + +843 +00:35:06,960 --> 00:35:07,440 +Okay. + +844 +00:35:07,560 --> 00:35:07,660 +All right. + +845 +00:35:07,820 --> 00:35:09,060 +Now, you can... + +846 +00:35:09,060 --> 00:35:09,780 +You can... + +847 +00:35:09,780 --> 00:35:16,060 +Even if you're doing something like a VPN, though, that allows that traffic to be reported + +848 +00:35:16,060 --> 00:35:16,680 +to Facebook. + +849 +00:35:16,740 --> 00:35:17,580 +So they at least... + +850 +00:35:17,580 --> 00:35:19,200 +They know something about your account. + +851 +00:35:19,260 --> 00:35:20,580 +They know that you have an account there. + +852 +00:35:21,220 --> 00:35:25,420 +And so if you're concerned about Facebook being able to collect a bunch of information + +853 +00:35:25,420 --> 00:35:27,360 +about you, you don't log in with Facebook. + +854 +00:35:27,600 --> 00:35:31,260 +Now, when it comes to security, if you're worried about that website having your Facebook + +855 +00:35:31,260 --> 00:35:35,160 +username and password, in any legit case, that's not how it works. + +856 +00:35:35,220 --> 00:35:36,460 +So you don't have to worry about that. + +857 +00:35:37,220 --> 00:35:37,620 +So... + +858 +00:35:38,100 --> 00:35:39,680 +But when you type in your password... + +859 +00:35:39,780 --> 00:35:41,340 +Or don't they have it there? + +860 +00:35:41,560 --> 00:35:42,980 +Well, when you log... + +861 +00:35:42,980 --> 00:35:47,620 +When you sign up with Facebook, normally it'll open a pop-up or a Facebook window or it'll + +862 +00:35:47,620 --> 00:35:48,260 +go to Facebook. + +863 +00:35:48,480 --> 00:35:52,220 +And then at that point, you're just authenticating with Facebook and the website is looking to + +864 +00:35:52,220 --> 00:35:54,200 +Facebook to get a thumbs up, essentially. + +865 +00:35:54,500 --> 00:35:54,880 +Right. + +866 +00:35:54,940 --> 00:36:00,760 +So when you sign in with Facebook, that little pop-up that comes up and you say, hey, I'm + +867 +00:36:00,760 --> 00:36:06,460 +allowing this to happen, Facebook sets a very special cookie that says, I am allowed to + +868 +00:36:06,460 --> 00:36:06,840 +do this. + +869 +00:36:06,940 --> 00:36:08,300 +And it's time limited. + +870 +00:36:08,520 --> 00:36:08,860 +It's a... + +871 +00:36:08,860 --> 00:36:09,480 +It's a... + +872 +00:36:09,480 --> 00:36:09,480 + + +873 +00:36:09,480 --> 00:36:09,520 +It's a... + +874 +00:36:09,520 --> 00:36:09,600 +It's a... + +875 +00:36:09,600 --> 00:36:09,620 +It's a... + +876 +00:36:09,620 --> 00:36:09,680 +It's a... + +877 +00:36:09,680 --> 00:36:09,760 +It's a... + +878 +00:36:09,760 --> 00:36:09,760 + + +879 +00:36:09,780 --> 00:36:10,220 +It's a... + +880 +00:36:10,220 --> 00:36:12,960 +It's fairly secure, but it is... + +881 +00:36:12,960 --> 00:36:14,520 +All it is is an authentication process. + +882 +00:36:14,740 --> 00:36:19,900 +So the website that you're logging into then goes to Facebook and says, hey, this user + +883 +00:36:19,900 --> 00:36:21,480 +says we can log in as them. + +884 +00:36:21,620 --> 00:36:22,320 +Is that cool? + +885 +00:36:22,480 --> 00:36:24,880 +Facebook then responds yes and then deletes the cookie. + +886 +00:36:25,820 --> 00:36:26,300 +Oh. + +887 +00:36:26,940 --> 00:36:27,420 +Okay. + +888 +00:36:27,500 --> 00:36:32,520 +So as far as security is concerned, it's not really a security issue, but privacy, yes. + +889 +00:36:33,900 --> 00:36:34,380 +Okay. + +890 +00:36:34,380 --> 00:36:38,880 +Because, you know, Facebook collects everything and then will be our future overlord. + +891 +00:36:38,980 --> 00:36:39,760 +Honestly, I'm really curious. + +892 +00:36:39,760 --> 00:36:43,840 +not a fan of signing into websites with other websites. I kind of think you should have + +893 +00:36:43,840 --> 00:36:46,400 +a separate account for each one for security reasons. + +894 +00:36:46,480 --> 00:36:49,440 +It's because we are like paranoid security dudes. + +895 +00:36:49,480 --> 00:36:49,620 +Yeah. + +896 +00:36:49,700 --> 00:36:50,200 +But yes. + +897 +00:36:50,460 --> 00:36:54,400 +Mostly that extends for me. That's because of Wi-Fi, like sidejacking and that kind of + +898 +00:36:54,400 --> 00:36:54,560 +thing. + +899 +00:36:54,740 --> 00:37:00,100 +Right. We should do a sidejacking demo. We're actually planning a get-together where we + +900 +00:37:00,100 --> 00:37:03,860 +can get listeners to come down probably April. + +901 +00:37:04,160 --> 00:37:04,800 +Something like that. + +902 +00:37:04,960 --> 00:37:07,000 +And we should do a sidejacking demo. + +903 +00:37:07,160 --> 00:37:07,660 +Yeah, that would be a lot of fun. + +904 +00:37:07,660 --> 00:37:08,400 +Just to show how it works. + +905 +00:37:08,860 --> 00:37:09,540 +Sounds good. + +906 +00:37:09,760 --> 00:37:14,060 +Where you guys can come down here and then we can show you the inner workings of your + +907 +00:37:14,060 --> 00:37:15,320 +Facebook page without permission. + +908 +00:37:16,220 --> 00:37:17,520 +That sounds good. + +909 +00:37:18,140 --> 00:37:25,420 +So now I'm curious. So on that third or the other website, I guess at that point, once + +910 +00:37:25,420 --> 00:37:30,240 +they get permission from Facebook, they are able to, or their users on that website are + +911 +00:37:30,240 --> 00:37:34,160 +able to see your profile as if they are... + +912 +00:37:34,160 --> 00:37:37,820 +It depends on the permissions. It depends on the permissions that the website's requesting. + +913 +00:37:38,080 --> 00:37:39,320 +Right. In most cases... + +914 +00:37:39,760 --> 00:37:39,780 +Yeah. + +915 +00:37:39,780 --> 00:37:39,780 + + +916 +00:37:39,780 --> 00:37:39,780 + + +917 +00:37:39,780 --> 00:37:39,780 + + +918 +00:37:39,780 --> 00:37:39,780 + + +919 +00:37:39,780 --> 00:37:45,720 +So the only thing that's passing across is your basic public profile information. So + +920 +00:37:45,720 --> 00:37:51,680 +your name and anything else that you've marked as public consumption, that website has access + +921 +00:37:51,680 --> 00:37:52,020 +to. + +922 +00:37:52,200 --> 00:37:52,780 +Okay. + +923 +00:37:52,980 --> 00:37:57,700 +Anything that's marked as private or sensitive information is not passed across to those + +924 +00:37:57,700 --> 00:38:02,280 +things. And that's why a lot of pages, especially if they...even if they allow the sign-in as + +925 +00:38:02,280 --> 00:38:05,840 +Facebook, will then ask you for additional information. It's because they can't pull + +926 +00:38:05,840 --> 00:38:07,000 +that information from Facebook. + +927 +00:38:07,620 --> 00:38:08,200 +Okay. + +928 +00:38:08,800 --> 00:38:12,880 +So in other words, things you have marked as just for friends, they can't see unless + +929 +00:38:12,880 --> 00:38:14,560 +you give permission specifically. + +930 +00:38:14,800 --> 00:38:15,300 +Okay. Right. + +931 +00:38:15,380 --> 00:38:15,700 +Sounds good. + +932 +00:38:16,160 --> 00:38:16,560 +Now... + +933 +00:38:16,560 --> 00:38:17,340 +All right. Thanks for the... + +934 +00:38:17,340 --> 00:38:21,760 +And one of the reasons I don't do it is because there was a bad habit of several + +935 +00:38:21,760 --> 00:38:26,480 +websites that would be like, hey, we're going to post as you whenever the heck we want. + +936 +00:38:26,700 --> 00:38:34,500 +And we're going to be like, you signed in to twinkies.com with Facebook. And so it'll + +937 +00:38:34,500 --> 00:38:37,380 +randomly post things like, I love Twinkies. + +938 +00:38:37,980 --> 00:38:39,640 +And it's just like, come on now. + +939 +00:38:39,820 --> 00:38:42,900 +I don't think that's happening so much these days because they kind of got called + +940 +00:38:42,900 --> 00:38:43,760 +out for that kind of stuff. + +941 +00:38:44,160 --> 00:38:48,840 +Yeah. It doesn't happen. But that's what turned me off to the whole signing in as...with + +942 +00:38:48,840 --> 00:38:55,780 +another website. Not to mention that how we like every week talk about, hey, this site + +943 +00:38:55,780 --> 00:39:00,160 +got hacked. You should probably change all your passwords. And that's one of the reasons + +944 +00:39:00,160 --> 00:39:05,280 +for it. It's just like, I don't sign in with anything as Facebook. It's just like, nope. + +945 +00:39:05,460 --> 00:39:07,360 +In fact, I don't even open Facebook. I don't even... + +946 +00:39:07,360 --> 00:39:07,360 + + +947 +00:39:07,360 --> 00:39:08,580 +I don't sign in with Facebook, but like once a month maybe. + +948 +00:39:09,040 --> 00:39:11,980 +I do it at work for work and that's it. I don't have a Facebook. + +949 +00:39:12,220 --> 00:39:17,060 +Yeah. So yeah. If you want my opinion, don't sign in as Facebook and just create an account + +950 +00:39:17,060 --> 00:39:20,540 +and keep...have a separate password and make sure that it's different than any of your + +951 +00:39:20,540 --> 00:39:26,080 +other passwords because security and then be safe and then don't worry about it. + +952 +00:39:26,480 --> 00:39:31,100 +So let's say if I want to...if I do that, but then I want people on the other website + +953 +00:39:31,100 --> 00:39:36,080 +to see my profile, I would just send them, I guess, the URL of my basic... + +954 +00:39:36,940 --> 00:39:37,340 +Yeah. + +955 +00:39:37,340 --> 00:39:37,560 +...Facebook page. + +956 +00:39:37,560 --> 00:39:40,560 +Yeah. You could...I mean, if you're talking like another social network or something, + +957 +00:39:40,660 --> 00:39:42,560 +you could just link to your Facebook page. + +958 +00:39:42,720 --> 00:39:43,880 +Yeah. Okay. + +959 +00:39:44,020 --> 00:39:47,560 +And then that way, at least the two social sites don't have direct communication with + +960 +00:39:47,560 --> 00:39:48,560 +one another at that point. + +961 +00:39:49,220 --> 00:39:51,840 +Right. That's a good way of doing it. Okay. Thanks. + +962 +00:39:51,840 --> 00:39:53,460 +All right. Thanks for the call. I appreciate it. + +963 +00:39:54,040 --> 00:39:54,380 +Bye. + +964 +00:39:54,500 --> 00:39:58,300 +We're going to take a quick break. When we get back, more of The Computer Guru + +965 +00:39:58,300 --> 00:40:01,260 +Show at 7902040. Give us a call. + +966 +00:40:07,340 --> 00:40:10,100 +All right. + +967 +00:40:10,440 --> 00:40:11,520 +Bye. + +968 +00:40:13,200 --> 00:40:14,600 +Bye. + +969 +00:40:21,680 --> 00:40:21,700 +Bye. + +970 +00:40:21,960 --> 00:40:22,780 +Bye. + +971 +00:40:27,320 --> 00:40:28,720 +Bye. + +972 +00:40:28,720 --> 00:40:29,960 +Bye. + +973 +00:40:29,960 --> 00:40:30,180 +Bye. + +974 +00:40:30,320 --> 00:40:30,760 +Bye. + +975 +00:40:37,560 --> 00:40:38,300 +Bye. + +976 +00:40:49,860 --> 00:40:50,600 +Bye. + +977 +00:40:52,440 --> 00:40:53,180 +Bye. + +978 +00:40:53,380 --> 00:40:53,380 + + +979 +00:40:53,980 --> 00:40:54,720 +Bye. + +980 +00:40:54,800 --> 00:40:55,160 +Bye. + +981 +00:40:55,340 --> 00:40:56,080 +Bye. + +982 +00:40:56,080 --> 00:40:56,080 + + +983 +00:40:56,080 --> 00:40:56,080 + + +984 +00:40:56,080 --> 00:40:56,080 + + +985 +00:40:56,080 --> 00:40:56,380 +Bye. + +986 +00:40:56,380 --> 00:40:56,380 + + +987 +00:40:56,380 --> 00:40:56,380 + + +988 +00:40:56,380 --> 00:40:56,380 + + +989 +00:40:56,380 --> 00:40:56,380 + + +990 +00:40:56,380 --> 00:40:56,380 + + +991 +00:40:56,380 --> 00:40:56,380 + + +992 +00:40:56,380 --> 00:40:56,380 + + +993 +00:40:56,440 --> 00:40:56,440 + + +994 +00:40:56,440 --> 00:40:56,440 + + +995 +00:40:56,620 --> 00:40:57,040 +Bye. + +996 +00:40:57,220 --> 00:40:57,600 +Bye. + +997 +00:40:57,760 --> 00:40:57,900 +Bye. + +998 +00:40:58,020 --> 00:40:58,420 +Bye. + +999 +00:40:58,440 --> 00:40:58,460 +Bye. + +1000 +00:40:58,700 --> 00:40:59,280 +Bye. + +1001 +00:40:59,620 --> 00:41:00,360 +Bye. + +1002 +00:41:00,900 --> 00:41:01,100 +Bye. + +1003 +00:41:01,720 --> 00:41:01,860 +Bye. + +1004 +00:41:01,860 --> 00:41:04,120 +There's the, why haven't you changed your password recently? + +1005 +00:41:07,240 --> 00:41:09,260 +And it's just the thing I complain about all the time. + +1006 +00:41:09,280 --> 00:41:10,100 +Change your passwords, people. + +1007 +00:41:10,340 --> 00:41:15,360 +But here's some reasons that you may want to, especially if you are traveling internationally. + +1008 +00:41:15,980 --> 00:41:19,720 +Yeah, we were talking about this before the show, and I think that we were both a little bit like, + +1009 +00:41:19,840 --> 00:41:23,480 +that's so silly, but then at the end of the day, as long as you're changing your passwords regularly, + +1010 +00:41:23,940 --> 00:41:24,800 +there's nothing to worry about. + +1011 +00:41:25,060 --> 00:41:29,460 +All right, so it turns out that the TSA is not allowed to confiscate your laptop. + +1012 +00:41:29,660 --> 00:41:31,060 +They're not allowed to ask you for passwords. + +1013 +00:41:31,060 --> 00:41:37,340 +They're not allowed to invade your, you know, there's some Fourth Amendment that applies to the TSA. + +1014 +00:41:38,260 --> 00:41:39,980 +But not so much with Border Patrol. + +1015 +00:41:40,380 --> 00:41:41,920 +Yeah, they say it's a gray area. + +1016 +00:41:42,080 --> 00:41:47,000 +Well, yeah, it turns out that 10 miles on either side of the border is this gray area. + +1017 +00:41:47,080 --> 00:41:47,680 +Literally, yeah. + +1018 +00:41:47,840 --> 00:41:52,340 +Where you don't necessarily have constitutional rights, which is pretty interesting. + +1019 +00:41:53,400 --> 00:41:59,620 +I'm sure that some lawyer will be happy to explain to me how crazy it really is, + +1020 +00:41:59,700 --> 00:42:00,960 +or maybe it's more cut and dry. + +1021 +00:42:01,060 --> 00:42:01,900 +than I suspect it is. + +1022 +00:42:01,980 --> 00:42:05,860 +But according to the article, Border Patrol can do whatever the heck they want + +1023 +00:42:05,860 --> 00:42:08,700 +when it comes to getting into your digital persona. + +1024 +00:42:09,020 --> 00:42:11,960 +Including just forcibly detaining you until you give them your password? + +1025 +00:42:12,220 --> 00:42:18,360 +Yeah, and then they can search your devices and see which terrorist groups + +1026 +00:42:18,360 --> 00:42:19,880 +that you have been chatting with recently. + +1027 +00:42:20,520 --> 00:42:25,500 +And so, yeah, there's a little bit of a weirdness in there. + +1028 +00:42:26,940 --> 00:42:30,640 +Now, it just turns out, you know, that one, I go through Border Patrol, + +1029 +00:42:31,060 --> 00:42:32,160 +Border Patrol checkpoints all the time. + +1030 +00:42:32,180 --> 00:42:37,760 +And because I have to go out to places where there's a checkpoint in between. + +1031 +00:42:39,120 --> 00:42:41,440 +And they never give me grief. + +1032 +00:42:41,960 --> 00:42:43,180 +I mean, look at me. + +1033 +00:42:43,260 --> 00:42:44,560 +They never give me grief. + +1034 +00:42:45,820 --> 00:42:50,180 +Although, I've been kind of messing with them a little bit, you know, as far as, you know, + +1035 +00:42:50,180 --> 00:42:51,860 +I come back and they'll be like, are you an American citizen? + +1036 +00:42:52,040 --> 00:42:54,380 +And I'm like, see, you know, or something. + +1037 +00:42:54,560 --> 00:42:56,460 +And they just wave me through, like, get out of here. + +1038 +00:42:56,600 --> 00:42:59,980 +If you started wearing glasses and driving an RV down there, I think they might have something to say. + +1039 +00:43:00,020 --> 00:43:00,940 +Oh, maybe I should go to Walter. + +1040 +00:43:01,060 --> 00:43:01,400 +Yeah. + +1041 +00:43:02,980 --> 00:43:07,520 +But it turns out that they can ask you for your passwords and hold you. + +1042 +00:43:08,080 --> 00:43:09,460 +And you know what you do? + +1043 +00:43:09,740 --> 00:43:11,480 +Change your password right afterwards. + +1044 +00:43:11,700 --> 00:43:12,680 +That's what you do. + +1045 +00:43:13,620 --> 00:43:14,740 +This is the Computer Guru Show. + +1046 +00:43:14,820 --> 00:43:17,700 +Stick around for the second hour coming up next, right after these messages. + +1047 +00:43:17,800 --> 00:43:20,520 +By the way, thanks to Protection Auto Works for supporting the first hour. + +1048 +00:43:20,660 --> 00:43:21,280 +We'll be right back. + +1049 +00:43:23,940 --> 00:43:25,060 +We love doing this show. + +1050 +00:43:25,180 --> 00:43:27,220 +It's pretty expensive, though, so we could use your help. + +1051 +00:43:27,320 --> 00:43:29,840 +For as little as a dollar a month, you can help us keep the lights on, + +1052 +00:43:29,900 --> 00:43:31,040 +as well as contribute to our podcast. + +1053 +00:43:31,060 --> 00:43:31,800 +We're a fun side project. + +1054 +00:43:32,240 --> 00:43:35,720 +You'll be funding everything from tech tutorial videos that we'll be putting on our YouTube channel + +1055 +00:43:35,720 --> 00:43:38,060 +to crazy stuff like melting Furbies with thermite. + +1056 +00:43:38,320 --> 00:43:39,020 +We're not joking. + +1057 +00:43:39,100 --> 00:43:41,640 +We actually did that, and our Patreon supporters made it happen. + +1058 +00:43:41,860 --> 00:43:44,680 +With your contribution, you'll not only get access to that content and more, + +1059 +00:43:44,820 --> 00:43:46,320 +but you'll help us create more in the future. + +1060 +00:43:46,760 --> 00:43:49,260 +We even have rewards set up, depending on your contribution level, + +1061 +00:43:49,360 --> 00:43:51,680 +where you can do things like advertise your business with us + +1062 +00:43:51,680 --> 00:43:54,340 +or even be a guest on the show to talk about whatever you want. + +1063 +00:43:54,540 --> 00:43:57,900 +If you'd like to get started, go to gurushow.com and click the Patreon logo. + +1064 +00:44:00,320 --> 00:44:01,040 +Thank you. + +1065 +00:44:01,060 --> 00:44:03,300 +Why don't people understand my intention? + +1066 +00:44:04,040 --> 00:44:05,140 +Computer running slow? + +1067 +00:44:05,340 --> 00:44:05,620 +Avoiding. + +1068 +00:44:05,840 --> 00:44:06,620 +Caught a virus? + +1069 +00:44:06,920 --> 00:44:07,120 +What? + +1070 +00:44:07,300 --> 00:44:07,620 +No! + +1071 +00:44:08,100 --> 00:44:08,380 +When? + +1072 +00:44:08,660 --> 00:44:12,080 +Does your computer seem to have a life of its own? + +1073 +00:44:12,500 --> 00:44:13,020 +Malfunction. + +1074 +00:44:13,440 --> 00:44:14,560 +Need input. + +1075 +00:44:14,840 --> 00:44:16,520 +The computer guru is here. + +1076 +00:44:16,680 --> 00:44:17,600 +My God, you're here! + +1077 +00:44:18,000 --> 00:44:18,840 +Call in now. + +1078 +00:44:19,160 --> 00:44:22,040 +Now, it's Mike Swanson, your computer guru. + +1079 +00:44:24,660 --> 00:44:26,560 +Welcome back to the Computer Guru Show. + +1080 +00:44:26,600 --> 00:44:28,380 +My name is Mike, here to deal with your technology needs + +1081 +00:44:28,380 --> 00:44:30,240 +and treat you like a person in the process. + +1082 +00:44:30,240 --> 00:44:32,100 +Give us a call if you'd like to be part of the show. + +1083 +00:44:32,820 --> 00:44:34,220 +520-790-2040. + +1084 +00:44:34,320 --> 00:44:37,500 +Or you can join us in the chat at gurushow.com slash chat. + +1085 +00:44:37,920 --> 00:44:39,780 +And you totally should, because there's people in there. + +1086 +00:44:40,000 --> 00:44:40,720 +Yeah, we're in there. + +1087 +00:44:40,860 --> 00:44:41,420 +We're chatting away. + +1088 +00:44:41,580 --> 00:44:42,420 +We're chatting it up. + +1089 +00:44:43,540 --> 00:44:44,160 +Chatting it up. + +1090 +00:44:44,200 --> 00:44:45,740 +Let's talk about cord cutting for a second. + +1091 +00:44:45,960 --> 00:44:47,320 +We haven't talked about that in a while. + +1092 +00:44:47,560 --> 00:44:49,960 +Yeah, and it'll be interesting to talk about, because I just did the opposite of that. + +1093 +00:44:50,460 --> 00:44:51,600 +Yeah, yeah, yeah. + +1094 +00:44:51,680 --> 00:44:52,160 +Poor you. + +1095 +00:44:52,280 --> 00:44:54,540 +I got cable for the first time in like nearly a decade. + +1096 +00:44:54,920 --> 00:44:57,260 +Because you just want to spend money unnecessarily. + +1097 +00:44:57,460 --> 00:44:59,360 +I don't want to spend money unnecessarily. + +1098 +00:44:59,680 --> 00:45:00,000 +Oh. + +1099 +00:45:00,240 --> 00:45:02,840 +Oh, I see what's going on here. + +1100 +00:45:04,520 --> 00:45:06,140 +Well, we have to call your girlfriend out on it. + +1101 +00:45:06,720 --> 00:45:12,620 +Well, she wanted certain channels that I didn't want to go through the hassle of setting up and making it work. + +1102 +00:45:12,760 --> 00:45:15,120 +And also, she's just like, I just want to turn on the TV and have it be on. + +1103 +00:45:15,220 --> 00:45:19,440 +I don't want to have to turn on 12 devices and sync everything up and cast things to things. + +1104 +00:45:19,980 --> 00:45:20,340 +Right. + +1105 +00:45:20,620 --> 00:45:22,340 +It's nowhere near that bad, but all right. + +1106 +00:45:24,700 --> 00:45:25,800 +So the Food Network. + +1107 +00:45:26,720 --> 00:45:28,080 +Well, she's a baker. + +1108 +00:45:28,220 --> 00:45:30,020 +So she wanted the Food Network. + +1109 +00:45:30,020 --> 00:45:35,880 +And also, I will say that it's kind of nice to just be able to turn something on and have something on there. + +1110 +00:45:35,960 --> 00:45:37,740 +But I don't know if that's worth $40 a month or whatever. + +1111 +00:45:37,940 --> 00:45:38,940 +It's too boring for me. + +1112 +00:45:39,320 --> 00:45:46,760 +I like to use casting in the sense of I have to use like a magical spell to get what I want on the television. + +1113 +00:45:47,300 --> 00:45:51,420 +I will also say that I forgot how terrible commercials are. + +1114 +00:45:51,880 --> 00:45:54,300 +Yeah, I haven't seen a commercial in like three years. + +1115 +00:45:54,380 --> 00:45:55,340 +Yeah, I was in the same boat. + +1116 +00:45:55,480 --> 00:45:57,940 +Like I only saw commercials when I went to people's houses or something. + +1117 +00:45:58,000 --> 00:45:58,400 +You know? + +1118 +00:45:58,400 --> 00:46:00,100 +Yeah, I don't go to people's houses. + +1119 +00:46:02,380 --> 00:46:03,560 +There's so many commercials. + +1120 +00:46:03,700 --> 00:46:06,640 +It's like one minute of show and then there's an hour of commercials. + +1121 +00:46:07,000 --> 00:46:11,340 +It's dawning on me that I am turning into Howard Hughes, right? + +1122 +00:46:11,400 --> 00:46:11,940 +Minus the money. + +1123 +00:46:12,180 --> 00:46:14,000 +And the pee jars, hopefully. + +1124 +00:46:14,460 --> 00:46:15,420 +Yeah, none of that either. + +1125 +00:46:16,180 --> 00:46:19,040 +But it's just like I don't go to people's houses. + +1126 +00:46:19,220 --> 00:46:21,480 +I am mildly germaphobic. + +1127 +00:46:22,400 --> 00:46:24,440 +Are you going to be scrubbing your hands until they bleed? + +1128 +00:46:24,780 --> 00:46:26,580 +No, I don't think I'll go that route. + +1129 +00:46:26,800 --> 00:46:26,820 +Not that bad. + +1130 +00:46:26,820 --> 00:46:28,320 +Well, I don't think you had hand sanitizer either. + +1131 +00:46:28,380 --> 00:46:28,380 + + +1132 +00:46:28,860 --> 00:46:30,400 +Yeah, that's not good for you anyway. + +1133 +00:46:30,720 --> 00:46:37,440 +But anyway, there's a new option on the playing field here as far as the ability to do some cord cutting. + +1134 +00:46:37,540 --> 00:46:39,540 +And that would be, believe it or not, YouTube. + +1135 +00:46:39,980 --> 00:46:42,340 +YouTube is offering a new service called YouTube TV. + +1136 +00:46:42,760 --> 00:46:48,000 +They will have 40 networks to launch with and they're adding local providers. + +1137 +00:46:48,460 --> 00:46:53,920 +I think the name is kind of silly though because like the whole point was that it was like, you know, a tube is like slang for TV. + +1138 +00:46:54,240 --> 00:46:55,600 +Yeah, a little redundant. + +1139 +00:46:55,800 --> 00:46:55,920 +Yeah. + +1140 +00:46:56,140 --> 00:46:58,380 +But for $35,000. + +1141 +00:46:58,380 --> 00:46:58,380 + + +1142 +00:46:58,400 --> 00:47:01,900 +For $35,000 a month, you can basically have on demand. + +1143 +00:47:02,320 --> 00:47:07,460 +So, I mean, Sling exists, which is basically the same service except it's not as good in any way. + +1144 +00:47:07,640 --> 00:47:08,040 +Right. + +1145 +00:47:08,120 --> 00:47:10,660 +They do provide local channels but I think you have to pay extra for them. + +1146 +00:47:10,780 --> 00:47:17,560 +You do have to pay extra for them and they have fewer amounts of devices that you can stream to simultaneously. + +1147 +00:47:18,300 --> 00:47:19,160 +And it's just bad. + +1148 +00:47:19,300 --> 00:47:21,980 +I've tested it out before getting cable. + +1149 +00:47:22,120 --> 00:47:23,620 +I was like maybe this will be the way to go. + +1150 +00:47:23,840 --> 00:47:24,020 +Nope. + +1151 +00:47:24,080 --> 00:47:24,400 +Nope. + +1152 +00:47:24,460 --> 00:47:28,340 +Yeah, but YouTube, they do a pretty decent job of getting your… + +1153 +00:47:28,340 --> 00:47:28,380 +Yeah. + +1154 +00:47:28,380 --> 00:47:34,940 +…their content to you and they have, you know, they have the infrastructure to be able to pull this off whereas I think Sling just doesn't. + +1155 +00:47:35,000 --> 00:47:38,300 +We could do an entire episode about how YouTube delivers a video to you. + +1156 +00:47:38,340 --> 00:47:39,180 +It's actually fascinating. + +1157 +00:47:39,560 --> 00:47:45,080 +There's a lot going on, a lot more than you think there is as far as hitting play on a video. + +1158 +00:47:45,220 --> 00:47:49,120 +Like the science behind how the counter goes up for views is crazy. + +1159 +00:47:49,560 --> 00:47:50,660 +Yeah, which is why it doesn't work. + +1160 +00:47:52,040 --> 00:47:56,380 +It merely gives the appearance of not working while it computes how to work in the background apparently. + +1161 +00:47:57,140 --> 00:47:57,520 +Right. + +1162 +00:47:57,520 --> 00:48:00,080 +Well, the Gangnam Style like broke the counter. + +1163 +00:48:00,480 --> 00:48:03,760 +Yeah, it turns out that you couldn't have over a billion views. + +1164 +00:48:04,260 --> 00:48:06,100 +I don't think they ever thought that was going to be a problem. + +1165 +00:48:06,380 --> 00:48:06,560 +Yeah. + +1166 +00:48:07,140 --> 00:48:08,560 +That is a huge amount of views. + +1167 +00:48:08,640 --> 00:48:13,500 +But anyway, YouTube is going to give you an option for cord cutting that requires less science involved. + +1168 +00:48:14,080 --> 00:48:26,060 +Considering that most streaming devices, in fact, I think all of them, the Roku, the Apple TV, the Plexbox, you know, Plex or not Plexbox, Amazon Fire TV, + +1169 +00:48:26,060 --> 00:48:31,620 +all of the different streaming devices have a YouTube app built in. + +1170 +00:48:31,760 --> 00:48:39,880 +And with the launch of YouTube TV, I'm sure they'll get a more refined, very YouTube style app for those things. + +1171 +00:48:40,340 --> 00:48:50,620 +So it's something that I think is going to be useful just because I completely disagree with the entire business model of cable. + +1172 +00:48:50,880 --> 00:48:55,700 +And so I have this aversion to anyone using cable. + +1173 +00:48:55,800 --> 00:48:56,040 +Yeah. + +1174 +00:48:56,060 --> 00:48:59,060 +But, you know, it's not like I'm anti-cable. + +1175 +00:48:59,180 --> 00:49:00,240 +I'm just a cable. + +1176 +00:49:00,460 --> 00:49:02,220 +Well, I have cable and I'm still anti-cable. + +1177 +00:49:02,420 --> 00:49:10,680 +So I'm planning on seeing if I can, now that I've had it for a while and I'm not like blown away by how amazing it is, I think there might be some renegotiation happening. + +1178 +00:49:11,020 --> 00:49:14,880 +Oh, well, maybe you can figure out how to, you know, cut the cord for Food Network. + +1179 +00:49:15,120 --> 00:49:15,720 +Good luck with that, man. + +1180 +00:49:15,900 --> 00:49:16,160 +Yeah. + +1181 +00:49:16,360 --> 00:49:16,680 +Yeah. + +1182 +00:49:17,600 --> 00:49:19,260 +See, I like to argue with people though. + +1183 +00:49:19,440 --> 00:49:20,300 +It's kind of a hobby. + +1184 +00:49:20,700 --> 00:49:22,380 +It is kind of a, yeah. + +1185 +00:49:23,600 --> 00:49:24,680 +We're not going to talk about that right now. + +1186 +00:49:24,760 --> 00:49:25,280 +Let's talk to Thomas. + +1187 +00:49:26,060 --> 00:49:26,280 +How are you? + +1188 +00:49:26,760 --> 00:49:27,480 +I'm okay. + +1189 +00:49:28,440 --> 00:49:29,860 +I'm enjoying your show. + +1190 +00:49:29,940 --> 00:49:37,660 +I don't always get a chance to listen to it because most of the time, including today, you're talking about stuff I have no idea. + +1191 +00:49:37,720 --> 00:49:39,460 +It's all way over my head. + +1192 +00:49:39,600 --> 00:49:41,280 +Then you should call and say, I don't understand that, Mike. + +1193 +00:49:41,380 --> 00:49:42,440 +Explain it to me better. + +1194 +00:49:43,320 --> 00:49:56,040 +Well, I'm 77 years old and I got my first computer in 1998 and I still about the only thing I can really do is work. + +1195 +00:49:56,040 --> 00:49:56,440 +OK. + +1196 +00:50:02,000 --> 00:50:02,000 + + +1197 +00:50:02,000 --> 00:50:02,000 + + +1198 +00:50:02,000 --> 00:50:02,000 + + +1199 +00:50:02,000 --> 00:50:02,000 + + +1200 +00:50:03,060 --> 00:50:03,580 +OK. + +1201 +00:50:05,780 --> 00:50:06,300 +OK. + +1202 +00:50:06,380 --> 00:50:06,380 + + +1203 +00:50:06,820 --> 00:50:07,340 +OK. + +1204 +00:50:07,340 --> 00:50:07,340 + + +1205 +00:50:07,340 --> 00:50:07,560 +OK. + +1206 +00:50:08,020 --> 00:50:08,200 +OK. + +1207 +00:50:08,480 --> 00:50:08,580 +OK. + +1208 +00:50:08,720 --> 00:50:08,980 +OK. + +1209 +00:50:09,180 --> 00:50:09,280 +OK. + +1210 +00:50:09,860 --> 00:50:10,380 +OK. + +1211 +00:50:11,800 --> 00:50:12,160 +OK. + +1212 +00:50:12,400 --> 00:50:12,660 +OK. + +1213 +00:50:13,420 --> 00:50:13,940 +OK. + +1214 +00:50:14,080 --> 00:50:14,440 +OK. + +1215 +00:50:14,840 --> 00:50:14,960 +OK. + +1216 +00:50:16,000 --> 00:50:16,520 +OK. + +1217 +00:50:16,700 --> 00:50:16,840 +OK. + +1218 +00:50:17,000 --> 00:50:17,240 +OK. + +1219 +00:50:17,420 --> 00:50:17,640 +OK. + +1220 +00:50:18,420 --> 00:50:18,560 +OK. + +1221 +00:50:19,140 --> 00:50:19,560 +OK. + +1222 +00:50:20,780 --> 00:50:20,920 +OK. + +1223 +00:50:23,540 --> 00:50:24,060 +OK. + +1224 +00:50:24,060 --> 00:50:27,300 +from Cox, my internet is $67.99. + +1225 +00:50:28,440 --> 00:50:30,460 +Yeah, I think he was just talking about the TV portion. + +1226 +00:50:30,460 --> 00:50:34,600 +Yeah, for the actual internet itself, I pay about, I think it's about $80. + +1227 +00:50:35,940 --> 00:50:37,180 +For the actual internet? + +1228 +00:50:37,280 --> 00:50:40,660 +Just for the internet, and then I pay an additional $40 now for TV as well. + +1229 +00:50:41,740 --> 00:50:47,300 +Well, I got, under mine, under new charges, for TV, it says $146.99. + +1230 +00:50:48,540 --> 00:50:50,080 +Internet, $67.99. + +1231 +00:50:51,100 --> 00:50:52,340 +Telephone, $14.09. + +1232 +00:50:52,340 --> 00:50:52,460 +$14.09. + +1233 +00:50:52,680 --> 00:50:57,080 +See, this is one of the reasons that I, I'm going to use a word that I don't use very often. + +1234 +00:50:57,200 --> 00:50:58,520 +I hate the cable company. + +1235 +00:50:58,820 --> 00:50:59,820 +Well, I do too. + +1236 +00:50:59,920 --> 00:51:03,280 +And this is the reason why, is because they'll sign you up and they'll say, + +1237 +00:51:03,400 --> 00:51:09,040 +hey, for $9 a month, we'll get you on the internet and you can watch TV, + +1238 +00:51:09,180 --> 00:51:12,640 +and then suddenly your bill is $4,000, and you don't know why. + +1239 +00:51:13,640 --> 00:51:15,340 +And they do this all the time. + +1240 +00:51:15,400 --> 00:51:21,220 +I mean, Rob, you had the, that old place, you had this, a war with Comcast. + +1241 +00:51:21,220 --> 00:51:21,580 +Yeah, for sure. + +1242 +00:51:21,580 --> 00:51:25,980 +You know, talking about how they were like, they kept raising his price without telling him. + +1243 +00:51:26,100 --> 00:51:28,120 +Yeah, I'd just get my bill and it'd be like $20 higher. + +1244 +00:51:28,320 --> 00:51:30,160 +And then I'd call them up and they'd be like, oh, we'll take that off. + +1245 +00:51:30,300 --> 00:51:31,660 +And then they slowed your internet down. + +1246 +00:51:31,700 --> 00:51:33,220 +Yeah, and I'm like, what, why did, why? + +1247 +00:51:33,400 --> 00:51:34,620 +You're just trying to see if I noticed? + +1248 +00:51:35,480 --> 00:51:36,180 +It's not cool. + +1249 +00:51:36,420 --> 00:51:40,180 +So, you might have to call up and force a renegotiation of your bill. + +1250 +00:51:40,960 --> 00:51:43,240 +I just renegotiated with them in August. + +1251 +00:51:43,520 --> 00:51:44,080 +Well, do it again. + +1252 +00:51:44,280 --> 00:51:46,680 +The magic words are usually, I can get this cheaper elsewhere. + +1253 +00:51:47,680 --> 00:51:48,000 +Right. + +1254 +00:51:48,020 --> 00:51:50,600 +The magic words are usually, I can get this cheaper elsewhere. + +1255 +00:51:50,860 --> 00:51:51,540 +Oh, I see. + +1256 +00:51:51,580 --> 00:51:51,760 +I see. + +1257 +00:51:51,760 --> 00:51:52,160 +Okay. + +1258 +00:51:53,080 --> 00:52:00,060 +And you talk a lot about passwords and it's changing passwords. + +1259 +00:52:00,260 --> 00:52:06,400 +You know, I have a, when I go to the bank, I stutter wondering whether I'm going to have the right pin. + +1260 +00:52:06,520 --> 00:52:11,160 +And I only have two accounts and that's only four, four numbers. + +1261 +00:52:11,360 --> 00:52:11,740 +Right. + +1262 +00:52:11,900 --> 00:52:15,020 +Let alone, I've started writing them down in a book. + +1263 +00:52:15,280 --> 00:52:15,760 +Which is? + +1264 +00:52:15,820 --> 00:52:19,000 +Passwords to go to this guy, to go to that guy, to go to this guy. + +1265 +00:52:19,960 --> 00:52:21,060 +Because when I... + +1266 +00:52:21,060 --> 00:52:25,900 +If I'm not using it every day, my mind says, what the hell is that? + +1267 +00:52:26,300 --> 00:52:26,660 +Right. + +1268 +00:52:26,980 --> 00:52:33,020 +So, I have to, you know, I go to this bank and tomorrow I go to the other bank and I + +1269 +00:52:33,020 --> 00:52:37,580 +got to go and get my little book that I got it written down in to make sure that I'm putting + +1270 +00:52:37,580 --> 00:52:38,960 +all the right information in. + +1271 +00:52:39,260 --> 00:52:42,800 +And so, like, I don't like changing passwords. + +1272 +00:52:43,260 --> 00:52:45,640 +I understand that, but it's for your own good. + +1273 +00:52:46,320 --> 00:52:49,040 +I mean, you don't want anybody to have access to your stuff. + +1274 +00:52:49,260 --> 00:52:50,460 +And believe me. + +1275 +00:52:50,460 --> 00:52:52,020 +They will have access to your stuff. + +1276 +00:52:52,120 --> 00:52:56,340 +In fact, there's a website that you can go to that will tell you whether or not somebody + +1277 +00:52:56,340 --> 00:52:58,420 +has probably has your password or not. + +1278 +00:52:58,420 --> 00:53:01,120 +And in a lot of cases, if you use common websites, they do. + +1279 +00:53:01,680 --> 00:53:02,080 +Right. + +1280 +00:53:02,160 --> 00:53:04,080 +So, I'm not a Facebook guy. + +1281 +00:53:04,240 --> 00:53:05,100 +I'm not on there. + +1282 +00:53:05,140 --> 00:53:05,820 +I'm not a Twitter. + +1283 +00:53:06,020 --> 00:53:06,540 +I don't... + +1284 +00:53:06,540 --> 00:53:07,400 +Who's your email provider? + +1285 +00:53:09,120 --> 00:53:09,920 +My what? + +1286 +00:53:10,380 --> 00:53:12,420 +What's after the at symbol in your email address? + +1287 +00:53:14,540 --> 00:53:15,500 +I don't know. + +1288 +00:53:15,940 --> 00:53:17,360 +Oh, doc.com. + +1289 +00:53:17,600 --> 00:53:18,460 +No, before that, though. + +1290 +00:53:19,120 --> 00:53:19,520 +Cox. + +1291 +00:53:19,680 --> 00:53:20,400 +There you go. + +1292 +00:53:20,460 --> 00:53:21,700 +No, no, no, no, no, no. + +1293 +00:53:21,700 --> 00:53:21,820 +Yeah. + +1294 +00:53:21,840 --> 00:53:22,180 +Cox. + +1295 +00:53:22,280 --> 00:53:22,980 +Cox.com. + +1296 +00:53:23,160 --> 00:53:23,320 +Yeah. + +1297 +00:53:23,620 --> 00:53:25,460 +No, I don't have Cox.com. + +1298 +00:53:25,520 --> 00:53:26,320 +I've got... + +1299 +00:53:26,980 --> 00:53:27,620 +You see? + +1300 +00:53:27,840 --> 00:53:28,080 +See? + +1301 +00:53:28,280 --> 00:53:28,920 +All right. + +1302 +00:53:28,940 --> 00:53:34,460 +So, chances are that if you're using a provider email, right, if you're, like, either email + +1303 +00:53:34,460 --> 00:53:41,200 +provided by your internet provider or especially if you're using something like Yahoo for mail + +1304 +00:53:41,200 --> 00:53:43,640 +or AOL, that those... + +1305 +00:53:43,640 --> 00:53:44,680 +Oh, I know what it is now. + +1306 +00:53:44,760 --> 00:53:46,400 +Hotmail and Google. + +1307 +00:53:46,820 --> 00:53:47,420 +All right. + +1308 +00:53:47,440 --> 00:53:50,060 +The Google one, you're probably relatively safe there. + +1309 +00:53:50,460 --> 00:53:50,860 +Okay. + +1310 +00:53:51,300 --> 00:53:53,060 +There was a Hotmail breach, wasn't there? + +1311 +00:53:53,280 --> 00:53:55,000 +But there's several Hotmail breaches. + +1312 +00:53:55,880 --> 00:54:01,280 +So, if you haven't changed your password since, I don't know, ever, then somebody knows your + +1313 +00:54:01,280 --> 00:54:01,600 +password. + +1314 +00:54:02,620 --> 00:54:05,740 +And in some cases, you know, people just don't care, right? + +1315 +00:54:05,780 --> 00:54:08,580 +They're just like, I don't really have anything to hide here. + +1316 +00:54:09,960 --> 00:54:13,440 +But it can cause larger problems than that. + +1317 +00:54:14,340 --> 00:54:19,220 +You can end up being basically the source of a spam email. + +1318 +00:54:19,220 --> 00:54:22,160 +So, if you're using a provider email, if somebody can guess your email password, and that happens + +1319 +00:54:22,160 --> 00:54:23,200 +a lot on Hotmail. + +1320 +00:54:23,680 --> 00:54:30,940 +So, the idea of password, keeping yourself safe online is an important topic. + +1321 +00:54:30,980 --> 00:54:34,500 +And especially for those that have a larger digital presence, right, where they're doing + +1322 +00:54:34,500 --> 00:54:37,060 +more stuff online than just checking email. + +1323 +00:54:37,560 --> 00:54:42,420 +But as you said in the beginning of the call, there are many places where you just can't + +1324 +00:54:42,420 --> 00:54:46,920 +do anything but to use an online service as an example for paying bills. + +1325 +00:54:47,060 --> 00:54:49,000 +Or like my daughter's homework. + +1326 +00:54:49,440 --> 00:54:49,840 +Right? + +1327 +00:54:49,860 --> 00:54:51,400 +They don't send paper homework anymore. + +1328 +00:54:52,220 --> 00:54:57,960 +They have a laptop that is provided, a Chromebook that is provided to them, and they have to + +1329 +00:54:57,960 --> 00:54:59,400 +do all of their assignments online. + +1330 +00:54:59,700 --> 00:55:03,460 +And if I want to be able to check on any of her work, I have to be able to sign into those + +1331 +00:55:03,460 --> 00:55:04,000 +accounts also. + +1332 +00:55:04,980 --> 00:55:08,820 +So, the world is moving completely digital. + +1333 +00:55:08,980 --> 00:55:11,580 +And so, password protection is important. + +1334 +00:55:12,080 --> 00:55:15,900 +And you should probably get a password manager if you really want to sort of be safe. + +1335 +00:55:15,940 --> 00:55:17,600 +That way, you only have to remember one password. + +1336 +00:55:18,400 --> 00:55:19,200 +And the... + +1337 +00:55:19,200 --> 00:55:22,300 +The software takes care of the rest and remembers all the rest of your passwords. + +1338 +00:55:22,580 --> 00:55:26,740 +Is that a program that you buy or a place, another place you go to on the internet to + +1339 +00:55:26,740 --> 00:55:27,380 +come up with that? + +1340 +00:55:27,540 --> 00:55:27,700 +Both. + +1341 +00:55:28,180 --> 00:55:31,720 +So, you have to go to the website to get the software and then purchase it. + +1342 +00:55:32,680 --> 00:55:34,840 +The one that I like right now is LastPass. + +1343 +00:55:36,380 --> 00:55:37,140 +And it's... + +1344 +00:55:37,140 --> 00:55:39,980 +They taught themselves that the last password you'll ever have to remember. + +1345 +00:55:40,220 --> 00:55:41,560 +I'll put a link in the show notes. + +1346 +00:55:41,740 --> 00:55:41,940 +Right. + +1347 +00:55:42,000 --> 00:55:46,500 +So, if you manage to make it over to gurushow.com and check out the show notes, there'll be + +1348 +00:55:46,500 --> 00:55:47,020 +a link there. + +1349 +00:55:47,660 --> 00:55:49,180 +But there are several password managers. + +1350 +00:55:49,180 --> 00:55:49,180 + + +1351 +00:55:49,180 --> 00:55:50,600 +There are a lot of password managers out there to help keep you safe. + +1352 +00:55:50,660 --> 00:55:51,920 +They remember your passwords for you. + +1353 +00:55:52,020 --> 00:55:56,700 +And if you get the paid version, then it remembers all of your passwords across all of your devices. + +1354 +00:55:56,820 --> 00:56:00,980 +So that if you happen to have a smartphone or another computer... + +1355 +00:56:00,980 --> 00:56:01,620 +No smartphone. + +1356 +00:56:02,100 --> 00:56:05,860 +So, if you happen to have another device of any type that you get online with, it will + +1357 +00:56:05,860 --> 00:56:07,600 +synchronize those passwords to the other device. + +1358 +00:56:07,760 --> 00:56:12,800 +So, you never have to remember a password ever other than the main password for LastPass. + +1359 +00:56:13,940 --> 00:56:16,680 +And it'll actually even sign in the websites for you. + +1360 +00:56:16,760 --> 00:56:19,140 +So, you don't even have to see the login page anymore. + +1361 +00:56:19,960 --> 00:56:26,040 +I have a laptop and it sits right by me when I'm watching TV. + +1362 +00:56:26,280 --> 00:56:28,220 +And I looked at it the other day. + +1363 +00:56:28,280 --> 00:56:29,060 +I turned it on. + +1364 +00:56:29,740 --> 00:56:36,480 +And a message came up that says Microsoft no longer supports... + +1365 +00:56:38,220 --> 00:56:42,240 +Not number seven, but it's the one before seven. + +1366 +00:56:43,200 --> 00:56:45,880 +Well, you probably had it set for Vista? + +1367 +00:56:46,220 --> 00:56:46,780 +Vista. + +1368 +00:56:46,960 --> 00:56:47,280 +Yeah. + +1369 +00:56:47,380 --> 00:56:47,820 +Yeah. + +1370 +00:56:49,140 --> 00:56:49,280 +Vista. + +1371 +00:56:49,280 --> 00:56:55,500 +My other computer in my room over here, which I haven't used in a few years, no longer supports + +1372 +00:56:56,360 --> 00:56:58,380 +that one that was before that. + +1373 +00:56:58,660 --> 00:56:59,040 +XP? + +1374 +00:56:59,040 --> 00:56:59,940 +XP, right. + +1375 +00:57:00,160 --> 00:57:00,880 +XP, right. + +1376 +00:57:01,220 --> 00:57:02,360 +We've got to get you with the times, man. + +1377 +00:57:04,120 --> 00:57:05,340 +You're way behind. + +1378 +00:57:06,340 --> 00:57:07,000 +Oh, yeah. + +1379 +00:57:07,220 --> 00:57:07,900 +I don't... + +1380 +00:57:07,900 --> 00:57:12,320 +You know, it's just here because I don't use it. + +1381 +00:57:12,380 --> 00:57:12,840 +I'm not... + +1382 +00:57:13,460 --> 00:57:18,720 +I use it to maybe play a game or run a language thing or something where I don't have to go + +1383 +00:57:18,720 --> 00:57:19,380 +on the internet. + +1384 +00:57:19,480 --> 00:57:20,960 +I just stick in the DVD. + +1385 +00:57:21,680 --> 00:57:22,220 +All right. + +1386 +00:57:22,240 --> 00:57:23,160 +Well, the one that... + +1387 +00:57:23,160 --> 00:57:24,840 +If you're not using it online, you're probably fine. + +1388 +00:57:25,080 --> 00:57:28,580 +But if you're on the internet at all with something that old... + +1389 +00:57:28,580 --> 00:57:29,100 +No, I'm not. + +1390 +00:57:29,260 --> 00:57:29,640 +Definitely not. + +1391 +00:57:29,640 --> 00:57:30,580 +Even the Vista machine? + +1392 +00:57:31,140 --> 00:57:32,240 +Even the Vista machine. + +1393 +00:57:32,320 --> 00:57:32,680 +I know. + +1394 +00:57:32,760 --> 00:57:33,560 +I was a little bit... + +1395 +00:57:33,560 --> 00:57:35,540 +I was surprised they're not supporting Vista. + +1396 +00:57:35,740 --> 00:57:36,940 +It's 15 years old. + +1397 +00:57:37,060 --> 00:57:38,220 +They're not going to support that. + +1398 +00:57:38,880 --> 00:57:40,420 +Oh, it's 15 years old? + +1399 +00:57:40,660 --> 00:57:40,780 +Yeah. + +1400 +00:57:41,280 --> 00:57:42,520 +Seven was out for 10 years. + +1401 +00:57:42,600 --> 00:57:45,340 +Vista was out for three years before that and was in beta for another year and a half + +1402 +00:57:45,340 --> 00:57:45,760 +before that. + +1403 +00:57:45,820 --> 00:57:47,020 +So it's 15 years old. + +1404 +00:57:47,020 --> 00:57:47,860 +Oh, okay. + +1405 +00:57:47,920 --> 00:57:50,060 +So you got to get with the times, man. + +1406 +00:57:50,180 --> 00:57:51,540 +Come down and see us. + +1407 +00:57:51,640 --> 00:57:51,720 +Yeah. + +1408 +00:57:51,720 --> 00:57:56,960 +Well, I was forced into Windows 10 because they just kept... + +1409 +00:57:57,580 --> 00:58:01,820 +They'd break into whatever I was looking at and tell me, don't miss your opportunity to + +1410 +00:58:01,820 --> 00:58:03,380 +get the free Windows 10. + +1411 +00:58:03,520 --> 00:58:06,960 +Finally one day I just said, I can't take this anymore, so I did. + +1412 +00:58:07,160 --> 00:58:07,520 +Yeah. + +1413 +00:58:07,560 --> 00:58:09,080 +They got in trouble for that. + +1414 +00:58:09,140 --> 00:58:11,920 +That's pretty much how all 10 users became 10 users. + +1415 +00:58:12,300 --> 00:58:14,060 +We got to take a break though. + +1416 +00:58:14,080 --> 00:58:14,840 +Sorry about that. + +1417 +00:58:14,920 --> 00:58:14,960 +Okay. + +1418 +00:58:14,960 --> 00:58:15,120 +Thanks a lot. + +1419 +00:58:15,520 --> 00:58:16,080 +Bye-bye. + +1420 +00:58:17,020 --> 00:58:19,320 +Well, come down and see us at the shop, 510 East Fort Lowell. + +1421 +00:58:19,440 --> 00:58:21,940 +We'll talk to you about your technology and keep you up to date. + +1422 +00:58:22,260 --> 00:58:24,800 +We'll be right back with more of the Computer Guru Show right after this. + +1423 +00:58:50,100 --> 00:58:50,540 +Thanks for joining us. + +1424 +00:58:50,540 --> 00:58:50,540 + + +1425 +00:58:50,540 --> 00:58:50,540 + + +1426 +00:58:50,540 --> 00:58:50,540 + + +1427 +00:58:50,540 --> 00:58:54,200 +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. + +1428 +00:58:54,540 --> 00:58:58,080 +Join the chat right now at gurushow.com or call in. + +1429 +00:58:58,160 --> 00:59:01,540 +This is the Computer Guru Show on KVOY, The Voice. + +1430 +00:59:02,400 --> 00:59:05,480 +I'm nerdy in the extreme and lighter than sour cream. + +1431 +00:59:05,660 --> 00:59:08,820 +I was in a V Club and Glee Club and even the Chess Team. + +1432 +00:59:08,920 --> 00:59:12,180 +Only question I ever thought was hard, what do I like, Kirk, or do I like Picard? + +1433 +00:59:12,320 --> 00:59:15,400 +Spend every weekend at the Renaissance Fair, got my name on my underwear. + +1434 +00:59:15,900 --> 00:59:17,000 +I've seen these trolls, I've seen these trolls, I've seen these trolls, I've seen these + +1435 +00:59:17,000 --> 00:59:17,000 + + +1436 +00:59:17,000 --> 00:59:17,140 +trolls. + +1437 +00:59:17,140 --> 00:59:21,160 +Welcome back to the Computer Guru Show, 7902040 if you'd like to be part of the show or you + +1438 +00:59:21,160 --> 00:59:23,340 +can join us in the chat, gurushow.com slash chat. + +1439 +00:59:24,200 --> 00:59:25,180 +Let's go ahead and talk to Sandy. + +1440 +00:59:25,360 --> 00:59:26,280 +Hey, Sandy, how are you? + +1441 +00:59:26,820 --> 00:59:27,180 +Hi. + +1442 +00:59:27,420 --> 00:59:32,140 +Well, I have a question about password manager and it might sound dumb, but I just want to + +1443 +00:59:32,140 --> 00:59:33,460 +make sure I understand it. + +1444 +00:59:33,800 --> 00:59:34,160 +Okay. + +1445 +00:59:34,200 --> 00:59:39,900 +If I use a password manager, I don't have to know the password, but then I go and visit + +1446 +00:59:39,900 --> 00:59:45,140 +my daughter, I won't be able to log on to my account not knowing the password. + +1447 +00:59:45,180 --> 00:59:46,820 +It's physically on my computer. + +1448 +00:59:46,820 --> 00:59:47,260 +Right? + +1449 +00:59:47,420 --> 00:59:47,840 +A physical. + +1450 +00:59:48,520 --> 00:59:51,560 +There's a few ways around that and it turns out that they've thought of that. + +1451 +00:59:52,360 --> 00:59:54,020 +You have a couple of options. + +1452 +00:59:54,180 --> 00:59:59,960 +You can carry around a backup copy or a portable version of your password manager on a memory + +1453 +00:59:59,960 --> 01:00:02,700 +stick that you keep in your pocket or something. + +1454 +01:00:03,400 --> 01:00:08,460 +Then when you go somewhere else or using a machine that is not yours, you can put that + +1455 +01:00:08,460 --> 01:00:13,540 +flash drive in and launch the password manager off of that particular stick. + +1456 +01:00:13,620 --> 01:00:13,980 +Super. + +1457 +01:00:14,500 --> 01:00:15,020 +Super. + +1458 +01:00:15,160 --> 01:00:16,800 +Or in a lot of cases, you can just go and log in. + +1459 +01:00:16,820 --> 01:00:20,320 +In a lot of cases, as long as you have internet access, you can just sign into your account + +1460 +01:00:20,940 --> 01:00:23,520 +and it will allow you to access your passwords. + +1461 +01:00:24,520 --> 01:00:24,960 +Super. + +1462 +01:00:25,360 --> 01:00:26,620 +Thank you very much. + +1463 +01:00:26,800 --> 01:00:27,840 +You're quite welcome. + +1464 +01:00:28,520 --> 01:00:28,960 +Okay. + +1465 +01:00:29,000 --> 01:00:29,340 +Bye-bye. + +1466 +01:00:29,460 --> 01:00:30,680 +Thank you and thanks for calling. + +1467 +01:00:31,520 --> 01:00:36,980 +It turns out that security is something that is an important thing. + +1468 +01:00:37,180 --> 01:00:38,820 +In fact, it can cost you a little bit of money. + +1469 +01:00:38,960 --> 01:00:40,900 +A little bit or a lot of it if you're Marissa Meyer. + +1470 +01:00:41,120 --> 01:00:43,380 +So how much money did Marissa Meyer lose? + +1471 +01:00:43,960 --> 01:00:44,780 +$54 million. + +1472 +01:00:45,660 --> 01:00:46,180 +$54 million. + +1473 +01:00:46,180 --> 01:00:50,740 +Marissa Meyer, by the way, is the formerly CEO of Yahoo. + +1474 +01:00:53,120 --> 01:00:59,760 +One of her exit contract agreements was that if her performance was good, she would get + +1475 +01:00:59,760 --> 01:01:00,420 +$54 million. + +1476 +01:01:00,860 --> 01:01:06,600 +But because of that gigantic Yahoo mail breach that happened last year. + +1477 +01:01:07,100 --> 01:01:07,780 +Didn't qualify. + +1478 +01:01:08,000 --> 01:01:08,220 +Yep. + +1479 +01:01:08,460 --> 01:01:10,600 +$54 million no longer in her pocket. + +1480 +01:01:10,660 --> 01:01:14,440 +I mean, I'm sure she's not hurting for money, but that would have been nice. + +1481 +01:01:14,440 --> 01:01:15,900 +But who doesn't want an extra $54 million? + +1482 +01:01:16,260 --> 01:01:16,960 +You know what I mean? + +1483 +01:01:17,080 --> 01:01:18,000 +She was that close. + +1484 +01:01:18,320 --> 01:01:18,580 +Yeah. + +1485 +01:01:18,620 --> 01:01:20,860 +I guess Bill Gates could probably be like, meh. + +1486 +01:01:21,140 --> 01:01:21,580 +Yeah. + +1487 +01:01:22,620 --> 01:01:25,560 +There's a few people that are just like, eh, $54 million, whatever. + +1488 +01:01:25,800 --> 01:01:26,160 +Yeah. + +1489 +01:01:26,300 --> 01:01:27,080 +Not a big deal. + +1490 +01:01:27,220 --> 01:01:27,480 +Yeah. + +1491 +01:01:27,540 --> 01:01:29,880 +But Marissa Meyer is not one of them and I'm sure she's pretty sad. + +1492 +01:01:30,220 --> 01:01:33,280 +I'm sure that that will affect her overall retirement plans. + +1493 +01:01:33,420 --> 01:01:34,580 +To be fair, she definitely didn't deserve it. + +1494 +01:01:34,900 --> 01:01:35,340 +No. + +1495 +01:01:35,740 --> 01:01:37,020 +No, she did not. + +1496 +01:01:37,760 --> 01:01:42,940 +Just because the scope of that Yahoo breach was so massive. + +1497 +01:01:42,960 --> 01:01:43,380 +Yeah. + +1498 +01:01:44,440 --> 01:01:45,740 +She handled it and tried to cover it up. + +1499 +01:01:45,840 --> 01:01:50,000 +If you write a book about Marissa Meyer's time at Yahoo, I'm pretty sure it would be + +1500 +01:01:50,000 --> 01:01:50,800 +called Mismanagement. + +1501 +01:01:51,740 --> 01:01:53,240 +Oh, that would be a good one. + +1502 +01:01:53,380 --> 01:01:54,300 +I like that one there. + +1503 +01:01:55,140 --> 01:01:55,860 +Oh, yeah. + +1504 +01:01:56,320 --> 01:01:57,040 +That's a good one. + +1505 +01:01:57,240 --> 01:01:59,860 +I'm going to have to patent that or trademark it anyway. + +1506 +01:02:00,500 --> 01:02:01,500 +Just go ahead and write the book. + +1507 +01:02:01,580 --> 01:02:01,700 +Yeah. + +1508 +01:02:02,880 --> 01:02:05,780 +On the first page, it'll just say, I don't know any of this stuff. + +1509 +01:02:05,840 --> 01:02:06,800 +I just came up with the title. + +1510 +01:02:06,960 --> 01:02:07,280 +Right. + +1511 +01:02:08,420 --> 01:02:10,080 +Obviously, there was mismanagement. + +1512 +01:02:10,080 --> 01:02:10,560 +The end. + +1513 +01:02:11,480 --> 01:02:13,480 +I mean, that pretty much sums it up. + +1514 +01:02:13,480 --> 01:02:14,200 +Yeah. + +1515 +01:02:14,360 --> 01:02:20,980 +There was a gigantic breach and it caused some problems with the acquisition of Yahoo + +1516 +01:02:20,980 --> 01:02:22,280 +Mail by Verizon even. + +1517 +01:02:22,540 --> 01:02:26,640 +I mean, when they say gigantic, they mean the biggest data breach that had happened + +1518 +01:02:26,640 --> 01:02:27,540 +to that point. + +1519 +01:02:27,780 --> 01:02:29,240 +It was like two billion accounts. + +1520 +01:02:30,200 --> 01:02:30,660 +Yeah. + +1521 +01:02:30,740 --> 01:02:32,440 +That's a lot of data. + +1522 +01:02:32,440 --> 01:02:35,120 +I mean, that's impressive in its own route, I guess. + +1523 +01:02:35,300 --> 01:02:38,220 +I mean, how much time does it take to actually get the information for two billion + +1524 +01:02:38,220 --> 01:02:38,480 +accounts? + +1525 +01:02:38,760 --> 01:02:39,560 +I mean, it's not instant. + +1526 +01:02:39,820 --> 01:02:40,280 +No. + +1527 +01:02:40,360 --> 01:02:43,460 +Even if they were one bit per file. + +1528 +01:02:43,460 --> 01:02:43,460 + + +1529 +01:02:43,920 --> 01:02:44,240 +Right. + +1530 +01:02:45,020 --> 01:02:48,280 +That would take a long time. + +1531 +01:02:48,640 --> 01:02:50,940 +And nobody noticed that they were in there. + +1532 +01:02:51,260 --> 01:02:56,320 +I mean, it's much like the movie production house hack that happened a few years ago and + +1533 +01:02:56,320 --> 01:03:00,340 +it turned out that it was an inside job because people started going, wait a minute, there + +1534 +01:03:00,340 --> 01:03:03,920 +is hundreds of terabytes of information that are- + +1535 +01:03:03,920 --> 01:03:04,020 +Yeah. + +1536 +01:03:04,040 --> 01:03:07,020 +At the very least, you'd notice that when your ISP called you and was like, hey, stop + +1537 +01:03:07,020 --> 01:03:07,940 +using that much bandwidth. + +1538 +01:03:08,540 --> 01:03:08,860 +Right. + +1539 +01:03:08,940 --> 01:03:13,160 +Well, I mean, I don't know that the movie houses are going to have the ISP call them, + +1540 +01:03:13,180 --> 01:03:13,420 +but- + +1541 +01:03:13,420 --> 01:03:13,460 +Yeah. + +1542 +01:03:13,460 --> 01:03:13,460 + + +1543 +01:03:13,460 --> 01:03:13,460 + + +1544 +01:03:13,460 --> 01:03:13,460 + + +1545 +01:03:13,460 --> 01:03:13,460 + + +1546 +01:03:13,460 --> 01:03:13,460 + + +1547 +01:03:13,460 --> 01:03:13,460 + + +1548 +01:03:13,460 --> 01:03:13,460 + + +1549 +01:03:13,460 --> 01:03:13,460 + + +1550 +01:03:13,460 --> 01:03:13,460 + + +1551 +01:03:13,460 --> 01:03:20,020 +I mean, it's just, I mean, there's a physics question here, right? + +1552 +01:03:20,140 --> 01:03:23,280 +Maybe they smuggled the data out in their blood. + +1553 +01:03:24,100 --> 01:03:25,080 +Oh, they could have. + +1554 +01:03:25,300 --> 01:03:26,140 +They could have. + +1555 +01:03:26,180 --> 01:03:27,080 +In fact, one person. + +1556 +01:03:27,600 --> 01:03:28,080 +Yeah. + +1557 +01:03:28,080 --> 01:03:29,400 +Like many times over. + +1558 +01:03:30,260 --> 01:03:33,240 +So let's talk about DNA for a second here. + +1559 +01:03:34,020 --> 01:03:38,100 +It turns out that DNA stores a lot of information. + +1560 +01:03:38,100 --> 01:03:43,100 +We talked about DNA being tested as a storage medium about two years ago on the show. + +1561 +01:03:43,200 --> 01:03:43,440 +Yeah. + +1562 +01:03:43,460 --> 01:03:48,320 +And they didn't really have any hard numbers about how much data they were able to store, + +1563 +01:03:48,920 --> 01:03:55,800 +but it turns out that 215 petabytes per gram of DNA. + +1564 +01:03:56,360 --> 01:04:00,660 +And so this is coming to light right now because there were researchers who were able to completely + +1565 +01:04:00,660 --> 01:04:04,180 +write an entire operating system into- + +1566 +01:04:04,180 --> 01:04:04,620 +And a movie. + +1567 +01:04:04,720 --> 01:04:10,840 +And a movie and an Amazon gift card and also a computer virus into a DNA sequence and then + +1568 +01:04:10,840 --> 01:04:12,360 +recover it and run it. + +1569 +01:04:12,580 --> 01:04:12,940 +Oh. + +1570 +01:04:13,460 --> 01:04:15,220 +And when they recovered, there was zero errors. + +1571 +01:04:15,740 --> 01:04:19,020 +I mean, there's not even zero errors when you just transfer it to your flash drive. + +1572 +01:04:19,220 --> 01:04:19,440 +Right. + +1573 +01:04:19,500 --> 01:04:23,220 +There's errors when you read it off the hard drive that you use every day. + +1574 +01:04:24,800 --> 01:04:29,960 +That's insane that they could pull that with zero errors, that much data. + +1575 +01:04:30,240 --> 01:04:34,240 +And so, yeah, they say that the storage capacity for DNA is pretty absurd. + +1576 +01:04:34,540 --> 01:04:37,800 +Like you said, 215 petabytes per gram of DNA. + +1577 +01:04:38,120 --> 01:04:42,600 +So we did a little napkin math based on the average amount of DNA that a person has in + +1578 +01:04:42,600 --> 01:04:46,100 +their body, which I guess equates to about 300 grams in your whole body. + +1579 +01:04:46,160 --> 01:04:46,360 +Right. + +1580 +01:04:46,480 --> 01:04:48,600 +So you could store something like, what was it? + +1581 +01:04:48,620 --> 01:04:50,400 +64 Yottabytes of data. + +1582 +01:04:50,640 --> 01:04:51,040 +Yeah. + +1583 +01:04:51,140 --> 01:04:52,600 +It's exabytes. + +1584 +01:04:53,640 --> 01:04:53,940 +Exabytes. + +1585 +01:04:54,100 --> 01:04:54,380 +Yeah. + +1586 +01:04:54,500 --> 01:04:58,240 +It is insane amounts of data. + +1587 +01:04:58,580 --> 01:05:06,300 +It is more data in one person than exists in entirety anywhere. + +1588 +01:05:07,880 --> 01:05:11,500 +Now, I mean, I doubt the read-write speeds are super great for DNA. + +1589 +01:05:11,780 --> 01:05:12,340 +Right. + +1590 +01:05:12,600 --> 01:05:18,140 +But imagine though that you have some type of secret information, right? + +1591 +01:05:18,260 --> 01:05:22,960 +And then it opens up another challenge for security, which is if you're storing important + +1592 +01:05:22,960 --> 01:05:27,040 +information within your own DNA, then ... + +1593 +01:05:27,040 --> 01:05:27,420 +Yeah. + +1594 +01:05:27,480 --> 01:05:30,900 +That brings a whole new meaning to trust fund baby. + +1595 +01:05:31,520 --> 01:05:32,040 +Yeah. + +1596 +01:05:32,060 --> 01:05:32,920 +Well, but think about it. + +1597 +01:05:32,940 --> 01:05:39,540 +Somebody could technically take the glass at the bar and then have access to your information. + +1598 +01:05:39,900 --> 01:05:40,320 +Yeah. + +1599 +01:05:40,340 --> 01:05:41,100 +I mean, that's true. + +1600 +01:05:41,100 --> 01:05:42,280 +You'd have to encrypt it, I guess. + +1601 +01:05:42,480 --> 01:05:42,800 +Yeah. + +1602 +01:05:43,620 --> 01:05:44,920 +It's going to be an interesting ... + +1603 +01:05:44,920 --> 01:05:47,580 +Don't the police already have the right to get your DNA? + +1604 +01:05:48,540 --> 01:05:48,860 +No. + +1605 +01:05:48,920 --> 01:05:52,060 +That's another one of those weird areas too when it comes to ... + +1606 +01:05:52,060 --> 01:05:54,320 +Because they can offer you like a soda in the ... Or is that just the movies? + +1607 +01:05:54,760 --> 01:05:59,020 +Well, I mean, if they offer you something, then it's entrapment. + +1608 +01:05:59,120 --> 01:06:00,520 +But if you ... They just take it up out of the trash. + +1609 +01:06:00,520 --> 01:06:03,040 +If there's just sodas on the table and you just grab one ... + +1610 +01:06:03,040 --> 01:06:03,220 +Right. + +1611 +01:06:03,220 --> 01:06:03,720 +Then it's not. + +1612 +01:06:03,840 --> 01:06:04,340 +There you go. + +1613 +01:06:05,240 --> 01:06:05,740 +All right. + +1614 +01:06:05,760 --> 01:06:06,400 +Let's take a call here. + +1615 +01:06:06,440 --> 01:06:06,960 +Let's talk to Frank. + +1616 +01:06:07,080 --> 01:06:07,400 +Hey, Frank. + +1617 +01:06:07,440 --> 01:06:07,800 +How are you? + +1618 +01:06:08,540 --> 01:06:08,860 +Hey. + +1619 +01:06:08,920 --> 01:06:09,400 +Good, guys. + +1620 +01:06:09,940 --> 01:06:10,260 +Hey. + +1621 +01:06:10,360 --> 01:06:11,080 +I heard you talking about the ... + +1622 +01:06:11,080 --> 01:06:11,080 + + +1623 +01:06:11,080 --> 01:06:11,080 + + +1624 +01:06:11,100 --> 01:06:14,060 +You were talking earlier about YouTube TV and I'm curious. + +1625 +01:06:15,040 --> 01:06:16,300 +How does that work? + +1626 +01:06:16,540 --> 01:06:24,540 +I have one of those bundled packages with phone, internet, and direct TV and I'm thinking + +1627 +01:06:24,540 --> 01:06:27,840 +I'd like to get out of it pretty soon and that YouTube thing sounds interesting. + +1628 +01:06:28,520 --> 01:06:28,960 +Yeah. + +1629 +01:06:29,080 --> 01:06:30,320 +It sounds pretty good. + +1630 +01:06:30,440 --> 01:06:33,560 +I mean, you have to worry about data caps, of course, depending on your provider. + +1631 +01:06:33,960 --> 01:06:39,980 +But $35 a month and being able to watch all kinds of stuff and they allow you to do like + +1632 +01:06:39,980 --> 01:06:46,220 +full DVR where you can just watch on demand and you even get the ability to fast forward + +1633 +01:06:46,220 --> 01:06:47,380 +which you don't in Sling. + +1634 +01:06:47,620 --> 01:06:51,540 +You'll have to check out their channel list for a full list and I'm sure it'll vary depending + +1635 +01:06:51,540 --> 01:06:52,240 +on where you are. + +1636 +01:06:52,600 --> 01:06:52,600 + + +1637 +01:06:53,020 --> 01:06:59,480 +Yeah, because we ... I mean, we recently got a smart TV and we tend to watch Netflix through + +1638 +01:06:59,480 --> 01:07:02,500 +the TV more than we do any of the cable channels. + +1639 +01:07:02,780 --> 01:07:04,160 +Right, which is normal. + +1640 +01:07:04,780 --> 01:07:09,940 +Yeah, which ... So I'm thinking that once I'm able to get out of my ... Whatever the + +1641 +01:07:09,940 --> 01:07:15,960 +cutoff deal is with the cable, I would prefer to get out of that and try something different. + +1642 +01:07:16,240 --> 01:07:20,420 +So just having an internet connection is all you need then to hook into it. + +1643 +01:07:20,560 --> 01:07:20,880 +Yep. + +1644 +01:07:20,880 --> 01:07:21,120 +Oh, great. + +1645 +01:07:21,240 --> 01:07:21,560 +All right. + +1646 +01:07:21,720 --> 01:07:22,440 +Okay, thanks a lot. + +1647 +01:07:22,620 --> 01:07:23,680 +Well, good luck with that. + +1648 +01:07:23,840 --> 01:07:27,760 +I mean, I'm all down ... I'm totally down for people not being on cable. + +1649 +01:07:27,960 --> 01:07:30,960 +I mean, if this turns out to be good enough, maybe I should have waited a bit. + +1650 +01:07:31,480 --> 01:07:33,380 +Yeah, well, you can take a look at the list. + +1651 +01:07:33,460 --> 01:07:34,240 +I can also cancel anytime. + +1652 +01:07:34,380 --> 01:07:35,000 +I made sure of that. + +1653 +01:07:35,180 --> 01:07:36,420 +Yeah, no contract for you, man. + +1654 +01:07:36,560 --> 01:07:36,820 +Correct. + +1655 +01:07:36,940 --> 01:07:38,300 +That's not how we roll around. + +1656 +01:07:38,400 --> 01:07:39,100 +We don't do contracts. + +1657 +01:07:39,840 --> 01:07:43,620 +All right, stick around for more of the Computer Guru Show coming up right after these messages. + +1658 +01:07:44,500 --> 01:07:47,180 +790-2040 if you want to get in line to have a conversation with us. + +1659 +01:07:47,240 --> 01:07:47,880 +We'll be right back. + +1660 +01:07:51,540 --> 01:07:51,880 +. + +1661 +01:08:03,200 --> 01:08:03,540 +. + +1662 +01:08:03,540 --> 01:08:03,540 + + +1663 +01:08:03,540 --> 01:08:03,640 +. + +1664 +01:08:03,640 --> 01:08:03,920 +. + +1665 +01:08:03,920 --> 01:08:03,940 +. + +1666 +01:08:03,940 --> 01:08:03,940 + + +1667 +01:08:03,940 --> 01:08:03,940 + + +1668 +01:08:04,340 --> 01:08:04,680 +. + +1669 +01:08:04,680 --> 01:08:04,780 +. + +1670 +01:08:04,780 --> 01:08:04,780 + + +1671 +01:08:04,780 --> 01:08:04,780 + + +1672 +01:08:04,780 --> 01:08:05,320 +. + +1673 +01:08:05,320 --> 01:08:05,380 +. + +1674 +01:08:15,240 --> 01:08:15,280 +. + +1675 +01:08:17,240 --> 01:08:17,280 +. + +1676 +01:08:17,520 --> 01:08:17,560 +. + +1677 +01:08:17,900 --> 01:08:17,940 +. + +1678 +01:08:18,960 --> 01:08:19,000 +. + +1679 +01:08:19,000 --> 01:08:19,000 + + +1680 +01:08:19,600 --> 01:08:19,640 +. + +1681 +01:08:19,640 --> 01:08:19,660 +. + +1682 +01:08:19,660 --> 01:08:19,700 +. + +1683 +01:08:19,760 --> 01:08:19,800 +. + +1684 +01:08:20,840 --> 01:08:20,880 +. + +1685 +01:08:20,880 --> 01:08:20,900 +. + +1686 +01:08:24,580 --> 01:08:24,620 +. + +1687 +01:08:24,620 --> 01:08:24,620 + + +1688 +01:08:24,620 --> 01:08:24,620 + + +1689 +01:08:24,620 --> 01:08:24,620 + + +1690 +01:08:24,620 --> 01:08:24,660 +. + +1691 +01:08:24,660 --> 01:08:24,660 + + +1692 +01:08:24,660 --> 01:08:24,660 + + +1693 +01:08:24,660 --> 01:08:24,660 + + +1694 +01:08:24,660 --> 01:08:24,680 +. + +1695 +01:08:24,680 --> 01:08:24,680 + + +1696 +01:08:24,680 --> 01:08:24,700 +. + +1697 +01:08:24,700 --> 01:08:24,720 +. + +1698 +01:08:24,720 --> 01:08:24,740 +. + +1699 +01:08:24,740 --> 01:08:24,760 +. + +1700 +01:08:24,760 --> 01:08:24,780 +. + +1701 +01:08:24,780 --> 01:08:24,800 +. + +1702 +01:08:24,800 --> 01:08:24,820 +. + +1703 +01:08:24,820 --> 01:08:24,840 +. + +1704 +01:08:24,840 --> 01:08:24,860 +. + +1705 +01:08:24,860 --> 01:08:24,880 +. + +1706 +01:08:24,880 --> 01:08:24,900 +. + +1707 +01:08:24,900 --> 01:08:24,920 +. + +1708 +01:08:24,920 --> 01:08:24,940 +. + +1709 +01:08:24,940 --> 01:08:24,960 +. + +1710 +01:08:24,960 --> 01:08:24,980 +. + +1711 +01:08:24,980 --> 01:08:25,000 +. + +1712 +01:08:25,000 --> 01:08:25,020 +. + +1713 +01:08:25,020 --> 01:08:25,040 +. + +1714 +01:08:25,040 --> 01:08:25,060 +. + +1715 +01:08:25,060 --> 01:08:25,080 +. + +1716 +01:08:25,080 --> 01:08:25,100 +. + +1717 +01:08:25,460 --> 01:08:25,500 +. + +1718 +01:08:25,560 --> 01:08:25,600 +. + +1719 +01:08:25,600 --> 01:08:25,600 + + +1720 +01:08:25,600 --> 01:08:25,600 + + +1721 +01:08:25,600 --> 01:08:25,600 + + +1722 +01:08:26,000 --> 01:08:26,040 +. + +1723 +01:08:26,040 --> 01:08:26,080 +. + +1724 +01:08:26,080 --> 01:08:26,080 + + +1725 +01:08:26,080 --> 01:08:26,080 + + +1726 +01:08:26,080 --> 01:08:26,080 + + +1727 +01:08:26,080 --> 01:08:26,080 + + +1728 +01:08:26,080 --> 01:08:26,080 + + +1729 +01:08:26,080 --> 01:08:26,080 + + +1730 +01:08:26,080 --> 01:08:26,080 + + +1731 +01:08:26,080 --> 01:08:26,080 + + +1732 +01:08:26,080 --> 01:08:26,080 + + +1733 +01:08:26,160 --> 01:08:26,200 +. + +1734 +01:08:26,200 --> 01:08:26,200 + + +1735 +01:08:26,200 --> 01:08:26,200 + + +1736 +01:08:26,200 --> 01:08:26,200 + + +1737 +01:08:26,200 --> 01:08:26,200 + + +1738 +01:08:26,200 --> 01:08:26,200 + + +1739 +01:08:26,200 --> 01:08:26,200 + + +1740 +01:08:26,200 --> 01:08:26,200 + + +1741 +01:08:26,200 --> 01:08:26,200 + + +1742 +01:08:26,200 --> 01:08:26,200 + + +1743 +01:08:26,200 --> 01:08:26,200 + + +1744 +01:08:26,200 --> 01:08:26,200 + + +1745 +01:08:26,200 --> 01:08:26,200 + + +1746 +01:08:26,200 --> 01:08:26,220 +. + +1747 +01:08:27,980 --> 01:08:28,020 +. + +1748 +01:08:35,380 --> 01:08:38,520 +Guru Show on AM 1030, KVOY The Voice. + +1749 +01:08:52,880 --> 01:08:54,600 +Welcome back to the Computer Guru Show. + +1750 +01:08:54,680 --> 01:08:55,160 +My name is Mike. + +1751 +01:08:55,180 --> 01:08:57,940 +Here to deal with your technology needs and treat you like a person in the process. + +1752 +01:08:58,040 --> 01:08:59,360 +That's 790-2040. + +1753 +01:08:59,440 --> 01:09:01,080 +That's 520-790-24. + +1754 +01:09:01,780 --> 01:09:02,580 +Wait, 2040? + +1755 +01:09:02,580 --> 01:09:06,280 +2040, or join us in the chat, gurushow.com slash chat. + +1756 +01:09:06,340 --> 01:09:08,300 +You can ask your question there, and we'll answer it on air. + +1757 +01:09:08,420 --> 01:09:11,820 +A lot of times, also, if we don't answer the questions on air, Howard's in there as well, + +1758 +01:09:11,920 --> 01:09:13,440 +and he's helping people out, too. + +1759 +01:09:13,500 --> 01:09:14,380 +I think John's in there, too, right? + +1760 +01:09:14,540 --> 01:09:14,740 +Yeah. + +1761 +01:09:14,820 --> 01:09:18,420 +You've got mostly the whole crew in there, answering questions away. + +1762 +01:09:18,860 --> 01:09:25,080 +I try to get everybody to agree to the uniform guru underscore name, but only me did that. + +1763 +01:09:25,860 --> 01:09:26,220 +Right. + +1764 +01:09:26,320 --> 01:09:27,280 +I never did. + +1765 +01:09:27,700 --> 01:09:28,060 +Yeah. + +1766 +01:09:28,320 --> 01:09:29,460 +I am the guru. + +1767 +01:09:29,720 --> 01:09:31,000 +Is that what I am? + +1768 +01:09:31,000 --> 01:09:32,140 +It's just the computer guru. + +1769 +01:09:32,580 --> 01:09:32,680 +Okay. + +1770 +01:09:33,900 --> 01:09:34,900 +Well, let's talk to Rick. + +1771 +01:09:35,080 --> 01:09:35,620 +Hey, Rick. + +1772 +01:09:35,660 --> 01:09:36,060 +How are you? + +1773 +01:09:36,640 --> 01:09:37,580 +Hey, I'm doing okay. + +1774 +01:09:37,920 --> 01:09:44,920 +Hey, occasionally, I house-sit my son's house, and he's got internet television services + +1775 +01:09:44,920 --> 01:09:46,920 +like Roku and Hulu and all that. + +1776 +01:09:47,140 --> 01:09:47,420 +Right. + +1777 +01:09:48,080 --> 01:09:53,020 +I find it kind of problematical and a little bit of a pain in the ass, but I don't think + +1778 +01:09:53,020 --> 01:09:55,920 +it's as good as having satellite or cable. + +1779 +01:09:56,760 --> 01:10:00,960 +It depends on what you're looking for, and especially if there's fragmentation, right? + +1780 +01:10:00,960 --> 01:10:01,040 +Right. + +1781 +01:10:01,040 --> 01:10:06,100 +So if they're using multiple services on different devices. + +1782 +01:10:06,100 --> 01:10:06,200 +Right. + +1783 +01:10:06,200 --> 01:10:10,280 +Well, you've got about eight different ... You can do Hulu or Roku or this one or that one. + +1784 +01:10:10,560 --> 01:10:12,320 +There's about six or eight different choices. + +1785 +01:10:12,640 --> 01:10:16,540 +Then I notice that, okay, I'll see a program that's on the menu. + +1786 +01:10:16,720 --> 01:10:18,060 +Hey, I'd like to watch that, right? + +1787 +01:10:18,220 --> 01:10:25,420 +Well, then a lot of times it'll be like $3.99, $7.99, $15.99. + +1788 +01:10:25,500 --> 01:10:26,100 +You know what I'm saying? + +1789 +01:10:26,140 --> 01:10:30,940 +In other words, you've got to enter a credit card number right then in order to use it. + +1790 +01:10:30,940 --> 01:10:30,940 + + +1791 +01:10:30,940 --> 01:10:30,940 + + +1792 +01:10:30,940 --> 01:10:32,460 +This is true. + +1793 +01:10:32,800 --> 01:10:33,180 +Now ... + +1794 +01:10:33,180 --> 01:10:40,500 +So channel surfing and stuff, I mean, in the past I've had not only cable from a Tucson + +1795 +01:10:40,500 --> 01:10:47,260 +cable or whatever, but then I had the Dish Network satellite top package, which was 200 + +1796 +01:10:47,260 --> 01:10:48,140 +plus channels. + +1797 +01:10:48,480 --> 01:10:51,120 +So here's the thing with the Rokus. + +1798 +01:10:52,760 --> 01:11:00,180 +Roku and Apple TV both have this fatal flaw, in my opinion, is that they sell you a relatively + +1799 +01:11:00,180 --> 01:11:00,820 +cheap device. + +1800 +01:11:01,080 --> 01:11:05,120 +They say you can get online and watch whatever you want, but by the way, we're going to microcharge + +1801 +01:11:05,120 --> 01:11:06,080 +the heck out of you. + +1802 +01:11:06,580 --> 01:11:07,760 +Yeah, that's what I'm saying. + +1803 +01:11:07,900 --> 01:11:11,420 +I mean, in other words, there's many programs where it would say, yeah, you can watch this, + +1804 +01:11:11,500 --> 01:11:12,660 +but it's like $7.99. + +1805 +01:11:12,920 --> 01:11:13,560 +So here's ... + +1806 +01:11:13,560 --> 01:11:15,680 +Key in your credit card number or whatever. + +1807 +01:11:16,080 --> 01:11:17,200 +Here's how I deal with it. + +1808 +01:11:17,300 --> 01:11:23,380 +I have an Apple ... Or I'm sorry, an Amazon Fire TV, and I have an Amazon Prime account. + +1809 +01:11:24,380 --> 01:11:30,100 +With the two things together, I can watch basically any TV show. + +1810 +01:11:30,100 --> 01:11:34,040 +I can watch any video or any movie, and it's included in the price of my Amazon Prime account. + +1811 +01:11:34,580 --> 01:11:35,400 +Well, that's good. + +1812 +01:11:35,520 --> 01:11:37,640 +See, I'm being just a house sitter. + +1813 +01:11:38,180 --> 01:11:40,180 +I wasn't ... I didn't have all of those. + +1814 +01:11:40,180 --> 01:11:43,540 +Well, this is information you can give to your son then, so he can have a better experience. + +1815 +01:11:43,660 --> 01:11:44,840 +Yeah, he probably knows already. + +1816 +01:11:45,220 --> 01:11:47,260 +I'm just saying, when I was watching this ... + +1817 +01:11:47,260 --> 01:11:51,920 +Well, what I found is a lot of people, they get locked into this idea, right? + +1818 +01:11:52,020 --> 01:11:53,500 +They're like, well, I bought this Roku. + +1819 +01:11:53,660 --> 01:11:58,020 +It cost me 40 bucks or 60 bucks or whatever, and then they never think, there's probably + +1820 +01:11:58,020 --> 01:11:58,980 +something better out there. + +1821 +01:11:59,040 --> 01:11:59,860 +It doesn't cost much. + +1822 +01:12:00,100 --> 01:12:00,620 +Right? + +1823 +01:12:00,680 --> 01:12:09,560 +So, like the Amazon Fire Stick costs $35, and then your Amazon account gives you access + +1824 +01:12:09,560 --> 01:12:11,660 +to effectively everything. + +1825 +01:12:12,320 --> 01:12:17,560 +Now, Amazon is not to be trifled with when it comes to the number of programs that they + +1826 +01:12:17,560 --> 01:12:18,580 +have available to you. + +1827 +01:12:19,420 --> 01:12:20,400 +They are ... + +1828 +01:12:20,400 --> 01:12:21,000 +They have a lot? + +1829 +01:12:21,120 --> 01:12:21,780 +Oh, yeah. + +1830 +01:12:21,940 --> 01:12:24,420 +They are Netflix and then some. + +1831 +01:12:24,780 --> 01:12:28,260 +It's like if you were to take Netflix and Hulu and stick them together. + +1832 +01:12:28,260 --> 01:12:32,860 +They have got everything, and it's all included in the price. + +1833 +01:12:33,120 --> 01:12:33,620 +So, it's a lot ... + +1834 +01:12:33,620 --> 01:12:35,200 +They have more than like Dish Network? + +1835 +01:12:36,580 --> 01:12:39,520 +As far as ... They have basically everything that's on ... + +1836 +01:12:39,520 --> 01:12:39,920 +The amount of choices. + +1837 +01:12:40,040 --> 01:12:44,940 +Like if you get the top of the line Dish package, they got like 200 plus. + +1838 +01:12:45,460 --> 01:12:51,300 +I have never, in my personal experience, I have never asked for a program to be displayed + +1839 +01:12:51,300 --> 01:12:53,380 +on my television that was not available. + +1840 +01:12:54,060 --> 01:12:54,540 +Okay. + +1841 +01:12:54,560 --> 01:12:58,240 +Like the Heroes Channel, which formerly was called the Heroes Channel. + +1842 +01:12:58,240 --> 01:12:58,240 + + +1843 +01:12:58,240 --> 01:12:58,240 + + +1844 +01:12:58,240 --> 01:12:59,120 +The Heroes Channel is the military channel. + +1845 +01:12:59,660 --> 01:13:01,140 +That's one I like to watch a lot. + +1846 +01:13:01,380 --> 01:13:01,760 +I don't know. + +1847 +01:13:01,900 --> 01:13:05,320 +They definitely have a lot of those kinds of shows on Amazon Prime, because I watch some + +1848 +01:13:05,320 --> 01:13:05,900 +of that stuff too. + +1849 +01:13:06,560 --> 01:13:07,980 +It might be worth just looking around. + +1850 +01:13:08,200 --> 01:13:11,620 +You can go to the Amazon website and check out what they've got available as far as TV. + +1851 +01:13:11,820 --> 01:13:15,320 +Yeah, I have to tell them about that, because like I said, when I was taking care of his + +1852 +01:13:15,320 --> 01:13:22,200 +place for a week or two, I was both frustrated and a little PO'd about the way that they + +1853 +01:13:22,200 --> 01:13:22,980 +had it set up. + +1854 +01:13:23,160 --> 01:13:26,180 +I mean, there was a lot of choices, but almost everything. + +1855 +01:13:26,880 --> 01:13:28,220 +There was a few things that I was a little bit frustrated about. + +1856 +01:13:28,220 --> 01:13:28,220 + + +1857 +01:13:28,220 --> 01:13:28,220 + + +1858 +01:13:28,220 --> 01:13:28,220 + + +1859 +01:13:28,220 --> 01:13:28,420 +I mean, I was a little bit frustrated about the fact that I was not able to get a lot + +1860 +01:13:28,420 --> 01:13:31,300 +of the things that were available for free, maybe half a dozen things that were free, and + +1861 +01:13:31,300 --> 01:13:34,380 +then the rest was key in your credit card. + +1862 +01:13:34,540 --> 01:13:40,400 +You still have to consider, though, that there is a ... He's paying probably nothing per + +1863 +01:13:40,400 --> 01:13:45,680 +month other than internet for that, as opposed to what would be involved with a monthly charge + +1864 +01:13:45,680 --> 01:13:47,080 +for a satellite or cable. + +1865 +01:13:47,200 --> 01:13:47,580 +Right, right, right. + +1866 +01:13:48,900 --> 01:13:55,380 +I'm just saying, not carrying a calculator around with me at all times and all that, + +1867 +01:13:55,480 --> 01:13:57,460 +I could see where my bill ... + +1868 +01:13:57,460 --> 01:13:58,200 +Yeah, I understand. + +1869 +01:13:58,220 --> 01:14:03,420 +I was paying like $90 a month for the Capital Nine Dish Network. + +1870 +01:14:04,880 --> 01:14:12,640 +At the rate I would watch interesting programs in a month, I would way, way exceed $90 a + +1871 +01:14:12,640 --> 01:14:16,440 +month if I were to go ahead and pay for those programs individually. + +1872 +01:14:16,900 --> 01:14:17,000 +Yeah. + +1873 +01:14:17,000 --> 01:14:22,300 +When it's set up right, a cord cutting service, like I said, when it's set up right can cost + +1874 +01:14:22,300 --> 01:14:24,760 +a fraction of that, and you'll have access to nearly everything. + +1875 +01:14:24,980 --> 01:14:25,160 +Right. + +1876 +01:14:25,200 --> 01:14:28,200 +So everything that I watch, if I were to take a ... If I were to add everything I'd have + +1877 +01:14:28,200 --> 01:14:28,200 + + +1878 +01:14:28,220 --> 01:14:33,820 +that is involved with the system that I use for being able to get everything. + +1879 +01:14:33,940 --> 01:14:40,280 +Like I said, I've never run across a program that I did not have access to for the included price. + +1880 +01:14:40,520 --> 01:14:53,140 +I pay $80 a year for Amazon Prime, and then I paid about $30 a month for the additional services + +1881 +01:14:53,140 --> 01:14:56,440 +that go on some of the back-end stuff of what I use, and then Internet. + +1882 +01:14:56,600 --> 01:14:57,540 +And that's it. + +1883 +01:14:57,540 --> 01:15:03,260 +Oh, that's pretty good because, I mean, yeah, obviously at $90 a month, you'd be paying a lot of money. + +1884 +01:15:03,340 --> 01:15:03,700 +Right. + +1885 +01:15:03,820 --> 01:15:06,380 +And you'd be paying $1,200 almost a month. + +1886 +01:15:06,480 --> 01:15:12,720 +When we do the get-together in, like, April or whatever, we'll show a demo of how to do it right. + +1887 +01:15:13,560 --> 01:15:17,660 +And you guys can come down and check out what cord cutting actually looks like if you do it properly. + +1888 +01:15:18,000 --> 01:15:19,020 +But thanks for the call, Rick. + +1889 +01:15:19,140 --> 01:15:19,600 +Yeah, I've got a question for you. + +1890 +01:15:19,600 --> 01:15:20,160 +Yeah, go ahead. + +1891 +01:15:20,240 --> 01:15:20,740 +I've got a question for you. + +1892 +01:15:20,880 --> 01:15:21,820 +Yeah, maybe quick, though. + +1893 +01:15:22,240 --> 01:15:26,860 +Yeah, I've got an HP executive laptop computer, and I've got the Dragon software. + +1894 +01:15:27,100 --> 01:15:27,460 +Oh. + +1895 +01:15:27,540 --> 01:15:29,380 +And an inexpensive printer. + +1896 +01:15:29,540 --> 01:15:31,640 +I was thinking about putting out a book on my own. + +1897 +01:15:31,720 --> 01:15:33,560 +You know, I have an incredible life story. + +1898 +01:15:33,860 --> 01:15:38,080 +I was thinking about coming out with my own book and maybe self-publishing it or whatever. + +1899 +01:15:38,420 --> 01:15:41,280 +But where is your shop on Fort Lowell? + +1900 +01:15:41,340 --> 01:15:43,500 +Because I may have to come over there and get your advice. + +1901 +01:15:44,140 --> 01:15:45,100 +510 East Fort Lowell. + +1902 +01:15:45,200 --> 01:15:46,060 +It's at 1st and Fort Lowell. + +1903 +01:15:46,860 --> 01:15:47,200 +All right. + +1904 +01:15:47,280 --> 01:15:47,840 +Thanks, Mike. + +1905 +01:15:47,980 --> 01:15:48,260 +All right. + +1906 +01:15:48,280 --> 01:15:49,120 +Appreciate the call, Rick. + +1907 +01:15:49,180 --> 01:15:49,780 +Thank you very much. + +1908 +01:15:49,820 --> 01:15:50,880 +Hey, one more thing. + +1909 +01:15:51,020 --> 01:15:51,900 +You are the guru. + +1910 +01:15:52,620 --> 01:15:53,340 +Yes, I am. + +1911 +01:15:53,480 --> 01:15:54,500 +Thank you very much. + +1912 +01:15:54,760 --> 01:15:55,660 +All right. + +1913 +01:15:55,700 --> 01:15:56,840 +We're going to take another break, I think. + +1914 +01:15:56,900 --> 01:15:57,520 +That's what we're going to do. + +1915 +01:15:57,520 --> 01:15:59,180 +I'm going to make Kent push some buttons here. + +1916 +01:15:59,400 --> 01:16:03,640 +And when we come back from the break, more Computer Guru at 790-2040. + +1917 +01:16:05,060 --> 01:16:05,500 +Thank you. + +1918 +01:16:14,780 --> 01:16:15,440 +Thank you. + +1919 +01:16:21,260 --> 01:16:22,020 +Thank you. + +1920 +01:16:22,820 --> 01:16:23,380 +Thank you. + +1921 +01:16:23,380 --> 01:16:23,380 + + +1922 +01:16:23,640 --> 01:16:24,100 +Thank you. + +1923 +01:16:24,520 --> 01:16:24,520 + + +1924 +01:16:24,520 --> 01:16:24,520 + + +1925 +01:16:24,540 --> 01:16:24,540 + + +1926 +01:16:24,540 --> 01:16:24,540 + + +1927 +01:16:24,540 --> 01:16:24,540 + + +1928 +01:16:24,540 --> 01:16:24,540 + + +1929 +01:16:24,540 --> 01:16:24,540 + + +1930 +01:16:24,540 --> 01:16:24,540 + + +1931 +01:16:24,540 --> 01:16:24,540 + + +1932 +01:16:24,540 --> 01:16:24,540 + + +1933 +01:16:24,540 --> 01:16:24,540 + + +1934 +01:16:24,540 --> 01:16:24,540 + + +1935 +01:16:24,540 --> 01:16:24,540 + + +1936 +01:16:24,540 --> 01:16:24,540 + + +1937 +01:16:24,540 --> 01:16:24,540 + + +1938 +01:16:24,540 --> 01:16:24,540 + + +1939 +01:16:24,540 --> 01:16:24,540 + + +1940 +01:16:24,540 --> 01:16:24,540 + + +1941 +01:16:24,540 --> 01:16:24,540 + + +1942 +01:16:24,540 --> 01:16:24,540 + + +1943 +01:16:24,540 --> 01:16:24,720 +Thank you. + +1944 +01:16:24,760 --> 01:16:24,760 + + +1945 +01:16:24,760 --> 01:16:24,760 + + +1946 +01:16:24,760 --> 01:16:24,760 + + +1947 +01:16:24,760 --> 01:16:24,760 + + +1948 +01:16:24,760 --> 01:16:24,760 + + +1949 +01:16:24,760 --> 01:16:24,760 + + +1950 +01:16:24,760 --> 01:16:24,760 + + +1951 +01:16:24,760 --> 01:16:24,760 + + +1952 +01:16:24,840 --> 01:16:25,200 +Thank you. + +1953 +01:16:25,420 --> 01:16:25,560 +Thank you. + +1954 +01:16:25,560 --> 01:16:27,580 +She would do what you told her how to walk this way. + +1955 +01:16:27,680 --> 01:16:30,000 +Walk this way. + +1956 +01:16:30,620 --> 01:16:32,260 +Walk this way. + +1957 +01:16:32,920 --> 01:16:34,740 +Walk this way. + +1958 +01:16:35,340 --> 01:16:36,780 +Walk this way. + +1959 +01:16:37,000 --> 01:16:39,360 +She told me to walk this way. + +1960 +01:16:39,840 --> 01:16:41,520 +Walk this way. + +1961 +01:16:42,120 --> 01:16:43,940 +Walk this way. + +1962 +01:16:44,420 --> 01:16:45,880 +Walk this way. + +1963 +01:16:46,020 --> 01:16:47,380 +She said give me a kiss. + +1964 +01:16:48,660 --> 01:16:51,940 +Computer troubles? Need some advice? Call in now. + +1965 +01:16:52,100 --> 01:16:54,340 +Mike Swanson will be back after these messages. + +1966 +01:16:54,340 --> 01:16:56,000 +The Computer Guru Show. + +1967 +01:16:56,160 --> 01:16:59,000 +AM 1030, KVOY, The Voice. + +1968 +01:17:09,540 --> 01:17:12,600 +Mike Swanson, your computer guru, is just a click away. + +1969 +01:17:12,840 --> 01:17:15,100 +Listen and watch at gurushow.com. + +1970 +01:17:15,460 --> 01:17:17,380 +This is the Computer Guru Show. + +1971 +01:17:18,080 --> 01:17:22,560 +Welcome back to the Computer Guru Show, 7902040. + +1972 +01:17:22,560 --> 01:17:23,620 +If you'd like to be part of the show, + +1973 +01:17:23,640 --> 01:17:24,320 +or if you'd like to be part of the show, + +1974 +01:17:24,320 --> 01:17:25,980 +join us in the chat, gurushow.com. + +1975 +01:17:26,300 --> 01:17:28,140 +You can ask your questions there, + +1976 +01:17:28,240 --> 01:17:30,380 +and you'll get a multitude of answers. + +1977 +01:17:30,640 --> 01:17:31,360 +Probably too many. + +1978 +01:17:31,860 --> 01:17:35,120 +You'll be answered so hard, you'll just want to leave. + +1979 +01:17:35,280 --> 01:17:37,500 +And then probably people will disagree about the answers + +1980 +01:17:37,500 --> 01:17:39,620 +that other people gave, and everyone will just argue. + +1981 +01:17:39,860 --> 01:17:40,740 +And then I will settle it. + +1982 +01:17:41,020 --> 01:17:43,480 +And start kicking people out of the chat. + +1983 +01:17:44,240 --> 01:17:45,700 +So I did want to mention one more thing + +1984 +01:17:45,700 --> 01:17:47,640 +in the cord cutting world for a second. + +1985 +01:17:47,840 --> 01:17:50,120 +A lot of the complaints that people have + +1986 +01:17:50,120 --> 01:17:51,660 +about the whole cord cutting setup + +1987 +01:17:51,660 --> 01:17:53,920 +is that it doesn't feel like actual TV, + +1988 +01:17:53,920 --> 01:17:55,180 +where you can just flip through channels. + +1989 +01:17:55,680 --> 01:17:57,520 +There is a solution for that, though. + +1990 +01:17:57,860 --> 01:18:00,160 +There's a software called Pseudo TV Live, + +1991 +01:18:00,620 --> 01:18:01,920 +which you can set up on a computer, + +1992 +01:18:02,380 --> 01:18:03,700 +or any device, really. + +1993 +01:18:03,840 --> 01:18:05,980 +And then you just hook up all of your services to it, + +1994 +01:18:06,020 --> 01:18:09,400 +and it makes them all into a pseudo cable device. + +1995 +01:18:09,640 --> 01:18:10,980 +So you can just flip through your channels. + +1996 +01:18:11,220 --> 01:18:12,420 +There's stuff playing constantly. + +1997 +01:18:12,680 --> 01:18:13,300 +It's pretty cool. + +1998 +01:18:13,480 --> 01:18:16,440 +Yeah, I guess that I've been doing this for so long now + +1999 +01:18:17,300 --> 01:18:19,000 +that I have no nostalgia. + +2000 +01:18:19,500 --> 01:18:20,240 +Yeah, I agree. + +2001 +01:18:20,280 --> 01:18:21,400 +For any of that stuff. + +2002 +01:18:21,400 --> 01:18:23,120 +I mean, so there are circumstances + +2003 +01:18:23,120 --> 01:18:23,900 +in which I like to do this. + +2004 +01:18:23,900 --> 01:18:23,900 + + +2005 +01:18:23,900 --> 01:18:23,900 + + +2006 +01:18:23,900 --> 01:18:25,560 +I like to just have something on in the background. + +2007 +01:18:26,320 --> 01:18:29,040 +But in that case, I'll just turn on autoplay, you know, + +2008 +01:18:29,060 --> 01:18:31,260 +and I'll just watch a whole show or something. + +2009 +01:18:31,480 --> 01:18:33,260 +I guess I'm weird in that respect, + +2010 +01:18:33,780 --> 01:18:36,620 +is that a lot of people like to put things on + +2011 +01:18:36,620 --> 01:18:37,520 +for background noise. + +2012 +01:18:37,760 --> 01:18:40,320 +And the only background noise that I have in my life + +2013 +01:18:40,320 --> 01:18:40,960 +is a fan. + +2014 +01:18:41,120 --> 01:18:42,800 +And then the rest of it is silence. + +2015 +01:18:42,980 --> 01:18:45,160 +I just enjoy silence so much + +2016 +01:18:45,160 --> 01:18:48,940 +that I have noise-canceling headphones + +2017 +01:18:48,940 --> 01:18:50,440 +that I don't plug into anything. + +2018 +01:18:50,580 --> 01:18:52,420 +Well, what you don't have, Mike, is tinnitus. + +2019 +01:18:52,800 --> 01:18:53,200 +So... + +2020 +01:18:53,200 --> 01:18:53,580 +This is... + +2021 +01:18:53,580 --> 01:18:53,840 +This is... + +2022 +01:18:53,840 --> 01:18:53,880 +This is... + +2023 +01:18:53,880 --> 01:18:54,000 +This is true. + +2024 +01:18:55,660 --> 01:18:57,280 +So, yeah, my dad was told me. + +2025 +01:18:57,280 --> 01:18:59,040 +He said that he's developed tinnitus recently. + +2026 +01:18:59,420 --> 01:19:00,500 +I've got some of that going on. + +2027 +01:19:00,960 --> 01:19:03,880 +It's because you go to those acid rock concerts + +2028 +01:19:03,880 --> 01:19:04,580 +that you go to. + +2029 +01:19:05,040 --> 01:19:05,600 +Acid rock? + +2030 +01:19:05,940 --> 01:19:09,060 +It's what my grandfather used to call anything that was... + +2031 +01:19:09,060 --> 01:19:10,960 +anything that was harder than the Beatles. + +2032 +01:19:11,480 --> 01:19:11,840 +Right? + +2033 +01:19:12,700 --> 01:19:14,920 +Yeah, it's all those acid rock shows that I go to. + +2034 +01:19:15,920 --> 01:19:17,420 +Oh, man. + +2035 +01:19:17,560 --> 01:19:17,880 +That was... + +2036 +01:19:18,760 --> 01:19:20,020 +That just came out of nowhere. + +2037 +01:19:20,120 --> 01:19:21,680 +I just remember him saying that one time + +2038 +01:19:21,680 --> 01:19:22,460 +and I was just like, + +2039 +01:19:22,580 --> 01:19:23,860 +oh, that's the funniest thing I've ever heard. + +2040 +01:19:23,860 --> 01:19:25,880 +Speaking of old man stuff, though, + +2041 +01:19:26,040 --> 01:19:27,280 +I wanted to kind of... + +2042 +01:19:27,280 --> 01:19:28,160 +I wanted to call you out + +2043 +01:19:28,160 --> 01:19:29,500 +and see if you're as good as your word on something. + +2044 +01:19:29,720 --> 01:19:29,860 +Okay. + +2045 +01:19:30,120 --> 01:19:33,560 +The Nokia 3310 is available once again. + +2046 +01:19:33,660 --> 01:19:34,720 +That's the famous phone + +2047 +01:19:34,720 --> 01:19:36,660 +that could stop a speeding bullet, as they said. + +2048 +01:19:36,980 --> 01:19:37,780 +It used to be able to. + +2049 +01:19:37,900 --> 01:19:38,100 +Yeah. + +2050 +01:19:38,560 --> 01:19:40,640 +So, you were saying a couple weeks ago + +2051 +01:19:40,640 --> 01:19:42,540 +that you like the old phones? + +2052 +01:19:43,480 --> 01:19:45,360 +I still have a wish + +2053 +01:19:45,360 --> 01:19:47,740 +that I could just have a non-smartphone. + +2054 +01:19:47,800 --> 01:19:49,260 +So, is this more of like a... + +2055 +01:19:49,260 --> 01:19:50,700 +I dream of a world + +2056 +01:19:50,700 --> 01:19:52,540 +in which I would be able to do that kind of thing? + +2057 +01:19:52,780 --> 01:19:53,640 +Well, it's... + +2058 +01:19:53,640 --> 01:19:56,300 +Because of my need for my smartphone + +2059 +01:19:56,300 --> 01:19:58,380 +for my data plan that I use all day, + +2060 +01:19:58,560 --> 01:19:59,860 +I cannot switch. + +2061 +01:20:00,760 --> 01:20:03,040 +However, if I could, + +2062 +01:20:03,420 --> 01:20:05,220 +if I did not need that plan anymore, + +2063 +01:20:05,420 --> 01:20:06,440 +I would not have a smartphone. + +2064 +01:20:06,700 --> 01:20:07,520 +Do you think that you would go + +2065 +01:20:07,520 --> 01:20:09,640 +to the new old Nokia phone? + +2066 +01:20:10,640 --> 01:20:11,040 +Yeah. + +2067 +01:20:11,060 --> 01:20:12,160 +I wish it would have been more like + +2068 +01:20:12,160 --> 01:20:13,900 +the old, old Nokia phone. + +2069 +01:20:14,080 --> 01:20:15,280 +The new one. + +2070 +01:20:15,480 --> 01:20:16,460 +Or like, here's a name + +2071 +01:20:16,460 --> 01:20:17,420 +you haven't heard in a while, probably. + +2072 +01:20:17,520 --> 01:20:18,800 +Like the old Kyocera phones. + +2073 +01:20:19,220 --> 01:20:20,100 +The StarTAC phones? + +2074 +01:20:20,320 --> 01:20:20,460 +Yeah. + +2075 +01:20:20,520 --> 01:20:22,080 +Remember playing Brick Attack on those things? + +2076 +01:20:22,480 --> 01:20:22,880 +Although, + +2077 +01:20:22,940 --> 01:20:23,500 +I have to... + +2078 +01:20:23,500 --> 01:20:23,600 +I have to admit, + +2079 +01:20:23,740 --> 01:20:25,280 +the only thing that made me really happy + +2080 +01:20:25,280 --> 01:20:26,820 +about the new Nokia phone, + +2081 +01:20:27,120 --> 01:20:28,720 +which is modeled after the old one, + +2082 +01:20:28,840 --> 01:20:29,620 +the one that was... + +2083 +01:20:29,620 --> 01:20:31,080 +The one that you find... + +2084 +01:20:32,040 --> 01:20:33,440 +The only cell phone + +2085 +01:20:33,440 --> 01:20:35,320 +that will be found in archaeological digs + +2086 +01:20:35,320 --> 01:20:38,460 +is the Nokia 3310 + +2087 +01:20:38,460 --> 01:20:42,060 +or that whole family of Nokia phones. + +2088 +01:20:44,600 --> 01:20:46,520 +I was very happy to know + +2089 +01:20:46,520 --> 01:20:48,400 +that the Snake game still works on that. + +2090 +01:20:48,720 --> 01:20:50,200 +Yeah, if you weren't playing Snake, man, + +2091 +01:20:50,340 --> 01:20:51,360 +just get out of town. + +2092 +01:20:51,540 --> 01:20:51,740 +Yeah. + +2093 +01:20:51,740 --> 01:20:53,960 +You don't know how to use a phone. + +2094 +01:20:53,980 --> 01:20:55,040 +So, this one has a two... + +2095 +01:20:55,040 --> 01:20:56,620 +It has a two megapixel camera, + +2096 +01:20:56,820 --> 01:20:57,760 +whereas the old phone + +2097 +01:20:57,760 --> 01:20:59,580 +had like a two pixel camera, I think. + +2098 +01:20:59,720 --> 01:21:00,500 +It had a potato. + +2099 +01:21:00,780 --> 01:21:02,020 +They had cameras, right? + +2100 +01:21:02,100 --> 01:21:02,900 +Some of these older... + +2101 +01:21:02,900 --> 01:21:04,240 +Oh, I'm thinking of the Kyocera ones. + +2102 +01:21:04,320 --> 01:21:05,800 +There were cameras on those. + +2103 +01:21:05,800 --> 01:21:07,000 +Yeah, Nokia's did not have cameras. + +2104 +01:21:07,060 --> 01:21:08,120 +But they were measured in like... + +2105 +01:21:08,120 --> 01:21:10,760 +Like I said, just pixels at that point. + +2106 +01:21:11,160 --> 01:21:12,140 +They were terrible. + +2107 +01:21:13,040 --> 01:21:14,220 +Yeah, they were terrible. + +2108 +01:21:14,860 --> 01:21:16,240 +All right, let's fit a call in here + +2109 +01:21:16,240 --> 01:21:18,120 +before we run out of show time here. + +2110 +01:21:18,180 --> 01:21:19,000 +Hey, Dave, how are you? + +2111 +01:21:20,100 --> 01:21:20,700 +Yeah, hi. + +2112 +01:21:20,800 --> 01:21:21,400 +Good morning. + +2113 +01:21:22,100 --> 01:21:23,800 +Hey, wanted to ask + +2114 +01:21:23,800 --> 01:21:25,500 +what you think about + +2115 +01:21:25,500 --> 01:21:29,080 +how, if you're going to be a cable cutter + +2116 +01:21:29,080 --> 01:21:31,180 +or get away from cable TV, + +2117 +01:21:31,540 --> 01:21:36,680 +how do you get your regular TV network stations? + +2118 +01:21:37,000 --> 01:21:38,180 +Are you talking about local? + +2119 +01:21:38,840 --> 01:21:40,300 +Yeah, local stations. + +2120 +01:21:40,400 --> 01:21:41,940 +Now, I can't get over the air. + +2121 +01:21:42,660 --> 01:21:44,040 +I'm in a problem area + +2122 +01:21:44,040 --> 01:21:45,960 +where there's no reception, whatever. + +2123 +01:21:46,320 --> 01:21:48,460 +Many of the official services, + +2124 +01:21:48,540 --> 01:21:50,560 +like the upcoming YouTube TV + +2125 +01:21:50,560 --> 01:21:53,120 +that's being released here, + +2126 +01:21:53,260 --> 01:21:54,080 +will offer... + +2127 +01:21:54,080 --> 01:21:55,240 +Yeah, I read that with interest. + +2128 +01:21:55,620 --> 01:21:58,020 +They will offer local channels as well. + +2129 +01:22:00,360 --> 01:22:01,840 +So there's going to be... + +2130 +01:22:01,840 --> 01:22:04,200 +Most of them offer some type of local add-on. + +2131 +01:22:04,280 --> 01:22:06,060 +And it's usually an additional charge. + +2132 +01:22:06,120 --> 01:22:08,140 +But apparently, from what I understand + +2133 +01:22:08,140 --> 01:22:09,260 +with the YouTube TV one, + +2134 +01:22:09,320 --> 01:22:10,400 +that they're going to be included + +2135 +01:22:11,040 --> 01:22:12,120 +for your local area. + +2136 +01:22:12,360 --> 01:22:13,340 +So that'll be interesting. + +2137 +01:22:14,440 --> 01:22:16,280 +That's the only one you've heard of so far? + +2138 +01:22:16,500 --> 01:22:18,380 +Sling offers it as well, but it's a premium. + +2139 +01:22:18,500 --> 01:22:20,200 +You have to buy the extra package. + +2140 +01:22:20,880 --> 01:22:22,540 +Yep, Sling TV offers it. + +2141 +01:22:22,740 --> 01:22:24,340 +YouTube TV is going to offer it for free. + +2142 +01:22:24,920 --> 01:22:26,740 +There's a couple of other services + +2143 +01:22:26,740 --> 01:22:29,640 +that historically have offered it. + +2144 +01:22:29,680 --> 01:22:33,480 +I know that one of them is in lawsuit entanglement + +2145 +01:22:33,480 --> 01:22:34,060 +at the moment, + +2146 +01:22:34,100 --> 01:22:35,320 +so they're no longer offering it. + +2147 +01:22:35,980 --> 01:22:38,220 +But there were several out there that offer that. + +2148 +01:22:38,720 --> 01:22:40,260 +And to me, though, + +2149 +01:22:41,780 --> 01:22:42,840 +it's another one of those things + +2150 +01:22:42,840 --> 01:22:45,920 +where when I started doing the cord-cutting bit, + +2151 +01:22:45,960 --> 01:22:47,660 +there was no option for local channels. + +2152 +01:22:47,680 --> 01:22:49,960 +So I've not seen a local channel, + +2153 +01:22:50,560 --> 01:22:51,280 +and I've been on a local channel in about a decade. + +2154 +01:22:51,480 --> 01:22:53,100 +So I don't really know what that's like, + +2155 +01:22:53,200 --> 01:22:54,320 +other than I just go to their website + +2156 +01:22:54,320 --> 01:22:55,620 +and watch the videos that they put up. + +2157 +01:22:55,940 --> 01:22:57,780 +Yeah, a lot of times, if you're worried about news, + +2158 +01:22:58,220 --> 01:22:59,880 +almost every news channel nowadays + +2159 +01:22:59,880 --> 01:23:01,740 +slices up their news segments + +2160 +01:23:01,740 --> 01:23:02,700 +and throws them on YouTube. + +2161 +01:23:04,560 --> 01:23:05,280 +Yeah, yeah. + +2162 +01:23:05,720 --> 01:23:08,980 +Well, I give them enough already for the internet. + +2163 +01:23:10,320 --> 01:23:12,560 +Yeah, well, I mean, it's coming to this. + +2164 +01:23:12,680 --> 01:23:13,700 +It's much like cell phones. + +2165 +01:23:13,780 --> 01:23:14,700 +We were talking before the show + +2166 +01:23:14,700 --> 01:23:18,200 +how voice minutes and text messages + +2167 +01:23:18,200 --> 01:23:19,660 +used to be a big... + +2168 +01:23:20,560 --> 01:23:22,500 +determining factor on which plan you're going to get. + +2169 +01:23:22,640 --> 01:23:24,020 +And now it doesn't really mean anything. + +2170 +01:23:24,140 --> 01:23:24,820 +Everything's data. + +2171 +01:23:24,980 --> 01:23:27,900 +And it's going to be the same thing when it comes to TV, right? + +2172 +01:23:27,960 --> 01:23:31,480 +Because even your TV that you're watching on your cable box, + +2173 +01:23:32,200 --> 01:23:35,020 +probably half of it comes directly over data anyway. + +2174 +01:23:35,220 --> 01:23:37,840 +It's not real cable anymore anyway. + +2175 +01:23:38,000 --> 01:23:41,100 +It's all digital DVR craziness. + +2176 +01:23:41,140 --> 01:23:42,660 +Yeah, I mean, your Cox box is essentially + +2177 +01:23:42,660 --> 01:23:44,700 +a really fancy Roku at this point. + +2178 +01:23:44,780 --> 01:23:45,020 +Right. + +2179 +01:23:45,120 --> 01:23:47,440 +It's this mandatory Roku box + +2180 +01:23:47,440 --> 01:23:48,740 +that you have to have to watch that service. + +2181 +01:23:48,960 --> 01:23:50,360 +And it's specialized for them. + +2182 +01:23:50,360 --> 01:23:52,240 +So it's really coming down to the fact that + +2183 +01:23:52,240 --> 01:23:54,540 +at some point, you're just going to have a data package + +2184 +01:23:54,540 --> 01:23:56,260 +and you're going to do whatever you want with it. + +2185 +01:23:56,320 --> 01:23:56,940 +And that's fine. + +2186 +01:23:57,840 --> 01:23:59,360 +Interesting you brought up the Roku. + +2187 +01:23:59,540 --> 01:24:00,760 +I have a Roku. + +2188 +01:24:01,120 --> 01:24:04,580 +And because of that, I can watch news + +2189 +01:24:04,580 --> 01:24:07,800 +in like three other cities already, you know, + +2190 +01:24:07,920 --> 01:24:09,480 +which I already use. + +2191 +01:24:10,800 --> 01:24:11,200 +Right. + +2192 +01:24:11,320 --> 01:24:13,980 +And I'm not a fan of the Rokus myself, personally. + +2193 +01:24:14,100 --> 01:24:15,140 +I don't like the Rokus. + +2194 +01:24:15,260 --> 01:24:17,360 +I mean, I bought one just to check it out. + +2195 +01:24:17,460 --> 01:24:19,800 +And I think it's sitting at the shop now. + +2196 +01:24:19,900 --> 01:24:20,160 +It is. + +2197 +01:24:20,360 --> 01:24:21,780 +We were actually thinking about hooking it up. + +2198 +01:24:21,820 --> 01:24:23,880 +And it's one of these things. + +2199 +01:24:23,920 --> 01:24:25,220 +It's just like, I don't like the interface. + +2200 +01:24:25,380 --> 01:24:26,940 +I definitely don't like the packages involved, + +2201 +01:24:27,160 --> 01:24:28,360 +you know, that they include. + +2202 +01:24:28,560 --> 01:24:31,100 +And then everything's a micro charge on top of that. + +2203 +01:24:31,220 --> 01:24:32,080 +And I don't like that either. + +2204 +01:24:33,300 --> 01:24:35,600 +That's why I went with something like the Fire TV, + +2205 +01:24:35,840 --> 01:24:37,060 +which I thought was a better deal. + +2206 +01:24:37,860 --> 01:24:41,320 +And to me, it feels better. + +2207 +01:24:41,760 --> 01:24:44,360 +And so as far as the interface is concerned, + +2208 +01:24:44,500 --> 01:24:46,100 +not to mention that I'm not being charged + +2209 +01:24:46,100 --> 01:24:47,760 +for every little thing that I do. + +2210 +01:24:48,100 --> 01:24:49,320 +Yeah, with the right services, + +2211 +01:24:49,320 --> 01:24:51,260 +those local channels aren't an issue. + +2212 +01:24:51,740 --> 01:24:52,140 +Right. + +2213 +01:24:52,260 --> 01:24:53,940 +They've gotten better, I'll tell you, + +2214 +01:24:53,980 --> 01:24:55,840 +on the Roku over the years. + +2215 +01:24:56,140 --> 01:24:58,300 +Well, we'll fire up that Roku at the shop + +2216 +01:24:58,300 --> 01:24:59,660 +and we'll check it out and I'll give you an update. + +2217 +01:25:00,300 --> 01:25:00,860 +Please do. + +2218 +01:25:01,080 --> 01:25:01,520 +All right. + +2219 +01:25:01,560 --> 01:25:02,540 +Thanks for the call, Dave. + +2220 +01:25:02,580 --> 01:25:03,120 +I appreciate it. + +2221 +01:25:03,540 --> 01:25:03,940 +Bye. + +2222 +01:25:04,900 --> 01:25:06,560 +Well, before the show ends, + +2223 +01:25:06,700 --> 01:25:09,480 +I wanted to take a moment to thank Desert Pro Cleaning + +2224 +01:25:09,480 --> 01:25:10,820 +for being our Patreon sponsor. + +2225 +01:25:11,500 --> 01:25:11,800 +Yeah. + +2226 +01:25:11,980 --> 01:25:13,840 +They do a great job. + +2227 +01:25:14,020 --> 01:25:16,000 +Did we pay off and send those recordings in yet? + +2228 +01:25:16,160 --> 01:25:16,800 +Not yet. + +2229 +01:25:16,840 --> 01:25:19,140 +But this way, we will never, ever forget + +2230 +01:25:19,140 --> 01:25:21,380 +to do it like we accidentally did a couple of weeks ago. + +2231 +01:25:21,660 --> 01:25:23,400 +I'm sorry about that over Desert Pro. + +2232 +01:25:23,620 --> 01:25:25,940 +I mean, I forget things. + +2233 +01:25:26,040 --> 01:25:29,660 +I'm just here trying to fix people's problems on the air + +2234 +01:25:29,660 --> 01:25:31,000 +and I forget to say things like, + +2235 +01:25:31,180 --> 01:25:33,780 +hey, thanks for giving us money and supporting the show. + +2236 +01:25:33,980 --> 01:25:36,480 +And they've been a big sponsor on Patreon for us + +2237 +01:25:36,480 --> 01:25:37,700 +for quite some time now, + +2238 +01:25:37,760 --> 01:25:38,920 +so we definitely appreciate them. + +2239 +01:25:39,080 --> 01:25:39,480 +Yes. + +2240 +01:25:39,520 --> 01:25:40,780 +And they also do really good work + +2241 +01:25:40,780 --> 01:25:42,000 +because we use them in our Eastside location + +2242 +01:25:42,000 --> 01:25:43,620 +and every time I go there, it looks nice. + +2243 +01:25:43,860 --> 01:25:44,380 +It does. + +2244 +01:25:44,580 --> 01:25:46,840 +Yeah, so Desert Pro Commercial Cleaning. + +2245 +01:25:46,840 --> 01:25:49,120 +I don't know why Mike loves the Eastside more than he does. + +2246 +01:25:49,120 --> 01:25:49,120 + + +2247 +01:25:49,120 --> 01:25:49,120 + + +2248 +01:25:49,120 --> 01:25:50,100 +He likes the Fort Lowell office, + +2249 +01:25:50,880 --> 01:25:52,440 +which could definitely use it, but... + +2250 +01:25:52,440 --> 01:25:55,960 +Well, we'll just say that there's a political matter involved + +2251 +01:25:55,960 --> 01:25:56,920 +with Fort Lowell. + +2252 +01:25:57,000 --> 01:25:57,120 +Ah. + +2253 +01:25:57,420 --> 01:25:59,800 +And, you know, there's an agreement + +2254 +01:25:59,800 --> 01:26:02,680 +that has already been reached for cleaning of Fort Lowell + +2255 +01:26:02,680 --> 01:26:06,000 +and, you know, I can't go messing with that. + +2256 +01:26:06,060 --> 01:26:06,540 +That's true. + +2257 +01:26:06,660 --> 01:26:07,060 +That's true. + +2258 +01:26:07,420 --> 01:26:10,460 +So, it's politics, man. + +2259 +01:26:10,580 --> 01:26:11,640 +You know, what can you say? + +2260 +01:26:11,720 --> 01:26:12,820 +Especially family politics. + +2261 +01:26:13,120 --> 01:26:15,060 +Yeah, and I shouldn't, you know, + +2262 +01:26:15,140 --> 01:26:16,920 +the job gets done very well. + +2263 +01:26:18,200 --> 01:26:18,680 +Good. + +2264 +01:26:19,560 --> 01:26:20,580 +Good recovery, man. + +2265 +01:26:20,680 --> 01:26:20,800 +Yeah. + +2266 +01:26:21,260 --> 01:26:24,700 +I'm going to take this part of the podcast out + +2267 +01:26:24,700 --> 01:26:26,060 +and then I'm going to send it to my mom. + +2268 +01:26:26,320 --> 01:26:27,580 +Or you could not do that. + +2269 +01:26:30,040 --> 01:26:30,760 +So, yeah. + +2270 +01:26:30,760 --> 01:26:32,820 +You could just take this part of the podcast out, actually. + +2271 +01:26:32,900 --> 01:26:33,440 +There we go. + +2272 +01:26:33,540 --> 01:26:35,420 +So, yeah, Desert Pro Commercial Cleaners, + +2273 +01:26:35,520 --> 01:26:36,780 +you can visit their website. + +2274 +01:26:36,880 --> 01:26:37,820 +You can check them out. + +2275 +01:26:37,880 --> 01:26:39,360 +It'll be linked in the show notes. + +2276 +01:26:39,780 --> 01:26:42,560 +And we really appreciate them supporting us on Patreon. + +2277 +01:26:42,740 --> 01:26:44,160 +They do a great job of cleaning Harrison + +2278 +01:26:44,160 --> 01:26:46,460 +and it's just lovely. + +2279 +01:26:46,540 --> 01:26:48,060 +They're very, very nice people to deal with. + +2280 +01:26:48,140 --> 01:26:48,820 +Especially because... + +2281 +01:26:49,120 --> 01:26:50,900 +You know, when I get to go blow things up later, + +2282 +01:26:51,020 --> 01:26:52,580 +that's in large part thanks to them. + +2283 +01:26:52,700 --> 01:26:55,140 +Yeah, and I don't get to, you know, + +2284 +01:26:55,140 --> 01:26:56,660 +I don't get to see those guys + +2285 +01:26:56,660 --> 01:26:58,500 +other than on the security cameras at night + +2286 +01:26:58,500 --> 01:26:59,200 +when they're in there cleaning. + +2287 +01:27:00,320 --> 01:27:03,260 +But they seem to be doing a great job. + +2288 +01:27:03,500 --> 01:27:04,980 +And every time I go over there, + +2289 +01:27:05,040 --> 01:27:05,680 +the place is clean. + +2290 +01:27:05,780 --> 01:27:06,560 +So, that's good. + +2291 +01:27:06,660 --> 01:27:07,260 +That's what I like. + +2292 +01:27:08,120 --> 01:27:09,940 +So, you can be a Patreon sponsor, too. + +2293 +01:27:10,200 --> 01:27:11,820 +Yeah, and if you want to be able to help us out, + +2294 +01:27:11,860 --> 01:27:13,480 +you can go ahead and support us on Patreon. + +2295 +01:27:13,540 --> 01:27:14,780 +Go to gurushow.com + +2296 +01:27:14,780 --> 01:27:16,880 +and there's a link, a Patreon link + +2297 +01:27:16,880 --> 01:27:18,960 +that you can go to to support us + +2298 +01:27:18,960 --> 01:27:20,260 +with as little as a dollar a month. + +2299 +01:27:20,600 --> 01:27:23,320 +You find more in your couch cushions. + +2300 +01:27:23,420 --> 01:27:24,320 +And if you do that, + +2301 +01:27:24,380 --> 01:27:25,760 +if you contribute that one dollar a month, + +2302 +01:27:25,860 --> 01:27:28,280 +you will get access to this awesome video + +2303 +01:27:28,280 --> 01:27:29,440 +that we've been planning for a while + +2304 +01:27:29,440 --> 01:27:30,460 +as well as many others + +2305 +01:27:30,460 --> 01:27:31,940 +that we have already started planning + +2306 +01:27:31,940 --> 01:27:32,900 +and are going to do. + +2307 +01:27:33,280 --> 01:27:34,740 +Because it turns out this stuff's really fun + +2308 +01:27:34,740 --> 01:27:35,920 +and we really like doing it. + +2309 +01:27:36,220 --> 01:27:36,580 +Right. + +2310 +01:27:36,700 --> 01:27:37,680 +The one I'm looking forward to + +2311 +01:27:37,680 --> 01:27:38,820 +is the home automation project. + +2312 +01:27:39,100 --> 01:27:39,800 +That's going to be a lot of fun. + +2313 +01:27:39,900 --> 01:27:42,400 +So, the recording studio is going to get fully automated + +2314 +01:27:42,400 --> 01:27:46,160 +so I can walk in the room and, you know, + +2315 +01:27:46,160 --> 01:27:46,800 +just do whatever. + +2316 +01:27:46,960 --> 01:27:47,700 +Star Trek style. + +2317 +01:27:47,920 --> 01:27:48,220 +Yeah. + +2318 +01:27:48,960 --> 01:27:50,540 +And then we're going to show you the weaknesses. + +2319 +01:27:50,740 --> 01:27:53,360 +We're going to basically hack the system. + +2320 +01:27:53,580 --> 01:27:54,540 +See, I'm excited for that part + +2321 +01:27:54,540 --> 01:27:55,840 +because this is my interest anyway. + +2322 +01:27:56,100 --> 01:27:57,840 +So, go to Patreon. + +2323 +01:27:58,000 --> 01:27:59,800 +Go to our website, gurushow.com. + +2324 +01:27:59,800 --> 01:28:00,700 +Click the Patreon logo. + +2325 +01:28:00,820 --> 01:28:02,580 +Get signed up for a dollar a month + +2326 +01:28:02,580 --> 01:28:04,200 +and you will get access to all of this and more. + +2327 +01:28:04,700 --> 01:28:05,100 +Right. + +2328 +01:28:05,140 --> 01:28:06,800 +And if you're concerned about security, + +2329 +01:28:07,060 --> 01:28:07,660 +if you want to make sure + +2330 +01:28:07,660 --> 01:28:09,540 +that you're being a little bit safer online, + +2331 +01:28:09,640 --> 01:28:12,060 +get yourself involved with some VPN service, + +2332 +01:28:12,300 --> 01:28:14,100 +you go to gurushow.com slash VPN + +2333 +01:28:14,100 --> 01:28:16,280 +and you can be linked up with TunnelBear. + +2334 +01:28:16,540 --> 01:28:18,640 +And that's the VPN service + +2335 +01:28:18,640 --> 01:28:20,240 +that we're recommending for everyone to use + +2336 +01:28:20,240 --> 01:28:22,380 +to keep yourself just a little bit safer online. + +2337 +01:28:22,480 --> 01:28:25,200 +Make sure that you can maintain some anonymity. + +2338 +01:28:25,300 --> 01:28:27,480 +You can also visit us at 510 East Fort Lowell + +2339 +01:28:27,480 --> 01:28:29,180 +or 64 North Harrison in Tucson. + +2340 +01:28:29,480 --> 01:28:31,400 +That way you can help us keep the show on the air + +2341 +01:28:31,400 --> 01:28:33,080 +by, I don't know, supporting the business. + +2342 +01:28:33,680 --> 01:28:35,460 +Letting us fix your computers and all of that. + +2343 +01:28:35,660 --> 01:28:36,980 +Because that's what we do all week. + +2344 +01:28:37,160 --> 01:28:38,840 +This is just a hobby on the weekends. + +2345 +01:28:39,280 --> 01:28:41,140 +But thanks again for listening to the Computer Guru Show. + +2346 +01:28:41,300 --> 01:28:43,280 +Give us a call down at the shop, 304-8300. + +2347 +01:28:43,500 --> 01:28:44,600 +And we'll see you next week. + +2348 +01:28:50,060 --> 01:28:51,840 +You know, we really enjoy doing this show. + +2349 +01:28:51,980 --> 01:28:54,220 +I mean, I've been doing it for, what, nine years now? + +2350 +01:28:54,340 --> 01:28:55,500 +So I must be liking it. + +2351 +01:28:55,760 --> 01:28:56,580 +But here's the thing. + +2352 +01:28:56,760 --> 01:28:59,000 +It costs a lot of money to put this show on. + +2353 +01:28:59,200 --> 01:29:01,120 +And you can help us keep this show on the air + +2354 +01:29:01,120 --> 01:29:02,300 +for as little as a dollar a month. + +2355 +01:29:02,620 --> 01:29:04,620 +All you've got to do is go to gurushow.com + +2356 +01:29:04,620 --> 01:29:05,960 +and click on the Patreon link. + +2357 +01:29:06,140 --> 01:29:07,480 +And from there, you can see that we have + +2358 +01:29:07,480 --> 01:29:09,300 +all kinds of rewards for Patreon members. + +2359 +01:29:09,480 --> 01:29:11,940 +You also get exclusive access to content + +2360 +01:29:11,940 --> 01:29:14,340 +that is made strictly for Patreon members. + +2361 +01:29:14,720 --> 01:29:16,720 +We get to blow up Furbies, automate homes, + +2362 +01:29:16,920 --> 01:29:18,480 +and put fun tech videos + +2363 +01:29:18,480 --> 01:29:18,720 +on. + +2364 +01:29:18,840 --> 01:29:20,020 +We're here to help you learn. + +2365 +01:29:20,320 --> 01:29:22,680 +And maybe you can help us keep that going + +2366 +01:29:22,680 --> 01:29:24,500 +by supporting us on Patreon. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.txt new file mode 100644 index 0000000..3a78ef8 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2017-s9e26/transcript.txt @@ -0,0 +1,2366 @@ +From my heart and from my hand, why don't people understand my intention? +Computer running slow? +Avoiding. +Caught a virus? +What? +No! +Where? +Where? +Does your computer seem to have a life of its own? +Malfunction. +Need input. +The Computer Guru is here. +My God, you're here! +Call in now. +Now, it's Mike Swanson, your Computer Guru. +Hello and welcome to the Computer Guru Show. +My name is Mike, here to deal with your technology needs and treat you like a person in the process. +790-2040. +If you'd like to be part of the show, that's 520-790-2040. +And we'll help you out with whatever technology issues are ailing you. +Because that's what we do around here. +This week is Rob is in. +Hello, Rob. +Hi, how's it going? +And then we've got Kent over there pushing buttons. +Good morning. +Doing his thing. +And we've got new stuff to play during the breaks. +It feels like I can feel the energy today. +Yeah? +Yeah. +Yeah. +It's not bad. +What kind of energy is it, though? +Hopefully good energy, because we're going to need it. +Yeah. +There's going to be... +We're doing the filming stage of Destruction of Furbies today. +Finally. +And so that's going to be fun. +And hopefully nobody gets injured. +Yeah, I'm really hoping that we can walk away from this literally. +Right. +Unscathed. +Right. +Although your mom said that she's going to take you out. +She's going to get hurt. +She's going to kill me. +Yeah. +Yeah. +I was like, that seems like an escalation that doesn't make sense, but all right. +She goes, that's my job. +Right on. +So if I even get a paper cut today, that's it for me. +You're a goner, man. +Yeah, I guess so. +You have to go on the lam. +Well, yeah, my girlfriend said that there's going to be a line of people to injure me +if I get injured. +Oh, really? +You're going to take a number? +Apparently. +All the women in my life are violent. +All right. +7-9-0-20-40 if you want to be part of the show. +All right. +This show kind of feels like a follow-up show. +Oh, yeah? +Because we're talking about a lot of things that have been talked about before. +Yeah, we're going to be kind of bringing up stuff that we've talked about before and +said that we would eventually follow up with. +And some of those things are good. +Some of those things are not so good. +Right. +Some of these things are, I didn't want to talk about them again, necessarily. +Yeah, I was really hoping that we wouldn't have to. +Yeah. +Yeah. +Well, let's start with one that we didn't have to. +I just wish we didn't have to talk about before. +And I just wish we didn't have to talk about now. +Which would be Pizza Hut. +It's just dumb. +Yeah. +You know, a lot of times I feel that you're almost like a little bit curmudgeon-y with +some of the stuff that we talk about. +Right. +But in this case, I'm with you. +This is dumb. +So Pizza Hut has some shoes that you can buy. +They are sort of retro-looking shoes. +They're high-tops, but they call them pie-tops. +And there's a button in the tongue of the shoe that allows you to order. +You can order a large pizza. +It's effectively an Amazon Dash button built into shoes. +And it's not even the coolest use of an Amazon Dash button that we've talked about recently. +No. +Even the donating to, what was it? +The swear jar? +Yeah, the swear jar. +Even that was better than this. +Yeah, you press a button and pizza gets ordered. +My question, though, is that if you're in a place long enough for a pizza to be delivered to you, +why are you wearing these absurd shoes? +Yeah, they're kind of dumb-looking. +Yeah. +It's so dumb! +You could really mess with your friend who has these by just, like, punching him in the tongue of his shoe. +Yeah, they said that there's some type of, uh, you won't accidentally order pizza. +They've got some sort of security built in. +I can't think of a situation in which I will need enough pizza that it'll justify. +Yeah, I don't order pizza enough. +Right. +I would even have a Dash-style button. +I wouldn't. +I don't know about even having a button. + + + + +I would have to have the app on your phone, you know? +Right, and then beyond that, I don't order pizza enough to especially get a aforementioned Dash-style button +built into a pair of relatively ugly tennis shoes. +Not to mention that you've got to think about the back end here. +So this means that not only do you order pizza enough to have these shoes, +but, like, you have a pre-defined order that you like enough to have stored. +What if you get tired of whatever type of pizza you're having? +Well, I think the only way that I would get one of these is if I could program it. +I think that's a good way to order from Brooklyn's. +Yeah, I could. +Because Brooklyn's pizza is worth ordering from. +No, it's still not often enough, though. +No, that's true. +I can't think of anything that I need so often that I would want it built into my shoe. +Yeah, the only problem with Brooklyn's, though, I mean, they've got amazing pizza +and the best garlic knots in town. +But the problem is I think they have a delivery radius of, like, +Two feet? +Yeah, 45 feet or something. +Skybar right next door? +Yeah. +That's about it. +Come on, guys. +It's because they have to ride the trolley. +It's everywhere. +Well, maybe we'll get Uber Eats here in town at some point. +Oh, Brooklyn's. +The solar-powered pizza cafe. +Speaking of solar power, we've got some news about that. +What about it, man? +Apparently, at least in 2016, solar provided twice as many jobs as the coal industry in the United States. +Wow. +It's looking sunny. +Yeah. +I mean, that's a good thing, you know? +I mean, I'm all in favor of solar. +I am, too. +I think that this is probably a very good thing. +I like solar energy. +It's hot. +I'm the one who's supposed to be doing the corny jokes, okay? +Oh, man. +I'm in a mood, though. +I'm in a mood. +What can I say? +I know we switched roles. +I don't even have a corny joke to make. +Oh, okay. +You just have to sit there and be curmudgeoning? +I guess so. +You're the curmudgeoning one today. +The Pizza Hut shoes, like, ruined it for me. +Oh, okay. +So, Mike, what are we talking about next? +Well, I did want to talk about... +I did want to talk about Ryzen again, but we'll wait to get into that, because it's +kind of a whole thing, and we already have a caller. +They want to talk about shoes and pizza and stuff. +All right. +Let's talk... +Bren? +Hello, Bren. +How are you? +You got to hit the button. +No, the call button. +They're on hold still. +There you go. +Hi. +One of those buttons. +Hi. +Hi. +Thanks for taking my call. +I just wanted to know, if you have those shoes, do the pizzas come laced or unlaced? +That's a good question. +And do they know where to go? +Because, I mean, what if you're out at the basketball court shooting hoops and playing +horse with your friends? +I imagine it must have some type of... +Because it has to have, like, 4G or something built in in order for the order to even happen. +Yeah, that would suck if you have to be within Wi-Fi range of your house. +You know, I bet I could hack it so I could put Pyrmonics in there and get their pizza. +Well, that would be nice. +I think I'd still prefer the Amazon Dash button, because you could, like, put that on a keychain. +It'd be way more... +And these shoes are terrible looking, too, so... +They're kind of ugly. +We'll put them in the show notes so you can see them. +I think if you order them and put them away in 10 years, they might be worth something, +because no one's popping it up. +That's probably true. +Order them. +That's probably true. +Their value is mostly as a collector's item. +Yeah. +Thanks for taking my call, Scott. +Yeah, thanks. +And Pizza Hut's been doing the whole, like, you know, using technology as a gimmick for +a long time. +I mean, if they're just doing this as a promotional thing, whatever, if they really expect for +the... +I don't think they really expect for this to be a thing. +I don't either. +You know, besides... +Even if they do expect it, it's not going to be... +Stop trying to make it happen. +I heard that McDonald's was considering doing delivery, so maybe their shoes would be... +Like, I'd have, like, a spicy McChicken shoe thing, I guess, maybe. +A spicy McChicken shoe. +Yeah. +Like, I could want a $1 item from McDonald's far more frequently than I would want a pizza, +you know? +I don't know. +It's a toss-up for me. +I know me gusta on equal levels. +Do not want. +Say what you will about everything else at McDonald's, but the spicy McChicken's pretty +good. +The spicy chicken is not bad, with the exception of the non-chicken parts of... +I always have to tell them I'm allergic to lettuce, though, because their lettuce is +terrible, and I don't want any of that. +Yeah. +It's like... +Oh. +It's like reconstituted, and it's terrible. +Yeah, it's horrible. +When I said iceberg lettuce, I didn't mean it was in a freezer for, like, 10 hours. +There you go. +You got your mojo back. +Yeah. +There it is. +You can be the silly one now. +All right. +Let's take a moment. +I forgot to mention our sponsor. +That would be Perfection Auto Works. +They can do wonderful things for your vehicle, and you should probably check them out. +Maybe they should make, like, an oil change shoe button. +Oh, yeah. +Mike, get an oil change... +Make Perfection Auto Works shoes. +See, if you had an Amazon Dash button, you could put it on your dash. +I have to... +Oh. +Yeah. +I have to get my driving shoes on. +On their high tops. +Anyway, PerfectionAutoWorks.com. +Visit their website. +Check out what they can do for your vehicle. +26-point inspections are done for free down there, and they will take care of your vehicle +in a way that will make you feel like the name is deserving of perfection. +Perfection Auto Works. +PerfectionAutoWorks.com. +Check them out. +We'll be back right after these messages and a little bit of comedy, as usual, for the +first segment of the Computer Guru Show these days. +We'll be right back. +I think foosball is a combination of soccer and shish kebabs. +Foosball messed up my perception of soccer. +I thought you had to kick the ball and then spin round and round. +I can't do a backflip, much less several. +Simultaneously with two other guys that look just like me. +I was on the bus and it was the middle of the night, and I had a box of crackers and +I had a can of Easy Cheese. +But it was the middle of the night, so I could not see. +So I could not see how much Easy Cheese I was applying to each cracker. +So each bite into the cracker was a surprise as to how much Easy Cheese I had applied. +Which makes me believe they should have a glow-in-the-dark version of Easy Cheese. +It's not like the product has any integrity to begin with. +If you buy a room temperature cheese that you squeeze out of a can, +you probably won't get mad because it glows in the dark as well. +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. +Join the chat right now at gurushow.com or call in. +This is the Computer Guru Show on KVOY, The Voice. +Mike Swanson, your computer guru, is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show. +Welcome back to the Computer Guru Show. +Let's go ahead and talk about the fact that everyone in the federal government is an idiot. +Is this news? +Well, apparently. +So the FCC got a new chairman. +Originally, we were a little concerned about Wheeler in the previous administration. +We were like, we don't know about that. + + + + + + + + +We don't know about Tom Wheeler because he used to lobby for the cellular industry. +And he's probably going to mess some things up and make it so that consumers are hurt +and the internet providers are super happy. +And it turned out that he did exactly the opposite. +He just angered every ISP and put rules into place that were supposed to keep us a little bit safer +as far as the wallets were concerned. +What? +The new chairman of the FCC is not necessarily on board with Wheeler's plan. +In fact, I would say that he's very much not. +Yeah, and we had originally said, let's give this guy the benefit of the doubt. +Let's see what he does. +Maybe it'll turn out to be like Wheeler. +No, not quite. +Nope. +His name is Ajit Pai. +And he said that net neutrality was a mistake. +And the commission is now on track to return to a much lighter style of regulation. +Of course, this will make one of my listeners very happy, I'm sure. +But he says some things that just don't make any sense to me. +Well, unfortunately, I think most of the people who are proponents against net neutrality +say a lot of things that don't make sense. +Yeah. +Basically, he says that, you know, look at how with the announcement of the return +or basically of ending of net neutrality, +now all of the providers are announcing that they're going to have, +you know, unlimited data plans. +And I think he's taking credit for something that he had absolutely nothing to do with. +And I think that was all Wheeler basically saying, you have rules to follow. +And if you want to, you know, compete, then you have to compete, +rather than just being able to muscle a particular market or segment of users, +which is the problem with net neutrality in the first place, +where, you know, the lack of neutrality is that a provider then has the opportunity +to, you know, have a lot of data plans. +OK. +OK. + +OK. +OK. + + +OK. + + + + + + +OK. +OK. + + + + + + + + + +OK. +OK. +OK. + +OK. + + + + + + + + + + + + + + + + + + + +OK. +OK. +OK. +OK. +OK. +OK. +Now, of course, they don't really necessarily count things like DSL providers or the point-to-point wireless providers because, let's be honest, they're technically not able to compete with the cable providers or even the cellular providers if you happen to have one of those. +But then you end up with a very expensive Internet bill and caps and overages and all of that stuff. +Well, also, I mean, the cellular providers is what's making this whole situation a bit scary at the moment. +Because, as you said, everybody seems to be reintroducing their unlimited plans at the moment. +And a lot of these plans, if you look closely, are pretty anti-net neutrality. +Yeah. +Specifically, T-Mobile, who's had their binge-on thing for a while now, where certain streaming services don't count against your data cap. +Right. +And they mention those in the article, which is basically the zero tier, meaning that they don't count specific sets of data against your usage, +which was exactly the thing that the… +The net neutrality was trying to prevent. +And they have been under investigation by the FCC specifically because of that plan. +Not anymore because that stuff's now been enabled. +You know, basically, the FCC says, yeah, you can go ahead and do that. +You can go ahead and zero tier stuff where you can say anything that is on this particular platform that it doesn't charge… +We're not going to charge you for or doesn't necessarily have to count against your data plan. +And now that sounds really cool if you're already a member of one. +Like, say you use Pandora's premium service or Spotify or something like that. +Right. +That sounds awesome. +Like, why wouldn't I want to? +I'm going to switch to T-Mobile and then I'll have unlimited data for that stuff. +But you're not realizing that they're forcing you to stay on that platform essentially at that point. +So if some new streaming service comes out and it's way better and T-Mobile decides that they don't want to carry that on their zero plan… +Or that company decides that they can't afford to pay T-Mobile to be in that included plan. +Because, yeah, make no mistake, they're charging those companies for that right. +Right. +Then, yeah, it's stifling competition. +Or even scarier, in my opinion. +T-Mobile decides that it wants to release its own service that you have to subscribe to. +Right. +If you want to listen to music, which a lot of people do on their phones, then, yeah, these particular couple of services are going to be provided for you with no additional fee. +But if you want to watch those other ones, man, or listen to those other ones, it's going to cost you a little bit more. +So you're less likely to do so. +This is exactly the battle that we were talking about before with Comcast and Hulu versus Netflix. +Yeah. +And, of course, everyone that's on the other side of this argument is just like, well, let them compete. +Do you know what Comcast is? +I mean, have you seen NBCUniversal, what they – what is that company? +I mean, they are everything. +They're – I mean, Disney owns all is really what it comes down to. +And so it's impossible, I think, to realistically think that you're going to be able to compete with someone. +That is able to hold down that tier, right, that has that much clout that is just able to say, well, you're going to use my service. +You're going to use nothing at all. +And that's – or you'll be penalized for using something else. +And this is why the net neutrality argument even came to light in the first place. +But, you know, apparently nobody cares. +Well, my issue is that I think that from what I've seen over the last few years, their plan is just to keep rephrasing the argument. +Until people just stop caring. +Right. +Hypervigilance is very tiring. +Yeah, it is. +So, yeah. +So apparently we're losing our net neutrality, at least for a while. +Maybe permanently. +Who knows? +But when you wonder why that you want to watch that movie on Netflix or the next service that comes out after Netflix and you wonder why you can't afford it, this is why. +And it's because the net neutrality argument was – +Yeah. +It's because the net neutrality argument was designed to make sure that everyone who wanted to provide a service was able to equally. +We're going to have to take a look at how much piracy increases as a result of this. +Oh, it will. +It will a bit, in my opinion. +I mean, yeah. +When the choice is to pay for Pandora or Spotify or whatever T-Mobile service ends up being or whatever, or, you know, just spin up your own streaming media service, the choice is clear if you're able. +Yep. +And, you know, unfortunately I can't teach everyone how to do it, but, you know, it's – there are options. +I might post some links in the show notes. +There are options. +And that's the good thing about the Internet, though, is that at least for the people who are willing to do a little bit of extra work involved in getting around this stuff, there's always a way. +So it's interesting to me, but I'm very disappointed in the FCC. +When it comes to the net neutrality decision here, to go back on something that is very, very, in my opinion, very helpful for the end user because it's forcing everyone to sort of live on – or play by the same rules. +All of the providers have to play by the same rules under net neutrality, and now they don't. +And so we'll see what happens with them. +Let's go ahead and take a call here. +We'll talk to Philip. +Hey, Philip. +Philip, how are you? +Yeah, I went to Best Buy. +I was going to buy a Galaxy Tab E for $250. +Okay. +And they sent me over to the AT&T store on Oracle, and they gave it to me for 99 cents. +With your contract, right? +Yes. +I was going to get a contract anyway, so I'm wondering, is this thing going to blow up on me? +Well, you know, it is a Samsung product, but no, it's probably not going to burst into flames. +I'm just wondering, why would they give it to me? +I mean – +It's worth it to them to get you on the call. +A contract is really what it comes down to. +So, I mean – +You mentioned the unlimited thing, which is now part of their deal. +Of course, I've experienced what unlimited really means. +It means nothing. +Well, it depends on your provider. +So, like – yeah, it depends on the provider. +Some providers do the real, truly unlimited up to a certain point. +I mean, up to an unreasonable point. +I mean, 200 gigabytes for Verizon. +I don't know about AT&T, but, yeah, Verizon does have a limit in place, technically. +Right. +So, it's – and the T-Mobile stuff does throttle you if you go over 23 gigabytes. +So, there is a certain amount of congestion there, and I think it's unlimited within reason is the way that they're looking at it. +But you don't think I'm being scammed somehow? +I mean, why would they give it to me? +Well, of course you're being scammed. +You're in a contract. +Yeah, that's the scam. +Well, I was already going to go through a contract anyway. +So, in your case, if you were already planning on going into a contract no matter what, it's a good deal? +Right. +All right. +Right. +If you're a person that is anti-contract like myself, then – +I trust the guru. +I wouldn't do it. +But, you know, hey, if you're okay with the contract, if you want to be locked into that, you do that, man. +You do you. +Well, I've never had one before, so I'll see what happens. +Thank you. +Yeah, they're fun. +You'll enjoy it. +You won't use it as much as you think you will, though. +Yeah, because you'll get tired of pressing the little buttons. +Just tablet computing is really not all that pleasant. +I've – several times. +I've really tried to, like, to be a tablet user. +And they're good. +They have a very specific use case, which is like sitting on the couch watching TV, and you're just tooling around on your tablet on the Internet or something. +Right. +If you've got a $600 way of playing Candy Crush, right? +I mean, it was pretty good for balloons. +Balloons is pretty awesome. +Yeah. +But every time I've used a tablet and I've been like, all right, let's get something done, I've been like, man, I just need a laptop. +Right. +Why am I trying to do this? +Why am I trying to do this on a tablet? +I'm so – +No, Dom. +All right. +Let's go ahead and talk to Carl. +Hey, Carl. +How are you? +I'm doing fine. +And, you know, one of the things that bothers me is I keep talking about unlimited data. +That doesn't apply to a Wi-Fi hotspot, which is where I really need the unlimited data. +That is correct. +Well, you can root your phone and make it a Wi-Fi hotspot. +Yeah. +Don't go down that road. +No, I – +Don't listen to Rob right now. +He's saying stuff that – he's being irresponsible on the air. +That's what he's doing. +Okay. +Yeah. +But, I mean, that's – +That's one of the things because I use it for my business or what have you, and I keep saying – I think it's misleading. +You know, you have to ask the question. +But unlimited data, no, it's not unlimited for the Wi-Fi hotspot. +Right. +So the way that I do that is I do the hotspot on my phone rather than a separate Wi-Fi device. +And I have an unlimited data plan on my phone. +So that is unlimited for me. +No. +Nope. +It's not because I – that's one of the things that I've been looking for. +I have a Wi-Fi hotspot on my phone. +And it's an additional charge per month. +And it's generally limited to 10 megabytes. +And if you go over that, then it gets – see, the throttles back are stopped. +Not in my case, but I have an old one. +I have a grandfathered one. +Oh, if you've got an old plan or whatever it is, yeah. +Yeah. +So I pay an extra $29 for the ability to do the – +Right. +The hotspot on my phone. +And my average usage right now is $4. +$4. +$4. +$4. +$4. +$4. + +$4. + +I can't get that. +No fees. +So that's – you still can under certain circumstances. +And it depends on how the plan is set up. +But I wouldn't risk it, right? +It's one of these things like I don't even talk to the people about my phone at Verizon +because I don't want them to mess up my plan. +Right. +Yeah. +That is the problem. +So, yeah, unfortunately for people who try to do mobile work like myself and you, it sounds like, +it's pretty hard to find a reasonable way to get on the Internet without war driving. +And we'll probably see more of that if the cellular companies start clamping down. +We'll probably see more war driving. +And there's a bunch of utilities out there. +Just so you know, you can break into a Wi-Fi network in about 10 seconds no matter what password you put on there +if you have the right applications. +So there's – you're going to see people that are going to be driving around breaking into wireless networks. +You're going to see people that are going to be driving around breaking into wireless networks. +Just so they can get on the Internet. +Well, yeah, but that doesn't do me much good because I'm generally out in the field away from Wi-Fi spots. +That's what I'm looking for is for downloading maps. +Right. +You're in rough shape, man. +I don't have to tell you. +I am. +I really am. +You're going to have to have like four different cell phone numbers that you can get 10 gigabytes each off of. +Well, that may be something to look at considering how cheap some of these things are getting. +Yeah. +Well, good luck, man. +All right. +Well, thanks. +Thanks. +Sorry about that. +Sorry about that. +It does suck that the cellular companies are just sort of doing whatever they want. +You know, and the FCC is to blame. +That's how I look at it. +Jerks. +Give me the blues. +I'll be right back. +I'll be right back. +I'll be right back. +I'll be right back. +I'll be right back. + + + + + + +Mike Swanson, your computer guru is just a click away. +Listen and watch at gurushow.com. +This is a computer guru show on KVOI, The Voice. +Welcome back to the Computer Guru Show. +My name is Mike, here to deal with your technology needs and treat you like a person in the process. +790-2040 if you'd like to have your question answered. +Or you can join us in the chat, gurushow.com slash chat. +We've got a question in the chat. +There is a chat question. +It says, I need a new router. +I know I've... +Mike has addressed this issue before, but I cannot remember the answer. +My router is now several years old, and I have definitely noticed a loss of wireless range. +What's the best router for a decent price with decent range? +Well, there's a couple of factors involved. +Age does play a factor in routers because they just sort of burn out over time. +But generally, it's not a, you know, it doesn't get weaker. +It just quits altogether. +So your loss of range is probably interference from... +Other people. +You're probably picking up other networks around you that are stepping on your signal. +And that's especially something that looks like it adapts over time or happens over time because people move in and move out. +Right. +And a lot of people don't... +It depends on the router, really, which one you have. +If you have a several-year-old one, it probably doesn't do auto-channel switching. +So you might want to just try a different channel rather than buying a new router. +So you could... +By default, they come on channel 6, which is right in the middle of the range. +There's 12 channels. +There's technically 14, but the last two don't count. +So it's right in the middle of the range there. +And so you might want to try a different one. +You can get an app for your cell phone, especially if you have an Android phone that's called Wi-Fi Analyzer. +It'll tell you what channels are most heavily used around you. +And you can then pick a channel that may be less congested. +And that could probably help out. +Also, if you're going to go buy a new router, there's really no reason not to buy a dual-band router at this point. +Right. +So if you want a decent router that is priced somewhat affordably, +the AC routers by Asus are wonderful routers. +They have decent range. +They're tri-band in many cases, but at least dual-band. +And they are nice and quick. +And so you're looking at about $120 or so. +You know, I just bought a cheapo dual-band router because I was like, +I'm going to buy one anyway. +Let's see if this TP-Link router can actually do anything. +Surprisingly, so far... +Sure, no problems. +And you're in a highly congested area. +Yeah, it robs in an apartment complex, so there's lots of networks around it. +My Wi-Fi is now the most powerful Wi-Fi. +Right. +And if you have an older router, if you're feeling like you want to get some extra life out of it, +and you want to be able to crank up the power on it or change any setting that you like, +you can look at something like the Tomato ROMs or the DDWRT. +Just be careful with that. +Yeah. +If you think you might be buying a new router anyway, you can experiment. +Because it's entirely possible you'll brick it if you do it wrong. +Yeah, you need to make sure you're looking at the revision numbers for that firmware because it does matter. +Revisions do count. +Otherwise, you'll have a very expensive paperweight. +Yeah, so... +Yeah, if you're looking like you can afford a $100 router, +it'll last you for a good five or six years. +And that's not a terrible investment. +So, there you are. +Ow. +I just hit myself in the face. +I thought it was me who was injuring myself with the headphones today. +Yeah, it's just... +No, that didn't happen, remember? +Yeah, that's right. +Okay. +Let's talk about AMD for a moment. +Okay. +I'm actually excited to talk about this for once. +I told you last week. +I said, Rob will want to talk about this, so... +Yeah, well, especially... +I'm glad that it was this week because last week was release. +This week, we've had a week. +So, people have played around with Ryzen and benchmarked it on their own. +So, we've seen stuff outside of AMD's carefully controlled environment. +And kind of what that has revealed is that not quite meeting up to the highest-end Intel stuff right now, +but when you factor in the price and the performance you're getting for the price, it blows Intel away. +Right. +So, the performance differences are negligible. +Yeah, especially when you consider that the highest-end Ryzen processor is $500. +As opposed to $1,200? +Yeah, as opposed to the cost of the machine if you buy the Ryzen processor. +Right. +Now, a lot of people have said that the gaming performance isn't great. +That it's usually just best to use the Ryzen as a workhorse machine. +But AMD's CEO has promised that patches and tweaks will fix that and that gaming performance will only go up. +Right. +And I imagine that there's a certain amount of... +That the games are written in such a way... +Or the drivers for the processor are written in such a way that they favor Intel right now. +Yeah. +And the other thing is that CPU performance isn't... +Isn't... +Isn't... +It's as important as a lot of people think when it comes to gaming. +Right. +Especially if you have a nice GPU. +And you've got RAM and all of that other good stuff that is important. +Now, if you're just... +If this is like a workhorse machine that you also use as gaming, then, of course, CPU is going to make a difference. +But if you're a gamer, then... +Yeah, you should hopefully have a nice video card to go with it. +Right. +It's important to have a nice processor, but your graphics card is going to make a bigger difference, obviously. +Right. +And, of course, AMD always... +They tie in the ATI cards into their processing platforms. +So they can talk to each other directly. +Yeah. +And historically, that's what they've done. +And I'm not sure that they're doing that with the Ryzen cards, but I imagine that's probably built in. +Well, they've talked about how there's going to be a GPU refresh for AMD as well soon. +So that's good. +I mean, overall, I'm just happy to see, like, some competition. +Yeah. +Yeah. +And I think that first generation, we can't put all of our hopes in a single basket when it comes to first generation processors. +But I'm sure as AMD manages to, you know, kind of get the hang of this as far as, oh, yeah, we're building real processors now. +This makes me happy because traditionally I've been a fan of AMD just because the price difference is so astronomical. +Yeah. +And unfortunately, though, previously your performance difference was so astronomical as well. +Right. +But, I mean, that's for people who are comparing the highest end AMD to the highest end Intel, which isn't a fair comparison at all. +Well, I was looking at the, you know, the stuff that I normally see. +It's where, you know, clients will go out and they'll be like, oh, it's a quad core. +Right. +And then it just performs like an atom. +Well, in a lot of cases, that's because it basically is. +Like, AMD was doing this thing before where you'd only have, like, say, four compute modules on the chip. +Right. +And then they were using some software trickery to make it behave like an eight core. +So the new Ryzen stuff is actually eight core as well as actually four core. +Thanks for not lying to me anymore, AMD. +To be fair, Intel kind of did that, too, for a while. +Right. +Well, like the processor that I have on my computer, it's a fairly high end Intel chip. +And it reports 12 cores. +Right. +And it's an eight. +Right. +And so there's some software trickery happening there. +No, and I mean, it's not like they're just straight up lying. +Like, you do get better performance out of that processor than you would out of just an eight core. +This is true. +I mean, and, yeah, don't get me wrong, that computer moves right along. +But it somewhat feels dishonest. +I think the reason why I've always liked AMD more than Intel is because I've never been somebody. +I can't just, I'm not going to spend $5,000 on a computer. +And I'm, like, this is my life, you know. +Right. +So I like AMD because it's like you can build a machine that does what you want it to do, +and it's not going to cost you the cost of a new car. +Right. +Yeah, because you can easily, if you wanted to build a top end, like, +really high end machine, an Intel based machine, you can drop four grand easy. +Yeah. +And especially if you're doing, like, you decide that you want to be a professional gamer, +and you've got three, you know, 1080s in there or something like that. +Yeah, and I mean, that's the other thing I was going to say is that I'm excited about a graphics refresh for AMD as well, +because I'm certainly not a fan of their graphics cards for the most part. +You know, like, the RX 480 is like a cool card if you need budget VR kind of stuff. +Right. +But if you're a serious gamer or care about graphics at all, you're going the GTX route for sure. +Right. +NVIDIA all the way. +Let's go ahead and take a call here. +Let's talk to Ron. +Hey, Ron, how are you? +I'm doing good. +Hope you're doing good. +We are. +I am anyway. +How are you doing, Ron? +Not bad. +All right. +Yep. +Status check complete. +Cool. +Good. +It passes. +Now, is it a privacy concern to log into a website that's not Facebook with my phone? +My Facebook email and password. +All right. +So security concern, not so much. +Privacy concern, yes. +So those are two different things. +But privacy, yeah. +I mean, if you want to be private, you're not logging into anything with a Facebook login. +When you log in with Facebook, Facebook sees exactly what you're doing. +They can see everything. +Just know that when you do it. +Okay. +All right. +Now, you can... +You can... +Even if you're doing something like a VPN, though, that allows that traffic to be reported +to Facebook. +So they at least... +They know something about your account. +They know that you have an account there. +And so if you're concerned about Facebook being able to collect a bunch of information +about you, you don't log in with Facebook. +Now, when it comes to security, if you're worried about that website having your Facebook +username and password, in any legit case, that's not how it works. +So you don't have to worry about that. +So... +But when you type in your password... +Or don't they have it there? +Well, when you log... +When you sign up with Facebook, normally it'll open a pop-up or a Facebook window or it'll +go to Facebook. +And then at that point, you're just authenticating with Facebook and the website is looking to +Facebook to get a thumbs up, essentially. +Right. +So when you sign in with Facebook, that little pop-up that comes up and you say, hey, I'm +allowing this to happen, Facebook sets a very special cookie that says, I am allowed to +do this. +And it's time limited. +It's a... +It's a... + +It's a... +It's a... +It's a... +It's a... +It's a... + +It's a... +It's fairly secure, but it is... +All it is is an authentication process. +So the website that you're logging into then goes to Facebook and says, hey, this user +says we can log in as them. +Is that cool? +Facebook then responds yes and then deletes the cookie. +Oh. +Okay. +So as far as security is concerned, it's not really a security issue, but privacy, yes. +Okay. +Because, you know, Facebook collects everything and then will be our future overlord. +Honestly, I'm really curious. +not a fan of signing into websites with other websites. I kind of think you should have +a separate account for each one for security reasons. +It's because we are like paranoid security dudes. +Yeah. +But yes. +Mostly that extends for me. That's because of Wi-Fi, like sidejacking and that kind of +thing. +Right. We should do a sidejacking demo. We're actually planning a get-together where we +can get listeners to come down probably April. +Something like that. +And we should do a sidejacking demo. +Yeah, that would be a lot of fun. +Just to show how it works. +Sounds good. +Where you guys can come down here and then we can show you the inner workings of your +Facebook page without permission. +That sounds good. +So now I'm curious. So on that third or the other website, I guess at that point, once +they get permission from Facebook, they are able to, or their users on that website are +able to see your profile as if they are... +It depends on the permissions. It depends on the permissions that the website's requesting. +Right. In most cases... +Yeah. + + + + +So the only thing that's passing across is your basic public profile information. So +your name and anything else that you've marked as public consumption, that website has access +to. +Okay. +Anything that's marked as private or sensitive information is not passed across to those +things. And that's why a lot of pages, especially if they...even if they allow the sign-in as +Facebook, will then ask you for additional information. It's because they can't pull +that information from Facebook. +Okay. +So in other words, things you have marked as just for friends, they can't see unless +you give permission specifically. +Okay. Right. +Sounds good. +Now... +All right. Thanks for the... +And one of the reasons I don't do it is because there was a bad habit of several +websites that would be like, hey, we're going to post as you whenever the heck we want. +And we're going to be like, you signed in to twinkies.com with Facebook. And so it'll +randomly post things like, I love Twinkies. +And it's just like, come on now. +I don't think that's happening so much these days because they kind of got called +out for that kind of stuff. +Yeah. It doesn't happen. But that's what turned me off to the whole signing in as...with +another website. Not to mention that how we like every week talk about, hey, this site +got hacked. You should probably change all your passwords. And that's one of the reasons +for it. It's just like, I don't sign in with anything as Facebook. It's just like, nope. +In fact, I don't even open Facebook. I don't even... + +I don't sign in with Facebook, but like once a month maybe. +I do it at work for work and that's it. I don't have a Facebook. +Yeah. So yeah. If you want my opinion, don't sign in as Facebook and just create an account +and keep...have a separate password and make sure that it's different than any of your +other passwords because security and then be safe and then don't worry about it. +So let's say if I want to...if I do that, but then I want people on the other website +to see my profile, I would just send them, I guess, the URL of my basic... +Yeah. +...Facebook page. +Yeah. You could...I mean, if you're talking like another social network or something, +you could just link to your Facebook page. +Yeah. Okay. +And then that way, at least the two social sites don't have direct communication with +one another at that point. +Right. That's a good way of doing it. Okay. Thanks. +All right. Thanks for the call. I appreciate it. +Bye. +We're going to take a quick break. When we get back, more of The Computer Guru +Show at 7902040. Give us a call. +All right. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. + +Bye. +Bye. +Bye. + + + +Bye. + + + + + + + + + +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +There's the, why haven't you changed your password recently? +And it's just the thing I complain about all the time. +Change your passwords, people. +But here's some reasons that you may want to, especially if you are traveling internationally. +Yeah, we were talking about this before the show, and I think that we were both a little bit like, +that's so silly, but then at the end of the day, as long as you're changing your passwords regularly, +there's nothing to worry about. +All right, so it turns out that the TSA is not allowed to confiscate your laptop. +They're not allowed to ask you for passwords. +They're not allowed to invade your, you know, there's some Fourth Amendment that applies to the TSA. +But not so much with Border Patrol. +Yeah, they say it's a gray area. +Well, yeah, it turns out that 10 miles on either side of the border is this gray area. +Literally, yeah. +Where you don't necessarily have constitutional rights, which is pretty interesting. +I'm sure that some lawyer will be happy to explain to me how crazy it really is, +or maybe it's more cut and dry. +than I suspect it is. +But according to the article, Border Patrol can do whatever the heck they want +when it comes to getting into your digital persona. +Including just forcibly detaining you until you give them your password? +Yeah, and then they can search your devices and see which terrorist groups +that you have been chatting with recently. +And so, yeah, there's a little bit of a weirdness in there. +Now, it just turns out, you know, that one, I go through Border Patrol, +Border Patrol checkpoints all the time. +And because I have to go out to places where there's a checkpoint in between. +And they never give me grief. +I mean, look at me. +They never give me grief. +Although, I've been kind of messing with them a little bit, you know, as far as, you know, +I come back and they'll be like, are you an American citizen? +And I'm like, see, you know, or something. +And they just wave me through, like, get out of here. +If you started wearing glasses and driving an RV down there, I think they might have something to say. +Oh, maybe I should go to Walter. +Yeah. +But it turns out that they can ask you for your passwords and hold you. +And you know what you do? +Change your password right afterwards. +That's what you do. +This is the Computer Guru Show. +Stick around for the second hour coming up next, right after these messages. +By the way, thanks to Protection Auto Works for supporting the first hour. +We'll be right back. +We love doing this show. +It's pretty expensive, though, so we could use your help. +For as little as a dollar a month, you can help us keep the lights on, +as well as contribute to our podcast. +We're a fun side project. +You'll be funding everything from tech tutorial videos that we'll be putting on our YouTube channel +to crazy stuff like melting Furbies with thermite. +We're not joking. +We actually did that, and our Patreon supporters made it happen. +With your contribution, you'll not only get access to that content and more, +but you'll help us create more in the future. +We even have rewards set up, depending on your contribution level, +where you can do things like advertise your business with us +or even be a guest on the show to talk about whatever you want. +If you'd like to get started, go to gurushow.com and click the Patreon logo. +Thank you. +Why don't people understand my intention? +Computer running slow? +Avoiding. +Caught a virus? +What? +No! +When? +Does your computer seem to have a life of its own? +Malfunction. +Need input. +The computer guru is here. +My God, you're here! +Call in now. +Now, it's Mike Swanson, your computer guru. +Welcome back to the Computer Guru Show. +My name is Mike, here to deal with your technology needs +and treat you like a person in the process. +Give us a call if you'd like to be part of the show. +520-790-2040. +Or you can join us in the chat at gurushow.com slash chat. +And you totally should, because there's people in there. +Yeah, we're in there. +We're chatting away. +We're chatting it up. +Chatting it up. +Let's talk about cord cutting for a second. +We haven't talked about that in a while. +Yeah, and it'll be interesting to talk about, because I just did the opposite of that. +Yeah, yeah, yeah. +Poor you. +I got cable for the first time in like nearly a decade. +Because you just want to spend money unnecessarily. +I don't want to spend money unnecessarily. +Oh. +Oh, I see what's going on here. +Well, we have to call your girlfriend out on it. +Well, she wanted certain channels that I didn't want to go through the hassle of setting up and making it work. +And also, she's just like, I just want to turn on the TV and have it be on. +I don't want to have to turn on 12 devices and sync everything up and cast things to things. +Right. +It's nowhere near that bad, but all right. +So the Food Network. +Well, she's a baker. +So she wanted the Food Network. +And also, I will say that it's kind of nice to just be able to turn something on and have something on there. +But I don't know if that's worth $40 a month or whatever. +It's too boring for me. +I like to use casting in the sense of I have to use like a magical spell to get what I want on the television. +I will also say that I forgot how terrible commercials are. +Yeah, I haven't seen a commercial in like three years. +Yeah, I was in the same boat. +Like I only saw commercials when I went to people's houses or something. +You know? +Yeah, I don't go to people's houses. +There's so many commercials. +It's like one minute of show and then there's an hour of commercials. +It's dawning on me that I am turning into Howard Hughes, right? +Minus the money. +And the pee jars, hopefully. +Yeah, none of that either. +But it's just like I don't go to people's houses. +I am mildly germaphobic. +Are you going to be scrubbing your hands until they bleed? +No, I don't think I'll go that route. +Not that bad. +Well, I don't think you had hand sanitizer either. + +Yeah, that's not good for you anyway. +But anyway, there's a new option on the playing field here as far as the ability to do some cord cutting. +And that would be, believe it or not, YouTube. +YouTube is offering a new service called YouTube TV. +They will have 40 networks to launch with and they're adding local providers. +I think the name is kind of silly though because like the whole point was that it was like, you know, a tube is like slang for TV. +Yeah, a little redundant. +Yeah. +But for $35,000. + +For $35,000 a month, you can basically have on demand. +So, I mean, Sling exists, which is basically the same service except it's not as good in any way. +Right. +They do provide local channels but I think you have to pay extra for them. +You do have to pay extra for them and they have fewer amounts of devices that you can stream to simultaneously. +And it's just bad. +I've tested it out before getting cable. +I was like maybe this will be the way to go. +Nope. +Nope. +Yeah, but YouTube, they do a pretty decent job of getting your… +Yeah. +…their content to you and they have, you know, they have the infrastructure to be able to pull this off whereas I think Sling just doesn't. +We could do an entire episode about how YouTube delivers a video to you. +It's actually fascinating. +There's a lot going on, a lot more than you think there is as far as hitting play on a video. +Like the science behind how the counter goes up for views is crazy. +Yeah, which is why it doesn't work. +It merely gives the appearance of not working while it computes how to work in the background apparently. +Right. +Well, the Gangnam Style like broke the counter. +Yeah, it turns out that you couldn't have over a billion views. +I don't think they ever thought that was going to be a problem. +Yeah. +That is a huge amount of views. +But anyway, YouTube is going to give you an option for cord cutting that requires less science involved. +Considering that most streaming devices, in fact, I think all of them, the Roku, the Apple TV, the Plexbox, you know, Plex or not Plexbox, Amazon Fire TV, +all of the different streaming devices have a YouTube app built in. +And with the launch of YouTube TV, I'm sure they'll get a more refined, very YouTube style app for those things. +So it's something that I think is going to be useful just because I completely disagree with the entire business model of cable. +And so I have this aversion to anyone using cable. +Yeah. +But, you know, it's not like I'm anti-cable. +I'm just a cable. +Well, I have cable and I'm still anti-cable. +So I'm planning on seeing if I can, now that I've had it for a while and I'm not like blown away by how amazing it is, I think there might be some renegotiation happening. +Oh, well, maybe you can figure out how to, you know, cut the cord for Food Network. +Good luck with that, man. +Yeah. +Yeah. +See, I like to argue with people though. +It's kind of a hobby. +It is kind of a, yeah. +We're not going to talk about that right now. +Let's talk to Thomas. +How are you? +I'm okay. +I'm enjoying your show. +I don't always get a chance to listen to it because most of the time, including today, you're talking about stuff I have no idea. +It's all way over my head. +Then you should call and say, I don't understand that, Mike. +Explain it to me better. +Well, I'm 77 years old and I got my first computer in 1998 and I still about the only thing I can really do is work. +OK. + + + + +OK. +OK. + +OK. + +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +from Cox, my internet is $67.99. +Yeah, I think he was just talking about the TV portion. +Yeah, for the actual internet itself, I pay about, I think it's about $80. +For the actual internet? +Just for the internet, and then I pay an additional $40 now for TV as well. +Well, I got, under mine, under new charges, for TV, it says $146.99. +Internet, $67.99. +Telephone, $14.09. +$14.09. +See, this is one of the reasons that I, I'm going to use a word that I don't use very often. +I hate the cable company. +Well, I do too. +And this is the reason why, is because they'll sign you up and they'll say, +hey, for $9 a month, we'll get you on the internet and you can watch TV, +and then suddenly your bill is $4,000, and you don't know why. +And they do this all the time. +I mean, Rob, you had the, that old place, you had this, a war with Comcast. +Yeah, for sure. +You know, talking about how they were like, they kept raising his price without telling him. +Yeah, I'd just get my bill and it'd be like $20 higher. +And then I'd call them up and they'd be like, oh, we'll take that off. +And then they slowed your internet down. +Yeah, and I'm like, what, why did, why? +You're just trying to see if I noticed? +It's not cool. +So, you might have to call up and force a renegotiation of your bill. +I just renegotiated with them in August. +Well, do it again. +The magic words are usually, I can get this cheaper elsewhere. +Right. +The magic words are usually, I can get this cheaper elsewhere. +Oh, I see. +I see. +Okay. +And you talk a lot about passwords and it's changing passwords. +You know, I have a, when I go to the bank, I stutter wondering whether I'm going to have the right pin. +And I only have two accounts and that's only four, four numbers. +Right. +Let alone, I've started writing them down in a book. +Which is? +Passwords to go to this guy, to go to that guy, to go to this guy. +Because when I... +If I'm not using it every day, my mind says, what the hell is that? +Right. +So, I have to, you know, I go to this bank and tomorrow I go to the other bank and I +got to go and get my little book that I got it written down in to make sure that I'm putting +all the right information in. +And so, like, I don't like changing passwords. +I understand that, but it's for your own good. +I mean, you don't want anybody to have access to your stuff. +And believe me. +They will have access to your stuff. +In fact, there's a website that you can go to that will tell you whether or not somebody +has probably has your password or not. +And in a lot of cases, if you use common websites, they do. +Right. +So, I'm not a Facebook guy. +I'm not on there. +I'm not a Twitter. +I don't... +Who's your email provider? +My what? +What's after the at symbol in your email address? +I don't know. +Oh, doc.com. +No, before that, though. +Cox. +There you go. +No, no, no, no, no, no. +Yeah. +Cox. +Cox.com. +Yeah. +No, I don't have Cox.com. +I've got... +You see? +See? +All right. +So, chances are that if you're using a provider email, right, if you're, like, either email +provided by your internet provider or especially if you're using something like Yahoo for mail +or AOL, that those... +Oh, I know what it is now. +Hotmail and Google. +All right. +The Google one, you're probably relatively safe there. +Okay. +There was a Hotmail breach, wasn't there? +But there's several Hotmail breaches. +So, if you haven't changed your password since, I don't know, ever, then somebody knows your +password. +And in some cases, you know, people just don't care, right? +They're just like, I don't really have anything to hide here. +But it can cause larger problems than that. +You can end up being basically the source of a spam email. +So, if you're using a provider email, if somebody can guess your email password, and that happens +a lot on Hotmail. +So, the idea of password, keeping yourself safe online is an important topic. +And especially for those that have a larger digital presence, right, where they're doing +more stuff online than just checking email. +But as you said in the beginning of the call, there are many places where you just can't +do anything but to use an online service as an example for paying bills. +Or like my daughter's homework. +Right? +They don't send paper homework anymore. +They have a laptop that is provided, a Chromebook that is provided to them, and they have to +do all of their assignments online. +And if I want to be able to check on any of her work, I have to be able to sign into those +accounts also. +So, the world is moving completely digital. +And so, password protection is important. +And you should probably get a password manager if you really want to sort of be safe. +That way, you only have to remember one password. +And the... +The software takes care of the rest and remembers all the rest of your passwords. +Is that a program that you buy or a place, another place you go to on the internet to +come up with that? +Both. +So, you have to go to the website to get the software and then purchase it. +The one that I like right now is LastPass. +And it's... +They taught themselves that the last password you'll ever have to remember. +I'll put a link in the show notes. +Right. +So, if you manage to make it over to gurushow.com and check out the show notes, there'll be +a link there. +But there are several password managers. + +There are a lot of password managers out there to help keep you safe. +They remember your passwords for you. +And if you get the paid version, then it remembers all of your passwords across all of your devices. +So that if you happen to have a smartphone or another computer... +No smartphone. +So, if you happen to have another device of any type that you get online with, it will +synchronize those passwords to the other device. +So, you never have to remember a password ever other than the main password for LastPass. +And it'll actually even sign in the websites for you. +So, you don't even have to see the login page anymore. +I have a laptop and it sits right by me when I'm watching TV. +And I looked at it the other day. +I turned it on. +And a message came up that says Microsoft no longer supports... +Not number seven, but it's the one before seven. +Well, you probably had it set for Vista? +Vista. +Yeah. +Yeah. +Vista. +My other computer in my room over here, which I haven't used in a few years, no longer supports +that one that was before that. +XP? +XP, right. +XP, right. +We've got to get you with the times, man. +You're way behind. +Oh, yeah. +I don't... +You know, it's just here because I don't use it. +I'm not... +I use it to maybe play a game or run a language thing or something where I don't have to go +on the internet. +I just stick in the DVD. +All right. +Well, the one that... +If you're not using it online, you're probably fine. +But if you're on the internet at all with something that old... +No, I'm not. +Definitely not. +Even the Vista machine? +Even the Vista machine. +I know. +I was a little bit... +I was surprised they're not supporting Vista. +It's 15 years old. +They're not going to support that. +Oh, it's 15 years old? +Yeah. +Seven was out for 10 years. +Vista was out for three years before that and was in beta for another year and a half +before that. +So it's 15 years old. +Oh, okay. +So you got to get with the times, man. +Come down and see us. +Yeah. +Well, I was forced into Windows 10 because they just kept... +They'd break into whatever I was looking at and tell me, don't miss your opportunity to +get the free Windows 10. +Finally one day I just said, I can't take this anymore, so I did. +Yeah. +They got in trouble for that. +That's pretty much how all 10 users became 10 users. +We got to take a break though. +Sorry about that. +Okay. +Thanks a lot. +Bye-bye. +Well, come down and see us at the shop, 510 East Fort Lowell. +We'll talk to you about your technology and keep you up to date. +We'll be right back with more of the Computer Guru Show right after this. +Thanks for joining us. + + + +Your computer guru, Mike Swanson, is here to help you tame that beast of a machine. +Join the chat right now at gurushow.com or call in. +This is the Computer Guru Show on KVOY, The Voice. +I'm nerdy in the extreme and lighter than sour cream. +I was in a V Club and Glee Club and even the Chess Team. +Only question I ever thought was hard, what do I like, Kirk, or do I like Picard? +Spend every weekend at the Renaissance Fair, got my name on my underwear. +I've seen these trolls, I've seen these trolls, I've seen these trolls, I've seen these + +trolls. +Welcome back to the Computer Guru Show, 7902040 if you'd like to be part of the show or you +can join us in the chat, gurushow.com slash chat. +Let's go ahead and talk to Sandy. +Hey, Sandy, how are you? +Hi. +Well, I have a question about password manager and it might sound dumb, but I just want to +make sure I understand it. +Okay. +If I use a password manager, I don't have to know the password, but then I go and visit +my daughter, I won't be able to log on to my account not knowing the password. +It's physically on my computer. +Right? +A physical. +There's a few ways around that and it turns out that they've thought of that. +You have a couple of options. +You can carry around a backup copy or a portable version of your password manager on a memory +stick that you keep in your pocket or something. +Then when you go somewhere else or using a machine that is not yours, you can put that +flash drive in and launch the password manager off of that particular stick. +Super. +Super. +Or in a lot of cases, you can just go and log in. +In a lot of cases, as long as you have internet access, you can just sign into your account +and it will allow you to access your passwords. +Super. +Thank you very much. +You're quite welcome. +Okay. +Bye-bye. +Thank you and thanks for calling. +It turns out that security is something that is an important thing. +In fact, it can cost you a little bit of money. +A little bit or a lot of it if you're Marissa Meyer. +So how much money did Marissa Meyer lose? +$54 million. +$54 million. +Marissa Meyer, by the way, is the formerly CEO of Yahoo. +One of her exit contract agreements was that if her performance was good, she would get +$54 million. +But because of that gigantic Yahoo mail breach that happened last year. +Didn't qualify. +Yep. +$54 million no longer in her pocket. +I mean, I'm sure she's not hurting for money, but that would have been nice. +But who doesn't want an extra $54 million? +You know what I mean? +She was that close. +Yeah. +I guess Bill Gates could probably be like, meh. +Yeah. +There's a few people that are just like, eh, $54 million, whatever. +Yeah. +Not a big deal. +Yeah. +But Marissa Meyer is not one of them and I'm sure she's pretty sad. +I'm sure that that will affect her overall retirement plans. +To be fair, she definitely didn't deserve it. +No. +No, she did not. +Just because the scope of that Yahoo breach was so massive. +Yeah. +She handled it and tried to cover it up. +If you write a book about Marissa Meyer's time at Yahoo, I'm pretty sure it would be +called Mismanagement. +Oh, that would be a good one. +I like that one there. +Oh, yeah. +That's a good one. +I'm going to have to patent that or trademark it anyway. +Just go ahead and write the book. +Yeah. +On the first page, it'll just say, I don't know any of this stuff. +I just came up with the title. +Right. +Obviously, there was mismanagement. +The end. +I mean, that pretty much sums it up. +Yeah. +There was a gigantic breach and it caused some problems with the acquisition of Yahoo +Mail by Verizon even. +I mean, when they say gigantic, they mean the biggest data breach that had happened +to that point. +It was like two billion accounts. +Yeah. +That's a lot of data. +I mean, that's impressive in its own route, I guess. +I mean, how much time does it take to actually get the information for two billion +accounts? +I mean, it's not instant. +No. +Even if they were one bit per file. + +Right. +That would take a long time. +And nobody noticed that they were in there. +I mean, it's much like the movie production house hack that happened a few years ago and +it turned out that it was an inside job because people started going, wait a minute, there +is hundreds of terabytes of information that are- +Yeah. +At the very least, you'd notice that when your ISP called you and was like, hey, stop +using that much bandwidth. +Right. +Well, I mean, I don't know that the movie houses are going to have the ISP call them, +but- +Yeah. + + + + + + + + + +I mean, it's just, I mean, there's a physics question here, right? +Maybe they smuggled the data out in their blood. +Oh, they could have. +They could have. +In fact, one person. +Yeah. +Like many times over. +So let's talk about DNA for a second here. +It turns out that DNA stores a lot of information. +We talked about DNA being tested as a storage medium about two years ago on the show. +Yeah. +And they didn't really have any hard numbers about how much data they were able to store, +but it turns out that 215 petabytes per gram of DNA. +And so this is coming to light right now because there were researchers who were able to completely +write an entire operating system into- +And a movie. +And a movie and an Amazon gift card and also a computer virus into a DNA sequence and then +recover it and run it. +Oh. +And when they recovered, there was zero errors. +I mean, there's not even zero errors when you just transfer it to your flash drive. +Right. +There's errors when you read it off the hard drive that you use every day. +That's insane that they could pull that with zero errors, that much data. +And so, yeah, they say that the storage capacity for DNA is pretty absurd. +Like you said, 215 petabytes per gram of DNA. +So we did a little napkin math based on the average amount of DNA that a person has in +their body, which I guess equates to about 300 grams in your whole body. +Right. +So you could store something like, what was it? +64 Yottabytes of data. +Yeah. +It's exabytes. +Exabytes. +Yeah. +It is insane amounts of data. +It is more data in one person than exists in entirety anywhere. +Now, I mean, I doubt the read-write speeds are super great for DNA. +Right. +But imagine though that you have some type of secret information, right? +And then it opens up another challenge for security, which is if you're storing important +information within your own DNA, then ... +Yeah. +That brings a whole new meaning to trust fund baby. +Yeah. +Well, but think about it. +Somebody could technically take the glass at the bar and then have access to your information. +Yeah. +I mean, that's true. +You'd have to encrypt it, I guess. +Yeah. +It's going to be an interesting ... +Don't the police already have the right to get your DNA? +No. +That's another one of those weird areas too when it comes to ... +Because they can offer you like a soda in the ... Or is that just the movies? +Well, I mean, if they offer you something, then it's entrapment. +But if you ... They just take it up out of the trash. +If there's just sodas on the table and you just grab one ... +Right. +Then it's not. +There you go. +All right. +Let's take a call here. +Let's talk to Frank. +Hey, Frank. +How are you? +Hey. +Good, guys. +Hey. +I heard you talking about the ... + + +You were talking earlier about YouTube TV and I'm curious. +How does that work? +I have one of those bundled packages with phone, internet, and direct TV and I'm thinking +I'd like to get out of it pretty soon and that YouTube thing sounds interesting. +Yeah. +It sounds pretty good. +I mean, you have to worry about data caps, of course, depending on your provider. +But $35 a month and being able to watch all kinds of stuff and they allow you to do like +full DVR where you can just watch on demand and you even get the ability to fast forward +which you don't in Sling. +You'll have to check out their channel list for a full list and I'm sure it'll vary depending +on where you are. + +Yeah, because we ... I mean, we recently got a smart TV and we tend to watch Netflix through +the TV more than we do any of the cable channels. +Right, which is normal. +Yeah, which ... So I'm thinking that once I'm able to get out of my ... Whatever the +cutoff deal is with the cable, I would prefer to get out of that and try something different. +So just having an internet connection is all you need then to hook into it. +Yep. +Oh, great. +All right. +Okay, thanks a lot. +Well, good luck with that. +I mean, I'm all down ... I'm totally down for people not being on cable. +I mean, if this turns out to be good enough, maybe I should have waited a bit. +Yeah, well, you can take a look at the list. +I can also cancel anytime. +I made sure of that. +Yeah, no contract for you, man. +Correct. +That's not how we roll around. +We don't do contracts. +All right, stick around for more of the Computer Guru Show coming up right after these messages. +790-2040 if you want to get in line to have a conversation with us. +We'll be right back. +. +. + +. +. +. + + +. +. + + +. +. +. +. +. +. +. + +. +. +. +. +. +. +. + + + +. + + + +. + +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. + + + +. +. + + + + + + + + + +. + + + + + + + + + + + + +. +. +Guru Show on AM 1030, KVOY The Voice. +Welcome back to the Computer Guru Show. +My name is Mike. +Here to deal with your technology needs and treat you like a person in the process. +That's 790-2040. +That's 520-790-24. +Wait, 2040? +2040, or join us in the chat, gurushow.com slash chat. +You can ask your question there, and we'll answer it on air. +A lot of times, also, if we don't answer the questions on air, Howard's in there as well, +and he's helping people out, too. +I think John's in there, too, right? +Yeah. +You've got mostly the whole crew in there, answering questions away. +I try to get everybody to agree to the uniform guru underscore name, but only me did that. +Right. +I never did. +Yeah. +I am the guru. +Is that what I am? +It's just the computer guru. +Okay. +Well, let's talk to Rick. +Hey, Rick. +How are you? +Hey, I'm doing okay. +Hey, occasionally, I house-sit my son's house, and he's got internet television services +like Roku and Hulu and all that. +Right. +I find it kind of problematical and a little bit of a pain in the ass, but I don't think +it's as good as having satellite or cable. +It depends on what you're looking for, and especially if there's fragmentation, right? +Right. +So if they're using multiple services on different devices. +Right. +Well, you've got about eight different ... You can do Hulu or Roku or this one or that one. +There's about six or eight different choices. +Then I notice that, okay, I'll see a program that's on the menu. +Hey, I'd like to watch that, right? +Well, then a lot of times it'll be like $3.99, $7.99, $15.99. +You know what I'm saying? +In other words, you've got to enter a credit card number right then in order to use it. + + +This is true. +Now ... +So channel surfing and stuff, I mean, in the past I've had not only cable from a Tucson +cable or whatever, but then I had the Dish Network satellite top package, which was 200 +plus channels. +So here's the thing with the Rokus. +Roku and Apple TV both have this fatal flaw, in my opinion, is that they sell you a relatively +cheap device. +They say you can get online and watch whatever you want, but by the way, we're going to microcharge +the heck out of you. +Yeah, that's what I'm saying. +I mean, in other words, there's many programs where it would say, yeah, you can watch this, +but it's like $7.99. +So here's ... +Key in your credit card number or whatever. +Here's how I deal with it. +I have an Apple ... Or I'm sorry, an Amazon Fire TV, and I have an Amazon Prime account. +With the two things together, I can watch basically any TV show. +I can watch any video or any movie, and it's included in the price of my Amazon Prime account. +Well, that's good. +See, I'm being just a house sitter. +I wasn't ... I didn't have all of those. +Well, this is information you can give to your son then, so he can have a better experience. +Yeah, he probably knows already. +I'm just saying, when I was watching this ... +Well, what I found is a lot of people, they get locked into this idea, right? +They're like, well, I bought this Roku. +It cost me 40 bucks or 60 bucks or whatever, and then they never think, there's probably +something better out there. +It doesn't cost much. +Right? +So, like the Amazon Fire Stick costs $35, and then your Amazon account gives you access +to effectively everything. +Now, Amazon is not to be trifled with when it comes to the number of programs that they +have available to you. +They are ... +They have a lot? +Oh, yeah. +They are Netflix and then some. +It's like if you were to take Netflix and Hulu and stick them together. +They have got everything, and it's all included in the price. +So, it's a lot ... +They have more than like Dish Network? +As far as ... They have basically everything that's on ... +The amount of choices. +Like if you get the top of the line Dish package, they got like 200 plus. +I have never, in my personal experience, I have never asked for a program to be displayed +on my television that was not available. +Okay. +Like the Heroes Channel, which formerly was called the Heroes Channel. + + +The Heroes Channel is the military channel. +That's one I like to watch a lot. +I don't know. +They definitely have a lot of those kinds of shows on Amazon Prime, because I watch some +of that stuff too. +It might be worth just looking around. +You can go to the Amazon website and check out what they've got available as far as TV. +Yeah, I have to tell them about that, because like I said, when I was taking care of his +place for a week or two, I was both frustrated and a little PO'd about the way that they +had it set up. +I mean, there was a lot of choices, but almost everything. +There was a few things that I was a little bit frustrated about. + + + +I mean, I was a little bit frustrated about the fact that I was not able to get a lot +of the things that were available for free, maybe half a dozen things that were free, and +then the rest was key in your credit card. +You still have to consider, though, that there is a ... He's paying probably nothing per +month other than internet for that, as opposed to what would be involved with a monthly charge +for a satellite or cable. +Right, right, right. +I'm just saying, not carrying a calculator around with me at all times and all that, +I could see where my bill ... +Yeah, I understand. +I was paying like $90 a month for the Capital Nine Dish Network. +At the rate I would watch interesting programs in a month, I would way, way exceed $90 a +month if I were to go ahead and pay for those programs individually. +Yeah. +When it's set up right, a cord cutting service, like I said, when it's set up right can cost +a fraction of that, and you'll have access to nearly everything. +Right. +So everything that I watch, if I were to take a ... If I were to add everything I'd have + +that is involved with the system that I use for being able to get everything. +Like I said, I've never run across a program that I did not have access to for the included price. +I pay $80 a year for Amazon Prime, and then I paid about $30 a month for the additional services +that go on some of the back-end stuff of what I use, and then Internet. +And that's it. +Oh, that's pretty good because, I mean, yeah, obviously at $90 a month, you'd be paying a lot of money. +Right. +And you'd be paying $1,200 almost a month. +When we do the get-together in, like, April or whatever, we'll show a demo of how to do it right. +And you guys can come down and check out what cord cutting actually looks like if you do it properly. +But thanks for the call, Rick. +Yeah, I've got a question for you. +Yeah, go ahead. +I've got a question for you. +Yeah, maybe quick, though. +Yeah, I've got an HP executive laptop computer, and I've got the Dragon software. +Oh. +And an inexpensive printer. +I was thinking about putting out a book on my own. +You know, I have an incredible life story. +I was thinking about coming out with my own book and maybe self-publishing it or whatever. +But where is your shop on Fort Lowell? +Because I may have to come over there and get your advice. +510 East Fort Lowell. +It's at 1st and Fort Lowell. +All right. +Thanks, Mike. +All right. +Appreciate the call, Rick. +Thank you very much. +Hey, one more thing. +You are the guru. +Yes, I am. +Thank you very much. +All right. +We're going to take another break, I think. +That's what we're going to do. +I'm going to make Kent push some buttons here. +And when we come back from the break, more Computer Guru at 790-2040. +Thank you. +Thank you. +Thank you. +Thank you. + +Thank you. + + + + + + + + + + + + + + + + + + + + +Thank you. + + + + + + + + +Thank you. +Thank you. +She would do what you told her how to walk this way. +Walk this way. +Walk this way. +Walk this way. +Walk this way. +She told me to walk this way. +Walk this way. +Walk this way. +Walk this way. +She said give me a kiss. +Computer troubles? Need some advice? Call in now. +Mike Swanson will be back after these messages. +The Computer Guru Show. +AM 1030, KVOY, The Voice. +Mike Swanson, your computer guru, is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show. +Welcome back to the Computer Guru Show, 7902040. +If you'd like to be part of the show, +or if you'd like to be part of the show, +join us in the chat, gurushow.com. +You can ask your questions there, +and you'll get a multitude of answers. +Probably too many. +You'll be answered so hard, you'll just want to leave. +And then probably people will disagree about the answers +that other people gave, and everyone will just argue. +And then I will settle it. +And start kicking people out of the chat. +So I did want to mention one more thing +in the cord cutting world for a second. +A lot of the complaints that people have +about the whole cord cutting setup +is that it doesn't feel like actual TV, +where you can just flip through channels. +There is a solution for that, though. +There's a software called Pseudo TV Live, +which you can set up on a computer, +or any device, really. +And then you just hook up all of your services to it, +and it makes them all into a pseudo cable device. +So you can just flip through your channels. +There's stuff playing constantly. +It's pretty cool. +Yeah, I guess that I've been doing this for so long now +that I have no nostalgia. +Yeah, I agree. +For any of that stuff. +I mean, so there are circumstances +in which I like to do this. + + +I like to just have something on in the background. +But in that case, I'll just turn on autoplay, you know, +and I'll just watch a whole show or something. +I guess I'm weird in that respect, +is that a lot of people like to put things on +for background noise. +And the only background noise that I have in my life +is a fan. +And then the rest of it is silence. +I just enjoy silence so much +that I have noise-canceling headphones +that I don't plug into anything. +Well, what you don't have, Mike, is tinnitus. +So... +This is... +This is... +This is... +This is true. +So, yeah, my dad was told me. +He said that he's developed tinnitus recently. +I've got some of that going on. +It's because you go to those acid rock concerts +that you go to. +Acid rock? +It's what my grandfather used to call anything that was... +anything that was harder than the Beatles. +Right? +Yeah, it's all those acid rock shows that I go to. +Oh, man. +That was... +That just came out of nowhere. +I just remember him saying that one time +and I was just like, +oh, that's the funniest thing I've ever heard. +Speaking of old man stuff, though, +I wanted to kind of... +I wanted to call you out +and see if you're as good as your word on something. +Okay. +The Nokia 3310 is available once again. +That's the famous phone +that could stop a speeding bullet, as they said. +It used to be able to. +Yeah. +So, you were saying a couple weeks ago +that you like the old phones? +I still have a wish +that I could just have a non-smartphone. +So, is this more of like a... +I dream of a world +in which I would be able to do that kind of thing? +Well, it's... +Because of my need for my smartphone +for my data plan that I use all day, +I cannot switch. +However, if I could, +if I did not need that plan anymore, +I would not have a smartphone. +Do you think that you would go +to the new old Nokia phone? +Yeah. +I wish it would have been more like +the old, old Nokia phone. +The new one. +Or like, here's a name +you haven't heard in a while, probably. +Like the old Kyocera phones. +The StarTAC phones? +Yeah. +Remember playing Brick Attack on those things? +Although, +I have to... +I have to admit, +the only thing that made me really happy +about the new Nokia phone, +which is modeled after the old one, +the one that was... +The one that you find... +The only cell phone +that will be found in archaeological digs +is the Nokia 3310 +or that whole family of Nokia phones. +I was very happy to know +that the Snake game still works on that. +Yeah, if you weren't playing Snake, man, +just get out of town. +Yeah. +You don't know how to use a phone. +So, this one has a two... +It has a two megapixel camera, +whereas the old phone +had like a two pixel camera, I think. +It had a potato. +They had cameras, right? +Some of these older... +Oh, I'm thinking of the Kyocera ones. +There were cameras on those. +Yeah, Nokia's did not have cameras. +But they were measured in like... +Like I said, just pixels at that point. +They were terrible. +Yeah, they were terrible. +All right, let's fit a call in here +before we run out of show time here. +Hey, Dave, how are you? +Yeah, hi. +Good morning. +Hey, wanted to ask +what you think about +how, if you're going to be a cable cutter +or get away from cable TV, +how do you get your regular TV network stations? +Are you talking about local? +Yeah, local stations. +Now, I can't get over the air. +I'm in a problem area +where there's no reception, whatever. +Many of the official services, +like the upcoming YouTube TV +that's being released here, +will offer... +Yeah, I read that with interest. +They will offer local channels as well. +So there's going to be... +Most of them offer some type of local add-on. +And it's usually an additional charge. +But apparently, from what I understand +with the YouTube TV one, +that they're going to be included +for your local area. +So that'll be interesting. +That's the only one you've heard of so far? +Sling offers it as well, but it's a premium. +You have to buy the extra package. +Yep, Sling TV offers it. +YouTube TV is going to offer it for free. +There's a couple of other services +that historically have offered it. +I know that one of them is in lawsuit entanglement +at the moment, +so they're no longer offering it. +But there were several out there that offer that. +And to me, though, +it's another one of those things +where when I started doing the cord-cutting bit, +there was no option for local channels. +So I've not seen a local channel, +and I've been on a local channel in about a decade. +So I don't really know what that's like, +other than I just go to their website +and watch the videos that they put up. +Yeah, a lot of times, if you're worried about news, +almost every news channel nowadays +slices up their news segments +and throws them on YouTube. +Yeah, yeah. +Well, I give them enough already for the internet. +Yeah, well, I mean, it's coming to this. +It's much like cell phones. +We were talking before the show +how voice minutes and text messages +used to be a big... +determining factor on which plan you're going to get. +And now it doesn't really mean anything. +Everything's data. +And it's going to be the same thing when it comes to TV, right? +Because even your TV that you're watching on your cable box, +probably half of it comes directly over data anyway. +It's not real cable anymore anyway. +It's all digital DVR craziness. +Yeah, I mean, your Cox box is essentially +a really fancy Roku at this point. +Right. +It's this mandatory Roku box +that you have to have to watch that service. +And it's specialized for them. +So it's really coming down to the fact that +at some point, you're just going to have a data package +and you're going to do whatever you want with it. +And that's fine. +Interesting you brought up the Roku. +I have a Roku. +And because of that, I can watch news +in like three other cities already, you know, +which I already use. +Right. +And I'm not a fan of the Rokus myself, personally. +I don't like the Rokus. +I mean, I bought one just to check it out. +And I think it's sitting at the shop now. +It is. +We were actually thinking about hooking it up. +And it's one of these things. +It's just like, I don't like the interface. +I definitely don't like the packages involved, +you know, that they include. +And then everything's a micro charge on top of that. +And I don't like that either. +That's why I went with something like the Fire TV, +which I thought was a better deal. +And to me, it feels better. +And so as far as the interface is concerned, +not to mention that I'm not being charged +for every little thing that I do. +Yeah, with the right services, +those local channels aren't an issue. +Right. +They've gotten better, I'll tell you, +on the Roku over the years. +Well, we'll fire up that Roku at the shop +and we'll check it out and I'll give you an update. +Please do. +All right. +Thanks for the call, Dave. +I appreciate it. +Bye. +Well, before the show ends, +I wanted to take a moment to thank Desert Pro Cleaning +for being our Patreon sponsor. +Yeah. +They do a great job. +Did we pay off and send those recordings in yet? +Not yet. +But this way, we will never, ever forget +to do it like we accidentally did a couple of weeks ago. +I'm sorry about that over Desert Pro. +I mean, I forget things. +I'm just here trying to fix people's problems on the air +and I forget to say things like, +hey, thanks for giving us money and supporting the show. +And they've been a big sponsor on Patreon for us +for quite some time now, +so we definitely appreciate them. +Yes. +And they also do really good work +because we use them in our Eastside location +and every time I go there, it looks nice. +It does. +Yeah, so Desert Pro Commercial Cleaning. +I don't know why Mike loves the Eastside more than he does. + + +He likes the Fort Lowell office, +which could definitely use it, but... +Well, we'll just say that there's a political matter involved +with Fort Lowell. +Ah. +And, you know, there's an agreement +that has already been reached for cleaning of Fort Lowell +and, you know, I can't go messing with that. +That's true. +That's true. +So, it's politics, man. +You know, what can you say? +Especially family politics. +Yeah, and I shouldn't, you know, +the job gets done very well. +Good. +Good recovery, man. +Yeah. +I'm going to take this part of the podcast out +and then I'm going to send it to my mom. +Or you could not do that. +So, yeah. +You could just take this part of the podcast out, actually. +There we go. +So, yeah, Desert Pro Commercial Cleaners, +you can visit their website. +You can check them out. +It'll be linked in the show notes. +And we really appreciate them supporting us on Patreon. +They do a great job of cleaning Harrison +and it's just lovely. +They're very, very nice people to deal with. +Especially because... +You know, when I get to go blow things up later, +that's in large part thanks to them. +Yeah, and I don't get to, you know, +I don't get to see those guys +other than on the security cameras at night +when they're in there cleaning. +But they seem to be doing a great job. +And every time I go over there, +the place is clean. +So, that's good. +That's what I like. +So, you can be a Patreon sponsor, too. +Yeah, and if you want to be able to help us out, +you can go ahead and support us on Patreon. +Go to gurushow.com +and there's a link, a Patreon link +that you can go to to support us +with as little as a dollar a month. +You find more in your couch cushions. +And if you do that, +if you contribute that one dollar a month, +you will get access to this awesome video +that we've been planning for a while +as well as many others +that we have already started planning +and are going to do. +Because it turns out this stuff's really fun +and we really like doing it. +Right. +The one I'm looking forward to +is the home automation project. +That's going to be a lot of fun. +So, the recording studio is going to get fully automated +so I can walk in the room and, you know, +just do whatever. +Star Trek style. +Yeah. +And then we're going to show you the weaknesses. +We're going to basically hack the system. +See, I'm excited for that part +because this is my interest anyway. +So, go to Patreon. +Go to our website, gurushow.com. +Click the Patreon logo. +Get signed up for a dollar a month +and you will get access to all of this and more. +Right. +And if you're concerned about security, +if you want to make sure +that you're being a little bit safer online, +get yourself involved with some VPN service, +you go to gurushow.com slash VPN +and you can be linked up with TunnelBear. +And that's the VPN service +that we're recommending for everyone to use +to keep yourself just a little bit safer online. +Make sure that you can maintain some anonymity. +You can also visit us at 510 East Fort Lowell +or 64 North Harrison in Tucson. +That way you can help us keep the show on the air +by, I don't know, supporting the business. +Letting us fix your computers and all of that. +Because that's what we do all week. +This is just a hobby on the weekends. +But thanks again for listening to the Computer Guru Show. +Give us a call down at the shop, 304-8300. +And we'll see you next week. +You know, we really enjoy doing this show. +I mean, I've been doing it for, what, nine years now? +So I must be liking it. +But here's the thing. +It costs a lot of money to put this show on. +And you can help us keep this show on the air +for as little as a dollar a month. +All you've got to do is go to gurushow.com +and click on the Patreon link. +And from there, you can see that we have +all kinds of rewards for Patreon members. +You also get exclusive access to content +that is made strictly for Patreon members. +We get to blow up Furbies, automate homes, +and put fun tech videos +on. +We're here to help you learn. +And maybe you can help us keep that going +by supporting us on Patreon. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.json new file mode 100644 index 0000000..67b1297 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.json @@ -0,0 +1,130830 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 5302.361, + "segments": [ + { + "id": 0, + "text": "From my heart and from my hand, why don't people understand my intention?", + "start": 1.3000000000000003, + "end": 6.2, + "words": [ + { + "word": " From", + "start": 1.3000000000000003, + "end": 1.94, + "probability": 0.673828125 + }, + { + "word": " my", + "start": 1.94, + "end": 2.26, + "probability": 0.99853515625 + }, + { + "word": " heart", + "start": 2.26, + "end": 2.58, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 2.58, + "end": 2.76, + "probability": 0.9970703125 + }, + { + "word": " from", + "start": 2.76, + "end": 2.98, + "probability": 1.0 + }, + { + "word": " my", + "start": 2.98, + "end": 3.24, + "probability": 1.0 + }, + { + "word": " hand,", + "start": 3.24, + "end": 3.58, + "probability": 0.99072265625 + }, + { + "word": " why", + "start": 3.62, + "end": 3.84, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3.84, + "end": 4.22, + "probability": 1.0 + }, + { + "word": " people", + "start": 4.22, + "end": 4.52, + "probability": 1.0 + }, + { + "word": " understand", + "start": 4.52, + "end": 5.04, + "probability": 1.0 + }, + { + "word": " my", + "start": 5.04, + "end": 5.76, + "probability": 1.0 + }, + { + "word": " intention?", + "start": 5.76, + "end": 6.2, + "probability": 0.85546875 + } + ] + }, + { + "id": 1, + "text": "Computer running slow?", + "start": 6.82, + "end": 8.06, + "words": [ + { + "word": " Computer", + "start": 6.82, + "end": 7.46, + "probability": 0.9970703125 + }, + { + "word": " running", + "start": 7.46, + "end": 7.68, + "probability": 1.0 + }, + { + "word": " slow?", + "start": 7.68, + "end": 8.06, + "probability": 1.0 + } + ] + }, + { + "id": 2, + "text": "Avoiding.", + "start": 8.22, + "end": 8.56, + "words": [ + { + "word": " Avoiding.", + "start": 8.22, + "end": 8.56, + "probability": 0.9453125 + } + ] + }, + { + "id": 3, + "text": "Caught a virus?", + "start": 8.76, + "end": 9.5, + "words": [ + { + "word": " Caught", + "start": 8.76, + "end": 9.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 9.16, + "end": 9.2, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 9.2, + "end": 9.5, + "probability": 1.0 + } + ] + }, + { + "id": 4, + "text": "No!", + "start": 9.8, + "end": 10.24, + "words": [ + { + "word": " No!", + "start": 9.8, + "end": 10.24, + "probability": 0.3076171875 + } + ] + }, + { + "id": 5, + "text": "When?", + "start": 10.9, + "end": 11.24, + "words": [ + { + "word": " When?", + "start": 10.9, + "end": 11.24, + "probability": 0.316162109375 + } + ] + }, + { + "id": 6, + "text": "Does your computer seem to have a life of its own?", + "start": 12.02, + "end": 15.0, + "words": [ + { + "word": " Does", + "start": 11.78, + "end": 12.1, + "probability": 0.81005859375 + }, + { + "word": " your", + "start": 12.1, + "end": 12.6, + "probability": 1.0 + }, + { + "word": " computer", + "start": 12.6, + "end": 13.08, + "probability": 1.0 + }, + { + "word": " seem", + "start": 13.08, + "end": 13.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 13.5, + "end": 13.7, + "probability": 1.0 + }, + { + "word": " have", + "start": 13.7, + "end": 13.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 13.92, + "end": 14.08, + "probability": 1.0 + }, + { + "word": " life", + "start": 14.08, + "end": 14.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 14.42, + "end": 14.58, + "probability": 1.0 + }, + { + "word": " its", + "start": 14.58, + "end": 14.74, + "probability": 0.9990234375 + }, + { + "word": " own?", + "start": 14.74, + "end": 15.0, + "probability": 1.0 + } + ] + }, + { + "id": 7, + "text": "Now functioning.", + "start": 15.1, + "end": 15.96, + "words": [ + { + "word": " Now", + "start": 15.1, + "end": 15.44, + "probability": 0.399658203125 + }, + { + "word": " functioning.", + "start": 15.44, + "end": 15.96, + "probability": 0.58349609375 + } + ] + }, + { + "id": 8, + "text": "Need input.", + "start": 16.28, + "end": 17.42, + "words": [ + { + "word": " Need", + "start": 16.28, + "end": 16.92, + "probability": 0.9189453125 + }, + { + "word": " input.", + "start": 16.92, + "end": 17.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 9, + "text": "The computer guru is here.", + "start": 17.78, + "end": 19.42, + "words": [ + { + "word": " The", + "start": 17.78, + "end": 17.94, + "probability": 1.0 + }, + { + "word": " computer", + "start": 17.94, + "end": 18.28, + "probability": 0.787109375 + }, + { + "word": " guru", + "start": 18.28, + "end": 18.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 18.68, + "end": 19.14, + "probability": 1.0 + }, + { + "word": " here.", + "start": 19.14, + "end": 19.42, + "probability": 1.0 + } + ] + }, + { + "id": 10, + "text": "Thank God you're here!", + "start": 19.6, + "end": 20.56, + "words": [ + { + "word": " Thank", + "start": 19.6, + "end": 19.74, + "probability": 0.64697265625 + }, + { + "word": " God", + "start": 19.74, + "end": 20.06, + "probability": 0.97216796875 + }, + { + "word": " you're", + "start": 20.06, + "end": 20.38, + "probability": 0.99853515625 + }, + { + "word": " here!", + "start": 20.38, + "end": 20.56, + "probability": 1.0 + } + ] + }, + { + "id": 11, + "text": "Call in now.", + "start": 20.94, + "end": 21.76, + "words": [ + { + "word": " Call", + "start": 20.94, + "end": 21.18, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 21.18, + "end": 21.44, + "probability": 0.99853515625 + }, + { + "word": " now.", + "start": 21.44, + "end": 21.76, + "probability": 1.0 + } + ] + }, + { + "id": 12, + "text": "Now it's Mike Swanson, your computer guru.", + "start": 22.04, + "end": 24.98, + "words": [ + { + "word": " Now", + "start": 22.04, + "end": 22.5, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 22.5, + "end": 22.86, + "probability": 0.888671875 + }, + { + "word": " Mike", + "start": 22.86, + "end": 23.08, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 23.08, + "end": 23.46, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 23.72, + "end": 23.96, + "probability": 1.0 + }, + { + "word": " computer", + "start": 23.96, + "end": 24.48, + "probability": 1.0 + }, + { + "word": " guru.", + "start": 24.48, + "end": 24.98, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "Oh, let's see where...", + "start": 25.76, + "end": 27.46, + "words": [ + { + "word": " Oh,", + "start": 25.76, + "end": 26.4, + "probability": 0.7080078125 + }, + { + "word": " let's", + "start": 26.4, + "end": 26.72, + "probability": 1.0 + }, + { + "word": " see", + "start": 26.72, + "end": 26.96, + "probability": 1.0 + }, + { + "word": " where...", + "start": 26.96, + "end": 27.46, + "probability": 0.75244140625 + } + ] + }, + { + "id": 14, + "text": "Look at this.", + "start": 27.46, + "end": 28.04, + "words": [ + { + "word": " Look", + "start": 27.46, + "end": 27.7, + "probability": 0.88037109375 + }, + { + "word": " at", + "start": 27.7, + "end": 27.88, + "probability": 1.0 + }, + { + "word": " this.", + "start": 27.88, + "end": 28.04, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "The levels are all right.", + "start": 28.1, + "end": 29.22, + "words": [ + { + "word": " The", + "start": 28.1, + "end": 28.3, + "probability": 0.9990234375 + }, + { + "word": " levels", + "start": 28.3, + "end": 28.62, + "probability": 1.0 + }, + { + "word": " are", + "start": 28.62, + "end": 28.82, + "probability": 1.0 + }, + { + "word": " all", + "start": 28.82, + "end": 28.96, + "probability": 0.499755859375 + }, + { + "word": " right.", + "start": 28.96, + "end": 29.22, + "probability": 1.0 + } + ] + }, + { + "id": 16, + "text": "Hello.", + "start": 29.32, + "end": 29.8, + "words": [ + { + "word": " Hello.", + "start": 29.32, + "end": 29.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 17, + "text": "Hi.", + "start": 30.0, + "end": 30.34, + "words": [ + { + "word": " Hi.", + "start": 30.0, + "end": 30.34, + "probability": 0.7919921875 + } + ] + }, + { + "id": 18, + "text": "Hey, how you doing today, Kent?", + "start": 30.94, + "end": 32.38, + "words": [ + { + "word": " Hey,", + "start": 30.94, + "end": 31.3, + "probability": 0.2841796875 + }, + { + "word": " how", + "start": 31.36, + "end": 31.5, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 31.5, + "end": 31.62, + "probability": 0.9130859375 + }, + { + "word": " doing", + "start": 31.62, + "end": 31.86, + "probability": 0.99951171875 + }, + { + "word": " today,", + "start": 31.86, + "end": 32.06, + "probability": 0.99853515625 + }, + { + "word": " Kent?", + "start": 32.1, + "end": 32.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 19, + "text": "Every once in a while.", + "start": 33.02, + "end": 33.9, + "words": [ + { + "word": " Every", + "start": 33.02, + "end": 33.38, + "probability": 0.9970703125 + }, + { + "word": " once", + "start": 33.38, + "end": 33.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 33.56, + "end": 33.7, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 33.7, + "end": 33.78, + "probability": 1.0 + }, + { + "word": " while.", + "start": 33.78, + "end": 33.9, + "probability": 1.0 + } + ] + }, + { + "id": 20, + "text": "I am pleased with...", + "start": 34.06, + "end": 35.92, + "words": [ + { + "word": " I", + "start": 34.06, + "end": 34.28, + "probability": 0.9990234375 + }, + { + "word": " am", + "start": 34.28, + "end": 34.38, + "probability": 0.98828125 + }, + { + "word": " pleased", + "start": 34.38, + "end": 35.04, + "probability": 0.9619140625 + }, + { + "word": " with...", + "start": 35.04, + "end": 35.92, + "probability": 0.7861328125 + } + ] + }, + { + "id": 21, + "text": "I don't know.", + "start": 36.72, + "end": 37.22, + "words": [ + { + "word": " I", + "start": 36.72, + "end": 37.08, + "probability": 1.0 + }, + { + "word": " don't", + "start": 37.08, + "end": 37.16, + "probability": 1.0 + }, + { + "word": " know.", + "start": 37.16, + "end": 37.22, + "probability": 1.0 + } + ] + }, + { + "id": 22, + "text": "I kind of like the over-modulated thing because it's like...", + "start": 37.24, + "end": 39.4, + "words": [ + { + "word": " I", + "start": 37.24, + "end": 37.32, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 37.32, + "end": 37.42, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 37.42, + "end": 37.5, + "probability": 1.0 + }, + { + "word": " like", + "start": 37.5, + "end": 37.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 37.62, + "end": 37.76, + "probability": 1.0 + }, + { + "word": " over", + "start": 37.76, + "end": 37.98, + "probability": 0.99951171875 + }, + { + "word": "-modulated", + "start": 37.98, + "end": 38.42, + "probability": 0.99267578125 + }, + { + "word": " thing", + "start": 38.42, + "end": 38.72, + "probability": 1.0 + }, + { + "word": " because", + "start": 38.72, + "end": 38.9, + "probability": 0.50927734375 + }, + { + "word": " it's", + "start": 38.9, + "end": 39.08, + "probability": 1.0 + }, + { + "word": " like...", + "start": 39.08, + "end": 39.4, + "probability": 0.978515625 + } + ] + }, + { + "id": 23, + "text": "Like I'm yelling at everyone?", + "start": 39.4, + "end": 40.3, + "words": [ + { + "word": " Like", + "start": 39.4, + "end": 39.76, + "probability": 0.99365234375 + }, + { + "word": " I'm", + "start": 39.76, + "end": 39.94, + "probability": 1.0 + }, + { + "word": " yelling", + "start": 39.94, + "end": 40.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 40.12, + "end": 40.26, + "probability": 0.9990234375 + }, + { + "word": " everyone?", + "start": 40.26, + "end": 40.3, + "probability": 0.99072265625 + } + ] + }, + { + "id": 24, + "text": "It's like an extra kick to the show right at the beginning.", + "start": 40.3, + "end": 42.0, + "words": [ + { + "word": " It's", + "start": 40.3, + "end": 40.34, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 40.34, + "end": 40.34, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 40.34, + "end": 40.5, + "probability": 0.99951171875 + }, + { + "word": " extra", + "start": 40.5, + "end": 40.68, + "probability": 1.0 + }, + { + "word": " kick", + "start": 40.68, + "end": 40.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 40.92, + "end": 41.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 41.12, + "end": 41.2, + "probability": 1.0 + }, + { + "word": " show", + "start": 41.2, + "end": 41.4, + "probability": 1.0 + }, + { + "word": " right", + "start": 41.4, + "end": 41.6, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 41.6, + "end": 41.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 41.7, + "end": 41.78, + "probability": 1.0 + }, + { + "word": " beginning.", + "start": 41.78, + "end": 42.0, + "probability": 1.0 + } + ] + }, + { + "id": 25, + "text": "Oh, my goodness.", + "start": 42.22, + "end": 42.96, + "words": [ + { + "word": " Oh,", + "start": 42.22, + "end": 42.48, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 42.48, + "end": 42.64, + "probability": 1.0 + }, + { + "word": " goodness.", + "start": 42.64, + "end": 42.96, + "probability": 1.0 + } + ] + }, + { + "id": 26, + "text": "All right.", + "start": 43.14, + "end": 43.34, + "words": [ + { + "word": " All", + "start": 43.14, + "end": 43.28, + "probability": 0.953125 + }, + { + "word": " right.", + "start": 43.28, + "end": 43.34, + "probability": 1.0 + } + ] + }, + { + "id": 27, + "text": "Welcome to the Computer Guru Show.", + "start": 43.38, + "end": 44.38, + "words": [ + { + "word": " Welcome", + "start": 43.38, + "end": 43.62, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 43.62, + "end": 43.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 43.76, + "end": 43.82, + "probability": 0.708984375 + }, + { + "word": " Computer", + "start": 43.82, + "end": 44.0, + "probability": 0.99462890625 + }, + { + "word": " Guru", + "start": 44.0, + "end": 44.2, + "probability": 0.97412109375 + }, + { + "word": " Show.", + "start": 44.2, + "end": 44.38, + "probability": 0.978515625 + } + ] + }, + { + "id": 28, + "text": "My name is Mike, here to deal with your technology needs and treat you like a person in the process.", + "start": 44.42, + "end": 47.8, + "words": [ + { + "word": " My", + "start": 44.42, + "end": 44.52, + "probability": 0.9990234375 + }, + { + "word": " name", + "start": 44.52, + "end": 44.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 44.6, + "end": 44.66, + "probability": 0.98095703125 + }, + { + "word": " Mike,", + "start": 44.66, + "end": 44.84, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 44.88, + "end": 45.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 45.0, + "end": 45.08, + "probability": 1.0 + }, + { + "word": " deal", + "start": 45.08, + "end": 45.2, + "probability": 0.939453125 + }, + { + "word": " with", + "start": 45.2, + "end": 45.28, + "probability": 1.0 + }, + { + "word": " your", + "start": 45.28, + "end": 45.38, + "probability": 1.0 + }, + { + "word": " technology", + "start": 45.38, + "end": 45.66, + "probability": 0.998046875 + }, + { + "word": " needs", + "start": 45.66, + "end": 45.96, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 45.96, + "end": 46.2, + "probability": 0.9990234375 + }, + { + "word": " treat", + "start": 46.2, + "end": 46.42, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 46.42, + "end": 46.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 46.64, + "end": 46.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 46.78, + "end": 46.92, + "probability": 1.0 + }, + { + "word": " person", + "start": 46.92, + "end": 47.2, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 47.2, + "end": 47.4, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 47.4, + "end": 47.48, + "probability": 1.0 + }, + { + "word": " process.", + "start": 47.48, + "end": 47.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 29, + "text": "7902040 if you'd like to be part of the show.", + "start": 50.2, + "end": 51.56, + "words": [ + { + "word": " 7902040", + "start": 50.2, + "end": 50.56, + "probability": 0.908203125 + }, + { + "word": " if", + "start": 50.56, + "end": 50.7, + "probability": 0.77294921875 + }, + { + "word": " you'd", + "start": 50.7, + "end": 50.84, + "probability": 1.0 + }, + { + "word": " like", + "start": 50.84, + "end": 50.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 50.92, + "end": 51.0, + "probability": 1.0 + }, + { + "word": " be", + "start": 51.0, + "end": 51.08, + "probability": 1.0 + }, + { + "word": " part", + "start": 51.08, + "end": 51.22, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 51.22, + "end": 51.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 51.34, + "end": 51.38, + "probability": 1.0 + }, + { + "word": " show.", + "start": 51.38, + "end": 51.56, + "probability": 1.0 + } + ] + }, + { + "id": 30, + "text": "We would love to have you on and talk about whatever's ailing you technology-wise.", + "start": 52.3, + "end": 57.26, + "words": [ + { + "word": " We", + "start": 52.3, + "end": 52.66, + "probability": 0.99365234375 + }, + { + "word": " would", + "start": 52.66, + "end": 52.88, + "probability": 1.0 + }, + { + "word": " love", + "start": 52.88, + "end": 53.34, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 53.34, + "end": 53.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 53.58, + "end": 53.74, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 53.74, + "end": 53.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 53.92, + "end": 54.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 54.18, + "end": 54.72, + "probability": 0.9921875 + }, + { + "word": " talk", + "start": 54.72, + "end": 54.96, + "probability": 1.0 + }, + { + "word": " about", + "start": 54.96, + "end": 55.16, + "probability": 1.0 + }, + { + "word": " whatever's", + "start": 55.16, + "end": 55.7, + "probability": 0.779296875 + }, + { + "word": " ailing", + "start": 55.7, + "end": 56.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 56.2, + "end": 56.4, + "probability": 1.0 + }, + { + "word": " technology", + "start": 56.4, + "end": 56.72, + "probability": 0.98876953125 + }, + { + "word": "-wise.", + "start": 56.72, + "end": 57.26, + "probability": 0.9970703125 + } + ] + }, + { + "id": 31, + "text": "And I was inadvertently...", + "start": 58.5, + "end": 59.98, + "words": [ + { + "word": " And", + "start": 58.5, + "end": 58.86, + "probability": 0.9609375 + }, + { + "word": " I", + "start": 58.86, + "end": 59.1, + "probability": 0.83935546875 + }, + { + "word": " was", + "start": 59.1, + "end": 59.38, + "probability": 0.99853515625 + }, + { + "word": " inadvertently...", + "start": 59.38, + "end": 59.98, + "probability": 0.947265625 + } + ] + }, + { + "id": 32, + "text": "I was inadvertently rude to Bob.", + "start": 60.0, + "end": 60.76, + "words": [ + { + "word": " I", + "start": 60.0, + "end": 60.02, + "probability": 0.260009765625 + }, + { + "word": " was", + "start": 60.02, + "end": 60.02, + "probability": 0.1610107421875 + }, + { + "word": " inadvertently", + "start": 60.02, + "end": 60.14, + "probability": 0.802734375 + }, + { + "word": " rude", + "start": 60.14, + "end": 60.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 60.46, + "end": 60.58, + "probability": 0.99951171875 + }, + { + "word": " Bob.", + "start": 60.58, + "end": 60.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 33, + "text": "I didn't mean to be.", + "start": 60.96, + "end": 61.96, + "words": [ + { + "word": " I", + "start": 60.96, + "end": 61.28, + "probability": 0.9990234375 + }, + { + "word": " didn't", + "start": 61.28, + "end": 61.64, + "probability": 0.998046875 + }, + { + "word": " mean", + "start": 61.64, + "end": 61.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 61.76, + "end": 61.86, + "probability": 0.99951171875 + }, + { + "word": " be.", + "start": 61.86, + "end": 61.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 34, + "text": "Sorry, Bob.", + "start": 62.02, + "end": 62.46, + "words": [ + { + "word": " Sorry,", + "start": 62.02, + "end": 62.24, + "probability": 0.994140625 + }, + { + "word": " Bob.", + "start": 62.3, + "end": 62.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 35, + "text": "I apologize.", + "start": 63.06, + "end": 63.7, + "words": [ + { + "word": " I", + "start": 63.06, + "end": 63.38, + "probability": 0.9990234375 + }, + { + "word": " apologize.", + "start": 63.38, + "end": 63.7, + "probability": 0.99755859375 + } + ] + }, + { + "id": 36, + "text": "See, when I'm rude, I try to do it on purpose because it's like I might as well get the credit for it.", + "start": 65.14, + "end": 68.74, + "words": [ + { + "word": " See,", + "start": 65.14, + "end": 65.46, + "probability": 0.9912109375 + }, + { + "word": " when", + "start": 65.54, + "end": 65.6, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 65.6, + "end": 65.74, + "probability": 1.0 + }, + { + "word": " rude,", + "start": 65.74, + "end": 65.88, + "probability": 1.0 + }, + { + "word": " I", + "start": 65.92, + "end": 66.02, + "probability": 1.0 + }, + { + "word": " try", + "start": 66.02, + "end": 66.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 66.14, + "end": 66.24, + "probability": 1.0 + }, + { + "word": " do", + "start": 66.24, + "end": 66.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 66.36, + "end": 66.44, + "probability": 1.0 + }, + { + "word": " on", + "start": 66.44, + "end": 66.5, + "probability": 1.0 + }, + { + "word": " purpose", + "start": 66.5, + "end": 66.78, + "probability": 1.0 + }, + { + "word": " because", + "start": 66.78, + "end": 67.18, + "probability": 0.50732421875 + }, + { + "word": " it's", + "start": 67.18, + "end": 67.48, + "probability": 0.9970703125 + }, + { + "word": " like", + "start": 67.48, + "end": 67.58, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 67.58, + "end": 67.72, + "probability": 0.90576171875 + }, + { + "word": " might", + "start": 67.72, + "end": 67.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 67.82, + "end": 67.92, + "probability": 1.0 + }, + { + "word": " well", + "start": 67.92, + "end": 67.98, + "probability": 1.0 + }, + { + "word": " get", + "start": 67.98, + "end": 68.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 68.1, + "end": 68.2, + "probability": 1.0 + }, + { + "word": " credit", + "start": 68.2, + "end": 68.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 68.4, + "end": 68.56, + "probability": 1.0 + }, + { + "word": " it.", + "start": 68.56, + "end": 68.74, + "probability": 1.0 + } + ] + }, + { + "id": 37, + "text": "Oh, yeah.", + "start": 68.84, + "end": 69.22, + "words": [ + { + "word": " Oh,", + "start": 68.84, + "end": 69.06, + "probability": 0.99462890625 + }, + { + "word": " yeah.", + "start": 69.06, + "end": 69.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 38, + "text": "You know?", + "start": 69.38, + "end": 69.56, + "words": [ + { + "word": " You", + "start": 69.38, + "end": 69.5, + "probability": 0.935546875 + }, + { + "word": " know?", + "start": 69.5, + "end": 69.56, + "probability": 1.0 + } + ] + }, + { + "id": 39, + "text": "That's not my style.", + "start": 69.74, + "end": 70.86, + "words": [ + { + "word": " That's", + "start": 69.74, + "end": 70.06, + "probability": 0.85546875 + }, + { + "word": " not", + "start": 70.06, + "end": 70.32, + "probability": 0.9970703125 + }, + { + "word": " my", + "start": 70.32, + "end": 70.5, + "probability": 1.0 + }, + { + "word": " style.", + "start": 70.5, + "end": 70.86, + "probability": 1.0 + } + ] + }, + { + "id": 40, + "text": "I don't know.", + "start": 71.5, + "end": 71.94, + "words": [ + { + "word": " I", + "start": 71.5, + "end": 71.82, + "probability": 0.97265625 + }, + { + "word": " don't", + "start": 71.82, + "end": 71.86, + "probability": 0.9990234375 + }, + { + "word": " know.", + "start": 71.86, + "end": 71.94, + "probability": 1.0 + } + ] + }, + { + "id": 41, + "text": "Sometimes a little snark is a good thing.", + "start": 71.94, + "end": 73.52, + "words": [ + { + "word": " Sometimes", + "start": 71.94, + "end": 72.12, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 72.12, + "end": 72.28, + "probability": 1.0 + }, + { + "word": " little", + "start": 72.28, + "end": 72.4, + "probability": 1.0 + }, + { + "word": " snark", + "start": 72.4, + "end": 72.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 72.72, + "end": 73.14, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 73.14, + "end": 73.24, + "probability": 1.0 + }, + { + "word": " good", + "start": 73.24, + "end": 73.34, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 73.34, + "end": 73.52, + "probability": 1.0 + } + ] + }, + { + "id": 42, + "text": "You know, it's just...", + "start": 73.66, + "end": 74.62, + "words": [ + { + "word": " You", + "start": 73.66, + "end": 73.98, + "probability": 0.701171875 + }, + { + "word": " know,", + "start": 73.98, + "end": 74.14, + "probability": 1.0 + }, + { + "word": " it's", + "start": 74.14, + "end": 74.3, + "probability": 0.8818359375 + }, + { + "word": " just...", + "start": 74.3, + "end": 74.62, + "probability": 0.52001953125 + } + ] + }, + { + "id": 43, + "text": "My mind is in other places.", + "start": 74.62, + "end": 75.96, + "words": [ + { + "word": " My", + "start": 74.62, + "end": 74.94, + "probability": 0.9892578125 + }, + { + "word": " mind", + "start": 74.94, + "end": 75.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 75.24, + "end": 75.36, + "probability": 0.9931640625 + }, + { + "word": " in", + "start": 75.36, + "end": 75.44, + "probability": 1.0 + }, + { + "word": " other", + "start": 75.44, + "end": 75.58, + "probability": 1.0 + }, + { + "word": " places.", + "start": 75.58, + "end": 75.96, + "probability": 1.0 + } + ] + }, + { + "id": 44, + "text": "That's all.", + "start": 76.0, + "end": 76.38, + "words": [ + { + "word": " That's", + "start": 76.0, + "end": 76.28, + "probability": 1.0 + }, + { + "word": " all.", + "start": 76.28, + "end": 76.38, + "probability": 1.0 + } + ] + }, + { + "id": 45, + "text": "Yeah.", + "start": 76.5, + "end": 76.72, + "words": [ + { + "word": " Yeah.", + "start": 76.5, + "end": 76.72, + "probability": 0.98583984375 + } + ] + }, + { + "id": 46, + "text": "There's a lot going on.", + "start": 76.78, + "end": 77.66, + "words": [ + { + "word": " There's", + "start": 76.78, + "end": 77.06, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 77.06, + "end": 77.1, + "probability": 1.0 + }, + { + "word": " lot", + "start": 77.1, + "end": 77.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 77.24, + "end": 77.38, + "probability": 1.0 + }, + { + "word": " on.", + "start": 77.38, + "end": 77.66, + "probability": 1.0 + } + ] + }, + { + "id": 47, + "text": "There's a lot going on.", + "start": 78.0, + "end": 79.08, + "words": [ + { + "word": " There's", + "start": 78.0, + "end": 78.32, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 78.32, + "end": 78.38, + "probability": 1.0 + }, + { + "word": " lot", + "start": 78.38, + "end": 78.58, + "probability": 1.0 + }, + { + "word": " going", + "start": 78.58, + "end": 78.76, + "probability": 1.0 + }, + { + "word": " on.", + "start": 78.76, + "end": 79.08, + "probability": 1.0 + } + ] + }, + { + "id": 48, + "text": "So I had an interesting experience last night.", + "start": 79.22, + "end": 81.16, + "words": [ + { + "word": " So", + "start": 79.22, + "end": 79.4, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 79.4, + "end": 79.52, + "probability": 0.80810546875 + }, + { + "word": " had", + "start": 79.52, + "end": 79.6, + "probability": 1.0 + }, + { + "word": " an", + "start": 79.6, + "end": 79.7, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 79.7, + "end": 80.0, + "probability": 1.0 + }, + { + "word": " experience", + "start": 80.0, + "end": 80.4, + "probability": 1.0 + }, + { + "word": " last", + "start": 80.4, + "end": 80.86, + "probability": 0.99951171875 + }, + { + "word": " night.", + "start": 80.86, + "end": 81.16, + "probability": 1.0 + } + ] + }, + { + "id": 49, + "text": "Oh, yeah?", + "start": 81.38, + "end": 81.82, + "words": [ + { + "word": " Oh,", + "start": 81.38, + "end": 81.7, + "probability": 0.99951171875 + }, + { + "word": " yeah?", + "start": 81.72, + "end": 81.82, + "probability": 1.0 + } + ] + }, + { + "id": 50, + "text": "Technology-wise.", + "start": 81.96, + "end": 82.62, + "words": [ + { + "word": " Technology", + "start": 81.96, + "end": 82.28, + "probability": 0.98828125 + }, + { + "word": "-wise.", + "start": 82.28, + "end": 82.62, + "probability": 0.9833984375 + } + ] + }, + { + "id": 51, + "text": "Yeah.", + "start": 82.68, + "end": 82.92, + "words": [ + { + "word": " Yeah.", + "start": 82.68, + "end": 82.92, + "probability": 0.9814453125 + } + ] + }, + { + "id": 52, + "text": "Tell me about it.", + "start": 83.0, + "end": 83.6, + "words": [ + { + "word": " Tell", + "start": 83.0, + "end": 83.2, + "probability": 0.99365234375 + }, + { + "word": " me", + "start": 83.2, + "end": 83.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 83.3, + "end": 83.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 83.46, + "end": 83.6, + "probability": 1.0 + } + ] + }, + { + "id": 53, + "text": "So I'm at the ATM after work because it's Friday.", + "start": 83.68, + "end": 85.54, + "words": [ + { + "word": " So", + "start": 83.68, + "end": 83.78, + "probability": 0.9970703125 + }, + { + "word": " I'm", + "start": 83.78, + "end": 83.98, + "probability": 1.0 + }, + { + "word": " at", + "start": 83.98, + "end": 84.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 84.1, + "end": 84.24, + "probability": 1.0 + }, + { + "word": " ATM", + "start": 84.24, + "end": 84.5, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 84.5, + "end": 84.82, + "probability": 0.9990234375 + }, + { + "word": " work", + "start": 84.82, + "end": 85.06, + "probability": 1.0 + }, + { + "word": " because", + "start": 85.06, + "end": 85.2, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 85.2, + "end": 85.32, + "probability": 1.0 + }, + { + "word": " Friday.", + "start": 85.32, + "end": 85.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 54, + "text": "Time to go deposit my check.", + "start": 85.72, + "end": 86.86, + "words": [ + { + "word": " Time", + "start": 85.72, + "end": 85.98, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 85.98, + "end": 86.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 86.1, + "end": 86.18, + "probability": 0.99951171875 + }, + { + "word": " deposit", + "start": 86.18, + "end": 86.4, + "probability": 1.0 + }, + { + "word": " my", + "start": 86.4, + "end": 86.58, + "probability": 1.0 + }, + { + "word": " check.", + "start": 86.58, + "end": 86.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 55, + "text": "Right.", + "start": 86.98, + "end": 87.24, + "words": [ + { + "word": " Right.", + "start": 86.98, + "end": 87.24, + "probability": 0.97705078125 + } + ] + }, + { + "id": 56, + "text": "And I get my check deposited.", + "start": 87.86000000000001, + "end": 89.76, + "words": [ + { + "word": " And", + "start": 87.86000000000001, + "end": 88.18, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 88.18, + "end": 88.38, + "probability": 0.9951171875 + }, + { + "word": " get", + "start": 88.38, + "end": 89.2, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 89.2, + "end": 89.3, + "probability": 1.0 + }, + { + "word": " check", + "start": 89.3, + "end": 89.5, + "probability": 0.9990234375 + }, + { + "word": " deposited.", + "start": 89.5, + "end": 89.76, + "probability": 0.9658203125 + } + ] + }, + { + "id": 57, + "text": "And I went to go withdraw some cash.", + "start": 90.0, + "end": 91.94, + "words": [ + { + "word": " And", + "start": 90.0, + "end": 90.22, + "probability": 0.26220703125 + }, + { + "word": " I", + "start": 90.22, + "end": 90.7, + "probability": 0.99462890625 + }, + { + "word": " went", + "start": 90.7, + "end": 90.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 90.92, + "end": 91.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 91.02, + "end": 91.12, + "probability": 1.0 + }, + { + "word": " withdraw", + "start": 91.12, + "end": 91.32, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 91.32, + "end": 91.58, + "probability": 0.99951171875 + }, + { + "word": " cash.", + "start": 91.58, + "end": 91.94, + "probability": 0.9931640625 + } + ] + }, + { + "id": 58, + "text": "And the machine just froze.", + "start": 92.3, + "end": 93.92, + "words": [ + { + "word": " And", + "start": 92.3, + "end": 92.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 92.64, + "end": 92.92, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 92.92, + "end": 93.18, + "probability": 1.0 + }, + { + "word": " just", + "start": 93.18, + "end": 93.48, + "probability": 1.0 + }, + { + "word": " froze.", + "start": 93.48, + "end": 93.92, + "probability": 1.0 + } + ] + }, + { + "id": 59, + "text": "Okay?", + "start": 94.1, + "end": 94.34, + "words": [ + { + "word": " Okay?", + "start": 94.1, + "end": 94.34, + "probability": 0.383056640625 + } + ] + }, + { + "id": 60, + "text": "So I'm like, all right.", + "start": 94.46, + "end": 95.14, + "words": [ + { + "word": " So", + "start": 94.46, + "end": 94.72, + "probability": 0.63037109375 + }, + { + "word": " I'm", + "start": 94.72, + "end": 94.86, + "probability": 0.8984375 + }, + { + "word": " like,", + "start": 94.86, + "end": 94.92, + "probability": 0.98486328125 + }, + { + "word": " all", + "start": 94.96, + "end": 95.04, + "probability": 0.88671875 + }, + { + "word": " right.", + "start": 95.04, + "end": 95.14, + "probability": 1.0 + } + ] + }, + { + "id": 61, + "text": "It's going to time out eventually.", + "start": 95.46, + "end": 96.64, + "words": [ + { + "word": " It's", + "start": 95.46, + "end": 95.8, + "probability": 1.0 + }, + { + "word": " going", + "start": 95.8, + "end": 95.8, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 95.8, + "end": 95.9, + "probability": 1.0 + }, + { + "word": " time", + "start": 95.9, + "end": 96.1, + "probability": 1.0 + }, + { + "word": " out", + "start": 96.1, + "end": 96.26, + "probability": 0.96728515625 + }, + { + "word": " eventually.", + "start": 96.26, + "end": 96.64, + "probability": 0.998046875 + } + ] + }, + { + "id": 62, + "text": "Right.", + "start": 96.98, + "end": 97.28, + "words": [ + { + "word": " Right.", + "start": 96.98, + "end": 97.28, + "probability": 0.88134765625 + } + ] + }, + { + "id": 63, + "text": "And it did after like 10 minutes.", + "start": 97.54, + "end": 99.08, + "words": [ + { + "word": " And", + "start": 97.54, + "end": 97.88, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 97.88, + "end": 98.02, + "probability": 1.0 + }, + { + "word": " did", + "start": 98.02, + "end": 98.18, + "probability": 1.0 + }, + { + "word": " after", + "start": 98.18, + "end": 98.38, + "probability": 0.9912109375 + }, + { + "word": " like", + "start": 98.38, + "end": 98.62, + "probability": 0.7578125 + }, + { + "word": " 10", + "start": 98.62, + "end": 98.84, + "probability": 0.66162109375 + }, + { + "word": " minutes.", + "start": 98.84, + "end": 99.08, + "probability": 1.0 + } + ] + }, + { + "id": 64, + "text": "And it rebooted.", + "start": 99.3, + "end": 100.28, + "words": [ + { + "word": " And", + "start": 99.3, + "end": 99.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 99.64, + "end": 99.8, + "probability": 1.0 + }, + { + "word": " rebooted.", + "start": 99.8, + "end": 100.28, + "probability": 1.0 + } + ] + }, + { + "id": 65, + "text": "And apparently that ATM was running Windows 7, which is an interesting fact.", + "start": 100.34, + "end": 103.56, + "words": [ + { + "word": " And", + "start": 100.34, + "end": 100.68, + "probability": 0.99951171875 + }, + { + "word": " apparently", + "start": 100.68, + "end": 101.06, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 101.06, + "end": 101.62, + "probability": 0.79296875 + }, + { + "word": " ATM", + "start": 101.62, + "end": 101.86, + "probability": 0.99365234375 + }, + { + "word": " was", + "start": 101.86, + "end": 102.02, + "probability": 1.0 + }, + { + "word": " running", + "start": 102.02, + "end": 102.16, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 102.16, + "end": 102.38, + "probability": 0.9990234375 + }, + { + "word": " 7,", + "start": 102.38, + "end": 102.62, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 102.72, + "end": 102.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 102.84, + "end": 102.94, + "probability": 1.0 + }, + { + "word": " an", + "start": 102.94, + "end": 103.04, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 103.04, + "end": 103.26, + "probability": 1.0 + }, + { + "word": " fact.", + "start": 103.26, + "end": 103.56, + "probability": 1.0 + } + ] + }, + { + "id": 66, + "text": "But the more interesting thing was that when it was all the way back booted, which took...", + "start": 104.5, + "end": 108.64, + "words": [ + { + "word": " But", + "start": 104.5, + "end": 104.84, + "probability": 0.85205078125 + }, + { + "word": " the", + "start": 104.84, + "end": 105.18, + "probability": 1.0 + }, + { + "word": " more", + "start": 105.18, + "end": 105.56, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 105.56, + "end": 105.88, + "probability": 1.0 + }, + { + "word": " thing", + "start": 105.88, + "end": 106.16, + "probability": 1.0 + }, + { + "word": " was", + "start": 106.16, + "end": 106.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 106.32, + "end": 106.46, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 106.46, + "end": 106.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 106.68, + "end": 106.84, + "probability": 1.0 + }, + { + "word": " was", + "start": 106.84, + "end": 107.24, + "probability": 1.0 + }, + { + "word": " all", + "start": 107.24, + "end": 107.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 107.44, + "end": 107.56, + "probability": 1.0 + }, + { + "word": " way", + "start": 107.56, + "end": 107.68, + "probability": 1.0 + }, + { + "word": " back", + "start": 107.68, + "end": 107.84, + "probability": 1.0 + }, + { + "word": " booted,", + "start": 107.84, + "end": 108.2, + "probability": 0.9892578125 + }, + { + "word": " which", + "start": 108.22, + "end": 108.34, + "probability": 0.8896484375 + }, + { + "word": " took...", + "start": 108.34, + "end": 108.64, + "probability": 0.50146484375 + } + ] + }, + { + "id": 67, + "text": "A process that took 20 minutes, by the way.", + "start": 108.64, + "end": 110.16, + "words": [ + { + "word": " A", + "start": 108.64, + "end": 108.72, + "probability": 0.90234375 + }, + { + "word": " process", + "start": 108.72, + "end": 109.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 109.0, + "end": 109.14, + "probability": 1.0 + }, + { + "word": " took", + "start": 109.14, + "end": 109.24, + "probability": 1.0 + }, + { + "word": " 20", + "start": 109.24, + "end": 109.58, + "probability": 1.0 + }, + { + "word": " minutes,", + "start": 109.58, + "end": 109.74, + "probability": 1.0 + }, + { + "word": " by", + "start": 109.82, + "end": 109.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 109.92, + "end": 110.0, + "probability": 1.0 + }, + { + "word": " way.", + "start": 110.0, + "end": 110.16, + "probability": 1.0 + } + ] + }, + { + "id": 68, + "text": "Wow.", + "start": 110.58, + "end": 110.92, + "words": [ + { + "word": " Wow.", + "start": 110.58, + "end": 110.92, + "probability": 0.98876953125 + } + ] + }, + { + "id": 69, + "text": "When it was all the way back, it just decided to keep my card in it.", + "start": 111.12, + "end": 114.44, + "words": [ + { + "word": " When", + "start": 111.12, + "end": 111.46, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 111.46, + "end": 111.56, + "probability": 1.0 + }, + { + "word": " was", + "start": 111.56, + "end": 111.6, + "probability": 1.0 + }, + { + "word": " all", + "start": 111.6, + "end": 111.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 111.72, + "end": 111.82, + "probability": 1.0 + }, + { + "word": " way", + "start": 111.82, + "end": 111.9, + "probability": 1.0 + }, + { + "word": " back,", + "start": 111.9, + "end": 112.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 112.26, + "end": 112.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 112.92, + "end": 113.22, + "probability": 1.0 + }, + { + "word": " decided", + "start": 113.22, + "end": 113.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 113.54, + "end": 113.7, + "probability": 1.0 + }, + { + "word": " keep", + "start": 113.7, + "end": 113.84, + "probability": 1.0 + }, + { + "word": " my", + "start": 113.84, + "end": 114.0, + "probability": 1.0 + }, + { + "word": " card", + "start": 114.0, + "end": 114.2, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 114.2, + "end": 114.34, + "probability": 1.0 + }, + { + "word": " it.", + "start": 114.34, + "end": 114.44, + "probability": 1.0 + } + ] + }, + { + "id": 70, + "text": "So I don't have that anymore, I guess.", + "start": 115.04, + "end": 116.62, + "words": [ + { + "word": " So", + "start": 115.04, + "end": 115.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 115.38, + "end": 115.68, + "probability": 0.98876953125 + }, + { + "word": " don't", + "start": 115.68, + "end": 115.82, + "probability": 1.0 + }, + { + "word": " have", + "start": 115.82, + "end": 115.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 115.96, + "end": 116.08, + "probability": 1.0 + }, + { + "word": " anymore,", + "start": 116.08, + "end": 116.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 116.4, + "end": 116.48, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 116.48, + "end": 116.62, + "probability": 1.0 + } + ] + }, + { + "id": 71, + "text": "I don't know.", + "start": 120.0, + "end": 120.44, + "words": [ + { + "word": " I", + "start": 120.0, + "end": 120.24, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 120.24, + "end": 120.38, + "probability": 0.9990234375 + }, + { + "word": " know.", + "start": 120.38, + "end": 120.44, + "probability": 1.0 + } + ] + }, + { + "id": 72, + "text": "I use the type of ATMs that don't actually take your card.", + "start": 121.42000000000002, + "end": 126.0, + "words": [ + { + "word": " I", + "start": 121.42000000000002, + "end": 121.74000000000001, + "probability": 0.9990234375 + }, + { + "word": " use", + "start": 121.74000000000001, + "end": 122.06, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 122.06, + "end": 122.34, + "probability": 1.0 + }, + { + "word": " type", + "start": 122.34, + "end": 123.24, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 123.24, + "end": 123.54, + "probability": 1.0 + }, + { + "word": " ATMs", + "start": 123.54, + "end": 124.14, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 124.14, + "end": 124.42, + "probability": 1.0 + }, + { + "word": " don't", + "start": 124.42, + "end": 124.78, + "probability": 1.0 + }, + { + "word": " actually", + "start": 124.78, + "end": 125.08, + "probability": 1.0 + }, + { + "word": " take", + "start": 125.08, + "end": 125.44, + "probability": 1.0 + }, + { + "word": " your", + "start": 125.44, + "end": 125.68, + "probability": 1.0 + }, + { + "word": " card.", + "start": 125.68, + "end": 126.0, + "probability": 1.0 + } + ] + }, + { + "id": 73, + "text": "Yeah.", + "start": 126.3, + "end": 126.58, + "words": [ + { + "word": " Yeah.", + "start": 126.3, + "end": 126.58, + "probability": 0.99267578125 + } + ] + }, + { + "id": 74, + "text": "Mine takes it into the machine.", + "start": 126.6, + "end": 128.06, + "words": [ + { + "word": " Mine", + "start": 126.6, + "end": 126.74, + "probability": 0.9970703125 + }, + { + "word": " takes", + "start": 126.74, + "end": 127.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 127.28, + "end": 127.46, + "probability": 1.0 + }, + { + "word": " into", + "start": 127.46, + "end": 127.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 127.66, + "end": 127.8, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 127.8, + "end": 128.06, + "probability": 1.0 + } + ] + }, + { + "id": 75, + "text": "Yeah.", + "start": 128.5, + "end": 128.82, + "words": [ + { + "word": " Yeah.", + "start": 128.5, + "end": 128.82, + "probability": 0.9931640625 + } + ] + }, + { + "id": 76, + "text": "Mine doesn't do that.", + "start": 128.88, + "end": 129.76, + "words": [ + { + "word": " Mine", + "start": 128.88, + "end": 129.06, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 129.06, + "end": 129.5, + "probability": 1.0 + }, + { + "word": " do", + "start": 129.5, + "end": 129.6, + "probability": 1.0 + }, + { + "word": " that.", + "start": 129.6, + "end": 129.76, + "probability": 1.0 + } + ] + }, + { + "id": 77, + "text": "So I called my bank this morning.", + "start": 129.92, + "end": 131.18, + "words": [ + { + "word": " So", + "start": 129.92, + "end": 130.06, + "probability": 0.96826171875 + }, + { + "word": " I", + "start": 130.06, + "end": 130.18, + "probability": 0.857421875 + }, + { + "word": " called", + "start": 130.18, + "end": 130.4, + "probability": 1.0 + }, + { + "word": " my", + "start": 130.4, + "end": 130.54, + "probability": 1.0 + }, + { + "word": " bank", + "start": 130.54, + "end": 130.74, + "probability": 1.0 + }, + { + "word": " this", + "start": 130.74, + "end": 130.9, + "probability": 1.0 + }, + { + "word": " morning.", + "start": 130.9, + "end": 131.18, + "probability": 1.0 + } + ] + }, + { + "id": 78, + "text": "And they informed me that I can just go down there and get it.", + "start": 131.2, + "end": 133.06, + "words": [ + { + "word": " And", + "start": 131.2, + "end": 131.32, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 131.32, + "end": 131.42, + "probability": 1.0 + }, + { + "word": " informed", + "start": 131.42, + "end": 131.8, + "probability": 1.0 + }, + { + "word": " me", + "start": 131.8, + "end": 131.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 131.98, + "end": 132.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 132.08, + "end": 132.14, + "probability": 1.0 + }, + { + "word": " can", + "start": 132.14, + "end": 132.22, + "probability": 0.810546875 + }, + { + "word": " just", + "start": 132.22, + "end": 132.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 132.36, + "end": 132.44, + "probability": 0.9990234375 + }, + { + "word": " down", + "start": 132.44, + "end": 132.54, + "probability": 1.0 + }, + { + "word": " there", + "start": 132.54, + "end": 132.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 132.68, + "end": 132.78, + "probability": 1.0 + }, + { + "word": " get", + "start": 132.78, + "end": 132.92, + "probability": 1.0 + }, + { + "word": " it.", + "start": 132.92, + "end": 133.06, + "probability": 1.0 + } + ] + }, + { + "id": 79, + "text": "So I was like, okay, great.", + "start": 133.1, + "end": 133.84, + "words": [ + { + "word": " So", + "start": 133.1, + "end": 133.18, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 133.18, + "end": 133.28, + "probability": 1.0 + }, + { + "word": " was", + "start": 133.28, + "end": 133.32, + "probability": 1.0 + }, + { + "word": " like,", + "start": 133.32, + "end": 133.4, + "probability": 0.99365234375 + }, + { + "word": " okay,", + "start": 133.44, + "end": 133.58, + "probability": 0.544921875 + }, + { + "word": " great.", + "start": 133.62, + "end": 133.84, + "probability": 1.0 + } + ] + }, + { + "id": 80, + "text": "What time do you close today?", + "start": 133.98, + "end": 134.94, + "words": [ + { + "word": " What", + "start": 133.98, + "end": 134.3, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 134.3, + "end": 134.44, + "probability": 1.0 + }, + { + "word": " do", + "start": 134.44, + "end": 134.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 134.58, + "end": 134.6, + "probability": 1.0 + }, + { + "word": " close", + "start": 134.6, + "end": 134.76, + "probability": 1.0 + }, + { + "word": " today?", + "start": 134.76, + "end": 134.94, + "probability": 1.0 + } + ] + }, + { + "id": 81, + "text": "And they said, 1 o'clock, which is coincidentally when the show ends.", + "start": 135.08, + "end": 137.8, + "words": [ + { + "word": " And", + "start": 135.08, + "end": 135.24, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 135.24, + "end": 135.32, + "probability": 1.0 + }, + { + "word": " said,", + "start": 135.32, + "end": 135.52, + "probability": 1.0 + }, + { + "word": " 1", + "start": 135.64, + "end": 135.82, + "probability": 0.77978515625 + }, + { + "word": " o", + "start": 135.82, + "end": 135.94, + "probability": 1.0 + }, + { + "word": "'clock,", + "start": 135.94, + "end": 136.12, + "probability": 1.0 + }, + { + "word": " which", + "start": 136.24, + "end": 136.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 136.42, + "end": 136.56, + "probability": 1.0 + }, + { + "word": " coincidentally", + "start": 136.56, + "end": 137.0, + "probability": 0.9892578125 + }, + { + "word": " when", + "start": 137.0, + "end": 137.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 137.28, + "end": 137.4, + "probability": 0.6259765625 + }, + { + "word": " show", + "start": 137.4, + "end": 137.58, + "probability": 1.0 + }, + { + "word": " ends.", + "start": 137.58, + "end": 137.8, + "probability": 1.0 + } + ] + }, + { + "id": 82, + "text": "So...", + "start": 138.18, + "end": 138.5, + "words": [ + { + "word": " So...", + "start": 138.18, + "end": 138.5, + "probability": 0.253662109375 + } + ] + }, + { + "id": 83, + "text": "Do you need to take off early?", + "start": 138.5, + "end": 139.92, + "words": [ + { + "word": " Do", + "start": 138.5, + "end": 139.02, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 139.02, + "end": 139.1, + "probability": 1.0 + }, + { + "word": " need", + "start": 139.1, + "end": 139.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 139.22, + "end": 139.34, + "probability": 0.99462890625 + }, + { + "word": " take", + "start": 139.34, + "end": 139.52, + "probability": 1.0 + }, + { + "word": " off", + "start": 139.52, + "end": 139.68, + "probability": 0.96630859375 + }, + { + "word": " early?", + "start": 139.68, + "end": 139.92, + "probability": 0.99072265625 + } + ] + }, + { + "id": 84, + "text": "I guess I just won't have my debit card this weekend, which is fine.", + "start": 140.08, + "end": 142.32, + "words": [ + { + "word": " I", + "start": 140.08, + "end": 140.3, + "probability": 0.9990234375 + }, + { + "word": " guess", + "start": 140.3, + "end": 140.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 140.48, + "end": 140.62, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 140.62, + "end": 140.78, + "probability": 1.0 + }, + { + "word": " won't", + "start": 140.78, + "end": 140.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 140.96, + "end": 141.06, + "probability": 1.0 + }, + { + "word": " my", + "start": 141.06, + "end": 141.2, + "probability": 1.0 + }, + { + "word": " debit", + "start": 141.2, + "end": 141.34, + "probability": 0.99853515625 + }, + { + "word": " card", + "start": 141.34, + "end": 141.5, + "probability": 1.0 + }, + { + "word": " this", + "start": 141.5, + "end": 141.68, + "probability": 0.99951171875 + }, + { + "word": " weekend,", + "start": 141.68, + "end": 141.9, + "probability": 1.0 + }, + { + "word": " which", + "start": 141.98, + "end": 142.08, + "probability": 1.0 + }, + { + "word": " is", + "start": 142.08, + "end": 142.16, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 142.16, + "end": 142.32, + "probability": 1.0 + } + ] + }, + { + "id": 85, + "text": "All right.", + "start": 142.54, + "end": 142.92, + "words": [ + { + "word": " All", + "start": 142.54, + "end": 142.74, + "probability": 0.98583984375 + }, + { + "word": " right.", + "start": 142.74, + "end": 142.92, + "probability": 1.0 + } + ] + }, + { + "id": 86, + "text": "All right.", + "start": 143.78, + "end": 144.3, + "words": [ + { + "word": " All", + "start": 143.78, + "end": 144.1, + "probability": 0.927734375 + }, + { + "word": " right.", + "start": 144.1, + "end": 144.3, + "probability": 1.0 + } + ] + }, + { + "id": 87, + "text": "All right.", + "start": 144.38, + "end": 145.04, + "words": [ + { + "word": " All", + "start": 144.38, + "end": 144.7, + "probability": 0.01024627685546875 + }, + { + "word": " right.", + "start": 144.7, + "end": 145.04, + "probability": 1.0 + } + ] + }, + { + "id": 88, + "text": "Did you see any available USB ports on it?", + "start": 145.04, + "end": 147.98, + "words": [ + { + "word": " Did", + "start": 145.04, + "end": 145.24, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 145.24, + "end": 145.62, + "probability": 1.0 + }, + { + "word": " see", + "start": 145.62, + "end": 145.94, + "probability": 1.0 + }, + { + "word": " any", + "start": 145.94, + "end": 146.1, + "probability": 0.99951171875 + }, + { + "word": " available", + "start": 146.1, + "end": 146.7, + "probability": 0.8330078125 + }, + { + "word": " USB", + "start": 146.7, + "end": 147.24, + "probability": 1.0 + }, + { + "word": " ports", + "start": 147.24, + "end": 147.6, + "probability": 1.0 + }, + { + "word": " on", + "start": 147.6, + "end": 147.82, + "probability": 1.0 + }, + { + "word": " it?", + "start": 147.82, + "end": 147.98, + "probability": 1.0 + } + ] + }, + { + "id": 89, + "text": "You know, I was almost...", + "start": 148.78, + "end": 149.82, + "words": [ + { + "word": " You", + "start": 148.78, + "end": 149.1, + "probability": 0.9970703125 + }, + { + "word": " know,", + "start": 149.1, + "end": 149.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 149.22, + "end": 149.32, + "probability": 1.0 + }, + { + "word": " was", + "start": 149.32, + "end": 149.48, + "probability": 1.0 + }, + { + "word": " almost...", + "start": 149.48, + "end": 149.82, + "probability": 0.5390625 + } + ] + }, + { + "id": 90, + "text": "I was considering that.", + "start": 149.82, + "end": 150.4, + "words": [ + { + "word": " I", + "start": 149.82, + "end": 149.92, + "probability": 0.0226593017578125 + }, + { + "word": " was", + "start": 149.92, + "end": 149.92, + "probability": 0.8466796875 + }, + { + "word": " considering", + "start": 149.92, + "end": 150.1, + "probability": 0.9013671875 + }, + { + "word": " that.", + "start": 150.1, + "end": 150.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 91, + "text": "And then I was like, I'm not going to be the guy who gets caught fiddling with the ATM.", + "start": 150.54, + "end": 153.62, + "words": [ + { + "word": " And", + "start": 150.54, + "end": 150.82, + "probability": 0.935546875 + }, + { + "word": " then", + "start": 150.82, + "end": 150.9, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 150.9, + "end": 151.02, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 151.02, + "end": 151.06, + "probability": 1.0 + }, + { + "word": " like,", + "start": 151.06, + "end": 151.18, + "probability": 0.98388671875 + }, + { + "word": " I'm", + "start": 151.22, + "end": 151.32, + "probability": 1.0 + }, + { + "word": " not", + "start": 151.32, + "end": 151.42, + "probability": 1.0 + }, + { + "word": " going", + "start": 151.42, + "end": 151.52, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 151.52, + "end": 151.64, + "probability": 1.0 + }, + { + "word": " be", + "start": 151.64, + "end": 151.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 151.7, + "end": 151.8, + "probability": 1.0 + }, + { + "word": " guy", + "start": 151.8, + "end": 152.0, + "probability": 1.0 + }, + { + "word": " who", + "start": 152.0, + "end": 152.18, + "probability": 0.99951171875 + }, + { + "word": " gets", + "start": 152.18, + "end": 152.36, + "probability": 1.0 + }, + { + "word": " caught", + "start": 152.36, + "end": 152.58, + "probability": 1.0 + }, + { + "word": " fiddling", + "start": 152.58, + "end": 153.08, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 153.08, + "end": 153.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 153.28, + "end": 153.42, + "probability": 1.0 + }, + { + "word": " ATM.", + "start": 153.42, + "end": 153.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 92, + "text": "I'm just not going to do it.", + "start": 153.78, + "end": 154.62, + "words": [ + { + "word": " I'm", + "start": 153.78, + "end": 153.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 153.96, + "end": 154.06, + "probability": 1.0 + }, + { + "word": " not", + "start": 154.06, + "end": 154.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 154.16, + "end": 154.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 154.28, + "end": 154.38, + "probability": 1.0 + }, + { + "word": " do", + "start": 154.38, + "end": 154.5, + "probability": 1.0 + }, + { + "word": " it.", + "start": 154.5, + "end": 154.62, + "probability": 1.0 + } + ] + }, + { + "id": 93, + "text": "So I'll just deal with it.", + "start": 154.68, + "end": 156.28, + "words": [ + { + "word": " So", + "start": 154.68, + "end": 154.84, + "probability": 0.978515625 + }, + { + "word": " I'll", + "start": 154.84, + "end": 155.64, + "probability": 0.9462890625 + }, + { + "word": " just", + "start": 155.64, + "end": 155.76, + "probability": 1.0 + }, + { + "word": " deal", + "start": 155.76, + "end": 155.96, + "probability": 1.0 + }, + { + "word": " with", + "start": 155.96, + "end": 156.1, + "probability": 1.0 + }, + { + "word": " it.", + "start": 156.1, + "end": 156.28, + "probability": 1.0 + } + ] + }, + { + "id": 94, + "text": "All right.", + "start": 157.12, + "end": 157.66, + "words": [ + { + "word": " All", + "start": 157.12, + "end": 157.4, + "probability": 0.9384765625 + }, + { + "word": " right.", + "start": 157.4, + "end": 157.66, + "probability": 1.0 + } + ] + }, + { + "id": 95, + "text": "I didn't get my cash either, though, which kind of sucked because I needed that.", + "start": 157.76, + "end": 160.34, + "words": [ + { + "word": " I", + "start": 157.76, + "end": 158.04, + "probability": 0.9990234375 + }, + { + "word": " didn't", + "start": 158.04, + "end": 158.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 158.18, + "end": 158.28, + "probability": 1.0 + }, + { + "word": " my", + "start": 158.28, + "end": 158.38, + "probability": 1.0 + }, + { + "word": " cash", + "start": 158.38, + "end": 158.58, + "probability": 0.9990234375 + }, + { + "word": " either,", + "start": 158.58, + "end": 158.8, + "probability": 0.986328125 + }, + { + "word": " though,", + "start": 158.88, + "end": 159.02, + "probability": 1.0 + }, + { + "word": " which", + "start": 159.06, + "end": 159.24, + "probability": 1.0 + }, + { + "word": " kind", + "start": 159.24, + "end": 159.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 159.38, + "end": 159.46, + "probability": 1.0 + }, + { + "word": " sucked", + "start": 159.46, + "end": 159.62, + "probability": 1.0 + }, + { + "word": " because", + "start": 159.62, + "end": 159.88, + "probability": 0.86962890625 + }, + { + "word": " I", + "start": 159.88, + "end": 160.0, + "probability": 0.99951171875 + }, + { + "word": " needed", + "start": 160.0, + "end": 160.16, + "probability": 1.0 + }, + { + "word": " that.", + "start": 160.16, + "end": 160.34, + "probability": 1.0 + } + ] + }, + { + "id": 96, + "text": "Yeah.", + "start": 161.32, + "end": 161.6, + "words": [ + { + "word": " Yeah.", + "start": 161.32, + "end": 161.6, + "probability": 0.998046875 + } + ] + }, + { + "id": 97, + "text": "Yeah.", + "start": 161.68, + "end": 161.96, + "words": [ + { + "word": " Yeah.", + "start": 161.68, + "end": 161.96, + "probability": 0.91357421875 + } + ] + }, + { + "id": 98, + "text": "I could see that would be a problem.", + "start": 162.02, + "end": 163.14, + "words": [ + { + "word": " I", + "start": 162.02, + "end": 162.12, + "probability": 0.99755859375 + }, + { + "word": " could", + "start": 162.12, + "end": 162.26, + "probability": 0.9931640625 + }, + { + "word": " see", + "start": 162.26, + "end": 162.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 162.42, + "end": 162.54, + "probability": 1.0 + }, + { + "word": " would", + "start": 162.54, + "end": 162.66, + "probability": 1.0 + }, + { + "word": " be", + "start": 162.66, + "end": 162.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 162.78, + "end": 162.86, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 162.86, + "end": 163.14, + "probability": 1.0 + } + ] + }, + { + "id": 99, + "text": "Yeah.", + "start": 163.66, + "end": 163.94, + "words": [ + { + "word": " Yeah.", + "start": 163.66, + "end": 163.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 100, + "text": "And I had to tell, like, I think it was like six people who came up behind me that I was", + "start": 164.02, + "end": 167.94, + "words": [ + { + "word": " And", + "start": 164.02, + "end": 164.12, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 164.12, + "end": 164.14, + "probability": 1.0 + }, + { + "word": " had", + "start": 164.14, + "end": 164.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 164.28, + "end": 164.34, + "probability": 1.0 + }, + { + "word": " tell,", + "start": 164.34, + "end": 164.56, + "probability": 1.0 + }, + { + "word": " like,", + "start": 164.6, + "end": 164.78, + "probability": 0.90185546875 + }, + { + "word": " I", + "start": 164.8, + "end": 165.22, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 165.22, + "end": 165.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 165.36, + "end": 165.42, + "probability": 1.0 + }, + { + "word": " was", + "start": 165.42, + "end": 165.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 165.48, + "end": 165.58, + "probability": 0.78759765625 + }, + { + "word": " six", + "start": 165.58, + "end": 165.86, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 165.86, + "end": 166.14, + "probability": 1.0 + }, + { + "word": " who", + "start": 166.14, + "end": 166.4, + "probability": 0.99951171875 + }, + { + "word": " came", + "start": 166.4, + "end": 166.56, + "probability": 1.0 + }, + { + "word": " up", + "start": 166.56, + "end": 166.68, + "probability": 1.0 + }, + { + "word": " behind", + "start": 166.68, + "end": 166.88, + "probability": 1.0 + }, + { + "word": " me", + "start": 166.88, + "end": 167.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 167.08, + "end": 167.7, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 167.7, + "end": 167.8, + "probability": 1.0 + }, + { + "word": " was", + "start": 167.8, + "end": 167.94, + "probability": 1.0 + } + ] + }, + { + "id": 101, + "text": "just going to be here.", + "start": 167.94, + "end": 168.7, + "words": [ + { + "word": " just", + "start": 167.94, + "end": 168.14, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 168.14, + "end": 168.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 168.26, + "end": 168.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 168.34, + "end": 168.44, + "probability": 1.0 + }, + { + "word": " here.", + "start": 168.44, + "end": 168.7, + "probability": 1.0 + } + ] + }, + { + "id": 102, + "text": "And they're just going to have to deal with that.", + "start": 168.72, + "end": 169.92, + "words": [ + { + "word": " And", + "start": 168.72, + "end": 168.94, + "probability": 0.99755859375 + }, + { + "word": " they're", + "start": 168.94, + "end": 169.08, + "probability": 0.99560546875 + }, + { + "word": " just", + "start": 169.08, + "end": 169.16, + "probability": 1.0 + }, + { + "word": " going", + "start": 169.16, + "end": 169.28, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 169.28, + "end": 169.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 169.36, + "end": 169.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 169.44, + "end": 169.5, + "probability": 1.0 + }, + { + "word": " deal", + "start": 169.5, + "end": 169.64, + "probability": 1.0 + }, + { + "word": " with", + "start": 169.64, + "end": 169.74, + "probability": 1.0 + }, + { + "word": " that.", + "start": 169.74, + "end": 169.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 103, + "text": "Right.", + "start": 170.08, + "end": 170.36, + "words": [ + { + "word": " Right.", + "start": 170.08, + "end": 170.36, + "probability": 0.98095703125 + } + ] + }, + { + "id": 104, + "text": "You can move me if you like.", + "start": 170.78, + "end": 172.14, + "words": [ + { + "word": " You", + "start": 170.78, + "end": 171.06, + "probability": 0.994140625 + }, + { + "word": " can", + "start": 171.06, + "end": 171.24, + "probability": 1.0 + }, + { + "word": " move", + "start": 171.24, + "end": 171.5, + "probability": 1.0 + }, + { + "word": " me", + "start": 171.5, + "end": 171.68, + "probability": 1.0 + }, + { + "word": " if", + "start": 171.68, + "end": 171.84, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 171.84, + "end": 171.92, + "probability": 1.0 + }, + { + "word": " like.", + "start": 171.92, + "end": 172.14, + "probability": 0.9970703125 + } + ] + }, + { + "id": 105, + "text": "I was like, you know, I can move, but it's not going to work anyway.", + "start": 172.24, + "end": 174.42, + "words": [ + { + "word": " I", + "start": 172.24, + "end": 172.34, + "probability": 0.96728515625 + }, + { + "word": " was", + "start": 172.34, + "end": 172.4, + "probability": 0.9580078125 + }, + { + "word": " like,", + "start": 172.4, + "end": 172.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 172.54, + "end": 172.6, + "probability": 0.98486328125 + }, + { + "word": " know,", + "start": 172.6, + "end": 172.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 172.9, + "end": 172.96, + "probability": 1.0 + }, + { + "word": " can", + "start": 172.96, + "end": 173.1, + "probability": 1.0 + }, + { + "word": " move,", + "start": 173.1, + "end": 173.3, + "probability": 1.0 + }, + { + "word": " but", + "start": 173.36, + "end": 173.46, + "probability": 1.0 + }, + { + "word": " it's", + "start": 173.46, + "end": 173.76, + "probability": 0.9892578125 + }, + { + "word": " not", + "start": 173.76, + "end": 173.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 173.88, + "end": 173.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 173.98, + "end": 174.08, + "probability": 1.0 + }, + { + "word": " work", + "start": 174.08, + "end": 174.2, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 174.2, + "end": 174.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 106, + "text": "It's frozen.", + "start": 174.48, + "end": 174.78, + "words": [ + { + "word": " It's", + "start": 174.48, + "end": 174.58, + "probability": 0.99951171875 + }, + { + "word": " frozen.", + "start": 174.58, + "end": 174.78, + "probability": 0.99609375 + } + ] + }, + { + "id": 107, + "text": "So...", + "start": 174.94, + "end": 175.22, + "words": [ + { + "word": " So...", + "start": 174.94, + "end": 175.22, + "probability": 0.214111328125 + } + ] + }, + { + "id": 108, + "text": "All right.", + "start": 175.22, + "end": 175.92, + "words": [ + { + "word": " All", + "start": 175.22, + "end": 175.74, + "probability": 0.802734375 + }, + { + "word": " right.", + "start": 175.74, + "end": 175.92, + "probability": 1.0 + } + ] + }, + { + "id": 109, + "text": "There's no recourse for you.", + "start": 176.82, + "end": 177.84, + "words": [ + { + "word": " There's", + "start": 176.82, + "end": 177.1, + "probability": 0.9951171875 + }, + { + "word": " no", + "start": 177.1, + "end": 177.18, + "probability": 1.0 + }, + { + "word": " recourse", + "start": 177.18, + "end": 177.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 177.56, + "end": 177.72, + "probability": 1.0 + }, + { + "word": " you.", + "start": 177.72, + "end": 177.84, + "probability": 1.0 + } + ] + }, + { + "id": 110, + "text": "I'm sorry.", + "start": 177.88, + "end": 178.18, + "words": [ + { + "word": " I'm", + "start": 177.88, + "end": 178.02, + "probability": 0.998046875 + }, + { + "word": " sorry.", + "start": 178.02, + "end": 178.18, + "probability": 1.0 + } + ] + }, + { + "id": 111, + "text": "Sorry.", + "start": 178.18, + "end": 178.32, + "words": [ + { + "word": " Sorry.", + "start": 178.18, + "end": 178.32, + "probability": 0.3837890625 + } + ] + }, + { + "id": 112, + "text": "Well, Windows 7, huh?", + "start": 180.0, + "end": 182.22, + "words": [ + { + "word": " Well,", + "start": 180.0, + "end": 180.4, + "probability": 0.99365234375 + }, + { + "word": " Windows", + "start": 180.4, + "end": 180.8, + "probability": 0.9775390625 + }, + { + "word": " 7,", + "start": 180.8, + "end": 182.02, + "probability": 0.9990234375 + }, + { + "word": " huh?", + "start": 182.1, + "end": 182.22, + "probability": 1.0 + } + ] + }, + { + "id": 113, + "text": "Yeah.", + "start": 182.58, + "end": 182.98, + "words": [ + { + "word": " Yeah.", + "start": 182.58, + "end": 182.98, + "probability": 0.9970703125 + } + ] + }, + { + "id": 114, + "text": "Which, you know, I was a little bit...", + "start": 183.02, + "end": 184.36, + "words": [ + { + "word": " Which,", + "start": 183.02, + "end": 183.18, + "probability": 0.90625 + }, + { + "word": " you", + "start": 183.26, + "end": 183.34, + "probability": 0.994140625 + }, + { + "word": " know,", + "start": 183.34, + "end": 183.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 183.52, + "end": 183.64, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 183.64, + "end": 183.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 183.78, + "end": 183.88, + "probability": 1.0 + }, + { + "word": " little", + "start": 183.88, + "end": 184.06, + "probability": 1.0 + }, + { + "word": " bit...", + "start": 184.06, + "end": 184.36, + "probability": 0.57958984375 + } + ] + }, + { + "id": 115, + "text": "I mean, it's not good, but it's better than if I saw, like, an XP screen.", + "start": 184.36, + "end": 187.66, + "words": [ + { + "word": " I", + "start": 184.36, + "end": 184.44, + "probability": 0.9970703125 + }, + { + "word": " mean,", + "start": 184.44, + "end": 184.52, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 184.56, + "end": 184.7, + "probability": 1.0 + }, + { + "word": " not", + "start": 184.7, + "end": 184.9, + "probability": 1.0 + }, + { + "word": " good,", + "start": 184.9, + "end": 185.1, + "probability": 1.0 + }, + { + "word": " but", + "start": 185.22, + "end": 185.38, + "probability": 1.0 + }, + { + "word": " it's", + "start": 185.38, + "end": 185.6, + "probability": 1.0 + }, + { + "word": " better", + "start": 185.6, + "end": 185.78, + "probability": 1.0 + }, + { + "word": " than", + "start": 185.78, + "end": 185.94, + "probability": 1.0 + }, + { + "word": " if", + "start": 185.94, + "end": 186.6, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 186.6, + "end": 186.72, + "probability": 1.0 + }, + { + "word": " saw,", + "start": 186.72, + "end": 186.94, + "probability": 1.0 + }, + { + "word": " like,", + "start": 186.94, + "end": 187.1, + "probability": 1.0 + }, + { + "word": " an", + "start": 187.1, + "end": 187.2, + "probability": 1.0 + }, + { + "word": " XP", + "start": 187.2, + "end": 187.38, + "probability": 0.99853515625 + }, + { + "word": " screen.", + "start": 187.38, + "end": 187.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 116, + "text": "I am mildly miffed that they're using Windows 7 still.", + "start": 187.84, + "end": 191.5, + "words": [ + { + "word": " I", + "start": 187.84, + "end": 188.02, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 188.02, + "end": 188.18, + "probability": 0.95263671875 + }, + { + "word": " mildly", + "start": 188.18, + "end": 188.7, + "probability": 1.0 + }, + { + "word": " miffed", + "start": 188.7, + "end": 189.12, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 189.12, + "end": 189.72, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 189.72, + "end": 190.48, + "probability": 1.0 + }, + { + "word": " using", + "start": 190.48, + "end": 190.72, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 190.72, + "end": 190.96, + "probability": 1.0 + }, + { + "word": " 7", + "start": 190.96, + "end": 191.22, + "probability": 1.0 + }, + { + "word": " still.", + "start": 191.22, + "end": 191.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 117, + "text": "But we all knew that.", + "start": 191.64, + "end": 192.76, + "words": [ + { + "word": " But", + "start": 191.64, + "end": 191.86, + "probability": 1.0 + }, + { + "word": " we", + "start": 191.86, + "end": 192.18, + "probability": 0.99169921875 + }, + { + "word": " all", + "start": 192.18, + "end": 192.26, + "probability": 1.0 + }, + { + "word": " knew", + "start": 192.26, + "end": 192.48, + "probability": 1.0 + }, + { + "word": " that.", + "start": 192.48, + "end": 192.76, + "probability": 1.0 + } + ] + }, + { + "id": 118, + "text": "Up until very recently, there were still a bunch of ATMs running Windows XP.", + "start": 193.6, + "end": 197.72, + "words": [ + { + "word": " Up", + "start": 193.6, + "end": 194.0, + "probability": 0.98779296875 + }, + { + "word": " until", + "start": 194.0, + "end": 194.34, + "probability": 1.0 + }, + { + "word": " very", + "start": 194.34, + "end": 194.84, + "probability": 1.0 + }, + { + "word": " recently,", + "start": 194.84, + "end": 195.32, + "probability": 1.0 + }, + { + "word": " there", + "start": 195.44, + "end": 195.58, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 195.58, + "end": 195.72, + "probability": 1.0 + }, + { + "word": " still", + "start": 195.72, + "end": 195.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 195.9, + "end": 196.0, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 196.0, + "end": 196.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 196.26, + "end": 196.34, + "probability": 1.0 + }, + { + "word": " ATMs", + "start": 196.34, + "end": 196.76, + "probability": 0.9990234375 + }, + { + "word": " running", + "start": 196.76, + "end": 196.94, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 196.94, + "end": 197.4, + "probability": 1.0 + }, + { + "word": " XP.", + "start": 197.4, + "end": 197.72, + "probability": 1.0 + } + ] + }, + { + "id": 119, + "text": "Yeah.", + "start": 197.82, + "end": 198.0, + "words": [ + { + "word": " Yeah.", + "start": 197.82, + "end": 198.0, + "probability": 0.935546875 + } + ] + }, + { + "id": 120, + "text": "Or 98 even, maybe.", + "start": 198.14, + "end": 199.62, + "words": [ + { + "word": " Or", + "start": 198.14, + "end": 198.54, + "probability": 0.63330078125 + }, + { + "word": " 98", + "start": 198.54, + "end": 199.06, + "probability": 0.99951171875 + }, + { + "word": " even,", + "start": 199.06, + "end": 199.38, + "probability": 0.6513671875 + }, + { + "word": " maybe.", + "start": 199.42, + "end": 199.62, + "probability": 1.0 + } + ] + }, + { + "id": 121, + "text": "Yeah.", + "start": 199.86, + "end": 200.26, + "words": [ + { + "word": " Yeah.", + "start": 199.86, + "end": 200.26, + "probability": 0.99462890625 + } + ] + }, + { + "id": 122, + "text": "And I know that the...", + "start": 200.32, + "end": 201.62, + "words": [ + { + "word": " And", + "start": 200.32, + "end": 200.58, + "probability": 0.71142578125 + }, + { + "word": " I", + "start": 200.58, + "end": 200.78, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 200.78, + "end": 201.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 201.08, + "end": 201.24, + "probability": 1.0 + }, + { + "word": " the...", + "start": 201.24, + "end": 201.62, + "probability": 0.95849609375 + } + ] + }, + { + "id": 123, + "text": "Because it crashes all the time, the sign computer for the Roadhouse Theater...", + "start": 202.1, + "end": 207.92, + "words": [ + { + "word": " Because", + "start": 202.1, + "end": 202.5, + "probability": 0.88671875 + }, + { + "word": " it", + "start": 202.5, + "end": 202.64, + "probability": 1.0 + }, + { + "word": " crashes", + "start": 202.64, + "end": 202.92, + "probability": 1.0 + }, + { + "word": " all", + "start": 202.92, + "end": 203.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 203.18, + "end": 203.34, + "probability": 1.0 + }, + { + "word": " time,", + "start": 203.34, + "end": 203.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 203.8, + "end": 204.24, + "probability": 0.99951171875 + }, + { + "word": " sign", + "start": 204.24, + "end": 205.36, + "probability": 0.8544921875 + }, + { + "word": " computer", + "start": 205.36, + "end": 205.92, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 205.92, + "end": 206.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 206.72, + "end": 207.0, + "probability": 0.99951171875 + }, + { + "word": " Roadhouse", + "start": 207.0, + "end": 207.36, + "probability": 0.98828125 + }, + { + "word": " Theater...", + "start": 207.36, + "end": 207.92, + "probability": 0.56201171875 + } + ] + }, + { + "id": 124, + "text": "Is absolutely Windows XP.", + "start": 208.18, + "end": 210.04, + "words": [ + { + "word": " Is", + "start": 208.18, + "end": 208.62, + "probability": 0.0806884765625 + }, + { + "word": " absolutely", + "start": 208.62, + "end": 209.28, + "probability": 0.998046875 + }, + { + "word": " Windows", + "start": 209.28, + "end": 209.72, + "probability": 0.9892578125 + }, + { + "word": " XP.", + "start": 209.72, + "end": 210.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 125, + "text": "I noticed also when it was going through its boot sequence that this ATM had an American Megatrends board.", + "start": 210.56, + "end": 215.3, + "words": [ + { + "word": " I", + "start": 210.56, + "end": 210.96, + "probability": 0.998046875 + }, + { + "word": " noticed", + "start": 210.96, + "end": 211.24, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 211.24, + "end": 211.5, + "probability": 0.99365234375 + }, + { + "word": " when", + "start": 211.5, + "end": 211.74, + "probability": 0.9716796875 + }, + { + "word": " it", + "start": 211.74, + "end": 211.82, + "probability": 1.0 + }, + { + "word": " was", + "start": 211.82, + "end": 211.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 211.94, + "end": 212.24, + "probability": 0.9677734375 + }, + { + "word": " through", + "start": 212.24, + "end": 212.62, + "probability": 1.0 + }, + { + "word": " its", + "start": 212.62, + "end": 212.76, + "probability": 0.99267578125 + }, + { + "word": " boot", + "start": 212.76, + "end": 212.94, + "probability": 0.99951171875 + }, + { + "word": " sequence", + "start": 212.94, + "end": 213.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 213.18, + "end": 213.5, + "probability": 0.9462890625 + }, + { + "word": " this", + "start": 213.5, + "end": 213.68, + "probability": 1.0 + }, + { + "word": " ATM", + "start": 213.68, + "end": 213.92, + "probability": 0.9912109375 + }, + { + "word": " had", + "start": 213.92, + "end": 214.12, + "probability": 1.0 + }, + { + "word": " an", + "start": 214.12, + "end": 214.26, + "probability": 1.0 + }, + { + "word": " American", + "start": 214.26, + "end": 214.54, + "probability": 1.0 + }, + { + "word": " Megatrends", + "start": 214.54, + "end": 215.22, + "probability": 0.97021484375 + }, + { + "word": " board.", + "start": 215.22, + "end": 215.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 126, + "text": "I was like, wow.", + "start": 215.84, + "end": 216.58, + "words": [ + { + "word": " I", + "start": 215.84, + "end": 216.24, + "probability": 0.98828125 + }, + { + "word": " was", + "start": 216.24, + "end": 216.34, + "probability": 1.0 + }, + { + "word": " like,", + "start": 216.34, + "end": 216.4, + "probability": 0.99951171875 + }, + { + "word": " wow.", + "start": 216.42, + "end": 216.58, + "probability": 0.99658203125 + } + ] + }, + { + "id": 127, + "text": "Yeah.", + "start": 216.74, + "end": 217.14, + "words": [ + { + "word": " Yeah.", + "start": 216.74, + "end": 217.14, + "probability": 0.61767578125 + } + ] + }, + { + "id": 128, + "text": "And they got it running Windows 7.", + "start": 217.26, + "end": 218.44, + "words": [ + { + "word": " And", + "start": 217.26, + "end": 217.64, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 217.64, + "end": 217.76, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 217.76, + "end": 217.82, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 217.82, + "end": 217.9, + "probability": 1.0 + }, + { + "word": " running", + "start": 217.9, + "end": 217.98, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 217.98, + "end": 218.2, + "probability": 0.99853515625 + }, + { + "word": " 7.", + "start": 218.2, + "end": 218.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 129, + "text": "That's amazing.", + "start": 219.0, + "end": 219.64, + "words": [ + { + "word": " That's", + "start": 219.0, + "end": 219.4, + "probability": 1.0 + }, + { + "word": " amazing.", + "start": 219.4, + "end": 219.64, + "probability": 1.0 + } + ] + }, + { + "id": 130, + "text": "I don't know if I feel good about that.", + "start": 219.66, + "end": 220.76, + "words": [ + { + "word": " I", + "start": 219.66, + "end": 219.86, + "probability": 1.0 + }, + { + "word": " don't", + "start": 219.86, + "end": 219.92, + "probability": 1.0 + }, + { + "word": " know", + "start": 219.92, + "end": 219.98, + "probability": 1.0 + }, + { + "word": " if", + "start": 219.98, + "end": 220.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 220.08, + "end": 220.16, + "probability": 1.0 + }, + { + "word": " feel", + "start": 220.16, + "end": 220.28, + "probability": 1.0 + }, + { + "word": " good", + "start": 220.28, + "end": 220.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 220.38, + "end": 220.56, + "probability": 1.0 + }, + { + "word": " that.", + "start": 220.56, + "end": 220.76, + "probability": 1.0 + } + ] + }, + { + "id": 131, + "text": "But I know why it's not running Windows 10.", + "start": 221.02, + "end": 222.52, + "words": [ + { + "word": " But", + "start": 221.02, + "end": 221.42, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 221.42, + "end": 221.52, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 221.52, + "end": 221.6, + "probability": 1.0 + }, + { + "word": " why", + "start": 221.6, + "end": 221.72, + "probability": 1.0 + }, + { + "word": " it's", + "start": 221.72, + "end": 221.84, + "probability": 1.0 + }, + { + "word": " not", + "start": 221.84, + "end": 221.94, + "probability": 1.0 + }, + { + "word": " running", + "start": 221.94, + "end": 222.12, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 222.12, + "end": 222.32, + "probability": 1.0 + }, + { + "word": " 10.", + "start": 222.32, + "end": 222.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 132, + "text": "Why?", + "start": 223.92, + "end": 224.32, + "words": [ + { + "word": " Why?", + "start": 223.92, + "end": 224.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 133, + "text": "Because it's an American Megatrends board.", + "start": 224.78, + "end": 226.42, + "words": [ + { + "word": " Because", + "start": 224.78, + "end": 225.18, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 225.18, + "end": 225.34, + "probability": 1.0 + }, + { + "word": " an", + "start": 225.34, + "end": 225.42, + "probability": 1.0 + }, + { + "word": " American", + "start": 225.42, + "end": 225.64, + "probability": 1.0 + }, + { + "word": " Megatrends", + "start": 225.64, + "end": 226.24, + "probability": 1.0 + }, + { + "word": " board.", + "start": 226.24, + "end": 226.42, + "probability": 1.0 + } + ] + }, + { + "id": 134, + "text": "Is it a board or just a BIOS?", + "start": 227.54, + "end": 229.46, + "words": [ + { + "word": " Is", + "start": 227.54, + "end": 227.94, + "probability": 0.9609375 + }, + { + "word": " it", + "start": 227.94, + "end": 228.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 228.34, + "end": 228.44, + "probability": 1.0 + }, + { + "word": " board", + "start": 228.44, + "end": 228.58, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 228.58, + "end": 228.78, + "probability": 0.9970703125 + }, + { + "word": " just", + "start": 228.78, + "end": 228.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 228.94, + "end": 229.06, + "probability": 0.97509765625 + }, + { + "word": " BIOS?", + "start": 229.06, + "end": 229.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 135, + "text": "I don't know.", + "start": 229.78, + "end": 230.62, + "words": [ + { + "word": " I", + "start": 229.78, + "end": 230.18, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 230.18, + "end": 230.5, + "probability": 1.0 + }, + { + "word": " know.", + "start": 230.5, + "end": 230.62, + "probability": 1.0 + } + ] + }, + { + "id": 136, + "text": "It's probably just a BIOS.", + "start": 230.74, + "end": 232.1, + "words": [ + { + "word": " It's", + "start": 230.74, + "end": 231.12, + "probability": 0.9970703125 + }, + { + "word": " probably", + "start": 231.12, + "end": 231.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 231.16, + "end": 231.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 231.48, + "end": 231.64, + "probability": 0.9560546875 + }, + { + "word": " BIOS.", + "start": 231.64, + "end": 232.1, + "probability": 1.0 + } + ] + }, + { + "id": 137, + "text": "I imagine.", + "start": 232.26, + "end": 232.88, + "words": [ + { + "word": " I", + "start": 232.26, + "end": 232.66, + "probability": 0.994140625 + }, + { + "word": " imagine.", + "start": 232.66, + "end": 232.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 138, + "text": "It was old.", + "start": 233.1, + "end": 233.56, + "words": [ + { + "word": " It", + "start": 233.1, + "end": 233.22, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 233.22, + "end": 233.3, + "probability": 1.0 + }, + { + "word": " old.", + "start": 233.3, + "end": 233.56, + "probability": 1.0 + } + ] + }, + { + "id": 139, + "text": "That's all I know.", + "start": 233.62, + "end": 234.12, + "words": [ + { + "word": " That's", + "start": 233.62, + "end": 233.82, + "probability": 1.0 + }, + { + "word": " all", + "start": 233.82, + "end": 233.9, + "probability": 1.0 + }, + { + "word": " I", + "start": 233.9, + "end": 234.0, + "probability": 1.0 + }, + { + "word": " know.", + "start": 234.0, + "end": 234.12, + "probability": 1.0 + } + ] + }, + { + "id": 140, + "text": "Yeah.", + "start": 234.32, + "end": 234.68, + "words": [ + { + "word": " Yeah.", + "start": 234.32, + "end": 234.68, + "probability": 0.84130859375 + } + ] + }, + { + "id": 141, + "text": "I'm guessing it's just a BIOS.", + "start": 234.98, + "end": 236.68, + "words": [ + { + "word": " I'm", + "start": 234.98, + "end": 235.38, + "probability": 0.99951171875 + }, + { + "word": " guessing", + "start": 235.38, + "end": 235.84, + "probability": 1.0 + }, + { + "word": " it's", + "start": 235.84, + "end": 236.12, + "probability": 1.0 + }, + { + "word": " just", + "start": 236.12, + "end": 236.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 236.24, + "end": 236.34, + "probability": 1.0 + }, + { + "word": " BIOS.", + "start": 236.34, + "end": 236.68, + "probability": 1.0 + } + ] + }, + { + "id": 142, + "text": "Because the...", + "start": 236.68, + "end": 237.78, + "words": [ + { + "word": " Because", + "start": 236.68, + "end": 236.9, + "probability": 0.88427734375 + }, + { + "word": " the...", + "start": 236.9, + "end": 237.78, + "probability": 0.85546875 + } + ] + }, + { + "id": 143, + "text": "And I bet it's an Atom.", + "start": 238.18, + "end": 239.48, + "words": [ + { + "word": " And", + "start": 238.18, + "end": 238.44, + "probability": 0.841796875 + }, + { + "word": " I", + "start": 238.44, + "end": 238.62, + "probability": 0.99755859375 + }, + { + "word": " bet", + "start": 238.62, + "end": 238.78, + "probability": 1.0 + }, + { + "word": " it's", + "start": 238.78, + "end": 238.96, + "probability": 0.99658203125 + }, + { + "word": " an", + "start": 238.96, + "end": 239.02, + "probability": 0.96923828125 + }, + { + "word": " Atom.", + "start": 239.02, + "end": 239.48, + "probability": 0.83935546875 + } + ] + }, + { + "id": 144, + "text": "Oh, yeah?", + "start": 239.92000000000002, + "end": 240.36, + "words": [ + { + "word": " Oh,", + "start": 239.92000000000002, + "end": 240.24, + "probability": 0.99560546875 + }, + { + "word": " yeah?", + "start": 240.24, + "end": 240.36, + "probability": 1.0 + } + ] + }, + { + "id": 145, + "text": "Yeah.", + "start": 240.66, + "end": 240.9, + "words": [ + { + "word": " Yeah.", + "start": 240.66, + "end": 240.9, + "probability": 0.990234375 + } + ] + }, + { + "id": 146, + "text": "Because, like, the firewall machines that we built.", + "start": 241.12, + "end": 243.24, + "words": [ + { + "word": " Because,", + "start": 241.12, + "end": 241.44, + "probability": 0.9833984375 + }, + { + "word": " like,", + "start": 241.44, + "end": 242.0, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 242.1, + "end": 242.2, + "probability": 1.0 + }, + { + "word": " firewall", + "start": 242.2, + "end": 242.44, + "probability": 0.99560546875 + }, + { + "word": " machines", + "start": 242.44, + "end": 242.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 242.72, + "end": 242.98, + "probability": 1.0 + }, + { + "word": " we", + "start": 242.98, + "end": 243.06, + "probability": 1.0 + }, + { + "word": " built.", + "start": 243.06, + "end": 243.24, + "probability": 0.61083984375 + } + ] + }, + { + "id": 147, + "text": "Oh, yeah.", + "start": 243.32, + "end": 243.66, + "words": [ + { + "word": " Oh,", + "start": 243.32, + "end": 243.54, + "probability": 0.99951171875 + }, + { + "word": " yeah.", + "start": 243.54, + "end": 243.66, + "probability": 1.0 + } + ] + }, + { + "id": 148, + "text": "I could see that, I guess.", + "start": 243.72, + "end": 244.5, + "words": [ + { + "word": " I", + "start": 243.72, + "end": 243.8, + "probability": 0.9970703125 + }, + { + "word": " could", + "start": 243.8, + "end": 243.88, + "probability": 0.99853515625 + }, + { + "word": " see", + "start": 243.88, + "end": 244.06, + "probability": 1.0 + }, + { + "word": " that,", + "start": 244.06, + "end": 244.2, + "probability": 1.0 + }, + { + "word": " I", + "start": 244.24, + "end": 244.34, + "probability": 1.0 + }, + { + "word": " guess.", + "start": 244.34, + "end": 244.5, + "probability": 1.0 + } + ] + }, + { + "id": 149, + "text": "They're Atoms with AMI BIOS.", + "start": 244.6, + "end": 246.38, + "words": [ + { + "word": " They're", + "start": 244.6, + "end": 244.7, + "probability": 0.99169921875 + }, + { + "word": " Atoms", + "start": 244.7, + "end": 245.16, + "probability": 0.9931640625 + }, + { + "word": " with", + "start": 245.16, + "end": 245.44, + "probability": 0.99951171875 + }, + { + "word": " AMI", + "start": 245.44, + "end": 245.94, + "probability": 0.998046875 + }, + { + "word": " BIOS.", + "start": 245.94, + "end": 246.38, + "probability": 0.986328125 + } + ] + }, + { + "id": 150, + "text": "Okay.", + "start": 246.5, + "end": 246.82, + "words": [ + { + "word": " Okay.", + "start": 246.5, + "end": 246.82, + "probability": 0.943359375 + } + ] + }, + { + "id": 151, + "text": "That makes more sense.", + "start": 246.98, + "end": 247.84, + "words": [ + { + "word": " That", + "start": 246.98, + "end": 247.3, + "probability": 0.99658203125 + }, + { + "word": " makes", + "start": 247.3, + "end": 247.48, + "probability": 1.0 + }, + { + "word": " more", + "start": 247.48, + "end": 247.62, + "probability": 1.0 + }, + { + "word": " sense.", + "start": 247.62, + "end": 247.84, + "probability": 1.0 + } + ] + }, + { + "id": 152, + "text": "That makes me feel a little bit better.", + "start": 247.88, + "end": 248.86, + "words": [ + { + "word": " That", + "start": 247.88, + "end": 248.0, + "probability": 0.99853515625 + }, + { + "word": " makes", + "start": 248.0, + "end": 248.12, + "probability": 1.0 + }, + { + "word": " me", + "start": 248.12, + "end": 248.26, + "probability": 1.0 + }, + { + "word": " feel", + "start": 248.26, + "end": 248.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 248.32, + "end": 248.46, + "probability": 1.0 + }, + { + "word": " little", + "start": 248.46, + "end": 248.52, + "probability": 1.0 + }, + { + "word": " bit", + "start": 248.52, + "end": 248.64, + "probability": 1.0 + }, + { + "word": " better.", + "start": 248.64, + "end": 248.86, + "probability": 1.0 + } + ] + }, + { + "id": 153, + "text": "Yeah.", + "start": 249.08, + "end": 249.34, + "words": [ + { + "word": " Yeah.", + "start": 249.08, + "end": 249.34, + "probability": 0.98974609375 + } + ] + }, + { + "id": 154, + "text": "Otherwise, you're going to have to go in and, like, you know, ATM shame, operating system shame your bank.", + "start": 250.44, + "end": 254.84, + "words": [ + { + "word": " Otherwise,", + "start": 250.44, + "end": 250.76, + "probability": 0.94287109375 + }, + { + "word": " you're", + "start": 250.88, + "end": 251.06, + "probability": 1.0 + }, + { + "word": " going", + "start": 251.06, + "end": 251.1, + "probability": 0.98828125 + }, + { + "word": " to", + "start": 251.1, + "end": 251.14, + "probability": 1.0 + }, + { + "word": " have", + "start": 251.14, + "end": 251.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 251.24, + "end": 251.34, + "probability": 1.0 + }, + { + "word": " go", + "start": 251.34, + "end": 251.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 251.46, + "end": 251.64, + "probability": 1.0 + }, + { + "word": " and,", + "start": 251.64, + "end": 251.78, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 251.88, + "end": 252.12, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 252.12, + "end": 252.26, + "probability": 0.96533203125 + }, + { + "word": " know,", + "start": 252.26, + "end": 252.4, + "probability": 1.0 + }, + { + "word": " ATM", + "start": 252.42, + "end": 252.82, + "probability": 0.99755859375 + }, + { + "word": " shame,", + "start": 252.82, + "end": 253.22, + "probability": 0.998046875 + }, + { + "word": " operating", + "start": 253.4, + "end": 253.72, + "probability": 1.0 + }, + { + "word": " system", + "start": 253.72, + "end": 254.0, + "probability": 1.0 + }, + { + "word": " shame", + "start": 254.0, + "end": 254.38, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 254.38, + "end": 254.6, + "probability": 0.9091796875 + }, + { + "word": " bank.", + "start": 254.6, + "end": 254.84, + "probability": 1.0 + } + ] + }, + { + "id": 155, + "text": "I know.", + "start": 255.1, + "end": 255.46, + "words": [ + { + "word": " I", + "start": 255.1, + "end": 255.32, + "probability": 1.0 + }, + { + "word": " know.", + "start": 255.32, + "end": 255.46, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "I have a hard time...", + "start": 255.48, + "end": 256.42, + "words": [ + { + "word": " I", + "start": 255.48, + "end": 255.58, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 255.58, + "end": 255.72, + "probability": 0.91943359375 + }, + { + "word": " a", + "start": 255.72, + "end": 255.82, + "probability": 1.0 + }, + { + "word": " hard", + "start": 255.82, + "end": 256.0, + "probability": 1.0 + }, + { + "word": " time...", + "start": 256.0, + "end": 256.42, + "probability": 0.537109375 + } + ] + }, + { + "id": 157, + "text": "I'm going to have a hard time not mentioning that to them when I go eventually to get my debit card.", + "start": 256.42, + "end": 259.76, + "words": [ + { + "word": " I'm", + "start": 256.42, + "end": 256.72, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 256.72, + "end": 256.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 256.72, + "end": 256.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 256.8, + "end": 256.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 256.88, + "end": 256.94, + "probability": 1.0 + }, + { + "word": " hard", + "start": 256.94, + "end": 257.08, + "probability": 1.0 + }, + { + "word": " time", + "start": 257.08, + "end": 257.22, + "probability": 1.0 + }, + { + "word": " not", + "start": 257.22, + "end": 257.36, + "probability": 1.0 + }, + { + "word": " mentioning", + "start": 257.36, + "end": 257.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 257.7, + "end": 257.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 257.88, + "end": 258.02, + "probability": 1.0 + }, + { + "word": " them", + "start": 258.02, + "end": 258.12, + "probability": 1.0 + }, + { + "word": " when", + "start": 258.12, + "end": 258.24, + "probability": 1.0 + }, + { + "word": " I", + "start": 258.24, + "end": 258.3, + "probability": 1.0 + }, + { + "word": " go", + "start": 258.3, + "end": 258.44, + "probability": 1.0 + }, + { + "word": " eventually", + "start": 258.44, + "end": 258.84, + "probability": 0.82177734375 + }, + { + "word": " to", + "start": 258.84, + "end": 259.16, + "probability": 1.0 + }, + { + "word": " get", + "start": 259.16, + "end": 259.3, + "probability": 1.0 + }, + { + "word": " my", + "start": 259.3, + "end": 259.4, + "probability": 1.0 + }, + { + "word": " debit", + "start": 259.4, + "end": 259.56, + "probability": 0.99951171875 + }, + { + "word": " card.", + "start": 259.56, + "end": 259.76, + "probability": 1.0 + } + ] + }, + { + "id": 158, + "text": "Like, by the way, you know, we do IT security and your machine is running Windows 7 out there.", + "start": 259.88, + "end": 264.72, + "words": [ + { + "word": " Like,", + "start": 259.88, + "end": 260.02, + "probability": 0.99462890625 + }, + { + "word": " by", + "start": 260.06, + "end": 260.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 260.56, + "end": 260.68, + "probability": 1.0 + }, + { + "word": " way,", + "start": 260.68, + "end": 260.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 261.04, + "end": 261.48, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 261.48, + "end": 261.62, + "probability": 1.0 + }, + { + "word": " we", + "start": 261.64, + "end": 261.74, + "probability": 1.0 + }, + { + "word": " do", + "start": 261.74, + "end": 261.94, + "probability": 1.0 + }, + { + "word": " IT", + "start": 261.94, + "end": 262.38, + "probability": 1.0 + }, + { + "word": " security", + "start": 262.38, + "end": 262.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 262.78, + "end": 263.08, + "probability": 0.52099609375 + }, + { + "word": " your", + "start": 263.08, + "end": 263.34, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 263.34, + "end": 263.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 263.62, + "end": 263.8, + "probability": 1.0 + }, + { + "word": " running", + "start": 263.8, + "end": 263.94, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 263.94, + "end": 264.18, + "probability": 0.99951171875 + }, + { + "word": " 7", + "start": 264.18, + "end": 264.38, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 264.38, + "end": 264.54, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 264.54, + "end": 264.72, + "probability": 1.0 + } + ] + }, + { + "id": 159, + "text": "What's with that?", + "start": 264.82, + "end": 265.28, + "words": [ + { + "word": " What's", + "start": 264.82, + "end": 265.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 265.0, + "end": 265.1, + "probability": 1.0 + }, + { + "word": " that?", + "start": 265.1, + "end": 265.28, + "probability": 1.0 + } + ] + }, + { + "id": 160, + "text": "Generally, there's special sort of...", + "start": 265.62, + "end": 267.82, + "words": [ + { + "word": " Generally,", + "start": 265.62, + "end": 265.94, + "probability": 0.990234375 + }, + { + "word": " there's", + "start": 266.02, + "end": 266.24, + "probability": 0.86669921875 + }, + { + "word": " special", + "start": 266.24, + "end": 266.76, + "probability": 0.99365234375 + }, + { + "word": " sort", + "start": 266.76, + "end": 267.48, + "probability": 0.869140625 + }, + { + "word": " of...", + "start": 267.48, + "end": 267.82, + "probability": 0.845703125 + } + ] + }, + { + "id": 161, + "text": "blends of Windows 7 and some other custom kernel that's going on.", + "start": 269.17999999999995, + "end": 274.06, + "words": [ + { + "word": " blends", + "start": 269.17999999999995, + "end": 269.65999999999997, + "probability": 0.4697265625 + }, + { + "word": " of", + "start": 269.65999999999997, + "end": 270.14, + "probability": 0.99755859375 + }, + { + "word": " Windows", + "start": 270.14, + "end": 270.96, + "probability": 0.7900390625 + }, + { + "word": " 7", + "start": 270.96, + "end": 271.36, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 271.36, + "end": 271.64, + "probability": 0.9970703125 + }, + { + "word": " some", + "start": 271.64, + "end": 271.98, + "probability": 1.0 + }, + { + "word": " other", + "start": 271.98, + "end": 272.24, + "probability": 0.99951171875 + }, + { + "word": " custom", + "start": 272.24, + "end": 272.68, + "probability": 0.99951171875 + }, + { + "word": " kernel", + "start": 272.68, + "end": 273.22, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 273.22, + "end": 273.74, + "probability": 0.9775390625 + }, + { + "word": " going", + "start": 273.74, + "end": 273.88, + "probability": 1.0 + }, + { + "word": " on.", + "start": 273.88, + "end": 274.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 162, + "text": "I hope so, but at the same time, I just...", + "start": 274.1, + "end": 275.68, + "words": [ + { + "word": " I", + "start": 274.1, + "end": 274.2, + "probability": 0.99853515625 + }, + { + "word": " hope", + "start": 274.2, + "end": 274.36, + "probability": 0.9970703125 + }, + { + "word": " so,", + "start": 274.36, + "end": 274.54, + "probability": 1.0 + }, + { + "word": " but", + "start": 274.6, + "end": 274.68, + "probability": 1.0 + }, + { + "word": " at", + "start": 274.68, + "end": 274.82, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 274.82, + "end": 274.86, + "probability": 1.0 + }, + { + "word": " same", + "start": 274.86, + "end": 275.04, + "probability": 0.99951171875 + }, + { + "word": " time,", + "start": 275.04, + "end": 275.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 275.34, + "end": 275.42, + "probability": 1.0 + }, + { + "word": " just...", + "start": 275.42, + "end": 275.68, + "probability": 0.355712890625 + } + ] + }, + { + "id": 163, + "text": "I don't have very much faith in any of this anymore.", + "start": 275.68, + "end": 278.52, + "words": [ + { + "word": " I", + "start": 275.68, + "end": 276.18, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 276.18, + "end": 276.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 276.34, + "end": 276.44, + "probability": 1.0 + }, + { + "word": " very", + "start": 276.44, + "end": 276.6, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 276.6, + "end": 276.76, + "probability": 1.0 + }, + { + "word": " faith", + "start": 276.76, + "end": 277.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 277.04, + "end": 277.46, + "probability": 1.0 + }, + { + "word": " any", + "start": 277.46, + "end": 277.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 277.8, + "end": 277.9, + "probability": 1.0 + }, + { + "word": " this", + "start": 277.9, + "end": 278.1, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 278.1, + "end": 278.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 164, + "text": "So...", + "start": 279.1, + "end": 279.58, + "words": [ + { + "word": " So...", + "start": 279.1, + "end": 279.58, + "probability": 0.814453125 + } + ] + }, + { + "id": 165, + "text": "Yeah.", + "start": 279.58, + "end": 280.28, + "words": [ + { + "word": " Yeah.", + "start": 279.58, + "end": 280.28, + "probability": 0.9931640625 + } + ] + }, + { + "id": 166, + "text": "Yeah.", + "start": 280.36, + "end": 280.8, + "words": [ + { + "word": " Yeah.", + "start": 280.36, + "end": 280.8, + "probability": 0.8740234375 + } + ] + }, + { + "id": 167, + "text": "I don't blame you.", + "start": 280.88, + "end": 282.04, + "words": [ + { + "word": " I", + "start": 280.88, + "end": 281.2, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 281.2, + "end": 281.68, + "probability": 0.9990234375 + }, + { + "word": " blame", + "start": 281.68, + "end": 281.84, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 281.84, + "end": 282.04, + "probability": 0.99658203125 + } + ] + }, + { + "id": 168, + "text": "The ATMs are interesting animals.", + "start": 282.32, + "end": 285.58, + "words": [ + { + "word": " The", + "start": 282.32, + "end": 282.8, + "probability": 0.97216796875 + }, + { + "word": " ATMs", + "start": 282.8, + "end": 284.0, + "probability": 0.9609375 + }, + { + "word": " are", + "start": 284.0, + "end": 284.18, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 284.18, + "end": 284.82, + "probability": 0.998046875 + }, + { + "word": " animals.", + "start": 284.82, + "end": 285.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 169, + "text": "And so are gas pumps these days.", + "start": 286.18, + "end": 288.48, + "words": [ + { + "word": " And", + "start": 286.18, + "end": 286.66, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 286.66, + "end": 287.0, + "probability": 0.9970703125 + }, + { + "word": " are", + "start": 287.0, + "end": 287.16, + "probability": 1.0 + }, + { + "word": " gas", + "start": 287.16, + "end": 287.74, + "probability": 0.99951171875 + }, + { + "word": " pumps", + "start": 287.74, + "end": 287.96, + "probability": 1.0 + }, + { + "word": " these", + "start": 287.96, + "end": 288.18, + "probability": 0.99853515625 + }, + { + "word": " days.", + "start": 288.18, + "end": 288.48, + "probability": 1.0 + } + ] + }, + { + "id": 170, + "text": "Yeah.", + "start": 288.76, + "end": 289.24, + "words": [ + { + "word": " Yeah.", + "start": 288.76, + "end": 289.24, + "probability": 0.95556640625 + } + ] + }, + { + "id": 171, + "text": "And they're similar in the fact that they're almost computers.", + "start": 289.44, + "end": 292.86, + "words": [ + { + "word": " And", + "start": 289.44, + "end": 289.92, + "probability": 0.99462890625 + }, + { + "word": " they're", + "start": 289.92, + "end": 290.18, + "probability": 1.0 + }, + { + "word": " similar", + "start": 290.18, + "end": 290.56, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 290.56, + "end": 291.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 291.08, + "end": 291.18, + "probability": 1.0 + }, + { + "word": " fact", + "start": 291.18, + "end": 291.38, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 291.38, + "end": 291.62, + "probability": 1.0 + }, + { + "word": " they're", + "start": 291.62, + "end": 291.84, + "probability": 1.0 + }, + { + "word": " almost", + "start": 291.84, + "end": 292.3, + "probability": 0.99951171875 + }, + { + "word": " computers.", + "start": 292.3, + "end": 292.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 172, + "text": "And...", + "start": 293.58, + "end": 294.06, + "words": [ + { + "word": " And...", + "start": 293.58, + "end": 294.06, + "probability": 0.8525390625 + } + ] + }, + { + "id": 173, + "text": "Well, I mean, they are, but...", + "start": 294.06, + "end": 295.94, + "words": [ + { + "word": " Well,", + "start": 294.06, + "end": 294.52, + "probability": 0.94873046875 + }, + { + "word": " I", + "start": 294.58, + "end": 294.78, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 294.78, + "end": 294.92, + "probability": 1.0 + }, + { + "word": " they", + "start": 294.94, + "end": 295.02, + "probability": 1.0 + }, + { + "word": " are,", + "start": 295.02, + "end": 295.24, + "probability": 1.0 + }, + { + "word": " but...", + "start": 295.4, + "end": 295.94, + "probability": 1.0 + } + ] + }, + { + "id": 174, + "text": "Yeah, they have to have some computational power to...", + "start": 295.94, + "end": 297.9, + "words": [ + { + "word": " Yeah,", + "start": 295.94, + "end": 296.22, + "probability": 0.99658203125 + }, + { + "word": " they", + "start": 296.22, + "end": 296.28, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 296.28, + "end": 296.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 296.4, + "end": 296.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 296.48, + "end": 296.58, + "probability": 1.0 + }, + { + "word": " some", + "start": 296.58, + "end": 296.74, + "probability": 1.0 + }, + { + "word": " computational", + "start": 296.74, + "end": 297.26, + "probability": 0.98974609375 + }, + { + "word": " power", + "start": 297.26, + "end": 297.68, + "probability": 0.99853515625 + }, + { + "word": " to...", + "start": 297.68, + "end": 297.9, + "probability": 0.6484375 + } + ] + }, + { + "id": 175, + "text": "scream an advertisement at you.", + "start": 298.18, + "end": 299.14, + "words": [ + { + "word": " scream", + "start": 298.18, + "end": 298.28, + "probability": 0.032257080078125 + }, + { + "word": " an", + "start": 298.28, + "end": 298.4, + "probability": 0.8515625 + }, + { + "word": " advertisement", + "start": 298.4, + "end": 298.7, + "probability": 0.998046875 + }, + { + "word": " at", + "start": 298.7, + "end": 298.98, + "probability": 0.9912109375 + }, + { + "word": " you.", + "start": 298.98, + "end": 299.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 176, + "text": "Are you talking about those little boxes?", + "start": 300.78000000000003, + "end": 302.56, + "words": [ + { + "word": " Are", + "start": 300.78000000000003, + "end": 301.18, + "probability": 0.9833984375 + }, + { + "word": " you", + "start": 301.18, + "end": 301.34, + "probability": 1.0 + }, + { + "word": " talking", + "start": 301.34, + "end": 301.56, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 301.56, + "end": 301.76, + "probability": 1.0 + }, + { + "word": " those", + "start": 301.76, + "end": 301.9, + "probability": 0.99853515625 + }, + { + "word": " little", + "start": 301.9, + "end": 302.1, + "probability": 1.0 + }, + { + "word": " boxes?", + "start": 302.1, + "end": 302.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 177, + "text": "Yeah.", + "start": 302.8, + "end": 302.92, + "words": [ + { + "word": " Yeah.", + "start": 302.8, + "end": 302.92, + "probability": 0.98583984375 + } + ] + }, + { + "id": 178, + "text": "Like, they have TVs on them now that are just playing commercials.", + "start": 303.04, + "end": 305.62, + "words": [ + { + "word": " Like,", + "start": 303.04, + "end": 303.44, + "probability": 0.798828125 + }, + { + "word": " they", + "start": 303.52, + "end": 303.56, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 303.56, + "end": 303.72, + "probability": 1.0 + }, + { + "word": " TVs", + "start": 303.72, + "end": 304.04, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 304.04, + "end": 304.24, + "probability": 1.0 + }, + { + "word": " them", + "start": 304.24, + "end": 304.38, + "probability": 1.0 + }, + { + "word": " now", + "start": 304.38, + "end": 304.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 304.56, + "end": 304.84, + "probability": 0.98779296875 + }, + { + "word": " are", + "start": 304.84, + "end": 304.88, + "probability": 1.0 + }, + { + "word": " just", + "start": 304.88, + "end": 305.06, + "probability": 0.99658203125 + }, + { + "word": " playing", + "start": 305.06, + "end": 305.28, + "probability": 0.99462890625 + }, + { + "word": " commercials.", + "start": 305.28, + "end": 305.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 179, + "text": "Yeah.", + "start": 305.98, + "end": 306.36, + "words": [ + { + "word": " Yeah.", + "start": 305.98, + "end": 306.36, + "probability": 0.9970703125 + } + ] + }, + { + "id": 180, + "text": "At least the one by my house.", + "start": 306.66, + "end": 309.84, + "words": [ + { + "word": " At", + "start": 306.66, + "end": 307.06, + "probability": 0.939453125 + }, + { + "word": " least", + "start": 307.06, + "end": 308.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 308.52, + "end": 308.62, + "probability": 1.0 + }, + { + "word": " one", + "start": 308.62, + "end": 308.88, + "probability": 1.0 + }, + { + "word": " by", + "start": 308.88, + "end": 309.24, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 309.24, + "end": 309.46, + "probability": 0.998046875 + }, + { + "word": " house.", + "start": 309.46, + "end": 309.84, + "probability": 1.0 + } + ] + }, + { + "id": 181, + "text": "It doesn't do commercials.", + "start": 310.1, + "end": 311.68, + "words": [ + { + "word": " It", + "start": 310.1, + "end": 310.5, + "probability": 0.8408203125 + }, + { + "word": " doesn't", + "start": 310.5, + "end": 311.0, + "probability": 1.0 + }, + { + "word": " do", + "start": 311.0, + "end": 311.14, + "probability": 1.0 + }, + { + "word": " commercials.", + "start": 311.14, + "end": 311.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 182, + "text": "It does weather.", + "start": 311.76, + "end": 312.4, + "words": [ + { + "word": " It", + "start": 311.76, + "end": 311.96, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 311.96, + "end": 312.12, + "probability": 0.9990234375 + }, + { + "word": " weather.", + "start": 312.12, + "end": 312.4, + "probability": 1.0 + } + ] + }, + { + "id": 183, + "text": "That's better, at least.", + "start": 312.8, + "end": 313.8, + "words": [ + { + "word": " That's", + "start": 312.8, + "end": 313.2, + "probability": 0.9990234375 + }, + { + "word": " better,", + "start": 313.2, + "end": 313.48, + "probability": 1.0 + }, + { + "word": " at", + "start": 313.52, + "end": 313.66, + "probability": 1.0 + }, + { + "word": " least.", + "start": 313.66, + "end": 313.8, + "probability": 1.0 + } + ] + }, + { + "id": 184, + "text": "Every time I have a commercial playing while I'm getting gas,", + "start": 313.94, + "end": 316.1, + "words": [ + { + "word": " Every", + "start": 313.94, + "end": 314.34, + "probability": 0.99658203125 + }, + { + "word": " time", + "start": 314.34, + "end": 314.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 314.5, + "end": 314.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 314.68, + "end": 314.82, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 314.82, + "end": 314.92, + "probability": 1.0 + }, + { + "word": " commercial", + "start": 314.92, + "end": 315.18, + "probability": 1.0 + }, + { + "word": " playing", + "start": 315.18, + "end": 315.46, + "probability": 0.99951171875 + }, + { + "word": " while", + "start": 315.46, + "end": 315.6, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 315.6, + "end": 315.74, + "probability": 1.0 + }, + { + "word": " getting", + "start": 315.74, + "end": 315.84, + "probability": 0.99951171875 + }, + { + "word": " gas,", + "start": 315.84, + "end": 316.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 185, + "text": "I can't help but feel like I'm in Minority Report.", + "start": 316.28, + "end": 318.42, + "words": [ + { + "word": " I", + "start": 316.28, + "end": 316.7, + "probability": 0.9990234375 + }, + { + "word": " can't", + "start": 316.7, + "end": 316.94, + "probability": 1.0 + }, + { + "word": " help", + "start": 316.94, + "end": 317.06, + "probability": 1.0 + }, + { + "word": " but", + "start": 317.06, + "end": 317.2, + "probability": 1.0 + }, + { + "word": " feel", + "start": 317.2, + "end": 317.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 317.36, + "end": 317.54, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 317.54, + "end": 317.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 317.72, + "end": 317.8, + "probability": 0.99951171875 + }, + { + "word": " Minority", + "start": 317.8, + "end": 318.18, + "probability": 0.998046875 + }, + { + "word": " Report.", + "start": 318.18, + "end": 318.42, + "probability": 1.0 + } + ] + }, + { + "id": 186, + "text": "You know, when they're walking through the mall.", + "start": 318.76, + "end": 320.08, + "words": [ + { + "word": " You", + "start": 318.76, + "end": 319.16, + "probability": 0.90283203125 + }, + { + "word": " know,", + "start": 319.16, + "end": 319.26, + "probability": 1.0 + }, + { + "word": " when", + "start": 319.28, + "end": 319.4, + "probability": 0.96142578125 + }, + { + "word": " they're", + "start": 319.4, + "end": 319.46, + "probability": 0.970703125 + }, + { + "word": " walking", + "start": 319.46, + "end": 319.64, + "probability": 0.99853515625 + }, + { + "word": " through", + "start": 319.64, + "end": 319.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 319.84, + "end": 319.96, + "probability": 1.0 + }, + { + "word": " mall.", + "start": 319.96, + "end": 320.08, + "probability": 1.0 + } + ] + }, + { + "id": 187, + "text": "Yeah.", + "start": 321.1, + "end": 321.5, + "words": [ + { + "word": " Yeah.", + "start": 321.1, + "end": 321.5, + "probability": 0.9833984375 + } + ] + }, + { + "id": 188, + "text": "I just...", + "start": 322.46000000000004, + "end": 323.08, + "words": [ + { + "word": " I", + "start": 322.46000000000004, + "end": 322.86, + "probability": 0.99853515625 + }, + { + "word": " just...", + "start": 322.86, + "end": 323.08, + "probability": 0.46142578125 + } + ] + }, + { + "id": 189, + "text": "I don't...", + "start": 323.08, + "end": 323.4, + "words": [ + { + "word": " I", + "start": 323.08, + "end": 323.18, + "probability": 0.99951171875 + }, + { + "word": " don't...", + "start": 323.18, + "end": 323.4, + "probability": 0.92236328125 + } + ] + }, + { + "id": 190, + "text": "I've never understood that kind of advertising.", + "start": 323.4, + "end": 325.18, + "words": [ + { + "word": " I've", + "start": 323.4, + "end": 324.0, + "probability": 0.9990234375 + }, + { + "word": " never", + "start": 324.0, + "end": 324.12, + "probability": 0.9990234375 + }, + { + "word": " understood", + "start": 324.12, + "end": 324.44, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 324.44, + "end": 324.62, + "probability": 1.0 + }, + { + "word": " kind", + "start": 324.62, + "end": 324.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 324.74, + "end": 324.86, + "probability": 1.0 + }, + { + "word": " advertising.", + "start": 324.86, + "end": 325.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 191, + "text": "Never in my life have I bought...", + "start": 325.58000000000004, + "end": 327.88, + "words": [ + { + "word": " Never", + "start": 325.58000000000004, + "end": 325.98, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 325.98, + "end": 326.2, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 326.2, + "end": 326.34, + "probability": 1.0 + }, + { + "word": " life", + "start": 326.34, + "end": 326.62, + "probability": 1.0 + }, + { + "word": " have", + "start": 326.62, + "end": 326.9, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 326.9, + "end": 327.08, + "probability": 1.0 + }, + { + "word": " bought...", + "start": 327.08, + "end": 327.88, + "probability": 0.52001953125 + } + ] + }, + { + "id": 192, + "text": "something as a result of an ad that was that invasive.", + "start": 328.18, + "end": 330.46, + "words": [ + { + "word": " something", + "start": 328.18, + "end": 328.3, + "probability": 0.055145263671875 + }, + { + "word": " as", + "start": 328.3, + "end": 328.5, + "probability": 0.9697265625 + }, + { + "word": " a", + "start": 328.5, + "end": 328.64, + "probability": 0.99951171875 + }, + { + "word": " result", + "start": 328.64, + "end": 328.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 328.86, + "end": 329.12, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 329.12, + "end": 329.34, + "probability": 0.8564453125 + }, + { + "word": " ad", + "start": 329.34, + "end": 329.8, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 329.8, + "end": 329.92, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 329.92, + "end": 330.06, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 330.06, + "end": 330.2, + "probability": 0.994140625 + }, + { + "word": " invasive.", + "start": 330.2, + "end": 330.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 193, + "text": "In fact, I've said,", + "start": 331.1, + "end": 332.06, + "words": [ + { + "word": " In", + "start": 331.1, + "end": 331.42, + "probability": 0.9951171875 + }, + { + "word": " fact,", + "start": 331.42, + "end": 331.66, + "probability": 1.0 + }, + { + "word": " I've", + "start": 331.68, + "end": 331.84, + "probability": 0.998046875 + }, + { + "word": " said,", + "start": 331.84, + "end": 332.06, + "probability": 1.0 + } + ] + }, + { + "id": 194, + "text": "now I'm not going to buy that.", + "start": 332.14, + "end": 333.28, + "words": [ + { + "word": " now", + "start": 332.14, + "end": 332.44, + "probability": 0.350341796875 + }, + { + "word": " I'm", + "start": 332.44, + "end": 332.64, + "probability": 0.9931640625 + }, + { + "word": " not", + "start": 332.64, + "end": 332.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 332.78, + "end": 332.88, + "probability": 0.9609375 + }, + { + "word": " to", + "start": 332.88, + "end": 332.98, + "probability": 1.0 + }, + { + "word": " buy", + "start": 332.98, + "end": 333.1, + "probability": 1.0 + }, + { + "word": " that.", + "start": 333.1, + "end": 333.28, + "probability": 1.0 + } + ] + }, + { + "id": 195, + "text": "Right, because I'm offended by the volume of this particular commercial.", + "start": 333.66, + "end": 337.44, + "words": [ + { + "word": " Right,", + "start": 333.66, + "end": 333.98, + "probability": 0.93212890625 + }, + { + "word": " because", + "start": 334.08, + "end": 334.28, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 334.28, + "end": 334.82, + "probability": 1.0 + }, + { + "word": " offended", + "start": 334.82, + "end": 335.3, + "probability": 1.0 + }, + { + "word": " by", + "start": 335.3, + "end": 335.66, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 335.66, + "end": 335.84, + "probability": 0.9990234375 + }, + { + "word": " volume", + "start": 335.84, + "end": 336.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 336.22, + "end": 336.5, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 336.5, + "end": 336.72, + "probability": 0.99951171875 + }, + { + "word": " particular", + "start": 336.72, + "end": 337.04, + "probability": 1.0 + }, + { + "word": " commercial.", + "start": 337.04, + "end": 337.44, + "probability": 1.0 + } + ] + }, + { + "id": 196, + "text": "Yeah, but never in my life have I, like,", + "start": 337.8, + "end": 339.24, + "words": [ + { + "word": " Yeah,", + "start": 337.8, + "end": 337.88, + "probability": 0.99462890625 + }, + { + "word": " but", + "start": 337.92, + "end": 338.0, + "probability": 1.0 + }, + { + "word": " never", + "start": 338.0, + "end": 338.26, + "probability": 1.0 + }, + { + "word": " in", + "start": 338.26, + "end": 338.42, + "probability": 1.0 + }, + { + "word": " my", + "start": 338.42, + "end": 338.52, + "probability": 1.0 + }, + { + "word": " life", + "start": 338.52, + "end": 338.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 338.74, + "end": 338.88, + "probability": 1.0 + }, + { + "word": " I,", + "start": 338.88, + "end": 339.0, + "probability": 1.0 + }, + { + "word": " like,", + "start": 339.08, + "end": 339.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 197, + "text": "been about to skip a YouTube ad,", + "start": 339.26, + "end": 341.06, + "words": [ + { + "word": " been", + "start": 339.26, + "end": 339.68, + "probability": 1.0 + }, + { + "word": " about", + "start": 339.68, + "end": 339.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 339.92, + "end": 340.14, + "probability": 1.0 + }, + { + "word": " skip", + "start": 340.14, + "end": 340.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 340.42, + "end": 340.56, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 340.56, + "end": 340.74, + "probability": 1.0 + }, + { + "word": " ad,", + "start": 340.74, + "end": 341.06, + "probability": 1.0 + } + ] + }, + { + "id": 198, + "text": "and then I was like, wait, this product is interesting.", + "start": 341.12, + "end": 342.78, + "words": [ + { + "word": " and", + "start": 341.12, + "end": 341.22, + "probability": 1.0 + }, + { + "word": " then", + "start": 341.22, + "end": 341.22, + "probability": 1.0 + }, + { + "word": " I", + "start": 341.22, + "end": 341.32, + "probability": 1.0 + }, + { + "word": " was", + "start": 341.32, + "end": 341.42, + "probability": 1.0 + }, + { + "word": " like,", + "start": 341.42, + "end": 341.5, + "probability": 0.99365234375 + }, + { + "word": " wait,", + "start": 341.56, + "end": 341.7, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 341.78, + "end": 341.9, + "probability": 1.0 + }, + { + "word": " product", + "start": 341.9, + "end": 342.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 342.26, + "end": 342.44, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 342.44, + "end": 342.78, + "probability": 1.0 + } + ] + }, + { + "id": 199, + "text": "I don't think that's ever happened.", + "start": 343.22, + "end": 344.4, + "words": [ + { + "word": " I", + "start": 343.22, + "end": 343.54, + "probability": 1.0 + }, + { + "word": " don't", + "start": 343.54, + "end": 343.66, + "probability": 1.0 + }, + { + "word": " think", + "start": 343.66, + "end": 343.72, + "probability": 1.0 + }, + { + "word": " that's", + "start": 343.72, + "end": 343.92, + "probability": 1.0 + }, + { + "word": " ever", + "start": 343.92, + "end": 344.04, + "probability": 1.0 + }, + { + "word": " happened.", + "start": 344.04, + "end": 344.4, + "probability": 1.0 + } + ] + }, + { + "id": 200, + "text": "I'm trying to think if I've...", + "start": 346.6, + "end": 348.34, + "words": [ + { + "word": " I'm", + "start": 346.6, + "end": 346.92, + "probability": 0.99853515625 + }, + { + "word": " trying", + "start": 346.92, + "end": 347.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 347.14, + "end": 347.28, + "probability": 1.0 + }, + { + "word": " think", + "start": 347.28, + "end": 347.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 347.48, + "end": 347.6, + "probability": 0.91015625 + }, + { + "word": " I've...", + "start": 347.6, + "end": 348.34, + "probability": 0.89599609375 + } + ] + }, + { + "id": 201, + "text": "Is it a subconscious thing that they're going for?", + "start": 348.34, + "end": 350.14, + "words": [ + { + "word": " Is", + "start": 348.34, + "end": 348.58, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 348.58, + "end": 348.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 348.64, + "end": 348.72, + "probability": 1.0 + }, + { + "word": " subconscious", + "start": 348.72, + "end": 348.98, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 348.98, + "end": 349.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 349.42, + "end": 349.62, + "probability": 1.0 + }, + { + "word": " they're", + "start": 349.62, + "end": 349.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 349.74, + "end": 349.9, + "probability": 1.0 + }, + { + "word": " for?", + "start": 349.9, + "end": 350.14, + "probability": 1.0 + } + ] + }, + { + "id": 202, + "text": "Like, I'm going to see a Coke commercial,", + "start": 350.26, + "end": 351.44, + "words": [ + { + "word": " Like,", + "start": 350.26, + "end": 350.42, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 350.44, + "end": 350.58, + "probability": 1.0 + }, + { + "word": " going", + "start": 350.58, + "end": 350.58, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 350.58, + "end": 350.68, + "probability": 1.0 + }, + { + "word": " see", + "start": 350.68, + "end": 350.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 350.8, + "end": 350.92, + "probability": 1.0 + }, + { + "word": " Coke", + "start": 350.92, + "end": 351.1, + "probability": 0.998046875 + }, + { + "word": " commercial,", + "start": 351.1, + "end": 351.44, + "probability": 1.0 + } + ] + }, + { + "id": 203, + "text": "and I'll be like,", + "start": 351.56, + "end": 351.9, + "words": [ + { + "word": " and", + "start": 351.56, + "end": 351.64, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 351.64, + "end": 351.7, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 351.7, + "end": 351.76, + "probability": 1.0 + }, + { + "word": " like,", + "start": 351.76, + "end": 351.9, + "probability": 1.0 + } + ] + }, + { + "id": 204, + "text": "yeah, it's been a while since I had a Coke.", + "start": 352.06, + "end": 353.52, + "words": [ + { + "word": " yeah,", + "start": 352.06, + "end": 352.52, + "probability": 0.56689453125 + }, + { + "word": " it's", + "start": 352.56, + "end": 352.66, + "probability": 1.0 + }, + { + "word": " been", + "start": 352.66, + "end": 352.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 352.72, + "end": 352.82, + "probability": 1.0 + }, + { + "word": " while", + "start": 352.82, + "end": 352.9, + "probability": 0.9990234375 + }, + { + "word": " since", + "start": 352.9, + "end": 353.04, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 353.04, + "end": 353.16, + "probability": 1.0 + }, + { + "word": " had", + "start": 353.16, + "end": 353.24, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 353.24, + "end": 353.32, + "probability": 1.0 + }, + { + "word": " Coke.", + "start": 353.32, + "end": 353.52, + "probability": 1.0 + } + ] + }, + { + "id": 205, + "text": "Yeah, I don't know.", + "start": 354.72, + "end": 355.84, + "words": [ + { + "word": " Yeah,", + "start": 354.72, + "end": 355.04, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 355.14, + "end": 355.3, + "probability": 1.0 + }, + { + "word": " don't", + "start": 355.3, + "end": 355.72, + "probability": 1.0 + }, + { + "word": " know.", + "start": 355.72, + "end": 355.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 206, + "text": "In fact, I almost feel like...", + "start": 356.04, + "end": 358.16, + "words": [ + { + "word": " In", + "start": 356.04, + "end": 356.34, + "probability": 0.99267578125 + }, + { + "word": " fact,", + "start": 356.34, + "end": 357.22, + "probability": 1.0 + }, + { + "word": " I", + "start": 357.22, + "end": 357.36, + "probability": 1.0 + }, + { + "word": " almost", + "start": 357.36, + "end": 357.58, + "probability": 0.9990234375 + }, + { + "word": " feel", + "start": 357.58, + "end": 357.82, + "probability": 0.99951171875 + }, + { + "word": " like...", + "start": 357.82, + "end": 358.16, + "probability": 0.26416015625 + } + ] + }, + { + "id": 207, + "text": "I'm offended at the movie theaters.", + "start": 358.18, + "end": 359.5, + "words": [ + { + "word": " I'm", + "start": 358.18, + "end": 358.42, + "probability": 0.16552734375 + }, + { + "word": " offended", + "start": 358.42, + "end": 358.42, + "probability": 0.32568359375 + }, + { + "word": " at", + "start": 358.42, + "end": 358.76, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 358.76, + "end": 358.9, + "probability": 0.99951171875 + }, + { + "word": " movie", + "start": 358.9, + "end": 359.14, + "probability": 0.99951171875 + }, + { + "word": " theaters.", + "start": 359.14, + "end": 359.5, + "probability": 0.9921875 + } + ] + }, + { + "id": 208, + "text": "Yeah.", + "start": 359.76, + "end": 360.22, + "words": [ + { + "word": " Yeah.", + "start": 359.76, + "end": 360.22, + "probability": 0.90576171875 + } + ] + }, + { + "id": 209, + "text": "Where it's just like, okay,", + "start": 360.36, + "end": 362.0, + "words": [ + { + "word": " Where", + "start": 360.36, + "end": 360.7, + "probability": 0.9462890625 + }, + { + "word": " it's", + "start": 360.7, + "end": 361.0, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 361.0, + "end": 361.16, + "probability": 1.0 + }, + { + "word": " like,", + "start": 361.16, + "end": 361.42, + "probability": 0.99365234375 + }, + { + "word": " okay,", + "start": 361.54, + "end": 362.0, + "probability": 0.86669921875 + } + ] + }, + { + "id": 210, + "text": "if you can have a...", + "start": 362.5, + "end": 363.96, + "words": [ + { + "word": " if", + "start": 362.5, + "end": 362.98, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 362.98, + "end": 363.42, + "probability": 1.0 + }, + { + "word": " can", + "start": 363.42, + "end": 363.52, + "probability": 1.0 + }, + { + "word": " have", + "start": 363.52, + "end": 363.82, + "probability": 1.0 + }, + { + "word": " a...", + "start": 363.82, + "end": 363.96, + "probability": 0.1251220703125 + } + ] + }, + { + "id": 211, + "text": "First of all, I don't understand how", + "start": 363.96, + "end": 365.76, + "words": [ + { + "word": " First", + "start": 363.96, + "end": 364.54, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 364.54, + "end": 364.74, + "probability": 1.0 + }, + { + "word": " all,", + "start": 364.74, + "end": 364.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 364.88, + "end": 364.98, + "probability": 1.0 + }, + { + "word": " don't", + "start": 364.98, + "end": 365.1, + "probability": 1.0 + }, + { + "word": " understand", + "start": 365.1, + "end": 365.38, + "probability": 1.0 + }, + { + "word": " how", + "start": 365.38, + "end": 365.76, + "probability": 1.0 + } + ] + }, + { + "id": 212, + "text": "Coke advertising is supposed to work.", + "start": 366.56, + "end": 368.4, + "words": [ + { + "word": " Coke", + "start": 366.56, + "end": 367.04, + "probability": 0.85693359375 + }, + { + "word": " advertising", + "start": 367.04, + "end": 367.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 367.44, + "end": 367.82, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 367.82, + "end": 367.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 367.98, + "end": 368.22, + "probability": 1.0 + }, + { + "word": " work.", + "start": 368.22, + "end": 368.4, + "probability": 1.0 + } + ] + }, + { + "id": 213, + "text": "Right, because", + "start": 368.64, + "end": 369.46, + "words": [ + { + "word": " Right,", + "start": 368.64, + "end": 369.12, + "probability": 0.68115234375 + }, + { + "word": " because", + "start": 369.14, + "end": 369.46, + "probability": 1.0 + } + ] + }, + { + "id": 214, + "text": "every Coke commercial", + "start": 370.18, + "end": 371.42, + "words": [ + { + "word": " every", + "start": 370.18, + "end": 370.66, + "probability": 0.99951171875 + }, + { + "word": " Coke", + "start": 370.66, + "end": 371.04, + "probability": 1.0 + }, + { + "word": " commercial", + "start": 371.04, + "end": 371.42, + "probability": 1.0 + } + ] + }, + { + "id": 215, + "text": "almost, I mean,", + "start": 372.46, + "end": 373.56, + "words": [ + { + "word": " almost,", + "start": 372.46, + "end": 372.94, + "probability": 0.595703125 + }, + { + "word": " I", + "start": 373.32, + "end": 373.4, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 373.4, + "end": 373.56, + "probability": 1.0 + } + ] + }, + { + "id": 216, + "text": "if you were to replace the Coke,", + "start": 373.58, + "end": 375.62, + "words": [ + { + "word": " if", + "start": 373.58, + "end": 374.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 374.14, + "end": 374.32, + "probability": 1.0 + }, + { + "word": " were", + "start": 374.32, + "end": 374.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 374.44, + "end": 374.56, + "probability": 1.0 + }, + { + "word": " replace", + "start": 374.56, + "end": 374.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 374.98, + "end": 375.26, + "probability": 1.0 + }, + { + "word": " Coke,", + "start": 375.26, + "end": 375.62, + "probability": 1.0 + } + ] + }, + { + "id": 217, + "text": "would be a hallucinogenic drug.", + "start": 375.7, + "end": 378.52, + "words": [ + { + "word": " would", + "start": 375.7, + "end": 376.02, + "probability": 0.896484375 + }, + { + "word": " be", + "start": 376.02, + "end": 376.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 376.26, + "end": 376.74, + "probability": 1.0 + }, + { + "word": " hallucinogenic", + "start": 376.74, + "end": 378.14, + "probability": 1.0 + }, + { + "word": " drug.", + "start": 378.14, + "end": 378.52, + "probability": 0.99755859375 + } + ] + }, + { + "id": 218, + "text": "It's true.", + "start": 378.84, + "end": 379.28, + "words": [ + { + "word": " It's", + "start": 378.84, + "end": 379.08, + "probability": 0.986328125 + }, + { + "word": " true.", + "start": 379.08, + "end": 379.28, + "probability": 1.0 + } + ] + }, + { + "id": 219, + "text": "Right, it would just be,", + "start": 379.6, + "end": 380.8, + "words": [ + { + "word": " Right,", + "start": 379.6, + "end": 379.76, + "probability": 0.9375 + }, + { + "word": " it", + "start": 379.86, + "end": 379.98, + "probability": 1.0 + }, + { + "word": " would", + "start": 379.98, + "end": 380.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 380.3, + "end": 380.54, + "probability": 1.0 + }, + { + "word": " be,", + "start": 380.54, + "end": 380.8, + "probability": 1.0 + } + ] + }, + { + "id": 220, + "text": "you know, you're imagining suddenly", + "start": 381.5, + "end": 383.14, + "words": [ + { + "word": " you", + "start": 381.32, + "end": 381.56, + "probability": 1.0 + }, + { + "word": " know,", + "start": 381.56, + "end": 381.72, + "probability": 0.92626953125 + }, + { + "word": " you're", + "start": 381.72, + "end": 381.94, + "probability": 1.0 + }, + { + "word": " imagining", + "start": 381.94, + "end": 382.42, + "probability": 1.0 + }, + { + "word": " suddenly", + "start": 382.42, + "end": 383.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 221, + "text": "that there are people dancing in the car wash.", + "start": 383.14, + "end": 385.28, + "words": [ + { + "word": " that", + "start": 383.14, + "end": 383.64, + "probability": 1.0 + }, + { + "word": " there", + "start": 383.64, + "end": 383.88, + "probability": 1.0 + }, + { + "word": " are", + "start": 383.88, + "end": 384.02, + "probability": 1.0 + }, + { + "word": " people", + "start": 384.02, + "end": 384.24, + "probability": 1.0 + }, + { + "word": " dancing", + "start": 384.24, + "end": 384.66, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 384.66, + "end": 384.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 384.84, + "end": 384.88, + "probability": 1.0 + }, + { + "word": " car", + "start": 384.88, + "end": 385.02, + "probability": 0.99951171875 + }, + { + "word": " wash.", + "start": 385.02, + "end": 385.28, + "probability": 0.98583984375 + } + ] + }, + { + "id": 222, + "text": "Also, I've never had an event,", + "start": 386.31999999999994, + "end": 388.04, + "words": [ + { + "word": " Also,", + "start": 386.31999999999994, + "end": 386.79999999999995, + "probability": 0.99609375 + }, + { + "word": " I've", + "start": 386.79999999999995, + "end": 387.28, + "probability": 1.0 + }, + { + "word": " never", + "start": 387.28, + "end": 387.48, + "probability": 1.0 + }, + { + "word": " had", + "start": 387.48, + "end": 387.7, + "probability": 1.0 + }, + { + "word": " an", + "start": 387.7, + "end": 387.84, + "probability": 0.99951171875 + }, + { + "word": " event,", + "start": 387.84, + "end": 388.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 223, + "text": "and I've never had an event ruined", + "start": 388.04, + "end": 388.28, + "words": [ + { + "word": " and", + "start": 388.04, + "end": 388.04, + "probability": 0.0106201171875 + }, + { + "word": " I've", + "start": 388.04, + "end": 388.16, + "probability": 0.28173828125 + }, + { + "word": " never", + "start": 388.16, + "end": 388.16, + "probability": 0.282470703125 + }, + { + "word": " had", + "start": 388.16, + "end": 388.16, + "probability": 0.00356292724609375 + }, + { + "word": " an", + "start": 388.16, + "end": 388.16, + "probability": 0.00879669189453125 + }, + { + "word": " event", + "start": 388.16, + "end": 388.16, + "probability": 0.479248046875 + }, + { + "word": " ruined", + "start": 388.16, + "end": 388.28, + "probability": 0.9892578125 + } + ] + }, + { + "id": 224, + "text": "because I didn't have", + "start": 388.28, + "end": 389.42, + "words": [ + { + "word": " because", + "start": 388.28, + "end": 388.7, + "probability": 0.98681640625 + }, + { + "word": " I", + "start": 388.7, + "end": 388.88, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 388.88, + "end": 389.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 389.16, + "end": 389.42, + "probability": 1.0 + } + ] + }, + { + "id": 225, + "text": "a particular brand of soda there.", + "start": 389.42, + "end": 391.08, + "words": [ + { + "word": " a", + "start": 389.42, + "end": 389.9, + "probability": 0.99951171875 + }, + { + "word": " particular", + "start": 389.9, + "end": 390.18, + "probability": 0.99951171875 + }, + { + "word": " brand", + "start": 390.18, + "end": 390.52, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 390.52, + "end": 390.68, + "probability": 1.0 + }, + { + "word": " soda", + "start": 390.68, + "end": 390.84, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 390.84, + "end": 391.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 226, + "text": "Like, I've never been, like, at the beach,", + "start": 391.7, + "end": 392.96, + "words": [ + { + "word": " Like,", + "start": 391.7, + "end": 392.02, + "probability": 0.603515625 + }, + { + "word": " I've", + "start": 392.02, + "end": 392.12, + "probability": 1.0 + }, + { + "word": " never", + "start": 392.12, + "end": 392.24, + "probability": 1.0 + }, + { + "word": " been,", + "start": 392.24, + "end": 392.38, + "probability": 1.0 + }, + { + "word": " like,", + "start": 392.42, + "end": 392.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 392.54, + "end": 392.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 392.6, + "end": 392.72, + "probability": 1.0 + }, + { + "word": " beach,", + "start": 392.72, + "end": 392.96, + "probability": 1.0 + } + ] + }, + { + "id": 227, + "text": "and I was like, man,", + "start": 393.0, + "end": 393.56, + "words": [ + { + "word": " and", + "start": 393.0, + "end": 393.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 393.06, + "end": 393.1, + "probability": 1.0 + }, + { + "word": " was", + "start": 393.1, + "end": 393.16, + "probability": 1.0 + }, + { + "word": " like,", + "start": 393.16, + "end": 393.32, + "probability": 0.9951171875 + }, + { + "word": " man,", + "start": 393.38, + "end": 393.56, + "probability": 0.9951171875 + } + ] + }, + { + "id": 228, + "text": "this would have been way better with a Pepsi.", + "start": 393.66, + "end": 394.92, + "words": [ + { + "word": " this", + "start": 393.66, + "end": 393.78, + "probability": 1.0 + }, + { + "word": " would", + "start": 393.78, + "end": 393.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 393.86, + "end": 393.94, + "probability": 0.9853515625 + }, + { + "word": " been", + "start": 393.94, + "end": 394.04, + "probability": 1.0 + }, + { + "word": " way", + "start": 394.04, + "end": 394.24, + "probability": 1.0 + }, + { + "word": " better", + "start": 394.24, + "end": 394.44, + "probability": 1.0 + }, + { + "word": " with", + "start": 394.44, + "end": 394.6, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 394.6, + "end": 394.66, + "probability": 1.0 + }, + { + "word": " Pepsi.", + "start": 394.66, + "end": 394.92, + "probability": 1.0 + } + ] + }, + { + "id": 229, + "text": "Also, I can't...", + "start": 397.36, + "end": 398.34, + "words": [ + { + "word": " Also,", + "start": 397.36, + "end": 397.68, + "probability": 0.96875 + }, + { + "word": " I", + "start": 397.86, + "end": 397.94, + "probability": 0.9697265625 + }, + { + "word": " can't...", + "start": 397.94, + "end": 398.34, + "probability": 0.72412109375 + } + ] + }, + { + "id": 230, + "text": "There's no way for me to be any more aware", + "start": 398.34, + "end": 400.12, + "words": [ + { + "word": " There's", + "start": 398.34, + "end": 398.54, + "probability": 0.9052734375 + }, + { + "word": " no", + "start": 398.54, + "end": 398.64, + "probability": 1.0 + }, + { + "word": " way", + "start": 398.64, + "end": 398.86, + "probability": 1.0 + }, + { + "word": " for", + "start": 398.86, + "end": 399.02, + "probability": 1.0 + }, + { + "word": " me", + "start": 399.02, + "end": 399.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 399.14, + "end": 399.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 399.26, + "end": 399.34, + "probability": 1.0 + }, + { + "word": " any", + "start": 399.34, + "end": 399.58, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 399.58, + "end": 399.82, + "probability": 1.0 + }, + { + "word": " aware", + "start": 399.82, + "end": 400.12, + "probability": 1.0 + } + ] + }, + { + "id": 231, + "text": "that Coke exists.", + "start": 400.12, + "end": 401.0, + "words": [ + { + "word": " that", + "start": 400.12, + "end": 400.48, + "probability": 1.0 + }, + { + "word": " Coke", + "start": 400.48, + "end": 400.66, + "probability": 0.98974609375 + }, + { + "word": " exists.", + "start": 400.66, + "end": 401.0, + "probability": 1.0 + } + ] + }, + { + "id": 232, + "text": "Like, I don't need to see an ad ever again.", + "start": 402.52, + "end": 404.2, + "words": [ + { + "word": " Like,", + "start": 402.52, + "end": 402.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 402.86, + "end": 402.94, + "probability": 1.0 + }, + { + "word": " don't", + "start": 402.94, + "end": 403.1, + "probability": 1.0 + }, + { + "word": " need", + "start": 403.1, + "end": 403.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 403.2, + "end": 403.32, + "probability": 1.0 + }, + { + "word": " see", + "start": 403.32, + "end": 403.5, + "probability": 1.0 + }, + { + "word": " an", + "start": 403.5, + "end": 403.6, + "probability": 1.0 + }, + { + "word": " ad", + "start": 403.6, + "end": 403.76, + "probability": 1.0 + }, + { + "word": " ever", + "start": 403.76, + "end": 403.94, + "probability": 1.0 + }, + { + "word": " again.", + "start": 403.94, + "end": 404.2, + "probability": 1.0 + } + ] + }, + { + "id": 233, + "text": "Yeah, Coke's one of those things", + "start": 405.06, + "end": 406.18, + "words": [ + { + "word": " Yeah,", + "start": 405.06, + "end": 405.38, + "probability": 0.99951171875 + }, + { + "word": " Coke's", + "start": 405.46, + "end": 405.78, + "probability": 1.0 + }, + { + "word": " one", + "start": 405.78, + "end": 405.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 405.88, + "end": 405.96, + "probability": 1.0 + }, + { + "word": " those", + "start": 405.96, + "end": 406.02, + "probability": 1.0 + }, + { + "word": " things", + "start": 406.02, + "end": 406.18, + "probability": 1.0 + } + ] + }, + { + "id": 234, + "text": "where it's sort of...", + "start": 406.18, + "end": 406.92, + "words": [ + { + "word": " where", + "start": 406.18, + "end": 406.32, + "probability": 0.9833984375 + }, + { + "word": " it's", + "start": 406.32, + "end": 406.46, + "probability": 0.9970703125 + }, + { + "word": " sort", + "start": 406.46, + "end": 406.56, + "probability": 1.0 + }, + { + "word": " of...", + "start": 406.56, + "end": 406.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 235, + "text": "Everyone knows.", + "start": 407.88, + "end": 408.52, + "words": [ + { + "word": " Everyone", + "start": 407.88, + "end": 408.2, + "probability": 0.9072265625 + }, + { + "word": " knows.", + "start": 408.2, + "end": 408.52, + "probability": 1.0 + } + ] + }, + { + "id": 236, + "text": "I feel like they're just advertising", + "start": 408.8, + "end": 409.66, + "words": [ + { + "word": " I", + "start": 408.8, + "end": 408.86, + "probability": 1.0 + }, + { + "word": " feel", + "start": 408.86, + "end": 409.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 409.02, + "end": 409.1, + "probability": 1.0 + }, + { + "word": " they're", + "start": 409.1, + "end": 409.22, + "probability": 1.0 + }, + { + "word": " just", + "start": 409.22, + "end": 409.34, + "probability": 1.0 + }, + { + "word": " advertising", + "start": 409.34, + "end": 409.66, + "probability": 1.0 + } + ] + }, + { + "id": 237, + "text": "because that's what they've always done", + "start": 409.66, + "end": 410.86, + "words": [ + { + "word": " because", + "start": 409.66, + "end": 409.98, + "probability": 0.99267578125 + }, + { + "word": " that's", + "start": 409.98, + "end": 410.28, + "probability": 1.0 + }, + { + "word": " what", + "start": 410.28, + "end": 410.32, + "probability": 1.0 + }, + { + "word": " they've", + "start": 410.32, + "end": 410.48, + "probability": 1.0 + }, + { + "word": " always", + "start": 410.48, + "end": 410.64, + "probability": 1.0 + }, + { + "word": " done", + "start": 410.64, + "end": 410.86, + "probability": 1.0 + } + ] + }, + { + "id": 238, + "text": "at this point.", + "start": 410.86, + "end": 411.68, + "words": [ + { + "word": " at", + "start": 410.86, + "end": 411.28, + "probability": 0.99462890625 + }, + { + "word": " this", + "start": 411.28, + "end": 411.48, + "probability": 1.0 + }, + { + "word": " point.", + "start": 411.48, + "end": 411.68, + "probability": 1.0 + } + ] + }, + { + "id": 239, + "text": "Nobody's going to not know about Coke.", + "start": 412.6, + "end": 414.12, + "words": [ + { + "word": " Nobody's", + "start": 412.6, + "end": 412.92, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 412.92, + "end": 413.02, + "probability": 0.89306640625 + }, + { + "word": " to", + "start": 413.02, + "end": 413.14, + "probability": 1.0 + }, + { + "word": " not", + "start": 413.14, + "end": 413.32, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 413.32, + "end": 413.52, + "probability": 1.0 + }, + { + "word": " about", + "start": 413.52, + "end": 413.78, + "probability": 1.0 + }, + { + "word": " Coke.", + "start": 413.78, + "end": 414.12, + "probability": 1.0 + } + ] + }, + { + "id": 240, + "text": "I think it's a tax credit.", + "start": 414.26, + "end": 415.24, + "words": [ + { + "word": " I", + "start": 414.26, + "end": 414.4, + "probability": 0.9931640625 + }, + { + "word": " think", + "start": 414.4, + "end": 414.52, + "probability": 0.58837890625 + }, + { + "word": " it's", + "start": 414.52, + "end": 414.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 414.74, + "end": 414.78, + "probability": 0.99169921875 + }, + { + "word": " tax", + "start": 414.78, + "end": 414.98, + "probability": 0.974609375 + }, + { + "word": " credit.", + "start": 414.98, + "end": 415.24, + "probability": 0.4716796875 + } + ] + }, + { + "id": 241, + "text": "It must be something like that.", + "start": 415.56, + "end": 417.04, + "words": [ + { + "word": " It", + "start": 415.56, + "end": 415.88, + "probability": 0.998046875 + }, + { + "word": " must", + "start": 415.88, + "end": 416.0, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 416.0, + "end": 416.2, + "probability": 1.0 + }, + { + "word": " something", + "start": 416.2, + "end": 416.56, + "probability": 0.5185546875 + }, + { + "word": " like", + "start": 416.56, + "end": 416.84, + "probability": 1.0 + }, + { + "word": " that.", + "start": 416.84, + "end": 417.04, + "probability": 1.0 + } + ] + }, + { + "id": 242, + "text": "Yeah, because...", + "start": 417.2, + "end": 417.82, + "words": [ + { + "word": " Yeah,", + "start": 417.2, + "end": 417.48, + "probability": 0.8173828125 + }, + { + "word": " because...", + "start": 417.48, + "end": 417.82, + "probability": 0.99755859375 + } + ] + }, + { + "id": 243, + "text": "Because they could not advertise", + "start": 417.82, + "end": 418.64, + "words": [ + { + "word": " Because", + "start": 417.82, + "end": 417.9, + "probability": 0.95654296875 + }, + { + "word": " they", + "start": 417.9, + "end": 418.0, + "probability": 1.0 + }, + { + "word": " could", + "start": 418.0, + "end": 418.1, + "probability": 1.0 + }, + { + "word": " not", + "start": 418.1, + "end": 418.26, + "probability": 1.0 + }, + { + "word": " advertise", + "start": 418.26, + "end": 418.64, + "probability": 1.0 + } + ] + }, + { + "id": 244, + "text": "for ten straight years,", + "start": 418.64, + "end": 419.52, + "words": [ + { + "word": " for", + "start": 418.64, + "end": 418.88, + "probability": 1.0 + }, + { + "word": " ten", + "start": 418.88, + "end": 419.04, + "probability": 0.29736328125 + }, + { + "word": " straight", + "start": 419.04, + "end": 419.28, + "probability": 1.0 + }, + { + "word": " years,", + "start": 419.28, + "end": 419.52, + "probability": 1.0 + } + ] + }, + { + "id": 245, + "text": "and I would buy the same amount of Coke", + "start": 419.58, + "end": 420.8, + "words": [ + { + "word": " and", + "start": 419.58, + "end": 419.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 419.64, + "end": 419.72, + "probability": 1.0 + }, + { + "word": " would", + "start": 419.72, + "end": 419.82, + "probability": 1.0 + }, + { + "word": " buy", + "start": 419.82, + "end": 419.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 419.98, + "end": 420.08, + "probability": 1.0 + }, + { + "word": " same", + "start": 420.08, + "end": 420.3, + "probability": 1.0 + }, + { + "word": " amount", + "start": 420.3, + "end": 420.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 420.5, + "end": 420.64, + "probability": 1.0 + }, + { + "word": " Coke", + "start": 420.64, + "end": 420.8, + "probability": 0.98046875 + } + ] + }, + { + "id": 246, + "text": "that I do anyway,", + "start": 420.8, + "end": 421.7, + "words": [ + { + "word": " that", + "start": 420.8, + "end": 421.24, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 421.24, + "end": 421.34, + "probability": 1.0 + }, + { + "word": " do", + "start": 421.34, + "end": 421.46, + "probability": 0.99951171875 + }, + { + "word": " anyway,", + "start": 421.46, + "end": 421.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 247, + "text": "which is every now and then.", + "start": 422.38, + "end": 423.64, + "words": [ + { + "word": " which", + "start": 422.38, + "end": 422.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 422.78, + "end": 422.9, + "probability": 1.0 + }, + { + "word": " every", + "start": 422.9, + "end": 423.16, + "probability": 1.0 + }, + { + "word": " now", + "start": 423.16, + "end": 423.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 423.34, + "end": 423.48, + "probability": 1.0 + }, + { + "word": " then.", + "start": 423.48, + "end": 423.64, + "probability": 1.0 + } + ] + }, + { + "id": 248, + "text": "On occasion.", + "start": 423.96, + "end": 424.64, + "words": [ + { + "word": " On", + "start": 423.96, + "end": 424.36, + "probability": 0.7333984375 + }, + { + "word": " occasion.", + "start": 424.36, + "end": 424.64, + "probability": 1.0 + } + ] + }, + { + "id": 249, + "text": "If the gas station that I'm at", + "start": 424.78, + "end": 426.24, + "words": [ + { + "word": " If", + "start": 424.78, + "end": 425.18, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 425.18, + "end": 425.34, + "probability": 1.0 + }, + { + "word": " gas", + "start": 425.34, + "end": 425.54, + "probability": 1.0 + }, + { + "word": " station", + "start": 425.54, + "end": 425.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 425.82, + "end": 426.02, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 426.02, + "end": 426.16, + "probability": 1.0 + }, + { + "word": " at", + "start": 426.16, + "end": 426.24, + "probability": 1.0 + } + ] + }, + { + "id": 250, + "text": "doesn't have, like, an iced tea.", + "start": 426.24, + "end": 427.62, + "words": [ + { + "word": " doesn't", + "start": 426.24, + "end": 426.52, + "probability": 1.0 + }, + { + "word": " have,", + "start": 426.52, + "end": 426.74, + "probability": 1.0 + }, + { + "word": " like,", + "start": 426.82, + "end": 427.08, + "probability": 1.0 + }, + { + "word": " an", + "start": 427.12, + "end": 427.26, + "probability": 0.99951171875 + }, + { + "word": " iced", + "start": 427.26, + "end": 427.4, + "probability": 0.986328125 + }, + { + "word": " tea.", + "start": 427.4, + "end": 427.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 251, + "text": "Which is probably sold and distributed", + "start": 429.22, + "end": 431.7, + "words": [ + { + "word": " Which", + "start": 429.22, + "end": 429.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 429.62, + "end": 429.74, + "probability": 1.0 + }, + { + "word": " probably", + "start": 429.74, + "end": 430.06, + "probability": 1.0 + }, + { + "word": " sold", + "start": 430.06, + "end": 431.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 431.22, + "end": 431.4, + "probability": 1.0 + }, + { + "word": " distributed", + "start": 431.4, + "end": 431.7, + "probability": 1.0 + } + ] + }, + { + "id": 252, + "text": "by Coke anyway.", + "start": 431.7, + "end": 432.46, + "words": [ + { + "word": " by", + "start": 431.7, + "end": 432.0, + "probability": 1.0 + }, + { + "word": " Coke", + "start": 432.0, + "end": 432.24, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 432.24, + "end": 432.46, + "probability": 0.9970703125 + } + ] + }, + { + "id": 253, + "text": "Almost certainly, yeah.", + "start": 432.46, + "end": 433.36, + "words": [ + { + "word": " Almost", + "start": 432.46, + "end": 432.72, + "probability": 0.9970703125 + }, + { + "word": " certainly,", + "start": 432.72, + "end": 432.98, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 433.14, + "end": 433.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 254, + "text": "Yeah, Coke is one of those companies", + "start": 433.68, + "end": 435.8, + "words": [ + { + "word": " Yeah,", + "start": 433.68, + "end": 434.08, + "probability": 0.994140625 + }, + { + "word": " Coke", + "start": 434.08, + "end": 434.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 434.26, + "end": 434.42, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 434.42, + "end": 434.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 434.56, + "end": 434.64, + "probability": 1.0 + }, + { + "word": " those", + "start": 434.64, + "end": 434.82, + "probability": 1.0 + }, + { + "word": " companies", + "start": 434.82, + "end": 435.8, + "probability": 0.9951171875 + } + ] + }, + { + "id": 255, + "text": "that, at least in the beverage world,", + "start": 435.8, + "end": 437.98, + "words": [ + { + "word": " that,", + "start": 435.8, + "end": 436.28, + "probability": 1.0 + }, + { + "word": " at", + "start": 436.36, + "end": 436.94, + "probability": 1.0 + }, + { + "word": " least", + "start": 436.94, + "end": 437.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 437.12, + "end": 437.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 437.26, + "end": 437.36, + "probability": 1.0 + }, + { + "word": " beverage", + "start": 437.36, + "end": 437.6, + "probability": 1.0 + }, + { + "word": " world,", + "start": 437.6, + "end": 437.98, + "probability": 1.0 + } + ] + }, + { + "id": 256, + "text": "that is...", + "start": 438.74000000000007, + "end": 439.54, + "words": [ + { + "word": " that", + "start": 438.74000000000007, + "end": 439.14000000000004, + "probability": 0.9287109375 + }, + { + "word": " is...", + "start": 439.14000000000004, + "end": 439.54, + "probability": 0.54638671875 + } + ] + }, + { + "id": 257, + "text": "They're much like Disney in that regard.", + "start": 439.54, + "end": 441.14, + "words": [ + { + "word": " They're", + "start": 439.54, + "end": 439.72, + "probability": 0.95556640625 + }, + { + "word": " much", + "start": 439.72, + "end": 439.9, + "probability": 1.0 + }, + { + "word": " like", + "start": 439.9, + "end": 440.06, + "probability": 1.0 + }, + { + "word": " Disney", + "start": 440.06, + "end": 440.38, + "probability": 1.0 + }, + { + "word": " in", + "start": 440.38, + "end": 440.7, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 440.7, + "end": 440.9, + "probability": 1.0 + }, + { + "word": " regard.", + "start": 440.9, + "end": 441.14, + "probability": 1.0 + } + ] + }, + { + "id": 258, + "text": "They just own everything?", + "start": 441.88, + "end": 442.9, + "words": [ + { + "word": " They", + "start": 441.88, + "end": 442.28, + "probability": 0.9931640625 + }, + { + "word": " just", + "start": 442.28, + "end": 442.5, + "probability": 1.0 + }, + { + "word": " own", + "start": 442.5, + "end": 442.64, + "probability": 0.99951171875 + }, + { + "word": " everything?", + "start": 442.64, + "end": 442.9, + "probability": 1.0 + } + ] + }, + { + "id": 259, + "text": "Yeah, they own all the things.", + "start": 443.18, + "end": 444.98, + "words": [ + { + "word": " Yeah,", + "start": 443.18, + "end": 443.4, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 443.42, + "end": 443.52, + "probability": 1.0 + }, + { + "word": " own", + "start": 443.52, + "end": 443.68, + "probability": 1.0 + }, + { + "word": " all", + "start": 443.68, + "end": 444.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 444.42, + "end": 444.62, + "probability": 0.79833984375 + }, + { + "word": " things.", + "start": 444.62, + "end": 444.98, + "probability": 1.0 + } + ] + }, + { + "id": 260, + "text": "Yeah.", + "start": 446.28000000000003, + "end": 446.68, + "words": [ + { + "word": " Yeah.", + "start": 446.28000000000003, + "end": 446.68, + "probability": 0.98095703125 + } + ] + }, + { + "id": 261, + "text": "Anyway, the irritation level", + "start": 448.24, + "end": 450.22, + "words": [ + { + "word": " Anyway,", + "start": 448.24, + "end": 448.68, + "probability": 0.98095703125 + }, + { + "word": " the", + "start": 448.68, + "end": 449.12, + "probability": 1.0 + }, + { + "word": " irritation", + "start": 449.12, + "end": 449.64, + "probability": 0.99951171875 + }, + { + "word": " level", + "start": 449.64, + "end": 450.22, + "probability": 1.0 + } + ] + }, + { + "id": 262, + "text": "with the way that technology", + "start": 450.22, + "end": 453.3, + "words": [ + { + "word": " with", + "start": 450.22, + "end": 450.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 450.7, + "end": 451.46, + "probability": 0.99560546875 + }, + { + "word": " way", + "start": 451.46, + "end": 451.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 451.86, + "end": 452.3, + "probability": 1.0 + }, + { + "word": " technology", + "start": 452.3, + "end": 453.3, + "probability": 1.0 + } + ] + }, + { + "id": 263, + "text": "is being used to advertise", + "start": 453.3, + "end": 454.86, + "words": [ + { + "word": " is", + "start": 453.3, + "end": 453.6, + "probability": 1.0 + }, + { + "word": " being", + "start": 453.6, + "end": 453.8, + "probability": 1.0 + }, + { + "word": " used", + "start": 453.8, + "end": 454.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 454.1, + "end": 454.3, + "probability": 1.0 + }, + { + "word": " advertise", + "start": 454.3, + "end": 454.86, + "probability": 1.0 + } + ] + }, + { + "id": 264, + "text": "is high.", + "start": 455.94, + "end": 456.82, + "words": [ + { + "word": " is", + "start": 455.94, + "end": 456.38, + "probability": 1.0 + }, + { + "word": " high.", + "start": 456.38, + "end": 456.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 265, + "text": "I mean, it's like an arms race.", + "start": 457.18, + "end": 458.7, + "words": [ + { + "word": " I", + "start": 457.18, + "end": 457.28, + "probability": 0.92919921875 + }, + { + "word": " mean,", + "start": 457.28, + "end": 457.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 457.38, + "end": 457.9, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 457.9, + "end": 458.0, + "probability": 1.0 + }, + { + "word": " an", + "start": 458.0, + "end": 458.2, + "probability": 1.0 + }, + { + "word": " arms", + "start": 458.2, + "end": 458.46, + "probability": 0.9990234375 + }, + { + "word": " race.", + "start": 458.46, + "end": 458.7, + "probability": 1.0 + } + ] + }, + { + "id": 266, + "text": "There's so much invested in blocking ads", + "start": 458.82, + "end": 461.54, + "words": [ + { + "word": " There's", + "start": 458.82, + "end": 458.96, + "probability": 1.0 + }, + { + "word": " so", + "start": 458.96, + "end": 459.1, + "probability": 1.0 + }, + { + "word": " much", + "start": 459.1, + "end": 459.42, + "probability": 0.99267578125 + }, + { + "word": " invested", + "start": 459.42, + "end": 460.6, + "probability": 1.0 + }, + { + "word": " in", + "start": 460.6, + "end": 460.88, + "probability": 1.0 + }, + { + "word": " blocking", + "start": 460.88, + "end": 461.2, + "probability": 1.0 + }, + { + "word": " ads", + "start": 461.2, + "end": 461.54, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "and then blocking ad blockers.", + "start": 461.54, + "end": 462.96, + "words": [ + { + "word": " and", + "start": 461.54, + "end": 461.82, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 461.82, + "end": 461.94, + "probability": 1.0 + }, + { + "word": " blocking", + "start": 461.94, + "end": 462.26, + "probability": 1.0 + }, + { + "word": " ad", + "start": 462.26, + "end": 462.52, + "probability": 0.99951171875 + }, + { + "word": " blockers.", + "start": 462.52, + "end": 462.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 268, + "text": "Right, well, it's hard to do at the gas station.", + "start": 463.62, + "end": 465.36, + "words": [ + { + "word": " Right,", + "start": 463.62, + "end": 464.06, + "probability": 0.99853515625 + }, + { + "word": " well,", + "start": 464.14, + "end": 464.18, + "probability": 0.98974609375 + }, + { + "word": " it's", + "start": 464.24, + "end": 464.46, + "probability": 1.0 + }, + { + "word": " hard", + "start": 464.46, + "end": 464.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 464.56, + "end": 464.68, + "probability": 1.0 + }, + { + "word": " do", + "start": 464.68, + "end": 464.8, + "probability": 1.0 + }, + { + "word": " at", + "start": 464.8, + "end": 464.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 464.88, + "end": 464.92, + "probability": 1.0 + }, + { + "word": " gas", + "start": 464.92, + "end": 465.08, + "probability": 0.99951171875 + }, + { + "word": " station.", + "start": 465.08, + "end": 465.36, + "probability": 1.0 + } + ] + }, + { + "id": 269, + "text": "Yeah, I don't know what...", + "start": 465.78, + "end": 466.72, + "words": [ + { + "word": " Yeah,", + "start": 465.78, + "end": 466.2, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 466.2, + "end": 466.3, + "probability": 1.0 + }, + { + "word": " don't", + "start": 466.3, + "end": 466.38, + "probability": 0.986328125 + }, + { + "word": " know", + "start": 466.38, + "end": 466.46, + "probability": 1.0 + }, + { + "word": " what...", + "start": 466.46, + "end": 466.72, + "probability": 0.53857421875 + } + ] + }, + { + "id": 270, + "text": "I was thinking about making some, like,", + "start": 466.72, + "end": 468.3, + "words": [ + { + "word": " I", + "start": 466.72, + "end": 466.78, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 466.78, + "end": 466.9, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 466.9, + "end": 467.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 467.04, + "end": 467.26, + "probability": 1.0 + }, + { + "word": " making", + "start": 467.26, + "end": 467.6, + "probability": 1.0 + }, + { + "word": " some,", + "start": 467.6, + "end": 467.92, + "probability": 1.0 + }, + { + "word": " like,", + "start": 467.92, + "end": 468.3, + "probability": 1.0 + } + ] + }, + { + "id": 271, + "text": "AR glasses that detect ads.", + "start": 468.3, + "end": 469.68, + "words": [ + { + "word": " AR", + "start": 468.3, + "end": 468.5, + "probability": 1.0 + }, + { + "word": " glasses", + "start": 468.5, + "end": 468.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 468.8, + "end": 469.16, + "probability": 1.0 + }, + { + "word": " detect", + "start": 469.16, + "end": 469.4, + "probability": 1.0 + }, + { + "word": " ads.", + "start": 469.4, + "end": 469.68, + "probability": 1.0 + } + ] + }, + { + "id": 272, + "text": "Do you think that maybe they'll move towards,", + "start": 469.88, + "end": 471.66, + "words": [ + { + "word": " Do", + "start": 469.88, + "end": 470.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 470.02, + "end": 470.12, + "probability": 1.0 + }, + { + "word": " think", + "start": 470.12, + "end": 470.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 470.32, + "end": 470.48, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 470.48, + "end": 470.66, + "probability": 1.0 + }, + { + "word": " they'll", + "start": 470.66, + "end": 470.94, + "probability": 1.0 + }, + { + "word": " move", + "start": 470.94, + "end": 471.14, + "probability": 1.0 + }, + { + "word": " towards,", + "start": 471.14, + "end": 471.66, + "probability": 1.0 + } + ] + }, + { + "id": 273, + "text": "like, the ATMs before you get your cash out?", + "start": 471.66, + "end": 474.26, + "words": [ + { + "word": " like,", + "start": 471.66, + "end": 472.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 472.12, + "end": 472.24, + "probability": 1.0 + }, + { + "word": " ATMs", + "start": 472.24, + "end": 472.88, + "probability": 0.9990234375 + }, + { + "word": " before", + "start": 472.88, + "end": 473.16, + "probability": 0.986328125 + }, + { + "word": " you", + "start": 473.16, + "end": 473.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 473.44, + "end": 473.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 473.58, + "end": 473.74, + "probability": 1.0 + }, + { + "word": " cash", + "start": 473.74, + "end": 473.96, + "probability": 1.0 + }, + { + "word": " out?", + "start": 473.96, + "end": 474.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 274, + "text": "You have to watch a commercial.", + "start": 474.32, + "end": 475.46, + "words": [ + { + "word": " You", + "start": 474.32, + "end": 474.5, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 474.5, + "end": 474.62, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 474.62, + "end": 474.8, + "probability": 1.0 + }, + { + "word": " watch", + "start": 474.8, + "end": 475.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 475.0, + "end": 475.16, + "probability": 1.0 + }, + { + "word": " commercial.", + "start": 475.16, + "end": 475.46, + "probability": 1.0 + } + ] + }, + { + "id": 275, + "text": "That would not...", + "start": 475.78, + "end": 476.52, + "words": [ + { + "word": " That", + "start": 475.78, + "end": 476.02, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 476.02, + "end": 476.14, + "probability": 1.0 + }, + { + "word": " not...", + "start": 476.14, + "end": 476.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 276, + "text": "Don't even say that,", + "start": 476.52, + "end": 477.2, + "words": [ + { + "word": " Don't", + "start": 476.52, + "end": 476.66, + "probability": 0.9423828125 + }, + { + "word": " even", + "start": 476.66, + "end": 476.78, + "probability": 1.0 + }, + { + "word": " say", + "start": 476.78, + "end": 477.04, + "probability": 1.0 + }, + { + "word": " that,", + "start": 477.04, + "end": 477.2, + "probability": 1.0 + } + ] + }, + { + "id": 277, + "text": "because that's...", + "start": 477.24, + "end": 477.68, + "words": [ + { + "word": " because", + "start": 477.24, + "end": 477.38, + "probability": 0.9990234375 + }, + { + "word": " that's...", + "start": 477.38, + "end": 477.68, + "probability": 0.86865234375 + } + ] + }, + { + "id": 278, + "text": "That's probably going to happen.", + "start": 477.68, + "end": 478.58, + "words": [ + { + "word": " That's", + "start": 477.68, + "end": 477.88, + "probability": 0.50146484375 + }, + { + "word": " probably", + "start": 477.88, + "end": 477.88, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 477.88, + "end": 478.18, + "probability": 0.9873046875 + }, + { + "word": " to", + "start": 478.18, + "end": 478.28, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 478.28, + "end": 478.58, + "probability": 1.0 + } + ] + }, + { + "id": 279, + "text": "Yeah, you can't...", + "start": 480.2, + "end": 480.9, + "words": [ + { + "word": " Yeah,", + "start": 480.2, + "end": 480.52, + "probability": 0.97802734375 + }, + { + "word": " you", + "start": 480.54, + "end": 480.62, + "probability": 1.0 + }, + { + "word": " can't...", + "start": 480.62, + "end": 480.9, + "probability": 0.68310546875 + } + ] + }, + { + "id": 280, + "text": "You can't...", + "start": 480.9, + "end": 481.5, + "words": [ + { + "word": " You", + "start": 480.9, + "end": 481.12, + "probability": 0.04730224609375 + }, + { + "word": " can't...", + "start": 481.12, + "end": 481.5, + "probability": 0.9580078125 + } + ] + }, + { + "id": 281, + "text": "It's going to be like,", + "start": 481.5, + "end": 482.0, + "words": [ + { + "word": " It's", + "start": 481.5, + "end": 481.6, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 481.6, + "end": 481.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 481.72, + "end": 481.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 481.76, + "end": 481.86, + "probability": 1.0 + }, + { + "word": " like,", + "start": 481.86, + "end": 482.0, + "probability": 0.8837890625 + } + ] + }, + { + "id": 282, + "text": "pay a $1 fee or watch this ad.", + "start": 482.06, + "end": 483.86, + "words": [ + { + "word": " pay", + "start": 482.06, + "end": 482.2, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 482.2, + "end": 482.36, + "probability": 1.0 + }, + { + "word": " $1", + "start": 482.36, + "end": 482.7, + "probability": 0.9677734375 + }, + { + "word": " fee", + "start": 482.7, + "end": 482.98, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 482.98, + "end": 483.24, + "probability": 0.98583984375 + }, + { + "word": " watch", + "start": 483.24, + "end": 483.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 483.48, + "end": 483.66, + "probability": 0.99951171875 + }, + { + "word": " ad.", + "start": 483.66, + "end": 483.86, + "probability": 1.0 + } + ] + }, + { + "id": 283, + "text": "Oh, yeah.", + "start": 485.06, + "end": 485.7, + "words": [ + { + "word": " Oh,", + "start": 485.06, + "end": 485.38, + "probability": 0.9951171875 + }, + { + "word": " yeah.", + "start": 485.38, + "end": 485.7, + "probability": 1.0 + } + ] + }, + { + "id": 284, + "text": "Yeah.", + "start": 486.16, + "end": 486.48, + "words": [ + { + "word": " Yeah.", + "start": 486.16, + "end": 486.48, + "probability": 0.6650390625 + } + ] + }, + { + "id": 285, + "text": "You know what's sad?", + "start": 486.58, + "end": 487.04, + "words": [ + { + "word": " You", + "start": 486.58, + "end": 486.78, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 486.78, + "end": 486.84, + "probability": 1.0 + }, + { + "word": " what's", + "start": 486.84, + "end": 486.94, + "probability": 0.9892578125 + }, + { + "word": " sad?", + "start": 486.94, + "end": 487.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 286, + "text": "I would pay the fee, like, every time.", + "start": 487.16, + "end": 488.48, + "words": [ + { + "word": " I", + "start": 487.16, + "end": 487.24, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 487.24, + "end": 487.38, + "probability": 0.99951171875 + }, + { + "word": " pay", + "start": 487.38, + "end": 487.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 487.52, + "end": 487.68, + "probability": 1.0 + }, + { + "word": " fee,", + "start": 487.68, + "end": 487.86, + "probability": 1.0 + }, + { + "word": " like,", + "start": 487.88, + "end": 488.02, + "probability": 1.0 + }, + { + "word": " every", + "start": 488.04, + "end": 488.24, + "probability": 1.0 + }, + { + "word": " time.", + "start": 488.24, + "end": 488.48, + "probability": 1.0 + } + ] + }, + { + "id": 287, + "text": "Right, and it's like a...", + "start": 488.68, + "end": 489.9, + "words": [ + { + "word": " Right,", + "start": 488.68, + "end": 488.92, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 489.04, + "end": 489.3, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 489.3, + "end": 489.56, + "probability": 1.0 + }, + { + "word": " like", + "start": 489.56, + "end": 489.66, + "probability": 0.94580078125 + }, + { + "word": " a...", + "start": 489.66, + "end": 489.9, + "probability": 0.9775390625 + } + ] + }, + { + "id": 288, + "text": "It's a two-minute commercial.", + "start": 489.9, + "end": 492.12, + "words": [ + { + "word": " It's", + "start": 489.9, + "end": 490.1, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 490.1, + "end": 490.18, + "probability": 1.0 + }, + { + "word": " two", + "start": 490.18, + "end": 490.96, + "probability": 0.95263671875 + }, + { + "word": "-minute", + "start": 490.96, + "end": 491.4, + "probability": 0.99609375 + }, + { + "word": " commercial.", + "start": 491.4, + "end": 492.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 289, + "text": "Right?", + "start": 492.94, + "end": 493.26, + "words": [ + { + "word": " Right?", + "start": 492.94, + "end": 493.26, + "probability": 0.650390625 + } + ] + }, + { + "id": 290, + "text": "Oh, man, that would be the worst.", + "start": 493.42, + "end": 494.74, + "words": [ + { + "word": " Oh,", + "start": 493.42, + "end": 493.74, + "probability": 0.9970703125 + }, + { + "word": " man,", + "start": 493.74, + "end": 493.88, + "probability": 0.97705078125 + }, + { + "word": " that", + "start": 493.92, + "end": 494.06, + "probability": 1.0 + }, + { + "word": " would", + "start": 494.06, + "end": 494.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 494.18, + "end": 494.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 494.3, + "end": 494.4, + "probability": 1.0 + }, + { + "word": " worst.", + "start": 494.4, + "end": 494.74, + "probability": 1.0 + } + ] + }, + { + "id": 291, + "text": "And people would do it.", + "start": 495.02, + "end": 496.18, + "words": [ + { + "word": " And", + "start": 495.02, + "end": 495.34, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 495.34, + "end": 495.6, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 495.6, + "end": 495.8, + "probability": 1.0 + }, + { + "word": " do", + "start": 495.8, + "end": 496.0, + "probability": 1.0 + }, + { + "word": " it.", + "start": 496.0, + "end": 496.18, + "probability": 1.0 + } + ] + }, + { + "id": 292, + "text": "And there's just a line behind you.", + "start": 496.22, + "end": 497.74, + "words": [ + { + "word": " And", + "start": 496.22, + "end": 496.36, + "probability": 0.998046875 + }, + { + "word": " there's", + "start": 496.36, + "end": 496.52, + "probability": 1.0 + }, + { + "word": " just", + "start": 496.52, + "end": 496.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 496.66, + "end": 496.78, + "probability": 1.0 + }, + { + "word": " line", + "start": 496.78, + "end": 497.04, + "probability": 1.0 + }, + { + "word": " behind", + "start": 497.04, + "end": 497.38, + "probability": 1.0 + }, + { + "word": " you.", + "start": 497.38, + "end": 497.74, + "probability": 1.0 + } + ] + }, + { + "id": 293, + "text": "Right.", + "start": 497.92, + "end": 498.24, + "words": [ + { + "word": " Right.", + "start": 497.92, + "end": 498.24, + "probability": 0.955078125 + } + ] + }, + { + "id": 294, + "text": "And people are like,", + "start": 498.32, + "end": 499.08, + "words": [ + { + "word": " And", + "start": 498.32, + "end": 498.64, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 498.64, + "end": 498.84, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 498.84, + "end": 498.98, + "probability": 1.0 + }, + { + "word": " like,", + "start": 498.98, + "end": 499.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 295, + "text": "just pay the dollar,", + "start": 499.14, + "end": 499.9, + "words": [ + { + "word": " just", + "start": 499.14, + "end": 499.24, + "probability": 0.99609375 + }, + { + "word": " pay", + "start": 499.24, + "end": 499.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 499.42, + "end": 499.58, + "probability": 1.0 + }, + { + "word": " dollar,", + "start": 499.58, + "end": 499.9, + "probability": 0.9931640625 + } + ] + }, + { + "id": 296, + "text": "and you're like, I can't.", + "start": 499.98, + "end": 501.0, + "words": [ + { + "word": " and", + "start": 499.98, + "end": 500.14, + "probability": 1.0 + }, + { + "word": " you're", + "start": 500.14, + "end": 500.26, + "probability": 1.0 + }, + { + "word": " like,", + "start": 500.26, + "end": 500.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 500.42, + "end": 500.52, + "probability": 1.0 + }, + { + "word": " can't.", + "start": 500.52, + "end": 501.0, + "probability": 1.0 + } + ] + }, + { + "id": 297, + "text": "All right, let's talk to Charles.", + "start": 502.5, + "end": 503.62, + "words": [ + { + "word": " All", + "start": 502.5, + "end": 502.82, + "probability": 0.97119140625 + }, + { + "word": " right,", + "start": 502.82, + "end": 502.98, + "probability": 1.0 + }, + { + "word": " let's", + "start": 503.0, + "end": 503.16, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 503.16, + "end": 503.28, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 503.28, + "end": 503.4, + "probability": 1.0 + }, + { + "word": " Charles.", + "start": 503.4, + "end": 503.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 298, + "text": "Hey, Charles, how are you?", + "start": 503.74, + "end": 504.46, + "words": [ + { + "word": " Hey,", + "start": 503.74, + "end": 503.9, + "probability": 0.99462890625 + }, + { + "word": " Charles,", + "start": 503.92, + "end": 504.08, + "probability": 1.0 + }, + { + "word": " how", + "start": 504.14, + "end": 504.24, + "probability": 1.0 + }, + { + "word": " are", + "start": 504.24, + "end": 504.32, + "probability": 1.0 + }, + { + "word": " you?", + "start": 504.32, + "end": 504.46, + "probability": 1.0 + } + ] + }, + { + "id": 299, + "text": "Oh, there we go.", + "start": 506.02000000000004, + "end": 506.88, + "words": [ + { + "word": " Oh,", + "start": 506.02000000000004, + "end": 506.34000000000003, + "probability": 0.99072265625 + }, + { + "word": " there", + "start": 506.34000000000003, + "end": 506.66, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 506.66, + "end": 506.78, + "probability": 0.9873046875 + }, + { + "word": " go.", + "start": 506.78, + "end": 506.88, + "probability": 1.0 + } + ] + }, + { + "id": 300, + "text": "Yeah.", + "start": 507.16, + "end": 507.48, + "words": [ + { + "word": " Yeah.", + "start": 507.16, + "end": 507.48, + "probability": 0.97021484375 + } + ] + }, + { + "id": 301, + "text": "I've got to forcefully disagree with you", + "start": 507.68, + "end": 510.48, + "words": [ + { + "word": " I've", + "start": 507.68, + "end": 508.08, + "probability": 0.90576171875 + }, + { + "word": " got", + "start": 508.08, + "end": 508.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 508.12, + "end": 508.3, + "probability": 1.0 + }, + { + "word": " forcefully", + "start": 508.3, + "end": 509.7, + "probability": 0.99951171875 + }, + { + "word": " disagree", + "start": 509.7, + "end": 510.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 510.0, + "end": 510.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 510.34, + "end": 510.48, + "probability": 1.0 + } + ] + }, + { + "id": 302, + "text": "about the reality in those Coke commercials.", + "start": 510.48, + "end": 512.1, + "words": [ + { + "word": " about", + "start": 510.48, + "end": 510.64, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 510.64, + "end": 510.82, + "probability": 1.0 + }, + { + "word": " reality", + "start": 510.82, + "end": 511.14, + "probability": 1.0 + }, + { + "word": " in", + "start": 511.14, + "end": 511.42, + "probability": 0.9794921875 + }, + { + "word": " those", + "start": 511.42, + "end": 511.56, + "probability": 1.0 + }, + { + "word": " Coke", + "start": 511.56, + "end": 511.78, + "probability": 0.9423828125 + }, + { + "word": " commercials.", + "start": 511.78, + "end": 512.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 303, + "text": "I'm going to tell you,", + "start": 512.36, + "end": 513.28, + "words": [ + { + "word": " I'm", + "start": 512.36, + "end": 512.76, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 512.76, + "end": 512.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 512.82, + "end": 512.9, + "probability": 1.0 + }, + { + "word": " tell", + "start": 512.9, + "end": 513.1, + "probability": 1.0 + }, + { + "word": " you,", + "start": 513.1, + "end": 513.28, + "probability": 1.0 + } + ] + }, + { + "id": 304, + "text": "when those polar bears are at my house,", + "start": 513.32, + "end": 515.02, + "words": [ + { + "word": " when", + "start": 513.32, + "end": 513.42, + "probability": 1.0 + }, + { + "word": " those", + "start": 513.42, + "end": 513.58, + "probability": 1.0 + }, + { + "word": " polar", + "start": 513.58, + "end": 513.88, + "probability": 0.99853515625 + }, + { + "word": " bears", + "start": 513.88, + "end": 514.14, + "probability": 1.0 + }, + { + "word": " are", + "start": 514.14, + "end": 514.38, + "probability": 1.0 + }, + { + "word": " at", + "start": 514.38, + "end": 514.48, + "probability": 1.0 + }, + { + "word": " my", + "start": 514.48, + "end": 514.62, + "probability": 1.0 + }, + { + "word": " house,", + "start": 514.62, + "end": 515.02, + "probability": 1.0 + } + ] + }, + { + "id": 305, + "text": "they absolutely want a Coke.", + "start": 515.16, + "end": 517.34, + "words": [ + { + "word": " they", + "start": 515.16, + "end": 515.54, + "probability": 0.99951171875 + }, + { + "word": " absolutely", + "start": 515.54, + "end": 516.2, + "probability": 1.0 + }, + { + "word": " want", + "start": 516.2, + "end": 516.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 516.84, + "end": 517.0, + "probability": 0.994140625 + }, + { + "word": " Coke.", + "start": 517.0, + "end": 517.34, + "probability": 1.0 + } + ] + }, + { + "id": 306, + "text": "You know what?", + "start": 517.82, + "end": 518.52, + "words": [ + { + "word": " You", + "start": 517.82, + "end": 518.22, + "probability": 0.75732421875 + }, + { + "word": " know", + "start": 518.22, + "end": 518.34, + "probability": 1.0 + }, + { + "word": " what?", + "start": 518.34, + "end": 518.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 307, + "text": "What's wrong with you?", + "start": 518.64, + "end": 519.5, + "words": [ + { + "word": " What's", + "start": 518.64, + "end": 518.94, + "probability": 0.9990234375 + }, + { + "word": " wrong", + "start": 518.94, + "end": 519.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 519.08, + "end": 519.32, + "probability": 1.0 + }, + { + "word": " you?", + "start": 519.32, + "end": 519.5, + "probability": 1.0 + } + ] + }, + { + "id": 308, + "text": "Maybe I just haven't invited the...", + "start": 520.4, + "end": 522.48, + "words": [ + { + "word": " Maybe", + "start": 520.4, + "end": 520.8, + "probability": 0.98876953125 + }, + { + "word": " I", + "start": 520.8, + "end": 521.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 521.04, + "end": 521.18, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 521.18, + "end": 521.42, + "probability": 1.0 + }, + { + "word": " invited", + "start": 521.42, + "end": 521.66, + "probability": 1.0 + }, + { + "word": " the...", + "start": 521.66, + "end": 522.48, + "probability": 0.736328125 + } + ] + }, + { + "id": 309, + "text": "Are you supposed to take the hallucinogenic drugs", + "start": 522.48, + "end": 524.42, + "words": [ + { + "word": " Are", + "start": 522.48, + "end": 522.64, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 522.64, + "end": 522.8, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 522.8, + "end": 523.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 523.02, + "end": 523.26, + "probability": 1.0 + }, + { + "word": " take", + "start": 523.26, + "end": 523.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 523.42, + "end": 523.58, + "probability": 1.0 + }, + { + "word": " hallucinogenic", + "start": 523.58, + "end": 524.04, + "probability": 1.0 + }, + { + "word": " drugs", + "start": 524.04, + "end": 524.42, + "probability": 1.0 + } + ] + }, + { + "id": 310, + "text": "before you watch the Coke commercial?", + "start": 524.42, + "end": 526.2, + "words": [ + { + "word": " before", + "start": 524.42, + "end": 524.82, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 524.82, + "end": 525.16, + "probability": 1.0 + }, + { + "word": " watch", + "start": 525.16, + "end": 525.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 525.6, + "end": 525.76, + "probability": 1.0 + }, + { + "word": " Coke", + "start": 525.76, + "end": 525.9, + "probability": 0.99951171875 + }, + { + "word": " commercial?", + "start": 525.9, + "end": 526.2, + "probability": 1.0 + } + ] + }, + { + "id": 311, + "text": "Is that how it works?", + "start": 526.4, + "end": 527.34, + "words": [ + { + "word": " Is", + "start": 526.4, + "end": 526.72, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 526.72, + "end": 526.82, + "probability": 1.0 + }, + { + "word": " how", + "start": 526.82, + "end": 526.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 526.96, + "end": 527.1, + "probability": 1.0 + }, + { + "word": " works?", + "start": 527.1, + "end": 527.34, + "probability": 1.0 + } + ] + }, + { + "id": 312, + "text": "No, the commercial is the hallucinogenic drug.", + "start": 527.52, + "end": 530.12, + "words": [ + { + "word": " No,", + "start": 527.52, + "end": 527.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 527.72, + "end": 527.88, + "probability": 0.99853515625 + }, + { + "word": " commercial", + "start": 527.88, + "end": 528.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 528.68, + "end": 529.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 529.02, + "end": 529.16, + "probability": 0.9873046875 + }, + { + "word": " hallucinogenic", + "start": 529.16, + "end": 529.84, + "probability": 1.0 + }, + { + "word": " drug.", + "start": 529.84, + "end": 530.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 313, + "text": "You're right.", + "start": 530.14, + "end": 530.54, + "words": [ + { + "word": " You're", + "start": 530.14, + "end": 530.34, + "probability": 0.9990234375 + }, + { + "word": " right.", + "start": 530.34, + "end": 530.54, + "probability": 1.0 + } + ] + }, + { + "id": 314, + "text": "My goodness.", + "start": 531.4200000000001, + "end": 532.18, + "words": [ + { + "word": " My", + "start": 531.4200000000001, + "end": 531.82, + "probability": 0.76708984375 + }, + { + "word": " goodness.", + "start": 531.82, + "end": 532.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 315, + "text": "Why are you guys watching the commercial anyway?", + "start": 532.3, + "end": 534.22, + "words": [ + { + "word": " Why", + "start": 532.3, + "end": 532.62, + "probability": 0.9921875 + }, + { + "word": " are", + "start": 532.62, + "end": 532.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 532.82, + "end": 532.9, + "probability": 1.0 + }, + { + "word": " guys", + "start": 532.9, + "end": 533.06, + "probability": 1.0 + }, + { + "word": " watching", + "start": 533.06, + "end": 533.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 533.46, + "end": 533.64, + "probability": 1.0 + }, + { + "word": " commercial", + "start": 533.64, + "end": 533.88, + "probability": 1.0 + }, + { + "word": " anyway?", + "start": 533.88, + "end": 534.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 316, + "text": "Most of those...", + "start": 534.24, + "end": 534.96, + "words": [ + { + "word": " Most", + "start": 534.24, + "end": 534.58, + "probability": 0.939453125 + }, + { + "word": " of", + "start": 534.58, + "end": 534.68, + "probability": 1.0 + }, + { + "word": " those...", + "start": 534.68, + "end": 534.96, + "probability": 0.50048828125 + } + ] + }, + { + "id": 317, + "text": "Or listening to it.", + "start": 534.96, + "end": 535.64, + "words": [ + { + "word": " Or", + "start": 534.96, + "end": 535.06, + "probability": 0.52490234375 + }, + { + "word": " listening", + "start": 535.06, + "end": 535.34, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 535.34, + "end": 535.52, + "probability": 1.0 + }, + { + "word": " it.", + "start": 535.52, + "end": 535.64, + "probability": 1.0 + } + ] + }, + { + "id": 318, + "text": "Most of the stuff at the gas pump", + "start": 535.8, + "end": 537.34, + "words": [ + { + "word": " Most", + "start": 535.8, + "end": 536.2, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 536.2, + "end": 536.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 536.32, + "end": 536.4, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 536.4, + "end": 536.62, + "probability": 1.0 + }, + { + "word": " at", + "start": 536.62, + "end": 536.78, + "probability": 0.92724609375 + }, + { + "word": " the", + "start": 536.78, + "end": 536.84, + "probability": 0.99951171875 + }, + { + "word": " gas", + "start": 536.84, + "end": 537.06, + "probability": 0.998046875 + }, + { + "word": " pump", + "start": 537.06, + "end": 537.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 319, + "text": "and the other places have a mute button.", + "start": 537.34, + "end": 540.2, + "words": [ + { + "word": " and", + "start": 537.34, + "end": 537.5, + "probability": 0.24560546875 + }, + { + "word": " the", + "start": 537.5, + "end": 538.02, + "probability": 0.96630859375 + }, + { + "word": " other", + "start": 538.02, + "end": 538.3, + "probability": 0.99658203125 + }, + { + "word": " places", + "start": 538.3, + "end": 538.74, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 538.74, + "end": 539.46, + "probability": 0.9599609375 + }, + { + "word": " a", + "start": 539.46, + "end": 539.62, + "probability": 1.0 + }, + { + "word": " mute", + "start": 539.62, + "end": 539.84, + "probability": 0.99755859375 + }, + { + "word": " button.", + "start": 539.84, + "end": 540.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 320, + "text": "Do they really?", + "start": 540.58, + "end": 541.36, + "words": [ + { + "word": " Do", + "start": 540.58, + "end": 540.98, + "probability": 0.99365234375 + }, + { + "word": " they", + "start": 540.98, + "end": 541.14, + "probability": 1.0 + }, + { + "word": " really?", + "start": 541.14, + "end": 541.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 321, + "text": "Yeah, most of them do.", + "start": 541.88, + "end": 543.22, + "words": [ + { + "word": " Yeah,", + "start": 541.88, + "end": 542.28, + "probability": 0.9716796875 + }, + { + "word": " most", + "start": 542.42, + "end": 542.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 542.74, + "end": 542.92, + "probability": 1.0 + }, + { + "word": " them", + "start": 542.92, + "end": 543.06, + "probability": 1.0 + }, + { + "word": " do.", + "start": 543.06, + "end": 543.22, + "probability": 1.0 + } + ] + }, + { + "id": 322, + "text": "You just got to look at the screen.", + "start": 543.28, + "end": 544.32, + "words": [ + { + "word": " You", + "start": 543.28, + "end": 543.4, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 543.4, + "end": 543.48, + "probability": 0.70458984375 + }, + { + "word": " got", + "start": 543.48, + "end": 543.62, + "probability": 0.77099609375 + }, + { + "word": " to", + "start": 543.62, + "end": 543.68, + "probability": 1.0 + }, + { + "word": " look", + "start": 543.68, + "end": 543.84, + "probability": 1.0 + }, + { + "word": " at", + "start": 543.84, + "end": 543.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 543.94, + "end": 544.02, + "probability": 1.0 + }, + { + "word": " screen.", + "start": 544.02, + "end": 544.32, + "probability": 1.0 + } + ] + }, + { + "id": 323, + "text": "And of all people not to realize that, guys,", + "start": 544.52, + "end": 547.52, + "words": [ + { + "word": " And", + "start": 544.52, + "end": 544.86, + "probability": 0.8486328125 + }, + { + "word": " of", + "start": 544.86, + "end": 545.02, + "probability": 0.99609375 + }, + { + "word": " all", + "start": 545.02, + "end": 545.16, + "probability": 1.0 + }, + { + "word": " people", + "start": 545.16, + "end": 545.6, + "probability": 1.0 + }, + { + "word": " not", + "start": 545.6, + "end": 546.06, + "probability": 0.6923828125 + }, + { + "word": " to", + "start": 546.06, + "end": 546.26, + "probability": 0.99951171875 + }, + { + "word": " realize", + "start": 546.26, + "end": 546.66, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 546.66, + "end": 547.12, + "probability": 0.99853515625 + }, + { + "word": " guys,", + "start": 547.22, + "end": 547.52, + "probability": 0.99560546875 + } + ] + }, + { + "id": 324, + "text": "most of them have a mute button that'll...", + "start": 547.6, + "end": 549.5, + "words": [ + { + "word": " most", + "start": 547.6, + "end": 548.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 548.0, + "end": 548.18, + "probability": 1.0 + }, + { + "word": " them", + "start": 548.18, + "end": 548.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 548.32, + "end": 548.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 548.48, + "end": 548.6, + "probability": 1.0 + }, + { + "word": " mute", + "start": 548.6, + "end": 548.8, + "probability": 1.0 + }, + { + "word": " button", + "start": 548.8, + "end": 549.14, + "probability": 1.0 + }, + { + "word": " that'll...", + "start": 549.14, + "end": 549.5, + "probability": 0.6240234375 + } + ] + }, + { + "id": 325, + "text": "Even if you don't...", + "start": 549.5, + "end": 550.46, + "words": [ + { + "word": " Even", + "start": 549.5, + "end": 549.9, + "probability": 0.9052734375 + }, + { + "word": " if", + "start": 549.9, + "end": 550.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 550.1, + "end": 550.18, + "probability": 0.99951171875 + }, + { + "word": " don't...", + "start": 550.18, + "end": 550.46, + "probability": 0.806640625 + } + ] + }, + { + "id": 326, + "text": "Even if you can't stop watching the commercial,", + "start": 550.46, + "end": 552.48, + "words": [ + { + "word": " Even", + "start": 550.46, + "end": 550.7, + "probability": 0.97998046875 + }, + { + "word": " if", + "start": 550.7, + "end": 550.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 550.86, + "end": 550.98, + "probability": 1.0 + }, + { + "word": " can't", + "start": 550.98, + "end": 551.24, + "probability": 1.0 + }, + { + "word": " stop", + "start": 551.24, + "end": 551.46, + "probability": 0.99951171875 + }, + { + "word": " watching", + "start": 551.46, + "end": 551.82, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 551.82, + "end": 552.2, + "probability": 0.99951171875 + }, + { + "word": " commercial,", + "start": 552.2, + "end": 552.48, + "probability": 0.99560546875 + } + ] + }, + { + "id": 327, + "text": "you can at least not listen.", + "start": 552.66, + "end": 554.12, + "words": [ + { + "word": " you", + "start": 552.66, + "end": 552.78, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 552.78, + "end": 552.8, + "probability": 0.99267578125 + }, + { + "word": " at", + "start": 552.8, + "end": 552.96, + "probability": 1.0 + }, + { + "word": " least", + "start": 552.96, + "end": 553.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 553.2, + "end": 553.66, + "probability": 1.0 + }, + { + "word": " listen.", + "start": 553.66, + "end": 554.12, + "probability": 1.0 + } + ] + }, + { + "id": 328, + "text": "I feel like that would be...", + "start": 554.22, + "end": 555.64, + "words": [ + { + "word": " I", + "start": 554.22, + "end": 554.48, + "probability": 1.0 + }, + { + "word": " feel", + "start": 554.48, + "end": 554.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 554.7, + "end": 554.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 554.88, + "end": 555.08, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 555.08, + "end": 555.28, + "probability": 1.0 + }, + { + "word": " be...", + "start": 555.28, + "end": 555.64, + "probability": 1.0 + } + ] + }, + { + "id": 329, + "text": "I feel like I don't want to do that", + "start": 555.64, + "end": 556.86, + "words": [ + { + "word": " I", + "start": 555.64, + "end": 555.86, + "probability": 0.99951171875 + }, + { + "word": " feel", + "start": 555.86, + "end": 556.04, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 556.04, + "end": 556.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 556.16, + "end": 556.22, + "probability": 1.0 + }, + { + "word": " don't", + "start": 556.22, + "end": 556.42, + "probability": 1.0 + }, + { + "word": " want", + "start": 556.42, + "end": 556.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 556.52, + "end": 556.62, + "probability": 1.0 + }, + { + "word": " do", + "start": 556.62, + "end": 556.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 556.74, + "end": 556.86, + "probability": 1.0 + } + ] + }, + { + "id": 330, + "text": "because then they're going to know", + "start": 556.86, + "end": 558.24, + "words": [ + { + "word": " because", + "start": 556.86, + "end": 557.06, + "probability": 0.9287109375 + }, + { + "word": " then", + "start": 557.06, + "end": 557.34, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 557.34, + "end": 557.88, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 557.88, + "end": 557.96, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 557.96, + "end": 558.08, + "probability": 1.0 + }, + { + "word": " know", + "start": 558.08, + "end": 558.24, + "probability": 1.0 + } + ] + }, + { + "id": 331, + "text": "that I interacted with their advertisement in some way.", + "start": 558.24, + "end": 560.74, + "words": [ + { + "word": " that", + "start": 558.24, + "end": 558.4, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 558.4, + "end": 558.48, + "probability": 1.0 + }, + { + "word": " interacted", + "start": 558.48, + "end": 558.88, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 558.88, + "end": 559.16, + "probability": 1.0 + }, + { + "word": " their", + "start": 559.16, + "end": 559.38, + "probability": 0.99951171875 + }, + { + "word": " advertisement", + "start": 559.38, + "end": 559.84, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 559.84, + "end": 560.28, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 560.28, + "end": 560.52, + "probability": 1.0 + }, + { + "word": " way.", + "start": 560.52, + "end": 560.74, + "probability": 1.0 + } + ] + }, + { + "id": 332, + "text": "And the mute buttons on the ones at...", + "start": 561.16, + "end": 564.28, + "words": [ + { + "word": " And", + "start": 561.16, + "end": 561.56, + "probability": 0.46044921875 + }, + { + "word": " the", + "start": 561.56, + "end": 561.94, + "probability": 1.0 + }, + { + "word": " mute", + "start": 561.94, + "end": 562.84, + "probability": 0.99365234375 + }, + { + "word": " buttons", + "start": 562.84, + "end": 563.14, + "probability": 0.99267578125 + }, + { + "word": " on", + "start": 563.14, + "end": 563.34, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 563.34, + "end": 563.42, + "probability": 1.0 + }, + { + "word": " ones", + "start": 563.42, + "end": 563.66, + "probability": 0.99951171875 + }, + { + "word": " at...", + "start": 563.66, + "end": 564.28, + "probability": 0.99462890625 + } + ] + }, + { + "id": 333, + "text": "Oh, what's the name?", + "start": 565.0, + "end": 565.8, + "words": [ + { + "word": " Oh,", + "start": 565.0, + "end": 565.4, + "probability": 0.85302734375 + }, + { + "word": " what's", + "start": 565.4, + "end": 565.62, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 565.62, + "end": 565.62, + "probability": 0.98828125 + }, + { + "word": " name?", + "start": 565.62, + "end": 565.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 334, + "text": "I don't even know what's the word.", + "start": 565.96, + "end": 567.06, + "words": [ + { + "word": " I", + "start": 565.96, + "end": 566.36, + "probability": 0.9189453125 + }, + { + "word": " don't", + "start": 566.36, + "end": 566.56, + "probability": 1.0 + }, + { + "word": " even", + "start": 566.56, + "end": 566.68, + "probability": 1.0 + }, + { + "word": " know", + "start": 566.68, + "end": 566.8, + "probability": 1.0 + }, + { + "word": " what's", + "start": 566.8, + "end": 566.98, + "probability": 0.69482421875 + }, + { + "word": " the", + "start": 566.98, + "end": 566.98, + "probability": 0.79833984375 + }, + { + "word": " word.", + "start": 566.98, + "end": 567.06, + "probability": 0.229248046875 + } + ] + }, + { + "id": 335, + "text": "But they get the little box that says,", + "start": 567.06, + "end": 568.86, + "words": [ + { + "word": " But", + "start": 567.06, + "end": 567.14, + "probability": 0.6455078125 + }, + { + "word": " they", + "start": 567.14, + "end": 567.26, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 567.26, + "end": 567.4, + "probability": 0.9228515625 + }, + { + "word": " the", + "start": 567.4, + "end": 567.5, + "probability": 1.0 + }, + { + "word": " little", + "start": 567.5, + "end": 567.68, + "probability": 1.0 + }, + { + "word": " box", + "start": 567.68, + "end": 568.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 568.12, + "end": 568.36, + "probability": 0.998046875 + }, + { + "word": " says,", + "start": 568.36, + "end": 568.86, + "probability": 0.9951171875 + } + ] + }, + { + "id": 336, + "text": "hey, points member,", + "start": 570.22, + "end": 571.18, + "words": [ + { + "word": " hey,", + "start": 570.22, + "end": 570.58, + "probability": 0.912109375 + }, + { + "word": " points", + "start": 570.58, + "end": 570.94, + "probability": 0.90380859375 + }, + { + "word": " member,", + "start": 570.94, + "end": 571.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 337, + "text": "and then it starts screen matching.", + "start": 571.48, + "end": 573.08, + "words": [ + { + "word": " and", + "start": 571.48, + "end": 571.72, + "probability": 1.0 + }, + { + "word": " then", + "start": 571.72, + "end": 571.82, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 571.82, + "end": 572.08, + "probability": 0.9892578125 + }, + { + "word": " starts", + "start": 572.08, + "end": 572.3, + "probability": 0.9814453125 + }, + { + "word": " screen", + "start": 572.3, + "end": 572.78, + "probability": 0.88720703125 + }, + { + "word": " matching.", + "start": 572.78, + "end": 573.08, + "probability": 0.9267578125 + } + ] + }, + { + "id": 338, + "text": "It's a little round control panel", + "start": 573.12, + "end": 575.86, + "words": [ + { + "word": " It's", + "start": 573.12, + "end": 573.48, + "probability": 0.90478515625 + }, + { + "word": " a", + "start": 573.48, + "end": 573.52, + "probability": 1.0 + }, + { + "word": " little", + "start": 573.52, + "end": 573.7, + "probability": 1.0 + }, + { + "word": " round", + "start": 573.7, + "end": 574.06, + "probability": 0.99951171875 + }, + { + "word": " control", + "start": 574.06, + "end": 575.36, + "probability": 0.99609375 + }, + { + "word": " panel", + "start": 575.36, + "end": 575.86, + "probability": 1.0 + } + ] + }, + { + "id": 339, + "text": "and they've got a mute button on it.", + "start": 575.86, + "end": 577.2, + "words": [ + { + "word": " and", + "start": 575.86, + "end": 576.04, + "probability": 0.10357666015625 + }, + { + "word": " they've", + "start": 576.04, + "end": 576.18, + "probability": 1.0 + }, + { + "word": " got", + "start": 576.18, + "end": 576.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 576.32, + "end": 576.42, + "probability": 1.0 + }, + { + "word": " mute", + "start": 576.42, + "end": 576.56, + "probability": 0.99951171875 + }, + { + "word": " button", + "start": 576.56, + "end": 576.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 576.82, + "end": 577.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 577.06, + "end": 577.2, + "probability": 1.0 + } + ] + }, + { + "id": 340, + "text": "Yeah, I just like...", + "start": 577.24, + "end": 577.94, + "words": [ + { + "word": " Yeah,", + "start": 577.24, + "end": 577.4, + "probability": 0.666015625 + }, + { + "word": " I", + "start": 577.4, + "end": 577.46, + "probability": 0.986328125 + }, + { + "word": " just", + "start": 577.46, + "end": 577.64, + "probability": 0.99951171875 + }, + { + "word": " like...", + "start": 577.64, + "end": 577.94, + "probability": 0.5244140625 + } + ] + }, + { + "id": 341, + "text": "Most of the mute buttons are broken", + "start": 577.94, + "end": 579.4, + "words": [ + { + "word": " Most", + "start": 577.94, + "end": 578.08, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 578.08, + "end": 578.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 578.36, + "end": 578.48, + "probability": 1.0 + }, + { + "word": " mute", + "start": 578.48, + "end": 578.64, + "probability": 1.0 + }, + { + "word": " buttons", + "start": 578.64, + "end": 578.92, + "probability": 1.0 + }, + { + "word": " are", + "start": 578.92, + "end": 579.1, + "probability": 1.0 + }, + { + "word": " broken", + "start": 579.1, + "end": 579.4, + "probability": 1.0 + } + ] + }, + { + "id": 342, + "text": "from people just jamming in.", + "start": 579.92, + "end": 581.36, + "words": [ + { + "word": " from", + "start": 579.92, + "end": 580.28, + "probability": 0.89892578125 + }, + { + "word": " people", + "start": 580.28, + "end": 580.54, + "probability": 1.0 + }, + { + "word": " just", + "start": 580.54, + "end": 580.82, + "probability": 1.0 + }, + { + "word": " jamming", + "start": 580.82, + "end": 581.26, + "probability": 1.0 + }, + { + "word": " in.", + "start": 581.26, + "end": 581.36, + "probability": 0.43017578125 + } + ] + }, + { + "id": 343, + "text": "Some of them are,", + "start": 581.54, + "end": 582.76, + "words": [ + { + "word": " Some", + "start": 581.54, + "end": 581.9, + "probability": 0.61279296875 + }, + { + "word": " of", + "start": 581.9, + "end": 582.46, + "probability": 1.0 + }, + { + "word": " them", + "start": 582.46, + "end": 582.62, + "probability": 1.0 + }, + { + "word": " are,", + "start": 582.62, + "end": 582.76, + "probability": 1.0 + } + ] + }, + { + "id": 344, + "text": "but I noticed most of the mute buttons,", + "start": 582.84, + "end": 584.34, + "words": [ + { + "word": " but", + "start": 582.84, + "end": 582.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 582.96, + "end": 583.06, + "probability": 1.0 + }, + { + "word": " noticed", + "start": 583.06, + "end": 583.28, + "probability": 0.55126953125 + }, + { + "word": " most", + "start": 583.28, + "end": 583.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 583.54, + "end": 583.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 583.76, + "end": 583.84, + "probability": 1.0 + }, + { + "word": " mute", + "start": 583.84, + "end": 584.0, + "probability": 0.921875 + }, + { + "word": " buttons,", + "start": 584.0, + "end": 584.34, + "probability": 1.0 + } + ] + }, + { + "id": 345, + "text": "most of the buttons,", + "start": 584.48, + "end": 585.34, + "words": [ + { + "word": " most", + "start": 584.48, + "end": 584.76, + "probability": 0.94384765625 + }, + { + "word": " of", + "start": 584.76, + "end": 584.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 584.92, + "end": 585.02, + "probability": 1.0 + }, + { + "word": " buttons,", + "start": 585.02, + "end": 585.34, + "probability": 1.0 + } + ] + }, + { + "id": 346, + "text": "they're not touched except the mute button.", + "start": 585.88, + "end": 587.9, + "words": [ + { + "word": " they're", + "start": 585.88, + "end": 586.24, + "probability": 1.0 + }, + { + "word": " not", + "start": 586.24, + "end": 586.4, + "probability": 1.0 + }, + { + "word": " touched", + "start": 586.4, + "end": 586.86, + "probability": 1.0 + }, + { + "word": " except", + "start": 586.86, + "end": 587.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 587.12, + "end": 587.42, + "probability": 1.0 + }, + { + "word": " mute", + "start": 587.42, + "end": 587.56, + "probability": 1.0 + }, + { + "word": " button.", + "start": 587.56, + "end": 587.9, + "probability": 1.0 + } + ] + }, + { + "id": 347, + "text": "It's got the writing on it.", + "start": 587.94, + "end": 589.66, + "words": [ + { + "word": " It's", + "start": 587.94, + "end": 588.14, + "probability": 0.9931640625 + }, + { + "word": " got", + "start": 588.14, + "end": 588.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 588.26, + "end": 588.5, + "probability": 0.99951171875 + }, + { + "word": " writing", + "start": 588.5, + "end": 589.3, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 589.3, + "end": 589.54, + "probability": 1.0 + }, + { + "word": " it.", + "start": 589.54, + "end": 589.66, + "probability": 1.0 + } + ] + }, + { + "id": 348, + "text": "It's kind of worn down from people pushing it.", + "start": 589.68, + "end": 591.48, + "words": [ + { + "word": " It's", + "start": 589.68, + "end": 589.78, + "probability": 1.0 + }, + { + "word": " kind", + "start": 589.78, + "end": 589.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 589.9, + "end": 589.98, + "probability": 1.0 + }, + { + "word": " worn", + "start": 589.98, + "end": 590.14, + "probability": 1.0 + }, + { + "word": " down", + "start": 590.14, + "end": 590.38, + "probability": 1.0 + }, + { + "word": " from", + "start": 590.38, + "end": 590.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 590.68, + "end": 590.94, + "probability": 1.0 + }, + { + "word": " pushing", + "start": 590.94, + "end": 591.24, + "probability": 1.0 + }, + { + "word": " it.", + "start": 591.24, + "end": 591.48, + "probability": 0.99560546875 + } + ] + }, + { + "id": 349, + "text": "Right.", + "start": 591.52, + "end": 591.68, + "words": [ + { + "word": " Right.", + "start": 591.52, + "end": 591.68, + "probability": 0.8642578125 + } + ] + }, + { + "id": 350, + "text": "There's been a few that have been out", + "start": 592.0, + "end": 593.22, + "words": [ + { + "word": " There's", + "start": 592.0, + "end": 592.36, + "probability": 0.9951171875 + }, + { + "word": " been", + "start": 592.36, + "end": 592.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 592.5, + "end": 592.62, + "probability": 1.0 + }, + { + "word": " few", + "start": 592.62, + "end": 592.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 592.78, + "end": 592.88, + "probability": 1.0 + }, + { + "word": " have", + "start": 592.88, + "end": 592.98, + "probability": 0.9658203125 + }, + { + "word": " been", + "start": 592.98, + "end": 593.1, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 593.1, + "end": 593.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 351, + "text": "where the mute button is broken", + "start": 593.22, + "end": 594.36, + "words": [ + { + "word": " where", + "start": 593.22, + "end": 593.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 593.32, + "end": 593.44, + "probability": 1.0 + }, + { + "word": " mute", + "start": 593.44, + "end": 593.62, + "probability": 1.0 + }, + { + "word": " button", + "start": 593.62, + "end": 593.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 593.86, + "end": 594.0, + "probability": 1.0 + }, + { + "word": " broken", + "start": 594.0, + "end": 594.36, + "probability": 1.0 + } + ] + }, + { + "id": 352, + "text": "because somebody apparently...", + "start": 594.36, + "end": 595.74, + "words": [ + { + "word": " because", + "start": 594.36, + "end": 594.88, + "probability": 0.9970703125 + }, + { + "word": " somebody", + "start": 594.88, + "end": 595.2, + "probability": 0.99853515625 + }, + { + "word": " apparently...", + "start": 595.2, + "end": 595.74, + "probability": 0.50732421875 + } + ] + }, + { + "id": 353, + "text": "Was unhappy with it.", + "start": 597.14, + "end": 598.42, + "words": [ + { + "word": " Was", + "start": 597.14, + "end": 597.5, + "probability": 0.301025390625 + }, + { + "word": " unhappy", + "start": 597.5, + "end": 597.86, + "probability": 0.98974609375 + }, + { + "word": " with", + "start": 597.86, + "end": 598.34, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 598.34, + "end": 598.42, + "probability": 0.53076171875 + } + ] + }, + { + "id": 354, + "text": "They were just forcibly muting the ad.", + "start": 598.42, + "end": 600.02, + "words": [ + { + "word": " They", + "start": 598.42, + "end": 598.54, + "probability": 0.99609375 + }, + { + "word": " were", + "start": 598.54, + "end": 598.6, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 598.6, + "end": 598.78, + "probability": 1.0 + }, + { + "word": " forcibly", + "start": 598.78, + "end": 599.38, + "probability": 0.99951171875 + }, + { + "word": " muting", + "start": 599.38, + "end": 599.8, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 599.8, + "end": 599.94, + "probability": 0.998046875 + }, + { + "word": " ad.", + "start": 599.94, + "end": 600.02, + "probability": 0.900390625 + } + ] + }, + { + "id": 355, + "text": "They're muting harder.", + "start": 600.34, + "end": 601.3, + "words": [ + { + "word": " They're", + "start": 600.34, + "end": 600.7, + "probability": 0.947265625 + }, + { + "word": " muting", + "start": 600.7, + "end": 601.1, + "probability": 1.0 + }, + { + "word": " harder.", + "start": 601.1, + "end": 601.3, + "probability": 1.0 + } + ] + }, + { + "id": 356, + "text": "Well, I carry certain things like that stick", + "start": 602.22, + "end": 605.06, + "words": [ + { + "word": " Well,", + "start": 602.22, + "end": 602.58, + "probability": 0.98046875 + }, + { + "word": " I", + "start": 602.6, + "end": 602.72, + "probability": 1.0 + }, + { + "word": " carry", + "start": 602.72, + "end": 602.96, + "probability": 0.99462890625 + }, + { + "word": " certain", + "start": 602.96, + "end": 603.74, + "probability": 1.0 + }, + { + "word": " things", + "start": 603.74, + "end": 604.16, + "probability": 1.0 + }, + { + "word": " like", + "start": 604.16, + "end": 604.48, + "probability": 0.98779296875 + }, + { + "word": " that", + "start": 604.48, + "end": 604.68, + "probability": 1.0 + }, + { + "word": " stick", + "start": 604.68, + "end": 605.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 357, + "text": "and I find that on the ones that are broken,", + "start": 605.06, + "end": 607.18, + "words": [ + { + "word": " and", + "start": 605.06, + "end": 605.44, + "probability": 0.11102294921875 + }, + { + "word": " I", + "start": 605.44, + "end": 605.92, + "probability": 0.99853515625 + }, + { + "word": " find", + "start": 605.92, + "end": 606.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 606.2, + "end": 606.3, + "probability": 0.99560546875 + }, + { + "word": " on", + "start": 606.3, + "end": 606.42, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 606.42, + "end": 606.5, + "probability": 1.0 + }, + { + "word": " ones", + "start": 606.5, + "end": 606.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 606.7, + "end": 606.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 606.82, + "end": 606.88, + "probability": 1.0 + }, + { + "word": " broken,", + "start": 606.88, + "end": 607.18, + "probability": 1.0 + } + ] + }, + { + "id": 358, + "text": "if I jam the stick on it pretty hard,", + "start": 607.26, + "end": 608.92, + "words": [ + { + "word": " if", + "start": 607.26, + "end": 607.4, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 607.4, + "end": 607.5, + "probability": 1.0 + }, + { + "word": " jam", + "start": 607.5, + "end": 607.78, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 607.78, + "end": 607.96, + "probability": 0.9990234375 + }, + { + "word": " stick", + "start": 607.96, + "end": 608.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 608.16, + "end": 608.38, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 608.38, + "end": 608.52, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 608.52, + "end": 608.7, + "probability": 0.99853515625 + }, + { + "word": " hard,", + "start": 608.7, + "end": 608.92, + "probability": 1.0 + } + ] + }, + { + "id": 359, + "text": "it'll still mute.", + "start": 608.96, + "end": 609.52, + "words": [ + { + "word": " it'll", + "start": 608.96, + "end": 609.12, + "probability": 0.9912109375 + }, + { + "word": " still", + "start": 609.12, + "end": 609.3, + "probability": 1.0 + }, + { + "word": " mute.", + "start": 609.3, + "end": 609.52, + "probability": 0.99462890625 + } + ] + }, + { + "id": 360, + "text": "Okay.", + "start": 610.0, + "end": 610.36, + "words": [ + { + "word": " Okay.", + "start": 610.0, + "end": 610.36, + "probability": 0.71240234375 + } + ] + }, + { + "id": 361, + "text": "I was getting gas at QT recently", + "start": 610.4, + "end": 612.2, + "words": [ + { + "word": " I", + "start": 610.4, + "end": 610.64, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 610.64, + "end": 610.78, + "probability": 0.99951171875 + }, + { + "word": " getting", + "start": 610.78, + "end": 611.2, + "probability": 0.7431640625 + }, + { + "word": " gas", + "start": 611.2, + "end": 611.52, + "probability": 1.0 + }, + { + "word": " at", + "start": 611.52, + "end": 611.66, + "probability": 1.0 + }, + { + "word": " QT", + "start": 611.66, + "end": 611.94, + "probability": 0.99755859375 + }, + { + "word": " recently", + "start": 611.94, + "end": 612.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 362, + "text": "and apparently somebody pulled up", + "start": 612.2, + "end": 615.64, + "words": [ + { + "word": " and", + "start": 612.2, + "end": 612.8, + "probability": 0.99560546875 + }, + { + "word": " apparently", + "start": 612.8, + "end": 613.36, + "probability": 0.9970703125 + }, + { + "word": " somebody", + "start": 613.36, + "end": 614.26, + "probability": 0.98779296875 + }, + { + "word": " pulled", + "start": 614.26, + "end": 615.38, + "probability": 0.63330078125 + }, + { + "word": " up", + "start": 615.38, + "end": 615.64, + "probability": 1.0 + } + ] + }, + { + "id": 363, + "text": "to one of the gas pumps", + "start": 615.64, + "end": 616.42, + "words": [ + { + "word": " to", + "start": 615.64, + "end": 615.76, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 615.76, + "end": 615.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 615.86, + "end": 615.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 615.92, + "end": 616.0, + "probability": 1.0 + }, + { + "word": " gas", + "start": 616.0, + "end": 616.18, + "probability": 1.0 + }, + { + "word": " pumps", + "start": 616.18, + "end": 616.42, + "probability": 1.0 + } + ] + }, + { + "id": 364, + "text": "and then called the QT", + "start": 616.42, + "end": 617.62, + "words": [ + { + "word": " and", + "start": 616.42, + "end": 616.7, + "probability": 1.0 + }, + { + "word": " then", + "start": 616.7, + "end": 616.84, + "probability": 0.998046875 + }, + { + "word": " called", + "start": 616.84, + "end": 617.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 617.12, + "end": 617.3, + "probability": 0.99951171875 + }, + { + "word": " QT", + "start": 617.3, + "end": 617.62, + "probability": 1.0 + } + ] + }, + { + "id": 365, + "text": "and asked them to come out", + "start": 617.62, + "end": 618.62, + "words": [ + { + "word": " and", + "start": 617.62, + "end": 617.82, + "probability": 0.99951171875 + }, + { + "word": " asked", + "start": 617.82, + "end": 618.1, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 618.1, + "end": 618.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 618.22, + "end": 618.34, + "probability": 1.0 + }, + { + "word": " come", + "start": 618.34, + "end": 618.46, + "probability": 1.0 + }, + { + "word": " out", + "start": 618.46, + "end": 618.62, + "probability": 1.0 + } + ] + }, + { + "id": 366, + "text": "and pump their gas for them", + "start": 618.62, + "end": 619.62, + "words": [ + { + "word": " and", + "start": 618.62, + "end": 618.78, + "probability": 1.0 + }, + { + "word": " pump", + "start": 618.78, + "end": 618.92, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 618.92, + "end": 619.08, + "probability": 1.0 + }, + { + "word": " gas", + "start": 619.08, + "end": 619.26, + "probability": 1.0 + }, + { + "word": " for", + "start": 619.26, + "end": 619.44, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 619.44, + "end": 619.62, + "probability": 1.0 + } + ] + }, + { + "id": 367, + "text": "and they did it.", + "start": 619.62, + "end": 620.16, + "words": [ + { + "word": " and", + "start": 619.62, + "end": 619.76, + "probability": 0.8798828125 + }, + { + "word": " they", + "start": 619.76, + "end": 619.88, + "probability": 1.0 + }, + { + "word": " did", + "start": 619.88, + "end": 620.02, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 620.02, + "end": 620.16, + "probability": 1.0 + } + ] + }, + { + "id": 368, + "text": "Wow.", + "start": 620.7, + "end": 621.06, + "words": [ + { + "word": " Wow.", + "start": 620.7, + "end": 621.06, + "probability": 0.97412109375 + } + ] + }, + { + "id": 369, + "text": "They have to.", + "start": 622.18, + "end": 623.1, + "words": [ + { + "word": " They", + "start": 622.18, + "end": 622.54, + "probability": 0.974609375 + }, + { + "word": " have", + "start": 622.54, + "end": 622.9, + "probability": 1.0 + }, + { + "word": " to.", + "start": 622.9, + "end": 623.1, + "probability": 1.0 + } + ] + }, + { + "id": 370, + "text": "That's part of handicap legislation.", + "start": 623.14, + "end": 624.82, + "words": [ + { + "word": " That's", + "start": 623.14, + "end": 623.34, + "probability": 0.9990234375 + }, + { + "word": " part", + "start": 623.34, + "end": 623.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 623.5, + "end": 623.64, + "probability": 1.0 + }, + { + "word": " handicap", + "start": 623.64, + "end": 624.12, + "probability": 0.79443359375 + }, + { + "word": " legislation.", + "start": 624.12, + "end": 624.82, + "probability": 1.0 + } + ] + }, + { + "id": 371, + "text": "Oh, do you have to be...", + "start": 625.18, + "end": 626.14, + "words": [ + { + "word": " Oh,", + "start": 625.18, + "end": 625.4, + "probability": 0.98291015625 + }, + { + "word": " do", + "start": 625.44, + "end": 625.58, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 625.58, + "end": 625.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 625.66, + "end": 625.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 625.76, + "end": 625.88, + "probability": 1.0 + }, + { + "word": " be...", + "start": 625.88, + "end": 626.14, + "probability": 0.2412109375 + } + ] + }, + { + "id": 372, + "text": "Do you have to have, like,", + "start": 626.14, + "end": 626.8, + "words": [ + { + "word": " Do", + "start": 626.14, + "end": 626.3, + "probability": 0.81298828125 + }, + { + "word": " you", + "start": 626.3, + "end": 626.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 626.36, + "end": 626.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 626.42, + "end": 626.52, + "probability": 1.0 + }, + { + "word": " have,", + "start": 626.52, + "end": 626.62, + "probability": 1.0 + }, + { + "word": " like,", + "start": 626.68, + "end": 626.8, + "probability": 1.0 + } + ] + }, + { + "id": 373, + "text": "a handicap sticker for that?", + "start": 626.8, + "end": 627.56, + "words": [ + { + "word": " a", + "start": 626.8, + "end": 626.88, + "probability": 0.054229736328125 + }, + { + "word": " handicap", + "start": 626.88, + "end": 627.26, + "probability": 0.9541015625 + }, + { + "word": " sticker", + "start": 627.26, + "end": 627.52, + "probability": 0.9970703125 + }, + { + "word": " for", + "start": 627.52, + "end": 627.56, + "probability": 0.94189453125 + }, + { + "word": " that?", + "start": 627.56, + "end": 627.56, + "probability": 0.9921875 + } + ] + }, + { + "id": 374, + "text": "Yeah, you have to offer that service", + "start": 627.56, + "end": 628.16, + "words": [ + { + "word": " Yeah,", + "start": 627.56, + "end": 627.58, + "probability": 0.4697265625 + }, + { + "word": " you", + "start": 627.58, + "end": 627.58, + "probability": 0.98046875 + }, + { + "word": " have", + "start": 627.58, + "end": 627.58, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 627.58, + "end": 627.58, + "probability": 0.99853515625 + }, + { + "word": " offer", + "start": 627.58, + "end": 627.7, + "probability": 0.91650390625 + }, + { + "word": " that", + "start": 627.7, + "end": 627.86, + "probability": 0.86669921875 + }, + { + "word": " service", + "start": 627.86, + "end": 628.16, + "probability": 0.994140625 + } + ] + }, + { + "id": 375, + "text": "because if you don't,", + "start": 628.16, + "end": 629.82, + "words": [ + { + "word": " because", + "start": 628.16, + "end": 628.62, + "probability": 0.82080078125 + }, + { + "word": " if", + "start": 628.62, + "end": 629.02, + "probability": 0.88427734375 + }, + { + "word": " you", + "start": 629.02, + "end": 629.58, + "probability": 1.0 + }, + { + "word": " don't,", + "start": 629.58, + "end": 629.82, + "probability": 1.0 + } + ] + }, + { + "id": 376, + "text": "it's supposed to be intimidating", + "start": 629.82, + "end": 631.06, + "words": [ + { + "word": " it's", + "start": 629.82, + "end": 630.2, + "probability": 0.9814453125 + }, + { + "word": " supposed", + "start": 630.2, + "end": 630.44, + "probability": 0.8564453125 + }, + { + "word": " to", + "start": 630.44, + "end": 630.58, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 630.58, + "end": 630.68, + "probability": 0.96435546875 + }, + { + "word": " intimidating", + "start": 630.68, + "end": 631.06, + "probability": 0.89306640625 + } + ] + }, + { + "id": 377, + "text": "against some people.", + "start": 631.06, + "end": 631.82, + "words": [ + { + "word": " against", + "start": 631.06, + "end": 631.36, + "probability": 0.98681640625 + }, + { + "word": " some", + "start": 631.36, + "end": 631.58, + "probability": 0.99951171875 + }, + { + "word": " people.", + "start": 631.58, + "end": 631.82, + "probability": 1.0 + } + ] + }, + { + "id": 378, + "text": "So the moral of the story is", + "start": 631.84, + "end": 633.0, + "words": [ + { + "word": " So", + "start": 631.84, + "end": 632.2, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 632.2, + "end": 632.34, + "probability": 0.916015625 + }, + { + "word": " moral", + "start": 632.34, + "end": 632.5, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 632.5, + "end": 632.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 632.6, + "end": 632.62, + "probability": 1.0 + }, + { + "word": " story", + "start": 632.62, + "end": 632.8, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 632.8, + "end": 633.0, + "probability": 1.0 + } + ] + }, + { + "id": 379, + "text": "if you hit the little round squawk box", + "start": 633.0, + "end": 636.1, + "words": [ + { + "word": " if", + "start": 633.0, + "end": 633.22, + "probability": 0.94091796875 + }, + { + "word": " you", + "start": 633.22, + "end": 633.46, + "probability": 1.0 + }, + { + "word": " hit", + "start": 633.46, + "end": 633.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 633.98, + "end": 634.1, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 634.1, + "end": 634.26, + "probability": 1.0 + }, + { + "word": " round", + "start": 634.26, + "end": 634.66, + "probability": 0.99951171875 + }, + { + "word": " squawk", + "start": 634.66, + "end": 635.8, + "probability": 0.970703125 + }, + { + "word": " box", + "start": 635.8, + "end": 636.1, + "probability": 1.0 + } + ] + }, + { + "id": 380, + "text": "with a baseball bat,", + "start": 636.1, + "end": 637.08, + "words": [ + { + "word": " with", + "start": 636.1, + "end": 636.34, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 636.34, + "end": 636.42, + "probability": 1.0 + }, + { + "word": " baseball", + "start": 636.42, + "end": 636.82, + "probability": 1.0 + }, + { + "word": " bat,", + "start": 636.82, + "end": 637.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 381, + "text": "it mutes it.", + "start": 637.32, + "end": 638.3, + "words": [ + { + "word": " it", + "start": 637.32, + "end": 637.76, + "probability": 0.9990234375 + }, + { + "word": " mutes", + "start": 637.76, + "end": 638.16, + "probability": 0.99755859375 + }, + { + "word": " it.", + "start": 638.16, + "end": 638.3, + "probability": 1.0 + } + ] + }, + { + "id": 382, + "text": "So...", + "start": 638.9200000000001, + "end": 639.32, + "words": [ + { + "word": " So...", + "start": 638.9200000000001, + "end": 639.32, + "probability": 0.5263671875 + } + ] + }, + { + "id": 383, + "text": "If you just hit the gas pump with your car,", + "start": 639.9399999999999, + "end": 641.42, + "words": [ + { + "word": " If", + "start": 639.8599999999999, + "end": 640.06, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 640.06, + "end": 640.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 640.16, + "end": 640.3, + "probability": 0.99951171875 + }, + { + "word": " hit", + "start": 640.3, + "end": 640.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 640.46, + "end": 640.6, + "probability": 0.99951171875 + }, + { + "word": " gas", + "start": 640.6, + "end": 640.78, + "probability": 0.99951171875 + }, + { + "word": " pump", + "start": 640.78, + "end": 640.96, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 640.96, + "end": 641.12, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 641.12, + "end": 641.22, + "probability": 1.0 + }, + { + "word": " car,", + "start": 641.22, + "end": 641.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 384, + "text": "it'll probably mute it too.", + "start": 641.5, + "end": 642.34, + "words": [ + { + "word": " it'll", + "start": 641.5, + "end": 641.58, + "probability": 0.97900390625 + }, + { + "word": " probably", + "start": 641.58, + "end": 641.82, + "probability": 1.0 + }, + { + "word": " mute", + "start": 641.82, + "end": 642.06, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 642.06, + "end": 642.2, + "probability": 1.0 + }, + { + "word": " too.", + "start": 642.2, + "end": 642.34, + "probability": 0.68603515625 + } + ] + }, + { + "id": 385, + "text": "Yeah, especially if you have some igniting device.", + "start": 643.76, + "end": 646.76, + "words": [ + { + "word": " Yeah,", + "start": 643.76, + "end": 644.16, + "probability": 0.99755859375 + }, + { + "word": " especially", + "start": 644.16, + "end": 644.56, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 644.56, + "end": 644.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 644.88, + "end": 645.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 645.0, + "end": 645.42, + "probability": 0.9765625 + }, + { + "word": " some", + "start": 645.42, + "end": 646.08, + "probability": 0.99951171875 + }, + { + "word": " igniting", + "start": 646.08, + "end": 646.5, + "probability": 0.9990234375 + }, + { + "word": " device.", + "start": 646.5, + "end": 646.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 386, + "text": "Yeah.", + "start": 647.02, + "end": 647.24, + "words": [ + { + "word": " Yeah.", + "start": 647.02, + "end": 647.24, + "probability": 0.88818359375 + } + ] + }, + { + "id": 387, + "text": "All right.", + "start": 647.54, + "end": 648.08, + "words": [ + { + "word": " All", + "start": 647.54, + "end": 647.94, + "probability": 0.875 + }, + { + "word": " right.", + "start": 647.94, + "end": 648.08, + "probability": 1.0 + } + ] + }, + { + "id": 388, + "text": "That's an ultra hot take.", + "start": 648.16, + "end": 649.24, + "words": [ + { + "word": " That's", + "start": 648.16, + "end": 648.56, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 648.56, + "end": 648.66, + "probability": 1.0 + }, + { + "word": " ultra", + "start": 648.66, + "end": 648.82, + "probability": 0.99951171875 + }, + { + "word": " hot", + "start": 648.82, + "end": 649.02, + "probability": 0.65087890625 + }, + { + "word": " take.", + "start": 649.02, + "end": 649.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 389, + "text": "All right.", + "start": 649.6, + "end": 650.16, + "words": [ + { + "word": " All", + "start": 649.6, + "end": 650.0, + "probability": 0.94677734375 + }, + { + "word": " right.", + "start": 650.0, + "end": 650.16, + "probability": 1.0 + } + ] + }, + { + "id": 390, + "text": "Thanks for the call, Charles.", + "start": 650.46, + "end": 651.76, + "words": [ + { + "word": " Thanks", + "start": 650.46, + "end": 650.86, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 650.86, + "end": 651.04, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 651.04, + "end": 651.18, + "probability": 1.0 + }, + { + "word": " call,", + "start": 651.18, + "end": 651.36, + "probability": 1.0 + }, + { + "word": " Charles.", + "start": 651.44, + "end": 651.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 391, + "text": "Thanks.", + "start": 652.62, + "end": 653.02, + "words": [ + { + "word": " Thanks.", + "start": 652.62, + "end": 653.02, + "probability": 0.00798797607421875 + } + ] + }, + { + "id": 392, + "text": "So if you have run over", + "start": 655.16, + "end": 656.5, + "words": [ + { + "word": " So", + "start": 655.16, + "end": 655.56, + "probability": 0.865234375 + }, + { + "word": " if", + "start": 655.56, + "end": 655.76, + "probability": 0.97802734375 + }, + { + "word": " you", + "start": 655.76, + "end": 655.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 655.92, + "end": 656.04, + "probability": 0.9248046875 + }, + { + "word": " run", + "start": 656.04, + "end": 656.24, + "probability": 0.99853515625 + }, + { + "word": " over", + "start": 656.24, + "end": 656.5, + "probability": 1.0 + } + ] + }, + { + "id": 393, + "text": "a gas station pump with your car", + "start": 656.5, + "end": 658.52, + "words": [ + { + "word": " a", + "start": 656.5, + "end": 656.64, + "probability": 0.380615234375 + }, + { + "word": " gas", + "start": 656.64, + "end": 657.02, + "probability": 0.99560546875 + }, + { + "word": " station", + "start": 657.02, + "end": 657.3, + "probability": 0.99951171875 + }, + { + "word": " pump", + "start": 657.3, + "end": 657.74, + "probability": 0.99755859375 + }, + { + "word": " with", + "start": 657.74, + "end": 658.04, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 658.04, + "end": 658.22, + "probability": 1.0 + }, + { + "word": " car", + "start": 658.22, + "end": 658.52, + "probability": 1.0 + } + ] + }, + { + "id": 394, + "text": "and you need it repaired,", + "start": 658.52, + "end": 659.34, + "words": [ + { + "word": " and", + "start": 658.52, + "end": 658.72, + "probability": 0.7451171875 + }, + { + "word": " you", + "start": 658.72, + "end": 658.8, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 658.8, + "end": 658.94, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 658.94, + "end": 659.04, + "probability": 0.99169921875 + }, + { + "word": " repaired,", + "start": 659.04, + "end": 659.34, + "probability": 0.998046875 + } + ] + }, + { + "id": 395, + "text": "take it to Perfection Auto Works.", + "start": 659.46, + "end": 660.74, + "words": [ + { + "word": " take", + "start": 659.46, + "end": 659.62, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 659.62, + "end": 659.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 659.78, + "end": 659.88, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 659.88, + "end": 660.3, + "probability": 0.9609375 + }, + { + "word": " Auto", + "start": 660.3, + "end": 660.44, + "probability": 0.88818359375 + }, + { + "word": " Works.", + "start": 660.44, + "end": 660.74, + "probability": 0.994140625 + } + ] + }, + { + "id": 396, + "text": "Oh, that was good.", + "start": 661.02, + "end": 662.28, + "words": [ + { + "word": " Oh,", + "start": 661.02, + "end": 661.3, + "probability": 0.95947265625 + }, + { + "word": " that", + "start": 661.56, + "end": 661.98, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 661.98, + "end": 662.12, + "probability": 0.99755859375 + }, + { + "word": " good.", + "start": 662.12, + "end": 662.28, + "probability": 1.0 + } + ] + }, + { + "id": 397, + "text": "Because I think that they can probably", + "start": 662.58, + "end": 664.7, + "words": [ + { + "word": " Because", + "start": 662.58, + "end": 662.94, + "probability": 0.97900390625 + }, + { + "word": " I", + "start": 662.94, + "end": 663.26, + "probability": 0.95556640625 + }, + { + "word": " think", + "start": 663.26, + "end": 664.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 664.02, + "end": 664.14, + "probability": 0.99462890625 + }, + { + "word": " they", + "start": 664.14, + "end": 664.26, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 664.26, + "end": 664.4, + "probability": 0.9462890625 + }, + { + "word": " probably", + "start": 664.4, + "end": 664.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 398, + "text": "take care of that for you.", + "start": 664.7, + "end": 666.52, + "words": [ + { + "word": " take", + "start": 664.7, + "end": 665.08, + "probability": 0.99951171875 + }, + { + "word": " care", + "start": 665.08, + "end": 665.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 665.34, + "end": 665.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 665.5, + "end": 665.64, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 665.64, + "end": 666.1, + "probability": 1.0 + }, + { + "word": " you.", + "start": 666.1, + "end": 666.52, + "probability": 1.0 + } + ] + }, + { + "id": 399, + "text": "Speaking of...", + "start": 667.62, + "end": 668.34, + "words": [ + { + "word": " Speaking", + "start": 667.62, + "end": 667.98, + "probability": 0.99755859375 + }, + { + "word": " of...", + "start": 667.98, + "end": 668.34, + "probability": 0.5830078125 + } + ] + }, + { + "id": 400, + "text": "Speaking of...", + "start": 669.38, + "end": 670.1, + "words": [ + { + "word": " Speaking", + "start": 669.38, + "end": 669.74, + "probability": 0.962890625 + }, + { + "word": " of...", + "start": 669.74, + "end": 670.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 401, + "text": "I am in negotiations with Mike", + "start": 670.1, + "end": 672.92, + "words": [ + { + "word": " I", + "start": 670.1, + "end": 670.6, + "probability": 0.9990234375 + }, + { + "word": " am", + "start": 670.6, + "end": 671.02, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 671.02, + "end": 671.76, + "probability": 0.9951171875 + }, + { + "word": " negotiations", + "start": 671.76, + "end": 672.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 672.38, + "end": 672.76, + "probability": 0.998046875 + }, + { + "word": " Mike", + "start": 672.76, + "end": 672.92, + "probability": 0.99755859375 + } + ] + }, + { + "id": 402, + "text": "to actually get my car done.", + "start": 672.92, + "end": 673.8, + "words": [ + { + "word": " to", + "start": 672.92, + "end": 673.04, + "probability": 0.9990234375 + }, + { + "word": " actually", + "start": 673.04, + "end": 673.22, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 673.22, + "end": 673.38, + "probability": 1.0 + }, + { + "word": " my", + "start": 673.38, + "end": 673.5, + "probability": 1.0 + }, + { + "word": " car", + "start": 673.5, + "end": 673.66, + "probability": 0.9951171875 + }, + { + "word": " done.", + "start": 673.66, + "end": 673.8, + "probability": 0.83154296875 + } + ] + }, + { + "id": 403, + "text": "Oh, yeah?", + "start": 674.06, + "end": 674.52, + "words": [ + { + "word": " Oh,", + "start": 674.06, + "end": 674.42, + "probability": 0.8837890625 + }, + { + "word": " yeah?", + "start": 674.42, + "end": 674.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 404, + "text": "Yeah, because I'm still waiting on my...", + "start": 674.7, + "end": 676.92, + "words": [ + { + "word": " Yeah,", + "start": 674.7, + "end": 674.88, + "probability": 0.92626953125 + }, + { + "word": " because", + "start": 674.94, + "end": 675.2, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 675.2, + "end": 675.96, + "probability": 0.99755859375 + }, + { + "word": " still", + "start": 675.96, + "end": 676.12, + "probability": 0.9990234375 + }, + { + "word": " waiting", + "start": 676.12, + "end": 676.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 676.34, + "end": 676.5, + "probability": 0.99853515625 + }, + { + "word": " my...", + "start": 676.5, + "end": 676.92, + "probability": 1.0 + } + ] + }, + { + "id": 405, + "text": "Because I told him, I was like,", + "start": 677.3, + "end": 678.3, + "words": [ + { + "word": " Because", + "start": 677.3, + "end": 677.66, + "probability": 0.86474609375 + }, + { + "word": " I", + "start": 677.66, + "end": 677.8, + "probability": 0.99951171875 + }, + { + "word": " told", + "start": 677.8, + "end": 677.92, + "probability": 0.99951171875 + }, + { + "word": " him,", + "start": 677.92, + "end": 678.06, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 678.06, + "end": 678.14, + "probability": 1.0 + }, + { + "word": " was", + "start": 678.14, + "end": 678.18, + "probability": 0.998046875 + }, + { + "word": " like,", + "start": 678.18, + "end": 678.3, + "probability": 1.0 + } + ] + }, + { + "id": 406, + "text": "I can't be without a car.", + "start": 678.38, + "end": 679.34, + "words": [ + { + "word": " I", + "start": 678.38, + "end": 678.5, + "probability": 0.9990234375 + }, + { + "word": " can't", + "start": 678.5, + "end": 678.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 678.74, + "end": 678.84, + "probability": 0.99951171875 + }, + { + "word": " without", + "start": 678.84, + "end": 679.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 679.02, + "end": 679.22, + "probability": 1.0 + }, + { + "word": " car.", + "start": 679.22, + "end": 679.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 407, + "text": "Yeah.", + "start": 679.52, + "end": 679.78, + "words": [ + { + "word": " Yeah.", + "start": 679.52, + "end": 679.78, + "probability": 0.71875 + } + ] + }, + { + "id": 408, + "text": "You know, because you know how much...", + "start": 679.94, + "end": 681.64, + "words": [ + { + "word": " You", + "start": 679.94, + "end": 680.3, + "probability": 0.308837890625 + }, + { + "word": " know,", + "start": 680.3, + "end": 680.44, + "probability": 1.0 + }, + { + "word": " because", + "start": 680.44, + "end": 680.6, + "probability": 0.97265625 + }, + { + "word": " you", + "start": 680.6, + "end": 680.94, + "probability": 0.9921875 + }, + { + "word": " know", + "start": 680.94, + "end": 681.12, + "probability": 1.0 + }, + { + "word": " how", + "start": 681.12, + "end": 681.26, + "probability": 1.0 + }, + { + "word": " much...", + "start": 681.26, + "end": 681.64, + "probability": 0.939453125 + } + ] + }, + { + "id": 409, + "text": "You know how unforgiving my schedule is.", + "start": 681.64, + "end": 683.68, + "words": [ + { + "word": " You", + "start": 681.64, + "end": 681.82, + "probability": 0.978515625 + }, + { + "word": " know", + "start": 681.82, + "end": 681.96, + "probability": 1.0 + }, + { + "word": " how", + "start": 681.96, + "end": 682.04, + "probability": 0.99951171875 + }, + { + "word": " unforgiving", + "start": 682.04, + "end": 682.74, + "probability": 1.0 + }, + { + "word": " my", + "start": 682.74, + "end": 683.02, + "probability": 1.0 + }, + { + "word": " schedule", + "start": 683.02, + "end": 683.4, + "probability": 0.99951171875 + }, + { + "word": " is.", + "start": 683.4, + "end": 683.68, + "probability": 1.0 + } + ] + }, + { + "id": 410, + "text": "It's true.", + "start": 683.76, + "end": 684.1, + "words": [ + { + "word": " It's", + "start": 683.76, + "end": 683.92, + "probability": 0.99658203125 + }, + { + "word": " true.", + "start": 683.92, + "end": 684.1, + "probability": 1.0 + } + ] + }, + { + "id": 411, + "text": "So...", + "start": 685.04, + "end": 685.4, + "words": [ + { + "word": " So...", + "start": 685.04, + "end": 685.4, + "probability": 0.61669921875 + } + ] + }, + { + "id": 412, + "text": "But...", + "start": 685.4, + "end": 686.04, + "words": [ + { + "word": " But...", + "start": 685.4, + "end": 686.04, + "probability": 0.93359375 + } + ] + }, + { + "id": 413, + "text": "Hopefully...", + "start": 686.6800000000001, + "end": 687.12, + "words": [ + { + "word": " Hopefully...", + "start": 686.6800000000001, + "end": 687.12, + "probability": 0.03778076171875 + } + ] + }, + { + "id": 414, + "text": "Hopefully...", + "start": 687.12, + "end": 687.9, + "words": [ + { + "word": " Hopefully...", + "start": 687.12, + "end": 687.9, + "probability": 0.8505859375 + } + ] + }, + { + "id": 415, + "text": "We'll finish putting together the Prius.", + "start": 688.6400000000001, + "end": 690.34, + "words": [ + { + "word": " We'll", + "start": 688.6400000000001, + "end": 689.08, + "probability": 0.9130859375 + }, + { + "word": " finish", + "start": 689.08, + "end": 689.4, + "probability": 0.99951171875 + }, + { + "word": " putting", + "start": 689.4, + "end": 689.68, + "probability": 0.99853515625 + }, + { + "word": " together", + "start": 689.68, + "end": 689.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 689.92, + "end": 690.08, + "probability": 0.9990234375 + }, + { + "word": " Prius.", + "start": 690.08, + "end": 690.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 416, + "text": "Oh, that's what I was going to say.", + "start": 690.44, + "end": 691.08, + "words": [ + { + "word": " Oh,", + "start": 690.44, + "end": 690.62, + "probability": 0.60302734375 + }, + { + "word": " that's", + "start": 690.62, + "end": 690.7, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 690.7, + "end": 690.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 690.7, + "end": 690.8, + "probability": 1.0 + }, + { + "word": " was", + "start": 690.8, + "end": 690.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 690.88, + "end": 690.9, + "probability": 0.9541015625 + }, + { + "word": " to", + "start": 690.9, + "end": 690.96, + "probability": 1.0 + }, + { + "word": " say.", + "start": 690.96, + "end": 691.08, + "probability": 1.0 + } + ] + }, + { + "id": 417, + "text": "You're talking about the Prius here?", + "start": 691.12, + "end": 691.92, + "words": [ + { + "word": " You're", + "start": 691.12, + "end": 691.24, + "probability": 0.82421875 + }, + { + "word": " talking", + "start": 691.24, + "end": 691.34, + "probability": 1.0 + }, + { + "word": " about", + "start": 691.34, + "end": 691.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 691.46, + "end": 691.56, + "probability": 1.0 + }, + { + "word": " Prius", + "start": 691.56, + "end": 691.8, + "probability": 1.0 + }, + { + "word": " here?", + "start": 691.8, + "end": 691.92, + "probability": 0.99267578125 + } + ] + }, + { + "id": 418, + "text": "Yeah.", + "start": 692.02, + "end": 692.04, + "words": [ + { + "word": " Yeah.", + "start": 692.02, + "end": 692.04, + "probability": 0.7275390625 + } + ] + }, + { + "id": 419, + "text": "And then...", + "start": 692.14, + "end": 692.68, + "words": [ + { + "word": " And", + "start": 692.14, + "end": 692.38, + "probability": 0.99462890625 + }, + { + "word": " then...", + "start": 692.38, + "end": 692.68, + "probability": 0.97509765625 + } + ] + }, + { + "id": 420, + "text": "And then...", + "start": 693.22, + "end": 693.96, + "words": [ + { + "word": " And", + "start": 693.22, + "end": 693.66, + "probability": 0.712890625 + }, + { + "word": " then...", + "start": 693.66, + "end": 693.96, + "probability": 0.90966796875 + } + ] + }, + { + "id": 421, + "text": "And then Mike can have the BMW", + "start": 693.96, + "end": 695.24, + "words": [ + { + "word": " And", + "start": 693.96, + "end": 694.64, + "probability": 0.050079345703125 + }, + { + "word": " then", + "start": 694.64, + "end": 694.64, + "probability": 0.99853515625 + }, + { + "word": " Mike", + "start": 694.64, + "end": 694.64, + "probability": 0.22998046875 + }, + { + "word": " can", + "start": 694.64, + "end": 694.82, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 694.82, + "end": 694.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 694.94, + "end": 695.02, + "probability": 0.99951171875 + }, + { + "word": " BMW", + "start": 695.02, + "end": 695.24, + "probability": 1.0 + } + ] + }, + { + "id": 422, + "text": "to make it beautiful.", + "start": 695.24, + "end": 696.88, + "words": [ + { + "word": " to", + "start": 695.24, + "end": 695.6, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 695.6, + "end": 696.36, + "probability": 0.955078125 + }, + { + "word": " it", + "start": 696.36, + "end": 696.56, + "probability": 1.0 + }, + { + "word": " beautiful.", + "start": 696.56, + "end": 696.88, + "probability": 1.0 + } + ] + }, + { + "id": 423, + "text": "And you can just be speeding around in the Prius.", + "start": 697.26, + "end": 699.16, + "words": [ + { + "word": " And", + "start": 697.26, + "end": 697.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 697.7, + "end": 697.94, + "probability": 0.9970703125 + }, + { + "word": " can", + "start": 697.94, + "end": 698.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 698.04, + "end": 698.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 698.16, + "end": 698.3, + "probability": 1.0 + }, + { + "word": " speeding", + "start": 698.3, + "end": 698.52, + "probability": 0.9990234375 + }, + { + "word": " around", + "start": 698.52, + "end": 698.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 698.66, + "end": 698.8, + "probability": 0.97314453125 + }, + { + "word": " the", + "start": 698.8, + "end": 698.86, + "probability": 1.0 + }, + { + "word": " Prius.", + "start": 698.86, + "end": 699.16, + "probability": 1.0 + } + ] + }, + { + "id": 424, + "text": "That's right.", + "start": 699.24, + "end": 699.54, + "words": [ + { + "word": " That's", + "start": 699.24, + "end": 699.5, + "probability": 1.0 + }, + { + "word": " right.", + "start": 699.5, + "end": 699.54, + "probability": 1.0 + } + ] + }, + { + "id": 425, + "text": "I'll be a speedy Prius.", + "start": 699.7, + "end": 701.88, + "words": [ + { + "word": " I'll", + "start": 699.7, + "end": 700.14, + "probability": 0.9970703125 + }, + { + "word": " be", + "start": 700.14, + "end": 700.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 700.2, + "end": 700.48, + "probability": 0.77978515625 + }, + { + "word": " speedy", + "start": 700.48, + "end": 701.38, + "probability": 0.99951171875 + }, + { + "word": " Prius.", + "start": 701.38, + "end": 701.88, + "probability": 1.0 + } + ] + }, + { + "id": 426, + "text": "Well...", + "start": 703.8800000000001, + "end": 704.32, + "words": [ + { + "word": " Well...", + "start": 703.8800000000001, + "end": 704.32, + "probability": 0.93359375 + } + ] + }, + { + "id": 427, + "text": "Anyway...", + "start": 704.32, + "end": 704.9, + "words": [ + { + "word": " Anyway...", + "start": 704.32, + "end": 704.9, + "probability": 0.92041015625 + } + ] + }, + { + "id": 428, + "text": "Check out their website,", + "start": 705.76, + "end": 706.86, + "words": [ + { + "word": " Check", + "start": 705.76, + "end": 706.2, + "probability": 0.97705078125 + }, + { + "word": " out", + "start": 706.2, + "end": 706.44, + "probability": 1.0 + }, + { + "word": " their", + "start": 706.44, + "end": 706.54, + "probability": 0.9501953125 + }, + { + "word": " website,", + "start": 706.54, + "end": 706.86, + "probability": 1.0 + } + ] + }, + { + "id": 429, + "text": "perfectionautoworks.com.", + "start": 707.04, + "end": 708.16, + "words": [ + { + "word": " perfectionautoworks", + "start": 707.04, + "end": 707.7, + "probability": 0.8681640625 + }, + { + "word": ".com.", + "start": 707.7, + "end": 708.16, + "probability": 1.0 + } + ] + }, + { + "id": 430, + "text": "Yeah, they're good guys.", + "start": 709.1799999999998, + "end": 710.82, + "words": [ + { + "word": " Yeah,", + "start": 709.1799999999998, + "end": 709.6199999999999, + "probability": 0.94482421875 + }, + { + "word": " they're", + "start": 709.6199999999999, + "end": 710.06, + "probability": 1.0 + }, + { + "word": " good", + "start": 710.06, + "end": 710.24, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 710.24, + "end": 710.82, + "probability": 0.9716796875 + } + ] + }, + { + "id": 431, + "text": "If anybody can fix that Prius,", + "start": 710.9, + "end": 712.42, + "words": [ + { + "word": " If", + "start": 710.9, + "end": 711.06, + "probability": 0.99853515625 + }, + { + "word": " anybody", + "start": 711.06, + "end": 711.3, + "probability": 1.0 + }, + { + "word": " can", + "start": 711.3, + "end": 711.58, + "probability": 1.0 + }, + { + "word": " fix", + "start": 711.58, + "end": 711.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 711.82, + "end": 711.98, + "probability": 0.99951171875 + }, + { + "word": " Prius,", + "start": 711.98, + "end": 712.42, + "probability": 1.0 + } + ] + }, + { + "id": 432, + "text": "it's Perfection Auto Works.", + "start": 712.48, + "end": 713.82, + "words": [ + { + "word": " it's", + "start": 712.48, + "end": 713.02, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 713.02, + "end": 713.5, + "probability": 0.8525390625 + }, + { + "word": " Auto", + "start": 713.5, + "end": 713.6, + "probability": 0.340087890625 + }, + { + "word": " Works.", + "start": 713.6, + "end": 713.82, + "probability": 0.97216796875 + } + ] + }, + { + "id": 433, + "text": "Yeah.", + "start": 714.18, + "end": 714.62, + "words": [ + { + "word": " Yeah.", + "start": 714.18, + "end": 714.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 434, + "text": "Yeah.", + "start": 714.76, + "end": 715.2, + "words": [ + { + "word": " Yeah.", + "start": 714.76, + "end": 715.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 435, + "text": "I...", + "start": 715.24, + "end": 715.66, + "words": [ + { + "word": " I...", + "start": 715.24, + "end": 715.66, + "probability": 0.6728515625 + } + ] + }, + { + "id": 436, + "text": "They're good people, though.", + "start": 715.66, + "end": 717.5, + "words": [ + { + "word": " They're", + "start": 715.66, + "end": 716.1, + "probability": 0.9208984375 + }, + { + "word": " good", + "start": 716.1, + "end": 716.98, + "probability": 0.990234375 + }, + { + "word": " people,", + "start": 716.98, + "end": 717.26, + "probability": 1.0 + }, + { + "word": " though.", + "start": 717.36, + "end": 717.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 437, + "text": "And...", + "start": 717.6, + "end": 717.94, + "words": [ + { + "word": " And...", + "start": 717.6, + "end": 717.94, + "probability": 0.411865234375 + } + ] + }, + { + "id": 438, + "text": "And, you know,", + "start": 718.68, + "end": 719.38, + "words": [ + { + "word": " And,", + "start": 718.68, + "end": 719.04, + "probability": 0.74560546875 + }, + { + "word": " you", + "start": 719.1, + "end": 719.22, + "probability": 1.0 + }, + { + "word": " know,", + "start": 719.22, + "end": 719.38, + "probability": 1.0 + } + ] + }, + { + "id": 439, + "text": "they have a...", + "start": 719.88, + "end": 720.64, + "words": [ + { + "word": " they", + "start": 719.88, + "end": 720.24, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 720.24, + "end": 720.5, + "probability": 0.9990234375 + }, + { + "word": " a...", + "start": 720.5, + "end": 720.64, + "probability": 0.494140625 + } + ] + }, + { + "id": 440, + "text": "They have kind of a special thing going on", + "start": 720.64, + "end": 722.34, + "words": [ + { + "word": " They", + "start": 720.64, + "end": 720.78, + "probability": 0.88525390625 + }, + { + "word": " have", + "start": 720.78, + "end": 720.88, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 720.88, + "end": 721.14, + "probability": 0.493896484375 + }, + { + "word": " of", + "start": 721.14, + "end": 721.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 721.32, + "end": 721.38, + "probability": 1.0 + }, + { + "word": " special", + "start": 721.38, + "end": 721.58, + "probability": 1.0 + }, + { + "word": " thing", + "start": 721.58, + "end": 721.84, + "probability": 1.0 + }, + { + "word": " going", + "start": 721.84, + "end": 722.1, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 722.1, + "end": 722.34, + "probability": 1.0 + } + ] + }, + { + "id": 441, + "text": "where if you...", + "start": 722.34, + "end": 723.54, + "words": [ + { + "word": " where", + "start": 722.34, + "end": 722.92, + "probability": 0.751953125 + }, + { + "word": " if", + "start": 722.92, + "end": 723.32, + "probability": 0.9931640625 + }, + { + "word": " you...", + "start": 723.32, + "end": 723.54, + "probability": 0.80322265625 + } + ] + }, + { + "id": 442, + "text": "If you tell them,", + "start": 723.54, + "end": 724.3, + "words": [ + { + "word": " If", + "start": 723.54, + "end": 723.82, + "probability": 0.9736328125 + }, + { + "word": " you", + "start": 723.82, + "end": 723.92, + "probability": 1.0 + }, + { + "word": " tell", + "start": 723.92, + "end": 724.0, + "probability": 0.99755859375 + }, + { + "word": " them,", + "start": 724.0, + "end": 724.3, + "probability": 1.0 + } + ] + }, + { + "id": 443, + "text": "hey, you know,", + "start": 724.32, + "end": 724.94, + "words": [ + { + "word": " hey,", + "start": 724.32, + "end": 724.6, + "probability": 0.95751953125 + }, + { + "word": " you", + "start": 724.68, + "end": 724.8, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 724.8, + "end": 724.94, + "probability": 1.0 + } + ] + }, + { + "id": 444, + "text": "Computer Guru sent me,", + "start": 724.94, + "end": 725.94, + "words": [ + { + "word": " Computer", + "start": 724.94, + "end": 725.3, + "probability": 0.85302734375 + }, + { + "word": " Guru", + "start": 725.3, + "end": 725.46, + "probability": 0.9140625 + }, + { + "word": " sent", + "start": 725.46, + "end": 725.68, + "probability": 1.0 + }, + { + "word": " me,", + "start": 725.68, + "end": 725.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 445, + "text": "you don't have to wait", + "start": 726.02, + "end": 727.06, + "words": [ + { + "word": " you", + "start": 726.02, + "end": 726.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 726.44, + "end": 726.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 726.6, + "end": 726.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 726.68, + "end": 726.84, + "probability": 1.0 + }, + { + "word": " wait", + "start": 726.84, + "end": 727.06, + "probability": 1.0 + } + ] + }, + { + "id": 446, + "text": "to the end of the line.", + "start": 727.06, + "end": 728.06, + "words": [ + { + "word": " to", + "start": 727.06, + "end": 727.24, + "probability": 0.52734375 + }, + { + "word": " the", + "start": 727.24, + "end": 727.58, + "probability": 1.0 + }, + { + "word": " end", + "start": 727.58, + "end": 727.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 727.74, + "end": 727.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 727.82, + "end": 727.86, + "probability": 1.0 + }, + { + "word": " line.", + "start": 727.86, + "end": 728.06, + "probability": 1.0 + } + ] + }, + { + "id": 447, + "text": "You get...", + "start": 728.16, + "end": 728.62, + "words": [ + { + "word": " You", + "start": 728.16, + "end": 728.34, + "probability": 1.0 + }, + { + "word": " get...", + "start": 728.34, + "end": 728.62, + "probability": 0.994140625 + } + ] + }, + { + "id": 448, + "text": "You get bumped up a bit.", + "start": 728.62, + "end": 729.7, + "words": [ + { + "word": " You", + "start": 728.62, + "end": 728.9, + "probability": 0.99462890625 + }, + { + "word": " get", + "start": 728.9, + "end": 729.02, + "probability": 0.99951171875 + }, + { + "word": " bumped", + "start": 729.02, + "end": 729.18, + "probability": 0.9853515625 + }, + { + "word": " up", + "start": 729.18, + "end": 729.46, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 729.46, + "end": 729.6, + "probability": 0.998046875 + }, + { + "word": " bit.", + "start": 729.6, + "end": 729.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 449, + "text": "Front of the line service, huh?", + "start": 729.74, + "end": 730.84, + "words": [ + { + "word": " Front", + "start": 729.74, + "end": 729.86, + "probability": 0.96923828125 + }, + { + "word": " of", + "start": 729.86, + "end": 729.96, + "probability": 0.888671875 + }, + { + "word": " the", + "start": 729.96, + "end": 730.04, + "probability": 1.0 + }, + { + "word": " line", + "start": 730.04, + "end": 730.24, + "probability": 1.0 + }, + { + "word": " service,", + "start": 730.24, + "end": 730.52, + "probability": 0.99951171875 + }, + { + "word": " huh?", + "start": 730.74, + "end": 730.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 450, + "text": "Yeah.", + "start": 730.98, + "end": 731.16, + "words": [ + { + "word": " Yeah.", + "start": 730.98, + "end": 731.16, + "probability": 0.9580078125 + } + ] + }, + { + "id": 451, + "text": "So, you just...", + "start": 732.04, + "end": 733.12, + "words": [ + { + "word": " So,", + "start": 732.04, + "end": 732.4, + "probability": 0.826171875 + }, + { + "word": " you", + "start": 732.4, + "end": 732.76, + "probability": 0.99951171875 + }, + { + "word": " just...", + "start": 732.76, + "end": 733.12, + "probability": 0.9951171875 + } + ] + }, + { + "id": 452, + "text": "You just go ahead and tell them", + "start": 733.12, + "end": 734.16, + "words": [ + { + "word": " You", + "start": 733.12, + "end": 733.3, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 733.3, + "end": 733.42, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 733.42, + "end": 733.56, + "probability": 0.998046875 + }, + { + "word": " ahead", + "start": 733.56, + "end": 733.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 733.72, + "end": 733.82, + "probability": 1.0 + }, + { + "word": " tell", + "start": 733.82, + "end": 733.98, + "probability": 0.9990234375 + }, + { + "word": " them", + "start": 733.98, + "end": 734.16, + "probability": 1.0 + } + ] + }, + { + "id": 453, + "text": "Computer Guru sent you", + "start": 734.16, + "end": 735.24, + "words": [ + { + "word": " Computer", + "start": 734.16, + "end": 734.5, + "probability": 0.9423828125 + }, + { + "word": " Guru", + "start": 734.5, + "end": 734.78, + "probability": 1.0 + }, + { + "word": " sent", + "start": 734.78, + "end": 735.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 735.0, + "end": 735.24, + "probability": 1.0 + } + ] + }, + { + "id": 454, + "text": "and they will be very happy with that.", + "start": 735.24, + "end": 737.62, + "words": [ + { + "word": " and", + "start": 735.24, + "end": 735.76, + "probability": 0.744140625 + }, + { + "word": " they", + "start": 735.76, + "end": 736.2, + "probability": 1.0 + }, + { + "word": " will", + "start": 736.2, + "end": 736.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 736.38, + "end": 736.54, + "probability": 1.0 + }, + { + "word": " very", + "start": 736.54, + "end": 736.86, + "probability": 1.0 + }, + { + "word": " happy", + "start": 736.86, + "end": 737.18, + "probability": 1.0 + }, + { + "word": " with", + "start": 737.18, + "end": 737.38, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 737.38, + "end": 737.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 455, + "text": "Which will make me happy.", + "start": 737.92, + "end": 739.02, + "words": [ + { + "word": " Which", + "start": 737.92, + "end": 738.28, + "probability": 0.94287109375 + }, + { + "word": " will", + "start": 738.28, + "end": 738.4, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 738.4, + "end": 738.54, + "probability": 1.0 + }, + { + "word": " me", + "start": 738.54, + "end": 738.7, + "probability": 1.0 + }, + { + "word": " happy.", + "start": 738.7, + "end": 739.02, + "probability": 1.0 + } + ] + }, + { + "id": 456, + "text": "All right?", + "start": 739.24, + "end": 739.68, + "words": [ + { + "word": " All", + "start": 739.24, + "end": 739.6, + "probability": 0.634765625 + }, + { + "word": " right?", + "start": 739.6, + "end": 739.68, + "probability": 1.0 + } + ] + }, + { + "id": 457, + "text": "Because I like happy.", + "start": 739.72, + "end": 740.44, + "words": [ + { + "word": " Because", + "start": 739.72, + "end": 739.86, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 739.86, + "end": 739.98, + "probability": 1.0 + }, + { + "word": " like", + "start": 739.98, + "end": 740.16, + "probability": 0.9990234375 + }, + { + "word": " happy.", + "start": 740.16, + "end": 740.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 458, + "text": "Everybody likes happy.", + "start": 740.54, + "end": 741.52, + "words": [ + { + "word": " Everybody", + "start": 740.54, + "end": 740.88, + "probability": 0.99755859375 + }, + { + "word": " likes", + "start": 740.88, + "end": 741.24, + "probability": 1.0 + }, + { + "word": " happy.", + "start": 741.24, + "end": 741.52, + "probability": 1.0 + } + ] + }, + { + "id": 459, + "text": "Anyway,", + "start": 741.7, + "end": 742.06, + "words": [ + { + "word": " Anyway,", + "start": 741.7, + "end": 742.06, + "probability": 0.97705078125 + } + ] + }, + { + "id": 460, + "text": "perfectionautoworks.com.", + "start": 742.08, + "end": 743.06, + "words": [ + { + "word": " perfectionautoworks", + "start": 742.08, + "end": 742.74, + "probability": 0.75537109375 + }, + { + "word": ".com.", + "start": 742.74, + "end": 743.06, + "probability": 1.0 + } + ] + }, + { + "id": 461, + "text": "Check them out.", + "start": 743.12, + "end": 743.5, + "words": [ + { + "word": " Check", + "start": 743.12, + "end": 743.28, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 743.28, + "end": 743.4, + "probability": 1.0 + }, + { + "word": " out.", + "start": 743.4, + "end": 743.5, + "probability": 1.0 + } + ] + }, + { + "id": 462, + "text": "Listen to their ad coming up next.", + "start": 744.12, + "end": 745.4, + "words": [ + { + "word": " Listen", + "start": 744.12, + "end": 744.48, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 744.48, + "end": 744.62, + "probability": 1.0 + }, + { + "word": " their", + "start": 744.62, + "end": 744.72, + "probability": 1.0 + }, + { + "word": " ad", + "start": 744.72, + "end": 744.86, + "probability": 1.0 + }, + { + "word": " coming", + "start": 744.86, + "end": 745.06, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 745.06, + "end": 745.2, + "probability": 1.0 + }, + { + "word": " next.", + "start": 745.2, + "end": 745.4, + "probability": 1.0 + } + ] + }, + { + "id": 463, + "text": "And we'll be right back.", + "start": 745.66, + "end": 746.8, + "words": [ + { + "word": " And", + "start": 745.66, + "end": 746.12, + "probability": 0.60302734375 + }, + { + "word": " we'll", + "start": 746.12, + "end": 746.32, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 746.32, + "end": 746.4, + "probability": 1.0 + }, + { + "word": " right", + "start": 746.4, + "end": 746.56, + "probability": 1.0 + }, + { + "word": " back.", + "start": 746.56, + "end": 746.8, + "probability": 1.0 + } + ] + }, + { + "id": 464, + "text": "I'll be the roundabout", + "start": 756.58, + "end": 759.26, + "words": [ + { + "word": " I'll", + "start": 756.58, + "end": 757.1, + "probability": 0.67333984375 + }, + { + "word": " be", + "start": 757.1, + "end": 757.24, + "probability": 0.97802734375 + }, + { + "word": " the", + "start": 757.24, + "end": 757.5, + "probability": 0.83203125 + }, + { + "word": " roundabout", + "start": 757.5, + "end": 759.26, + "probability": 0.9853515625 + } + ] + }, + { + "id": 465, + "text": "The words will make you out", + "start": 760.12, + "end": 763.0, + "words": [ + { + "word": " The", + "start": 760.12, + "end": 760.64, + "probability": 0.076904296875 + }, + { + "word": " words", + "start": 760.64, + "end": 760.92, + "probability": 0.71875 + }, + { + "word": " will", + "start": 760.92, + "end": 761.1, + "probability": 0.99853515625 + }, + { + "word": " make", + "start": 761.1, + "end": 761.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 761.48, + "end": 762.52, + "probability": 0.99365234375 + }, + { + "word": " out", + "start": 762.52, + "end": 763.0, + "probability": 0.83837890625 + } + ] + }, + { + "id": 466, + "text": "Your Computer Guru, Mike Swanson,", + "start": 763.0, + "end": 767.74, + "words": [ + { + "word": " Your", + "start": 763.0, + "end": 763.9, + "probability": 0.32275390625 + }, + { + "word": " Computer", + "start": 763.9, + "end": 766.64, + "probability": 0.00391387939453125 + }, + { + "word": " Guru,", + "start": 766.64, + "end": 767.04, + "probability": 0.99951171875 + }, + { + "word": " Mike", + "start": 767.16, + "end": 767.38, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 767.38, + "end": 767.74, + "probability": 0.9912109375 + } + ] + }, + { + "id": 467, + "text": "is here to help you tame", + "start": 767.86, + "end": 768.88, + "words": [ + { + "word": " is", + "start": 767.86, + "end": 768.02, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 768.02, + "end": 768.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 768.14, + "end": 768.28, + "probability": 1.0 + }, + { + "word": " help", + "start": 768.28, + "end": 768.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 768.5, + "end": 768.66, + "probability": 1.0 + }, + { + "word": " tame", + "start": 768.66, + "end": 768.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 468, + "text": "that beast of a machine.", + "start": 768.88, + "end": 769.94, + "words": [ + { + "word": " that", + "start": 768.88, + "end": 769.06, + "probability": 1.0 + }, + { + "word": " beast", + "start": 769.06, + "end": 769.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 769.36, + "end": 769.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 769.6, + "end": 769.68, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 769.68, + "end": 769.94, + "probability": 1.0 + } + ] + }, + { + "id": 469, + "text": "Join the chat right now", + "start": 770.24, + "end": 771.6, + "words": [ + { + "word": " Join", + "start": 770.24, + "end": 770.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 770.72, + "end": 770.9, + "probability": 1.0 + }, + { + "word": " chat", + "start": 770.9, + "end": 771.08, + "probability": 1.0 + }, + { + "word": " right", + "start": 771.08, + "end": 771.34, + "probability": 1.0 + }, + { + "word": " now", + "start": 771.34, + "end": 771.6, + "probability": 1.0 + } + ] + }, + { + "id": 470, + "text": "at gurushow.com", + "start": 771.6, + "end": 773.06, + "words": [ + { + "word": " at", + "start": 771.6, + "end": 771.94, + "probability": 0.99951171875 + }, + { + "word": " gurushow", + "start": 771.94, + "end": 772.46, + "probability": 0.8681640625 + }, + { + "word": ".com", + "start": 772.46, + "end": 773.06, + "probability": 1.0 + } + ] + }, + { + "id": 471, + "text": "or call in.", + "start": 773.06, + "end": 773.82, + "words": [ + { + "word": " or", + "start": 773.06, + "end": 773.32, + "probability": 0.9873046875 + }, + { + "word": " call", + "start": 773.32, + "end": 773.54, + "probability": 1.0 + }, + { + "word": " in.", + "start": 773.54, + "end": 773.82, + "probability": 1.0 + } + ] + }, + { + "id": 472, + "text": "This is the Computer Guru Show.", + "start": 773.9, + "end": 775.64, + "words": [ + { + "word": " This", + "start": 773.9, + "end": 774.24, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 774.24, + "end": 774.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 774.5, + "end": 774.64, + "probability": 0.496337890625 + }, + { + "word": " Computer", + "start": 774.64, + "end": 774.88, + "probability": 0.9990234375 + }, + { + "word": " Guru", + "start": 774.88, + "end": 775.24, + "probability": 0.99853515625 + }, + { + "word": " Show.", + "start": 775.24, + "end": 775.64, + "probability": 0.98095703125 + } + ] + }, + { + "id": 473, + "text": "On KVOY, The Voice.", + "start": 775.66, + "end": 777.38, + "words": [ + { + "word": " On", + "start": 775.66, + "end": 776.0, + "probability": 0.05181884765625 + }, + { + "word": " KVOY,", + "start": 776.0, + "end": 776.6, + "probability": 0.9306640625 + }, + { + "word": " The", + "start": 776.76, + "end": 777.06, + "probability": 0.7822265625 + }, + { + "word": " Voice.", + "start": 777.06, + "end": 777.38, + "probability": 1.0 + } + ] + }, + { + "id": 474, + "text": "Your technology guru, Mike Swanson,", + "start": 779.74, + "end": 781.96, + "words": [ + { + "word": " Your", + "start": 779.74, + "end": 780.26, + "probability": 0.955078125 + }, + { + "word": " technology", + "start": 780.26, + "end": 780.74, + "probability": 0.9990234375 + }, + { + "word": " guru,", + "start": 780.74, + "end": 781.22, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 781.4, + "end": 781.6, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 781.6, + "end": 781.96, + "probability": 0.828125 + } + ] + }, + { + "id": 475, + "text": "is answering all your questions", + "start": 782.08, + "end": 783.42, + "words": [ + { + "word": " is", + "start": 782.08, + "end": 782.24, + "probability": 1.0 + }, + { + "word": " answering", + "start": 782.24, + "end": 782.54, + "probability": 1.0 + }, + { + "word": " all", + "start": 782.54, + "end": 782.84, + "probability": 1.0 + }, + { + "word": " your", + "start": 782.84, + "end": 783.02, + "probability": 0.99951171875 + }, + { + "word": " questions", + "start": 783.02, + "end": 783.42, + "probability": 1.0 + } + ] + }, + { + "id": 476, + "text": "one by one.", + "start": 783.42, + "end": 784.18, + "words": [ + { + "word": " one", + "start": 783.42, + "end": 783.68, + "probability": 0.998046875 + }, + { + "word": " by", + "start": 783.68, + "end": 783.88, + "probability": 0.99365234375 + }, + { + "word": " one.", + "start": 783.88, + "end": 784.18, + "probability": 1.0 + } + ] + }, + { + "id": 477, + "text": "Yes, science!", + "start": 784.24, + "end": 784.86, + "words": [ + { + "word": " Yes,", + "start": 784.24, + "end": 784.44, + "probability": 0.6376953125 + }, + { + "word": " science!", + "start": 784.44, + "end": 784.86, + "probability": 0.99755859375 + } + ] + }, + { + "id": 478, + "text": "So, chime in with yours.", + "start": 785.24, + "end": 786.24, + "words": [ + { + "word": " So,", + "start": 785.24, + "end": 785.32, + "probability": 0.99951171875 + }, + { + "word": " chime", + "start": 785.32, + "end": 785.58, + "probability": 0.99169921875 + }, + { + "word": " in", + "start": 785.58, + "end": 785.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 785.78, + "end": 786.0, + "probability": 1.0 + }, + { + "word": " yours.", + "start": 786.0, + "end": 786.24, + "probability": 1.0 + } + ] + }, + { + "id": 479, + "text": "The website is gurushow.com.", + "start": 786.5, + "end": 788.56, + "words": [ + { + "word": " The", + "start": 786.5, + "end": 786.78, + "probability": 0.99951171875 + }, + { + "word": " website", + "start": 786.78, + "end": 787.1, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 787.1, + "end": 787.46, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 787.46, + "end": 788.04, + "probability": 0.89501953125 + }, + { + "word": ".com.", + "start": 788.04, + "end": 788.56, + "probability": 1.0 + } + ] + }, + { + "id": 480, + "text": "Tune in, click in, and kick back.", + "start": 788.76, + "end": 790.94, + "words": [ + { + "word": " Tune", + "start": 788.76, + "end": 789.22, + "probability": 1.0 + }, + { + "word": " in,", + "start": 789.22, + "end": 789.42, + "probability": 1.0 + }, + { + "word": " click", + "start": 789.54, + "end": 789.9, + "probability": 1.0 + }, + { + "word": " in,", + "start": 789.9, + "end": 790.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 790.22, + "end": 790.54, + "probability": 1.0 + }, + { + "word": " kick", + "start": 790.54, + "end": 790.66, + "probability": 0.99462890625 + }, + { + "word": " back.", + "start": 790.66, + "end": 790.94, + "probability": 1.0 + } + ] + }, + { + "id": 481, + "text": "This is the Computer Guru Show.", + "start": 791.18, + "end": 793.1, + "words": [ + { + "word": " This", + "start": 791.18, + "end": 791.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 791.68, + "end": 792.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 792.04, + "end": 792.14, + "probability": 0.279052734375 + }, + { + "word": " Computer", + "start": 792.14, + "end": 792.38, + "probability": 0.99658203125 + }, + { + "word": " Guru", + "start": 792.38, + "end": 792.74, + "probability": 0.99560546875 + }, + { + "word": " Show.", + "start": 792.74, + "end": 793.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 482, + "text": "So, let's take a moment", + "start": 794.66, + "end": 795.78, + "words": [ + { + "word": " So,", + "start": 794.66, + "end": 795.18, + "probability": 0.32373046875 + }, + { + "word": " let's", + "start": 795.22, + "end": 795.36, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 795.36, + "end": 795.48, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 795.48, + "end": 795.6, + "probability": 1.0 + }, + { + "word": " moment", + "start": 795.6, + "end": 795.78, + "probability": 1.0 + } + ] + }, + { + "id": 483, + "text": "to talk about our favorite,", + "start": 795.78, + "end": 797.3, + "words": [ + { + "word": " to", + "start": 795.78, + "end": 795.9, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 795.9, + "end": 796.08, + "probability": 1.0 + }, + { + "word": " about", + "start": 796.08, + "end": 796.3, + "probability": 1.0 + }, + { + "word": " our", + "start": 796.3, + "end": 796.68, + "probability": 1.0 + }, + { + "word": " favorite,", + "start": 796.68, + "end": 797.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 484, + "text": "you know, process chip manufacturer.", + "start": 797.46, + "end": 800.36, + "words": [ + { + "word": " you", + "start": 797.46, + "end": 798.26, + "probability": 0.97509765625 + }, + { + "word": " know,", + "start": 798.26, + "end": 798.42, + "probability": 1.0 + }, + { + "word": " process", + "start": 798.44, + "end": 798.88, + "probability": 0.9951171875 + }, + { + "word": " chip", + "start": 798.88, + "end": 799.34, + "probability": 0.998046875 + }, + { + "word": " manufacturer.", + "start": 799.34, + "end": 800.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 485, + "text": "Those guys over at Intel", + "start": 801.16, + "end": 803.0, + "words": [ + { + "word": " Those", + "start": 801.16, + "end": 801.68, + "probability": 0.98388671875 + }, + { + "word": " guys", + "start": 801.68, + "end": 802.06, + "probability": 1.0 + }, + { + "word": " over", + "start": 802.06, + "end": 802.58, + "probability": 0.9951171875 + }, + { + "word": " at", + "start": 802.58, + "end": 802.76, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 802.76, + "end": 803.0, + "probability": 1.0 + } + ] + }, + { + "id": 486, + "text": "are in trouble.", + "start": 803.0, + "end": 804.02, + "words": [ + { + "word": " are", + "start": 803.0, + "end": 803.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 803.42, + "end": 803.68, + "probability": 1.0 + }, + { + "word": " trouble.", + "start": 803.68, + "end": 804.02, + "probability": 1.0 + } + ] + }, + { + "id": 487, + "text": "Kind of in a big way, too.", + "start": 804.38, + "end": 805.62, + "words": [ + { + "word": " Kind", + "start": 804.38, + "end": 804.9, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 804.9, + "end": 805.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 805.0, + "end": 805.06, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 805.06, + "end": 805.14, + "probability": 1.0 + }, + { + "word": " big", + "start": 805.14, + "end": 805.26, + "probability": 1.0 + }, + { + "word": " way,", + "start": 805.26, + "end": 805.44, + "probability": 1.0 + }, + { + "word": " too.", + "start": 805.46, + "end": 805.62, + "probability": 0.986328125 + } + ] + }, + { + "id": 488, + "text": "Yeah, and for a couple", + "start": 805.66, + "end": 807.38, + "words": [ + { + "word": " Yeah,", + "start": 805.66, + "end": 806.16, + "probability": 0.07867431640625 + }, + { + "word": " and", + "start": 806.28, + "end": 806.34, + "probability": 0.95166015625 + }, + { + "word": " for", + "start": 806.34, + "end": 806.74, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 806.74, + "end": 807.0, + "probability": 1.0 + }, + { + "word": " couple", + "start": 807.0, + "end": 807.38, + "probability": 1.0 + } + ] + }, + { + "id": 489, + "text": "of different reasons.", + "start": 807.38, + "end": 808.1, + "words": [ + { + "word": " of", + "start": 807.38, + "end": 807.48, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 807.48, + "end": 807.66, + "probability": 1.0 + }, + { + "word": " reasons.", + "start": 807.66, + "end": 808.1, + "probability": 1.0 + } + ] + }, + { + "id": 490, + "text": "You want to talk about the CEO first", + "start": 808.38, + "end": 809.88, + "words": [ + { + "word": " You", + "start": 808.38, + "end": 808.9, + "probability": 0.962890625 + }, + { + "word": " want", + "start": 808.9, + "end": 808.96, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 808.96, + "end": 809.04, + "probability": 1.0 + }, + { + "word": " talk", + "start": 809.04, + "end": 809.16, + "probability": 1.0 + }, + { + "word": " about", + "start": 809.16, + "end": 809.24, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 809.24, + "end": 809.34, + "probability": 1.0 + }, + { + "word": " CEO", + "start": 809.34, + "end": 809.6, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 809.6, + "end": 809.88, + "probability": 1.0 + } + ] + }, + { + "id": 491, + "text": "or the security?", + "start": 809.88, + "end": 810.84, + "words": [ + { + "word": " or", + "start": 809.88, + "end": 810.06, + "probability": 0.91455078125 + }, + { + "word": " the", + "start": 810.06, + "end": 810.22, + "probability": 1.0 + }, + { + "word": " security?", + "start": 810.22, + "end": 810.84, + "probability": 0.9970703125 + } + ] + }, + { + "id": 492, + "text": "I think we should probably explain", + "start": 810.84, + "end": 811.8, + "words": [ + { + "word": " I", + "start": 810.84, + "end": 811.02, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 811.02, + "end": 811.08, + "probability": 1.0 + }, + { + "word": " we", + "start": 811.08, + "end": 811.16, + "probability": 1.0 + }, + { + "word": " should", + "start": 811.16, + "end": 811.26, + "probability": 1.0 + }, + { + "word": " probably", + "start": 811.26, + "end": 811.48, + "probability": 1.0 + }, + { + "word": " explain", + "start": 811.48, + "end": 811.8, + "probability": 1.0 + } + ] + }, + { + "id": 493, + "text": "what happened", + "start": 811.8, + "end": 812.42, + "words": [ + { + "word": " what", + "start": 811.8, + "end": 812.1, + "probability": 1.0 + }, + { + "word": " happened", + "start": 812.1, + "end": 812.42, + "probability": 1.0 + } + ] + }, + { + "id": 494, + "text": "and then talk about the CEO.", + "start": 812.42, + "end": 813.76, + "words": [ + { + "word": " and", + "start": 812.42, + "end": 812.78, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 812.78, + "end": 812.96, + "probability": 1.0 + }, + { + "word": " talk", + "start": 812.96, + "end": 813.16, + "probability": 1.0 + }, + { + "word": " about", + "start": 813.16, + "end": 813.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 813.38, + "end": 813.5, + "probability": 1.0 + }, + { + "word": " CEO.", + "start": 813.5, + "end": 813.76, + "probability": 1.0 + } + ] + }, + { + "id": 495, + "text": "Okay.", + "start": 813.92, + "end": 814.2, + "words": [ + { + "word": " Okay.", + "start": 813.92, + "end": 814.2, + "probability": 0.9580078125 + } + ] + }, + { + "id": 496, + "text": "So, we've been talking about", + "start": 815.7800000000001, + "end": 817.4, + "words": [ + { + "word": " So,", + "start": 815.7800000000001, + "end": 816.3000000000001, + "probability": 0.978515625 + }, + { + "word": " we've", + "start": 816.3000000000001, + "end": 816.82, + "probability": 0.99365234375 + }, + { + "word": " been", + "start": 816.82, + "end": 816.94, + "probability": 1.0 + }, + { + "word": " talking", + "start": 816.94, + "end": 817.14, + "probability": 1.0 + }, + { + "word": " about", + "start": 817.14, + "end": 817.4, + "probability": 1.0 + } + ] + }, + { + "id": 497, + "text": "some AMT flaws,", + "start": 817.4, + "end": 819.16, + "words": [ + { + "word": " some", + "start": 817.4, + "end": 817.92, + "probability": 0.990234375 + }, + { + "word": " AMT", + "start": 817.92, + "end": 818.88, + "probability": 0.99267578125 + }, + { + "word": " flaws,", + "start": 818.88, + "end": 819.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 498, + "text": "which is the management service", + "start": 819.3, + "end": 821.72, + "words": [ + { + "word": " which", + "start": 819.3, + "end": 819.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 819.52, + "end": 819.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 819.68, + "end": 819.92, + "probability": 1.0 + }, + { + "word": " management", + "start": 819.92, + "end": 820.64, + "probability": 1.0 + }, + { + "word": " service", + "start": 820.64, + "end": 821.72, + "probability": 1.0 + } + ] + }, + { + "id": 499, + "text": "that's built into a lot of the,", + "start": 821.72, + "end": 824.0, + "words": [ + { + "word": " that's", + "start": 821.72, + "end": 822.16, + "probability": 0.8525390625 + }, + { + "word": " built", + "start": 822.16, + "end": 822.42, + "probability": 1.0 + }, + { + "word": " into", + "start": 822.42, + "end": 822.82, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 822.82, + "end": 823.0, + "probability": 0.759765625 + }, + { + "word": " lot", + "start": 823.0, + "end": 823.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 823.14, + "end": 823.28, + "probability": 1.0 + }, + { + "word": " the,", + "start": 823.28, + "end": 824.0, + "probability": 0.94921875 + } + ] + }, + { + "id": 500, + "text": "most of the Intel processors these days.", + "start": 825.22, + "end": 827.36, + "words": [ + { + "word": " most", + "start": 825.22, + "end": 825.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 825.74, + "end": 825.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 825.94, + "end": 826.02, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 826.02, + "end": 826.18, + "probability": 0.98291015625 + }, + { + "word": " processors", + "start": 826.18, + "end": 826.66, + "probability": 1.0 + }, + { + "word": " these", + "start": 826.66, + "end": 827.08, + "probability": 0.9990234375 + }, + { + "word": " days.", + "start": 827.08, + "end": 827.36, + "probability": 1.0 + } + ] + }, + { + "id": 501, + "text": "And it allows for,", + "start": 827.58, + "end": 829.16, + "words": [ + { + "word": " And", + "start": 827.58, + "end": 828.1, + "probability": 0.6884765625 + }, + { + "word": " it", + "start": 828.1, + "end": 828.18, + "probability": 0.9951171875 + }, + { + "word": " allows", + "start": 828.18, + "end": 828.5, + "probability": 0.99951171875 + }, + { + "word": " for,", + "start": 828.5, + "end": 829.16, + "probability": 1.0 + } + ] + }, + { + "id": 502, + "text": "it's designed for, like,", + "start": 829.6, + "end": 831.28, + "words": [ + { + "word": " it's", + "start": 829.6, + "end": 830.18, + "probability": 1.0 + }, + { + "word": " designed", + "start": 830.18, + "end": 830.56, + "probability": 1.0 + }, + { + "word": " for,", + "start": 830.56, + "end": 831.0, + "probability": 1.0 + }, + { + "word": " like,", + "start": 831.08, + "end": 831.28, + "probability": 1.0 + } + ] + }, + { + "id": 503, + "text": "large corporate IT", + "start": 831.3, + "end": 832.42, + "words": [ + { + "word": " large", + "start": 831.3, + "end": 831.7, + "probability": 1.0 + }, + { + "word": " corporate", + "start": 831.7, + "end": 831.98, + "probability": 1.0 + }, + { + "word": " IT", + "start": 831.98, + "end": 832.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 504, + "text": "to be able to have", + "start": 832.42, + "end": 834.2, + "words": [ + { + "word": " to", + "start": 832.42, + "end": 833.34, + "probability": 0.99169921875 + }, + { + "word": " be", + "start": 833.34, + "end": 833.46, + "probability": 1.0 + }, + { + "word": " able", + "start": 833.46, + "end": 833.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 833.62, + "end": 833.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 833.74, + "end": 834.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 505, + "text": "a fair amount of money", + "start": 834.2, + "end": 835.64, + "words": [ + { + "word": " a", + "start": 834.2, + "end": 834.96, + "probability": 0.051055908203125 + }, + { + "word": " fair", + "start": 834.96, + "end": 835.58, + "probability": 0.1129150390625 + }, + { + "word": " amount", + "start": 835.58, + "end": 835.64, + "probability": 0.371826171875 + }, + { + "word": " of", + "start": 835.64, + "end": 835.64, + "probability": 0.99755859375 + }, + { + "word": " money", + "start": 835.64, + "end": 835.64, + "probability": 0.1082763671875 + } + ] + }, + { + "id": 506, + "text": "and be able to do", + "start": 835.66, + "end": 836.56, + "words": [ + { + "word": " and", + "start": 835.66, + "end": 835.66, + "probability": 0.004276275634765625 + }, + { + "word": " be", + "start": 835.66, + "end": 835.8, + "probability": 0.0010404586791992188 + }, + { + "word": " able", + "start": 835.8, + "end": 835.8, + "probability": 0.455322265625 + }, + { + "word": " to", + "start": 835.8, + "end": 836.44, + "probability": 0.98876953125 + }, + { + "word": " do", + "start": 836.44, + "end": 836.56, + "probability": 0.030853271484375 + } + ] + }, + { + "id": 507, + "text": "a lot of things", + "start": 836.56, + "end": 837.46, + "words": [ + { + "word": " a", + "start": 836.56, + "end": 836.56, + "probability": 0.031890869140625 + }, + { + "word": " lot", + "start": 836.56, + "end": 837.14, + "probability": 0.330078125 + }, + { + "word": " of", + "start": 837.14, + "end": 837.14, + "probability": 0.77392578125 + }, + { + "word": " things", + "start": 837.14, + "end": 837.46, + "probability": 0.307373046875 + } + ] + }, + { + "id": 508, + "text": "and be able to do", + "start": 837.46, + "end": 837.64, + "words": [ + { + "word": " and", + "start": 837.46, + "end": 837.46, + "probability": 0.039886474609375 + }, + { + "word": " be", + "start": 837.46, + "end": 837.64, + "probability": 0.07720947265625 + }, + { + "word": " able", + "start": 837.64, + "end": 837.64, + "probability": 0.74951171875 + }, + { + "word": " to", + "start": 837.64, + "end": 837.64, + "probability": 0.9912109375 + }, + { + "word": " do", + "start": 837.64, + "end": 837.64, + "probability": 0.5419921875 + } + ] + }, + { + "id": 509, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 510, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 511, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 512, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 513, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 514, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 515, + "text": "", + "start": 837.64, + "end": 837.64, + "words": [] + }, + { + "id": 516, + "text": "as though they are sitting at it,", + "start": 837.64, + "end": 841.26, + "words": [ + { + "word": " as", + "start": 837.64, + "end": 837.64, + "probability": 0.0008721351623535156 + }, + { + "word": " though", + "start": 837.64, + "end": 838.96, + "probability": 0.59814453125 + }, + { + "word": " they", + "start": 838.96, + "end": 840.3, + "probability": 0.98388671875 + }, + { + "word": " are", + "start": 840.3, + "end": 840.5, + "probability": 0.94189453125 + }, + { + "word": " sitting", + "start": 840.5, + "end": 840.76, + "probability": 0.9794921875 + }, + { + "word": " at", + "start": 840.76, + "end": 841.04, + "probability": 0.955078125 + }, + { + "word": " it,", + "start": 841.04, + "end": 841.26, + "probability": 0.978515625 + } + ] + }, + { + "id": 517, + "text": "but remotely.", + "start": 841.28, + "end": 841.8, + "words": [ + { + "word": " but", + "start": 841.28, + "end": 841.36, + "probability": 0.85302734375 + }, + { + "word": " remotely.", + "start": 841.36, + "end": 841.8, + "probability": 0.9892578125 + } + ] + }, + { + "id": 518, + "text": "Right.", + "start": 842.4200000000001, + "end": 842.82, + "words": [ + { + "word": " Right.", + "start": 842.4200000000001, + "end": 842.82, + "probability": 0.61572265625 + } + ] + }, + { + "id": 519, + "text": "And just control the computer", + "start": 842.88, + "end": 844.54, + "words": [ + { + "word": " And", + "start": 842.88, + "end": 843.28, + "probability": 0.94580078125 + }, + { + "word": " just", + "start": 843.28, + "end": 843.66, + "probability": 0.9921875 + }, + { + "word": " control", + "start": 843.66, + "end": 844.12, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 844.12, + "end": 844.34, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 844.34, + "end": 844.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 520, + "text": "completely, right,", + "start": 845.14, + "end": 846.08, + "words": [ + { + "word": " completely,", + "start": 845.14, + "end": 845.54, + "probability": 0.9853515625 + }, + { + "word": " right,", + "start": 845.8, + "end": 846.08, + "probability": 0.9697265625 + } + ] + }, + { + "id": 521, + "text": "from remote.", + "start": 846.12, + "end": 846.58, + "words": [ + { + "word": " from", + "start": 846.12, + "end": 846.3, + "probability": 0.98486328125 + }, + { + "word": " remote.", + "start": 846.3, + "end": 846.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 522, + "text": "And it's a super useful feature", + "start": 847.3000000000001, + "end": 849.24, + "words": [ + { + "word": " And", + "start": 847.3000000000001, + "end": 847.7, + "probability": 0.98876953125 + }, + { + "word": " it's", + "start": 847.7, + "end": 848.1, + "probability": 0.970703125 + }, + { + "word": " a", + "start": 848.1, + "end": 848.16, + "probability": 0.99951171875 + }, + { + "word": " super", + "start": 848.16, + "end": 848.58, + "probability": 0.99951171875 + }, + { + "word": " useful", + "start": 848.58, + "end": 848.82, + "probability": 0.97119140625 + }, + { + "word": " feature", + "start": 848.82, + "end": 849.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 523, + "text": "if you're managing large networks.", + "start": 849.24, + "end": 850.68, + "words": [ + { + "word": " if", + "start": 849.24, + "end": 849.5, + "probability": 0.98095703125 + }, + { + "word": " you're", + "start": 849.5, + "end": 849.62, + "probability": 0.9814453125 + }, + { + "word": " managing", + "start": 849.62, + "end": 849.96, + "probability": 0.9990234375 + }, + { + "word": " large", + "start": 849.96, + "end": 850.3, + "probability": 0.99755859375 + }, + { + "word": " networks.", + "start": 850.3, + "end": 850.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 524, + "text": "Yeah, because, I mean,", + "start": 851.02, + "end": 852.0, + "words": [ + { + "word": " Yeah,", + "start": 851.02, + "end": 851.32, + "probability": 0.9150390625 + }, + { + "word": " because,", + "start": 851.38, + "end": 851.56, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 851.68, + "end": 851.88, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 851.88, + "end": 852.0, + "probability": 1.0 + } + ] + }, + { + "id": 525, + "text": "it's nice to have, like,", + "start": 852.02, + "end": 852.8, + "words": [ + { + "word": " it's", + "start": 852.02, + "end": 852.16, + "probability": 0.99951171875 + }, + { + "word": " nice", + "start": 852.16, + "end": 852.32, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 852.32, + "end": 852.46, + "probability": 1.0 + }, + { + "word": " have,", + "start": 852.46, + "end": 852.58, + "probability": 1.0 + }, + { + "word": " like,", + "start": 852.64, + "end": 852.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 526, + "text": "a remote connection,", + "start": 852.8, + "end": 854.04, + "words": [ + { + "word": " a", + "start": 852.8, + "end": 852.96, + "probability": 0.998046875 + }, + { + "word": " remote", + "start": 852.96, + "end": 853.66, + "probability": 1.0 + }, + { + "word": " connection,", + "start": 853.66, + "end": 854.04, + "probability": 1.0 + } + ] + }, + { + "id": 527, + "text": "but when you need to manage the BIOS.", + "start": 854.22, + "end": 855.66, + "words": [ + { + "word": " but", + "start": 854.22, + "end": 854.4, + "probability": 0.9736328125 + }, + { + "word": " when", + "start": 854.4, + "end": 854.6, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 854.6, + "end": 854.74, + "probability": 1.0 + }, + { + "word": " need", + "start": 854.74, + "end": 854.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 854.84, + "end": 854.9, + "probability": 1.0 + }, + { + "word": " manage", + "start": 854.9, + "end": 855.12, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 855.12, + "end": 855.26, + "probability": 1.0 + }, + { + "word": " BIOS.", + "start": 855.26, + "end": 855.66, + "probability": 0.9921875 + } + ] + }, + { + "id": 528, + "text": "Yeah.", + "start": 856.0, + "end": 856.4, + "words": [ + { + "word": " Yeah.", + "start": 856.0, + "end": 856.4, + "probability": 0.994140625 + } + ] + }, + { + "id": 529, + "text": "And it allows you to make, you know,", + "start": 856.72, + "end": 858.74, + "words": [ + { + "word": " And", + "start": 856.72, + "end": 857.12, + "probability": 0.99169921875 + }, + { + "word": " it", + "start": 857.12, + "end": 857.44, + "probability": 0.94140625 + }, + { + "word": " allows", + "start": 857.44, + "end": 857.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 857.64, + "end": 857.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 857.8, + "end": 857.98, + "probability": 1.0 + }, + { + "word": " make,", + "start": 857.98, + "end": 858.4, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 858.56, + "end": 858.7, + "probability": 1.0 + }, + { + "word": " know,", + "start": 858.7, + "end": 858.74, + "probability": 1.0 + } + ] + }, + { + "id": 530, + "text": "changes to the system", + "start": 858.76, + "end": 859.7, + "words": [ + { + "word": " changes", + "start": 858.76, + "end": 859.12, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 859.12, + "end": 859.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 859.26, + "end": 859.36, + "probability": 1.0 + }, + { + "word": " system", + "start": 859.36, + "end": 859.7, + "probability": 1.0 + } + ] + }, + { + "id": 531, + "text": "while it's running,", + "start": 859.7, + "end": 860.48, + "words": [ + { + "word": " while", + "start": 859.7, + "end": 859.96, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 859.96, + "end": 860.2, + "probability": 1.0 + }, + { + "word": " running,", + "start": 860.2, + "end": 860.48, + "probability": 1.0 + } + ] + }, + { + "id": 532, + "text": "that type of thing.", + "start": 860.6, + "end": 861.28, + "words": [ + { + "word": " that", + "start": 860.6, + "end": 860.72, + "probability": 0.99853515625 + }, + { + "word": " type", + "start": 860.72, + "end": 860.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 860.92, + "end": 861.08, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 861.08, + "end": 861.28, + "probability": 1.0 + } + ] + }, + { + "id": 533, + "text": "But, you know,", + "start": 863.4000000000001, + "end": 864.46, + "words": [ + { + "word": " But,", + "start": 863.4000000000001, + "end": 863.8000000000001, + "probability": 0.95947265625 + }, + { + "word": " you", + "start": 863.8000000000001, + "end": 864.2, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 864.2, + "end": 864.46, + "probability": 1.0 + } + ] + }, + { + "id": 534, + "text": "we've been saying for years,", + "start": 864.48, + "end": 865.58, + "words": [ + { + "word": " we've", + "start": 864.48, + "end": 864.62, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 864.62, + "end": 864.78, + "probability": 1.0 + }, + { + "word": " saying", + "start": 864.78, + "end": 865.0, + "probability": 0.99169921875 + }, + { + "word": " for", + "start": 865.0, + "end": 865.22, + "probability": 0.99951171875 + }, + { + "word": " years,", + "start": 865.22, + "end": 865.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 535, + "text": "you know,", + "start": 865.62, + "end": 865.64, + "words": [ + { + "word": " you", + "start": 865.62, + "end": 865.64, + "probability": 0.51806640625 + }, + { + "word": " know,", + "start": 865.64, + "end": 865.64, + "probability": 0.958984375 + } + ] + }, + { + "id": 536, + "text": "for years,", + "start": 865.64, + "end": 865.86, + "words": [ + { + "word": " for", + "start": 865.64, + "end": 865.86, + "probability": 6.139278411865234e-05 + }, + { + "word": " years,", + "start": 865.86, + "end": 865.86, + "probability": 0.172119140625 + } + ] + }, + { + "id": 537, + "text": "hey, this is kind of a dangerous thing", + "start": 865.86, + "end": 868.34, + "words": [ + { + "word": " hey,", + "start": 865.86, + "end": 866.22, + "probability": 0.5205078125 + }, + { + "word": " this", + "start": 866.3, + "end": 866.44, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 866.44, + "end": 866.64, + "probability": 0.99560546875 + }, + { + "word": " kind", + "start": 866.64, + "end": 867.32, + "probability": 0.8779296875 + }, + { + "word": " of", + "start": 867.32, + "end": 867.56, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 867.56, + "end": 867.64, + "probability": 0.99755859375 + }, + { + "word": " dangerous", + "start": 867.64, + "end": 867.98, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 867.98, + "end": 868.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 538, + "text": "to have in here", + "start": 868.34, + "end": 869.26, + "words": [ + { + "word": " to", + "start": 868.34, + "end": 868.72, + "probability": 0.99462890625 + }, + { + "word": " have", + "start": 868.72, + "end": 868.96, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 868.96, + "end": 869.14, + "probability": 0.99560546875 + }, + { + "word": " here", + "start": 869.14, + "end": 869.26, + "probability": 0.98193359375 + } + ] + }, + { + "id": 539, + "text": "because it's effectively", + "start": 869.26, + "end": 870.46, + "words": [ + { + "word": " because", + "start": 869.26, + "end": 869.5, + "probability": 0.630859375 + }, + { + "word": " it's", + "start": 869.5, + "end": 870.12, + "probability": 0.994140625 + }, + { + "word": " effectively", + "start": 870.12, + "end": 870.46, + "probability": 0.990234375 + } + ] + }, + { + "id": 540, + "text": "a separate computer", + "start": 870.46, + "end": 871.54, + "words": [ + { + "word": " a", + "start": 870.46, + "end": 870.82, + "probability": 0.9990234375 + }, + { + "word": " separate", + "start": 870.82, + "end": 871.16, + "probability": 0.998046875 + }, + { + "word": " computer", + "start": 871.16, + "end": 871.54, + "probability": 0.90771484375 + } + ] + }, + { + "id": 541, + "text": "that's running with,", + "start": 872.14, + "end": 873.2, + "words": [ + { + "word": " that's", + "start": 872.14, + "end": 872.62, + "probability": 0.9658203125 + }, + { + "word": " running", + "start": 872.62, + "end": 872.84, + "probability": 0.99267578125 + }, + { + "word": " with,", + "start": 872.84, + "end": 873.2, + "probability": 0.85205078125 + } + ] + }, + { + "id": 542, + "text": "you know,", + "start": 873.28, + "end": 873.46, + "words": [ + { + "word": " you", + "start": 873.28, + "end": 873.42, + "probability": 0.5625 + }, + { + "word": " know,", + "start": 873.42, + "end": 873.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 543, + "text": "a separate running processor", + "start": 873.48, + "end": 875.42, + "words": [ + { + "word": " a", + "start": 873.48, + "end": 873.52, + "probability": 0.98828125 + }, + { + "word": " separate", + "start": 873.52, + "end": 873.8, + "probability": 0.9990234375 + }, + { + "word": " running", + "start": 873.8, + "end": 874.76, + "probability": 0.994140625 + }, + { + "word": " processor", + "start": 874.76, + "end": 875.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 544, + "text": "that's running within the machine.", + "start": 875.42, + "end": 877.14, + "words": [ + { + "word": " that's", + "start": 875.42, + "end": 876.32, + "probability": 0.9970703125 + }, + { + "word": " running", + "start": 876.32, + "end": 876.48, + "probability": 1.0 + }, + { + "word": " within", + "start": 876.48, + "end": 876.7, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 876.7, + "end": 876.92, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 876.92, + "end": 877.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 545, + "text": "And even when the machine is", + "start": 878.5, + "end": 880.32, + "words": [ + { + "word": " And", + "start": 878.5, + "end": 878.98, + "probability": 0.9814453125 + }, + { + "word": " even", + "start": 878.98, + "end": 879.46, + "probability": 0.9833984375 + }, + { + "word": " when", + "start": 879.46, + "end": 879.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 879.68, + "end": 879.78, + "probability": 1.0 + }, + { + "word": " machine", + "start": 879.78, + "end": 880.0, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 880.0, + "end": 880.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 546, + "text": "quote-unquote powered off,", + "start": 880.32, + "end": 882.2, + "words": [ + { + "word": " quote", + "start": 880.32, + "end": 881.18, + "probability": 0.62744140625 + }, + { + "word": "-unquote", + "start": 881.18, + "end": 881.54, + "probability": 0.78466796875 + }, + { + "word": " powered", + "start": 881.54, + "end": 881.88, + "probability": 0.98876953125 + }, + { + "word": " off,", + "start": 881.88, + "end": 882.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 547, + "text": "right,", + "start": 882.98, + "end": 883.12, + "words": [ + { + "word": " right,", + "start": 882.88, + "end": 883.12, + "probability": 0.974609375 + } + ] + }, + { + "id": 548, + "text": "that other processor is running", + "start": 883.24, + "end": 885.48, + "words": [ + { + "word": " that", + "start": 883.24, + "end": 883.58, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 883.58, + "end": 884.2, + "probability": 1.0 + }, + { + "word": " processor", + "start": 884.2, + "end": 884.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 884.82, + "end": 885.18, + "probability": 1.0 + }, + { + "word": " running", + "start": 885.18, + "end": 885.48, + "probability": 1.0 + } + ] + }, + { + "id": 549, + "text": "and the network card is running,", + "start": 885.48, + "end": 886.76, + "words": [ + { + "word": " and", + "start": 885.48, + "end": 885.7, + "probability": 0.9423828125 + }, + { + "word": " the", + "start": 885.7, + "end": 885.78, + "probability": 1.0 + }, + { + "word": " network", + "start": 885.78, + "end": 886.1, + "probability": 0.99951171875 + }, + { + "word": " card", + "start": 886.1, + "end": 886.34, + "probability": 0.9951171875 + }, + { + "word": " is", + "start": 886.34, + "end": 886.56, + "probability": 1.0 + }, + { + "word": " running,", + "start": 886.56, + "end": 886.76, + "probability": 1.0 + } + ] + }, + { + "id": 550, + "text": "so you can manage that machine", + "start": 886.94, + "end": 888.6, + "words": [ + { + "word": " so", + "start": 886.94, + "end": 887.14, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 887.14, + "end": 887.8, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 887.8, + "end": 887.98, + "probability": 1.0 + }, + { + "word": " manage", + "start": 887.98, + "end": 888.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 888.26, + "end": 888.38, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 888.38, + "end": 888.6, + "probability": 1.0 + } + ] + }, + { + "id": 551, + "text": "and even if you wanted to,", + "start": 888.6, + "end": 889.92, + "words": [ + { + "word": " and", + "start": 888.6, + "end": 888.84, + "probability": 0.7431640625 + }, + { + "word": " even", + "start": 888.84, + "end": 889.34, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 889.34, + "end": 889.5, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 889.5, + "end": 889.56, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 889.56, + "end": 889.74, + "probability": 0.52685546875 + }, + { + "word": " to,", + "start": 889.74, + "end": 889.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 552, + "text": "turn the machine on from remote.", + "start": 889.96, + "end": 891.82, + "words": [ + { + "word": " turn", + "start": 889.96, + "end": 890.24, + "probability": 0.958984375 + }, + { + "word": " the", + "start": 890.24, + "end": 890.42, + "probability": 1.0 + }, + { + "word": " machine", + "start": 890.42, + "end": 890.62, + "probability": 1.0 + }, + { + "word": " on", + "start": 890.62, + "end": 890.86, + "probability": 0.98095703125 + }, + { + "word": " from", + "start": 890.86, + "end": 891.36, + "probability": 1.0 + }, + { + "word": " remote.", + "start": 891.36, + "end": 891.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 553, + "text": "And we started talking about this", + "start": 893.7199999999999, + "end": 895.62, + "words": [ + { + "word": " And", + "start": 893.7199999999999, + "end": 894.1999999999999, + "probability": 0.4140625 + }, + { + "word": " we", + "start": 894.1999999999999, + "end": 894.68, + "probability": 0.99853515625 + }, + { + "word": " started", + "start": 894.68, + "end": 895.3, + "probability": 0.9990234375 + }, + { + "word": " talking", + "start": 895.3, + "end": 895.54, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 895.54, + "end": 895.62, + "probability": 0.59912109375 + }, + { + "word": " this", + "start": 895.62, + "end": 895.62, + "probability": 0.449951171875 + } + ] + }, + { + "id": 554, + "text": "security flaws in this", + "start": 895.64, + "end": 896.76, + "words": [ + { + "word": " security", + "start": 895.64, + "end": 895.96, + "probability": 2.759695053100586e-05 + }, + { + "word": " flaws", + "start": 895.96, + "end": 896.54, + "probability": 0.8994140625 + }, + { + "word": " in", + "start": 896.54, + "end": 896.68, + "probability": 0.85009765625 + }, + { + "word": " this", + "start": 896.68, + "end": 896.76, + "probability": 0.99072265625 + } + ] + }, + { + "id": 555, + "text": "a couple of years ago.", + "start": 896.76, + "end": 897.56, + "words": [ + { + "word": " a", + "start": 896.76, + "end": 896.86, + "probability": 0.9921875 + }, + { + "word": " couple", + "start": 896.86, + "end": 897.04, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 897.04, + "end": 897.1, + "probability": 0.83251953125 + }, + { + "word": " years", + "start": 897.1, + "end": 897.24, + "probability": 0.99951171875 + }, + { + "word": " ago.", + "start": 897.24, + "end": 897.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 556, + "text": "And it turns out", + "start": 898.2800000000001, + "end": 899.86, + "words": [ + { + "word": " And", + "start": 898.2800000000001, + "end": 898.8000000000001, + "probability": 0.84716796875 + }, + { + "word": " it", + "start": 898.8000000000001, + "end": 899.32, + "probability": 0.9521484375 + }, + { + "word": " turns", + "start": 899.32, + "end": 899.6, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 899.6, + "end": 899.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 557, + "text": "that it's gotten everybody else's attention", + "start": 899.86, + "end": 901.08, + "words": [ + { + "word": " that", + "start": 899.86, + "end": 899.98, + "probability": 0.98388671875 + }, + { + "word": " it's", + "start": 899.98, + "end": 900.12, + "probability": 0.99169921875 + }, + { + "word": " gotten", + "start": 900.12, + "end": 900.26, + "probability": 0.99658203125 + }, + { + "word": " everybody", + "start": 900.26, + "end": 900.48, + "probability": 0.9970703125 + }, + { + "word": " else's", + "start": 900.48, + "end": 900.84, + "probability": 0.9970703125 + }, + { + "word": " attention", + "start": 900.84, + "end": 901.08, + "probability": 1.0 + } + ] + }, + { + "id": 558, + "text": "right now", + "start": 901.08, + "end": 901.58, + "words": [ + { + "word": " right", + "start": 901.08, + "end": 901.38, + "probability": 0.99853515625 + }, + { + "word": " now", + "start": 901.38, + "end": 901.58, + "probability": 1.0 + } + ] + }, + { + "id": 559, + "text": "because some serious flaws", + "start": 901.58, + "end": 903.16, + "words": [ + { + "word": " because", + "start": 901.58, + "end": 901.82, + "probability": 0.9228515625 + }, + { + "word": " some", + "start": 901.82, + "end": 902.14, + "probability": 0.9990234375 + }, + { + "word": " serious", + "start": 902.14, + "end": 902.8, + "probability": 0.99951171875 + }, + { + "word": " flaws", + "start": 902.8, + "end": 903.16, + "probability": 0.986328125 + } + ] + }, + { + "id": 560, + "text": "have been found,", + "start": 903.16, + "end": 904.56, + "words": [ + { + "word": " have", + "start": 903.16, + "end": 903.5, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 903.5, + "end": 903.74, + "probability": 1.0 + }, + { + "word": " found,", + "start": 903.74, + "end": 904.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 561, + "text": "especially with the way", + "start": 904.74, + "end": 906.28, + "words": [ + { + "word": " especially", + "start": 904.74, + "end": 905.26, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 905.26, + "end": 905.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 905.8, + "end": 906.04, + "probability": 1.0 + }, + { + "word": " way", + "start": 906.04, + "end": 906.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 562, + "text": "that operating systems interact", + "start": 906.28, + "end": 908.46, + "words": [ + { + "word": " that", + "start": 906.28, + "end": 906.62, + "probability": 0.99951171875 + }, + { + "word": " operating", + "start": 906.62, + "end": 907.44, + "probability": 0.93310546875 + }, + { + "word": " systems", + "start": 907.44, + "end": 907.98, + "probability": 0.99951171875 + }, + { + "word": " interact", + "start": 907.98, + "end": 908.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 563, + "text": "with these particular", + "start": 908.46, + "end": 909.54, + "words": [ + { + "word": " with", + "start": 908.46, + "end": 908.92, + "probability": 1.0 + }, + { + "word": " these", + "start": 908.92, + "end": 909.12, + "probability": 0.99951171875 + }, + { + "word": " particular", + "start": 909.12, + "end": 909.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 564, + "text": "management processes.", + "start": 909.54, + "end": 910.9, + "words": [ + { + "word": " management", + "start": 909.54, + "end": 910.28, + "probability": 0.99951171875 + }, + { + "word": " processes.", + "start": 910.28, + "end": 910.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 565, + "text": "And it's not limited", + "start": 911.94, + "end": 913.22, + "words": [ + { + "word": " And", + "start": 911.94, + "end": 912.46, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 912.46, + "end": 912.78, + "probability": 1.0 + }, + { + "word": " not", + "start": 912.78, + "end": 912.92, + "probability": 1.0 + }, + { + "word": " limited", + "start": 912.92, + "end": 913.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 566, + "text": "just to Windows.", + "start": 913.22, + "end": 915.0, + "words": [ + { + "word": " just", + "start": 913.22, + "end": 914.1, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 914.1, + "end": 914.64, + "probability": 1.0 + }, + { + "word": " Windows.", + "start": 914.64, + "end": 915.0, + "probability": 0.98779296875 + } + ] + }, + { + "id": 567, + "text": "Mac machines are also affected", + "start": 915.36, + "end": 916.82, + "words": [ + { + "word": " Mac", + "start": 915.36, + "end": 915.78, + "probability": 0.9990234375 + }, + { + "word": " machines", + "start": 915.78, + "end": 916.08, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 916.08, + "end": 916.32, + "probability": 1.0 + }, + { + "word": " also", + "start": 916.32, + "end": 916.52, + "probability": 0.99951171875 + }, + { + "word": " affected", + "start": 916.52, + "end": 916.82, + "probability": 0.99658203125 + } + ] + }, + { + "id": 568, + "text": "because most of them", + "start": 916.82, + "end": 917.72, + "words": [ + { + "word": " because", + "start": 916.82, + "end": 917.16, + "probability": 0.998046875 + }, + { + "word": " most", + "start": 917.16, + "end": 917.46, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 917.46, + "end": 917.6, + "probability": 1.0 + }, + { + "word": " them", + "start": 917.6, + "end": 917.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 569, + "text": "are running Intel chips.", + "start": 917.72, + "end": 918.62, + "words": [ + { + "word": " are", + "start": 917.72, + "end": 917.8, + "probability": 0.998046875 + }, + { + "word": " running", + "start": 917.8, + "end": 917.94, + "probability": 0.98095703125 + }, + { + "word": " Intel", + "start": 917.94, + "end": 918.22, + "probability": 0.99658203125 + }, + { + "word": " chips.", + "start": 918.22, + "end": 918.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 570, + "text": "At least for now,", + "start": 919.14, + "end": 920.22, + "words": [ + { + "word": " At", + "start": 919.14, + "end": 919.66, + "probability": 0.998046875 + }, + { + "word": " least", + "start": 919.66, + "end": 919.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 919.9, + "end": 920.02, + "probability": 0.99951171875 + }, + { + "word": " now,", + "start": 920.02, + "end": 920.22, + "probability": 1.0 + } + ] + }, + { + "id": 571, + "text": "I imagine we're going to see", + "start": 920.3, + "end": 921.24, + "words": [ + { + "word": " I", + "start": 920.3, + "end": 920.42, + "probability": 0.9990234375 + }, + { + "word": " imagine", + "start": 920.42, + "end": 920.66, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 920.66, + "end": 920.94, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 920.94, + "end": 921.0, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 921.0, + "end": 921.08, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 921.08, + "end": 921.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 572, + "text": "a change in that", + "start": 921.24, + "end": 921.88, + "words": [ + { + "word": " a", + "start": 921.24, + "end": 921.32, + "probability": 0.99951171875 + }, + { + "word": " change", + "start": 921.32, + "end": 921.58, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 921.58, + "end": 921.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 921.72, + "end": 921.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 573, + "text": "pretty quickly.", + "start": 921.88, + "end": 923.2, + "words": [ + { + "word": " pretty", + "start": 921.88, + "end": 922.66, + "probability": 0.9287109375 + }, + { + "word": " quickly.", + "start": 922.66, + "end": 923.2, + "probability": 0.98583984375 + } + ] + }, + { + "id": 574, + "text": "Which would be kind of crazy", + "start": 923.2, + "end": 924.08, + "words": [ + { + "word": " Which", + "start": 923.2, + "end": 923.32, + "probability": 0.8583984375 + }, + { + "word": " would", + "start": 923.32, + "end": 923.44, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 923.44, + "end": 923.58, + "probability": 1.0 + }, + { + "word": " kind", + "start": 923.58, + "end": 923.72, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 923.72, + "end": 923.82, + "probability": 1.0 + }, + { + "word": " crazy", + "start": 923.82, + "end": 924.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 575, + "text": "because historically", + "start": 924.08, + "end": 925.0, + "words": [ + { + "word": " because", + "start": 924.08, + "end": 924.46, + "probability": 0.984375 + }, + { + "word": " historically", + "start": 924.46, + "end": 925.0, + "probability": 0.87158203125 + } + ] + }, + { + "id": 576, + "text": "they've been running Intel chips", + "start": 925.0, + "end": 925.62, + "words": [ + { + "word": " they've", + "start": 925.0, + "end": 925.48, + "probability": 0.85693359375 + }, + { + "word": " been", + "start": 925.48, + "end": 925.56, + "probability": 0.9990234375 + }, + { + "word": " running", + "start": 925.56, + "end": 925.62, + "probability": 0.378662109375 + }, + { + "word": " Intel", + "start": 925.62, + "end": 925.62, + "probability": 0.76123046875 + }, + { + "word": " chips", + "start": 925.62, + "end": 925.62, + "probability": 0.88037109375 + } + ] + }, + { + "id": 577, + "text": "and one of the biggest purchasers", + "start": 925.62, + "end": 926.72, + "words": [ + { + "word": " and", + "start": 925.62, + "end": 925.64, + "probability": 0.211669921875 + }, + { + "word": " one", + "start": 925.64, + "end": 925.7, + "probability": 0.9873046875 + }, + { + "word": " of", + "start": 925.7, + "end": 925.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 925.8, + "end": 925.86, + "probability": 0.9990234375 + }, + { + "word": " biggest", + "start": 925.86, + "end": 926.08, + "probability": 0.9990234375 + }, + { + "word": " purchasers", + "start": 926.08, + "end": 926.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 578, + "text": "of Intel processors.", + "start": 926.72, + "end": 927.64, + "words": [ + { + "word": " of", + "start": 926.72, + "end": 927.0, + "probability": 0.99853515625 + }, + { + "word": " Intel", + "start": 927.0, + "end": 927.24, + "probability": 0.9716796875 + }, + { + "word": " processors.", + "start": 927.24, + "end": 927.64, + "probability": 0.99755859375 + } + ] + }, + { + "id": 579, + "text": "Yeah, and of course,", + "start": 928.12, + "end": 930.7, + "words": [ + { + "word": " Yeah,", + "start": 928.12, + "end": 928.34, + "probability": 0.84912109375 + }, + { + "word": " and", + "start": 928.46, + "end": 928.76, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 928.76, + "end": 930.22, + "probability": 0.80517578125 + }, + { + "word": " course,", + "start": 930.22, + "end": 930.7, + "probability": 1.0 + } + ] + }, + { + "id": 580, + "text": "you know,", + "start": 930.78, + "end": 931.16, + "words": [ + { + "word": " you", + "start": 930.78, + "end": 930.98, + "probability": 0.54638671875 + }, + { + "word": " know,", + "start": 930.98, + "end": 931.16, + "probability": 1.0 + } + ] + }, + { + "id": 581, + "text": "this type of news to say,", + "start": 931.18, + "end": 932.6, + "words": [ + { + "word": " this", + "start": 931.18, + "end": 931.54, + "probability": 0.99609375 + }, + { + "word": " type", + "start": 931.54, + "end": 931.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 931.74, + "end": 931.98, + "probability": 1.0 + }, + { + "word": " news", + "start": 931.98, + "end": 932.18, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 932.18, + "end": 932.42, + "probability": 0.990234375 + }, + { + "word": " say,", + "start": 932.42, + "end": 932.6, + "probability": 1.0 + } + ] + }, + { + "id": 582, + "text": "hey, there's these gigantic flaws.", + "start": 932.66, + "end": 934.56, + "words": [ + { + "word": " hey,", + "start": 932.66, + "end": 932.88, + "probability": 0.98828125 + }, + { + "word": " there's", + "start": 932.88, + "end": 933.18, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 933.18, + "end": 933.34, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 933.34, + "end": 934.04, + "probability": 1.0 + }, + { + "word": " flaws.", + "start": 934.04, + "end": 934.56, + "probability": 1.0 + } + ] + }, + { + "id": 583, + "text": "We should probably tell you", + "start": 935.18, + "end": 936.58, + "words": [ + { + "word": " We", + "start": 935.18, + "end": 935.66, + "probability": 0.93701171875 + }, + { + "word": " should", + "start": 935.66, + "end": 936.08, + "probability": 1.0 + }, + { + "word": " probably", + "start": 936.08, + "end": 936.24, + "probability": 1.0 + }, + { + "word": " tell", + "start": 936.24, + "end": 936.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 936.42, + "end": 936.58, + "probability": 1.0 + } + ] + }, + { + "id": 584, + "text": "that this isn't one of the flaws", + "start": 936.58, + "end": 938.08, + "words": [ + { + "word": " that", + "start": 936.58, + "end": 936.76, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 936.76, + "end": 937.38, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 937.38, + "end": 937.66, + "probability": 1.0 + }, + { + "word": " one", + "start": 937.66, + "end": 937.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 937.74, + "end": 937.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 937.82, + "end": 937.88, + "probability": 1.0 + }, + { + "word": " flaws", + "start": 937.88, + "end": 938.08, + "probability": 1.0 + } + ] + }, + { + "id": 585, + "text": "where it's just like,", + "start": 938.08, + "end": 938.7, + "words": [ + { + "word": " where", + "start": 938.08, + "end": 938.28, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 938.28, + "end": 938.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 938.44, + "end": 938.48, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 938.48, + "end": 938.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 586, + "text": "hey, somebody could turn", + "start": 938.78, + "end": 939.7, + "words": [ + { + "word": " hey,", + "start": 938.78, + "end": 939.12, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 939.18, + "end": 939.38, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 939.38, + "end": 939.52, + "probability": 0.92919921875 + }, + { + "word": " turn", + "start": 939.52, + "end": 939.7, + "probability": 1.0 + } + ] + }, + { + "id": 587, + "text": "your computer on.", + "start": 939.7, + "end": 940.38, + "words": [ + { + "word": " your", + "start": 939.7, + "end": 939.8, + "probability": 1.0 + }, + { + "word": " computer", + "start": 939.8, + "end": 940.06, + "probability": 1.0 + }, + { + "word": " on.", + "start": 940.06, + "end": 940.38, + "probability": 1.0 + } + ] + }, + { + "id": 588, + "text": "It's that with this particular exploit", + "start": 940.98, + "end": 943.46, + "words": [ + { + "word": " It's", + "start": 940.98, + "end": 941.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 941.46, + "end": 941.94, + "probability": 1.0 + }, + { + "word": " with", + "start": 941.94, + "end": 942.34, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 942.34, + "end": 942.58, + "probability": 1.0 + }, + { + "word": " particular", + "start": 942.58, + "end": 943.04, + "probability": 1.0 + }, + { + "word": " exploit", + "start": 943.04, + "end": 943.46, + "probability": 1.0 + } + ] + }, + { + "id": 589, + "text": "that even things like", + "start": 944.16, + "end": 946.04, + "words": [ + { + "word": " that", + "start": 944.16, + "end": 944.64, + "probability": 0.259765625 + }, + { + "word": " even", + "start": 944.64, + "end": 945.12, + "probability": 1.0 + }, + { + "word": " things", + "start": 945.12, + "end": 945.6, + "probability": 1.0 + }, + { + "word": " like", + "start": 945.6, + "end": 946.04, + "probability": 1.0 + } + ] + }, + { + "id": 590, + "text": "full disk encryption", + "start": 946.04, + "end": 947.06, + "words": [ + { + "word": " full", + "start": 946.04, + "end": 946.34, + "probability": 1.0 + }, + { + "word": " disk", + "start": 946.34, + "end": 946.66, + "probability": 0.7197265625 + }, + { + "word": " encryption", + "start": 946.66, + "end": 947.06, + "probability": 1.0 + } + ] + }, + { + "id": 591, + "text": "would mean nothing, right?", + "start": 947.06, + "end": 949.42, + "words": [ + { + "word": " would", + "start": 947.06, + "end": 948.0, + "probability": 0.99951171875 + }, + { + "word": " mean", + "start": 948.0, + "end": 948.24, + "probability": 1.0 + }, + { + "word": " nothing,", + "start": 948.24, + "end": 948.6, + "probability": 1.0 + }, + { + "word": " right?", + "start": 948.68, + "end": 949.42, + "probability": 1.0 + } + ] + }, + { + "id": 592, + "text": "The remote attacker", + "start": 949.54, + "end": 950.64, + "words": [ + { + "word": " The", + "start": 949.54, + "end": 949.76, + "probability": 0.23193359375 + }, + { + "word": " remote", + "start": 949.76, + "end": 950.16, + "probability": 0.99951171875 + }, + { + "word": " attacker", + "start": 950.16, + "end": 950.64, + "probability": 1.0 + } + ] + }, + { + "id": 593, + "text": "could read your information,", + "start": 950.64, + "end": 952.1, + "words": [ + { + "word": " could", + "start": 950.64, + "end": 951.0, + "probability": 1.0 + }, + { + "word": " read", + "start": 951.0, + "end": 951.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 951.3, + "end": 951.5, + "probability": 1.0 + }, + { + "word": " information,", + "start": 951.5, + "end": 952.1, + "probability": 1.0 + } + ] + }, + { + "id": 594, + "text": "would be able to take information,", + "start": 952.36, + "end": 955.52, + "words": [ + { + "word": " would", + "start": 952.36, + "end": 953.06, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 953.06, + "end": 953.32, + "probability": 1.0 + }, + { + "word": " able", + "start": 953.32, + "end": 953.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 953.52, + "end": 953.7, + "probability": 1.0 + }, + { + "word": " take", + "start": 953.7, + "end": 954.62, + "probability": 0.9990234375 + }, + { + "word": " information,", + "start": 954.62, + "end": 955.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 595, + "text": "from you.", + "start": 955.52, + "end": 956.08, + "words": [ + { + "word": " from", + "start": 955.52, + "end": 955.9, + "probability": 0.6767578125 + }, + { + "word": " you.", + "start": 955.9, + "end": 956.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 596, + "text": "They would be able to see passwords", + "start": 956.16, + "end": 957.64, + "words": [ + { + "word": " They", + "start": 956.16, + "end": 956.48, + "probability": 0.99755859375 + }, + { + "word": " would", + "start": 956.48, + "end": 956.7, + "probability": 0.99609375 + }, + { + "word": " be", + "start": 956.7, + "end": 956.8, + "probability": 1.0 + }, + { + "word": " able", + "start": 956.8, + "end": 956.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 956.92, + "end": 957.04, + "probability": 1.0 + }, + { + "word": " see", + "start": 957.04, + "end": 957.22, + "probability": 1.0 + }, + { + "word": " passwords", + "start": 957.22, + "end": 957.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 597, + "text": "as they're typed in real time", + "start": 957.64, + "end": 958.92, + "words": [ + { + "word": " as", + "start": 957.64, + "end": 957.86, + "probability": 0.98876953125 + }, + { + "word": " they're", + "start": 957.86, + "end": 958.04, + "probability": 0.78271484375 + }, + { + "word": " typed", + "start": 958.04, + "end": 958.24, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 958.24, + "end": 958.44, + "probability": 0.99951171875 + }, + { + "word": " real", + "start": 958.44, + "end": 958.66, + "probability": 1.0 + }, + { + "word": " time", + "start": 958.66, + "end": 958.92, + "probability": 0.91796875 + } + ] + }, + { + "id": 598, + "text": "and no antivirus would be able", + "start": 958.92, + "end": 960.54, + "words": [ + { + "word": " and", + "start": 958.92, + "end": 959.28, + "probability": 0.54052734375 + }, + { + "word": " no", + "start": 959.28, + "end": 959.56, + "probability": 0.9990234375 + }, + { + "word": " antivirus", + "start": 959.56, + "end": 960.18, + "probability": 0.99560546875 + }, + { + "word": " would", + "start": 960.18, + "end": 960.32, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 960.32, + "end": 960.42, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 960.42, + "end": 960.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 599, + "text": "to detect it", + "start": 960.54, + "end": 961.14, + "words": [ + { + "word": " to", + "start": 960.54, + "end": 960.66, + "probability": 1.0 + }, + { + "word": " detect", + "start": 960.66, + "end": 960.9, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 960.9, + "end": 961.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 600, + "text": "because it's not running", + "start": 961.14, + "end": 962.14, + "words": [ + { + "word": " because", + "start": 961.14, + "end": 961.36, + "probability": 0.9951171875 + }, + { + "word": " it's", + "start": 961.36, + "end": 961.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 961.64, + "end": 961.78, + "probability": 1.0 + }, + { + "word": " running", + "start": 961.78, + "end": 962.14, + "probability": 1.0 + } + ] + }, + { + "id": 601, + "text": "in the same sphere.", + "start": 962.14, + "end": 963.24, + "words": [ + { + "word": " in", + "start": 962.14, + "end": 962.3, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 962.3, + "end": 962.36, + "probability": 0.99951171875 + }, + { + "word": " same", + "start": 962.36, + "end": 962.66, + "probability": 1.0 + }, + { + "word": " sphere.", + "start": 962.66, + "end": 963.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 602, + "text": "It's not running within", + "start": 963.6, + "end": 964.78, + "words": [ + { + "word": " It's", + "start": 963.6, + "end": 964.1, + "probability": 1.0 + }, + { + "word": " not", + "start": 964.1, + "end": 964.22, + "probability": 0.998046875 + }, + { + "word": " running", + "start": 964.22, + "end": 964.52, + "probability": 1.0 + }, + { + "word": " within", + "start": 964.52, + "end": 964.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 603, + "text": "that operating system context.", + "start": 964.78, + "end": 966.26, + "words": [ + { + "word": " that", + "start": 964.78, + "end": 965.12, + "probability": 0.9990234375 + }, + { + "word": " operating", + "start": 965.12, + "end": 965.46, + "probability": 0.99755859375 + }, + { + "word": " system", + "start": 965.46, + "end": 965.72, + "probability": 1.0 + }, + { + "word": " context.", + "start": 965.72, + "end": 966.26, + "probability": 1.0 + } + ] + }, + { + "id": 604, + "text": "It's running at the hardware level", + "start": 966.62, + "end": 968.3, + "words": [ + { + "word": " It's", + "start": 966.62, + "end": 967.12, + "probability": 1.0 + }, + { + "word": " running", + "start": 967.12, + "end": 967.28, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 967.28, + "end": 967.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 967.46, + "end": 967.56, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 967.56, + "end": 967.9, + "probability": 0.9990234375 + }, + { + "word": " level", + "start": 967.9, + "end": 968.3, + "probability": 1.0 + } + ] + }, + { + "id": 605, + "text": "where it can read everything.", + "start": 968.3, + "end": 970.02, + "words": [ + { + "word": " where", + "start": 968.3, + "end": 968.86, + "probability": 0.98046875 + }, + { + "word": " it", + "start": 968.86, + "end": 969.0, + "probability": 1.0 + }, + { + "word": " can", + "start": 969.0, + "end": 969.12, + "probability": 1.0 + }, + { + "word": " read", + "start": 969.12, + "end": 969.38, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 969.38, + "end": 970.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 606, + "text": "And this really puts a lot of places", + "start": 971.38, + "end": 974.9, + "words": [ + { + "word": " And", + "start": 971.38, + "end": 971.88, + "probability": 0.88037109375 + }, + { + "word": " this", + "start": 971.88, + "end": 972.38, + "probability": 0.97314453125 + }, + { + "word": " really", + "start": 972.38, + "end": 973.04, + "probability": 1.0 + }, + { + "word": " puts", + "start": 973.04, + "end": 973.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 973.38, + "end": 973.56, + "probability": 1.0 + }, + { + "word": " lot", + "start": 973.56, + "end": 973.76, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 973.76, + "end": 973.94, + "probability": 1.0 + }, + { + "word": " places", + "start": 973.94, + "end": 974.9, + "probability": 0.98828125 + } + ] + }, + { + "id": 607, + "text": "in pretty significant risk.", + "start": 974.9, + "end": 976.9, + "words": [ + { + "word": " in", + "start": 974.9, + "end": 975.38, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 975.38, + "end": 975.9, + "probability": 0.9990234375 + }, + { + "word": " significant", + "start": 975.9, + "end": 976.36, + "probability": 1.0 + }, + { + "word": " risk.", + "start": 976.36, + "end": 976.9, + "probability": 1.0 + } + ] + }, + { + "id": 608, + "text": "The interesting thing here to me", + "start": 977.26, + "end": 978.52, + "words": [ + { + "word": " The", + "start": 977.26, + "end": 977.52, + "probability": 0.9970703125 + }, + { + "word": " interesting", + "start": 977.52, + "end": 977.82, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 977.82, + "end": 978.06, + "probability": 1.0 + }, + { + "word": " here", + "start": 978.06, + "end": 978.24, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 978.24, + "end": 978.34, + "probability": 0.99853515625 + }, + { + "word": " me", + "start": 978.34, + "end": 978.52, + "probability": 1.0 + } + ] + }, + { + "id": 609, + "text": "is that while there's already", + "start": 978.52, + "end": 979.82, + "words": [ + { + "word": " is", + "start": 978.52, + "end": 978.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 978.74, + "end": 978.94, + "probability": 0.99951171875 + }, + { + "word": " while", + "start": 978.94, + "end": 979.3, + "probability": 0.9921875 + }, + { + "word": " there's", + "start": 979.3, + "end": 979.56, + "probability": 1.0 + }, + { + "word": " already", + "start": 979.56, + "end": 979.82, + "probability": 1.0 + } + ] + }, + { + "id": 610, + "text": "a fix for this,", + "start": 979.82, + "end": 980.72, + "words": [ + { + "word": " a", + "start": 979.82, + "end": 980.02, + "probability": 1.0 + }, + { + "word": " fix", + "start": 980.02, + "end": 980.2, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 980.2, + "end": 980.4, + "probability": 1.0 + }, + { + "word": " this,", + "start": 980.4, + "end": 980.72, + "probability": 1.0 + } + ] + }, + { + "id": 611, + "text": "that patch essentially,", + "start": 981.44, + "end": 982.84, + "words": [ + { + "word": " that", + "start": 981.44, + "end": 981.94, + "probability": 0.9990234375 + }, + { + "word": " patch", + "start": 981.94, + "end": 982.44, + "probability": 0.99951171875 + }, + { + "word": " essentially,", + "start": 982.44, + "end": 982.84, + "probability": 0.736328125 + } + ] + }, + { + "id": 612, + "text": "the way that it handles this,", + "start": 983.0, + "end": 984.0, + "words": [ + { + "word": " the", + "start": 983.0, + "end": 983.1, + "probability": 1.0 + }, + { + "word": " way", + "start": 983.1, + "end": 983.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 983.24, + "end": 983.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 983.36, + "end": 983.44, + "probability": 1.0 + }, + { + "word": " handles", + "start": 983.44, + "end": 983.74, + "probability": 0.998046875 + }, + { + "word": " this,", + "start": 983.74, + "end": 984.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 613, + "text": "slows the processor down a lot.", + "start": 984.08, + "end": 985.5, + "words": [ + { + "word": " slows", + "start": 984.08, + "end": 984.56, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 984.56, + "end": 984.82, + "probability": 1.0 + }, + { + "word": " processor", + "start": 984.82, + "end": 985.18, + "probability": 0.9921875 + }, + { + "word": " down", + "start": 985.18, + "end": 985.42, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 985.42, + "end": 985.5, + "probability": 0.25244140625 + }, + { + "word": " lot.", + "start": 985.5, + "end": 985.5, + "probability": 0.397216796875 + } + ] + }, + { + "id": 614, + "text": "It slows down by as much as 30%.", + "start": 985.5, + "end": 986.6, + "words": [ + { + "word": " It", + "start": 985.5, + "end": 985.5, + "probability": 0.001468658447265625 + }, + { + "word": " slows", + "start": 985.5, + "end": 985.5, + "probability": 0.0006203651428222656 + }, + { + "word": " down", + "start": 985.5, + "end": 985.5, + "probability": 0.95751953125 + }, + { + "word": " by", + "start": 985.5, + "end": 985.58, + "probability": 0.9951171875 + }, + { + "word": " as", + "start": 985.58, + "end": 985.72, + "probability": 0.9990234375 + }, + { + "word": " much", + "start": 985.72, + "end": 985.92, + "probability": 1.0 + }, + { + "word": " as", + "start": 985.92, + "end": 986.04, + "probability": 1.0 + }, + { + "word": " 30%.", + "start": 986.04, + "end": 986.6, + "probability": 0.9619140625 + } + ] + }, + { + "id": 615, + "text": "Right.", + "start": 986.6, + "end": 987.46, + "words": [ + { + "word": " Right.", + "start": 986.6, + "end": 987.46, + "probability": 0.9658203125 + } + ] + }, + { + "id": 616, + "text": "Now, they're saying that you're probably", + "start": 987.48, + "end": 988.38, + "words": [ + { + "word": " Now,", + "start": 987.48, + "end": 987.6, + "probability": 0.99609375 + }, + { + "word": " they're", + "start": 987.64, + "end": 987.74, + "probability": 1.0 + }, + { + "word": " saying", + "start": 987.74, + "end": 987.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 987.9, + "end": 988.02, + "probability": 1.0 + }, + { + "word": " you're", + "start": 988.02, + "end": 988.16, + "probability": 1.0 + }, + { + "word": " probably", + "start": 988.16, + "end": 988.38, + "probability": 1.0 + } + ] + }, + { + "id": 617, + "text": "not going to see that much on average.", + "start": 988.38, + "end": 990.32, + "words": [ + { + "word": " not", + "start": 988.38, + "end": 988.54, + "probability": 1.0 + }, + { + "word": " going", + "start": 988.54, + "end": 988.66, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 988.66, + "end": 988.76, + "probability": 1.0 + }, + { + "word": " see", + "start": 988.76, + "end": 988.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 988.94, + "end": 989.16, + "probability": 1.0 + }, + { + "word": " much", + "start": 989.16, + "end": 989.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 989.54, + "end": 989.96, + "probability": 0.99609375 + }, + { + "word": " average.", + "start": 989.96, + "end": 990.32, + "probability": 1.0 + } + ] + }, + { + "id": 618, + "text": "Yeah.", + "start": 990.44, + "end": 990.68, + "words": [ + { + "word": " Yeah.", + "start": 990.44, + "end": 990.68, + "probability": 0.9482421875 + } + ] + }, + { + "id": 619, + "text": "Right.", + "start": 990.7, + "end": 990.98, + "words": [ + { + "word": " Right.", + "start": 990.7, + "end": 990.98, + "probability": 0.78759765625 + } + ] + }, + { + "id": 620, + "text": "But there's the potential", + "start": 991.08, + "end": 992.28, + "words": [ + { + "word": " But", + "start": 991.08, + "end": 991.44, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 991.44, + "end": 991.86, + "probability": 0.8935546875 + }, + { + "word": " the", + "start": 991.86, + "end": 991.98, + "probability": 0.78125 + }, + { + "word": " potential", + "start": 991.98, + "end": 992.28, + "probability": 1.0 + } + ] + }, + { + "id": 621, + "text": "for 30% slowing.", + "start": 992.28, + "end": 994.24, + "words": [ + { + "word": " for", + "start": 992.28, + "end": 992.62, + "probability": 1.0 + }, + { + "word": " 30", + "start": 992.62, + "end": 993.42, + "probability": 1.0 + }, + { + "word": "%", + "start": 993.42, + "end": 993.72, + "probability": 0.9970703125 + }, + { + "word": " slowing.", + "start": 993.72, + "end": 994.24, + "probability": 1.0 + } + ] + }, + { + "id": 622, + "text": "And I mean,", + "start": 994.32, + "end": 994.92, + "words": [ + { + "word": " And", + "start": 994.32, + "end": 994.74, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 994.74, + "end": 994.78, + "probability": 0.6259765625 + }, + { + "word": " mean,", + "start": 994.78, + "end": 994.92, + "probability": 1.0 + } + ] + }, + { + "id": 623, + "text": "when we're in a competition sphere", + "start": 994.94, + "end": 997.72, + "words": [ + { + "word": " when", + "start": 994.94, + "end": 995.1, + "probability": 1.0 + }, + { + "word": " we're", + "start": 995.1, + "end": 995.72, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 995.72, + "end": 995.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 995.84, + "end": 996.0, + "probability": 1.0 + }, + { + "word": " competition", + "start": 996.0, + "end": 996.74, + "probability": 1.0 + }, + { + "word": " sphere", + "start": 996.74, + "end": 997.72, + "probability": 1.0 + } + ] + }, + { + "id": 624, + "text": "right now between AMD and Intel", + "start": 997.72, + "end": 999.54, + "words": [ + { + "word": " right", + "start": 997.72, + "end": 998.06, + "probability": 1.0 + }, + { + "word": " now", + "start": 998.06, + "end": 998.26, + "probability": 1.0 + }, + { + "word": " between", + "start": 998.26, + "end": 998.52, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 998.52, + "end": 998.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 998.94, + "end": 999.26, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 999.26, + "end": 999.54, + "probability": 1.0 + } + ] + }, + { + "id": 625, + "text": "where, I mean,", + "start": 999.54, + "end": 1001.24, + "words": [ + { + "word": " where,", + "start": 999.54, + "end": 999.76, + "probability": 0.7392578125 + }, + { + "word": " I", + "start": 999.96, + "end": 1001.08, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1001.08, + "end": 1001.24, + "probability": 1.0 + } + ] + }, + { + "id": 626, + "text": "speed advantage is measured", + "start": 1001.28, + "end": 1002.42, + "words": [ + { + "word": " speed", + "start": 1001.28, + "end": 1001.58, + "probability": 0.99951171875 + }, + { + "word": " advantage", + "start": 1001.58, + "end": 1001.96, + "probability": 0.99560546875 + }, + { + "word": " is", + "start": 1001.96, + "end": 1002.12, + "probability": 1.0 + }, + { + "word": " measured", + "start": 1002.12, + "end": 1002.42, + "probability": 1.0 + } + ] + }, + { + "id": 627, + "text": "in single digit percentages,", + "start": 1002.42, + "end": 1003.74, + "words": [ + { + "word": " in", + "start": 1002.42, + "end": 1002.62, + "probability": 1.0 + }, + { + "word": " single", + "start": 1002.62, + "end": 1002.96, + "probability": 1.0 + }, + { + "word": " digit", + "start": 1002.96, + "end": 1003.2, + "probability": 0.4033203125 + }, + { + "word": " percentages,", + "start": 1003.2, + "end": 1003.74, + "probability": 1.0 + } + ] + }, + { + "id": 628, + "text": "that's a big drop.", + "start": 1004.42, + "end": 1005.56, + "words": [ + { + "word": " that's", + "start": 1004.42, + "end": 1004.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 1004.9, + "end": 1004.94, + "probability": 1.0 + }, + { + "word": " big", + "start": 1004.94, + "end": 1005.22, + "probability": 1.0 + }, + { + "word": " drop.", + "start": 1005.22, + "end": 1005.56, + "probability": 1.0 + } + ] + }, + { + "id": 629, + "text": "Yeah.", + "start": 1006.02, + "end": 1006.5, + "words": [ + { + "word": " Yeah.", + "start": 1006.02, + "end": 1006.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 630, + "text": "Yeah, it certainly is.", + "start": 1006.52, + "end": 1007.66, + "words": [ + { + "word": " Yeah,", + "start": 1006.52, + "end": 1006.82, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1006.88, + "end": 1006.94, + "probability": 1.0 + }, + { + "word": " certainly", + "start": 1006.94, + "end": 1007.26, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1007.26, + "end": 1007.66, + "probability": 1.0 + } + ] + }, + { + "id": 631, + "text": "To me, you know,", + "start": 1008.88, + "end": 1010.0, + "words": [ + { + "word": " To", + "start": 1008.88, + "end": 1009.36, + "probability": 0.998046875 + }, + { + "word": " me,", + "start": 1009.36, + "end": 1009.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 1009.86, + "end": 1009.86, + "probability": 0.7578125 + }, + { + "word": " know,", + "start": 1009.86, + "end": 1010.0, + "probability": 1.0 + } + ] + }, + { + "id": 632, + "text": "the performance impact", + "start": 1010.02, + "end": 1010.8, + "words": [ + { + "word": " the", + "start": 1010.02, + "end": 1010.1, + "probability": 1.0 + }, + { + "word": " performance", + "start": 1010.1, + "end": 1010.46, + "probability": 1.0 + }, + { + "word": " impact", + "start": 1010.46, + "end": 1010.8, + "probability": 1.0 + } + ] + }, + { + "id": 633, + "text": "isn't nearly as important", + "start": 1011.28, + "end": 1013.98, + "words": [ + { + "word": " isn't", + "start": 1011.28, + "end": 1011.76, + "probability": 1.0 + }, + { + "word": " nearly", + "start": 1011.76, + "end": 1012.22, + "probability": 1.0 + }, + { + "word": " as", + "start": 1012.22, + "end": 1012.72, + "probability": 1.0 + }, + { + "word": " important", + "start": 1012.72, + "end": 1013.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 634, + "text": "as the security impact.", + "start": 1013.98, + "end": 1015.28, + "words": [ + { + "word": " as", + "start": 1013.98, + "end": 1014.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1014.52, + "end": 1014.68, + "probability": 1.0 + }, + { + "word": " security", + "start": 1014.68, + "end": 1015.0, + "probability": 1.0 + }, + { + "word": " impact.", + "start": 1015.0, + "end": 1015.28, + "probability": 0.9775390625 + } + ] + }, + { + "id": 635, + "text": "Right.", + "start": 1015.28, + "end": 1015.48, + "words": [ + { + "word": " Right.", + "start": 1015.28, + "end": 1015.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 636, + "text": "Of course.", + "start": 1015.5, + "end": 1015.82, + "words": [ + { + "word": " Of", + "start": 1015.5, + "end": 1015.6, + "probability": 0.09075927734375 + }, + { + "word": " course.", + "start": 1015.6, + "end": 1015.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 637, + "text": "You know, because most of the time,", + "start": 1016.08, + "end": 1017.62, + "words": [ + { + "word": " You", + "start": 1016.08, + "end": 1016.52, + "probability": 0.548828125 + }, + { + "word": " know,", + "start": 1016.52, + "end": 1016.66, + "probability": 1.0 + }, + { + "word": " because", + "start": 1016.66, + "end": 1016.88, + "probability": 0.99951171875 + }, + { + "word": " most", + "start": 1016.88, + "end": 1017.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 1017.18, + "end": 1017.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1017.32, + "end": 1017.34, + "probability": 1.0 + }, + { + "word": " time,", + "start": 1017.34, + "end": 1017.62, + "probability": 1.0 + } + ] + }, + { + "id": 638, + "text": "in most cases,", + "start": 1017.62, + "end": 1018.48, + "words": [ + { + "word": " in", + "start": 1017.62, + "end": 1017.84, + "probability": 1.0 + }, + { + "word": " most", + "start": 1017.84, + "end": 1018.06, + "probability": 1.0 + }, + { + "word": " cases,", + "start": 1018.06, + "end": 1018.48, + "probability": 1.0 + } + ] + }, + { + "id": 639, + "text": "generally,", + "start": 1019.1199999999999, + "end": 1019.56, + "words": [ + { + "word": " generally,", + "start": 1019.1199999999999, + "end": 1019.56, + "probability": 1.0 + } + ] + }, + { + "id": 640, + "text": "people are sort of overpowered", + "start": 1019.62, + "end": 1021.42, + "words": [ + { + "word": " people", + "start": 1019.62, + "end": 1020.1, + "probability": 1.0 + }, + { + "word": " are", + "start": 1020.1, + "end": 1020.5, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1020.5, + "end": 1020.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 1020.76, + "end": 1020.9, + "probability": 1.0 + }, + { + "word": " overpowered", + "start": 1020.9, + "end": 1021.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 641, + "text": "on the CPU anyway.", + "start": 1021.42, + "end": 1022.3, + "words": [ + { + "word": " on", + "start": 1021.42, + "end": 1021.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1021.6, + "end": 1021.7, + "probability": 1.0 + }, + { + "word": " CPU", + "start": 1021.7, + "end": 1021.98, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 1021.98, + "end": 1022.3, + "probability": 0.99267578125 + } + ] + }, + { + "id": 642, + "text": "They're not hitting that CPU", + "start": 1022.48, + "end": 1024.26, + "words": [ + { + "word": " They're", + "start": 1022.48, + "end": 1022.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 1022.64, + "end": 1022.84, + "probability": 1.0 + }, + { + "word": " hitting", + "start": 1022.84, + "end": 1023.56, + "probability": 0.939453125 + }, + { + "word": " that", + "start": 1023.56, + "end": 1023.92, + "probability": 1.0 + }, + { + "word": " CPU", + "start": 1023.92, + "end": 1024.26, + "probability": 1.0 + } + ] + }, + { + "id": 643, + "text": "all that hard.", + "start": 1024.26, + "end": 1025.24, + "words": [ + { + "word": " all", + "start": 1024.26, + "end": 1024.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 1024.74, + "end": 1024.96, + "probability": 1.0 + }, + { + "word": " hard.", + "start": 1024.96, + "end": 1025.24, + "probability": 1.0 + } + ] + }, + { + "id": 644, + "text": "Yeah.", + "start": 1025.32, + "end": 1025.46, + "words": [ + { + "word": " Yeah.", + "start": 1025.32, + "end": 1025.46, + "probability": 0.99560546875 + } + ] + }, + { + "id": 645, + "text": "Even with the highest end gaming rig,", + "start": 1025.5, + "end": 1027.58, + "words": [ + { + "word": " Even", + "start": 1025.5, + "end": 1025.68, + "probability": 0.99755859375 + }, + { + "word": " with", + "start": 1025.68, + "end": 1025.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 1025.88, + "end": 1026.18, + "probability": 1.0 + }, + { + "word": " highest", + "start": 1026.18, + "end": 1026.9, + "probability": 1.0 + }, + { + "word": " end", + "start": 1026.9, + "end": 1027.12, + "probability": 0.475830078125 + }, + { + "word": " gaming", + "start": 1027.12, + "end": 1027.36, + "probability": 1.0 + }, + { + "word": " rig,", + "start": 1027.36, + "end": 1027.58, + "probability": 1.0 + } + ] + }, + { + "id": 646, + "text": "you really don't need a 12 core i7.", + "start": 1027.64, + "end": 1029.36, + "words": [ + { + "word": " you", + "start": 1027.64, + "end": 1027.74, + "probability": 1.0 + }, + { + "word": " really", + "start": 1027.74, + "end": 1027.96, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1027.96, + "end": 1028.2, + "probability": 1.0 + }, + { + "word": " need", + "start": 1028.2, + "end": 1028.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 1028.36, + "end": 1028.48, + "probability": 1.0 + }, + { + "word": " 12", + "start": 1028.48, + "end": 1028.62, + "probability": 0.99853515625 + }, + { + "word": " core", + "start": 1028.62, + "end": 1028.86, + "probability": 0.73046875 + }, + { + "word": " i7.", + "start": 1028.86, + "end": 1029.36, + "probability": 0.98486328125 + } + ] + }, + { + "id": 647, + "text": "Right.", + "start": 1029.76, + "end": 1030.2, + "words": [ + { + "word": " Right.", + "start": 1029.76, + "end": 1030.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 648, + "text": "And so there's a lot of people", + "start": 1030.44, + "end": 1031.72, + "words": [ + { + "word": " And", + "start": 1030.44, + "end": 1030.88, + "probability": 0.99658203125 + }, + { + "word": " so", + "start": 1030.88, + "end": 1031.02, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1031.02, + "end": 1031.22, + "probability": 0.97265625 + }, + { + "word": " a", + "start": 1031.22, + "end": 1031.3, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1031.3, + "end": 1031.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 1031.4, + "end": 1031.48, + "probability": 1.0 + }, + { + "word": " people", + "start": 1031.48, + "end": 1031.72, + "probability": 1.0 + } + ] + }, + { + "id": 649, + "text": "that are running,", + "start": 1031.72, + "end": 1032.5, + "words": [ + { + "word": " that", + "start": 1031.72, + "end": 1031.9, + "probability": 1.0 + }, + { + "word": " are", + "start": 1031.9, + "end": 1032.02, + "probability": 1.0 + }, + { + "word": " running,", + "start": 1032.02, + "end": 1032.5, + "probability": 1.0 + } + ] + }, + { + "id": 650, + "text": "as an example,", + "start": 1032.64, + "end": 1033.74, + "words": [ + { + "word": " as", + "start": 1032.64, + "end": 1033.22, + "probability": 1.0 + }, + { + "word": " an", + "start": 1033.22, + "end": 1033.34, + "probability": 1.0 + }, + { + "word": " example,", + "start": 1033.34, + "end": 1033.74, + "probability": 1.0 + } + ] + }, + { + "id": 651, + "text": "like i7 processors.", + "start": 1033.86, + "end": 1035.04, + "words": [ + { + "word": " like", + "start": 1033.86, + "end": 1034.1, + "probability": 0.99951171875 + }, + { + "word": " i7", + "start": 1034.1, + "end": 1034.54, + "probability": 1.0 + }, + { + "word": " processors.", + "start": 1034.54, + "end": 1035.04, + "probability": 1.0 + } + ] + }, + { + "id": 652, + "text": "And they're going to be using,", + "start": 1035.26, + "end": 1036.32, + "words": [ + { + "word": " And", + "start": 1035.26, + "end": 1035.52, + "probability": 0.994140625 + }, + { + "word": " they're", + "start": 1035.52, + "end": 1035.66, + "probability": 1.0 + }, + { + "word": " going", + "start": 1035.66, + "end": 1035.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1035.76, + "end": 1035.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 1035.86, + "end": 1035.94, + "probability": 1.0 + }, + { + "word": " using,", + "start": 1035.94, + "end": 1036.32, + "probability": 1.0 + } + ] + }, + { + "id": 653, + "text": "I bet if you were to look at", + "start": 1036.48, + "end": 1038.1, + "words": [ + { + "word": " I", + "start": 1036.48, + "end": 1036.94, + "probability": 1.0 + }, + { + "word": " bet", + "start": 1036.94, + "end": 1037.14, + "probability": 1.0 + }, + { + "word": " if", + "start": 1037.14, + "end": 1037.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 1037.28, + "end": 1037.36, + "probability": 1.0 + }, + { + "word": " were", + "start": 1037.36, + "end": 1037.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1037.42, + "end": 1037.54, + "probability": 1.0 + }, + { + "word": " look", + "start": 1037.54, + "end": 1037.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 1037.74, + "end": 1038.1, + "probability": 1.0 + } + ] + }, + { + "id": 654, + "text": "an overall process usage", + "start": 1038.1, + "end": 1040.14, + "words": [ + { + "word": " an", + "start": 1038.1, + "end": 1038.9, + "probability": 1.0 + }, + { + "word": " overall", + "start": 1038.9, + "end": 1039.32, + "probability": 1.0 + }, + { + "word": " process", + "start": 1039.32, + "end": 1039.72, + "probability": 1.0 + }, + { + "word": " usage", + "start": 1039.72, + "end": 1040.14, + "probability": 1.0 + } + ] + }, + { + "id": 655, + "text": "for a machine,", + "start": 1040.14, + "end": 1040.96, + "words": [ + { + "word": " for", + "start": 1040.14, + "end": 1040.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1040.58, + "end": 1040.7, + "probability": 0.99951171875 + }, + { + "word": " machine,", + "start": 1040.7, + "end": 1040.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 656, + "text": "you're probably saying", + "start": 1041.1, + "end": 1041.82, + "words": [ + { + "word": " you're", + "start": 1041.1, + "end": 1041.26, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1041.26, + "end": 1041.46, + "probability": 1.0 + }, + { + "word": " saying", + "start": 1041.46, + "end": 1041.82, + "probability": 0.98779296875 + } + ] + }, + { + "id": 657, + "text": "20% usage,", + "start": 1041.82, + "end": 1043.16, + "words": [ + { + "word": " 20", + "start": 1041.82, + "end": 1042.58, + "probability": 0.99951171875 + }, + { + "word": "%", + "start": 1042.58, + "end": 1042.94, + "probability": 0.91064453125 + }, + { + "word": " usage,", + "start": 1042.94, + "end": 1043.16, + "probability": 0.79638671875 + } + ] + }, + { + "id": 658, + "text": "30% for like a 20%", + "start": 1043.52, + "end": 1045.48, + "words": [ + { + "word": " 30", + "start": 1043.52, + "end": 1043.7, + "probability": 0.99951171875 + }, + { + "word": "%", + "start": 1043.7, + "end": 1044.14, + "probability": 0.99267578125 + }, + { + "word": " for", + "start": 1044.14, + "end": 1044.4, + "probability": 0.99658203125 + }, + { + "word": " like", + "start": 1044.4, + "end": 1045.16, + "probability": 0.93896484375 + }, + { + "word": " a", + "start": 1045.16, + "end": 1045.28, + "probability": 0.99853515625 + }, + { + "word": " 20", + "start": 1045.28, + "end": 1045.48, + "probability": 0.560546875 + }, + { + "word": "%", + "start": 1045.48, + "end": 1045.48, + "probability": 0.2607421875 + } + ] + }, + { + "id": 659, + "text": "or 24 hour period.", + "start": 1045.5, + "end": 1046.06, + "words": [ + { + "word": " or", + "start": 1045.5, + "end": 1045.58, + "probability": 0.0099945068359375 + }, + { + "word": " 24", + "start": 1045.58, + "end": 1045.66, + "probability": 0.658203125 + }, + { + "word": " hour", + "start": 1045.66, + "end": 1045.74, + "probability": 0.6220703125 + }, + { + "word": " period.", + "start": 1045.74, + "end": 1046.06, + "probability": 0.990234375 + } + ] + }, + { + "id": 660, + "text": "Even on my machine,", + "start": 1047.36, + "end": 1048.6, + "words": [ + { + "word": " Even", + "start": 1047.36, + "end": 1047.84, + "probability": 0.875 + }, + { + "word": " on", + "start": 1047.84, + "end": 1048.14, + "probability": 0.9931640625 + }, + { + "word": " my", + "start": 1048.14, + "end": 1048.28, + "probability": 0.99853515625 + }, + { + "word": " machine,", + "start": 1048.28, + "end": 1048.6, + "probability": 0.99560546875 + } + ] + }, + { + "id": 661, + "text": "right,", + "start": 1048.76, + "end": 1049.14, + "words": [ + { + "word": " right,", + "start": 1048.76, + "end": 1049.14, + "probability": 0.456298828125 + } + ] + }, + { + "id": 662, + "text": "where,", + "start": 1049.26, + "end": 1049.46, + "words": [ + { + "word": " where,", + "start": 1049.26, + "end": 1049.46, + "probability": 0.94384765625 + } + ] + }, + { + "id": 663, + "text": "you know,", + "start": 1049.66, + "end": 1050.18, + "words": [ + { + "word": " you", + "start": 1049.66, + "end": 1050.06, + "probability": 0.841796875 + }, + { + "word": " know,", + "start": 1050.06, + "end": 1050.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 664, + "text": "I experiment a lot", + "start": 1050.22, + "end": 1052.92, + "words": [ + { + "word": " I", + "start": 1050.22, + "end": 1050.54, + "probability": 0.99609375 + }, + { + "word": " experiment", + "start": 1050.54, + "end": 1052.24, + "probability": 0.8740234375 + }, + { + "word": " a", + "start": 1052.24, + "end": 1052.76, + "probability": 0.99658203125 + }, + { + "word": " lot", + "start": 1052.76, + "end": 1052.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 665, + "text": "with things that are", + "start": 1052.92, + "end": 1053.96, + "words": [ + { + "word": " with", + "start": 1052.92, + "end": 1053.18, + "probability": 0.9951171875 + }, + { + "word": " things", + "start": 1053.18, + "end": 1053.46, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1053.46, + "end": 1053.7, + "probability": 0.9970703125 + }, + { + "word": " are", + "start": 1053.7, + "end": 1053.96, + "probability": 0.9951171875 + } + ] + }, + { + "id": 666, + "text": "even high CPU usage.", + "start": 1053.96, + "end": 1055.86, + "words": [ + { + "word": " even", + "start": 1053.96, + "end": 1054.76, + "probability": 0.814453125 + }, + { + "word": " high", + "start": 1054.76, + "end": 1055.0, + "probability": 0.9951171875 + }, + { + "word": " CPU", + "start": 1055.0, + "end": 1055.4, + "probability": 0.9716796875 + }, + { + "word": " usage.", + "start": 1055.4, + "end": 1055.86, + "probability": 0.99658203125 + } + ] + }, + { + "id": 667, + "text": "I'm probably only averaging", + "start": 1055.96, + "end": 1057.26, + "words": [ + { + "word": " I'm", + "start": 1055.96, + "end": 1056.18, + "probability": 0.97705078125 + }, + { + "word": " probably", + "start": 1056.18, + "end": 1056.42, + "probability": 0.99755859375 + }, + { + "word": " only", + "start": 1056.42, + "end": 1056.74, + "probability": 0.99365234375 + }, + { + "word": " averaging", + "start": 1056.74, + "end": 1057.26, + "probability": 0.998046875 + } + ] + }, + { + "id": 668, + "text": "40% usage.", + "start": 1057.26, + "end": 1058.32, + "words": [ + { + "word": " 40", + "start": 1057.26, + "end": 1057.64, + "probability": 0.98291015625 + }, + { + "word": "%", + "start": 1057.64, + "end": 1057.98, + "probability": 0.8310546875 + }, + { + "word": " usage.", + "start": 1057.98, + "end": 1058.32, + "probability": 0.9970703125 + } + ] + }, + { + "id": 669, + "text": "I wonder how this will affect", + "start": 1058.64, + "end": 1059.68, + "words": [ + { + "word": " I", + "start": 1058.64, + "end": 1058.72, + "probability": 0.76025390625 + }, + { + "word": " wonder", + "start": 1058.72, + "end": 1058.9, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 1058.9, + "end": 1059.02, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 1059.02, + "end": 1059.2, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 1059.2, + "end": 1059.3, + "probability": 0.90478515625 + }, + { + "word": " affect", + "start": 1059.3, + "end": 1059.68, + "probability": 0.9423828125 + } + ] + }, + { + "id": 670, + "text": "the animation and movie production industries", + "start": 1059.68, + "end": 1062.52, + "words": [ + { + "word": " the", + "start": 1059.68, + "end": 1060.26, + "probability": 0.99560546875 + }, + { + "word": " animation", + "start": 1060.26, + "end": 1061.1, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1061.1, + "end": 1061.44, + "probability": 0.9697265625 + }, + { + "word": " movie", + "start": 1061.44, + "end": 1061.78, + "probability": 0.99755859375 + }, + { + "word": " production", + "start": 1061.78, + "end": 1062.08, + "probability": 0.998046875 + }, + { + "word": " industries", + "start": 1062.08, + "end": 1062.52, + "probability": 0.99365234375 + } + ] + }, + { + "id": 671, + "text": "because any type of film production", + "start": 1062.52, + "end": 1064.32, + "words": [ + { + "word": " because", + "start": 1062.52, + "end": 1062.98, + "probability": 0.65576171875 + }, + { + "word": " any", + "start": 1062.98, + "end": 1063.48, + "probability": 0.9931640625 + }, + { + "word": " type", + "start": 1063.48, + "end": 1063.62, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1063.62, + "end": 1063.8, + "probability": 0.99951171875 + }, + { + "word": " film", + "start": 1063.8, + "end": 1063.98, + "probability": 0.99951171875 + }, + { + "word": " production", + "start": 1063.98, + "end": 1064.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 672, + "text": "is very processor intensive.", + "start": 1064.32, + "end": 1066.14, + "words": [ + { + "word": " is", + "start": 1064.32, + "end": 1064.98, + "probability": 0.998046875 + }, + { + "word": " very", + "start": 1064.98, + "end": 1065.24, + "probability": 0.99951171875 + }, + { + "word": " processor", + "start": 1065.24, + "end": 1065.74, + "probability": 0.9970703125 + }, + { + "word": " intensive.", + "start": 1065.74, + "end": 1066.14, + "probability": 0.94384765625 + } + ] + }, + { + "id": 673, + "text": "And unless they've got it running on like", + "start": 1066.98, + "end": 1068.84, + "words": [ + { + "word": " And", + "start": 1066.98, + "end": 1067.46, + "probability": 0.78125 + }, + { + "word": " unless", + "start": 1067.46, + "end": 1067.94, + "probability": 0.91015625 + }, + { + "word": " they've", + "start": 1067.94, + "end": 1068.14, + "probability": 0.99853515625 + }, + { + "word": " got", + "start": 1068.14, + "end": 1068.28, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1068.28, + "end": 1068.36, + "probability": 0.9990234375 + }, + { + "word": " running", + "start": 1068.36, + "end": 1068.48, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1068.48, + "end": 1068.7, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1068.7, + "end": 1068.84, + "probability": 0.794921875 + } + ] + }, + { + "id": 674, + "text": "a separate GPU farm,", + "start": 1068.84, + "end": 1069.88, + "words": [ + { + "word": " a", + "start": 1068.84, + "end": 1068.92, + "probability": 0.99560546875 + }, + { + "word": " separate", + "start": 1068.92, + "end": 1069.28, + "probability": 0.99853515625 + }, + { + "word": " GPU", + "start": 1069.28, + "end": 1069.52, + "probability": 0.998046875 + }, + { + "word": " farm,", + "start": 1069.52, + "end": 1069.88, + "probability": 0.9931640625 + } + ] + }, + { + "id": 675, + "text": "which the really big companies will do.", + "start": 1070.02, + "end": 1071.54, + "words": [ + { + "word": " which", + "start": 1070.02, + "end": 1070.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1070.2, + "end": 1070.38, + "probability": 0.998046875 + }, + { + "word": " really", + "start": 1070.38, + "end": 1070.62, + "probability": 1.0 + }, + { + "word": " big", + "start": 1070.62, + "end": 1070.86, + "probability": 0.99951171875 + }, + { + "word": " companies", + "start": 1070.86, + "end": 1071.2, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 1071.2, + "end": 1071.4, + "probability": 0.99951171875 + }, + { + "word": " do.", + "start": 1071.4, + "end": 1071.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 676, + "text": "Yeah, Pixar's got their own phone.", + "start": 1071.62, + "end": 1072.8, + "words": [ + { + "word": " Yeah,", + "start": 1071.62, + "end": 1071.76, + "probability": 0.210205078125 + }, + { + "word": " Pixar's", + "start": 1071.76, + "end": 1072.28, + "probability": 0.60498046875 + }, + { + "word": " got", + "start": 1072.28, + "end": 1072.38, + "probability": 1.0 + }, + { + "word": " their", + "start": 1072.38, + "end": 1072.48, + "probability": 0.9990234375 + }, + { + "word": " own", + "start": 1072.48, + "end": 1072.64, + "probability": 0.99951171875 + }, + { + "word": " phone.", + "start": 1072.64, + "end": 1072.8, + "probability": 0.1990966796875 + } + ] + }, + { + "id": 677, + "text": "But like YouTube developer,", + "start": 1072.82, + "end": 1073.9, + "words": [ + { + "word": " But", + "start": 1072.82, + "end": 1072.92, + "probability": 0.97119140625 + }, + { + "word": " like", + "start": 1072.92, + "end": 1073.02, + "probability": 0.96240234375 + }, + { + "word": " YouTube", + "start": 1073.02, + "end": 1073.44, + "probability": 0.94775390625 + }, + { + "word": " developer,", + "start": 1073.44, + "end": 1073.9, + "probability": 0.92333984375 + } + ] + }, + { + "id": 678, + "text": "or YouTube show runners,", + "start": 1074.1, + "end": 1075.12, + "words": [ + { + "word": " or", + "start": 1074.1, + "end": 1074.26, + "probability": 0.98095703125 + }, + { + "word": " YouTube", + "start": 1074.26, + "end": 1074.5, + "probability": 0.99462890625 + }, + { + "word": " show", + "start": 1074.5, + "end": 1074.82, + "probability": 0.99755859375 + }, + { + "word": " runners,", + "start": 1074.82, + "end": 1075.12, + "probability": 0.5390625 + } + ] + }, + { + "id": 679, + "text": "for instance,", + "start": 1075.12, + "end": 1075.68, + "words": [ + { + "word": " for", + "start": 1075.12, + "end": 1075.32, + "probability": 0.276611328125 + }, + { + "word": " instance,", + "start": 1075.32, + "end": 1075.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 680, + "text": "most of the time they're using Macs as well.", + "start": 1076.46, + "end": 1078.38, + "words": [ + { + "word": " most", + "start": 1076.46, + "end": 1076.9, + "probability": 0.8974609375 + }, + { + "word": " of", + "start": 1076.9, + "end": 1077.06, + "probability": 0.97412109375 + }, + { + "word": " the", + "start": 1077.06, + "end": 1077.16, + "probability": 0.99609375 + }, + { + "word": " time", + "start": 1077.16, + "end": 1077.22, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 1077.22, + "end": 1077.34, + "probability": 0.9794921875 + }, + { + "word": " using", + "start": 1077.34, + "end": 1077.5, + "probability": 0.99951171875 + }, + { + "word": " Macs", + "start": 1077.5, + "end": 1077.98, + "probability": 0.9873046875 + }, + { + "word": " as", + "start": 1077.98, + "end": 1078.12, + "probability": 0.98046875 + }, + { + "word": " well.", + "start": 1078.12, + "end": 1078.38, + "probability": 1.0 + } + ] + }, + { + "id": 681, + "text": "And yeah, I mean,", + "start": 1078.58, + "end": 1080.3, + "words": [ + { + "word": " And", + "start": 1078.58, + "end": 1078.78, + "probability": 0.75439453125 + }, + { + "word": " yeah,", + "start": 1078.78, + "end": 1080.06, + "probability": 0.425048828125 + }, + { + "word": " I", + "start": 1080.18, + "end": 1080.22, + "probability": 0.9658203125 + }, + { + "word": " mean,", + "start": 1080.22, + "end": 1080.3, + "probability": 1.0 + } + ] + }, + { + "id": 682, + "text": "a 20 to 30% drop in your ability", + "start": 1080.32, + "end": 1082.48, + "words": [ + { + "word": " a", + "start": 1080.32, + "end": 1080.5, + "probability": 0.9990234375 + }, + { + "word": " 20", + "start": 1080.5, + "end": 1080.74, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1080.74, + "end": 1080.94, + "probability": 0.325439453125 + }, + { + "word": " 30", + "start": 1080.94, + "end": 1081.16, + "probability": 1.0 + }, + { + "word": "%", + "start": 1081.16, + "end": 1081.44, + "probability": 0.7080078125 + }, + { + "word": " drop", + "start": 1081.44, + "end": 1081.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 1081.78, + "end": 1081.94, + "probability": 1.0 + }, + { + "word": " your", + "start": 1081.94, + "end": 1082.08, + "probability": 1.0 + }, + { + "word": " ability", + "start": 1082.08, + "end": 1082.48, + "probability": 1.0 + } + ] + }, + { + "id": 683, + "text": "to render your video", + "start": 1082.48, + "end": 1083.62, + "words": [ + { + "word": " to", + "start": 1082.48, + "end": 1082.78, + "probability": 1.0 + }, + { + "word": " render", + "start": 1082.78, + "end": 1083.14, + "probability": 1.0 + }, + { + "word": " your", + "start": 1083.14, + "end": 1083.34, + "probability": 1.0 + }, + { + "word": " video", + "start": 1083.34, + "end": 1083.62, + "probability": 1.0 + } + ] + }, + { + "id": 684, + "text": "is kind of a big deal.", + "start": 1083.62, + "end": 1084.5, + "words": [ + { + "word": " is", + "start": 1083.62, + "end": 1083.82, + "probability": 0.99853515625 + }, + { + "word": " kind", + "start": 1083.82, + "end": 1083.96, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1083.96, + "end": 1084.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 1084.06, + "end": 1084.1, + "probability": 1.0 + }, + { + "word": " big", + "start": 1084.1, + "end": 1084.26, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 1084.26, + "end": 1084.5, + "probability": 1.0 + } + ] + }, + { + "id": 685, + "text": "Right.", + "start": 1084.74, + "end": 1085.18, + "words": [ + { + "word": " Right.", + "start": 1084.74, + "end": 1085.18, + "probability": 0.98876953125 + } + ] + }, + { + "id": 686, + "text": "Yeah, it's going to be interesting.", + "start": 1085.34, + "end": 1086.8, + "words": [ + { + "word": " Yeah,", + "start": 1085.34, + "end": 1085.58, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 1085.68, + "end": 1085.82, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1085.82, + "end": 1085.92, + "probability": 0.9853515625 + }, + { + "word": " to", + "start": 1085.92, + "end": 1086.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 1086.34, + "end": 1086.42, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 1086.42, + "end": 1086.8, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "And so anyway,", + "start": 1087.78, + "end": 1088.86, + "words": [ + { + "word": " And", + "start": 1087.78, + "end": 1088.22, + "probability": 0.8818359375 + }, + { + "word": " so", + "start": 1088.22, + "end": 1088.66, + "probability": 0.9990234375 + }, + { + "word": " anyway,", + "start": 1088.66, + "end": 1088.86, + "probability": 0.98779296875 + } + ] + }, + { + "id": 688, + "text": "there's just no way to stop this,", + "start": 1089.0, + "end": 1090.8, + "words": [ + { + "word": " there's", + "start": 1089.0, + "end": 1089.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 1089.16, + "end": 1089.2, + "probability": 0.98974609375 + }, + { + "word": " no", + "start": 1089.2, + "end": 1089.96, + "probability": 1.0 + }, + { + "word": " way", + "start": 1089.96, + "end": 1090.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1090.16, + "end": 1090.24, + "probability": 1.0 + }, + { + "word": " stop", + "start": 1090.24, + "end": 1090.46, + "probability": 1.0 + }, + { + "word": " this,", + "start": 1090.46, + "end": 1090.8, + "probability": 1.0 + } + ] + }, + { + "id": 689, + "text": "right,", + "start": 1090.86, + "end": 1091.3, + "words": [ + { + "word": " right,", + "start": 1090.86, + "end": 1091.3, + "probability": 0.98828125 + } + ] + }, + { + "id": 690, + "text": "other than getting the software patches.", + "start": 1091.38, + "end": 1093.54, + "words": [ + { + "word": " other", + "start": 1091.38, + "end": 1091.62, + "probability": 1.0 + }, + { + "word": " than", + "start": 1091.62, + "end": 1091.86, + "probability": 1.0 + }, + { + "word": " getting", + "start": 1091.86, + "end": 1092.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1092.18, + "end": 1092.52, + "probability": 1.0 + }, + { + "word": " software", + "start": 1092.52, + "end": 1093.14, + "probability": 1.0 + }, + { + "word": " patches.", + "start": 1093.14, + "end": 1093.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 691, + "text": "And from what I understand,", + "start": 1093.66, + "end": 1095.32, + "words": [ + { + "word": " And", + "start": 1093.66, + "end": 1094.1, + "probability": 1.0 + }, + { + "word": " from", + "start": 1094.1, + "end": 1094.88, + "probability": 1.0 + }, + { + "word": " what", + "start": 1094.88, + "end": 1095.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 1095.0, + "end": 1095.08, + "probability": 1.0 + }, + { + "word": " understand,", + "start": 1095.08, + "end": 1095.32, + "probability": 1.0 + } + ] + }, + { + "id": 692, + "text": "there's going to be some basic firmware updates,", + "start": 1095.4, + "end": 1098.34, + "words": [ + { + "word": " there's", + "start": 1095.4, + "end": 1095.64, + "probability": 1.0 + }, + { + "word": " going", + "start": 1095.64, + "end": 1095.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1095.68, + "end": 1095.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 1095.78, + "end": 1095.92, + "probability": 1.0 + }, + { + "word": " some", + "start": 1095.92, + "end": 1096.26, + "probability": 1.0 + }, + { + "word": " basic", + "start": 1096.26, + "end": 1097.42, + "probability": 1.0 + }, + { + "word": " firmware", + "start": 1097.42, + "end": 1097.96, + "probability": 1.0 + }, + { + "word": " updates,", + "start": 1097.96, + "end": 1098.34, + "probability": 1.0 + } + ] + }, + { + "id": 693, + "text": "firmware updates for the processors.", + "start": 1098.8999999999999, + "end": 1100.46, + "words": [ + { + "word": " firmware", + "start": 1098.8999999999999, + "end": 1099.34, + "probability": 0.99951171875 + }, + { + "word": " updates", + "start": 1099.34, + "end": 1099.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 1099.7, + "end": 1099.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 1099.94, + "end": 1100.02, + "probability": 1.0 + }, + { + "word": " processors.", + "start": 1100.02, + "end": 1100.46, + "probability": 1.0 + } + ] + }, + { + "id": 694, + "text": "It's also worth noting that this is,", + "start": 1100.74, + "end": 1102.4, + "words": [ + { + "word": " It's", + "start": 1100.74, + "end": 1101.08, + "probability": 0.99853515625 + }, + { + "word": " also", + "start": 1101.08, + "end": 1101.24, + "probability": 1.0 + }, + { + "word": " worth", + "start": 1101.24, + "end": 1101.48, + "probability": 1.0 + }, + { + "word": " noting", + "start": 1101.48, + "end": 1101.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 1101.7, + "end": 1101.9, + "probability": 1.0 + }, + { + "word": " this", + "start": 1101.9, + "end": 1102.08, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1102.08, + "end": 1102.4, + "probability": 1.0 + } + ] + }, + { + "id": 695, + "text": "this is legacy Intel processor stuff.", + "start": 1102.4, + "end": 1104.54, + "words": [ + { + "word": " this", + "start": 1102.4, + "end": 1102.8, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1102.8, + "end": 1103.02, + "probability": 1.0 + }, + { + "word": " legacy", + "start": 1103.02, + "end": 1103.38, + "probability": 0.99951171875 + }, + { + "word": " Intel", + "start": 1103.38, + "end": 1103.7, + "probability": 0.9990234375 + }, + { + "word": " processor", + "start": 1103.7, + "end": 1104.18, + "probability": 0.99951171875 + }, + { + "word": " stuff.", + "start": 1104.18, + "end": 1104.54, + "probability": 1.0 + } + ] + }, + { + "id": 696, + "text": "Like,", + "start": 1104.58, + "end": 1104.84, + "words": [ + { + "word": " Like,", + "start": 1104.58, + "end": 1104.84, + "probability": 0.99267578125 + } + ] + }, + { + "id": 697, + "text": "this stuff is going to be, like,", + "start": 1104.84, + "end": 1105.1, + "words": [ + { + "word": " this", + "start": 1104.84, + "end": 1104.98, + "probability": 0.501953125 + }, + { + "word": " stuff", + "start": 1104.98, + "end": 1105.1, + "probability": 0.8701171875 + }, + { + "word": " is", + "start": 1105.1, + "end": 1105.1, + "probability": 0.68994140625 + }, + { + "word": " going", + "start": 1105.1, + "end": 1105.1, + "probability": 0.43603515625 + }, + { + "word": " to", + "start": 1105.1, + "end": 1105.1, + "probability": 0.9990234375 + }, + { + "word": " be,", + "start": 1105.1, + "end": 1105.1, + "probability": 0.9697265625 + }, + { + "word": " like,", + "start": 1105.1, + "end": 1105.1, + "probability": 0.450439453125 + } + ] + }, + { + "id": 698, + "text": "", + "start": 1105.1, + "end": 1105.1, + "words": [] + }, + { + "id": 699, + "text": "", + "start": 1105.1, + "end": 1105.1, + "words": [] + }, + { + "id": 700, + "text": "", + "start": 1105.1, + "end": 1105.1, + "words": [] + }, + { + "id": 701, + "text": "", + "start": 1105.1, + "end": 1105.1, + "words": [] + }, + { + "id": 702, + "text": "", + "start": 1105.1, + "end": 1105.1, + "words": [] + }, + { + "id": 703, + "text": "this stuff that's coming out brand new", + "start": 1105.1, + "end": 1106.74, + "words": [ + { + "word": " this", + "start": 1105.1, + "end": 1105.1, + "probability": 0.00032591819763183594 + }, + { + "word": " stuff", + "start": 1105.1, + "end": 1105.1, + "probability": 0.74072265625 + }, + { + "word": " that's", + "start": 1105.1, + "end": 1105.32, + "probability": 0.89599609375 + }, + { + "word": " coming", + "start": 1105.32, + "end": 1105.5, + "probability": 0.99462890625 + }, + { + "word": " out", + "start": 1105.5, + "end": 1105.74, + "probability": 0.900390625 + }, + { + "word": " brand", + "start": 1105.74, + "end": 1106.36, + "probability": 0.94580078125 + }, + { + "word": " new", + "start": 1106.36, + "end": 1106.74, + "probability": 0.87158203125 + } + ] + }, + { + "id": 704, + "text": "is not going to be affected by this.", + "start": 1106.74, + "end": 1108.36, + "words": [ + { + "word": " is", + "start": 1106.74, + "end": 1107.24, + "probability": 0.80908203125 + }, + { + "word": " not", + "start": 1107.24, + "end": 1107.46, + "probability": 0.99365234375 + }, + { + "word": " going", + "start": 1107.46, + "end": 1107.6, + "probability": 0.9140625 + }, + { + "word": " to", + "start": 1107.6, + "end": 1107.7, + "probability": 0.99658203125 + }, + { + "word": " be", + "start": 1107.7, + "end": 1107.78, + "probability": 0.994140625 + }, + { + "word": " affected", + "start": 1107.78, + "end": 1108.02, + "probability": 0.93212890625 + }, + { + "word": " by", + "start": 1108.02, + "end": 1108.32, + "probability": 0.72412109375 + }, + { + "word": " this.", + "start": 1108.32, + "end": 1108.36, + "probability": 0.95751953125 + } + ] + }, + { + "id": 705, + "text": "Actually, since last year.", + "start": 1108.56, + "end": 1109.06, + "words": [ + { + "word": " Actually,", + "start": 1108.56, + "end": 1108.56, + "probability": 0.70849609375 + }, + { + "word": " since", + "start": 1108.56, + "end": 1108.56, + "probability": 0.9775390625 + }, + { + "word": " last", + "start": 1108.56, + "end": 1108.76, + "probability": 0.99853515625 + }, + { + "word": " year.", + "start": 1108.76, + "end": 1109.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 706, + "text": "Yeah.", + "start": 1109.18, + "end": 1109.36, + "words": [ + { + "word": " Yeah.", + "start": 1109.18, + "end": 1109.36, + "probability": 0.76904296875 + } + ] + }, + { + "id": 707, + "text": "And the,", + "start": 1110.28, + "end": 1111.16, + "words": [ + { + "word": " And", + "start": 1110.28, + "end": 1110.72, + "probability": 0.9130859375 + }, + { + "word": " the,", + "start": 1110.72, + "end": 1111.16, + "probability": 0.0723876953125 + } + ] + }, + { + "id": 708, + "text": "there is an option to turn off AMT in most processors, right?", + "start": 1111.62, + "end": 1115.64, + "words": [ + { + "word": " there", + "start": 1111.62, + "end": 1112.06, + "probability": 0.9931640625 + }, + { + "word": " is", + "start": 1112.06, + "end": 1112.26, + "probability": 0.99658203125 + }, + { + "word": " an", + "start": 1112.26, + "end": 1112.36, + "probability": 0.998046875 + }, + { + "word": " option", + "start": 1112.36, + "end": 1112.58, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1112.58, + "end": 1112.72, + "probability": 0.998046875 + }, + { + "word": " turn", + "start": 1112.72, + "end": 1112.9, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 1112.9, + "end": 1113.06, + "probability": 0.9931640625 + }, + { + "word": " AMT", + "start": 1113.06, + "end": 1113.6, + "probability": 0.9716796875 + }, + { + "word": " in", + "start": 1113.6, + "end": 1113.76, + "probability": 0.9833984375 + }, + { + "word": " most", + "start": 1113.76, + "end": 1114.14, + "probability": 0.99951171875 + }, + { + "word": " processors,", + "start": 1114.14, + "end": 1115.04, + "probability": 0.99755859375 + }, + { + "word": " right?", + "start": 1115.26, + "end": 1115.64, + "probability": 0.98486328125 + } + ] + }, + { + "id": 709, + "text": "And turning that off actually does a great deal", + "start": 1115.72, + "end": 1118.96, + "words": [ + { + "word": " And", + "start": 1115.72, + "end": 1115.8, + "probability": 0.994140625 + }, + { + "word": " turning", + "start": 1115.8, + "end": 1116.06, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 1116.06, + "end": 1116.22, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 1116.22, + "end": 1116.44, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 1116.44, + "end": 1116.8, + "probability": 0.873046875 + }, + { + "word": " does", + "start": 1116.8, + "end": 1117.92, + "probability": 0.98486328125 + }, + { + "word": " a", + "start": 1117.92, + "end": 1118.1, + "probability": 0.69873046875 + }, + { + "word": " great", + "start": 1118.1, + "end": 1118.68, + "probability": 0.9990234375 + }, + { + "word": " deal", + "start": 1118.68, + "end": 1118.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 710, + "text": "towards protecting yourself from this particular thing.", + "start": 1118.96, + "end": 1121.06, + "words": [ + { + "word": " towards", + "start": 1118.96, + "end": 1119.26, + "probability": 0.98779296875 + }, + { + "word": " protecting", + "start": 1119.26, + "end": 1119.6, + "probability": 0.9990234375 + }, + { + "word": " yourself", + "start": 1119.6, + "end": 1119.92, + "probability": 0.99853515625 + }, + { + "word": " from", + "start": 1119.92, + "end": 1120.22, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 1120.22, + "end": 1120.4, + "probability": 0.99951171875 + }, + { + "word": " particular", + "start": 1120.4, + "end": 1120.68, + "probability": 0.9990234375 + }, + { + "word": " thing.", + "start": 1120.68, + "end": 1121.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 711, + "text": "But most people don't go into the BIOS.", + "start": 1121.18, + "end": 1122.62, + "words": [ + { + "word": " But", + "start": 1121.18, + "end": 1121.28, + "probability": 0.99853515625 + }, + { + "word": " most", + "start": 1121.28, + "end": 1121.5, + "probability": 0.98876953125 + }, + { + "word": " people", + "start": 1121.5, + "end": 1121.7, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1121.7, + "end": 1121.94, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 1121.94, + "end": 1122.1, + "probability": 0.99853515625 + }, + { + "word": " into", + "start": 1122.1, + "end": 1122.22, + "probability": 0.9794921875 + }, + { + "word": " the", + "start": 1122.22, + "end": 1122.3, + "probability": 0.89404296875 + }, + { + "word": " BIOS.", + "start": 1122.3, + "end": 1122.62, + "probability": 0.97119140625 + } + ] + }, + { + "id": 712, + "text": "And that's not going to be an option anyway", + "start": 1122.72, + "end": 1123.96, + "words": [ + { + "word": " And", + "start": 1122.72, + "end": 1122.86, + "probability": 0.9951171875 + }, + { + "word": " that's", + "start": 1122.86, + "end": 1123.04, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 1123.04, + "end": 1123.16, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 1123.16, + "end": 1123.26, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 1123.26, + "end": 1123.36, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1123.36, + "end": 1123.42, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1123.42, + "end": 1123.5, + "probability": 0.9990234375 + }, + { + "word": " option", + "start": 1123.5, + "end": 1123.74, + "probability": 0.99951171875 + }, + { + "word": " anyway", + "start": 1123.74, + "end": 1123.96, + "probability": 0.9599609375 + } + ] + }, + { + "id": 713, + "text": "for the really big businesses that need those AMT features.", + "start": 1123.96, + "end": 1126.42, + "words": [ + { + "word": " for", + "start": 1123.96, + "end": 1124.2, + "probability": 0.97607421875 + }, + { + "word": " the", + "start": 1124.2, + "end": 1124.26, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 1124.26, + "end": 1124.44, + "probability": 0.9990234375 + }, + { + "word": " big", + "start": 1124.44, + "end": 1124.68, + "probability": 0.99951171875 + }, + { + "word": " businesses", + "start": 1124.68, + "end": 1125.04, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1125.04, + "end": 1125.36, + "probability": 0.99951171875 + }, + { + "word": " need", + "start": 1125.36, + "end": 1125.54, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 1125.54, + "end": 1125.76, + "probability": 0.9990234375 + }, + { + "word": " AMT", + "start": 1125.76, + "end": 1126.04, + "probability": 0.98583984375 + }, + { + "word": " features.", + "start": 1126.04, + "end": 1126.42, + "probability": 0.99755859375 + } + ] + }, + { + "id": 714, + "text": "Right.", + "start": 1126.68, + "end": 1127.02, + "words": [ + { + "word": " Right.", + "start": 1126.68, + "end": 1127.02, + "probability": 0.99658203125 + } + ] + }, + { + "id": 715, + "text": "So I'm curious what's going to happen there.", + "start": 1128.1, + "end": 1130.3, + "words": [ + { + "word": " So", + "start": 1128.1, + "end": 1128.54, + "probability": 0.998046875 + }, + { + "word": " I'm", + "start": 1128.54, + "end": 1128.98, + "probability": 0.76220703125 + }, + { + "word": " curious", + "start": 1128.98, + "end": 1129.4, + "probability": 0.99072265625 + }, + { + "word": " what's", + "start": 1129.4, + "end": 1129.7, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1129.7, + "end": 1129.78, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 1129.78, + "end": 1129.88, + "probability": 0.99951171875 + }, + { + "word": " happen", + "start": 1129.88, + "end": 1130.14, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 1130.14, + "end": 1130.3, + "probability": 0.529296875 + } + ] + }, + { + "id": 716, + "text": "As you would imagine,", + "start": 1130.3, + "end": 1131.38, + "words": [ + { + "word": " As", + "start": 1130.3, + "end": 1130.64, + "probability": 0.98193359375 + }, + { + "word": " you", + "start": 1130.64, + "end": 1130.86, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 1130.86, + "end": 1131.0, + "probability": 0.9990234375 + }, + { + "word": " imagine,", + "start": 1131.0, + "end": 1131.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 717, + "text": "the Intel stock didn't, you know,", + "start": 1131.44, + "end": 1134.52, + "words": [ + { + "word": " the", + "start": 1131.44, + "end": 1131.68, + "probability": 0.99951171875 + }, + { + "word": " Intel", + "start": 1131.68, + "end": 1132.14, + "probability": 0.9951171875 + }, + { + "word": " stock", + "start": 1132.14, + "end": 1132.86, + "probability": 0.9990234375 + }, + { + "word": " didn't,", + "start": 1132.86, + "end": 1133.48, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1133.48, + "end": 1134.34, + "probability": 0.99072265625 + }, + { + "word": " know,", + "start": 1134.34, + "end": 1134.52, + "probability": 1.0 + } + ] + }, + { + "id": 718, + "text": "didn't fare all that well because of it.", + "start": 1134.52, + "end": 1136.3, + "words": [ + { + "word": " didn't", + "start": 1134.52, + "end": 1134.76, + "probability": 0.8759765625 + }, + { + "word": " fare", + "start": 1134.76, + "end": 1134.94, + "probability": 0.99267578125 + }, + { + "word": " all", + "start": 1134.94, + "end": 1135.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 1135.12, + "end": 1135.26, + "probability": 1.0 + }, + { + "word": " well", + "start": 1135.26, + "end": 1135.54, + "probability": 1.0 + }, + { + "word": " because", + "start": 1135.54, + "end": 1135.9, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1135.9, + "end": 1136.16, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1136.16, + "end": 1136.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 719, + "text": "Yeah, it dropped by 3% pretty much instantly,", + "start": 1136.38, + "end": 1138.4, + "words": [ + { + "word": " Yeah,", + "start": 1136.38, + "end": 1136.46, + "probability": 0.98046875 + }, + { + "word": " it", + "start": 1136.48, + "end": 1136.56, + "probability": 0.99951171875 + }, + { + "word": " dropped", + "start": 1136.56, + "end": 1136.76, + "probability": 1.0 + }, + { + "word": " by", + "start": 1136.76, + "end": 1137.02, + "probability": 1.0 + }, + { + "word": " 3", + "start": 1137.02, + "end": 1137.3, + "probability": 0.9541015625 + }, + { + "word": "%", + "start": 1137.3, + "end": 1137.58, + "probability": 0.97607421875 + }, + { + "word": " pretty", + "start": 1137.58, + "end": 1137.86, + "probability": 1.0 + }, + { + "word": " much", + "start": 1137.86, + "end": 1138.04, + "probability": 1.0 + }, + { + "word": " instantly,", + "start": 1138.04, + "end": 1138.4, + "probability": 1.0 + } + ] + }, + { + "id": 720, + "text": "which is a huge number for them.", + "start": 1138.52, + "end": 1139.82, + "words": [ + { + "word": " which", + "start": 1138.52, + "end": 1138.68, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1138.68, + "end": 1138.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 1138.8, + "end": 1138.92, + "probability": 1.0 + }, + { + "word": " huge", + "start": 1138.92, + "end": 1139.14, + "probability": 1.0 + }, + { + "word": " number", + "start": 1139.14, + "end": 1139.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 1139.4, + "end": 1139.64, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1139.64, + "end": 1139.82, + "probability": 1.0 + } + ] + }, + { + "id": 721, + "text": "Yeah.", + "start": 1140.08, + "end": 1140.58, + "words": [ + { + "word": " Yeah.", + "start": 1140.08, + "end": 1140.58, + "probability": 0.99560546875 + } + ] + }, + { + "id": 722, + "text": "But you know what the interesting thing is,", + "start": 1140.66, + "end": 1142.28, + "words": [ + { + "word": " But", + "start": 1140.66, + "end": 1140.88, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 1140.88, + "end": 1141.02, + "probability": 0.56494140625 + }, + { + "word": " know", + "start": 1141.02, + "end": 1141.18, + "probability": 1.0 + }, + { + "word": " what", + "start": 1141.18, + "end": 1141.26, + "probability": 0.84912109375 + }, + { + "word": " the", + "start": 1141.26, + "end": 1141.34, + "probability": 0.8193359375 + }, + { + "word": " interesting", + "start": 1141.34, + "end": 1141.62, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1141.62, + "end": 1141.9, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1141.9, + "end": 1142.28, + "probability": 1.0 + } + ] + }, + { + "id": 723, + "text": "is how the CEO reacted before the release of this announcement", + "start": 1142.34, + "end": 1146.3, + "words": [ + { + "word": " is", + "start": 1142.34, + "end": 1142.56, + "probability": 0.99951171875 + }, + { + "word": " how", + "start": 1142.56, + "end": 1143.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 1143.16, + "end": 1143.36, + "probability": 1.0 + }, + { + "word": " CEO", + "start": 1143.36, + "end": 1143.7, + "probability": 0.99951171875 + }, + { + "word": " reacted", + "start": 1143.7, + "end": 1144.06, + "probability": 1.0 + }, + { + "word": " before", + "start": 1144.06, + "end": 1144.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1144.6, + "end": 1144.88, + "probability": 1.0 + }, + { + "word": " release", + "start": 1144.88, + "end": 1145.22, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 1145.22, + "end": 1145.48, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1145.48, + "end": 1145.94, + "probability": 0.99560546875 + }, + { + "word": " announcement", + "start": 1145.94, + "end": 1146.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 724, + "text": "or the announcement of this particular flaw,", + "start": 1146.3, + "end": 1148.06, + "words": [ + { + "word": " or", + "start": 1146.3, + "end": 1146.5, + "probability": 0.86669921875 + }, + { + "word": " the", + "start": 1146.5, + "end": 1146.64, + "probability": 0.9990234375 + }, + { + "word": " announcement", + "start": 1146.64, + "end": 1146.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 1146.9, + "end": 1147.16, + "probability": 1.0 + }, + { + "word": " this", + "start": 1147.16, + "end": 1147.32, + "probability": 1.0 + }, + { + "word": " particular", + "start": 1147.32, + "end": 1147.68, + "probability": 1.0 + }, + { + "word": " flaw,", + "start": 1147.68, + "end": 1148.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 725, + "text": "which was, I mean,", + "start": 1148.96, + "end": 1151.18, + "words": [ + { + "word": " which", + "start": 1148.84, + "end": 1149.1, + "probability": 1.0 + }, + { + "word": " was,", + "start": 1149.1, + "end": 1149.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 1149.54, + "end": 1150.7, + "probability": 0.71337890625 + }, + { + "word": " mean,", + "start": 1150.7, + "end": 1151.18, + "probability": 1.0 + } + ] + }, + { + "id": 726, + "text": "he normally sells about, you know,", + "start": 1151.22, + "end": 1153.9, + "words": [ + { + "word": " he", + "start": 1151.22, + "end": 1151.72, + "probability": 1.0 + }, + { + "word": " normally", + "start": 1151.72, + "end": 1152.08, + "probability": 0.99951171875 + }, + { + "word": " sells", + "start": 1152.08, + "end": 1152.46, + "probability": 1.0 + }, + { + "word": " about,", + "start": 1152.46, + "end": 1153.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 1153.0, + "end": 1153.78, + "probability": 0.99365234375 + }, + { + "word": " know,", + "start": 1153.78, + "end": 1153.9, + "probability": 1.0 + } + ] + }, + { + "id": 727, + "text": "$2 million a year worth of Intel stock.", + "start": 1153.9, + "end": 1156.86, + "words": [ + { + "word": " $2", + "start": 1153.9, + "end": 1154.04, + "probability": 0.98583984375 + }, + { + "word": " million", + "start": 1154.04, + "end": 1154.4, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1154.4, + "end": 1154.86, + "probability": 1.0 + }, + { + "word": " year", + "start": 1154.86, + "end": 1155.14, + "probability": 1.0 + }, + { + "word": " worth", + "start": 1155.14, + "end": 1155.5, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1155.5, + "end": 1155.72, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 1155.72, + "end": 1156.34, + "probability": 0.845703125 + }, + { + "word": " stock.", + "start": 1156.34, + "end": 1156.86, + "probability": 1.0 + } + ] + }, + { + "id": 728, + "text": "But it was $40 million this year,", + "start": 1157.48, + "end": 1159.46, + "words": [ + { + "word": " But", + "start": 1157.48, + "end": 1158.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 1158.0, + "end": 1158.1, + "probability": 1.0 + }, + { + "word": " was", + "start": 1158.1, + "end": 1158.2, + "probability": 1.0 + }, + { + "word": " $40", + "start": 1158.2, + "end": 1158.5, + "probability": 1.0 + }, + { + "word": " million", + "start": 1158.5, + "end": 1158.72, + "probability": 1.0 + }, + { + "word": " this", + "start": 1158.72, + "end": 1159.2, + "probability": 1.0 + }, + { + "word": " year,", + "start": 1159.2, + "end": 1159.46, + "probability": 1.0 + } + ] + }, + { + "id": 729, + "text": "right before this was announced.", + "start": 1160.1200000000001, + "end": 1162.18, + "words": [ + { + "word": " right", + "start": 1160.1200000000001, + "end": 1160.64, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 1160.64, + "end": 1160.98, + "probability": 1.0 + }, + { + "word": " this", + "start": 1160.98, + "end": 1161.56, + "probability": 1.0 + }, + { + "word": " was", + "start": 1161.56, + "end": 1161.76, + "probability": 1.0 + }, + { + "word": " announced.", + "start": 1161.76, + "end": 1162.18, + "probability": 1.0 + } + ] + }, + { + "id": 730, + "text": "And so. What a coincidence.", + "start": 1162.8, + "end": 1164.3, + "words": [ + { + "word": " And", + "start": 1162.8, + "end": 1163.32, + "probability": 0.76318359375 + }, + { + "word": " so.", + "start": 1163.32, + "end": 1163.56, + "probability": 1.0 + }, + { + "word": " What", + "start": 1163.62, + "end": 1163.88, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1163.88, + "end": 1163.92, + "probability": 1.0 + }, + { + "word": " coincidence.", + "start": 1163.92, + "end": 1164.3, + "probability": 1.0 + } + ] + }, + { + "id": 731, + "text": "You know, I'm sure that there's no sort of like,", + "start": 1164.8999999999999, + "end": 1167.38, + "words": [ + { + "word": " You", + "start": 1164.8999999999999, + "end": 1165.3, + "probability": 0.395751953125 + }, + { + "word": " know,", + "start": 1165.3, + "end": 1165.46, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 1165.5, + "end": 1165.76, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 1165.76, + "end": 1165.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 1165.98, + "end": 1166.18, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1166.18, + "end": 1166.42, + "probability": 1.0 + }, + { + "word": " no", + "start": 1166.42, + "end": 1166.56, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1166.56, + "end": 1166.9, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1166.9, + "end": 1167.08, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1167.08, + "end": 1167.38, + "probability": 0.7041015625 + } + ] + }, + { + "id": 732, + "text": "you know, he knew or anything.", + "start": 1167.48, + "end": 1169.1, + "words": [ + { + "word": " you", + "start": 1167.48, + "end": 1167.62, + "probability": 0.99609375 + }, + { + "word": " know,", + "start": 1167.62, + "end": 1167.8, + "probability": 1.0 + }, + { + "word": " he", + "start": 1167.8, + "end": 1167.98, + "probability": 0.99853515625 + }, + { + "word": " knew", + "start": 1167.98, + "end": 1168.42, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1168.42, + "end": 1168.78, + "probability": 0.986328125 + }, + { + "word": " anything.", + "start": 1168.78, + "end": 1169.1, + "probability": 0.9873046875 + } + ] + }, + { + "id": 733, + "text": "No, that was just luck.", + "start": 1169.38, + "end": 1170.16, + "words": [ + { + "word": " No,", + "start": 1169.38, + "end": 1169.52, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1169.56, + "end": 1169.64, + "probability": 1.0 + }, + { + "word": " was", + "start": 1169.64, + "end": 1169.76, + "probability": 1.0 + }, + { + "word": " just", + "start": 1169.76, + "end": 1169.9, + "probability": 1.0 + }, + { + "word": " luck.", + "start": 1169.9, + "end": 1170.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 734, + "text": "It was already scheduled.", + "start": 1171.12, + "end": 1172.22, + "words": [ + { + "word": " It", + "start": 1171.12, + "end": 1171.52, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1171.52, + "end": 1171.64, + "probability": 1.0 + }, + { + "word": " already", + "start": 1171.64, + "end": 1171.86, + "probability": 1.0 + }, + { + "word": " scheduled.", + "start": 1171.86, + "end": 1172.22, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "Just happened to need 20 times as normal amount,", + "start": 1172.3, + "end": 1175.32, + "words": [ + { + "word": " Just", + "start": 1172.3, + "end": 1172.44, + "probability": 0.83544921875 + }, + { + "word": " happened", + "start": 1172.44, + "end": 1172.88, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1172.88, + "end": 1173.12, + "probability": 0.91552734375 + }, + { + "word": " need", + "start": 1173.12, + "end": 1173.32, + "probability": 0.99609375 + }, + { + "word": " 20", + "start": 1173.32, + "end": 1174.06, + "probability": 0.99560546875 + }, + { + "word": " times", + "start": 1174.06, + "end": 1174.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 1174.5, + "end": 1174.66, + "probability": 0.057464599609375 + }, + { + "word": " normal", + "start": 1174.66, + "end": 1174.92, + "probability": 1.0 + }, + { + "word": " amount,", + "start": 1174.92, + "end": 1175.32, + "probability": 1.0 + } + ] + }, + { + "id": 736, + "text": "you know, this year.", + "start": 1176.9199999999998, + "end": 1177.9, + "words": [ + { + "word": " you", + "start": 1176.9199999999998, + "end": 1177.32, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 1177.32, + "end": 1177.48, + "probability": 1.0 + }, + { + "word": " this", + "start": 1177.48, + "end": 1177.66, + "probability": 1.0 + }, + { + "word": " year.", + "start": 1177.66, + "end": 1177.9, + "probability": 1.0 + } + ] + }, + { + "id": 737, + "text": "Maybe he was buying a house or a yacht.", + "start": 1178.12, + "end": 1181.06, + "words": [ + { + "word": " Maybe", + "start": 1178.12, + "end": 1178.52, + "probability": 1.0 + }, + { + "word": " he", + "start": 1178.52, + "end": 1178.64, + "probability": 0.9892578125 + }, + { + "word": " was", + "start": 1178.64, + "end": 1178.7, + "probability": 0.98779296875 + }, + { + "word": " buying", + "start": 1178.7, + "end": 1178.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 1178.84, + "end": 1178.98, + "probability": 1.0 + }, + { + "word": " house", + "start": 1178.98, + "end": 1179.22, + "probability": 1.0 + }, + { + "word": " or", + "start": 1179.22, + "end": 1180.32, + "probability": 0.86767578125 + }, + { + "word": " a", + "start": 1180.32, + "end": 1180.82, + "probability": 1.0 + }, + { + "word": " yacht.", + "start": 1180.82, + "end": 1181.06, + "probability": 1.0 + } + ] + }, + { + "id": 738, + "text": "Just in case.", + "start": 1181.42, + "end": 1182.82, + "words": [ + { + "word": " Just", + "start": 1181.42, + "end": 1181.82, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1181.82, + "end": 1182.36, + "probability": 0.9951171875 + }, + { + "word": " case.", + "start": 1182.36, + "end": 1182.82, + "probability": 1.0 + } + ] + }, + { + "id": 739, + "text": "Right. Or it was a really rough Christmas.", + "start": 1183.06, + "end": 1184.86, + "words": [ + { + "word": " Right.", + "start": 1183.06, + "end": 1183.46, + "probability": 0.99658203125 + }, + { + "word": " Or", + "start": 1183.56, + "end": 1183.72, + "probability": 0.99560546875 + }, + { + "word": " it", + "start": 1183.72, + "end": 1183.84, + "probability": 1.0 + }, + { + "word": " was", + "start": 1183.84, + "end": 1183.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 1183.96, + "end": 1184.08, + "probability": 1.0 + }, + { + "word": " really", + "start": 1184.08, + "end": 1184.28, + "probability": 1.0 + }, + { + "word": " rough", + "start": 1184.28, + "end": 1184.48, + "probability": 1.0 + }, + { + "word": " Christmas.", + "start": 1184.48, + "end": 1184.86, + "probability": 1.0 + } + ] + }, + { + "id": 740, + "text": "That's what it was.", + "start": 1184.94, + "end": 1185.74, + "words": [ + { + "word": " That's", + "start": 1184.94, + "end": 1185.34, + "probability": 1.0 + }, + { + "word": " what", + "start": 1185.34, + "end": 1185.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 1185.46, + "end": 1185.56, + "probability": 1.0 + }, + { + "word": " was.", + "start": 1185.56, + "end": 1185.74, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "So once again, we've got some type of a,", + "start": 1187.7399999999998, + "end": 1190.16, + "words": [ + { + "word": " So", + "start": 1187.7399999999998, + "end": 1188.1399999999999, + "probability": 0.9990234375 + }, + { + "word": " once", + "start": 1188.1399999999999, + "end": 1188.54, + "probability": 0.48046875 + }, + { + "word": " again,", + "start": 1188.54, + "end": 1188.78, + "probability": 1.0 + }, + { + "word": " we've", + "start": 1188.86, + "end": 1189.06, + "probability": 1.0 + }, + { + "word": " got", + "start": 1189.06, + "end": 1189.24, + "probability": 1.0 + }, + { + "word": " some", + "start": 1189.24, + "end": 1189.44, + "probability": 1.0 + }, + { + "word": " type", + "start": 1189.44, + "end": 1189.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 1189.66, + "end": 1189.86, + "probability": 1.0 + }, + { + "word": " a,", + "start": 1189.86, + "end": 1190.16, + "probability": 1.0 + } + ] + }, + { + "id": 742, + "text": "you know, a CEO type person that is in the tech industry.", + "start": 1190.16, + "end": 1193.82, + "words": [ + { + "word": " you", + "start": 1190.16, + "end": 1190.5, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1190.5, + "end": 1190.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 1190.7, + "end": 1190.98, + "probability": 0.99951171875 + }, + { + "word": " CEO", + "start": 1190.98, + "end": 1191.38, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 1191.38, + "end": 1191.7, + "probability": 0.92822265625 + }, + { + "word": " person", + "start": 1191.7, + "end": 1192.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1192.14, + "end": 1192.5, + "probability": 0.66845703125 + }, + { + "word": " is", + "start": 1192.5, + "end": 1192.68, + "probability": 1.0 + }, + { + "word": " in", + "start": 1192.68, + "end": 1193.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 1193.18, + "end": 1193.3, + "probability": 1.0 + }, + { + "word": " tech", + "start": 1193.3, + "end": 1193.5, + "probability": 0.99951171875 + }, + { + "word": " industry.", + "start": 1193.5, + "end": 1193.82, + "probability": 1.0 + } + ] + }, + { + "id": 743, + "text": "Now, this is a really tough time. Right.", + "start": 1193.92, + "end": 1194.28, + "words": [ + { + "word": " Now,", + "start": 1193.92, + "end": 1194.06, + "probability": 0.927734375 + }, + { + "word": " this", + "start": 1194.1, + "end": 1194.26, + "probability": 0.95263671875 + }, + { + "word": " is", + "start": 1194.26, + "end": 1194.28, + "probability": 0.66015625 + }, + { + "word": " a", + "start": 1194.28, + "end": 1194.28, + "probability": 0.53955078125 + }, + { + "word": " really", + "start": 1194.28, + "end": 1194.28, + "probability": 0.3486328125 + }, + { + "word": " tough", + "start": 1194.28, + "end": 1194.28, + "probability": 0.36865234375 + }, + { + "word": " time.", + "start": 1194.28, + "end": 1194.28, + "probability": 0.2509765625 + }, + { + "word": " Right.", + "start": 1194.28, + "end": 1194.28, + "probability": 0.2408447265625 + } + ] + }, + { + "id": 744, + "text": "OK.", + "start": 1194.28, + "end": 1194.64, + "words": [ + { + "word": " OK.", + "start": 1194.28, + "end": 1194.64, + "probability": 4.470348358154297e-06 + } + ] + }, + { + "id": 745, + "text": "OK.", + "start": 1197.06, + "end": 1197.08, + "words": [ + { + "word": " OK.", + "start": 1197.06, + "end": 1197.08, + "probability": 0.0364990234375 + } + ] + }, + { + "id": 746, + "text": "OK.", + "start": 1197.1, + "end": 1197.12, + "words": [ + { + "word": " OK.", + "start": 1197.1, + "end": 1197.12, + "probability": 0.6162109375 + } + ] + }, + { + "id": 747, + "text": "OK.", + "start": 1199.1, + "end": 1199.48, + "words": [ + { + "word": " OK.", + "start": 1199.1, + "end": 1199.48, + "probability": 0.83154296875 + } + ] + }, + { + "id": 748, + "text": "Cryptocoin, where they were selling Cryptocoin off before.", + "start": 1199.48, + "end": 1203.34, + "words": [ + { + "word": " Cryptocoin,", + "start": 1199.48, + "end": 1199.98, + "probability": 0.50341796875 + }, + { + "word": " where", + "start": 1199.98, + "end": 1200.94, + "probability": 0.9677734375 + }, + { + "word": " they", + "start": 1200.94, + "end": 1201.16, + "probability": 1.0 + }, + { + "word": " were", + "start": 1201.16, + "end": 1201.3, + "probability": 1.0 + }, + { + "word": " selling", + "start": 1201.3, + "end": 1201.64, + "probability": 1.0 + }, + { + "word": " Cryptocoin", + "start": 1201.64, + "end": 1202.72, + "probability": 0.84033203125 + }, + { + "word": " off", + "start": 1202.72, + "end": 1202.92, + "probability": 0.99951171875 + }, + { + "word": " before.", + "start": 1202.92, + "end": 1203.34, + "probability": 1.0 + } + ] + }, + { + "id": 749, + "text": "Right.", + "start": 1203.56, + "end": 1203.76, + "words": [ + { + "word": " Right.", + "start": 1203.56, + "end": 1203.76, + "probability": 0.53466796875 + } + ] + }, + { + "id": 750, + "text": "Which one was that?", + "start": 1205.82, + "end": 1206.66, + "words": [ + { + "word": " Which", + "start": 1205.82, + "end": 1206.26, + "probability": 0.99560546875 + }, + { + "word": " one", + "start": 1206.26, + "end": 1206.38, + "probability": 1.0 + }, + { + "word": " was", + "start": 1206.38, + "end": 1206.54, + "probability": 1.0 + }, + { + "word": " that?", + "start": 1206.54, + "end": 1206.66, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "I can't remember which coin that was.", + "start": 1206.74, + "end": 1208.08, + "words": [ + { + "word": " I", + "start": 1206.74, + "end": 1206.9, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1206.9, + "end": 1207.1, + "probability": 1.0 + }, + { + "word": " remember", + "start": 1207.1, + "end": 1207.32, + "probability": 1.0 + }, + { + "word": " which", + "start": 1207.32, + "end": 1207.52, + "probability": 0.99951171875 + }, + { + "word": " coin", + "start": 1207.52, + "end": 1207.76, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 1207.76, + "end": 1207.88, + "probability": 1.0 + }, + { + "word": " was.", + "start": 1207.88, + "end": 1208.08, + "probability": 1.0 + } + ] + }, + { + "id": 752, + "text": "It's one of the ones that you have.", + "start": 1209.4, + "end": 1210.5, + "words": [ + { + "word": " It's", + "start": 1209.4, + "end": 1209.84, + "probability": 0.99658203125 + }, + { + "word": " one", + "start": 1209.84, + "end": 1209.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1209.92, + "end": 1210.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 1210.0, + "end": 1210.04, + "probability": 1.0 + }, + { + "word": " ones", + "start": 1210.04, + "end": 1210.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1210.14, + "end": 1210.26, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1210.26, + "end": 1210.28, + "probability": 1.0 + }, + { + "word": " have.", + "start": 1210.28, + "end": 1210.5, + "probability": 1.0 + } + ] + }, + { + "id": 753, + "text": "Oh, it was Bitcoin Cash.", + "start": 1211.02, + "end": 1212.14, + "words": [ + { + "word": " Oh,", + "start": 1211.02, + "end": 1211.46, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1211.46, + "end": 1211.52, + "probability": 1.0 + }, + { + "word": " was", + "start": 1211.52, + "end": 1211.64, + "probability": 1.0 + }, + { + "word": " Bitcoin", + "start": 1211.64, + "end": 1211.86, + "probability": 0.99951171875 + }, + { + "word": " Cash.", + "start": 1211.86, + "end": 1212.14, + "probability": 0.99462890625 + } + ] + }, + { + "id": 754, + "text": "Yeah.", + "start": 1212.36, + "end": 1212.58, + "words": [ + { + "word": " Yeah.", + "start": 1212.36, + "end": 1212.58, + "probability": 0.94677734375 + } + ] + }, + { + "id": 755, + "text": "So, yeah, Bitcoin Cash, the developer of that basically saying,", + "start": 1213.14, + "end": 1217.7, + "words": [ + { + "word": " So,", + "start": 1213.14, + "end": 1213.58, + "probability": 0.97265625 + }, + { + "word": " yeah,", + "start": 1213.58, + "end": 1213.88, + "probability": 0.63037109375 + }, + { + "word": " Bitcoin", + "start": 1213.9, + "end": 1214.12, + "probability": 1.0 + }, + { + "word": " Cash,", + "start": 1214.12, + "end": 1214.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1214.7, + "end": 1215.64, + "probability": 1.0 + }, + { + "word": " developer", + "start": 1215.64, + "end": 1216.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 1216.34, + "end": 1216.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 1216.58, + "end": 1216.78, + "probability": 1.0 + }, + { + "word": " basically", + "start": 1216.78, + "end": 1217.28, + "probability": 0.73388671875 + }, + { + "word": " saying,", + "start": 1217.28, + "end": 1217.7, + "probability": 1.0 + } + ] + }, + { + "id": 756, + "text": "hey, you know, I just need some extra money right now.", + "start": 1217.88, + "end": 1220.3, + "words": [ + { + "word": " hey,", + "start": 1217.88, + "end": 1218.08, + "probability": 0.9599609375 + }, + { + "word": " you", + "start": 1218.2, + "end": 1218.3, + "probability": 0.76611328125 + }, + { + "word": " know,", + "start": 1218.3, + "end": 1218.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 1218.64, + "end": 1219.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 1219.06, + "end": 1219.22, + "probability": 1.0 + }, + { + "word": " need", + "start": 1219.22, + "end": 1219.36, + "probability": 1.0 + }, + { + "word": " some", + "start": 1219.36, + "end": 1219.5, + "probability": 1.0 + }, + { + "word": " extra", + "start": 1219.5, + "end": 1219.66, + "probability": 1.0 + }, + { + "word": " money", + "start": 1219.66, + "end": 1219.9, + "probability": 1.0 + }, + { + "word": " right", + "start": 1219.9, + "end": 1220.08, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 1220.08, + "end": 1220.3, + "probability": 1.0 + } + ] + }, + { + "id": 757, + "text": "And taking a bunch out.", + "start": 1220.54, + "end": 1222.14, + "words": [ + { + "word": " And", + "start": 1220.54, + "end": 1220.98, + "probability": 0.9990234375 + }, + { + "word": " taking", + "start": 1220.98, + "end": 1221.68, + "probability": 0.970703125 + }, + { + "word": " a", + "start": 1221.68, + "end": 1221.82, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 1221.82, + "end": 1221.96, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1221.96, + "end": 1222.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 758, + "text": "But anyway, so there's an investigation happening to find out, you know,", + "start": 1223.4799999999998, + "end": 1229.22, + "words": [ + { + "word": " But", + "start": 1223.4799999999998, + "end": 1223.9199999999998, + "probability": 0.9873046875 + }, + { + "word": " anyway,", + "start": 1223.9199999999998, + "end": 1224.36, + "probability": 0.771484375 + }, + { + "word": " so", + "start": 1224.58, + "end": 1225.3, + "probability": 0.9921875 + }, + { + "word": " there's", + "start": 1225.3, + "end": 1226.02, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1226.02, + "end": 1226.06, + "probability": 1.0 + }, + { + "word": " investigation", + "start": 1226.06, + "end": 1226.42, + "probability": 1.0 + }, + { + "word": " happening", + "start": 1226.42, + "end": 1226.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1226.86, + "end": 1227.66, + "probability": 0.99853515625 + }, + { + "word": " find", + "start": 1227.66, + "end": 1227.94, + "probability": 1.0 + }, + { + "word": " out,", + "start": 1227.94, + "end": 1228.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1228.3, + "end": 1228.94, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1228.94, + "end": 1229.22, + "probability": 1.0 + } + ] + }, + { + "id": 759, + "text": "what he knew and when he knew it, that type of thing.", + "start": 1229.48, + "end": 1232.16, + "words": [ + { + "word": " what", + "start": 1229.48, + "end": 1229.7, + "probability": 0.177001953125 + }, + { + "word": " he", + "start": 1229.7, + "end": 1229.82, + "probability": 0.98974609375 + }, + { + "word": " knew", + "start": 1229.82, + "end": 1229.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1229.98, + "end": 1230.16, + "probability": 0.97607421875 + }, + { + "word": " when", + "start": 1230.16, + "end": 1230.82, + "probability": 1.0 + }, + { + "word": " he", + "start": 1230.82, + "end": 1230.92, + "probability": 0.99951171875 + }, + { + "word": " knew", + "start": 1230.92, + "end": 1231.04, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1231.04, + "end": 1231.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 1231.26, + "end": 1231.64, + "probability": 0.99560546875 + }, + { + "word": " type", + "start": 1231.64, + "end": 1231.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 1231.86, + "end": 1231.98, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1231.98, + "end": 1232.16, + "probability": 1.0 + } + ] + }, + { + "id": 760, + "text": "Yeah, because that's the most insider trading thing I've ever heard, I think.", + "start": 1232.66, + "end": 1236.28, + "words": [ + { + "word": " Yeah,", + "start": 1232.66, + "end": 1233.02, + "probability": 0.994140625 + }, + { + "word": " because", + "start": 1233.08, + "end": 1233.3, + "probability": 0.99755859375 + }, + { + "word": " that's", + "start": 1233.3, + "end": 1233.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1233.72, + "end": 1233.9, + "probability": 1.0 + }, + { + "word": " most", + "start": 1233.9, + "end": 1234.16, + "probability": 1.0 + }, + { + "word": " insider", + "start": 1234.16, + "end": 1234.6, + "probability": 0.9990234375 + }, + { + "word": " trading", + "start": 1234.6, + "end": 1234.9, + "probability": 0.98876953125 + }, + { + "word": " thing", + "start": 1234.9, + "end": 1235.22, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1235.22, + "end": 1235.5, + "probability": 0.99951171875 + }, + { + "word": " ever", + "start": 1235.5, + "end": 1235.68, + "probability": 1.0 + }, + { + "word": " heard,", + "start": 1235.68, + "end": 1235.96, + "probability": 1.0 + }, + { + "word": " I", + "start": 1236.0, + "end": 1236.12, + "probability": 1.0 + }, + { + "word": " think.", + "start": 1236.12, + "end": 1236.28, + "probability": 1.0 + } + ] + }, + { + "id": 761, + "text": "I don't know how you could think you're going to get away with that.", + "start": 1236.94, + "end": 1238.92, + "words": [ + { + "word": " I", + "start": 1236.94, + "end": 1237.3, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1237.3, + "end": 1237.46, + "probability": 1.0 + }, + { + "word": " know", + "start": 1237.46, + "end": 1237.54, + "probability": 1.0 + }, + { + "word": " how", + "start": 1237.54, + "end": 1237.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 1237.66, + "end": 1237.84, + "probability": 1.0 + }, + { + "word": " could", + "start": 1237.84, + "end": 1237.94, + "probability": 0.99267578125 + }, + { + "word": " think", + "start": 1237.94, + "end": 1238.1, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1238.1, + "end": 1238.22, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 1238.22, + "end": 1238.3, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1238.3, + "end": 1238.36, + "probability": 1.0 + }, + { + "word": " get", + "start": 1238.36, + "end": 1238.44, + "probability": 1.0 + }, + { + "word": " away", + "start": 1238.44, + "end": 1238.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 1238.54, + "end": 1238.72, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1238.72, + "end": 1238.92, + "probability": 1.0 + } + ] + }, + { + "id": 762, + "text": "I don't know.", + "start": 1240.3200000000002, + "end": 1241.2, + "words": [ + { + "word": " I", + "start": 1240.3200000000002, + "end": 1240.68, + "probability": 0.982421875 + }, + { + "word": " don't", + "start": 1240.68, + "end": 1241.04, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1241.04, + "end": 1241.2, + "probability": 1.0 + } + ] + }, + { + "id": 763, + "text": "So anyway, your computer may be telling you that, hey, you need some updates, by the way,", + "start": 1242.1000000000001, + "end": 1248.5, + "words": [ + { + "word": " So", + "start": 1242.1000000000001, + "end": 1242.46, + "probability": 0.7421875 + }, + { + "word": " anyway,", + "start": 1242.46, + "end": 1242.82, + "probability": 0.85546875 + }, + { + "word": " your", + "start": 1243.08, + "end": 1243.78, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1243.78, + "end": 1244.34, + "probability": 1.0 + }, + { + "word": " may", + "start": 1244.34, + "end": 1245.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 1245.38, + "end": 1245.82, + "probability": 1.0 + }, + { + "word": " telling", + "start": 1245.82, + "end": 1246.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1246.32, + "end": 1246.58, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1246.58, + "end": 1246.76, + "probability": 0.9990234375 + }, + { + "word": " hey,", + "start": 1246.8, + "end": 1246.98, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 1246.98, + "end": 1247.08, + "probability": 1.0 + }, + { + "word": " need", + "start": 1247.08, + "end": 1247.2, + "probability": 1.0 + }, + { + "word": " some", + "start": 1247.2, + "end": 1247.34, + "probability": 1.0 + }, + { + "word": " updates,", + "start": 1247.34, + "end": 1247.62, + "probability": 1.0 + }, + { + "word": " by", + "start": 1247.84, + "end": 1248.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1248.22, + "end": 1248.36, + "probability": 1.0 + }, + { + "word": " way,", + "start": 1248.36, + "end": 1248.5, + "probability": 1.0 + } + ] + }, + { + "id": 764, + "text": "even though this has mostly been patched in previous updates.", + "start": 1248.92, + "end": 1253.1, + "words": [ + { + "word": " even", + "start": 1248.92, + "end": 1249.28, + "probability": 1.0 + }, + { + "word": " though", + "start": 1249.28, + "end": 1249.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 1249.46, + "end": 1249.62, + "probability": 1.0 + }, + { + "word": " has", + "start": 1249.62, + "end": 1249.74, + "probability": 0.99951171875 + }, + { + "word": " mostly", + "start": 1249.74, + "end": 1250.12, + "probability": 1.0 + }, + { + "word": " been", + "start": 1250.12, + "end": 1250.36, + "probability": 1.0 + }, + { + "word": " patched", + "start": 1250.36, + "end": 1250.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 1250.96, + "end": 1251.54, + "probability": 0.998046875 + }, + { + "word": " previous", + "start": 1251.54, + "end": 1252.66, + "probability": 1.0 + }, + { + "word": " updates.", + "start": 1252.66, + "end": 1253.1, + "probability": 1.0 + } + ] + }, + { + "id": 765, + "text": "How is that going to get patched?", + "start": 1253.9, + "end": 1255.42, + "words": [ + { + "word": " How", + "start": 1253.9, + "end": 1254.26, + "probability": 0.9248046875 + }, + { + "word": " is", + "start": 1254.26, + "end": 1254.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 1254.62, + "end": 1254.76, + "probability": 1.0 + }, + { + "word": " going", + "start": 1254.76, + "end": 1254.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1254.86, + "end": 1254.96, + "probability": 1.0 + }, + { + "word": " get", + "start": 1254.96, + "end": 1255.02, + "probability": 0.99951171875 + }, + { + "word": " patched?", + "start": 1255.02, + "end": 1255.42, + "probability": 1.0 + } + ] + }, + { + "id": 766, + "text": "Is it going to be a BIOS update?", + "start": 1255.42, + "end": 1256.44, + "words": [ + { + "word": " Is", + "start": 1255.42, + "end": 1255.54, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1255.54, + "end": 1255.6, + "probability": 1.0 + }, + { + "word": " going", + "start": 1255.6, + "end": 1255.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 1255.68, + "end": 1255.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 1255.76, + "end": 1255.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1255.82, + "end": 1255.9, + "probability": 1.0 + }, + { + "word": " BIOS", + "start": 1255.9, + "end": 1256.2, + "probability": 0.9990234375 + }, + { + "word": " update?", + "start": 1256.2, + "end": 1256.44, + "probability": 1.0 + } + ] + }, + { + "id": 767, + "text": "How does that work?", + "start": 1256.56, + "end": 1257.06, + "words": [ + { + "word": " How", + "start": 1256.56, + "end": 1256.68, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 1256.68, + "end": 1256.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 1256.78, + "end": 1256.88, + "probability": 1.0 + }, + { + "word": " work?", + "start": 1256.88, + "end": 1257.06, + "probability": 1.0 + } + ] + }, + { + "id": 768, + "text": "Right now it's an OS update.", + "start": 1257.36, + "end": 1258.9, + "words": [ + { + "word": " Right", + "start": 1257.36, + "end": 1257.72, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 1257.72, + "end": 1257.84, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1257.84, + "end": 1257.98, + "probability": 0.7978515625 + }, + { + "word": " an", + "start": 1257.98, + "end": 1258.16, + "probability": 1.0 + }, + { + "word": " OS", + "start": 1258.16, + "end": 1258.6, + "probability": 0.99951171875 + }, + { + "word": " update.", + "start": 1258.6, + "end": 1258.9, + "probability": 1.0 + } + ] + }, + { + "id": 769, + "text": "Okay.", + "start": 1258.94, + "end": 1259.14, + "words": [ + { + "word": " Okay.", + "start": 1258.94, + "end": 1259.14, + "probability": 0.9755859375 + } + ] + }, + { + "id": 770, + "text": "But from what I understand, there are going to be firmware updates for your board.", + "start": 1260.4599999999998, + "end": 1264.82, + "words": [ + { + "word": " But", + "start": 1260.4599999999998, + "end": 1260.8999999999999, + "probability": 0.84326171875 + }, + { + "word": " from", + "start": 1260.8999999999999, + "end": 1261.34, + "probability": 0.986328125 + }, + { + "word": " what", + "start": 1261.34, + "end": 1261.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 1261.52, + "end": 1261.62, + "probability": 1.0 + }, + { + "word": " understand,", + "start": 1261.62, + "end": 1261.92, + "probability": 1.0 + }, + { + "word": " there", + "start": 1262.26, + "end": 1262.9, + "probability": 1.0 + }, + { + "word": " are", + "start": 1262.9, + "end": 1263.28, + "probability": 1.0 + }, + { + "word": " going", + "start": 1263.28, + "end": 1263.5, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1263.5, + "end": 1263.66, + "probability": 1.0 + }, + { + "word": " be", + "start": 1263.66, + "end": 1263.78, + "probability": 1.0 + }, + { + "word": " firmware", + "start": 1263.78, + "end": 1263.98, + "probability": 0.9970703125 + }, + { + "word": " updates", + "start": 1263.98, + "end": 1264.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 1264.28, + "end": 1264.5, + "probability": 0.984375 + }, + { + "word": " your", + "start": 1264.5, + "end": 1264.64, + "probability": 0.99951171875 + }, + { + "word": " board.", + "start": 1264.64, + "end": 1264.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 771, + "text": "Most people don't go out there and get those.", + "start": 1264.96, + "end": 1266.6, + "words": [ + { + "word": " Most", + "start": 1264.96, + "end": 1265.4, + "probability": 0.8505859375 + }, + { + "word": " people", + "start": 1265.4, + "end": 1265.7, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1265.7, + "end": 1265.88, + "probability": 1.0 + }, + { + "word": " go", + "start": 1265.88, + "end": 1265.96, + "probability": 1.0 + }, + { + "word": " out", + "start": 1265.96, + "end": 1266.08, + "probability": 1.0 + }, + { + "word": " there", + "start": 1266.08, + "end": 1266.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 1266.16, + "end": 1266.24, + "probability": 1.0 + }, + { + "word": " get", + "start": 1266.24, + "end": 1266.36, + "probability": 1.0 + }, + { + "word": " those.", + "start": 1266.36, + "end": 1266.6, + "probability": 1.0 + } + ] + }, + { + "id": 772, + "text": "And it's kind of a scary thing to be, like, flashing your BIOS.", + "start": 1266.84, + "end": 1269.64, + "words": [ + { + "word": " And", + "start": 1266.84, + "end": 1267.12, + "probability": 0.8408203125 + }, + { + "word": " it's", + "start": 1267.12, + "end": 1267.38, + "probability": 1.0 + }, + { + "word": " kind", + "start": 1267.38, + "end": 1267.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1267.5, + "end": 1267.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1267.58, + "end": 1267.62, + "probability": 1.0 + }, + { + "word": " scary", + "start": 1267.62, + "end": 1267.86, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1267.86, + "end": 1268.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1268.14, + "end": 1268.38, + "probability": 1.0 + }, + { + "word": " be,", + "start": 1268.38, + "end": 1268.48, + "probability": 0.99609375 + }, + { + "word": " like,", + "start": 1268.52, + "end": 1268.84, + "probability": 1.0 + }, + { + "word": " flashing", + "start": 1268.84, + "end": 1269.14, + "probability": 0.9951171875 + }, + { + "word": " your", + "start": 1269.14, + "end": 1269.28, + "probability": 1.0 + }, + { + "word": " BIOS.", + "start": 1269.28, + "end": 1269.64, + "probability": 0.99609375 + } + ] + }, + { + "id": 773, + "text": "Yeah, because, well, in new machines it's not so much because they generally have dual BIOS.", + "start": 1269.72, + "end": 1274.7, + "words": [ + { + "word": " Yeah,", + "start": 1269.72, + "end": 1269.88, + "probability": 0.93359375 + }, + { + "word": " because,", + "start": 1269.88, + "end": 1270.06, + "probability": 0.99609375 + }, + { + "word": " well,", + "start": 1270.22, + "end": 1271.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 1271.2, + "end": 1271.36, + "probability": 1.0 + }, + { + "word": " new", + "start": 1271.36, + "end": 1271.68, + "probability": 1.0 + }, + { + "word": " machines", + "start": 1271.68, + "end": 1271.96, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1271.96, + "end": 1272.16, + "probability": 0.8642578125 + }, + { + "word": " not", + "start": 1272.16, + "end": 1272.28, + "probability": 1.0 + }, + { + "word": " so", + "start": 1272.28, + "end": 1272.38, + "probability": 1.0 + }, + { + "word": " much", + "start": 1272.38, + "end": 1272.58, + "probability": 1.0 + }, + { + "word": " because", + "start": 1272.58, + "end": 1272.8, + "probability": 0.92822265625 + }, + { + "word": " they", + "start": 1272.8, + "end": 1273.1, + "probability": 1.0 + }, + { + "word": " generally", + "start": 1273.1, + "end": 1273.7, + "probability": 1.0 + }, + { + "word": " have", + "start": 1273.7, + "end": 1274.02, + "probability": 1.0 + }, + { + "word": " dual", + "start": 1274.02, + "end": 1274.2, + "probability": 0.99951171875 + }, + { + "word": " BIOS.", + "start": 1274.2, + "end": 1274.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 774, + "text": "Right.", + "start": 1274.8, + "end": 1275.04, + "words": [ + { + "word": " Right.", + "start": 1274.8, + "end": 1275.04, + "probability": 0.98388671875 + } + ] + }, + { + "id": 775, + "text": "But older machines, let's say older than five years ago.", + "start": 1275.34, + "end": 1279.2, + "words": [ + { + "word": " But", + "start": 1275.34, + "end": 1275.78, + "probability": 0.98828125 + }, + { + "word": " older", + "start": 1275.78, + "end": 1277.06, + "probability": 1.0 + }, + { + "word": " machines,", + "start": 1277.06, + "end": 1277.36, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1277.68, + "end": 1278.04, + "probability": 1.0 + }, + { + "word": " say", + "start": 1278.04, + "end": 1278.16, + "probability": 1.0 + }, + { + "word": " older", + "start": 1278.16, + "end": 1278.38, + "probability": 1.0 + }, + { + "word": " than", + "start": 1278.38, + "end": 1278.58, + "probability": 1.0 + }, + { + "word": " five", + "start": 1278.58, + "end": 1278.74, + "probability": 0.99365234375 + }, + { + "word": " years", + "start": 1278.74, + "end": 1278.96, + "probability": 1.0 + }, + { + "word": " ago.", + "start": 1278.96, + "end": 1279.2, + "probability": 1.0 + } + ] + }, + { + "id": 776, + "text": "I'll never feel comfortable 100% with that.", + "start": 1279.58, + "end": 1282.52, + "words": [ + { + "word": " I'll", + "start": 1279.58, + "end": 1280.02, + "probability": 1.0 + }, + { + "word": " never", + "start": 1280.02, + "end": 1280.16, + "probability": 1.0 + }, + { + "word": " feel", + "start": 1280.16, + "end": 1280.42, + "probability": 1.0 + }, + { + "word": " comfortable", + "start": 1280.42, + "end": 1280.78, + "probability": 1.0 + }, + { + "word": " 100", + "start": 1280.78, + "end": 1281.04, + "probability": 0.998046875 + }, + { + "word": "%", + "start": 1281.04, + "end": 1281.52, + "probability": 0.982421875 + }, + { + "word": " with", + "start": 1281.52, + "end": 1282.32, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1282.32, + "end": 1282.52, + "probability": 1.0 + } + ] + }, + { + "id": 777, + "text": "There is a remote chance that you will brick your machine.", + "start": 1282.62, + "end": 1285.78, + "words": [ + { + "word": " There", + "start": 1282.62, + "end": 1282.88, + "probability": 0.99365234375 + }, + { + "word": " is", + "start": 1282.88, + "end": 1283.04, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 1283.04, + "end": 1283.2, + "probability": 1.0 + }, + { + "word": " remote", + "start": 1283.2, + "end": 1284.16, + "probability": 0.99951171875 + }, + { + "word": " chance", + "start": 1284.16, + "end": 1284.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 1284.52, + "end": 1284.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 1284.76, + "end": 1284.88, + "probability": 1.0 + }, + { + "word": " will", + "start": 1284.88, + "end": 1284.98, + "probability": 1.0 + }, + { + "word": " brick", + "start": 1284.98, + "end": 1285.3, + "probability": 0.97021484375 + }, + { + "word": " your", + "start": 1285.3, + "end": 1285.48, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1285.48, + "end": 1285.78, + "probability": 0.9892578125 + } + ] + }, + { + "id": 778, + "text": "Do you know how many things I have bricked because I didn't read the revision number?", + "start": 1286.0, + "end": 1289.38, + "words": [ + { + "word": " Do", + "start": 1286.0, + "end": 1286.1, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 1286.1, + "end": 1286.12, + "probability": 1.0 + }, + { + "word": " know", + "start": 1286.12, + "end": 1286.2, + "probability": 1.0 + }, + { + "word": " how", + "start": 1286.2, + "end": 1286.28, + "probability": 1.0 + }, + { + "word": " many", + "start": 1286.28, + "end": 1286.4, + "probability": 1.0 + }, + { + "word": " things", + "start": 1286.4, + "end": 1286.62, + "probability": 1.0 + }, + { + "word": " I", + "start": 1286.62, + "end": 1286.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 1286.8, + "end": 1286.92, + "probability": 1.0 + }, + { + "word": " bricked", + "start": 1286.92, + "end": 1287.22, + "probability": 0.99365234375 + }, + { + "word": " because", + "start": 1287.22, + "end": 1287.48, + "probability": 0.9736328125 + }, + { + "word": " I", + "start": 1287.48, + "end": 1287.64, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 1287.64, + "end": 1287.88, + "probability": 1.0 + }, + { + "word": " read", + "start": 1287.88, + "end": 1288.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 1288.12, + "end": 1288.8, + "probability": 0.97021484375 + }, + { + "word": " revision", + "start": 1288.8, + "end": 1289.12, + "probability": 0.99951171875 + }, + { + "word": " number?", + "start": 1289.12, + "end": 1289.38, + "probability": 0.1854248046875 + } + ] + }, + { + "id": 779, + "text": "I don't remember at the end of the model number.", + "start": 1289.48, + "end": 1290.6, + "words": [ + { + "word": " I", + "start": 1289.48, + "end": 1289.5, + "probability": 0.00018465518951416016 + }, + { + "word": " don't", + "start": 1289.5, + "end": 1289.5, + "probability": 0.5458984375 + }, + { + "word": " remember", + "start": 1289.5, + "end": 1289.5, + "probability": 0.27197265625 + }, + { + "word": " at", + "start": 1289.5, + "end": 1289.6, + "probability": 0.94140625 + }, + { + "word": " the", + "start": 1289.6, + "end": 1289.72, + "probability": 1.0 + }, + { + "word": " end", + "start": 1289.72, + "end": 1289.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 1289.94, + "end": 1290.04, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1290.04, + "end": 1290.16, + "probability": 0.99951171875 + }, + { + "word": " model", + "start": 1290.16, + "end": 1290.36, + "probability": 0.99951171875 + }, + { + "word": " number.", + "start": 1290.36, + "end": 1290.6, + "probability": 1.0 + } + ] + }, + { + "id": 780, + "text": "It happens.", + "start": 1291.1200000000001, + "end": 1291.82, + "words": [ + { + "word": " It", + "start": 1291.1200000000001, + "end": 1291.48, + "probability": 0.99951171875 + }, + { + "word": " happens.", + "start": 1291.48, + "end": 1291.82, + "probability": 1.0 + } + ] + }, + { + "id": 781, + "text": "It does happen.", + "start": 1292.04, + "end": 1292.82, + "words": [ + { + "word": " It", + "start": 1292.04, + "end": 1292.26, + "probability": 0.998046875 + }, + { + "word": " does", + "start": 1292.26, + "end": 1292.52, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 1292.52, + "end": 1292.82, + "probability": 1.0 + } + ] + }, + { + "id": 782, + "text": "So you should be careful if you're going to update the BIOS.", + "start": 1294.3000000000002, + "end": 1297.98, + "words": [ + { + "word": " So", + "start": 1294.3000000000002, + "end": 1294.66, + "probability": 0.93115234375 + }, + { + "word": " you", + "start": 1294.66, + "end": 1295.02, + "probability": 0.8837890625 + }, + { + "word": " should", + "start": 1295.02, + "end": 1295.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 1295.2, + "end": 1295.3, + "probability": 1.0 + }, + { + "word": " careful", + "start": 1295.3, + "end": 1295.66, + "probability": 1.0 + }, + { + "word": " if", + "start": 1295.66, + "end": 1296.18, + "probability": 0.99755859375 + }, + { + "word": " you're", + "start": 1296.18, + "end": 1296.32, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1296.32, + "end": 1296.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1296.5, + "end": 1296.72, + "probability": 1.0 + }, + { + "word": " update", + "start": 1296.72, + "end": 1297.4, + "probability": 0.83251953125 + }, + { + "word": " the", + "start": 1297.4, + "end": 1297.62, + "probability": 1.0 + }, + { + "word": " BIOS.", + "start": 1297.62, + "end": 1297.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 783, + "text": "But it's also one of those things that you should probably do.", + "start": 1297.98, + "end": 1299.96, + "words": [ + { + "word": " But", + "start": 1297.98, + "end": 1298.32, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1298.32, + "end": 1298.72, + "probability": 1.0 + }, + { + "word": " also", + "start": 1298.72, + "end": 1298.84, + "probability": 1.0 + }, + { + "word": " one", + "start": 1298.84, + "end": 1299.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 1299.0, + "end": 1299.08, + "probability": 1.0 + }, + { + "word": " those", + "start": 1299.08, + "end": 1299.14, + "probability": 1.0 + }, + { + "word": " things", + "start": 1299.14, + "end": 1299.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 1299.28, + "end": 1299.4, + "probability": 0.80810546875 + }, + { + "word": " you", + "start": 1299.4, + "end": 1299.42, + "probability": 1.0 + }, + { + "word": " should", + "start": 1299.42, + "end": 1299.54, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1299.54, + "end": 1299.76, + "probability": 1.0 + }, + { + "word": " do.", + "start": 1299.76, + "end": 1299.96, + "probability": 1.0 + } + ] + }, + { + "id": 784, + "text": "Yeah.", + "start": 1300.38, + "end": 1300.74, + "words": [ + { + "word": " Yeah.", + "start": 1300.38, + "end": 1300.74, + "probability": 0.98974609375 + } + ] + }, + { + "id": 785, + "text": "And if you're running a newer machine, like you said, that has the dual BIOS, then you really aren't at risk.", + "start": 1300.86, + "end": 1305.28, + "words": [ + { + "word": " And", + "start": 1300.86, + "end": 1300.94, + "probability": 0.63330078125 + }, + { + "word": " if", + "start": 1300.94, + "end": 1301.16, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 1301.16, + "end": 1301.32, + "probability": 1.0 + }, + { + "word": " running", + "start": 1301.32, + "end": 1301.42, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1301.42, + "end": 1302.16, + "probability": 1.0 + }, + { + "word": " newer", + "start": 1302.16, + "end": 1302.32, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 1302.32, + "end": 1302.64, + "probability": 1.0 + }, + { + "word": " like", + "start": 1302.76, + "end": 1302.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 1302.92, + "end": 1303.0, + "probability": 1.0 + }, + { + "word": " said,", + "start": 1303.0, + "end": 1303.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 1303.24, + "end": 1303.34, + "probability": 1.0 + }, + { + "word": " has", + "start": 1303.34, + "end": 1303.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 1303.52, + "end": 1303.64, + "probability": 1.0 + }, + { + "word": " dual", + "start": 1303.64, + "end": 1303.82, + "probability": 0.99267578125 + }, + { + "word": " BIOS,", + "start": 1303.82, + "end": 1304.14, + "probability": 1.0 + }, + { + "word": " then", + "start": 1304.2, + "end": 1304.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1304.32, + "end": 1304.5, + "probability": 1.0 + }, + { + "word": " really", + "start": 1304.5, + "end": 1304.72, + "probability": 1.0 + }, + { + "word": " aren't", + "start": 1304.72, + "end": 1304.92, + "probability": 1.0 + }, + { + "word": " at", + "start": 1304.92, + "end": 1305.0, + "probability": 1.0 + }, + { + "word": " risk.", + "start": 1305.0, + "end": 1305.28, + "probability": 1.0 + } + ] + }, + { + "id": 786, + "text": "Yeah.", + "start": 1305.62, + "end": 1305.98, + "words": [ + { + "word": " Yeah.", + "start": 1305.62, + "end": 1305.98, + "probability": 0.75341796875 + } + ] + }, + { + "id": 787, + "text": "You just go ahead and do what you do.", + "start": 1306.06, + "end": 1307.18, + "words": [ + { + "word": " You", + "start": 1306.06, + "end": 1306.18, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1306.18, + "end": 1306.32, + "probability": 1.0 + }, + { + "word": " go", + "start": 1306.32, + "end": 1306.46, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 1306.46, + "end": 1306.58, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1306.58, + "end": 1306.66, + "probability": 1.0 + }, + { + "word": " do", + "start": 1306.66, + "end": 1306.76, + "probability": 1.0 + }, + { + "word": " what", + "start": 1306.76, + "end": 1306.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 1306.84, + "end": 1306.96, + "probability": 1.0 + }, + { + "word": " do.", + "start": 1306.96, + "end": 1307.18, + "probability": 1.0 + } + ] + }, + { + "id": 788, + "text": "Get your update if you have a dual BIOS machine.", + "start": 1307.44, + "end": 1309.42, + "words": [ + { + "word": " Get", + "start": 1307.44, + "end": 1307.8, + "probability": 0.9580078125 + }, + { + "word": " your", + "start": 1307.8, + "end": 1308.18, + "probability": 1.0 + }, + { + "word": " update", + "start": 1308.18, + "end": 1308.4, + "probability": 0.9951171875 + }, + { + "word": " if", + "start": 1308.4, + "end": 1308.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 1308.58, + "end": 1308.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 1308.66, + "end": 1308.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 1308.76, + "end": 1308.8, + "probability": 1.0 + }, + { + "word": " dual", + "start": 1308.8, + "end": 1308.94, + "probability": 1.0 + }, + { + "word": " BIOS", + "start": 1308.94, + "end": 1309.22, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1309.22, + "end": 1309.42, + "probability": 1.0 + } + ] + }, + { + "id": 789, + "text": "And that will help you out quite a lot.", + "start": 1310.38, + "end": 1313.02, + "words": [ + { + "word": " And", + "start": 1310.38, + "end": 1310.74, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1310.74, + "end": 1311.1, + "probability": 1.0 + }, + { + "word": " will", + "start": 1311.1, + "end": 1311.58, + "probability": 1.0 + }, + { + "word": " help", + "start": 1311.58, + "end": 1312.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 1312.22, + "end": 1312.42, + "probability": 1.0 + }, + { + "word": " out", + "start": 1312.42, + "end": 1312.54, + "probability": 1.0 + }, + { + "word": " quite", + "start": 1312.54, + "end": 1312.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 1312.72, + "end": 1312.88, + "probability": 1.0 + }, + { + "word": " lot.", + "start": 1312.88, + "end": 1313.02, + "probability": 1.0 + } + ] + }, + { + "id": 790, + "text": "And if you're buying a new machine and you're just a normal person, maybe look at buying a Ryzen processor, a machine with a Ryzen.", + "start": 1313.08, + "end": 1318.78, + "words": [ + { + "word": " And", + "start": 1313.08, + "end": 1313.2, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1313.2, + "end": 1313.3, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1313.3, + "end": 1313.4, + "probability": 1.0 + }, + { + "word": " buying", + "start": 1313.4, + "end": 1313.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1313.58, + "end": 1313.74, + "probability": 1.0 + }, + { + "word": " new", + "start": 1313.74, + "end": 1313.84, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1313.84, + "end": 1314.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 1314.12, + "end": 1314.32, + "probability": 0.98974609375 + }, + { + "word": " you're", + "start": 1314.32, + "end": 1314.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 1314.44, + "end": 1314.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1314.58, + "end": 1314.7, + "probability": 1.0 + }, + { + "word": " normal", + "start": 1314.7, + "end": 1314.92, + "probability": 1.0 + }, + { + "word": " person,", + "start": 1314.92, + "end": 1315.22, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 1315.42, + "end": 1315.86, + "probability": 1.0 + }, + { + "word": " look", + "start": 1315.86, + "end": 1316.26, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1316.26, + "end": 1316.42, + "probability": 1.0 + }, + { + "word": " buying", + "start": 1316.42, + "end": 1316.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1316.58, + "end": 1316.72, + "probability": 0.99951171875 + }, + { + "word": " Ryzen", + "start": 1316.72, + "end": 1317.0, + "probability": 0.9921875 + }, + { + "word": " processor,", + "start": 1317.0, + "end": 1317.38, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1317.66, + "end": 1318.02, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1318.02, + "end": 1318.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 1318.22, + "end": 1318.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 1318.42, + "end": 1318.48, + "probability": 0.9970703125 + }, + { + "word": " Ryzen.", + "start": 1318.48, + "end": 1318.78, + "probability": 1.0 + } + ] + }, + { + "id": 791, + "text": "Maybe.", + "start": 1318.88, + "end": 1319.24, + "words": [ + { + "word": " Maybe.", + "start": 1318.88, + "end": 1319.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 792, + "text": "I mean, I'm still trying to overcome my extreme prejudice of AMD.", + "start": 1319.48, + "end": 1324.48, + "words": [ + { + "word": " I", + "start": 1319.48, + "end": 1319.56, + "probability": 0.9951171875 + }, + { + "word": " mean,", + "start": 1319.56, + "end": 1319.7, + "probability": 0.86865234375 + }, + { + "word": " I'm", + "start": 1319.74, + "end": 1319.88, + "probability": 1.0 + }, + { + "word": " still", + "start": 1319.88, + "end": 1320.04, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1320.04, + "end": 1320.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 1320.28, + "end": 1320.42, + "probability": 1.0 + }, + { + "word": " overcome", + "start": 1320.42, + "end": 1320.8, + "probability": 1.0 + }, + { + "word": " my", + "start": 1320.8, + "end": 1321.22, + "probability": 1.0 + }, + { + "word": " extreme", + "start": 1321.22, + "end": 1322.48, + "probability": 0.94873046875 + }, + { + "word": " prejudice", + "start": 1322.48, + "end": 1323.46, + "probability": 0.970703125 + }, + { + "word": " of", + "start": 1323.46, + "end": 1323.92, + "probability": 0.99755859375 + }, + { + "word": " AMD.", + "start": 1323.92, + "end": 1324.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 793, + "text": "You've got to give them credit, though.", + "start": 1324.76, + "end": 1325.9, + "words": [ + { + "word": " You've", + "start": 1324.76, + "end": 1325.08, + "probability": 0.826171875 + }, + { + "word": " got", + "start": 1325.08, + "end": 1325.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 1325.14, + "end": 1325.24, + "probability": 1.0 + }, + { + "word": " give", + "start": 1325.24, + "end": 1325.36, + "probability": 1.0 + }, + { + "word": " them", + "start": 1325.36, + "end": 1325.46, + "probability": 0.9814453125 + }, + { + "word": " credit,", + "start": 1325.46, + "end": 1325.66, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1325.74, + "end": 1325.9, + "probability": 1.0 + } + ] + }, + { + "id": 794, + "text": "The Ryzen series is almost a different company at this point.", + "start": 1325.96, + "end": 1328.82, + "words": [ + { + "word": " The", + "start": 1325.96, + "end": 1326.18, + "probability": 0.99853515625 + }, + { + "word": " Ryzen", + "start": 1326.18, + "end": 1326.5, + "probability": 0.99853515625 + }, + { + "word": " series", + "start": 1326.5, + "end": 1326.76, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1326.76, + "end": 1327.06, + "probability": 0.80322265625 + }, + { + "word": " almost", + "start": 1327.06, + "end": 1327.36, + "probability": 0.9814453125 + }, + { + "word": " a", + "start": 1327.36, + "end": 1327.66, + "probability": 1.0 + }, + { + "word": " different", + "start": 1327.66, + "end": 1327.84, + "probability": 1.0 + }, + { + "word": " company", + "start": 1327.84, + "end": 1328.22, + "probability": 1.0 + }, + { + "word": " at", + "start": 1328.22, + "end": 1328.42, + "probability": 1.0 + }, + { + "word": " this", + "start": 1328.42, + "end": 1328.56, + "probability": 1.0 + }, + { + "word": " point.", + "start": 1328.56, + "end": 1328.82, + "probability": 1.0 + } + ] + }, + { + "id": 795, + "text": "Yeah.", + "start": 1329.14, + "end": 1329.5, + "words": [ + { + "word": " Yeah.", + "start": 1329.14, + "end": 1329.5, + "probability": 0.79150390625 + } + ] + }, + { + "id": 796, + "text": "If you think of it as not AMD but as Ryzen instead, you might be okay.", + "start": 1329.62, + "end": 1333.32, + "words": [ + { + "word": " If", + "start": 1329.62, + "end": 1329.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1329.78, + "end": 1329.88, + "probability": 1.0 + }, + { + "word": " think", + "start": 1329.88, + "end": 1330.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1330.06, + "end": 1330.18, + "probability": 1.0 + }, + { + "word": " it", + "start": 1330.18, + "end": 1330.28, + "probability": 1.0 + }, + { + "word": " as", + "start": 1330.28, + "end": 1330.42, + "probability": 1.0 + }, + { + "word": " not", + "start": 1330.42, + "end": 1330.64, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1330.64, + "end": 1331.04, + "probability": 1.0 + }, + { + "word": " but", + "start": 1331.04, + "end": 1331.38, + "probability": 0.83984375 + }, + { + "word": " as", + "start": 1331.38, + "end": 1331.54, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1331.54, + "end": 1332.0, + "probability": 1.0 + }, + { + "word": " instead,", + "start": 1332.0, + "end": 1332.46, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 1332.7, + "end": 1332.84, + "probability": 1.0 + }, + { + "word": " might", + "start": 1332.84, + "end": 1333.0, + "probability": 1.0 + }, + { + "word": " be", + "start": 1333.0, + "end": 1333.1, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 1333.1, + "end": 1333.32, + "probability": 0.99072265625 + } + ] + }, + { + "id": 797, + "text": "I'll take a look at that.", + "start": 1334.3000000000002, + "end": 1335.64, + "words": [ + { + "word": " I'll", + "start": 1334.3000000000002, + "end": 1334.66, + "probability": 0.787109375 + }, + { + "word": " take", + "start": 1334.66, + "end": 1335.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1335.0, + "end": 1335.2, + "probability": 1.0 + }, + { + "word": " look", + "start": 1335.2, + "end": 1335.34, + "probability": 1.0 + }, + { + "word": " at", + "start": 1335.34, + "end": 1335.48, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1335.48, + "end": 1335.64, + "probability": 1.0 + } + ] + }, + { + "id": 798, + "text": "I mean, well, you know what?", + "start": 1336.3000000000002, + "end": 1337.38, + "words": [ + { + "word": " I", + "start": 1336.3000000000002, + "end": 1336.66, + "probability": 0.330810546875 + }, + { + "word": " mean,", + "start": 1336.66, + "end": 1336.76, + "probability": 0.64013671875 + }, + { + "word": " well,", + "start": 1336.8, + "end": 1336.94, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 1336.98, + "end": 1337.16, + "probability": 1.0 + }, + { + "word": " know", + "start": 1337.16, + "end": 1337.28, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1337.28, + "end": 1337.38, + "probability": 1.0 + } + ] + }, + { + "id": 799, + "text": "I should probably build one and just try it.", + "start": 1337.42, + "end": 1339.12, + "words": [ + { + "word": " I", + "start": 1337.42, + "end": 1337.56, + "probability": 1.0 + }, + { + "word": " should", + "start": 1337.56, + "end": 1337.68, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1337.68, + "end": 1337.92, + "probability": 1.0 + }, + { + "word": " build", + "start": 1337.92, + "end": 1338.16, + "probability": 1.0 + }, + { + "word": " one", + "start": 1338.16, + "end": 1338.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 1338.38, + "end": 1338.6, + "probability": 1.0 + }, + { + "word": " just", + "start": 1338.6, + "end": 1338.72, + "probability": 1.0 + }, + { + "word": " try", + "start": 1338.72, + "end": 1338.96, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1338.96, + "end": 1339.12, + "probability": 1.0 + } + ] + }, + { + "id": 800, + "text": "Get a Ryzen 5.", + "start": 1339.22, + "end": 1340.1, + "words": [ + { + "word": " Get", + "start": 1339.22, + "end": 1339.48, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1339.48, + "end": 1339.58, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1339.58, + "end": 1339.9, + "probability": 1.0 + }, + { + "word": " 5.", + "start": 1339.9, + "end": 1340.1, + "probability": 1.0 + } + ] + }, + { + "id": 801, + "text": "Don't go with the highest end one, not the lowest end one.", + "start": 1340.36, + "end": 1342.6, + "words": [ + { + "word": " Don't", + "start": 1340.36, + "end": 1340.72, + "probability": 1.0 + }, + { + "word": " go", + "start": 1340.72, + "end": 1340.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 1340.8, + "end": 1340.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 1340.96, + "end": 1341.06, + "probability": 1.0 + }, + { + "word": " highest", + "start": 1341.06, + "end": 1341.34, + "probability": 1.0 + }, + { + "word": " end", + "start": 1341.34, + "end": 1341.56, + "probability": 0.292724609375 + }, + { + "word": " one,", + "start": 1341.56, + "end": 1341.72, + "probability": 1.0 + }, + { + "word": " not", + "start": 1341.78, + "end": 1341.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 1341.9, + "end": 1342.02, + "probability": 1.0 + }, + { + "word": " lowest", + "start": 1342.02, + "end": 1342.22, + "probability": 1.0 + }, + { + "word": " end", + "start": 1342.22, + "end": 1342.42, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1342.42, + "end": 1342.6, + "probability": 1.0 + } + ] + }, + { + "id": 802, + "text": "Ryzen 5 is where it's at.", + "start": 1342.9, + "end": 1344.0, + "words": [ + { + "word": " Ryzen", + "start": 1342.9, + "end": 1343.26, + "probability": 0.99951171875 + }, + { + "word": " 5", + "start": 1343.26, + "end": 1343.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 1343.4, + "end": 1343.6, + "probability": 1.0 + }, + { + "word": " where", + "start": 1343.6, + "end": 1343.72, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1343.72, + "end": 1343.84, + "probability": 1.0 + }, + { + "word": " at.", + "start": 1343.84, + "end": 1344.0, + "probability": 1.0 + } + ] + }, + { + "id": 803, + "text": "So they're using a similar numbering structure to, like, the i5.", + "start": 1344.28, + "end": 1349.46, + "words": [ + { + "word": " So", + "start": 1344.28, + "end": 1344.6, + "probability": 0.9267578125 + }, + { + "word": " they're", + "start": 1344.6, + "end": 1346.42, + "probability": 0.90478515625 + }, + { + "word": " using", + "start": 1346.42, + "end": 1346.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 1346.56, + "end": 1346.74, + "probability": 1.0 + }, + { + "word": " similar", + "start": 1346.74, + "end": 1347.06, + "probability": 1.0 + }, + { + "word": " numbering", + "start": 1347.06, + "end": 1347.98, + "probability": 1.0 + }, + { + "word": " structure", + "start": 1347.98, + "end": 1348.26, + "probability": 1.0 + }, + { + "word": " to,", + "start": 1348.26, + "end": 1348.52, + "probability": 0.9970703125 + }, + { + "word": " like,", + "start": 1348.56, + "end": 1348.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 1348.92, + "end": 1349.32, + "probability": 0.99658203125 + }, + { + "word": " i5.", + "start": 1349.32, + "end": 1349.46, + "probability": 0.478271484375 + } + ] + }, + { + "id": 804, + "text": "The i series?", + "start": 1349.48, + "end": 1349.8, + "words": [ + { + "word": " The", + "start": 1349.48, + "end": 1349.48, + "probability": 0.007801055908203125 + }, + { + "word": " i", + "start": 1349.48, + "end": 1349.48, + "probability": 0.78515625 + }, + { + "word": " series?", + "start": 1349.48, + "end": 1349.8, + "probability": 0.1375732421875 + } + ] + }, + { + "id": 805, + "text": "It seems like it, yeah.", + "start": 1350.04, + "end": 1350.8, + "words": [ + { + "word": " It", + "start": 1350.04, + "end": 1350.12, + "probability": 0.99462890625 + }, + { + "word": " seems", + "start": 1350.12, + "end": 1350.32, + "probability": 1.0 + }, + { + "word": " like", + "start": 1350.32, + "end": 1350.52, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1350.52, + "end": 1350.64, + "probability": 0.99853515625 + }, + { + "word": " yeah.", + "start": 1350.7, + "end": 1350.8, + "probability": 0.99853515625 + } + ] + }, + { + "id": 806, + "text": "Just trying to jump on that?", + "start": 1350.96, + "end": 1352.7, + "words": [ + { + "word": " Just", + "start": 1350.96, + "end": 1351.34, + "probability": 0.9990234375 + }, + { + "word": " trying", + "start": 1351.34, + "end": 1351.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1351.54, + "end": 1351.7, + "probability": 1.0 + }, + { + "word": " jump", + "start": 1351.7, + "end": 1352.12, + "probability": 0.984375 + }, + { + "word": " on", + "start": 1352.12, + "end": 1352.52, + "probability": 1.0 + }, + { + "word": " that?", + "start": 1352.52, + "end": 1352.7, + "probability": 1.0 + } + ] + }, + { + "id": 807, + "text": "I guess so.", + "start": 1352.94, + "end": 1353.58, + "words": [ + { + "word": " I", + "start": 1352.94, + "end": 1353.2, + "probability": 0.99951171875 + }, + { + "word": " guess", + "start": 1353.2, + "end": 1353.42, + "probability": 1.0 + }, + { + "word": " so.", + "start": 1353.42, + "end": 1353.58, + "probability": 1.0 + } + ] + }, + { + "id": 808, + "text": "It kind of worked, though.", + "start": 1353.72, + "end": 1354.74, + "words": [ + { + "word": " It", + "start": 1353.72, + "end": 1353.92, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 1353.92, + "end": 1354.22, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1354.22, + "end": 1354.36, + "probability": 1.0 + }, + { + "word": " worked,", + "start": 1354.36, + "end": 1354.58, + "probability": 1.0 + }, + { + "word": " though.", + "start": 1354.6, + "end": 1354.74, + "probability": 1.0 + } + ] + }, + { + "id": 809, + "text": "Yeah, I guess so.", + "start": 1354.9, + "end": 1355.88, + "words": [ + { + "word": " Yeah,", + "start": 1354.9, + "end": 1355.26, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1355.3, + "end": 1355.5, + "probability": 1.0 + }, + { + "word": " guess", + "start": 1355.5, + "end": 1355.7, + "probability": 1.0 + }, + { + "word": " so.", + "start": 1355.7, + "end": 1355.88, + "probability": 1.0 + } + ] + }, + { + "id": 810, + "text": "Yeah, I'll build one, and then I will give an honest feedback of it.", + "start": 1356.9999999999998, + "end": 1362.56, + "words": [ + { + "word": " Yeah,", + "start": 1356.9999999999998, + "end": 1357.3999999999999, + "probability": 0.97509765625 + }, + { + "word": " I'll", + "start": 1357.3999999999999, + "end": 1357.8, + "probability": 1.0 + }, + { + "word": " build", + "start": 1357.8, + "end": 1358.16, + "probability": 0.99951171875 + }, + { + "word": " one,", + "start": 1358.16, + "end": 1358.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 1358.7, + "end": 1359.14, + "probability": 1.0 + }, + { + "word": " then", + "start": 1359.14, + "end": 1359.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 1359.42, + "end": 1359.78, + "probability": 1.0 + }, + { + "word": " will", + "start": 1359.78, + "end": 1360.16, + "probability": 1.0 + }, + { + "word": " give", + "start": 1360.16, + "end": 1361.34, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1361.34, + "end": 1361.6, + "probability": 1.0 + }, + { + "word": " honest", + "start": 1361.6, + "end": 1361.82, + "probability": 1.0 + }, + { + "word": " feedback", + "start": 1361.82, + "end": 1362.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 1362.14, + "end": 1362.46, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1362.46, + "end": 1362.56, + "probability": 1.0 + } + ] + }, + { + "id": 811, + "text": "I think the best compliment that I could give to the Ryzen processors is that you will not notice a difference.", + "start": 1362.64, + "end": 1367.04, + "words": [ + { + "word": " I", + "start": 1362.64, + "end": 1362.74, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1362.74, + "end": 1362.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 1362.86, + "end": 1362.96, + "probability": 1.0 + }, + { + "word": " best", + "start": 1362.96, + "end": 1363.16, + "probability": 1.0 + }, + { + "word": " compliment", + "start": 1363.16, + "end": 1363.56, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1363.56, + "end": 1363.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 1363.84, + "end": 1363.92, + "probability": 1.0 + }, + { + "word": " could", + "start": 1363.92, + "end": 1364.1, + "probability": 1.0 + }, + { + "word": " give", + "start": 1364.1, + "end": 1364.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1364.3, + "end": 1364.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1364.48, + "end": 1364.58, + "probability": 1.0 + }, + { + "word": " Ryzen", + "start": 1364.58, + "end": 1364.82, + "probability": 0.99658203125 + }, + { + "word": " processors", + "start": 1364.82, + "end": 1365.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1365.18, + "end": 1365.82, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1365.82, + "end": 1365.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 1365.92, + "end": 1366.04, + "probability": 1.0 + }, + { + "word": " will", + "start": 1366.04, + "end": 1366.14, + "probability": 1.0 + }, + { + "word": " not", + "start": 1366.14, + "end": 1366.32, + "probability": 1.0 + }, + { + "word": " notice", + "start": 1366.32, + "end": 1366.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 1366.62, + "end": 1366.82, + "probability": 1.0 + }, + { + "word": " difference.", + "start": 1366.82, + "end": 1367.04, + "probability": 1.0 + } + ] + }, + { + "id": 812, + "text": "That would be amazing.", + "start": 1367.88, + "end": 1369.66, + "words": [ + { + "word": " That", + "start": 1367.88, + "end": 1368.28, + "probability": 1.0 + }, + { + "word": " would", + "start": 1368.28, + "end": 1368.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 1368.58, + "end": 1368.92, + "probability": 1.0 + }, + { + "word": " amazing.", + "start": 1368.92, + "end": 1369.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 813, + "text": "And they're, like, $200 cheaper.", + "start": 1370.04, + "end": 1371.26, + "words": [ + { + "word": " And", + "start": 1370.04, + "end": 1370.26, + "probability": 0.81005859375 + }, + { + "word": " they're,", + "start": 1370.26, + "end": 1370.48, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1370.5, + "end": 1370.62, + "probability": 1.0 + }, + { + "word": " $200", + "start": 1370.62, + "end": 1370.84, + "probability": 1.0 + }, + { + "word": " cheaper.", + "start": 1370.84, + "end": 1371.26, + "probability": 1.0 + } + ] + }, + { + "id": 814, + "text": "Yeah, because the problem with AMD is that you knew that you were on an AMD machine.", + "start": 1371.5, + "end": 1375.28, + "words": [ + { + "word": " Yeah,", + "start": 1371.5, + "end": 1371.68, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1371.68, + "end": 1371.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 1371.82, + "end": 1371.98, + "probability": 1.0 + }, + { + "word": " problem", + "start": 1371.98, + "end": 1372.18, + "probability": 1.0 + }, + { + "word": " with", + "start": 1372.18, + "end": 1372.32, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1372.32, + "end": 1372.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 1372.54, + "end": 1372.86, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1372.86, + "end": 1373.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1373.04, + "end": 1373.28, + "probability": 1.0 + }, + { + "word": " knew", + "start": 1373.28, + "end": 1373.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 1373.66, + "end": 1374.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 1374.06, + "end": 1374.24, + "probability": 1.0 + }, + { + "word": " were", + "start": 1374.24, + "end": 1374.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 1374.34, + "end": 1374.48, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1374.48, + "end": 1374.6, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1374.6, + "end": 1374.86, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 1374.86, + "end": 1375.28, + "probability": 1.0 + } + ] + }, + { + "id": 815, + "text": "Yeah.", + "start": 1375.54, + "end": 1375.78, + "words": [ + { + "word": " Yeah.", + "start": 1375.54, + "end": 1375.78, + "probability": 0.98779296875 + } + ] + }, + { + "id": 816, + "text": "It's loud.", + "start": 1376.3, + "end": 1376.9, + "words": [ + { + "word": " It's", + "start": 1376.3, + "end": 1376.7, + "probability": 1.0 + }, + { + "word": " loud.", + "start": 1376.7, + "end": 1376.9, + "probability": 1.0 + } + ] + }, + { + "id": 817, + "text": "It's hot.", + "start": 1377.08, + "end": 1377.46, + "words": [ + { + "word": " It's", + "start": 1377.08, + "end": 1377.22, + "probability": 1.0 + }, + { + "word": " hot.", + "start": 1377.22, + "end": 1377.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 818, + "text": "Right.", + "start": 1377.9, + "end": 1378.3, + "words": [ + { + "word": " Right.", + "start": 1377.9, + "end": 1378.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 819, + "text": "It is.", + "start": 1378.42, + "end": 1378.86, + "words": [ + { + "word": " It", + "start": 1378.42, + "end": 1378.54, + "probability": 0.464599609375 + }, + { + "word": " is.", + "start": 1378.54, + "end": 1378.86, + "probability": 0.141845703125 + } + ] + }, + { + "id": 820, + "text": "Frequently crashes.", + "start": 1379.56, + "end": 1380.3, + "words": [ + { + "word": " Frequently", + "start": 1379.56, + "end": 1380.0, + "probability": 0.55810546875 + }, + { + "word": " crashes.", + "start": 1380.0, + "end": 1380.3, + "probability": 0.99755859375 + } + ] + }, + { + "id": 821, + "text": "Yeah, those types of things.", + "start": 1380.82, + "end": 1382.26, + "words": [ + { + "word": " Yeah,", + "start": 1380.82, + "end": 1381.26, + "probability": 0.282958984375 + }, + { + "word": " those", + "start": 1381.26, + "end": 1381.7, + "probability": 0.99951171875 + }, + { + "word": " types", + "start": 1381.7, + "end": 1381.98, + "probability": 0.79052734375 + }, + { + "word": " of", + "start": 1381.98, + "end": 1382.1, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1382.1, + "end": 1382.26, + "probability": 1.0 + } + ] + }, + { + "id": 822, + "text": "And it gave very different blue screens as to Intel processors.", + "start": 1382.36, + "end": 1385.66, + "words": [ + { + "word": " And", + "start": 1382.36, + "end": 1382.46, + "probability": 0.74658203125 + }, + { + "word": " it", + "start": 1382.46, + "end": 1382.58, + "probability": 0.611328125 + }, + { + "word": " gave", + "start": 1382.58, + "end": 1382.76, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 1382.76, + "end": 1383.16, + "probability": 1.0 + }, + { + "word": " different", + "start": 1383.16, + "end": 1383.56, + "probability": 1.0 + }, + { + "word": " blue", + "start": 1383.56, + "end": 1383.76, + "probability": 0.9921875 + }, + { + "word": " screens", + "start": 1383.76, + "end": 1384.04, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1384.04, + "end": 1384.32, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1384.32, + "end": 1384.48, + "probability": 0.94921875 + }, + { + "word": " Intel", + "start": 1384.48, + "end": 1385.06, + "probability": 0.99951171875 + }, + { + "word": " processors.", + "start": 1385.06, + "end": 1385.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 823, + "text": "Yeah.", + "start": 1386.68, + "end": 1387.12, + "words": [ + { + "word": " Yeah.", + "start": 1386.68, + "end": 1387.12, + "probability": 0.99658203125 + } + ] + }, + { + "id": 824, + "text": "If I could build a machine with an AMD processor that I just didn't know it was an AMD, yeah.", + "start": 1387.96, + "end": 1393.94, + "words": [ + { + "word": " If", + "start": 1387.96, + "end": 1388.4, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 1388.4, + "end": 1388.68, + "probability": 1.0 + }, + { + "word": " could", + "start": 1388.68, + "end": 1388.9, + "probability": 1.0 + }, + { + "word": " build", + "start": 1388.9, + "end": 1389.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 1389.16, + "end": 1389.3, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1389.3, + "end": 1389.56, + "probability": 1.0 + }, + { + "word": " with", + "start": 1389.56, + "end": 1390.12, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 1390.12, + "end": 1390.26, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1390.26, + "end": 1390.44, + "probability": 1.0 + }, + { + "word": " processor", + "start": 1390.44, + "end": 1390.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 1390.84, + "end": 1391.82, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 1391.82, + "end": 1391.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 1391.96, + "end": 1392.18, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 1392.18, + "end": 1392.46, + "probability": 1.0 + }, + { + "word": " know", + "start": 1392.46, + "end": 1392.64, + "probability": 1.0 + }, + { + "word": " it", + "start": 1392.64, + "end": 1392.78, + "probability": 0.9501953125 + }, + { + "word": " was", + "start": 1392.78, + "end": 1392.92, + "probability": 1.0 + }, + { + "word": " an", + "start": 1392.92, + "end": 1393.0, + "probability": 1.0 + }, + { + "word": " AMD,", + "start": 1393.0, + "end": 1393.26, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 1393.42, + "end": 1393.94, + "probability": 0.99658203125 + } + ] + }, + { + "id": 825, + "text": "That would be a complete success in my opinion.", + "start": 1394.2, + "end": 1397.5, + "words": [ + { + "word": " That", + "start": 1394.2, + "end": 1394.64, + "probability": 0.822265625 + }, + { + "word": " would", + "start": 1394.64, + "end": 1395.24, + "probability": 1.0 + }, + { + "word": " be", + "start": 1395.24, + "end": 1395.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1395.52, + "end": 1395.74, + "probability": 1.0 + }, + { + "word": " complete", + "start": 1395.74, + "end": 1396.32, + "probability": 1.0 + }, + { + "word": " success", + "start": 1396.32, + "end": 1396.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 1396.74, + "end": 1397.04, + "probability": 0.970703125 + }, + { + "word": " my", + "start": 1397.04, + "end": 1397.16, + "probability": 0.99951171875 + }, + { + "word": " opinion.", + "start": 1397.16, + "end": 1397.5, + "probability": 0.337158203125 + } + ] + }, + { + "id": 826, + "text": "Yeah, because they're not, like, incredibly faster than Intel processors right now.", + "start": 1397.5, + "end": 1400.92, + "words": [ + { + "word": " Yeah,", + "start": 1397.5, + "end": 1397.68, + "probability": 0.99462890625 + }, + { + "word": " because", + "start": 1397.7, + "end": 1397.82, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 1397.82, + "end": 1398.0, + "probability": 1.0 + }, + { + "word": " not,", + "start": 1398.0, + "end": 1398.18, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1398.22, + "end": 1398.42, + "probability": 1.0 + }, + { + "word": " incredibly", + "start": 1398.42, + "end": 1398.8, + "probability": 1.0 + }, + { + "word": " faster", + "start": 1398.8, + "end": 1399.2, + "probability": 0.9990234375 + }, + { + "word": " than", + "start": 1399.2, + "end": 1399.6, + "probability": 1.0 + }, + { + "word": " Intel", + "start": 1399.6, + "end": 1400.0, + "probability": 1.0 + }, + { + "word": " processors", + "start": 1400.0, + "end": 1400.42, + "probability": 1.0 + }, + { + "word": " right", + "start": 1400.42, + "end": 1400.74, + "probability": 1.0 + }, + { + "word": " now.", + "start": 1400.74, + "end": 1400.92, + "probability": 1.0 + } + ] + }, + { + "id": 827, + "text": "It's just that they're night and day better than previous AMD offerings.", + "start": 1401.04, + "end": 1404.78, + "words": [ + { + "word": " It's", + "start": 1401.04, + "end": 1401.48, + "probability": 1.0 + }, + { + "word": " just", + "start": 1401.48, + "end": 1401.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 1401.62, + "end": 1401.74, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1401.74, + "end": 1402.06, + "probability": 1.0 + }, + { + "word": " night", + "start": 1402.06, + "end": 1402.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 1402.58, + "end": 1402.74, + "probability": 1.0 + }, + { + "word": " day", + "start": 1402.74, + "end": 1402.96, + "probability": 1.0 + }, + { + "word": " better", + "start": 1402.96, + "end": 1403.18, + "probability": 1.0 + }, + { + "word": " than", + "start": 1403.18, + "end": 1403.48, + "probability": 1.0 + }, + { + "word": " previous", + "start": 1403.48, + "end": 1404.02, + "probability": 1.0 + }, + { + "word": " AMD", + "start": 1404.02, + "end": 1404.36, + "probability": 1.0 + }, + { + "word": " offerings.", + "start": 1404.36, + "end": 1404.78, + "probability": 1.0 + } + ] + }, + { + "id": 828, + "text": "Right.", + "start": 1405.18, + "end": 1405.54, + "words": [ + { + "word": " Right.", + "start": 1405.18, + "end": 1405.54, + "probability": 0.99609375 + } + ] + }, + { + "id": 829, + "text": "All right, so let's take a break, and then we'll come back and talk more about,", + "start": 1405.78, + "end": 1409.14, + "words": [ + { + "word": " All", + "start": 1405.78, + "end": 1406.22, + "probability": 0.96142578125 + }, + { + "word": " right,", + "start": 1406.22, + "end": 1406.38, + "probability": 1.0 + }, + { + "word": " so", + "start": 1406.42, + "end": 1406.56, + "probability": 1.0 + }, + { + "word": " let's", + "start": 1406.56, + "end": 1406.96, + "probability": 1.0 + }, + { + "word": " take", + "start": 1406.96, + "end": 1407.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 1407.04, + "end": 1407.14, + "probability": 1.0 + }, + { + "word": " break,", + "start": 1407.14, + "end": 1407.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 1407.38, + "end": 1407.46, + "probability": 1.0 + }, + { + "word": " then", + "start": 1407.46, + "end": 1407.52, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 1407.52, + "end": 1407.66, + "probability": 1.0 + }, + { + "word": " come", + "start": 1407.66, + "end": 1407.8, + "probability": 1.0 + }, + { + "word": " back", + "start": 1407.8, + "end": 1407.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 1407.94, + "end": 1408.06, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1408.06, + "end": 1408.24, + "probability": 1.0 + }, + { + "word": " more", + "start": 1408.24, + "end": 1408.9, + "probability": 0.99853515625 + }, + { + "word": " about,", + "start": 1408.9, + "end": 1409.14, + "probability": 0.99609375 + } + ] + }, + { + "id": 830, + "text": "uh, the problems with the technology of this world.", + "start": 1409.48, + "end": 1411.66, + "words": [ + { + "word": " uh,", + "start": 1409.48, + "end": 1409.56, + "probability": 0.0007586479187011719 + }, + { + "word": " the", + "start": 1409.56, + "end": 1409.58, + "probability": 0.9921875 + }, + { + "word": " problems", + "start": 1409.58, + "end": 1410.0, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 1410.0, + "end": 1410.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 1410.28, + "end": 1410.42, + "probability": 1.0 + }, + { + "word": " technology", + "start": 1410.42, + "end": 1410.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 1410.82, + "end": 1411.16, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1411.16, + "end": 1411.32, + "probability": 1.0 + }, + { + "word": " world.", + "start": 1411.32, + "end": 1411.66, + "probability": 1.0 + } + ] + }, + { + "id": 831, + "text": "Not to mention, you can give us a call at 790-2040.", + "start": 1411.88, + "end": 1415.26, + "words": [ + { + "word": " Not", + "start": 1411.88, + "end": 1412.32, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 1412.32, + "end": 1412.42, + "probability": 1.0 + }, + { + "word": " mention,", + "start": 1412.42, + "end": 1412.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 1412.66, + "end": 1412.88, + "probability": 1.0 + }, + { + "word": " can", + "start": 1412.88, + "end": 1413.02, + "probability": 1.0 + }, + { + "word": " give", + "start": 1413.02, + "end": 1413.16, + "probability": 1.0 + }, + { + "word": " us", + "start": 1413.16, + "end": 1413.26, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 1413.26, + "end": 1413.28, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 1413.28, + "end": 1413.44, + "probability": 1.0 + }, + { + "word": " at", + "start": 1413.44, + "end": 1413.56, + "probability": 1.0 + }, + { + "word": " 790", + "start": 1413.56, + "end": 1413.96, + "probability": 0.78564453125 + }, + { + "word": "-2040.", + "start": 1413.96, + "end": 1415.26, + "probability": 0.98291015625 + } + ] + }, + { + "id": 832, + "text": "We'll be right back.", + "start": 1415.36, + "end": 1416.12, + "words": [ + { + "word": " We'll", + "start": 1415.36, + "end": 1415.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 1415.74, + "end": 1415.78, + "probability": 1.0 + }, + { + "word": " right", + "start": 1415.78, + "end": 1415.94, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1415.94, + "end": 1416.12, + "probability": 1.0 + } + ] + }, + { + "id": 833, + "text": "Whether you're dealing with hardware installation or, heaven forbid, a virus.", + "start": 1434.0, + "end": 1437.84, + "words": [ + { + "word": " Whether", + "start": 1434.0, + "end": 1434.44, + "probability": 0.81103515625 + }, + { + "word": " you're", + "start": 1434.44, + "end": 1434.74, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 1434.74, + "end": 1435.02, + "probability": 1.0 + }, + { + "word": " with", + "start": 1435.02, + "end": 1435.22, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 1435.22, + "end": 1435.5, + "probability": 0.99560546875 + }, + { + "word": " installation", + "start": 1435.5, + "end": 1435.9, + "probability": 0.998046875 + }, + { + "word": " or,", + "start": 1435.9, + "end": 1436.38, + "probability": 0.955078125 + }, + { + "word": " heaven", + "start": 1436.4, + "end": 1436.62, + "probability": 0.9921875 + }, + { + "word": " forbid,", + "start": 1436.62, + "end": 1436.9, + "probability": 1.0 + }, + { + "word": " a", + "start": 1437.12, + "end": 1437.44, + "probability": 0.99951171875 + }, + { + "word": " virus.", + "start": 1437.44, + "end": 1437.84, + "probability": 1.0 + } + ] + }, + { + "id": 834, + "text": "No!", + "start": 1437.92, + "end": 1438.36, + "words": [ + { + "word": " No!", + "start": 1437.92, + "end": 1438.36, + "probability": 0.564453125 + } + ] + }, + { + "id": 835, + "text": "No!", + "start": 1438.52, + "end": 1438.96, + "words": [ + { + "word": " No!", + "start": 1438.52, + "end": 1438.96, + "probability": 0.99462890625 + } + ] + }, + { + "id": 836, + "text": "No!", + "start": 1438.96, + "end": 1439.38, + "words": [ + { + "word": " No!", + "start": 1438.96, + "end": 1439.38, + "probability": 0.95556640625 + } + ] + }, + { + "id": 837, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 1439.48, + "end": 1442.98, + "words": [ + { + "word": " Mike", + "start": 1439.48, + "end": 1440.32, + "probability": 0.6435546875 + }, + { + "word": " Swanson", + "start": 1440.32, + "end": 1440.76, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1440.76, + "end": 1440.98, + "probability": 0.9892578125 + }, + { + "word": " answering", + "start": 1440.98, + "end": 1441.28, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 1441.28, + "end": 1441.64, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1441.64, + "end": 1441.84, + "probability": 0.998046875 + }, + { + "word": " questions", + "start": 1441.84, + "end": 1442.22, + "probability": 1.0 + }, + { + "word": " one", + "start": 1442.22, + "end": 1442.52, + "probability": 0.99560546875 + }, + { + "word": " by", + "start": 1442.52, + "end": 1442.72, + "probability": 0.97216796875 + }, + { + "word": " one.", + "start": 1442.72, + "end": 1442.98, + "probability": 1.0 + } + ] + }, + { + "id": 838, + "text": "So call in or chat in with yours.", + "start": 1443.08, + "end": 1445.12, + "words": [ + { + "word": " So", + "start": 1443.08, + "end": 1443.42, + "probability": 0.99853515625 + }, + { + "word": " call", + "start": 1443.42, + "end": 1443.62, + "probability": 0.9833984375 + }, + { + "word": " in", + "start": 1443.62, + "end": 1443.86, + "probability": 1.0 + }, + { + "word": " or", + "start": 1443.86, + "end": 1444.1, + "probability": 0.9921875 + }, + { + "word": " chat", + "start": 1444.1, + "end": 1444.38, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 1444.38, + "end": 1444.6, + "probability": 1.0 + }, + { + "word": " with", + "start": 1444.6, + "end": 1444.88, + "probability": 0.99951171875 + }, + { + "word": " yours.", + "start": 1444.88, + "end": 1445.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 839, + "text": "The website?", + "start": 1445.4, + "end": 1446.1, + "words": [ + { + "word": " The", + "start": 1445.4, + "end": 1445.76, + "probability": 0.9970703125 + }, + { + "word": " website?", + "start": 1445.76, + "end": 1446.1, + "probability": 0.994140625 + } + ] + }, + { + "id": 840, + "text": "Gurushow.com.", + "start": 1446.52, + "end": 1447.62, + "words": [ + { + "word": " Gurushow", + "start": 1446.52, + "end": 1447.04, + "probability": 0.791015625 + }, + { + "word": ".com.", + "start": 1447.04, + "end": 1447.62, + "probability": 1.0 + } + ] + }, + { + "id": 841, + "text": "Tune in, click in, and kick back.", + "start": 1447.94, + "end": 1450.22, + "words": [ + { + "word": " Tune", + "start": 1447.94, + "end": 1448.46, + "probability": 0.99951171875 + }, + { + "word": " in,", + "start": 1448.46, + "end": 1448.66, + "probability": 1.0 + }, + { + "word": " click", + "start": 1448.76, + "end": 1449.14, + "probability": 1.0 + }, + { + "word": " in,", + "start": 1449.14, + "end": 1449.42, + "probability": 1.0 + }, + { + "word": " and", + "start": 1449.48, + "end": 1449.78, + "probability": 1.0 + }, + { + "word": " kick", + "start": 1449.78, + "end": 1449.92, + "probability": 0.998046875 + }, + { + "word": " back.", + "start": 1449.92, + "end": 1450.22, + "probability": 1.0 + } + ] + }, + { + "id": 842, + "text": "This is the Computer Guru Show on AM1030 KV...", + "start": 1450.46, + "end": 1454.46, + "words": [ + { + "word": " This", + "start": 1450.46, + "end": 1450.96, + "probability": 1.0 + }, + { + "word": " is", + "start": 1450.96, + "end": 1451.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1451.34, + "end": 1451.46, + "probability": 0.79296875 + }, + { + "word": " Computer", + "start": 1451.46, + "end": 1451.72, + "probability": 0.9931640625 + }, + { + "word": " Guru", + "start": 1451.72, + "end": 1452.02, + "probability": 0.99609375 + }, + { + "word": " Show", + "start": 1452.02, + "end": 1452.4, + "probability": 0.99169921875 + }, + { + "word": " on", + "start": 1452.4, + "end": 1452.84, + "probability": 0.9990234375 + }, + { + "word": " AM1030", + "start": 1452.84, + "end": 1453.76, + "probability": 0.7880859375 + }, + { + "word": " KV...", + "start": 1453.76, + "end": 1454.46, + "probability": 0.34814453125 + } + ] + }, + { + "id": 843, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 1454.46, + "end": 1458.08, + "words": [ + { + "word": " Mike", + "start": 1454.46, + "end": 1455.5, + "probability": 0.99658203125 + }, + { + "word": " Swanson,", + "start": 1455.5, + "end": 1455.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 1456.06, + "end": 1456.22, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 1456.22, + "end": 1456.6, + "probability": 0.9208984375 + }, + { + "word": " guru,", + "start": 1456.6, + "end": 1456.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 1457.08, + "end": 1457.3, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1457.3, + "end": 1457.54, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1457.54, + "end": 1457.7, + "probability": 1.0 + }, + { + "word": " click", + "start": 1457.7, + "end": 1457.86, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 1457.86, + "end": 1458.08, + "probability": 1.0 + } + ] + }, + { + "id": 844, + "text": "Listen and watch at gurushow.com.", + "start": 1458.28, + "end": 1460.38, + "words": [ + { + "word": " Listen", + "start": 1458.28, + "end": 1458.74, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1458.74, + "end": 1458.94, + "probability": 1.0 + }, + { + "word": " watch", + "start": 1458.94, + "end": 1459.22, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1459.22, + "end": 1459.38, + "probability": 0.99609375 + }, + { + "word": " gurushow", + "start": 1459.38, + "end": 1459.94, + "probability": 0.9521484375 + }, + { + "word": ".com.", + "start": 1459.94, + "end": 1460.38, + "probability": 1.0 + } + ] + }, + { + "id": 845, + "text": "This is the Computer Guru Show on KVOI, The Voice.", + "start": 1460.68, + "end": 1464.44, + "words": [ + { + "word": " This", + "start": 1460.68, + "end": 1461.2, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1461.2, + "end": 1461.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 1461.5, + "end": 1461.62, + "probability": 0.8916015625 + }, + { + "word": " Computer", + "start": 1461.62, + "end": 1461.84, + "probability": 0.9990234375 + }, + { + "word": " Guru", + "start": 1461.84, + "end": 1462.2, + "probability": 1.0 + }, + { + "word": " Show", + "start": 1462.2, + "end": 1462.58, + "probability": 1.0 + }, + { + "word": " on", + "start": 1462.58, + "end": 1463.0, + "probability": 0.994140625 + }, + { + "word": " KVOI,", + "start": 1463.0, + "end": 1463.72, + "probability": 0.9697265625 + }, + { + "word": " The", + "start": 1463.88, + "end": 1464.12, + "probability": 0.98779296875 + }, + { + "word": " Voice.", + "start": 1464.12, + "end": 1464.44, + "probability": 1.0 + } + ] + }, + { + "id": 846, + "text": "Welcome back to the Computer Guru Show, 790-2040.", + "start": 1465.5, + "end": 1468.66, + "words": [ + { + "word": " Welcome", + "start": 1465.5, + "end": 1466.02, + "probability": 0.98974609375 + }, + { + "word": " back", + "start": 1466.02, + "end": 1466.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 1466.42, + "end": 1466.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1466.64, + "end": 1466.76, + "probability": 0.98876953125 + }, + { + "word": " Computer", + "start": 1466.76, + "end": 1467.0, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 1467.0, + "end": 1467.24, + "probability": 1.0 + }, + { + "word": " Show,", + "start": 1467.24, + "end": 1467.5, + "probability": 1.0 + }, + { + "word": " 790", + "start": 1467.6, + "end": 1468.06, + "probability": 0.9970703125 + }, + { + "word": "-2040.", + "start": 1468.06, + "end": 1468.66, + "probability": 0.73388671875 + } + ] + }, + { + "id": 847, + "text": "If you'd like to be a part of the show, you can find us on Facebook, Twitter, or Instagram.", + "start": 1468.68, + "end": 1469.46, + "words": [ + { + "word": " If", + "start": 1468.68, + "end": 1468.82, + "probability": 0.99072265625 + }, + { + "word": " you'd", + "start": 1468.82, + "end": 1468.92, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 1468.92, + "end": 1468.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1468.94, + "end": 1469.06, + "probability": 1.0 + }, + { + "word": " be", + "start": 1469.06, + "end": 1469.16, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1469.16, + "end": 1469.2, + "probability": 0.57666015625 + }, + { + "word": " part", + "start": 1469.2, + "end": 1469.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 1469.3, + "end": 1469.36, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1469.36, + "end": 1469.46, + "probability": 0.671875 + }, + { + "word": " show,", + "start": 1469.46, + "end": 1469.46, + "probability": 0.8642578125 + }, + { + "word": " you", + "start": 1469.46, + "end": 1469.46, + "probability": 0.3330078125 + }, + { + "word": " can", + "start": 1469.46, + "end": 1469.46, + "probability": 0.93017578125 + }, + { + "word": " find", + "start": 1469.46, + "end": 1469.46, + "probability": 0.1964111328125 + }, + { + "word": " us", + "start": 1469.46, + "end": 1469.46, + "probability": 0.72412109375 + }, + { + "word": " on", + "start": 1469.46, + "end": 1469.46, + "probability": 0.73974609375 + }, + { + "word": " Facebook,", + "start": 1469.46, + "end": 1469.46, + "probability": 0.271728515625 + }, + { + "word": " Twitter,", + "start": 1469.46, + "end": 1469.46, + "probability": 0.81298828125 + }, + { + "word": " or", + "start": 1469.46, + "end": 1469.46, + "probability": 0.254150390625 + }, + { + "word": " Instagram.", + "start": 1469.46, + "end": 1469.46, + "probability": 0.212158203125 + } + ] + }, + { + "id": 848, + "text": "If you'd like to be a part of the show, how'd my levels change?", + "start": 1469.48, + "end": 1471.48, + "words": [ + { + "word": " If", + "start": 1469.48, + "end": 1469.52, + "probability": 0.006061553955078125 + }, + { + "word": " you'd", + "start": 1469.52, + "end": 1469.52, + "probability": 0.6923828125 + }, + { + "word": " like", + "start": 1469.52, + "end": 1469.52, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 1469.52, + "end": 1469.52, + "probability": 0.97900390625 + }, + { + "word": " be", + "start": 1469.52, + "end": 1469.52, + "probability": 0.002838134765625 + }, + { + "word": " a", + "start": 1469.52, + "end": 1469.52, + "probability": 0.11395263671875 + }, + { + "word": " part", + "start": 1469.52, + "end": 1469.52, + "probability": 0.86572265625 + }, + { + "word": " of", + "start": 1469.52, + "end": 1469.52, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 1469.52, + "end": 1469.52, + "probability": 0.72216796875 + }, + { + "word": " show,", + "start": 1469.52, + "end": 1469.52, + "probability": 0.97802734375 + }, + { + "word": " how'd", + "start": 1469.78, + "end": 1470.98, + "probability": 0.56982421875 + }, + { + "word": " my", + "start": 1470.98, + "end": 1471.04, + "probability": 1.0 + }, + { + "word": " levels", + "start": 1471.04, + "end": 1471.28, + "probability": 0.99951171875 + }, + { + "word": " change?", + "start": 1471.28, + "end": 1471.48, + "probability": 1.0 + } + ] + }, + { + "id": 849, + "text": "That's what I want to know.", + "start": 1471.7, + "end": 1472.48, + "words": [ + { + "word": " That's", + "start": 1471.7, + "end": 1471.96, + "probability": 1.0 + }, + { + "word": " what", + "start": 1471.96, + "end": 1472.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 1472.06, + "end": 1472.18, + "probability": 1.0 + }, + { + "word": " want", + "start": 1472.18, + "end": 1472.3, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 1472.3, + "end": 1472.36, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1472.36, + "end": 1472.48, + "probability": 1.0 + } + ] + }, + { + "id": 850, + "text": "They did.", + "start": 1472.7, + "end": 1473.12, + "words": [ + { + "word": " They", + "start": 1472.7, + "end": 1472.96, + "probability": 0.9970703125 + }, + { + "word": " did.", + "start": 1472.96, + "end": 1473.12, + "probability": 1.0 + } + ] + }, + { + "id": 851, + "text": "Didn't they?", + "start": 1473.5800000000002, + "end": 1473.98, + "words": [ + { + "word": " Didn't", + "start": 1473.5800000000002, + "end": 1473.9, + "probability": 0.998046875 + }, + { + "word": " they?", + "start": 1473.9, + "end": 1473.98, + "probability": 1.0 + } + ] + }, + { + "id": 852, + "text": "Or am I just being louder?", + "start": 1474.04, + "end": 1475.0, + "words": [ + { + "word": " Or", + "start": 1474.04, + "end": 1474.28, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 1474.28, + "end": 1474.38, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1474.38, + "end": 1474.42, + "probability": 1.0 + }, + { + "word": " just", + "start": 1474.42, + "end": 1474.6, + "probability": 1.0 + }, + { + "word": " being", + "start": 1474.6, + "end": 1474.76, + "probability": 1.0 + }, + { + "word": " louder?", + "start": 1474.76, + "end": 1475.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 853, + "text": "It's me.", + "start": 1475.2, + "end": 1475.48, + "words": [ + { + "word": " It's", + "start": 1475.2, + "end": 1475.32, + "probability": 0.99951171875 + }, + { + "word": " me.", + "start": 1475.32, + "end": 1475.48, + "probability": 1.0 + } + ] + }, + { + "id": 854, + "text": "I changed them.", + "start": 1475.52, + "end": 1476.04, + "words": [ + { + "word": " I", + "start": 1475.52, + "end": 1475.62, + "probability": 0.9990234375 + }, + { + "word": " changed", + "start": 1475.62, + "end": 1475.86, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1475.86, + "end": 1476.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 855, + "text": "Oh, okay.", + "start": 1476.16, + "end": 1476.7, + "words": [ + { + "word": " Oh,", + "start": 1476.16, + "end": 1476.48, + "probability": 0.990234375 + }, + { + "word": " okay.", + "start": 1476.48, + "end": 1476.7, + "probability": 0.97119140625 + } + ] + }, + { + "id": 856, + "text": "All right.", + "start": 1477.5, + "end": 1478.02, + "words": [ + { + "word": " All", + "start": 1477.5, + "end": 1477.82, + "probability": 0.87939453125 + }, + { + "word": " right.", + "start": 1477.82, + "end": 1478.02, + "probability": 1.0 + } + ] + }, + { + "id": 857, + "text": "So if you'd like to call and ask a question, you can give us a call, 790-2040.", + "start": 1478.7800000000002, + "end": 1483.1, + "words": [ + { + "word": " So", + "start": 1478.7800000000002, + "end": 1479.1000000000001, + "probability": 0.92041015625 + }, + { + "word": " if", + "start": 1479.1000000000001, + "end": 1479.42, + "probability": 0.67578125 + }, + { + "word": " you'd", + "start": 1479.42, + "end": 1479.72, + "probability": 1.0 + }, + { + "word": " like", + "start": 1479.72, + "end": 1479.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 1479.86, + "end": 1479.98, + "probability": 1.0 + }, + { + "word": " call", + "start": 1479.98, + "end": 1480.48, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1480.48, + "end": 1480.8, + "probability": 1.0 + }, + { + "word": " ask", + "start": 1480.8, + "end": 1481.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 1481.08, + "end": 1481.2, + "probability": 1.0 + }, + { + "word": " question,", + "start": 1481.2, + "end": 1481.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 1481.6, + "end": 1481.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 1481.68, + "end": 1481.78, + "probability": 1.0 + }, + { + "word": " give", + "start": 1481.78, + "end": 1481.9, + "probability": 1.0 + }, + { + "word": " us", + "start": 1481.9, + "end": 1482.02, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1482.02, + "end": 1482.04, + "probability": 0.99853515625 + }, + { + "word": " call,", + "start": 1482.04, + "end": 1482.16, + "probability": 1.0 + }, + { + "word": " 790", + "start": 1482.24, + "end": 1482.56, + "probability": 0.998046875 + }, + { + "word": "-2040.", + "start": 1482.56, + "end": 1483.1, + "probability": 0.81298828125 + } + ] + }, + { + "id": 858, + "text": "And if you're the type that doesn't want to talk to us on air, you can call 304-8300 and talk to the shop.", + "start": 1483.2, + "end": 1490.28, + "words": [ + { + "word": " And", + "start": 1483.2, + "end": 1483.38, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 1483.38, + "end": 1483.58, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1483.58, + "end": 1483.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1483.74, + "end": 1483.94, + "probability": 1.0 + }, + { + "word": " type", + "start": 1483.94, + "end": 1484.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 1484.2, + "end": 1484.34, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1484.34, + "end": 1484.6, + "probability": 1.0 + }, + { + "word": " want", + "start": 1484.6, + "end": 1484.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1484.74, + "end": 1484.92, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1484.92, + "end": 1485.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1485.38, + "end": 1485.58, + "probability": 1.0 + }, + { + "word": " us", + "start": 1485.58, + "end": 1485.76, + "probability": 1.0 + }, + { + "word": " on", + "start": 1485.76, + "end": 1485.92, + "probability": 1.0 + }, + { + "word": " air,", + "start": 1485.92, + "end": 1486.18, + "probability": 0.99169921875 + }, + { + "word": " you", + "start": 1486.32, + "end": 1486.7, + "probability": 1.0 + }, + { + "word": " can", + "start": 1486.7, + "end": 1486.94, + "probability": 1.0 + }, + { + "word": " call", + "start": 1486.94, + "end": 1487.26, + "probability": 1.0 + }, + { + "word": " 304", + "start": 1487.26, + "end": 1488.0, + "probability": 0.99951171875 + }, + { + "word": "-8300", + "start": 1488.0, + "end": 1488.44, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1488.44, + "end": 1489.44, + "probability": 0.99462890625 + }, + { + "word": " talk", + "start": 1489.44, + "end": 1489.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1489.94, + "end": 1490.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1490.06, + "end": 1490.08, + "probability": 0.99951171875 + }, + { + "word": " shop.", + "start": 1490.08, + "end": 1490.28, + "probability": 0.87255859375 + } + ] + }, + { + "id": 859, + "text": "They won't put you on the air at all.", + "start": 1490.42, + "end": 1492.7, + "words": [ + { + "word": " They", + "start": 1490.42, + "end": 1490.72, + "probability": 0.9990234375 + }, + { + "word": " won't", + "start": 1490.72, + "end": 1491.82, + "probability": 1.0 + }, + { + "word": " put", + "start": 1491.82, + "end": 1491.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 1491.92, + "end": 1492.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1492.1, + "end": 1492.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 1492.22, + "end": 1492.32, + "probability": 0.96875 + }, + { + "word": " air", + "start": 1492.32, + "end": 1492.4, + "probability": 1.0 + }, + { + "word": " at", + "start": 1492.4, + "end": 1492.5, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1492.5, + "end": 1492.7, + "probability": 1.0 + } + ] + }, + { + "id": 860, + "text": "Not at all.", + "start": 1493.8, + "end": 1494.32, + "words": [ + { + "word": " Not", + "start": 1493.8, + "end": 1494.12, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1494.12, + "end": 1494.22, + "probability": 1.0 + }, + { + "word": " all.", + "start": 1494.22, + "end": 1494.32, + "probability": 1.0 + } + ] + }, + { + "id": 861, + "text": "I promise.", + "start": 1494.4, + "end": 1494.84, + "words": [ + { + "word": " I", + "start": 1494.4, + "end": 1494.54, + "probability": 0.99853515625 + }, + { + "word": " promise.", + "start": 1494.54, + "end": 1494.84, + "probability": 1.0 + } + ] + }, + { + "id": 862, + "text": "Although it is Howard, so he may try to mess with you a little bit.", + "start": 1495.68, + "end": 1498.3, + "words": [ + { + "word": " Although", + "start": 1495.68, + "end": 1496.0, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1496.0, + "end": 1496.16, + "probability": 0.9921875 + }, + { + "word": " is", + "start": 1496.16, + "end": 1496.3, + "probability": 1.0 + }, + { + "word": " Howard,", + "start": 1496.3, + "end": 1496.54, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1496.64, + "end": 1496.82, + "probability": 1.0 + }, + { + "word": " he", + "start": 1496.82, + "end": 1497.32, + "probability": 0.9755859375 + }, + { + "word": " may", + "start": 1497.32, + "end": 1497.46, + "probability": 1.0 + }, + { + "word": " try", + "start": 1497.46, + "end": 1497.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 1497.58, + "end": 1497.66, + "probability": 1.0 + }, + { + "word": " mess", + "start": 1497.66, + "end": 1497.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 1497.78, + "end": 1497.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 1497.9, + "end": 1498.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 1498.0, + "end": 1498.08, + "probability": 1.0 + }, + { + "word": " little", + "start": 1498.08, + "end": 1498.16, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 1498.16, + "end": 1498.3, + "probability": 1.0 + } + ] + }, + { + "id": 863, + "text": "Well, it is, yeah.", + "start": 1498.5, + "end": 1499.26, + "words": [ + { + "word": " Well,", + "start": 1498.5, + "end": 1498.82, + "probability": 0.8046875 + }, + { + "word": " it", + "start": 1498.82, + "end": 1498.92, + "probability": 0.8408203125 + }, + { + "word": " is,", + "start": 1498.92, + "end": 1499.1, + "probability": 0.9990234375 + }, + { + "word": " yeah.", + "start": 1499.12, + "end": 1499.26, + "probability": 0.99365234375 + } + ] + }, + { + "id": 864, + "text": "that's how Howard gets his kicks", + "start": 1500.48, + "end": 1502.04, + "words": [ + { + "word": " that's", + "start": 1500.48, + "end": 1500.94, + "probability": 0.494140625 + }, + { + "word": " how", + "start": 1500.94, + "end": 1501.1, + "probability": 0.99853515625 + }, + { + "word": " Howard", + "start": 1501.1, + "end": 1501.4, + "probability": 0.916015625 + }, + { + "word": " gets", + "start": 1501.4, + "end": 1501.62, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 1501.62, + "end": 1501.82, + "probability": 1.0 + }, + { + "word": " kicks", + "start": 1501.82, + "end": 1502.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 865, + "text": "he tries to mess with people a little bit", + "start": 1502.04, + "end": 1503.96, + "words": [ + { + "word": " he", + "start": 1502.04, + "end": 1502.36, + "probability": 0.12200927734375 + }, + { + "word": " tries", + "start": 1502.36, + "end": 1502.96, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1502.96, + "end": 1503.08, + "probability": 1.0 + }, + { + "word": " mess", + "start": 1503.08, + "end": 1503.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 1503.2, + "end": 1503.3, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 1503.3, + "end": 1503.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1503.52, + "end": 1503.7, + "probability": 0.9794921875 + }, + { + "word": " little", + "start": 1503.7, + "end": 1503.78, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1503.78, + "end": 1503.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 866, + "text": "that's what happens", + "start": 1503.96, + "end": 1505.3, + "words": [ + { + "word": " that's", + "start": 1503.96, + "end": 1504.72, + "probability": 0.6875 + }, + { + "word": " what", + "start": 1504.72, + "end": 1505.0, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 1505.0, + "end": 1505.3, + "probability": 1.0 + } + ] + }, + { + "id": 867, + "text": "what's next sir?", + "start": 1506.62, + "end": 1507.98, + "words": [ + { + "word": " what's", + "start": 1506.62, + "end": 1507.08, + "probability": 0.6513671875 + }, + { + "word": " next", + "start": 1507.08, + "end": 1507.44, + "probability": 1.0 + }, + { + "word": " sir?", + "start": 1507.44, + "end": 1507.98, + "probability": 0.83056640625 + } + ] + }, + { + "id": 868, + "text": "how would you feel about purchasing", + "start": 1508.5, + "end": 1510.2, + "words": [ + { + "word": " how", + "start": 1508.5, + "end": 1508.96, + "probability": 0.95166015625 + }, + { + "word": " would", + "start": 1508.96, + "end": 1509.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 1509.2, + "end": 1509.32, + "probability": 1.0 + }, + { + "word": " feel", + "start": 1509.32, + "end": 1509.52, + "probability": 1.0 + }, + { + "word": " about", + "start": 1509.52, + "end": 1509.72, + "probability": 1.0 + }, + { + "word": " purchasing", + "start": 1509.72, + "end": 1510.2, + "probability": 1.0 + } + ] + }, + { + "id": 869, + "text": "fried chicken with bitcoin?", + "start": 1510.2, + "end": 1511.94, + "words": [ + { + "word": " fried", + "start": 1510.2, + "end": 1511.12, + "probability": 0.99560546875 + }, + { + "word": " chicken", + "start": 1511.12, + "end": 1511.38, + "probability": 1.0 + }, + { + "word": " with", + "start": 1511.38, + "end": 1511.66, + "probability": 1.0 + }, + { + "word": " bitcoin?", + "start": 1511.66, + "end": 1511.94, + "probability": 0.72021484375 + } + ] + }, + { + "id": 870, + "text": "you know what", + "start": 1513.08, + "end": 1513.96, + "words": [ + { + "word": " you", + "start": 1513.08, + "end": 1513.54, + "probability": 0.7265625 + }, + { + "word": " know", + "start": 1513.54, + "end": 1513.84, + "probability": 1.0 + }, + { + "word": " what", + "start": 1513.84, + "end": 1513.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 871, + "text": "I knew that the fast food companies were going to jump on this", + "start": 1513.96, + "end": 1516.7, + "words": [ + { + "word": " I", + "start": 1513.96, + "end": 1514.18, + "probability": 0.78125 + }, + { + "word": " knew", + "start": 1514.18, + "end": 1514.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 1514.86, + "end": 1515.08, + "probability": 0.9892578125 + }, + { + "word": " the", + "start": 1515.08, + "end": 1515.22, + "probability": 0.99951171875 + }, + { + "word": " fast", + "start": 1515.22, + "end": 1515.4, + "probability": 0.99853515625 + }, + { + "word": " food", + "start": 1515.4, + "end": 1515.54, + "probability": 0.99951171875 + }, + { + "word": " companies", + "start": 1515.54, + "end": 1515.8, + "probability": 1.0 + }, + { + "word": " were", + "start": 1515.8, + "end": 1516.02, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 1516.02, + "end": 1516.12, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 1516.12, + "end": 1516.16, + "probability": 1.0 + }, + { + "word": " jump", + "start": 1516.16, + "end": 1516.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 1516.34, + "end": 1516.48, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1516.48, + "end": 1516.7, + "probability": 1.0 + } + ] + }, + { + "id": 872, + "text": "why wouldn't they?", + "start": 1516.7, + "end": 1517.34, + "words": [ + { + "word": " why", + "start": 1516.7, + "end": 1516.96, + "probability": 0.876953125 + }, + { + "word": " wouldn't", + "start": 1516.96, + "end": 1517.24, + "probability": 1.0 + }, + { + "word": " they?", + "start": 1517.24, + "end": 1517.34, + "probability": 1.0 + } + ] + }, + { + "id": 873, + "text": "because it's nothing but you make more money than you", + "start": 1517.54, + "end": 1520.6, + "words": [ + { + "word": " because", + "start": 1517.54, + "end": 1517.88, + "probability": 0.8095703125 + }, + { + "word": " it's", + "start": 1517.88, + "end": 1518.5, + "probability": 0.9990234375 + }, + { + "word": " nothing", + "start": 1518.5, + "end": 1518.8, + "probability": 1.0 + }, + { + "word": " but", + "start": 1518.8, + "end": 1519.16, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1519.16, + "end": 1519.46, + "probability": 0.9912109375 + }, + { + "word": " make", + "start": 1519.46, + "end": 1519.66, + "probability": 1.0 + }, + { + "word": " more", + "start": 1519.66, + "end": 1519.9, + "probability": 1.0 + }, + { + "word": " money", + "start": 1519.9, + "end": 1520.22, + "probability": 1.0 + }, + { + "word": " than", + "start": 1520.22, + "end": 1520.42, + "probability": 0.220458984375 + }, + { + "word": " you", + "start": 1520.42, + "end": 1520.6, + "probability": 0.990234375 + } + ] + }, + { + "id": 874, + "text": "inflation on this", + "start": 1521.9199999999998, + "end": 1523.04, + "words": [ + { + "word": " inflation", + "start": 1521.9199999999998, + "end": 1522.3799999999999, + "probability": 0.8271484375 + }, + { + "word": " on", + "start": 1522.3799999999999, + "end": 1522.84, + "probability": 0.99609375 + }, + { + "word": " this", + "start": 1522.84, + "end": 1523.04, + "probability": 1.0 + } + ] + }, + { + "id": 875, + "text": "I have to say though that I wouldn't want", + "start": 1523.04, + "end": 1524.9, + "words": [ + { + "word": " I", + "start": 1523.04, + "end": 1523.42, + "probability": 0.53857421875 + }, + { + "word": " have", + "start": 1523.42, + "end": 1523.66, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1523.66, + "end": 1523.78, + "probability": 1.0 + }, + { + "word": " say", + "start": 1523.78, + "end": 1523.92, + "probability": 1.0 + }, + { + "word": " though", + "start": 1523.92, + "end": 1524.12, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1524.12, + "end": 1524.32, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 1524.32, + "end": 1524.4, + "probability": 1.0 + }, + { + "word": " wouldn't", + "start": 1524.4, + "end": 1524.68, + "probability": 1.0 + }, + { + "word": " want", + "start": 1524.68, + "end": 1524.9, + "probability": 1.0 + } + ] + }, + { + "id": 876, + "text": "to do a transaction for fast food", + "start": 1524.9, + "end": 1527.24, + "words": [ + { + "word": " to", + "start": 1524.9, + "end": 1525.2, + "probability": 1.0 + }, + { + "word": " do", + "start": 1525.2, + "end": 1525.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 1525.54, + "end": 1525.8, + "probability": 1.0 + }, + { + "word": " transaction", + "start": 1525.8, + "end": 1526.12, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1526.12, + "end": 1526.62, + "probability": 0.99951171875 + }, + { + "word": " fast", + "start": 1526.62, + "end": 1527.06, + "probability": 1.0 + }, + { + "word": " food", + "start": 1527.06, + "end": 1527.24, + "probability": 1.0 + } + ] + }, + { + "id": 877, + "text": "with bitcoin because it would be", + "start": 1527.24, + "end": 1528.52, + "words": [ + { + "word": " with", + "start": 1527.24, + "end": 1527.4, + "probability": 0.99951171875 + }, + { + "word": " bitcoin", + "start": 1527.4, + "end": 1527.66, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1527.66, + "end": 1528.1, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1528.1, + "end": 1528.26, + "probability": 1.0 + }, + { + "word": " would", + "start": 1528.26, + "end": 1528.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 1528.34, + "end": 1528.52, + "probability": 1.0 + } + ] + }, + { + "id": 878, + "text": "incredibly slow if they wanted you to stand there", + "start": 1528.52, + "end": 1531.08, + "words": [ + { + "word": " incredibly", + "start": 1528.52, + "end": 1529.54, + "probability": 0.83642578125 + }, + { + "word": " slow", + "start": 1529.54, + "end": 1529.88, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 1529.88, + "end": 1530.24, + "probability": 0.95361328125 + }, + { + "word": " they", + "start": 1530.24, + "end": 1530.34, + "probability": 0.99951171875 + }, + { + "word": " wanted", + "start": 1530.34, + "end": 1530.54, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1530.54, + "end": 1530.68, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1530.68, + "end": 1530.74, + "probability": 0.99951171875 + }, + { + "word": " stand", + "start": 1530.74, + "end": 1530.92, + "probability": 0.99169921875 + }, + { + "word": " there", + "start": 1530.92, + "end": 1531.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 879, + "text": "and verify it", + "start": 1531.08, + "end": 1531.7, + "words": [ + { + "word": " and", + "start": 1531.08, + "end": 1531.16, + "probability": 0.99853515625 + }, + { + "word": " verify", + "start": 1531.16, + "end": 1531.4, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1531.4, + "end": 1531.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 880, + "text": "bitcoin transactions are slow", + "start": 1532.3400000000001, + "end": 1534.02, + "words": [ + { + "word": " bitcoin", + "start": 1532.3400000000001, + "end": 1532.92, + "probability": 0.0251007080078125 + }, + { + "word": " transactions", + "start": 1532.92, + "end": 1533.38, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 1533.38, + "end": 1533.82, + "probability": 0.99951171875 + }, + { + "word": " slow", + "start": 1533.82, + "end": 1534.02, + "probability": 0.998046875 + } + ] + }, + { + "id": 881, + "text": "I imagine they're working through some type of", + "start": 1534.02, + "end": 1536.74, + "words": [ + { + "word": " I", + "start": 1534.02, + "end": 1534.54, + "probability": 0.0211639404296875 + }, + { + "word": " imagine", + "start": 1534.54, + "end": 1535.02, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 1535.02, + "end": 1535.36, + "probability": 0.8837890625 + }, + { + "word": " working", + "start": 1535.36, + "end": 1535.56, + "probability": 0.99951171875 + }, + { + "word": " through", + "start": 1535.56, + "end": 1535.84, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 1535.84, + "end": 1536.1, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 1536.1, + "end": 1536.38, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1536.38, + "end": 1536.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 882, + "text": "clearing house", + "start": 1537.74, + "end": 1538.66, + "words": [ + { + "word": " clearing", + "start": 1537.74, + "end": 1538.32, + "probability": 0.99609375 + }, + { + "word": " house", + "start": 1538.32, + "end": 1538.66, + "probability": 0.51904296875 + } + ] + }, + { + "id": 883, + "text": "for that", + "start": 1538.66, + "end": 1539.24, + "words": [ + { + "word": " for", + "start": 1538.66, + "end": 1538.96, + "probability": 0.93505859375 + }, + { + "word": " that", + "start": 1538.96, + "end": 1539.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 884, + "text": "an escrow account", + "start": 1539.24, + "end": 1541.14, + "words": [ + { + "word": " an", + "start": 1539.24, + "end": 1539.9, + "probability": 0.67431640625 + }, + { + "word": " escrow", + "start": 1539.9, + "end": 1540.8, + "probability": 0.998046875 + }, + { + "word": " account", + "start": 1540.8, + "end": 1541.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 885, + "text": "if they would take litecoin", + "start": 1541.14, + "end": 1543.28, + "words": [ + { + "word": " if", + "start": 1541.14, + "end": 1542.06, + "probability": 0.4228515625 + }, + { + "word": " they", + "start": 1542.06, + "end": 1542.56, + "probability": 1.0 + }, + { + "word": " would", + "start": 1542.56, + "end": 1542.7, + "probability": 0.99853515625 + }, + { + "word": " take", + "start": 1542.7, + "end": 1542.86, + "probability": 1.0 + }, + { + "word": " litecoin", + "start": 1542.86, + "end": 1543.28, + "probability": 0.7998046875 + } + ] + }, + { + "id": 886, + "text": "or ripple", + "start": 1543.28, + "end": 1545.1, + "words": [ + { + "word": " or", + "start": 1543.28, + "end": 1544.02, + "probability": 0.9033203125 + }, + { + "word": " ripple", + "start": 1544.02, + "end": 1545.1, + "probability": 0.947265625 + } + ] + }, + { + "id": 887, + "text": "ripple is crazy fast", + "start": 1546.2200000000003, + "end": 1548.02, + "words": [ + { + "word": " ripple", + "start": 1546.2200000000003, + "end": 1546.8000000000002, + "probability": 0.52978515625 + }, + { + "word": " is", + "start": 1546.8000000000002, + "end": 1547.38, + "probability": 0.7822265625 + }, + { + "word": " crazy", + "start": 1547.38, + "end": 1547.62, + "probability": 1.0 + }, + { + "word": " fast", + "start": 1547.62, + "end": 1548.02, + "probability": 1.0 + } + ] + }, + { + "id": 888, + "text": "so how long does it take on average", + "start": 1548.02, + "end": 1550.58, + "words": [ + { + "word": " so", + "start": 1548.02, + "end": 1548.48, + "probability": 0.96435546875 + }, + { + "word": " how", + "start": 1548.48, + "end": 1549.66, + "probability": 0.9970703125 + }, + { + "word": " long", + "start": 1549.66, + "end": 1549.84, + "probability": 1.0 + }, + { + "word": " does", + "start": 1549.84, + "end": 1549.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 1549.96, + "end": 1550.04, + "probability": 1.0 + }, + { + "word": " take", + "start": 1550.04, + "end": 1550.2, + "probability": 1.0 + }, + { + "word": " on", + "start": 1550.2, + "end": 1550.36, + "probability": 0.9970703125 + }, + { + "word": " average", + "start": 1550.36, + "end": 1550.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 889, + "text": "for a transaction?", + "start": 1550.58, + "end": 1551.36, + "words": [ + { + "word": " for", + "start": 1550.58, + "end": 1550.86, + "probability": 0.9345703125 + }, + { + "word": " a", + "start": 1550.86, + "end": 1550.96, + "probability": 0.89501953125 + }, + { + "word": " transaction?", + "start": 1550.96, + "end": 1551.36, + "probability": 0.99658203125 + } + ] + }, + { + "id": 890, + "text": "bitcoin transactions can take hours", + "start": 1551.74, + "end": 1553.2, + "words": [ + { + "word": " bitcoin", + "start": 1551.74, + "end": 1551.96, + "probability": 0.93798828125 + }, + { + "word": " transactions", + "start": 1551.96, + "end": 1552.34, + "probability": 1.0 + }, + { + "word": " can", + "start": 1552.34, + "end": 1552.78, + "probability": 1.0 + }, + { + "word": " take", + "start": 1552.78, + "end": 1552.92, + "probability": 1.0 + }, + { + "word": " hours", + "start": 1552.92, + "end": 1553.2, + "probability": 1.0 + } + ] + }, + { + "id": 891, + "text": "depending on how many people", + "start": 1553.2, + "end": 1555.78, + "words": [ + { + "word": " depending", + "start": 1553.2, + "end": 1553.7, + "probability": 0.9873046875 + }, + { + "word": " on", + "start": 1553.7, + "end": 1554.02, + "probability": 1.0 + }, + { + "word": " how", + "start": 1554.02, + "end": 1555.02, + "probability": 1.0 + }, + { + "word": " many", + "start": 1555.02, + "end": 1555.5, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 1555.5, + "end": 1555.78, + "probability": 1.0 + } + ] + }, + { + "id": 892, + "text": "are trading things at the moment", + "start": 1555.78, + "end": 1556.96, + "words": [ + { + "word": " are", + "start": 1555.78, + "end": 1555.96, + "probability": 1.0 + }, + { + "word": " trading", + "start": 1555.96, + "end": 1556.16, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 1556.16, + "end": 1556.42, + "probability": 0.9970703125 + }, + { + "word": " at", + "start": 1556.42, + "end": 1556.66, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1556.66, + "end": 1556.7, + "probability": 1.0 + }, + { + "word": " moment", + "start": 1556.7, + "end": 1556.96, + "probability": 1.0 + } + ] + }, + { + "id": 893, + "text": "litecoin transactions", + "start": 1557.5800000000002, + "end": 1558.44, + "words": [ + { + "word": " litecoin", + "start": 1557.5800000000002, + "end": 1558.16, + "probability": 0.90185546875 + }, + { + "word": " transactions", + "start": 1558.16, + "end": 1558.44, + "probability": 0.9775390625 + } + ] + }, + { + "id": 894, + "text": "tend to take like 10 minutes from my experience", + "start": 1558.52, + "end": 1560.5, + "words": [ + { + "word": " tend", + "start": 1558.52, + "end": 1558.68, + "probability": 0.0001938343048095703 + }, + { + "word": " to", + "start": 1558.68, + "end": 1559.0, + "probability": 1.0 + }, + { + "word": " take", + "start": 1559.0, + "end": 1559.18, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1559.18, + "end": 1559.34, + "probability": 0.79248046875 + }, + { + "word": " 10", + "start": 1559.34, + "end": 1559.58, + "probability": 0.8818359375 + }, + { + "word": " minutes", + "start": 1559.58, + "end": 1559.8, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1559.8, + "end": 1560.0, + "probability": 0.865234375 + }, + { + "word": " my", + "start": 1560.0, + "end": 1560.12, + "probability": 0.99951171875 + }, + { + "word": " experience", + "start": 1560.12, + "end": 1560.5, + "probability": 1.0 + } + ] + }, + { + "id": 895, + "text": "and ripple is like instant", + "start": 1560.5, + "end": 1562.24, + "words": [ + { + "word": " and", + "start": 1560.5, + "end": 1561.1, + "probability": 0.450439453125 + }, + { + "word": " ripple", + "start": 1561.1, + "end": 1561.4, + "probability": 0.376220703125 + }, + { + "word": " is", + "start": 1561.4, + "end": 1561.62, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 1561.62, + "end": 1561.78, + "probability": 0.99755859375 + }, + { + "word": " instant", + "start": 1561.78, + "end": 1562.24, + "probability": 0.99365234375 + } + ] + }, + { + "id": 896, + "text": "hmm", + "start": 1562.24, + "end": 1562.84, + "words": [ + { + "word": " hmm", + "start": 1562.24, + "end": 1562.84, + "probability": 0.1431884765625 + } + ] + }, + { + "id": 897, + "text": "alright then", + "start": 1562.84, + "end": 1563.72, + "words": [ + { + "word": " alright", + "start": 1562.84, + "end": 1563.4, + "probability": 0.038421630859375 + }, + { + "word": " then", + "start": 1563.4, + "end": 1563.72, + "probability": 0.99365234375 + } + ] + }, + { + "id": 898, + "text": "I've done zero", + "start": 1563.72, + "end": 1565.16, + "words": [ + { + "word": " I've", + "start": 1563.72, + "end": 1564.48, + "probability": 0.771484375 + }, + { + "word": " done", + "start": 1564.48, + "end": 1564.68, + "probability": 0.99951171875 + }, + { + "word": " zero", + "start": 1564.68, + "end": 1565.16, + "probability": 0.95458984375 + } + ] + }, + { + "id": 899, + "text": "ripple or litecoin", + "start": 1566.12, + "end": 1567.38, + "words": [ + { + "word": " ripple", + "start": 1566.12, + "end": 1566.52, + "probability": 0.96875 + }, + { + "word": " or", + "start": 1566.52, + "end": 1566.92, + "probability": 0.7470703125 + }, + { + "word": " litecoin", + "start": 1566.92, + "end": 1567.38, + "probability": 0.9111328125 + } + ] + }, + { + "id": 900, + "text": "well bitcoin was", + "start": 1567.38, + "end": 1568.3, + "words": [ + { + "word": " well", + "start": 1567.38, + "end": 1567.66, + "probability": 0.99072265625 + }, + { + "word": " bitcoin", + "start": 1567.66, + "end": 1568.0, + "probability": 0.88232421875 + }, + { + "word": " was", + "start": 1568.0, + "end": 1568.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 901, + "text": "you know it was the", + "start": 1568.3, + "end": 1569.16, + "words": [ + { + "word": " you", + "start": 1568.3, + "end": 1568.56, + "probability": 0.98681640625 + }, + { + "word": " know", + "start": 1568.56, + "end": 1568.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 1568.68, + "end": 1568.88, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 1568.88, + "end": 1568.98, + "probability": 0.81982421875 + }, + { + "word": " the", + "start": 1568.98, + "end": 1569.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 902, + "text": "it's the OG", + "start": 1569.16, + "end": 1569.74, + "words": [ + { + "word": " it's", + "start": 1569.16, + "end": 1569.44, + "probability": 0.8701171875 + }, + { + "word": " the", + "start": 1569.44, + "end": 1569.54, + "probability": 1.0 + }, + { + "word": " OG", + "start": 1569.54, + "end": 1569.74, + "probability": 0.84130859375 + } + ] + }, + { + "id": 903, + "text": "it was the model that everything else is based on", + "start": 1569.74, + "end": 1571.94, + "words": [ + { + "word": " it", + "start": 1569.74, + "end": 1570.06, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 1570.06, + "end": 1570.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1570.32, + "end": 1570.44, + "probability": 1.0 + }, + { + "word": " model", + "start": 1570.44, + "end": 1570.72, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1570.72, + "end": 1570.96, + "probability": 0.9990234375 + }, + { + "word": " everything", + "start": 1570.96, + "end": 1571.16, + "probability": 0.99951171875 + }, + { + "word": " else", + "start": 1571.16, + "end": 1571.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 1571.42, + "end": 1571.56, + "probability": 0.9931640625 + }, + { + "word": " based", + "start": 1571.56, + "end": 1571.76, + "probability": 1.0 + }, + { + "word": " on", + "start": 1571.76, + "end": 1571.94, + "probability": 1.0 + } + ] + }, + { + "id": 904, + "text": "but they've improved on it since then", + "start": 1571.94, + "end": 1573.26, + "words": [ + { + "word": " but", + "start": 1571.94, + "end": 1572.08, + "probability": 0.9990234375 + }, + { + "word": " they've", + "start": 1572.08, + "end": 1572.26, + "probability": 1.0 + }, + { + "word": " improved", + "start": 1572.26, + "end": 1572.5, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 1572.5, + "end": 1572.74, + "probability": 1.0 + }, + { + "word": " it", + "start": 1572.74, + "end": 1572.84, + "probability": 1.0 + }, + { + "word": " since", + "start": 1572.84, + "end": 1573.02, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1573.02, + "end": 1573.26, + "probability": 1.0 + } + ] + }, + { + "id": 905, + "text": "so you gotta look at some of these smaller", + "start": 1573.26, + "end": 1575.32, + "words": [ + { + "word": " so", + "start": 1573.26, + "end": 1574.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1574.0, + "end": 1574.3, + "probability": 1.0 + }, + { + "word": " gotta", + "start": 1574.3, + "end": 1574.42, + "probability": 0.71435546875 + }, + { + "word": " look", + "start": 1574.42, + "end": 1574.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 1574.54, + "end": 1574.68, + "probability": 1.0 + }, + { + "word": " some", + "start": 1574.68, + "end": 1574.82, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1574.82, + "end": 1574.9, + "probability": 1.0 + }, + { + "word": " these", + "start": 1574.9, + "end": 1575.0, + "probability": 0.99951171875 + }, + { + "word": " smaller", + "start": 1575.0, + "end": 1575.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 906, + "text": "newer coins if you want to", + "start": 1575.32, + "end": 1576.62, + "words": [ + { + "word": " newer", + "start": 1575.32, + "end": 1575.64, + "probability": 0.9990234375 + }, + { + "word": " coins", + "start": 1575.64, + "end": 1576.0, + "probability": 1.0 + }, + { + "word": " if", + "start": 1576.0, + "end": 1576.28, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1576.28, + "end": 1576.36, + "probability": 1.0 + }, + { + "word": " want", + "start": 1576.36, + "end": 1576.5, + "probability": 0.2392578125 + }, + { + "word": " to", + "start": 1576.5, + "end": 1576.62, + "probability": 1.0 + } + ] + }, + { + "id": 907, + "text": "see the upcoming technology", + "start": 1576.62, + "end": 1577.94, + "words": [ + { + "word": " see", + "start": 1576.62, + "end": 1577.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1577.1, + "end": 1577.24, + "probability": 1.0 + }, + { + "word": " upcoming", + "start": 1577.24, + "end": 1577.46, + "probability": 0.9990234375 + }, + { + "word": " technology", + "start": 1577.46, + "end": 1577.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 908, + "text": "yeah", + "start": 1578.4199999999998, + "end": 1578.82, + "words": [ + { + "word": " yeah", + "start": 1578.4199999999998, + "end": 1578.82, + "probability": 0.9853515625 + } + ] + }, + { + "id": 909, + "text": "wow we got popular all of a sudden", + "start": 1578.82, + "end": 1580.32, + "words": [ + { + "word": " wow", + "start": 1578.82, + "end": 1579.14, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 1579.14, + "end": 1579.34, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 1579.34, + "end": 1579.46, + "probability": 1.0 + }, + { + "word": " popular", + "start": 1579.46, + "end": 1579.8, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1579.8, + "end": 1580.02, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1580.02, + "end": 1580.14, + "probability": 0.986328125 + }, + { + "word": " a", + "start": 1580.14, + "end": 1580.16, + "probability": 0.99853515625 + }, + { + "word": " sudden", + "start": 1580.16, + "end": 1580.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 910, + "text": "yeah I don't know what you did", + "start": 1580.32, + "end": 1581.6, + "words": [ + { + "word": " yeah", + "start": 1580.32, + "end": 1580.66, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 1580.66, + "end": 1580.88, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 1580.88, + "end": 1581.08, + "probability": 1.0 + }, + { + "word": " know", + "start": 1581.08, + "end": 1581.16, + "probability": 1.0 + }, + { + "word": " what", + "start": 1581.16, + "end": 1581.28, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1581.28, + "end": 1581.42, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 1581.42, + "end": 1581.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 911, + "text": "but", + "start": 1581.6, + "end": 1582.02, + "words": [ + { + "word": " but", + "start": 1581.6, + "end": 1582.02, + "probability": 0.98291015625 + } + ] + }, + { + "id": 912, + "text": "anyway", + "start": 1582.02, + "end": 1582.7, + "words": [ + { + "word": " anyway", + "start": 1582.02, + "end": 1582.7, + "probability": 0.9814453125 + } + ] + }, + { + "id": 913, + "text": "maybe I actually said the phone number slow enough this time", + "start": 1582.7, + "end": 1585.16, + "words": [ + { + "word": " maybe", + "start": 1582.7, + "end": 1583.42, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1583.42, + "end": 1583.58, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 1583.58, + "end": 1583.78, + "probability": 0.9990234375 + }, + { + "word": " said", + "start": 1583.78, + "end": 1584.0, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1584.0, + "end": 1584.12, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 1584.12, + "end": 1584.26, + "probability": 0.9990234375 + }, + { + "word": " number", + "start": 1584.26, + "end": 1584.44, + "probability": 0.99951171875 + }, + { + "word": " slow", + "start": 1584.44, + "end": 1584.64, + "probability": 0.98876953125 + }, + { + "word": " enough", + "start": 1584.64, + "end": 1584.84, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1584.84, + "end": 1585.04, + "probability": 0.98193359375 + }, + { + "word": " time", + "start": 1585.04, + "end": 1585.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 914, + "text": "or I said something that just offended everyone", + "start": 1585.16, + "end": 1587.0, + "words": [ + { + "word": " or", + "start": 1585.16, + "end": 1585.26, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 1585.26, + "end": 1585.4, + "probability": 1.0 + }, + { + "word": " said", + "start": 1585.4, + "end": 1585.58, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1585.58, + "end": 1585.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1585.8, + "end": 1586.08, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1586.08, + "end": 1586.26, + "probability": 0.99853515625 + }, + { + "word": " offended", + "start": 1586.26, + "end": 1586.6, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 1586.6, + "end": 1587.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 915, + "text": "just now", + "start": 1587.0, + "end": 1587.36, + "words": [ + { + "word": " just", + "start": 1587.0, + "end": 1587.26, + "probability": 0.716796875 + }, + { + "word": " now", + "start": 1587.26, + "end": 1587.36, + "probability": 0.99072265625 + } + ] + }, + { + "id": 916, + "text": "everyone's mad at you", + "start": 1587.36, + "end": 1588.26, + "words": [ + { + "word": " everyone's", + "start": 1587.36, + "end": 1587.76, + "probability": 0.90234375 + }, + { + "word": " mad", + "start": 1587.76, + "end": 1587.94, + "probability": 0.998046875 + }, + { + "word": " at", + "start": 1587.94, + "end": 1588.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 1588.14, + "end": 1588.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 917, + "text": "or something like that", + "start": 1588.26, + "end": 1588.48, + "words": [ + { + "word": " or", + "start": 1588.26, + "end": 1588.38, + "probability": 0.599609375 + }, + { + "word": " something", + "start": 1588.38, + "end": 1588.44, + "probability": 0.64794921875 + }, + { + "word": " like", + "start": 1588.44, + "end": 1588.48, + "probability": 0.408935546875 + }, + { + "word": " that", + "start": 1588.48, + "end": 1588.48, + "probability": 0.99755859375 + } + ] + }, + { + "id": 918, + "text": "I can't believe you said bitcoin is slow", + "start": 1588.52, + "end": 1590.32, + "words": [ + { + "word": " I", + "start": 1588.52, + "end": 1588.52, + "probability": 0.93115234375 + }, + { + "word": " can't", + "start": 1588.52, + "end": 1588.8, + "probability": 0.99951171875 + }, + { + "word": " believe", + "start": 1588.8, + "end": 1589.08, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1589.08, + "end": 1589.44, + "probability": 1.0 + }, + { + "word": " said", + "start": 1589.44, + "end": 1589.66, + "probability": 1.0 + }, + { + "word": " bitcoin", + "start": 1589.66, + "end": 1589.9, + "probability": 0.0195465087890625 + }, + { + "word": " is", + "start": 1589.9, + "end": 1590.12, + "probability": 0.99951171875 + }, + { + "word": " slow", + "start": 1590.12, + "end": 1590.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 919, + "text": "kfc what?", + "start": 1592.08, + "end": 1593.12, + "words": [ + { + "word": " kfc", + "start": 1592.08, + "end": 1592.6, + "probability": 0.66357421875 + }, + { + "word": " what?", + "start": 1592.6, + "end": 1593.12, + "probability": 0.9208984375 + } + ] + }, + { + "id": 920, + "text": "yeah anyway that was the point of that", + "start": 1593.62, + "end": 1595.1, + "words": [ + { + "word": " yeah", + "start": 1593.62, + "end": 1594.14, + "probability": 0.71044921875 + }, + { + "word": " anyway", + "start": 1594.14, + "end": 1594.32, + "probability": 0.86279296875 + }, + { + "word": " that", + "start": 1594.32, + "end": 1594.52, + "probability": 0.97412109375 + }, + { + "word": " was", + "start": 1594.52, + "end": 1594.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 1594.64, + "end": 1594.76, + "probability": 0.99951171875 + }, + { + "word": " point", + "start": 1594.76, + "end": 1594.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1594.9, + "end": 1595.0, + "probability": 0.990234375 + }, + { + "word": " that", + "start": 1595.0, + "end": 1595.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 921, + "text": "was that kfc in Canada is accepting bitcoin now", + "start": 1595.1, + "end": 1597.34, + "words": [ + { + "word": " was", + "start": 1595.1, + "end": 1595.24, + "probability": 0.94677734375 + }, + { + "word": " that", + "start": 1595.24, + "end": 1595.34, + "probability": 0.9951171875 + }, + { + "word": " kfc", + "start": 1595.34, + "end": 1595.78, + "probability": 0.9658203125 + }, + { + "word": " in", + "start": 1595.78, + "end": 1595.88, + "probability": 0.966796875 + }, + { + "word": " Canada", + "start": 1595.88, + "end": 1596.14, + "probability": 0.70166015625 + }, + { + "word": " is", + "start": 1596.14, + "end": 1596.44, + "probability": 0.99951171875 + }, + { + "word": " accepting", + "start": 1596.44, + "end": 1596.72, + "probability": 1.0 + }, + { + "word": " bitcoin", + "start": 1596.72, + "end": 1597.04, + "probability": 0.99462890625 + }, + { + "word": " now", + "start": 1597.04, + "end": 1597.34, + "probability": 0.99853515625 + } + ] + }, + { + "id": 922, + "text": "yeah and we've been working on", + "start": 1597.34, + "end": 1599.34, + "words": [ + { + "word": " yeah", + "start": 1597.34, + "end": 1597.92, + "probability": 0.93994140625 + }, + { + "word": " and", + "start": 1597.92, + "end": 1598.18, + "probability": 0.62255859375 + }, + { + "word": " we've", + "start": 1598.18, + "end": 1598.72, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 1598.72, + "end": 1598.84, + "probability": 1.0 + }, + { + "word": " working", + "start": 1598.84, + "end": 1599.04, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1599.04, + "end": 1599.34, + "probability": 1.0 + } + ] + }, + { + "id": 923, + "text": "ways to potentially do that", + "start": 1599.34, + "end": 1601.66, + "words": [ + { + "word": " ways", + "start": 1599.34, + "end": 1600.12, + "probability": 0.87158203125 + }, + { + "word": " to", + "start": 1600.12, + "end": 1600.46, + "probability": 1.0 + }, + { + "word": " potentially", + "start": 1600.46, + "end": 1601.08, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 1601.08, + "end": 1601.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 1601.44, + "end": 1601.66, + "probability": 1.0 + } + ] + }, + { + "id": 924, + "text": "but it seems to confuse", + "start": 1601.66, + "end": 1603.62, + "words": [ + { + "word": " but", + "start": 1601.66, + "end": 1601.92, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 1601.92, + "end": 1602.68, + "probability": 0.97119140625 + }, + { + "word": " seems", + "start": 1602.68, + "end": 1603.1, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1603.1, + "end": 1603.32, + "probability": 1.0 + }, + { + "word": " confuse", + "start": 1603.32, + "end": 1603.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 925, + "text": "anyone who's an accountant altogether", + "start": 1603.62, + "end": 1605.48, + "words": [ + { + "word": " anyone", + "start": 1603.62, + "end": 1604.1, + "probability": 0.99951171875 + }, + { + "word": " who's", + "start": 1604.1, + "end": 1604.52, + "probability": 0.9970703125 + }, + { + "word": " an", + "start": 1604.52, + "end": 1604.6, + "probability": 0.99951171875 + }, + { + "word": " accountant", + "start": 1604.6, + "end": 1604.9, + "probability": 0.998046875 + }, + { + "word": " altogether", + "start": 1604.9, + "end": 1605.48, + "probability": 0.701171875 + } + ] + }, + { + "id": 926, + "text": "yeah the biggest", + "start": 1606.06, + "end": 1607.02, + "words": [ + { + "word": " yeah", + "start": 1606.06, + "end": 1606.58, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 1606.58, + "end": 1606.8, + "probability": 0.99853515625 + }, + { + "word": " biggest", + "start": 1606.8, + "end": 1607.02, + "probability": 1.0 + } + ] + }, + { + "id": 927, + "text": "hang up with bitcoin right now is that", + "start": 1607.02, + "end": 1608.88, + "words": [ + { + "word": " hang", + "start": 1607.02, + "end": 1607.58, + "probability": 0.61962890625 + }, + { + "word": " up", + "start": 1607.58, + "end": 1607.76, + "probability": 0.9853515625 + }, + { + "word": " with", + "start": 1607.76, + "end": 1607.9, + "probability": 0.99951171875 + }, + { + "word": " bitcoin", + "start": 1607.9, + "end": 1608.12, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 1608.12, + "end": 1608.34, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 1608.34, + "end": 1608.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 1608.52, + "end": 1608.7, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1608.7, + "end": 1608.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 928, + "text": "none of the people who are in a position", + "start": 1608.88, + "end": 1611.46, + "words": [ + { + "word": " none", + "start": 1608.88, + "end": 1609.58, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1609.58, + "end": 1609.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1609.68, + "end": 1609.8, + "probability": 1.0 + }, + { + "word": " people", + "start": 1609.8, + "end": 1610.0, + "probability": 1.0 + }, + { + "word": " who", + "start": 1610.0, + "end": 1610.2, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 1610.2, + "end": 1610.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 1610.28, + "end": 1610.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 1610.52, + "end": 1611.14, + "probability": 1.0 + }, + { + "word": " position", + "start": 1611.14, + "end": 1611.46, + "probability": 1.0 + } + ] + }, + { + "id": 929, + "text": "to like make this happen", + "start": 1611.46, + "end": 1613.12, + "words": [ + { + "word": " to", + "start": 1611.46, + "end": 1611.86, + "probability": 1.0 + }, + { + "word": " like", + "start": 1611.86, + "end": 1612.36, + "probability": 0.55419921875 + }, + { + "word": " make", + "start": 1612.36, + "end": 1612.7, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 1612.7, + "end": 1612.86, + "probability": 1.0 + }, + { + "word": " happen", + "start": 1612.86, + "end": 1613.12, + "probability": 1.0 + } + ] + }, + { + "id": 930, + "text": "understand it", + "start": 1613.12, + "end": 1613.96, + "words": [ + { + "word": " understand", + "start": 1613.12, + "end": 1613.54, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1613.54, + "end": 1613.96, + "probability": 1.0 + } + ] + }, + { + "id": 931, + "text": "right", + "start": 1613.96, + "end": 1614.66, + "words": [ + { + "word": " right", + "start": 1613.96, + "end": 1614.66, + "probability": 0.97509765625 + } + ] + }, + { + "id": 932, + "text": "unfortunately", + "start": 1615.26, + "end": 1615.78, + "words": [ + { + "word": " unfortunately", + "start": 1615.26, + "end": 1615.78, + "probability": 0.77294921875 + } + ] + }, + { + "id": 933, + "text": "it's not that hard of a concept either", + "start": 1615.78, + "end": 1617.56, + "words": [ + { + "word": " it's", + "start": 1615.78, + "end": 1616.26, + "probability": 0.88232421875 + }, + { + "word": " not", + "start": 1616.26, + "end": 1616.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 1616.42, + "end": 1616.6, + "probability": 1.0 + }, + { + "word": " hard", + "start": 1616.6, + "end": 1616.78, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1616.78, + "end": 1616.9, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1616.9, + "end": 1616.96, + "probability": 1.0 + }, + { + "word": " concept", + "start": 1616.96, + "end": 1617.24, + "probability": 0.99951171875 + }, + { + "word": " either", + "start": 1617.24, + "end": 1617.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 934, + "text": "yeah and we have this", + "start": 1617.56, + "end": 1618.36, + "words": [ + { + "word": " yeah", + "start": 1617.56, + "end": 1617.94, + "probability": 0.99560546875 + }, + { + "word": " and", + "start": 1617.94, + "end": 1617.98, + "probability": 0.334228515625 + }, + { + "word": " we", + "start": 1617.98, + "end": 1618.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 1618.06, + "end": 1618.18, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 1618.18, + "end": 1618.36, + "probability": 0.9775390625 + } + ] + }, + { + "id": 935, + "text": "this is sort of weird contract going with our", + "start": 1618.36, + "end": 1620.44, + "words": [ + { + "word": " this", + "start": 1618.36, + "end": 1618.44, + "probability": 0.2108154296875 + }, + { + "word": " is", + "start": 1618.44, + "end": 1618.62, + "probability": 0.68505859375 + }, + { + "word": " sort", + "start": 1618.62, + "end": 1618.86, + "probability": 0.8515625 + }, + { + "word": " of", + "start": 1618.86, + "end": 1618.96, + "probability": 1.0 + }, + { + "word": " weird", + "start": 1618.96, + "end": 1619.2, + "probability": 0.98974609375 + }, + { + "word": " contract", + "start": 1619.2, + "end": 1619.66, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 1619.66, + "end": 1619.92, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1619.92, + "end": 1620.18, + "probability": 0.99951171875 + }, + { + "word": " our", + "start": 1620.18, + "end": 1620.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 936, + "text": "payment provider", + "start": 1620.44, + "end": 1621.62, + "words": [ + { + "word": " payment", + "start": 1620.44, + "end": 1621.32, + "probability": 0.77783203125 + }, + { + "word": " provider", + "start": 1621.32, + "end": 1621.62, + "probability": 1.0 + } + ] + }, + { + "id": 937, + "text": "and", + "start": 1622.1399999999999, + "end": 1622.62, + "words": [ + { + "word": " and", + "start": 1622.1399999999999, + "end": 1622.62, + "probability": 0.2783203125 + } + ] + }, + { + "id": 938, + "text": "it's like I can't use another payment provider", + "start": 1623.66, + "end": 1626.24, + "words": [ + { + "word": " it's", + "start": 1623.66, + "end": 1624.14, + "probability": 0.943359375 + }, + { + "word": " like", + "start": 1624.14, + "end": 1624.24, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1624.24, + "end": 1624.4, + "probability": 0.70556640625 + }, + { + "word": " can't", + "start": 1624.4, + "end": 1624.7, + "probability": 1.0 + }, + { + "word": " use", + "start": 1624.7, + "end": 1624.92, + "probability": 0.99951171875 + }, + { + "word": " another", + "start": 1624.92, + "end": 1625.3, + "probability": 0.9990234375 + }, + { + "word": " payment", + "start": 1625.3, + "end": 1625.74, + "probability": 0.99951171875 + }, + { + "word": " provider", + "start": 1625.74, + "end": 1626.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 939, + "text": "in conjunction", + "start": 1627.3, + "end": 1628.06, + "words": [ + { + "word": " in", + "start": 1627.3, + "end": 1627.78, + "probability": 0.56201171875 + }, + { + "word": " conjunction", + "start": 1627.78, + "end": 1628.06, + "probability": 0.1173095703125 + } + ] + }, + { + "id": 940, + "text": "would they consider bitcoin to be a payment provider?", + "start": 1628.06, + "end": 1630.16, + "words": [ + { + "word": " would", + "start": 1628.06, + "end": 1628.06, + "probability": 0.08050537109375 + }, + { + "word": " they", + "start": 1628.06, + "end": 1628.16, + "probability": 0.99853515625 + }, + { + "word": " consider", + "start": 1628.16, + "end": 1628.38, + "probability": 0.99951171875 + }, + { + "word": " bitcoin", + "start": 1628.38, + "end": 1629.1, + "probability": 0.404052734375 + }, + { + "word": " to", + "start": 1629.1, + "end": 1629.4, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1629.4, + "end": 1629.52, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1629.52, + "end": 1629.6, + "probability": 0.99951171875 + }, + { + "word": " payment", + "start": 1629.6, + "end": 1629.84, + "probability": 1.0 + }, + { + "word": " provider?", + "start": 1629.84, + "end": 1630.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 941, + "text": "yes", + "start": 1630.42, + "end": 1630.78, + "words": [ + { + "word": " yes", + "start": 1630.42, + "end": 1630.78, + "probability": 0.88525390625 + } + ] + }, + { + "id": 942, + "text": "that's ridiculous", + "start": 1630.78, + "end": 1631.82, + "words": [ + { + "word": " that's", + "start": 1630.78, + "end": 1631.48, + "probability": 0.8779296875 + }, + { + "word": " ridiculous", + "start": 1631.48, + "end": 1631.82, + "probability": 0.97900390625 + } + ] + }, + { + "id": 943, + "text": "yeah", + "start": 1631.82, + "end": 1632.14, + "words": [ + { + "word": " yeah", + "start": 1631.82, + "end": 1632.14, + "probability": 0.281982421875 + } + ] + }, + { + "id": 944, + "text": "and that's one of the things I've been working with", + "start": 1632.14, + "end": 1634.32, + "words": [ + { + "word": " and", + "start": 1632.14, + "end": 1632.42, + "probability": 0.98583984375 + }, + { + "word": " that's", + "start": 1632.42, + "end": 1632.9, + "probability": 1.0 + }, + { + "word": " one", + "start": 1632.9, + "end": 1633.16, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1633.16, + "end": 1633.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1633.34, + "end": 1633.42, + "probability": 1.0 + }, + { + "word": " things", + "start": 1633.42, + "end": 1633.6, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 1633.6, + "end": 1633.78, + "probability": 0.998046875 + }, + { + "word": " been", + "start": 1633.78, + "end": 1633.88, + "probability": 1.0 + }, + { + "word": " working", + "start": 1633.88, + "end": 1634.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 1634.1, + "end": 1634.32, + "probability": 1.0 + } + ] + }, + { + "id": 945, + "text": "is talking them out of that", + "start": 1634.32, + "end": 1635.5, + "words": [ + { + "word": " is", + "start": 1634.32, + "end": 1634.58, + "probability": 0.9990234375 + }, + { + "word": " talking", + "start": 1634.58, + "end": 1634.8, + "probability": 0.9990234375 + }, + { + "word": " them", + "start": 1634.8, + "end": 1635.04, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 1635.04, + "end": 1635.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1635.22, + "end": 1635.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 1635.32, + "end": 1635.5, + "probability": 1.0 + } + ] + }, + { + "id": 946, + "text": "do they consider trade a payment provider?", + "start": 1635.5, + "end": 1637.3, + "words": [ + { + "word": " do", + "start": 1635.5, + "end": 1635.7, + "probability": 0.9931640625 + }, + { + "word": " they", + "start": 1635.7, + "end": 1635.82, + "probability": 1.0 + }, + { + "word": " consider", + "start": 1635.82, + "end": 1636.04, + "probability": 1.0 + }, + { + "word": " trade", + "start": 1636.04, + "end": 1636.48, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1636.48, + "end": 1636.76, + "probability": 0.9990234375 + }, + { + "word": " payment", + "start": 1636.76, + "end": 1637.02, + "probability": 1.0 + }, + { + "word": " provider?", + "start": 1637.02, + "end": 1637.3, + "probability": 1.0 + } + ] + }, + { + "id": 947, + "text": "because that's like the same thing", + "start": 1637.52, + "end": 1638.56, + "words": [ + { + "word": " because", + "start": 1637.52, + "end": 1637.66, + "probability": 0.94873046875 + }, + { + "word": " that's", + "start": 1637.66, + "end": 1637.82, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1637.82, + "end": 1637.92, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1637.92, + "end": 1638.02, + "probability": 0.99951171875 + }, + { + "word": " same", + "start": 1638.02, + "end": 1638.2, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1638.2, + "end": 1638.56, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "yeah", + "start": 1638.56, + "end": 1639.1, + "words": [ + { + "word": " yeah", + "start": 1638.56, + "end": 1639.1, + "probability": 0.7685546875 + } + ] + }, + { + "id": 949, + "text": "no they don't", + "start": 1639.1, + "end": 1640.0, + "words": [ + { + "word": " no", + "start": 1639.1, + "end": 1639.46, + "probability": 0.99072265625 + }, + { + "word": " they", + "start": 1639.46, + "end": 1639.66, + "probability": 0.98828125 + }, + { + "word": " don't", + "start": 1639.66, + "end": 1640.0, + "probability": 1.0 + } + ] + }, + { + "id": 950, + "text": "bartering", + "start": 1640.0, + "end": 1640.6, + "words": [ + { + "word": " bartering", + "start": 1640.0, + "end": 1640.6, + "probability": 0.89013671875 + } + ] + }, + { + "id": 951, + "text": "yeah", + "start": 1640.6, + "end": 1640.94, + "words": [ + { + "word": " yeah", + "start": 1640.6, + "end": 1640.94, + "probability": 0.78271484375 + } + ] + }, + { + "id": 952, + "text": "I mean yeah we're gonna", + "start": 1640.94, + "end": 1642.46, + "words": [ + { + "word": " I", + "start": 1640.94, + "end": 1641.64, + "probability": 0.95068359375 + }, + { + "word": " mean", + "start": 1641.64, + "end": 1641.86, + "probability": 1.0 + }, + { + "word": " yeah", + "start": 1641.86, + "end": 1642.08, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 1642.08, + "end": 1642.28, + "probability": 0.9990234375 + }, + { + "word": " gonna", + "start": 1642.28, + "end": 1642.46, + "probability": 0.5927734375 + } + ] + }, + { + "id": 953, + "text": "we're gonna work on that", + "start": 1642.46, + "end": 1643.4, + "words": [ + { + "word": " we're", + "start": 1642.46, + "end": 1642.9, + "probability": 0.8896484375 + }, + { + "word": " gonna", + "start": 1642.9, + "end": 1643.02, + "probability": 0.998046875 + }, + { + "word": " work", + "start": 1643.02, + "end": 1643.16, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1643.16, + "end": 1643.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 1643.28, + "end": 1643.4, + "probability": 1.0 + } + ] + }, + { + "id": 954, + "text": "because I'd really like to see", + "start": 1643.4, + "end": 1644.52, + "words": [ + { + "word": " because", + "start": 1643.4, + "end": 1643.56, + "probability": 0.99755859375 + }, + { + "word": " I'd", + "start": 1643.56, + "end": 1643.7, + "probability": 1.0 + }, + { + "word": " really", + "start": 1643.7, + "end": 1643.84, + "probability": 1.0 + }, + { + "word": " like", + "start": 1643.84, + "end": 1644.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 1644.08, + "end": 1644.28, + "probability": 1.0 + }, + { + "word": " see", + "start": 1644.28, + "end": 1644.52, + "probability": 1.0 + } + ] + }, + { + "id": 955, + "text": "a cryptocurrency", + "start": 1644.52, + "end": 1645.32, + "words": [ + { + "word": " a", + "start": 1644.52, + "end": 1644.78, + "probability": 0.84912109375 + }, + { + "word": " cryptocurrency", + "start": 1644.78, + "end": 1645.32, + "probability": 0.9970703125 + } + ] + }, + { + "id": 956, + "text": "ability to pay", + "start": 1646.08, + "end": 1646.96, + "words": [ + { + "word": " ability", + "start": 1646.08, + "end": 1646.56, + "probability": 0.9853515625 + }, + { + "word": " to", + "start": 1646.56, + "end": 1646.8, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1646.8, + "end": 1646.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 957, + "text": "at computer guru", + "start": 1646.96, + "end": 1647.92, + "words": [ + { + "word": " at", + "start": 1646.96, + "end": 1647.2, + "probability": 0.99755859375 + }, + { + "word": " computer", + "start": 1647.2, + "end": 1647.66, + "probability": 0.59912109375 + }, + { + "word": " guru", + "start": 1647.66, + "end": 1647.92, + "probability": 0.97802734375 + } + ] + }, + { + "id": 958, + "text": "yeah", + "start": 1647.92, + "end": 1648.26, + "words": [ + { + "word": " yeah", + "start": 1647.92, + "end": 1648.26, + "probability": 0.265869140625 + } + ] + }, + { + "id": 959, + "text": "yeah", + "start": 1648.26, + "end": 1648.34, + "words": [ + { + "word": " yeah", + "start": 1648.26, + "end": 1648.34, + "probability": 0.34912109375 + } + ] + }, + { + "id": 960, + "text": "!", + "start": 1648.36, + "end": 1648.52, + "words": [ + { + "word": "!", + "start": 1648.36, + "end": 1648.52, + "probability": 5.960464477539063e-08 + } + ] + }, + { + "id": 961, + "text": "me too", + "start": 1648.52, + "end": 1648.96, + "words": [ + { + "word": " me", + "start": 1648.52, + "end": 1648.66, + "probability": 0.0207061767578125 + }, + { + "word": " too", + "start": 1648.66, + "end": 1648.96, + "probability": 0.96240234375 + } + ] + }, + { + "id": 962, + "text": "and as everyone should", + "start": 1648.96, + "end": 1651.26, + "words": [ + { + "word": " and", + "start": 1648.96, + "end": 1649.84, + "probability": 0.2298583984375 + }, + { + "word": " as", + "start": 1649.84, + "end": 1650.56, + "probability": 0.50927734375 + }, + { + "word": " everyone", + "start": 1650.56, + "end": 1650.94, + "probability": 0.9921875 + }, + { + "word": " should", + "start": 1650.94, + "end": 1651.26, + "probability": 0.9931640625 + } + ] + }, + { + "id": 963, + "text": "should want", + "start": 1651.26, + "end": 1651.82, + "words": [ + { + "word": " should", + "start": 1651.26, + "end": 1651.56, + "probability": 0.395751953125 + }, + { + "word": " want", + "start": 1651.56, + "end": 1651.82, + "probability": 0.93115234375 + } + ] + }, + { + "id": 964, + "text": "right", + "start": 1651.82, + "end": 1652.36, + "words": [ + { + "word": " right", + "start": 1651.82, + "end": 1652.36, + "probability": 0.38232421875 + } + ] + }, + { + "id": 965, + "text": "because that would be interesting", + "start": 1652.36, + "end": 1653.56, + "words": [ + { + "word": " because", + "start": 1652.36, + "end": 1652.64, + "probability": 0.91748046875 + }, + { + "word": " that", + "start": 1652.64, + "end": 1652.82, + "probability": 0.99853515625 + }, + { + "word": " would", + "start": 1652.82, + "end": 1652.96, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1652.96, + "end": 1653.1, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 1653.1, + "end": 1653.56, + "probability": 0.9970703125 + } + ] + }, + { + "id": 966, + "text": "I don't know", + "start": 1654.1399999999999, + "end": 1654.84, + "words": [ + { + "word": " I", + "start": 1654.1399999999999, + "end": 1654.58, + "probability": 0.198974609375 + }, + { + "word": " don't", + "start": 1654.58, + "end": 1654.76, + "probability": 0.9833984375 + }, + { + "word": " know", + "start": 1654.76, + "end": 1654.84, + "probability": 0.99560546875 + } + ] + }, + { + "id": 967, + "text": "I'm half doing it", + "start": 1654.84, + "end": 1656.3, + "words": [ + { + "word": " I'm", + "start": 1654.84, + "end": 1655.36, + "probability": 0.8125 + }, + { + "word": " half", + "start": 1655.36, + "end": 1655.78, + "probability": 0.99072265625 + }, + { + "word": " doing", + "start": 1655.78, + "end": 1656.06, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1656.06, + "end": 1656.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 968, + "text": "just because of curiosity", + "start": 1656.3, + "end": 1657.22, + "words": [ + { + "word": " just", + "start": 1656.3, + "end": 1656.44, + "probability": 0.998046875 + }, + { + "word": " because", + "start": 1656.44, + "end": 1656.66, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1656.66, + "end": 1656.88, + "probability": 0.99853515625 + }, + { + "word": " curiosity", + "start": 1656.88, + "end": 1657.22, + "probability": 0.99462890625 + } + ] + }, + { + "id": 969, + "text": "yeah and I mean with", + "start": 1657.74, + "end": 1658.7, + "words": [ + { + "word": " yeah", + "start": 1657.74, + "end": 1658.18, + "probability": 0.8857421875 + }, + { + "word": " and", + "start": 1658.18, + "end": 1658.34, + "probability": 0.92724609375 + }, + { + "word": " I", + "start": 1658.34, + "end": 1658.44, + "probability": 0.9853515625 + }, + { + "word": " mean", + "start": 1658.44, + "end": 1658.54, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 1658.54, + "end": 1658.7, + "probability": 0.9970703125 + } + ] + }, + { + "id": 970, + "text": "you know everybody always says", + "start": 1658.7, + "end": 1659.66, + "words": [ + { + "word": " you", + "start": 1658.7, + "end": 1659.0, + "probability": 0.99560546875 + }, + { + "word": " know", + "start": 1659.0, + "end": 1659.1, + "probability": 0.99951171875 + }, + { + "word": " everybody", + "start": 1659.1, + "end": 1659.34, + "probability": 0.99755859375 + }, + { + "word": " always", + "start": 1659.34, + "end": 1659.5, + "probability": 0.99462890625 + }, + { + "word": " says", + "start": 1659.5, + "end": 1659.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 971, + "text": "bitcoin's gonna fail", + "start": 1659.66, + "end": 1660.38, + "words": [ + { + "word": " bitcoin's", + "start": 1659.66, + "end": 1660.06, + "probability": 0.60888671875 + }, + { + "word": " gonna", + "start": 1660.06, + "end": 1660.16, + "probability": 0.6787109375 + }, + { + "word": " fail", + "start": 1660.16, + "end": 1660.38, + "probability": 0.9970703125 + } + ] + }, + { + "id": 972, + "text": "that could be the case", + "start": 1660.38, + "end": 1661.46, + "words": [ + { + "word": " that", + "start": 1660.38, + "end": 1660.82, + "probability": 0.9951171875 + }, + { + "word": " could", + "start": 1660.82, + "end": 1661.0, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1661.0, + "end": 1661.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1661.1, + "end": 1661.22, + "probability": 0.99951171875 + }, + { + "word": " case", + "start": 1661.22, + "end": 1661.46, + "probability": 1.0 + } + ] + }, + { + "id": 973, + "text": "bitcoin might fail", + "start": 1661.46, + "end": 1662.3, + "words": [ + { + "word": " bitcoin", + "start": 1661.46, + "end": 1661.78, + "probability": 0.98876953125 + }, + { + "word": " might", + "start": 1661.78, + "end": 1662.06, + "probability": 0.99951171875 + }, + { + "word": " fail", + "start": 1662.06, + "end": 1662.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 974, + "text": "but the underlying technology", + "start": 1662.3, + "end": 1663.6, + "words": [ + { + "word": " but", + "start": 1662.3, + "end": 1662.78, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1662.78, + "end": 1662.92, + "probability": 1.0 + }, + { + "word": " underlying", + "start": 1662.92, + "end": 1663.2, + "probability": 0.99853515625 + }, + { + "word": " technology", + "start": 1663.2, + "end": 1663.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 975, + "text": "of the blockchain", + "start": 1663.6, + "end": 1664.36, + "words": [ + { + "word": " of", + "start": 1663.6, + "end": 1663.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1663.98, + "end": 1664.06, + "probability": 1.0 + }, + { + "word": " blockchain", + "start": 1664.06, + "end": 1664.36, + "probability": 0.9951171875 + } + ] + }, + { + "id": 976, + "text": "and all these new technologies", + "start": 1664.36, + "end": 1665.58, + "words": [ + { + "word": " and", + "start": 1664.36, + "end": 1664.64, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1664.64, + "end": 1664.78, + "probability": 1.0 + }, + { + "word": " these", + "start": 1664.78, + "end": 1664.9, + "probability": 0.99951171875 + }, + { + "word": " new", + "start": 1664.9, + "end": 1665.12, + "probability": 1.0 + }, + { + "word": " technologies", + "start": 1665.12, + "end": 1665.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 977, + "text": "that are using it", + "start": 1665.58, + "end": 1666.32, + "words": [ + { + "word": " that", + "start": 1665.58, + "end": 1665.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 1665.86, + "end": 1665.92, + "probability": 0.99951171875 + }, + { + "word": " using", + "start": 1665.92, + "end": 1666.14, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1666.14, + "end": 1666.32, + "probability": 1.0 + } + ] + }, + { + "id": 978, + "text": "that's forever", + "start": 1666.32, + "end": 1667.12, + "words": [ + { + "word": " that's", + "start": 1666.32, + "end": 1666.86, + "probability": 0.9990234375 + }, + { + "word": " forever", + "start": 1666.86, + "end": 1667.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 979, + "text": "it's gonna be around", + "start": 1667.12, + "end": 1667.82, + "words": [ + { + "word": " it's", + "start": 1667.12, + "end": 1667.4, + "probability": 0.9990234375 + }, + { + "word": " gonna", + "start": 1667.4, + "end": 1667.52, + "probability": 0.289794921875 + }, + { + "word": " be", + "start": 1667.52, + "end": 1667.62, + "probability": 1.0 + }, + { + "word": " around", + "start": 1667.62, + "end": 1667.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 980, + "text": "right", + "start": 1667.82, + "end": 1668.42, + "words": [ + { + "word": " right", + "start": 1667.82, + "end": 1668.42, + "probability": 0.98779296875 + } + ] + }, + { + "id": 981, + "text": "all right let's take some calls here", + "start": 1668.42, + "end": 1669.72, + "words": [ + { + "word": " all", + "start": 1668.42, + "end": 1668.8, + "probability": 0.90185546875 + }, + { + "word": " right", + "start": 1668.8, + "end": 1668.98, + "probability": 0.99951171875 + }, + { + "word": " let's", + "start": 1668.98, + "end": 1669.18, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 1669.18, + "end": 1669.26, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 1669.26, + "end": 1669.4, + "probability": 1.0 + }, + { + "word": " calls", + "start": 1669.4, + "end": 1669.56, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 1669.56, + "end": 1669.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 982, + "text": "who are we gonna start with?", + "start": 1669.72, + "end": 1670.52, + "words": [ + { + "word": " who", + "start": 1669.72, + "end": 1669.9, + "probability": 0.99560546875 + }, + { + "word": " are", + "start": 1669.9, + "end": 1669.98, + "probability": 0.974609375 + }, + { + "word": " we", + "start": 1669.98, + "end": 1670.04, + "probability": 0.99560546875 + }, + { + "word": " gonna", + "start": 1670.04, + "end": 1670.12, + "probability": 0.66259765625 + }, + { + "word": " start", + "start": 1670.12, + "end": 1670.3, + "probability": 0.998046875 + }, + { + "word": " with?", + "start": 1670.3, + "end": 1670.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 983, + "text": "with Les", + "start": 1671.66, + "end": 1672.38, + "words": [ + { + "word": " with", + "start": 1671.66, + "end": 1672.1, + "probability": 0.921875 + }, + { + "word": " Les", + "start": 1672.1, + "end": 1672.38, + "probability": 0.8837890625 + } + ] + }, + { + "id": 984, + "text": "let's start with", + "start": 1672.98, + "end": 1673.86, + "words": [ + { + "word": " let's", + "start": 1672.98, + "end": 1673.42, + "probability": 0.83349609375 + }, + { + "word": " start", + "start": 1673.42, + "end": 1673.6, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1673.6, + "end": 1673.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 985, + "text": "line two", + "start": 1673.86, + "end": 1674.86, + "words": [ + { + "word": " line", + "start": 1673.86, + "end": 1674.64, + "probability": 0.2310791015625 + }, + { + "word": " two", + "start": 1674.64, + "end": 1674.86, + "probability": 0.5068359375 + } + ] + }, + { + "id": 986, + "text": "Les", + "start": 1674.86, + "end": 1675.06, + "words": [ + { + "word": " Les", + "start": 1674.86, + "end": 1675.06, + "probability": 0.6865234375 + } + ] + }, + { + "id": 987, + "text": "hello Les", + "start": 1675.06, + "end": 1675.58, + "words": [ + { + "word": " hello", + "start": 1675.06, + "end": 1675.42, + "probability": 0.953125 + }, + { + "word": " Les", + "start": 1675.42, + "end": 1675.58, + "probability": 0.99072265625 + } + ] + }, + { + "id": 988, + "text": "how are you?", + "start": 1675.58, + "end": 1676.0, + "words": [ + { + "word": " how", + "start": 1675.58, + "end": 1675.74, + "probability": 0.99658203125 + }, + { + "word": " are", + "start": 1675.74, + "end": 1675.88, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1675.88, + "end": 1676.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 989, + "text": "hi guys", + "start": 1676.52, + "end": 1677.26, + "words": [ + { + "word": " hi", + "start": 1676.52, + "end": 1676.96, + "probability": 0.8408203125 + }, + { + "word": " guys", + "start": 1676.96, + "end": 1677.26, + "probability": 0.998046875 + } + ] + }, + { + "id": 990, + "text": "2018", + "start": 1677.26, + "end": 1677.86, + "words": [ + { + "word": " 2018", + "start": 1677.26, + "end": 1677.86, + "probability": 0.966796875 + } + ] + }, + { + "id": 991, + "text": "greetings", + "start": 1677.86, + "end": 1678.42, + "words": [ + { + "word": " greetings", + "start": 1677.86, + "end": 1678.42, + "probability": 0.0175018310546875 + } + ] + }, + { + "id": 992, + "text": "greetings", + "start": 1679.14, + "end": 1679.66, + "words": [ + { + "word": " greetings", + "start": 1679.14, + "end": 1679.66, + "probability": 0.0875244140625 + } + ] + }, + { + "id": 993, + "text": "you as well", + "start": 1679.66, + "end": 1680.12, + "words": [ + { + "word": " you", + "start": 1679.66, + "end": 1679.82, + "probability": 0.662109375 + }, + { + "word": " as", + "start": 1679.82, + "end": 1679.98, + "probability": 0.99560546875 + }, + { + "word": " well", + "start": 1679.98, + "end": 1680.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 994, + "text": "and I took your advice", + "start": 1681.24, + "end": 1683.1, + "words": [ + { + "word": " and", + "start": 1681.24, + "end": 1681.76, + "probability": 0.97119140625 + }, + { + "word": " I", + "start": 1681.76, + "end": 1682.06, + "probability": 0.473876953125 + }, + { + "word": " took", + "start": 1682.06, + "end": 1682.62, + "probability": 0.9970703125 + }, + { + "word": " your", + "start": 1682.62, + "end": 1682.8, + "probability": 0.9990234375 + }, + { + "word": " advice", + "start": 1682.8, + "end": 1683.1, + "probability": 0.9970703125 + } + ] + }, + { + "id": 995, + "text": "I was probably", + "start": 1683.1, + "end": 1683.9, + "words": [ + { + "word": " I", + "start": 1683.1, + "end": 1683.3, + "probability": 0.6513671875 + }, + { + "word": " was", + "start": 1683.3, + "end": 1683.5, + "probability": 0.9921875 + }, + { + "word": " probably", + "start": 1683.5, + "end": 1683.9, + "probability": 0.8330078125 + } + ] + }, + { + "id": 996, + "text": "last month", + "start": 1683.9, + "end": 1684.96, + "words": [ + { + "word": " last", + "start": 1683.9, + "end": 1684.64, + "probability": 0.99609375 + }, + { + "word": " month", + "start": 1684.64, + "end": 1684.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 997, + "text": "about upgrading", + "start": 1684.96, + "end": 1685.96, + "words": [ + { + "word": " about", + "start": 1684.96, + "end": 1685.3, + "probability": 0.99853515625 + }, + { + "word": " upgrading", + "start": 1685.3, + "end": 1685.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 998, + "text": "taking advantage", + "start": 1685.96, + "end": 1687.0, + "words": [ + { + "word": " taking", + "start": 1685.96, + "end": 1686.6, + "probability": 0.9775390625 + }, + { + "word": " advantage", + "start": 1686.6, + "end": 1687.0, + "probability": 1.0 + } + ] + }, + { + "id": 999, + "text": "of the Windows 10 upgrade", + "start": 1687.0, + "end": 1688.08, + "words": [ + { + "word": " of", + "start": 1687.0, + "end": 1687.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1687.26, + "end": 1687.32, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 1687.32, + "end": 1687.54, + "probability": 0.81640625 + }, + { + "word": " 10", + "start": 1687.54, + "end": 1687.8, + "probability": 0.998046875 + }, + { + "word": " upgrade", + "start": 1687.8, + "end": 1688.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1000, + "text": "using the", + "start": 1688.08, + "end": 1689.26, + "words": [ + { + "word": " using", + "start": 1688.08, + "end": 1688.88, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1688.88, + "end": 1689.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1001, + "text": "disabled service method", + "start": 1690.16, + "end": 1691.58, + "words": [ + { + "word": " disabled", + "start": 1690.16, + "end": 1690.68, + "probability": 0.99560546875 + }, + { + "word": " service", + "start": 1690.68, + "end": 1690.96, + "probability": 0.9990234375 + }, + { + "word": " method", + "start": 1690.96, + "end": 1691.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1002, + "text": "it would have had to have been", + "start": 1691.58, + "end": 1692.76, + "words": [ + { + "word": " it", + "start": 1691.58, + "end": 1692.12, + "probability": 0.9921875 + }, + { + "word": " would", + "start": 1692.12, + "end": 1692.26, + "probability": 1.0 + }, + { + "word": " have", + "start": 1692.26, + "end": 1692.36, + "probability": 0.9833984375 + }, + { + "word": " had", + "start": 1692.36, + "end": 1692.5, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 1692.5, + "end": 1692.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 1692.58, + "end": 1692.68, + "probability": 0.99560546875 + }, + { + "word": " been", + "start": 1692.68, + "end": 1692.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1003, + "text": "last month", + "start": 1692.76, + "end": 1693.22, + "words": [ + { + "word": " last", + "start": 1692.76, + "end": 1692.96, + "probability": 0.99853515625 + }, + { + "word": " month", + "start": 1692.96, + "end": 1693.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1004, + "text": "yeah", + "start": 1693.22, + "end": 1693.56, + "words": [ + { + "word": " yeah", + "start": 1693.22, + "end": 1693.56, + "probability": 0.7275390625 + } + ] + }, + { + "id": 1005, + "text": "for free", + "start": 1693.56, + "end": 1694.24, + "words": [ + { + "word": " for", + "start": 1693.56, + "end": 1693.9, + "probability": 0.89306640625 + }, + { + "word": " free", + "start": 1693.9, + "end": 1694.24, + "probability": 1.0 + } + ] + }, + { + "id": 1006, + "text": "yeah", + "start": 1694.24, + "end": 1694.64, + "words": [ + { + "word": " yeah", + "start": 1694.24, + "end": 1694.64, + "probability": 0.295166015625 + } + ] + }, + { + "id": 1007, + "text": "yeah for free", + "start": 1694.64, + "end": 1695.94, + "words": [ + { + "word": " yeah", + "start": 1694.64, + "end": 1695.26, + "probability": 0.6376953125 + }, + { + "word": " for", + "start": 1695.26, + "end": 1695.52, + "probability": 0.83837890625 + }, + { + "word": " free", + "start": 1695.52, + "end": 1695.94, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1008, + "text": "for free", + "start": 1695.94, + "end": 1696.44, + "words": [ + { + "word": " for", + "start": 1695.94, + "end": 1696.22, + "probability": 0.984375 + }, + { + "word": " free", + "start": 1696.22, + "end": 1696.44, + "probability": 1.0 + } + ] + }, + { + "id": 1009, + "text": "and I had an old", + "start": 1696.44, + "end": 1697.66, + "words": [ + { + "word": " and", + "start": 1696.44, + "end": 1696.8, + "probability": 0.9951171875 + }, + { + "word": " I", + "start": 1696.8, + "end": 1697.0, + "probability": 0.99560546875 + }, + { + "word": " had", + "start": 1697.0, + "end": 1697.24, + "probability": 1.0 + }, + { + "word": " an", + "start": 1697.24, + "end": 1697.48, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 1697.48, + "end": 1697.66, + "probability": 1.0 + } + ] + }, + { + "id": 1010, + "text": "like a Windows 8.0", + "start": 1697.66, + "end": 1700.52, + "words": [ + { + "word": " like", + "start": 1697.66, + "end": 1698.46, + "probability": 0.89111328125 + }, + { + "word": " a", + "start": 1698.46, + "end": 1699.04, + "probability": 0.99267578125 + }, + { + "word": " Windows", + "start": 1699.04, + "end": 1699.32, + "probability": 0.99658203125 + }, + { + "word": " 8", + "start": 1699.32, + "end": 1699.6, + "probability": 0.99951171875 + }, + { + "word": ".0", + "start": 1699.6, + "end": 1700.52, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1011, + "text": "that I hadn't used", + "start": 1700.52, + "end": 1701.1, + "words": [ + { + "word": " that", + "start": 1700.52, + "end": 1700.66, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1700.66, + "end": 1700.76, + "probability": 0.98974609375 + }, + { + "word": " hadn't", + "start": 1700.76, + "end": 1700.94, + "probability": 0.9951171875 + }, + { + "word": " used", + "start": 1700.94, + "end": 1701.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1012, + "text": "and I", + "start": 1701.1, + "end": 1701.36, + "words": [ + { + "word": " and", + "start": 1701.1, + "end": 1701.28, + "probability": 0.25537109375 + }, + { + "word": " I", + "start": 1701.28, + "end": 1701.36, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1013, + "text": "figured that would be", + "start": 1702.08, + "end": 1703.0, + "words": [ + { + "word": " figured", + "start": 1702.08, + "end": 1702.6, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1702.6, + "end": 1702.78, + "probability": 0.9638671875 + }, + { + "word": " would", + "start": 1702.78, + "end": 1702.86, + "probability": 0.89892578125 + }, + { + "word": " be", + "start": 1702.86, + "end": 1703.0, + "probability": 1.0 + } + ] + }, + { + "id": 1014, + "text": "a good way to get into", + "start": 1703.0, + "end": 1703.82, + "words": [ + { + "word": " a", + "start": 1703.0, + "end": 1703.08, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 1703.08, + "end": 1703.2, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 1703.2, + "end": 1703.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1703.36, + "end": 1703.48, + "probability": 1.0 + }, + { + "word": " get", + "start": 1703.48, + "end": 1703.66, + "probability": 1.0 + }, + { + "word": " into", + "start": 1703.66, + "end": 1703.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1015, + "text": "the virtual box", + "start": 1703.82, + "end": 1705.0, + "words": [ + { + "word": " the", + "start": 1703.82, + "end": 1704.0, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 1704.0, + "end": 1704.3, + "probability": 0.99755859375 + }, + { + "word": " box", + "start": 1704.3, + "end": 1705.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1016, + "text": "to make one with 10", + "start": 1705.6200000000001, + "end": 1707.2, + "words": [ + { + "word": " to", + "start": 1705.6200000000001, + "end": 1706.14, + "probability": 0.84814453125 + }, + { + "word": " make", + "start": 1706.14, + "end": 1706.6, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 1706.6, + "end": 1706.78, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 1706.78, + "end": 1706.96, + "probability": 0.998046875 + }, + { + "word": " 10", + "start": 1706.96, + "end": 1707.2, + "probability": 0.96484375 + } + ] + }, + { + "id": 1017, + "text": "so I", + "start": 1707.2, + "end": 1707.58, + "words": [ + { + "word": " so", + "start": 1707.2, + "end": 1707.42, + "probability": 0.98583984375 + }, + { + "word": " I", + "start": 1707.42, + "end": 1707.58, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1018, + "text": "created a virtual box", + "start": 1707.58, + "end": 1708.76, + "words": [ + { + "word": " created", + "start": 1707.58, + "end": 1707.68, + "probability": 0.0086669921875 + }, + { + "word": " a", + "start": 1707.68, + "end": 1708.22, + "probability": 0.99462890625 + }, + { + "word": " virtual", + "start": 1708.22, + "end": 1708.44, + "probability": 0.95263671875 + }, + { + "word": " box", + "start": 1708.44, + "end": 1708.76, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1019, + "text": "with 8", + "start": 1708.76, + "end": 1709.26, + "words": [ + { + "word": " with", + "start": 1708.76, + "end": 1709.06, + "probability": 0.9990234375 + }, + { + "word": " 8", + "start": 1709.06, + "end": 1709.26, + "probability": 0.46044921875 + } + ] + }, + { + "id": 1020, + "text": "and then I", + "start": 1709.26, + "end": 1709.78, + "words": [ + { + "word": " and", + "start": 1709.26, + "end": 1709.48, + "probability": 0.677734375 + }, + { + "word": " then", + "start": 1709.48, + "end": 1709.62, + "probability": 0.9775390625 + }, + { + "word": " I", + "start": 1709.62, + "end": 1709.78, + "probability": 0.96728515625 + } + ] + }, + { + "id": 1021, + "text": "upgraded it", + "start": 1709.78, + "end": 1711.14, + "words": [ + { + "word": " upgraded", + "start": 1709.78, + "end": 1710.5, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 1710.5, + "end": 1711.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1022, + "text": "to 10", + "start": 1711.14, + "end": 1711.76, + "words": [ + { + "word": " to", + "start": 1711.14, + "end": 1711.36, + "probability": 1.0 + }, + { + "word": " 10", + "start": 1711.36, + "end": 1711.76, + "probability": 0.994140625 + } + ] + }, + { + "id": 1023, + "text": "no problems", + "start": 1711.76, + "end": 1712.4, + "words": [ + { + "word": " no", + "start": 1711.76, + "end": 1712.0, + "probability": 0.38525390625 + }, + { + "word": " problems", + "start": 1712.0, + "end": 1712.4, + "probability": 0.908203125 + } + ] + }, + { + "id": 1024, + "text": "other than the video sharing", + "start": 1713.46, + "end": 1715.3, + "words": [ + { + "word": " other", + "start": 1713.46, + "end": 1713.94, + "probability": 0.822265625 + }, + { + "word": " than", + "start": 1713.94, + "end": 1714.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1714.42, + "end": 1714.62, + "probability": 1.0 + }, + { + "word": " video", + "start": 1714.62, + "end": 1714.96, + "probability": 0.99951171875 + }, + { + "word": " sharing", + "start": 1714.96, + "end": 1715.3, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1025, + "text": "I was looking at it", + "start": 1715.3, + "end": 1716.52, + "words": [ + { + "word": " I", + "start": 1715.3, + "end": 1715.52, + "probability": 0.98046875 + }, + { + "word": " was", + "start": 1715.52, + "end": 1715.66, + "probability": 1.0 + }, + { + "word": " looking", + "start": 1715.66, + "end": 1716.06, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 1716.06, + "end": 1716.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 1716.34, + "end": 1716.52, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1026, + "text": "and", + "start": 1716.52, + "end": 1716.76, + "words": [ + { + "word": " and", + "start": 1716.52, + "end": 1716.76, + "probability": 0.97021484375 + } + ] + }, + { + "id": 1027, + "text": "the most you can get", + "start": 1717.7, + "end": 1718.98, + "words": [ + { + "word": " the", + "start": 1717.7, + "end": 1718.18, + "probability": 0.998046875 + }, + { + "word": " most", + "start": 1718.18, + "end": 1718.5, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1718.5, + "end": 1718.64, + "probability": 1.0 + }, + { + "word": " can", + "start": 1718.64, + "end": 1718.76, + "probability": 1.0 + }, + { + "word": " get", + "start": 1718.76, + "end": 1718.98, + "probability": 1.0 + } + ] + }, + { + "id": 1028, + "text": "is like 256", + "start": 1718.98, + "end": 1719.62, + "words": [ + { + "word": " is", + "start": 1718.98, + "end": 1719.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 1719.14, + "end": 1719.32, + "probability": 0.98388671875 + }, + { + "word": " 256", + "start": 1719.32, + "end": 1719.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 1029, + "text": "megabytes", + "start": 1720.26, + "end": 1720.74, + "words": [ + { + "word": " megabytes", + "start": 1720.26, + "end": 1720.74, + "probability": 0.982421875 + } + ] + }, + { + "id": 1030, + "text": "for your video memory", + "start": 1720.74, + "end": 1721.7, + "words": [ + { + "word": " for", + "start": 1720.74, + "end": 1721.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 1721.0, + "end": 1721.16, + "probability": 1.0 + }, + { + "word": " video", + "start": 1721.16, + "end": 1721.44, + "probability": 1.0 + }, + { + "word": " memory", + "start": 1721.44, + "end": 1721.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1031, + "text": "and", + "start": 1721.7, + "end": 1722.3, + "words": [ + { + "word": " and", + "start": 1721.7, + "end": 1722.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1032, + "text": "my intent of the video", + "start": 1722.3, + "end": 1724.18, + "words": [ + { + "word": " my", + "start": 1722.3, + "end": 1723.12, + "probability": 0.9990234375 + }, + { + "word": " intent", + "start": 1723.12, + "end": 1723.38, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1723.38, + "end": 1723.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1723.68, + "end": 1723.82, + "probability": 1.0 + }, + { + "word": " video", + "start": 1723.82, + "end": 1724.18, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1033, + "text": "or the virtual box", + "start": 1724.18, + "end": 1725.82, + "words": [ + { + "word": " or", + "start": 1724.18, + "end": 1724.92, + "probability": 0.98583984375 + }, + { + "word": " the", + "start": 1724.92, + "end": 1725.02, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 1725.02, + "end": 1725.48, + "probability": 0.99951171875 + }, + { + "word": " box", + "start": 1725.48, + "end": 1725.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1034, + "text": "would be to", + "start": 1725.82, + "end": 1726.62, + "words": [ + { + "word": " would", + "start": 1725.82, + "end": 1726.12, + "probability": 1.0 + }, + { + "word": " be", + "start": 1726.12, + "end": 1726.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1726.3, + "end": 1726.62, + "probability": 1.0 + } + ] + }, + { + "id": 1035, + "text": "be able to put your", + "start": 1727.54, + "end": 1728.66, + "words": [ + { + "word": " be", + "start": 1727.54, + "end": 1728.02, + "probability": 0.99853515625 + }, + { + "word": " able", + "start": 1728.02, + "end": 1728.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1728.16, + "end": 1728.26, + "probability": 1.0 + }, + { + "word": " put", + "start": 1728.26, + "end": 1728.48, + "probability": 1.0 + }, + { + "word": " your", + "start": 1728.48, + "end": 1728.66, + "probability": 1.0 + } + ] + }, + { + "id": 1036, + "text": "programs on there", + "start": 1728.66, + "end": 1729.82, + "words": [ + { + "word": " programs", + "start": 1728.66, + "end": 1729.26, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1729.26, + "end": 1729.58, + "probability": 1.0 + }, + { + "word": " there", + "start": 1729.58, + "end": 1729.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 1037, + "text": "like Photoshop", + "start": 1729.82, + "end": 1730.64, + "words": [ + { + "word": " like", + "start": 1729.82, + "end": 1730.08, + "probability": 0.99755859375 + }, + { + "word": " Photoshop", + "start": 1730.08, + "end": 1730.64, + "probability": 0.70458984375 + } + ] + }, + { + "id": 1038, + "text": "and all that", + "start": 1730.64, + "end": 1731.28, + "words": [ + { + "word": " and", + "start": 1730.64, + "end": 1731.0, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 1731.0, + "end": 1731.1, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1731.1, + "end": 1731.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1039, + "text": "I think Mike", + "start": 1731.28, + "end": 1731.76, + "words": [ + { + "word": " I", + "start": 1731.28, + "end": 1731.4, + "probability": 0.96826171875 + }, + { + "word": " think", + "start": 1731.4, + "end": 1731.56, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 1731.56, + "end": 1731.76, + "probability": 0.984375 + } + ] + }, + { + "id": 1040, + "text": "you had suggested", + "start": 1731.76, + "end": 1732.46, + "words": [ + { + "word": " you", + "start": 1731.76, + "end": 1731.92, + "probability": 0.99658203125 + }, + { + "word": " had", + "start": 1731.92, + "end": 1732.06, + "probability": 0.99755859375 + }, + { + "word": " suggested", + "start": 1732.06, + "end": 1732.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1041, + "text": "then you have like", + "start": 1732.46, + "end": 1733.38, + "words": [ + { + "word": " then", + "start": 1732.46, + "end": 1732.88, + "probability": 0.8857421875 + }, + { + "word": " you", + "start": 1732.88, + "end": 1733.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 1733.0, + "end": 1733.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 1733.2, + "end": 1733.38, + "probability": 0.96875 + } + ] + }, + { + "id": 1042, + "text": "something you can", + "start": 1733.38, + "end": 1735.5, + "words": [ + { + "word": " something", + "start": 1733.38, + "end": 1734.08, + "probability": 0.66796875 + }, + { + "word": " you", + "start": 1734.08, + "end": 1735.32, + "probability": 1.0 + }, + { + "word": " can", + "start": 1735.32, + "end": 1735.5, + "probability": 1.0 + } + ] + }, + { + "id": 1043, + "text": "use", + "start": 1735.5, + "end": 1736.14, + "words": [ + { + "word": " use", + "start": 1735.5, + "end": 1736.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1044, + "text": "and not have to worry about", + "start": 1736.14, + "end": 1737.42, + "words": [ + { + "word": " and", + "start": 1736.14, + "end": 1736.52, + "probability": 1.0 + }, + { + "word": " not", + "start": 1736.52, + "end": 1736.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 1736.74, + "end": 1736.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 1736.9, + "end": 1737.04, + "probability": 1.0 + }, + { + "word": " worry", + "start": 1737.04, + "end": 1737.18, + "probability": 1.0 + }, + { + "word": " about", + "start": 1737.18, + "end": 1737.42, + "probability": 1.0 + } + ] + }, + { + "id": 1045, + "text": "you know", + "start": 1737.58, + "end": 1737.86, + "words": [ + { + "word": " you", + "start": 1737.58, + "end": 1737.7, + "probability": 0.2216796875 + }, + { + "word": " know", + "start": 1737.7, + "end": 1737.86, + "probability": 0.99609375 + } + ] + }, + { + "id": 1046, + "text": "putting in your keys", + "start": 1737.86, + "end": 1739.7, + "words": [ + { + "word": " putting", + "start": 1737.86, + "end": 1738.2, + "probability": 0.0169830322265625 + }, + { + "word": " in", + "start": 1738.2, + "end": 1739.36, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 1739.36, + "end": 1739.52, + "probability": 0.9990234375 + }, + { + "word": " keys", + "start": 1739.52, + "end": 1739.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1047, + "text": "and all that stuff", + "start": 1739.7, + "end": 1740.5, + "words": [ + { + "word": " and", + "start": 1739.7, + "end": 1739.9, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 1739.9, + "end": 1740.02, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1740.02, + "end": 1740.16, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1740.16, + "end": 1740.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1048, + "text": "right", + "start": 1740.5, + "end": 1740.94, + "words": [ + { + "word": " right", + "start": 1740.5, + "end": 1740.94, + "probability": 0.35546875 + } + ] + }, + { + "id": 1049, + "text": "but", + "start": 1740.94, + "end": 1741.3, + "words": [ + { + "word": " but", + "start": 1740.94, + "end": 1741.3, + "probability": 0.994140625 + } + ] + }, + { + "id": 1050, + "text": "256 megabyte", + "start": 1742.7, + "end": 1743.74, + "words": [ + { + "word": " 256", + "start": 1742.7, + "end": 1743.22, + "probability": 0.015838623046875 + }, + { + "word": " megabyte", + "start": 1743.22, + "end": 1743.74, + "probability": 0.935546875 + } + ] + }, + { + "id": 1051, + "text": "is really nothing", + "start": 1743.74, + "end": 1744.42, + "words": [ + { + "word": " is", + "start": 1743.74, + "end": 1743.96, + "probability": 0.998046875 + }, + { + "word": " really", + "start": 1743.96, + "end": 1744.12, + "probability": 0.998046875 + }, + { + "word": " nothing", + "start": 1744.12, + "end": 1744.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1052, + "text": "if you're going to use", + "start": 1744.42, + "end": 1745.22, + "words": [ + { + "word": " if", + "start": 1744.42, + "end": 1744.78, + "probability": 0.99658203125 + }, + { + "word": " you're", + "start": 1744.78, + "end": 1744.9, + "probability": 0.9921875 + }, + { + "word": " going", + "start": 1744.9, + "end": 1745.0, + "probability": 0.89453125 + }, + { + "word": " to", + "start": 1745.0, + "end": 1745.08, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 1745.08, + "end": 1745.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 1053, + "text": "Photoshop", + "start": 1745.22, + "end": 1745.54, + "words": [ + { + "word": " Photoshop", + "start": 1745.22, + "end": 1745.54, + "probability": 0.1607666015625 + } + ] + }, + { + "id": 1054, + "text": "so am I missing something", + "start": 1745.54, + "end": 1746.72, + "words": [ + { + "word": " so", + "start": 1745.54, + "end": 1745.96, + "probability": 0.994140625 + }, + { + "word": " am", + "start": 1745.96, + "end": 1746.1, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 1746.1, + "end": 1746.16, + "probability": 0.9921875 + }, + { + "word": " missing", + "start": 1746.16, + "end": 1746.42, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 1746.42, + "end": 1746.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1055, + "text": "or is that not really", + "start": 1746.72, + "end": 1747.92, + "words": [ + { + "word": " or", + "start": 1746.72, + "end": 1747.08, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 1747.08, + "end": 1747.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1747.2, + "end": 1747.34, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1747.34, + "end": 1747.56, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1747.56, + "end": 1747.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1056, + "text": "you're using virtual box", + "start": 1747.92, + "end": 1749.32, + "words": [ + { + "word": " you're", + "start": 1747.92, + "end": 1748.48, + "probability": 0.9814453125 + }, + { + "word": " using", + "start": 1748.48, + "end": 1748.74, + "probability": 0.99951171875 + }, + { + "word": " virtual", + "start": 1748.74, + "end": 1748.98, + "probability": 0.334228515625 + }, + { + "word": " box", + "start": 1748.98, + "end": 1749.32, + "probability": 0.8623046875 + } + ] + }, + { + "id": 1057, + "text": "right", + "start": 1749.32, + "end": 1749.52, + "words": [ + { + "word": " right", + "start": 1749.32, + "end": 1749.52, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1058, + "text": "yeah it's a virtual", + "start": 1749.52, + "end": 1750.1, + "words": [ + { + "word": " yeah", + "start": 1749.52, + "end": 1749.82, + "probability": 0.66162109375 + }, + { + "word": " it's", + "start": 1749.82, + "end": 1749.92, + "probability": 0.8671875 + }, + { + "word": " a", + "start": 1749.92, + "end": 1749.98, + "probability": 0.99951171875 + }, + { + "word": " virtual", + "start": 1749.98, + "end": 1750.1, + "probability": 0.76025390625 + } + ] + }, + { + "id": 1059, + "text": "limitation of virtual box", + "start": 1750.1, + "end": 1751.64, + "words": [ + { + "word": " limitation", + "start": 1750.1, + "end": 1750.86, + "probability": 0.94189453125 + }, + { + "word": " of", + "start": 1750.86, + "end": 1751.18, + "probability": 0.95556640625 + }, + { + "word": " virtual", + "start": 1751.18, + "end": 1751.34, + "probability": 0.97998046875 + }, + { + "word": " box", + "start": 1751.34, + "end": 1751.64, + "probability": 0.95751953125 + } + ] + }, + { + "id": 1060, + "text": "so the virtual box", + "start": 1751.64, + "end": 1754.18, + "words": [ + { + "word": " so", + "start": 1751.64, + "end": 1752.2, + "probability": 0.68408203125 + }, + { + "word": " the", + "start": 1752.2, + "end": 1753.28, + "probability": 0.99951171875 + }, + { + "word": " virtual", + "start": 1753.28, + "end": 1753.88, + "probability": 0.99951171875 + }, + { + "word": " box", + "start": 1753.88, + "end": 1754.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1061, + "text": "limitation is 256", + "start": 1754.18, + "end": 1755.44, + "words": [ + { + "word": " limitation", + "start": 1754.18, + "end": 1754.46, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1754.46, + "end": 1755.0, + "probability": 1.0 + }, + { + "word": " 256", + "start": 1755.0, + "end": 1755.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1062, + "text": "but I think that's only", + "start": 1755.44, + "end": 1756.66, + "words": [ + { + "word": " but", + "start": 1755.44, + "end": 1755.96, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1755.96, + "end": 1756.06, + "probability": 0.998046875 + }, + { + "word": " think", + "start": 1756.06, + "end": 1756.22, + "probability": 1.0 + }, + { + "word": " that's", + "start": 1756.22, + "end": 1756.44, + "probability": 1.0 + }, + { + "word": " only", + "start": 1756.44, + "end": 1756.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1063, + "text": "on the 32 bit version", + "start": 1756.66, + "end": 1758.72, + "words": [ + { + "word": " on", + "start": 1756.66, + "end": 1757.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1757.06, + "end": 1757.44, + "probability": 0.99951171875 + }, + { + "word": " 32", + "start": 1757.44, + "end": 1757.98, + "probability": 0.99853515625 + }, + { + "word": " bit", + "start": 1757.98, + "end": 1758.46, + "probability": 0.583984375 + }, + { + "word": " version", + "start": 1758.46, + "end": 1758.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 1064, + "text": "or you have the 64 bit", + "start": 1758.72, + "end": 1759.76, + "words": [ + { + "word": " or", + "start": 1758.72, + "end": 1758.86, + "probability": 0.533203125 + }, + { + "word": " you", + "start": 1758.86, + "end": 1758.94, + "probability": 0.93017578125 + }, + { + "word": " have", + "start": 1758.94, + "end": 1759.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1759.12, + "end": 1759.22, + "probability": 0.99951171875 + }, + { + "word": " 64", + "start": 1759.22, + "end": 1759.5, + "probability": 0.99951171875 + }, + { + "word": " bit", + "start": 1759.5, + "end": 1759.76, + "probability": 0.99609375 + } + ] + }, + { + "id": 1065, + "text": "version of virtual box", + "start": 1759.76, + "end": 1760.78, + "words": [ + { + "word": " version", + "start": 1759.76, + "end": 1760.02, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1760.02, + "end": 1760.18, + "probability": 0.99951171875 + }, + { + "word": " virtual", + "start": 1760.18, + "end": 1760.44, + "probability": 0.998046875 + }, + { + "word": " box", + "start": 1760.44, + "end": 1760.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1066, + "text": "yeah I'm", + "start": 1760.78, + "end": 1761.24, + "words": [ + { + "word": " yeah", + "start": 1760.78, + "end": 1761.02, + "probability": 0.98193359375 + }, + { + "word": " I'm", + "start": 1761.02, + "end": 1761.24, + "probability": 0.994140625 + } + ] + }, + { + "id": 1067, + "text": "pretty sure it's", + "start": 1761.24, + "end": 1762.22, + "words": [ + { + "word": " pretty", + "start": 1761.24, + "end": 1761.8, + "probability": 0.9990234375 + }, + { + "word": " sure", + "start": 1761.8, + "end": 1762.0, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1762.0, + "end": 1762.22, + "probability": 0.97265625 + } + ] + }, + { + "id": 1068, + "text": "installed in 64 bit", + "start": 1762.22, + "end": 1763.58, + "words": [ + { + "word": " installed", + "start": 1762.22, + "end": 1762.62, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1762.62, + "end": 1762.82, + "probability": 0.779296875 + }, + { + "word": " 64", + "start": 1762.82, + "end": 1763.06, + "probability": 0.75 + }, + { + "word": " bit", + "start": 1763.06, + "end": 1763.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1069, + "text": "and the operating system", + "start": 1763.58, + "end": 1764.62, + "words": [ + { + "word": " and", + "start": 1763.58, + "end": 1763.98, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1763.98, + "end": 1764.1, + "probability": 1.0 + }, + { + "word": " operating", + "start": 1764.1, + "end": 1764.36, + "probability": 0.99951171875 + }, + { + "word": " system", + "start": 1764.36, + "end": 1764.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1070, + "text": "is 64", + "start": 1764.62, + "end": 1764.98, + "words": [ + { + "word": " is", + "start": 1764.62, + "end": 1764.76, + "probability": 0.94873046875 + }, + { + "word": " 64", + "start": 1764.76, + "end": 1764.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1071, + "text": "yeah", + "start": 1765.56, + "end": 1766.08, + "words": [ + { + "word": " yeah", + "start": 1765.56, + "end": 1766.08, + "probability": 0.9580078125 + } + ] + }, + { + "id": 1072, + "text": "yeah", + "start": 1766.08, + "end": 1766.44, + "words": [ + { + "word": " yeah", + "start": 1766.08, + "end": 1766.44, + "probability": 0.5029296875 + } + ] + }, + { + "id": 1073, + "text": "Windows 10", + "start": 1766.44, + "end": 1767.16, + "words": [ + { + "word": " Windows", + "start": 1766.44, + "end": 1766.9, + "probability": 0.5947265625 + }, + { + "word": " 10", + "start": 1766.9, + "end": 1767.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1074, + "text": "just", + "start": 1767.16, + "end": 1767.5, + "words": [ + { + "word": " just", + "start": 1767.16, + "end": 1767.5, + "probability": 0.9296875 + } + ] + }, + { + "id": 1075, + "text": "making sure", + "start": 1767.58, + "end": 1767.96, + "words": [ + { + "word": " making", + "start": 1767.58, + "end": 1767.72, + "probability": 0.32861328125 + }, + { + "word": " sure", + "start": 1767.72, + "end": 1767.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1076, + "text": "making sure that", + "start": 1768.86, + "end": 1770.02, + "words": [ + { + "word": " making", + "start": 1768.86, + "end": 1769.34, + "probability": 0.07568359375 + }, + { + "word": " sure", + "start": 1769.34, + "end": 1769.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 1769.82, + "end": 1770.02, + "probability": 0.994140625 + } + ] + }, + { + "id": 1077, + "text": "your original", + "start": 1770.02, + "end": 1770.62, + "words": [ + { + "word": " your", + "start": 1770.02, + "end": 1770.18, + "probability": 0.99169921875 + }, + { + "word": " original", + "start": 1770.18, + "end": 1770.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1078, + "text": "like your Windows 8", + "start": 1770.62, + "end": 1771.64, + "words": [ + { + "word": " like", + "start": 1770.62, + "end": 1770.94, + "probability": 0.8173828125 + }, + { + "word": " your", + "start": 1770.94, + "end": 1771.16, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 1771.16, + "end": 1771.42, + "probability": 0.71875 + }, + { + "word": " 8", + "start": 1771.42, + "end": 1771.64, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1079, + "text": "that you upgraded", + "start": 1771.64, + "end": 1772.5, + "words": [ + { + "word": " that", + "start": 1771.64, + "end": 1771.94, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1771.94, + "end": 1772.12, + "probability": 1.0 + }, + { + "word": " upgraded", + "start": 1772.12, + "end": 1772.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1080, + "text": "was also 64", + "start": 1772.5, + "end": 1773.6, + "words": [ + { + "word": " was", + "start": 1772.5, + "end": 1772.82, + "probability": 0.9990234375 + }, + { + "word": " also", + "start": 1772.82, + "end": 1773.12, + "probability": 0.99951171875 + }, + { + "word": " 64", + "start": 1773.12, + "end": 1773.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1081, + "text": "yeah", + "start": 1773.6, + "end": 1773.88, + "words": [ + { + "word": " yeah", + "start": 1773.6, + "end": 1773.88, + "probability": 0.369873046875 + } + ] + }, + { + "id": 1082, + "text": "everything was", + "start": 1773.88, + "end": 1774.86, + "words": [ + { + "word": " everything", + "start": 1773.88, + "end": 1774.22, + "probability": 0.372314453125 + }, + { + "word": " was", + "start": 1774.22, + "end": 1774.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1083, + "text": "10", + "start": 1775.42, + "end": 1775.9, + "words": [ + { + "word": " 10", + "start": 1775.42, + "end": 1775.9, + "probability": 0.6044921875 + } + ] + }, + { + "id": 1084, + "text": "in fact I think", + "start": 1775.9, + "end": 1777.5, + "words": [ + { + "word": " in", + "start": 1775.9, + "end": 1776.7, + "probability": 0.82373046875 + }, + { + "word": " fact", + "start": 1776.7, + "end": 1777.1, + "probability": 1.0 + }, + { + "word": " I", + "start": 1777.1, + "end": 1777.3, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 1777.3, + "end": 1777.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1085, + "text": "it installed it in the", + "start": 1777.5, + "end": 1778.54, + "words": [ + { + "word": " it", + "start": 1777.5, + "end": 1777.68, + "probability": 0.982421875 + }, + { + "word": " installed", + "start": 1777.68, + "end": 1777.96, + "probability": 0.79345703125 + }, + { + "word": " it", + "start": 1777.96, + "end": 1778.3, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 1778.3, + "end": 1778.48, + "probability": 0.97998046875 + }, + { + "word": " the", + "start": 1778.48, + "end": 1778.54, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1086, + "text": "I want to say", + "start": 1778.54, + "end": 1779.5, + "words": [ + { + "word": " I", + "start": 1778.54, + "end": 1779.06, + "probability": 0.9833984375 + }, + { + "word": " want", + "start": 1779.06, + "end": 1779.3, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1779.3, + "end": 1779.38, + "probability": 1.0 + }, + { + "word": " say", + "start": 1779.38, + "end": 1779.5, + "probability": 1.0 + } + ] + }, + { + "id": 1087, + "text": "I remember", + "start": 1779.5, + "end": 1780.0, + "words": [ + { + "word": " I", + "start": 1779.5, + "end": 1779.62, + "probability": 0.99853515625 + }, + { + "word": " remember", + "start": 1779.62, + "end": 1780.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1088, + "text": "from messing around", + "start": 1780.0, + "end": 1780.8, + "words": [ + { + "word": " from", + "start": 1780.0, + "end": 1780.46, + "probability": 0.9609375 + }, + { + "word": " messing", + "start": 1780.46, + "end": 1780.62, + "probability": 0.9990234375 + }, + { + "word": " around", + "start": 1780.62, + "end": 1780.8, + "probability": 1.0 + } + ] + }, + { + "id": 1089, + "text": "with virtual box", + "start": 1780.8, + "end": 1781.38, + "words": [ + { + "word": " with", + "start": 1780.8, + "end": 1780.94, + "probability": 0.9990234375 + }, + { + "word": " virtual", + "start": 1780.94, + "end": 1781.14, + "probability": 0.09521484375 + }, + { + "word": " box", + "start": 1781.14, + "end": 1781.38, + "probability": 0.86669921875 + } + ] + }, + { + "id": 1090, + "text": "that if you want to", + "start": 1781.38, + "end": 1782.06, + "words": [ + { + "word": " that", + "start": 1781.38, + "end": 1781.66, + "probability": 0.99755859375 + }, + { + "word": " if", + "start": 1781.66, + "end": 1781.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1781.78, + "end": 1781.88, + "probability": 1.0 + }, + { + "word": " want", + "start": 1781.88, + "end": 1782.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1782.02, + "end": 1782.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1091, + "text": "access more", + "start": 1782.06, + "end": 1782.62, + "words": [ + { + "word": " access", + "start": 1782.06, + "end": 1782.34, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 1782.34, + "end": 1782.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1092, + "text": "you have to set up", + "start": 1782.62, + "end": 1783.56, + "words": [ + { + "word": " you", + "start": 1782.62, + "end": 1782.9, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1782.9, + "end": 1783.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 1783.06, + "end": 1783.2, + "probability": 1.0 + }, + { + "word": " set", + "start": 1783.2, + "end": 1783.48, + "probability": 0.9951171875 + }, + { + "word": " up", + "start": 1783.48, + "end": 1783.56, + "probability": 1.0 + } + ] + }, + { + "id": 1093, + "text": "a pass through", + "start": 1783.56, + "end": 1784.16, + "words": [ + { + "word": " a", + "start": 1783.56, + "end": 1783.68, + "probability": 0.99951171875 + }, + { + "word": " pass", + "start": 1783.68, + "end": 1783.94, + "probability": 0.99072265625 + }, + { + "word": " through", + "start": 1783.94, + "end": 1784.16, + "probability": 0.8984375 + } + ] + }, + { + "id": 1094, + "text": "so that it's actually", + "start": 1784.16, + "end": 1784.9, + "words": [ + { + "word": " so", + "start": 1784.16, + "end": 1784.36, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1784.36, + "end": 1784.5, + "probability": 0.99462890625 + }, + { + "word": " it's", + "start": 1784.5, + "end": 1784.62, + "probability": 0.99609375 + }, + { + "word": " actually", + "start": 1784.62, + "end": 1784.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1095, + "text": "utilizing your GPU", + "start": 1784.9, + "end": 1786.44, + "words": [ + { + "word": " utilizing", + "start": 1784.9, + "end": 1785.38, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 1785.38, + "end": 1786.1, + "probability": 0.99951171875 + }, + { + "word": " GPU", + "start": 1786.1, + "end": 1786.44, + "probability": 0.99609375 + } + ] + }, + { + "id": 1096, + "text": "right", + "start": 1786.44, + "end": 1786.96, + "words": [ + { + "word": " right", + "start": 1786.44, + "end": 1786.96, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1097, + "text": "there's a way to do", + "start": 1786.96, + "end": 1787.68, + "words": [ + { + "word": " there's", + "start": 1786.96, + "end": 1787.2, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1787.2, + "end": 1787.26, + "probability": 1.0 + }, + { + "word": " way", + "start": 1787.26, + "end": 1787.4, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1787.4, + "end": 1787.52, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 1787.52, + "end": 1787.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1098, + "text": "and I don't remember", + "start": 1787.68, + "end": 1788.66, + "words": [ + { + "word": " and", + "start": 1787.68, + "end": 1787.94, + "probability": 0.95947265625 + }, + { + "word": " I", + "start": 1787.94, + "end": 1788.04, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1788.04, + "end": 1788.42, + "probability": 0.9970703125 + }, + { + "word": " remember", + "start": 1788.42, + "end": 1788.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1099, + "text": "off the top of my head", + "start": 1788.66, + "end": 1789.32, + "words": [ + { + "word": " off", + "start": 1788.66, + "end": 1788.84, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1788.84, + "end": 1788.94, + "probability": 1.0 + }, + { + "word": " top", + "start": 1788.94, + "end": 1789.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 1789.02, + "end": 1789.12, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1789.12, + "end": 1789.16, + "probability": 1.0 + }, + { + "word": " head", + "start": 1789.16, + "end": 1789.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1100, + "text": "how to do it", + "start": 1789.32, + "end": 1789.84, + "words": [ + { + "word": " how", + "start": 1789.32, + "end": 1789.46, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 1789.46, + "end": 1789.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 1789.56, + "end": 1789.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 1789.72, + "end": 1789.84, + "probability": 1.0 + } + ] + }, + { + "id": 1101, + "text": "but there's a way", + "start": 1789.84, + "end": 1790.44, + "words": [ + { + "word": " but", + "start": 1789.84, + "end": 1789.98, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1789.98, + "end": 1790.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1790.2, + "end": 1790.26, + "probability": 1.0 + }, + { + "word": " way", + "start": 1790.26, + "end": 1790.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1102, + "text": "in virtual box", + "start": 1790.44, + "end": 1791.36, + "words": [ + { + "word": " in", + "start": 1790.44, + "end": 1790.7, + "probability": 0.99853515625 + }, + { + "word": " virtual", + "start": 1790.7, + "end": 1790.98, + "probability": 0.9990234375 + }, + { + "word": " box", + "start": 1790.98, + "end": 1791.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1103, + "text": "to give direct access", + "start": 1791.36, + "end": 1793.62, + "words": [ + { + "word": " to", + "start": 1791.36, + "end": 1791.7, + "probability": 0.99951171875 + }, + { + "word": " give", + "start": 1791.7, + "end": 1792.72, + "probability": 0.9990234375 + }, + { + "word": " direct", + "start": 1792.72, + "end": 1793.18, + "probability": 0.99853515625 + }, + { + "word": " access", + "start": 1793.18, + "end": 1793.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1104, + "text": "to that operating system", + "start": 1793.62, + "end": 1795.3, + "words": [ + { + "word": " to", + "start": 1793.62, + "end": 1794.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 1794.2, + "end": 1794.54, + "probability": 0.99951171875 + }, + { + "word": " operating", + "start": 1794.54, + "end": 1794.9, + "probability": 0.9990234375 + }, + { + "word": " system", + "start": 1794.9, + "end": 1795.3, + "probability": 1.0 + } + ] + }, + { + "id": 1105, + "text": "because it's simulating", + "start": 1795.3, + "end": 1796.28, + "words": [ + { + "word": " because", + "start": 1795.3, + "end": 1795.62, + "probability": 0.93310546875 + }, + { + "word": " it's", + "start": 1795.62, + "end": 1795.8, + "probability": 1.0 + }, + { + "word": " simulating", + "start": 1795.8, + "end": 1796.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1106, + "text": "it's simulating", + "start": 1796.28, + "end": 1797.08, + "words": [ + { + "word": " it's", + "start": 1796.28, + "end": 1796.74, + "probability": 0.88671875 + }, + { + "word": " simulating", + "start": 1796.74, + "end": 1797.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1107, + "text": "that GPU", + "start": 1797.08, + "end": 1797.56, + "words": [ + { + "word": " that", + "start": 1797.08, + "end": 1797.32, + "probability": 0.99853515625 + }, + { + "word": " GPU", + "start": 1797.32, + "end": 1797.56, + "probability": 0.892578125 + } + ] + }, + { + "id": 1108, + "text": "", + "start": 1797.56, + "end": 1797.56, + "words": [] + }, + { + "id": 1109, + "text": "", + "start": 1797.56, + "end": 1797.56, + "words": [] + }, + { + "id": 1110, + "text": "right", + "start": 1797.58, + "end": 1797.9, + "words": [ + { + "word": " right", + "start": 1797.58, + "end": 1797.9, + "probability": 0.03509521484375 + } + ] + }, + { + "id": 1111, + "text": "right", + "start": 1797.9, + "end": 1798.24, + "words": [ + { + "word": " right", + "start": 1797.9, + "end": 1798.24, + "probability": 0.268310546875 + } + ] + }, + { + "id": 1112, + "text": "yeah", + "start": 1798.24, + "end": 1798.66, + "words": [ + { + "word": " yeah", + "start": 1798.24, + "end": 1798.66, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1113, + "text": "so there is a way", + "start": 1799.58, + "end": 1801.02, + "words": [ + { + "word": " so", + "start": 1799.58, + "end": 1800.06, + "probability": 0.986328125 + }, + { + "word": " there", + "start": 1800.06, + "end": 1800.54, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 1800.54, + "end": 1800.76, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1800.76, + "end": 1800.86, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 1800.86, + "end": 1801.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1114, + "text": "to do a pass through", + "start": 1801.02, + "end": 1801.76, + "words": [ + { + "word": " to", + "start": 1801.02, + "end": 1801.1, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1801.1, + "end": 1801.22, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1801.22, + "end": 1801.3, + "probability": 0.99853515625 + }, + { + "word": " pass", + "start": 1801.3, + "end": 1801.52, + "probability": 0.986328125 + }, + { + "word": " through", + "start": 1801.52, + "end": 1801.76, + "probability": 0.2252197265625 + } + ] + }, + { + "id": 1115, + "text": "and I can't remember", + "start": 1801.76, + "end": 1802.3, + "words": [ + { + "word": " and", + "start": 1801.76, + "end": 1801.88, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 1801.88, + "end": 1801.96, + "probability": 0.426025390625 + }, + { + "word": " can't", + "start": 1801.96, + "end": 1802.1, + "probability": 0.9990234375 + }, + { + "word": " remember", + "start": 1802.1, + "end": 1802.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1116, + "text": "how that works", + "start": 1802.3, + "end": 1803.24, + "words": [ + { + "word": " how", + "start": 1802.3, + "end": 1802.58, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1802.58, + "end": 1802.78, + "probability": 0.9990234375 + }, + { + "word": " works", + "start": 1802.78, + "end": 1803.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1117, + "text": "off the top of my head", + "start": 1803.24, + "end": 1804.22, + "words": [ + { + "word": " off", + "start": 1803.24, + "end": 1803.62, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 1803.62, + "end": 1803.76, + "probability": 0.9833984375 + }, + { + "word": " top", + "start": 1803.76, + "end": 1803.88, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1803.88, + "end": 1803.98, + "probability": 0.94873046875 + }, + { + "word": " my", + "start": 1803.98, + "end": 1804.04, + "probability": 0.99951171875 + }, + { + "word": " head", + "start": 1804.04, + "end": 1804.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1118, + "text": "the other flavors", + "start": 1804.22, + "end": 1806.42, + "words": [ + { + "word": " the", + "start": 1804.22, + "end": 1805.0, + "probability": 0.9892578125 + }, + { + "word": " other", + "start": 1805.0, + "end": 1805.78, + "probability": 0.369873046875 + }, + { + "word": " flavors", + "start": 1805.78, + "end": 1806.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1119, + "text": "that cost more", + "start": 1806.42, + "end": 1807.36, + "words": [ + { + "word": " that", + "start": 1806.42, + "end": 1806.78, + "probability": 0.99853515625 + }, + { + "word": " cost", + "start": 1806.78, + "end": 1807.06, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 1807.06, + "end": 1807.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1120, + "text": "for", + "start": 1807.36, + "end": 1807.96, + "words": [ + { + "word": " for", + "start": 1807.36, + "end": 1807.96, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1121, + "text": "yeah", + "start": 1807.96, + "end": 1808.62, + "words": [ + { + "word": " yeah", + "start": 1807.96, + "end": 1808.62, + "probability": 0.1549072265625 + } + ] + }, + { + "id": 1122, + "text": "you know", + "start": 1808.62, + "end": 1809.62, + "words": [ + { + "word": " you", + "start": 1808.62, + "end": 1809.32, + "probability": 0.59814453125 + }, + { + "word": " know", + "start": 1809.32, + "end": 1809.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1123, + "text": "virtualizing machines", + "start": 1809.62, + "end": 1810.4, + "words": [ + { + "word": " virtualizing", + "start": 1809.62, + "end": 1810.14, + "probability": 0.99365234375 + }, + { + "word": " machines", + "start": 1810.14, + "end": 1810.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1124, + "text": "tend to have this built in", + "start": 1810.4, + "end": 1812.4, + "words": [ + { + "word": " tend", + "start": 1810.4, + "end": 1811.18, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 1811.18, + "end": 1811.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 1811.38, + "end": 1811.6, + "probability": 1.0 + }, + { + "word": " this", + "start": 1811.6, + "end": 1811.84, + "probability": 0.99951171875 + }, + { + "word": " built", + "start": 1811.84, + "end": 1812.14, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 1812.14, + "end": 1812.4, + "probability": 0.984375 + } + ] + }, + { + "id": 1125, + "text": "or they offer you", + "start": 1812.4, + "end": 1813.92, + "words": [ + { + "word": " or", + "start": 1812.4, + "end": 1812.82, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1812.82, + "end": 1813.24, + "probability": 0.99853515625 + }, + { + "word": " offer", + "start": 1813.24, + "end": 1813.7, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1813.7, + "end": 1813.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1126, + "text": "better virtualization", + "start": 1813.92, + "end": 1815.68, + "words": [ + { + "word": " better", + "start": 1813.92, + "end": 1814.54, + "probability": 0.92626953125 + }, + { + "word": " virtualization", + "start": 1814.54, + "end": 1815.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 1127, + "text": "when it comes to", + "start": 1815.68, + "end": 1816.64, + "words": [ + { + "word": " when", + "start": 1815.68, + "end": 1816.22, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1816.22, + "end": 1816.34, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1816.34, + "end": 1816.5, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1816.5, + "end": 1816.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1128, + "text": "graphics hardware", + "start": 1816.64, + "end": 1817.38, + "words": [ + { + "word": " graphics", + "start": 1816.64, + "end": 1816.92, + "probability": 0.98876953125 + }, + { + "word": " hardware", + "start": 1816.92, + "end": 1817.38, + "probability": 0.99609375 + } + ] + }, + { + "id": 1129, + "text": "but there is a way", + "start": 1818.82, + "end": 1820.18, + "words": [ + { + "word": " but", + "start": 1818.82, + "end": 1819.3, + "probability": 0.97998046875 + }, + { + "word": " there", + "start": 1819.3, + "end": 1819.78, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1819.78, + "end": 1819.98, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1819.98, + "end": 1820.08, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 1820.08, + "end": 1820.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1130, + "text": "to do a pass through", + "start": 1820.18, + "end": 1820.92, + "words": [ + { + "word": " to", + "start": 1820.18, + "end": 1820.26, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1820.26, + "end": 1820.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 1820.4, + "end": 1820.48, + "probability": 0.9990234375 + }, + { + "word": " pass", + "start": 1820.48, + "end": 1820.7, + "probability": 0.99853515625 + }, + { + "word": " through", + "start": 1820.7, + "end": 1820.92, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1131, + "text": "in virtual box", + "start": 1820.92, + "end": 1821.62, + "words": [ + { + "word": " in", + "start": 1820.92, + "end": 1821.04, + "probability": 0.49755859375 + }, + { + "word": " virtual", + "start": 1821.04, + "end": 1821.26, + "probability": 0.291259765625 + }, + { + "word": " box", + "start": 1821.26, + "end": 1821.62, + "probability": 0.79345703125 + } + ] + }, + { + "id": 1132, + "text": "and unfortunately", + "start": 1821.62, + "end": 1822.5, + "words": [ + { + "word": " and", + "start": 1821.62, + "end": 1821.92, + "probability": 0.9775390625 + }, + { + "word": " unfortunately", + "start": 1821.92, + "end": 1822.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1133, + "text": "I don't remember", + "start": 1822.5, + "end": 1823.12, + "words": [ + { + "word": " I", + "start": 1822.5, + "end": 1822.74, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 1822.74, + "end": 1822.88, + "probability": 1.0 + }, + { + "word": " remember", + "start": 1822.88, + "end": 1823.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1134, + "text": "what it is", + "start": 1823.12, + "end": 1823.72, + "words": [ + { + "word": " what", + "start": 1823.12, + "end": 1823.42, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1823.42, + "end": 1823.54, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1823.54, + "end": 1823.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1135, + "text": "I could research", + "start": 1823.72, + "end": 1824.46, + "words": [ + { + "word": " I", + "start": 1823.72, + "end": 1823.86, + "probability": 0.87353515625 + }, + { + "word": " could", + "start": 1823.86, + "end": 1824.06, + "probability": 0.994140625 + }, + { + "word": " research", + "start": 1824.06, + "end": 1824.46, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1136, + "text": "I just researched", + "start": 1824.46, + "end": 1825.18, + "words": [ + { + "word": " I", + "start": 1824.46, + "end": 1824.72, + "probability": 0.9306640625 + }, + { + "word": " just", + "start": 1824.72, + "end": 1824.92, + "probability": 0.96923828125 + }, + { + "word": " researched", + "start": 1824.92, + "end": 1825.18, + "probability": 0.818359375 + } + ] + }, + { + "id": 1137, + "text": "how to get to", + "start": 1825.18, + "end": 1826.06, + "words": [ + { + "word": " how", + "start": 1825.18, + "end": 1825.52, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 1825.52, + "end": 1825.64, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 1825.64, + "end": 1825.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1825.84, + "end": 1826.06, + "probability": 0.97119140625 + } + ] + }, + { + "id": 1138, + "text": "I think it was", + "start": 1826.06, + "end": 1826.66, + "words": [ + { + "word": " I", + "start": 1826.06, + "end": 1826.18, + "probability": 0.99658203125 + }, + { + "word": " think", + "start": 1826.18, + "end": 1826.38, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1826.38, + "end": 1826.5, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1826.5, + "end": 1826.66, + "probability": 1.0 + } + ] + }, + { + "id": 1139, + "text": "24 megs", + "start": 1826.66, + "end": 1827.56, + "words": [ + { + "word": " 24", + "start": 1826.66, + "end": 1827.08, + "probability": 0.98681640625 + }, + { + "word": " megs", + "start": 1827.08, + "end": 1827.56, + "probability": 0.6240234375 + } + ] + }, + { + "id": 1140, + "text": "and to get it", + "start": 1827.58, + "end": 1828.22, + "words": [ + { + "word": " and", + "start": 1827.58, + "end": 1827.7, + "probability": 0.7734375 + }, + { + "word": " to", + "start": 1827.7, + "end": 1827.9, + "probability": 0.99609375 + }, + { + "word": " get", + "start": 1827.9, + "end": 1828.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 1828.06, + "end": 1828.22, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1141, + "text": "to 256", + "start": 1828.22, + "end": 1829.56, + "words": [ + { + "word": " to", + "start": 1828.22, + "end": 1828.36, + "probability": 0.51025390625 + }, + { + "word": " 256", + "start": 1828.36, + "end": 1829.56, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1142, + "text": "you know", + "start": 1829.56, + "end": 1830.72, + "words": [ + { + "word": " you", + "start": 1829.56, + "end": 1830.38, + "probability": 0.0268096923828125 + }, + { + "word": " know", + "start": 1830.38, + "end": 1830.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1143, + "text": "there was some", + "start": 1830.72, + "end": 1831.06, + "words": [ + { + "word": " there", + "start": 1830.72, + "end": 1830.82, + "probability": 0.8408203125 + }, + { + "word": " was", + "start": 1830.82, + "end": 1830.94, + "probability": 0.32373046875 + }, + { + "word": " some", + "start": 1830.94, + "end": 1831.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1144, + "text": "YouTube videos", + "start": 1831.06, + "end": 1831.66, + "words": [ + { + "word": " YouTube", + "start": 1831.06, + "end": 1831.34, + "probability": 0.873046875 + }, + { + "word": " videos", + "start": 1831.34, + "end": 1831.66, + "probability": 0.90380859375 + } + ] + }, + { + "id": 1145, + "text": "on that", + "start": 1833.34, + "end": 1834.04, + "words": [ + { + "word": " on", + "start": 1833.34, + "end": 1833.8, + "probability": 0.837890625 + }, + { + "word": " that", + "start": 1833.8, + "end": 1834.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1146, + "text": "that was pretty", + "start": 1834.04, + "end": 1834.6, + "words": [ + { + "word": " that", + "start": 1834.04, + "end": 1834.18, + "probability": 0.916015625 + }, + { + "word": " was", + "start": 1834.18, + "end": 1834.36, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 1834.36, + "end": 1834.6, + "probability": 1.0 + } + ] + }, + { + "id": 1147, + "text": "straightforward", + "start": 1834.6, + "end": 1835.12, + "words": [ + { + "word": " straightforward", + "start": 1834.6, + "end": 1835.12, + "probability": 0.62939453125 + } + ] + }, + { + "id": 1148, + "text": "but I do have it", + "start": 1835.12, + "end": 1836.0, + "words": [ + { + "word": " but", + "start": 1835.12, + "end": 1835.46, + "probability": 0.8916015625 + }, + { + "word": " I", + "start": 1835.46, + "end": 1835.58, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 1835.58, + "end": 1835.7, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1835.7, + "end": 1835.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 1835.86, + "end": 1836.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1149, + "text": "set up for 10", + "start": 1836.0, + "end": 1836.58, + "words": [ + { + "word": " set", + "start": 1836.0, + "end": 1836.16, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 1836.16, + "end": 1836.28, + "probability": 1.0 + }, + { + "word": " for", + "start": 1836.28, + "end": 1836.44, + "probability": 0.998046875 + }, + { + "word": " 10", + "start": 1836.44, + "end": 1836.58, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1150, + "text": "and I'm", + "start": 1836.58, + "end": 1836.96, + "words": [ + { + "word": " and", + "start": 1836.58, + "end": 1836.8, + "probability": 0.9853515625 + }, + { + "word": " I'm", + "start": 1836.8, + "end": 1836.96, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1151, + "text": "playing around with it", + "start": 1837.56, + "end": 1838.3, + "words": [ + { + "word": " playing", + "start": 1837.56, + "end": 1837.82, + "probability": 0.9609375 + }, + { + "word": " around", + "start": 1837.82, + "end": 1838.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 1838.0, + "end": 1838.22, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 1838.22, + "end": 1838.3, + "probability": 1.0 + } + ] + }, + { + "id": 1152, + "text": "but before I start", + "start": 1838.3, + "end": 1839.1, + "words": [ + { + "word": " but", + "start": 1838.3, + "end": 1838.4, + "probability": 0.99267578125 + }, + { + "word": " before", + "start": 1838.4, + "end": 1838.7, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1838.7, + "end": 1838.88, + "probability": 1.0 + }, + { + "word": " start", + "start": 1838.88, + "end": 1839.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1153, + "text": "installing stuff", + "start": 1839.1, + "end": 1839.88, + "words": [ + { + "word": " installing", + "start": 1839.1, + "end": 1839.58, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1839.58, + "end": 1839.88, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1154, + "text": "it's not going to be", + "start": 1840.46, + "end": 1841.36, + "words": [ + { + "word": " it's", + "start": 1840.46, + "end": 1840.92, + "probability": 0.8427734375 + }, + { + "word": " not", + "start": 1840.92, + "end": 1841.02, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 1841.02, + "end": 1841.18, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 1841.18, + "end": 1841.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 1841.26, + "end": 1841.36, + "probability": 1.0 + } + ] + }, + { + "id": 1155, + "text": "overly useful", + "start": 1841.36, + "end": 1842.1, + "words": [ + { + "word": " overly", + "start": 1841.36, + "end": 1841.62, + "probability": 1.0 + }, + { + "word": " useful", + "start": 1841.62, + "end": 1842.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1156, + "text": "yeah", + "start": 1842.1, + "end": 1842.58, + "words": [ + { + "word": " yeah", + "start": 1842.1, + "end": 1842.58, + "probability": 0.1688232421875 + } + ] + }, + { + "id": 1157, + "text": "I bet if you just", + "start": 1842.58, + "end": 1843.54, + "words": [ + { + "word": " I", + "start": 1842.58, + "end": 1842.86, + "probability": 0.94580078125 + }, + { + "word": " bet", + "start": 1842.86, + "end": 1843.16, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1843.16, + "end": 1843.3, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1843.3, + "end": 1843.38, + "probability": 1.0 + }, + { + "word": " just", + "start": 1843.38, + "end": 1843.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1158, + "text": "Google virtual box", + "start": 1843.54, + "end": 1845.0, + "words": [ + { + "word": " Google", + "start": 1843.54, + "end": 1843.84, + "probability": 0.487060546875 + }, + { + "word": " virtual", + "start": 1843.84, + "end": 1844.7, + "probability": 0.320556640625 + }, + { + "word": " box", + "start": 1844.7, + "end": 1845.0, + "probability": 0.9541015625 + } + ] + }, + { + "id": 1159, + "text": "GPU pass through", + "start": 1845.0, + "end": 1845.84, + "words": [ + { + "word": " GPU", + "start": 1845.0, + "end": 1845.28, + "probability": 0.998046875 + }, + { + "word": " pass", + "start": 1845.28, + "end": 1845.64, + "probability": 0.85693359375 + }, + { + "word": " through", + "start": 1845.64, + "end": 1845.84, + "probability": 0.73291015625 + } + ] + }, + { + "id": 1160, + "text": "you'll find what you need", + "start": 1845.84, + "end": 1846.72, + "words": [ + { + "word": " you'll", + "start": 1845.84, + "end": 1846.1, + "probability": 0.998046875 + }, + { + "word": " find", + "start": 1846.1, + "end": 1846.32, + "probability": 1.0 + }, + { + "word": " what", + "start": 1846.32, + "end": 1846.46, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1846.46, + "end": 1846.56, + "probability": 1.0 + }, + { + "word": " need", + "start": 1846.56, + "end": 1846.72, + "probability": 1.0 + } + ] + }, + { + "id": 1161, + "text": "not to mention that", + "start": 1846.72, + "end": 1847.84, + "words": [ + { + "word": " not", + "start": 1846.72, + "end": 1847.24, + "probability": 0.97314453125 + }, + { + "word": " to", + "start": 1847.24, + "end": 1847.38, + "probability": 1.0 + }, + { + "word": " mention", + "start": 1847.38, + "end": 1847.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1847.6, + "end": 1847.84, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1162, + "text": "there's an interesting", + "start": 1847.84, + "end": 1848.66, + "words": [ + { + "word": " there's", + "start": 1847.84, + "end": 1848.24, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 1848.24, + "end": 1848.4, + "probability": 0.99951171875 + }, + { + "word": " interesting", + "start": 1848.4, + "end": 1848.66, + "probability": 1.0 + } + ] + }, + { + "id": 1163, + "text": "thing that happens", + "start": 1848.66, + "end": 1849.34, + "words": [ + { + "word": " thing", + "start": 1848.66, + "end": 1848.94, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1848.94, + "end": 1849.08, + "probability": 0.99853515625 + }, + { + "word": " happens", + "start": 1849.08, + "end": 1849.34, + "probability": 1.0 + } + ] + }, + { + "id": 1164, + "text": "with these types of things", + "start": 1849.34, + "end": 1851.02, + "words": [ + { + "word": " with", + "start": 1849.34, + "end": 1849.7, + "probability": 0.99755859375 + }, + { + "word": " these", + "start": 1849.7, + "end": 1850.42, + "probability": 0.9990234375 + }, + { + "word": " types", + "start": 1850.42, + "end": 1850.74, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1850.74, + "end": 1850.88, + "probability": 1.0 + }, + { + "word": " things", + "start": 1850.88, + "end": 1851.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1165, + "text": "even though", + "start": 1851.02, + "end": 1851.58, + "words": [ + { + "word": " even", + "start": 1851.02, + "end": 1851.3, + "probability": 0.998046875 + }, + { + "word": " though", + "start": 1851.3, + "end": 1851.58, + "probability": 1.0 + } + ] + }, + { + "id": 1166, + "text": "your machine", + "start": 1851.58, + "end": 1852.28, + "words": [ + { + "word": " your", + "start": 1851.58, + "end": 1851.98, + "probability": 0.998046875 + }, + { + "word": " machine", + "start": 1851.98, + "end": 1852.28, + "probability": 0.56787109375 + } + ] + }, + { + "id": 1167, + "text": "your virtual machine", + "start": 1852.28, + "end": 1853.34, + "words": [ + { + "word": " your", + "start": 1852.28, + "end": 1852.62, + "probability": 0.76611328125 + }, + { + "word": " virtual", + "start": 1852.62, + "end": 1853.12, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1853.12, + "end": 1853.34, + "probability": 1.0 + } + ] + }, + { + "id": 1168, + "text": "may only be reporting", + "start": 1853.34, + "end": 1854.42, + "words": [ + { + "word": " may", + "start": 1853.34, + "end": 1853.62, + "probability": 0.9189453125 + }, + { + "word": " only", + "start": 1853.62, + "end": 1853.76, + "probability": 0.99658203125 + }, + { + "word": " be", + "start": 1853.76, + "end": 1854.1, + "probability": 1.0 + }, + { + "word": " reporting", + "start": 1854.1, + "end": 1854.42, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1169, + "text": "that 256 megs of RAM", + "start": 1854.42, + "end": 1855.92, + "words": [ + { + "word": " that", + "start": 1854.42, + "end": 1854.68, + "probability": 0.99853515625 + }, + { + "word": " 256", + "start": 1854.68, + "end": 1855.08, + "probability": 0.99658203125 + }, + { + "word": " megs", + "start": 1855.08, + "end": 1855.66, + "probability": 0.8427734375 + }, + { + "word": " of", + "start": 1855.66, + "end": 1855.72, + "probability": 0.99951171875 + }, + { + "word": " RAM", + "start": 1855.72, + "end": 1855.92, + "probability": 0.9384765625 + } + ] + }, + { + "id": 1170, + "text": "it's", + "start": 1856.54, + "end": 1857.0, + "words": [ + { + "word": " it's", + "start": 1856.54, + "end": 1857.0, + "probability": 0.97705078125 + } + ] + }, + { + "id": 1171, + "text": "still passing that", + "start": 1857.0, + "end": 1858.24, + "words": [ + { + "word": " still", + "start": 1857.0, + "end": 1857.2, + "probability": 0.10833740234375 + }, + { + "word": " passing", + "start": 1857.2, + "end": 1857.92, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1857.92, + "end": 1858.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1172, + "text": "through to the real card", + "start": 1858.24, + "end": 1859.3, + "words": [ + { + "word": " through", + "start": 1858.24, + "end": 1858.48, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1858.48, + "end": 1858.62, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1858.62, + "end": 1858.72, + "probability": 1.0 + }, + { + "word": " real", + "start": 1858.72, + "end": 1858.94, + "probability": 0.9990234375 + }, + { + "word": " card", + "start": 1858.94, + "end": 1859.3, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1173, + "text": "and then getting", + "start": 1859.3, + "end": 1860.18, + "words": [ + { + "word": " and", + "start": 1859.3, + "end": 1859.78, + "probability": 0.9462890625 + }, + { + "word": " then", + "start": 1859.78, + "end": 1859.92, + "probability": 0.99658203125 + }, + { + "word": " getting", + "start": 1859.92, + "end": 1860.18, + "probability": 1.0 + } + ] + }, + { + "id": 1174, + "text": "a response back", + "start": 1860.18, + "end": 1860.98, + "words": [ + { + "word": " a", + "start": 1860.18, + "end": 1860.34, + "probability": 0.99951171875 + }, + { + "word": " response", + "start": 1860.34, + "end": 1860.6, + "probability": 1.0 + }, + { + "word": " back", + "start": 1860.6, + "end": 1860.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1175, + "text": "and that happens", + "start": 1860.98, + "end": 1862.62, + "words": [ + { + "word": " and", + "start": 1860.98, + "end": 1861.7, + "probability": 0.1678466796875 + }, + { + "word": " that", + "start": 1861.7, + "end": 1862.08, + "probability": 0.98046875 + }, + { + "word": " happens", + "start": 1862.08, + "end": 1862.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1176, + "text": "really fast", + "start": 1862.62, + "end": 1863.74, + "words": [ + { + "word": " really", + "start": 1862.62, + "end": 1863.3, + "probability": 0.998046875 + }, + { + "word": " fast", + "start": 1863.3, + "end": 1863.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1177, + "text": "so the", + "start": 1863.74, + "end": 1864.96, + "words": [ + { + "word": " so", + "start": 1863.74, + "end": 1864.4, + "probability": 0.60546875 + }, + { + "word": " the", + "start": 1864.4, + "end": 1864.96, + "probability": 0.76025390625 + } + ] + }, + { + "id": 1178, + "text": "even though it says", + "start": 1864.96, + "end": 1866.38, + "words": [ + { + "word": " even", + "start": 1864.96, + "end": 1865.76, + "probability": 0.9775390625 + }, + { + "word": " though", + "start": 1865.76, + "end": 1865.98, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1865.98, + "end": 1866.1, + "probability": 0.99951171875 + }, + { + "word": " says", + "start": 1866.1, + "end": 1866.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1179, + "text": "that it has less RAM", + "start": 1866.38, + "end": 1867.52, + "words": [ + { + "word": " that", + "start": 1866.38, + "end": 1866.64, + "probability": 0.99267578125 + }, + { + "word": " it", + "start": 1866.64, + "end": 1866.76, + "probability": 0.99609375 + }, + { + "word": " has", + "start": 1866.76, + "end": 1866.92, + "probability": 0.99951171875 + }, + { + "word": " less", + "start": 1866.92, + "end": 1867.2, + "probability": 0.99560546875 + }, + { + "word": " RAM", + "start": 1867.2, + "end": 1867.52, + "probability": 0.17431640625 + } + ] + }, + { + "id": 1180, + "text": "there", + "start": 1867.52, + "end": 1867.88, + "words": [ + { + "word": " there", + "start": 1867.52, + "end": 1867.88, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1181, + "text": "that's initially", + "start": 1867.88, + "end": 1869.12, + "words": [ + { + "word": " that's", + "start": 1867.88, + "end": 1868.48, + "probability": 0.978515625 + }, + { + "word": " initially", + "start": 1868.48, + "end": 1869.12, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1182, + "text": "utilizable", + "start": 1869.12, + "end": 1869.92, + "words": [ + { + "word": " utilizable", + "start": 1869.12, + "end": 1869.92, + "probability": 0.8583984375 + } + ] + }, + { + "id": 1183, + "text": "you know", + "start": 1869.92, + "end": 1870.64, + "words": [ + { + "word": " you", + "start": 1869.92, + "end": 1870.56, + "probability": 0.7900390625 + }, + { + "word": " know", + "start": 1870.56, + "end": 1870.64, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1184, + "text": "that you can use", + "start": 1870.64, + "end": 1871.46, + "words": [ + { + "word": " that", + "start": 1870.64, + "end": 1870.86, + "probability": 0.978515625 + }, + { + "word": " you", + "start": 1870.86, + "end": 1871.04, + "probability": 1.0 + }, + { + "word": " can", + "start": 1871.04, + "end": 1871.12, + "probability": 0.9990234375 + }, + { + "word": " use", + "start": 1871.12, + "end": 1871.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1185, + "text": "it's still pretty quick", + "start": 1872.64, + "end": 1873.98, + "words": [ + { + "word": " it's", + "start": 1872.64, + "end": 1873.16, + "probability": 0.93359375 + }, + { + "word": " still", + "start": 1873.16, + "end": 1873.34, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 1873.34, + "end": 1873.6, + "probability": 0.99951171875 + }, + { + "word": " quick", + "start": 1873.6, + "end": 1873.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1186, + "text": "and it may not be", + "start": 1873.98, + "end": 1875.6, + "words": [ + { + "word": " and", + "start": 1873.98, + "end": 1874.64, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 1874.64, + "end": 1874.96, + "probability": 0.9970703125 + }, + { + "word": " may", + "start": 1874.96, + "end": 1875.2, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1875.2, + "end": 1875.44, + "probability": 1.0 + }, + { + "word": " be", + "start": 1875.44, + "end": 1875.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1187, + "text": "the bottleneck", + "start": 1875.6, + "end": 1876.18, + "words": [ + { + "word": " the", + "start": 1875.6, + "end": 1875.74, + "probability": 0.99951171875 + }, + { + "word": " bottleneck", + "start": 1875.74, + "end": 1876.18, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1188, + "text": "that you think", + "start": 1876.18, + "end": 1876.6, + "words": [ + { + "word": " that", + "start": 1876.18, + "end": 1876.3, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1876.3, + "end": 1876.4, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 1876.4, + "end": 1876.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1189, + "text": "it's going to be", + "start": 1876.6, + "end": 1877.26, + "words": [ + { + "word": " it's", + "start": 1876.6, + "end": 1876.76, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 1876.76, + "end": 1876.88, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1876.88, + "end": 1877.08, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1877.08, + "end": 1877.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1190, + "text": "I hadn't tried", + "start": 1877.26, + "end": 1878.46, + "words": [ + { + "word": " I", + "start": 1877.26, + "end": 1877.7, + "probability": 0.767578125 + }, + { + "word": " hadn't", + "start": 1877.7, + "end": 1878.2, + "probability": 0.98828125 + }, + { + "word": " tried", + "start": 1878.2, + "end": 1878.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1191, + "text": "with any photo", + "start": 1878.46, + "end": 1879.24, + "words": [ + { + "word": " with", + "start": 1878.46, + "end": 1878.78, + "probability": 0.99267578125 + }, + { + "word": " any", + "start": 1878.78, + "end": 1878.96, + "probability": 0.99951171875 + }, + { + "word": " photo", + "start": 1878.96, + "end": 1879.24, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1192, + "text": "I just", + "start": 1879.24, + "end": 1879.66, + "words": [ + { + "word": " I", + "start": 1879.24, + "end": 1879.48, + "probability": 0.9853515625 + }, + { + "word": " just", + "start": 1879.48, + "end": 1879.66, + "probability": 0.9921875 + } + ] + }, + { + "id": 1193, + "text": "before I said", + "start": 1879.66, + "end": 1880.42, + "words": [ + { + "word": " before", + "start": 1879.66, + "end": 1879.98, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 1879.98, + "end": 1880.2, + "probability": 0.96044921875 + }, + { + "word": " said", + "start": 1880.2, + "end": 1880.42, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1194, + "text": "before I got further", + "start": 1880.42, + "end": 1881.44, + "words": [ + { + "word": " before", + "start": 1880.42, + "end": 1880.64, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 1880.64, + "end": 1880.86, + "probability": 0.99853515625 + }, + { + "word": " got", + "start": 1880.86, + "end": 1881.02, + "probability": 0.99951171875 + }, + { + "word": " further", + "start": 1881.02, + "end": 1881.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1195, + "text": "I thought I would ask", + "start": 1881.44, + "end": 1882.78, + "words": [ + { + "word": " I", + "start": 1881.44, + "end": 1881.7, + "probability": 0.93798828125 + }, + { + "word": " thought", + "start": 1881.7, + "end": 1882.22, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 1882.22, + "end": 1882.38, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 1882.38, + "end": 1882.52, + "probability": 0.99951171875 + }, + { + "word": " ask", + "start": 1882.52, + "end": 1882.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1196, + "text": "and the other", + "start": 1882.78, + "end": 1884.24, + "words": [ + { + "word": " and", + "start": 1882.78, + "end": 1883.42, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 1883.42, + "end": 1883.98, + "probability": 0.9990234375 + }, + { + "word": " other", + "start": 1883.98, + "end": 1884.24, + "probability": 1.0 + } + ] + }, + { + "id": 1197, + "text": "little problem", + "start": 1884.24, + "end": 1884.92, + "words": [ + { + "word": " little", + "start": 1884.24, + "end": 1884.48, + "probability": 0.99951171875 + }, + { + "word": " problem", + "start": 1884.48, + "end": 1884.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1198, + "text": "with that virtual box", + "start": 1884.92, + "end": 1885.94, + "words": [ + { + "word": " with", + "start": 1884.92, + "end": 1885.08, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1885.08, + "end": 1885.22, + "probability": 0.9990234375 + }, + { + "word": " virtual", + "start": 1885.22, + "end": 1885.58, + "probability": 0.97607421875 + }, + { + "word": " box", + "start": 1885.58, + "end": 1885.94, + "probability": 0.71630859375 + } + ] + }, + { + "id": 1199, + "text": "is", + "start": 1885.94, + "end": 1886.24, + "words": [ + { + "word": " is", + "start": 1885.94, + "end": 1886.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1200, + "text": "you know", + "start": 1886.24, + "end": 1886.98, + "words": [ + { + "word": " you", + "start": 1886.24, + "end": 1886.42, + "probability": 0.6005859375 + }, + { + "word": " know", + "start": 1886.42, + "end": 1886.98, + "probability": 0.501953125 + } + ] + }, + { + "id": 1201, + "text": "so I have", + "start": 1887.0, + "end": 1887.48, + "words": [ + { + "word": " so", + "start": 1887.0, + "end": 1887.2, + "probability": 0.1097412109375 + }, + { + "word": " I", + "start": 1887.2, + "end": 1887.32, + "probability": 0.1563720703125 + }, + { + "word": " have", + "start": 1887.32, + "end": 1887.48, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1202, + "text": "let's say I have", + "start": 1887.48, + "end": 1888.08, + "words": [ + { + "word": " let's", + "start": 1887.48, + "end": 1887.82, + "probability": 0.51513671875 + }, + { + "word": " say", + "start": 1887.82, + "end": 1887.9, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 1887.9, + "end": 1887.98, + "probability": 0.9384765625 + }, + { + "word": " have", + "start": 1887.98, + "end": 1888.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1203, + "text": "a USB printer", + "start": 1888.08, + "end": 1888.74, + "words": [ + { + "word": " a", + "start": 1888.08, + "end": 1888.12, + "probability": 0.9990234375 + }, + { + "word": " USB", + "start": 1888.12, + "end": 1888.38, + "probability": 0.904296875 + }, + { + "word": " printer", + "start": 1888.38, + "end": 1888.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1204, + "text": "and it sees that port", + "start": 1889.5, + "end": 1891.76, + "words": [ + { + "word": " and", + "start": 1889.5, + "end": 1889.98, + "probability": 0.7802734375 + }, + { + "word": " it", + "start": 1889.98, + "end": 1890.42, + "probability": 0.8525390625 + }, + { + "word": " sees", + "start": 1890.42, + "end": 1891.12, + "probability": 0.96875 + }, + { + "word": " that", + "start": 1891.12, + "end": 1891.46, + "probability": 0.99951171875 + }, + { + "word": " port", + "start": 1891.46, + "end": 1891.76, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1205, + "text": "but it doesn't", + "start": 1891.76, + "end": 1892.86, + "words": [ + { + "word": " but", + "start": 1891.76, + "end": 1892.22, + "probability": 0.66748046875 + }, + { + "word": " it", + "start": 1892.22, + "end": 1892.4, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 1892.4, + "end": 1892.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1206, + "text": "share between", + "start": 1892.86, + "end": 1894.06, + "words": [ + { + "word": " share", + "start": 1892.86, + "end": 1893.66, + "probability": 0.9970703125 + }, + { + "word": " between", + "start": 1893.66, + "end": 1894.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1207, + "text": "the host machine", + "start": 1894.06, + "end": 1894.9, + "words": [ + { + "word": " the", + "start": 1894.06, + "end": 1894.42, + "probability": 0.9990234375 + }, + { + "word": " host", + "start": 1894.42, + "end": 1894.62, + "probability": 0.998046875 + }, + { + "word": " machine", + "start": 1894.62, + "end": 1894.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1208, + "text": "I couldn't really", + "start": 1894.9, + "end": 1895.54, + "words": [ + { + "word": " I", + "start": 1894.9, + "end": 1895.14, + "probability": 0.397705078125 + }, + { + "word": " couldn't", + "start": 1895.14, + "end": 1895.38, + "probability": 0.998046875 + }, + { + "word": " really", + "start": 1895.38, + "end": 1895.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1209, + "text": "figure out", + "start": 1895.54, + "end": 1896.0, + "words": [ + { + "word": " figure", + "start": 1895.54, + "end": 1895.8, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 1895.8, + "end": 1896.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1210, + "text": "how to get any", + "start": 1896.0, + "end": 1896.8, + "words": [ + { + "word": " how", + "start": 1896.0, + "end": 1896.18, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1896.18, + "end": 1896.34, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1896.34, + "end": 1896.52, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 1896.52, + "end": 1896.8, + "probability": 0.99609375 + } + ] + }, + { + "id": 1211, + "text": "or the webcam", + "start": 1896.8, + "end": 1897.76, + "words": [ + { + "word": " or", + "start": 1896.8, + "end": 1897.32, + "probability": 0.90966796875 + }, + { + "word": " the", + "start": 1897.32, + "end": 1897.42, + "probability": 0.99951171875 + }, + { + "word": " webcam", + "start": 1897.42, + "end": 1897.76, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1212, + "text": "you know it sees", + "start": 1897.76, + "end": 1898.66, + "words": [ + { + "word": " you", + "start": 1897.76, + "end": 1898.16, + "probability": 0.95166015625 + }, + { + "word": " know", + "start": 1898.16, + "end": 1898.34, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1898.34, + "end": 1898.46, + "probability": 0.98974609375 + }, + { + "word": " sees", + "start": 1898.46, + "end": 1898.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1213, + "text": "the port", + "start": 1898.66, + "end": 1899.08, + "words": [ + { + "word": " the", + "start": 1898.66, + "end": 1898.86, + "probability": 0.99951171875 + }, + { + "word": " port", + "start": 1898.86, + "end": 1899.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 1214, + "text": "but it's like", + "start": 1899.08, + "end": 1900.36, + "words": [ + { + "word": " but", + "start": 1899.08, + "end": 1899.38, + "probability": 0.99462890625 + }, + { + "word": " it's", + "start": 1899.38, + "end": 1900.22, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1900.22, + "end": 1900.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1215, + "text": "my host computer", + "start": 1900.36, + "end": 1901.46, + "words": [ + { + "word": " my", + "start": 1900.36, + "end": 1900.68, + "probability": 0.9990234375 + }, + { + "word": " host", + "start": 1900.68, + "end": 1900.94, + "probability": 0.9150390625 + }, + { + "word": " computer", + "start": 1900.94, + "end": 1901.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1216, + "text": "has a webcam access", + "start": 1902.06, + "end": 1903.42, + "words": [ + { + "word": " has", + "start": 1902.06, + "end": 1902.54, + "probability": 0.8291015625 + }, + { + "word": " a", + "start": 1902.54, + "end": 1902.68, + "probability": 0.60693359375 + }, + { + "word": " webcam", + "start": 1902.68, + "end": 1903.02, + "probability": 0.99609375 + }, + { + "word": " access", + "start": 1903.02, + "end": 1903.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1217, + "text": "but I wasn't sure", + "start": 1903.42, + "end": 1904.48, + "words": [ + { + "word": " but", + "start": 1903.42, + "end": 1903.78, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 1903.78, + "end": 1903.88, + "probability": 0.99560546875 + }, + { + "word": " wasn't", + "start": 1903.88, + "end": 1904.26, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1904.26, + "end": 1904.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1218, + "text": "how to", + "start": 1904.48, + "end": 1905.18, + "words": [ + { + "word": " how", + "start": 1904.48, + "end": 1904.96, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1904.96, + "end": 1905.18, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1219, + "text": "at the top of the screen", + "start": 1905.18, + "end": 1906.74, + "words": [ + { + "word": " at", + "start": 1905.18, + "end": 1906.02, + "probability": 0.66650390625 + }, + { + "word": " the", + "start": 1906.02, + "end": 1906.14, + "probability": 0.99951171875 + }, + { + "word": " top", + "start": 1906.14, + "end": 1906.38, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1906.38, + "end": 1906.52, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1906.52, + "end": 1906.56, + "probability": 0.9990234375 + }, + { + "word": " screen", + "start": 1906.56, + "end": 1906.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1220, + "text": "there's going to be", + "start": 1906.74, + "end": 1907.9, + "words": [ + { + "word": " there's", + "start": 1906.74, + "end": 1907.5, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 1907.5, + "end": 1907.62, + "probability": 0.958984375 + }, + { + "word": " to", + "start": 1907.62, + "end": 1907.74, + "probability": 1.0 + }, + { + "word": " be", + "start": 1907.74, + "end": 1907.9, + "probability": 1.0 + } + ] + }, + { + "id": 1221, + "text": "like a USB devices", + "start": 1907.9, + "end": 1909.28, + "words": [ + { + "word": " like", + "start": 1907.9, + "end": 1908.3, + "probability": 0.990234375 + }, + { + "word": " a", + "start": 1908.3, + "end": 1908.42, + "probability": 1.0 + }, + { + "word": " USB", + "start": 1908.42, + "end": 1908.84, + "probability": 0.98193359375 + }, + { + "word": " devices", + "start": 1908.84, + "end": 1909.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1222, + "text": "drop down menu", + "start": 1909.28, + "end": 1910.58, + "words": [ + { + "word": " drop", + "start": 1909.28, + "end": 1910.08, + "probability": 0.98828125 + }, + { + "word": " down", + "start": 1910.08, + "end": 1910.28, + "probability": 0.8916015625 + }, + { + "word": " menu", + "start": 1910.28, + "end": 1910.58, + "probability": 1.0 + } + ] + }, + { + "id": 1223, + "text": "right", + "start": 1910.58, + "end": 1911.36, + "words": [ + { + "word": " right", + "start": 1910.58, + "end": 1911.36, + "probability": 0.7783203125 + } + ] + }, + { + "id": 1224, + "text": "and you can go in there", + "start": 1911.36, + "end": 1912.88, + "words": [ + { + "word": " and", + "start": 1911.36, + "end": 1911.82, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 1911.82, + "end": 1912.38, + "probability": 0.9814453125 + }, + { + "word": " can", + "start": 1912.38, + "end": 1912.52, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1912.52, + "end": 1912.62, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1912.62, + "end": 1912.72, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1912.72, + "end": 1912.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1225, + "text": "and then assign it", + "start": 1912.88, + "end": 1913.92, + "words": [ + { + "word": " and", + "start": 1912.88, + "end": 1913.1, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1913.1, + "end": 1913.26, + "probability": 0.982421875 + }, + { + "word": " assign", + "start": 1913.26, + "end": 1913.68, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1913.68, + "end": 1913.92, + "probability": 1.0 + } + ] + }, + { + "id": 1226, + "text": "to whatever", + "start": 1913.92, + "end": 1914.68, + "words": [ + { + "word": " to", + "start": 1913.92, + "end": 1914.16, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 1914.16, + "end": 1914.68, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1227, + "text": "virtual machine", + "start": 1914.68, + "end": 1915.32, + "words": [ + { + "word": " virtual", + "start": 1914.68, + "end": 1915.04, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1915.04, + "end": 1915.32, + "probability": 1.0 + } + ] + }, + { + "id": 1228, + "text": "you want", + "start": 1915.32, + "end": 1915.7, + "words": [ + { + "word": " you", + "start": 1915.32, + "end": 1915.52, + "probability": 1.0 + }, + { + "word": " want", + "start": 1915.52, + "end": 1915.7, + "probability": 1.0 + } + ] + }, + { + "id": 1229, + "text": "but by default", + "start": 1915.7, + "end": 1916.48, + "words": [ + { + "word": " but", + "start": 1915.7, + "end": 1915.92, + "probability": 0.9990234375 + }, + { + "word": " by", + "start": 1915.92, + "end": 1916.06, + "probability": 1.0 + }, + { + "word": " default", + "start": 1916.06, + "end": 1916.48, + "probability": 1.0 + } + ] + }, + { + "id": 1230, + "text": "you can get", + "start": 1916.48, + "end": 1916.98, + "words": [ + { + "word": " you", + "start": 1916.48, + "end": 1916.98, + "probability": 0.1461181640625 + }, + { + "word": " can", + "start": 1916.98, + "end": 1916.98, + "probability": 0.1295166015625 + }, + { + "word": " get", + "start": 1916.98, + "end": 1916.98, + "probability": 0.0276336669921875 + } + ] + }, + { + "id": 1231, + "text": "those are on", + "start": 1917.0, + "end": 1918.02, + "words": [ + { + "word": " those", + "start": 1917.0, + "end": 1917.4, + "probability": 0.55810546875 + }, + { + "word": " are", + "start": 1917.4, + "end": 1917.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 1917.78, + "end": 1918.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1232, + "text": "the host machine first", + "start": 1918.02, + "end": 1918.84, + "words": [ + { + "word": " the", + "start": 1918.02, + "end": 1918.14, + "probability": 1.0 + }, + { + "word": " host", + "start": 1918.14, + "end": 1918.28, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1918.28, + "end": 1918.46, + "probability": 1.0 + }, + { + "word": " first", + "start": 1918.46, + "end": 1918.84, + "probability": 1.0 + } + ] + }, + { + "id": 1233, + "text": "and so then you can", + "start": 1918.84, + "end": 1920.78, + "words": [ + { + "word": " and", + "start": 1918.84, + "end": 1919.28, + "probability": 0.003589630126953125 + }, + { + "word": " so", + "start": 1919.28, + "end": 1920.26, + "probability": 0.97509765625 + }, + { + "word": " then", + "start": 1920.26, + "end": 1920.52, + "probability": 0.841796875 + }, + { + "word": " you", + "start": 1920.52, + "end": 1920.66, + "probability": 0.72314453125 + }, + { + "word": " can", + "start": 1920.66, + "end": 1920.78, + "probability": 0.71630859375 + } + ] + }, + { + "id": 1234, + "text": "when you go and assign", + "start": 1920.78, + "end": 1921.84, + "words": [ + { + "word": " when", + "start": 1920.78, + "end": 1921.06, + "probability": 0.69775390625 + }, + { + "word": " you", + "start": 1921.06, + "end": 1921.36, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 1921.36, + "end": 1921.52, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1921.52, + "end": 1921.64, + "probability": 0.9267578125 + }, + { + "word": " assign", + "start": 1921.64, + "end": 1921.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1235, + "text": "it to a virtual machine", + "start": 1921.84, + "end": 1922.62, + "words": [ + { + "word": " it", + "start": 1921.84, + "end": 1922.02, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1922.02, + "end": 1922.12, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1922.12, + "end": 1922.16, + "probability": 0.99853515625 + }, + { + "word": " virtual", + "start": 1922.16, + "end": 1922.38, + "probability": 0.998046875 + }, + { + "word": " machine", + "start": 1922.38, + "end": 1922.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1236, + "text": "it virtually", + "start": 1922.62, + "end": 1923.6, + "words": [ + { + "word": " it", + "start": 1922.62, + "end": 1922.96, + "probability": 0.95458984375 + }, + { + "word": " virtually", + "start": 1922.96, + "end": 1923.6, + "probability": 0.90673828125 + } + ] + }, + { + "id": 1237, + "text": "unplugs it", + "start": 1924.32, + "end": 1924.96, + "words": [ + { + "word": " unplugs", + "start": 1924.32, + "end": 1924.8, + "probability": 0.97998046875 + }, + { + "word": " it", + "start": 1924.8, + "end": 1924.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1238, + "text": "from the host machine", + "start": 1924.96, + "end": 1925.68, + "words": [ + { + "word": " from", + "start": 1924.96, + "end": 1925.14, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1925.14, + "end": 1925.26, + "probability": 1.0 + }, + { + "word": " host", + "start": 1925.26, + "end": 1925.42, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1925.42, + "end": 1925.68, + "probability": 1.0 + } + ] + }, + { + "id": 1239, + "text": "and plugs it into", + "start": 1925.68, + "end": 1926.54, + "words": [ + { + "word": " and", + "start": 1925.68, + "end": 1925.88, + "probability": 0.99609375 + }, + { + "word": " plugs", + "start": 1925.88, + "end": 1926.12, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 1926.12, + "end": 1926.3, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1926.3, + "end": 1926.54, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1240, + "text": "the virtual machine", + "start": 1926.54, + "end": 1927.94, + "words": [ + { + "word": " the", + "start": 1926.54, + "end": 1926.94, + "probability": 0.9990234375 + }, + { + "word": " virtual", + "start": 1926.94, + "end": 1927.58, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1927.58, + "end": 1927.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1241, + "text": "and you have to do", + "start": 1927.94, + "end": 1928.72, + "words": [ + { + "word": " and", + "start": 1927.94, + "end": 1928.28, + "probability": 0.80029296875 + }, + { + "word": " you", + "start": 1928.28, + "end": 1928.4, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1928.4, + "end": 1928.52, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1928.52, + "end": 1928.6, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 1928.6, + "end": 1928.72, + "probability": 1.0 + } + ] + }, + { + "id": 1242, + "text": "the same thing", + "start": 1928.72, + "end": 1929.12, + "words": [ + { + "word": " the", + "start": 1928.72, + "end": 1928.82, + "probability": 0.9990234375 + }, + { + "word": " same", + "start": 1928.82, + "end": 1928.96, + "probability": 0.9990234375 + }, + { + "word": " thing", + "start": 1928.96, + "end": 1929.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1243, + "text": "with network connections", + "start": 1929.12, + "end": 1929.86, + "words": [ + { + "word": " with", + "start": 1929.12, + "end": 1929.26, + "probability": 0.998046875 + }, + { + "word": " network", + "start": 1929.26, + "end": 1929.52, + "probability": 0.9931640625 + }, + { + "word": " connections", + "start": 1929.52, + "end": 1929.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1244, + "text": "right", + "start": 1929.86, + "end": 1930.18, + "words": [ + { + "word": " right", + "start": 1929.86, + "end": 1930.18, + "probability": 0.96435546875 + } + ] + }, + { + "id": 1245, + "text": "no network", + "start": 1930.18, + "end": 1931.02, + "words": [ + { + "word": " no", + "start": 1930.18, + "end": 1930.74, + "probability": 0.5625 + }, + { + "word": " network", + "start": 1930.74, + "end": 1931.02, + "probability": 0.974609375 + } + ] + }, + { + "id": 1246, + "text": "they're bridged", + "start": 1931.02, + "end": 1932.1, + "words": [ + { + "word": " they're", + "start": 1931.02, + "end": 1931.58, + "probability": 0.650390625 + }, + { + "word": " bridged", + "start": 1931.58, + "end": 1932.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 1247, + "text": "okay", + "start": 1932.1, + "end": 1932.32, + "words": [ + { + "word": " okay", + "start": 1932.1, + "end": 1932.32, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1248, + "text": "so", + "start": 1932.32, + "end": 1932.78, + "words": [ + { + "word": " so", + "start": 1932.32, + "end": 1932.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1249, + "text": "yeah that did it", + "start": 1932.78, + "end": 1933.62, + "words": [ + { + "word": " yeah", + "start": 1932.78, + "end": 1933.1, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1933.1, + "end": 1933.24, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 1933.24, + "end": 1933.48, + "probability": 1.0 + }, + { + "word": " it", + "start": 1933.48, + "end": 1933.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1250, + "text": "automatically", + "start": 1933.62, + "end": 1934.12, + "words": [ + { + "word": " automatically", + "start": 1933.62, + "end": 1934.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 1251, + "text": "the network", + "start": 1934.12, + "end": 1934.72, + "words": [ + { + "word": " the", + "start": 1934.12, + "end": 1934.44, + "probability": 0.9951171875 + }, + { + "word": " network", + "start": 1934.44, + "end": 1934.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1252, + "text": "I didn't have to do", + "start": 1934.72, + "end": 1935.64, + "words": [ + { + "word": " I", + "start": 1934.72, + "end": 1935.06, + "probability": 0.14990234375 + }, + { + "word": " didn't", + "start": 1935.06, + "end": 1935.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 1935.24, + "end": 1935.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1935.38, + "end": 1935.48, + "probability": 1.0 + }, + { + "word": " do", + "start": 1935.48, + "end": 1935.64, + "probability": 1.0 + } + ] + }, + { + "id": 1253, + "text": "much with that", + "start": 1935.64, + "end": 1936.26, + "words": [ + { + "word": " much", + "start": 1935.64, + "end": 1935.86, + "probability": 1.0 + }, + { + "word": " with", + "start": 1935.86, + "end": 1936.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1936.06, + "end": 1936.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1254, + "text": "it was just the", + "start": 1936.26, + "end": 1937.4, + "words": [ + { + "word": " it", + "start": 1936.26, + "end": 1936.58, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1936.58, + "end": 1936.74, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1936.74, + "end": 1937.14, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1937.14, + "end": 1937.4, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1255, + "text": "it could see", + "start": 1937.4, + "end": 1938.92, + "words": [ + { + "word": " it", + "start": 1937.4, + "end": 1937.8, + "probability": 0.369384765625 + }, + { + "word": " could", + "start": 1937.8, + "end": 1938.7, + "probability": 1.0 + }, + { + "word": " see", + "start": 1938.7, + "end": 1938.92, + "probability": 1.0 + } + ] + }, + { + "id": 1256, + "text": "there was a webcam", + "start": 1938.92, + "end": 1939.64, + "words": [ + { + "word": " there", + "start": 1938.92, + "end": 1939.1, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1939.1, + "end": 1939.22, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1939.22, + "end": 1939.36, + "probability": 1.0 + }, + { + "word": " webcam", + "start": 1939.36, + "end": 1939.64, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1257, + "text": "but it couldn't", + "start": 1939.64, + "end": 1940.46, + "words": [ + { + "word": " but", + "start": 1939.64, + "end": 1940.02, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1940.02, + "end": 1940.16, + "probability": 1.0 + }, + { + "word": " couldn't", + "start": 1940.16, + "end": 1940.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1258, + "text": "access it", + "start": 1940.46, + "end": 1941.06, + "words": [ + { + "word": " access", + "start": 1940.46, + "end": 1940.8, + "probability": 0.99755859375 + }, + { + "word": " it", + "start": 1940.8, + "end": 1941.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1259, + "text": "right", + "start": 1941.06, + "end": 1941.18, + "words": [ + { + "word": " right", + "start": 1941.06, + "end": 1941.18, + "probability": 0.99609375 + } + ] + }, + { + "id": 1260, + "text": "because USB devices", + "start": 1941.18, + "end": 1942.18, + "words": [ + { + "word": " because", + "start": 1941.18, + "end": 1941.46, + "probability": 0.99951171875 + }, + { + "word": " USB", + "start": 1941.46, + "end": 1941.72, + "probability": 0.638671875 + }, + { + "word": " devices", + "start": 1941.72, + "end": 1942.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1261, + "text": "are exclusive", + "start": 1942.18, + "end": 1942.74, + "words": [ + { + "word": " are", + "start": 1942.18, + "end": 1942.42, + "probability": 0.99951171875 + }, + { + "word": " exclusive", + "start": 1942.42, + "end": 1942.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1262, + "text": "so you can't have", + "start": 1943.44, + "end": 1945.08, + "words": [ + { + "word": " so", + "start": 1943.44, + "end": 1943.92, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1943.92, + "end": 1944.4, + "probability": 1.0 + }, + { + "word": " can't", + "start": 1944.4, + "end": 1944.8, + "probability": 1.0 + }, + { + "word": " have", + "start": 1944.8, + "end": 1945.08, + "probability": 1.0 + } + ] + }, + { + "id": 1263, + "text": "a USB plugged", + "start": 1945.08, + "end": 1945.78, + "words": [ + { + "word": " a", + "start": 1945.08, + "end": 1945.2, + "probability": 0.9990234375 + }, + { + "word": " USB", + "start": 1945.2, + "end": 1945.44, + "probability": 0.99658203125 + }, + { + "word": " plugged", + "start": 1945.44, + "end": 1945.78, + "probability": 0.96484375 + } + ] + }, + { + "id": 1264, + "text": "into a USB device", + "start": 1945.78, + "end": 1946.92, + "words": [ + { + "word": " into", + "start": 1945.78, + "end": 1945.98, + "probability": 0.282958984375 + }, + { + "word": " a", + "start": 1945.98, + "end": 1946.24, + "probability": 0.6962890625 + }, + { + "word": " USB", + "start": 1946.24, + "end": 1946.56, + "probability": 0.998046875 + }, + { + "word": " device", + "start": 1946.56, + "end": 1946.92, + "probability": 0.990234375 + } + ] + }, + { + "id": 1265, + "text": "plugged into more", + "start": 1946.92, + "end": 1947.66, + "words": [ + { + "word": " plugged", + "start": 1946.92, + "end": 1947.22, + "probability": 0.92333984375 + }, + { + "word": " into", + "start": 1947.22, + "end": 1947.46, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 1947.46, + "end": 1947.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1266, + "text": "than one machine", + "start": 1947.66, + "end": 1948.24, + "words": [ + { + "word": " than", + "start": 1947.66, + "end": 1947.8, + "probability": 1.0 + }, + { + "word": " one", + "start": 1947.8, + "end": 1948.0, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1948.0, + "end": 1948.24, + "probability": 1.0 + } + ] + }, + { + "id": 1267, + "text": "at a time", + "start": 1948.24, + "end": 1948.76, + "words": [ + { + "word": " at", + "start": 1948.24, + "end": 1948.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 1948.4, + "end": 1948.5, + "probability": 1.0 + }, + { + "word": " time", + "start": 1948.5, + "end": 1948.76, + "probability": 1.0 + } + ] + }, + { + "id": 1268, + "text": "so you have to", + "start": 1948.76, + "end": 1949.58, + "words": [ + { + "word": " so", + "start": 1948.76, + "end": 1949.18, + "probability": 0.053436279296875 + }, + { + "word": " you", + "start": 1949.18, + "end": 1949.32, + "probability": 1.0 + }, + { + "word": " have", + "start": 1949.32, + "end": 1949.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 1949.5, + "end": 1949.58, + "probability": 1.0 + } + ] + }, + { + "id": 1269, + "text": "effectively go and", + "start": 1949.58, + "end": 1950.44, + "words": [ + { + "word": " effectively", + "start": 1949.58, + "end": 1950.04, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 1950.04, + "end": 1950.34, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1950.34, + "end": 1950.44, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1270, + "text": "unplug it from the", + "start": 1950.44, + "end": 1951.24, + "words": [ + { + "word": " unplug", + "start": 1950.44, + "end": 1950.64, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 1950.64, + "end": 1950.92, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1950.92, + "end": 1951.08, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1951.08, + "end": 1951.24, + "probability": 1.0 + } + ] + }, + { + "id": 1271, + "text": "host machine", + "start": 1951.24, + "end": 1951.62, + "words": [ + { + "word": " host", + "start": 1951.24, + "end": 1951.38, + "probability": 0.99853515625 + }, + { + "word": " machine", + "start": 1951.38, + "end": 1951.62, + "probability": 1.0 + } + ] + }, + { + "id": 1272, + "text": "and plug it into", + "start": 1951.62, + "end": 1952.32, + "words": [ + { + "word": " and", + "start": 1951.62, + "end": 1951.9, + "probability": 0.99609375 + }, + { + "word": " plug", + "start": 1951.9, + "end": 1952.06, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1952.06, + "end": 1952.2, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1952.2, + "end": 1952.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1273, + "text": "the virtual machine", + "start": 1952.32, + "end": 1952.92, + "words": [ + { + "word": " the", + "start": 1952.32, + "end": 1952.44, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 1952.44, + "end": 1952.64, + "probability": 0.99609375 + }, + { + "word": " machine", + "start": 1952.64, + "end": 1952.92, + "probability": 1.0 + } + ] + }, + { + "id": 1274, + "text": "okay", + "start": 1954.36, + "end": 1954.8, + "words": [ + { + "word": " okay", + "start": 1954.36, + "end": 1954.8, + "probability": 0.451416015625 + } + ] + }, + { + "id": 1275, + "text": "well I will play", + "start": 1954.8, + "end": 1955.68, + "words": [ + { + "word": " well", + "start": 1954.8, + "end": 1955.12, + "probability": 0.92822265625 + }, + { + "word": " I", + "start": 1955.12, + "end": 1955.3, + "probability": 0.75830078125 + }, + { + "word": " will", + "start": 1955.3, + "end": 1955.46, + "probability": 0.99951171875 + }, + { + "word": " play", + "start": 1955.46, + "end": 1955.68, + "probability": 1.0 + } + ] + }, + { + "id": 1276, + "text": "around with that", + "start": 1955.68, + "end": 1956.24, + "words": [ + { + "word": " around", + "start": 1955.68, + "end": 1955.86, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1955.86, + "end": 1956.08, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1956.08, + "end": 1956.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1277, + "text": "it's um", + "start": 1956.24, + "end": 1956.82, + "words": [ + { + "word": " it's", + "start": 1956.24, + "end": 1956.6, + "probability": 0.6220703125 + }, + { + "word": " um", + "start": 1956.6, + "end": 1956.82, + "probability": 0.5537109375 + } + ] + }, + { + "id": 1278, + "text": "it was also fun", + "start": 1956.82, + "end": 1957.98, + "words": [ + { + "word": " it", + "start": 1956.82, + "end": 1957.4, + "probability": 0.9970703125 + }, + { + "word": " was", + "start": 1957.4, + "end": 1957.52, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 1957.52, + "end": 1957.74, + "probability": 0.99951171875 + }, + { + "word": " fun", + "start": 1957.74, + "end": 1957.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1279, + "text": "setting up", + "start": 1957.98, + "end": 1958.54, + "words": [ + { + "word": " setting", + "start": 1957.98, + "end": 1958.22, + "probability": 0.99560546875 + }, + { + "word": " up", + "start": 1958.22, + "end": 1958.54, + "probability": 1.0 + } + ] + }, + { + "id": 1280, + "text": "the fresh installs", + "start": 1958.54, + "end": 1960.4, + "words": [ + { + "word": " the", + "start": 1958.54, + "end": 1958.92, + "probability": 0.99853515625 + }, + { + "word": " fresh", + "start": 1958.92, + "end": 1959.62, + "probability": 0.36767578125 + }, + { + "word": " installs", + "start": 1959.62, + "end": 1960.4, + "probability": 0.998046875 + } + ] + }, + { + "id": 1281, + "text": "of Windows 7", + "start": 1960.4, + "end": 1961.12, + "words": [ + { + "word": " of", + "start": 1960.4, + "end": 1960.48, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 1960.48, + "end": 1960.76, + "probability": 0.9462890625 + }, + { + "word": " 7", + "start": 1960.76, + "end": 1961.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1282, + "text": "I don't know why", + "start": 1961.12, + "end": 1961.84, + "words": [ + { + "word": " I", + "start": 1961.12, + "end": 1961.36, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 1961.36, + "end": 1961.52, + "probability": 1.0 + }, + { + "word": " know", + "start": 1961.52, + "end": 1961.64, + "probability": 1.0 + }, + { + "word": " why", + "start": 1961.64, + "end": 1961.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1283, + "text": "I see what you guys", + "start": 1961.84, + "end": 1962.98, + "words": [ + { + "word": " I", + "start": 1961.84, + "end": 1962.22, + "probability": 0.9951171875 + }, + { + "word": " see", + "start": 1962.22, + "end": 1962.6, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 1962.6, + "end": 1962.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 1962.74, + "end": 1962.88, + "probability": 1.0 + }, + { + "word": " guys", + "start": 1962.88, + "end": 1962.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1284, + "text": "were talking about", + "start": 1962.98, + "end": 1963.64, + "words": [ + { + "word": " were", + "start": 1962.98, + "end": 1963.1, + "probability": 0.9521484375 + }, + { + "word": " talking", + "start": 1963.1, + "end": 1963.36, + "probability": 1.0 + }, + { + "word": " about", + "start": 1963.36, + "end": 1963.64, + "probability": 1.0 + } + ] + }, + { + "id": 1285, + "text": "yeah", + "start": 1963.64, + "end": 1964.0, + "words": [ + { + "word": " yeah", + "start": 1963.64, + "end": 1964.0, + "probability": 0.912109375 + } + ] + }, + { + "id": 1286, + "text": "it's different", + "start": 1966.12, + "end": 1967.0, + "words": [ + { + "word": " it's", + "start": 1966.12, + "end": 1966.56, + "probability": 0.72412109375 + }, + { + "word": " different", + "start": 1966.56, + "end": 1967.0, + "probability": 0.79931640625 + } + ] + }, + { + "id": 1287, + "text": "and the nice thing", + "start": 1967.0, + "end": 1967.94, + "words": [ + { + "word": " and", + "start": 1967.0, + "end": 1967.5, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1967.5, + "end": 1967.62, + "probability": 1.0 + }, + { + "word": " nice", + "start": 1967.62, + "end": 1967.78, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 1967.78, + "end": 1967.94, + "probability": 1.0 + } + ] + }, + { + "id": 1288, + "text": "is that you can now", + "start": 1967.94, + "end": 1968.92, + "words": [ + { + "word": " is", + "start": 1967.94, + "end": 1968.06, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1968.06, + "end": 1968.32, + "probability": 0.9716796875 + }, + { + "word": " you", + "start": 1968.32, + "end": 1968.56, + "probability": 1.0 + }, + { + "word": " can", + "start": 1968.56, + "end": 1968.74, + "probability": 1.0 + }, + { + "word": " now", + "start": 1968.74, + "end": 1968.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1289, + "text": "make backup copies", + "start": 1968.92, + "end": 1970.26, + "words": [ + { + "word": " make", + "start": 1968.92, + "end": 1969.16, + "probability": 0.99951171875 + }, + { + "word": " backup", + "start": 1969.16, + "end": 1969.86, + "probability": 0.9951171875 + }, + { + "word": " copies", + "start": 1969.86, + "end": 1970.26, + "probability": 1.0 + } + ] + }, + { + "id": 1290, + "text": "of that virtual", + "start": 1970.26, + "end": 1971.16, + "words": [ + { + "word": " of", + "start": 1970.26, + "end": 1970.54, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1970.54, + "end": 1970.82, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 1970.82, + "end": 1971.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1291, + "text": "machine file", + "start": 1971.16, + "end": 1971.9, + "words": [ + { + "word": " machine", + "start": 1971.16, + "end": 1971.48, + "probability": 1.0 + }, + { + "word": " file", + "start": 1971.48, + "end": 1971.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1292, + "text": "or put them on", + "start": 1972.5, + "end": 1973.68, + "words": [ + { + "word": " or", + "start": 1972.5, + "end": 1972.94, + "probability": 0.9716796875 + }, + { + "word": " put", + "start": 1972.94, + "end": 1973.38, + "probability": 1.0 + }, + { + "word": " them", + "start": 1973.38, + "end": 1973.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 1973.56, + "end": 1973.68, + "probability": 1.0 + } + ] + }, + { + "id": 1293, + "text": "a different machine", + "start": 1973.68, + "end": 1974.2, + "words": [ + { + "word": " a", + "start": 1973.68, + "end": 1973.74, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 1973.74, + "end": 1973.9, + "probability": 0.99853515625 + }, + { + "word": " machine", + "start": 1973.9, + "end": 1974.2, + "probability": 1.0 + } + ] + }, + { + "id": 1294, + "text": "and fire them up", + "start": 1974.2, + "end": 1975.22, + "words": [ + { + "word": " and", + "start": 1974.2, + "end": 1974.58, + "probability": 1.0 + }, + { + "word": " fire", + "start": 1974.58, + "end": 1974.88, + "probability": 0.9990234375 + }, + { + "word": " them", + "start": 1974.88, + "end": 1975.08, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1975.08, + "end": 1975.22, + "probability": 1.0 + } + ] + }, + { + "id": 1295, + "text": "and everything's", + "start": 1975.22, + "end": 1975.74, + "words": [ + { + "word": " and", + "start": 1975.22, + "end": 1975.36, + "probability": 0.99951171875 + }, + { + "word": " everything's", + "start": 1975.36, + "end": 1975.74, + "probability": 0.80517578125 + } + ] + }, + { + "id": 1296, + "text": "exactly the way", + "start": 1975.74, + "end": 1976.3, + "words": [ + { + "word": " exactly", + "start": 1975.74, + "end": 1976.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1976.0, + "end": 1976.22, + "probability": 0.998046875 + }, + { + "word": " way", + "start": 1976.22, + "end": 1976.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1297, + "text": "it's supposed to be", + "start": 1976.3, + "end": 1976.82, + "words": [ + { + "word": " it's", + "start": 1976.3, + "end": 1976.4, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 1976.4, + "end": 1976.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 1976.56, + "end": 1976.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 1976.72, + "end": 1976.82, + "probability": 1.0 + } + ] + }, + { + "id": 1298, + "text": "or you can just", + "start": 1976.92, + "end": 1977.32, + "words": [ + { + "word": " or", + "start": 1976.92, + "end": 1977.0, + "probability": 0.492431640625 + }, + { + "word": " you", + "start": 1977.0, + "end": 1977.1, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1977.1, + "end": 1977.18, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1977.18, + "end": 1977.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1299, + "text": "share them on a network", + "start": 1977.32, + "end": 1978.16, + "words": [ + { + "word": " share", + "start": 1977.32, + "end": 1977.52, + "probability": 1.0 + }, + { + "word": " them", + "start": 1977.52, + "end": 1977.7, + "probability": 1.0 + }, + { + "word": " on", + "start": 1977.7, + "end": 1977.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 1977.84, + "end": 1977.94, + "probability": 1.0 + }, + { + "word": " network", + "start": 1977.94, + "end": 1978.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1300, + "text": "but you'll have", + "start": 1978.16, + "end": 1979.26, + "words": [ + { + "word": " but", + "start": 1978.16, + "end": 1978.44, + "probability": 0.0204925537109375 + }, + { + "word": " you'll", + "start": 1978.44, + "end": 1979.14, + "probability": 0.8212890625 + }, + { + "word": " have", + "start": 1979.14, + "end": 1979.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1301, + "text": "exclusive access", + "start": 1979.26, + "end": 1980.0, + "words": [ + { + "word": " exclusive", + "start": 1979.26, + "end": 1979.6, + "probability": 0.9990234375 + }, + { + "word": " access", + "start": 1979.6, + "end": 1980.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1302, + "text": "to one of them", + "start": 1980.0, + "end": 1980.96, + "words": [ + { + "word": " to", + "start": 1980.0, + "end": 1980.3, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 1980.3, + "end": 1980.62, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 1980.62, + "end": 1980.74, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 1980.74, + "end": 1980.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1303, + "text": "so like", + "start": 1981.8400000000001, + "end": 1982.74, + "words": [ + { + "word": " so", + "start": 1981.8400000000001, + "end": 1982.42, + "probability": 0.150146484375 + }, + { + "word": " like", + "start": 1982.42, + "end": 1982.74, + "probability": 0.6103515625 + } + ] + }, + { + "id": 1304, + "text": "speaking of network", + "start": 1982.74, + "end": 1983.46, + "words": [ + { + "word": " speaking", + "start": 1982.74, + "end": 1982.88, + "probability": 0.175537109375 + }, + { + "word": " of", + "start": 1982.88, + "end": 1983.12, + "probability": 0.9990234375 + }, + { + "word": " network", + "start": 1983.12, + "end": 1983.46, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1305, + "text": "did you ever", + "start": 1983.46, + "end": 1984.1, + "words": [ + { + "word": " did", + "start": 1983.46, + "end": 1983.68, + "probability": 0.951171875 + }, + { + "word": " you", + "start": 1983.68, + "end": 1983.86, + "probability": 1.0 + }, + { + "word": " ever", + "start": 1983.86, + "end": 1984.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1306, + "text": "research that", + "start": 1984.1, + "end": 1984.98, + "words": [ + { + "word": " research", + "start": 1984.1, + "end": 1984.68, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1984.68, + "end": 1984.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1307, + "text": "Zools", + "start": 1984.98, + "end": 1985.42, + "words": [ + { + "word": " Zools", + "start": 1984.98, + "end": 1985.42, + "probability": 0.499755859375 + } + ] + }, + { + "id": 1308, + "text": "no I forgot", + "start": 1986.16, + "end": 1987.16, + "words": [ + { + "word": " no", + "start": 1986.16, + "end": 1986.74, + "probability": 0.63330078125 + }, + { + "word": " I", + "start": 1986.74, + "end": 1986.94, + "probability": 0.9677734375 + }, + { + "word": " forgot", + "start": 1986.94, + "end": 1987.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1309, + "text": "file thing", + "start": 1987.16, + "end": 1987.94, + "words": [ + { + "word": " file", + "start": 1987.16, + "end": 1987.64, + "probability": 0.91455078125 + }, + { + "word": " thing", + "start": 1987.64, + "end": 1987.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1310, + "text": "no I forgot", + "start": 1987.94, + "end": 1988.82, + "words": [ + { + "word": " no", + "start": 1987.94, + "end": 1988.48, + "probability": 0.96826171875 + }, + { + "word": " I", + "start": 1988.48, + "end": 1988.6, + "probability": 0.99951171875 + }, + { + "word": " forgot", + "start": 1988.6, + "end": 1988.82, + "probability": 1.0 + } + ] + }, + { + "id": 1311, + "text": "you were correct", + "start": 1988.82, + "end": 1990.28, + "words": [ + { + "word": " you", + "start": 1988.82, + "end": 1989.4, + "probability": 0.99609375 + }, + { + "word": " were", + "start": 1989.4, + "end": 1990.0, + "probability": 1.0 + }, + { + "word": " correct", + "start": 1990.0, + "end": 1990.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1312, + "text": "it was IOSafe", + "start": 1990.28, + "end": 1991.62, + "words": [ + { + "word": " it", + "start": 1990.28, + "end": 1990.56, + "probability": 0.99072265625 + }, + { + "word": " was", + "start": 1990.56, + "end": 1990.7, + "probability": 1.0 + }, + { + "word": " IOSafe", + "start": 1990.7, + "end": 1991.62, + "probability": 0.71142578125 + } + ] + }, + { + "id": 1313, + "text": "as far as", + "start": 1991.62, + "end": 1993.14, + "words": [ + { + "word": " as", + "start": 1991.62, + "end": 1992.66, + "probability": 0.99462890625 + }, + { + "word": " far", + "start": 1992.66, + "end": 1992.96, + "probability": 1.0 + }, + { + "word": " as", + "start": 1992.96, + "end": 1993.14, + "probability": 1.0 + } + ] + }, + { + "id": 1314, + "text": "the fireproof", + "start": 1993.14, + "end": 1994.22, + "words": [ + { + "word": " the", + "start": 1993.14, + "end": 1993.34, + "probability": 0.99951171875 + }, + { + "word": " fireproof", + "start": 1993.34, + "end": 1994.22, + "probability": 0.8486328125 + } + ] + }, + { + "id": 1315, + "text": "waterproof", + "start": 1997.24, + "end": 1997.82, + "words": [ + { + "word": " waterproof", + "start": 1997.24, + "end": 1997.82, + "probability": 0.9521484375 + } + ] + }, + { + "id": 1316, + "text": "backup drive", + "start": 1998.78, + "end": 1999.92, + "words": [ + { + "word": " backup", + "start": 1998.78, + "end": 1999.36, + "probability": 0.97119140625 + }, + { + "word": " drive", + "start": 1999.36, + "end": 1999.92, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1317, + "text": "enclosures", + "start": 1999.92, + "end": 2000.8, + "words": [ + { + "word": " enclosures", + "start": 1999.92, + "end": 2000.8, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1318, + "text": "right", + "start": 2000.8, + "end": 2001.18, + "words": [ + { + "word": " right", + "start": 2000.8, + "end": 2001.18, + "probability": 0.919921875 + } + ] + }, + { + "id": 1319, + "text": "but the", + "start": 2002.1200000000001, + "end": 2002.96, + "words": [ + { + "word": " but", + "start": 2002.1200000000001, + "end": 2002.7, + "probability": 0.93408203125 + }, + { + "word": " the", + "start": 2002.7, + "end": 2002.96, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1320, + "text": "ones I'm seeing", + "start": 2002.96, + "end": 2004.5, + "words": [ + { + "word": " ones", + "start": 2002.96, + "end": 2004.0, + "probability": 0.986328125 + }, + { + "word": " I'm", + "start": 2004.0, + "end": 2004.26, + "probability": 0.99462890625 + }, + { + "word": " seeing", + "start": 2004.26, + "end": 2004.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1321, + "text": "that I would", + "start": 2004.5, + "end": 2005.4, + "words": [ + { + "word": " that", + "start": 2004.5, + "end": 2004.76, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 2004.76, + "end": 2005.04, + "probability": 1.0 + }, + { + "word": " would", + "start": 2005.04, + "end": 2005.4, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1322, + "text": "consider reasonable", + "start": 2005.4, + "end": 2006.22, + "words": [ + { + "word": " consider", + "start": 2005.4, + "end": 2005.76, + "probability": 0.99951171875 + }, + { + "word": " reasonable", + "start": 2005.76, + "end": 2006.22, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1323, + "text": "for", + "start": 2006.22, + "end": 2006.9, + "words": [ + { + "word": " for", + "start": 2006.22, + "end": 2006.9, + "probability": 0.0079193115234375 + } + ] + }, + { + "id": 1324, + "text": "um", + "start": 2006.92, + "end": 2006.96, + "words": [ + { + "word": " um", + "start": 2006.92, + "end": 2006.96, + "probability": 0.00904083251953125 + } + ] + }, + { + "id": 1325, + "text": "priced", + "start": 2007.5, + "end": 2007.9, + "words": [ + { + "word": " priced", + "start": 2007.5, + "end": 2007.9, + "probability": 0.0592041015625 + } + ] + }, + { + "id": 1326, + "text": "are all USB 3's", + "start": 2007.9, + "end": 2009.92, + "words": [ + { + "word": " are", + "start": 2007.9, + "end": 2008.48, + "probability": 0.99658203125 + }, + { + "word": " all", + "start": 2008.48, + "end": 2008.88, + "probability": 1.0 + }, + { + "word": " USB", + "start": 2008.88, + "end": 2009.26, + "probability": 0.161865234375 + }, + { + "word": " 3's", + "start": 2009.26, + "end": 2009.92, + "probability": 0.5810546875 + } + ] + }, + { + "id": 1327, + "text": "and", + "start": 2009.92, + "end": 2010.18, + "words": [ + { + "word": " and", + "start": 2009.92, + "end": 2010.18, + "probability": 0.97998046875 + } + ] + }, + { + "id": 1328, + "text": "I'm pretty sure", + "start": 2010.18, + "end": 2011.58, + "words": [ + { + "word": " I'm", + "start": 2010.18, + "end": 2011.16, + "probability": 0.9931640625 + }, + { + "word": " pretty", + "start": 2011.16, + "end": 2011.34, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 2011.34, + "end": 2011.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1329, + "text": "you have a", + "start": 2011.58, + "end": 2012.3, + "words": [ + { + "word": " you", + "start": 2011.58, + "end": 2011.8, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2011.8, + "end": 2012.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2012.08, + "end": 2012.3, + "probability": 0.94970703125 + } + ] + }, + { + "id": 1330, + "text": "you know", + "start": 2012.3, + "end": 2013.62, + "words": [ + { + "word": " you", + "start": 2012.3, + "end": 2012.94, + "probability": 0.95703125 + }, + { + "word": " know", + "start": 2012.94, + "end": 2013.62, + "probability": 1.0 + } + ] + }, + { + "id": 1331, + "text": "maybe a 6", + "start": 2013.62, + "end": 2014.26, + "words": [ + { + "word": " maybe", + "start": 2013.62, + "end": 2013.86, + "probability": 0.95361328125 + }, + { + "word": " a", + "start": 2013.86, + "end": 2014.06, + "probability": 1.0 + }, + { + "word": " 6", + "start": 2014.06, + "end": 2014.26, + "probability": 0.72119140625 + } + ] + }, + { + "id": 1332, + "text": "9 foot limit", + "start": 2014.26, + "end": 2015.32, + "words": [ + { + "word": " 9", + "start": 2014.26, + "end": 2014.68, + "probability": 0.5986328125 + }, + { + "word": " foot", + "start": 2014.68, + "end": 2014.98, + "probability": 0.99658203125 + }, + { + "word": " limit", + "start": 2014.98, + "end": 2015.32, + "probability": 1.0 + } + ] + }, + { + "id": 1333, + "text": "on the cable", + "start": 2015.32, + "end": 2016.12, + "words": [ + { + "word": " on", + "start": 2015.32, + "end": 2015.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 2015.54, + "end": 2015.7, + "probability": 1.0 + }, + { + "word": " cable", + "start": 2015.7, + "end": 2016.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1334, + "text": "um", + "start": 2016.8, + "end": 2017.36, + "words": [ + { + "word": " um", + "start": 2016.8, + "end": 2017.36, + "probability": 0.92236328125 + } + ] + }, + { + "id": 1335, + "text": "so here's how", + "start": 2017.36, + "end": 2018.8, + "words": [ + { + "word": " so", + "start": 2017.36, + "end": 2017.9, + "probability": 0.6123046875 + }, + { + "word": " here's", + "start": 2017.9, + "end": 2018.74, + "probability": 0.810546875 + }, + { + "word": " how", + "start": 2018.74, + "end": 2018.8, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1336, + "text": "you get around", + "start": 2018.8, + "end": 2019.14, + "words": [ + { + "word": " you", + "start": 2018.8, + "end": 2018.88, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2018.88, + "end": 2019.0, + "probability": 0.98486328125 + }, + { + "word": " around", + "start": 2019.0, + "end": 2019.14, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1337, + "text": "between them", + "start": 2019.14, + "end": 2019.52, + "words": [ + { + "word": " between", + "start": 2019.14, + "end": 2019.2, + "probability": 0.06414794921875 + }, + { + "word": " them", + "start": 2019.2, + "end": 2019.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1338, + "text": "you can get", + "start": 2019.52, + "end": 2020.66, + "words": [ + { + "word": " you", + "start": 2019.52, + "end": 2020.14, + "probability": 0.953125 + }, + { + "word": " can", + "start": 2020.14, + "end": 2020.42, + "probability": 1.0 + }, + { + "word": " get", + "start": 2020.42, + "end": 2020.66, + "probability": 1.0 + } + ] + }, + { + "id": 1339, + "text": "$30 little boxes", + "start": 2020.66, + "end": 2022.5, + "words": [ + { + "word": " $30", + "start": 2020.66, + "end": 2021.62, + "probability": 0.91162109375 + }, + { + "word": " little", + "start": 2021.62, + "end": 2022.08, + "probability": 0.99853515625 + }, + { + "word": " boxes", + "start": 2022.08, + "end": 2022.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1340, + "text": "that will take USB", + "start": 2022.5, + "end": 2024.04, + "words": [ + { + "word": " that", + "start": 2022.5, + "end": 2023.38, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2023.38, + "end": 2023.54, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 2023.54, + "end": 2023.7, + "probability": 1.0 + }, + { + "word": " USB", + "start": 2023.7, + "end": 2024.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1341, + "text": "and turn it into", + "start": 2024.04, + "end": 2024.88, + "words": [ + { + "word": " and", + "start": 2024.04, + "end": 2024.42, + "probability": 0.99951171875 + }, + { + "word": " turn", + "start": 2024.42, + "end": 2024.62, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2024.62, + "end": 2024.72, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2024.72, + "end": 2024.88, + "probability": 0.96728515625 + } + ] + }, + { + "id": 1342, + "text": "network", + "start": 2024.88, + "end": 2025.18, + "words": [ + { + "word": " network", + "start": 2024.88, + "end": 2025.18, + "probability": 0.888671875 + } + ] + }, + { + "id": 1343, + "text": "oh", + "start": 2025.18, + "end": 2026.2, + "words": [ + { + "word": " oh", + "start": 2025.18, + "end": 2026.2, + "probability": 0.90625 + } + ] + }, + { + "id": 1344, + "text": "so", + "start": 2026.2, + "end": 2027.1, + "words": [ + { + "word": " so", + "start": 2026.2, + "end": 2027.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 1345, + "text": "and you can have", + "start": 2027.1, + "end": 2028.82, + "words": [ + { + "word": " and", + "start": 2027.1, + "end": 2027.96, + "probability": 0.96826171875 + }, + { + "word": " you", + "start": 2027.96, + "end": 2028.5, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 2028.5, + "end": 2028.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 2028.68, + "end": 2028.82, + "probability": 1.0 + } + ] + }, + { + "id": 1346, + "text": "them powered", + "start": 2028.82, + "end": 2029.24, + "words": [ + { + "word": " them", + "start": 2028.82, + "end": 2028.92, + "probability": 0.99560546875 + }, + { + "word": " powered", + "start": 2028.92, + "end": 2029.24, + "probability": 0.990234375 + } + ] + }, + { + "id": 1347, + "text": "over the network", + "start": 2029.24, + "end": 2029.9, + "words": [ + { + "word": " over", + "start": 2029.24, + "end": 2029.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 2029.52, + "end": 2029.7, + "probability": 1.0 + }, + { + "word": " network", + "start": 2029.7, + "end": 2029.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1348, + "text": "so they can live", + "start": 2029.9, + "end": 2031.24, + "words": [ + { + "word": " so", + "start": 2029.9, + "end": 2030.7, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2030.7, + "end": 2030.88, + "probability": 1.0 + }, + { + "word": " can", + "start": 2030.88, + "end": 2031.0, + "probability": 1.0 + }, + { + "word": " live", + "start": 2031.0, + "end": 2031.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1349, + "text": "anywhere", + "start": 2031.24, + "end": 2031.68, + "words": [ + { + "word": " anywhere", + "start": 2031.24, + "end": 2031.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1350, + "text": "and you can", + "start": 2031.68, + "end": 2033.3, + "words": [ + { + "word": " and", + "start": 2031.68, + "end": 2032.7, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2032.7, + "end": 2033.08, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2033.08, + "end": 2033.3, + "probability": 1.0 + } + ] + }, + { + "id": 1351, + "text": "convert", + "start": 2033.3, + "end": 2034.0, + "words": [ + { + "word": " convert", + "start": 2033.3, + "end": 2034.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1352, + "text": "it's basically", + "start": 2034.0, + "end": 2034.98, + "words": [ + { + "word": " it's", + "start": 2034.0, + "end": 2034.7, + "probability": 0.984375 + }, + { + "word": " basically", + "start": 2034.7, + "end": 2034.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1353, + "text": "a USB to network", + "start": 2034.98, + "end": 2035.92, + "words": [ + { + "word": " a", + "start": 2034.98, + "end": 2035.14, + "probability": 0.8701171875 + }, + { + "word": " USB", + "start": 2035.14, + "end": 2035.46, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2035.46, + "end": 2035.66, + "probability": 0.99658203125 + }, + { + "word": " network", + "start": 2035.66, + "end": 2035.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1354, + "text": "adapter", + "start": 2035.92, + "end": 2036.38, + "words": [ + { + "word": " adapter", + "start": 2035.92, + "end": 2036.38, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1355, + "text": "you can get them", + "start": 2036.38, + "end": 2037.2, + "words": [ + { + "word": " you", + "start": 2036.38, + "end": 2036.78, + "probability": 0.0224151611328125 + }, + { + "word": " can", + "start": 2036.78, + "end": 2037.0, + "probability": 0.98486328125 + }, + { + "word": " get", + "start": 2037.0, + "end": 2037.12, + "probability": 0.99853515625 + }, + { + "word": " them", + "start": 2037.12, + "end": 2037.2, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1356, + "text": "on Amazon", + "start": 2037.2, + "end": 2037.56, + "words": [ + { + "word": " on", + "start": 2037.2, + "end": 2037.28, + "probability": 0.9990234375 + }, + { + "word": " Amazon", + "start": 2037.28, + "end": 2037.56, + "probability": 0.91015625 + } + ] + }, + { + "id": 1357, + "text": "for as little", + "start": 2037.56, + "end": 2038.14, + "words": [ + { + "word": " for", + "start": 2037.56, + "end": 2037.86, + "probability": 0.9921875 + }, + { + "word": " as", + "start": 2037.86, + "end": 2037.98, + "probability": 0.99755859375 + }, + { + "word": " little", + "start": 2037.98, + "end": 2038.14, + "probability": 0.99609375 + } + ] + }, + { + "id": 1358, + "text": "as like $6", + "start": 2038.14, + "end": 2039.2, + "words": [ + { + "word": " as", + "start": 2038.14, + "end": 2038.28, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 2038.28, + "end": 2038.48, + "probability": 0.84765625 + }, + { + "word": " $6", + "start": 2038.48, + "end": 2039.2, + "probability": 0.91162109375 + } + ] + }, + { + "id": 1359, + "text": "don't get the cheap", + "start": 2039.2, + "end": 2040.48, + "words": [ + { + "word": " don't", + "start": 2039.2, + "end": 2040.04, + "probability": 0.68017578125 + }, + { + "word": " get", + "start": 2040.04, + "end": 2040.12, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 2040.12, + "end": 2040.34, + "probability": 0.9970703125 + }, + { + "word": " cheap", + "start": 2040.34, + "end": 2040.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 1360, + "text": "ones", + "start": 2040.48, + "end": 2040.7, + "words": [ + { + "word": " ones", + "start": 2040.48, + "end": 2040.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 1361, + "text": "don't get the cheap", + "start": 2041.52, + "end": 2042.48, + "words": [ + { + "word": " don't", + "start": 2041.52, + "end": 2042.0, + "probability": 0.791015625 + }, + { + "word": " get", + "start": 2042.0, + "end": 2042.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2042.18, + "end": 2042.34, + "probability": 0.99951171875 + }, + { + "word": " cheap", + "start": 2042.34, + "end": 2042.48, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1362, + "text": "ones", + "start": 2042.48, + "end": 2042.7, + "words": [ + { + "word": " ones", + "start": 2042.48, + "end": 2042.7, + "probability": 1.0 + } + ] + }, + { + "id": 1363, + "text": "get the most", + "start": 2042.7, + "end": 2043.66, + "words": [ + { + "word": " get", + "start": 2042.7, + "end": 2043.38, + "probability": 0.99365234375 + }, + { + "word": " the", + "start": 2043.38, + "end": 2043.52, + "probability": 1.0 + }, + { + "word": " most", + "start": 2043.52, + "end": 2043.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1364, + "text": "expensive one", + "start": 2043.66, + "end": 2044.18, + "words": [ + { + "word": " expensive", + "start": 2043.66, + "end": 2043.96, + "probability": 1.0 + }, + { + "word": " one", + "start": 2043.96, + "end": 2044.18, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1365, + "text": "you can find", + "start": 2044.18, + "end": 2044.6, + "words": [ + { + "word": " you", + "start": 2044.18, + "end": 2044.3, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 2044.3, + "end": 2044.38, + "probability": 1.0 + }, + { + "word": " find", + "start": 2044.38, + "end": 2044.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1366, + "text": "actually", + "start": 2044.6, + "end": 2044.9, + "words": [ + { + "word": " actually", + "start": 2044.6, + "end": 2044.9, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1367, + "text": "on those", + "start": 2044.9, + "end": 2045.8, + "words": [ + { + "word": " on", + "start": 2044.9, + "end": 2045.6, + "probability": 0.66796875 + }, + { + "word": " those", + "start": 2045.6, + "end": 2045.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1368, + "text": "so there would", + "start": 2045.8, + "end": 2046.28, + "words": [ + { + "word": " so", + "start": 2045.8, + "end": 2046.02, + "probability": 0.8984375 + }, + { + "word": " there", + "start": 2046.02, + "end": 2046.14, + "probability": 0.393798828125 + }, + { + "word": " would", + "start": 2046.14, + "end": 2046.28, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1369, + "text": "be USB 3 to", + "start": 2046.28, + "end": 2047.58, + "words": [ + { + "word": " be", + "start": 2046.28, + "end": 2046.44, + "probability": 1.0 + }, + { + "word": " USB", + "start": 2046.44, + "end": 2046.82, + "probability": 0.76953125 + }, + { + "word": " 3", + "start": 2046.82, + "end": 2047.22, + "probability": 0.9501953125 + }, + { + "word": " to", + "start": 2047.22, + "end": 2047.58, + "probability": 0.43310546875 + } + ] + }, + { + "id": 1370, + "text": "network", + "start": 2047.58, + "end": 2048.04, + "words": [ + { + "word": " network", + "start": 2047.58, + "end": 2048.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 1371, + "text": "yes", + "start": 2048.04, + "end": 2048.58, + "words": [ + { + "word": " yes", + "start": 2048.04, + "end": 2048.58, + "probability": 0.471435546875 + } + ] + }, + { + "id": 1372, + "text": "okay", + "start": 2048.58, + "end": 2049.1, + "words": [ + { + "word": " okay", + "start": 2048.58, + "end": 2049.1, + "probability": 0.28271484375 + } + ] + }, + { + "id": 1373, + "text": "and", + "start": 2050.02, + "end": 2050.5, + "words": [ + { + "word": " and", + "start": 2050.02, + "end": 2050.5, + "probability": 0.63671875 + } + ] + }, + { + "id": 1374, + "text": "alright", + "start": 2050.5, + "end": 2050.84, + "words": [ + { + "word": " alright", + "start": 2050.5, + "end": 2050.84, + "probability": 0.66943359375 + } + ] + }, + { + "id": 1375, + "text": "and those", + "start": 2050.84, + "end": 2052.02, + "words": [ + { + "word": " and", + "start": 2050.84, + "end": 2051.58, + "probability": 0.99755859375 + }, + { + "word": " those", + "start": 2051.58, + "end": 2052.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1376, + "text": "what they'll do", + "start": 2052.02, + "end": 2052.62, + "words": [ + { + "word": " what", + "start": 2052.02, + "end": 2052.26, + "probability": 0.9931640625 + }, + { + "word": " they'll", + "start": 2052.26, + "end": 2052.5, + "probability": 0.9970703125 + }, + { + "word": " do", + "start": 2052.5, + "end": 2052.62, + "probability": 1.0 + } + ] + }, + { + "id": 1377, + "text": "is they", + "start": 2052.62, + "end": 2052.92, + "words": [ + { + "word": " is", + "start": 2052.62, + "end": 2052.78, + "probability": 0.99462890625 + }, + { + "word": " they", + "start": 2052.78, + "end": 2052.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1378, + "text": "they basically", + "start": 2052.92, + "end": 2053.6, + "words": [ + { + "word": " they", + "start": 2052.92, + "end": 2053.26, + "probability": 0.1224365234375 + }, + { + "word": " basically", + "start": 2053.26, + "end": 2053.6, + "probability": 1.0 + } + ] + }, + { + "id": 1379, + "text": "become", + "start": 2053.6, + "end": 2053.98, + "words": [ + { + "word": " become", + "start": 2053.6, + "end": 2053.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1380, + "text": "little SMB", + "start": 2053.98, + "end": 2055.78, + "words": [ + { + "word": " little", + "start": 2053.98, + "end": 2054.92, + "probability": 0.99853515625 + }, + { + "word": " SMB", + "start": 2054.92, + "end": 2055.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1381, + "text": "servers", + "start": 2055.78, + "end": 2056.06, + "words": [ + { + "word": " servers", + "start": 2055.78, + "end": 2056.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1382, + "text": "so it becomes", + "start": 2056.06, + "end": 2057.24, + "words": [ + { + "word": " so", + "start": 2056.06, + "end": 2056.8, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2056.8, + "end": 2056.98, + "probability": 0.99755859375 + }, + { + "word": " becomes", + "start": 2056.98, + "end": 2057.24, + "probability": 1.0 + } + ] + }, + { + "id": 1383, + "text": "like a network", + "start": 2057.24, + "end": 2058.12, + "words": [ + { + "word": " like", + "start": 2057.24, + "end": 2057.48, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2057.48, + "end": 2057.64, + "probability": 1.0 + }, + { + "word": " network", + "start": 2057.64, + "end": 2058.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1384, + "text": "share", + "start": 2058.12, + "end": 2058.7, + "words": [ + { + "word": " share", + "start": 2058.12, + "end": 2058.7, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1385, + "text": "on the network", + "start": 2058.7, + "end": 2059.6, + "words": [ + { + "word": " on", + "start": 2058.7, + "end": 2059.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2059.18, + "end": 2059.36, + "probability": 1.0 + }, + { + "word": " network", + "start": 2059.36, + "end": 2059.6, + "probability": 1.0 + } + ] + }, + { + "id": 1386, + "text": "it's pretty cool", + "start": 2060.48, + "end": 2061.5, + "words": [ + { + "word": " it's", + "start": 2060.48, + "end": 2060.96, + "probability": 0.998046875 + }, + { + "word": " pretty", + "start": 2060.96, + "end": 2061.24, + "probability": 0.603515625 + }, + { + "word": " cool", + "start": 2061.24, + "end": 2061.5, + "probability": 1.0 + } + ] + }, + { + "id": 1387, + "text": "check them out", + "start": 2062.02, + "end": 2062.74, + "words": [ + { + "word": " check", + "start": 2062.02, + "end": 2062.5, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 2062.5, + "end": 2062.62, + "probability": 0.9951171875 + }, + { + "word": " out", + "start": 2062.62, + "end": 2062.74, + "probability": 1.0 + } + ] + }, + { + "id": 1388, + "text": "alright", + "start": 2062.74, + "end": 2062.98, + "words": [ + { + "word": " alright", + "start": 2062.74, + "end": 2062.98, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1389, + "text": "I will research", + "start": 2062.98, + "end": 2063.84, + "words": [ + { + "word": " I", + "start": 2062.98, + "end": 2063.18, + "probability": 0.9921875 + }, + { + "word": " will", + "start": 2063.18, + "end": 2063.4, + "probability": 0.99951171875 + }, + { + "word": " research", + "start": 2063.4, + "end": 2063.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1390, + "text": "that because", + "start": 2063.84, + "end": 2064.28, + "words": [ + { + "word": " that", + "start": 2063.84, + "end": 2064.08, + "probability": 1.0 + }, + { + "word": " because", + "start": 2064.08, + "end": 2064.28, + "probability": 0.84326171875 + } + ] + }, + { + "id": 1391, + "text": "the USB 3 ones", + "start": 2064.28, + "end": 2065.46, + "words": [ + { + "word": " the", + "start": 2064.28, + "end": 2064.48, + "probability": 0.99951171875 + }, + { + "word": " USB", + "start": 2064.48, + "end": 2064.86, + "probability": 0.99951171875 + }, + { + "word": " 3", + "start": 2064.86, + "end": 2065.12, + "probability": 0.99853515625 + }, + { + "word": " ones", + "start": 2065.12, + "end": 2065.46, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1392, + "text": "you could get", + "start": 2065.46, + "end": 2066.02, + "words": [ + { + "word": " you", + "start": 2065.46, + "end": 2065.66, + "probability": 0.9990234375 + }, + { + "word": " could", + "start": 2065.66, + "end": 2065.82, + "probability": 0.89013671875 + }, + { + "word": " get", + "start": 2065.82, + "end": 2066.02, + "probability": 1.0 + } + ] + }, + { + "id": 1393, + "text": "a 3", + "start": 2066.02, + "end": 2067.32, + "words": [ + { + "word": " a", + "start": 2066.02, + "end": 2066.12, + "probability": 0.17236328125 + }, + { + "word": " 3", + "start": 2066.12, + "end": 2067.32, + "probability": 0.388916015625 + } + ] + }, + { + "id": 1394, + "text": "terabyte", + "start": 2068.22, + "end": 2068.74, + "words": [ + { + "word": " terabyte", + "start": 2068.22, + "end": 2068.74, + "probability": 0.8017578125 + } + ] + }, + { + "id": 1395, + "text": "IOS safe", + "start": 2070.08, + "end": 2070.86, + "words": [ + { + "word": " IOS", + "start": 2070.08, + "end": 2070.6, + "probability": 0.4072265625 + }, + { + "word": " safe", + "start": 2070.6, + "end": 2070.86, + "probability": 0.49267578125 + } + ] + }, + { + "id": 1396, + "text": "for maybe", + "start": 2070.86, + "end": 2071.3, + "words": [ + { + "word": " for", + "start": 2070.86, + "end": 2071.1, + "probability": 0.99365234375 + }, + { + "word": " maybe", + "start": 2071.1, + "end": 2071.3, + "probability": 0.978515625 + } + ] + }, + { + "id": 1397, + "text": "$350", + "start": 2071.3, + "end": 2072.12, + "words": [ + { + "word": " $350", + "start": 2071.3, + "end": 2072.12, + "probability": 0.97705078125 + } + ] + }, + { + "id": 1398, + "text": "with no drives", + "start": 2072.12, + "end": 2073.38, + "words": [ + { + "word": " with", + "start": 2072.12, + "end": 2072.82, + "probability": 0.1441650390625 + }, + { + "word": " no", + "start": 2072.82, + "end": 2072.98, + "probability": 0.99853515625 + }, + { + "word": " drives", + "start": 2072.98, + "end": 2073.38, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1399, + "text": "but yes", + "start": 2073.38, + "end": 2073.88, + "words": [ + { + "word": " but", + "start": 2073.38, + "end": 2073.66, + "probability": 0.69580078125 + }, + { + "word": " yes", + "start": 2073.66, + "end": 2073.88, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1400, + "text": "yes", + "start": 2075.12, + "end": 2075.64, + "words": [ + { + "word": " yes", + "start": 2075.12, + "end": 2075.64, + "probability": 0.7958984375 + } + ] + }, + { + "id": 1401, + "text": "actually", + "start": 2075.64, + "end": 2076.08, + "words": [ + { + "word": " actually", + "start": 2075.64, + "end": 2076.08, + "probability": 0.32275390625 + } + ] + }, + { + "id": 1402, + "text": "that did have", + "start": 2077.2400000000002, + "end": 2078.28, + "words": [ + { + "word": " that", + "start": 2077.2400000000002, + "end": 2077.76, + "probability": 0.810546875 + }, + { + "word": " did", + "start": 2077.76, + "end": 2078.02, + "probability": 0.890625 + }, + { + "word": " have", + "start": 2078.02, + "end": 2078.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1403, + "text": "a drive", + "start": 2078.28, + "end": 2078.64, + "words": [ + { + "word": " a", + "start": 2078.28, + "end": 2078.42, + "probability": 0.9990234375 + }, + { + "word": " drive", + "start": 2078.42, + "end": 2078.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1404, + "text": "for $350", + "start": 2078.64, + "end": 2079.36, + "words": [ + { + "word": " for", + "start": 2078.64, + "end": 2078.98, + "probability": 0.94189453125 + }, + { + "word": " $350", + "start": 2078.98, + "end": 2079.36, + "probability": 0.97998046875 + } + ] + }, + { + "id": 1405, + "text": "I feel like", + "start": 2079.36, + "end": 2079.84, + "words": [ + { + "word": " I", + "start": 2079.36, + "end": 2079.62, + "probability": 0.99560546875 + }, + { + "word": " feel", + "start": 2079.62, + "end": 2079.74, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 2079.74, + "end": 2079.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1406, + "text": "it should come", + "start": 2079.84, + "end": 2080.2, + "words": [ + { + "word": " it", + "start": 2079.84, + "end": 2079.94, + "probability": 0.99609375 + }, + { + "word": " should", + "start": 2079.94, + "end": 2080.04, + "probability": 0.99853515625 + }, + { + "word": " come", + "start": 2080.04, + "end": 2080.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1407, + "text": "with a drive", + "start": 2080.2, + "end": 2080.64, + "words": [ + { + "word": " with", + "start": 2080.2, + "end": 2080.32, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2080.32, + "end": 2080.44, + "probability": 0.99951171875 + }, + { + "word": " drive", + "start": 2080.44, + "end": 2080.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1408, + "text": "yeah but the", + "start": 2080.64, + "end": 2081.82, + "words": [ + { + "word": " yeah", + "start": 2080.64, + "end": 2081.48, + "probability": 0.97265625 + }, + { + "word": " but", + "start": 2081.48, + "end": 2081.68, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 2081.68, + "end": 2081.82, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1409, + "text": "IOS safes", + "start": 2081.82, + "end": 2082.34, + "words": [ + { + "word": " IOS", + "start": 2081.82, + "end": 2082.1, + "probability": 0.99609375 + }, + { + "word": " safes", + "start": 2082.1, + "end": 2082.34, + "probability": 0.99609375 + } + ] + }, + { + "id": 1410, + "text": "are stupid", + "start": 2082.34, + "end": 2082.96, + "words": [ + { + "word": " are", + "start": 2082.34, + "end": 2082.54, + "probability": 0.99853515625 + }, + { + "word": " stupid", + "start": 2082.54, + "end": 2082.96, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1411, + "text": "expensive", + "start": 2082.96, + "end": 2083.44, + "words": [ + { + "word": " expensive", + "start": 2082.96, + "end": 2083.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1412, + "text": "because they're", + "start": 2083.44, + "end": 2084.56, + "words": [ + { + "word": " because", + "start": 2083.44, + "end": 2084.06, + "probability": 0.83251953125 + }, + { + "word": " they're", + "start": 2084.06, + "end": 2084.56, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1413, + "text": "fireproof", + "start": 2084.56, + "end": 2084.9, + "words": [ + { + "word": " fireproof", + "start": 2084.56, + "end": 2084.9, + "probability": 0.9580078125 + } + ] + }, + { + "id": 1414, + "text": "and you know", + "start": 2084.9, + "end": 2085.84, + "words": [ + { + "word": " and", + "start": 2084.9, + "end": 2085.22, + "probability": 0.52880859375 + }, + { + "word": " you", + "start": 2085.22, + "end": 2085.7, + "probability": 0.400390625 + }, + { + "word": " know", + "start": 2085.7, + "end": 2085.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1415, + "text": "all of that", + "start": 2085.84, + "end": 2086.3, + "words": [ + { + "word": " all", + "start": 2085.84, + "end": 2086.04, + "probability": 0.98876953125 + }, + { + "word": " of", + "start": 2086.04, + "end": 2086.16, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2086.16, + "end": 2086.3, + "probability": 1.0 + } + ] + }, + { + "id": 1416, + "text": "yeah but the", + "start": 2086.3, + "end": 2086.74, + "words": [ + { + "word": " yeah", + "start": 2086.3, + "end": 2086.46, + "probability": 0.984375 + }, + { + "word": " but", + "start": 2086.46, + "end": 2086.58, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2086.58, + "end": 2086.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1417, + "text": "ones with the", + "start": 2086.74, + "end": 2087.38, + "words": [ + { + "word": " ones", + "start": 2086.74, + "end": 2086.94, + "probability": 0.9970703125 + }, + { + "word": " with", + "start": 2086.94, + "end": 2087.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2087.18, + "end": 2087.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1418, + "text": "network", + "start": 2087.38, + "end": 2087.72, + "words": [ + { + "word": " network", + "start": 2087.38, + "end": 2087.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1419, + "text": "are started", + "start": 2087.72, + "end": 2088.62, + "words": [ + { + "word": " are", + "start": 2087.72, + "end": 2088.14, + "probability": 0.984375 + }, + { + "word": " started", + "start": 2088.14, + "end": 2088.62, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1420, + "text": "like they were", + "start": 2088.62, + "end": 2089.38, + "words": [ + { + "word": " like", + "start": 2088.62, + "end": 2089.0, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 2089.0, + "end": 2089.3, + "probability": 0.998046875 + }, + { + "word": " were", + "start": 2089.3, + "end": 2089.38, + "probability": 1.0 + } + ] + }, + { + "id": 1421, + "text": "about $650", + "start": 2089.38, + "end": 2091.14, + "words": [ + { + "word": " about", + "start": 2089.38, + "end": 2089.76, + "probability": 0.99951171875 + }, + { + "word": " $650", + "start": 2089.76, + "end": 2091.14, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1422, + "text": "without any", + "start": 2091.14, + "end": 2092.52, + "words": [ + { + "word": " without", + "start": 2091.14, + "end": 2092.04, + "probability": 0.9970703125 + }, + { + "word": " any", + "start": 2092.04, + "end": 2092.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1423, + "text": "drives", + "start": 2092.52, + "end": 2092.84, + "words": [ + { + "word": " drives", + "start": 2092.52, + "end": 2092.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1424, + "text": "that's the ones", + "start": 2092.84, + "end": 2094.16, + "words": [ + { + "word": " that's", + "start": 2092.84, + "end": 2093.66, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 2093.66, + "end": 2093.72, + "probability": 0.8974609375 + }, + { + "word": " ones", + "start": 2093.72, + "end": 2094.16, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1425, + "text": "I'm thinking about", + "start": 2094.16, + "end": 2094.74, + "words": [ + { + "word": " I'm", + "start": 2094.16, + "end": 2094.3, + "probability": 0.998046875 + }, + { + "word": " thinking", + "start": 2094.3, + "end": 2094.5, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2094.5, + "end": 2094.74, + "probability": 1.0 + } + ] + }, + { + "id": 1426, + "text": "yeah", + "start": 2094.74, + "end": 2095.46, + "words": [ + { + "word": " yeah", + "start": 2094.74, + "end": 2095.46, + "probability": 0.82763671875 + } + ] + }, + { + "id": 1427, + "text": "well I gotta", + "start": 2095.46, + "end": 2096.0, + "words": [ + { + "word": " well", + "start": 2095.46, + "end": 2095.8, + "probability": 0.9619140625 + }, + { + "word": " I", + "start": 2095.8, + "end": 2095.88, + "probability": 0.9990234375 + }, + { + "word": " gotta", + "start": 2095.88, + "end": 2096.0, + "probability": 0.5908203125 + } + ] + }, + { + "id": 1428, + "text": "move on", + "start": 2096.02, + "end": 2096.32, + "words": [ + { + "word": " move", + "start": 2096.02, + "end": 2096.1, + "probability": 0.0256195068359375 + }, + { + "word": " on", + "start": 2096.1, + "end": 2096.32, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1429, + "text": "thank you for", + "start": 2096.32, + "end": 2097.3, + "words": [ + { + "word": " thank", + "start": 2096.32, + "end": 2096.64, + "probability": 0.021209716796875 + }, + { + "word": " you", + "start": 2096.64, + "end": 2097.18, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2097.18, + "end": 2097.3, + "probability": 0.55859375 + } + ] + }, + { + "id": 1430, + "text": "the call", + "start": 2097.3, + "end": 2097.48, + "words": [ + { + "word": " the", + "start": 2097.3, + "end": 2097.4, + "probability": 0.98486328125 + }, + { + "word": " call", + "start": 2097.4, + "end": 2097.48, + "probability": 0.95068359375 + } + ] + }, + { + "id": 1431, + "text": "appreciate it", + "start": 2097.48, + "end": 2098.58, + "words": [ + { + "word": " appreciate", + "start": 2097.48, + "end": 2097.84, + "probability": 0.1265869140625 + }, + { + "word": " it", + "start": 2097.84, + "end": 2098.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1432, + "text": "let's move on", + "start": 2098.58, + "end": 2099.62, + "words": [ + { + "word": " let's", + "start": 2098.58, + "end": 2099.06, + "probability": 0.9990234375 + }, + { + "word": " move", + "start": 2099.06, + "end": 2099.34, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 2099.34, + "end": 2099.62, + "probability": 1.0 + } + ] + }, + { + "id": 1433, + "text": "to Bruce", + "start": 2099.62, + "end": 2101.04, + "words": [ + { + "word": " to", + "start": 2099.62, + "end": 2099.9, + "probability": 0.99951171875 + }, + { + "word": " Bruce", + "start": 2099.9, + "end": 2101.04, + "probability": 0.03643798828125 + } + ] + }, + { + "id": 1434, + "text": "let's talk to Bruce", + "start": 2101.58, + "end": 2102.4, + "words": [ + { + "word": " let's", + "start": 2101.58, + "end": 2102.02, + "probability": 0.82861328125 + }, + { + "word": " talk", + "start": 2102.02, + "end": 2102.14, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2102.14, + "end": 2102.24, + "probability": 0.99853515625 + }, + { + "word": " Bruce", + "start": 2102.24, + "end": 2102.4, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1435, + "text": "hello Bruce", + "start": 2102.4, + "end": 2102.8, + "words": [ + { + "word": " hello", + "start": 2102.4, + "end": 2102.62, + "probability": 0.91162109375 + }, + { + "word": " Bruce", + "start": 2102.62, + "end": 2102.8, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1436, + "text": "how are you", + "start": 2102.8, + "end": 2103.28, + "words": [ + { + "word": " how", + "start": 2102.8, + "end": 2102.98, + "probability": 0.99365234375 + }, + { + "word": " are", + "start": 2102.98, + "end": 2103.14, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2103.14, + "end": 2103.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1437, + "text": "good morning", + "start": 2103.9, + "end": 2104.28, + "words": [ + { + "word": " good", + "start": 2103.8, + "end": 2104.02, + "probability": 0.80517578125 + }, + { + "word": " morning", + "start": 2104.02, + "end": 2104.28, + "probability": 0.998046875 + } + ] + }, + { + "id": 1438, + "text": "I'm good", + "start": 2104.28, + "end": 2104.62, + "words": [ + { + "word": " I'm", + "start": 2104.28, + "end": 2104.46, + "probability": 0.978515625 + }, + { + "word": " good", + "start": 2104.46, + "end": 2104.62, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1439, + "text": "and yourself", + "start": 2104.62, + "end": 2104.9, + "words": [ + { + "word": " and", + "start": 2104.62, + "end": 2104.7, + "probability": 0.95361328125 + }, + { + "word": " yourself", + "start": 2104.7, + "end": 2104.9, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1440, + "text": "not bad", + "start": 2104.9, + "end": 2105.58, + "words": [ + { + "word": " not", + "start": 2104.9, + "end": 2105.38, + "probability": 0.95703125 + }, + { + "word": " bad", + "start": 2105.38, + "end": 2105.58, + "probability": 1.0 + } + ] + }, + { + "id": 1441, + "text": "what can I do", + "start": 2105.58, + "end": 2106.04, + "words": [ + { + "word": " what", + "start": 2105.58, + "end": 2105.74, + "probability": 0.99609375 + }, + { + "word": " can", + "start": 2105.74, + "end": 2105.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2105.86, + "end": 2105.94, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2105.94, + "end": 2106.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1442, + "text": "for you", + "start": 2106.04, + "end": 2106.32, + "words": [ + { + "word": " for", + "start": 2106.04, + "end": 2106.16, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2106.16, + "end": 2106.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1443, + "text": "can you talk", + "start": 2106.32, + "end": 2108.14, + "words": [ + { + "word": " can", + "start": 2106.32, + "end": 2107.18, + "probability": 0.96728515625 + }, + { + "word": " you", + "start": 2107.18, + "end": 2107.94, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2107.94, + "end": 2108.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1444, + "text": "a little more", + "start": 2108.14, + "end": 2108.54, + "words": [ + { + "word": " a", + "start": 2108.14, + "end": 2108.28, + "probability": 0.998046875 + }, + { + "word": " little", + "start": 2108.28, + "end": 2108.36, + "probability": 0.99560546875 + }, + { + "word": " more", + "start": 2108.36, + "end": 2108.54, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1445, + "text": "about Bitcoin", + "start": 2108.54, + "end": 2109.6, + "words": [ + { + "word": " about", + "start": 2108.54, + "end": 2108.78, + "probability": 0.9990234375 + }, + { + "word": " Bitcoin", + "start": 2108.78, + "end": 2109.6, + "probability": 0.7353515625 + } + ] + }, + { + "id": 1446, + "text": "and then", + "start": 2109.6, + "end": 2110.2, + "words": [ + { + "word": " and", + "start": 2109.6, + "end": 2110.02, + "probability": 0.9921875 + }, + { + "word": " then", + "start": 2110.02, + "end": 2110.2, + "probability": 0.986328125 + } + ] + }, + { + "id": 1447, + "text": "the Bitcoin", + "start": 2110.2, + "end": 2111.04, + "words": [ + { + "word": " the", + "start": 2110.2, + "end": 2110.54, + "probability": 0.96533203125 + }, + { + "word": " Bitcoin", + "start": 2110.54, + "end": 2111.04, + "probability": 0.99609375 + } + ] + }, + { + "id": 1448, + "text": "mining", + "start": 2111.04, + "end": 2111.6, + "words": [ + { + "word": " mining", + "start": 2111.04, + "end": 2111.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1449, + "text": "I hear these", + "start": 2111.6, + "end": 2113.2, + "words": [ + { + "word": " I", + "start": 2111.6, + "end": 2112.08, + "probability": 0.89453125 + }, + { + "word": " hear", + "start": 2112.08, + "end": 2112.84, + "probability": 0.99609375 + }, + { + "word": " these", + "start": 2112.84, + "end": 2113.2, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1450, + "text": "people that are", + "start": 2113.2, + "end": 2113.7, + "words": [ + { + "word": " people", + "start": 2113.2, + "end": 2113.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 2113.46, + "end": 2113.62, + "probability": 0.9951171875 + }, + { + "word": " are", + "start": 2113.62, + "end": 2113.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 1451, + "text": "Bitcoin mining", + "start": 2113.7, + "end": 2114.48, + "words": [ + { + "word": " Bitcoin", + "start": 2113.7, + "end": 2113.98, + "probability": 0.97705078125 + }, + { + "word": " mining", + "start": 2113.98, + "end": 2114.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1452, + "text": "and I don't", + "start": 2114.48, + "end": 2115.26, + "words": [ + { + "word": " and", + "start": 2114.48, + "end": 2114.8, + "probability": 0.94140625 + }, + { + "word": " I", + "start": 2114.8, + "end": 2115.02, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 2115.02, + "end": 2115.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 1453, + "text": "really understand", + "start": 2115.26, + "end": 2116.0, + "words": [ + { + "word": " really", + "start": 2115.26, + "end": 2115.38, + "probability": 0.9052734375 + }, + { + "word": " understand", + "start": 2115.38, + "end": 2116.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 1454, + "text": "what they're looking", + "start": 2116.0, + "end": 2117.04, + "words": [ + { + "word": " what", + "start": 2116.0, + "end": 2116.3, + "probability": 0.8984375 + }, + { + "word": " they're", + "start": 2116.3, + "end": 2116.86, + "probability": 0.9892578125 + }, + { + "word": " looking", + "start": 2116.86, + "end": 2117.04, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1455, + "text": "for", + "start": 2117.04, + "end": 2117.34, + "words": [ + { + "word": " for", + "start": 2117.04, + "end": 2117.34, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1456, + "text": "I'm going to", + "start": 2117.34, + "end": 2117.4, + "words": [ + { + "word": " I'm", + "start": 2117.34, + "end": 2117.4, + "probability": 0.9931640625 + }, + { + "word": " going", + "start": 2117.4, + "end": 2117.4, + "probability": 0.974609375 + }, + { + "word": " to", + "start": 2117.4, + "end": 2117.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1457, + "text": "turn it over", + "start": 2117.4, + "end": 2117.74, + "words": [ + { + "word": " turn", + "start": 2117.4, + "end": 2117.52, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 2117.52, + "end": 2117.62, + "probability": 0.9990234375 + }, + { + "word": " over", + "start": 2117.62, + "end": 2117.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1458, + "text": "to Rob", + "start": 2117.74, + "end": 2118.02, + "words": [ + { + "word": " to", + "start": 2117.74, + "end": 2117.86, + "probability": 0.9990234375 + }, + { + "word": " Rob", + "start": 2117.86, + "end": 2118.02, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1459, + "text": "because that's", + "start": 2118.02, + "end": 2118.48, + "words": [ + { + "word": " because", + "start": 2118.02, + "end": 2118.28, + "probability": 0.9619140625 + }, + { + "word": " that's", + "start": 2118.28, + "end": 2118.48, + "probability": 0.9580078125 + } + ] + }, + { + "id": 1460, + "text": "his area", + "start": 2118.48, + "end": 2119.08, + "words": [ + { + "word": " his", + "start": 2118.48, + "end": 2118.64, + "probability": 0.97216796875 + }, + { + "word": " area", + "start": 2118.64, + "end": 2119.08, + "probability": 1.0 + } + ] + }, + { + "id": 1461, + "text": "and then hang on", + "start": 2119.08, + "end": 2119.66, + "words": [ + { + "word": " and", + "start": 2119.08, + "end": 2119.28, + "probability": 0.7197265625 + }, + { + "word": " then", + "start": 2119.28, + "end": 2119.32, + "probability": 0.9140625 + }, + { + "word": " hang", + "start": 2119.32, + "end": 2119.5, + "probability": 0.9921875 + }, + { + "word": " on", + "start": 2119.5, + "end": 2119.66, + "probability": 1.0 + } + ] + }, + { + "id": 1462, + "text": "the other thing", + "start": 2119.66, + "end": 2120.76, + "words": [ + { + "word": " the", + "start": 2119.66, + "end": 2119.82, + "probability": 0.98876953125 + }, + { + "word": " other", + "start": 2119.82, + "end": 2120.06, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2120.06, + "end": 2120.76, + "probability": 1.0 + } + ] + }, + { + "id": 1463, + "text": "is I see that", + "start": 2120.76, + "end": 2122.1, + "words": [ + { + "word": " is", + "start": 2120.76, + "end": 2120.98, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2120.98, + "end": 2121.7, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 2121.7, + "end": 2121.94, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2121.94, + "end": 2122.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1464, + "text": "Ripple is trading", + "start": 2122.1, + "end": 2122.88, + "words": [ + { + "word": " Ripple", + "start": 2122.1, + "end": 2122.34, + "probability": 0.9833984375 + }, + { + "word": " is", + "start": 2122.34, + "end": 2122.62, + "probability": 0.98876953125 + }, + { + "word": " trading", + "start": 2122.62, + "end": 2122.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1465, + "text": "at almost 7", + "start": 2122.88, + "end": 2124.4, + "words": [ + { + "word": " at", + "start": 2122.88, + "end": 2123.24, + "probability": 0.99951171875 + }, + { + "word": " almost", + "start": 2123.24, + "end": 2124.04, + "probability": 0.998046875 + }, + { + "word": " 7", + "start": 2124.04, + "end": 2124.4, + "probability": 0.73486328125 + } + ] + }, + { + "id": 1466, + "text": "and it's at", + "start": 2124.4, + "end": 2124.92, + "words": [ + { + "word": " and", + "start": 2124.4, + "end": 2124.64, + "probability": 0.9853515625 + }, + { + "word": " it's", + "start": 2124.64, + "end": 2124.84, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 2124.84, + "end": 2124.92, + "probability": 0.994140625 + } + ] + }, + { + "id": 1467, + "text": "201 as we", + "start": 2124.92, + "end": 2125.84, + "words": [ + { + "word": " 201", + "start": 2124.92, + "end": 2125.3, + "probability": 0.806640625 + }, + { + "word": " as", + "start": 2125.3, + "end": 2125.66, + "probability": 0.99169921875 + }, + { + "word": " we", + "start": 2125.66, + "end": 2125.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1468, + "text": "speak", + "start": 2126.9, + "end": 2127.4, + "words": [ + { + "word": " speak", + "start": 2126.9, + "end": 2127.4, + "probability": 0.1693115234375 + } + ] + }, + { + "id": 1469, + "text": "yeah", + "start": 2127.4, + "end": 2127.9, + "words": [ + { + "word": " yeah", + "start": 2127.4, + "end": 2127.9, + "probability": 0.2288818359375 + } + ] + }, + { + "id": 1470, + "text": "isn't that a", + "start": 2127.9, + "end": 2128.52, + "words": [ + { + "word": " isn't", + "start": 2127.9, + "end": 2128.28, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 2128.28, + "end": 2128.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 2128.42, + "end": 2128.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1471, + "text": "bank based", + "start": 2128.52, + "end": 2129.36, + "words": [ + { + "word": " bank", + "start": 2128.52, + "end": 2128.92, + "probability": 0.99951171875 + }, + { + "word": " based", + "start": 2128.92, + "end": 2129.36, + "probability": 0.41064453125 + } + ] + }, + { + "id": 1472, + "text": "cryptocurrency", + "start": 2130.2, + "end": 2130.7, + "words": [ + { + "word": " cryptocurrency", + "start": 2130.2, + "end": 2130.7, + "probability": 0.0738525390625 + } + ] + }, + { + "id": 1473, + "text": "yeah Ripple's", + "start": 2130.7, + "end": 2131.82, + "words": [ + { + "word": " yeah", + "start": 2130.7, + "end": 2131.4, + "probability": 0.927734375 + }, + { + "word": " Ripple's", + "start": 2131.4, + "end": 2131.82, + "probability": 0.6552734375 + } + ] + }, + { + "id": 1474, + "text": "interesting because", + "start": 2131.82, + "end": 2132.5, + "words": [ + { + "word": " interesting", + "start": 2131.82, + "end": 2131.96, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 2131.96, + "end": 2132.5, + "probability": 1.0 + } + ] + }, + { + "id": 1475, + "text": "it's like a", + "start": 2132.5, + "end": 2132.98, + "words": [ + { + "word": " it's", + "start": 2132.5, + "end": 2132.72, + "probability": 1.0 + }, + { + "word": " like", + "start": 2132.72, + "end": 2132.88, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2132.88, + "end": 2132.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1476, + "text": "decentralized", + "start": 2132.98, + "end": 2133.46, + "words": [ + { + "word": " decentralized", + "start": 2132.98, + "end": 2133.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1477, + "text": "centralized currency", + "start": 2133.46, + "end": 2134.48, + "words": [ + { + "word": " centralized", + "start": 2133.46, + "end": 2133.98, + "probability": 0.9931640625 + }, + { + "word": " currency", + "start": 2133.98, + "end": 2134.48, + "probability": 0.99609375 + } + ] + }, + { + "id": 1478, + "text": "I don't want to", + "start": 2134.48, + "end": 2135.5, + "words": [ + { + "word": " I", + "start": 2134.48, + "end": 2135.16, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 2135.16, + "end": 2135.36, + "probability": 1.0 + }, + { + "word": " want", + "start": 2135.36, + "end": 2135.38, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 2135.38, + "end": 2135.5, + "probability": 1.0 + } + ] + }, + { + "id": 1479, + "text": "get too much", + "start": 2135.5, + "end": 2135.86, + "words": [ + { + "word": " get", + "start": 2135.5, + "end": 2135.56, + "probability": 0.99951171875 + }, + { + "word": " too", + "start": 2135.56, + "end": 2135.7, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 2135.7, + "end": 2135.86, + "probability": 1.0 + } + ] + }, + { + "id": 1480, + "text": "into that", + "start": 2135.86, + "end": 2136.12, + "words": [ + { + "word": " into", + "start": 2135.86, + "end": 2136.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2136.0, + "end": 2136.12, + "probability": 1.0 + } + ] + }, + { + "id": 1481, + "text": "because it's", + "start": 2136.12, + "end": 2136.44, + "words": [ + { + "word": " because", + "start": 2136.12, + "end": 2136.26, + "probability": 0.99267578125 + }, + { + "word": " it's", + "start": 2136.26, + "end": 2136.44, + "probability": 1.0 + } + ] + }, + { + "id": 1482, + "text": "pretty technical", + "start": 2136.44, + "end": 2137.0, + "words": [ + { + "word": " pretty", + "start": 2136.44, + "end": 2136.68, + "probability": 0.9990234375 + }, + { + "word": " technical", + "start": 2136.68, + "end": 2137.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1483, + "text": "and there's a lot", + "start": 2137.0, + "end": 2137.52, + "words": [ + { + "word": " and", + "start": 2137.0, + "end": 2137.2, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 2137.2, + "end": 2137.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 2137.36, + "end": 2137.4, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2137.4, + "end": 2137.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1484, + "text": "involved", + "start": 2137.52, + "end": 2137.68, + "words": [ + { + "word": " involved", + "start": 2137.52, + "end": 2137.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1485, + "text": "but I would", + "start": 2137.68, + "end": 2138.18, + "words": [ + { + "word": " but", + "start": 2137.68, + "end": 2138.0, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2138.0, + "end": 2138.1, + "probability": 1.0 + }, + { + "word": " would", + "start": 2138.1, + "end": 2138.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1486, + "text": "definitely tell", + "start": 2138.18, + "end": 2138.72, + "words": [ + { + "word": " definitely", + "start": 2138.18, + "end": 2138.48, + "probability": 0.9990234375 + }, + { + "word": " tell", + "start": 2138.48, + "end": 2138.72, + "probability": 1.0 + } + ] + }, + { + "id": 1487, + "text": "anybody who's", + "start": 2138.72, + "end": 2139.34, + "words": [ + { + "word": " anybody", + "start": 2138.72, + "end": 2139.02, + "probability": 0.99951171875 + }, + { + "word": " who's", + "start": 2139.02, + "end": 2139.34, + "probability": 0.943359375 + } + ] + }, + { + "id": 1488, + "text": "already knows", + "start": 2139.34, + "end": 2140.12, + "words": [ + { + "word": " already", + "start": 2139.34, + "end": 2139.86, + "probability": 0.99951171875 + }, + { + "word": " knows", + "start": 2139.86, + "end": 2140.12, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1489, + "text": "something about", + "start": 2140.12, + "end": 2140.6, + "words": [ + { + "word": " something", + "start": 2140.12, + "end": 2140.36, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2140.36, + "end": 2140.6, + "probability": 1.0 + } + ] + }, + { + "id": 1490, + "text": "crypto", + "start": 2140.6, + "end": 2140.9, + "words": [ + { + "word": " crypto", + "start": 2140.6, + "end": 2140.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1491, + "text": "to go look at", + "start": 2140.9, + "end": 2141.86, + "words": [ + { + "word": " to", + "start": 2140.9, + "end": 2141.48, + "probability": 1.0 + }, + { + "word": " go", + "start": 2141.48, + "end": 2141.62, + "probability": 1.0 + }, + { + "word": " look", + "start": 2141.62, + "end": 2141.76, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2141.76, + "end": 2141.86, + "probability": 1.0 + } + ] + }, + { + "id": 1492, + "text": "Ripple if you", + "start": 2141.86, + "end": 2142.26, + "words": [ + { + "word": " Ripple", + "start": 2141.86, + "end": 2142.04, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 2142.04, + "end": 2142.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2142.18, + "end": 2142.26, + "probability": 1.0 + } + ] + }, + { + "id": 1493, + "text": "haven't already", + "start": 2142.26, + "end": 2142.7, + "words": [ + { + "word": " haven't", + "start": 2142.26, + "end": 2142.5, + "probability": 1.0 + }, + { + "word": " already", + "start": 2142.5, + "end": 2142.7, + "probability": 1.0 + } + ] + }, + { + "id": 1494, + "text": "but yeah as far", + "start": 2143.26, + "end": 2144.32, + "words": [ + { + "word": " but", + "start": 2143.26, + "end": 2143.76, + "probability": 0.89404296875 + }, + { + "word": " yeah", + "start": 2143.76, + "end": 2144.04, + "probability": 1.0 + }, + { + "word": " as", + "start": 2144.04, + "end": 2144.2, + "probability": 0.99951171875 + }, + { + "word": " far", + "start": 2144.2, + "end": 2144.32, + "probability": 1.0 + } + ] + }, + { + "id": 1495, + "text": "as Bitcoin mining", + "start": 2144.32, + "end": 2144.94, + "words": [ + { + "word": " as", + "start": 2144.32, + "end": 2144.44, + "probability": 1.0 + }, + { + "word": " Bitcoin", + "start": 2144.44, + "end": 2144.66, + "probability": 0.8408203125 + }, + { + "word": " mining", + "start": 2144.66, + "end": 2144.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1496, + "text": "goes", + "start": 2144.94, + "end": 2145.26, + "words": [ + { + "word": " goes", + "start": 2144.94, + "end": 2145.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1497, + "text": "it's I mean", + "start": 2145.26, + "end": 2146.32, + "words": [ + { + "word": " it's", + "start": 2145.26, + "end": 2146.0, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 2146.0, + "end": 2146.16, + "probability": 0.99755859375 + }, + { + "word": " mean", + "start": 2146.16, + "end": 2146.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1498, + "text": "really all it is", + "start": 2146.32, + "end": 2147.24, + "words": [ + { + "word": " really", + "start": 2146.32, + "end": 2146.56, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2146.56, + "end": 2146.82, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2146.82, + "end": 2146.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 2146.98, + "end": 2147.24, + "probability": 1.0 + } + ] + }, + { + "id": 1499, + "text": "on a fundamental", + "start": 2147.24, + "end": 2147.78, + "words": [ + { + "word": " on", + "start": 2147.24, + "end": 2147.5, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2147.5, + "end": 2147.6, + "probability": 1.0 + }, + { + "word": " fundamental", + "start": 2147.6, + "end": 2147.78, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1500, + "text": "level is", + "start": 2147.78, + "end": 2148.86, + "words": [ + { + "word": " level", + "start": 2147.78, + "end": 2148.52, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 2148.52, + "end": 2148.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1501, + "text": "your computer", + "start": 2148.86, + "end": 2149.7, + "words": [ + { + "word": " your", + "start": 2148.86, + "end": 2149.34, + "probability": 0.998046875 + }, + { + "word": " computer", + "start": 2149.34, + "end": 2149.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1502, + "text": "being used", + "start": 2149.7, + "end": 2150.36, + "words": [ + { + "word": " being", + "start": 2149.7, + "end": 2150.04, + "probability": 0.99951171875 + }, + { + "word": " used", + "start": 2150.04, + "end": 2150.36, + "probability": 1.0 + } + ] + }, + { + "id": 1503, + "text": "to solve", + "start": 2150.36, + "end": 2150.98, + "words": [ + { + "word": " to", + "start": 2150.36, + "end": 2150.6, + "probability": 1.0 + }, + { + "word": " solve", + "start": 2150.6, + "end": 2150.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1504, + "text": "the algorithm", + "start": 2150.98, + "end": 2151.56, + "words": [ + { + "word": " the", + "start": 2150.98, + "end": 2151.24, + "probability": 1.0 + }, + { + "word": " algorithm", + "start": 2151.24, + "end": 2151.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1505, + "text": "that is", + "start": 2151.56, + "end": 2152.18, + "words": [ + { + "word": " that", + "start": 2151.56, + "end": 2151.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 2151.92, + "end": 2152.18, + "probability": 1.0 + } + ] + }, + { + "id": 1506, + "text": "that particular", + "start": 2152.18, + "end": 2153.14, + "words": [ + { + "word": " that", + "start": 2152.18, + "end": 2152.76, + "probability": 0.99951171875 + }, + { + "word": " particular", + "start": 2152.76, + "end": 2153.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1507, + "text": "block of", + "start": 2153.14, + "end": 2153.8, + "words": [ + { + "word": " block", + "start": 2153.14, + "end": 2153.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2153.56, + "end": 2153.8, + "probability": 1.0 + } + ] + }, + { + "id": 1508, + "text": "Bitcoins", + "start": 2153.8, + "end": 2154.2, + "words": [ + { + "word": " Bitcoins", + "start": 2153.8, + "end": 2154.2, + "probability": 0.8359375 + } + ] + }, + { + "id": 1509, + "text": "so it's", + "start": 2155.04, + "end": 2155.82, + "words": [ + { + "word": " so", + "start": 2155.04, + "end": 2155.54, + "probability": 0.9892578125 + }, + { + "word": " it's", + "start": 2155.54, + "end": 2155.82, + "probability": 0.99609375 + } + ] + }, + { + "id": 1510, + "text": "just trying", + "start": 2155.82, + "end": 2156.2, + "words": [ + { + "word": " just", + "start": 2155.82, + "end": 2155.9, + "probability": 0.59521484375 + }, + { + "word": " trying", + "start": 2155.9, + "end": 2156.2, + "probability": 1.0 + } + ] + }, + { + "id": 1511, + "text": "to decrypt", + "start": 2156.2, + "end": 2157.5, + "words": [ + { + "word": " to", + "start": 2156.2, + "end": 2156.42, + "probability": 1.0 + }, + { + "word": " decrypt", + "start": 2156.42, + "end": 2157.5, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1512, + "text": "that block", + "start": 2157.5, + "end": 2158.04, + "words": [ + { + "word": " that", + "start": 2157.5, + "end": 2157.7, + "probability": 1.0 + }, + { + "word": " block", + "start": 2157.7, + "end": 2158.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1513, + "text": "essentially", + "start": 2158.04, + "end": 2158.62, + "words": [ + { + "word": " essentially", + "start": 2158.04, + "end": 2158.62, + "probability": 0.2335205078125 + } + ] + }, + { + "id": 1514, + "text": "and you get", + "start": 2158.62, + "end": 2160.3, + "words": [ + { + "word": " and", + "start": 2158.62, + "end": 2159.06, + "probability": 0.162841796875 + }, + { + "word": " you", + "start": 2159.06, + "end": 2159.86, + "probability": 1.0 + }, + { + "word": " get", + "start": 2159.86, + "end": 2160.3, + "probability": 1.0 + } + ] + }, + { + "id": 1515, + "text": "a percentage", + "start": 2160.3, + "end": 2160.8, + "words": [ + { + "word": " a", + "start": 2160.3, + "end": 2160.4, + "probability": 0.99755859375 + }, + { + "word": " percentage", + "start": 2160.4, + "end": 2160.8, + "probability": 1.0 + } + ] + }, + { + "id": 1516, + "text": "of those coins", + "start": 2160.8, + "end": 2161.44, + "words": [ + { + "word": " of", + "start": 2160.8, + "end": 2161.04, + "probability": 1.0 + }, + { + "word": " those", + "start": 2161.04, + "end": 2161.18, + "probability": 1.0 + }, + { + "word": " coins", + "start": 2161.18, + "end": 2161.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1517, + "text": "based on how", + "start": 2161.44, + "end": 2161.98, + "words": [ + { + "word": " based", + "start": 2161.44, + "end": 2161.62, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 2161.62, + "end": 2161.84, + "probability": 1.0 + }, + { + "word": " how", + "start": 2161.84, + "end": 2161.98, + "probability": 1.0 + } + ] + }, + { + "id": 1518, + "text": "much work", + "start": 2161.98, + "end": 2162.34, + "words": [ + { + "word": " much", + "start": 2161.98, + "end": 2162.14, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 2162.14, + "end": 2162.34, + "probability": 1.0 + } + ] + }, + { + "id": 1519, + "text": "your computer", + "start": 2162.34, + "end": 2162.82, + "words": [ + { + "word": " your", + "start": 2162.34, + "end": 2162.56, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 2162.56, + "end": 2162.82, + "probability": 1.0 + } + ] + }, + { + "id": 1520, + "text": "did if you're", + "start": 2162.82, + "end": 2163.5, + "words": [ + { + "word": " did", + "start": 2162.82, + "end": 2163.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 2163.1, + "end": 2163.36, + "probability": 0.994140625 + }, + { + "word": " you're", + "start": 2163.36, + "end": 2163.5, + "probability": 0.99609375 + } + ] + }, + { + "id": 1521, + "text": "using a pool", + "start": 2163.5, + "end": 2164.18, + "words": [ + { + "word": " using", + "start": 2163.5, + "end": 2163.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 2163.74, + "end": 2163.98, + "probability": 1.0 + }, + { + "word": " pool", + "start": 2163.98, + "end": 2164.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1522, + "text": "right so", + "start": 2164.18, + "end": 2164.98, + "words": [ + { + "word": " right", + "start": 2164.18, + "end": 2164.74, + "probability": 0.0286407470703125 + }, + { + "word": " so", + "start": 2164.74, + "end": 2164.98, + "probability": 0.96435546875 + } + ] + }, + { + "id": 1523, + "text": "for the", + "start": 2164.98, + "end": 2166.9, + "words": [ + { + "word": " for", + "start": 2164.98, + "end": 2165.76, + "probability": 0.5478515625 + }, + { + "word": " the", + "start": 2165.76, + "end": 2166.9, + "probability": 0.9541015625 + } + ] + }, + { + "id": 1524, + "text": "uninitiated", + "start": 2166.9, + "end": 2167.68, + "words": [ + { + "word": " uninitiated", + "start": 2166.9, + "end": 2167.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1525, + "text": "there is a", + "start": 2168.42, + "end": 2169.8, + "words": [ + { + "word": " there", + "start": 2168.42, + "end": 2169.02, + "probability": 0.98388671875 + }, + { + "word": " is", + "start": 2169.02, + "end": 2169.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2169.62, + "end": 2169.8, + "probability": 1.0 + } + ] + }, + { + "id": 1526, + "text": "set number", + "start": 2169.8, + "end": 2170.96, + "words": [ + { + "word": " set", + "start": 2169.8, + "end": 2170.64, + "probability": 0.95263671875 + }, + { + "word": " number", + "start": 2170.64, + "end": 2170.96, + "probability": 1.0 + } + ] + }, + { + "id": 1527, + "text": "of", + "start": 2170.96, + "end": 2171.64, + "words": [ + { + "word": " of", + "start": 2170.96, + "end": 2171.64, + "probability": 1.0 + } + ] + }, + { + "id": 1528, + "text": "Bitcoins", + "start": 2172.54, + "end": 2173.14, + "words": [ + { + "word": " Bitcoins", + "start": 2172.54, + "end": 2173.14, + "probability": 0.5322265625 + } + ] + }, + { + "id": 1529, + "text": "that are", + "start": 2173.14, + "end": 2174.06, + "words": [ + { + "word": " that", + "start": 2173.14, + "end": 2173.88, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2173.88, + "end": 2174.06, + "probability": 1.0 + } + ] + }, + { + "id": 1530, + "text": "available", + "start": 2174.06, + "end": 2174.4, + "words": [ + { + "word": " available", + "start": 2174.06, + "end": 2174.4, + "probability": 1.0 + } + ] + }, + { + "id": 1531, + "text": "and how", + "start": 2174.4, + "end": 2175.6, + "words": [ + { + "word": " and", + "start": 2174.4, + "end": 2174.82, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 2174.82, + "end": 2175.6, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1532, + "text": "each one of", + "start": 2175.6, + "end": 2176.6, + "words": [ + { + "word": " each", + "start": 2175.6, + "end": 2176.1, + "probability": 1.0 + }, + { + "word": " one", + "start": 2176.1, + "end": 2176.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 2176.48, + "end": 2176.6, + "probability": 1.0 + } + ] + }, + { + "id": 1533, + "text": "those coins", + "start": 2176.6, + "end": 2177.08, + "words": [ + { + "word": " those", + "start": 2176.6, + "end": 2176.8, + "probability": 1.0 + }, + { + "word": " coins", + "start": 2176.8, + "end": 2177.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1534, + "text": "comes into", + "start": 2177.08, + "end": 2177.94, + "words": [ + { + "word": " comes", + "start": 2177.08, + "end": 2177.48, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2177.48, + "end": 2177.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1535, + "text": "the world", + "start": 2177.94, + "end": 2178.42, + "words": [ + { + "word": " the", + "start": 2177.94, + "end": 2178.14, + "probability": 1.0 + }, + { + "word": " world", + "start": 2178.14, + "end": 2178.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1536, + "text": "is that a", + "start": 2178.42, + "end": 2179.46, + "words": [ + { + "word": " is", + "start": 2178.42, + "end": 2179.12, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2179.12, + "end": 2179.26, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2179.26, + "end": 2179.46, + "probability": 1.0 + } + ] + }, + { + "id": 1537, + "text": "number of", + "start": 2179.46, + "end": 2179.9, + "words": [ + { + "word": " number", + "start": 2179.46, + "end": 2179.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 2179.72, + "end": 2179.9, + "probability": 1.0 + } + ] + }, + { + "id": 1538, + "text": "machines are", + "start": 2179.9, + "end": 2180.72, + "words": [ + { + "word": " machines", + "start": 2179.9, + "end": 2180.2, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 2180.2, + "end": 2180.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1539, + "text": "involved in", + "start": 2180.72, + "end": 2181.42, + "words": [ + { + "word": " involved", + "start": 2180.72, + "end": 2181.1, + "probability": 1.0 + }, + { + "word": " in", + "start": 2181.1, + "end": 2181.42, + "probability": 1.0 + } + ] + }, + { + "id": 1540, + "text": "the process", + "start": 2181.42, + "end": 2181.74, + "words": [ + { + "word": " the", + "start": 2181.42, + "end": 2181.46, + "probability": 1.0 + }, + { + "word": " process", + "start": 2181.46, + "end": 2181.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1541, + "text": "of creating", + "start": 2181.74, + "end": 2183.04, + "words": [ + { + "word": " of", + "start": 2181.74, + "end": 2182.2, + "probability": 1.0 + }, + { + "word": " creating", + "start": 2182.2, + "end": 2183.04, + "probability": 1.0 + } + ] + }, + { + "id": 1542, + "text": "that particular", + "start": 2183.04, + "end": 2183.9, + "words": [ + { + "word": " that", + "start": 2183.04, + "end": 2183.42, + "probability": 1.0 + }, + { + "word": " particular", + "start": 2183.42, + "end": 2183.9, + "probability": 1.0 + } + ] + }, + { + "id": 1543, + "text": "block for", + "start": 2183.9, + "end": 2184.98, + "words": [ + { + "word": " block", + "start": 2183.9, + "end": 2184.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 2184.56, + "end": 2184.98, + "probability": 1.0 + } + ] + }, + { + "id": 1544, + "text": "the blockchain", + "start": 2184.98, + "end": 2185.34, + "words": [ + { + "word": " the", + "start": 2184.98, + "end": 2185.08, + "probability": 1.0 + }, + { + "word": " blockchain", + "start": 2185.08, + "end": 2185.34, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1545, + "text": "so each one", + "start": 2185.82, + "end": 2186.4, + "words": [ + { + "word": " so", + "start": 2185.82, + "end": 2186.0, + "probability": 0.029327392578125 + }, + { + "word": " each", + "start": 2186.0, + "end": 2186.2, + "probability": 0.99169921875 + }, + { + "word": " one", + "start": 2186.2, + "end": 2186.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1546, + "text": "that gets", + "start": 2186.4, + "end": 2186.66, + "words": [ + { + "word": " that", + "start": 2186.4, + "end": 2186.5, + "probability": 0.99365234375 + }, + { + "word": " gets", + "start": 2186.5, + "end": 2186.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1547, + "text": "completed", + "start": 2186.66, + "end": 2187.0, + "words": [ + { + "word": " completed", + "start": 2186.66, + "end": 2187.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1548, + "text": "is a new", + "start": 2187.0, + "end": 2187.48, + "words": [ + { + "word": " is", + "start": 2187.0, + "end": 2187.22, + "probability": 0.98193359375 + }, + { + "word": " a", + "start": 2187.22, + "end": 2187.36, + "probability": 0.982421875 + }, + { + "word": " new", + "start": 2187.36, + "end": 2187.48, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1549, + "text": "Bitcoin", + "start": 2187.48, + "end": 2187.74, + "words": [ + { + "word": " Bitcoin", + "start": 2187.48, + "end": 2187.74, + "probability": 0.68212890625 + } + ] + }, + { + "id": 1550, + "text": "that exists", + "start": 2187.74, + "end": 2188.22, + "words": [ + { + "word": " that", + "start": 2187.74, + "end": 2188.0, + "probability": 0.9990234375 + }, + { + "word": " exists", + "start": 2188.0, + "end": 2188.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1551, + "text": "in the world", + "start": 2188.22, + "end": 2188.82, + "words": [ + { + "word": " in", + "start": 2188.22, + "end": 2188.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2188.48, + "end": 2188.56, + "probability": 0.99951171875 + }, + { + "word": " world", + "start": 2188.56, + "end": 2188.82, + "probability": 1.0 + } + ] + }, + { + "id": 1552, + "text": "and the", + "start": 2188.82, + "end": 2190.82, + "words": [ + { + "word": " and", + "start": 2188.82, + "end": 2189.74, + "probability": 0.07464599609375 + }, + { + "word": " the", + "start": 2189.74, + "end": 2190.82, + "probability": 0.76171875 + } + ] + }, + { + "id": 1553, + "text": "way that the", + "start": 2191.36, + "end": 2191.9, + "words": [ + { + "word": " way", + "start": 2191.36, + "end": 2191.68, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 2191.68, + "end": 2191.8, + "probability": 0.97021484375 + }, + { + "word": " the", + "start": 2191.8, + "end": 2191.9, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1554, + "text": "algorithm works", + "start": 2191.9, + "end": 2192.52, + "words": [ + { + "word": " algorithm", + "start": 2191.9, + "end": 2192.16, + "probability": 0.9970703125 + }, + { + "word": " works", + "start": 2192.16, + "end": 2192.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1555, + "text": "is that each", + "start": 2192.52, + "end": 2193.54, + "words": [ + { + "word": " is", + "start": 2192.52, + "end": 2192.86, + "probability": 0.98974609375 + }, + { + "word": " that", + "start": 2192.86, + "end": 2193.08, + "probability": 0.99462890625 + }, + { + "word": " each", + "start": 2193.08, + "end": 2193.54, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1556, + "text": "coin is more", + "start": 2193.54, + "end": 2194.5, + "words": [ + { + "word": " coin", + "start": 2193.54, + "end": 2193.98, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 2193.98, + "end": 2194.26, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 2194.26, + "end": 2194.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1557, + "text": "difficult", + "start": 2194.5, + "end": 2195.1, + "words": [ + { + "word": " difficult", + "start": 2194.5, + "end": 2195.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1558, + "text": "exponentially", + "start": 2195.1, + "end": 2195.74, + "words": [ + { + "word": " exponentially", + "start": 2195.1, + "end": 2195.74, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1559, + "text": "than the one", + "start": 2195.74, + "end": 2196.52, + "words": [ + { + "word": " than", + "start": 2195.74, + "end": 2196.26, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 2196.26, + "end": 2196.36, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 2196.36, + "end": 2196.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1560, + "text": "before", + "start": 2196.52, + "end": 2196.84, + "words": [ + { + "word": " before", + "start": 2196.52, + "end": 2196.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1561, + "text": "and so there's", + "start": 2197.38, + "end": 2198.34, + "words": [ + { + "word": " and", + "start": 2197.38, + "end": 2197.84, + "probability": 0.8671875 + }, + { + "word": " so", + "start": 2197.84, + "end": 2198.08, + "probability": 0.998046875 + }, + { + "word": " there's", + "start": 2198.08, + "end": 2198.34, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1562, + "text": "a bunch of", + "start": 2198.34, + "end": 2198.66, + "words": [ + { + "word": " a", + "start": 2198.34, + "end": 2198.4, + "probability": 0.9990234375 + }, + { + "word": " bunch", + "start": 2198.4, + "end": 2198.58, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2198.58, + "end": 2198.66, + "probability": 0.998046875 + } + ] + }, + { + "id": 1563, + "text": "machines that", + "start": 2198.66, + "end": 2199.14, + "words": [ + { + "word": " machines", + "start": 2198.66, + "end": 2198.9, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2198.9, + "end": 2199.14, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1564, + "text": "are all trying", + "start": 2199.14, + "end": 2199.56, + "words": [ + { + "word": " are", + "start": 2199.14, + "end": 2199.22, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 2199.22, + "end": 2199.34, + "probability": 0.99609375 + }, + { + "word": " trying", + "start": 2199.34, + "end": 2199.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1565, + "text": "to solve", + "start": 2199.56, + "end": 2200.06, + "words": [ + { + "word": " to", + "start": 2199.56, + "end": 2199.74, + "probability": 0.99951171875 + }, + { + "word": " solve", + "start": 2199.74, + "end": 2200.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1566, + "text": "a particular", + "start": 2200.06, + "end": 2201.16, + "words": [ + { + "word": " a", + "start": 2200.06, + "end": 2200.76, + "probability": 0.98388671875 + }, + { + "word": " particular", + "start": 2200.76, + "end": 2201.16, + "probability": 0.99609375 + } + ] + }, + { + "id": 1567, + "text": "yeah because", + "start": 2201.16, + "end": 2201.8, + "words": [ + { + "word": " yeah", + "start": 2201.16, + "end": 2201.54, + "probability": 0.1580810546875 + }, + { + "word": " because", + "start": 2201.54, + "end": 2201.8, + "probability": 0.775390625 + } + ] + }, + { + "id": 1568, + "text": "at this point", + "start": 2201.8, + "end": 2202.32, + "words": [ + { + "word": " at", + "start": 2201.8, + "end": 2201.96, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 2201.96, + "end": 2202.14, + "probability": 0.99951171875 + }, + { + "word": " point", + "start": 2202.14, + "end": 2202.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1569, + "text": "it used to be", + "start": 2202.32, + "end": 2202.86, + "words": [ + { + "word": " it", + "start": 2202.32, + "end": 2202.44, + "probability": 0.9853515625 + }, + { + "word": " used", + "start": 2202.44, + "end": 2202.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2202.6, + "end": 2202.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 2202.76, + "end": 2202.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1570, + "text": "that you could", + "start": 2202.86, + "end": 2203.3, + "words": [ + { + "word": " that", + "start": 2202.86, + "end": 2203.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2203.0, + "end": 2203.16, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 2203.16, + "end": 2203.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1571, + "text": "mine solo", + "start": 2203.3, + "end": 2203.94, + "words": [ + { + "word": " mine", + "start": 2203.3, + "end": 2203.58, + "probability": 0.88818359375 + }, + { + "word": " solo", + "start": 2203.58, + "end": 2203.94, + "probability": 0.92236328125 + } + ] + }, + { + "id": 1572, + "text": "just by yourself", + "start": 2203.94, + "end": 2204.82, + "words": [ + { + "word": " just", + "start": 2203.94, + "end": 2204.36, + "probability": 0.99365234375 + }, + { + "word": " by", + "start": 2204.36, + "end": 2204.54, + "probability": 0.994140625 + }, + { + "word": " yourself", + "start": 2204.54, + "end": 2204.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1573, + "text": "and you could", + "start": 2204.82, + "end": 2205.44, + "words": [ + { + "word": " and", + "start": 2204.82, + "end": 2205.2, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 2205.2, + "end": 2205.3, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 2205.3, + "end": 2205.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1574, + "text": "get I mean", + "start": 2205.44, + "end": 2206.44, + "words": [ + { + "word": " get", + "start": 2205.44, + "end": 2205.7, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2205.7, + "end": 2206.28, + "probability": 0.94775390625 + }, + { + "word": " mean", + "start": 2206.28, + "end": 2206.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1575, + "text": "thousands of", + "start": 2206.44, + "end": 2207.08, + "words": [ + { + "word": " thousands", + "start": 2206.44, + "end": 2206.88, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 2206.88, + "end": 2207.08, + "probability": 1.0 + } + ] + }, + { + "id": 1576, + "text": "coins a day", + "start": 2207.08, + "end": 2207.54, + "words": [ + { + "word": " coins", + "start": 2207.08, + "end": 2207.24, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 2207.24, + "end": 2207.38, + "probability": 0.99853515625 + }, + { + "word": " day", + "start": 2207.38, + "end": 2207.54, + "probability": 1.0 + } + ] + }, + { + "id": 1577, + "text": "at one point", + "start": 2207.54, + "end": 2208.12, + "words": [ + { + "word": " at", + "start": 2207.54, + "end": 2207.72, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 2207.72, + "end": 2207.84, + "probability": 0.9990234375 + }, + { + "word": " point", + "start": 2207.84, + "end": 2208.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1578, + "text": "but as it got", + "start": 2208.12, + "end": 2209.48, + "words": [ + { + "word": " but", + "start": 2208.12, + "end": 2209.0, + "probability": 0.9677734375 + }, + { + "word": " as", + "start": 2209.0, + "end": 2209.26, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2209.26, + "end": 2209.38, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2209.38, + "end": 2209.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1579, + "text": "more difficult", + "start": 2209.48, + "end": 2209.98, + "words": [ + { + "word": " more", + "start": 2209.48, + "end": 2209.64, + "probability": 1.0 + }, + { + "word": " difficult", + "start": 2209.64, + "end": 2209.98, + "probability": 1.0 + } + ] + }, + { + "id": 1580, + "text": "it's essentially", + "start": 2209.98, + "end": 2210.74, + "words": [ + { + "word": " it's", + "start": 2209.98, + "end": 2210.36, + "probability": 0.9951171875 + }, + { + "word": " essentially", + "start": 2210.36, + "end": 2210.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1581, + "text": "now impossible", + "start": 2210.74, + "end": 2211.4, + "words": [ + { + "word": " now", + "start": 2210.74, + "end": 2211.06, + "probability": 0.9990234375 + }, + { + "word": " impossible", + "start": 2211.06, + "end": 2211.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1582, + "text": "to mine on", + "start": 2211.4, + "end": 2212.78, + "words": [ + { + "word": " to", + "start": 2211.4, + "end": 2211.9, + "probability": 1.0 + }, + { + "word": " mine", + "start": 2211.9, + "end": 2212.5, + "probability": 0.98779296875 + }, + { + "word": " on", + "start": 2212.5, + "end": 2212.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1583, + "text": "your own", + "start": 2212.78, + "end": 2213.16, + "words": [ + { + "word": " your", + "start": 2212.78, + "end": 2212.96, + "probability": 0.99951171875 + }, + { + "word": " own", + "start": 2212.96, + "end": 2213.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1584, + "text": "with just", + "start": 2213.16, + "end": 2213.52, + "words": [ + { + "word": " with", + "start": 2213.16, + "end": 2213.3, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 2213.3, + "end": 2213.52, + "probability": 1.0 + } + ] + }, + { + "id": 1585, + "text": "your computer", + "start": 2213.52, + "end": 2214.02, + "words": [ + { + "word": " your", + "start": 2213.52, + "end": 2213.74, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 2213.74, + "end": 2214.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1586, + "text": "so what the", + "start": 2214.48, + "end": 2215.4, + "words": [ + { + "word": " so", + "start": 2214.48, + "end": 2214.94, + "probability": 0.91943359375 + }, + { + "word": " what", + "start": 2214.94, + "end": 2215.16, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 2215.16, + "end": 2215.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1587, + "text": "vast majority", + "start": 2215.4, + "end": 2215.86, + "words": [ + { + "word": " vast", + "start": 2215.4, + "end": 2215.48, + "probability": 0.0027923583984375 + }, + { + "word": " majority", + "start": 2215.48, + "end": 2215.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1588, + "text": "of people do", + "start": 2215.86, + "end": 2216.42, + "words": [ + { + "word": " of", + "start": 2215.86, + "end": 2216.1, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 2216.1, + "end": 2216.24, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2216.24, + "end": 2216.42, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1589, + "text": "is they join", + "start": 2216.42, + "end": 2217.02, + "words": [ + { + "word": " is", + "start": 2216.42, + "end": 2216.58, + "probability": 0.95361328125 + }, + { + "word": " they", + "start": 2216.58, + "end": 2216.72, + "probability": 0.9912109375 + }, + { + "word": " join", + "start": 2216.72, + "end": 2217.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1590, + "text": "what are called", + "start": 2217.02, + "end": 2217.78, + "words": [ + { + "word": " what", + "start": 2217.02, + "end": 2217.56, + "probability": 0.99365234375 + }, + { + "word": " are", + "start": 2217.56, + "end": 2217.64, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 2217.64, + "end": 2217.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1591, + "text": "pools which are", + "start": 2217.78, + "end": 2218.48, + "words": [ + { + "word": " pools", + "start": 2217.78, + "end": 2218.1, + "probability": 0.99462890625 + }, + { + "word": " which", + "start": 2218.1, + "end": 2218.36, + "probability": 0.28759765625 + }, + { + "word": " are", + "start": 2218.36, + "end": 2218.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1592, + "text": "just networks", + "start": 2218.48, + "end": 2219.02, + "words": [ + { + "word": " just", + "start": 2218.48, + "end": 2218.66, + "probability": 0.998046875 + }, + { + "word": " networks", + "start": 2218.66, + "end": 2219.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1593, + "text": "of computers", + "start": 2219.02, + "end": 2220.14, + "words": [ + { + "word": " of", + "start": 2219.02, + "end": 2219.4, + "probability": 0.99951171875 + }, + { + "word": " computers", + "start": 2219.4, + "end": 2220.14, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1594, + "text": "it's almost", + "start": 2220.14, + "end": 2220.72, + "words": [ + { + "word": " it's", + "start": 2220.14, + "end": 2220.56, + "probability": 0.9013671875 + }, + { + "word": " almost", + "start": 2220.56, + "end": 2220.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1595, + "text": "like a botnet", + "start": 2220.72, + "end": 2221.34, + "words": [ + { + "word": " like", + "start": 2220.72, + "end": 2220.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 2220.88, + "end": 2221.0, + "probability": 0.99951171875 + }, + { + "word": " botnet", + "start": 2221.0, + "end": 2221.34, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1596, + "text": "in a way", + "start": 2221.34, + "end": 2221.9, + "words": [ + { + "word": " in", + "start": 2221.34, + "end": 2221.64, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2221.64, + "end": 2221.7, + "probability": 1.0 + }, + { + "word": " way", + "start": 2221.7, + "end": 2221.9, + "probability": 1.0 + } + ] + }, + { + "id": 1597, + "text": "and it's", + "start": 2221.9, + "end": 2223.14, + "words": [ + { + "word": " and", + "start": 2221.9, + "end": 2222.72, + "probability": 0.335205078125 + }, + { + "word": " it's", + "start": 2222.72, + "end": 2223.14, + "probability": 0.982421875 + } + ] + }, + { + "id": 1598, + "text": "tens of", + "start": 2223.14, + "end": 2223.7, + "words": [ + { + "word": " tens", + "start": 2223.14, + "end": 2223.5, + "probability": 0.9931640625 + }, + { + "word": " of", + "start": 2223.5, + "end": 2223.7, + "probability": 1.0 + } + ] + }, + { + "id": 1599, + "text": "thousands of", + "start": 2223.7, + "end": 2224.22, + "words": [ + { + "word": " thousands", + "start": 2223.7, + "end": 2223.98, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2223.98, + "end": 2224.22, + "probability": 1.0 + } + ] + }, + { + "id": 1600, + "text": "machines all", + "start": 2224.22, + "end": 2224.76, + "words": [ + { + "word": " machines", + "start": 2224.22, + "end": 2224.44, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2224.44, + "end": 2224.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1601, + "text": "around the", + "start": 2224.76, + "end": 2225.08, + "words": [ + { + "word": " around", + "start": 2224.76, + "end": 2224.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2224.92, + "end": 2225.08, + "probability": 1.0 + } + ] + }, + { + "id": 1602, + "text": "world that", + "start": 2225.08, + "end": 2225.48, + "words": [ + { + "word": " world", + "start": 2225.08, + "end": 2225.3, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2225.3, + "end": 2225.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1603, + "text": "are all", + "start": 2225.48, + "end": 2225.78, + "words": [ + { + "word": " are", + "start": 2225.48, + "end": 2225.56, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2225.56, + "end": 2225.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1604, + "text": "working to", + "start": 2225.78, + "end": 2226.26, + "words": [ + { + "word": " working", + "start": 2225.78, + "end": 2226.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 2226.08, + "end": 2226.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1605, + "text": "solve that", + "start": 2226.26, + "end": 2226.66, + "words": [ + { + "word": " solve", + "start": 2226.26, + "end": 2226.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2226.48, + "end": 2226.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1606, + "text": "one block", + "start": 2226.66, + "end": 2227.22, + "words": [ + { + "word": " one", + "start": 2226.66, + "end": 2226.88, + "probability": 0.99951171875 + }, + { + "word": " block", + "start": 2226.88, + "end": 2227.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1607, + "text": "together", + "start": 2227.22, + "end": 2227.92, + "words": [ + { + "word": " together", + "start": 2227.22, + "end": 2227.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1608, + "text": "and then you", + "start": 2227.92, + "end": 2229.1, + "words": [ + { + "word": " and", + "start": 2227.92, + "end": 2228.82, + "probability": 0.9921875 + }, + { + "word": " then", + "start": 2228.82, + "end": 2228.94, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2228.94, + "end": 2229.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1609, + "text": "are awarded", + "start": 2229.1, + "end": 2229.54, + "words": [ + { + "word": " are", + "start": 2229.1, + "end": 2229.2, + "probability": 0.19384765625 + }, + { + "word": " awarded", + "start": 2229.2, + "end": 2229.54, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1610, + "text": "a small", + "start": 2229.54, + "end": 2229.98, + "words": [ + { + "word": " a", + "start": 2229.54, + "end": 2229.74, + "probability": 0.99951171875 + }, + { + "word": " small", + "start": 2229.74, + "end": 2229.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1611, + "text": "amount based", + "start": 2229.98, + "end": 2230.76, + "words": [ + { + "word": " amount", + "start": 2229.98, + "end": 2230.28, + "probability": 1.0 + }, + { + "word": " based", + "start": 2230.28, + "end": 2230.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1612, + "text": "on what", + "start": 2230.76, + "end": 2231.22, + "words": [ + { + "word": " on", + "start": 2230.76, + "end": 2231.0, + "probability": 1.0 + }, + { + "word": " what", + "start": 2231.0, + "end": 2231.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1613, + "text": "your machine", + "start": 2231.22, + "end": 2231.62, + "words": [ + { + "word": " your", + "start": 2231.22, + "end": 2231.38, + "probability": 0.9990234375 + }, + { + "word": " machine", + "start": 2231.38, + "end": 2231.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1614, + "text": "did", + "start": 2231.62, + "end": 2231.84, + "words": [ + { + "word": " did", + "start": 2231.62, + "end": 2231.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1615, + "text": "so yeah", + "start": 2233.54, + "end": 2234.38, + "words": [ + { + "word": " so", + "start": 2233.54, + "end": 2234.02, + "probability": 0.85888671875 + }, + { + "word": " yeah", + "start": 2234.02, + "end": 2234.38, + "probability": 0.72900390625 + } + ] + }, + { + "id": 1616, + "text": "for the most", + "start": 2234.38, + "end": 2235.18, + "words": [ + { + "word": " for", + "start": 2234.38, + "end": 2234.9, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2234.9, + "end": 2235.0, + "probability": 1.0 + }, + { + "word": " most", + "start": 2235.0, + "end": 2235.18, + "probability": 1.0 + } + ] + }, + { + "id": 1617, + "text": "part Bitcoin", + "start": 2235.18, + "end": 2235.6, + "words": [ + { + "word": " part", + "start": 2235.18, + "end": 2235.38, + "probability": 0.99951171875 + }, + { + "word": " Bitcoin", + "start": 2235.38, + "end": 2235.6, + "probability": 0.1748046875 + } + ] + }, + { + "id": 1618, + "text": "mining is not", + "start": 2235.6, + "end": 2236.3, + "words": [ + { + "word": " mining", + "start": 2235.6, + "end": 2235.96, + "probability": 0.99755859375 + }, + { + "word": " is", + "start": 2235.96, + "end": 2236.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 2236.12, + "end": 2236.3, + "probability": 1.0 + } + ] + }, + { + "id": 1619, + "text": "profitable these", + "start": 2236.3, + "end": 2237.16, + "words": [ + { + "word": " profitable", + "start": 2236.3, + "end": 2236.68, + "probability": 1.0 + }, + { + "word": " these", + "start": 2236.68, + "end": 2237.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1620, + "text": "days you'll", + "start": 2237.16, + "end": 2237.6, + "words": [ + { + "word": " days", + "start": 2237.16, + "end": 2237.4, + "probability": 1.0 + }, + { + "word": " you'll", + "start": 2237.4, + "end": 2237.6, + "probability": 0.998046875 + } + ] + }, + { + "id": 1621, + "text": "spend more on", + "start": 2237.6, + "end": 2238.14, + "words": [ + { + "word": " spend", + "start": 2237.6, + "end": 2237.78, + "probability": 1.0 + }, + { + "word": " more", + "start": 2237.78, + "end": 2237.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 2237.98, + "end": 2238.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1622, + "text": "the electricity", + "start": 2238.14, + "end": 2238.48, + "words": [ + { + "word": " the", + "start": 2238.14, + "end": 2238.18, + "probability": 0.9990234375 + }, + { + "word": " electricity", + "start": 2238.18, + "end": 2238.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 1623, + "text": "that it takes", + "start": 2238.48, + "end": 2239.14, + "words": [ + { + "word": " that", + "start": 2238.48, + "end": 2238.8, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 2238.8, + "end": 2238.88, + "probability": 1.0 + }, + { + "word": " takes", + "start": 2238.88, + "end": 2239.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1624, + "text": "unless you", + "start": 2239.62, + "end": 2240.32, + "words": [ + { + "word": " unless", + "start": 2239.62, + "end": 2240.1, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 2240.1, + "end": 2240.32, + "probability": 1.0 + } + ] + }, + { + "id": 1625, + "text": "have like a", + "start": 2240.32, + "end": 2241.16, + "words": [ + { + "word": " have", + "start": 2240.32, + "end": 2240.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 2240.46, + "end": 2240.66, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 2240.66, + "end": 2241.16, + "probability": 1.0 + } + ] + }, + { + "id": 1626, + "text": "crazy warehouse", + "start": 2241.16, + "end": 2241.76, + "words": [ + { + "word": " crazy", + "start": 2241.16, + "end": 2241.52, + "probability": 0.99951171875 + }, + { + "word": " warehouse", + "start": 2241.52, + "end": 2241.76, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1627, + "text": "in the jungle", + "start": 2241.76, + "end": 2242.42, + "words": [ + { + "word": " in", + "start": 2241.76, + "end": 2242.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 2242.08, + "end": 2242.18, + "probability": 1.0 + }, + { + "word": " jungle", + "start": 2242.18, + "end": 2242.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1628, + "text": "that has every", + "start": 2242.42, + "end": 2243.44, + "words": [ + { + "word": " that", + "start": 2242.42, + "end": 2242.68, + "probability": 1.0 + }, + { + "word": " has", + "start": 2242.68, + "end": 2242.9, + "probability": 0.99951171875 + }, + { + "word": " every", + "start": 2242.9, + "end": 2243.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1629, + "text": "GPU manufactured", + "start": 2243.44, + "end": 2244.24, + "words": [ + { + "word": " GPU", + "start": 2243.44, + "end": 2243.78, + "probability": 0.97607421875 + }, + { + "word": " manufactured", + "start": 2243.78, + "end": 2244.24, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1630, + "text": "by AMD last", + "start": 2244.24, + "end": 2245.24, + "words": [ + { + "word": " by", + "start": 2244.24, + "end": 2244.66, + "probability": 0.99951171875 + }, + { + "word": " AMD", + "start": 2244.66, + "end": 2244.94, + "probability": 0.98291015625 + }, + { + "word": " last", + "start": 2244.94, + "end": 2245.24, + "probability": 0.994140625 + } + ] + }, + { + "id": 1631, + "text": "year inside", + "start": 2245.24, + "end": 2246.14, + "words": [ + { + "word": " year", + "start": 2245.24, + "end": 2245.46, + "probability": 0.0166015625 + }, + { + "word": " inside", + "start": 2245.46, + "end": 2246.14, + "probability": 0.88818359375 + } + ] + }, + { + "id": 1632, + "text": "of it", + "start": 2246.14, + "end": 2246.48, + "words": [ + { + "word": " of", + "start": 2246.14, + "end": 2246.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 2246.36, + "end": 2246.48, + "probability": 1.0 + } + ] + }, + { + "id": 1633, + "text": "and it's", + "start": 2246.48, + "end": 2247.04, + "words": [ + { + "word": " and", + "start": 2246.48, + "end": 2246.64, + "probability": 0.09271240234375 + }, + { + "word": " it's", + "start": 2246.64, + "end": 2247.04, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1634, + "text": "solar powered", + "start": 2247.04, + "end": 2247.46, + "words": [ + { + "word": " solar", + "start": 2247.04, + "end": 2247.18, + "probability": 0.9912109375 + }, + { + "word": " powered", + "start": 2247.18, + "end": 2247.46, + "probability": 0.9306640625 + } + ] + }, + { + "id": 1635, + "text": "yeah", + "start": 2247.46, + "end": 2247.76, + "words": [ + { + "word": " yeah", + "start": 2247.46, + "end": 2247.76, + "probability": 0.8115234375 + } + ] + }, + { + "id": 1636, + "text": "but yeah I", + "start": 2249.04, + "end": 2249.94, + "words": [ + { + "word": " but", + "start": 2249.04, + "end": 2249.44, + "probability": 0.29052734375 + }, + { + "word": " yeah", + "start": 2249.44, + "end": 2249.84, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 2249.84, + "end": 2249.94, + "probability": 0.9404296875 + } + ] + }, + { + "id": 1637, + "text": "mean these", + "start": 2249.94, + "end": 2250.28, + "words": [ + { + "word": " mean", + "start": 2249.94, + "end": 2250.06, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 2250.06, + "end": 2250.28, + "probability": 0.998046875 + } + ] + }, + { + "id": 1638, + "text": "other cryptocurrencies", + "start": 2250.28, + "end": 2250.98, + "words": [ + { + "word": " other", + "start": 2250.28, + "end": 2250.52, + "probability": 0.99951171875 + }, + { + "word": " cryptocurrencies", + "start": 2250.52, + "end": 2250.98, + "probability": 0.88330078125 + } + ] + }, + { + "id": 1639, + "text": "you can definitely", + "start": 2250.98, + "end": 2252.28, + "words": [ + { + "word": " you", + "start": 2250.98, + "end": 2251.74, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 2251.74, + "end": 2251.98, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 2251.98, + "end": 2252.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1640, + "text": "still mine them", + "start": 2252.28, + "end": 2252.98, + "words": [ + { + "word": " still", + "start": 2252.28, + "end": 2252.54, + "probability": 0.99951171875 + }, + { + "word": " mine", + "start": 2252.54, + "end": 2252.78, + "probability": 0.87744140625 + }, + { + "word": " them", + "start": 2252.78, + "end": 2252.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1641, + "text": "there's a lot", + "start": 2252.98, + "end": 2253.66, + "words": [ + { + "word": " there's", + "start": 2252.98, + "end": 2253.3, + "probability": 0.6669921875 + }, + { + "word": " a", + "start": 2253.3, + "end": 2253.58, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2253.58, + "end": 2253.66, + "probability": 1.0 + } + ] + }, + { + "id": 1642, + "text": "of research", + "start": 2253.66, + "end": 2253.98, + "words": [ + { + "word": " of", + "start": 2253.66, + "end": 2253.74, + "probability": 1.0 + }, + { + "word": " research", + "start": 2253.74, + "end": 2253.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1643, + "text": "that's done", + "start": 2253.98, + "end": 2254.42, + "words": [ + { + "word": " that's", + "start": 2253.98, + "end": 2254.28, + "probability": 1.0 + }, + { + "word": " done", + "start": 2254.28, + "end": 2254.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1644, + "text": "on it but", + "start": 2254.42, + "end": 2254.86, + "words": [ + { + "word": " on", + "start": 2254.42, + "end": 2254.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 2254.6, + "end": 2254.72, + "probability": 0.99951171875 + }, + { + "word": " but", + "start": 2254.72, + "end": 2254.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1645, + "text": "I highly", + "start": 2254.86, + "end": 2255.66, + "words": [ + { + "word": " I", + "start": 2254.86, + "end": 2255.32, + "probability": 0.99951171875 + }, + { + "word": " highly", + "start": 2255.32, + "end": 2255.66, + "probability": 1.0 + } + ] + }, + { + "id": 1646, + "text": "suggest that", + "start": 2255.66, + "end": 2256.2, + "words": [ + { + "word": " suggest", + "start": 2255.66, + "end": 2255.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 2255.98, + "end": 2256.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1647, + "text": "everybody go", + "start": 2256.2, + "end": 2256.74, + "words": [ + { + "word": " everybody", + "start": 2256.2, + "end": 2256.46, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2256.46, + "end": 2256.74, + "probability": 1.0 + } + ] + }, + { + "id": 1648, + "text": "and do that", + "start": 2256.74, + "end": 2257.1, + "words": [ + { + "word": " and", + "start": 2256.74, + "end": 2256.88, + "probability": 1.0 + }, + { + "word": " do", + "start": 2256.88, + "end": 2256.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 2256.98, + "end": 2257.1, + "probability": 1.0 + } + ] + }, + { + "id": 1649, + "text": "because whether", + "start": 2257.1, + "end": 2257.96, + "words": [ + { + "word": " because", + "start": 2257.1, + "end": 2257.32, + "probability": 0.99951171875 + }, + { + "word": " whether", + "start": 2257.32, + "end": 2257.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1650, + "text": "you like Bitcoin", + "start": 2257.96, + "end": 2258.44, + "words": [ + { + "word": " you", + "start": 2257.96, + "end": 2258.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 2258.1, + "end": 2258.24, + "probability": 0.99951171875 + }, + { + "word": " Bitcoin", + "start": 2258.24, + "end": 2258.44, + "probability": 0.64794921875 + } + ] + }, + { + "id": 1651, + "text": "or not it's", + "start": 2258.44, + "end": 2259.14, + "words": [ + { + "word": " or", + "start": 2258.44, + "end": 2258.64, + "probability": 1.0 + }, + { + "word": " not", + "start": 2258.64, + "end": 2258.8, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2258.8, + "end": 2259.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1652, + "text": "a part of", + "start": 2259.14, + "end": 2259.54, + "words": [ + { + "word": " a", + "start": 2259.14, + "end": 2259.2, + "probability": 0.998046875 + }, + { + "word": " part", + "start": 2259.2, + "end": 2259.44, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2259.44, + "end": 2259.54, + "probability": 1.0 + } + ] + }, + { + "id": 1653, + "text": "things right", + "start": 2259.54, + "end": 2259.92, + "words": [ + { + "word": " things", + "start": 2259.54, + "end": 2259.7, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 2259.7, + "end": 2259.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1654, + "text": "now and it's", + "start": 2259.92, + "end": 2260.38, + "words": [ + { + "word": " now", + "start": 2259.92, + "end": 2260.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 2260.1, + "end": 2260.26, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2260.26, + "end": 2260.38, + "probability": 1.0 + } + ] + }, + { + "id": 1655, + "text": "going to be", + "start": 2260.38, + "end": 2260.82, + "words": [ + { + "word": " going", + "start": 2260.38, + "end": 2260.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2260.56, + "end": 2260.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 2260.72, + "end": 2260.82, + "probability": 1.0 + } + ] + }, + { + "id": 1656, + "text": "for the", + "start": 2260.82, + "end": 2261.2, + "words": [ + { + "word": " for", + "start": 2260.82, + "end": 2260.98, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2260.98, + "end": 2261.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1657, + "text": "foreseeable", + "start": 2261.2, + "end": 2261.64, + "words": [ + { + "word": " foreseeable", + "start": 2261.2, + "end": 2261.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1658, + "text": "future", + "start": 2261.64, + "end": 2261.96, + "words": [ + { + "word": " future", + "start": 2261.64, + "end": 2261.96, + "probability": 1.0 + } + ] + }, + { + "id": 1659, + "text": "yeah I", + "start": 2263.3199999999997, + "end": 2263.88, + "words": [ + { + "word": " yeah", + "start": 2263.3199999999997, + "end": 2263.72, + "probability": 0.95703125 + }, + { + "word": " I", + "start": 2263.72, + "end": 2263.88, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1660, + "text": "believe that", + "start": 2263.88, + "end": 2264.48, + "words": [ + { + "word": " believe", + "start": 2263.88, + "end": 2264.22, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 2264.22, + "end": 2264.48, + "probability": 1.0 + } + ] + }, + { + "id": 1661, + "text": "well thank you", + "start": 2265.2599999999998, + "end": 2266.24, + "words": [ + { + "word": " well", + "start": 2265.2599999999998, + "end": 2265.66, + "probability": 0.619140625 + }, + { + "word": " thank", + "start": 2265.66, + "end": 2266.06, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2266.06, + "end": 2266.24, + "probability": 1.0 + } + ] + }, + { + "id": 1662, + "text": "so much", + "start": 2266.24, + "end": 2266.64, + "words": [ + { + "word": " so", + "start": 2266.24, + "end": 2266.38, + "probability": 1.0 + }, + { + "word": " much", + "start": 2266.38, + "end": 2266.64, + "probability": 1.0 + } + ] + }, + { + "id": 1663, + "text": "no problem", + "start": 2266.64, + "end": 2267.24, + "words": [ + { + "word": " no", + "start": 2266.64, + "end": 2267.04, + "probability": 0.98779296875 + }, + { + "word": " problem", + "start": 2267.04, + "end": 2267.24, + "probability": 1.0 + } + ] + }, + { + "id": 1664, + "text": "alright bye", + "start": 2267.7, + "end": 2268.24, + "words": [ + { + "word": " alright", + "start": 2267.7, + "end": 2268.1, + "probability": 0.28564453125 + }, + { + "word": " bye", + "start": 2268.1, + "end": 2268.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1665, + "text": "yeah it's one of", + "start": 2268.24, + "end": 2269.24, + "words": [ + { + "word": " yeah", + "start": 2268.24, + "end": 2268.96, + "probability": 0.447021484375 + }, + { + "word": " it's", + "start": 2268.96, + "end": 2269.06, + "probability": 0.9873046875 + }, + { + "word": " one", + "start": 2269.06, + "end": 2269.16, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2269.16, + "end": 2269.24, + "probability": 1.0 + } + ] + }, + { + "id": 1666, + "text": "the questions that", + "start": 2269.24, + "end": 2269.72, + "words": [ + { + "word": " the", + "start": 2269.24, + "end": 2269.28, + "probability": 1.0 + }, + { + "word": " questions", + "start": 2269.28, + "end": 2269.5, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2269.5, + "end": 2269.72, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1667, + "text": "I get quite a", + "start": 2269.72, + "end": 2270.22, + "words": [ + { + "word": " I", + "start": 2269.72, + "end": 2269.8, + "probability": 1.0 + }, + { + "word": " get", + "start": 2269.8, + "end": 2269.94, + "probability": 1.0 + }, + { + "word": " quite", + "start": 2269.94, + "end": 2270.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2270.08, + "end": 2270.22, + "probability": 1.0 + } + ] + }, + { + "id": 1668, + "text": "lot is", + "start": 2270.22, + "end": 2270.58, + "words": [ + { + "word": " lot", + "start": 2270.22, + "end": 2270.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 2270.38, + "end": 2270.58, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1669, + "text": "what", + "start": 2271.36, + "end": 2271.76, + "words": [ + { + "word": " what", + "start": 2271.36, + "end": 2271.76, + "probability": 0.8310546875 + } + ] + }, + { + "id": 1670, + "text": "how is this", + "start": 2271.76, + "end": 2273.42, + "words": [ + { + "word": " how", + "start": 2271.76, + "end": 2272.56, + "probability": 0.68408203125 + }, + { + "word": " is", + "start": 2272.56, + "end": 2273.28, + "probability": 0.9736328125 + }, + { + "word": " this", + "start": 2273.28, + "end": 2273.42, + "probability": 1.0 + } + ] + }, + { + "id": 1671, + "text": "Bitcoin a thing", + "start": 2273.42, + "end": 2274.06, + "words": [ + { + "word": " Bitcoin", + "start": 2273.42, + "end": 2273.68, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 2273.68, + "end": 2273.86, + "probability": 0.99462890625 + }, + { + "word": " thing", + "start": 2273.86, + "end": 2274.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1672, + "text": "what's all", + "start": 2274.06, + "end": 2274.38, + "words": [ + { + "word": " what's", + "start": 2274.06, + "end": 2274.26, + "probability": 0.875 + }, + { + "word": " all", + "start": 2274.26, + "end": 2274.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1673, + "text": "this Bitcoin", + "start": 2274.38, + "end": 2274.78, + "words": [ + { + "word": " this", + "start": 2274.38, + "end": 2274.5, + "probability": 1.0 + }, + { + "word": " Bitcoin", + "start": 2274.5, + "end": 2274.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1674, + "text": "yeah I'm", + "start": 2274.78, + "end": 2276.22, + "words": [ + { + "word": " yeah", + "start": 2274.78, + "end": 2275.16, + "probability": 0.005306243896484375 + }, + { + "word": " I'm", + "start": 2275.16, + "end": 2276.22, + "probability": 0.6796875 + } + ] + }, + { + "id": 1675, + "text": "happy to talk", + "start": 2276.22, + "end": 2276.62, + "words": [ + { + "word": " happy", + "start": 2276.22, + "end": 2276.36, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2276.36, + "end": 2276.46, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 2276.46, + "end": 2276.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1676, + "text": "about it though", + "start": 2276.62, + "end": 2277.02, + "words": [ + { + "word": " about", + "start": 2276.62, + "end": 2276.78, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2276.78, + "end": 2276.88, + "probability": 0.99853515625 + }, + { + "word": " though", + "start": 2276.88, + "end": 2277.02, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1677, + "text": "alright give us", + "start": 2277.02, + "end": 2278.78, + "words": [ + { + "word": " alright", + "start": 2277.02, + "end": 2277.64, + "probability": 0.49853515625 + }, + { + "word": " give", + "start": 2277.64, + "end": 2278.44, + "probability": 0.93603515625 + }, + { + "word": " us", + "start": 2278.44, + "end": 2278.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1678, + "text": "a call", + "start": 2278.78, + "end": 2278.94, + "words": [ + { + "word": " a", + "start": 2278.78, + "end": 2278.82, + "probability": 0.9921875 + }, + { + "word": " call", + "start": 2278.82, + "end": 2278.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1679, + "text": "7902040 we'll", + "start": 2279.9, + "end": 2280.62, + "words": [ + { + "word": " 7902040", + "start": 2279.9, + "end": 2280.42, + "probability": 0.904296875 + }, + { + "word": " we'll", + "start": 2280.42, + "end": 2280.62, + "probability": 0.99609375 + } + ] + }, + { + "id": 1680, + "text": "be back right", + "start": 2280.62, + "end": 2281.06, + "words": [ + { + "word": " be", + "start": 2280.62, + "end": 2280.68, + "probability": 1.0 + }, + { + "word": " back", + "start": 2280.68, + "end": 2280.88, + "probability": 0.99755859375 + }, + { + "word": " right", + "start": 2280.88, + "end": 2281.06, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1681, + "text": "after these", + "start": 2281.06, + "end": 2281.4, + "words": [ + { + "word": " after", + "start": 2281.06, + "end": 2281.24, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 2281.24, + "end": 2281.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1682, + "text": "messages", + "start": 2281.4, + "end": 2281.84, + "words": [ + { + "word": " messages", + "start": 2281.4, + "end": 2281.84, + "probability": 1.0 + } + ] + }, + { + "id": 1683, + "text": "computer troubles", + "start": 2298.4, + "end": 2299.44, + "words": [ + { + "word": " computer", + "start": 2298.4, + "end": 2298.92, + "probability": 0.498779296875 + }, + { + "word": " troubles", + "start": 2298.92, + "end": 2299.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1684, + "text": "need some", + "start": 2299.44, + "end": 2300.38, + "words": [ + { + "word": " need", + "start": 2299.44, + "end": 2300.08, + "probability": 0.59521484375 + }, + { + "word": " some", + "start": 2300.08, + "end": 2300.38, + "probability": 1.0 + } + ] + }, + { + "id": 1685, + "text": "advice call", + "start": 2300.38, + "end": 2301.28, + "words": [ + { + "word": " advice", + "start": 2300.38, + "end": 2300.64, + "probability": 0.998046875 + }, + { + "word": " call", + "start": 2300.64, + "end": 2301.28, + "probability": 0.9228515625 + } + ] + }, + { + "id": 1686, + "text": "in now", + "start": 2301.28, + "end": 2301.68, + "words": [ + { + "word": " in", + "start": 2301.28, + "end": 2301.42, + "probability": 0.97412109375 + }, + { + "word": " now", + "start": 2301.42, + "end": 2301.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1687, + "text": "Mike Swanson", + "start": 2301.68, + "end": 2302.5, + "words": [ + { + "word": " Mike", + "start": 2301.68, + "end": 2302.2, + "probability": 0.98095703125 + }, + { + "word": " Swanson", + "start": 2302.2, + "end": 2302.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1688, + "text": "will be back", + "start": 2302.5, + "end": 2303.08, + "words": [ + { + "word": " will", + "start": 2302.5, + "end": 2302.76, + "probability": 0.923828125 + }, + { + "word": " be", + "start": 2302.76, + "end": 2302.88, + "probability": 1.0 + }, + { + "word": " back", + "start": 2302.88, + "end": 2303.08, + "probability": 1.0 + } + ] + }, + { + "id": 1689, + "text": "after these", + "start": 2303.08, + "end": 2303.66, + "words": [ + { + "word": " after", + "start": 2303.08, + "end": 2303.48, + "probability": 0.99853515625 + }, + { + "word": " these", + "start": 2303.48, + "end": 2303.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1690, + "text": "messages", + "start": 2303.66, + "end": 2304.08, + "words": [ + { + "word": " messages", + "start": 2303.66, + "end": 2304.08, + "probability": 1.0 + } + ] + }, + { + "id": 1691, + "text": "thank you", + "start": 2304.08, + "end": 2304.76, + "words": [ + { + "word": " thank", + "start": 2304.08, + "end": 2304.76, + "probability": 0.251708984375 + }, + { + "word": " you", + "start": 2304.76, + "end": 2304.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1692, + "text": "the computer", + "start": 2304.76, + "end": 2305.04, + "words": [ + { + "word": " the", + "start": 2304.76, + "end": 2304.76, + "probability": 0.0670166015625 + }, + { + "word": " computer", + "start": 2304.76, + "end": 2305.04, + "probability": 0.264404296875 + } + ] + }, + { + "id": 1693, + "text": "guru show", + "start": 2305.04, + "end": 2305.72, + "words": [ + { + "word": " guru", + "start": 2305.04, + "end": 2305.34, + "probability": 0.98583984375 + }, + { + "word": " show", + "start": 2305.34, + "end": 2305.72, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1694, + "text": "AM 1030", + "start": 2305.72, + "end": 2306.94, + "words": [ + { + "word": " AM", + "start": 2305.72, + "end": 2306.32, + "probability": 0.0986328125 + }, + { + "word": " 1030", + "start": 2306.32, + "end": 2306.94, + "probability": 0.720703125 + } + ] + }, + { + "id": 1695, + "text": "KBOY", + "start": 2306.94, + "end": 2307.8, + "words": [ + { + "word": " KBOY", + "start": 2306.94, + "end": 2307.8, + "probability": 0.5712890625 + } + ] + }, + { + "id": 1696, + "text": "The Voice", + "start": 2307.8, + "end": 2308.74, + "words": [ + { + "word": " The", + "start": 2307.8, + "end": 2308.4, + "probability": 0.15576171875 + }, + { + "word": " Voice", + "start": 2308.4, + "end": 2308.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1697, + "text": "Mike Swanson", + "start": 2322.9800000000005, + "end": 2324.34, + "words": [ + { + "word": " Mike", + "start": 2322.9800000000005, + "end": 2323.6600000000003, + "probability": 0.035369873046875 + }, + { + "word": " Swanson", + "start": 2323.6600000000003, + "end": 2324.34, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1698, + "text": "your computer", + "start": 2324.34, + "end": 2325.0, + "words": [ + { + "word": " your", + "start": 2324.34, + "end": 2324.62, + "probability": 0.3837890625 + }, + { + "word": " computer", + "start": 2324.62, + "end": 2325.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1699, + "text": "guru is just", + "start": 2325.0, + "end": 2325.96, + "words": [ + { + "word": " guru", + "start": 2325.0, + "end": 2325.36, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2325.36, + "end": 2325.72, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 2325.72, + "end": 2325.96, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1700, + "text": "a click away", + "start": 2325.96, + "end": 2326.52, + "words": [ + { + "word": " a", + "start": 2325.96, + "end": 2326.12, + "probability": 0.99951171875 + }, + { + "word": " click", + "start": 2326.12, + "end": 2326.3, + "probability": 0.998046875 + }, + { + "word": " away", + "start": 2326.3, + "end": 2326.52, + "probability": 1.0 + } + ] + }, + { + "id": 1701, + "text": "listen and watch", + "start": 2326.52, + "end": 2327.66, + "words": [ + { + "word": " listen", + "start": 2326.52, + "end": 2327.2, + "probability": 0.88427734375 + }, + { + "word": " and", + "start": 2327.2, + "end": 2327.38, + "probability": 0.99853515625 + }, + { + "word": " watch", + "start": 2327.38, + "end": 2327.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1702, + "text": "a guru show", + "start": 2327.66, + "end": 2328.38, + "words": [ + { + "word": " a", + "start": 2327.66, + "end": 2327.82, + "probability": 0.439453125 + }, + { + "word": " guru", + "start": 2327.82, + "end": 2328.04, + "probability": 0.480712890625 + }, + { + "word": " show", + "start": 2328.04, + "end": 2328.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1703, + "text": "dot com", + "start": 2328.38, + "end": 2329.06, + "words": [ + { + "word": " dot", + "start": 2328.38, + "end": 2328.72, + "probability": 0.71875 + }, + { + "word": " com", + "start": 2328.72, + "end": 2329.06, + "probability": 0.9921875 + } + ] + }, + { + "id": 1704, + "text": "this is the", + "start": 2329.06, + "end": 2330.3, + "words": [ + { + "word": " this", + "start": 2329.06, + "end": 2329.88, + "probability": 0.9658203125 + }, + { + "word": " is", + "start": 2329.88, + "end": 2330.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2330.12, + "end": 2330.3, + "probability": 0.998046875 + } + ] + }, + { + "id": 1705, + "text": "computer guru", + "start": 2330.3, + "end": 2330.92, + "words": [ + { + "word": " computer", + "start": 2330.3, + "end": 2330.6, + "probability": 0.99853515625 + }, + { + "word": " guru", + "start": 2330.6, + "end": 2330.92, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1706, + "text": "show", + "start": 2330.92, + "end": 2331.34, + "words": [ + { + "word": " show", + "start": 2330.92, + "end": 2331.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1707, + "text": "welcome back", + "start": 2331.34, + "end": 2333.16, + "words": [ + { + "word": " welcome", + "start": 2331.34, + "end": 2332.24, + "probability": 0.9150390625 + }, + { + "word": " back", + "start": 2332.24, + "end": 2333.16, + "probability": 0.57568359375 + } + ] + }, + { + "id": 1708, + "text": "to the computer", + "start": 2334.1200000000003, + "end": 2334.44, + "words": [ + { + "word": " to", + "start": 2333.8399999999997, + "end": 2334.18, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2334.18, + "end": 2334.26, + "probability": 0.99462890625 + }, + { + "word": " computer", + "start": 2334.26, + "end": 2334.44, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1709, + "text": "guru show", + "start": 2334.44, + "end": 2334.88, + "words": [ + { + "word": " guru", + "start": 2334.44, + "end": 2334.54, + "probability": 2.86102294921875e-06 + }, + { + "word": " show", + "start": 2334.54, + "end": 2334.88, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1710, + "text": "if you'd like to", + "start": 2335.66, + "end": 2336.96, + "words": [ + { + "word": " if", + "start": 2335.66, + "end": 2336.18, + "probability": 0.7080078125 + }, + { + "word": " you'd", + "start": 2336.18, + "end": 2336.62, + "probability": 0.6982421875 + }, + { + "word": " like", + "start": 2336.62, + "end": 2336.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 2336.82, + "end": 2336.96, + "probability": 1.0 + } + ] + }, + { + "id": 1711, + "text": "be part of the", + "start": 2336.96, + "end": 2337.56, + "words": [ + { + "word": " be", + "start": 2336.96, + "end": 2337.1, + "probability": 1.0 + }, + { + "word": " part", + "start": 2337.1, + "end": 2337.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 2337.36, + "end": 2337.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 2337.5, + "end": 2337.56, + "probability": 1.0 + } + ] + }, + { + "id": 1712, + "text": "show you can", + "start": 2337.56, + "end": 2338.04, + "words": [ + { + "word": " show", + "start": 2337.56, + "end": 2337.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 2337.72, + "end": 2337.9, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 2337.9, + "end": 2338.04, + "probability": 1.0 + } + ] + }, + { + "id": 1713, + "text": "give us a call", + "start": 2338.04, + "end": 2338.48, + "words": [ + { + "word": " give", + "start": 2338.04, + "end": 2338.16, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2338.16, + "end": 2338.3, + "probability": 0.955078125 + }, + { + "word": " a", + "start": 2338.3, + "end": 2338.3, + "probability": 0.9462890625 + }, + { + "word": " call", + "start": 2338.3, + "end": 2338.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1714, + "text": "520-790-2040", + "start": 2338.48, + "end": 2341.24, + "words": [ + { + "word": " 520", + "start": 2338.48, + "end": 2339.2, + "probability": 0.9619140625 + }, + { + "word": "-790", + "start": 2339.2, + "end": 2340.28, + "probability": 0.9697265625 + }, + { + "word": "-2040", + "start": 2340.28, + "end": 2341.24, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1715, + "text": "let's go ahead", + "start": 2342.4, + "end": 2343.1, + "words": [ + { + "word": " let's", + "start": 2342.4, + "end": 2342.92, + "probability": 0.9892578125 + }, + { + "word": " go", + "start": 2342.92, + "end": 2343.0, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 2343.0, + "end": 2343.1, + "probability": 0.939453125 + } + ] + }, + { + "id": 1716, + "text": "and talk to", + "start": 2343.1, + "end": 2343.36, + "words": [ + { + "word": " and", + "start": 2343.1, + "end": 2343.16, + "probability": 0.87841796875 + }, + { + "word": " talk", + "start": 2343.16, + "end": 2343.28, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2343.28, + "end": 2343.36, + "probability": 1.0 + } + ] + }, + { + "id": 1717, + "text": "Sandy", + "start": 2343.36, + "end": 2343.52, + "words": [ + { + "word": " Sandy", + "start": 2343.36, + "end": 2343.52, + "probability": 0.03607177734375 + } + ] + }, + { + "id": 1718, + "text": "hello Sandy", + "start": 2343.52, + "end": 2344.02, + "words": [ + { + "word": " hello", + "start": 2343.52, + "end": 2343.8, + "probability": 0.95556640625 + }, + { + "word": " Sandy", + "start": 2343.8, + "end": 2344.02, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1719, + "text": "how are you", + "start": 2344.02, + "end": 2344.5, + "words": [ + { + "word": " how", + "start": 2344.02, + "end": 2344.24, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2344.24, + "end": 2344.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 2344.34, + "end": 2344.5, + "probability": 1.0 + } + ] + }, + { + "id": 1720, + "text": "well good", + "start": 2345.12, + "end": 2345.9, + "words": [ + { + "word": " well", + "start": 2345.12, + "end": 2345.64, + "probability": 0.97705078125 + }, + { + "word": " good", + "start": 2345.64, + "end": 2345.9, + "probability": 1.0 + } + ] + }, + { + "id": 1721, + "text": "morning", + "start": 2345.9, + "end": 2346.26, + "words": [ + { + "word": " morning", + "start": 2345.9, + "end": 2346.26, + "probability": 1.0 + } + ] + }, + { + "id": 1722, + "text": "I just got", + "start": 2346.26, + "end": 2347.84, + "words": [ + { + "word": " I", + "start": 2346.26, + "end": 2346.72, + "probability": 0.354248046875 + }, + { + "word": " just", + "start": 2346.72, + "end": 2347.54, + "probability": 0.55419921875 + }, + { + "word": " got", + "start": 2347.54, + "end": 2347.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1723, + "text": "a new computer", + "start": 2347.84, + "end": 2348.76, + "words": [ + { + "word": " a", + "start": 2347.84, + "end": 2348.08, + "probability": 0.99951171875 + }, + { + "word": " new", + "start": 2348.08, + "end": 2348.28, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 2348.28, + "end": 2348.76, + "probability": 1.0 + } + ] + }, + { + "id": 1724, + "text": "and I'm putting", + "start": 2348.76, + "end": 2349.6, + "words": [ + { + "word": " and", + "start": 2348.76, + "end": 2349.18, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 2349.18, + "end": 2349.4, + "probability": 0.9990234375 + }, + { + "word": " putting", + "start": 2349.4, + "end": 2349.6, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1725, + "text": "all the new", + "start": 2349.6, + "end": 2350.18, + "words": [ + { + "word": " all", + "start": 2349.6, + "end": 2349.84, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2349.84, + "end": 2349.98, + "probability": 0.9990234375 + }, + { + "word": " new", + "start": 2349.98, + "end": 2350.18, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1726, + "text": "software and", + "start": 2350.76, + "end": 2351.6, + "words": [ + { + "word": " software", + "start": 2350.76, + "end": 2351.28, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2351.28, + "end": 2351.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1727, + "text": "things on", + "start": 2351.6, + "end": 2352.22, + "words": [ + { + "word": " things", + "start": 2351.6, + "end": 2351.84, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 2351.84, + "end": 2352.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1728, + "text": "and my new", + "start": 2352.22, + "end": 2353.2, + "words": [ + { + "word": " and", + "start": 2352.22, + "end": 2352.64, + "probability": 0.99853515625 + }, + { + "word": " my", + "start": 2352.64, + "end": 2352.96, + "probability": 0.99853515625 + }, + { + "word": " new", + "start": 2352.96, + "end": 2353.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1729, + "text": "machine has", + "start": 2353.2, + "end": 2354.5, + "words": [ + { + "word": " machine", + "start": 2353.2, + "end": 2354.06, + "probability": 0.99658203125 + }, + { + "word": " has", + "start": 2354.06, + "end": 2354.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1730, + "text": "office 365", + "start": 2354.5, + "end": 2355.78, + "words": [ + { + "word": " office", + "start": 2354.5, + "end": 2355.0, + "probability": 0.85791015625 + }, + { + "word": " 365", + "start": 2355.0, + "end": 2355.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1731, + "text": "360 which is", + "start": 2355.78, + "end": 2357.48, + "words": [ + { + "word": " 360", + "start": 2355.78, + "end": 2356.6, + "probability": 0.32275390625 + }, + { + "word": " which", + "start": 2356.6, + "end": 2357.32, + "probability": 0.98291015625 + }, + { + "word": " is", + "start": 2357.32, + "end": 2357.48, + "probability": 0.97998046875 + } + ] + }, + { + "id": 1732, + "text": "I think cloud", + "start": 2357.48, + "end": 2358.14, + "words": [ + { + "word": " I", + "start": 2357.48, + "end": 2357.68, + "probability": 0.947265625 + }, + { + "word": " think", + "start": 2357.68, + "end": 2357.82, + "probability": 0.93212890625 + }, + { + "word": " cloud", + "start": 2357.82, + "end": 2358.14, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1733, + "text": "based", + "start": 2358.14, + "end": 2358.46, + "words": [ + { + "word": " based", + "start": 2358.14, + "end": 2358.46, + "probability": 0.3525390625 + } + ] + }, + { + "id": 1734, + "text": "and I have", + "start": 2358.46, + "end": 2359.72, + "words": [ + { + "word": " and", + "start": 2358.46, + "end": 2359.44, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2359.44, + "end": 2359.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 2359.56, + "end": 2359.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1735, + "text": "this prejudice", + "start": 2359.72, + "end": 2360.2, + "words": [ + { + "word": " this", + "start": 2359.72, + "end": 2359.84, + "probability": 0.99951171875 + }, + { + "word": " prejudice", + "start": 2359.84, + "end": 2360.2, + "probability": 0.994140625 + } + ] + }, + { + "id": 1736, + "text": "I just", + "start": 2360.2, + "end": 2360.74, + "words": [ + { + "word": " I", + "start": 2360.2, + "end": 2360.58, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 2360.58, + "end": 2360.74, + "probability": 0.994140625 + } + ] + }, + { + "id": 1737, + "text": "I'm avoiding", + "start": 2360.74, + "end": 2361.62, + "words": [ + { + "word": " I'm", + "start": 2360.74, + "end": 2361.32, + "probability": 0.998046875 + }, + { + "word": " avoiding", + "start": 2361.32, + "end": 2361.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1738, + "text": "the cloud", + "start": 2361.62, + "end": 2362.18, + "words": [ + { + "word": " the", + "start": 2361.62, + "end": 2361.9, + "probability": 1.0 + }, + { + "word": " cloud", + "start": 2361.9, + "end": 2362.18, + "probability": 0.96044921875 + } + ] + }, + { + "id": 1739, + "text": "still", + "start": 2362.18, + "end": 2362.72, + "words": [ + { + "word": " still", + "start": 2362.18, + "end": 2362.72, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1740, + "text": "okay", + "start": 2362.72, + "end": 2363.38, + "words": [ + { + "word": " okay", + "start": 2362.72, + "end": 2363.38, + "probability": 0.947265625 + } + ] + }, + { + "id": 1741, + "text": "I found out", + "start": 2363.38, + "end": 2364.18, + "words": [ + { + "word": " I", + "start": 2363.38, + "end": 2363.6, + "probability": 0.7265625 + }, + { + "word": " found", + "start": 2363.6, + "end": 2363.86, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 2363.86, + "end": 2364.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1742, + "text": "that there's", + "start": 2364.18, + "end": 2364.78, + "words": [ + { + "word": " that", + "start": 2364.18, + "end": 2364.34, + "probability": 0.5703125 + }, + { + "word": " there's", + "start": 2364.34, + "end": 2364.78, + "probability": 0.9462890625 + } + ] + }, + { + "id": 1743, + "text": "a Libra office", + "start": 2364.78, + "end": 2365.78, + "words": [ + { + "word": " a", + "start": 2364.78, + "end": 2364.9, + "probability": 0.99755859375 + }, + { + "word": " Libra", + "start": 2364.9, + "end": 2365.44, + "probability": 0.61474609375 + }, + { + "word": " office", + "start": 2365.44, + "end": 2365.78, + "probability": 0.307373046875 + } + ] + }, + { + "id": 1744, + "text": "or office Libra", + "start": 2365.78, + "end": 2367.24, + "words": [ + { + "word": " or", + "start": 2365.78, + "end": 2366.1, + "probability": 0.90625 + }, + { + "word": " office", + "start": 2366.1, + "end": 2366.52, + "probability": 0.0281982421875 + }, + { + "word": " Libra", + "start": 2366.52, + "end": 2367.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1745, + "text": "which has a suite", + "start": 2367.24, + "end": 2368.52, + "words": [ + { + "word": " which", + "start": 2367.24, + "end": 2367.66, + "probability": 0.344970703125 + }, + { + "word": " has", + "start": 2367.66, + "end": 2368.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 2368.14, + "end": 2368.26, + "probability": 0.99951171875 + }, + { + "word": " suite", + "start": 2368.26, + "end": 2368.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1746, + "text": "of a calculator", + "start": 2368.52, + "end": 2369.32, + "words": [ + { + "word": " of", + "start": 2368.52, + "end": 2368.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 2368.74, + "end": 2368.88, + "probability": 0.99951171875 + }, + { + "word": " calculator", + "start": 2368.88, + "end": 2369.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1747, + "text": "and like a word", + "start": 2369.32, + "end": 2370.56, + "words": [ + { + "word": " and", + "start": 2369.32, + "end": 2369.98, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2369.98, + "end": 2370.16, + "probability": 0.6533203125 + }, + { + "word": " a", + "start": 2370.16, + "end": 2370.3, + "probability": 0.9990234375 + }, + { + "word": " word", + "start": 2370.3, + "end": 2370.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 1748, + "text": "processor", + "start": 2370.56, + "end": 2371.06, + "words": [ + { + "word": " processor", + "start": 2370.56, + "end": 2371.06, + "probability": 0.99609375 + } + ] + }, + { + "id": 1749, + "text": "and PowerPoint", + "start": 2371.06, + "end": 2373.28, + "words": [ + { + "word": " and", + "start": 2371.06, + "end": 2371.92, + "probability": 0.99853515625 + }, + { + "word": " PowerPoint", + "start": 2371.92, + "end": 2373.28, + "probability": 0.92529296875 + } + ] + }, + { + "id": 1750, + "text": "like", + "start": 2373.28, + "end": 2373.82, + "words": [ + { + "word": " like", + "start": 2373.28, + "end": 2373.82, + "probability": 0.281982421875 + } + ] + }, + { + "id": 1751, + "text": "yeah it's", + "start": 2373.82, + "end": 2374.88, + "words": [ + { + "word": " yeah", + "start": 2373.82, + "end": 2374.46, + "probability": 0.0313720703125 + }, + { + "word": " it's", + "start": 2374.46, + "end": 2374.88, + "probability": 0.95068359375 + } + ] + }, + { + "id": 1752, + "text": "it's basically", + "start": 2374.88, + "end": 2375.68, + "words": [ + { + "word": " it's", + "start": 2374.88, + "end": 2375.12, + "probability": 0.6796875 + }, + { + "word": " basically", + "start": 2375.12, + "end": 2375.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1753, + "text": "a clone of office", + "start": 2375.68, + "end": 2376.74, + "words": [ + { + "word": " a", + "start": 2375.68, + "end": 2375.92, + "probability": 0.998046875 + }, + { + "word": " clone", + "start": 2375.92, + "end": 2376.18, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2376.18, + "end": 2376.4, + "probability": 0.99951171875 + }, + { + "word": " office", + "start": 2376.4, + "end": 2376.74, + "probability": 0.9052734375 + } + ] + }, + { + "id": 1754, + "text": "now would that", + "start": 2376.74, + "end": 2378.46, + "words": [ + { + "word": " now", + "start": 2376.74, + "end": 2377.86, + "probability": 0.9716796875 + }, + { + "word": " would", + "start": 2377.86, + "end": 2378.22, + "probability": 0.98828125 + }, + { + "word": " that", + "start": 2378.22, + "end": 2378.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1755, + "text": "would that", + "start": 2378.46, + "end": 2379.1, + "words": [ + { + "word": " would", + "start": 2378.46, + "end": 2378.84, + "probability": 0.97119140625 + }, + { + "word": " that", + "start": 2378.84, + "end": 2379.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1756, + "text": "if I use that", + "start": 2379.1, + "end": 2380.6, + "words": [ + { + "word": " if", + "start": 2379.1, + "end": 2379.6, + "probability": 0.9970703125 + }, + { + "word": " I", + "start": 2379.6, + "end": 2379.76, + "probability": 0.98681640625 + }, + { + "word": " use", + "start": 2379.76, + "end": 2379.96, + "probability": 0.607421875 + }, + { + "word": " that", + "start": 2379.96, + "end": 2380.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1757, + "text": "too long", + "start": 2380.6, + "end": 2381.22, + "words": [ + { + "word": " too", + "start": 2380.6, + "end": 2380.82, + "probability": 0.998046875 + }, + { + "word": " long", + "start": 2380.82, + "end": 2381.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1758, + "text": "will my data", + "start": 2381.22, + "end": 2382.68, + "words": [ + { + "word": " will", + "start": 2381.22, + "end": 2381.7, + "probability": 0.72265625 + }, + { + "word": " my", + "start": 2381.7, + "end": 2382.24, + "probability": 0.3642578125 + }, + { + "word": " data", + "start": 2382.24, + "end": 2382.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1759, + "text": "eventually not be", + "start": 2382.68, + "end": 2383.78, + "words": [ + { + "word": " eventually", + "start": 2382.68, + "end": 2383.06, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 2383.06, + "end": 2383.54, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2383.54, + "end": 2383.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1760, + "text": "compatible", + "start": 2383.78, + "end": 2384.46, + "words": [ + { + "word": " compatible", + "start": 2383.78, + "end": 2384.46, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1761, + "text": "do you think", + "start": 2384.46, + "end": 2385.4, + "words": [ + { + "word": " do", + "start": 2384.46, + "end": 2385.04, + "probability": 0.99462890625 + }, + { + "word": " you", + "start": 2385.04, + "end": 2385.2, + "probability": 1.0 + }, + { + "word": " think", + "start": 2385.2, + "end": 2385.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1762, + "text": "in the future", + "start": 2385.4, + "end": 2386.02, + "words": [ + { + "word": " in", + "start": 2385.4, + "end": 2385.62, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2385.62, + "end": 2385.72, + "probability": 1.0 + }, + { + "word": " future", + "start": 2385.72, + "end": 2386.02, + "probability": 1.0 + } + ] + }, + { + "id": 1763, + "text": "to", + "start": 2386.02, + "end": 2386.24, + "words": [ + { + "word": " to", + "start": 2386.02, + "end": 2386.24, + "probability": 0.59375 + } + ] + }, + { + "id": 1764, + "text": "well", + "start": 2387.02, + "end": 2387.62, + "words": [ + { + "word": " well", + "start": 2387.02, + "end": 2387.62, + "probability": 0.83203125 + } + ] + }, + { + "id": 1765, + "text": "as of right now", + "start": 2387.62, + "end": 2388.84, + "words": [ + { + "word": " as", + "start": 2387.62, + "end": 2388.38, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2388.38, + "end": 2388.58, + "probability": 1.0 + }, + { + "word": " right", + "start": 2388.58, + "end": 2388.7, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 2388.7, + "end": 2388.84, + "probability": 1.0 + } + ] + }, + { + "id": 1766, + "text": "Libra office", + "start": 2388.84, + "end": 2389.38, + "words": [ + { + "word": " Libra", + "start": 2388.84, + "end": 2389.16, + "probability": 0.9814453125 + }, + { + "word": " office", + "start": 2389.16, + "end": 2389.38, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1767, + "text": "has the ability", + "start": 2389.38, + "end": 2389.96, + "words": [ + { + "word": " has", + "start": 2389.38, + "end": 2389.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2389.58, + "end": 2389.72, + "probability": 1.0 + }, + { + "word": " ability", + "start": 2389.72, + "end": 2389.96, + "probability": 1.0 + } + ] + }, + { + "id": 1768, + "text": "to save in all", + "start": 2389.96, + "end": 2390.98, + "words": [ + { + "word": " to", + "start": 2389.96, + "end": 2390.18, + "probability": 1.0 + }, + { + "word": " save", + "start": 2390.18, + "end": 2390.48, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2390.48, + "end": 2390.68, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2390.68, + "end": 2390.98, + "probability": 1.0 + } + ] + }, + { + "id": 1769, + "text": "of the Microsoft", + "start": 2390.98, + "end": 2391.66, + "words": [ + { + "word": " of", + "start": 2390.98, + "end": 2391.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2391.26, + "end": 2391.42, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 2391.42, + "end": 2391.66, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1770, + "text": "office formats", + "start": 2391.66, + "end": 2392.46, + "words": [ + { + "word": " office", + "start": 2391.66, + "end": 2392.06, + "probability": 0.79736328125 + }, + { + "word": " formats", + "start": 2392.06, + "end": 2392.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1771, + "text": "and I really", + "start": 2392.46, + "end": 2393.42, + "words": [ + { + "word": " and", + "start": 2392.46, + "end": 2393.12, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2393.12, + "end": 2393.22, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 2393.22, + "end": 2393.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1772, + "text": "don't see that", + "start": 2393.42, + "end": 2393.98, + "words": [ + { + "word": " don't", + "start": 2393.42, + "end": 2393.72, + "probability": 1.0 + }, + { + "word": " see", + "start": 2393.72, + "end": 2393.84, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2393.84, + "end": 2393.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1773, + "text": "changing in the", + "start": 2393.98, + "end": 2394.44, + "words": [ + { + "word": " changing", + "start": 2393.98, + "end": 2394.12, + "probability": 0.377685546875 + }, + { + "word": " in", + "start": 2394.12, + "end": 2394.4, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2394.4, + "end": 2394.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1774, + "text": "future because", + "start": 2394.44, + "end": 2394.82, + "words": [ + { + "word": " future", + "start": 2394.44, + "end": 2394.66, + "probability": 0.9970703125 + }, + { + "word": " because", + "start": 2394.66, + "end": 2394.82, + "probability": 0.796875 + } + ] + }, + { + "id": 1775, + "text": "it's kind of like", + "start": 2394.82, + "end": 2395.28, + "words": [ + { + "word": " it's", + "start": 2394.82, + "end": 2394.98, + "probability": 0.998046875 + }, + { + "word": " kind", + "start": 2394.98, + "end": 2395.1, + "probability": 0.98974609375 + }, + { + "word": " of", + "start": 2395.1, + "end": 2395.16, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2395.16, + "end": 2395.28, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1776, + "text": "their big selling", + "start": 2395.28, + "end": 2395.9, + "words": [ + { + "word": " their", + "start": 2395.28, + "end": 2395.42, + "probability": 0.99755859375 + }, + { + "word": " big", + "start": 2395.42, + "end": 2395.6, + "probability": 1.0 + }, + { + "word": " selling", + "start": 2395.6, + "end": 2395.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1777, + "text": "point is that", + "start": 2395.9, + "end": 2396.68, + "words": [ + { + "word": " point", + "start": 2395.9, + "end": 2396.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 2396.18, + "end": 2396.54, + "probability": 0.9541015625 + }, + { + "word": " that", + "start": 2396.54, + "end": 2396.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1778, + "text": "it's compatible", + "start": 2396.68, + "end": 2397.14, + "words": [ + { + "word": " it's", + "start": 2396.68, + "end": 2396.84, + "probability": 0.9990234375 + }, + { + "word": " compatible", + "start": 2396.84, + "end": 2397.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1779, + "text": "with office", + "start": 2397.14, + "end": 2398.28, + "words": [ + { + "word": " with", + "start": 2397.14, + "end": 2397.96, + "probability": 0.99853515625 + }, + { + "word": " office", + "start": 2397.96, + "end": 2398.28, + "probability": 0.07098388671875 + } + ] + }, + { + "id": 1780, + "text": "so as long as", + "start": 2398.28, + "end": 2400.16, + "words": [ + { + "word": " so", + "start": 2398.28, + "end": 2398.8, + "probability": 0.2427978515625 + }, + { + "word": " as", + "start": 2398.8, + "end": 2399.88, + "probability": 0.99560546875 + }, + { + "word": " long", + "start": 2399.88, + "end": 2400.06, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 2400.06, + "end": 2400.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1781, + "text": "you're backing it", + "start": 2400.16, + "end": 2400.64, + "words": [ + { + "word": " you're", + "start": 2400.16, + "end": 2400.28, + "probability": 0.99365234375 + }, + { + "word": " backing", + "start": 2400.28, + "end": 2400.48, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 2400.48, + "end": 2400.64, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1782, + "text": "up properly", + "start": 2400.64, + "end": 2401.04, + "words": [ + { + "word": " up", + "start": 2400.64, + "end": 2400.74, + "probability": 0.99951171875 + }, + { + "word": " properly", + "start": 2400.74, + "end": 2401.04, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1783, + "text": "it should be", + "start": 2401.04, + "end": 2401.56, + "words": [ + { + "word": " it", + "start": 2401.04, + "end": 2401.26, + "probability": 0.9814453125 + }, + { + "word": " should", + "start": 2401.26, + "end": 2401.4, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2401.4, + "end": 2401.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1784, + "text": "fine", + "start": 2401.56, + "end": 2401.78, + "words": [ + { + "word": " fine", + "start": 2401.56, + "end": 2401.78, + "probability": 0.99609375 + } + ] + }, + { + "id": 1785, + "text": "okay", + "start": 2402.44, + "end": 2403.0, + "words": [ + { + "word": " okay", + "start": 2402.44, + "end": 2403.0, + "probability": 0.6904296875 + } + ] + }, + { + "id": 1786, + "text": "okay", + "start": 2403.0, + "end": 2403.48, + "words": [ + { + "word": " okay", + "start": 2403.0, + "end": 2403.48, + "probability": 0.92236328125 + } + ] + }, + { + "id": 1787, + "text": "because I", + "start": 2403.48, + "end": 2403.9, + "words": [ + { + "word": " because", + "start": 2403.48, + "end": 2403.76, + "probability": 0.8798828125 + }, + { + "word": " I", + "start": 2403.76, + "end": 2403.9, + "probability": 0.28662109375 + } + ] + }, + { + "id": 1788, + "text": "is office", + "start": 2403.9, + "end": 2405.46, + "words": [ + { + "word": " is", + "start": 2403.9, + "end": 2404.94, + "probability": 0.43310546875 + }, + { + "word": " office", + "start": 2404.94, + "end": 2405.46, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1789, + "text": "365 cloud", + "start": 2405.46, + "end": 2407.24, + "words": [ + { + "word": " 365", + "start": 2405.46, + "end": 2406.52, + "probability": 0.98388671875 + }, + { + "word": " cloud", + "start": 2406.52, + "end": 2407.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 1790, + "text": "based mean", + "start": 2407.24, + "end": 2407.84, + "words": [ + { + "word": " based", + "start": 2407.24, + "end": 2407.5, + "probability": 0.5478515625 + }, + { + "word": " mean", + "start": 2407.5, + "end": 2407.84, + "probability": 0.95947265625 + } + ] + }, + { + "id": 1791, + "text": "that in the", + "start": 2407.84, + "end": 2408.8, + "words": [ + { + "word": " that", + "start": 2407.84, + "end": 2408.14, + "probability": 0.9814453125 + }, + { + "word": " in", + "start": 2408.14, + "end": 2408.32, + "probability": 0.7021484375 + }, + { + "word": " the", + "start": 2408.32, + "end": 2408.8, + "probability": 1.0 + } + ] + }, + { + "id": 1792, + "text": "future", + "start": 2408.8, + "end": 2409.1, + "words": [ + { + "word": " future", + "start": 2408.8, + "end": 2409.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1793, + "text": "I would", + "start": 2409.1, + "end": 2410.4, + "words": [ + { + "word": " I", + "start": 2409.1, + "end": 2410.12, + "probability": 0.9970703125 + }, + { + "word": " would", + "start": 2410.12, + "end": 2410.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1794, + "text": "purchase", + "start": 2410.4, + "end": 2410.8, + "words": [ + { + "word": " purchase", + "start": 2410.4, + "end": 2410.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1795, + "text": "the next", + "start": 2410.8, + "end": 2411.68, + "words": [ + { + "word": " the", + "start": 2410.8, + "end": 2411.46, + "probability": 0.9990234375 + }, + { + "word": " next", + "start": 2411.46, + "end": 2411.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1796, + "text": "version of", + "start": 2411.68, + "end": 2412.36, + "words": [ + { + "word": " version", + "start": 2411.68, + "end": 2412.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2412.0, + "end": 2412.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1797, + "text": "office", + "start": 2412.36, + "end": 2412.72, + "words": [ + { + "word": " office", + "start": 2412.36, + "end": 2412.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1798, + "text": "without a", + "start": 2413.36, + "end": 2414.2, + "words": [ + { + "word": " without", + "start": 2413.36, + "end": 2413.92, + "probability": 0.95361328125 + }, + { + "word": " a", + "start": 2413.92, + "end": 2414.2, + "probability": 0.99609375 + } + ] + }, + { + "id": 1799, + "text": "CD", + "start": 2414.2, + "end": 2415.0, + "words": [ + { + "word": " CD", + "start": 2414.2, + "end": 2415.0, + "probability": 0.75244140625 + } + ] + }, + { + "id": 1800, + "text": "is that", + "start": 2415.0, + "end": 2415.42, + "words": [ + { + "word": " is", + "start": 2415.0, + "end": 2415.36, + "probability": 0.990234375 + }, + { + "word": " that", + "start": 2415.36, + "end": 2415.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1801, + "text": "what that", + "start": 2415.42, + "end": 2416.1, + "words": [ + { + "word": " what", + "start": 2415.42, + "end": 2415.92, + "probability": 0.9111328125 + }, + { + "word": " that", + "start": 2415.92, + "end": 2416.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1802, + "text": "means", + "start": 2416.1, + "end": 2416.36, + "words": [ + { + "word": " means", + "start": 2416.1, + "end": 2416.36, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1803, + "text": "so the way", + "start": 2416.36, + "end": 2416.9, + "words": [ + { + "word": " so", + "start": 2416.36, + "end": 2416.66, + "probability": 0.8603515625 + }, + { + "word": " the", + "start": 2416.66, + "end": 2416.8, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 2416.8, + "end": 2416.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1804, + "text": "that 365", + "start": 2416.9, + "end": 2417.32, + "words": [ + { + "word": " that", + "start": 2416.9, + "end": 2417.02, + "probability": 0.9921875 + }, + { + "word": " 365", + "start": 2417.02, + "end": 2417.32, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1805, + "text": "works is", + "start": 2417.32, + "end": 2418.56, + "words": [ + { + "word": " works", + "start": 2417.32, + "end": 2417.96, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2417.96, + "end": 2418.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1806, + "text": "this is one", + "start": 2419.36, + "end": 2420.58, + "words": [ + { + "word": " this", + "start": 2419.36, + "end": 2419.92, + "probability": 0.990234375 + }, + { + "word": " is", + "start": 2419.92, + "end": 2420.48, + "probability": 1.0 + }, + { + "word": " one", + "start": 2420.48, + "end": 2420.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1807, + "text": "of my complaints", + "start": 2420.58, + "end": 2420.96, + "words": [ + { + "word": " of", + "start": 2420.58, + "end": 2420.64, + "probability": 1.0 + }, + { + "word": " my", + "start": 2420.64, + "end": 2420.68, + "probability": 1.0 + }, + { + "word": " complaints", + "start": 2420.68, + "end": 2420.96, + "probability": 0.99609375 + } + ] + }, + { + "id": 1808, + "text": "about Microsoft", + "start": 2420.96, + "end": 2421.58, + "words": [ + { + "word": " about", + "start": 2420.96, + "end": 2421.2, + "probability": 0.99951171875 + }, + { + "word": " Microsoft", + "start": 2421.2, + "end": 2421.58, + "probability": 0.9423828125 + } + ] + }, + { + "id": 1809, + "text": "and I'll do a", + "start": 2421.58, + "end": 2423.38, + "words": [ + { + "word": " and", + "start": 2421.58, + "end": 2422.04, + "probability": 0.78125 + }, + { + "word": " I'll", + "start": 2422.04, + "end": 2422.82, + "probability": 0.978515625 + }, + { + "word": " do", + "start": 2422.82, + "end": 2423.26, + "probability": 0.9814453125 + }, + { + "word": " a", + "start": 2423.26, + "end": 2423.38, + "probability": 0.99609375 + } + ] + }, + { + "id": 1810, + "text": "short rant", + "start": 2423.38, + "end": 2423.92, + "words": [ + { + "word": " short", + "start": 2423.38, + "end": 2423.5, + "probability": 0.10589599609375 + }, + { + "word": " rant", + "start": 2423.5, + "end": 2423.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1811, + "text": "and then we'll", + "start": 2423.92, + "end": 2424.58, + "words": [ + { + "word": " and", + "start": 2423.92, + "end": 2424.14, + "probability": 0.62548828125 + }, + { + "word": " then", + "start": 2424.14, + "end": 2424.28, + "probability": 0.998046875 + }, + { + "word": " we'll", + "start": 2424.28, + "end": 2424.58, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1812, + "text": "actually answer", + "start": 2424.58, + "end": 2425.88, + "words": [ + { + "word": " actually", + "start": 2424.58, + "end": 2425.26, + "probability": 0.892578125 + }, + { + "word": " answer", + "start": 2425.26, + "end": 2425.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1813, + "text": "your question", + "start": 2425.88, + "end": 2426.34, + "words": [ + { + "word": " your", + "start": 2425.88, + "end": 2426.02, + "probability": 1.0 + }, + { + "word": " question", + "start": 2426.02, + "end": 2426.34, + "probability": 1.0 + } + ] + }, + { + "id": 1814, + "text": "is that", + "start": 2426.34, + "end": 2427.36, + "words": [ + { + "word": " is", + "start": 2426.34, + "end": 2427.16, + "probability": 0.12445068359375 + }, + { + "word": " that", + "start": 2427.16, + "end": 2427.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1815, + "text": "Microsoft", + "start": 2427.36, + "end": 2427.78, + "words": [ + { + "word": " Microsoft", + "start": 2427.36, + "end": 2427.78, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1816, + "text": "needs to", + "start": 2427.78, + "end": 2428.2, + "words": [ + { + "word": " needs", + "start": 2427.78, + "end": 2428.06, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2428.06, + "end": 2428.2, + "probability": 1.0 + } + ] + }, + { + "id": 1817, + "text": "stop naming", + "start": 2428.2, + "end": 2428.76, + "words": [ + { + "word": " stop", + "start": 2428.2, + "end": 2428.5, + "probability": 0.99951171875 + }, + { + "word": " naming", + "start": 2428.5, + "end": 2428.76, + "probability": 1.0 + } + ] + }, + { + "id": 1818, + "text": "products that", + "start": 2428.76, + "end": 2429.5, + "words": [ + { + "word": " products", + "start": 2428.76, + "end": 2429.18, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2429.18, + "end": 2429.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1819, + "text": "are different", + "start": 2429.5, + "end": 2429.86, + "words": [ + { + "word": " are", + "start": 2429.5, + "end": 2429.6, + "probability": 1.0 + }, + { + "word": " different", + "start": 2429.6, + "end": 2429.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1820, + "text": "with the same", + "start": 2429.86, + "end": 2430.62, + "words": [ + { + "word": " with", + "start": 2429.86, + "end": 2430.3, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 2430.3, + "end": 2430.44, + "probability": 1.0 + }, + { + "word": " same", + "start": 2430.44, + "end": 2430.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1821, + "text": "name", + "start": 2430.62, + "end": 2430.96, + "words": [ + { + "word": " name", + "start": 2430.62, + "end": 2430.96, + "probability": 1.0 + } + ] + }, + { + "id": 1822, + "text": "yeah", + "start": 2430.96, + "end": 2431.44, + "words": [ + { + "word": " yeah", + "start": 2430.96, + "end": 2431.44, + "probability": 0.0301055908203125 + } + ] + }, + { + "id": 1823, + "text": "right", + "start": 2431.44, + "end": 2431.98, + "words": [ + { + "word": " right", + "start": 2431.44, + "end": 2431.98, + "probability": 0.89990234375 + } + ] + }, + { + "id": 1824, + "text": "so there's", + "start": 2431.98, + "end": 2432.66, + "words": [ + { + "word": " so", + "start": 2431.98, + "end": 2432.26, + "probability": 0.9892578125 + }, + { + "word": " there's", + "start": 2432.26, + "end": 2432.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1825, + "text": "Microsoft", + "start": 2432.66, + "end": 2433.12, + "words": [ + { + "word": " Microsoft", + "start": 2432.66, + "end": 2433.12, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1826, + "text": "office 365", + "start": 2433.12, + "end": 2434.52, + "words": [ + { + "word": " office", + "start": 2433.12, + "end": 2433.86, + "probability": 0.026947021484375 + }, + { + "word": " 365", + "start": 2433.86, + "end": 2434.52, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1827, + "text": "and within", + "start": 2435.28, + "end": 2436.42, + "words": [ + { + "word": " and", + "start": 2435.28, + "end": 2435.92, + "probability": 0.97314453125 + }, + { + "word": " within", + "start": 2435.92, + "end": 2436.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1828, + "text": "365", + "start": 2436.42, + "end": 2437.14, + "words": [ + { + "word": " 365", + "start": 2436.42, + "end": 2437.14, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1829, + "text": "there is the", + "start": 2437.14, + "end": 2438.26, + "words": [ + { + "word": " there", + "start": 2437.14, + "end": 2437.92, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 2437.92, + "end": 2438.12, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 2438.12, + "end": 2438.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1830, + "text": "version that", + "start": 2438.26, + "end": 2438.72, + "words": [ + { + "word": " version", + "start": 2438.26, + "end": 2438.5, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 2438.5, + "end": 2438.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1831, + "text": "you can just", + "start": 2438.72, + "end": 2439.36, + "words": [ + { + "word": " you", + "start": 2438.72, + "end": 2438.92, + "probability": 1.0 + }, + { + "word": " can", + "start": 2438.92, + "end": 2439.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 2439.04, + "end": 2439.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1832, + "text": "purchase", + "start": 2439.36, + "end": 2439.84, + "words": [ + { + "word": " purchase", + "start": 2439.36, + "end": 2439.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1833, + "text": "there is the", + "start": 2439.84, + "end": 2440.98, + "words": [ + { + "word": " there", + "start": 2439.84, + "end": 2440.66, + "probability": 0.99169921875 + }, + { + "word": " is", + "start": 2440.66, + "end": 2440.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2440.86, + "end": 2440.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1834, + "text": "version that", + "start": 2440.98, + "end": 2441.56, + "words": [ + { + "word": " version", + "start": 2440.98, + "end": 2441.26, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 2441.26, + "end": 2441.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1835, + "text": "is the", + "start": 2441.56, + "end": 2443.0, + "words": [ + { + "word": " is", + "start": 2441.56, + "end": 2441.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2441.98, + "end": 2443.0, + "probability": 0.97802734375 + } + ] + }, + { + "id": 1836, + "text": "subscription", + "start": 2443.0, + "end": 2443.74, + "words": [ + { + "word": " subscription", + "start": 2443.0, + "end": 2443.74, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1837, + "text": "model", + "start": 2443.74, + "end": 2444.28, + "words": [ + { + "word": " model", + "start": 2443.74, + "end": 2444.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1838, + "text": "it's also", + "start": 2445.1, + "end": 2446.0, + "words": [ + { + "word": " it's", + "start": 2445.1, + "end": 2445.74, + "probability": 0.99609375 + }, + { + "word": " also", + "start": 2445.74, + "end": 2446.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1839, + "text": "what they call", + "start": 2446.0, + "end": 2446.88, + "words": [ + { + "word": " what", + "start": 2446.0, + "end": 2446.34, + "probability": 0.466552734375 + }, + { + "word": " they", + "start": 2446.34, + "end": 2446.66, + "probability": 1.0 + }, + { + "word": " call", + "start": 2446.66, + "end": 2446.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1840, + "text": "their mail", + "start": 2446.88, + "end": 2447.44, + "words": [ + { + "word": " their", + "start": 2446.88, + "end": 2447.1, + "probability": 0.9990234375 + }, + { + "word": " mail", + "start": 2447.1, + "end": 2447.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1841, + "text": "service", + "start": 2447.44, + "end": 2447.78, + "words": [ + { + "word": " service", + "start": 2447.44, + "end": 2447.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1842, + "text": "it's just", + "start": 2448.7200000000003, + "end": 2449.64, + "words": [ + { + "word": " it's", + "start": 2448.7200000000003, + "end": 2449.36, + "probability": 0.943359375 + }, + { + "word": " just", + "start": 2449.36, + "end": 2449.64, + "probability": 0.9775390625 + } + ] + }, + { + "id": 1843, + "text": "it's ridiculous", + "start": 2449.64, + "end": 2450.8, + "words": [ + { + "word": " it's", + "start": 2449.64, + "end": 2450.16, + "probability": 0.9482421875 + }, + { + "word": " ridiculous", + "start": 2450.16, + "end": 2450.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1844, + "text": "that they name", + "start": 2450.8, + "end": 2451.56, + "words": [ + { + "word": " that", + "start": 2450.8, + "end": 2451.18, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 2451.18, + "end": 2451.36, + "probability": 1.0 + }, + { + "word": " name", + "start": 2451.36, + "end": 2451.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1845, + "text": "everything the", + "start": 2451.56, + "end": 2452.16, + "words": [ + { + "word": " everything", + "start": 2451.56, + "end": 2451.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2451.9, + "end": 2452.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1846, + "text": "same thing", + "start": 2452.16, + "end": 2452.66, + "words": [ + { + "word": " same", + "start": 2452.16, + "end": 2452.38, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2452.38, + "end": 2452.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1847, + "text": "but so", + "start": 2453.38, + "end": 2454.76, + "words": [ + { + "word": " but", + "start": 2453.38, + "end": 2453.84, + "probability": 0.00394439697265625 + }, + { + "word": " so", + "start": 2453.84, + "end": 2454.76, + "probability": 0.59033203125 + } + ] + }, + { + "id": 1848, + "text": "the what is", + "start": 2454.76, + "end": 2456.2, + "words": [ + { + "word": " the", + "start": 2454.76, + "end": 2455.14, + "probability": 0.175048828125 + }, + { + "word": " what", + "start": 2455.14, + "end": 2456.04, + "probability": 0.224365234375 + }, + { + "word": " is", + "start": 2456.04, + "end": 2456.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1849, + "text": "commonly referred", + "start": 2456.2, + "end": 2457.32, + "words": [ + { + "word": " commonly", + "start": 2456.2, + "end": 2456.96, + "probability": 0.9990234375 + }, + { + "word": " referred", + "start": 2456.96, + "end": 2457.32, + "probability": 1.0 + } + ] + }, + { + "id": 1850, + "text": "to is the", + "start": 2457.32, + "end": 2457.92, + "words": [ + { + "word": " to", + "start": 2457.32, + "end": 2457.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 2457.6, + "end": 2457.78, + "probability": 0.5615234375 + }, + { + "word": " the", + "start": 2457.78, + "end": 2457.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1851, + "text": "cloud version", + "start": 2457.92, + "end": 2458.8, + "words": [ + { + "word": " cloud", + "start": 2457.92, + "end": 2458.32, + "probability": 0.98681640625 + }, + { + "word": " version", + "start": 2458.32, + "end": 2458.8, + "probability": 1.0 + } + ] + }, + { + "id": 1852, + "text": "of office", + "start": 2458.8, + "end": 2460.26, + "words": [ + { + "word": " of", + "start": 2458.8, + "end": 2459.68, + "probability": 0.9990234375 + }, + { + "word": " office", + "start": 2459.68, + "end": 2460.26, + "probability": 0.1622314453125 + } + ] + }, + { + "id": 1853, + "text": "365 is the", + "start": 2460.26, + "end": 2461.78, + "words": [ + { + "word": " 365", + "start": 2460.26, + "end": 2460.82, + "probability": 0.93603515625 + }, + { + "word": " is", + "start": 2460.82, + "end": 2461.6, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 2461.6, + "end": 2461.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1854, + "text": "subscription", + "start": 2461.78, + "end": 2462.24, + "words": [ + { + "word": " subscription", + "start": 2461.78, + "end": 2462.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1855, + "text": "model", + "start": 2462.24, + "end": 2462.8, + "words": [ + { + "word": " model", + "start": 2462.24, + "end": 2462.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1856, + "text": "where you give", + "start": 2462.8, + "end": 2463.98, + "words": [ + { + "word": " where", + "start": 2462.8, + "end": 2463.54, + "probability": 0.703125 + }, + { + "word": " you", + "start": 2463.54, + "end": 2463.74, + "probability": 1.0 + }, + { + "word": " give", + "start": 2463.74, + "end": 2463.98, + "probability": 1.0 + } + ] + }, + { + "id": 1857, + "text": "them a hundred", + "start": 2463.98, + "end": 2464.92, + "words": [ + { + "word": " them", + "start": 2463.98, + "end": 2464.14, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2464.14, + "end": 2464.38, + "probability": 0.449462890625 + }, + { + "word": " hundred", + "start": 2464.38, + "end": 2464.92, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1858, + "text": "dollars a year", + "start": 2464.92, + "end": 2465.52, + "words": [ + { + "word": " dollars", + "start": 2464.92, + "end": 2465.12, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2465.12, + "end": 2465.32, + "probability": 1.0 + }, + { + "word": " year", + "start": 2465.32, + "end": 2465.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1859, + "text": "and they give", + "start": 2465.52, + "end": 2467.12, + "words": [ + { + "word": " and", + "start": 2465.52, + "end": 2466.4, + "probability": 0.97412109375 + }, + { + "word": " they", + "start": 2466.4, + "end": 2466.8, + "probability": 0.994140625 + }, + { + "word": " give", + "start": 2466.8, + "end": 2467.12, + "probability": 1.0 + } + ] + }, + { + "id": 1860, + "text": "you office", + "start": 2467.12, + "end": 2467.78, + "words": [ + { + "word": " you", + "start": 2467.12, + "end": 2467.34, + "probability": 1.0 + }, + { + "word": " office", + "start": 2467.34, + "end": 2467.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1861, + "text": "on up to", + "start": 2467.78, + "end": 2468.94, + "words": [ + { + "word": " on", + "start": 2467.78, + "end": 2468.24, + "probability": 1.0 + }, + { + "word": " up", + "start": 2468.24, + "end": 2468.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 2468.76, + "end": 2468.94, + "probability": 1.0 + } + ] + }, + { + "id": 1862, + "text": "five computers", + "start": 2468.94, + "end": 2470.02, + "words": [ + { + "word": " five", + "start": 2468.94, + "end": 2469.32, + "probability": 0.9990234375 + }, + { + "word": " computers", + "start": 2469.32, + "end": 2470.02, + "probability": 1.0 + } + ] + }, + { + "id": 1863, + "text": "and effectively", + "start": 2470.02, + "end": 2471.62, + "words": [ + { + "word": " and", + "start": 2470.02, + "end": 2470.74, + "probability": 0.99951171875 + }, + { + "word": " effectively", + "start": 2470.74, + "end": 2471.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 1864, + "text": "an unlimited", + "start": 2471.62, + "end": 2472.32, + "words": [ + { + "word": " an", + "start": 2471.62, + "end": 2471.98, + "probability": 0.99853515625 + }, + { + "word": " unlimited", + "start": 2471.98, + "end": 2472.32, + "probability": 1.0 + } + ] + }, + { + "id": 1865, + "text": "number of", + "start": 2472.32, + "end": 2472.92, + "words": [ + { + "word": " number", + "start": 2472.32, + "end": 2472.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 2472.74, + "end": 2472.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1866, + "text": "mobile devices", + "start": 2472.92, + "end": 2473.7, + "words": [ + { + "word": " mobile", + "start": 2472.92, + "end": 2473.12, + "probability": 1.0 + }, + { + "word": " devices", + "start": 2473.12, + "end": 2473.7, + "probability": 1.0 + } + ] + }, + { + "id": 1867, + "text": "so and", + "start": 2474.7599999999998, + "end": 2476.28, + "words": [ + { + "word": " so", + "start": 2474.7599999999998, + "end": 2475.52, + "probability": 0.85546875 + }, + { + "word": " and", + "start": 2475.52, + "end": 2476.28, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1868, + "text": "there would", + "start": 2476.28, + "end": 2477.24, + "words": [ + { + "word": " there", + "start": 2476.28, + "end": 2477.04, + "probability": 1.0 + }, + { + "word": " would", + "start": 2477.04, + "end": 2477.24, + "probability": 1.0 + } + ] + }, + { + "id": 1869, + "text": "be no", + "start": 2477.24, + "end": 2477.58, + "words": [ + { + "word": " be", + "start": 2477.24, + "end": 2477.44, + "probability": 1.0 + }, + { + "word": " no", + "start": 2477.44, + "end": 2477.58, + "probability": 1.0 + } + ] + }, + { + "id": 1870, + "text": "purchasing", + "start": 2477.58, + "end": 2478.02, + "words": [ + { + "word": " purchasing", + "start": 2477.58, + "end": 2478.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1871, + "text": "new versions", + "start": 2478.02, + "end": 2479.02, + "words": [ + { + "word": " new", + "start": 2478.02, + "end": 2478.58, + "probability": 0.99951171875 + }, + { + "word": " versions", + "start": 2478.58, + "end": 2479.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1872, + "text": "it would just", + "start": 2479.02, + "end": 2479.62, + "words": [ + { + "word": " it", + "start": 2479.02, + "end": 2479.32, + "probability": 0.9951171875 + }, + { + "word": " would", + "start": 2479.32, + "end": 2479.46, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2479.46, + "end": 2479.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 1873, + "text": "automatically", + "start": 2479.62, + "end": 2480.06, + "words": [ + { + "word": " automatically", + "start": 2479.62, + "end": 2480.06, + "probability": 1.0 + } + ] + }, + { + "id": 1874, + "text": "become the", + "start": 2480.06, + "end": 2480.9, + "words": [ + { + "word": " become", + "start": 2480.06, + "end": 2480.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 2480.58, + "end": 2480.9, + "probability": 1.0 + } + ] + }, + { + "id": 1875, + "text": "new version", + "start": 2480.9, + "end": 2481.34, + "words": [ + { + "word": " new", + "start": 2480.9, + "end": 2481.02, + "probability": 0.99951171875 + }, + { + "word": " version", + "start": 2481.02, + "end": 2481.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1876, + "text": "when the", + "start": 2481.34, + "end": 2481.92, + "words": [ + { + "word": " when", + "start": 2481.34, + "end": 2481.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 2481.76, + "end": 2481.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1877, + "text": "new version", + "start": 2481.92, + "end": 2482.3, + "words": [ + { + "word": " new", + "start": 2481.92, + "end": 2482.02, + "probability": 0.99853515625 + }, + { + "word": " version", + "start": 2482.02, + "end": 2482.3, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1878, + "text": "is released", + "start": 2482.3, + "end": 2482.74, + "words": [ + { + "word": " is", + "start": 2482.3, + "end": 2482.44, + "probability": 1.0 + }, + { + "word": " released", + "start": 2482.44, + "end": 2482.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1879, + "text": "so that's", + "start": 2484.3, + "end": 2485.34, + "words": [ + { + "word": " so", + "start": 2484.3, + "end": 2484.82, + "probability": 0.00365447998046875 + }, + { + "word": " that's", + "start": 2484.82, + "end": 2485.34, + "probability": 0.990234375 + } + ] + }, + { + "id": 1880, + "text": "how the", + "start": 2485.34, + "end": 2485.76, + "words": [ + { + "word": " how", + "start": 2485.34, + "end": 2485.54, + "probability": 0.79345703125 + }, + { + "word": " the", + "start": 2485.54, + "end": 2485.76, + "probability": 0.6728515625 + } + ] + }, + { + "id": 1881, + "text": "what they call", + "start": 2485.76, + "end": 2487.12, + "words": [ + { + "word": " what", + "start": 2485.76, + "end": 2486.4, + "probability": 0.5205078125 + }, + { + "word": " they", + "start": 2486.4, + "end": 2486.84, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 2486.84, + "end": 2487.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1882, + "text": "the cloud", + "start": 2487.12, + "end": 2487.7, + "words": [ + { + "word": " the", + "start": 2487.12, + "end": 2487.38, + "probability": 0.99951171875 + }, + { + "word": " cloud", + "start": 2487.38, + "end": 2487.7, + "probability": 0.9765625 + } + ] + }, + { + "id": 1883, + "text": "version", + "start": 2487.7, + "end": 2488.2, + "words": [ + { + "word": " version", + "start": 2487.7, + "end": 2488.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1884, + "text": "really is", + "start": 2488.9, + "end": 2489.84, + "words": [ + { + "word": " really", + "start": 2488.9, + "end": 2489.42, + "probability": 0.9091796875 + }, + { + "word": " is", + "start": 2489.42, + "end": 2489.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1885, + "text": "has nothing", + "start": 2489.84, + "end": 2490.84, + "words": [ + { + "word": " has", + "start": 2489.84, + "end": 2490.6, + "probability": 0.49267578125 + }, + { + "word": " nothing", + "start": 2490.6, + "end": 2490.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1886, + "text": "to do with", + "start": 2490.84, + "end": 2491.36, + "words": [ + { + "word": " to", + "start": 2490.84, + "end": 2491.08, + "probability": 1.0 + }, + { + "word": " do", + "start": 2491.08, + "end": 2491.26, + "probability": 1.0 + }, + { + "word": " with", + "start": 2491.26, + "end": 2491.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1887, + "text": "my data", + "start": 2491.36, + "end": 2491.82, + "words": [ + { + "word": " my", + "start": 2491.36, + "end": 2491.54, + "probability": 0.9990234375 + }, + { + "word": " data", + "start": 2491.54, + "end": 2491.82, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1888, + "text": "being in", + "start": 2491.82, + "end": 2492.36, + "words": [ + { + "word": " being", + "start": 2491.82, + "end": 2492.14, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 2492.14, + "end": 2492.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1889, + "text": "the cloud", + "start": 2492.36, + "end": 2492.74, + "words": [ + { + "word": " the", + "start": 2492.36, + "end": 2492.52, + "probability": 0.99951171875 + }, + { + "word": " cloud", + "start": 2492.52, + "end": 2492.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1890, + "text": "no they", + "start": 2492.74, + "end": 2493.66, + "words": [ + { + "word": " no", + "start": 2492.74, + "end": 2493.44, + "probability": 0.7490234375 + }, + { + "word": " they", + "start": 2493.44, + "end": 2493.66, + "probability": 0.96337890625 + } + ] + }, + { + "id": 1891, + "text": "certainly", + "start": 2493.66, + "end": 2493.94, + "words": [ + { + "word": " certainly", + "start": 2493.66, + "end": 2493.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1892, + "text": "encourage you", + "start": 2493.94, + "end": 2494.76, + "words": [ + { + "word": " encourage", + "start": 2493.94, + "end": 2494.4, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2494.4, + "end": 2494.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1893, + "text": "that they", + "start": 2494.76, + "end": 2495.08, + "words": [ + { + "word": " that", + "start": 2494.76, + "end": 2494.94, + "probability": 0.99169921875 + }, + { + "word": " they", + "start": 2494.94, + "end": 2495.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1894, + "text": "want you to", + "start": 2495.08, + "end": 2495.58, + "words": [ + { + "word": " want", + "start": 2495.08, + "end": 2495.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 2495.36, + "end": 2495.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2495.48, + "end": 2495.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1895, + "text": "save your", + "start": 2495.58, + "end": 2496.02, + "words": [ + { + "word": " save", + "start": 2495.58, + "end": 2495.86, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2495.86, + "end": 2496.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1896, + "text": "data to", + "start": 2496.02, + "end": 2496.42, + "words": [ + { + "word": " data", + "start": 2496.02, + "end": 2496.24, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2496.24, + "end": 2496.42, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1897, + "text": "one drive", + "start": 2496.42, + "end": 2497.0, + "words": [ + { + "word": " one", + "start": 2496.42, + "end": 2496.7, + "probability": 0.33740234375 + }, + { + "word": " drive", + "start": 2496.7, + "end": 2497.0, + "probability": 0.99609375 + } + ] + }, + { + "id": 1898, + "text": "which is", + "start": 2497.0, + "end": 2497.8, + "words": [ + { + "word": " which", + "start": 2497.0, + "end": 2497.6, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2497.6, + "end": 2497.8, + "probability": 1.0 + } + ] + }, + { + "id": 1899, + "text": "the cloud", + "start": 2497.8, + "end": 2498.28, + "words": [ + { + "word": " the", + "start": 2497.8, + "end": 2497.98, + "probability": 0.99951171875 + }, + { + "word": " cloud", + "start": 2497.98, + "end": 2498.28, + "probability": 1.0 + } + ] + }, + { + "id": 1900, + "text": "version of", + "start": 2498.28, + "end": 2498.76, + "words": [ + { + "word": " version", + "start": 2498.28, + "end": 2498.62, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2498.62, + "end": 2498.76, + "probability": 0.9267578125 + } + ] + }, + { + "id": 1901, + "text": "storage", + "start": 2498.76, + "end": 2499.12, + "words": [ + { + "word": " storage", + "start": 2498.76, + "end": 2499.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1902, + "text": "for Microsoft", + "start": 2499.12, + "end": 2499.8, + "words": [ + { + "word": " for", + "start": 2499.12, + "end": 2499.4, + "probability": 0.89453125 + }, + { + "word": " Microsoft", + "start": 2499.4, + "end": 2499.8, + "probability": 0.73486328125 + } + ] + }, + { + "id": 1903, + "text": "but you", + "start": 2499.8, + "end": 2500.76, + "words": [ + { + "word": " but", + "start": 2499.8, + "end": 2500.68, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2500.68, + "end": 2500.76, + "probability": 1.0 + } + ] + }, + { + "id": 1904, + "text": "don't have", + "start": 2500.76, + "end": 2501.06, + "words": [ + { + "word": " don't", + "start": 2500.76, + "end": 2500.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 2500.92, + "end": 2501.06, + "probability": 1.0 + } + ] + }, + { + "id": 1905, + "text": "to it", + "start": 2501.06, + "end": 2501.36, + "words": [ + { + "word": " to", + "start": 2501.06, + "end": 2501.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 2501.22, + "end": 2501.36, + "probability": 0.97216796875 + } + ] + }, + { + "id": 1906, + "text": "doesn't", + "start": 2501.36, + "end": 2501.64, + "words": [ + { + "word": " doesn't", + "start": 2501.36, + "end": 2501.64, + "probability": 1.0 + } + ] + }, + { + "id": 1907, + "text": "require you", + "start": 2501.64, + "end": 2502.14, + "words": [ + { + "word": " require", + "start": 2501.64, + "end": 2501.9, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2501.9, + "end": 2502.14, + "probability": 1.0 + } + ] + }, + { + "id": 1908, + "text": "to do so", + "start": 2502.14, + "end": 2502.68, + "words": [ + { + "word": " to", + "start": 2502.14, + "end": 2502.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 2502.26, + "end": 2502.42, + "probability": 1.0 + }, + { + "word": " so", + "start": 2502.42, + "end": 2502.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1909, + "text": "so", + "start": 2503.42, + "end": 2503.94, + "words": [ + { + "word": " so", + "start": 2503.42, + "end": 2503.94, + "probability": 0.82666015625 + } + ] + }, + { + "id": 1910, + "text": "which drive", + "start": 2503.94, + "end": 2504.74, + "words": [ + { + "word": " which", + "start": 2503.94, + "end": 2504.3, + "probability": 0.318359375 + }, + { + "word": " drive", + "start": 2504.3, + "end": 2504.74, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1911, + "text": "Microsoft's", + "start": 2505.88, + "end": 2506.4, + "words": [ + { + "word": " Microsoft's", + "start": 2505.88, + "end": 2506.4, + "probability": 0.8056640625 + } + ] + }, + { + "id": 1912, + "text": "version of", + "start": 2506.4, + "end": 2506.92, + "words": [ + { + "word": " version", + "start": 2506.4, + "end": 2506.62, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2506.62, + "end": 2506.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1913, + "text": "own cloud", + "start": 2506.92, + "end": 2507.3, + "words": [ + { + "word": " own", + "start": 2506.92, + "end": 2507.12, + "probability": 0.8974609375 + }, + { + "word": " cloud", + "start": 2507.12, + "end": 2507.3, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1914, + "text": "is called", + "start": 2507.3, + "end": 2507.76, + "words": [ + { + "word": " is", + "start": 2507.3, + "end": 2507.58, + "probability": 0.9033203125 + }, + { + "word": " called", + "start": 2507.58, + "end": 2507.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1915, + "text": "or of", + "start": 2507.76, + "end": 2508.4, + "words": [ + { + "word": " or", + "start": 2507.76, + "end": 2508.08, + "probability": 0.9326171875 + }, + { + "word": " of", + "start": 2508.08, + "end": 2508.4, + "probability": 0.9794921875 + } + ] + }, + { + "id": 1916, + "text": "Dropbox", + "start": 2508.4, + "end": 2509.1, + "words": [ + { + "word": " Dropbox", + "start": 2508.4, + "end": 2509.1, + "probability": 0.94921875 + } + ] + }, + { + "id": 1917, + "text": "is called", + "start": 2509.1, + "end": 2509.48, + "words": [ + { + "word": " is", + "start": 2509.1, + "end": 2509.3, + "probability": 0.99853515625 + }, + { + "word": " called", + "start": 2509.3, + "end": 2509.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1918, + "text": "one drive", + "start": 2509.48, + "end": 2510.14, + "words": [ + { + "word": " one", + "start": 2509.48, + "end": 2509.86, + "probability": 0.77734375 + }, + { + "word": " drive", + "start": 2509.86, + "end": 2510.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1919, + "text": "which is", + "start": 2511.42, + "end": 2512.06, + "words": [ + { + "word": " which", + "start": 2511.42, + "end": 2511.94, + "probability": 0.30224609375 + }, + { + "word": " is", + "start": 2511.94, + "end": 2512.06, + "probability": 0.9365234375 + } + ] + }, + { + "id": 1920, + "text": "oh I've", + "start": 2512.06, + "end": 2512.46, + "words": [ + { + "word": " oh", + "start": 2512.06, + "end": 2512.3, + "probability": 0.9521484375 + }, + { + "word": " I've", + "start": 2512.3, + "end": 2512.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1921, + "text": "seen that", + "start": 2512.46, + "end": 2512.86, + "words": [ + { + "word": " seen", + "start": 2512.46, + "end": 2512.66, + "probability": 1.0 + }, + { + "word": " that", + "start": 2512.66, + "end": 2512.86, + "probability": 1.0 + } + ] + }, + { + "id": 1922, + "text": "yeah", + "start": 2512.86, + "end": 2513.18, + "words": [ + { + "word": " yeah", + "start": 2512.86, + "end": 2513.18, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1923, + "text": "right", + "start": 2513.38, + "end": 2513.48, + "words": [ + { + "word": " right", + "start": 2513.38, + "end": 2513.48, + "probability": 0.003200531005859375 + } + ] + }, + { + "id": 1924, + "text": "which they", + "start": 2513.48, + "end": 2513.98, + "words": [ + { + "word": " which", + "start": 2513.48, + "end": 2513.7, + "probability": 0.317626953125 + }, + { + "word": " they", + "start": 2513.7, + "end": 2513.98, + "probability": 0.99609375 + } + ] + }, + { + "id": 1925, + "text": "have", + "start": 2513.98, + "end": 2514.16, + "words": [ + { + "word": " have", + "start": 2513.98, + "end": 2514.16, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1926, + "text": "lovely", + "start": 2514.16, + "end": 2514.9, + "words": [ + { + "word": " lovely", + "start": 2514.16, + "end": 2514.9, + "probability": 0.978515625 + } + ] + }, + { + "id": 1927, + "text": "as they", + "start": 2514.9, + "end": 2515.96, + "words": [ + { + "word": " as", + "start": 2514.9, + "end": 2515.5, + "probability": 0.951171875 + }, + { + "word": " they", + "start": 2515.5, + "end": 2515.96, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1928, + "text": "you know", + "start": 2515.96, + "end": 2516.32, + "words": [ + { + "word": " you", + "start": 2515.96, + "end": 2516.16, + "probability": 0.76611328125 + }, + { + "word": " know", + "start": 2516.16, + "end": 2516.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1929, + "text": "as they", + "start": 2516.32, + "end": 2516.62, + "words": [ + { + "word": " as", + "start": 2516.32, + "end": 2516.46, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 2516.46, + "end": 2516.62, + "probability": 1.0 + } + ] + }, + { + "id": 1930, + "text": "are", + "start": 2516.62, + "end": 2516.82, + "words": [ + { + "word": " are", + "start": 2516.62, + "end": 2516.82, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1931, + "text": "and thoughtful", + "start": 2516.82, + "end": 2517.24, + "words": [ + { + "word": " and", + "start": 2516.82, + "end": 2516.94, + "probability": 0.9921875 + }, + { + "word": " thoughtful", + "start": 2516.94, + "end": 2517.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1932, + "text": "as they", + "start": 2517.24, + "end": 2517.66, + "words": [ + { + "word": " as", + "start": 2517.24, + "end": 2517.56, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 2517.56, + "end": 2517.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1933, + "text": "are", + "start": 2517.66, + "end": 2517.84, + "words": [ + { + "word": " are", + "start": 2517.66, + "end": 2517.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1934, + "text": "have forced", + "start": 2517.84, + "end": 2518.36, + "words": [ + { + "word": " have", + "start": 2517.84, + "end": 2517.98, + "probability": 0.99560546875 + }, + { + "word": " forced", + "start": 2517.98, + "end": 2518.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1935, + "text": "one drive", + "start": 2518.36, + "end": 2518.82, + "words": [ + { + "word": " one", + "start": 2518.36, + "end": 2518.58, + "probability": 0.67724609375 + }, + { + "word": " drive", + "start": 2518.58, + "end": 2518.82, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1936, + "text": "onto every", + "start": 2518.82, + "end": 2519.4, + "words": [ + { + "word": " onto", + "start": 2518.82, + "end": 2519.1, + "probability": 0.88134765625 + }, + { + "word": " every", + "start": 2519.1, + "end": 2519.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1937, + "text": "computer in", + "start": 2519.4, + "end": 2520.02, + "words": [ + { + "word": " computer", + "start": 2519.4, + "end": 2519.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 2519.82, + "end": 2520.02, + "probability": 1.0 + } + ] + }, + { + "id": 1938, + "text": "the world", + "start": 2520.02, + "end": 2520.34, + "words": [ + { + "word": " the", + "start": 2520.02, + "end": 2520.06, + "probability": 1.0 + }, + { + "word": " world", + "start": 2520.06, + "end": 2520.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1939, + "text": "yes I see", + "start": 2520.34, + "end": 2521.16, + "words": [ + { + "word": " yes", + "start": 2520.34, + "end": 2520.6, + "probability": 0.97119140625 + }, + { + "word": " I", + "start": 2520.6, + "end": 2520.92, + "probability": 0.18701171875 + }, + { + "word": " see", + "start": 2520.92, + "end": 2521.16, + "probability": 0.998046875 + } + ] + }, + { + "id": 1940, + "text": "it all the", + "start": 2521.16, + "end": 2521.64, + "words": [ + { + "word": " it", + "start": 2521.16, + "end": 2521.36, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 2521.36, + "end": 2521.52, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2521.52, + "end": 2521.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1941, + "text": "time", + "start": 2521.64, + "end": 2521.84, + "words": [ + { + "word": " time", + "start": 2521.64, + "end": 2521.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1942, + "text": "so", + "start": 2521.84, + "end": 2522.22, + "words": [ + { + "word": " so", + "start": 2521.84, + "end": 2522.22, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1943, + "text": "you can", + "start": 2523.1, + "end": 2523.98, + "words": [ + { + "word": " you", + "start": 2523.1, + "end": 2523.54, + "probability": 0.583984375 + }, + { + "word": " can", + "start": 2523.54, + "end": 2523.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1944, + "text": "save", + "start": 2523.98, + "end": 2524.62, + "words": [ + { + "word": " save", + "start": 2523.98, + "end": 2524.62, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1945, + "text": "to the", + "start": 2525.1, + "end": 2525.74, + "words": [ + { + "word": " to", + "start": 2525.1, + "end": 2525.54, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2525.54, + "end": 2525.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1946, + "text": "cloud", + "start": 2525.74, + "end": 2525.94, + "words": [ + { + "word": " cloud", + "start": 2525.74, + "end": 2525.94, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1947, + "text": "that way", + "start": 2525.94, + "end": 2526.56, + "words": [ + { + "word": " that", + "start": 2525.94, + "end": 2526.26, + "probability": 0.9990234375 + }, + { + "word": " way", + "start": 2526.26, + "end": 2526.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1948, + "text": "but if", + "start": 2526.56, + "end": 2527.5, + "words": [ + { + "word": " but", + "start": 2526.56, + "end": 2527.26, + "probability": 0.99072265625 + }, + { + "word": " if", + "start": 2527.26, + "end": 2527.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1949, + "text": "you don't", + "start": 2527.5, + "end": 2527.7, + "words": [ + { + "word": " you", + "start": 2527.5, + "end": 2527.62, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2527.62, + "end": 2527.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1950, + "text": "want to", + "start": 2527.7, + "end": 2527.94, + "words": [ + { + "word": " want", + "start": 2527.7, + "end": 2527.84, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2527.84, + "end": 2527.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1951, + "text": "then just", + "start": 2527.94, + "end": 2528.36, + "words": [ + { + "word": " then", + "start": 2527.94, + "end": 2528.1, + "probability": 0.99462890625 + }, + { + "word": " just", + "start": 2528.1, + "end": 2528.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1952, + "text": "don't", + "start": 2528.36, + "end": 2529.14, + "words": [ + { + "word": " don't", + "start": 2528.36, + "end": 2529.14, + "probability": 1.0 + } + ] + }, + { + "id": 1953, + "text": "and", + "start": 2529.7200000000003, + "end": 2529.92, + "words": [ + { + "word": " and", + "start": 2529.7000000000003, + "end": 2529.92, + "probability": 0.95458984375 + } + ] + }, + { + "id": 1954, + "text": "that will", + "start": 2529.92, + "end": 2531.32, + "words": [ + { + "word": " that", + "start": 2529.92, + "end": 2530.34, + "probability": 0.5966796875 + }, + { + "word": " will", + "start": 2530.34, + "end": 2531.32, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1955, + "text": "take care", + "start": 2531.32, + "end": 2531.72, + "words": [ + { + "word": " take", + "start": 2531.32, + "end": 2531.5, + "probability": 0.99951171875 + }, + { + "word": " care", + "start": 2531.5, + "end": 2531.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1956, + "text": "of that", + "start": 2531.72, + "end": 2532.06, + "words": [ + { + "word": " of", + "start": 2531.72, + "end": 2531.86, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2531.86, + "end": 2532.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1957, + "text": "but there's", + "start": 2532.66, + "end": 2533.34, + "words": [ + { + "word": " but", + "start": 2532.66, + "end": 2533.1, + "probability": 0.5322265625 + }, + { + "word": " there's", + "start": 2533.1, + "end": 2533.34, + "probability": 0.75146484375 + } + ] + }, + { + "id": 1958, + "text": "really no", + "start": 2533.34, + "end": 2533.76, + "words": [ + { + "word": " really", + "start": 2533.34, + "end": 2533.56, + "probability": 0.99951171875 + }, + { + "word": " no", + "start": 2533.56, + "end": 2533.76, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1959, + "text": "reason for", + "start": 2533.76, + "end": 2534.34, + "words": [ + { + "word": " reason", + "start": 2533.76, + "end": 2534.12, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2534.12, + "end": 2534.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1960, + "text": "me to", + "start": 2534.34, + "end": 2534.72, + "words": [ + { + "word": " me", + "start": 2534.34, + "end": 2534.5, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2534.5, + "end": 2534.72, + "probability": 1.0 + } + ] + }, + { + "id": 1961, + "text": "avoid", + "start": 2534.72, + "end": 2535.08, + "words": [ + { + "word": " avoid", + "start": 2534.72, + "end": 2535.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1962, + "text": "office", + "start": 2535.08, + "end": 2535.7, + "words": [ + { + "word": " office", + "start": 2535.08, + "end": 2535.7, + "probability": 0.73388671875 + } + ] + }, + { + "id": 1963, + "text": "365", + "start": 2535.7, + "end": 2536.46, + "words": [ + { + "word": " 365", + "start": 2535.7, + "end": 2536.46, + "probability": 0.994140625 + } + ] + }, + { + "id": 1964, + "text": "if I", + "start": 2536.46, + "end": 2537.1, + "words": [ + { + "word": " if", + "start": 2536.46, + "end": 2536.98, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 2536.98, + "end": 2537.1, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1965, + "text": "take the", + "start": 2537.1, + "end": 2537.5, + "words": [ + { + "word": " take", + "start": 2537.1, + "end": 2537.36, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 2537.36, + "end": 2537.5, + "probability": 0.96484375 + } + ] + }, + { + "id": 1966, + "text": "mail server", + "start": 2537.5, + "end": 2538.08, + "words": [ + { + "word": " mail", + "start": 2537.5, + "end": 2537.76, + "probability": 0.9375 + }, + { + "word": " server", + "start": 2537.76, + "end": 2538.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1967, + "text": "version", + "start": 2538.08, + "end": 2538.66, + "words": [ + { + "word": " version", + "start": 2538.08, + "end": 2538.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1968, + "text": "is that what", + "start": 2538.66, + "end": 2539.2, + "words": [ + { + "word": " is", + "start": 2538.66, + "end": 2538.92, + "probability": 0.9921875 + }, + { + "word": " that", + "start": 2538.92, + "end": 2539.04, + "probability": 0.98974609375 + }, + { + "word": " what", + "start": 2539.04, + "end": 2539.2, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1969, + "text": "you mean", + "start": 2539.2, + "end": 2539.54, + "words": [ + { + "word": " you", + "start": 2539.2, + "end": 2539.34, + "probability": 0.99951171875 + }, + { + "word": " mean", + "start": 2539.34, + "end": 2539.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1970, + "text": "for that", + "start": 2539.54, + "end": 2539.82, + "words": [ + { + "word": " for", + "start": 2539.54, + "end": 2539.76, + "probability": 0.8935546875 + }, + { + "word": " that", + "start": 2539.76, + "end": 2539.82, + "probability": 0.90283203125 + } + ] + }, + { + "id": 1971, + "text": "I'm saying", + "start": 2539.82, + "end": 2541.08, + "words": [ + { + "word": " I'm", + "start": 2539.82, + "end": 2540.6, + "probability": 0.9609375 + }, + { + "word": " saying", + "start": 2540.6, + "end": 2541.08, + "probability": 0.93505859375 + } + ] + }, + { + "id": 1972, + "text": "is if you", + "start": 2541.08, + "end": 2541.7, + "words": [ + { + "word": " is", + "start": 2541.08, + "end": 2541.36, + "probability": 0.99072265625 + }, + { + "word": " if", + "start": 2541.36, + "end": 2541.58, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2541.58, + "end": 2541.7, + "probability": 1.0 + } + ] + }, + { + "id": 1973, + "text": "don't save", + "start": 2541.7, + "end": 2542.2, + "words": [ + { + "word": " don't", + "start": 2541.7, + "end": 2541.9, + "probability": 1.0 + }, + { + "word": " save", + "start": 2541.9, + "end": 2542.2, + "probability": 0.998046875 + } + ] + }, + { + "id": 1974, + "text": "to", + "start": 2542.2, + "end": 2542.38, + "words": [ + { + "word": " to", + "start": 2542.2, + "end": 2542.38, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1975, + "text": "to", + "start": 2542.38, + "end": 2542.78, + "words": [ + { + "word": " to", + "start": 2542.38, + "end": 2542.78, + "probability": 0.52734375 + } + ] + }, + { + "id": 1976, + "text": "!", + "start": 2542.78, + "end": 2543.02, + "words": [ + { + "word": "!", + "start": 2542.78, + "end": 2543.02, + "probability": 2.086162567138672e-06 + } + ] + }, + { + "id": 1977, + "text": "you know", + "start": 2543.02, + "end": 2543.68, + "words": [ + { + "word": " you", + "start": 2543.02, + "end": 2543.02, + "probability": 0.004505157470703125 + }, + { + "word": " know", + "start": 2543.02, + "end": 2543.68, + "probability": 0.802734375 + } + ] + }, + { + "id": 1978, + "text": "one drive", + "start": 2543.68, + "end": 2544.18, + "words": [ + { + "word": " one", + "start": 2543.68, + "end": 2543.86, + "probability": 0.05072021484375 + }, + { + "word": " drive", + "start": 2543.86, + "end": 2544.18, + "probability": 0.91796875 + } + ] + }, + { + "id": 1979, + "text": "then", + "start": 2544.18, + "end": 2544.84, + "words": [ + { + "word": " then", + "start": 2544.18, + "end": 2544.84, + "probability": 0.6171875 + } + ] + }, + { + "id": 1980, + "text": "you're not", + "start": 2544.84, + "end": 2545.86, + "words": [ + { + "word": " you're", + "start": 2544.84, + "end": 2545.74, + "probability": 0.828125 + }, + { + "word": " not", + "start": 2545.74, + "end": 2545.86, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1981, + "text": "saving to", + "start": 2545.86, + "end": 2546.32, + "words": [ + { + "word": " saving", + "start": 2545.86, + "end": 2546.12, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 2546.12, + "end": 2546.32, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1982, + "text": "the cloud", + "start": 2546.32, + "end": 2546.64, + "words": [ + { + "word": " the", + "start": 2546.32, + "end": 2546.44, + "probability": 0.99853515625 + }, + { + "word": " cloud", + "start": 2546.44, + "end": 2546.64, + "probability": 0.978515625 + } + ] + }, + { + "id": 1983, + "text": "and that's", + "start": 2546.64, + "end": 2547.22, + "words": [ + { + "word": " and", + "start": 2546.64, + "end": 2546.96, + "probability": 0.97314453125 + }, + { + "word": " that's", + "start": 2546.96, + "end": 2547.22, + "probability": 0.994140625 + } + ] + }, + { + "id": 1984, + "text": "fine", + "start": 2547.22, + "end": 2547.46, + "words": [ + { + "word": " fine", + "start": 2547.22, + "end": 2547.46, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1985, + "text": "okay", + "start": 2547.46, + "end": 2547.9, + "words": [ + { + "word": " okay", + "start": 2547.46, + "end": 2547.9, + "probability": 0.189208984375 + } + ] + }, + { + "id": 1986, + "text": "alright", + "start": 2547.9, + "end": 2548.56, + "words": [ + { + "word": " alright", + "start": 2547.9, + "end": 2548.56, + "probability": 0.260498046875 + } + ] + }, + { + "id": 1987, + "text": "may I", + "start": 2548.56, + "end": 2549.72, + "words": [ + { + "word": " may", + "start": 2548.56, + "end": 2549.5, + "probability": 0.818359375 + }, + { + "word": " I", + "start": 2549.5, + "end": 2549.72, + "probability": 0.8515625 + } + ] + }, + { + "id": 1988, + "text": "sneak in", + "start": 2549.72, + "end": 2550.68, + "words": [ + { + "word": " sneak", + "start": 2549.72, + "end": 2550.36, + "probability": 0.98779296875 + }, + { + "word": " in", + "start": 2550.36, + "end": 2550.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1989, + "text": "one more", + "start": 2550.68, + "end": 2551.08, + "words": [ + { + "word": " one", + "start": 2550.68, + "end": 2550.9, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 2550.9, + "end": 2551.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1990, + "text": "question", + "start": 2551.08, + "end": 2551.56, + "words": [ + { + "word": " question", + "start": 2551.08, + "end": 2551.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1991, + "text": "since I", + "start": 2551.56, + "end": 2552.12, + "words": [ + { + "word": " since", + "start": 2551.56, + "end": 2551.96, + "probability": 0.96630859375 + }, + { + "word": " I", + "start": 2551.96, + "end": 2552.12, + "probability": 0.9697265625 + } + ] + }, + { + "id": 1992, + "text": "you've got", + "start": 2552.12, + "end": 2553.02, + "words": [ + { + "word": " you've", + "start": 2552.12, + "end": 2552.92, + "probability": 0.87158203125 + }, + { + "word": " got", + "start": 2552.92, + "end": 2553.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1993, + "text": "about 30", + "start": 2553.02, + "end": 2553.6, + "words": [ + { + "word": " about", + "start": 2553.02, + "end": 2553.18, + "probability": 0.9990234375 + }, + { + "word": " 30", + "start": 2553.18, + "end": 2553.6, + "probability": 0.95654296875 + } + ] + }, + { + "id": 1994, + "text": "seconds", + "start": 2553.6, + "end": 2554.06, + "words": [ + { + "word": " seconds", + "start": 2553.6, + "end": 2554.06, + "probability": 1.0 + } + ] + }, + { + "id": 1995, + "text": "so yes", + "start": 2554.06, + "end": 2554.6, + "words": [ + { + "word": " so", + "start": 2554.06, + "end": 2554.36, + "probability": 0.98779296875 + }, + { + "word": " yes", + "start": 2554.36, + "end": 2554.6, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1996, + "text": "okay", + "start": 2554.6, + "end": 2554.88, + "words": [ + { + "word": " okay", + "start": 2554.6, + "end": 2554.88, + "probability": 0.68896484375 + } + ] + }, + { + "id": 1997, + "text": "I love", + "start": 2554.88, + "end": 2555.92, + "words": [ + { + "word": " I", + "start": 2554.88, + "end": 2555.36, + "probability": 0.9306640625 + }, + { + "word": " love", + "start": 2555.36, + "end": 2555.92, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1998, + "text": "Opera", + "start": 2555.92, + "end": 2556.26, + "words": [ + { + "word": " Opera", + "start": 2555.92, + "end": 2556.26, + "probability": 0.8076171875 + } + ] + }, + { + "id": 1999, + "text": "I load", + "start": 2556.26, + "end": 2556.98, + "words": [ + { + "word": " I", + "start": 2556.26, + "end": 2556.76, + "probability": 0.99169921875 + }, + { + "word": " load", + "start": 2556.76, + "end": 2556.98, + "probability": 0.406005859375 + } + ] + }, + { + "id": 2000, + "text": "the new", + "start": 2556.98, + "end": 2557.42, + "words": [ + { + "word": " the", + "start": 2556.98, + "end": 2557.16, + "probability": 0.7109375 + }, + { + "word": " new", + "start": 2557.16, + "end": 2557.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2001, + "text": "Opera", + "start": 2557.42, + "end": 2557.8, + "words": [ + { + "word": " Opera", + "start": 2557.42, + "end": 2557.8, + "probability": 0.9921875 + } + ] + }, + { + "id": 2002, + "text": "it has", + "start": 2557.8, + "end": 2558.16, + "words": [ + { + "word": " it", + "start": 2557.8, + "end": 2557.98, + "probability": 0.99658203125 + }, + { + "word": " has", + "start": 2557.98, + "end": 2558.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2003, + "text": "free VPN", + "start": 2558.16, + "end": 2558.8, + "words": [ + { + "word": " free", + "start": 2558.16, + "end": 2558.38, + "probability": 0.990234375 + }, + { + "word": " VPN", + "start": 2558.38, + "end": 2558.8, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2004, + "text": "but I hear", + "start": 2558.8, + "end": 2559.64, + "words": [ + { + "word": " but", + "start": 2558.8, + "end": 2559.2, + "probability": 0.99560546875 + }, + { + "word": " I", + "start": 2559.2, + "end": 2559.32, + "probability": 0.98828125 + }, + { + "word": " hear", + "start": 2559.32, + "end": 2559.64, + "probability": 0.990234375 + } + ] + }, + { + "id": 2005, + "text": "it's been", + "start": 2559.64, + "end": 2560.12, + "words": [ + { + "word": " it's", + "start": 2559.64, + "end": 2559.92, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 2559.92, + "end": 2560.12, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2006, + "text": "bought by", + "start": 2560.12, + "end": 2560.52, + "words": [ + { + "word": " bought", + "start": 2560.12, + "end": 2560.34, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 2560.34, + "end": 2560.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2007, + "text": "China", + "start": 2560.52, + "end": 2560.9, + "words": [ + { + "word": " China", + "start": 2560.52, + "end": 2560.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2008, + "text": "and I'm", + "start": 2560.9, + "end": 2561.46, + "words": [ + { + "word": " and", + "start": 2560.9, + "end": 2561.24, + "probability": 0.99853515625 + }, + { + "word": " I'm", + "start": 2561.24, + "end": 2561.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2009, + "text": "nervous", + "start": 2561.46, + "end": 2561.74, + "words": [ + { + "word": " nervous", + "start": 2561.46, + "end": 2561.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2010, + "text": "I don't", + "start": 2562.54, + "end": 2563.66, + "words": [ + { + "word": " I", + "start": 2562.54, + "end": 2563.1, + "probability": 0.1448974609375 + }, + { + "word": " don't", + "start": 2563.1, + "end": 2563.66, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2011, + "text": "blame you", + "start": 2563.66, + "end": 2563.96, + "words": [ + { + "word": " blame", + "start": 2563.66, + "end": 2563.84, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 2563.84, + "end": 2563.96, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2012, + "text": "I mean", + "start": 2563.96, + "end": 2565.66, + "words": [ + { + "word": " I", + "start": 2563.96, + "end": 2564.94, + "probability": 0.96875 + }, + { + "word": " mean", + "start": 2564.94, + "end": 2565.66, + "probability": 0.9384765625 + } + ] + }, + { + "id": 2013, + "text": "I don't", + "start": 2565.66, + "end": 2566.02, + "words": [ + { + "word": " I", + "start": 2565.66, + "end": 2565.86, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2565.86, + "end": 2566.02, + "probability": 1.0 + } + ] + }, + { + "id": 2014, + "text": "know that", + "start": 2566.02, + "end": 2566.26, + "words": [ + { + "word": " know", + "start": 2566.02, + "end": 2566.12, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2566.12, + "end": 2566.26, + "probability": 0.994140625 + } + ] + }, + { + "id": 2015, + "text": "that's", + "start": 2566.26, + "end": 2566.56, + "words": [ + { + "word": " that's", + "start": 2566.26, + "end": 2566.56, + "probability": 0.9921875 + } + ] + }, + { + "id": 2016, + "text": "necessarily", + "start": 2566.56, + "end": 2566.92, + "words": [ + { + "word": " necessarily", + "start": 2566.56, + "end": 2566.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2017, + "text": "a huge", + "start": 2566.92, + "end": 2567.32, + "words": [ + { + "word": " a", + "start": 2566.92, + "end": 2567.14, + "probability": 0.9990234375 + }, + { + "word": " huge", + "start": 2567.14, + "end": 2567.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2018, + "text": "security", + "start": 2567.32, + "end": 2567.64, + "words": [ + { + "word": " security", + "start": 2567.32, + "end": 2567.64, + "probability": 1.0 + } + ] + }, + { + "id": 2019, + "text": "flaw", + "start": 2567.64, + "end": 2567.94, + "words": [ + { + "word": " flaw", + "start": 2567.64, + "end": 2567.94, + "probability": 1.0 + } + ] + }, + { + "id": 2020, + "text": "unless", + "start": 2567.94, + "end": 2568.18, + "words": [ + { + "word": " unless", + "start": 2567.94, + "end": 2568.18, + "probability": 1.0 + } + ] + }, + { + "id": 2021, + "text": "you're", + "start": 2568.18, + "end": 2568.38, + "words": [ + { + "word": " you're", + "start": 2568.18, + "end": 2568.38, + "probability": 1.0 + } + ] + }, + { + "id": 2022, + "text": "dealing", + "start": 2568.38, + "end": 2568.6, + "words": [ + { + "word": " dealing", + "start": 2568.38, + "end": 2568.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2023, + "text": "with", + "start": 2568.6, + "end": 2568.92, + "words": [ + { + "word": " with", + "start": 2568.6, + "end": 2568.92, + "probability": 1.0 + } + ] + }, + { + "id": 2024, + "text": "you know", + "start": 2568.92, + "end": 2569.8, + "words": [ + { + "word": " you", + "start": 2568.92, + "end": 2569.66, + "probability": 0.87451171875 + }, + { + "word": " know", + "start": 2569.66, + "end": 2569.8, + "probability": 1.0 + } + ] + }, + { + "id": 2025, + "text": "sensitive", + "start": 2569.8, + "end": 2570.18, + "words": [ + { + "word": " sensitive", + "start": 2569.8, + "end": 2570.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 2026, + "text": "information", + "start": 2570.18, + "end": 2570.6, + "words": [ + { + "word": " information", + "start": 2570.18, + "end": 2570.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2027, + "text": "but", + "start": 2571.7000000000003, + "end": 2572.26, + "words": [ + { + "word": " but", + "start": 2571.7000000000003, + "end": 2572.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 2028, + "text": "you", + "start": 2572.26, + "end": 2572.58, + "words": [ + { + "word": " you", + "start": 2572.26, + "end": 2572.58, + "probability": 0.1947021484375 + } + ] + }, + { + "id": 2029, + "text": "but if", + "start": 2572.78, + "end": 2573.26, + "words": [ + { + "word": " but", + "start": 2572.78, + "end": 2572.98, + "probability": 0.07861328125 + }, + { + "word": " if", + "start": 2572.98, + "end": 2573.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2030, + "text": "you're", + "start": 2573.26, + "end": 2573.58, + "words": [ + { + "word": " you're", + "start": 2573.26, + "end": 2573.58, + "probability": 0.57666015625 + } + ] + }, + { + "id": 2031, + "text": "you know", + "start": 2573.58, + "end": 2574.42, + "words": [ + { + "word": " you", + "start": 2573.58, + "end": 2574.26, + "probability": 0.0292510986328125 + }, + { + "word": " know", + "start": 2574.26, + "end": 2574.42, + "probability": 1.0 + } + ] + }, + { + "id": 2032, + "text": "if that's", + "start": 2574.42, + "end": 2574.8, + "words": [ + { + "word": " if", + "start": 2574.42, + "end": 2574.54, + "probability": 0.92919921875 + }, + { + "word": " that's", + "start": 2574.54, + "end": 2574.8, + "probability": 1.0 + } + ] + }, + { + "id": 2033, + "text": "the one", + "start": 2574.8, + "end": 2575.0, + "words": [ + { + "word": " the", + "start": 2574.8, + "end": 2574.86, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 2574.86, + "end": 2575.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2034, + "text": "you like", + "start": 2575.0, + "end": 2575.3, + "words": [ + { + "word": " you", + "start": 2575.0, + "end": 2575.14, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2575.14, + "end": 2575.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2035, + "text": "that's", + "start": 2575.3, + "end": 2575.5, + "words": [ + { + "word": " that's", + "start": 2575.3, + "end": 2575.5, + "probability": 0.97509765625 + } + ] + }, + { + "id": 2036, + "text": "the one", + "start": 2575.5, + "end": 2575.74, + "words": [ + { + "word": " the", + "start": 2575.5, + "end": 2575.58, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 2575.58, + "end": 2575.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2037, + "text": "you like", + "start": 2575.74, + "end": 2576.04, + "words": [ + { + "word": " you", + "start": 2575.74, + "end": 2575.86, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2575.86, + "end": 2576.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2038, + "text": "just use", + "start": 2576.04, + "end": 2576.44, + "words": [ + { + "word": " just", + "start": 2576.04, + "end": 2576.24, + "probability": 0.92724609375 + }, + { + "word": " use", + "start": 2576.24, + "end": 2576.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2039, + "text": "a", + "start": 2576.44, + "end": 2576.62, + "words": [ + { + "word": " a", + "start": 2576.44, + "end": 2576.62, + "probability": 0.95849609375 + } + ] + }, + { + "id": 2040, + "text": "which", + "start": 2576.62, + "end": 2576.92, + "words": [ + { + "word": " which", + "start": 2576.62, + "end": 2576.92, + "probability": 0.89990234375 + } + ] + }, + { + "id": 2041, + "text": "which", + "start": 2576.92, + "end": 2577.66, + "words": [ + { + "word": " which", + "start": 2576.92, + "end": 2577.66, + "probability": 0.89453125 + } + ] + }, + { + "id": 2042, + "text": "browser", + "start": 2579.4, + "end": 2579.86, + "words": [ + { + "word": " browser", + "start": 2579.4, + "end": 2579.86, + "probability": 0.0615234375 + } + ] + }, + { + "id": 2043, + "text": "do you", + "start": 2579.86, + "end": 2580.24, + "words": [ + { + "word": " do", + "start": 2579.86, + "end": 2580.14, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 2580.14, + "end": 2580.24, + "probability": 1.0 + } + ] + }, + { + "id": 2044, + "text": "particularly", + "start": 2580.24, + "end": 2580.74, + "words": [ + { + "word": " particularly", + "start": 2580.24, + "end": 2580.74, + "probability": 0.89794921875 + } + ] + }, + { + "id": 2045, + "text": "like", + "start": 2580.74, + "end": 2581.18, + "words": [ + { + "word": " like", + "start": 2580.74, + "end": 2581.18, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2046, + "text": "I use", + "start": 2581.18, + "end": 2581.98, + "words": [ + { + "word": " I", + "start": 2581.18, + "end": 2581.7, + "probability": 0.515625 + }, + { + "word": " use", + "start": 2581.7, + "end": 2581.98, + "probability": 1.0 + } + ] + }, + { + "id": 2047, + "text": "Chrome", + "start": 2581.98, + "end": 2582.26, + "words": [ + { + "word": " Chrome", + "start": 2581.98, + "end": 2582.26, + "probability": 0.7060546875 + } + ] + }, + { + "id": 2048, + "text": "and Rob", + "start": 2582.26, + "end": 2583.28, + "words": [ + { + "word": " and", + "start": 2582.26, + "end": 2583.0, + "probability": 0.99560546875 + }, + { + "word": " Rob", + "start": 2583.0, + "end": 2583.28, + "probability": 0.994140625 + } + ] + }, + { + "id": 2049, + "text": "uses", + "start": 2583.28, + "end": 2583.52, + "words": [ + { + "word": " uses", + "start": 2583.28, + "end": 2583.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2050, + "text": "Chromium", + "start": 2583.52, + "end": 2583.98, + "words": [ + { + "word": " Chromium", + "start": 2583.52, + "end": 2583.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 2051, + "text": "but", + "start": 2583.98, + "end": 2584.7, + "words": [ + { + "word": " but", + "start": 2583.98, + "end": 2584.7, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2052, + "text": "I'm", + "start": 2584.7, + "end": 2585.5, + "words": [ + { + "word": " I'm", + "start": 2584.7, + "end": 2585.5, + "probability": 1.0 + } + ] + }, + { + "id": 2053, + "text": "sorry", + "start": 2585.5, + "end": 2585.66, + "words": [ + { + "word": " sorry", + "start": 2585.5, + "end": 2585.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2054, + "text": "I'm", + "start": 2585.66, + "end": 2585.84, + "words": [ + { + "word": " I'm", + "start": 2585.66, + "end": 2585.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2055, + "text": "out of", + "start": 2585.84, + "end": 2586.0, + "words": [ + { + "word": " out", + "start": 2585.84, + "end": 2585.9, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2585.9, + "end": 2586.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2056, + "text": "time", + "start": 2586.0, + "end": 2586.14, + "words": [ + { + "word": " time", + "start": 2586.0, + "end": 2586.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2057, + "text": "Sam", + "start": 2586.14, + "end": 2586.36, + "words": [ + { + "word": " Sam", + "start": 2586.14, + "end": 2586.36, + "probability": 0.685546875 + } + ] + }, + { + "id": 2058, + "text": "thank you", + "start": 2586.36, + "end": 2587.48, + "words": [ + { + "word": " thank", + "start": 2586.36, + "end": 2586.98, + "probability": 0.26953125 + }, + { + "word": " you", + "start": 2586.98, + "end": 2587.48, + "probability": 1.0 + } + ] + }, + { + "id": 2059, + "text": "very much", + "start": 2587.48, + "end": 2588.08, + "words": [ + { + "word": " very", + "start": 2587.48, + "end": 2587.68, + "probability": 0.9921875 + }, + { + "word": " much", + "start": 2587.68, + "end": 2588.08, + "probability": 1.0 + } + ] + }, + { + "id": 2060, + "text": "thank you", + "start": 2588.08, + "end": 2588.58, + "words": [ + { + "word": " thank", + "start": 2588.08, + "end": 2588.42, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 2588.42, + "end": 2588.58, + "probability": 1.0 + } + ] + }, + { + "id": 2061, + "text": "for the", + "start": 2588.58, + "end": 2588.82, + "words": [ + { + "word": " for", + "start": 2588.58, + "end": 2588.7, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2588.7, + "end": 2588.82, + "probability": 1.0 + } + ] + }, + { + "id": 2062, + "text": "call", + "start": 2588.82, + "end": 2588.96, + "words": [ + { + "word": " call", + "start": 2588.82, + "end": 2588.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2063, + "text": "if you'd", + "start": 2588.96, + "end": 2589.8, + "words": [ + { + "word": " if", + "start": 2588.96, + "end": 2589.6, + "probability": 0.99658203125 + }, + { + "word": " you'd", + "start": 2589.6, + "end": 2589.8, + "probability": 0.98828125 + } + ] + }, + { + "id": 2064, + "text": "like to", + "start": 2589.8, + "end": 2590.08, + "words": [ + { + "word": " like", + "start": 2589.8, + "end": 2589.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 2589.9, + "end": 2590.08, + "probability": 1.0 + } + ] + }, + { + "id": 2065, + "text": "stick around", + "start": 2590.08, + "end": 2590.84, + "words": [ + { + "word": " stick", + "start": 2590.08, + "end": 2590.64, + "probability": 0.99169921875 + }, + { + "word": " around", + "start": 2590.64, + "end": 2590.84, + "probability": 1.0 + } + ] + }, + { + "id": 2066, + "text": "for the", + "start": 2590.84, + "end": 2591.08, + "words": [ + { + "word": " for", + "start": 2590.84, + "end": 2590.98, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2590.98, + "end": 2591.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2067, + "text": "second hour", + "start": 2591.08, + "end": 2591.48, + "words": [ + { + "word": " second", + "start": 2591.08, + "end": 2591.3, + "probability": 0.9931640625 + }, + { + "word": " hour", + "start": 2591.3, + "end": 2591.48, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2068, + "text": "we'd", + "start": 2591.48, + "end": 2591.7, + "words": [ + { + "word": " we'd", + "start": 2591.48, + "end": 2591.7, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2069, + "text": "appreciate", + "start": 2591.7, + "end": 2591.96, + "words": [ + { + "word": " appreciate", + "start": 2591.7, + "end": 2591.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2070, + "text": "it", + "start": 2591.96, + "end": 2592.18, + "words": [ + { + "word": " it", + "start": 2591.96, + "end": 2592.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2071, + "text": "790", + "start": 2592.18, + "end": 2592.62, + "words": [ + { + "word": " 790", + "start": 2592.18, + "end": 2592.62, + "probability": 0.9853515625 + } + ] + }, + { + "id": 2072, + "text": "2040", + "start": 2592.62, + "end": 2593.2, + "words": [ + { + "word": " 2040", + "start": 2592.62, + "end": 2593.2, + "probability": 0.53564453125 + } + ] + }, + { + "id": 2073, + "text": "and we'll", + "start": 2593.2, + "end": 2593.72, + "words": [ + { + "word": " and", + "start": 2593.2, + "end": 2593.54, + "probability": 0.9990234375 + }, + { + "word": " we'll", + "start": 2593.54, + "end": 2593.72, + "probability": 1.0 + } + ] + }, + { + "id": 2074, + "text": "be right", + "start": 2593.72, + "end": 2594.0, + "words": [ + { + "word": " be", + "start": 2593.72, + "end": 2593.82, + "probability": 1.0 + }, + { + "word": " right", + "start": 2593.82, + "end": 2594.0, + "probability": 1.0 + } + ] + }, + { + "id": 2075, + "text": "back", + "start": 2594.0, + "end": 2594.36, + "words": [ + { + "word": " back", + "start": 2594.0, + "end": 2594.36, + "probability": 1.0 + } + ] + }, + { + "id": 2076, + "text": "I say", + "start": 2594.36, + "end": 2595.44, + "words": [ + { + "word": " I", + "start": 2594.36, + "end": 2595.08, + "probability": 0.137939453125 + }, + { + "word": " say", + "start": 2595.08, + "end": 2595.44, + "probability": 0.7119140625 + } + ] + }, + { + "id": 2077, + "text": "a warning", + "start": 2595.44, + "end": 2596.78, + "words": [ + { + "word": " a", + "start": 2595.44, + "end": 2595.7, + "probability": 0.9658203125 + }, + { + "word": " warning", + "start": 2595.7, + "end": 2596.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2078, + "text": "live", + "start": 2597.34, + "end": 2597.8, + "words": [ + { + "word": " live", + "start": 2597.34, + "end": 2597.8, + "probability": 0.5615234375 + } + ] + }, + { + "id": 2079, + "text": "without", + "start": 2597.8, + "end": 2598.42, + "words": [ + { + "word": " without", + "start": 2597.8, + "end": 2598.42, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2080, + "text": "warning", + "start": 2598.42, + "end": 2599.3, + "words": [ + { + "word": " warning", + "start": 2598.42, + "end": 2599.3, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2081, + "text": "I say", + "start": 2599.3, + "end": 2600.7200000000003, + "words": [ + { + "word": " I", + "start": 2599.3, + "end": 2600.12, + "probability": 0.31640625 + }, + { + "word": " say", + "start": 2600.12, + "end": 2600.7200000000003, + "probability": 0.93505859375 + } + ] + }, + { + "id": 2082, + "text": "", + "start": 2601.88, + "end": 2601.88, + "words": [] + }, + { + "id": 2083, + "text": "", + "start": 2601.88, + "end": 2601.88, + "words": [] + }, + { + "id": 2084, + "text": "", + "start": 2601.88, + "end": 2601.88, + "words": [] + }, + { + "id": 2085, + "text": "", + "start": 2601.88, + "end": 2601.88, + "words": [] + }, + { + "id": 2086, + "text": "I say", + "start": 2601.88, + "end": 2602.76, + "words": [ + { + "word": " I", + "start": 2601.88, + "end": 2601.88, + "probability": 0.75537109375 + }, + { + "word": " say", + "start": 2601.88, + "end": 2602.76, + "probability": 0.97216796875 + } + ] + }, + { + "id": 2087, + "text": "I say", + "start": 2602.76, + "end": 2603.38, + "words": [ + { + "word": " I", + "start": 2602.76, + "end": 2603.14, + "probability": 0.487060546875 + }, + { + "word": " say", + "start": 2603.14, + "end": 2603.38, + "probability": 0.049346923828125 + } + ] + }, + { + "id": 2088, + "text": "a warning", + "start": 2603.38, + "end": 2604.6, + "words": [ + { + "word": " a", + "start": 2603.38, + "end": 2603.66, + "probability": 0.11334228515625 + }, + { + "word": " warning", + "start": 2603.66, + "end": 2604.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2089, + "text": "people", + "start": 2605.6000000000004, + "end": 2606.28, + "words": [ + { + "word": " people", + "start": 2605.6000000000004, + "end": 2606.28, + "probability": 0.0030670166015625 + } + ] + }, + { + "id": 2090, + "text": "understand", + "start": 2606.28, + "end": 2607.12, + "words": [ + { + "word": " understand", + "start": 2606.28, + "end": 2607.12, + "probability": 0.99072265625 + } + ] + }, + { + "id": 2091, + "text": "my", + "start": 2607.7000000000003, + "end": 2607.92, + "words": [ + { + "word": " my", + "start": 2607.58, + "end": 2607.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2092, + "text": "intention", + "start": 2607.92, + "end": 2608.4, + "words": [ + { + "word": " intention", + "start": 2607.92, + "end": 2608.4, + "probability": 0.8525390625 + } + ] + }, + { + "id": 2093, + "text": "computer", + "start": 2608.4, + "end": 2609.44, + "words": [ + { + "word": " computer", + "start": 2608.4, + "end": 2609.44, + "probability": 0.79248046875 + } + ] + }, + { + "id": 2094, + "text": "running", + "start": 2609.44, + "end": 2609.84, + "words": [ + { + "word": " running", + "start": 2609.44, + "end": 2609.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2095, + "text": "slow", + "start": 2609.84, + "end": 2610.22, + "words": [ + { + "word": " slow", + "start": 2609.84, + "end": 2610.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 2096, + "text": "avoiding", + "start": 2610.22, + "end": 2610.62, + "words": [ + { + "word": " avoiding", + "start": 2610.22, + "end": 2610.62, + "probability": 0.970703125 + } + ] + }, + { + "id": 2097, + "text": "caught", + "start": 2610.62, + "end": 2611.24, + "words": [ + { + "word": " caught", + "start": 2610.62, + "end": 2611.24, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2098, + "text": "a virus", + "start": 2611.24, + "end": 2611.64, + "words": [ + { + "word": " a", + "start": 2611.24, + "end": 2611.4, + "probability": 0.9990234375 + }, + { + "word": " virus", + "start": 2611.4, + "end": 2611.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2099, + "text": "does", + "start": 2612.6400000000003, + "end": 2613.32, + "words": [ + { + "word": " does", + "start": 2612.6400000000003, + "end": 2613.32, + "probability": 0.94482421875 + } + ] + }, + { + "id": 2100, + "text": "your", + "start": 2614.6600000000003, + "end": 2614.76, + "words": [ + { + "word": " your", + "start": 2614.42, + "end": 2614.76, + "probability": 1.0 + } + ] + }, + { + "id": 2101, + "text": "computer", + "start": 2614.76, + "end": 2615.22, + "words": [ + { + "word": " computer", + "start": 2614.76, + "end": 2615.22, + "probability": 1.0 + } + ] + }, + { + "id": 2102, + "text": "seem", + "start": 2615.22, + "end": 2615.66, + "words": [ + { + "word": " seem", + "start": 2615.22, + "end": 2615.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2103, + "text": "to have", + "start": 2615.66, + "end": 2616.08, + "words": [ + { + "word": " to", + "start": 2615.66, + "end": 2615.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 2615.86, + "end": 2616.08, + "probability": 1.0 + } + ] + }, + { + "id": 2104, + "text": "a life", + "start": 2616.08, + "end": 2616.58, + "words": [ + { + "word": " a", + "start": 2616.08, + "end": 2616.24, + "probability": 0.99951171875 + }, + { + "word": " life", + "start": 2616.24, + "end": 2616.58, + "probability": 1.0 + } + ] + }, + { + "id": 2105, + "text": "of its", + "start": 2616.58, + "end": 2616.9, + "words": [ + { + "word": " of", + "start": 2616.58, + "end": 2616.74, + "probability": 0.99951171875 + }, + { + "word": " its", + "start": 2616.74, + "end": 2616.9, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2106, + "text": "own", + "start": 2616.9, + "end": 2617.16, + "words": [ + { + "word": " own", + "start": 2616.9, + "end": 2617.16, + "probability": 1.0 + } + ] + }, + { + "id": 2107, + "text": "malfunction", + "start": 2617.16, + "end": 2617.78, + "words": [ + { + "word": " malfunction", + "start": 2617.16, + "end": 2617.78, + "probability": 0.927734375 + } + ] + }, + { + "id": 2108, + "text": "need", + "start": 2617.78, + "end": 2618.98, + "words": [ + { + "word": " need", + "start": 2617.78, + "end": 2618.98, + "probability": 0.6396484375 + } + ] + }, + { + "id": 2109, + "text": "input", + "start": 2618.98, + "end": 2619.64, + "words": [ + { + "word": " input", + "start": 2618.98, + "end": 2619.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2110, + "text": "the", + "start": 2619.64, + "end": 2620.06, + "words": [ + { + "word": " the", + "start": 2619.64, + "end": 2620.06, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2111, + "text": "computer", + "start": 2620.06, + "end": 2620.4, + "words": [ + { + "word": " computer", + "start": 2620.06, + "end": 2620.4, + "probability": 0.994140625 + } + ] + }, + { + "id": 2112, + "text": "guru", + "start": 2620.4, + "end": 2620.82, + "words": [ + { + "word": " guru", + "start": 2620.4, + "end": 2620.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2113, + "text": "is here", + "start": 2620.82, + "end": 2621.6, + "words": [ + { + "word": " is", + "start": 2620.82, + "end": 2621.3, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 2621.3, + "end": 2621.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2114, + "text": "call", + "start": 2621.6, + "end": 2622.12, + "words": [ + { + "word": " call", + "start": 2621.6, + "end": 2622.12, + "probability": 0.0496826171875 + } + ] + }, + { + "id": 2115, + "text": "in", + "start": 2623.46, + "end": 2623.56, + "words": [ + { + "word": " in", + "start": 2623.22, + "end": 2623.56, + "probability": 0.998046875 + } + ] + }, + { + "id": 2116, + "text": "now", + "start": 2623.56, + "end": 2623.96, + "words": [ + { + "word": " now", + "start": 2623.56, + "end": 2623.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2117, + "text": "now", + "start": 2623.96, + "end": 2624.54, + "words": [ + { + "word": " now", + "start": 2623.96, + "end": 2624.54, + "probability": 0.98193359375 + } + ] + }, + { + "id": 2118, + "text": "it's", + "start": 2624.54, + "end": 2625.02, + "words": [ + { + "word": " it's", + "start": 2624.54, + "end": 2625.02, + "probability": 1.0 + } + ] + }, + { + "id": 2119, + "text": "Mike", + "start": 2625.02, + "end": 2625.22, + "words": [ + { + "word": " Mike", + "start": 2625.02, + "end": 2625.22, + "probability": 0.315673828125 + } + ] + }, + { + "id": 2120, + "text": "Swanson", + "start": 2625.22, + "end": 2625.6, + "words": [ + { + "word": " Swanson", + "start": 2625.22, + "end": 2625.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2121, + "text": "your", + "start": 2625.6, + "end": 2626.12, + "words": [ + { + "word": " your", + "start": 2625.6, + "end": 2626.12, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2122, + "text": "computer", + "start": 2626.12, + "end": 2626.58, + "words": [ + { + "word": " computer", + "start": 2626.12, + "end": 2626.58, + "probability": 1.0 + } + ] + }, + { + "id": 2123, + "text": "guru", + "start": 2626.58, + "end": 2627.1, + "words": [ + { + "word": " guru", + "start": 2626.58, + "end": 2627.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2124, + "text": "hello", + "start": 2628.1800000000003, + "end": 2628.86, + "words": [ + { + "word": " hello", + "start": 2628.1800000000003, + "end": 2628.86, + "probability": 0.98828125 + } + ] + }, + { + "id": 2125, + "text": "and welcome", + "start": 2628.86, + "end": 2629.38, + "words": [ + { + "word": " and", + "start": 2628.86, + "end": 2629.16, + "probability": 0.99951171875 + }, + { + "word": " welcome", + "start": 2629.16, + "end": 2629.38, + "probability": 1.0 + } + ] + }, + { + "id": 2126, + "text": "to the", + "start": 2629.38, + "end": 2629.62, + "words": [ + { + "word": " to", + "start": 2629.38, + "end": 2629.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 2629.56, + "end": 2629.62, + "probability": 0.9921875 + } + ] + }, + { + "id": 2127, + "text": "computer", + "start": 2629.62, + "end": 2629.82, + "words": [ + { + "word": " computer", + "start": 2629.62, + "end": 2629.82, + "probability": 0.990234375 + } + ] + }, + { + "id": 2128, + "text": "guru", + "start": 2629.82, + "end": 2630.06, + "words": [ + { + "word": " guru", + "start": 2629.82, + "end": 2630.06, + "probability": 0.97412109375 + } + ] + }, + { + "id": 2129, + "text": "show", + "start": 2630.06, + "end": 2630.26, + "words": [ + { + "word": " show", + "start": 2630.06, + "end": 2630.26, + "probability": 0.998046875 + } + ] + }, + { + "id": 2130, + "text": "my name", + "start": 2630.26, + "end": 2630.48, + "words": [ + { + "word": " my", + "start": 2630.26, + "end": 2630.38, + "probability": 0.9990234375 + }, + { + "word": " name", + "start": 2630.38, + "end": 2630.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2131, + "text": "is Mike", + "start": 2630.48, + "end": 2630.74, + "words": [ + { + "word": " is", + "start": 2630.48, + "end": 2630.58, + "probability": 0.99658203125 + }, + { + "word": " Mike", + "start": 2630.58, + "end": 2630.74, + "probability": 0.982421875 + } + ] + }, + { + "id": 2132, + "text": "here to", + "start": 2630.74, + "end": 2631.0, + "words": [ + { + "word": " here", + "start": 2630.74, + "end": 2630.9, + "probability": 0.99169921875 + }, + { + "word": " to", + "start": 2630.9, + "end": 2631.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2133, + "text": "deal with", + "start": 2631.0, + "end": 2631.24, + "words": [ + { + "word": " deal", + "start": 2631.0, + "end": 2631.14, + "probability": 0.986328125 + }, + { + "word": " with", + "start": 2631.14, + "end": 2631.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2134, + "text": "your", + "start": 2631.24, + "end": 2631.28, + "words": [ + { + "word": " your", + "start": 2631.24, + "end": 2631.28, + "probability": 0.9482421875 + } + ] + }, + { + "id": 2135, + "text": "technology", + "start": 2631.28, + "end": 2631.56, + "words": [ + { + "word": " technology", + "start": 2631.28, + "end": 2631.56, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2136, + "text": "needs", + "start": 2631.56, + "end": 2631.9, + "words": [ + { + "word": " needs", + "start": 2631.56, + "end": 2631.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2137, + "text": "and", + "start": 2631.9, + "end": 2632.2, + "words": [ + { + "word": " and", + "start": 2631.9, + "end": 2632.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2138, + "text": "treat", + "start": 2632.2, + "end": 2632.52, + "words": [ + { + "word": " treat", + "start": 2632.2, + "end": 2632.52, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2139, + "text": "you", + "start": 2632.52, + "end": 2632.66, + "words": [ + { + "word": " you", + "start": 2632.52, + "end": 2632.66, + "probability": 0.8896484375 + } + ] + }, + { + "id": 2140, + "text": "!", + "start": 2632.66, + "end": 2632.8, + "words": [ + { + "word": "!", + "start": 2632.66, + "end": 2632.8, + "probability": 1.2934207916259766e-05 + } + ] + }, + { + "id": 2141, + "text": "", + "start": 2632.8, + "end": 2632.8, + "words": [] + }, + { + "id": 2142, + "text": "a", + "start": 2632.8, + "end": 2633.0, + "words": [ + { + "word": " a", + "start": 2632.8, + "end": 2633.0, + "probability": 0.8837890625 + } + ] + }, + { + "id": 2143, + "text": "person", + "start": 2633.0, + "end": 2633.26, + "words": [ + { + "word": " person", + "start": 2633.0, + "end": 2633.26, + "probability": 0.990234375 + } + ] + }, + { + "id": 2144, + "text": "give", + "start": 2633.26, + "end": 2633.5, + "words": [ + { + "word": " give", + "start": 2633.26, + "end": 2633.5, + "probability": 0.35205078125 + } + ] + }, + { + "id": 2145, + "text": "us", + "start": 2633.5, + "end": 2633.68, + "words": [ + { + "word": " us", + "start": 2633.5, + "end": 2633.68, + "probability": 0.984375 + } + ] + }, + { + "id": 2146, + "text": "a", + "start": 2633.68, + "end": 2633.72, + "words": [ + { + "word": " a", + "start": 2633.68, + "end": 2633.72, + "probability": 0.880859375 + } + ] + }, + { + "id": 2147, + "text": "call", + "start": 2633.72, + "end": 2633.88, + "words": [ + { + "word": " call", + "start": 2633.72, + "end": 2633.88, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2148, + "text": "if", + "start": 2633.88, + "end": 2634.06, + "words": [ + { + "word": " if", + "start": 2633.88, + "end": 2634.06, + "probability": 0.912109375 + } + ] + }, + { + "id": 2149, + "text": "you'd", + "start": 2634.06, + "end": 2634.18, + "words": [ + { + "word": " you'd", + "start": 2634.06, + "end": 2634.18, + "probability": 0.9765625 + } + ] + }, + { + "id": 2150, + "text": "like", + "start": 2634.18, + "end": 2634.3, + "words": [ + { + "word": " like", + "start": 2634.18, + "end": 2634.3, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2151, + "text": "to", + "start": 2634.3, + "end": 2634.38, + "words": [ + { + "word": " to", + "start": 2634.3, + "end": 2634.38, + "probability": 0.99609375 + } + ] + }, + { + "id": 2152, + "text": "be", + "start": 2634.38, + "end": 2634.44, + "words": [ + { + "word": " be", + "start": 2634.38, + "end": 2634.44, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2153, + "text": "part", + "start": 2634.44, + "end": 2634.58, + "words": [ + { + "word": " part", + "start": 2634.44, + "end": 2634.58, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2154, + "text": "of", + "start": 2634.58, + "end": 2634.7, + "words": [ + { + "word": " of", + "start": 2634.58, + "end": 2634.7, + "probability": 0.99072265625 + } + ] + }, + { + "id": 2155, + "text": "the", + "start": 2634.7, + "end": 2634.72, + "words": [ + { + "word": " the", + "start": 2634.7, + "end": 2634.72, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2156, + "text": "show", + "start": 2634.72, + "end": 2634.86, + "words": [ + { + "word": " show", + "start": 2634.72, + "end": 2634.86, + "probability": 0.97998046875 + } + ] + }, + { + "id": 2157, + "text": "790", + "start": 2634.86, + "end": 2635.34, + "words": [ + { + "word": " 790", + "start": 2634.86, + "end": 2635.34, + "probability": 0.8603515625 + } + ] + }, + { + "id": 2158, + "text": "2040", + "start": 2635.34, + "end": 2635.88, + "words": [ + { + "word": " 2040", + "start": 2635.34, + "end": 2635.88, + "probability": 0.49365234375 + } + ] + }, + { + "id": 2159, + "text": "where", + "start": 2635.88, + "end": 2636.1, + "words": [ + { + "word": " where", + "start": 2635.88, + "end": 2636.1, + "probability": 0.951171875 + } + ] + }, + { + "id": 2160, + "text": "we", + "start": 2636.1, + "end": 2636.22, + "words": [ + { + "word": " we", + "start": 2636.1, + "end": 2636.22, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2161, + "text": "can", + "start": 2636.22, + "end": 2636.38, + "words": [ + { + "word": " can", + "start": 2636.22, + "end": 2636.38, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2162, + "text": "deal", + "start": 2636.38, + "end": 2636.54, + "words": [ + { + "word": " deal", + "start": 2636.38, + "end": 2636.54, + "probability": 0.99609375 + } + ] + }, + { + "id": 2163, + "text": "with", + "start": 2636.54, + "end": 2636.7, + "words": [ + { + "word": " with", + "start": 2636.54, + "end": 2636.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2164, + "text": "whatever", + "start": 2636.7, + "end": 2637.14, + "words": [ + { + "word": " whatever", + "start": 2636.7, + "end": 2637.14, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2165, + "text": "technology", + "start": 2637.14, + "end": 2637.64, + "words": [ + { + "word": " technology", + "start": 2637.14, + "end": 2637.64, + "probability": 0.9765625 + } + ] + }, + { + "id": 2166, + "text": "issues", + "start": 2637.64, + "end": 2638.14, + "words": [ + { + "word": " issues", + "start": 2637.64, + "end": 2638.14, + "probability": 0.99609375 + } + ] + }, + { + "id": 2167, + "text": "you", + "start": 2638.14, + "end": 2638.48, + "words": [ + { + "word": " you", + "start": 2638.14, + "end": 2638.48, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2168, + "text": "are", + "start": 2638.48, + "end": 2638.64, + "words": [ + { + "word": " are", + "start": 2638.48, + "end": 2638.64, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2169, + "text": "having", + "start": 2638.64, + "end": 2639.0, + "words": [ + { + "word": " having", + "start": 2638.64, + "end": 2639.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2170, + "text": "Rob", + "start": 2639.0, + "end": 2639.68, + "words": [ + { + "word": " Rob", + "start": 2639.0, + "end": 2639.68, + "probability": 0.37548828125 + } + ] + }, + { + "id": 2171, + "text": "is", + "start": 2639.68, + "end": 2639.84, + "words": [ + { + "word": " is", + "start": 2639.68, + "end": 2639.84, + "probability": 0.79931640625 + } + ] + }, + { + "id": 2172, + "text": "finished", + "start": 2639.84, + "end": 2640.06, + "words": [ + { + "word": " finished", + "start": 2639.84, + "end": 2640.06, + "probability": 0.990234375 + } + ] + }, + { + "id": 2173, + "text": "with", + "start": 2640.06, + "end": 2640.26, + "words": [ + { + "word": " with", + "start": 2640.06, + "end": 2640.26, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2174, + "text": "this", + "start": 2640.26, + "end": 2640.4, + "words": [ + { + "word": " this", + "start": 2640.26, + "end": 2640.4, + "probability": 0.81982421875 + } + ] + }, + { + "id": 2175, + "text": "coughing", + "start": 2640.4, + "end": 2640.66, + "words": [ + { + "word": " coughing", + "start": 2640.4, + "end": 2640.66, + "probability": 0.85302734375 + } + ] + }, + { + "id": 2176, + "text": "fit", + "start": 2640.66, + "end": 2640.9, + "words": [ + { + "word": " fit", + "start": 2640.66, + "end": 2640.9, + "probability": 0.75244140625 + } + ] + }, + { + "id": 2177, + "text": "I'm", + "start": 2640.9, + "end": 2641.14, + "words": [ + { + "word": " I'm", + "start": 2640.9, + "end": 2641.14, + "probability": 0.88623046875 + } + ] + }, + { + "id": 2178, + "text": "dealing", + "start": 2641.14, + "end": 2641.36, + "words": [ + { + "word": " dealing", + "start": 2641.14, + "end": 2641.36, + "probability": 0.138916015625 + } + ] + }, + { + "id": 2179, + "text": "with", + "start": 2641.36, + "end": 2641.62, + "words": [ + { + "word": " with", + "start": 2641.36, + "end": 2641.62, + "probability": 0.9677734375 + } + ] + }, + { + "id": 2180, + "text": "issues", + "start": 2641.62, + "end": 2642.14, + "words": [ + { + "word": " issues", + "start": 2641.62, + "end": 2642.14, + "probability": 0.98876953125 + } + ] + }, + { + "id": 2181, + "text": "of", + "start": 2642.14, + "end": 2642.32, + "words": [ + { + "word": " of", + "start": 2642.14, + "end": 2642.32, + "probability": 0.91796875 + } + ] + }, + { + "id": 2182, + "text": "my", + "start": 2642.32, + "end": 2642.4, + "words": [ + { + "word": " my", + "start": 2642.32, + "end": 2642.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2183, + "text": "own", + "start": 2642.4, + "end": 2642.66, + "words": [ + { + "word": " own", + "start": 2642.4, + "end": 2642.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2184, + "text": "allergies", + "start": 2642.66, + "end": 2643.6, + "words": [ + { + "word": " allergies", + "start": 2642.66, + "end": 2643.6, + "probability": 0.74462890625 + } + ] + }, + { + "id": 2185, + "text": "man", + "start": 2643.6, + "end": 2643.98, + "words": [ + { + "word": " man", + "start": 2643.6, + "end": 2643.98, + "probability": 0.9658203125 + } + ] + }, + { + "id": 2186, + "text": "I", + "start": 2643.98, + "end": 2644.6, + "words": [ + { + "word": " I", + "start": 2643.98, + "end": 2644.6, + "probability": 0.6015625 + } + ] + }, + { + "id": 2187, + "text": "have", + "start": 2645.3999999999996, + "end": 2645.48, + "words": [ + { + "word": " have", + "start": 2645.2400000000002, + "end": 2645.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2188, + "text": "horrible", + "start": 2645.48, + "end": 2645.84, + "words": [ + { + "word": " horrible", + "start": 2645.48, + "end": 2645.84, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2189, + "text": "horrible", + "start": 2645.84, + "end": 2646.1, + "words": [ + { + "word": " horrible", + "start": 2645.84, + "end": 2646.1, + "probability": 0.939453125 + } + ] + }, + { + "id": 2190, + "text": "allergies", + "start": 2646.1, + "end": 2646.64, + "words": [ + { + "word": " allergies", + "start": 2646.1, + "end": 2646.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2191, + "text": "everybody's", + "start": 2646.64, + "end": 2647.52, + "words": [ + { + "word": " everybody's", + "start": 2646.64, + "end": 2647.52, + "probability": 0.767578125 + } + ] + }, + { + "id": 2192, + "text": "got", + "start": 2647.52, + "end": 2647.72, + "words": [ + { + "word": " got", + "start": 2647.52, + "end": 2647.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2193, + "text": "that", + "start": 2647.72, + "end": 2648.1, + "words": [ + { + "word": " that", + "start": 2647.72, + "end": 2648.1, + "probability": 0.76953125 + } + ] + }, + { + "id": 2194, + "text": "cough", + "start": 2648.64, + "end": 2648.84, + "words": [ + { + "word": " cough", + "start": 2648.6000000000004, + "end": 2648.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2195, + "text": "right", + "start": 2648.84, + "end": 2649.2, + "words": [ + { + "word": " right", + "start": 2648.84, + "end": 2649.2, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2196, + "text": "now", + "start": 2649.2, + "end": 2649.5, + "words": [ + { + "word": " now", + "start": 2649.2, + "end": 2649.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 2197, + "text": "I", + "start": 2649.5, + "end": 2649.84, + "words": [ + { + "word": " I", + "start": 2649.5, + "end": 2649.84, + "probability": 0.97412109375 + } + ] + }, + { + "id": 2198, + "text": "would", + "start": 2649.84, + "end": 2649.98, + "words": [ + { + "word": " would", + "start": 2649.84, + "end": 2649.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2199, + "text": "just", + "start": 2649.98, + "end": 2650.12, + "words": [ + { + "word": " just", + "start": 2649.98, + "end": 2650.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2200, + "text": "remove", + "start": 2650.12, + "end": 2650.36, + "words": [ + { + "word": " remove", + "start": 2650.12, + "end": 2650.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2201, + "text": "my", + "start": 2650.36, + "end": 2650.64, + "words": [ + { + "word": " my", + "start": 2650.36, + "end": 2650.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2202, + "text": "sinuses", + "start": 2650.64, + "end": 2651.06, + "words": [ + { + "word": " sinuses", + "start": 2650.64, + "end": 2651.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2203, + "text": "if I", + "start": 2651.06, + "end": 2651.34, + "words": [ + { + "word": " if", + "start": 2651.06, + "end": 2651.26, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 2651.26, + "end": 2651.34, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2204, + "text": "could", + "start": 2651.34, + "end": 2651.54, + "words": [ + { + "word": " could", + "start": 2651.34, + "end": 2651.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2205, + "text": "right", + "start": 2651.54, + "end": 2652.18, + "words": [ + { + "word": " right", + "start": 2651.54, + "end": 2652.18, + "probability": 0.30419921875 + } + ] + }, + { + "id": 2206, + "text": "probably", + "start": 2652.18, + "end": 2652.94, + "words": [ + { + "word": " probably", + "start": 2652.18, + "end": 2652.94, + "probability": 0.798828125 + } + ] + }, + { + "id": 2207, + "text": "not", + "start": 2652.94, + "end": 2653.14, + "words": [ + { + "word": " not", + "start": 2652.94, + "end": 2653.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2208, + "text": "actually", + "start": 2653.14, + "end": 2653.42, + "words": [ + { + "word": " actually", + "start": 2653.14, + "end": 2653.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2209, + "text": "but", + "start": 2653.42, + "end": 2653.7, + "words": [ + { + "word": " but", + "start": 2653.42, + "end": 2653.7, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2210, + "text": "seems", + "start": 2653.7, + "end": 2654.44, + "words": [ + { + "word": " seems", + "start": 2653.7, + "end": 2654.44, + "probability": 0.70703125 + } + ] + }, + { + "id": 2211, + "text": "like", + "start": 2654.44, + "end": 2654.58, + "words": [ + { + "word": " like", + "start": 2654.44, + "end": 2654.58, + "probability": 0.00811767578125 + } + ] + }, + { + "id": 2212, + "text": "it", + "start": 2654.58, + "end": 2654.72, + "words": [ + { + "word": " it", + "start": 2654.58, + "end": 2654.72, + "probability": 0.95703125 + } + ] + }, + { + "id": 2213, + "text": "would", + "start": 2654.72, + "end": 2654.8, + "words": [ + { + "word": " would", + "start": 2654.72, + "end": 2654.8, + "probability": 0.9814453125 + } + ] + }, + { + "id": 2214, + "text": "be", + "start": 2654.8, + "end": 2654.88, + "words": [ + { + "word": " be", + "start": 2654.8, + "end": 2654.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2215, + "text": "a", + "start": 2654.88, + "end": 2654.96, + "words": [ + { + "word": " a", + "start": 2654.88, + "end": 2654.96, + "probability": 0.97314453125 + } + ] + }, + { + "id": 2216, + "text": "good", + "start": 2654.96, + "end": 2655.04, + "words": [ + { + "word": " good", + "start": 2654.96, + "end": 2655.04, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2217, + "text": "idea", + "start": 2655.04, + "end": 2655.24, + "words": [ + { + "word": " idea", + "start": 2655.04, + "end": 2655.24, + "probability": 0.99609375 + } + ] + }, + { + "id": 2218, + "text": "right", + "start": 2655.24, + "end": 2655.4, + "words": [ + { + "word": " right", + "start": 2655.24, + "end": 2655.4, + "probability": 0.97119140625 + } + ] + }, + { + "id": 2219, + "text": "now", + "start": 2655.4, + "end": 2655.58, + "words": [ + { + "word": " now", + "start": 2655.4, + "end": 2655.58, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2220, + "text": "you", + "start": 2655.58, + "end": 2655.8, + "words": [ + { + "word": " you", + "start": 2655.58, + "end": 2655.8, + "probability": 0.406982421875 + } + ] + }, + { + "id": 2221, + "text": "can", + "start": 2655.8, + "end": 2656.04, + "words": [ + { + "word": " can", + "start": 2655.8, + "end": 2656.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2222, + "text": "just", + "start": 2656.04, + "end": 2656.24, + "words": [ + { + "word": " just", + "start": 2656.04, + "end": 2656.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 2223, + "text": "ask", + "start": 2656.24, + "end": 2656.58, + "words": [ + { + "word": " ask", + "start": 2656.24, + "end": 2656.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2224, + "text": "the", + "start": 2656.58, + "end": 2656.72, + "words": [ + { + "word": " the", + "start": 2656.58, + "end": 2656.72, + "probability": 0.625 + } + ] + }, + { + "id": 2225, + "text": "dude", + "start": 2656.72, + "end": 2656.9, + "words": [ + { + "word": " dude", + "start": 2656.72, + "end": 2656.9, + "probability": 0.98095703125 + } + ] + }, + { + "id": 2226, + "text": "from", + "start": 2656.9, + "end": 2657.06, + "words": [ + { + "word": " from", + "start": 2656.9, + "end": 2657.06, + "probability": 0.99609375 + } + ] + }, + { + "id": 2227, + "text": "NXS", + "start": 2657.06, + "end": 2657.52, + "words": [ + { + "word": " NXS", + "start": 2657.06, + "end": 2657.52, + "probability": 0.6572265625 + } + ] + }, + { + "id": 2228, + "text": "about", + "start": 2657.52, + "end": 2657.74, + "words": [ + { + "word": " about", + "start": 2657.52, + "end": 2657.74, + "probability": 0.98388671875 + } + ] + }, + { + "id": 2229, + "text": "that", + "start": 2657.74, + "end": 2658.12, + "words": [ + { + "word": " that", + "start": 2657.74, + "end": 2658.12, + "probability": 0.994140625 + } + ] + }, + { + "id": 2230, + "text": "alright", + "start": 2660.12, + "end": 2660.56, + "words": [ + { + "word": " alright", + "start": 2660.12, + "end": 2660.56, + "probability": 0.01849365234375 + } + ] + }, + { + "id": 2231, + "text": "let's", + "start": 2662.66, + "end": 2663.1, + "words": [ + { + "word": " let's", + "start": 2662.66, + "end": 2663.1, + "probability": 0.8544921875 + } + ] + }, + { + "id": 2232, + "text": "go ahead", + "start": 2663.1, + "end": 2663.38, + "words": [ + { + "word": " go", + "start": 2663.1, + "end": 2663.2, + "probability": 0.99853515625 + }, + { + "word": " ahead", + "start": 2663.2, + "end": 2663.38, + "probability": 0.99609375 + } + ] + }, + { + "id": 2233, + "text": "and", + "start": 2663.38, + "end": 2663.68, + "words": [ + { + "word": " and", + "start": 2663.38, + "end": 2663.68, + "probability": 0.876953125 + } + ] + }, + { + "id": 2234, + "text": "Marv", + "start": 2663.68, + "end": 2663.98, + "words": [ + { + "word": " Marv", + "start": 2663.68, + "end": 2663.98, + "probability": 0.8486328125 + } + ] + }, + { + "id": 2235, + "text": "has", + "start": 2663.98, + "end": 2664.08, + "words": [ + { + "word": " has", + "start": 2663.98, + "end": 2664.08, + "probability": 0.9775390625 + } + ] + }, + { + "id": 2236, + "text": "been", + "start": 2664.08, + "end": 2664.22, + "words": [ + { + "word": " been", + "start": 2664.08, + "end": 2664.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2237, + "text": "very", + "start": 2664.22, + "end": 2664.5, + "words": [ + { + "word": " very", + "start": 2664.22, + "end": 2664.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2238, + "text": "patient", + "start": 2664.5, + "end": 2665.24, + "words": [ + { + "word": " patient", + "start": 2664.5, + "end": 2665.24, + "probability": 0.1243896484375 + } + ] + }, + { + "id": 2239, + "text": "and", + "start": 2665.24, + "end": 2665.94, + "words": [ + { + "word": " and", + "start": 2665.24, + "end": 2665.94, + "probability": 0.94580078125 + } + ] + }, + { + "id": 2240, + "text": "he", + "start": 2665.94, + "end": 2666.32, + "words": [ + { + "word": " he", + "start": 2665.94, + "end": 2666.32, + "probability": 0.475830078125 + } + ] + }, + { + "id": 2241, + "text": "held", + "start": 2666.32, + "end": 2666.66, + "words": [ + { + "word": " held", + "start": 2666.32, + "end": 2666.66, + "probability": 0.61669921875 + } + ] + }, + { + "id": 2242, + "text": "over", + "start": 2666.66, + "end": 2666.84, + "words": [ + { + "word": " over", + "start": 2666.66, + "end": 2666.84, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2243, + "text": "from", + "start": 2666.84, + "end": 2667.12, + "words": [ + { + "word": " from", + "start": 2666.84, + "end": 2667.12, + "probability": 0.984375 + } + ] + }, + { + "id": 2244, + "text": "the", + "start": 2667.12, + "end": 2667.28, + "words": [ + { + "word": " the", + "start": 2667.12, + "end": 2667.28, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2245, + "text": "last", + "start": 2667.28, + "end": 2667.46, + "words": [ + { + "word": " last", + "start": 2667.28, + "end": 2667.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2246, + "text": "hour", + "start": 2667.46, + "end": 2667.8, + "words": [ + { + "word": " hour", + "start": 2667.46, + "end": 2667.8, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2247, + "text": "so", + "start": 2667.8, + "end": 2668.02, + "words": [ + { + "word": " so", + "start": 2667.8, + "end": 2668.02, + "probability": 0.9619140625 + } + ] + }, + { + "id": 2248, + "text": "let's", + "start": 2668.02, + "end": 2668.22, + "words": [ + { + "word": " let's", + "start": 2668.02, + "end": 2668.22, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2249, + "text": "go ahead", + "start": 2668.22, + "end": 2668.38, + "words": [ + { + "word": " go", + "start": 2668.22, + "end": 2668.3, + "probability": 0.970703125 + }, + { + "word": " ahead", + "start": 2668.3, + "end": 2668.38, + "probability": 0.16015625 + } + ] + }, + { + "id": 2250, + "text": "and talk", + "start": 2668.38, + "end": 2668.52, + "words": [ + { + "word": " and", + "start": 2668.38, + "end": 2668.42, + "probability": 0.97998046875 + }, + { + "word": " talk", + "start": 2668.42, + "end": 2668.52, + "probability": 0.990234375 + } + ] + }, + { + "id": 2251, + "text": "to Marv", + "start": 2668.52, + "end": 2668.76, + "words": [ + { + "word": " to", + "start": 2668.52, + "end": 2668.6, + "probability": 0.98486328125 + }, + { + "word": " Marv", + "start": 2668.6, + "end": 2668.76, + "probability": 0.94140625 + } + ] + }, + { + "id": 2252, + "text": "hello", + "start": 2668.76, + "end": 2668.92, + "words": [ + { + "word": " hello", + "start": 2668.76, + "end": 2668.92, + "probability": 0.384765625 + } + ] + }, + { + "id": 2253, + "text": "Marv", + "start": 2668.92, + "end": 2669.14, + "words": [ + { + "word": " Marv", + "start": 2668.92, + "end": 2669.14, + "probability": 0.982421875 + } + ] + }, + { + "id": 2254, + "text": "how", + "start": 2669.14, + "end": 2669.28, + "words": [ + { + "word": " how", + "start": 2669.14, + "end": 2669.28, + "probability": 0.92724609375 + } + ] + }, + { + "id": 2255, + "text": "are", + "start": 2669.28, + "end": 2669.42, + "words": [ + { + "word": " are", + "start": 2669.28, + "end": 2669.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2256, + "text": "you", + "start": 2669.42, + "end": 2669.64, + "words": [ + { + "word": " you", + "start": 2669.42, + "end": 2669.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2257, + "text": "oh", + "start": 2670.12, + "end": 2670.56, + "words": [ + { + "word": " oh", + "start": 2670.12, + "end": 2670.56, + "probability": 0.295166015625 + } + ] + }, + { + "id": 2258, + "text": "I'm", + "start": 2670.56, + "end": 2670.84, + "words": [ + { + "word": " I'm", + "start": 2670.56, + "end": 2670.84, + "probability": 0.9375 + } + ] + }, + { + "id": 2259, + "text": "fine", + "start": 2670.84, + "end": 2671.2, + "words": [ + { + "word": " fine", + "start": 2670.84, + "end": 2671.2, + "probability": 0.99609375 + } + ] + }, + { + "id": 2260, + "text": "what", + "start": 2671.2, + "end": 2671.98, + "words": [ + { + "word": " what", + "start": 2671.2, + "end": 2671.98, + "probability": 0.7001953125 + } + ] + }, + { + "id": 2261, + "text": "can", + "start": 2671.98, + "end": 2672.08, + "words": [ + { + "word": " can", + "start": 2671.98, + "end": 2672.08, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2262, + "text": "I", + "start": 2672.08, + "end": 2672.2, + "words": [ + { + "word": " I", + "start": 2672.08, + "end": 2672.2, + "probability": 0.96533203125 + } + ] + }, + { + "id": 2263, + "text": "do", + "start": 2672.2, + "end": 2672.32, + "words": [ + { + "word": " do", + "start": 2672.2, + "end": 2672.32, + "probability": 0.990234375 + } + ] + }, + { + "id": 2264, + "text": "for", + "start": 2672.32, + "end": 2672.52, + "words": [ + { + "word": " for", + "start": 2672.32, + "end": 2672.52, + "probability": 0.98486328125 + } + ] + }, + { + "id": 2265, + "text": "you", + "start": 2672.52, + "end": 2672.68, + "words": [ + { + "word": " you", + "start": 2672.52, + "end": 2672.68, + "probability": 0.99609375 + } + ] + }, + { + "id": 2266, + "text": "Marv", + "start": 2672.68, + "end": 2673.02, + "words": [ + { + "word": " Marv", + "start": 2672.68, + "end": 2673.02, + "probability": 0.8505859375 + } + ] + }, + { + "id": 2267, + "text": "my", + "start": 2673.02, + "end": 2673.3, + "words": [ + { + "word": " my", + "start": 2673.02, + "end": 2673.3, + "probability": 0.943359375 + } + ] + }, + { + "id": 2268, + "text": "problem", + "start": 2673.3, + "end": 2673.74, + "words": [ + { + "word": " problem", + "start": 2673.3, + "end": 2673.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2269, + "text": "is", + "start": 2673.74, + "end": 2674.2, + "words": [ + { + "word": " is", + "start": 2673.74, + "end": 2674.2, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2270, + "text": "my", + "start": 2674.72, + "end": 2675.16, + "words": [ + { + "word": " my", + "start": 2674.72, + "end": 2675.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2271, + "text": "computer", + "start": 2675.16, + "end": 2675.6, + "words": [ + { + "word": " computer", + "start": 2675.16, + "end": 2675.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2272, + "text": "comes", + "start": 2675.6, + "end": 2676.08, + "words": [ + { + "word": " comes", + "start": 2675.6, + "end": 2676.08, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2273, + "text": "up", + "start": 2676.08, + "end": 2676.42, + "words": [ + { + "word": " up", + "start": 2676.08, + "end": 2676.42, + "probability": 0.99267578125 + } + ] + }, + { + "id": 2274, + "text": "very", + "start": 2676.42, + "end": 2676.7, + "words": [ + { + "word": " very", + "start": 2676.42, + "end": 2676.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2275, + "text": "slowly", + "start": 2676.7, + "end": 2677.16, + "words": [ + { + "word": " slowly", + "start": 2676.7, + "end": 2677.16, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2276, + "text": "okay", + "start": 2678.04, + "end": 2678.48, + "words": [ + { + "word": " okay", + "start": 2678.04, + "end": 2678.48, + "probability": 0.52978515625 + } + ] + }, + { + "id": 2277, + "text": "it's", + "start": 2679.18, + "end": 2679.62, + "words": [ + { + "word": " it's", + "start": 2679.18, + "end": 2679.62, + "probability": 0.978515625 + } + ] + }, + { + "id": 2278, + "text": "in", + "start": 2679.62, + "end": 2679.7, + "words": [ + { + "word": " in", + "start": 2679.62, + "end": 2679.7, + "probability": 0.828125 + } + ] + }, + { + "id": 2279, + "text": "HP", + "start": 2679.7, + "end": 2680.2, + "words": [ + { + "word": " HP", + "start": 2679.7, + "end": 2680.2, + "probability": 0.95556640625 + } + ] + }, + { + "id": 2280, + "text": "and", + "start": 2680.2, + "end": 2680.66, + "words": [ + { + "word": " and", + "start": 2680.2, + "end": 2680.66, + "probability": 0.40576171875 + } + ] + }, + { + "id": 2281, + "text": "when I", + "start": 2681.4199999999996, + "end": 2681.74, + "words": [ + { + "word": " when", + "start": 2681.2599999999998, + "end": 2681.56, + "probability": 0.98193359375 + }, + { + "word": " I", + "start": 2681.56, + "end": 2681.74, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2282, + "text": "turn it", + "start": 2681.74, + "end": 2682.06, + "words": [ + { + "word": " turn", + "start": 2681.74, + "end": 2681.94, + "probability": 0.92626953125 + }, + { + "word": " it", + "start": 2681.94, + "end": 2682.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2283, + "text": "on", + "start": 2682.06, + "end": 2682.38, + "words": [ + { + "word": " on", + "start": 2682.06, + "end": 2682.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2284, + "text": "the", + "start": 2682.38, + "end": 2683.02, + "words": [ + { + "word": " the", + "start": 2682.38, + "end": 2683.02, + "probability": 0.3076171875 + } + ] + }, + { + "id": 2285, + "text": "HP", + "start": 2683.02, + "end": 2683.34, + "words": [ + { + "word": " HP", + "start": 2683.02, + "end": 2683.34, + "probability": 0.97802734375 + } + ] + }, + { + "id": 2286, + "text": "comes", + "start": 2683.34, + "end": 2683.68, + "words": [ + { + "word": " comes", + "start": 2683.34, + "end": 2683.68, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2287, + "text": "up", + "start": 2683.68, + "end": 2684.04, + "words": [ + { + "word": " up", + "start": 2683.68, + "end": 2684.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2288, + "text": "on", + "start": 2684.04, + "end": 2684.38, + "words": [ + { + "word": " on", + "start": 2684.04, + "end": 2684.38, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2289, + "text": "the", + "start": 2684.38, + "end": 2684.66, + "words": [ + { + "word": " the", + "start": 2684.38, + "end": 2684.66, + "probability": 0.99609375 + } + ] + }, + { + "id": 2290, + "text": "screen", + "start": 2684.66, + "end": 2685.08, + "words": [ + { + "word": " screen", + "start": 2684.66, + "end": 2685.08, + "probability": 0.984375 + } + ] + }, + { + "id": 2291, + "text": "I've", + "start": 2685.08, + "end": 2685.5, + "words": [ + { + "word": " I've", + "start": 2685.08, + "end": 2685.5, + "probability": 0.62255859375 + } + ] + }, + { + "id": 2292, + "text": "got", + "start": 2685.5, + "end": 2685.58, + "words": [ + { + "word": " got", + "start": 2685.5, + "end": 2685.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2293, + "text": "two", + "start": 2685.58, + "end": 2685.8, + "words": [ + { + "word": " two", + "start": 2685.58, + "end": 2685.8, + "probability": 0.9755859375 + } + ] + }, + { + "id": 2294, + "text": "screens", + "start": 2685.8, + "end": 2686.2, + "words": [ + { + "word": " screens", + "start": 2685.8, + "end": 2686.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2295, + "text": "and", + "start": 2686.2, + "end": 2687.24, + "words": [ + { + "word": " and", + "start": 2686.2, + "end": 2687.24, + "probability": 0.970703125 + } + ] + }, + { + "id": 2296, + "text": "it", + "start": 2687.24, + "end": 2687.44, + "words": [ + { + "word": " it", + "start": 2687.24, + "end": 2687.44, + "probability": 0.91650390625 + } + ] + }, + { + "id": 2297, + "text": "comes", + "start": 2687.44, + "end": 2687.88, + "words": [ + { + "word": " comes", + "start": 2687.44, + "end": 2687.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2298, + "text": "up", + "start": 2687.88, + "end": 2688.06, + "words": [ + { + "word": " up", + "start": 2687.88, + "end": 2688.06, + "probability": 1.0 + } + ] + }, + { + "id": 2299, + "text": "on", + "start": 2688.06, + "end": 2688.24, + "words": [ + { + "word": " on", + "start": 2688.06, + "end": 2688.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2300, + "text": "the", + "start": 2688.24, + "end": 2688.38, + "words": [ + { + "word": " the", + "start": 2688.24, + "end": 2688.38, + "probability": 1.0 + } + ] + }, + { + "id": 2301, + "text": "left", + "start": 2688.38, + "end": 2688.54, + "words": [ + { + "word": " left", + "start": 2688.38, + "end": 2688.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2302, + "text": "screen", + "start": 2688.54, + "end": 2688.8, + "words": [ + { + "word": " screen", + "start": 2688.54, + "end": 2688.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2303, + "text": "and", + "start": 2688.8, + "end": 2689.8, + "words": [ + { + "word": " and", + "start": 2688.8, + "end": 2689.8, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2304, + "text": "then", + "start": 2689.8, + "end": 2690.1, + "words": [ + { + "word": " then", + "start": 2689.8, + "end": 2690.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 2305, + "text": "it", + "start": 2690.1, + "end": 2690.54, + "words": [ + { + "word": " it", + "start": 2690.1, + "end": 2690.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2306, + "text": "goes", + "start": 2690.54, + "end": 2690.8, + "words": [ + { + "word": " goes", + "start": 2690.54, + "end": 2690.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2307, + "text": "black", + "start": 2690.8, + "end": 2691.14, + "words": [ + { + "word": " black", + "start": 2690.8, + "end": 2691.14, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2308, + "text": "and", + "start": 2691.84, + "end": 2692.44, + "words": [ + { + "word": " and", + "start": 2691.84, + "end": 2692.44, + "probability": 0.94384765625 + } + ] + }, + { + "id": 2309, + "text": "it", + "start": 2692.44, + "end": 2692.74, + "words": [ + { + "word": " it", + "start": 2692.44, + "end": 2692.74, + "probability": 0.994140625 + } + ] + }, + { + "id": 2310, + "text": "starts", + "start": 2694.1, + "end": 2694.7, + "words": [ + { + "word": " starts", + "start": 2694.1, + "end": 2694.7, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2311, + "text": "just", + "start": 2696.1600000000003, + "end": 2696.76, + "words": [ + { + "word": " just", + "start": 2696.1600000000003, + "end": 2696.76, + "probability": 0.77197265625 + } + ] + }, + { + "id": 2312, + "text": "going", + "start": 2699.2000000000003, + "end": 2699.8, + "words": [ + { + "word": " going", + "start": 2699.2000000000003, + "end": 2699.8, + "probability": 0.9560546875 + } + ] + }, + { + "id": 2313, + "text": "back", + "start": 2703.62, + "end": 2704.22, + "words": [ + { + "word": " back", + "start": 2703.62, + "end": 2704.22, + "probability": 0.9619140625 + } + ] + }, + { + "id": 2314, + "text": "and", + "start": 2706.52, + "end": 2706.58, + "words": [ + { + "word": " and", + "start": 2706.2799999999997, + "end": 2706.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2315, + "text": "forth", + "start": 2706.58, + "end": 2706.88, + "words": [ + { + "word": " forth", + "start": 2706.58, + "end": 2706.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2316, + "text": "so", + "start": 2706.88, + "end": 2707.72, + "words": [ + { + "word": " so", + "start": 2706.88, + "end": 2707.72, + "probability": 0.316162109375 + } + ] + }, + { + "id": 2317, + "text": "how", + "start": 2707.72, + "end": 2707.86, + "words": [ + { + "word": " how", + "start": 2707.72, + "end": 2707.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2318, + "text": "long", + "start": 2707.86, + "end": 2708.06, + "words": [ + { + "word": " long", + "start": 2707.86, + "end": 2708.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2319, + "text": "do", + "start": 2708.06, + "end": 2708.3, + "words": [ + { + "word": " do", + "start": 2708.06, + "end": 2708.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2320, + "text": "", + "start": 2708.3, + "end": 2708.3, + "words": [] + }, + { + "id": 2321, + "text": "think", + "start": 2708.3, + "end": 2708.44, + "words": [ + { + "word": " think", + "start": 2708.3, + "end": 2708.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2322, + "text": "that", + "start": 2708.44, + "end": 2708.6, + "words": [ + { + "word": " that", + "start": 2708.44, + "end": 2708.6, + "probability": 0.68310546875 + } + ] + }, + { + "id": 2323, + "text": "it", + "start": 2708.6, + "end": 2708.76, + "words": [ + { + "word": " it", + "start": 2708.6, + "end": 2708.76, + "probability": 0.7724609375 + } + ] + }, + { + "id": 2324, + "text": "takes", + "start": 2708.76, + "end": 2709.14, + "words": [ + { + "word": " takes", + "start": 2708.76, + "end": 2709.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2325, + "text": "for", + "start": 2709.14, + "end": 2709.6, + "words": [ + { + "word": " for", + "start": 2709.14, + "end": 2709.6, + "probability": 0.96875 + } + ] + }, + { + "id": 2326, + "text": "it", + "start": 2709.6, + "end": 2709.8, + "words": [ + { + "word": " it", + "start": 2709.6, + "end": 2709.8, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2327, + "text": "to", + "start": 2709.8, + "end": 2709.88, + "words": [ + { + "word": " to", + "start": 2709.8, + "end": 2709.88, + "probability": 1.0 + } + ] + }, + { + "id": 2328, + "text": "be", + "start": 2709.88, + "end": 2710.0, + "words": [ + { + "word": " be", + "start": 2709.88, + "end": 2710.0, + "probability": 0.06915283203125 + } + ] + }, + { + "id": 2329, + "text": "with", + "start": 2710.0, + "end": 2710.08, + "words": [ + { + "word": " with", + "start": 2710.0, + "end": 2710.08, + "probability": 0.08306884765625 + } + ] + }, + { + "id": 2330, + "text": "up", + "start": 2710.08, + "end": 2710.18, + "words": [ + { + "word": " up", + "start": 2710.08, + "end": 2710.18, + "probability": 0.004695892333984375 + } + ] + }, + { + "id": 2331, + "text": "!", + "start": 2710.2, + "end": 2710.28, + "words": [ + { + "word": "!", + "start": 2710.2, + "end": 2710.28, + "probability": 2.2411346435546875e-05 + } + ] + }, + { + "id": 2332, + "text": "Marv", + "start": 2710.28, + "end": 2710.5, + "words": [ + { + "word": " Marv", + "start": 2710.28, + "end": 2710.5, + "probability": 0.5 + } + ] + }, + { + "id": 2333, + "text": "it's", + "start": 2711.18, + "end": 2711.7, + "words": [ + { + "word": " it's", + "start": 2711.18, + "end": 2711.7, + "probability": 0.50244140625 + } + ] + }, + { + "id": 2334, + "text": "two", + "start": 2711.7, + "end": 2711.92, + "words": [ + { + "word": " two", + "start": 2711.7, + "end": 2711.92, + "probability": 0.80615234375 + } + ] + }, + { + "id": 2335, + "text": "and a", + "start": 2711.92, + "end": 2712.18, + "words": [ + { + "word": " and", + "start": 2711.92, + "end": 2712.08, + "probability": 0.99072265625 + }, + { + "word": " a", + "start": 2712.08, + "end": 2712.18, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2336, + "text": "half", + "start": 2712.18, + "end": 2712.32, + "words": [ + { + "word": " half", + "start": 2712.18, + "end": 2712.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 2337, + "text": "minutes", + "start": 2712.32, + "end": 2712.74, + "words": [ + { + "word": " minutes", + "start": 2712.32, + "end": 2712.74, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2338, + "text": "okay", + "start": 2712.74, + "end": 2713.54, + "words": [ + { + "word": " okay", + "start": 2712.74, + "end": 2713.54, + "probability": 0.68505859375 + } + ] + }, + { + "id": 2339, + "text": "and", + "start": 2713.54, + "end": 2714.58, + "words": [ + { + "word": " and", + "start": 2713.54, + "end": 2714.58, + "probability": 0.98291015625 + } + ] + }, + { + "id": 2340, + "text": "then", + "start": 2714.58, + "end": 2715.1, + "words": [ + { + "word": " then", + "start": 2714.58, + "end": 2715.1, + "probability": 0.394287109375 + } + ] + }, + { + "id": 2341, + "text": "it", + "start": 2716.16, + "end": 2716.68, + "words": [ + { + "word": " it", + "start": 2716.16, + "end": 2716.68, + "probability": 0.5283203125 + } + ] + }, + { + "id": 2342, + "text": "will", + "start": 2716.68, + "end": 2716.88, + "words": [ + { + "word": " will", + "start": 2716.68, + "end": 2716.88, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2343, + "text": "ask", + "start": 2716.88, + "end": 2717.16, + "words": [ + { + "word": " ask", + "start": 2716.88, + "end": 2717.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2344, + "text": "for", + "start": 2717.16, + "end": 2717.42, + "words": [ + { + "word": " for", + "start": 2717.16, + "end": 2717.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2345, + "text": "my", + "start": 2717.42, + "end": 2717.78, + "words": [ + { + "word": " my", + "start": 2717.42, + "end": 2717.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2346, + "text": "password", + "start": 2717.78, + "end": 2718.64, + "words": [ + { + "word": " password", + "start": 2717.78, + "end": 2718.64, + "probability": 0.97021484375 + } + ] + }, + { + "id": 2347, + "text": "okay", + "start": 2718.64, + "end": 2719.66, + "words": [ + { + "word": " okay", + "start": 2718.64, + "end": 2719.66, + "probability": 0.92626953125 + } + ] + }, + { + "id": 2348, + "text": "how", + "start": 2719.66, + "end": 2720.36, + "words": [ + { + "word": " how", + "start": 2719.66, + "end": 2720.36, + "probability": 0.982421875 + } + ] + }, + { + "id": 2349, + "text": "old", + "start": 2720.36, + "end": 2720.54, + "words": [ + { + "word": " old", + "start": 2720.36, + "end": 2720.54, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2350, + "text": "is", + "start": 2720.54, + "end": 2720.62, + "words": [ + { + "word": " is", + "start": 2720.54, + "end": 2720.62, + "probability": 0.6943359375 + } + ] + }, + { + "id": 2351, + "text": "this", + "start": 2720.62, + "end": 2720.76, + "words": [ + { + "word": " this", + "start": 2720.62, + "end": 2720.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2352, + "text": "computer", + "start": 2720.76, + "end": 2721.04, + "words": [ + { + "word": " computer", + "start": 2720.76, + "end": 2721.04, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2353, + "text": "oh", + "start": 2721.88, + "end": 2722.4, + "words": [ + { + "word": " oh", + "start": 2721.88, + "end": 2722.4, + "probability": 0.47265625 + } + ] + }, + { + "id": 2354, + "text": "five", + "start": 2722.4, + "end": 2722.72, + "words": [ + { + "word": " five", + "start": 2722.4, + "end": 2722.72, + "probability": 0.98095703125 + } + ] + }, + { + "id": 2355, + "text": "years", + "start": 2722.72, + "end": 2723.14, + "words": [ + { + "word": " years", + "start": 2722.72, + "end": 2723.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2356, + "text": "yeah", + "start": 2723.88, + "end": 2724.4, + "words": [ + { + "word": " yeah", + "start": 2723.88, + "end": 2724.4, + "probability": 0.98681640625 + } + ] + }, + { + "id": 2357, + "text": "it's", + "start": 2724.4, + "end": 2725.24, + "words": [ + { + "word": " it's", + "start": 2724.4, + "end": 2725.24, + "probability": 0.8857421875 + } + ] + }, + { + "id": 2358, + "text": "probably", + "start": 2725.24, + "end": 2725.44, + "words": [ + { + "word": " probably", + "start": 2725.24, + "end": 2725.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2359, + "text": "time", + "start": 2725.44, + "end": 2725.72, + "words": [ + { + "word": " time", + "start": 2725.44, + "end": 2725.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2360, + "text": "to do", + "start": 2725.72, + "end": 2726.0, + "words": [ + { + "word": " to", + "start": 2725.72, + "end": 2725.88, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 2725.88, + "end": 2726.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2361, + "text": "some", + "start": 2726.0, + "end": 2726.14, + "words": [ + { + "word": " some", + "start": 2726.0, + "end": 2726.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2362, + "text": "upgrades", + "start": 2726.14, + "end": 2726.42, + "words": [ + { + "word": " upgrades", + "start": 2726.14, + "end": 2726.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2363, + "text": "on that", + "start": 2726.42, + "end": 2726.78, + "words": [ + { + "word": " on", + "start": 2726.42, + "end": 2726.66, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 2726.66, + "end": 2726.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2364, + "text": "one", + "start": 2726.78, + "end": 2726.94, + "words": [ + { + "word": " one", + "start": 2726.78, + "end": 2726.94, + "probability": 0.998046875 + } + ] + }, + { + "id": 2365, + "text": "or", + "start": 2726.94, + "end": 2727.06, + "words": [ + { + "word": " or", + "start": 2726.94, + "end": 2727.06, + "probability": 0.99609375 + } + ] + }, + { + "id": 2366, + "text": "replace", + "start": 2727.06, + "end": 2727.36, + "words": [ + { + "word": " replace", + "start": 2727.06, + "end": 2727.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2367, + "text": "it", + "start": 2727.36, + "end": 2727.72, + "words": [ + { + "word": " it", + "start": 2727.36, + "end": 2727.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2368, + "text": "yeah", + "start": 2728.54, + "end": 2729.06, + "words": [ + { + "word": " yeah", + "start": 2728.54, + "end": 2729.06, + "probability": 0.9052734375 + } + ] + }, + { + "id": 2369, + "text": "because", + "start": 2729.6, + "end": 2730.12, + "words": [ + { + "word": " because", + "start": 2729.6, + "end": 2730.12, + "probability": 0.84765625 + } + ] + }, + { + "id": 2370, + "text": "it's", + "start": 2730.12, + "end": 2730.58, + "words": [ + { + "word": " it's", + "start": 2730.12, + "end": 2730.58, + "probability": 0.984375 + } + ] + }, + { + "id": 2371, + "text": "which", + "start": 2730.58, + "end": 2731.42, + "words": [ + { + "word": " which", + "start": 2730.58, + "end": 2731.42, + "probability": 0.6220703125 + } + ] + }, + { + "id": 2372, + "text": "would", + "start": 2731.42, + "end": 2731.76, + "words": [ + { + "word": " would", + "start": 2731.42, + "end": 2731.76, + "probability": 0.361572265625 + } + ] + }, + { + "id": 2373, + "text": "you say", + "start": 2731.76, + "end": 2732.22, + "words": [ + { + "word": " you", + "start": 2731.76, + "end": 2732.04, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 2732.04, + "end": 2732.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2374, + "text": "is", + "start": 2732.22, + "end": 2732.32, + "words": [ + { + "word": " is", + "start": 2732.22, + "end": 2732.32, + "probability": 0.68505859375 + } + ] + }, + { + "id": 2375, + "text": "Windows", + "start": 2732.32, + "end": 2732.5, + "words": [ + { + "word": " Windows", + "start": 2732.32, + "end": 2732.5, + "probability": 0.79443359375 + } + ] + }, + { + "id": 2376, + "text": "7", + "start": 2732.5, + "end": 2732.74, + "words": [ + { + "word": " 7", + "start": 2732.5, + "end": 2732.74, + "probability": 0.91943359375 + } + ] + }, + { + "id": 2377, + "text": "on", + "start": 2732.74, + "end": 2732.92, + "words": [ + { + "word": " on", + "start": 2732.74, + "end": 2732.92, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2378, + "text": "that", + "start": 2732.92, + "end": 2733.1, + "words": [ + { + "word": " that", + "start": 2732.92, + "end": 2733.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2379, + "text": "no", + "start": 2734.04, + "end": 2734.56, + "words": [ + { + "word": " no", + "start": 2734.04, + "end": 2734.56, + "probability": 0.96630859375 + } + ] + }, + { + "id": 2380, + "text": "it's", + "start": 2734.56, + "end": 2734.74, + "words": [ + { + "word": " it's", + "start": 2734.56, + "end": 2734.74, + "probability": 0.99609375 + } + ] + }, + { + "id": 2381, + "text": "10", + "start": 2734.74, + "end": 2735.0, + "words": [ + { + "word": " 10", + "start": 2734.74, + "end": 2735.0, + "probability": 0.96533203125 + } + ] + }, + { + "id": 2382, + "text": "it's", + "start": 2735.0, + "end": 2735.8, + "words": [ + { + "word": " it's", + "start": 2735.0, + "end": 2735.8, + "probability": 0.89404296875 + } + ] + }, + { + "id": 2383, + "text": "10", + "start": 2735.8, + "end": 2735.94, + "words": [ + { + "word": " 10", + "start": 2735.8, + "end": 2735.94, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2384, + "text": "you", + "start": 2735.94, + "end": 2736.16, + "words": [ + { + "word": " you", + "start": 2735.94, + "end": 2736.16, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2385, + "text": "definitely", + "start": 2736.16, + "end": 2736.42, + "words": [ + { + "word": " definitely", + "start": 2736.16, + "end": 2736.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2386, + "text": "need", + "start": 2736.42, + "end": 2736.68, + "words": [ + { + "word": " need", + "start": 2736.42, + "end": 2736.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2387, + "text": "some", + "start": 2736.68, + "end": 2736.8, + "words": [ + { + "word": " some", + "start": 2736.68, + "end": 2736.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2388, + "text": "upgrades", + "start": 2736.8, + "end": 2737.1, + "words": [ + { + "word": " upgrades", + "start": 2736.8, + "end": 2737.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2389, + "text": "in", + "start": 2737.1, + "end": 2737.34, + "words": [ + { + "word": " in", + "start": 2737.1, + "end": 2737.34, + "probability": 0.54248046875 + } + ] + }, + { + "id": 2390, + "text": "or", + "start": 2737.34, + "end": 2737.62, + "words": [ + { + "word": " or", + "start": 2737.34, + "end": 2737.62, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2391, + "text": "to", + "start": 2737.62, + "end": 2737.74, + "words": [ + { + "word": " to", + "start": 2737.62, + "end": 2737.74, + "probability": 0.97607421875 + } + ] + }, + { + "id": 2392, + "text": "replace", + "start": 2737.74, + "end": 2738.04, + "words": [ + { + "word": " replace", + "start": 2737.74, + "end": 2738.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2393, + "text": "it", + "start": 2738.04, + "end": 2738.26, + "words": [ + { + "word": " it", + "start": 2738.04, + "end": 2738.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2394, + "text": "so", + "start": 2738.26, + "end": 2739.14, + "words": [ + { + "word": " so", + "start": 2738.26, + "end": 2739.14, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2395, + "text": "uh", + "start": 2739.14, + "end": 2739.7, + "words": [ + { + "word": " uh", + "start": 2739.14, + "end": 2739.7, + "probability": 0.580078125 + } + ] + }, + { + "id": 2396, + "text": "I", + "start": 2739.7, + "end": 2739.9, + "words": [ + { + "word": " I", + "start": 2739.7, + "end": 2739.9, + "probability": 0.783203125 + } + ] + }, + { + "id": 2397, + "text": "mean", + "start": 2740.42, + "end": 2740.82, + "words": [ + { + "word": " mean", + "start": 2740.42, + "end": 2740.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2398, + "text": "if", + "start": 2740.82, + "end": 2741.1, + "words": [ + { + "word": " if", + "start": 2740.82, + "end": 2741.1, + "probability": 0.0225982666015625 + } + ] + }, + { + "id": 2399, + "text": "you", + "start": 2741.1, + "end": 2741.6, + "words": [ + { + "word": " you", + "start": 2741.1, + "end": 2741.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2400, + "text": "want", + "start": 2741.6, + "end": 2741.74, + "words": [ + { + "word": " want", + "start": 2741.6, + "end": 2741.74, + "probability": 0.5546875 + } + ] + }, + { + "id": 2401, + "text": "to", + "start": 2741.74, + "end": 2741.84, + "words": [ + { + "word": " to", + "start": 2741.74, + "end": 2741.84, + "probability": 0.9833984375 + } + ] + }, + { + "id": 2402, + "text": "go", + "start": 2741.84, + "end": 2742.0, + "words": [ + { + "word": " go", + "start": 2741.84, + "end": 2742.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2403, + "text": "sort", + "start": 2742.0, + "end": 2742.36, + "words": [ + { + "word": " sort", + "start": 2742.0, + "end": 2742.36, + "probability": 0.97900390625 + } + ] + }, + { + "id": 2404, + "text": "of", + "start": 2742.36, + "end": 2742.46, + "words": [ + { + "word": " of", + "start": 2742.36, + "end": 2742.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2405, + "text": "the", + "start": 2742.46, + "end": 2742.7, + "words": [ + { + "word": " the", + "start": 2742.46, + "end": 2742.7, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2406, + "text": "you", + "start": 2742.7, + "end": 2742.94, + "words": [ + { + "word": " you", + "start": 2742.7, + "end": 2742.94, + "probability": 0.2303466796875 + } + ] + }, + { + "id": 2407, + "text": "know", + "start": 2742.94, + "end": 2743.22, + "words": [ + { + "word": " know", + "start": 2742.94, + "end": 2743.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 2408, + "text": "relatively", + "start": 2743.22, + "end": 2743.74, + "words": [ + { + "word": " relatively", + "start": 2743.22, + "end": 2743.74, + "probability": 0.86865234375 + } + ] + }, + { + "id": 2409, + "text": "inexpensive", + "start": 2743.74, + "end": 2744.2, + "words": [ + { + "word": " inexpensive", + "start": 2743.74, + "end": 2744.2, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2410, + "text": "route", + "start": 2744.2, + "end": 2744.64, + "words": [ + { + "word": " route", + "start": 2744.2, + "end": 2744.64, + "probability": 0.78515625 + } + ] + }, + { + "id": 2411, + "text": "you", + "start": 2744.64, + "end": 2745.36, + "words": [ + { + "word": " you", + "start": 2744.64, + "end": 2745.36, + "probability": 0.6796875 + } + ] + }, + { + "id": 2412, + "text": "could", + "start": 2745.36, + "end": 2745.54, + "words": [ + { + "word": " could", + "start": 2745.36, + "end": 2745.54, + "probability": 0.97607421875 + } + ] + }, + { + "id": 2413, + "text": "do", + "start": 2745.54, + "end": 2745.72, + "words": [ + { + "word": " do", + "start": 2745.54, + "end": 2745.72, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2414, + "text": "a", + "start": 2745.72, + "end": 2745.88, + "words": [ + { + "word": " a", + "start": 2745.72, + "end": 2745.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2415, + "text": "minor", + "start": 2745.88, + "end": 2746.44, + "words": [ + { + "word": " minor", + "start": 2745.88, + "end": 2746.44, + "probability": 0.95458984375 + } + ] + }, + { + "id": 2416, + "text": "upgrade", + "start": 2746.44, + "end": 2746.72, + "words": [ + { + "word": " upgrade", + "start": 2746.44, + "end": 2746.72, + "probability": 0.9775390625 + } + ] + }, + { + "id": 2417, + "text": "and", + "start": 2746.72, + "end": 2747.0, + "words": [ + { + "word": " and", + "start": 2746.72, + "end": 2747.0, + "probability": 0.84814453125 + } + ] + }, + { + "id": 2418, + "text": "a", + "start": 2747.0, + "end": 2747.02, + "words": [ + { + "word": " a", + "start": 2747.0, + "end": 2747.02, + "probability": 0.9482421875 + } + ] + }, + { + "id": 2419, + "text": "solid", + "start": 2747.02, + "end": 2747.26, + "words": [ + { + "word": " solid", + "start": 2747.02, + "end": 2747.26, + "probability": 0.994140625 + } + ] + }, + { + "id": 2420, + "text": "state", + "start": 2747.26, + "end": 2747.46, + "words": [ + { + "word": " state", + "start": 2747.26, + "end": 2747.46, + "probability": 0.65478515625 + } + ] + }, + { + "id": 2421, + "text": "upgrade", + "start": 2747.46, + "end": 2747.74, + "words": [ + { + "word": " upgrade", + "start": 2747.46, + "end": 2747.74, + "probability": 0.9921875 + } + ] + }, + { + "id": 2422, + "text": "on", + "start": 2747.74, + "end": 2748.04, + "words": [ + { + "word": " on", + "start": 2747.74, + "end": 2748.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2423, + "text": "it", + "start": 2748.04, + "end": 2748.2, + "words": [ + { + "word": " it", + "start": 2748.04, + "end": 2748.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2424, + "text": "and", + "start": 2748.2, + "end": 2748.36, + "words": [ + { + "word": " and", + "start": 2748.2, + "end": 2748.36, + "probability": 0.97607421875 + } + ] + }, + { + "id": 2425, + "text": "that", + "start": 2748.36, + "end": 2748.48, + "words": [ + { + "word": " that", + "start": 2748.36, + "end": 2748.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2426, + "text": "would", + "start": 2748.48, + "end": 2748.6, + "words": [ + { + "word": " would", + "start": 2748.48, + "end": 2748.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2427, + "text": "make", + "start": 2748.6, + "end": 2748.8, + "words": [ + { + "word": " make", + "start": 2748.6, + "end": 2748.8, + "probability": 1.0 + } + ] + }, + { + "id": 2428, + "text": "it", + "start": 2748.8, + "end": 2749.0, + "words": [ + { + "word": " it", + "start": 2748.8, + "end": 2749.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2429, + "text": "faster", + "start": 2749.0, + "end": 2749.5, + "words": [ + { + "word": " faster", + "start": 2749.0, + "end": 2749.5, + "probability": 0.994140625 + } + ] + }, + { + "id": 2430, + "text": "but", + "start": 2750.52, + "end": 2750.92, + "words": [ + { + "word": " but", + "start": 2750.52, + "end": 2750.92, + "probability": 0.6572265625 + } + ] + }, + { + "id": 2431, + "text": "at", + "start": 2750.92, + "end": 2751.16, + "words": [ + { + "word": " at", + "start": 2750.92, + "end": 2751.16, + "probability": 0.96484375 + } + ] + }, + { + "id": 2432, + "text": "five", + "start": 2751.16, + "end": 2751.32, + "words": [ + { + "word": " five", + "start": 2751.16, + "end": 2751.32, + "probability": 0.92236328125 + } + ] + }, + { + "id": 2433, + "text": "years", + "start": 2751.32, + "end": 2751.52, + "words": [ + { + "word": " years", + "start": 2751.32, + "end": 2751.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2434, + "text": "old", + "start": 2751.52, + "end": 2751.78, + "words": [ + { + "word": " old", + "start": 2751.52, + "end": 2751.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2435, + "text": "it", + "start": 2751.78, + "end": 2751.92, + "words": [ + { + "word": " it", + "start": 2751.78, + "end": 2751.92, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2436, + "text": "may", + "start": 2751.92, + "end": 2752.06, + "words": [ + { + "word": " may", + "start": 2751.92, + "end": 2752.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2437, + "text": "not", + "start": 2752.06, + "end": 2752.2, + "words": [ + { + "word": " not", + "start": 2752.06, + "end": 2752.2, + "probability": 1.0 + } + ] + }, + { + "id": 2438, + "text": "be", + "start": 2752.2, + "end": 2752.32, + "words": [ + { + "word": " be", + "start": 2752.2, + "end": 2752.32, + "probability": 1.0 + } + ] + }, + { + "id": 2439, + "text": "worth", + "start": 2752.32, + "end": 2752.5, + "words": [ + { + "word": " worth", + "start": 2752.32, + "end": 2752.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2440, + "text": "investing", + "start": 2752.5, + "end": 2752.9, + "words": [ + { + "word": " investing", + "start": 2752.5, + "end": 2752.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2441, + "text": "in", + "start": 2752.9, + "end": 2753.06, + "words": [ + { + "word": " in", + "start": 2752.9, + "end": 2753.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2442, + "text": "that", + "start": 2753.06, + "end": 2753.18, + "words": [ + { + "word": " that", + "start": 2753.06, + "end": 2753.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2443, + "text": "machine", + "start": 2753.18, + "end": 2753.42, + "words": [ + { + "word": " machine", + "start": 2753.18, + "end": 2753.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2444, + "text": "you", + "start": 2753.42, + "end": 2753.86, + "words": [ + { + "word": " you", + "start": 2753.42, + "end": 2753.86, + "probability": 0.91064453125 + } + ] + }, + { + "id": 2445, + "text": "might", + "start": 2753.86, + "end": 2754.04, + "words": [ + { + "word": " might", + "start": 2753.86, + "end": 2754.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 2446, + "text": "just", + "start": 2754.04, + "end": 2754.24, + "words": [ + { + "word": " just", + "start": 2754.04, + "end": 2754.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2447, + "text": "be", + "start": 2754.24, + "end": 2754.54, + "words": [ + { + "word": " be", + "start": 2754.24, + "end": 2754.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2448, + "text": "looking", + "start": 2754.54, + "end": 2754.9, + "words": [ + { + "word": " looking", + "start": 2754.54, + "end": 2754.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2449, + "text": "at", + "start": 2754.9, + "end": 2755.14, + "words": [ + { + "word": " at", + "start": 2754.9, + "end": 2755.14, + "probability": 1.0 + } + ] + }, + { + "id": 2450, + "text": "a", + "start": 2755.14, + "end": 2755.24, + "words": [ + { + "word": " a", + "start": 2755.14, + "end": 2755.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2451, + "text": "new", + "start": 2755.24, + "end": 2755.4, + "words": [ + { + "word": " new", + "start": 2755.24, + "end": 2755.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2452, + "text": "computer", + "start": 2755.4, + "end": 2755.82, + "words": [ + { + "word": " computer", + "start": 2755.4, + "end": 2755.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2453, + "text": "yeah", + "start": 2757.1, + "end": 2757.5, + "words": [ + { + "word": " yeah", + "start": 2757.1, + "end": 2757.5, + "probability": 0.515625 + } + ] + }, + { + "id": 2454, + "text": "so", + "start": 2758.54, + "end": 2758.94, + "words": [ + { + "word": " so", + "start": 2758.54, + "end": 2758.94, + "probability": 0.98681640625 + } + ] + }, + { + "id": 2455, + "text": "I'm", + "start": 2760.9, + "end": 2761.3, + "words": [ + { + "word": " I'm", + "start": 2760.9, + "end": 2761.3, + "probability": 0.9443359375 + } + ] + }, + { + "id": 2456, + "text": "not", + "start": 2761.3, + "end": 2761.4, + "words": [ + { + "word": " not", + "start": 2761.3, + "end": 2761.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2457, + "text": "sure", + "start": 2761.4, + "end": 2761.56, + "words": [ + { + "word": " sure", + "start": 2761.4, + "end": 2761.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2458, + "text": "where", + "start": 2761.56, + "end": 2761.78, + "words": [ + { + "word": " where", + "start": 2761.56, + "end": 2761.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2459, + "text": "I can", + "start": 2761.78, + "end": 2762.22, + "words": [ + { + "word": " I", + "start": 2761.78, + "end": 2762.04, + "probability": 0.7099609375 + }, + { + "word": " can", + "start": 2762.04, + "end": 2762.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2460, + "text": "help", + "start": 2762.22, + "end": 2762.4, + "words": [ + { + "word": " help", + "start": 2762.22, + "end": 2762.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2461, + "text": "you", + "start": 2762.4, + "end": 2762.5, + "words": [ + { + "word": " you", + "start": 2762.4, + "end": 2762.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2462, + "text": "other", + "start": 2762.5, + "end": 2762.66, + "words": [ + { + "word": " other", + "start": 2762.5, + "end": 2762.66, + "probability": 0.99267578125 + } + ] + }, + { + "id": 2463, + "text": "than", + "start": 2762.66, + "end": 2762.8, + "words": [ + { + "word": " than", + "start": 2762.66, + "end": 2762.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2464, + "text": "to", + "start": 2762.8, + "end": 2762.92, + "words": [ + { + "word": " to", + "start": 2762.8, + "end": 2762.92, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2465, + "text": "tell", + "start": 2762.92, + "end": 2763.1, + "words": [ + { + "word": " tell", + "start": 2762.92, + "end": 2763.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2466, + "text": "you", + "start": 2763.1, + "end": 2763.22, + "words": [ + { + "word": " you", + "start": 2763.1, + "end": 2763.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2467, + "text": "that", + "start": 2763.22, + "end": 2763.36, + "words": [ + { + "word": " that", + "start": 2763.22, + "end": 2763.36, + "probability": 0.994140625 + } + ] + }, + { + "id": 2468, + "text": "it's", + "start": 2763.36, + "end": 2763.5, + "words": [ + { + "word": " it's", + "start": 2763.36, + "end": 2763.5, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2469, + "text": "a", + "start": 2769.7, + "end": 2769.92, + "words": [ + { + "word": " a", + "start": 2769.7, + "end": 2769.92, + "probability": 3.403425216674805e-05 + } + ] + }, + { + "id": 2470, + "text": "machine", + "start": 2771.38, + "end": 2771.82, + "words": [ + { + "word": " machine", + "start": 2771.38, + "end": 2771.82, + "probability": 0.0243072509765625 + } + ] + }, + { + "id": 2471, + "text": "", + "start": 2771.82, + "end": 2771.82, + "words": [] + }, + { + "id": 2472, + "text": "you", + "start": 2771.82, + "end": 2772.04, + "words": [ + { + "word": " you", + "start": 2771.82, + "end": 2772.04, + "probability": 0.404052734375 + } + ] + }, + { + "id": 2473, + "text": "probably", + "start": 2772.04, + "end": 2772.18, + "words": [ + { + "word": " probably", + "start": 2772.04, + "end": 2772.18, + "probability": 0.03753662109375 + } + ] + }, + { + "id": 2474, + "text": "want", + "start": 2772.18, + "end": 2772.48, + "words": [ + { + "word": " want", + "start": 2772.18, + "end": 2772.48, + "probability": 0.9228515625 + } + ] + }, + { + "id": 2475, + "text": "to", + "start": 2772.48, + "end": 2772.6, + "words": [ + { + "word": " to", + "start": 2772.48, + "end": 2772.6, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2476, + "text": "go", + "start": 2772.6, + "end": 2772.68, + "words": [ + { + "word": " go", + "start": 2772.6, + "end": 2772.68, + "probability": 0.79248046875 + } + ] + }, + { + "id": 2477, + "text": "with", + "start": 2772.68, + "end": 2772.8, + "words": [ + { + "word": " with", + "start": 2772.68, + "end": 2772.8, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2478, + "text": "a", + "start": 2772.8, + "end": 2772.9, + "words": [ + { + "word": " a", + "start": 2772.8, + "end": 2772.9, + "probability": 0.94287109375 + } + ] + }, + { + "id": 2479, + "text": "clone", + "start": 2772.9, + "end": 2773.22, + "words": [ + { + "word": " clone", + "start": 2772.9, + "end": 2773.22, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2480, + "text": "where", + "start": 2773.82, + "end": 2774.26, + "words": [ + { + "word": " where", + "start": 2773.82, + "end": 2774.26, + "probability": 0.51708984375 + } + ] + }, + { + "id": 2481, + "text": "you", + "start": 2774.26, + "end": 2774.74, + "words": [ + { + "word": " you", + "start": 2774.26, + "end": 2774.74, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2482, + "text": "could", + "start": 2774.74, + "end": 2774.9, + "words": [ + { + "word": " could", + "start": 2774.74, + "end": 2774.9, + "probability": 0.685546875 + } + ] + }, + { + "id": 2483, + "text": "get", + "start": 2774.9, + "end": 2775.04, + "words": [ + { + "word": " get", + "start": 2774.9, + "end": 2775.04, + "probability": 0.994140625 + } + ] + }, + { + "id": 2484, + "text": "another", + "start": 2775.04, + "end": 2775.2, + "words": [ + { + "word": " another", + "start": 2775.04, + "end": 2775.2, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2485, + "text": "machine", + "start": 2775.2, + "end": 2775.56, + "words": [ + { + "word": " machine", + "start": 2775.2, + "end": 2775.56, + "probability": 0.998046875 + } + ] + }, + { + "id": 2486, + "text": "and", + "start": 2775.56, + "end": 2775.78, + "words": [ + { + "word": " and", + "start": 2775.56, + "end": 2775.78, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2487, + "text": "we", + "start": 2775.78, + "end": 2775.9, + "words": [ + { + "word": " we", + "start": 2775.78, + "end": 2775.9, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2488, + "text": "can", + "start": 2775.9, + "end": 2776.02, + "words": [ + { + "word": " can", + "start": 2775.9, + "end": 2776.02, + "probability": 0.6748046875 + } + ] + }, + { + "id": 2489, + "text": "just", + "start": 2776.02, + "end": 2776.2, + "words": [ + { + "word": " just", + "start": 2776.02, + "end": 2776.2, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2490, + "text": "pick", + "start": 2776.2, + "end": 2776.52, + "words": [ + { + "word": " pick", + "start": 2776.2, + "end": 2776.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 2491, + "text": "up", + "start": 2776.52, + "end": 2776.72, + "words": [ + { + "word": " up", + "start": 2776.52, + "end": 2776.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2492, + "text": "your", + "start": 2776.72, + "end": 2776.92, + "words": [ + { + "word": " your", + "start": 2776.72, + "end": 2776.92, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2493, + "text": "current", + "start": 2776.92, + "end": 2777.56, + "words": [ + { + "word": " current", + "start": 2776.92, + "end": 2777.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 2494, + "text": "operating", + "start": 2777.56, + "end": 2777.86, + "words": [ + { + "word": " operating", + "start": 2777.56, + "end": 2777.86, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2495, + "text": "system", + "start": 2777.86, + "end": 2778.18, + "words": [ + { + "word": " system", + "start": 2777.86, + "end": 2778.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2496, + "text": "and", + "start": 2778.18, + "end": 2778.38, + "words": [ + { + "word": " and", + "start": 2778.18, + "end": 2778.38, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2497, + "text": "put", + "start": 2778.38, + "end": 2778.52, + "words": [ + { + "word": " put", + "start": 2778.38, + "end": 2778.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2498, + "text": "it", + "start": 2778.52, + "end": 2778.64, + "words": [ + { + "word": " it", + "start": 2778.52, + "end": 2778.64, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2499, + "text": "on", + "start": 2778.64, + "end": 2778.7, + "words": [ + { + "word": " on", + "start": 2778.64, + "end": 2778.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2500, + "text": "your", + "start": 2778.7, + "end": 2778.84, + "words": [ + { + "word": " your", + "start": 2778.7, + "end": 2778.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2501, + "text": "new", + "start": 2778.84, + "end": 2778.98, + "words": [ + { + "word": " new", + "start": 2778.84, + "end": 2778.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2502, + "text": "computer", + "start": 2778.98, + "end": 2779.38, + "words": [ + { + "word": " computer", + "start": 2778.98, + "end": 2779.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2503, + "text": "okay", + "start": 2780.52, + "end": 2780.96, + "words": [ + { + "word": " okay", + "start": 2780.52, + "end": 2780.96, + "probability": 0.059173583984375 + } + ] + }, + { + "id": 2504, + "text": "or", + "start": 2781.74, + "end": 2782.18, + "words": [ + { + "word": " or", + "start": 2781.74, + "end": 2782.18, + "probability": 0.97216796875 + } + ] + }, + { + "id": 2505, + "text": "do", + "start": 2782.88, + "end": 2783.32, + "words": [ + { + "word": " do", + "start": 2782.88, + "end": 2783.32, + "probability": 0.994140625 + } + ] + }, + { + "id": 2506, + "text": "the", + "start": 2783.32, + "end": 2783.5, + "words": [ + { + "word": " the", + "start": 2783.32, + "end": 2783.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2507, + "text": "upgrade", + "start": 2783.5, + "end": 2783.8, + "words": [ + { + "word": " upgrade", + "start": 2783.5, + "end": 2783.8, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2508, + "text": "it", + "start": 2783.8, + "end": 2784.1, + "words": [ + { + "word": " it", + "start": 2783.8, + "end": 2784.1, + "probability": 0.9404296875 + } + ] + }, + { + "id": 2509, + "text": "just", + "start": 2784.1, + "end": 2784.24, + "words": [ + { + "word": " just", + "start": 2784.1, + "end": 2784.24, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2510, + "text": "sort", + "start": 2784.24, + "end": 2784.4, + "words": [ + { + "word": " sort", + "start": 2784.24, + "end": 2784.4, + "probability": 0.986328125 + } + ] + }, + { + "id": 2511, + "text": "of", + "start": 2784.4, + "end": 2784.48, + "words": [ + { + "word": " of", + "start": 2784.4, + "end": 2784.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2512, + "text": "depends", + "start": 2784.48, + "end": 2784.68, + "words": [ + { + "word": " depends", + "start": 2784.48, + "end": 2784.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2513, + "text": "on", + "start": 2784.68, + "end": 2784.88, + "words": [ + { + "word": " on", + "start": 2784.68, + "end": 2784.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2514, + "text": "the", + "start": 2784.88, + "end": 2785.04, + "words": [ + { + "word": " the", + "start": 2784.88, + "end": 2785.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2515, + "text": "base", + "start": 2785.04, + "end": 2785.28, + "words": [ + { + "word": " base", + "start": 2785.04, + "end": 2785.28, + "probability": 0.998046875 + } + ] + }, + { + "id": 2516, + "text": "machine", + "start": 2785.28, + "end": 2785.62, + "words": [ + { + "word": " machine", + "start": 2785.28, + "end": 2785.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2517, + "text": "you", + "start": 2785.62, + "end": 2786.06, + "words": [ + { + "word": " you", + "start": 2785.62, + "end": 2786.06, + "probability": 0.1243896484375 + } + ] + }, + { + "id": 2518, + "text": "know", + "start": 2786.06, + "end": 2786.88, + "words": [ + { + "word": " know", + "start": 2786.06, + "end": 2786.88, + "probability": 1.0 + } + ] + }, + { + "id": 2519, + "text": "which", + "start": 2786.88, + "end": 2787.02, + "words": [ + { + "word": " which", + "start": 2786.88, + "end": 2787.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2520, + "text": "processor", + "start": 2787.02, + "end": 2787.44, + "words": [ + { + "word": " processor", + "start": 2787.02, + "end": 2787.44, + "probability": 0.86767578125 + } + ] + }, + { + "id": 2521, + "text": "is", + "start": 2787.44, + "end": 2787.64, + "words": [ + { + "word": " is", + "start": 2787.44, + "end": 2787.64, + "probability": 0.916015625 + } + ] + }, + { + "id": 2522, + "text": "in", + "start": 2787.64, + "end": 2787.74, + "words": [ + { + "word": " in", + "start": 2787.64, + "end": 2787.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2523, + "text": "that", + "start": 2787.74, + "end": 2787.9, + "words": [ + { + "word": " that", + "start": 2787.74, + "end": 2787.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2524, + "text": "no", + "start": 2789.82, + "end": 2790.26, + "words": [ + { + "word": " no", + "start": 2789.82, + "end": 2790.26, + "probability": 0.74658203125 + } + ] + }, + { + "id": 2525, + "text": "not", + "start": 2791.16, + "end": 2791.6, + "words": [ + { + "word": " not", + "start": 2791.16, + "end": 2791.6, + "probability": 0.49267578125 + } + ] + }, + { + "id": 2526, + "text": "just", + "start": 2792.74, + "end": 2793.18, + "words": [ + { + "word": " just", + "start": 2792.74, + "end": 2793.18, + "probability": 0.95166015625 + } + ] + }, + { + "id": 2527, + "text": "off", + "start": 2793.18, + "end": 2793.48, + "words": [ + { + "word": " off", + "start": 2793.18, + "end": 2793.48, + "probability": 0.94189453125 + } + ] + }, + { + "id": 2528, + "text": "hand", + "start": 2793.48, + "end": 2793.92, + "words": [ + { + "word": " hand", + "start": 2793.48, + "end": 2793.92, + "probability": 0.841796875 + } + ] + }, + { + "id": 2529, + "text": "okay", + "start": 2793.92, + "end": 2794.64, + "words": [ + { + "word": " okay", + "start": 2793.92, + "end": 2794.64, + "probability": 0.401611328125 + } + ] + }, + { + "id": 2530, + "text": "so", + "start": 2795.34, + "end": 2795.78, + "words": [ + { + "word": " so", + "start": 2795.34, + "end": 2795.78, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2531, + "text": "if", + "start": 2795.78, + "end": 2796.1, + "words": [ + { + "word": " if", + "start": 2795.78, + "end": 2796.1, + "probability": 1.0 + } + ] + }, + { + "id": 2532, + "text": "you", + "start": 2796.1, + "end": 2796.2, + "words": [ + { + "word": " you", + "start": 2796.1, + "end": 2796.2, + "probability": 1.0 + } + ] + }, + { + "id": 2533, + "text": "have", + "start": 2796.2, + "end": 2796.3, + "words": [ + { + "word": " have", + "start": 2796.2, + "end": 2796.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2534, + "text": "a", + "start": 2796.3, + "end": 2796.36, + "words": [ + { + "word": " a", + "start": 2796.3, + "end": 2796.36, + "probability": 0.84619140625 + } + ] + }, + { + "id": 2535, + "text": "nice", + "start": 2796.36, + "end": 2796.84, + "words": [ + { + "word": " nice", + "start": 2796.36, + "end": 2796.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2536, + "text": "older", + "start": 2796.84, + "end": 2797.44, + "words": [ + { + "word": " older", + "start": 2796.84, + "end": 2797.44, + "probability": 0.884765625 + } + ] + }, + { + "id": 2537, + "text": "i7", + "start": 2798.0, + "end": 2798.44, + "words": [ + { + "word": " i7", + "start": 2798.0, + "end": 2798.44, + "probability": 0.974609375 + } + ] + }, + { + "id": 2538, + "text": "or", + "start": 2798.44, + "end": 2798.76, + "words": [ + { + "word": " or", + "start": 2798.44, + "end": 2798.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2539, + "text": "something", + "start": 2798.76, + "end": 2799.08, + "words": [ + { + "word": " something", + "start": 2798.76, + "end": 2799.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2540, + "text": "you", + "start": 2799.08, + "end": 2799.68, + "words": [ + { + "word": " you", + "start": 2799.08, + "end": 2799.68, + "probability": 0.08935546875 + } + ] + }, + { + "id": 2541, + "text": "then", + "start": 2799.68, + "end": 2799.94, + "words": [ + { + "word": " then", + "start": 2799.68, + "end": 2799.94, + "probability": 0.93896484375 + } + ] + }, + { + "id": 2542, + "text": "that", + "start": 2799.94, + "end": 2800.58, + "words": [ + { + "word": " that", + "start": 2799.94, + "end": 2800.58, + "probability": 1.0 + } + ] + }, + { + "id": 2543, + "text": "machine", + "start": 2800.58, + "end": 2800.94, + "words": [ + { + "word": " machine", + "start": 2800.58, + "end": 2800.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2544, + "text": "may be", + "start": 2800.94, + "end": 2801.6, + "words": [ + { + "word": " may", + "start": 2800.94, + "end": 2801.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 2801.4, + "end": 2801.6, + "probability": 1.0 + } + ] + }, + { + "id": 2545, + "text": "worth", + "start": 2801.6, + "end": 2801.86, + "words": [ + { + "word": " worth", + "start": 2801.6, + "end": 2801.86, + "probability": 1.0 + } + ] + }, + { + "id": 2546, + "text": "just", + "start": 2801.86, + "end": 2802.1, + "words": [ + { + "word": " just", + "start": 2801.86, + "end": 2802.1, + "probability": 1.0 + } + ] + }, + { + "id": 2547, + "text": "doing", + "start": 2802.1, + "end": 2802.38, + "words": [ + { + "word": " doing", + "start": 2802.1, + "end": 2802.38, + "probability": 1.0 + } + ] + }, + { + "id": 2548, + "text": "upgrades", + "start": 2802.38, + "end": 2802.76, + "words": [ + { + "word": " upgrades", + "start": 2802.38, + "end": 2802.76, + "probability": 1.0 + } + ] + }, + { + "id": 2549, + "text": "on", + "start": 2802.76, + "end": 2803.02, + "words": [ + { + "word": " on", + "start": 2802.76, + "end": 2803.02, + "probability": 1.0 + } + ] + }, + { + "id": 2550, + "text": "it", + "start": 2803.02, + "end": 2803.16, + "words": [ + { + "word": " it", + "start": 2803.02, + "end": 2803.16, + "probability": 0.003108978271484375 + } + ] + }, + { + "id": 2551, + "text": "would", + "start": 2803.16, + "end": 2803.26, + "words": [ + { + "word": " would", + "start": 2803.16, + "end": 2803.26, + "probability": 0.192138671875 + } + ] + }, + { + "id": 2552, + "text": "be", + "start": 2803.26, + "end": 2803.38, + "words": [ + { + "word": " be", + "start": 2803.26, + "end": 2803.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2553, + "text": "cheaper", + "start": 2803.38, + "end": 2803.7, + "words": [ + { + "word": " cheaper", + "start": 2803.38, + "end": 2803.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2554, + "text": "than", + "start": 2803.7, + "end": 2803.88, + "words": [ + { + "word": " than", + "start": 2803.7, + "end": 2803.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2555, + "text": "replacing", + "start": 2803.88, + "end": 2804.24, + "words": [ + { + "word": " replacing", + "start": 2803.88, + "end": 2804.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2556, + "text": "the", + "start": 2804.24, + "end": 2804.56, + "words": [ + { + "word": " the", + "start": 2804.24, + "end": 2804.56, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2557, + "text": "machine", + "start": 2804.56, + "end": 2804.98, + "words": [ + { + "word": " machine", + "start": 2804.56, + "end": 2804.98, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2558, + "text": "outright", + "start": 2804.98, + "end": 2805.36, + "words": [ + { + "word": " outright", + "start": 2804.98, + "end": 2805.36, + "probability": 0.9658203125 + } + ] + }, + { + "id": 2559, + "text": "but", + "start": 2806.2400000000002, + "end": 2806.76, + "words": [ + { + "word": " but", + "start": 2806.2400000000002, + "end": 2806.76, + "probability": 0.37451171875 + } + ] + }, + { + "id": 2560, + "text": "what", + "start": 2807.3799999999997, + "end": 2807.44, + "words": [ + { + "word": " what", + "start": 2807.18, + "end": 2807.44, + "probability": 0.998046875 + } + ] + }, + { + "id": 2561, + "text": "you", + "start": 2807.44, + "end": 2807.62, + "words": [ + { + "word": " you", + "start": 2807.44, + "end": 2807.62, + "probability": 1.0 + } + ] + }, + { + "id": 2562, + "text": "can", + "start": 2807.62, + "end": 2807.72, + "words": [ + { + "word": " can", + "start": 2807.62, + "end": 2807.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2563, + "text": "do", + "start": 2807.72, + "end": 2807.86, + "words": [ + { + "word": " do", + "start": 2807.72, + "end": 2807.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2564, + "text": "is", + "start": 2807.86, + "end": 2807.98, + "words": [ + { + "word": " is", + "start": 2807.86, + "end": 2807.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2565, + "text": "you", + "start": 2807.98, + "end": 2808.08, + "words": [ + { + "word": " you", + "start": 2807.98, + "end": 2808.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 2566, + "text": "can", + "start": 2808.08, + "end": 2808.12, + "words": [ + { + "word": " can", + "start": 2808.08, + "end": 2808.12, + "probability": 0.99609375 + } + ] + }, + { + "id": 2567, + "text": "call", + "start": 2808.12, + "end": 2808.28, + "words": [ + { + "word": " call", + "start": 2808.12, + "end": 2808.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2568, + "text": "down", + "start": 2808.28, + "end": 2808.44, + "words": [ + { + "word": " down", + "start": 2808.28, + "end": 2808.44, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2569, + "text": "to", + "start": 2808.44, + "end": 2808.56, + "words": [ + { + "word": " to", + "start": 2808.44, + "end": 2808.56, + "probability": 0.99072265625 + } + ] + }, + { + "id": 2570, + "text": "the", + "start": 2808.56, + "end": 2808.58, + "words": [ + { + "word": " the", + "start": 2808.56, + "end": 2808.58, + "probability": 1.0 + } + ] + }, + { + "id": 2571, + "text": "shop", + "start": 2808.58, + "end": 2808.88, + "words": [ + { + "word": " shop", + "start": 2808.58, + "end": 2808.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2572, + "text": "at", + "start": 2808.88, + "end": 2809.1, + "words": [ + { + "word": " at", + "start": 2808.88, + "end": 2809.1, + "probability": 0.95458984375 + } + ] + }, + { + "id": 2573, + "text": "304-8300", + "start": 2809.1, + "end": 2810.18, + "words": [ + { + "word": " 304", + "start": 2809.1, + "end": 2809.7, + "probability": 0.95947265625 + }, + { + "word": "-8300", + "start": 2809.7, + "end": 2810.18, + "probability": 0.9619140625 + } + ] + }, + { + "id": 2574, + "text": "and", + "start": 2810.18, + "end": 2810.86, + "words": [ + { + "word": " and", + "start": 2810.18, + "end": 2810.86, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2575, + "text": "talk", + "start": 2810.86, + "end": 2811.4, + "words": [ + { + "word": " talk", + "start": 2810.86, + "end": 2811.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2576, + "text": "to", + "start": 2811.4, + "end": 2811.54, + "words": [ + { + "word": " to", + "start": 2811.4, + "end": 2811.54, + "probability": 1.0 + } + ] + }, + { + "id": 2577, + "text": "them", + "start": 2811.54, + "end": 2811.72, + "words": [ + { + "word": " them", + "start": 2811.54, + "end": 2811.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2578, + "text": "and", + "start": 2811.72, + "end": 2812.0, + "words": [ + { + "word": " and", + "start": 2811.72, + "end": 2812.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2579, + "text": "they", + "start": 2812.0, + "end": 2812.08, + "words": [ + { + "word": " they", + "start": 2812.0, + "end": 2812.08, + "probability": 0.98291015625 + } + ] + }, + { + "id": 2580, + "text": "can", + "start": 2812.08, + "end": 2812.44, + "words": [ + { + "word": " can", + "start": 2812.08, + "end": 2812.44, + "probability": 0.264892578125 + } + ] + }, + { + "id": 2581, + "text": "get", + "start": 2812.44, + "end": 2812.6, + "words": [ + { + "word": " get", + "start": 2812.44, + "end": 2812.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2582, + "text": "all", + "start": 2812.6, + "end": 2812.7, + "words": [ + { + "word": " all", + "start": 2812.6, + "end": 2812.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2583, + "text": "the", + "start": 2812.7, + "end": 2812.82, + "words": [ + { + "word": " the", + "start": 2812.7, + "end": 2812.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2584, + "text": "specs", + "start": 2812.82, + "end": 2813.1, + "words": [ + { + "word": " specs", + "start": 2812.82, + "end": 2813.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2585, + "text": "from", + "start": 2813.1, + "end": 2813.32, + "words": [ + { + "word": " from", + "start": 2813.1, + "end": 2813.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2586, + "text": "your", + "start": 2813.32, + "end": 2813.48, + "words": [ + { + "word": " your", + "start": 2813.32, + "end": 2813.48, + "probability": 1.0 + } + ] + }, + { + "id": 2587, + "text": "computer", + "start": 2813.48, + "end": 2813.94, + "words": [ + { + "word": " computer", + "start": 2813.48, + "end": 2813.94, + "probability": 1.0 + } + ] + }, + { + "id": 2588, + "text": "especially", + "start": 2814.76, + "end": 2815.28, + "words": [ + { + "word": " especially", + "start": 2814.76, + "end": 2815.28, + "probability": 0.365966796875 + } + ] + }, + { + "id": 2589, + "text": "if", + "start": 2815.28, + "end": 2815.86, + "words": [ + { + "word": " if", + "start": 2815.28, + "end": 2815.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2590, + "text": "you", + "start": 2815.86, + "end": 2815.88, + "words": [ + { + "word": " you", + "start": 2815.86, + "end": 2815.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2591, + "text": "call", + "start": 2815.88, + "end": 2816.02, + "words": [ + { + "word": " call", + "start": 2815.88, + "end": 2816.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2592, + "text": "on", + "start": 2816.02, + "end": 2816.24, + "words": [ + { + "word": " on", + "start": 2816.02, + "end": 2816.24, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2593, + "text": "monday", + "start": 2817.4, + "end": 2817.92, + "words": [ + { + "word": " monday", + "start": 2817.4, + "end": 2817.92, + "probability": 0.5791015625 + } + ] + }, + { + "id": 2594, + "text": "or", + "start": 2817.92, + "end": 2818.0, + "words": [ + { + "word": " or", + "start": 2817.92, + "end": 2818.0, + "probability": 0.998046875 + } + ] + }, + { + "id": 2595, + "text": "tuesday", + "start": 2818.0, + "end": 2818.32, + "words": [ + { + "word": " tuesday", + "start": 2818.0, + "end": 2818.32, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2596, + "text": "whatever", + "start": 2818.32, + "end": 2818.86, + "words": [ + { + "word": " whatever", + "start": 2818.32, + "end": 2818.86, + "probability": 0.98828125 + } + ] + }, + { + "id": 2597, + "text": "you're", + "start": 2818.86, + "end": 2819.26, + "words": [ + { + "word": " you're", + "start": 2818.86, + "end": 2819.26, + "probability": 0.998046875 + } + ] + }, + { + "id": 2598, + "text": "comfortable", + "start": 2819.26, + "end": 2819.56, + "words": [ + { + "word": " comfortable", + "start": 2819.26, + "end": 2819.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2599, + "text": "with", + "start": 2819.56, + "end": 2819.8, + "words": [ + { + "word": " with", + "start": 2819.56, + "end": 2819.8, + "probability": 0.998046875 + } + ] + }, + { + "id": 2600, + "text": "and", + "start": 2820.54, + "end": 2821.06, + "words": [ + { + "word": " and", + "start": 2820.54, + "end": 2821.06, + "probability": 0.79345703125 + } + ] + }, + { + "id": 2601, + "text": "talk", + "start": 2821.06, + "end": 2821.76, + "words": [ + { + "word": " talk", + "start": 2821.06, + "end": 2821.76, + "probability": 0.429443359375 + } + ] + }, + { + "id": 2602, + "text": "to", + "start": 2821.76, + "end": 2822.0, + "words": [ + { + "word": " to", + "start": 2821.76, + "end": 2822.0, + "probability": 1.0 + } + ] + }, + { + "id": 2603, + "text": "winter", + "start": 2822.0, + "end": 2822.24, + "words": [ + { + "word": " winter", + "start": 2822.0, + "end": 2822.24, + "probability": 0.97607421875 + } + ] + }, + { + "id": 2604, + "text": "she", + "start": 2822.24, + "end": 2822.52, + "words": [ + { + "word": " she", + "start": 2822.24, + "end": 2822.52, + "probability": 0.98828125 + } + ] + }, + { + "id": 2605, + "text": "does", + "start": 2822.52, + "end": 2822.7, + "words": [ + { + "word": " does", + "start": 2822.52, + "end": 2822.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2606, + "text": "all", + "start": 2822.7, + "end": 2822.88, + "words": [ + { + "word": " all", + "start": 2822.7, + "end": 2822.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2607, + "text": "the", + "start": 2822.88, + "end": 2823.06, + "words": [ + { + "word": " the", + "start": 2822.88, + "end": 2823.06, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2608, + "text": "machine", + "start": 2823.06, + "end": 2823.3, + "words": [ + { + "word": " machine", + "start": 2823.06, + "end": 2823.3, + "probability": 0.99609375 + } + ] + }, + { + "id": 2609, + "text": "builds", + "start": 2823.3, + "end": 2823.66, + "words": [ + { + "word": " builds", + "start": 2823.3, + "end": 2823.66, + "probability": 0.998046875 + } + ] + }, + { + "id": 2610, + "text": "and", + "start": 2824.3, + "end": 2824.82, + "words": [ + { + "word": " and", + "start": 2824.3, + "end": 2824.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 2611, + "text": "she", + "start": 2824.82, + "end": 2825.52, + "words": [ + { + "word": " she", + "start": 2824.82, + "end": 2825.52, + "probability": 0.96484375 + } + ] + }, + { + "id": 2612, + "text": "can", + "start": 2825.52, + "end": 2825.64, + "words": [ + { + "word": " can", + "start": 2825.52, + "end": 2825.64, + "probability": 0.0013399124145507812 + } + ] + }, + { + "id": 2613, + "text": "tell", + "start": 2825.64, + "end": 2826.1, + "words": [ + { + "word": " tell", + "start": 2825.64, + "end": 2826.1, + "probability": 0.9814453125 + } + ] + }, + { + "id": 2614, + "text": "you", + "start": 2826.1, + "end": 2826.24, + "words": [ + { + "word": " you", + "start": 2826.1, + "end": 2826.24, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2615, + "text": "what", + "start": 2826.24, + "end": 2826.34, + "words": [ + { + "word": " what", + "start": 2826.24, + "end": 2826.34, + "probability": 0.93603515625 + } + ] + }, + { + "id": 2616, + "text": "it", + "start": 2826.34, + "end": 2826.44, + "words": [ + { + "word": " it", + "start": 2826.34, + "end": 2826.44, + "probability": 0.810546875 + } + ] + }, + { + "id": 2617, + "text": "", + "start": 2826.44, + "end": 2826.44, + "words": [] + }, + { + "id": 2618, + "text": "cost", + "start": 2826.44, + "end": 2826.74, + "words": [ + { + "word": " cost", + "start": 2826.44, + "end": 2826.74, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2619, + "text": "to", + "start": 2826.74, + "end": 2826.96, + "words": [ + { + "word": " to", + "start": 2826.74, + "end": 2826.96, + "probability": 0.9677734375 + } + ] + }, + { + "id": 2620, + "text": "either", + "start": 2826.96, + "end": 2827.44, + "words": [ + { + "word": " either", + "start": 2826.96, + "end": 2827.44, + "probability": 0.91357421875 + } + ] + }, + { + "id": 2621, + "text": "upgrade", + "start": 2827.44, + "end": 2827.82, + "words": [ + { + "word": " upgrade", + "start": 2827.44, + "end": 2827.82, + "probability": 0.98046875 + } + ] + }, + { + "id": 2622, + "text": "or", + "start": 2827.82, + "end": 2827.98, + "words": [ + { + "word": " or", + "start": 2827.82, + "end": 2827.98, + "probability": 0.98291015625 + } + ] + }, + { + "id": 2623, + "text": "replace", + "start": 2827.98, + "end": 2828.26, + "words": [ + { + "word": " replace", + "start": 2827.98, + "end": 2828.26, + "probability": 0.986328125 + } + ] + }, + { + "id": 2624, + "text": "that", + "start": 2828.26, + "end": 2828.46, + "words": [ + { + "word": " that", + "start": 2828.26, + "end": 2828.46, + "probability": 0.98046875 + } + ] + }, + { + "id": 2625, + "text": "machine", + "start": 2828.46, + "end": 2828.72, + "words": [ + { + "word": " machine", + "start": 2828.46, + "end": 2828.72, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2626, + "text": "okay", + "start": 2829.6, + "end": 2830.08, + "words": [ + { + "word": " okay", + "start": 2829.6, + "end": 2830.08, + "probability": 0.045654296875 + } + ] + }, + { + "id": 2627, + "text": "well", + "start": 2830.08, + "end": 2831.02, + "words": [ + { + "word": " well", + "start": 2830.08, + "end": 2831.02, + "probability": 0.126953125 + } + ] + }, + { + "id": 2628, + "text": "thank", + "start": 2831.02, + "end": 2831.48, + "words": [ + { + "word": " thank", + "start": 2831.02, + "end": 2831.48, + "probability": 0.9228515625 + } + ] + }, + { + "id": 2629, + "text": "you", + "start": 2831.48, + "end": 2831.72, + "words": [ + { + "word": " you", + "start": 2831.48, + "end": 2831.72, + "probability": 0.98876953125 + } + ] + }, + { + "id": 2630, + "text": "i", + "start": 2831.72, + "end": 2832.0, + "words": [ + { + "word": " i", + "start": 2831.72, + "end": 2832.0, + "probability": 0.260498046875 + } + ] + }, + { + "id": 2631, + "text": "appreciate", + "start": 2832.0, + "end": 2832.5, + "words": [ + { + "word": " appreciate", + "start": 2832.0, + "end": 2832.5, + "probability": 0.9619140625 + } + ] + }, + { + "id": 2632, + "text": "the", + "start": 2832.5, + "end": 2832.74, + "words": [ + { + "word": " the", + "start": 2832.5, + "end": 2832.74, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2633, + "text": "call", + "start": 2832.74, + "end": 2832.92, + "words": [ + { + "word": " call", + "start": 2832.74, + "end": 2832.92, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2634, + "text": "marv", + "start": 2832.92, + "end": 2833.28, + "words": [ + { + "word": " marv", + "start": 2832.92, + "end": 2833.28, + "probability": 0.66943359375 + } + ] + }, + { + "id": 2635, + "text": "sure", + "start": 2833.28, + "end": 2834.22, + "words": [ + { + "word": " sure", + "start": 2833.28, + "end": 2834.22, + "probability": 0.399658203125 + } + ] + }, + { + "id": 2636, + "text": "you", + "start": 2834.22, + "end": 2834.64, + "words": [ + { + "word": " you", + "start": 2834.22, + "end": 2834.64, + "probability": 0.97314453125 + } + ] + }, + { + "id": 2637, + "text": "have", + "start": 2834.64, + "end": 2834.8, + "words": [ + { + "word": " have", + "start": 2834.64, + "end": 2834.8, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2638, + "text": "yourself", + "start": 2834.8, + "end": 2835.0, + "words": [ + { + "word": " yourself", + "start": 2834.8, + "end": 2835.0, + "probability": 0.95751953125 + } + ] + }, + { + "id": 2639, + "text": "a", + "start": 2835.0, + "end": 2835.16, + "words": [ + { + "word": " a", + "start": 2835.0, + "end": 2835.16, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2640, + "text": "wonderful", + "start": 2835.16, + "end": 2835.34, + "words": [ + { + "word": " wonderful", + "start": 2835.16, + "end": 2835.34, + "probability": 0.998046875 + } + ] + }, + { + "id": 2641, + "text": "day", + "start": 2835.34, + "end": 2835.58, + "words": [ + { + "word": " day", + "start": 2835.34, + "end": 2835.58, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2642, + "text": "and", + "start": 2835.58, + "end": 2835.8, + "words": [ + { + "word": " and", + "start": 2835.58, + "end": 2835.8, + "probability": 0.9755859375 + } + ] + }, + { + "id": 2643, + "text": "let's", + "start": 2835.8, + "end": 2836.0, + "words": [ + { + "word": " let's", + "start": 2835.8, + "end": 2836.0, + "probability": 0.8173828125 + } + ] + }, + { + "id": 2644, + "text": "go", + "start": 2836.0, + "end": 2836.06, + "words": [ + { + "word": " go", + "start": 2836.0, + "end": 2836.06, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2645, + "text": "ahead", + "start": 2836.06, + "end": 2836.18, + "words": [ + { + "word": " ahead", + "start": 2836.06, + "end": 2836.18, + "probability": 0.9375 + } + ] + }, + { + "id": 2646, + "text": "and", + "start": 2836.18, + "end": 2836.22, + "words": [ + { + "word": " and", + "start": 2836.18, + "end": 2836.22, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2647, + "text": "talk", + "start": 2836.22, + "end": 2836.42, + "words": [ + { + "word": " talk", + "start": 2836.22, + "end": 2836.42, + "probability": 0.99609375 + } + ] + }, + { + "id": 2648, + "text": "to", + "start": 2836.42, + "end": 2836.58, + "words": [ + { + "word": " to", + "start": 2836.42, + "end": 2836.58, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2649, + "text": "richard", + "start": 2837.5, + "end": 2837.98, + "words": [ + { + "word": " richard", + "start": 2837.5, + "end": 2837.98, + "probability": 0.654296875 + } + ] + }, + { + "id": 2650, + "text": "hello", + "start": 2837.98, + "end": 2838.18, + "words": [ + { + "word": " hello", + "start": 2837.98, + "end": 2838.18, + "probability": 0.90234375 + } + ] + }, + { + "id": 2651, + "text": "richard", + "start": 2838.18, + "end": 2838.46, + "words": [ + { + "word": " richard", + "start": 2838.18, + "end": 2838.46, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2652, + "text": "how are", + "start": 2838.46, + "end": 2838.64, + "words": [ + { + "word": " how", + "start": 2838.46, + "end": 2838.58, + "probability": 0.986328125 + }, + { + "word": " are", + "start": 2838.58, + "end": 2838.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2653, + "text": "you", + "start": 2838.64, + "end": 2838.74, + "words": [ + { + "word": " you", + "start": 2838.64, + "end": 2838.74, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2654, + "text": "hey", + "start": 2839.34, + "end": 2839.48, + "words": [ + { + "word": " hey", + "start": 2839.2400000000002, + "end": 2839.48, + "probability": 0.93896484375 + } + ] + }, + { + "id": 2655, + "text": "mike", + "start": 2839.48, + "end": 2839.7, + "words": [ + { + "word": " mike", + "start": 2839.48, + "end": 2839.7, + "probability": 0.98095703125 + } + ] + }, + { + "id": 2656, + "text": "good", + "start": 2839.7, + "end": 2839.82, + "words": [ + { + "word": " good", + "start": 2839.7, + "end": 2839.82, + "probability": 0.94677734375 + } + ] + }, + { + "id": 2657, + "text": "morning", + "start": 2839.82, + "end": 2840.14, + "words": [ + { + "word": " morning", + "start": 2839.82, + "end": 2840.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 2658, + "text": "i've", + "start": 2840.7599999999998, + "end": 2841.24, + "words": [ + { + "word": " i've", + "start": 2840.7599999999998, + "end": 2841.24, + "probability": 0.91162109375 + } + ] + }, + { + "id": 2659, + "text": "got", + "start": 2841.24, + "end": 2841.32, + "words": [ + { + "word": " got", + "start": 2841.24, + "end": 2841.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2660, + "text": "an", + "start": 2841.32, + "end": 2841.52, + "words": [ + { + "word": " an", + "start": 2841.32, + "end": 2841.52, + "probability": 0.9609375 + } + ] + }, + { + "id": 2661, + "text": "icloud", + "start": 2841.52, + "end": 2841.98, + "words": [ + { + "word": " icloud", + "start": 2841.52, + "end": 2841.98, + "probability": 0.96630859375 + } + ] + }, + { + "id": 2662, + "text": "management", + "start": 2841.98, + "end": 2842.58, + "words": [ + { + "word": " management", + "start": 2841.98, + "end": 2842.58, + "probability": 0.990234375 + } + ] + }, + { + "id": 2663, + "text": "storage", + "start": 2842.58, + "end": 2843.22, + "words": [ + { + "word": " storage", + "start": 2842.58, + "end": 2843.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 2664, + "text": "question", + "start": 2843.22, + "end": 2843.98, + "words": [ + { + "word": " question", + "start": 2843.22, + "end": 2843.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 2665, + "text": "following", + "start": 2843.98, + "end": 2844.74, + "words": [ + { + "word": " following", + "start": 2843.98, + "end": 2844.74, + "probability": 0.59228515625 + } + ] + }, + { + "id": 2666, + "text": "your", + "start": 2845.28, + "end": 2845.46, + "words": [ + { + "word": " your", + "start": 2845.2200000000003, + "end": 2845.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2667, + "text": "advice", + "start": 2845.46, + "end": 2845.86, + "words": [ + { + "word": " advice", + "start": 2845.46, + "end": 2845.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2668, + "text": "a", + "start": 2845.86, + "end": 2846.14, + "words": [ + { + "word": " a", + "start": 2845.86, + "end": 2846.14, + "probability": 0.900390625 + } + ] + }, + { + "id": 2669, + "text": "ways", + "start": 2846.14, + "end": 2846.3, + "words": [ + { + "word": " ways", + "start": 2846.14, + "end": 2846.3, + "probability": 0.97119140625 + } + ] + }, + { + "id": 2670, + "text": "back", + "start": 2846.3, + "end": 2846.62, + "words": [ + { + "word": " back", + "start": 2846.3, + "end": 2846.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2671, + "text": "i", + "start": 2846.62, + "end": 2846.92, + "words": [ + { + "word": " i", + "start": 2846.62, + "end": 2846.92, + "probability": 0.98828125 + } + ] + }, + { + "id": 2672, + "text": "finally", + "start": 2846.92, + "end": 2847.22, + "words": [ + { + "word": " finally", + "start": 2846.92, + "end": 2847.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 2673, + "text": "did", + "start": 2847.22, + "end": 2847.36, + "words": [ + { + "word": " did", + "start": 2847.22, + "end": 2847.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2674, + "text": "go", + "start": 2847.36, + "end": 2847.58, + "words": [ + { + "word": " go", + "start": 2847.36, + "end": 2847.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2675, + "text": "over", + "start": 2847.58, + "end": 2847.74, + "words": [ + { + "word": " over", + "start": 2847.58, + "end": 2847.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2676, + "text": "to", + "start": 2847.74, + "end": 2847.86, + "words": [ + { + "word": " to", + "start": 2847.74, + "end": 2847.86, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2677, + "text": "icloud", + "start": 2847.86, + "end": 2848.28, + "words": [ + { + "word": " icloud", + "start": 2847.86, + "end": 2848.28, + "probability": 0.9560546875 + } + ] + }, + { + "id": 2678, + "text": "storage", + "start": 2848.28, + "end": 2848.8, + "words": [ + { + "word": " storage", + "start": 2848.28, + "end": 2848.8, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2679, + "text": "seemed", + "start": 2848.8, + "end": 2849.32, + "words": [ + { + "word": " seemed", + "start": 2848.8, + "end": 2849.32, + "probability": 0.85888671875 + } + ] + }, + { + "id": 2680, + "text": "to", + "start": 2849.32, + "end": 2849.48, + "words": [ + { + "word": " to", + "start": 2849.32, + "end": 2849.48, + "probability": 1.0 + } + ] + }, + { + "id": 2681, + "text": "work", + "start": 2849.48, + "end": 2849.64, + "words": [ + { + "word": " work", + "start": 2849.48, + "end": 2849.64, + "probability": 1.0 + } + ] + }, + { + "id": 2682, + "text": "pretty", + "start": 2849.64, + "end": 2849.94, + "words": [ + { + "word": " pretty", + "start": 2849.64, + "end": 2849.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2683, + "text": "well", + "start": 2849.94, + "end": 2850.16, + "words": [ + { + "word": " well", + "start": 2849.94, + "end": 2850.16, + "probability": 0.42822265625 + } + ] + }, + { + "id": 2684, + "text": "but", + "start": 2850.66, + "end": 2851.14, + "words": [ + { + "word": " but", + "start": 2850.66, + "end": 2851.14, + "probability": 0.1832275390625 + } + ] + }, + { + "id": 2685, + "text": "what", + "start": 2851.14, + "end": 2851.54, + "words": [ + { + "word": " what", + "start": 2851.14, + "end": 2851.54, + "probability": 0.98291015625 + } + ] + }, + { + "id": 2686, + "text": "i", + "start": 2851.54, + "end": 2851.7, + "words": [ + { + "word": " i", + "start": 2851.54, + "end": 2851.7, + "probability": 0.425537109375 + } + ] + }, + { + "id": 2687, + "text": "found", + "start": 2851.7, + "end": 2852.1, + "words": [ + { + "word": " found", + "start": 2851.7, + "end": 2852.1, + "probability": 0.9814453125 + } + ] + }, + { + "id": 2688, + "text": "out", + "start": 2852.1, + "end": 2852.28, + "words": [ + { + "word": " out", + "start": 2852.1, + "end": 2852.28, + "probability": 0.97509765625 + } + ] + }, + { + "id": 2689, + "text": "is", + "start": 2852.28, + "end": 2852.62, + "words": [ + { + "word": " is", + "start": 2852.28, + "end": 2852.62, + "probability": 0.95947265625 + } + ] + }, + { + "id": 2690, + "text": "that", + "start": 2852.62, + "end": 2852.74, + "words": [ + { + "word": " that", + "start": 2852.62, + "end": 2852.74, + "probability": 0.9599609375 + } + ] + }, + { + "id": 2691, + "text": "first", + "start": 2852.74, + "end": 2853.04, + "words": [ + { + "word": " first", + "start": 2852.74, + "end": 2853.04, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2692, + "text": "of", + "start": 2853.04, + "end": 2853.22, + "words": [ + { + "word": " of", + "start": 2853.04, + "end": 2853.22, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2693, + "text": "all", + "start": 2853.22, + "end": 2853.42, + "words": [ + { + "word": " all", + "start": 2853.22, + "end": 2853.42, + "probability": 1.0 + } + ] + }, + { + "id": 2694, + "text": "it", + "start": 2853.42, + "end": 2853.58, + "words": [ + { + "word": " it", + "start": 2853.42, + "end": 2853.58, + "probability": 0.974609375 + } + ] + }, + { + "id": 2695, + "text": "seemed", + "start": 2853.58, + "end": 2853.82, + "words": [ + { + "word": " seemed", + "start": 2853.58, + "end": 2853.82, + "probability": 0.97607421875 + } + ] + }, + { + "id": 2696, + "text": "to", + "start": 2853.82, + "end": 2854.02, + "words": [ + { + "word": " to", + "start": 2853.82, + "end": 2854.02, + "probability": 0.9755859375 + } + ] + }, + { + "id": 2697, + "text": "lag", + "start": 2854.02, + "end": 2854.28, + "words": [ + { + "word": " lag", + "start": 2854.02, + "end": 2854.28, + "probability": 0.68017578125 + } + ] + }, + { + "id": 2698, + "text": "data", + "start": 2854.28, + "end": 2854.8, + "words": [ + { + "word": " data", + "start": 2854.28, + "end": 2854.8, + "probability": 0.9541015625 + } + ] + }, + { + "id": 2699, + "text": "transfer", + "start": 2854.8, + "end": 2855.5, + "words": [ + { + "word": " transfer", + "start": 2854.8, + "end": 2855.5, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2700, + "text": "to", + "start": 2855.5, + "end": 2856.32, + "words": [ + { + "word": " to", + "start": 2855.5, + "end": 2856.32, + "probability": 0.982421875 + } + ] + }, + { + "id": 2701, + "text": "the", + "start": 2856.32, + "end": 2856.48, + "words": [ + { + "word": " the", + "start": 2856.32, + "end": 2856.48, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2702, + "text": "five", + "start": 2856.48, + "end": 2856.72, + "words": [ + { + "word": " five", + "start": 2856.48, + "end": 2856.72, + "probability": 0.55224609375 + } + ] + }, + { + "id": 2703, + "text": "i", + "start": 2856.72, + "end": 2856.9, + "words": [ + { + "word": " i", + "start": 2856.72, + "end": 2856.9, + "probability": 0.31689453125 + } + ] + }, + { + "id": 2704, + "text": "devices", + "start": 2856.9, + "end": 2857.44, + "words": [ + { + "word": " devices", + "start": 2856.9, + "end": 2857.44, + "probability": 0.49853515625 + } + ] + }, + { + "id": 2705, + "text": "i", + "start": 2857.44, + "end": 2857.74, + "words": [ + { + "word": " i", + "start": 2857.44, + "end": 2857.74, + "probability": 0.97021484375 + } + ] + }, + { + "id": 2706, + "text": "have", + "start": 2857.74, + "end": 2857.96, + "words": [ + { + "word": " have", + "start": 2857.74, + "end": 2857.96, + "probability": 0.93798828125 + } + ] + }, + { + "id": 2707, + "text": "by", + "start": 2857.96, + "end": 2858.18, + "words": [ + { + "word": " by", + "start": 2857.96, + "end": 2858.18, + "probability": 0.9755859375 + } + ] + }, + { + "id": 2708, + "text": "a", + "start": 2858.18, + "end": 2858.32, + "words": [ + { + "word": " a", + "start": 2858.18, + "end": 2858.32, + "probability": 0.8486328125 + } + ] + }, + { + "id": 2709, + "text": "material", + "start": 2858.32, + "end": 2858.82, + "words": [ + { + "word": " material", + "start": 2858.32, + "end": 2858.82, + "probability": 1.0 + } + ] + }, + { + "id": 2710, + "text": "time", + "start": 2858.82, + "end": 2859.16, + "words": [ + { + "word": " time", + "start": 2858.82, + "end": 2859.16, + "probability": 0.96826171875 + } + ] + }, + { + "id": 2711, + "text": "lag", + "start": 2859.16, + "end": 2859.52, + "words": [ + { + "word": " lag", + "start": 2859.16, + "end": 2859.52, + "probability": 0.95263671875 + } + ] + }, + { + "id": 2712, + "text": "i'm", + "start": 2859.52, + "end": 2859.82, + "words": [ + { + "word": " i'm", + "start": 2859.52, + "end": 2859.82, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2713, + "text": "talking", + "start": 2859.82, + "end": 2859.96, + "words": [ + { + "word": " talking", + "start": 2859.82, + "end": 2859.96, + "probability": 1.0 + } + ] + }, + { + "id": 2714, + "text": "about", + "start": 2859.96, + "end": 2860.16, + "words": [ + { + "word": " about", + "start": 2859.96, + "end": 2860.16, + "probability": 1.0 + } + ] + }, + { + "id": 2715, + "text": "months", + "start": 2860.16, + "end": 2860.6, + "words": [ + { + "word": " months", + "start": 2860.16, + "end": 2860.6, + "probability": 0.99609375 + } + ] + }, + { + "id": 2716, + "text": "and", + "start": 2860.6, + "end": 2861.24, + "words": [ + { + "word": " and", + "start": 2860.6, + "end": 2861.24, + "probability": 1.0 + } + ] + }, + { + "id": 2717, + "text": "then", + "start": 2861.24, + "end": 2861.42, + "words": [ + { + "word": " then", + "start": 2861.24, + "end": 2861.42, + "probability": 0.97802734375 + } + ] + }, + { + "id": 2718, + "text": "was", + "start": 2861.42, + "end": 2861.58, + "words": [ + { + "word": " was", + "start": 2861.42, + "end": 2861.58, + "probability": 0.9814453125 + } + ] + }, + { + "id": 2719, + "text": "always", + "start": 2861.58, + "end": 2861.88, + "words": [ + { + "word": " always", + "start": 2861.58, + "end": 2861.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2720, + "text": "incomplete", + "start": 2861.88, + "end": 2862.16, + "words": [ + { + "word": " incomplete", + "start": 2861.88, + "end": 2862.16, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2721, + "text": "i", + "start": 2862.94, + "end": 2863.42, + "words": [ + { + "word": " i", + "start": 2862.94, + "end": 2863.42, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2722, + "text": "deleted", + "start": 2863.42, + "end": 2863.9, + "words": [ + { + "word": " deleted", + "start": 2863.42, + "end": 2863.9, + "probability": 1.0 + } + ] + }, + { + "id": 2723, + "text": "it", + "start": 2863.9, + "end": 2864.12, + "words": [ + { + "word": " it", + "start": 2863.9, + "end": 2864.12, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2724, + "text": "all", + "start": 2864.12, + "end": 2864.38, + "words": [ + { + "word": " all", + "start": 2864.12, + "end": 2864.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2725, + "text": "and", + "start": 2864.38, + "end": 2864.72, + "words": [ + { + "word": " and", + "start": 2864.38, + "end": 2864.72, + "probability": 1.0 + } + ] + }, + { + "id": 2726, + "text": "restarted", + "start": 2864.72, + "end": 2865.4, + "words": [ + { + "word": " restarted", + "start": 2864.72, + "end": 2865.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2727, + "text": "it", + "start": 2865.4, + "end": 2865.6, + "words": [ + { + "word": " it", + "start": 2865.4, + "end": 2865.6, + "probability": 1.0 + } + ] + }, + { + "id": 2728, + "text": "that", + "start": 2865.6, + "end": 2865.84, + "words": [ + { + "word": " that", + "start": 2865.6, + "end": 2865.84, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2729, + "text": "seemed", + "start": 2865.84, + "end": 2866.12, + "words": [ + { + "word": " seemed", + "start": 2865.84, + "end": 2866.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 2730, + "text": "to", + "start": 2866.12, + "end": 2866.32, + "words": [ + { + "word": " to", + "start": 2866.12, + "end": 2866.32, + "probability": 1.0 + } + ] + }, + { + "id": 2731, + "text": "bring", + "start": 2866.32, + "end": 2866.52, + "words": [ + { + "word": " bring", + "start": 2866.32, + "end": 2866.52, + "probability": 1.0 + } + ] + }, + { + "id": 2732, + "text": "it", + "start": 2866.52, + "end": 2866.64, + "words": [ + { + "word": " it", + "start": 2866.52, + "end": 2866.64, + "probability": 1.0 + } + ] + }, + { + "id": 2733, + "text": "back", + "start": 2866.64, + "end": 2866.84, + "words": [ + { + "word": " back", + "start": 2866.64, + "end": 2866.84, + "probability": 1.0 + } + ] + }, + { + "id": 2734, + "text": "to", + "start": 2866.84, + "end": 2867.02, + "words": [ + { + "word": " to", + "start": 2866.84, + "end": 2867.02, + "probability": 1.0 + } + ] + }, + { + "id": 2735, + "text": "a", + "start": 2867.02, + "end": 2867.14, + "words": [ + { + "word": " a", + "start": 2867.02, + "end": 2867.14, + "probability": 1.0 + } + ] + }, + { + "id": 2736, + "text": "fairly", + "start": 2867.14, + "end": 2867.46, + "words": [ + { + "word": " fairly", + "start": 2867.14, + "end": 2867.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2737, + "text": "good", + "start": 2867.46, + "end": 2867.66, + "words": [ + { + "word": " good", + "start": 2867.46, + "end": 2867.66, + "probability": 1.0 + } + ] + }, + { + "id": 2738, + "text": "level", + "start": 2867.66, + "end": 2868.0, + "words": [ + { + "word": " level", + "start": 2867.66, + "end": 2868.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2739, + "text": "but", + "start": 2868.0, + "end": 2868.78, + "words": [ + { + "word": " but", + "start": 2868.0, + "end": 2868.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2740, + "text": "i", + "start": 2868.78, + "end": 2868.94, + "words": [ + { + "word": " i", + "start": 2868.78, + "end": 2868.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2741, + "text": "see", + "start": 2868.94, + "end": 2869.14, + "words": [ + { + "word": " see", + "start": 2868.94, + "end": 2869.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2742, + "text": "it", + "start": 2869.14, + "end": 2869.38, + "words": [ + { + "word": " it", + "start": 2869.14, + "end": 2869.38, + "probability": 1.0 + } + ] + }, + { + "id": 2743, + "text": "seems", + "start": 2869.38, + "end": 2869.66, + "words": [ + { + "word": " seems", + "start": 2869.38, + "end": 2869.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2744, + "text": "that", + "start": 2869.66, + "end": 2869.9, + "words": [ + { + "word": " that", + "start": 2869.66, + "end": 2869.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2745, + "text": "as", + "start": 2869.9, + "end": 2870.14, + "words": [ + { + "word": " as", + "start": 2869.9, + "end": 2870.14, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2746, + "text": "files", + "start": 2870.14, + "end": 2870.54, + "words": [ + { + "word": " files", + "start": 2870.14, + "end": 2870.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2747, + "text": "are", + "start": 2870.54, + "end": 2870.82, + "words": [ + { + "word": " are", + "start": 2870.54, + "end": 2870.82, + "probability": 1.0 + } + ] + }, + { + "id": 2748, + "text": "added", + "start": 2870.82, + "end": 2871.24, + "words": [ + { + "word": " added", + "start": 2870.82, + "end": 2871.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2749, + "text": "they", + "start": 2871.98, + "end": 2872.46, + "words": [ + { + "word": " they", + "start": 2871.98, + "end": 2872.46, + "probability": 0.5380859375 + } + ] + }, + { + "id": 2750, + "text": "don't", + "start": 2872.46, + "end": 2873.0, + "words": [ + { + "word": " don't", + "start": 2872.46, + "end": 2873.0, + "probability": 1.0 + } + ] + }, + { + "id": 2751, + "text": "really", + "start": 2873.0, + "end": 2873.18, + "words": [ + { + "word": " really", + "start": 2873.0, + "end": 2873.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2752, + "text": "go", + "start": 2873.18, + "end": 2873.44, + "words": [ + { + "word": " go", + "start": 2873.18, + "end": 2873.44, + "probability": 1.0 + } + ] + }, + { + "id": 2753, + "text": "to", + "start": 2873.44, + "end": 2873.56, + "words": [ + { + "word": " to", + "start": 2873.44, + "end": 2873.56, + "probability": 1.0 + } + ] + }, + { + "id": 2754, + "text": "the", + "start": 2873.56, + "end": 2873.72, + "words": [ + { + "word": " the", + "start": 2873.56, + "end": 2873.72, + "probability": 1.0 + } + ] + }, + { + "id": 2755, + "text": "cloud", + "start": 2873.72, + "end": 2873.96, + "words": [ + { + "word": " cloud", + "start": 2873.72, + "end": 2873.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2756, + "text": "aligned", + "start": 2879.94, + "end": 2880.4, + "words": [ + { + "word": " aligned", + "start": 2879.94, + "end": 2880.4, + "probability": 0.8310546875 + } + ] + }, + { + "id": 2757, + "text": "source", + "start": 2880.4, + "end": 2881.16, + "words": [ + { + "word": " source", + "start": 2880.4, + "end": 2881.16, + "probability": 0.198974609375 + } + ] + }, + { + "id": 2758, + "text": "files", + "start": 2881.16, + "end": 2881.8, + "words": [ + { + "word": " files", + "start": 2881.16, + "end": 2881.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2759, + "text": "on the", + "start": 2881.8, + "end": 2882.72, + "words": [ + { + "word": " on", + "start": 2881.8, + "end": 2882.36, + "probability": 0.99072265625 + }, + { + "word": " the", + "start": 2882.36, + "end": 2882.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2760, + "text": "computer", + "start": 2882.72, + "end": 2883.6, + "words": [ + { + "word": " computer", + "start": 2882.72, + "end": 2883.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2761, + "text": "with", + "start": 2883.6, + "end": 2884.86, + "words": [ + { + "word": " with", + "start": 2883.6, + "end": 2884.86, + "probability": 0.990234375 + } + ] + }, + { + "id": 2762, + "text": "those", + "start": 2884.86, + "end": 2885.12, + "words": [ + { + "word": " those", + "start": 2884.86, + "end": 2885.12, + "probability": 1.0 + } + ] + }, + { + "id": 2763, + "text": "that are", + "start": 2885.12, + "end": 2885.56, + "words": [ + { + "word": " that", + "start": 2885.12, + "end": 2885.42, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 2885.42, + "end": 2885.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2764, + "text": "transferred", + "start": 2885.56, + "end": 2886.36, + "words": [ + { + "word": " transferred", + "start": 2885.56, + "end": 2886.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2765, + "text": "over to", + "start": 2886.36, + "end": 2886.96, + "words": [ + { + "word": " over", + "start": 2886.36, + "end": 2886.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2886.76, + "end": 2886.96, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2766, + "text": "the", + "start": 2886.96, + "end": 2887.08, + "words": [ + { + "word": " the", + "start": 2886.96, + "end": 2887.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2767, + "text": "iCloud", + "start": 2887.08, + "end": 2887.52, + "words": [ + { + "word": " iCloud", + "start": 2887.08, + "end": 2887.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2768, + "text": "drive", + "start": 2887.52, + "end": 2887.82, + "words": [ + { + "word": " drive", + "start": 2887.52, + "end": 2887.82, + "probability": 0.65673828125 + } + ] + }, + { + "id": 2769, + "text": "file", + "start": 2887.82, + "end": 2888.28, + "words": [ + { + "word": " file", + "start": 2887.82, + "end": 2888.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2770, + "text": "and", + "start": 2888.28, + "end": 2889.22, + "words": [ + { + "word": " and", + "start": 2888.28, + "end": 2889.22, + "probability": 0.0693359375 + } + ] + }, + { + "id": 2771, + "text": "they", + "start": 2889.22, + "end": 2889.7, + "words": [ + { + "word": " they", + "start": 2889.22, + "end": 2889.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2772, + "text": "still", + "start": 2889.7, + "end": 2889.98, + "words": [ + { + "word": " still", + "start": 2889.7, + "end": 2889.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2773, + "text": "don't", + "start": 2889.98, + "end": 2890.26, + "words": [ + { + "word": " don't", + "start": 2889.98, + "end": 2890.26, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2774, + "text": "seem", + "start": 2890.26, + "end": 2890.58, + "words": [ + { + "word": " seem", + "start": 2890.26, + "end": 2890.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2775, + "text": "to", + "start": 2890.58, + "end": 2890.86, + "words": [ + { + "word": " to", + "start": 2890.58, + "end": 2890.86, + "probability": 1.0 + } + ] + }, + { + "id": 2776, + "text": "really", + "start": 2890.86, + "end": 2891.08, + "words": [ + { + "word": " really", + "start": 2890.86, + "end": 2891.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 2777, + "text": "work", + "start": 2891.08, + "end": 2891.44, + "words": [ + { + "word": " work", + "start": 2891.08, + "end": 2891.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2778, + "text": "efficiently", + "start": 2891.44, + "end": 2891.88, + "words": [ + { + "word": " efficiently", + "start": 2891.44, + "end": 2891.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2779, + "text": "most", + "start": 2891.88, + "end": 2892.8, + "words": [ + { + "word": " most", + "start": 2891.88, + "end": 2892.8, + "probability": 0.0211944580078125 + } + ] + }, + { + "id": 2780, + "text": "of", + "start": 2892.8, + "end": 2893.1, + "words": [ + { + "word": " of", + "start": 2892.8, + "end": 2893.1, + "probability": 0.994140625 + } + ] + }, + { + "id": 2781, + "text": "my", + "start": 2893.1, + "end": 2893.22, + "words": [ + { + "word": " my", + "start": 2893.1, + "end": 2893.22, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2782, + "text": "files", + "start": 2893.22, + "end": 2893.7, + "words": [ + { + "word": " files", + "start": 2893.22, + "end": 2893.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 2783, + "text": "are", + "start": 2893.7, + "end": 2894.66, + "words": [ + { + "word": " are", + "start": 2893.7, + "end": 2894.66, + "probability": 0.94873046875 + } + ] + }, + { + "id": 2784, + "text": "data", + "start": 2894.66, + "end": 2895.44, + "words": [ + { + "word": " data", + "start": 2894.66, + "end": 2895.44, + "probability": 0.9560546875 + } + ] + }, + { + "id": 2785, + "text": "files", + "start": 2895.44, + "end": 2895.82, + "words": [ + { + "word": " files", + "start": 2895.44, + "end": 2895.82, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2786, + "text": "about", + "start": 2895.82, + "end": 2896.36, + "words": [ + { + "word": " about", + "start": 2895.82, + "end": 2896.36, + "probability": 0.572265625 + } + ] + }, + { + "id": 2787, + "text": "50", + "start": 2896.36, + "end": 2896.7, + "words": [ + { + "word": " 50", + "start": 2896.36, + "end": 2896.7, + "probability": 0.92822265625 + } + ] + }, + { + "id": 2788, + "text": "gigabytes", + "start": 2896.7, + "end": 2897.08, + "words": [ + { + "word": " gigabytes", + "start": 2896.7, + "end": 2897.08, + "probability": 0.85791015625 + } + ] + }, + { + "id": 2789, + "text": "hundreds", + "start": 2898.0, + "end": 2898.72, + "words": [ + { + "word": " hundreds", + "start": 2898.0, + "end": 2898.72, + "probability": 0.8291015625 + } + ] + }, + { + "id": 2790, + "text": "of", + "start": 2898.72, + "end": 2899.12, + "words": [ + { + "word": " of", + "start": 2898.72, + "end": 2899.12, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2791, + "text": "thousands", + "start": 2899.12, + "end": 2899.48, + "words": [ + { + "word": " thousands", + "start": 2899.12, + "end": 2899.48, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2792, + "text": "of", + "start": 2899.48, + "end": 2899.72, + "words": [ + { + "word": " of", + "start": 2899.48, + "end": 2899.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2793, + "text": "files", + "start": 2899.72, + "end": 2899.98, + "words": [ + { + "word": " files", + "start": 2899.72, + "end": 2899.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2794, + "text": "overall", + "start": 2899.98, + "end": 2900.42, + "words": [ + { + "word": " overall", + "start": 2899.98, + "end": 2900.42, + "probability": 0.91748046875 + } + ] + }, + { + "id": 2795, + "text": "maybe", + "start": 2900.42, + "end": 2901.08, + "words": [ + { + "word": " maybe", + "start": 2900.42, + "end": 2901.08, + "probability": 0.80078125 + } + ] + }, + { + "id": 2796, + "text": "about", + "start": 2901.08, + "end": 2901.4, + "words": [ + { + "word": " about", + "start": 2901.08, + "end": 2901.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2797, + "text": "50", + "start": 2901.4, + "end": 2901.76, + "words": [ + { + "word": " 50", + "start": 2901.4, + "end": 2901.76, + "probability": 0.9833984375 + } + ] + }, + { + "id": 2798, + "text": "that", + "start": 2901.76, + "end": 2901.98, + "words": [ + { + "word": " that", + "start": 2901.76, + "end": 2901.98, + "probability": 0.93359375 + } + ] + }, + { + "id": 2799, + "text": "call", + "start": 2901.98, + "end": 2902.2, + "words": [ + { + "word": " call", + "start": 2901.98, + "end": 2902.2, + "probability": 0.73046875 + } + ] + }, + { + "id": 2800, + "text": "us", + "start": 2902.2, + "end": 2902.48, + "words": [ + { + "word": " us", + "start": 2902.2, + "end": 2902.48, + "probability": 0.9921875 + } + ] + }, + { + "id": 2801, + "text": "50,000", + "start": 2903.5400000000004, + "end": 2904.78, + "words": [ + { + "word": " 50", + "start": 2903.5400000000004, + "end": 2904.26, + "probability": 0.9189453125 + }, + { + "word": ",000", + "start": 2904.26, + "end": 2904.78, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2802, + "text": "that", + "start": 2904.78, + "end": 2904.94, + "words": [ + { + "word": " that", + "start": 2904.78, + "end": 2904.94, + "probability": 0.974609375 + } + ] + }, + { + "id": 2803, + "text": "call", + "start": 2904.94, + "end": 2905.16, + "words": [ + { + "word": " call", + "start": 2904.94, + "end": 2905.16, + "probability": 0.97607421875 + } + ] + }, + { + "id": 2804, + "text": "us", + "start": 2905.16, + "end": 2905.42, + "words": [ + { + "word": " us", + "start": 2905.16, + "end": 2905.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2805, + "text": "using", + "start": 2905.42, + "end": 2905.78, + "words": [ + { + "word": " using", + "start": 2905.42, + "end": 2905.78, + "probability": 0.99072265625 + } + ] + }, + { + "id": 2806, + "text": "the", + "start": 2905.78, + "end": 2905.98, + "words": [ + { + "word": " the", + "start": 2905.78, + "end": 2905.98, + "probability": 0.9921875 + } + ] + }, + { + "id": 2807, + "text": "Fujitsu", + "start": 2905.98, + "end": 2906.42, + "words": [ + { + "word": " Fujitsu", + "start": 2905.98, + "end": 2906.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2808, + "text": "scanners", + "start": 2906.42, + "end": 2907.14, + "words": [ + { + "word": " scanners", + "start": 2906.42, + "end": 2907.14, + "probability": 0.86279296875 + } + ] + }, + { + "id": 2809, + "text": "that", + "start": 2907.14, + "end": 2907.44, + "words": [ + { + "word": " that", + "start": 2907.14, + "end": 2907.44, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2810, + "text": "i've", + "start": 2907.44, + "end": 2907.6, + "words": [ + { + "word": " i've", + "start": 2907.44, + "end": 2907.6, + "probability": 0.48046875 + } + ] + }, + { + "id": 2811, + "text": "had", + "start": 2907.6, + "end": 2907.66, + "words": [ + { + "word": " had", + "start": 2907.6, + "end": 2907.66, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2812, + "text": "for", + "start": 2907.66, + "end": 2907.82, + "words": [ + { + "word": " for", + "start": 2907.66, + "end": 2907.82, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2813, + "text": "about", + "start": 2907.82, + "end": 2907.98, + "words": [ + { + "word": " about", + "start": 2907.82, + "end": 2907.98, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2814, + "text": "10", + "start": 2907.98, + "end": 2908.2, + "words": [ + { + "word": " 10", + "start": 2907.98, + "end": 2908.2, + "probability": 0.9501953125 + } + ] + }, + { + "id": 2815, + "text": "years", + "start": 2908.2, + "end": 2908.48, + "words": [ + { + "word": " years", + "start": 2908.2, + "end": 2908.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2816, + "text": "and", + "start": 2908.48, + "end": 2909.12, + "words": [ + { + "word": " and", + "start": 2908.48, + "end": 2909.12, + "probability": 0.0139007568359375 + } + ] + }, + { + "id": 2817, + "text": "i", + "start": 2909.12, + "end": 2909.92, + "words": [ + { + "word": " i", + "start": 2909.12, + "end": 2909.92, + "probability": 0.13671875 + } + ] + }, + { + "id": 2818, + "text": "!", + "start": 2909.92, + "end": 2910.34, + "words": [ + { + "word": "!", + "start": 2909.92, + "end": 2910.34, + "probability": 0.0 + } + ] + }, + { + "id": 2819, + "text": "is", + "start": 2910.34, + "end": 2910.88, + "words": [ + { + "word": " is", + "start": 2910.34, + "end": 2910.88, + "probability": 0.0113372802734375 + } + ] + }, + { + "id": 2820, + "text": "it", + "start": 2911.44, + "end": 2911.46, + "words": [ + { + "word": " it", + "start": 2911.14, + "end": 2911.46, + "probability": 0.890625 + } + ] + }, + { + "id": 2821, + "text": "necessary", + "start": 2911.46, + "end": 2912.06, + "words": [ + { + "word": " necessary", + "start": 2911.46, + "end": 2912.06, + "probability": 0.96875 + } + ] + }, + { + "id": 2822, + "text": "i", + "start": 2912.06, + "end": 2912.5, + "words": [ + { + "word": " i", + "start": 2912.06, + "end": 2912.5, + "probability": 0.1192626953125 + } + ] + }, + { + "id": 2823, + "text": "guess", + "start": 2912.5, + "end": 2912.76, + "words": [ + { + "word": " guess", + "start": 2912.5, + "end": 2912.76, + "probability": 0.919921875 + } + ] + }, + { + "id": 2824, + "text": "the", + "start": 2912.76, + "end": 2912.96, + "words": [ + { + "word": " the", + "start": 2912.76, + "end": 2912.96, + "probability": 0.93212890625 + } + ] + }, + { + "id": 2825, + "text": "question", + "start": 2912.96, + "end": 2913.32, + "words": [ + { + "word": " question", + "start": 2912.96, + "end": 2913.32, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2826, + "text": "is", + "start": 2913.32, + "end": 2913.54, + "words": [ + { + "word": " is", + "start": 2913.32, + "end": 2913.54, + "probability": 0.84375 + } + ] + }, + { + "id": 2827, + "text": "is", + "start": 2913.54, + "end": 2913.7, + "words": [ + { + "word": " is", + "start": 2913.54, + "end": 2913.7, + "probability": 0.79443359375 + } + ] + }, + { + "id": 2828, + "text": "it", + "start": 2913.7, + "end": 2913.86, + "words": [ + { + "word": " it", + "start": 2913.7, + "end": 2913.86, + "probability": 0.93017578125 + } + ] + }, + { + "id": 2829, + "text": "necessary", + "start": 2913.86, + "end": 2914.26, + "words": [ + { + "word": " necessary", + "start": 2913.86, + "end": 2914.26, + "probability": 0.984375 + } + ] + }, + { + "id": 2830, + "text": "to", + "start": 2914.26, + "end": 2915.3, + "words": [ + { + "word": " to", + "start": 2914.26, + "end": 2915.3, + "probability": 0.880859375 + } + ] + }, + { + "id": 2831, + "text": "flush", + "start": 2915.3, + "end": 2915.62, + "words": [ + { + "word": " flush", + "start": 2915.3, + "end": 2915.62, + "probability": 0.955078125 + } + ] + }, + { + "id": 2832, + "text": "out", + "start": 2915.62, + "end": 2916.06, + "words": [ + { + "word": " out", + "start": 2915.62, + "end": 2916.06, + "probability": 0.9443359375 + } + ] + }, + { + "id": 2833, + "text": "or", + "start": 2916.06, + "end": 2916.32, + "words": [ + { + "word": " or", + "start": 2916.06, + "end": 2916.32, + "probability": 0.64892578125 + } + ] + }, + { + "id": 2834, + "text": "delete", + "start": 2916.32, + "end": 2916.62, + "words": [ + { + "word": " delete", + "start": 2916.32, + "end": 2916.62, + "probability": 0.7666015625 + } + ] + }, + { + "id": 2835, + "text": "that", + "start": 2916.62, + "end": 2917.54, + "words": [ + { + "word": " that", + "start": 2916.62, + "end": 2917.54, + "probability": 0.9677734375 + } + ] + }, + { + "id": 2836, + "text": "process", + "start": 2917.54, + "end": 2918.04, + "words": [ + { + "word": " process", + "start": 2917.54, + "end": 2918.04, + "probability": 0.97998046875 + } + ] + }, + { + "id": 2837, + "text": "entirely", + "start": 2918.04, + "end": 2918.46, + "words": [ + { + "word": " entirely", + "start": 2918.04, + "end": 2918.46, + "probability": 0.86669921875 + } + ] + }, + { + "id": 2838, + "text": "go", + "start": 2918.46, + "end": 2919.12, + "words": [ + { + "word": " go", + "start": 2918.46, + "end": 2919.12, + "probability": 0.72509765625 + } + ] + }, + { + "id": 2839, + "text": "to", + "start": 2919.12, + "end": 2919.26, + "words": [ + { + "word": " to", + "start": 2919.12, + "end": 2919.26, + "probability": 0.96337890625 + } + ] + }, + { + "id": 2840, + "text": "zero", + "start": 2919.26, + "end": 2919.66, + "words": [ + { + "word": " zero", + "start": 2919.26, + "end": 2919.66, + "probability": 0.8369140625 + } + ] + }, + { + "id": 2841, + "text": "on", + "start": 2919.66, + "end": 2920.52, + "words": [ + { + "word": " on", + "start": 2919.66, + "end": 2920.52, + "probability": 0.91357421875 + } + ] + }, + { + "id": 2842, + "text": "both", + "start": 2920.52, + "end": 2920.8, + "words": [ + { + "word": " both", + "start": 2920.52, + "end": 2920.8, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2843, + "text": "sides", + "start": 2920.8, + "end": 2921.34, + "words": [ + { + "word": " sides", + "start": 2920.8, + "end": 2921.34, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2844, + "text": "and", + "start": 2921.34, + "end": 2921.86, + "words": [ + { + "word": " and", + "start": 2921.34, + "end": 2921.86, + "probability": 0.9599609375 + } + ] + }, + { + "id": 2845, + "text": "then", + "start": 2921.86, + "end": 2922.12, + "words": [ + { + "word": " then", + "start": 2921.86, + "end": 2922.12, + "probability": 0.92431640625 + } + ] + }, + { + "id": 2846, + "text": "reload", + "start": 2922.12, + "end": 2923.26, + "words": [ + { + "word": " reload", + "start": 2922.12, + "end": 2923.26, + "probability": 0.8974609375 + } + ] + }, + { + "id": 2847, + "text": "as", + "start": 2923.26, + "end": 2923.62, + "words": [ + { + "word": " as", + "start": 2923.26, + "end": 2923.62, + "probability": 0.892578125 + } + ] + }, + { + "id": 2848, + "text": "it", + "start": 2923.62, + "end": 2923.84, + "words": [ + { + "word": " it", + "start": 2923.62, + "end": 2923.84, + "probability": 0.58984375 + } + ] + }, + { + "id": 2849, + "text": "can", + "start": 2923.84, + "end": 2924.02, + "words": [ + { + "word": " can", + "start": 2923.84, + "end": 2924.02, + "probability": 0.9619140625 + } + ] + }, + { + "id": 2850, + "text": "reload", + "start": 2924.02, + "end": 2924.36, + "words": [ + { + "word": " reload", + "start": 2924.02, + "end": 2924.36, + "probability": 0.98291015625 + } + ] + }, + { + "id": 2851, + "text": "the", + "start": 2924.36, + "end": 2924.72, + "words": [ + { + "word": " the", + "start": 2924.36, + "end": 2924.72, + "probability": 0.97802734375 + } + ] + }, + { + "id": 2852, + "text": "drive", + "start": 2924.72, + "end": 2925.02, + "words": [ + { + "word": " drive", + "start": 2924.72, + "end": 2925.02, + "probability": 0.97900390625 + } + ] + }, + { + "id": 2853, + "text": "again", + "start": 2925.02, + "end": 2926.02, + "words": [ + { + "word": " again", + "start": 2925.02, + "end": 2926.02, + "probability": 0.58642578125 + } + ] + }, + { + "id": 2854, + "text": "through", + "start": 2926.02, + "end": 2926.62, + "words": [ + { + "word": " through", + "start": 2926.02, + "end": 2926.62, + "probability": 0.71337890625 + } + ] + }, + { + "id": 2855, + "text": "the", + "start": 2926.62, + "end": 2926.76, + "words": [ + { + "word": " the", + "start": 2926.62, + "end": 2926.76, + "probability": 0.630859375 + } + ] + }, + { + "id": 2856, + "text": "computer", + "start": 2926.76, + "end": 2927.14, + "words": [ + { + "word": " computer", + "start": 2926.76, + "end": 2927.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 2857, + "text": "generally", + "start": 2927.14, + "end": 2927.94, + "words": [ + { + "word": " generally", + "start": 2927.14, + "end": 2927.94, + "probability": 0.75146484375 + } + ] + }, + { + "id": 2858, + "text": "no", + "start": 2927.94, + "end": 2928.38, + "words": [ + { + "word": " no", + "start": 2927.94, + "end": 2928.38, + "probability": 0.9296875 + } + ] + }, + { + "id": 2859, + "text": "normally", + "start": 2928.38, + "end": 2929.14, + "words": [ + { + "word": " normally", + "start": 2928.38, + "end": 2929.14, + "probability": 0.96044921875 + } + ] + }, + { + "id": 2860, + "text": "that", + "start": 2929.14, + "end": 2929.42, + "words": [ + { + "word": " that", + "start": 2929.14, + "end": 2929.42, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2861, + "text": "would", + "start": 2929.42, + "end": 2929.58, + "words": [ + { + "word": " would", + "start": 2929.42, + "end": 2929.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2862, + "text": "not", + "start": 2929.58, + "end": 2929.78, + "words": [ + { + "word": " not", + "start": 2929.58, + "end": 2929.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2863, + "text": "be", + "start": 2929.78, + "end": 2929.94, + "words": [ + { + "word": " be", + "start": 2929.78, + "end": 2929.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2864, + "text": "any", + "start": 2929.94, + "end": 2930.12, + "words": [ + { + "word": " any", + "start": 2929.94, + "end": 2930.12, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2865, + "text": "type", + "start": 2930.12, + "end": 2930.36, + "words": [ + { + "word": " type", + "start": 2930.12, + "end": 2930.36, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2866, + "text": "of", + "start": 2930.36, + "end": 2930.54, + "words": [ + { + "word": " of", + "start": 2930.36, + "end": 2930.54, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2867, + "text": "requirement", + "start": 2930.54, + "end": 2930.88, + "words": [ + { + "word": " requirement", + "start": 2930.54, + "end": 2930.88, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2868, + "text": "there", + "start": 2930.88, + "end": 2931.18, + "words": [ + { + "word": " there", + "start": 2930.88, + "end": 2931.18, + "probability": 0.9736328125 + } + ] + }, + { + "id": 2869, + "text": "can", + "start": 2931.18, + "end": 2931.4, + "words": [ + { + "word": " can", + "start": 2931.18, + "end": 2931.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2870, + "text": "be", + "start": 2931.4, + "end": 2931.76, + "words": [ + { + "word": " be", + "start": 2931.4, + "end": 2931.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 2871, + "text": "instances", + "start": 2931.76, + "end": 2932.34, + "words": [ + { + "word": " instances", + "start": 2931.76, + "end": 2932.34, + "probability": 0.99267578125 + } + ] + }, + { + "id": 2872, + "text": "where", + "start": 2932.34, + "end": 2932.76, + "words": [ + { + "word": " where", + "start": 2932.34, + "end": 2932.76, + "probability": 0.98681640625 + } + ] + }, + { + "id": 2873, + "text": "everything", + "start": 2932.76, + "end": 2933.02, + "words": [ + { + "word": " everything", + "start": 2932.76, + "end": 2933.02, + "probability": 0.9814453125 + } + ] + }, + { + "id": 2874, + "text": "gets", + "start": 2933.02, + "end": 2933.24, + "words": [ + { + "word": " gets", + "start": 2933.02, + "end": 2933.24, + "probability": 0.005489349365234375 + } + ] + }, + { + "id": 2875, + "text": "clogged", + "start": 2933.24, + "end": 2934.08, + "words": [ + { + "word": " clogged", + "start": 2933.24, + "end": 2934.08, + "probability": 0.865234375 + } + ] + }, + { + "id": 2876, + "text": "up", + "start": 2934.08, + "end": 2934.24, + "words": [ + { + "word": " up", + "start": 2934.08, + "end": 2934.24, + "probability": 0.9921875 + } + ] + }, + { + "id": 2877, + "text": "and", + "start": 2934.24, + "end": 2934.52, + "words": [ + { + "word": " and", + "start": 2934.24, + "end": 2934.52, + "probability": 0.92822265625 + } + ] + }, + { + "id": 2878, + "text": "it", + "start": 2934.52, + "end": 2934.88, + "words": [ + { + "word": " it", + "start": 2934.52, + "end": 2934.88, + "probability": 0.91796875 + } + ] + }, + { + "id": 2879, + "text": "doesn't", + "start": 2934.88, + "end": 2935.18, + "words": [ + { + "word": " doesn't", + "start": 2934.88, + "end": 2935.18, + "probability": 0.578125 + } + ] + }, + { + "id": 2880, + "text": "know", + "start": 2935.18, + "end": 2935.7, + "words": [ + { + "word": " know", + "start": 2935.18, + "end": 2935.7, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2881, + "text": "how", + "start": 2935.7, + "end": 2935.92, + "words": [ + { + "word": " how", + "start": 2935.7, + "end": 2935.92, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2882, + "text": "to", + "start": 2935.92, + "end": 2936.12, + "words": [ + { + "word": " to", + "start": 2935.92, + "end": 2936.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 2883, + "text": "proceed", + "start": 2936.12, + "end": 2936.54, + "words": [ + { + "word": " proceed", + "start": 2936.12, + "end": 2936.54, + "probability": 0.97998046875 + } + ] + }, + { + "id": 2884, + "text": "and", + "start": 2936.54, + "end": 2937.34, + "words": [ + { + "word": " and", + "start": 2936.54, + "end": 2937.34, + "probability": 0.95068359375 + } + ] + }, + { + "id": 2885, + "text": "of", + "start": 2937.34, + "end": 2937.46, + "words": [ + { + "word": " of", + "start": 2937.34, + "end": 2937.46, + "probability": 0.95947265625 + } + ] + }, + { + "id": 2886, + "text": "course", + "start": 2937.46, + "end": 2937.6, + "words": [ + { + "word": " course", + "start": 2937.46, + "end": 2937.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2887, + "text": "because", + "start": 2937.6, + "end": 2937.9, + "words": [ + { + "word": " because", + "start": 2937.6, + "end": 2937.9, + "probability": 0.9755859375 + } + ] + }, + { + "id": 2888, + "text": "it's", + "start": 2937.9, + "end": 2938.18, + "words": [ + { + "word": " it's", + "start": 2937.9, + "end": 2938.18, + "probability": 0.88671875 + } + ] + }, + { + "id": 2889, + "text": "ample", + "start": 2938.18, + "end": 2938.36, + "words": [ + { + "word": " ample", + "start": 2938.18, + "end": 2938.36, + "probability": 0.2093505859375 + } + ] + }, + { + "id": 2890, + "text": "it", + "start": 2938.36, + "end": 2938.54, + "words": [ + { + "word": " it", + "start": 2938.36, + "end": 2938.54, + "probability": 0.71630859375 + } + ] + }, + { + "id": 2891, + "text": "doesn't", + "start": 2939.92, + "end": 2940.06, + "words": [ + { + "word": " doesn't", + "start": 2939.92, + "end": 2940.06, + "probability": 0.55908203125 + } + ] + }, + { + "id": 2892, + "text": "do", + "start": 2940.06, + "end": 2940.3, + "words": [ + { + "word": " do", + "start": 2940.06, + "end": 2940.3, + "probability": 0.98388671875 + } + ] + }, + { + "id": 2893, + "text": "it", + "start": 2940.3, + "end": 2940.54, + "words": [ + { + "word": " it", + "start": 2940.3, + "end": 2940.54, + "probability": 0.994140625 + } + ] + }, + { + "id": 2894, + "text": "now", + "start": 2941.2400000000002, + "end": 2941.84, + "words": [ + { + "word": " now", + "start": 2941.2400000000002, + "end": 2941.84, + "probability": 0.034576416015625 + } + ] + }, + { + "id": 2895, + "text": "the", + "start": 2942.58, + "end": 2942.66, + "words": [ + { + "word": " the", + "start": 2942.3599999999997, + "end": 2942.66, + "probability": 0.90673828125 + } + ] + }, + { + "id": 2896, + "text": "other", + "start": 2942.66, + "end": 2942.9, + "words": [ + { + "word": " other", + "start": 2942.66, + "end": 2942.9, + "probability": 0.97412109375 + } + ] + }, + { + "id": 2897, + "text": "so", + "start": 2942.9, + "end": 2943.94, + "words": [ + { + "word": " so", + "start": 2942.9, + "end": 2943.94, + "probability": 0.59423828125 + } + ] + }, + { + "id": 2898, + "text": "are", + "start": 2943.94, + "end": 2944.28, + "words": [ + { + "word": " are", + "start": 2943.94, + "end": 2944.28, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2899, + "text": "you", + "start": 2944.28, + "end": 2944.48, + "words": [ + { + "word": " you", + "start": 2944.28, + "end": 2944.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2900, + "text": "seeing", + "start": 2944.48, + "end": 2944.82, + "words": [ + { + "word": " seeing", + "start": 2944.48, + "end": 2944.82, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2901, + "text": "the", + "start": 2944.82, + "end": 2945.04, + "words": [ + { + "word": " the", + "start": 2944.82, + "end": 2945.04, + "probability": 0.6162109375 + } + ] + }, + { + "id": 2902, + "text": "files", + "start": 2945.04, + "end": 2945.34, + "words": [ + { + "word": " files", + "start": 2945.04, + "end": 2945.34, + "probability": 0.86865234375 + } + ] + }, + { + "id": 2903, + "text": "that", + "start": 2945.34, + "end": 2945.72, + "words": [ + { + "word": " that", + "start": 2945.34, + "end": 2945.72, + "probability": 0.8486328125 + } + ] + }, + { + "id": 2904, + "text": "are", + "start": 2945.72, + "end": 2945.78, + "words": [ + { + "word": " are", + "start": 2945.72, + "end": 2945.78, + "probability": 0.986328125 + } + ] + }, + { + "id": 2905, + "text": "on", + "start": 2945.78, + "end": 2945.88, + "words": [ + { + "word": " on", + "start": 2945.78, + "end": 2945.88, + "probability": 0.98779296875 + } + ] + }, + { + "id": 2906, + "text": "your", + "start": 2945.88, + "end": 2946.04, + "words": [ + { + "word": " your", + "start": 2945.88, + "end": 2946.04, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2907, + "text": "pc", + "start": 2946.04, + "end": 2946.44, + "words": [ + { + "word": " pc", + "start": 2946.04, + "end": 2946.44, + "probability": 0.3837890625 + } + ] + }, + { + "id": 2908, + "text": "are", + "start": 2946.44, + "end": 2947.64, + "words": [ + { + "word": " are", + "start": 2946.44, + "end": 2947.64, + "probability": 0.5146484375 + } + ] + }, + { + "id": 2909, + "text": "those", + "start": 2947.64, + "end": 2948.52, + "words": [ + { + "word": " those", + "start": 2947.64, + "end": 2948.52, + "probability": 0.97705078125 + } + ] + }, + { + "id": 2910, + "text": "showing", + "start": 2948.52, + "end": 2948.98, + "words": [ + { + "word": " showing", + "start": 2948.52, + "end": 2948.98, + "probability": 0.99609375 + } + ] + }, + { + "id": 2911, + "text": "up", + "start": 2948.98, + "end": 2949.32, + "words": [ + { + "word": " up", + "start": 2948.98, + "end": 2949.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2912, + "text": "in", + "start": 2949.32, + "end": 2949.4, + "words": [ + { + "word": " in", + "start": 2949.32, + "end": 2949.4, + "probability": 0.9697265625 + } + ] + }, + { + "id": 2913, + "text": "icloud", + "start": 2949.4, + "end": 2949.76, + "words": [ + { + "word": " icloud", + "start": 2949.4, + "end": 2949.76, + "probability": 0.72314453125 + } + ] + }, + { + "id": 2914, + "text": "well", + "start": 2950.7200000000003, + "end": 2951.32, + "words": [ + { + "word": " well", + "start": 2950.7200000000003, + "end": 2951.32, + "probability": 0.83740234375 + } + ] + }, + { + "id": 2915, + "text": "that's", + "start": 2951.32, + "end": 2951.98, + "words": [ + { + "word": " that's", + "start": 2951.32, + "end": 2951.98, + "probability": 0.943359375 + } + ] + }, + { + "id": 2916, + "text": "the", + "start": 2951.98, + "end": 2952.1, + "words": [ + { + "word": " the", + "start": 2951.98, + "end": 2952.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 2917, + "text": "question", + "start": 2952.1, + "end": 2952.4, + "words": [ + { + "word": " question", + "start": 2952.1, + "end": 2952.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2918, + "text": "some", + "start": 2952.4, + "end": 2952.78, + "words": [ + { + "word": " some", + "start": 2952.4, + "end": 2952.78, + "probability": 0.9638671875 + } + ] + }, + { + "id": 2919, + "text": "of", + "start": 2952.78, + "end": 2952.96, + "words": [ + { + "word": " of", + "start": 2952.78, + "end": 2952.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2920, + "text": "them", + "start": 2952.96, + "end": 2953.1, + "words": [ + { + "word": " them", + "start": 2952.96, + "end": 2953.1, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2921, + "text": "are", + "start": 2953.1, + "end": 2953.32, + "words": [ + { + "word": " are", + "start": 2953.1, + "end": 2953.32, + "probability": 0.99609375 + } + ] + }, + { + "id": 2922, + "text": "some", + "start": 2953.32, + "end": 2953.6, + "words": [ + { + "word": " some", + "start": 2953.32, + "end": 2953.6, + "probability": 0.939453125 + } + ] + }, + { + "id": 2923, + "text": "of", + "start": 2953.6, + "end": 2953.78, + "words": [ + { + "word": " of", + "start": 2953.6, + "end": 2953.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2924, + "text": "them", + "start": 2953.78, + "end": 2953.92, + "words": [ + { + "word": " them", + "start": 2953.78, + "end": 2953.92, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2925, + "text": "aren't", + "start": 2953.92, + "end": 2954.36, + "words": [ + { + "word": " aren't", + "start": 2953.92, + "end": 2954.36, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2926, + "text": "so", + "start": 2954.36, + "end": 2954.58, + "words": [ + { + "word": " so", + "start": 2954.36, + "end": 2954.58, + "probability": 0.9501953125 + } + ] + }, + { + "id": 2927, + "text": "if", + "start": 2954.58, + "end": 2954.8, + "words": [ + { + "word": " if", + "start": 2954.58, + "end": 2954.8, + "probability": 0.947265625 + } + ] + }, + { + "id": 2928, + "text": "i", + "start": 2954.8, + "end": 2955.04, + "words": [ + { + "word": " i", + "start": 2954.8, + "end": 2955.04, + "probability": 0.6943359375 + } + ] + }, + { + "id": 2929, + "text": "would", + "start": 2955.04, + "end": 2955.16, + "words": [ + { + "word": " would", + "start": 2955.04, + "end": 2955.16, + "probability": 0.262451171875 + } + ] + }, + { + "id": 2930, + "text": "for", + "start": 2955.16, + "end": 2955.42, + "words": [ + { + "word": " for", + "start": 2955.16, + "end": 2955.42, + "probability": 0.84716796875 + } + ] + }, + { + "id": 2931, + "text": "example", + "start": 2955.42, + "end": 2956.0, + "words": [ + { + "word": " example", + "start": 2955.42, + "end": 2956.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2932, + "text": "i", + "start": 2956.0, + "end": 2956.72, + "words": [ + { + "word": " i", + "start": 2956.0, + "end": 2956.72, + "probability": 0.95068359375 + } + ] + }, + { + "id": 2933, + "text": "have", + "start": 2956.72, + "end": 2957.26, + "words": [ + { + "word": " have", + "start": 2956.72, + "end": 2957.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2934, + "text": "a", + "start": 2957.26, + "end": 2957.4, + "words": [ + { + "word": " a", + "start": 2957.26, + "end": 2957.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2935, + "text": "program", + "start": 2957.4, + "end": 2957.68, + "words": [ + { + "word": " program", + "start": 2957.4, + "end": 2957.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 2936, + "text": "to", + "start": 2957.68, + "end": 2958.0, + "words": [ + { + "word": " to", + "start": 2957.68, + "end": 2958.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2937, + "text": "take", + "start": 2958.0, + "end": 2958.22, + "words": [ + { + "word": " take", + "start": 2958.0, + "end": 2958.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2938, + "text": "some", + "start": 2958.22, + "end": 2958.38, + "words": [ + { + "word": " some", + "start": 2958.22, + "end": 2958.38, + "probability": 0.994140625 + } + ] + }, + { + "id": 2939, + "text": "old", + "start": 2958.38, + "end": 2958.64, + "words": [ + { + "word": " old", + "start": 2958.38, + "end": 2958.64, + "probability": 0.99609375 + } + ] + }, + { + "id": 2940, + "text": "legacy", + "start": 2958.64, + "end": 2958.98, + "words": [ + { + "word": " legacy", + "start": 2958.64, + "end": 2958.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2941, + "text": "files", + "start": 2958.98, + "end": 2959.36, + "words": [ + { + "word": " files", + "start": 2958.98, + "end": 2959.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2942, + "text": "created", + "start": 2959.36, + "end": 2959.8, + "words": [ + { + "word": " created", + "start": 2959.36, + "end": 2959.8, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2943, + "text": "with", + "start": 2959.8, + "end": 2960.04, + "words": [ + { + "word": " with", + "start": 2959.8, + "end": 2960.04, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2944, + "text": "pfs", + "start": 2960.04, + "end": 2960.42, + "words": [ + { + "word": " pfs", + "start": 2960.04, + "end": 2960.42, + "probability": 0.8935546875 + } + ] + }, + { + "id": 2945, + "text": "professional", + "start": 2960.42, + "end": 2960.76, + "words": [ + { + "word": " professional", + "start": 2960.42, + "end": 2960.76, + "probability": 0.9921875 + } + ] + }, + { + "id": 2946, + "text": "right", + "start": 2960.76, + "end": 2961.36, + "words": [ + { + "word": " right", + "start": 2960.76, + "end": 2961.36, + "probability": 0.6376953125 + } + ] + }, + { + "id": 2947, + "text": "convert", + "start": 2961.36, + "end": 2961.7, + "words": [ + { + "word": " convert", + "start": 2961.36, + "end": 2961.7, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2948, + "text": "them", + "start": 2961.7, + "end": 2961.96, + "words": [ + { + "word": " them", + "start": 2961.7, + "end": 2961.96, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2949, + "text": "to", + "start": 2961.96, + "end": 2962.08, + "words": [ + { + "word": " to", + "start": 2961.96, + "end": 2962.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2950, + "text": "pdf", + "start": 2962.08, + "end": 2962.5, + "words": [ + { + "word": " pdf", + "start": 2962.08, + "end": 2962.5, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2951, + "text": "and", + "start": 2962.5, + "end": 2963.36, + "words": [ + { + "word": " and", + "start": 2962.5, + "end": 2963.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2952, + "text": "word", + "start": 2963.36, + "end": 2963.66, + "words": [ + { + "word": " word", + "start": 2963.36, + "end": 2963.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2953, + "text": "files", + "start": 2963.66, + "end": 2964.12, + "words": [ + { + "word": " files", + "start": 2963.66, + "end": 2964.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2954, + "text": "so", + "start": 2965.14, + "end": 2965.74, + "words": [ + { + "word": " so", + "start": 2965.14, + "end": 2965.74, + "probability": 0.9208984375 + } + ] + }, + { + "id": 2955, + "text": "i've", + "start": 2966.26, + "end": 2966.64, + "words": [ + { + "word": " i've", + "start": 2966.26, + "end": 2966.64, + "probability": 0.9873046875 + } + ] + }, + { + "id": 2956, + "text": "used", + "start": 2966.64, + "end": 2966.86, + "words": [ + { + "word": " used", + "start": 2966.64, + "end": 2966.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2957, + "text": "that", + "start": 2966.86, + "end": 2967.2, + "words": [ + { + "word": " that", + "start": 2966.86, + "end": 2967.2, + "probability": 1.0 + } + ] + }, + { + "id": 2958, + "text": "as", + "start": 2967.2, + "end": 2968.06, + "words": [ + { + "word": " as", + "start": 2967.2, + "end": 2968.06, + "probability": 0.99267578125 + } + ] + }, + { + "id": 2959, + "text": "an", + "start": 2968.06, + "end": 2968.3, + "words": [ + { + "word": " an", + "start": 2968.06, + "end": 2968.3, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2960, + "text": "aid", + "start": 2968.3, + "end": 2968.54, + "words": [ + { + "word": " aid", + "start": 2968.3, + "end": 2968.54, + "probability": 0.974609375 + } + ] + }, + { + "id": 2961, + "text": "to", + "start": 2968.54, + "end": 2968.74, + "words": [ + { + "word": " to", + "start": 2968.54, + "end": 2968.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2962, + "text": "try", + "start": 2968.74, + "end": 2968.82, + "words": [ + { + "word": " try", + "start": 2968.74, + "end": 2968.82, + "probability": 0.1658935546875 + } + ] + }, + { + "id": 2963, + "text": "to", + "start": 2968.82, + "end": 2969.12, + "words": [ + { + "word": " to", + "start": 2968.82, + "end": 2969.12, + "probability": 0.99609375 + } + ] + }, + { + "id": 2964, + "text": "get", + "start": 2969.12, + "end": 2969.52, + "words": [ + { + "word": " get", + "start": 2969.12, + "end": 2969.52, + "probability": 0.865234375 + } + ] + }, + { + "id": 2965, + "text": "everything", + "start": 2969.52, + "end": 2970.2, + "words": [ + { + "word": " everything", + "start": 2969.52, + "end": 2970.2, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2966, + "text": "into", + "start": 2970.2, + "end": 2970.48, + "words": [ + { + "word": " into", + "start": 2970.2, + "end": 2970.48, + "probability": 0.97509765625 + } + ] + }, + { + "id": 2967, + "text": "one", + "start": 2970.48, + "end": 2970.7, + "words": [ + { + "word": " one", + "start": 2970.48, + "end": 2970.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 2968, + "text": "place", + "start": 2970.7, + "end": 2971.12, + "words": [ + { + "word": " place", + "start": 2970.7, + "end": 2971.12, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2969, + "text": "so", + "start": 2971.12, + "end": 2971.26, + "words": [ + { + "word": " so", + "start": 2971.12, + "end": 2971.26, + "probability": 0.8837890625 + } + ] + }, + { + "id": 2970, + "text": "i", + "start": 2971.26, + "end": 2971.38, + "words": [ + { + "word": " i", + "start": 2971.26, + "end": 2971.38, + "probability": 0.06329345703125 + } + ] + }, + { + "id": 2971, + "text": "can", + "start": 2971.38, + "end": 2971.48, + "words": [ + { + "word": " can", + "start": 2971.38, + "end": 2971.48, + "probability": 0.428955078125 + } + ] + }, + { + "id": 2972, + "text": "see", + "start": 2971.48, + "end": 2971.8, + "words": [ + { + "word": " see", + "start": 2971.48, + "end": 2971.8, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2973, + "text": "from", + "start": 2971.8, + "end": 2972.26, + "words": [ + { + "word": " from", + "start": 2971.8, + "end": 2972.26, + "probability": 0.92236328125 + } + ] + }, + { + "id": 2974, + "text": "all", + "start": 2972.26, + "end": 2972.48, + "words": [ + { + "word": " all", + "start": 2972.26, + "end": 2972.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2975, + "text": "the", + "start": 2972.48, + "end": 2972.6, + "words": [ + { + "word": " the", + "start": 2972.48, + "end": 2972.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2976, + "text": "devices", + "start": 2972.6, + "end": 2972.96, + "words": [ + { + "word": " devices", + "start": 2972.6, + "end": 2972.96, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2977, + "text": "so", + "start": 2972.96, + "end": 2973.36, + "words": [ + { + "word": " so", + "start": 2972.96, + "end": 2973.36, + "probability": 0.9228515625 + } + ] + }, + { + "id": 2978, + "text": "let's", + "start": 2973.36, + "end": 2973.7, + "words": [ + { + "word": " let's", + "start": 2973.36, + "end": 2973.7, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2979, + "text": "say", + "start": 2973.7, + "end": 2973.88, + "words": [ + { + "word": " say", + "start": 2973.7, + "end": 2973.88, + "probability": 0.98388671875 + } + ] + }, + { + "id": 2980, + "text": "i", + "start": 2973.88, + "end": 2974.78, + "words": [ + { + "word": " i", + "start": 2973.88, + "end": 2974.78, + "probability": 0.96240234375 + } + ] + }, + { + "id": 2981, + "text": "would", + "start": 2974.78, + "end": 2974.98, + "words": [ + { + "word": " would", + "start": 2974.78, + "end": 2974.98, + "probability": 0.53271484375 + } + ] + }, + { + "id": 2982, + "text": "send", + "start": 2974.98, + "end": 2975.26, + "words": [ + { + "word": " send", + "start": 2974.98, + "end": 2975.26, + "probability": 0.77685546875 + } + ] + }, + { + "id": 2983, + "text": "over", + "start": 2975.26, + "end": 2975.6, + "words": [ + { + "word": " over", + "start": 2975.26, + "end": 2975.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2984, + "text": "some", + "start": 2975.6, + "end": 2975.9, + "words": [ + { + "word": " some", + "start": 2975.6, + "end": 2975.9, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2985, + "text": "word", + "start": 2975.9, + "end": 2976.24, + "words": [ + { + "word": " word", + "start": 2975.9, + "end": 2976.24, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2986, + "text": "files", + "start": 2976.24, + "end": 2976.64, + "words": [ + { + "word": " files", + "start": 2976.24, + "end": 2976.64, + "probability": 0.99267578125 + } + ] + }, + { + "id": 2987, + "text": "today", + "start": 2976.64, + "end": 2977.04, + "words": [ + { + "word": " today", + "start": 2976.64, + "end": 2977.04, + "probability": 0.96875 + } + ] + }, + { + "id": 2988, + "text": "that", + "start": 2977.04, + "end": 2977.36, + "words": [ + { + "word": " that", + "start": 2977.04, + "end": 2977.36, + "probability": 0.49365234375 + } + ] + }, + { + "id": 2989, + "text": "are", + "start": 2977.36, + "end": 2977.44, + "words": [ + { + "word": " are", + "start": 2977.36, + "end": 2977.44, + "probability": 0.94384765625 + } + ] + }, + { + "id": 2990, + "text": "part", + "start": 2977.44, + "end": 2977.76, + "words": [ + { + "word": " part", + "start": 2977.44, + "end": 2977.76, + "probability": 0.9931640625 + } + ] + }, + { + "id": 2991, + "text": "of", + "start": 2977.76, + "end": 2977.96, + "words": [ + { + "word": " of", + "start": 2977.76, + "end": 2977.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2992, + "text": "a", + "start": 2977.96, + "end": 2978.56, + "words": [ + { + "word": " a", + "start": 2977.96, + "end": 2978.56, + "probability": 0.99609375 + } + ] + }, + { + "id": 2993, + "text": "cluster", + "start": 2978.56, + "end": 2979.0, + "words": [ + { + "word": " cluster", + "start": 2978.56, + "end": 2979.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2994, + "text": "of", + "start": 2979.0, + "end": 2979.18, + "words": [ + { + "word": " of", + "start": 2979.0, + "end": 2979.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2995, + "text": "files", + "start": 2979.18, + "end": 2979.52, + "words": [ + { + "word": " files", + "start": 2979.18, + "end": 2979.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2996, + "text": "in", + "start": 2979.52, + "end": 2979.74, + "words": [ + { + "word": " in", + "start": 2979.52, + "end": 2979.74, + "probability": 0.6533203125 + } + ] + }, + { + "id": 2997, + "text": "a", + "start": 2979.74, + "end": 2979.82, + "words": [ + { + "word": " a", + "start": 2979.74, + "end": 2979.82, + "probability": 0.97900390625 + } + ] + }, + { + "id": 2998, + "text": "directory", + "start": 2979.82, + "end": 2980.28, + "words": [ + { + "word": " directory", + "start": 2979.82, + "end": 2980.28, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2999, + "text": "the", + "start": 2980.28, + "end": 2981.3, + "words": [ + { + "word": " the", + "start": 2980.28, + "end": 2981.3, + "probability": 0.52978515625 + } + ] + }, + { + "id": 3000, + "text": "answer", + "start": 2981.3, + "end": 2981.82, + "words": [ + { + "word": " answer", + "start": 2981.3, + "end": 2981.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3001, + "text": "is", + "start": 2981.82, + "end": 2982.1, + "words": [ + { + "word": " is", + "start": 2981.82, + "end": 2982.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3002, + "text": "no", + "start": 2982.1, + "end": 2982.3, + "words": [ + { + "word": " no", + "start": 2982.1, + "end": 2982.3, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3003, + "text": "they", + "start": 2982.3, + "end": 2982.52, + "words": [ + { + "word": " they", + "start": 2982.3, + "end": 2982.52, + "probability": 0.9892578125 + } + ] + }, + { + "id": 3004, + "text": "don't", + "start": 2982.52, + "end": 2982.82, + "words": [ + { + "word": " don't", + "start": 2982.52, + "end": 2982.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3005, + "text": "just", + "start": 2982.82, + "end": 2983.0, + "words": [ + { + "word": " just", + "start": 2982.82, + "end": 2983.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3006, + "text": "go", + "start": 2983.0, + "end": 2983.22, + "words": [ + { + "word": " go", + "start": 2983.0, + "end": 2983.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 3007, + "text": "over", + "start": 2983.22, + "end": 2983.52, + "words": [ + { + "word": " over", + "start": 2983.22, + "end": 2983.52, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3008, + "text": "they", + "start": 2983.52, + "end": 2984.04, + "words": [ + { + "word": " they", + "start": 2983.52, + "end": 2984.04, + "probability": 0.98681640625 + } + ] + }, + { + "id": 3009, + "text": "may", + "start": 2984.04, + "end": 2984.22, + "words": [ + { + "word": " may", + "start": 2984.04, + "end": 2984.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3010, + "text": "or", + "start": 2984.22, + "end": 2984.36, + "words": [ + { + "word": " or", + "start": 2984.22, + "end": 2984.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3011, + "text": "may", + "start": 2984.36, + "end": 2984.52, + "words": [ + { + "word": " may", + "start": 2984.36, + "end": 2984.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3012, + "text": "not", + "start": 2984.52, + "end": 2984.8, + "words": [ + { + "word": " not", + "start": 2984.52, + "end": 2984.8, + "probability": 1.0 + } + ] + }, + { + "id": 3013, + "text": "but", + "start": 2984.8, + "end": 2985.58, + "words": [ + { + "word": " but", + "start": 2984.8, + "end": 2985.58, + "probability": 0.962890625 + } + ] + }, + { + "id": 3014, + "text": "do", + "start": 2985.58, + "end": 2985.72, + "words": [ + { + "word": " do", + "start": 2985.58, + "end": 2985.72, + "probability": 0.9765625 + } + ] + }, + { + "id": 3015, + "text": "they", + "start": 2985.72, + "end": 2985.88, + "words": [ + { + "word": " they", + "start": 2985.72, + "end": 2985.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3016, + "text": "dependably", + "start": 2985.88, + "end": 2986.5, + "words": [ + { + "word": " dependably", + "start": 2985.88, + "end": 2986.5, + "probability": 0.984375 + } + ] + }, + { + "id": 3017, + "text": "go", + "start": 2986.5, + "end": 2986.76, + "words": [ + { + "word": " go", + "start": 2986.5, + "end": 2986.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3018, + "text": "over", + "start": 2986.76, + "end": 2987.08, + "words": [ + { + "word": " over", + "start": 2986.76, + "end": 2987.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3019, + "text": "rather", + "start": 2987.08, + "end": 2987.54, + "words": [ + { + "word": " rather", + "start": 2987.08, + "end": 2987.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3020, + "text": "uniformly", + "start": 2987.54, + "end": 2988.12, + "words": [ + { + "word": " uniformly", + "start": 2987.54, + "end": 2988.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3021, + "text": "given", + "start": 2988.12, + "end": 2989.1, + "words": [ + { + "word": " given", + "start": 2988.12, + "end": 2989.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3022, + "text": "a", + "start": 2989.1, + "end": 2989.32, + "words": [ + { + "word": " a", + "start": 2989.1, + "end": 2989.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 3023, + "text": "time", + "start": 2989.32, + "end": 2989.66, + "words": [ + { + "word": " time", + "start": 2989.32, + "end": 2989.66, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3024, + "text": "interval", + "start": 2989.66, + "end": 2989.96, + "words": [ + { + "word": " interval", + "start": 2989.66, + "end": 2989.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 3025, + "text": "no", + "start": 2989.96, + "end": 2990.66, + "words": [ + { + "word": " no", + "start": 2989.96, + "end": 2990.66, + "probability": 0.9892578125 + } + ] + }, + { + "id": 3026, + "text": "they", + "start": 2990.66, + "end": 2990.92, + "words": [ + { + "word": " they", + "start": 2990.66, + "end": 2990.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3027, + "text": "don't", + "start": 2990.92, + "end": 2991.34, + "words": [ + { + "word": " don't", + "start": 2990.92, + "end": 2991.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3028, + "text": "i'll", + "start": 2991.34, + "end": 2991.9, + "words": [ + { + "word": " i'll", + "start": 2991.34, + "end": 2991.9, + "probability": 0.990234375 + } + ] + }, + { + "id": 3029, + "text": "take", + "start": 2991.9, + "end": 2992.16, + "words": [ + { + "word": " take", + "start": 2991.9, + "end": 2992.16, + "probability": 1.0 + } + ] + }, + { + "id": 3030, + "text": "the", + "start": 2992.16, + "end": 2992.34, + "words": [ + { + "word": " the", + "start": 2992.16, + "end": 2992.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3031, + "text": "laptop", + "start": 2992.34, + "end": 2992.66, + "words": [ + { + "word": " laptop", + "start": 2992.34, + "end": 2992.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3032, + "text": "the", + "start": 2992.66, + "end": 2993.08, + "words": [ + { + "word": " the", + "start": 2992.66, + "end": 2993.08, + "probability": 0.9892578125 + } + ] + }, + { + "id": 3033, + "text": "source", + "start": 2993.08, + "end": 2993.36, + "words": [ + { + "word": " source", + "start": 2993.08, + "end": 2993.36, + "probability": 0.99609375 + } + ] + }, + { + "id": 3034, + "text": "laptop", + "start": 2993.36, + "end": 2993.58, + "words": [ + { + "word": " laptop", + "start": 2993.36, + "end": 2993.58, + "probability": 0.0010614395141601562 + } + ] + }, + { + "id": 3035, + "text": "strip", + "start": 2994.42, + "end": 2995.02, + "words": [ + { + "word": " strip", + "start": 2994.42, + "end": 2995.02, + "probability": 0.00926971435546875 + } + ] + }, + { + "id": 3036, + "text": "it", + "start": 2995.02, + "end": 2995.36, + "words": [ + { + "word": " it", + "start": 2995.02, + "end": 2995.36, + "probability": 0.94482421875 + } + ] + }, + { + "id": 3037, + "text": "of", + "start": 2995.36, + "end": 2995.48, + "words": [ + { + "word": " of", + "start": 2995.36, + "end": 2995.48, + "probability": 0.99169921875 + } + ] + }, + { + "id": 3038, + "text": "anything", + "start": 2995.48, + "end": 2995.7, + "words": [ + { + "word": " anything", + "start": 2995.48, + "end": 2995.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 3039, + "text": "that's", + "start": 2995.7, + "end": 2996.08, + "words": [ + { + "word": " that's", + "start": 2995.7, + "end": 2996.08, + "probability": 0.9912109375 + } + ] + }, + { + "id": 3040, + "text": "operating", + "start": 2996.08, + "end": 2996.52, + "words": [ + { + "word": " operating", + "start": 2996.08, + "end": 2996.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3041, + "text": "leave", + "start": 2996.52, + "end": 2997.32, + "words": [ + { + "word": " leave", + "start": 2996.52, + "end": 2997.32, + "probability": 0.64501953125 + } + ] + }, + { + "id": 3042, + "text": "it", + "start": 2997.32, + "end": 2997.54, + "words": [ + { + "word": " it", + "start": 2997.32, + "end": 2997.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3043, + "text": "on", + "start": 2997.54, + "end": 2997.7, + "words": [ + { + "word": " on", + "start": 2997.54, + "end": 2997.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3044, + "text": "overnight", + "start": 2997.7, + "end": 2998.12, + "words": [ + { + "word": " overnight", + "start": 2997.7, + "end": 2998.12, + "probability": 0.98193359375 + } + ] + }, + { + "id": 3045, + "text": "with", + "start": 2998.12, + "end": 2998.46, + "words": [ + { + "word": " with", + "start": 2998.12, + "end": 2998.46, + "probability": 0.9736328125 + } + ] + }, + { + "id": 3046, + "text": "nothing", + "start": 2998.46, + "end": 2998.68, + "words": [ + { + "word": " nothing", + "start": 2998.46, + "end": 2998.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3047, + "text": "else", + "start": 2998.68, + "end": 2998.96, + "words": [ + { + "word": " else", + "start": 2998.68, + "end": 2998.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3048, + "text": "going", + "start": 2998.96, + "end": 2999.18, + "words": [ + { + "word": " going", + "start": 2998.96, + "end": 2999.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3049, + "text": "on", + "start": 2999.18, + "end": 2999.5, + "words": [ + { + "word": " on", + "start": 2999.18, + "end": 2999.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3050, + "text": "but", + "start": 2999.5, + "end": 2999.78, + "words": [ + { + "word": " but", + "start": 2999.5, + "end": 2999.78, + "probability": 0.939453125 + } + ] + }, + { + "id": 3051, + "text": "hopefully", + "start": 2999.78, + "end": 3000.24, + "words": [ + { + "word": " hopefully", + "start": 2999.78, + "end": 3000.24, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3052, + "text": "the", + "start": 3000.24, + "end": 3000.82, + "words": [ + { + "word": " the", + "start": 3000.24, + "end": 3000.82, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3053, + "text": "iCloud", + "start": 3000.82, + "end": 3001.2, + "words": [ + { + "word": " iCloud", + "start": 3000.82, + "end": 3001.2, + "probability": 0.947265625 + } + ] + }, + { + "id": 3054, + "text": "transfer", + "start": 3001.2, + "end": 3001.8, + "words": [ + { + "word": " transfer", + "start": 3001.2, + "end": 3001.8, + "probability": 0.98388671875 + } + ] + }, + { + "id": 3055, + "text": "and", + "start": 3001.8, + "end": 3002.24, + "words": [ + { + "word": " and", + "start": 3001.8, + "end": 3002.24, + "probability": 0.9736328125 + } + ] + }, + { + "id": 3056, + "text": "it", + "start": 3002.24, + "end": 3002.52, + "words": [ + { + "word": " it", + "start": 3002.24, + "end": 3002.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3057, + "text": "still", + "start": 3002.52, + "end": 3002.74, + "words": [ + { + "word": " still", + "start": 3002.52, + "end": 3002.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3058, + "text": "doesn't", + "start": 3002.74, + "end": 3003.06, + "words": [ + { + "word": " doesn't", + "start": 3002.74, + "end": 3003.06, + "probability": 1.0 + } + ] + }, + { + "id": 3059, + "text": "seem", + "start": 3003.06, + "end": 3003.24, + "words": [ + { + "word": " seem", + "start": 3003.06, + "end": 3003.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 3060, + "text": "to", + "start": 3003.24, + "end": 3003.38, + "words": [ + { + "word": " to", + "start": 3003.24, + "end": 3003.38, + "probability": 0.998046875 + } + ] + }, + { + "id": 3061, + "text": "help", + "start": 3003.38, + "end": 3003.62, + "words": [ + { + "word": " help", + "start": 3003.38, + "end": 3003.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3062, + "text": "interesting", + "start": 3003.62, + "end": 3004.52, + "words": [ + { + "word": " interesting", + "start": 3003.62, + "end": 3004.52, + "probability": 0.34130859375 + } + ] + }, + { + "id": 3063, + "text": "i", + "start": 3004.52, + "end": 3005.72, + "words": [ + { + "word": " i", + "start": 3004.52, + "end": 3005.72, + "probability": 0.0222015380859375 + } + ] + }, + { + "id": 3064, + "text": "would", + "start": 3006.56, + "end": 3007.16, + "words": [ + { + "word": " would", + "start": 3006.56, + "end": 3007.16, + "probability": 0.974609375 + } + ] + }, + { + "id": 3065, + "text": "guess", + "start": 3007.16, + "end": 3007.66, + "words": [ + { + "word": " guess", + "start": 3007.16, + "end": 3007.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3066, + "text": "that", + "start": 3007.66, + "end": 3007.84, + "words": [ + { + "word": " that", + "start": 3007.66, + "end": 3007.84, + "probability": 0.9775390625 + } + ] + }, + { + "id": 3067, + "text": "there's", + "start": 3007.84, + "end": 3008.0, + "words": [ + { + "word": " there's", + "start": 3007.84, + "end": 3008.0, + "probability": 0.9921875 + } + ] + }, + { + "id": 3068, + "text": "probably", + "start": 3008.0, + "end": 3008.2, + "words": [ + { + "word": " probably", + "start": 3008.0, + "end": 3008.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3069, + "text": "a little", + "start": 3008.2, + "end": 3008.44, + "words": [ + { + "word": " a", + "start": 3008.2, + "end": 3008.38, + "probability": 0.99267578125 + }, + { + "word": " little", + "start": 3008.38, + "end": 3008.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3070, + "text": "more", + "start": 3008.44, + "end": 3008.6, + "words": [ + { + "word": " more", + "start": 3008.44, + "end": 3008.6, + "probability": 0.994140625 + } + ] + }, + { + "id": 3071, + "text": "going", + "start": 3008.6, + "end": 3008.92, + "words": [ + { + "word": " going", + "start": 3008.6, + "end": 3008.92, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3072, + "text": "on", + "start": 3008.92, + "end": 3009.5, + "words": [ + { + "word": " on", + "start": 3008.92, + "end": 3009.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3073, + "text": "there", + "start": 3009.5, + "end": 3009.72, + "words": [ + { + "word": " there", + "start": 3009.5, + "end": 3009.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3074, + "text": "but", + "start": 3009.72, + "end": 3010.02, + "words": [ + { + "word": " but", + "start": 3009.72, + "end": 3010.02, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3075, + "text": "also", + "start": 3010.02, + "end": 3010.66, + "words": [ + { + "word": " also", + "start": 3010.02, + "end": 3010.66, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3076, + "text": "iCloud", + "start": 3010.66, + "end": 3011.3, + "words": [ + { + "word": " iCloud", + "start": 3010.66, + "end": 3011.3, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3077, + "text": "isn't", + "start": 3011.3, + "end": 3011.64, + "words": [ + { + "word": " isn't", + "start": 3011.3, + "end": 3011.64, + "probability": 0.9912109375 + } + ] + }, + { + "id": 3078, + "text": "necessarily", + "start": 3011.64, + "end": 3012.14, + "words": [ + { + "word": " necessarily", + "start": 3011.64, + "end": 3012.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3079, + "text": "the", + "start": 3012.14, + "end": 3012.68, + "words": [ + { + "word": " the", + "start": 3012.14, + "end": 3012.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 3080, + "text": "best", + "start": 3012.68, + "end": 3013.68, + "words": [ + { + "word": " best", + "start": 3012.68, + "end": 3013.68, + "probability": 0.82666015625 + } + ] + }, + { + "id": 3081, + "text": "solution", + "start": 3014.3, + "end": 3014.9, + "words": [ + { + "word": " solution", + "start": 3014.3, + "end": 3014.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3082, + "text": "for", + "start": 3014.9, + "end": 3015.38, + "words": [ + { + "word": " for", + "start": 3014.9, + "end": 3015.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3083, + "text": "that", + "start": 3015.38, + "end": 3015.58, + "words": [ + { + "word": " that", + "start": 3015.38, + "end": 3015.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3084, + "text": "number", + "start": 3015.58, + "end": 3016.0, + "words": [ + { + "word": " number", + "start": 3015.58, + "end": 3016.0, + "probability": 1.0 + } + ] + }, + { + "id": 3085, + "text": "of", + "start": 3016.0, + "end": 3016.32, + "words": [ + { + "word": " of", + "start": 3016.0, + "end": 3016.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3086, + "text": "files", + "start": 3016.32, + "end": 3016.64, + "words": [ + { + "word": " files", + "start": 3016.32, + "end": 3016.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3087, + "text": "and", + "start": 3016.64, + "end": 3016.84, + "words": [ + { + "word": " and", + "start": 3016.64, + "end": 3016.84, + "probability": 0.55615234375 + } + ] + }, + { + "id": 3088, + "text": "smaller", + "start": 3016.84, + "end": 3017.1, + "words": [ + { + "word": " smaller", + "start": 3016.84, + "end": 3017.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 3089, + "text": "numbers", + "start": 3017.1, + "end": 3017.44, + "words": [ + { + "word": " numbers", + "start": 3017.1, + "end": 3017.44, + "probability": 0.998046875 + } + ] + }, + { + "id": 3090, + "text": "that", + "start": 3017.44, + "end": 3018.16, + "words": [ + { + "word": " that", + "start": 3017.44, + "end": 3018.16, + "probability": 0.998046875 + } + ] + }, + { + "id": 3091, + "text": "probably", + "start": 3018.16, + "end": 3018.52, + "words": [ + { + "word": " probably", + "start": 3018.16, + "end": 3018.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3092, + "text": "would", + "start": 3018.52, + "end": 3018.82, + "words": [ + { + "word": " would", + "start": 3018.52, + "end": 3018.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3093, + "text": "work", + "start": 3018.82, + "end": 3019.02, + "words": [ + { + "word": " work", + "start": 3018.82, + "end": 3019.02, + "probability": 1.0 + } + ] + }, + { + "id": 3094, + "text": "pretty", + "start": 3019.02, + "end": 3019.26, + "words": [ + { + "word": " pretty", + "start": 3019.02, + "end": 3019.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3095, + "text": "well", + "start": 3019.26, + "end": 3019.5, + "words": [ + { + "word": " well", + "start": 3019.26, + "end": 3019.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3096, + "text": "not", + "start": 3019.5, + "end": 3019.74, + "words": [ + { + "word": " not", + "start": 3019.5, + "end": 3019.74, + "probability": 0.90185546875 + } + ] + }, + { + "id": 3097, + "text": "to", + "start": 3019.74, + "end": 3019.9, + "words": [ + { + "word": " to", + "start": 3019.74, + "end": 3019.9, + "probability": 1.0 + } + ] + }, + { + "id": 3098, + "text": "mention", + "start": 3019.9, + "end": 3020.12, + "words": [ + { + "word": " mention", + "start": 3019.9, + "end": 3020.12, + "probability": 1.0 + } + ] + }, + { + "id": 3099, + "text": "that", + "start": 3020.12, + "end": 3020.4, + "words": [ + { + "word": " that", + "start": 3020.12, + "end": 3020.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3100, + "text": "iCloud", + "start": 3020.4, + "end": 3021.52, + "words": [ + { + "word": " iCloud", + "start": 3020.4, + "end": 3021.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3101, + "text": "seems", + "start": 3021.52, + "end": 3021.76, + "words": [ + { + "word": " seems", + "start": 3021.52, + "end": 3021.76, + "probability": 0.9921875 + } + ] + }, + { + "id": 3102, + "text": "to", + "start": 3021.76, + "end": 3021.96, + "words": [ + { + "word": " to", + "start": 3021.76, + "end": 3021.96, + "probability": 1.0 + } + ] + }, + { + "id": 3103, + "text": "have", + "start": 3021.96, + "end": 3022.14, + "words": [ + { + "word": " have", + "start": 3021.96, + "end": 3022.14, + "probability": 1.0 + } + ] + }, + { + "id": 3104, + "text": "an", + "start": 3022.14, + "end": 3022.36, + "words": [ + { + "word": " an", + "start": 3022.14, + "end": 3022.36, + "probability": 0.456787109375 + } + ] + }, + { + "id": 3105, + "text": "affinity", + "start": 3022.36, + "end": 3023.02, + "words": [ + { + "word": " affinity", + "start": 3022.36, + "end": 3023.02, + "probability": 0.6708984375 + } + ] + }, + { + "id": 3106, + "text": "for", + "start": 3023.02, + "end": 3023.6, + "words": [ + { + "word": " for", + "start": 3023.02, + "end": 3023.6, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3107, + "text": "pictures", + "start": 3024.52, + "end": 3025.12, + "words": [ + { + "word": " pictures", + "start": 3024.52, + "end": 3025.12, + "probability": 0.9052734375 + } + ] + }, + { + "id": 3108, + "text": "and", + "start": 3025.12, + "end": 3025.76, + "words": [ + { + "word": " and", + "start": 3025.12, + "end": 3025.76, + "probability": 0.99267578125 + } + ] + }, + { + "id": 3109, + "text": "music", + "start": 3025.76, + "end": 3026.4, + "words": [ + { + "word": " music", + "start": 3025.76, + "end": 3026.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3110, + "text": "files", + "start": 3026.4, + "end": 3026.84, + "words": [ + { + "word": " files", + "start": 3026.4, + "end": 3026.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 3111, + "text": "not", + "start": 3026.84, + "end": 3027.22, + "words": [ + { + "word": " not", + "start": 3026.84, + "end": 3027.22, + "probability": 0.04779052734375 + } + ] + }, + { + "id": 3112, + "text": "necessarily", + "start": 3027.22, + "end": 3027.78, + "words": [ + { + "word": " necessarily", + "start": 3027.22, + "end": 3027.78, + "probability": 0.99609375 + } + ] + }, + { + "id": 3113, + "text": "anything", + "start": 3027.78, + "end": 3028.56, + "words": [ + { + "word": " anything", + "start": 3027.78, + "end": 3028.56, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3114, + "text": "else", + "start": 3028.56, + "end": 3029.16, + "words": [ + { + "word": " else", + "start": 3028.56, + "end": 3029.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3115, + "text": "so", + "start": 3029.86, + "end": 3030.46, + "words": [ + { + "word": " so", + "start": 3029.86, + "end": 3030.46, + "probability": 0.410888671875 + } + ] + }, + { + "id": 3116, + "text": "you may", + "start": 3031.1600000000003, + "end": 3031.92, + "words": [ + { + "word": " you", + "start": 3031.12, + "end": 3031.42, + "probability": 0.1251220703125 + }, + { + "word": " may", + "start": 3031.42, + "end": 3031.92, + "probability": 0.9814453125 + } + ] + }, + { + "id": 3117, + "text": "be", + "start": 3031.92, + "end": 3032.1, + "words": [ + { + "word": " be", + "start": 3031.92, + "end": 3032.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3118, + "text": "looking", + "start": 3032.1, + "end": 3032.34, + "words": [ + { + "word": " looking", + "start": 3032.1, + "end": 3032.34, + "probability": 0.998046875 + } + ] + }, + { + "id": 3119, + "text": "at", + "start": 3032.34, + "end": 3032.58, + "words": [ + { + "word": " at", + "start": 3032.34, + "end": 3032.58, + "probability": 0.98291015625 + } + ] + }, + { + "id": 3120, + "text": "possibly", + "start": 3032.58, + "end": 3033.3, + "words": [ + { + "word": " possibly", + "start": 3032.58, + "end": 3033.3, + "probability": 0.97509765625 + } + ] + }, + { + "id": 3121, + "text": "a", + "start": 3033.3, + "end": 3033.54, + "words": [ + { + "word": " a", + "start": 3033.3, + "end": 3033.54, + "probability": 0.99072265625 + } + ] + }, + { + "id": 3122, + "text": "different", + "start": 3033.54, + "end": 3033.7, + "words": [ + { + "word": " different", + "start": 3033.54, + "end": 3033.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 3123, + "text": "solution", + "start": 3033.7, + "end": 3034.04, + "words": [ + { + "word": " solution", + "start": 3033.7, + "end": 3034.04, + "probability": 0.99609375 + } + ] + }, + { + "id": 3124, + "text": "for", + "start": 3034.04, + "end": 3034.28, + "words": [ + { + "word": " for", + "start": 3034.04, + "end": 3034.28, + "probability": 0.98095703125 + } + ] + }, + { + "id": 3125, + "text": "that", + "start": 3034.28, + "end": 3034.46, + "words": [ + { + "word": " that", + "start": 3034.28, + "end": 3034.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3126, + "text": "if", + "start": 3034.46, + "end": 3034.78, + "words": [ + { + "word": " if", + "start": 3034.46, + "end": 3034.78, + "probability": 0.96875 + } + ] + }, + { + "id": 3127, + "text": "you", + "start": 3034.78, + "end": 3034.92, + "words": [ + { + "word": " you", + "start": 3034.78, + "end": 3034.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3128, + "text": "want", + "start": 3034.92, + "end": 3035.22, + "words": [ + { + "word": " want", + "start": 3034.92, + "end": 3035.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3129, + "text": "to", + "start": 3035.22, + "end": 3035.38, + "words": [ + { + "word": " to", + "start": 3035.22, + "end": 3035.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3130, + "text": "be", + "start": 3035.38, + "end": 3035.46, + "words": [ + { + "word": " be", + "start": 3035.38, + "end": 3035.46, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3131, + "text": "able", + "start": 3035.46, + "end": 3035.62, + "words": [ + { + "word": " able", + "start": 3035.46, + "end": 3035.62, + "probability": 1.0 + } + ] + }, + { + "id": 3132, + "text": "to", + "start": 3035.62, + "end": 3035.86, + "words": [ + { + "word": " to", + "start": 3035.62, + "end": 3035.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3133, + "text": "synchronize", + "start": 3035.86, + "end": 3036.66, + "words": [ + { + "word": " synchronize", + "start": 3035.86, + "end": 3036.66, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3134, + "text": "large", + "start": 3036.66, + "end": 3037.06, + "words": [ + { + "word": " large", + "start": 3036.66, + "end": 3037.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3135, + "text": "amounts", + "start": 3037.06, + "end": 3037.46, + "words": [ + { + "word": " amounts", + "start": 3037.06, + "end": 3037.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 3136, + "text": "of", + "start": 3037.46, + "end": 3037.72, + "words": [ + { + "word": " of", + "start": 3037.46, + "end": 3037.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3137, + "text": "data", + "start": 3037.72, + "end": 3037.92, + "words": [ + { + "word": " data", + "start": 3037.72, + "end": 3037.92, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3138, + "text": "of", + "start": 3037.92, + "end": 3038.46, + "words": [ + { + "word": " of", + "start": 3037.92, + "end": 3038.46, + "probability": 0.70068359375 + } + ] + }, + { + "id": 3139, + "text": "various", + "start": 3038.46, + "end": 3039.28, + "words": [ + { + "word": " various", + "start": 3038.46, + "end": 3039.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3140, + "text": "data", + "start": 3039.28, + "end": 3040.12, + "words": [ + { + "word": " data", + "start": 3039.28, + "end": 3040.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 3141, + "text": "types", + "start": 3040.12, + "end": 3040.48, + "words": [ + { + "word": " types", + "start": 3040.12, + "end": 3040.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3142, + "text": "to", + "start": 3041.1600000000003, + "end": 3041.76, + "words": [ + { + "word": " to", + "start": 3041.1600000000003, + "end": 3041.76, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3143, + "text": "multiple", + "start": 3041.76, + "end": 3042.0, + "words": [ + { + "word": " multiple", + "start": 3041.76, + "end": 3042.0, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3144, + "text": "machines", + "start": 3042.0, + "end": 3042.3, + "words": [ + { + "word": " machines", + "start": 3042.0, + "end": 3042.3, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3145, + "text": "so", + "start": 3042.3, + "end": 3043.28, + "words": [ + { + "word": " so", + "start": 3042.3, + "end": 3043.28, + "probability": 0.490234375 + } + ] + }, + { + "id": 3146, + "text": "let me", + "start": 3044.7000000000003, + "end": 3045.48, + "words": [ + { + "word": " let", + "start": 3044.7000000000003, + "end": 3045.3, + "probability": 0.99658203125 + }, + { + "word": " me", + "start": 3045.3, + "end": 3045.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3147, + "text": "see if", + "start": 3045.48, + "end": 3046.32, + "words": [ + { + "word": " see", + "start": 3045.48, + "end": 3046.16, + "probability": 0.99462890625 + }, + { + "word": " if", + "start": 3046.16, + "end": 3046.32, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3148, + "text": "i can", + "start": 3046.32, + "end": 3046.48, + "words": [ + { + "word": " i", + "start": 3046.32, + "end": 3046.42, + "probability": 0.00940704345703125 + }, + { + "word": " can", + "start": 3046.42, + "end": 3046.48, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3149, + "text": "understand", + "start": 3046.48, + "end": 3046.7, + "words": [ + { + "word": " understand", + "start": 3046.48, + "end": 3046.7, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3150, + "text": "how", + "start": 3046.7, + "end": 3046.96, + "words": [ + { + "word": " how", + "start": 3046.7, + "end": 3046.96, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3151, + "text": "you're", + "start": 3046.96, + "end": 3047.14, + "words": [ + { + "word": " you're", + "start": 3046.96, + "end": 3047.14, + "probability": 0.92041015625 + } + ] + }, + { + "id": 3152, + "text": "using", + "start": 3047.14, + "end": 3047.42, + "words": [ + { + "word": " using", + "start": 3047.14, + "end": 3047.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3153, + "text": "this", + "start": 3047.42, + "end": 3047.66, + "words": [ + { + "word": " this", + "start": 3047.42, + "end": 3047.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3154, + "text": "you're", + "start": 3048.34, + "end": 3048.94, + "words": [ + { + "word": " you're", + "start": 3048.34, + "end": 3048.94, + "probability": 0.91259765625 + } + ] + }, + { + "id": 3155, + "text": "using", + "start": 3048.94, + "end": 3049.28, + "words": [ + { + "word": " using", + "start": 3048.94, + "end": 3049.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3156, + "text": "it", + "start": 3049.28, + "end": 3049.56, + "words": [ + { + "word": " it", + "start": 3049.28, + "end": 3049.56, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3157, + "text": "effectively", + "start": 3049.56, + "end": 3050.0, + "words": [ + { + "word": " effectively", + "start": 3049.56, + "end": 3050.0, + "probability": 0.98046875 + } + ] + }, + { + "id": 3158, + "text": "as a", + "start": 3050.0, + "end": 3050.36, + "words": [ + { + "word": " as", + "start": 3050.0, + "end": 3050.28, + "probability": 0.99267578125 + }, + { + "word": " a", + "start": 3050.28, + "end": 3050.36, + "probability": 0.99609375 + } + ] + }, + { + "id": 3159, + "text": "backup", + "start": 3050.36, + "end": 3050.64, + "words": [ + { + "word": " backup", + "start": 3050.36, + "end": 3050.64, + "probability": 0.919921875 + } + ] + }, + { + "id": 3160, + "text": "and", + "start": 3050.64, + "end": 3051.1, + "words": [ + { + "word": " and", + "start": 3050.64, + "end": 3051.1, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3161, + "text": "a", + "start": 3051.1, + "end": 3051.34, + "words": [ + { + "word": " a", + "start": 3051.1, + "end": 3051.34, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3162, + "text": "way", + "start": 3051.34, + "end": 3051.6, + "words": [ + { + "word": " way", + "start": 3051.34, + "end": 3051.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3163, + "text": "to", + "start": 3051.6, + "end": 3051.88, + "words": [ + { + "word": " to", + "start": 3051.6, + "end": 3051.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3164, + "text": "translate", + "start": 3051.88, + "end": 3052.34, + "words": [ + { + "word": " translate", + "start": 3051.88, + "end": 3052.34, + "probability": 0.36669921875 + } + ] + }, + { + "id": 3165, + "text": "", + "start": 3052.34, + "end": 3052.34, + "words": [] + }, + { + "id": 3166, + "text": "", + "start": 3052.34, + "end": 3052.34, + "words": [] + }, + { + "id": 3167, + "text": "", + "start": 3052.34, + "end": 3052.34, + "words": [] + }, + { + "id": 3168, + "text": "for", + "start": 3052.34, + "end": 3052.46, + "words": [ + { + "word": " for", + "start": 3052.34, + "end": 3052.46, + "probability": 0.8935546875 + } + ] + }, + { + "id": 3169, + "text": "data", + "start": 3052.46, + "end": 3052.66, + "words": [ + { + "word": " data", + "start": 3052.46, + "end": 3052.66, + "probability": 0.97509765625 + } + ] + }, + { + "id": 3170, + "text": "to", + "start": 3052.66, + "end": 3052.88, + "words": [ + { + "word": " to", + "start": 3052.66, + "end": 3052.88, + "probability": 0.98876953125 + } + ] + }, + { + "id": 3171, + "text": "your", + "start": 3052.88, + "end": 3053.08, + "words": [ + { + "word": " your", + "start": 3052.88, + "end": 3053.08, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3172, + "text": "mobile", + "start": 3053.08, + "end": 3053.4, + "words": [ + { + "word": " mobile", + "start": 3053.08, + "end": 3053.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3173, + "text": "devices", + "start": 3053.4, + "end": 3053.9, + "words": [ + { + "word": " devices", + "start": 3053.4, + "end": 3053.9, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3174, + "text": "correct", + "start": 3053.9, + "end": 3054.6, + "words": [ + { + "word": " correct", + "start": 3053.9, + "end": 3054.6, + "probability": 0.0701904296875 + } + ] + }, + { + "id": 3175, + "text": "in", + "start": 3054.6, + "end": 3055.0, + "words": [ + { + "word": " in", + "start": 3054.6, + "end": 3055.0, + "probability": 0.73486328125 + } + ] + }, + { + "id": 3176, + "text": "other", + "start": 3055.0, + "end": 3055.14, + "words": [ + { + "word": " other", + "start": 3055.0, + "end": 3055.14, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3177, + "text": "words", + "start": 3055.14, + "end": 3055.3, + "words": [ + { + "word": " words", + "start": 3055.14, + "end": 3055.3, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3178, + "text": "i", + "start": 3055.3, + "end": 3055.44, + "words": [ + { + "word": " i", + "start": 3055.3, + "end": 3055.44, + "probability": 0.673828125 + } + ] + }, + { + "id": 3179, + "text": "have", + "start": 3055.44, + "end": 3055.6, + "words": [ + { + "word": " have", + "start": 3055.44, + "end": 3055.6, + "probability": 0.9765625 + } + ] + }, + { + "id": 3180, + "text": "a", + "start": 3055.6, + "end": 3055.74, + "words": [ + { + "word": " a", + "start": 3055.6, + "end": 3055.74, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3181, + "text": "large", + "start": 3055.74, + "end": 3056.52, + "words": [ + { + "word": " large", + "start": 3055.74, + "end": 3056.52, + "probability": 0.164306640625 + } + ] + }, + { + "id": 3182, + "text": "number", + "start": 3057.1600000000003, + "end": 3057.32, + "words": [ + { + "word": " number", + "start": 3056.96, + "end": 3057.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3183, + "text": "of", + "start": 3057.32, + "end": 3057.54, + "words": [ + { + "word": " of", + "start": 3057.32, + "end": 3057.54, + "probability": 0.998046875 + } + ] + }, + { + "id": 3184, + "text": "files", + "start": 3057.54, + "end": 3057.92, + "words": [ + { + "word": " files", + "start": 3057.54, + "end": 3057.92, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3185, + "text": "various", + "start": 3058.6800000000003, + "end": 3059.4, + "words": [ + { + "word": " various", + "start": 3058.6800000000003, + "end": 3059.4, + "probability": 0.327880859375 + } + ] + }, + { + "id": 3186, + "text": "sources", + "start": 3060.0, + "end": 3060.46, + "words": [ + { + "word": " sources", + "start": 3060.0, + "end": 3060.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3187, + "text": "so", + "start": 3060.46, + "end": 3061.24, + "words": [ + { + "word": " so", + "start": 3060.46, + "end": 3061.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 3188, + "text": "i", + "start": 3061.24, + "end": 3061.64, + "words": [ + { + "word": " i", + "start": 3061.24, + "end": 3061.64, + "probability": 0.99267578125 + } + ] + }, + { + "id": 3189, + "text": "don't", + "start": 3061.64, + "end": 3061.84, + "words": [ + { + "word": " don't", + "start": 3061.64, + "end": 3061.84, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3190, + "text": "mean", + "start": 3061.84, + "end": 3061.98, + "words": [ + { + "word": " mean", + "start": 3061.84, + "end": 3061.98, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3191, + "text": "unique", + "start": 3061.98, + "end": 3062.46, + "words": [ + { + "word": " unique", + "start": 3061.98, + "end": 3062.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3192, + "text": "unique", + "start": 3062.46, + "end": 3062.84, + "words": [ + { + "word": " unique", + "start": 3062.46, + "end": 3062.84, + "probability": 0.97216796875 + } + ] + }, + { + "id": 3193, + "text": "data", + "start": 3062.84, + "end": 3063.88, + "words": [ + { + "word": " data", + "start": 3062.84, + "end": 3063.88, + "probability": 0.79296875 + } + ] + }, + { + "id": 3194, + "text": "types", + "start": 3064.76, + "end": 3065.04, + "words": [ + { + "word": " types", + "start": 3064.68, + "end": 3065.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3195, + "text": "but", + "start": 3065.04, + "end": 3065.46, + "words": [ + { + "word": " but", + "start": 3065.04, + "end": 3065.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3196, + "text": "various", + "start": 3065.46, + "end": 3065.82, + "words": [ + { + "word": " various", + "start": 3065.46, + "end": 3065.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3197, + "text": "sources", + "start": 3065.82, + "end": 3066.38, + "words": [ + { + "word": " sources", + "start": 3065.82, + "end": 3066.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3198, + "text": "so", + "start": 3066.38, + "end": 3066.74, + "words": [ + { + "word": " so", + "start": 3066.38, + "end": 3066.74, + "probability": 0.998046875 + } + ] + }, + { + "id": 3199, + "text": "let's", + "start": 3066.74, + "end": 3067.08, + "words": [ + { + "word": " let's", + "start": 3066.74, + "end": 3067.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3200, + "text": "say", + "start": 3067.08, + "end": 3067.26, + "words": [ + { + "word": " say", + "start": 3067.08, + "end": 3067.26, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3201, + "text": "you", + "start": 3067.26, + "end": 3067.48, + "words": [ + { + "word": " you", + "start": 3067.26, + "end": 3067.48, + "probability": 0.724609375 + } + ] + }, + { + "id": 3202, + "text": "signed", + "start": 3068.36, + "end": 3069.08, + "words": [ + { + "word": " signed", + "start": 3068.36, + "end": 3069.08, + "probability": 0.0005254745483398438 + } + ] + }, + { + "id": 3203, + "text": "a", + "start": 3069.08, + "end": 3069.72, + "words": [ + { + "word": " a", + "start": 3069.08, + "end": 3069.72, + "probability": 0.94482421875 + } + ] + }, + { + "id": 3204, + "text": "20", + "start": 3069.72, + "end": 3069.96, + "words": [ + { + "word": " 20", + "start": 3069.72, + "end": 3069.96, + "probability": 0.86865234375 + } + ] + }, + { + "id": 3205, + "text": "page", + "start": 3069.96, + "end": 3070.24, + "words": [ + { + "word": " page", + "start": 3069.96, + "end": 3070.24, + "probability": 0.368896484375 + } + ] + }, + { + "id": 3206, + "text": "contract", + "start": 3070.24, + "end": 3070.78, + "words": [ + { + "word": " contract", + "start": 3070.24, + "end": 3070.78, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3207, + "text": "well", + "start": 3070.78, + "end": 3071.84, + "words": [ + { + "word": " well", + "start": 3070.78, + "end": 3071.84, + "probability": 0.9638671875 + } + ] + }, + { + "id": 3208, + "text": "i", + "start": 3071.84, + "end": 3072.26, + "words": [ + { + "word": " i", + "start": 3071.84, + "end": 3072.26, + "probability": 0.9716796875 + } + ] + }, + { + "id": 3209, + "text": "would", + "start": 3072.26, + "end": 3072.42, + "words": [ + { + "word": " would", + "start": 3072.26, + "end": 3072.42, + "probability": 0.982421875 + } + ] + }, + { + "id": 3210, + "text": "want", + "start": 3072.42, + "end": 3072.62, + "words": [ + { + "word": " want", + "start": 3072.42, + "end": 3072.62, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3211, + "text": "to", + "start": 3072.62, + "end": 3072.72, + "words": [ + { + "word": " to", + "start": 3072.62, + "end": 3072.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 3212, + "text": "slap", + "start": 3072.72, + "end": 3073.0, + "words": [ + { + "word": " slap", + "start": 3072.72, + "end": 3073.0, + "probability": 0.9755859375 + } + ] + }, + { + "id": 3213, + "text": "that", + "start": 3073.0, + "end": 3073.26, + "words": [ + { + "word": " that", + "start": 3073.0, + "end": 3073.26, + "probability": 0.9052734375 + } + ] + }, + { + "id": 3214, + "text": "into", + "start": 3073.26, + "end": 3074.5, + "words": [ + { + "word": " into", + "start": 3073.26, + "end": 3074.5, + "probability": 0.78759765625 + } + ] + }, + { + "id": 3215, + "text": "the", + "start": 3074.5, + "end": 3074.82, + "words": [ + { + "word": " the", + "start": 3074.5, + "end": 3074.82, + "probability": 0.99609375 + } + ] + }, + { + "id": 3216, + "text": "scanner", + "start": 3074.82, + "end": 3075.14, + "words": [ + { + "word": " scanner", + "start": 3074.82, + "end": 3075.14, + "probability": 0.01334381103515625 + } + ] + }, + { + "id": 3217, + "text": "create", + "start": 3075.14, + "end": 3076.54, + "words": [ + { + "word": " create", + "start": 3075.14, + "end": 3076.54, + "probability": 0.9697265625 + } + ] + }, + { + "id": 3218, + "text": "a", + "start": 3076.54, + "end": 3076.78, + "words": [ + { + "word": " a", + "start": 3076.54, + "end": 3076.78, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3219, + "text": "pdf", + "start": 3076.78, + "end": 3077.2, + "words": [ + { + "word": " pdf", + "start": 3076.78, + "end": 3077.2, + "probability": 0.9833984375 + } + ] + }, + { + "id": 3220, + "text": "version", + "start": 3077.2, + "end": 3077.76, + "words": [ + { + "word": " version", + "start": 3077.2, + "end": 3077.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 3221, + "text": "of", + "start": 3077.76, + "end": 3078.14, + "words": [ + { + "word": " of", + "start": 3077.76, + "end": 3078.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 3222, + "text": "it", + "start": 3078.14, + "end": 3078.32, + "words": [ + { + "word": " it", + "start": 3078.14, + "end": 3078.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3223, + "text": "and", + "start": 3078.32, + "end": 3078.9, + "words": [ + { + "word": " and", + "start": 3078.32, + "end": 3078.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3224, + "text": "have", + "start": 3078.9, + "end": 3079.14, + "words": [ + { + "word": " have", + "start": 3078.9, + "end": 3079.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3225, + "text": "it", + "start": 3079.14, + "end": 3079.26, + "words": [ + { + "word": " it", + "start": 3079.14, + "end": 3079.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3226, + "text": "on", + "start": 3079.26, + "end": 3079.42, + "words": [ + { + "word": " on", + "start": 3079.26, + "end": 3079.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3227, + "text": "my", + "start": 3079.42, + "end": 3079.62, + "words": [ + { + "word": " my", + "start": 3079.42, + "end": 3079.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 3228, + "text": "5i", + "start": 3079.62, + "end": 3080.26, + "words": [ + { + "word": " 5i", + "start": 3079.62, + "end": 3080.26, + "probability": 0.59521484375 + } + ] + }, + { + "id": 3229, + "text": "devices", + "start": 3080.26, + "end": 3080.64, + "words": [ + { + "word": " devices", + "start": 3080.26, + "end": 3080.64, + "probability": 0.98486328125 + } + ] + }, + { + "id": 3230, + "text": "so", + "start": 3080.64, + "end": 3081.82, + "words": [ + { + "word": " so", + "start": 3080.64, + "end": 3081.82, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3231, + "text": "that's", + "start": 3081.82, + "end": 3082.2, + "words": [ + { + "word": " that's", + "start": 3081.82, + "end": 3082.2, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3232, + "text": "an", + "start": 3082.2, + "end": 3082.26, + "words": [ + { + "word": " an", + "start": 3082.2, + "end": 3082.26, + "probability": 0.69140625 + } + ] + }, + { + "id": 3233, + "text": "example", + "start": 3082.26, + "end": 3082.8, + "words": [ + { + "word": " example", + "start": 3082.26, + "end": 3082.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3234, + "text": "of", + "start": 3082.8, + "end": 3083.06, + "words": [ + { + "word": " of", + "start": 3082.8, + "end": 3083.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3235, + "text": "the", + "start": 3083.06, + "end": 3083.18, + "words": [ + { + "word": " the", + "start": 3083.06, + "end": 3083.18, + "probability": 0.97021484375 + } + ] + }, + { + "id": 3236, + "text": "way", + "start": 3083.18, + "end": 3083.42, + "words": [ + { + "word": " way", + "start": 3083.18, + "end": 3083.42, + "probability": 0.998046875 + } + ] + }, + { + "id": 3237, + "text": "i", + "start": 3083.42, + "end": 3083.56, + "words": [ + { + "word": " i", + "start": 3083.42, + "end": 3083.56, + "probability": 0.11572265625 + } + ] + }, + { + "id": 3238, + "text": "would", + "start": 3083.56, + "end": 3083.72, + "words": [ + { + "word": " would", + "start": 3083.56, + "end": 3083.72, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3239, + "text": "use", + "start": 3083.72, + "end": 3083.98, + "words": [ + { + "word": " use", + "start": 3083.72, + "end": 3083.98, + "probability": 0.98876953125 + } + ] + }, + { + "id": 3240, + "text": "that", + "start": 3083.98, + "end": 3084.28, + "words": [ + { + "word": " that", + "start": 3083.98, + "end": 3084.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3241, + "text": "if", + "start": 3084.28, + "end": 3084.7, + "words": [ + { + "word": " if", + "start": 3084.28, + "end": 3084.7, + "probability": 0.84912109375 + } + ] + }, + { + "id": 3242, + "text": "i", + "start": 3084.7, + "end": 3084.84, + "words": [ + { + "word": " i", + "start": 3084.7, + "end": 3084.84, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3243, + "text": "got", + "start": 3084.84, + "end": 3084.96, + "words": [ + { + "word": " got", + "start": 3084.84, + "end": 3084.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3244, + "text": "a", + "start": 3084.96, + "end": 3085.08, + "words": [ + { + "word": " a", + "start": 3084.96, + "end": 3085.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3245, + "text": "newsletter", + "start": 3085.08, + "end": 3085.5, + "words": [ + { + "word": " newsletter", + "start": 3085.08, + "end": 3085.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3246, + "text": "in", + "start": 3085.5, + "end": 3085.92, + "words": [ + { + "word": " in", + "start": 3085.5, + "end": 3085.92, + "probability": 0.990234375 + } + ] + }, + { + "id": 3247, + "text": "from", + "start": 3085.92, + "end": 3086.2, + "words": [ + { + "word": " from", + "start": 3085.92, + "end": 3086.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3248, + "text": "john", + "start": 3086.2, + "end": 3086.54, + "words": [ + { + "word": " john", + "start": 3086.2, + "end": 3086.54, + "probability": 0.98974609375 + } + ] + }, + { + "id": 3249, + "text": "doe", + "start": 3086.54, + "end": 3086.82, + "words": [ + { + "word": " doe", + "start": 3086.54, + "end": 3086.82, + "probability": 0.9228515625 + } + ] + }, + { + "id": 3250, + "text": "associates", + "start": 3086.82, + "end": 3087.3, + "words": [ + { + "word": " associates", + "start": 3086.82, + "end": 3087.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3251, + "text": "i", + "start": 3087.3, + "end": 3088.22, + "words": [ + { + "word": " i", + "start": 3087.3, + "end": 3088.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3252, + "text": "would", + "start": 3088.22, + "end": 3088.42, + "words": [ + { + "word": " would", + "start": 3088.22, + "end": 3088.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3253, + "text": "want", + "start": 3088.42, + "end": 3088.6, + "words": [ + { + "word": " want", + "start": 3088.42, + "end": 3088.6, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3254, + "text": "to", + "start": 3088.6, + "end": 3088.72, + "words": [ + { + "word": " to", + "start": 3088.6, + "end": 3088.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3255, + "text": "slap", + "start": 3088.72, + "end": 3088.92, + "words": [ + { + "word": " slap", + "start": 3088.72, + "end": 3088.92, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3256, + "text": "that", + "start": 3088.92, + "end": 3089.22, + "words": [ + { + "word": " that", + "start": 3088.92, + "end": 3089.22, + "probability": 1.0 + } + ] + }, + { + "id": 3257, + "text": "in", + "start": 3089.22, + "end": 3089.44, + "words": [ + { + "word": " in", + "start": 3089.22, + "end": 3089.44, + "probability": 1.0 + } + ] + }, + { + "id": 3258, + "text": "there", + "start": 3089.44, + "end": 3089.66, + "words": [ + { + "word": " there", + "start": 3089.44, + "end": 3089.66, + "probability": 0.89013671875 + } + ] + }, + { + "id": 3259, + "text": "same", + "start": 3089.66, + "end": 3090.46, + "words": [ + { + "word": " same", + "start": 3089.66, + "end": 3090.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3260, + "text": "process", + "start": 3090.46, + "end": 3091.1, + "words": [ + { + "word": " process", + "start": 3090.46, + "end": 3091.1, + "probability": 1.0 + } + ] + }, + { + "id": 3261, + "text": "pdf", + "start": 3091.1, + "end": 3091.96, + "words": [ + { + "word": " pdf", + "start": 3091.1, + "end": 3091.96, + "probability": 0.994140625 + } + ] + }, + { + "id": 3262, + "text": "files", + "start": 3091.96, + "end": 3092.4, + "words": [ + { + "word": " files", + "start": 3091.96, + "end": 3092.4, + "probability": 1.0 + } + ] + }, + { + "id": 3263, + "text": "transfer", + "start": 3092.4, + "end": 3093.4, + "words": [ + { + "word": " transfer", + "start": 3092.4, + "end": 3093.4, + "probability": 0.50732421875 + } + ] + }, + { + "id": 3264, + "text": "so", + "start": 3093.4, + "end": 3094.06, + "words": [ + { + "word": " so", + "start": 3093.4, + "end": 3094.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3265, + "text": "each", + "start": 3094.8199999999997, + "end": 3095.06, + "words": [ + { + "word": " each", + "start": 3094.7599999999998, + "end": 3095.06, + "probability": 1.0 + } + ] + }, + { + "id": 3266, + "text": "file", + "start": 3095.06, + "end": 3095.42, + "words": [ + { + "word": " file", + "start": 3095.06, + "end": 3095.42, + "probability": 1.0 + } + ] + }, + { + "id": 3267, + "text": "of", + "start": 3095.42, + "end": 3095.74, + "words": [ + { + "word": " of", + "start": 3095.42, + "end": 3095.74, + "probability": 1.0 + } + ] + }, + { + "id": 3268, + "text": "course", + "start": 3095.74, + "end": 3096.08, + "words": [ + { + "word": " course", + "start": 3095.74, + "end": 3096.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3269, + "text": "with", + "start": 3096.08, + "end": 3096.3, + "words": [ + { + "word": " with", + "start": 3096.08, + "end": 3096.3, + "probability": 0.9814453125 + } + ] + }, + { + "id": 3270, + "text": "the", + "start": 3096.3, + "end": 3096.44, + "words": [ + { + "word": " the", + "start": 3096.3, + "end": 3096.44, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3271, + "text": "scanner", + "start": 3096.44, + "end": 3096.76, + "words": [ + { + "word": " scanner", + "start": 3096.44, + "end": 3096.76, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3272, + "text": "shows", + "start": 3096.76, + "end": 3097.14, + "words": [ + { + "word": " shows", + "start": 3096.76, + "end": 3097.14, + "probability": 1.0 + } + ] + }, + { + "id": 3273, + "text": "up", + "start": 3097.14, + "end": 3097.5, + "words": [ + { + "word": " up", + "start": 3097.14, + "end": 3097.5, + "probability": 1.0 + } + ] + }, + { + "id": 3274, + "text": "as", + "start": 3097.5, + "end": 3097.66, + "words": [ + { + "word": " as", + "start": 3097.5, + "end": 3097.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3275, + "text": "a", + "start": 3097.66, + "end": 3097.76, + "words": [ + { + "word": " a", + "start": 3097.66, + "end": 3097.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3276, + "text": "single", + "start": 3097.76, + "end": 3098.06, + "words": [ + { + "word": " single", + "start": 3097.76, + "end": 3098.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3277, + "text": "pdf", + "start": 3098.06, + "end": 3098.54, + "words": [ + { + "word": " pdf", + "start": 3098.06, + "end": 3098.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3278, + "text": "it", + "start": 3098.54, + "end": 3099.3, + "words": [ + { + "word": " it", + "start": 3098.54, + "end": 3099.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3279, + "text": "may", + "start": 3099.3, + "end": 3099.5, + "words": [ + { + "word": " may", + "start": 3099.3, + "end": 3099.5, + "probability": 1.0 + } + ] + }, + { + "id": 3280, + "text": "have", + "start": 3099.5, + "end": 3099.72, + "words": [ + { + "word": " have", + "start": 3099.5, + "end": 3099.72, + "probability": 1.0 + } + ] + }, + { + "id": 3281, + "text": "anywhere", + "start": 3099.72, + "end": 3100.0, + "words": [ + { + "word": " anywhere", + "start": 3099.72, + "end": 3100.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3282, + "text": "from", + "start": 3100.0, + "end": 3100.36, + "words": [ + { + "word": " from", + "start": 3100.0, + "end": 3100.36, + "probability": 1.0 + } + ] + }, + { + "id": 3283, + "text": "one", + "start": 3100.36, + "end": 3100.62, + "words": [ + { + "word": " one", + "start": 3100.36, + "end": 3100.62, + "probability": 0.95068359375 + } + ] + }, + { + "id": 3284, + "text": "to", + "start": 3100.62, + "end": 3101.12, + "words": [ + { + "word": " to", + "start": 3100.62, + "end": 3101.12, + "probability": 1.0 + } + ] + }, + { + "id": 3285, + "text": "500", + "start": 3101.12, + "end": 3101.52, + "words": [ + { + "word": " 500", + "start": 3101.12, + "end": 3101.52, + "probability": 0.484375 + } + ] + }, + { + "id": 3286, + "text": "pages", + "start": 3101.52, + "end": 3101.98, + "words": [ + { + "word": " pages", + "start": 3101.52, + "end": 3101.98, + "probability": 1.0 + } + ] + }, + { + "id": 3287, + "text": "maybe", + "start": 3101.98, + "end": 3102.34, + "words": [ + { + "word": " maybe", + "start": 3101.98, + "end": 3102.34, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3288, + "text": "an", + "start": 3102.34, + "end": 3102.58, + "words": [ + { + "word": " an", + "start": 3102.34, + "end": 3102.58, + "probability": 1.0 + } + ] + }, + { + "id": 3289, + "text": "annual", + "start": 3102.58, + "end": 3102.82, + "words": [ + { + "word": " annual", + "start": 3102.58, + "end": 3102.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3290, + "text": "report", + "start": 3102.82, + "end": 3103.2, + "words": [ + { + "word": " report", + "start": 3102.82, + "end": 3103.2, + "probability": 1.0 + } + ] + }, + { + "id": 3291, + "text": "from", + "start": 3103.2, + "end": 3103.52, + "words": [ + { + "word": " from", + "start": 3103.2, + "end": 3103.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3292, + "text": "a", + "start": 3103.52, + "end": 3103.62, + "words": [ + { + "word": " a", + "start": 3103.52, + "end": 3103.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 3293, + "text": "company", + "start": 3103.62, + "end": 3103.9, + "words": [ + { + "word": " company", + "start": 3103.62, + "end": 3103.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3294, + "text": "so", + "start": 3103.9, + "end": 3104.44, + "words": [ + { + "word": " so", + "start": 3103.9, + "end": 3104.44, + "probability": 0.0229644775390625 + } + ] + }, + { + "id": 3295, + "text": "that's", + "start": 3104.44, + "end": 3104.92, + "words": [ + { + "word": " that's", + "start": 3104.44, + "end": 3104.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3296, + "text": "the", + "start": 3104.92, + "end": 3105.02, + "words": [ + { + "word": " the", + "start": 3104.92, + "end": 3105.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3297, + "text": "range", + "start": 3105.02, + "end": 3105.26, + "words": [ + { + "word": " range", + "start": 3105.02, + "end": 3105.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3298, + "text": "of", + "start": 3105.26, + "end": 3105.46, + "words": [ + { + "word": " of", + "start": 3105.26, + "end": 3105.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3299, + "text": "stuff", + "start": 3105.46, + "end": 3105.7, + "words": [ + { + "word": " stuff", + "start": 3105.46, + "end": 3105.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3300, + "text": "that", + "start": 3105.7, + "end": 3105.92, + "words": [ + { + "word": " that", + "start": 3105.7, + "end": 3105.92, + "probability": 0.98388671875 + } + ] + }, + { + "id": 3301, + "text": "it", + "start": 3105.92, + "end": 3106.04, + "words": [ + { + "word": " it", + "start": 3105.92, + "end": 3106.04, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3302, + "text": "takes", + "start": 3106.56, + "end": 3106.78, + "words": [ + { + "word": " takes", + "start": 3106.48, + "end": 3106.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3303, + "text": "okay", + "start": 3106.78, + "end": 3107.34, + "words": [ + { + "word": " okay", + "start": 3106.78, + "end": 3107.34, + "probability": 0.9462890625 + } + ] + }, + { + "id": 3304, + "text": "so", + "start": 3107.34, + "end": 3107.72, + "words": [ + { + "word": " so", + "start": 3107.34, + "end": 3107.72, + "probability": 1.0 + } + ] + }, + { + "id": 3305, + "text": "i", + "start": 3113.62, + "end": 3114.22, + "words": [ + { + "word": " i", + "start": 3113.62, + "end": 3114.22, + "probability": 8.082389831542969e-05 + } + ] + }, + { + "id": 3306, + "text": "cloud", + "start": 3115.7000000000003, + "end": 3116.3, + "words": [ + { + "word": " cloud", + "start": 3115.7000000000003, + "end": 3116.3, + "probability": 0.00037169456481933594 + } + ] + }, + { + "id": 3307, + "text": "drive", + "start": 3116.3, + "end": 3116.46, + "words": [ + { + "word": " drive", + "start": 3116.3, + "end": 3116.46, + "probability": 0.703125 + } + ] + }, + { + "id": 3308, + "text": "like", + "start": 3116.46, + "end": 3116.8, + "words": [ + { + "word": " like", + "start": 3116.46, + "end": 3116.8, + "probability": 0.335693359375 + } + ] + }, + { + "id": 3309, + "text": "i", + "start": 3116.8, + "end": 3116.9, + "words": [ + { + "word": " i", + "start": 3116.8, + "end": 3116.9, + "probability": 0.64208984375 + } + ] + }, + { + "id": 3310, + "text": "said", + "start": 3116.9, + "end": 3117.08, + "words": [ + { + "word": " said", + "start": 3116.9, + "end": 3117.08, + "probability": 0.99609375 + } + ] + }, + { + "id": 3311, + "text": "has", + "start": 3117.08, + "end": 3117.22, + "words": [ + { + "word": " has", + "start": 3117.08, + "end": 3117.22, + "probability": 0.95263671875 + } + ] + }, + { + "id": 3312, + "text": "this", + "start": 3117.22, + "end": 3117.42, + "words": [ + { + "word": " this", + "start": 3117.22, + "end": 3117.42, + "probability": 0.93115234375 + } + ] + }, + { + "id": 3313, + "text": "affinity", + "start": 3117.42, + "end": 3117.76, + "words": [ + { + "word": " affinity", + "start": 3117.42, + "end": 3117.76, + "probability": 0.97412109375 + } + ] + }, + { + "id": 3314, + "text": "for", + "start": 3117.76, + "end": 3118.1, + "words": [ + { + "word": " for", + "start": 3117.76, + "end": 3118.1, + "probability": 0.98974609375 + } + ] + }, + { + "id": 3315, + "text": "pictures", + "start": 3118.1, + "end": 3118.38, + "words": [ + { + "word": " pictures", + "start": 3118.1, + "end": 3118.38, + "probability": 0.8701171875 + } + ] + }, + { + "id": 3316, + "text": "and", + "start": 3118.38, + "end": 3118.54, + "words": [ + { + "word": " and", + "start": 3118.38, + "end": 3118.54, + "probability": 0.90869140625 + } + ] + }, + { + "id": 3317, + "text": "music", + "start": 3118.54, + "end": 3118.74, + "words": [ + { + "word": " music", + "start": 3118.54, + "end": 3118.74, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3318, + "text": "because", + "start": 3118.74, + "end": 3119.06, + "words": [ + { + "word": " because", + "start": 3118.74, + "end": 3119.06, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3319, + "text": "that's", + "start": 3119.06, + "end": 3119.46, + "words": [ + { + "word": " that's", + "start": 3119.06, + "end": 3119.46, + "probability": 0.9677734375 + } + ] + }, + { + "id": 3320, + "text": "the", + "start": 3119.46, + "end": 3119.68, + "words": [ + { + "word": " the", + "start": 3119.46, + "end": 3119.68, + "probability": 0.9853515625 + } + ] + }, + { + "id": 3321, + "text": "general", + "start": 3119.68, + "end": 3120.26, + "words": [ + { + "word": " general", + "start": 3119.68, + "end": 3120.26, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3322, + "text": "usage", + "start": 3120.26, + "end": 3120.76, + "words": [ + { + "word": " usage", + "start": 3120.26, + "end": 3120.76, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3323, + "text": "for", + "start": 3120.76, + "end": 3121.16, + "words": [ + { + "word": " for", + "start": 3120.76, + "end": 3121.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3324, + "text": "people", + "start": 3121.16, + "end": 3121.52, + "words": [ + { + "word": " people", + "start": 3121.16, + "end": 3121.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 3325, + "text": "who", + "start": 3121.52, + "end": 3121.72, + "words": [ + { + "word": " who", + "start": 3121.52, + "end": 3121.72, + "probability": 0.98876953125 + } + ] + }, + { + "id": 3326, + "text": "are", + "start": 3121.72, + "end": 3121.82, + "words": [ + { + "word": " are", + "start": 3121.72, + "end": 3121.82, + "probability": 0.99072265625 + } + ] + }, + { + "id": 3327, + "text": "using", + "start": 3121.82, + "end": 3122.14, + "words": [ + { + "word": " using", + "start": 3121.82, + "end": 3122.14, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3328, + "text": "mac", + "start": 3122.14, + "end": 3122.84, + "words": [ + { + "word": " mac", + "start": 3122.14, + "end": 3122.84, + "probability": 0.8505859375 + } + ] + }, + { + "id": 3329, + "text": "computers", + "start": 3122.84, + "end": 3123.46, + "words": [ + { + "word": " computers", + "start": 3122.84, + "end": 3123.46, + "probability": 0.9912109375 + } + ] + }, + { + "id": 3330, + "text": "and", + "start": 3123.46, + "end": 3123.76, + "words": [ + { + "word": " and", + "start": 3123.46, + "end": 3123.76, + "probability": 0.9765625 + } + ] + }, + { + "id": 3331, + "text": "ios", + "start": 3123.76, + "end": 3124.08, + "words": [ + { + "word": " ios", + "start": 3123.76, + "end": 3124.08, + "probability": 0.9755859375 + } + ] + }, + { + "id": 3332, + "text": "devices", + "start": 3124.08, + "end": 3124.46, + "words": [ + { + "word": " devices", + "start": 3124.08, + "end": 3124.46, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3333, + "text": "you", + "start": 3125.1600000000003, + "end": 3125.76, + "words": [ + { + "word": " you", + "start": 3125.1600000000003, + "end": 3125.76, + "probability": 0.5458984375 + } + ] + }, + { + "id": 3334, + "text": "might", + "start": 3126.8599999999997, + "end": 3126.96, + "words": [ + { + "word": " might", + "start": 3126.66, + "end": 3126.96, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3335, + "text": "be", + "start": 3126.96, + "end": 3127.16, + "words": [ + { + "word": " be", + "start": 3126.96, + "end": 3127.16, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3336, + "text": "wanting", + "start": 3127.16, + "end": 3127.38, + "words": [ + { + "word": " wanting", + "start": 3127.16, + "end": 3127.38, + "probability": 0.99072265625 + } + ] + }, + { + "id": 3337, + "text": "to", + "start": 3127.38, + "end": 3127.78, + "words": [ + { + "word": " to", + "start": 3127.38, + "end": 3127.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3338, + "text": "look", + "start": 3127.78, + "end": 3127.92, + "words": [ + { + "word": " look", + "start": 3127.78, + "end": 3127.92, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3339, + "text": "at", + "start": 3127.92, + "end": 3128.02, + "words": [ + { + "word": " at", + "start": 3127.92, + "end": 3128.02, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3340, + "text": "something", + "start": 3128.02, + "end": 3128.18, + "words": [ + { + "word": " something", + "start": 3128.02, + "end": 3128.18, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3341, + "text": "like", + "start": 3128.18, + "end": 3128.48, + "words": [ + { + "word": " like", + "start": 3128.18, + "end": 3128.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3342, + "text": "dropbox", + "start": 3128.48, + "end": 3129.0, + "words": [ + { + "word": " dropbox", + "start": 3128.48, + "end": 3129.0, + "probability": 0.96728515625 + } + ] + }, + { + "id": 3343, + "text": "or", + "start": 3129.0, + "end": 3129.34, + "words": [ + { + "word": " or", + "start": 3129.0, + "end": 3129.34, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3344, + "text": "one", + "start": 3129.34, + "end": 3129.7, + "words": [ + { + "word": " one", + "start": 3129.34, + "end": 3129.7, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3345, + "text": "of", + "start": 3129.7, + "end": 3129.82, + "words": [ + { + "word": " of", + "start": 3129.7, + "end": 3129.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3346, + "text": "the", + "start": 3129.82, + "end": 3129.86, + "words": [ + { + "word": " the", + "start": 3129.82, + "end": 3129.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3347, + "text": "services", + "start": 3129.86, + "end": 3130.18, + "words": [ + { + "word": " services", + "start": 3129.86, + "end": 3130.18, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3348, + "text": "that", + "start": 3130.18, + "end": 3130.4, + "words": [ + { + "word": " that", + "start": 3130.18, + "end": 3130.4, + "probability": 0.9853515625 + } + ] + }, + { + "id": 3349, + "text": "we", + "start": 3130.4, + "end": 3130.54, + "words": [ + { + "word": " we", + "start": 3130.4, + "end": 3130.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3350, + "text": "provide", + "start": 3130.54, + "end": 3130.86, + "words": [ + { + "word": " provide", + "start": 3130.54, + "end": 3130.86, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3351, + "text": "we", + "start": 3130.86, + "end": 3131.08, + "words": [ + { + "word": " we", + "start": 3130.86, + "end": 3131.08, + "probability": 0.9765625 + } + ] + }, + { + "id": 3352, + "text": "provide", + "start": 3131.08, + "end": 3131.28, + "words": [ + { + "word": " provide", + "start": 3131.08, + "end": 3131.28, + "probability": 0.998046875 + } + ] + }, + { + "id": 3353, + "text": "known", + "start": 3131.28, + "end": 3131.52, + "words": [ + { + "word": " known", + "start": 3131.28, + "end": 3131.52, + "probability": 0.96142578125 + } + ] + }, + { + "id": 3354, + "text": "cloud", + "start": 3131.52, + "end": 3131.76, + "words": [ + { + "word": " cloud", + "start": 3131.52, + "end": 3131.76, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3355, + "text": "service", + "start": 3131.76, + "end": 3132.02, + "words": [ + { + "word": " service", + "start": 3131.76, + "end": 3132.02, + "probability": 0.99609375 + } + ] + }, + { + "id": 3356, + "text": "for", + "start": 3132.02, + "end": 3132.26, + "words": [ + { + "word": " for", + "start": 3132.02, + "end": 3132.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3357, + "text": "that", + "start": 3132.26, + "end": 3132.42, + "words": [ + { + "word": " that", + "start": 3132.26, + "end": 3132.42, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3358, + "text": "where", + "start": 3133.1, + "end": 3133.7, + "words": [ + { + "word": " where", + "start": 3133.1, + "end": 3133.7, + "probability": 0.86181640625 + } + ] + }, + { + "id": 3359, + "text": "you", + "start": 3133.7, + "end": 3134.52, + "words": [ + { + "word": " you", + "start": 3133.7, + "end": 3134.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3360, + "text": "can", + "start": 3134.52, + "end": 3134.76, + "words": [ + { + "word": " can", + "start": 3134.52, + "end": 3134.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3361, + "text": "synchronize", + "start": 3134.76, + "end": 3135.24, + "words": [ + { + "word": " synchronize", + "start": 3134.76, + "end": 3135.24, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3362, + "text": "huge", + "start": 3135.24, + "end": 3135.58, + "words": [ + { + "word": " huge", + "start": 3135.24, + "end": 3135.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3363, + "text": "amounts", + "start": 3135.58, + "end": 3135.84, + "words": [ + { + "word": " amounts", + "start": 3135.58, + "end": 3135.84, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3364, + "text": "of", + "start": 3135.84, + "end": 3136.0, + "words": [ + { + "word": " of", + "start": 3135.84, + "end": 3136.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3365, + "text": "data", + "start": 3136.0, + "end": 3136.24, + "words": [ + { + "word": " data", + "start": 3136.0, + "end": 3136.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3366, + "text": "and", + "start": 3136.24, + "end": 3136.8, + "words": [ + { + "word": " and", + "start": 3136.24, + "end": 3136.8, + "probability": 0.998046875 + } + ] + }, + { + "id": 3367, + "text": "numbers", + "start": 3136.8, + "end": 3137.28, + "words": [ + { + "word": " numbers", + "start": 3136.8, + "end": 3137.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3368, + "text": "of", + "start": 3137.28, + "end": 3137.48, + "words": [ + { + "word": " of", + "start": 3137.28, + "end": 3137.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3369, + "text": "files", + "start": 3137.48, + "end": 3137.78, + "words": [ + { + "word": " files", + "start": 3137.48, + "end": 3137.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3370, + "text": "with", + "start": 3137.78, + "end": 3138.28, + "words": [ + { + "word": " with", + "start": 3137.78, + "end": 3138.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3371, + "text": "any", + "start": 3138.28, + "end": 3139.48, + "words": [ + { + "word": " any", + "start": 3138.28, + "end": 3139.48, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3372, + "text": "number", + "start": 3139.48, + "end": 3139.72, + "words": [ + { + "word": " number", + "start": 3139.48, + "end": 3139.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3373, + "text": "of", + "start": 3139.72, + "end": 3139.9, + "words": [ + { + "word": " of", + "start": 3139.72, + "end": 3139.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3374, + "text": "devices", + "start": 3139.9, + "end": 3140.24, + "words": [ + { + "word": " devices", + "start": 3139.9, + "end": 3140.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3375, + "text": "is", + "start": 3140.96, + "end": 3141.56, + "words": [ + { + "word": " is", + "start": 3140.96, + "end": 3141.56, + "probability": 0.759765625 + } + ] + }, + { + "id": 3376, + "text": "part", + "start": 3141.56, + "end": 3142.04, + "words": [ + { + "word": " part", + "start": 3141.56, + "end": 3142.04, + "probability": 0.409912109375 + } + ] + }, + { + "id": 3377, + "text": "", + "start": 3142.04, + "end": 3142.04, + "words": [] + }, + { + "id": 3378, + "text": "the", + "start": 3142.04, + "end": 3142.26, + "words": [ + { + "word": " the", + "start": 3142.04, + "end": 3142.26, + "probability": 0.53125 + } + ] + }, + { + "id": 3379, + "text": "expression", + "start": 3142.26, + "end": 3142.58, + "words": [ + { + "word": " expression", + "start": 3142.26, + "end": 3142.58, + "probability": 0.89453125 + } + ] + }, + { + "id": 3380, + "text": "google", + "start": 3142.58, + "end": 3143.06, + "words": [ + { + "word": " google", + "start": 3142.58, + "end": 3143.06, + "probability": 0.10498046875 + } + ] + }, + { + "id": 3381, + "text": "services", + "start": 3143.06, + "end": 3143.94, + "words": [ + { + "word": " services", + "start": 3143.06, + "end": 3143.94, + "probability": 0.791015625 + } + ] + }, + { + "id": 3382, + "text": "are", + "start": 3143.94, + "end": 3144.52, + "words": [ + { + "word": " are", + "start": 3143.94, + "end": 3144.52, + "probability": 0.625 + } + ] + }, + { + "id": 3383, + "text": "available", + "start": 3144.52, + "end": 3144.84, + "words": [ + { + "word": " available", + "start": 3144.52, + "end": 3144.84, + "probability": 0.64697265625 + } + ] + }, + { + "id": 3384, + "text": "for", + "start": 3144.84, + "end": 3145.48, + "words": [ + { + "word": " for", + "start": 3144.84, + "end": 3145.48, + "probability": 0.95751953125 + } + ] + }, + { + "id": 3385, + "text": "it", + "start": 3145.48, + "end": 3145.7, + "words": [ + { + "word": " it", + "start": 3145.48, + "end": 3145.7, + "probability": 0.869140625 + } + ] + }, + { + "id": 3386, + "text": "google", + "start": 3145.7, + "end": 3146.14, + "words": [ + { + "word": " google", + "start": 3145.7, + "end": 3146.14, + "probability": 0.03594970703125 + } + ] + }, + { + "id": 3387, + "text": "drive", + "start": 3146.14, + "end": 3146.62, + "words": [ + { + "word": " drive", + "start": 3146.14, + "end": 3146.62, + "probability": 0.9921875 + } + ] + }, + { + "id": 3388, + "text": "would", + "start": 3146.62, + "end": 3146.84, + "words": [ + { + "word": " would", + "start": 3146.62, + "end": 3146.84, + "probability": 0.97412109375 + } + ] + }, + { + "id": 3389, + "text": "work", + "start": 3146.84, + "end": 3147.04, + "words": [ + { + "word": " work", + "start": 3146.84, + "end": 3147.04, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3390, + "text": "for", + "start": 3147.04, + "end": 3147.16, + "words": [ + { + "word": " for", + "start": 3147.04, + "end": 3147.16, + "probability": 0.9765625 + } + ] + }, + { + "id": 3391, + "text": "that", + "start": 3147.16, + "end": 3147.28, + "words": [ + { + "word": " that", + "start": 3147.16, + "end": 3147.28, + "probability": 0.98291015625 + } + ] + }, + { + "id": 3392, + "text": "but", + "start": 3147.28, + "end": 3147.48, + "words": [ + { + "word": " but", + "start": 3147.28, + "end": 3147.48, + "probability": 0.94677734375 + } + ] + }, + { + "id": 3393, + "text": "the", + "start": 3147.48, + "end": 3147.62, + "words": [ + { + "word": " the", + "start": 3147.48, + "end": 3147.62, + "probability": 0.99609375 + } + ] + }, + { + "id": 3394, + "text": "problem", + "start": 3147.62, + "end": 3147.92, + "words": [ + { + "word": " problem", + "start": 3147.62, + "end": 3147.92, + "probability": 0.97998046875 + } + ] + }, + { + "id": 3395, + "text": "with", + "start": 3147.92, + "end": 3148.18, + "words": [ + { + "word": " with", + "start": 3147.92, + "end": 3148.18, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3396, + "text": "the", + "start": 3148.18, + "end": 3148.5, + "words": [ + { + "word": " the", + "start": 3148.18, + "end": 3148.5, + "probability": 0.96533203125 + } + ] + }, + { + "id": 3397, + "text": "ios", + "start": 3148.5, + "end": 3149.48, + "words": [ + { + "word": " ios", + "start": 3148.5, + "end": 3149.48, + "probability": 0.85888671875 + } + ] + }, + { + "id": 3398, + "text": "side", + "start": 3149.48, + "end": 3149.9, + "words": [ + { + "word": " side", + "start": 3149.48, + "end": 3149.9, + "probability": 0.96826171875 + } + ] + }, + { + "id": 3399, + "text": "is", + "start": 3149.9, + "end": 3150.28, + "words": [ + { + "word": " is", + "start": 3149.9, + "end": 3150.28, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3400, + "text": "that", + "start": 3150.28, + "end": 3150.5, + "words": [ + { + "word": " that", + "start": 3150.28, + "end": 3150.5, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3401, + "text": "it", + "start": 3150.5, + "end": 3150.96, + "words": [ + { + "word": " it", + "start": 3150.5, + "end": 3150.96, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3402, + "text": "doesn't", + "start": 3150.96, + "end": 3151.28, + "words": [ + { + "word": " doesn't", + "start": 3150.96, + "end": 3151.28, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3403, + "text": "play", + "start": 3151.28, + "end": 3151.52, + "words": [ + { + "word": " play", + "start": 3151.28, + "end": 3151.52, + "probability": 0.998046875 + } + ] + }, + { + "id": 3404, + "text": "real", + "start": 3151.52, + "end": 3151.8, + "words": [ + { + "word": " real", + "start": 3151.52, + "end": 3151.8, + "probability": 0.9873046875 + } + ] + }, + { + "id": 3405, + "text": "nice", + "start": 3151.8, + "end": 3152.12, + "words": [ + { + "word": " nice", + "start": 3151.8, + "end": 3152.12, + "probability": 0.9892578125 + } + ] + }, + { + "id": 3406, + "text": "with", + "start": 3152.12, + "end": 3152.34, + "words": [ + { + "word": " with", + "start": 3152.12, + "end": 3152.34, + "probability": 0.994140625 + } + ] + }, + { + "id": 3407, + "text": "the", + "start": 3152.34, + "end": 3152.82, + "words": [ + { + "word": " the", + "start": 3152.34, + "end": 3152.82, + "probability": 0.7509765625 + } + ] + }, + { + "id": 3408, + "text": "i", + "start": 3152.82, + "end": 3153.3, + "words": [ + { + "word": " i", + "start": 3152.82, + "end": 3153.3, + "probability": 0.958984375 + } + ] + }, + { + "id": 3409, + "text": "devices", + "start": 3153.3, + "end": 3153.72, + "words": [ + { + "word": " devices", + "start": 3153.3, + "end": 3153.72, + "probability": 0.791015625 + } + ] + }, + { + "id": 3410, + "text": "so", + "start": 3154.98, + "end": 3155.54, + "words": [ + { + "word": " so", + "start": 3154.98, + "end": 3155.54, + "probability": 0.92626953125 + } + ] + }, + { + "id": 3411, + "text": "you're", + "start": 3155.54, + "end": 3156.18, + "words": [ + { + "word": " you're", + "start": 3155.54, + "end": 3156.18, + "probability": 0.98876953125 + } + ] + }, + { + "id": 3412, + "text": "going to", + "start": 3156.18, + "end": 3156.38, + "words": [ + { + "word": " going", + "start": 3156.18, + "end": 3156.32, + "probability": 0.95703125 + }, + { + "word": " to", + "start": 3156.32, + "end": 3156.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3413, + "text": "look at", + "start": 3156.38, + "end": 3156.68, + "words": [ + { + "word": " look", + "start": 3156.38, + "end": 3156.56, + "probability": 0.270751953125 + }, + { + "word": " at", + "start": 3156.56, + "end": 3156.68, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3414, + "text": "something", + "start": 3156.68, + "end": 3156.82, + "words": [ + { + "word": " something", + "start": 3156.68, + "end": 3156.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 3415, + "text": "that's", + "start": 3156.82, + "end": 3157.02, + "words": [ + { + "word": " that's", + "start": 3156.82, + "end": 3157.02, + "probability": 0.9794921875 + } + ] + }, + { + "id": 3416, + "text": "a little", + "start": 3157.02, + "end": 3157.08, + "words": [ + { + "word": " a", + "start": 3157.02, + "end": 3157.06, + "probability": 0.99365234375 + }, + { + "word": " little", + "start": 3157.06, + "end": 3157.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3417, + "text": "more", + "start": 3157.08, + "end": 3157.24, + "words": [ + { + "word": " more", + "start": 3157.08, + "end": 3157.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3418, + "text": "neutral", + "start": 3157.24, + "end": 3157.64, + "words": [ + { + "word": " neutral", + "start": 3157.24, + "end": 3157.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3419, + "text": "just", + "start": 3157.64, + "end": 3158.04, + "words": [ + { + "word": " just", + "start": 3157.64, + "end": 3158.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 3420, + "text": "because", + "start": 3158.04, + "end": 3158.3, + "words": [ + { + "word": " because", + "start": 3158.04, + "end": 3158.3, + "probability": 1.0 + } + ] + }, + { + "id": 3421, + "text": "google", + "start": 3158.3, + "end": 3158.8, + "words": [ + { + "word": " google", + "start": 3158.3, + "end": 3158.8, + "probability": 0.8310546875 + } + ] + }, + { + "id": 3422, + "text": "and", + "start": 3158.8, + "end": 3159.46, + "words": [ + { + "word": " and", + "start": 3158.8, + "end": 3159.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3423, + "text": "apple", + "start": 3159.46, + "end": 3160.02, + "words": [ + { + "word": " apple", + "start": 3159.46, + "end": 3160.02, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3424, + "text": "don't", + "start": 3160.02, + "end": 3160.24, + "words": [ + { + "word": " don't", + "start": 3160.02, + "end": 3160.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3425, + "text": "necessarily", + "start": 3160.24, + "end": 3160.52, + "words": [ + { + "word": " necessarily", + "start": 3160.24, + "end": 3160.52, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3426, + "text": "get", + "start": 3160.52, + "end": 3160.88, + "words": [ + { + "word": " get", + "start": 3160.52, + "end": 3160.88, + "probability": 1.0 + } + ] + }, + { + "id": 3427, + "text": "along", + "start": 3160.88, + "end": 3161.02, + "words": [ + { + "word": " along", + "start": 3160.88, + "end": 3161.02, + "probability": 1.0 + } + ] + }, + { + "id": 3428, + "text": "all", + "start": 3161.02, + "end": 3161.28, + "words": [ + { + "word": " all", + "start": 3161.02, + "end": 3161.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3429, + "text": "the", + "start": 3161.28, + "end": 3161.4, + "words": [ + { + "word": " the", + "start": 3161.28, + "end": 3161.4, + "probability": 1.0 + } + ] + }, + { + "id": 3430, + "text": "time", + "start": 3161.4, + "end": 3161.66, + "words": [ + { + "word": " time", + "start": 3161.4, + "end": 3161.66, + "probability": 1.0 + } + ] + }, + { + "id": 3431, + "text": "so", + "start": 3161.66, + "end": 3162.62, + "words": [ + { + "word": " so", + "start": 3161.66, + "end": 3162.62, + "probability": 0.56201171875 + } + ] + }, + { + "id": 3432, + "text": "i", + "start": 3164.16, + "end": 3164.72, + "words": [ + { + "word": " i", + "start": 3164.16, + "end": 3164.72, + "probability": 0.87158203125 + } + ] + }, + { + "id": 3433, + "text": "guess", + "start": 3164.72, + "end": 3164.88, + "words": [ + { + "word": " guess", + "start": 3164.72, + "end": 3164.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3434, + "text": "that's", + "start": 3164.88, + "end": 3165.2, + "words": [ + { + "word": " that's", + "start": 3164.88, + "end": 3165.2, + "probability": 1.0 + } + ] + }, + { + "id": 3435, + "text": "the", + "start": 3165.2, + "end": 3165.36, + "words": [ + { + "word": " the", + "start": 3165.2, + "end": 3165.36, + "probability": 0.994140625 + } + ] + }, + { + "id": 3436, + "text": "rub", + "start": 3165.36, + "end": 3166.14, + "words": [ + { + "word": " rub", + "start": 3165.36, + "end": 3166.14, + "probability": 0.9287109375 + } + ] + }, + { + "id": 3437, + "text": "i", + "start": 3166.14, + "end": 3166.52, + "words": [ + { + "word": " i", + "start": 3166.14, + "end": 3166.52, + "probability": 0.68408203125 + } + ] + }, + { + "id": 3438, + "text": "do", + "start": 3166.52, + "end": 3167.14, + "words": [ + { + "word": " do", + "start": 3166.52, + "end": 3167.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3439, + "text": "have", + "start": 3167.14, + "end": 3167.26, + "words": [ + { + "word": " have", + "start": 3167.14, + "end": 3167.26, + "probability": 1.0 + } + ] + }, + { + "id": 3440, + "text": "a lot", + "start": 3167.26, + "end": 3167.54, + "words": [ + { + "word": " a", + "start": 3167.26, + "end": 3167.4, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3167.4, + "end": 3167.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3441, + "text": "of", + "start": 3167.54, + "end": 3167.64, + "words": [ + { + "word": " of", + "start": 3167.54, + "end": 3167.64, + "probability": 1.0 + } + ] + }, + { + "id": 3442, + "text": "pictures", + "start": 3167.64, + "end": 3167.92, + "words": [ + { + "word": " pictures", + "start": 3167.64, + "end": 3167.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3443, + "text": "like", + "start": 3167.92, + "end": 3168.16, + "words": [ + { + "word": " like", + "start": 3167.92, + "end": 3168.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3444, + "text": "everybody", + "start": 3168.16, + "end": 3168.4, + "words": [ + { + "word": " everybody", + "start": 3168.16, + "end": 3168.4, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3445, + "text": "else", + "start": 3168.4, + "end": 3168.74, + "words": [ + { + "word": " else", + "start": 3168.4, + "end": 3168.74, + "probability": 0.998046875 + } + ] + }, + { + "id": 3446, + "text": "does", + "start": 3168.74, + "end": 3169.02, + "words": [ + { + "word": " does", + "start": 3168.74, + "end": 3169.02, + "probability": 0.97900390625 + } + ] + }, + { + "id": 3447, + "text": "but", + "start": 3169.02, + "end": 3169.24, + "words": [ + { + "word": " but", + "start": 3169.02, + "end": 3169.24, + "probability": 0.53173828125 + } + ] + }, + { + "id": 3448, + "text": "the", + "start": 3169.92, + "end": 3170.36, + "words": [ + { + "word": " the", + "start": 3169.92, + "end": 3170.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3449, + "text": "pictures", + "start": 3170.36, + "end": 3170.72, + "words": [ + { + "word": " pictures", + "start": 3170.36, + "end": 3170.72, + "probability": 0.10150146484375 + } + ] + }, + { + "id": 3450, + "text": "seems", + "start": 3170.72, + "end": 3170.98, + "words": [ + { + "word": " seems", + "start": 3170.72, + "end": 3170.98, + "probability": 0.1937255859375 + } + ] + }, + { + "id": 3451, + "text": "to be", + "start": 3170.98, + "end": 3171.38, + "words": [ + { + "word": " to", + "start": 3170.98, + "end": 3171.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 3171.2, + "end": 3171.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3452, + "text": "just", + "start": 3171.38, + "end": 3171.64, + "words": [ + { + "word": " just", + "start": 3171.38, + "end": 3171.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3453, + "text": "fine", + "start": 3171.64, + "end": 3172.02, + "words": [ + { + "word": " fine", + "start": 3171.64, + "end": 3172.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3454, + "text": "probably", + "start": 3172.02, + "end": 3172.82, + "words": [ + { + "word": " probably", + "start": 3172.02, + "end": 3172.82, + "probability": 0.1846923828125 + } + ] + }, + { + "id": 3455, + "text": "seven or", + "start": 3173.44, + "end": 3174.04, + "words": [ + { + "word": " seven", + "start": 3173.44, + "end": 3173.88, + "probability": 0.313720703125 + }, + { + "word": " or", + "start": 3173.88, + "end": 3174.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3456, + "text": "eight", + "start": 3174.04, + "end": 3174.16, + "words": [ + { + "word": " eight", + "start": 3174.04, + "end": 3174.16, + "probability": 0.97265625 + } + ] + }, + { + "id": 3457, + "text": "thousand", + "start": 3174.16, + "end": 3174.48, + "words": [ + { + "word": " thousand", + "start": 3174.16, + "end": 3174.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3458, + "text": "pictures", + "start": 3174.48, + "end": 3174.88, + "words": [ + { + "word": " pictures", + "start": 3174.48, + "end": 3174.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3459, + "text": "i", + "start": 3174.88, + "end": 3175.18, + "words": [ + { + "word": " i", + "start": 3174.88, + "end": 3175.18, + "probability": 0.222412109375 + } + ] + }, + { + "id": 3460, + "text": "guess", + "start": 3175.18, + "end": 3175.32, + "words": [ + { + "word": " guess", + "start": 3175.18, + "end": 3175.32, + "probability": 1.0 + } + ] + }, + { + "id": 3461, + "text": "not", + "start": 3175.32, + "end": 3175.48, + "words": [ + { + "word": " not", + "start": 3175.32, + "end": 3175.48, + "probability": 0.99267578125 + } + ] + }, + { + "id": 3462, + "text": "too", + "start": 3175.48, + "end": 3175.64, + "words": [ + { + "word": " too", + "start": 3175.48, + "end": 3175.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3463, + "text": "many", + "start": 3175.64, + "end": 3175.88, + "words": [ + { + "word": " many", + "start": 3175.64, + "end": 3175.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3464, + "text": "these", + "start": 3175.88, + "end": 3176.1, + "words": [ + { + "word": " these", + "start": 3175.88, + "end": 3176.1, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3465, + "text": "days", + "start": 3176.1, + "end": 3176.42, + "words": [ + { + "word": " days", + "start": 3176.1, + "end": 3176.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3466, + "text": "but", + "start": 3176.9, + "end": 3177.34, + "words": [ + { + "word": " but", + "start": 3176.9, + "end": 3177.34, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3467, + "text": "they", + "start": 3177.34, + "end": 3177.78, + "words": [ + { + "word": " they", + "start": 3177.34, + "end": 3177.78, + "probability": 0.51513671875 + } + ] + }, + { + "id": 3468, + "text": "seem", + "start": 3177.78, + "end": 3178.12, + "words": [ + { + "word": " seem", + "start": 3177.78, + "end": 3178.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3469, + "text": "to", + "start": 3178.12, + "end": 3178.24, + "words": [ + { + "word": " to", + "start": 3178.12, + "end": 3178.24, + "probability": 1.0 + } + ] + }, + { + "id": 3470, + "text": "be", + "start": 3178.24, + "end": 3178.36, + "words": [ + { + "word": " be", + "start": 3178.24, + "end": 3178.36, + "probability": 1.0 + } + ] + }, + { + "id": 3471, + "text": "fine", + "start": 3178.36, + "end": 3178.66, + "words": [ + { + "word": " fine", + "start": 3178.36, + "end": 3178.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3472, + "text": "right", + "start": 3178.66, + "end": 3179.26, + "words": [ + { + "word": " right", + "start": 3178.66, + "end": 3179.26, + "probability": 0.9306640625 + } + ] + }, + { + "id": 3473, + "text": "and i", + "start": 3179.26, + "end": 3179.68, + "words": [ + { + "word": " and", + "start": 3179.26, + "end": 3179.48, + "probability": 0.9970703125 + }, + { + "word": " i", + "start": 3179.48, + "end": 3179.68, + "probability": 0.990234375 + } + ] + }, + { + "id": 3474, + "text": "think", + "start": 3179.68, + "end": 3179.86, + "words": [ + { + "word": " think", + "start": 3179.68, + "end": 3179.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3475, + "text": "it's", + "start": 3179.86, + "end": 3180.02, + "words": [ + { + "word": " it's", + "start": 3179.86, + "end": 3180.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3476, + "text": "just", + "start": 3180.02, + "end": 3180.12, + "words": [ + { + "word": " just", + "start": 3180.02, + "end": 3180.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 3477, + "text": "because", + "start": 3180.12, + "end": 3180.44, + "words": [ + { + "word": " because", + "start": 3180.12, + "end": 3180.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3478, + "text": "it", + "start": 3180.44, + "end": 3180.72, + "words": [ + { + "word": " it", + "start": 3180.44, + "end": 3180.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3479, + "text": "preferences", + "start": 3181.2999999999997, + "end": 3181.74, + "words": [ + { + "word": " preferences", + "start": 3181.2999999999997, + "end": 3181.74, + "probability": 0.11602783203125 + } + ] + }, + { + "id": 3480, + "text": "those", + "start": 3181.74, + "end": 3182.56, + "words": [ + { + "word": " those", + "start": 3181.74, + "end": 3182.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3481, + "text": "particular", + "start": 3182.56, + "end": 3183.18, + "words": [ + { + "word": " particular", + "start": 3182.56, + "end": 3183.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3482, + "text": "types", + "start": 3183.18, + "end": 3183.58, + "words": [ + { + "word": " types", + "start": 3183.18, + "end": 3183.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3483, + "text": "of", + "start": 3183.58, + "end": 3183.76, + "words": [ + { + "word": " of", + "start": 3183.58, + "end": 3183.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3484, + "text": "files", + "start": 3183.76, + "end": 3184.14, + "words": [ + { + "word": " files", + "start": 3183.76, + "end": 3184.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3485, + "text": "where", + "start": 3184.14, + "end": 3184.94, + "words": [ + { + "word": " where", + "start": 3184.14, + "end": 3184.94, + "probability": 0.74365234375 + } + ] + }, + { + "id": 3486, + "text": "something", + "start": 3184.94, + "end": 3185.18, + "words": [ + { + "word": " something", + "start": 3184.94, + "end": 3185.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3487, + "text": "like", + "start": 3185.18, + "end": 3185.46, + "words": [ + { + "word": " like", + "start": 3185.18, + "end": 3185.46, + "probability": 1.0 + } + ] + }, + { + "id": 3488, + "text": "dropbox", + "start": 3185.46, + "end": 3185.96, + "words": [ + { + "word": " dropbox", + "start": 3185.46, + "end": 3185.96, + "probability": 0.966796875 + } + ] + }, + { + "id": 3489, + "text": "or", + "start": 3185.96, + "end": 3186.16, + "words": [ + { + "word": " or", + "start": 3185.96, + "end": 3186.16, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3490, + "text": "uncle", + "start": 3186.16, + "end": 3186.34, + "words": [ + { + "word": " uncle", + "start": 3186.16, + "end": 3186.34, + "probability": 0.342041015625 + } + ] + }, + { + "id": 3491, + "text": "like", + "start": 3186.34, + "end": 3186.54, + "words": [ + { + "word": " like", + "start": 3186.34, + "end": 3186.54, + "probability": 0.86181640625 + } + ] + }, + { + "id": 3492, + "text": "that", + "start": 3186.54, + "end": 3186.84, + "words": [ + { + "word": " that", + "start": 3186.54, + "end": 3186.84, + "probability": 1.0 + } + ] + }, + { + "id": 3493, + "text": "does", + "start": 3186.84, + "end": 3187.38, + "words": [ + { + "word": " does", + "start": 3186.84, + "end": 3187.38, + "probability": 0.990234375 + } + ] + }, + { + "id": 3494, + "text": "not", + "start": 3187.38, + "end": 3187.64, + "words": [ + { + "word": " not", + "start": 3187.38, + "end": 3187.64, + "probability": 1.0 + } + ] + }, + { + "id": 3495, + "text": "care", + "start": 3187.64, + "end": 3187.84, + "words": [ + { + "word": " care", + "start": 3187.64, + "end": 3187.84, + "probability": 1.0 + } + ] + }, + { + "id": 3496, + "text": "at", + "start": 3187.84, + "end": 3188.0, + "words": [ + { + "word": " at", + "start": 3187.84, + "end": 3188.0, + "probability": 1.0 + } + ] + }, + { + "id": 3497, + "text": "all", + "start": 3188.0, + "end": 3188.1, + "words": [ + { + "word": " all", + "start": 3188.0, + "end": 3188.1, + "probability": 1.0 + } + ] + }, + { + "id": 3498, + "text": "what", + "start": 3188.1, + "end": 3188.32, + "words": [ + { + "word": " what", + "start": 3188.1, + "end": 3188.32, + "probability": 1.0 + } + ] + }, + { + "id": 3499, + "text": "type", + "start": 3188.32, + "end": 3188.52, + "words": [ + { + "word": " type", + "start": 3188.32, + "end": 3188.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3500, + "text": "of", + "start": 3188.52, + "end": 3188.7, + "words": [ + { + "word": " of", + "start": 3188.52, + "end": 3188.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3501, + "text": "data", + "start": 3188.7, + "end": 3188.9, + "words": [ + { + "word": " data", + "start": 3188.7, + "end": 3188.9, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3502, + "text": "it", + "start": 3188.9, + "end": 3189.06, + "words": [ + { + "word": " it", + "start": 3188.9, + "end": 3189.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3503, + "text": "is", + "start": 3189.06, + "end": 3189.24, + "words": [ + { + "word": " is", + "start": 3189.06, + "end": 3189.24, + "probability": 1.0 + } + ] + }, + { + "id": 3504, + "text": "it", + "start": 3189.24, + "end": 3189.32, + "words": [ + { + "word": " it", + "start": 3189.24, + "end": 3189.32, + "probability": 0.99609375 + } + ] + }, + { + "id": 3505, + "text": "just", + "start": 3189.32, + "end": 3189.52, + "words": [ + { + "word": " just", + "start": 3189.32, + "end": 3189.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3506, + "text": "knows", + "start": 3189.52, + "end": 3189.74, + "words": [ + { + "word": " knows", + "start": 3189.52, + "end": 3189.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3507, + "text": "that", + "start": 3189.74, + "end": 3189.92, + "words": [ + { + "word": " that", + "start": 3189.74, + "end": 3189.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3508, + "text": "it", + "start": 3189.92, + "end": 3190.06, + "words": [ + { + "word": " it", + "start": 3189.92, + "end": 3190.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3509, + "text": "is", + "start": 3190.06, + "end": 3190.2, + "words": [ + { + "word": " is", + "start": 3190.06, + "end": 3190.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3510, + "text": "data", + "start": 3190.2, + "end": 3190.46, + "words": [ + { + "word": " data", + "start": 3190.2, + "end": 3190.46, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3511, + "text": "and", + "start": 3190.46, + "end": 3190.62, + "words": [ + { + "word": " and", + "start": 3190.46, + "end": 3190.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3512, + "text": "it", + "start": 3190.62, + "end": 3190.72, + "words": [ + { + "word": " it", + "start": 3190.62, + "end": 3190.72, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3513, + "text": "moves", + "start": 3190.72, + "end": 3190.98, + "words": [ + { + "word": " moves", + "start": 3190.72, + "end": 3190.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 3514, + "text": "it", + "start": 3190.98, + "end": 3191.12, + "words": [ + { + "word": " it", + "start": 3190.98, + "end": 3191.12, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3515, + "text": "what", + "start": 3191.9, + "end": 3192.34, + "words": [ + { + "word": " what", + "start": 3191.9, + "end": 3192.34, + "probability": 0.99609375 + } + ] + }, + { + "id": 3516, + "text": "security", + "start": 3192.34, + "end": 3192.8, + "words": [ + { + "word": " security", + "start": 3192.34, + "end": 3192.8, + "probability": 0.7275390625 + } + ] + }, + { + "id": 3517, + "text": "concerns", + "start": 3192.8, + "end": 3193.58, + "words": [ + { + "word": " concerns", + "start": 3192.8, + "end": 3193.58, + "probability": 0.9912109375 + } + ] + }, + { + "id": 3518, + "text": "should", + "start": 3193.58, + "end": 3194.2, + "words": [ + { + "word": " should", + "start": 3193.58, + "end": 3194.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3519, + "text": "someone", + "start": 3194.2, + "end": 3194.44, + "words": [ + { + "word": " someone", + "start": 3194.2, + "end": 3194.44, + "probability": 0.051422119140625 + } + ] + }, + { + "id": 3520, + "text": "have", + "start": 3194.44, + "end": 3195.1, + "words": [ + { + "word": " have", + "start": 3194.44, + "end": 3195.1, + "probability": 0.98974609375 + } + ] + }, + { + "id": 3521, + "text": "about", + "start": 3195.1, + "end": 3195.38, + "words": [ + { + "word": " about", + "start": 3195.1, + "end": 3195.38, + "probability": 0.99609375 + } + ] + }, + { + "id": 3522, + "text": "dropbox", + "start": 3195.38, + "end": 3196.06, + "words": [ + { + "word": " dropbox", + "start": 3195.38, + "end": 3196.06, + "probability": 0.410888671875 + } + ] + }, + { + "id": 3523, + "text": "other", + "start": 3197.26, + "end": 3197.92, + "words": [ + { + "word": " other", + "start": 3197.26, + "end": 3197.92, + "probability": 0.313232421875 + } + ] + }, + { + "id": 3524, + "text": "than", + "start": 3198.46, + "end": 3198.62, + "words": [ + { + "word": " than", + "start": 3198.29, + "end": 3198.62, + "probability": 0.9814453125 + } + ] + }, + { + "id": 3525, + "text": "other", + "start": 3198.62, + "end": 3199.08, + "words": [ + { + "word": " other", + "start": 3198.62, + "end": 3199.08, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3526, + "text": "types", + "start": 3199.08, + "end": 3199.48, + "words": [ + { + "word": " types", + "start": 3199.08, + "end": 3199.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 3527, + "text": "of", + "start": 3199.48, + "end": 3199.88, + "words": [ + { + "word": " of", + "start": 3199.48, + "end": 3199.88, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3528, + "text": "dropbox", + "start": 3200.98, + "end": 3201.64, + "words": [ + { + "word": " dropbox", + "start": 3200.98, + "end": 3201.64, + "probability": 0.845703125 + } + ] + }, + { + "id": 3529, + "text": "itself", + "start": 3201.64, + "end": 3201.92, + "words": [ + { + "word": " itself", + "start": 3201.64, + "end": 3201.92, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3530, + "text": "virtually", + "start": 3202.78, + "end": 3203.44, + "words": [ + { + "word": " virtually", + "start": 3202.78, + "end": 3203.44, + "probability": 0.9921875 + } + ] + }, + { + "id": 3531, + "text": "none", + "start": 3203.44, + "end": 3203.84, + "words": [ + { + "word": " none", + "start": 3203.44, + "end": 3203.84, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3532, + "text": "but", + "start": 3203.84, + "end": 3204.86, + "words": [ + { + "word": " but", + "start": 3203.84, + "end": 3204.86, + "probability": 0.947265625 + } + ] + }, + { + "id": 3533, + "text": "when it", + "start": 3204.86, + "end": 3205.32, + "words": [ + { + "word": " when", + "start": 3204.86, + "end": 3205.2, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 3205.2, + "end": 3205.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3534, + "text": "comes", + "start": 3205.32, + "end": 3205.5, + "words": [ + { + "word": " comes", + "start": 3205.32, + "end": 3205.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3535, + "text": "to", + "start": 3205.5, + "end": 3205.66, + "words": [ + { + "word": " to", + "start": 3205.5, + "end": 3205.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3536, + "text": "tangential", + "start": 3205.66, + "end": 3206.5, + "words": [ + { + "word": " tangential", + "start": 3205.66, + "end": 3206.5, + "probability": 0.76123046875 + } + ] + }, + { + "id": 3537, + "text": "stuff", + "start": 3206.5, + "end": 3206.86, + "words": [ + { + "word": " stuff", + "start": 3206.5, + "end": 3206.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 3538, + "text": "like", + "start": 3206.86, + "end": 3207.34, + "words": [ + { + "word": " like", + "start": 3206.86, + "end": 3207.34, + "probability": 0.80078125 + } + ] + }, + { + "id": 3539, + "text": "if you get a certain type of infection", + "start": 3207.34, + "end": 3208.94, + "words": [ + { + "word": " if", + "start": 3207.34, + "end": 3207.72, + "probability": 0.88623046875 + }, + { + "word": " you", + "start": 3207.72, + "end": 3207.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 3207.88, + "end": 3208.0, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3208.0, + "end": 3208.12, + "probability": 0.99560546875 + }, + { + "word": " certain", + "start": 3208.12, + "end": 3208.22, + "probability": 0.9970703125 + }, + { + "word": " type", + "start": 3208.22, + "end": 3208.46, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 3208.46, + "end": 3208.6, + "probability": 0.99951171875 + }, + { + "word": " infection", + "start": 3208.6, + "end": 3208.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3540, + "text": "that can damage", + "start": 3208.94, + "end": 3209.8, + "words": [ + { + "word": " that", + "start": 3208.94, + "end": 3209.18, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 3209.18, + "end": 3209.34, + "probability": 0.9990234375 + }, + { + "word": " damage", + "start": 3209.34, + "end": 3209.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3541, + "text": "the source", + "start": 3209.8, + "end": 3210.84, + "words": [ + { + "word": " the", + "start": 3209.8, + "end": 3210.16, + "probability": 0.99951171875 + }, + { + "word": " source", + "start": 3210.16, + "end": 3210.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3542, + "text": "data", + "start": 3210.84, + "end": 3211.14, + "words": [ + { + "word": " data", + "start": 3210.84, + "end": 3211.14, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3543, + "text": "then that would", + "start": 3211.14, + "end": 3212.68, + "words": [ + { + "word": " then", + "start": 3211.14, + "end": 3212.08, + "probability": 0.97509765625 + }, + { + "word": " that", + "start": 3212.08, + "end": 3212.5, + "probability": 1.0 + }, + { + "word": " would", + "start": 3212.5, + "end": 3212.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3544, + "text": "carry along", + "start": 3212.68, + "end": 3213.52, + "words": [ + { + "word": " carry", + "start": 3212.68, + "end": 3213.2, + "probability": 0.99951171875 + }, + { + "word": " along", + "start": 3213.2, + "end": 3213.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3545, + "text": "to something", + "start": 3213.52, + "end": 3214.56, + "words": [ + { + "word": " to", + "start": 3213.52, + "end": 3214.0, + "probability": 0.984375 + }, + { + "word": " something", + "start": 3214.0, + "end": 3214.56, + "probability": 0.98974609375 + } + ] + }, + { + "id": 3546, + "text": "like", + "start": 3214.56, + "end": 3214.9, + "words": [ + { + "word": " like", + "start": 3214.56, + "end": 3214.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3547, + "text": "either", + "start": 3214.9, + "end": 3215.94, + "words": [ + { + "word": " either", + "start": 3214.9, + "end": 3215.94, + "probability": 0.8232421875 + } + ] + }, + { + "id": 3548, + "text": "dropbox", + "start": 3215.94, + "end": 3217.08, + "words": [ + { + "word": " dropbox", + "start": 3215.94, + "end": 3217.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3549, + "text": "or uncle", + "start": 3217.08, + "end": 3217.4, + "words": [ + { + "word": " or", + "start": 3217.08, + "end": 3217.24, + "probability": 0.9853515625 + }, + { + "word": " uncle", + "start": 3217.24, + "end": 3217.4, + "probability": 0.005313873291015625 + } + ] + }, + { + "id": 3550, + "text": "or anything", + "start": 3217.4, + "end": 3217.78, + "words": [ + { + "word": " or", + "start": 3217.4, + "end": 3217.56, + "probability": 0.0006189346313476562 + }, + { + "word": " anything", + "start": 3217.56, + "end": 3217.78, + "probability": 0.958984375 + } + ] + }, + { + "id": 3551, + "text": "like that", + "start": 3217.78, + "end": 3218.24, + "words": [ + { + "word": " like", + "start": 3217.78, + "end": 3218.06, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 3218.06, + "end": 3218.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3552, + "text": "right", + "start": 3218.24, + "end": 3218.84, + "words": [ + { + "word": " right", + "start": 3218.24, + "end": 3218.84, + "probability": 0.46533203125 + } + ] + }, + { + "id": 3553, + "text": "ok", + "start": 3218.84, + "end": 3219.14, + "words": [ + { + "word": " ok", + "start": 3218.84, + "end": 3219.14, + "probability": 0.52978515625 + } + ] + }, + { + "id": 3554, + "text": "i figured", + "start": 3219.14, + "end": 3219.6, + "words": [ + { + "word": " i", + "start": 3219.14, + "end": 3219.36, + "probability": 0.427978515625 + }, + { + "word": " figured", + "start": 3219.36, + "end": 3219.6, + "probability": 0.9794921875 + } + ] + }, + { + "id": 3555, + "text": "that", + "start": 3219.6, + "end": 3219.8, + "words": [ + { + "word": " that", + "start": 3219.6, + "end": 3219.8, + "probability": 0.9931640625 + } + ] + }, + { + "id": 3556, + "text": "but", + "start": 3219.8, + "end": 3220.04, + "words": [ + { + "word": " but", + "start": 3219.8, + "end": 3220.04, + "probability": 0.9013671875 + } + ] + }, + { + "id": 3557, + "text": "it's", + "start": 3220.04, + "end": 3220.66, + "words": [ + { + "word": " it's", + "start": 3220.04, + "end": 3220.66, + "probability": 0.75537109375 + } + ] + }, + { + "id": 3558, + "text": "nothing", + "start": 3220.66, + "end": 3220.86, + "words": [ + { + "word": " nothing", + "start": 3220.66, + "end": 3220.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 3559, + "text": "internal", + "start": 3220.86, + "end": 3221.36, + "words": [ + { + "word": " internal", + "start": 3220.86, + "end": 3221.36, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3560, + "text": "to", + "start": 3221.36, + "end": 3221.64, + "words": [ + { + "word": " to", + "start": 3221.36, + "end": 3221.64, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3561, + "text": "dropbox", + "start": 3221.64, + "end": 3222.16, + "words": [ + { + "word": " dropbox", + "start": 3221.64, + "end": 3222.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3562, + "text": "per se", + "start": 3222.16, + "end": 3222.6, + "words": [ + { + "word": " per", + "start": 3222.16, + "end": 3222.38, + "probability": 0.98876953125 + }, + { + "word": " se", + "start": 3222.38, + "end": 3222.6, + "probability": 0.67138671875 + } + ] + }, + { + "id": 3563, + "text": "it", + "start": 3222.6, + "end": 3222.84, + "words": [ + { + "word": " it", + "start": 3222.6, + "end": 3222.84, + "probability": 0.28515625 + } + ] + }, + { + "id": 3564, + "text": "wouldn't", + "start": 3222.84, + "end": 3223.18, + "words": [ + { + "word": " wouldn't", + "start": 3222.84, + "end": 3223.18, + "probability": 0.9921875 + } + ] + }, + { + "id": 3565, + "text": "work", + "start": 3223.18, + "end": 3223.4, + "words": [ + { + "word": " work", + "start": 3223.18, + "end": 3223.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3566, + "text": "dropbox", + "start": 3223.4, + "end": 3224.1, + "words": [ + { + "word": " dropbox", + "start": 3223.4, + "end": 3224.1, + "probability": 0.6416015625 + } + ] + }, + { + "id": 3567, + "text": "has had", + "start": 3224.1, + "end": 3224.48, + "words": [ + { + "word": " has", + "start": 3224.1, + "end": 3224.2, + "probability": 0.06610107421875 + }, + { + "word": " had", + "start": 3224.2, + "end": 3224.48, + "probability": 0.99365234375 + } + ] + }, + { + "id": 3568, + "text": "their", + "start": 3224.48, + "end": 3224.62, + "words": [ + { + "word": " their", + "start": 3224.48, + "end": 3224.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3569, + "text": "problems", + "start": 3224.62, + "end": 3225.08, + "words": [ + { + "word": " problems", + "start": 3224.62, + "end": 3225.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3570, + "text": "but", + "start": 3225.08, + "end": 3225.6, + "words": [ + { + "word": " but", + "start": 3225.08, + "end": 3225.6, + "probability": 0.216552734375 + } + ] + }, + { + "id": 3571, + "text": "nothing", + "start": 3225.6, + "end": 3226.16, + "words": [ + { + "word": " nothing", + "start": 3225.6, + "end": 3226.16, + "probability": 0.87158203125 + } + ] + }, + { + "id": 3572, + "text": "so", + "start": 3226.16, + "end": 3226.62, + "words": [ + { + "word": " so", + "start": 3226.16, + "end": 3226.62, + "probability": 0.49609375 + } + ] + }, + { + "id": 3573, + "text": "major", + "start": 3226.62, + "end": 3227.24, + "words": [ + { + "word": " major", + "start": 3226.62, + "end": 3227.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3574, + "text": "that it's", + "start": 3227.24, + "end": 3227.6, + "words": [ + { + "word": " that", + "start": 3227.24, + "end": 3227.46, + "probability": 0.9501953125 + }, + { + "word": " it's", + "start": 3227.46, + "end": 3227.6, + "probability": 0.97314453125 + } + ] + }, + { + "id": 3575, + "text": "noteworthy", + "start": 3227.6, + "end": 3228.1, + "words": [ + { + "word": " noteworthy", + "start": 3227.6, + "end": 3228.1, + "probability": 1.0 + } + ] + }, + { + "id": 3576, + "text": "right", + "start": 3228.1, + "end": 3228.5, + "words": [ + { + "word": " right", + "start": 3228.1, + "end": 3228.5, + "probability": 0.52685546875 + } + ] + }, + { + "id": 3577, + "text": "the", + "start": 3228.5, + "end": 3229.14, + "words": [ + { + "word": " the", + "start": 3228.5, + "end": 3229.14, + "probability": 0.7109375 + } + ] + }, + { + "id": 3578, + "text": "biggest", + "start": 3229.14, + "end": 3229.54, + "words": [ + { + "word": " biggest", + "start": 3229.14, + "end": 3229.54, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3579, + "text": "problem", + "start": 3229.54, + "end": 3229.86, + "words": [ + { + "word": " problem", + "start": 3229.54, + "end": 3229.86, + "probability": 1.0 + } + ] + }, + { + "id": 3580, + "text": "that i've", + "start": 3229.86, + "end": 3230.12, + "words": [ + { + "word": " that", + "start": 3229.86, + "end": 3230.0, + "probability": 0.9921875 + }, + { + "word": " i've", + "start": 3230.0, + "end": 3230.12, + "probability": 0.505859375 + } + ] + }, + { + "id": 3581, + "text": "seen", + "start": 3230.12, + "end": 3230.32, + "words": [ + { + "word": " seen", + "start": 3230.12, + "end": 3230.32, + "probability": 1.0 + } + ] + }, + { + "id": 3582, + "text": "with", + "start": 3230.32, + "end": 3230.46, + "words": [ + { + "word": " with", + "start": 3230.32, + "end": 3230.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3583, + "text": "dropbox", + "start": 3230.46, + "end": 3231.0, + "words": [ + { + "word": " dropbox", + "start": 3230.46, + "end": 3231.0, + "probability": 0.830078125 + } + ] + }, + { + "id": 3584, + "text": "lately", + "start": 3231.0, + "end": 3231.6, + "words": [ + { + "word": " lately", + "start": 3231.0, + "end": 3231.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3585, + "text": "is", + "start": 3231.6, + "end": 3232.2, + "words": [ + { + "word": " is", + "start": 3231.6, + "end": 3232.2, + "probability": 1.0 + } + ] + }, + { + "id": 3586, + "text": "that", + "start": 3232.2, + "end": 3232.5, + "words": [ + { + "word": " that", + "start": 3232.2, + "end": 3232.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3587, + "text": "this", + "start": 3232.5, + "end": 3233.6, + "words": [ + { + "word": " this", + "start": 3232.5, + "end": 3233.6, + "probability": 0.1419677734375 + } + ] + }, + { + "id": 3588, + "text": "is", + "start": 3233.6, + "end": 3233.78, + "words": [ + { + "word": " is", + "start": 3233.6, + "end": 3233.78, + "probability": 0.95263671875 + } + ] + }, + { + "id": 3589, + "text": "probably", + "start": 3233.78, + "end": 3234.0, + "words": [ + { + "word": " probably", + "start": 3233.78, + "end": 3234.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3590, + "text": "six", + "start": 3234.0, + "end": 3234.4, + "words": [ + { + "word": " six", + "start": 3234.0, + "end": 3234.4, + "probability": 0.962890625 + } + ] + }, + { + "id": 3591, + "text": "months", + "start": 3234.4, + "end": 3234.66, + "words": [ + { + "word": " months", + "start": 3234.4, + "end": 3234.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3592, + "text": "ago", + "start": 3234.66, + "end": 3234.9, + "words": [ + { + "word": " ago", + "start": 3234.66, + "end": 3234.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3593, + "text": "where", + "start": 3234.9, + "end": 3235.12, + "words": [ + { + "word": " where", + "start": 3234.9, + "end": 3235.12, + "probability": 0.98779296875 + } + ] + }, + { + "id": 3594, + "text": "they", + "start": 3235.12, + "end": 3235.28, + "words": [ + { + "word": " they", + "start": 3235.12, + "end": 3235.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3595, + "text": "had", + "start": 3235.28, + "end": 3235.44, + "words": [ + { + "word": " had", + "start": 3235.28, + "end": 3235.44, + "probability": 0.998046875 + } + ] + }, + { + "id": 3596, + "text": "some", + "start": 3235.44, + "end": 3235.68, + "words": [ + { + "word": " some", + "start": 3235.44, + "end": 3235.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3597, + "text": "sort", + "start": 3235.68, + "end": 3236.02, + "words": [ + { + "word": " sort", + "start": 3235.68, + "end": 3236.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3598, + "text": "of", + "start": 3236.02, + "end": 3236.14, + "words": [ + { + "word": " of", + "start": 3236.02, + "end": 3236.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3599, + "text": "a", + "start": 3236.14, + "end": 3236.26, + "words": [ + { + "word": " a", + "start": 3236.14, + "end": 3236.26, + "probability": 0.98486328125 + } + ] + }, + { + "id": 3600, + "text": "glitch", + "start": 3236.26, + "end": 3236.58, + "words": [ + { + "word": " glitch", + "start": 3236.26, + "end": 3236.58, + "probability": 0.99609375 + } + ] + }, + { + "id": 3601, + "text": "where", + "start": 3236.58, + "end": 3236.84, + "words": [ + { + "word": " where", + "start": 3236.58, + "end": 3236.84, + "probability": 0.990234375 + } + ] + }, + { + "id": 3602, + "text": "everybody's", + "start": 3236.84, + "end": 3237.58, + "words": [ + { + "word": " everybody's", + "start": 3236.84, + "end": 3237.58, + "probability": 0.99609375 + } + ] + }, + { + "id": 3603, + "text": "data", + "start": 3237.58, + "end": 3237.74, + "words": [ + { + "word": " data", + "start": 3237.58, + "end": 3237.74, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3604, + "text": "reverted", + "start": 3237.74, + "end": 3238.22, + "words": [ + { + "word": " reverted", + "start": 3237.74, + "end": 3238.22, + "probability": 0.998046875 + } + ] + }, + { + "id": 3605, + "text": "back", + "start": 3238.22, + "end": 3238.66, + "words": [ + { + "word": " back", + "start": 3238.22, + "end": 3238.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3606, + "text": "like", + "start": 3238.66, + "end": 3239.54, + "words": [ + { + "word": " like", + "start": 3238.66, + "end": 3239.54, + "probability": 0.91552734375 + } + ] + }, + { + "id": 3607, + "text": "a", + "start": 3239.54, + "end": 3239.96, + "words": [ + { + "word": " a", + "start": 3239.54, + "end": 3239.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3608, + "text": "week", + "start": 3239.96, + "end": 3240.18, + "words": [ + { + "word": " week", + "start": 3239.96, + "end": 3240.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3609, + "text": "and", + "start": 3240.9, + "end": 3241.46, + "words": [ + { + "word": " and", + "start": 3240.9, + "end": 3241.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3610, + "text": "then", + "start": 3242.26, + "end": 3242.82, + "words": [ + { + "word": " then", + "start": 3242.26, + "end": 3242.82, + "probability": 0.64599609375 + } + ] + }, + { + "id": 3611, + "text": "you", + "start": 3242.82, + "end": 3243.18, + "words": [ + { + "word": " you", + "start": 3242.82, + "end": 3243.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3612, + "text": "had", + "start": 3243.18, + "end": 3243.36, + "words": [ + { + "word": " had", + "start": 3243.18, + "end": 3243.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3613, + "text": "to", + "start": 3243.36, + "end": 3243.46, + "words": [ + { + "word": " to", + "start": 3243.36, + "end": 3243.46, + "probability": 0.9697265625 + } + ] + }, + { + "id": 3614, + "text": "request", + "start": 3243.46, + "end": 3244.14, + "words": [ + { + "word": " request", + "start": 3243.46, + "end": 3244.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3615, + "text": "a", + "start": 3244.14, + "end": 3244.52, + "words": [ + { + "word": " a", + "start": 3244.14, + "end": 3244.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3616, + "text": "special", + "start": 3244.52, + "end": 3244.94, + "words": [ + { + "word": " special", + "start": 3244.52, + "end": 3244.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3617, + "text": "restore", + "start": 3244.94, + "end": 3245.62, + "words": [ + { + "word": " restore", + "start": 3244.94, + "end": 3245.62, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3618, + "text": "on", + "start": 3245.62, + "end": 3246.2, + "words": [ + { + "word": " on", + "start": 3245.62, + "end": 3246.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3619, + "text": "their", + "start": 3246.2, + "end": 3246.46, + "words": [ + { + "word": " their", + "start": 3246.2, + "end": 3246.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3620, + "text": "part", + "start": 3246.46, + "end": 3246.8, + "words": [ + { + "word": " part", + "start": 3246.46, + "end": 3246.8, + "probability": 1.0 + } + ] + }, + { + "id": 3621, + "text": "to", + "start": 3246.8, + "end": 3247.1, + "words": [ + { + "word": " to", + "start": 3246.8, + "end": 3247.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3622, + "text": "put", + "start": 3247.1, + "end": 3247.3, + "words": [ + { + "word": " put", + "start": 3247.1, + "end": 3247.3, + "probability": 1.0 + } + ] + }, + { + "id": 3623, + "text": "your", + "start": 3247.3, + "end": 3247.46, + "words": [ + { + "word": " your", + "start": 3247.3, + "end": 3247.46, + "probability": 0.91259765625 + } + ] + }, + { + "id": 3624, + "text": "data", + "start": 3247.46, + "end": 3247.7, + "words": [ + { + "word": " data", + "start": 3247.46, + "end": 3247.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3625, + "text": "back", + "start": 3247.7, + "end": 3247.92, + "words": [ + { + "word": " back", + "start": 3247.7, + "end": 3247.92, + "probability": 1.0 + } + ] + }, + { + "id": 3626, + "text": "to", + "start": 3247.92, + "end": 3248.08, + "words": [ + { + "word": " to", + "start": 3247.92, + "end": 3248.08, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3627, + "text": "the", + "start": 3248.08, + "end": 3248.14, + "words": [ + { + "word": " the", + "start": 3248.08, + "end": 3248.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3628, + "text": "way", + "start": 3248.14, + "end": 3248.26, + "words": [ + { + "word": " way", + "start": 3248.14, + "end": 3248.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3629, + "text": "it", + "start": 3248.26, + "end": 3248.36, + "words": [ + { + "word": " it", + "start": 3248.26, + "end": 3248.36, + "probability": 1.0 + } + ] + }, + { + "id": 3630, + "text": "was", + "start": 3248.36, + "end": 3248.66, + "words": [ + { + "word": " was", + "start": 3248.36, + "end": 3248.66, + "probability": 1.0 + } + ] + }, + { + "id": 3631, + "text": "but", + "start": 3249.4, + "end": 3249.96, + "words": [ + { + "word": " but", + "start": 3249.4, + "end": 3249.96, + "probability": 0.97314453125 + } + ] + }, + { + "id": 3632, + "text": "it's", + "start": 3251.0, + "end": 3251.56, + "words": [ + { + "word": " it's", + "start": 3251.0, + "end": 3251.56, + "probability": 0.5693359375 + } + ] + }, + { + "id": 3633, + "text": "pretty", + "start": 3251.56, + "end": 3251.7, + "words": [ + { + "word": " pretty", + "start": 3251.56, + "end": 3251.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3634, + "text": "few", + "start": 3251.7, + "end": 3251.92, + "words": [ + { + "word": " few", + "start": 3251.7, + "end": 3251.92, + "probability": 1.0 + } + ] + }, + { + "id": 3635, + "text": "and", + "start": 3251.92, + "end": 3252.06, + "words": [ + { + "word": " and", + "start": 3251.92, + "end": 3252.06, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3636, + "text": "far", + "start": 3252.06, + "end": 3252.2, + "words": [ + { + "word": " far", + "start": 3252.06, + "end": 3252.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3637, + "text": "not to mention", + "start": 3254.2, + "end": 3255.04, + "words": [ + { + "word": " not", + "start": 3254.2, + "end": 3254.68, + "probability": 0.006656646728515625 + }, + { + "word": " to", + "start": 3254.68, + "end": 3254.82, + "probability": 0.99951171875 + }, + { + "word": " mention", + "start": 3254.82, + "end": 3255.04, + "probability": 1.0 + } + ] + }, + { + "id": 3638, + "text": "that i would always", + "start": 3255.04, + "end": 3255.96, + "words": [ + { + "word": " that", + "start": 3255.04, + "end": 3255.26, + "probability": 0.998046875 + }, + { + "word": " i", + "start": 3255.26, + "end": 3255.4, + "probability": 0.04205322265625 + }, + { + "word": " would", + "start": 3255.4, + "end": 3255.6, + "probability": 0.9970703125 + }, + { + "word": " always", + "start": 3255.6, + "end": 3255.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 3639, + "text": "set up something like", + "start": 3255.96, + "end": 3256.72, + "words": [ + { + "word": " set", + "start": 3255.96, + "end": 3256.18, + "probability": 0.9697265625 + }, + { + "word": " up", + "start": 3256.18, + "end": 3256.32, + "probability": 0.99853515625 + }, + { + "word": " something", + "start": 3256.32, + "end": 3256.5, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 3256.5, + "end": 3256.72, + "probability": 0.99609375 + } + ] + }, + { + "id": 3640, + "text": "shadow copies to go along", + "start": 3256.72, + "end": 3257.88, + "words": [ + { + "word": " shadow", + "start": 3256.72, + "end": 3257.0, + "probability": 0.9951171875 + }, + { + "word": " copies", + "start": 3257.0, + "end": 3257.36, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 3257.36, + "end": 3257.58, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 3257.58, + "end": 3257.7, + "probability": 0.9990234375 + }, + { + "word": " along", + "start": 3257.7, + "end": 3257.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3641, + "text": "with it locally", + "start": 3257.88, + "end": 3258.52, + "words": [ + { + "word": " with", + "start": 3257.88, + "end": 3258.08, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 3258.08, + "end": 3258.24, + "probability": 0.96826171875 + }, + { + "word": " locally", + "start": 3258.24, + "end": 3258.52, + "probability": 0.99072265625 + } + ] + }, + { + "id": 3642, + "text": "yeah because the two way", + "start": 3258.52, + "end": 3259.62, + "words": [ + { + "word": " yeah", + "start": 3258.52, + "end": 3258.86, + "probability": 0.94921875 + }, + { + "word": " because", + "start": 3258.86, + "end": 3259.1, + "probability": 0.9833984375 + }, + { + "word": " the", + "start": 3259.1, + "end": 3259.28, + "probability": 1.0 + }, + { + "word": " two", + "start": 3259.28, + "end": 3259.48, + "probability": 0.9970703125 + }, + { + "word": " way", + "start": 3259.48, + "end": 3259.62, + "probability": 0.0033245086669921875 + } + ] + }, + { + "id": 3643, + "text": "syncing thing can totally", + "start": 3259.62, + "end": 3260.54, + "words": [ + { + "word": " syncing", + "start": 3259.62, + "end": 3259.88, + "probability": 0.9970703125 + }, + { + "word": " thing", + "start": 3259.88, + "end": 3260.12, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 3260.12, + "end": 3260.3, + "probability": 0.9990234375 + }, + { + "word": " totally", + "start": 3260.3, + "end": 3260.54, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3644, + "text": "mess you up", + "start": 3260.54, + "end": 3261.16, + "words": [ + { + "word": " mess", + "start": 3260.54, + "end": 3260.76, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3260.76, + "end": 3260.92, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 3260.92, + "end": 3261.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3645, + "text": "so if you turn on", + "start": 3261.16, + "end": 3262.34, + "words": [ + { + "word": " so", + "start": 3261.16, + "end": 3261.66, + "probability": 0.062164306640625 + }, + { + "word": " if", + "start": 3261.66, + "end": 3262.0, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3262.0, + "end": 3262.1, + "probability": 0.99951171875 + }, + { + "word": " turn", + "start": 3262.1, + "end": 3262.24, + "probability": 0.99462890625 + }, + { + "word": " on", + "start": 3262.24, + "end": 3262.34, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3646, + "text": "something like", + "start": 3262.34, + "end": 3262.74, + "words": [ + { + "word": " something", + "start": 3262.34, + "end": 3262.52, + "probability": 0.99755859375 + }, + { + "word": " like", + "start": 3262.52, + "end": 3262.74, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3647, + "text": "shadow copies", + "start": 3262.74, + "end": 3263.48, + "words": [ + { + "word": " shadow", + "start": 3262.74, + "end": 3262.96, + "probability": 0.99560546875 + }, + { + "word": " copies", + "start": 3262.96, + "end": 3263.48, + "probability": 0.98876953125 + } + ] + }, + { + "id": 3648, + "text": "if something goes", + "start": 3263.48, + "end": 3264.42, + "words": [ + { + "word": " if", + "start": 3263.48, + "end": 3263.84, + "probability": 0.98486328125 + }, + { + "word": " something", + "start": 3263.84, + "end": 3264.12, + "probability": 0.99951171875 + }, + { + "word": " goes", + "start": 3264.12, + "end": 3264.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3649, + "text": "terribly wrong", + "start": 3264.42, + "end": 3265.3, + "words": [ + { + "word": " terribly", + "start": 3264.42, + "end": 3264.86, + "probability": 0.99951171875 + }, + { + "word": " wrong", + "start": 3264.86, + "end": 3265.3, + "probability": 1.0 + } + ] + }, + { + "id": 3650, + "text": "you can just", + "start": 3265.3, + "end": 3266.14, + "words": [ + { + "word": " you", + "start": 3265.3, + "end": 3265.9, + "probability": 0.99609375 + }, + { + "word": " can", + "start": 3265.9, + "end": 3265.98, + "probability": 0.931640625 + }, + { + "word": " just", + "start": 3265.98, + "end": 3266.14, + "probability": 1.0 + } + ] + }, + { + "id": 3651, + "text": "revert from", + "start": 3266.14, + "end": 3266.8, + "words": [ + { + "word": " revert", + "start": 3266.14, + "end": 3266.54, + "probability": 1.0 + }, + { + "word": " from", + "start": 3266.54, + "end": 3266.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3652, + "text": "a", + "start": 3266.8, + "end": 3267.22, + "words": [ + { + "word": " a", + "start": 3266.8, + "end": 3267.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3653, + "text": "vss copy", + "start": 3268.28, + "end": 3269.06, + "words": [ + { + "word": " vss", + "start": 3268.28, + "end": 3268.76, + "probability": 0.8701171875 + }, + { + "word": " copy", + "start": 3268.76, + "end": 3269.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3654, + "text": "and everything", + "start": 3269.06, + "end": 3270.08, + "words": [ + { + "word": " and", + "start": 3269.06, + "end": 3269.86, + "probability": 0.99853515625 + }, + { + "word": " everything", + "start": 3269.86, + "end": 3270.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3655, + "text": "would be fine", + "start": 3270.08, + "end": 3270.64, + "words": [ + { + "word": " would", + "start": 3270.08, + "end": 3270.26, + "probability": 0.9560546875 + }, + { + "word": " be", + "start": 3270.26, + "end": 3270.38, + "probability": 1.0 + }, + { + "word": " fine", + "start": 3270.38, + "end": 3270.64, + "probability": 1.0 + } + ] + }, + { + "id": 3656, + "text": "what is shadow copy", + "start": 3270.64, + "end": 3271.78, + "words": [ + { + "word": " what", + "start": 3270.64, + "end": 3270.96, + "probability": 0.52978515625 + }, + { + "word": " is", + "start": 3270.96, + "end": 3271.22, + "probability": 0.98828125 + }, + { + "word": " shadow", + "start": 3271.22, + "end": 3271.52, + "probability": 0.99169921875 + }, + { + "word": " copy", + "start": 3271.52, + "end": 3271.78, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3657, + "text": "it's a built in", + "start": 3271.78, + "end": 3273.22, + "words": [ + { + "word": " it's", + "start": 3271.78, + "end": 3272.56, + "probability": 0.82080078125 + }, + { + "word": " a", + "start": 3272.56, + "end": 3272.64, + "probability": 0.99951171875 + }, + { + "word": " built", + "start": 3272.64, + "end": 3273.02, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 3273.02, + "end": 3273.22, + "probability": 0.97802734375 + } + ] + }, + { + "id": 3658, + "text": "feature within", + "start": 3273.22, + "end": 3274.48, + "words": [ + { + "word": " feature", + "start": 3273.22, + "end": 3273.82, + "probability": 0.99951171875 + }, + { + "word": " within", + "start": 3273.82, + "end": 3274.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3659, + "text": "all windows", + "start": 3275.06, + "end": 3275.94, + "words": [ + { + "word": " all", + "start": 3275.06, + "end": 3275.54, + "probability": 0.9990234375 + }, + { + "word": " windows", + "start": 3275.54, + "end": 3275.94, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3660, + "text": "since", + "start": 3275.94, + "end": 3276.28, + "words": [ + { + "word": " since", + "start": 3275.94, + "end": 3276.28, + "probability": 0.9814453125 + } + ] + }, + { + "id": 3661, + "text": "windows 7", + "start": 3276.28, + "end": 3277.64, + "words": [ + { + "word": " windows", + "start": 3276.28, + "end": 3277.24, + "probability": 0.9345703125 + }, + { + "word": " 7", + "start": 3277.24, + "end": 3277.64, + "probability": 0.98681640625 + } + ] + }, + { + "id": 3662, + "text": "which", + "start": 3278.14, + "end": 3278.62, + "words": [ + { + "word": " which", + "start": 3278.14, + "end": 3278.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3663, + "text": "allows you to turn", + "start": 3278.62, + "end": 3279.72, + "words": [ + { + "word": " allows", + "start": 3278.62, + "end": 3279.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 3279.16, + "end": 3279.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3279.38, + "end": 3279.46, + "probability": 1.0 + }, + { + "word": " turn", + "start": 3279.46, + "end": 3279.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3664, + "text": "on something where it", + "start": 3279.72, + "end": 3280.68, + "words": [ + { + "word": " on", + "start": 3279.72, + "end": 3279.96, + "probability": 1.0 + }, + { + "word": " something", + "start": 3279.96, + "end": 3280.32, + "probability": 0.99755859375 + }, + { + "word": " where", + "start": 3280.32, + "end": 3280.58, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 3280.58, + "end": 3280.68, + "probability": 1.0 + } + ] + }, + { + "id": 3665, + "text": "takes a snapshot of", + "start": 3280.68, + "end": 3281.86, + "words": [ + { + "word": " takes", + "start": 3280.68, + "end": 3280.86, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3280.86, + "end": 3281.02, + "probability": 1.0 + }, + { + "word": " snapshot", + "start": 3281.02, + "end": 3281.46, + "probability": 0.986328125 + }, + { + "word": " of", + "start": 3281.46, + "end": 3281.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3666, + "text": "all of your files", + "start": 3281.86, + "end": 3282.8, + "words": [ + { + "word": " all", + "start": 3281.86, + "end": 3282.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 3282.12, + "end": 3282.26, + "probability": 0.99658203125 + }, + { + "word": " your", + "start": 3282.26, + "end": 3282.42, + "probability": 1.0 + }, + { + "word": " files", + "start": 3282.42, + "end": 3282.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3667, + "text": "all at once", + "start": 3282.8, + "end": 3283.4, + "words": [ + { + "word": " all", + "start": 3282.8, + "end": 3283.02, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3283.02, + "end": 3283.14, + "probability": 1.0 + }, + { + "word": " once", + "start": 3283.14, + "end": 3283.4, + "probability": 1.0 + } + ] + }, + { + "id": 3668, + "text": "and allows you to revert", + "start": 3283.4, + "end": 3285.64, + "words": [ + { + "word": " and", + "start": 3283.4, + "end": 3284.26, + "probability": 0.94482421875 + }, + { + "word": " allows", + "start": 3284.26, + "end": 3284.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3284.84, + "end": 3285.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3285.08, + "end": 3285.18, + "probability": 1.0 + }, + { + "word": " revert", + "start": 3285.18, + "end": 3285.64, + "probability": 1.0 + } + ] + }, + { + "id": 3669, + "text": "back to any one of those", + "start": 3285.64, + "end": 3287.7, + "words": [ + { + "word": " back", + "start": 3285.64, + "end": 3286.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3286.46, + "end": 3287.0, + "probability": 1.0 + }, + { + "word": " any", + "start": 3287.0, + "end": 3287.28, + "probability": 1.0 + }, + { + "word": " one", + "start": 3287.28, + "end": 3287.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 3287.44, + "end": 3287.54, + "probability": 1.0 + }, + { + "word": " those", + "start": 3287.54, + "end": 3287.7, + "probability": 1.0 + } + ] + }, + { + "id": 3670, + "text": "snapshots", + "start": 3287.7, + "end": 3288.26, + "words": [ + { + "word": " snapshots", + "start": 3287.7, + "end": 3288.26, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3671, + "text": "if there's a problem", + "start": 3288.26, + "end": 3290.3, + "words": [ + { + "word": " if", + "start": 3288.26, + "end": 3288.94, + "probability": 0.9970703125 + }, + { + "word": " there's", + "start": 3288.94, + "end": 3289.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 3289.94, + "end": 3290.02, + "probability": 1.0 + }, + { + "word": " problem", + "start": 3290.02, + "end": 3290.3, + "probability": 1.0 + } + ] + }, + { + "id": 3672, + "text": "so it's like a little micro backup", + "start": 3290.3, + "end": 3292.8, + "words": [ + { + "word": " so", + "start": 3290.3, + "end": 3290.94, + "probability": 0.0003352165222167969 + }, + { + "word": " it's", + "start": 3290.94, + "end": 3291.64, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 3291.64, + "end": 3291.78, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3291.78, + "end": 3291.92, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 3291.92, + "end": 3292.1, + "probability": 0.99755859375 + }, + { + "word": " micro", + "start": 3292.1, + "end": 3292.48, + "probability": 0.99560546875 + }, + { + "word": " backup", + "start": 3292.48, + "end": 3292.8, + "probability": 0.94384765625 + } + ] + }, + { + "id": 3673, + "text": "sort of", + "start": 3292.8, + "end": 3293.62, + "words": [ + { + "word": " sort", + "start": 3292.8, + "end": 3293.42, + "probability": 0.9267578125 + }, + { + "word": " of", + "start": 3293.42, + "end": 3293.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3674, + "text": "providing that the data", + "start": 3294.42, + "end": 3295.52, + "words": [ + { + "word": " providing", + "start": 3294.42, + "end": 3294.98, + "probability": 0.953125 + }, + { + "word": " that", + "start": 3294.98, + "end": 3295.24, + "probability": 0.8076171875 + }, + { + "word": " the", + "start": 3295.24, + "end": 3295.3, + "probability": 0.9990234375 + }, + { + "word": " data", + "start": 3295.3, + "end": 3295.52, + "probability": 0.74462890625 + } + ] + }, + { + "id": 3675, + "text": "you know that the drive", + "start": 3295.52, + "end": 3296.42, + "words": [ + { + "word": " you", + "start": 3295.52, + "end": 3295.82, + "probability": 0.482666015625 + }, + { + "word": " know", + "start": 3295.82, + "end": 3295.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 3295.94, + "end": 3296.06, + "probability": 0.95556640625 + }, + { + "word": " the", + "start": 3296.06, + "end": 3296.14, + "probability": 0.9990234375 + }, + { + "word": " drive", + "start": 3296.14, + "end": 3296.42, + "probability": 0.98291015625 + } + ] + }, + { + "id": 3676, + "text": "doesn't go bad", + "start": 3296.42, + "end": 3297.32, + "words": [ + { + "word": " doesn't", + "start": 3296.42, + "end": 3296.96, + "probability": 0.63427734375 + }, + { + "word": " go", + "start": 3296.96, + "end": 3297.08, + "probability": 1.0 + }, + { + "word": " bad", + "start": 3297.08, + "end": 3297.32, + "probability": 1.0 + } + ] + }, + { + "id": 3677, + "text": "it allows you to have snapshots", + "start": 3297.32, + "end": 3299.32, + "words": [ + { + "word": " it", + "start": 3297.32, + "end": 3297.92, + "probability": 0.9921875 + }, + { + "word": " allows", + "start": 3297.92, + "end": 3298.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 3298.16, + "end": 3298.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3298.38, + "end": 3298.52, + "probability": 1.0 + }, + { + "word": " have", + "start": 3298.52, + "end": 3298.72, + "probability": 1.0 + }, + { + "word": " snapshots", + "start": 3298.72, + "end": 3299.32, + "probability": 1.0 + } + ] + }, + { + "id": 3678, + "text": "in time", + "start": 3299.32, + "end": 3299.94, + "words": [ + { + "word": " in", + "start": 3299.32, + "end": 3299.54, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 3299.54, + "end": 3299.94, + "probability": 1.0 + } + ] + }, + { + "id": 3679, + "text": "that you can return to", + "start": 3299.94, + "end": 3301.64, + "words": [ + { + "word": " that", + "start": 3299.94, + "end": 3300.7, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3300.7, + "end": 3300.86, + "probability": 1.0 + }, + { + "word": " can", + "start": 3300.86, + "end": 3301.02, + "probability": 1.0 + }, + { + "word": " return", + "start": 3301.02, + "end": 3301.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 3301.3, + "end": 3301.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3680, + "text": "i do rolling backups on an external drive so", + "start": 3302.6, + "end": 3306.48, + "words": [ + { + "word": " i", + "start": 3302.6, + "end": 3303.16, + "probability": 0.2015380859375 + }, + { + "word": " do", + "start": 3303.16, + "end": 3303.72, + "probability": 1.0 + }, + { + "word": " rolling", + "start": 3303.72, + "end": 3304.1, + "probability": 0.9990234375 + }, + { + "word": " backups", + "start": 3304.1, + "end": 3304.54, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3304.54, + "end": 3304.96, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 3304.96, + "end": 3305.14, + "probability": 1.0 + }, + { + "word": " external", + "start": 3305.14, + "end": 3305.52, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3305.52, + "end": 3306.06, + "probability": 1.0 + }, + { + "word": " so", + "start": 3306.06, + "end": 3306.48, + "probability": 0.994140625 + } + ] + }, + { + "id": 3681, + "text": "i don't know if that's", + "start": 3306.48, + "end": 3307.4, + "words": [ + { + "word": " i", + "start": 3306.48, + "end": 3306.86, + "probability": 0.73681640625 + }, + { + "word": " don't", + "start": 3306.86, + "end": 3307.0, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 3307.0, + "end": 3307.06, + "probability": 0.89013671875 + }, + { + "word": " if", + "start": 3307.06, + "end": 3307.16, + "probability": 0.08154296875 + }, + { + "word": " that's", + "start": 3307.16, + "end": 3307.4, + "probability": 0.9384765625 + } + ] + }, + { + "id": 3682, + "text": "yeah well the shadow copies are nice because first of all it's on the local drive and it's instant", + "start": 3307.4, + "end": 3312.7, + "words": [ + { + "word": " yeah", + "start": 3307.4, + "end": 3307.42, + "probability": 0.72509765625 + }, + { + "word": " well", + "start": 3307.42, + "end": 3307.66, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 3307.66, + "end": 3307.86, + "probability": 1.0 + }, + { + "word": " shadow", + "start": 3307.86, + "end": 3308.2, + "probability": 0.99951171875 + }, + { + "word": " copies", + "start": 3308.2, + "end": 3308.56, + "probability": 1.0 + }, + { + "word": " are", + "start": 3308.56, + "end": 3308.82, + "probability": 1.0 + }, + { + "word": " nice", + "start": 3308.82, + "end": 3309.16, + "probability": 1.0 + }, + { + "word": " because", + "start": 3309.16, + "end": 3309.5, + "probability": 1.0 + }, + { + "word": " first", + "start": 3309.5, + "end": 3309.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 3309.86, + "end": 3310.02, + "probability": 1.0 + }, + { + "word": " all", + "start": 3310.02, + "end": 3310.12, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3310.12, + "end": 3310.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 3310.5, + "end": 3310.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 3310.68, + "end": 3310.94, + "probability": 1.0 + }, + { + "word": " local", + "start": 3310.94, + "end": 3311.34, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3311.34, + "end": 3311.62, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3311.62, + "end": 3311.94, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3311.94, + "end": 3312.24, + "probability": 1.0 + }, + { + "word": " instant", + "start": 3312.24, + "end": 3312.7, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3683, + "text": "that's the", + "start": 3312.7, + "end": 3313.38, + "words": [ + { + "word": " that's", + "start": 3312.7, + "end": 3313.38, + "probability": 0.73388671875 + }, + { + "word": " the", + "start": 3313.38, + "end": 3313.38, + "probability": 0.366943359375 + } + ] + }, + { + "id": 3684, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3685, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3686, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3687, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3688, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3689, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3690, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3691, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3692, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3693, + "text": "", + "start": 3313.38, + "end": 3313.38, + "words": [] + }, + { + "id": 3694, + "text": "only secure language", + "start": 3313.4, + "end": 3314.4, + "words": [ + { + "word": " only", + "start": 3313.4, + "end": 3313.54, + "probability": 1.7881393432617188e-07 + }, + { + "word": " secure", + "start": 3313.54, + "end": 3314.1, + "probability": 3.2901763916015625e-05 + }, + { + "word": " language", + "start": 3314.1, + "end": 3314.46, + "probability": 0.0003638267517089844 + } + ] + }, + { + "id": 3695, + "text": "secure language", + "start": 3314.98, + "end": 3315.4, + "words": [ + { + "word": " secure", + "start": 3314.98, + "end": 3314.98, + "probability": 0.00015163421630859375 + }, + { + "word": " language", + "start": 3314.98, + "end": 3315.4, + "probability": 0.310302734375 + } + ] + }, + { + "id": 3696, + "text": "secure language", + "start": 3316.58, + "end": 3316.96, + "words": [ + { + "word": " secure", + "start": 3316.58, + "end": 3316.96, + "probability": 0.281005859375 + }, + { + "word": " language", + "start": 3316.96, + "end": 3316.96, + "probability": 0.91357421875 + } + ] + }, + { + "id": 3697, + "text": "secure language", + "start": 3318.6800000000003, + "end": 3320.0, + "words": [ + { + "word": " secure", + "start": 3318.6800000000003, + "end": 3319.4, + "probability": 0.7021484375 + }, + { + "word": " language", + "start": 3319.4, + "end": 3320.0, + "probability": 0.9619140625 + } + ] + }, + { + "id": 3698, + "text": "secure language", + "start": 3320.0, + "end": 3320.48, + "words": [ + { + "word": " secure", + "start": 3320.0, + "end": 3320.36, + "probability": 0.81201171875 + }, + { + "word": " language", + "start": 3320.36, + "end": 3320.48, + "probability": 0.9716796875 + } + ] + }, + { + "id": 3699, + "text": "", + "start": 3320.48, + "end": 3320.48, + "words": [] + }, + { + "id": 3700, + "text": "secure language", + "start": 3320.48, + "end": 3320.56, + "words": [ + { + "word": " secure", + "start": 3320.48, + "end": 3320.48, + "probability": 0.85986328125 + }, + { + "word": " language", + "start": 3320.48, + "end": 3320.56, + "probability": 0.97119140625 + } + ] + }, + { + "id": 3701, + "text": "secure language", + "start": 3320.56, + "end": 3323.52, + "words": [ + { + "word": " secure", + "start": 3320.56, + "end": 3321.94, + "probability": 0.87109375 + }, + { + "word": " language", + "start": 3321.94, + "end": 3323.52, + "probability": 0.97119140625 + } + ] + }, + { + "id": 3702, + "text": "secure language", + "start": 3323.52, + "end": 3323.96, + "words": [ + { + "word": " secure", + "start": 3323.52, + "end": 3323.8, + "probability": 0.87255859375 + }, + { + "word": " language", + "start": 3323.8, + "end": 3323.96, + "probability": 0.97021484375 + } + ] + }, + { + "id": 3703, + "text": "secure language", + "start": 3323.96, + "end": 3324.12, + "words": [ + { + "word": " secure", + "start": 3323.96, + "end": 3324.12, + "probability": 0.87109375 + }, + { + "word": " language", + "start": 3324.12, + "end": 3324.12, + "probability": 0.9697265625 + } + ] + }, + { + "id": 3704, + "text": "secure language", + "start": 3324.12, + "end": 3324.4, + "words": [ + { + "word": " secure", + "start": 3324.12, + "end": 3324.18, + "probability": 0.8681640625 + }, + { + "word": " language", + "start": 3324.18, + "end": 3324.54, + "probability": 0.96923828125 + } + ] + }, + { + "id": 3705, + "text": "secure language", + "start": 3325.6, + "end": 3327.2, + "words": [ + { + "word": " secure", + "start": 3325.6, + "end": 3325.6, + "probability": 0.865234375 + }, + { + "word": " language", + "start": 3325.6, + "end": 3327.2, + "probability": 0.9697265625 + } + ] + }, + { + "id": 3706, + "text": "secure language", + "start": 3327.2, + "end": 3329.52, + "words": [ + { + "word": " secure", + "start": 3327.2, + "end": 3327.62, + "probability": 0.86767578125 + }, + { + "word": " language", + "start": 3327.62, + "end": 3329.52, + "probability": 0.96923828125 + } + ] + }, + { + "id": 3707, + "text": "", + "start": 3329.52, + "end": 3329.52, + "words": [] + }, + { + "id": 3708, + "text": "", + "start": 3329.52, + "end": 3329.52, + "words": [] + }, + { + "id": 3709, + "text": "secure language", + "start": 3329.52, + "end": 3329.8, + "words": [ + { + "word": " secure", + "start": 3329.52, + "end": 3329.64, + "probability": 0.86962890625 + }, + { + "word": " language", + "start": 3329.64, + "end": 3329.8, + "probability": 0.96875 + } + ] + }, + { + "id": 3710, + "text": "secure language", + "start": 3329.8, + "end": 3330.34, + "words": [ + { + "word": " secure", + "start": 3329.8, + "end": 3330.22, + "probability": 0.87060546875 + }, + { + "word": " language", + "start": 3330.22, + "end": 3330.34, + "probability": 0.96875 + } + ] + }, + { + "id": 3711, + "text": "secure language", + "start": 3330.34, + "end": 3330.7, + "words": [ + { + "word": " secure", + "start": 3330.34, + "end": 3330.6, + "probability": 0.87158203125 + }, + { + "word": " language", + "start": 3330.6, + "end": 3330.7, + "probability": 0.9677734375 + } + ] + }, + { + "id": 3712, + "text": "secure language", + "start": 3331.4, + "end": 3331.68, + "words": [ + { + "word": " secure", + "start": 3331.22, + "end": 3331.58, + "probability": 0.87109375 + }, + { + "word": " language", + "start": 3331.58, + "end": 3331.68, + "probability": 0.96728515625 + } + ] + }, + { + "id": 3713, + "text": "secure language", + "start": 3331.68, + "end": 3331.72, + "words": [ + { + "word": " secure", + "start": 3331.68, + "end": 3331.7, + "probability": 0.8720703125 + }, + { + "word": " language", + "start": 3331.7, + "end": 3331.72, + "probability": 0.96630859375 + } + ] + }, + { + "id": 3714, + "text": "secure language", + "start": 3331.72, + "end": 3332.5, + "words": [ + { + "word": " secure", + "start": 3331.72, + "end": 3331.82, + "probability": 0.8720703125 + }, + { + "word": " language", + "start": 3331.82, + "end": 3332.5, + "probability": 0.9658203125 + } + ] + }, + { + "id": 3715, + "text": "secure language", + "start": 3332.5, + "end": 3332.86, + "words": [ + { + "word": " secure", + "start": 3332.5, + "end": 3332.86, + "probability": 0.873046875 + }, + { + "word": " language", + "start": 3332.86, + "end": 3332.86, + "probability": 0.96533203125 + } + ] + }, + { + "id": 3716, + "text": "", + "start": 3332.86, + "end": 3332.86, + "words": [] + }, + { + "id": 3717, + "text": "secure language", + "start": 3332.86, + "end": 3333.0, + "words": [ + { + "word": " secure", + "start": 3332.86, + "end": 3332.86, + "probability": 0.875 + }, + { + "word": " language", + "start": 3332.86, + "end": 3333.0, + "probability": 0.9638671875 + } + ] + }, + { + "id": 3718, + "text": "secure language", + "start": 3333.0, + "end": 3333.52, + "words": [ + { + "word": " secure", + "start": 3333.0, + "end": 3333.28, + "probability": 0.8759765625 + }, + { + "word": " language", + "start": 3333.28, + "end": 3333.52, + "probability": 0.962890625 + } + ] + }, + { + "id": 3719, + "text": "secure language", + "start": 3333.52, + "end": 3335.28, + "words": [ + { + "word": " secure", + "start": 3333.52, + "end": 3334.8, + "probability": 0.87548828125 + }, + { + "word": " language", + "start": 3334.8, + "end": 3335.28, + "probability": 0.96240234375 + } + ] + }, + { + "id": 3720, + "text": "secure language", + "start": 3336.2200000000003, + "end": 3337.46, + "words": [ + { + "word": " secure", + "start": 3336.2200000000003, + "end": 3336.94, + "probability": 0.8759765625 + }, + { + "word": " language", + "start": 3336.94, + "end": 3337.46, + "probability": 0.96240234375 + } + ] + }, + { + "id": 3721, + "text": "secure language", + "start": 3337.46, + "end": 3338.92, + "words": [ + { + "word": " secure", + "start": 3337.46, + "end": 3338.56, + "probability": 0.8759765625 + }, + { + "word": " language", + "start": 3338.56, + "end": 3338.92, + "probability": 0.9619140625 + } + ] + }, + { + "id": 3722, + "text": "secure language", + "start": 3338.92, + "end": 3339.92, + "words": [ + { + "word": " secure", + "start": 3338.92, + "end": 3339.62, + "probability": 0.876953125 + }, + { + "word": " language", + "start": 3339.62, + "end": 3339.92, + "probability": 0.9609375 + } + ] + }, + { + "id": 3723, + "text": "secure language", + "start": 3339.92, + "end": 3342.34, + "words": [ + { + "word": " secure", + "start": 3339.92, + "end": 3340.24, + "probability": 0.87841796875 + }, + { + "word": " language", + "start": 3340.24, + "end": 3342.34, + "probability": 0.9609375 + } + ] + }, + { + "id": 3724, + "text": "command line and does it come up or how do you evoke it?", + "start": 3343.58, + "end": 3346.64, + "words": [ + { + "word": " command", + "start": 3343.58, + "end": 3343.98, + "probability": 0.470458984375 + }, + { + "word": " line", + "start": 3343.98, + "end": 3344.36, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 3344.36, + "end": 3344.78, + "probability": 0.64306640625 + }, + { + "word": " does", + "start": 3344.78, + "end": 3345.0, + "probability": 0.99072265625 + }, + { + "word": " it", + "start": 3345.0, + "end": 3345.1, + "probability": 0.9990234375 + }, + { + "word": " come", + "start": 3345.1, + "end": 3345.3, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 3345.3, + "end": 3345.54, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 3345.54, + "end": 3345.72, + "probability": 0.92529296875 + }, + { + "word": " how", + "start": 3345.72, + "end": 3345.84, + "probability": 0.99609375 + }, + { + "word": " do", + "start": 3345.84, + "end": 3345.98, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 3345.98, + "end": 3346.04, + "probability": 0.99951171875 + }, + { + "word": " evoke", + "start": 3346.04, + "end": 3346.5, + "probability": 0.8203125 + }, + { + "word": " it?", + "start": 3346.5, + "end": 3346.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3725, + "text": "Yeah, a good place to start is to go to the disk manager", + "start": 3346.94, + "end": 3350.54, + "words": [ + { + "word": " Yeah,", + "start": 3346.94, + "end": 3347.18, + "probability": 0.77001953125 + }, + { + "word": " a", + "start": 3347.24, + "end": 3347.48, + "probability": 0.28759765625 + }, + { + "word": " good", + "start": 3347.48, + "end": 3348.68, + "probability": 1.0 + }, + { + "word": " place", + "start": 3348.68, + "end": 3348.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3348.88, + "end": 3349.04, + "probability": 1.0 + }, + { + "word": " start", + "start": 3349.04, + "end": 3349.24, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3349.24, + "end": 3349.4, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3349.4, + "end": 3349.52, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 3349.52, + "end": 3349.7, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3349.7, + "end": 3349.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3349.8, + "end": 3349.92, + "probability": 0.99951171875 + }, + { + "word": " disk", + "start": 3349.92, + "end": 3350.24, + "probability": 0.482421875 + }, + { + "word": " manager", + "start": 3350.24, + "end": 3350.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3726, + "text": "and you can right click on the disk manager and there is a configure shadow copies", + "start": 3350.54, + "end": 3355.38, + "words": [ + { + "word": " and", + "start": 3350.54, + "end": 3351.26, + "probability": 0.9384765625 + }, + { + "word": " you", + "start": 3351.26, + "end": 3351.56, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 3351.56, + "end": 3351.66, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3351.66, + "end": 3351.96, + "probability": 0.9990234375 + }, + { + "word": " click", + "start": 3351.96, + "end": 3352.2, + "probability": 0.74560546875 + }, + { + "word": " on", + "start": 3352.2, + "end": 3352.38, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3352.38, + "end": 3352.46, + "probability": 0.99951171875 + }, + { + "word": " disk", + "start": 3352.46, + "end": 3352.64, + "probability": 0.99951171875 + }, + { + "word": " manager", + "start": 3352.64, + "end": 3352.92, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3352.92, + "end": 3353.38, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 3353.38, + "end": 3353.74, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 3353.74, + "end": 3353.9, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3353.9, + "end": 3354.04, + "probability": 1.0 + }, + { + "word": " configure", + "start": 3354.04, + "end": 3354.46, + "probability": 0.99365234375 + }, + { + "word": " shadow", + "start": 3354.46, + "end": 3354.9, + "probability": 0.99658203125 + }, + { + "word": " copies", + "start": 3354.9, + "end": 3355.38, + "probability": 1.0 + } + ] + }, + { + "id": 3727, + "text": "section there. And then you can set the schedule", + "start": 3355.38, + "end": 3359.18, + "words": [ + { + "word": " section", + "start": 3355.38, + "end": 3356.0, + "probability": 0.99951171875 + }, + { + "word": " there.", + "start": 3356.0, + "end": 3356.32, + "probability": 0.99853515625 + }, + { + "word": " And", + "start": 3357.38, + "end": 3357.78, + "probability": 0.8134765625 + }, + { + "word": " then", + "start": 3357.78, + "end": 3358.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3358.22, + "end": 3358.38, + "probability": 1.0 + }, + { + "word": " can", + "start": 3358.38, + "end": 3358.5, + "probability": 1.0 + }, + { + "word": " set", + "start": 3358.5, + "end": 3358.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 3358.68, + "end": 3358.82, + "probability": 1.0 + }, + { + "word": " schedule", + "start": 3358.82, + "end": 3359.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3728, + "text": "and how much disk space it's allowed to use and that type of stuff.", + "start": 3359.18, + "end": 3362.08, + "words": [ + { + "word": " and", + "start": 3359.18, + "end": 3359.58, + "probability": 1.0 + }, + { + "word": " how", + "start": 3359.58, + "end": 3359.88, + "probability": 0.9990234375 + }, + { + "word": " much", + "start": 3359.88, + "end": 3360.08, + "probability": 0.99951171875 + }, + { + "word": " disk", + "start": 3360.08, + "end": 3360.32, + "probability": 0.9990234375 + }, + { + "word": " space", + "start": 3360.32, + "end": 3360.54, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3360.54, + "end": 3360.8, + "probability": 0.9931640625 + }, + { + "word": " allowed", + "start": 3360.8, + "end": 3360.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3360.92, + "end": 3361.12, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 3361.12, + "end": 3361.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 3361.32, + "end": 3361.46, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3361.46, + "end": 3361.58, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 3361.58, + "end": 3361.76, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 3361.76, + "end": 3361.9, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3361.9, + "end": 3362.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3729, + "text": "Gotcha. Alright, appreciate the input. Thank you.", + "start": 3362.56, + "end": 3365.92, + "words": [ + { + "word": " Gotcha.", + "start": 3362.56, + "end": 3362.8, + "probability": 0.76318359375 + }, + { + "word": " Alright,", + "start": 3363.84, + "end": 3364.24, + "probability": 0.64501953125 + }, + { + "word": " appreciate", + "start": 3364.4, + "end": 3364.72, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 3364.72, + "end": 3365.04, + "probability": 1.0 + }, + { + "word": " input.", + "start": 3365.04, + "end": 3365.32, + "probability": 0.99853515625 + }, + { + "word": " Thank", + "start": 3365.44, + "end": 3365.76, + "probability": 0.99853515625 + }, + { + "word": " you.", + "start": 3365.76, + "end": 3365.92, + "probability": 1.0 + } + ] + }, + { + "id": 3730, + "text": "Appreciate the call. Have a good day, Dick. You bet.", + "start": 3366.26, + "end": 3368.42, + "words": [ + { + "word": " Appreciate", + "start": 3366.26, + "end": 3366.66, + "probability": 0.98779296875 + }, + { + "word": " the", + "start": 3366.66, + "end": 3366.9, + "probability": 1.0 + }, + { + "word": " call.", + "start": 3366.9, + "end": 3367.1, + "probability": 1.0 + }, + { + "word": " Have", + "start": 3367.22, + "end": 3367.48, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3367.48, + "end": 3367.54, + "probability": 1.0 + }, + { + "word": " good", + "start": 3367.54, + "end": 3367.7, + "probability": 0.99951171875 + }, + { + "word": " day,", + "start": 3367.7, + "end": 3367.9, + "probability": 1.0 + }, + { + "word": " Dick.", + "start": 3367.9, + "end": 3368.04, + "probability": 0.9951171875 + }, + { + "word": " You", + "start": 3368.14, + "end": 3368.28, + "probability": 0.580078125 + }, + { + "word": " bet.", + "start": 3368.28, + "end": 3368.42, + "probability": 1.0 + } + ] + }, + { + "id": 3731, + "text": "Alright, we're going to take a break. When we come back, more of the Computer Guru show", + "start": 3369.02, + "end": 3372.4, + "words": [ + { + "word": " Alright,", + "start": 3369.02, + "end": 3369.38, + "probability": 0.038665771484375 + }, + { + "word": " we're", + "start": 3369.5, + "end": 3369.68, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 3369.68, + "end": 3369.72, + "probability": 0.9873046875 + }, + { + "word": " to", + "start": 3369.72, + "end": 3369.78, + "probability": 1.0 + }, + { + "word": " take", + "start": 3369.78, + "end": 3369.92, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3369.92, + "end": 3369.94, + "probability": 1.0 + }, + { + "word": " break.", + "start": 3369.94, + "end": 3370.16, + "probability": 1.0 + }, + { + "word": " When", + "start": 3370.18, + "end": 3370.34, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 3370.34, + "end": 3370.44, + "probability": 1.0 + }, + { + "word": " come", + "start": 3370.44, + "end": 3370.6, + "probability": 1.0 + }, + { + "word": " back,", + "start": 3370.6, + "end": 3370.92, + "probability": 1.0 + }, + { + "word": " more", + "start": 3370.92, + "end": 3371.24, + "probability": 0.9931640625 + }, + { + "word": " of", + "start": 3371.24, + "end": 3371.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3371.58, + "end": 3371.7, + "probability": 0.71533203125 + }, + { + "word": " Computer", + "start": 3371.7, + "end": 3371.94, + "probability": 0.9921875 + }, + { + "word": " Guru", + "start": 3371.94, + "end": 3372.16, + "probability": 0.98046875 + }, + { + "word": " show", + "start": 3372.16, + "end": 3372.4, + "probability": 0.400390625 + } + ] + }, + { + "id": 3732, + "text": "right here on KVOI at 790-2040.", + "start": 3372.4, + "end": 3375.24, + "words": [ + { + "word": " right", + "start": 3372.4, + "end": 3372.88, + "probability": 0.68798828125 + }, + { + "word": " here", + "start": 3372.88, + "end": 3373.04, + "probability": 1.0 + }, + { + "word": " on", + "start": 3373.04, + "end": 3373.18, + "probability": 0.998046875 + }, + { + "word": " KVOI", + "start": 3373.18, + "end": 3373.68, + "probability": 0.943359375 + }, + { + "word": " at", + "start": 3373.68, + "end": 3373.86, + "probability": 0.9921875 + }, + { + "word": " 790", + "start": 3373.86, + "end": 3374.36, + "probability": 0.98974609375 + }, + { + "word": "-2040.", + "start": 3374.36, + "end": 3375.24, + "probability": 0.87109375 + } + ] + }, + { + "id": 3733, + "text": "Your Computer Guru, Mike Swanson, is here to help you", + "start": 3395.8399999999997, + "end": 3398.4, + "words": [ + { + "word": " Your", + "start": 3395.8399999999997, + "end": 3396.2, + "probability": 0.126708984375 + }, + { + "word": " Computer", + "start": 3396.2, + "end": 3396.56, + "probability": 0.4296875 + }, + { + "word": " Guru,", + "start": 3396.56, + "end": 3397.0, + "probability": 0.99951171875 + }, + { + "word": " Mike", + "start": 3397.12, + "end": 3397.32, + "probability": 0.99951171875 + }, + { + "word": " Swanson,", + "start": 3397.32, + "end": 3397.68, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 3397.8, + "end": 3397.96, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 3397.96, + "end": 3398.08, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3398.08, + "end": 3398.22, + "probability": 0.998046875 + }, + { + "word": " help", + "start": 3398.22, + "end": 3398.4, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 3398.4, + "end": 3398.4, + "probability": 0.74169921875 + } + ] + }, + { + "id": 3734, + "text": "tame that beast of a machine. Join the chat right now at gurushow.com", + "start": 3398.4, + "end": 3403.0, + "words": [ + { + "word": " tame", + "start": 3398.4, + "end": 3398.56, + "probability": 3.993511199951172e-06 + }, + { + "word": " that", + "start": 3398.56, + "end": 3398.98, + "probability": 0.98828125 + }, + { + "word": " beast", + "start": 3398.98, + "end": 3399.3, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 3399.3, + "end": 3399.54, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3399.54, + "end": 3399.62, + "probability": 0.99853515625 + }, + { + "word": " machine.", + "start": 3399.62, + "end": 3399.88, + "probability": 0.9990234375 + }, + { + "word": " Join", + "start": 3400.14, + "end": 3400.64, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 3400.64, + "end": 3400.84, + "probability": 0.99951171875 + }, + { + "word": " chat", + "start": 3400.84, + "end": 3401.04, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3401.04, + "end": 3401.26, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 3401.26, + "end": 3401.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 3401.54, + "end": 3401.86, + "probability": 0.9931640625 + }, + { + "word": " gurushow", + "start": 3401.86, + "end": 3402.4, + "probability": 0.8994140625 + }, + { + "word": ".com", + "start": 3402.4, + "end": 3403.0, + "probability": 1.0 + } + ] + }, + { + "id": 3735, + "text": "or call in. This is the Computer Guru show on KVOI", + "start": 3403.0, + "end": 3406.62, + "words": [ + { + "word": " or", + "start": 3403.0, + "end": 3403.26, + "probability": 0.9541015625 + }, + { + "word": " call", + "start": 3403.26, + "end": 3403.48, + "probability": 1.0 + }, + { + "word": " in.", + "start": 3403.48, + "end": 3403.76, + "probability": 0.99951171875 + }, + { + "word": " This", + "start": 3403.84, + "end": 3404.2, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3404.2, + "end": 3404.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 3404.5, + "end": 3404.58, + "probability": 0.7080078125 + }, + { + "word": " Computer", + "start": 3404.58, + "end": 3404.82, + "probability": 0.978515625 + }, + { + "word": " Guru", + "start": 3404.82, + "end": 3405.16, + "probability": 0.990234375 + }, + { + "word": " show", + "start": 3405.16, + "end": 3405.5, + "probability": 0.0282135009765625 + }, + { + "word": " on", + "start": 3405.5, + "end": 3405.94, + "probability": 0.9951171875 + }, + { + "word": " KVOI", + "start": 3405.94, + "end": 3406.62, + "probability": 0.59326171875 + } + ] + }, + { + "id": 3736, + "text": "The Voice.", + "start": 3406.62, + "end": 3407.32, + "words": [ + { + "word": " The", + "start": 3406.62, + "end": 3407.02, + "probability": 0.3583984375 + }, + { + "word": " Voice.", + "start": 3407.02, + "end": 3407.32, + "probability": 1.0 + } + ] + }, + { + "id": 3737, + "text": "Welcome back to the Computer Guru show.", + "start": 3424.14, + "end": 3426.12, + "words": [ + { + "word": " Welcome", + "start": 3424.14, + "end": 3424.66, + "probability": 0.93701171875 + }, + { + "word": " back", + "start": 3424.66, + "end": 3425.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 3425.18, + "end": 3425.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 3425.32, + "end": 3425.42, + "probability": 0.99169921875 + }, + { + "word": " Computer", + "start": 3425.42, + "end": 3425.64, + "probability": 0.9970703125 + }, + { + "word": " Guru", + "start": 3425.64, + "end": 3425.88, + "probability": 0.9990234375 + }, + { + "word": " show.", + "start": 3425.88, + "end": 3426.12, + "probability": 0.93701171875 + } + ] + }, + { + "id": 3738, + "text": "So this time of year,", + "start": 3426.9, + "end": 3428.14, + "words": [ + { + "word": " So", + "start": 3426.9, + "end": 3427.42, + "probability": 0.96826171875 + }, + { + "word": " this", + "start": 3427.42, + "end": 3427.66, + "probability": 0.96630859375 + }, + { + "word": " time", + "start": 3427.66, + "end": 3427.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 3427.88, + "end": 3427.98, + "probability": 0.99658203125 + }, + { + "word": " year,", + "start": 3427.98, + "end": 3428.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3739, + "text": "is CES. Now, I wanted to go this year, but could not.", + "start": 3428.4, + "end": 3432.34, + "words": [ + { + "word": " is", + "start": 3428.4, + "end": 3428.6, + "probability": 0.8193359375 + }, + { + "word": " CES.", + "start": 3428.6, + "end": 3429.26, + "probability": 0.9970703125 + }, + { + "word": " Now,", + "start": 3429.82, + "end": 3430.14, + "probability": 0.85595703125 + }, + { + "word": " I", + "start": 3430.24, + "end": 3430.5, + "probability": 0.99951171875 + }, + { + "word": " wanted", + "start": 3430.5, + "end": 3430.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3430.76, + "end": 3430.88, + "probability": 1.0 + }, + { + "word": " go", + "start": 3430.88, + "end": 3431.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 3431.0, + "end": 3431.14, + "probability": 0.99951171875 + }, + { + "word": " year,", + "start": 3431.14, + "end": 3431.36, + "probability": 1.0 + }, + { + "word": " but", + "start": 3431.48, + "end": 3431.88, + "probability": 1.0 + }, + { + "word": " could", + "start": 3431.88, + "end": 3432.12, + "probability": 0.99755859375 + }, + { + "word": " not.", + "start": 3432.12, + "end": 3432.34, + "probability": 1.0 + } + ] + }, + { + "id": 3740, + "text": "We need to go at some point. Yeah, it's been a couple of years.", + "start": 3432.46, + "end": 3435.36, + "words": [ + { + "word": " We", + "start": 3432.46, + "end": 3432.58, + "probability": 0.9990234375 + }, + { + "word": " need", + "start": 3432.58, + "end": 3432.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3432.6, + "end": 3432.76, + "probability": 1.0 + }, + { + "word": " go", + "start": 3432.76, + "end": 3432.88, + "probability": 1.0 + }, + { + "word": " at", + "start": 3432.88, + "end": 3432.98, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 3432.98, + "end": 3433.06, + "probability": 1.0 + }, + { + "word": " point.", + "start": 3433.06, + "end": 3433.28, + "probability": 1.0 + }, + { + "word": " Yeah,", + "start": 3433.62, + "end": 3433.94, + "probability": 0.81689453125 + }, + { + "word": " it's", + "start": 3433.98, + "end": 3434.26, + "probability": 1.0 + }, + { + "word": " been", + "start": 3434.26, + "end": 3434.72, + "probability": 0.9892578125 + }, + { + "word": " a", + "start": 3434.72, + "end": 3434.88, + "probability": 1.0 + }, + { + "word": " couple", + "start": 3434.88, + "end": 3435.08, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3435.08, + "end": 3435.12, + "probability": 0.79833984375 + }, + { + "word": " years.", + "start": 3435.12, + "end": 3435.36, + "probability": 1.0 + } + ] + }, + { + "id": 3741, + "text": "We're going to have to like plan like almost the whole year to go to that.", + "start": 3435.58, + "end": 3438.8, + "words": [ + { + "word": " We're", + "start": 3435.58, + "end": 3435.9, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 3435.9, + "end": 3435.94, + "probability": 0.88232421875 + }, + { + "word": " to", + "start": 3435.94, + "end": 3435.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 3435.98, + "end": 3436.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 3436.1, + "end": 3436.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 3436.2, + "end": 3436.34, + "probability": 0.169677734375 + }, + { + "word": " plan", + "start": 3436.34, + "end": 3436.74, + "probability": 0.9541015625 + }, + { + "word": " like", + "start": 3436.74, + "end": 3437.48, + "probability": 0.890625 + }, + { + "word": " almost", + "start": 3437.48, + "end": 3437.72, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3437.72, + "end": 3437.88, + "probability": 0.99365234375 + }, + { + "word": " whole", + "start": 3437.88, + "end": 3438.02, + "probability": 1.0 + }, + { + "word": " year", + "start": 3438.02, + "end": 3438.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 3438.22, + "end": 3438.4, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 3438.4, + "end": 3438.54, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3438.54, + "end": 3438.66, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 3438.66, + "end": 3438.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3742, + "text": "Yeah, well, if you want to get a hotel, you definitely have to plan right now.", + "start": 3439.32, + "end": 3442.56, + "words": [ + { + "word": " Yeah,", + "start": 3439.32, + "end": 3439.64, + "probability": 0.99462890625 + }, + { + "word": " well,", + "start": 3439.64, + "end": 3439.78, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 3439.88, + "end": 3440.24, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3440.24, + "end": 3440.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 3440.4, + "end": 3440.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3440.54, + "end": 3440.62, + "probability": 1.0 + }, + { + "word": " get", + "start": 3440.62, + "end": 3440.68, + "probability": 0.99462890625 + }, + { + "word": " a", + "start": 3440.68, + "end": 3440.76, + "probability": 0.99951171875 + }, + { + "word": " hotel,", + "start": 3440.76, + "end": 3440.98, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3441.08, + "end": 3441.22, + "probability": 0.99951171875 + }, + { + "word": " definitely", + "start": 3441.22, + "end": 3441.54, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3441.54, + "end": 3441.78, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3441.78, + "end": 3441.92, + "probability": 1.0 + }, + { + "word": " plan", + "start": 3441.92, + "end": 3442.12, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 3442.12, + "end": 3442.34, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 3442.34, + "end": 3442.56, + "probability": 1.0 + } + ] + }, + { + "id": 3743, + "text": "I just want to go back to E3. Yeah, E3 is fun, but I like CES better.", + "start": 3442.8, + "end": 3447.12, + "words": [ + { + "word": " I", + "start": 3442.8, + "end": 3443.12, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 3443.12, + "end": 3443.26, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 3443.26, + "end": 3443.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 3443.34, + "end": 3443.44, + "probability": 1.0 + }, + { + "word": " go", + "start": 3443.44, + "end": 3443.46, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 3443.46, + "end": 3443.6, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3443.6, + "end": 3443.68, + "probability": 1.0 + }, + { + "word": " E3.", + "start": 3443.68, + "end": 3443.94, + "probability": 0.99951171875 + }, + { + "word": " Yeah,", + "start": 3444.56, + "end": 3444.88, + "probability": 0.998046875 + }, + { + "word": " E3", + "start": 3444.98, + "end": 3445.38, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3445.38, + "end": 3445.5, + "probability": 0.89599609375 + }, + { + "word": " fun,", + "start": 3445.5, + "end": 3445.66, + "probability": 0.9990234375 + }, + { + "word": " but", + "start": 3445.8, + "end": 3445.96, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3445.96, + "end": 3446.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 3446.1, + "end": 3446.5, + "probability": 0.99365234375 + }, + { + "word": " CES", + "start": 3446.5, + "end": 3446.82, + "probability": 1.0 + }, + { + "word": " better.", + "start": 3446.82, + "end": 3447.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3744, + "text": "It's just I've never been to CES, though, so I don't know what I'm missing.", + "start": 3447.2, + "end": 3449.56, + "words": [ + { + "word": " It's", + "start": 3447.2, + "end": 3447.38, + "probability": 0.80078125 + }, + { + "word": " just", + "start": 3447.38, + "end": 3447.48, + "probability": 1.0 + }, + { + "word": " I've", + "start": 3447.48, + "end": 3447.78, + "probability": 0.6513671875 + }, + { + "word": " never", + "start": 3447.78, + "end": 3447.88, + "probability": 1.0 + }, + { + "word": " been", + "start": 3447.88, + "end": 3448.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3448.08, + "end": 3448.22, + "probability": 1.0 + }, + { + "word": " CES,", + "start": 3448.22, + "end": 3448.56, + "probability": 0.9990234375 + }, + { + "word": " though,", + "start": 3448.56, + "end": 3448.74, + "probability": 0.95068359375 + }, + { + "word": " so", + "start": 3448.76, + "end": 3448.84, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3448.84, + "end": 3448.94, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3448.94, + "end": 3449.06, + "probability": 1.0 + }, + { + "word": " know", + "start": 3449.06, + "end": 3449.12, + "probability": 1.0 + }, + { + "word": " what", + "start": 3449.12, + "end": 3449.24, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3449.24, + "end": 3449.34, + "probability": 1.0 + }, + { + "word": " missing.", + "start": 3449.34, + "end": 3449.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3745, + "text": "Yeah, yeah, you don't know what you're missing. CES, in my opinion, is better.", + "start": 3450.22, + "end": 3454.3, + "words": [ + { + "word": " Yeah,", + "start": 3450.22, + "end": 3450.54, + "probability": 0.9970703125 + }, + { + "word": " yeah,", + "start": 3450.54, + "end": 3450.86, + "probability": 0.95947265625 + }, + { + "word": " you", + "start": 3450.92, + "end": 3451.32, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 3451.32, + "end": 3451.58, + "probability": 1.0 + }, + { + "word": " know", + "start": 3451.58, + "end": 3451.7, + "probability": 1.0 + }, + { + "word": " what", + "start": 3451.7, + "end": 3451.8, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 3451.8, + "end": 3451.92, + "probability": 1.0 + }, + { + "word": " missing.", + "start": 3451.92, + "end": 3452.18, + "probability": 0.9970703125 + }, + { + "word": " CES,", + "start": 3452.92, + "end": 3453.24, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3453.26, + "end": 3453.42, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 3453.42, + "end": 3453.62, + "probability": 1.0 + }, + { + "word": " opinion,", + "start": 3453.62, + "end": 3453.94, + "probability": 1.0 + }, + { + "word": " is", + "start": 3453.96, + "end": 3454.12, + "probability": 0.99853515625 + }, + { + "word": " better.", + "start": 3454.12, + "end": 3454.3, + "probability": 1.0 + } + ] + }, + { + "id": 3746, + "text": "If we go to CES, though, you can meet the one that you hate the most.", + "start": 3454.42, + "end": 3457.9, + "words": [ + { + "word": " If", + "start": 3454.42, + "end": 3454.58, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 3454.58, + "end": 3454.68, + "probability": 1.0 + }, + { + "word": " go", + "start": 3454.68, + "end": 3454.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3454.76, + "end": 3454.84, + "probability": 1.0 + }, + { + "word": " CES,", + "start": 3454.84, + "end": 3455.22, + "probability": 1.0 + }, + { + "word": " though,", + "start": 3455.22, + "end": 3455.44, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3455.48, + "end": 3455.58, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 3455.58, + "end": 3455.74, + "probability": 1.0 + }, + { + "word": " meet", + "start": 3455.74, + "end": 3455.96, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3455.96, + "end": 3456.62, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 3456.62, + "end": 3457.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3457.06, + "end": 3457.2, + "probability": 0.90966796875 + }, + { + "word": " you", + "start": 3457.2, + "end": 3457.28, + "probability": 1.0 + }, + { + "word": " hate", + "start": 3457.28, + "end": 3457.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 3457.5, + "end": 3457.64, + "probability": 1.0 + }, + { + "word": " most.", + "start": 3457.64, + "end": 3457.9, + "probability": 1.0 + } + ] + }, + { + "id": 3747, + "text": "Which one? We can run into Linus from Linus Tech Tips.", + "start": 3458.52, + "end": 3461.06, + "words": [ + { + "word": " Which", + "start": 3458.52, + "end": 3458.84, + "probability": 0.9599609375 + }, + { + "word": " one?", + "start": 3458.84, + "end": 3459.02, + "probability": 0.99951171875 + }, + { + "word": " We", + "start": 3459.12, + "end": 3459.24, + "probability": 0.9921875 + }, + { + "word": " can", + "start": 3459.24, + "end": 3459.34, + "probability": 0.998046875 + }, + { + "word": " run", + "start": 3459.34, + "end": 3459.5, + "probability": 1.0 + }, + { + "word": " into", + "start": 3459.5, + "end": 3459.66, + "probability": 0.99951171875 + }, + { + "word": " Linus", + "start": 3459.66, + "end": 3460.14, + "probability": 1.0 + }, + { + "word": " from", + "start": 3460.14, + "end": 3460.34, + "probability": 0.99853515625 + }, + { + "word": " Linus", + "start": 3460.34, + "end": 3460.64, + "probability": 1.0 + }, + { + "word": " Tech", + "start": 3460.64, + "end": 3460.82, + "probability": 0.9775390625 + }, + { + "word": " Tips.", + "start": 3460.82, + "end": 3461.06, + "probability": 1.0 + } + ] + }, + { + "id": 3748, + "text": "Oh, wow. Because he goes to that.", + "start": 3461.42, + "end": 3462.72, + "words": [ + { + "word": " Oh,", + "start": 3461.42, + "end": 3461.74, + "probability": 0.68798828125 + }, + { + "word": " wow.", + "start": 3461.74, + "end": 3461.88, + "probability": 0.97509765625 + }, + { + "word": " Because", + "start": 3462.06, + "end": 3462.18, + "probability": 0.9931640625 + }, + { + "word": " he", + "start": 3462.18, + "end": 3462.3, + "probability": 1.0 + }, + { + "word": " goes", + "start": 3462.3, + "end": 3462.42, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3462.42, + "end": 3462.56, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 3462.56, + "end": 3462.72, + "probability": 1.0 + } + ] + }, + { + "id": 3749, + "text": "He doesn't want to mess with me. Is there going to be like the Highlander?", + "start": 3463.4399999999996, + "end": 3466.2, + "words": [ + { + "word": " He", + "start": 3463.4399999999996, + "end": 3463.7599999999998, + "probability": 0.9638671875 + }, + { + "word": " doesn't", + "start": 3463.7599999999998, + "end": 3464.08, + "probability": 1.0 + }, + { + "word": " want", + "start": 3464.08, + "end": 3464.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 3464.16, + "end": 3464.26, + "probability": 0.99951171875 + }, + { + "word": " mess", + "start": 3464.26, + "end": 3464.38, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3464.38, + "end": 3464.48, + "probability": 1.0 + }, + { + "word": " me.", + "start": 3464.48, + "end": 3464.64, + "probability": 1.0 + }, + { + "word": " Is", + "start": 3464.88, + "end": 3465.0, + "probability": 0.984375 + }, + { + "word": " there", + "start": 3465.0, + "end": 3465.1, + "probability": 0.771484375 + }, + { + "word": " going", + "start": 3465.1, + "end": 3465.3, + "probability": 0.84033203125 + }, + { + "word": " to", + "start": 3465.3, + "end": 3465.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 3465.4, + "end": 3465.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 3465.48, + "end": 3465.6, + "probability": 0.67919921875 + }, + { + "word": " the", + "start": 3465.6, + "end": 3465.72, + "probability": 0.94482421875 + }, + { + "word": " Highlander?", + "start": 3465.72, + "end": 3466.2, + "probability": 0.99560546875 + } + ] + }, + { + "id": 3750, + "text": "Yeah. You're going to pull out a katana?", + "start": 3467.3, + "end": 3468.5, + "words": [ + { + "word": " Yeah.", + "start": 3467.3, + "end": 3467.62, + "probability": 0.68798828125 + }, + { + "word": " You're", + "start": 3467.68, + "end": 3467.82, + "probability": 0.9267578125 + }, + { + "word": " going", + "start": 3467.82, + "end": 3467.9, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3467.9, + "end": 3467.94, + "probability": 1.0 + }, + { + "word": " pull", + "start": 3467.94, + "end": 3468.0, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 3468.0, + "end": 3468.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 3468.1, + "end": 3468.2, + "probability": 1.0 + }, + { + "word": " katana?", + "start": 3468.2, + "end": 3468.5, + "probability": 0.99267578125 + } + ] + }, + { + "id": 3751, + "text": "There can be only one.", + "start": 3468.62, + "end": 3469.44, + "words": [ + { + "word": " There", + "start": 3468.62, + "end": 3468.76, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 3468.76, + "end": 3468.86, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 3468.86, + "end": 3468.96, + "probability": 1.0 + }, + { + "word": " only", + "start": 3468.96, + "end": 3469.16, + "probability": 1.0 + }, + { + "word": " one.", + "start": 3469.16, + "end": 3469.44, + "probability": 1.0 + } + ] + }, + { + "id": 3752, + "text": "You look like you're going to say something. Are you going to say something, Kent?", + "start": 3470.52, + "end": 3472.54, + "words": [ + { + "word": " You", + "start": 3470.52, + "end": 3470.84, + "probability": 1.0 + }, + { + "word": " look", + "start": 3470.84, + "end": 3470.96, + "probability": 1.0 + }, + { + "word": " like", + "start": 3470.96, + "end": 3471.06, + "probability": 1.0 + }, + { + "word": " you're", + "start": 3471.06, + "end": 3471.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 3471.2, + "end": 3471.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 3471.3, + "end": 3471.3, + "probability": 1.0 + }, + { + "word": " say", + "start": 3471.3, + "end": 3471.42, + "probability": 1.0 + }, + { + "word": " something.", + "start": 3471.42, + "end": 3471.68, + "probability": 1.0 + }, + { + "word": " Are", + "start": 3471.74, + "end": 3471.82, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3471.82, + "end": 3471.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 3471.88, + "end": 3472.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 3472.0, + "end": 3472.02, + "probability": 1.0 + }, + { + "word": " say", + "start": 3472.02, + "end": 3472.14, + "probability": 1.0 + }, + { + "word": " something,", + "start": 3472.14, + "end": 3472.36, + "probability": 1.0 + }, + { + "word": " Kent?", + "start": 3472.46, + "end": 3472.54, + "probability": 0.6591796875 + } + ] + }, + { + "id": 3753, + "text": "No, you're just, you're just... He's always poised just in case you blame him for something.", + "start": 3472.62, + "end": 3476.28, + "words": [ + { + "word": " No,", + "start": 3472.62, + "end": 3472.92, + "probability": 0.99658203125 + }, + { + "word": " you're", + "start": 3472.94, + "end": 3473.06, + "probability": 1.0 + }, + { + "word": " just,", + "start": 3473.06, + "end": 3473.28, + "probability": 1.0 + }, + { + "word": " you're", + "start": 3473.28, + "end": 3473.5, + "probability": 0.9931640625 + }, + { + "word": " just...", + "start": 3473.5, + "end": 3473.8, + "probability": 0.57177734375 + }, + { + "word": " He's", + "start": 3473.8, + "end": 3474.22, + "probability": 0.9990234375 + }, + { + "word": " always", + "start": 3474.22, + "end": 3474.4, + "probability": 0.99951171875 + }, + { + "word": " poised", + "start": 3474.4, + "end": 3474.76, + "probability": 0.994140625 + }, + { + "word": " just", + "start": 3474.76, + "end": 3475.1, + "probability": 0.86962890625 + }, + { + "word": " in", + "start": 3475.1, + "end": 3475.26, + "probability": 1.0 + }, + { + "word": " case", + "start": 3475.26, + "end": 3475.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 3475.42, + "end": 3475.56, + "probability": 1.0 + }, + { + "word": " blame", + "start": 3475.56, + "end": 3475.72, + "probability": 1.0 + }, + { + "word": " him", + "start": 3475.72, + "end": 3475.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 3475.9, + "end": 3476.04, + "probability": 1.0 + }, + { + "word": " something.", + "start": 3476.04, + "end": 3476.28, + "probability": 1.0 + } + ] + }, + { + "id": 3754, + "text": "Right. He's like, what'd you do, Kent? Contemplating.", + "start": 3476.52, + "end": 3479.38, + "words": [ + { + "word": " Right.", + "start": 3476.52, + "end": 3476.84, + "probability": 0.9970703125 + }, + { + "word": " He's", + "start": 3477.74, + "end": 3478.06, + "probability": 0.505859375 + }, + { + "word": " like,", + "start": 3478.06, + "end": 3478.3, + "probability": 0.52490234375 + }, + { + "word": " what'd", + "start": 3478.5, + "end": 3478.84, + "probability": 0.849609375 + }, + { + "word": " you", + "start": 3478.84, + "end": 3478.84, + "probability": 1.0 + }, + { + "word": " do,", + "start": 3478.84, + "end": 3478.84, + "probability": 0.99951171875 + }, + { + "word": " Kent?", + "start": 3478.84, + "end": 3478.84, + "probability": 0.9990234375 + }, + { + "word": " Contemplating.", + "start": 3479.06, + "end": 3479.38, + "probability": 0.66552734375 + } + ] + }, + { + "id": 3755, + "text": "What'd you do? You look guilty.", + "start": 3479.5, + "end": 3481.64, + "words": [ + { + "word": " What'd", + "start": 3479.5, + "end": 3479.7, + "probability": 0.9912109375 + }, + { + "word": " you", + "start": 3479.7, + "end": 3479.78, + "probability": 1.0 + }, + { + "word": " do?", + "start": 3479.78, + "end": 3479.98, + "probability": 1.0 + }, + { + "word": " You", + "start": 3480.84, + "end": 3481.16, + "probability": 0.9345703125 + }, + { + "word": " look", + "start": 3481.16, + "end": 3481.36, + "probability": 0.99951171875 + }, + { + "word": " guilty.", + "start": 3481.36, + "end": 3481.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3756, + "text": "All right, so let's talk about CES stuff, and we're going to use the Engadget winners list for this particular...", + "start": 3482.52, + "end": 3488.0, + "words": [ + { + "word": " All", + "start": 3482.52, + "end": 3482.84, + "probability": 0.94189453125 + }, + { + "word": " right,", + "start": 3482.84, + "end": 3482.96, + "probability": 1.0 + }, + { + "word": " so", + "start": 3482.98, + "end": 3483.08, + "probability": 1.0 + }, + { + "word": " let's", + "start": 3483.08, + "end": 3483.28, + "probability": 1.0 + }, + { + "word": " talk", + "start": 3483.28, + "end": 3483.38, + "probability": 1.0 + }, + { + "word": " about", + "start": 3483.38, + "end": 3483.54, + "probability": 1.0 + }, + { + "word": " CES", + "start": 3483.54, + "end": 3483.96, + "probability": 0.99951171875 + }, + { + "word": " stuff,", + "start": 3483.96, + "end": 3484.28, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3484.32, + "end": 3484.46, + "probability": 1.0 + }, + { + "word": " we're", + "start": 3484.46, + "end": 3484.6, + "probability": 1.0 + }, + { + "word": " going", + "start": 3484.6, + "end": 3484.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 3484.66, + "end": 3484.76, + "probability": 1.0 + }, + { + "word": " use", + "start": 3484.76, + "end": 3484.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 3484.96, + "end": 3485.24, + "probability": 1.0 + }, + { + "word": " Engadget", + "start": 3485.24, + "end": 3485.88, + "probability": 0.978515625 + }, + { + "word": " winners", + "start": 3485.88, + "end": 3486.6, + "probability": 0.95166015625 + }, + { + "word": " list", + "start": 3486.6, + "end": 3487.18, + "probability": 0.99072265625 + }, + { + "word": " for", + "start": 3487.18, + "end": 3487.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 3487.46, + "end": 3487.58, + "probability": 1.0 + }, + { + "word": " particular...", + "start": 3487.58, + "end": 3488.0, + "probability": 0.52587890625 + } + ] + }, + { + "id": 3757, + "text": "So this is the Consumer Electronics Show, for those of you who are not familiar with CES.", + "start": 3488.4, + "end": 3492.58, + "words": [ + { + "word": " So", + "start": 3488.4, + "end": 3488.5, + "probability": 0.95703125 + }, + { + "word": " this", + "start": 3488.5, + "end": 3488.78, + "probability": 0.91357421875 + }, + { + "word": " is", + "start": 3488.78, + "end": 3488.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 3488.9, + "end": 3489.04, + "probability": 0.99853515625 + }, + { + "word": " Consumer", + "start": 3489.04, + "end": 3489.44, + "probability": 0.966796875 + }, + { + "word": " Electronics", + "start": 3489.44, + "end": 3490.06, + "probability": 0.98046875 + }, + { + "word": " Show,", + "start": 3490.06, + "end": 3490.34, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3490.42, + "end": 3490.62, + "probability": 1.0 + }, + { + "word": " those", + "start": 3490.62, + "end": 3490.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 3490.82, + "end": 3490.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 3490.96, + "end": 3491.06, + "probability": 1.0 + }, + { + "word": " who", + "start": 3491.06, + "end": 3491.16, + "probability": 1.0 + }, + { + "word": " are", + "start": 3491.16, + "end": 3491.22, + "probability": 1.0 + }, + { + "word": " not", + "start": 3491.22, + "end": 3491.44, + "probability": 1.0 + }, + { + "word": " familiar", + "start": 3491.44, + "end": 3491.72, + "probability": 1.0 + }, + { + "word": " with", + "start": 3491.72, + "end": 3492.08, + "probability": 1.0 + }, + { + "word": " CES.", + "start": 3492.08, + "end": 3492.58, + "probability": 1.0 + } + ] + }, + { + "id": 3758, + "text": "Yeah, Consumer Electronics Showcase, which is mostly just a technology...", + "start": 3492.58, + "end": 3497.24, + "words": [ + { + "word": " Yeah,", + "start": 3492.58, + "end": 3492.92, + "probability": 0.97314453125 + }, + { + "word": " Consumer", + "start": 3492.94, + "end": 3493.2, + "probability": 0.99951171875 + }, + { + "word": " Electronics", + "start": 3493.2, + "end": 3493.68, + "probability": 0.99609375 + }, + { + "word": " Showcase,", + "start": 3493.68, + "end": 3494.04, + "probability": 1.0 + }, + { + "word": " which", + "start": 3494.16, + "end": 3494.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 3494.4, + "end": 3494.58, + "probability": 1.0 + }, + { + "word": " mostly", + "start": 3494.58, + "end": 3495.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 3495.0, + "end": 3495.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 3495.32, + "end": 3495.6, + "probability": 1.0 + }, + { + "word": " technology...", + "start": 3495.6, + "end": 3497.24, + "probability": 0.62548828125 + } + ] + }, + { + "id": 3759, + "text": "It's an excuse to go to Vegas. And beyond that, it's all the upcoming technology.", + "start": 3498.06, + "end": 3503.42, + "words": [ + { + "word": " It's", + "start": 3498.06, + "end": 3498.46, + "probability": 0.96484375 + }, + { + "word": " an", + "start": 3498.46, + "end": 3498.52, + "probability": 1.0 + }, + { + "word": " excuse", + "start": 3498.52, + "end": 3498.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 3498.8, + "end": 3499.04, + "probability": 1.0 + }, + { + "word": " go", + "start": 3499.04, + "end": 3499.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 3499.12, + "end": 3499.22, + "probability": 1.0 + }, + { + "word": " Vegas.", + "start": 3499.22, + "end": 3499.42, + "probability": 1.0 + }, + { + "word": " And", + "start": 3499.88, + "end": 3500.28, + "probability": 0.9951171875 + }, + { + "word": " beyond", + "start": 3500.28, + "end": 3501.08, + "probability": 0.998046875 + }, + { + "word": " that,", + "start": 3501.08, + "end": 3501.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3501.54, + "end": 3501.92, + "probability": 0.998046875 + }, + { + "word": " all", + "start": 3501.92, + "end": 3502.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3502.54, + "end": 3502.7, + "probability": 1.0 + }, + { + "word": " upcoming", + "start": 3502.7, + "end": 3503.1, + "probability": 0.72705078125 + }, + { + "word": " technology.", + "start": 3503.1, + "end": 3503.42, + "probability": 0.82421875 + } + ] + }, + { + "id": 3760, + "text": "All the new toys you're going to see over the next, like, three to four years.", + "start": 3503.42, + "end": 3506.18, + "words": [ + { + "word": " All", + "start": 3503.42, + "end": 3503.76, + "probability": 0.9892578125 + }, + { + "word": " the", + "start": 3503.76, + "end": 3503.88, + "probability": 1.0 + }, + { + "word": " new", + "start": 3503.88, + "end": 3504.04, + "probability": 1.0 + }, + { + "word": " toys", + "start": 3504.04, + "end": 3504.32, + "probability": 1.0 + }, + { + "word": " you're", + "start": 3504.32, + "end": 3504.56, + "probability": 1.0 + }, + { + "word": " going", + "start": 3504.56, + "end": 3504.6, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 3504.6, + "end": 3504.66, + "probability": 1.0 + }, + { + "word": " see", + "start": 3504.66, + "end": 3504.8, + "probability": 1.0 + }, + { + "word": " over", + "start": 3504.8, + "end": 3504.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3504.94, + "end": 3505.06, + "probability": 1.0 + }, + { + "word": " next,", + "start": 3505.06, + "end": 3505.22, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3505.26, + "end": 3505.44, + "probability": 1.0 + }, + { + "word": " three", + "start": 3505.44, + "end": 3505.6, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 3505.6, + "end": 3505.72, + "probability": 1.0 + }, + { + "word": " four", + "start": 3505.72, + "end": 3505.84, + "probability": 1.0 + }, + { + "word": " years.", + "start": 3505.84, + "end": 3506.18, + "probability": 1.0 + } + ] + }, + { + "id": 3761, + "text": "Yeah, and some of them are out now.", + "start": 3506.6, + "end": 3508.2, + "words": [ + { + "word": " Yeah,", + "start": 3506.6, + "end": 3507.0, + "probability": 0.98095703125 + }, + { + "word": " and", + "start": 3507.02, + "end": 3507.06, + "probability": 1.0 + }, + { + "word": " some", + "start": 3507.06, + "end": 3507.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 3507.18, + "end": 3507.28, + "probability": 1.0 + }, + { + "word": " them", + "start": 3507.28, + "end": 3507.42, + "probability": 1.0 + }, + { + "word": " are", + "start": 3507.42, + "end": 3507.54, + "probability": 1.0 + }, + { + "word": " out", + "start": 3507.54, + "end": 3507.94, + "probability": 0.99609375 + }, + { + "word": " now.", + "start": 3507.94, + "end": 3508.2, + "probability": 1.0 + } + ] + }, + { + "id": 3762, + "text": "Yeah, occasionally there's stuff that's going to be out right now, but a lot of times the big manufacturers will have something there that's just crazy bleeding edge.", + "start": 3508.54, + "end": 3515.02, + "words": [ + { + "word": " Yeah,", + "start": 3508.54, + "end": 3508.78, + "probability": 1.0 + }, + { + "word": " occasionally", + "start": 3508.8, + "end": 3509.12, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3509.12, + "end": 3509.44, + "probability": 0.99853515625 + }, + { + "word": " stuff", + "start": 3509.44, + "end": 3509.6, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3509.6, + "end": 3509.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 3509.78, + "end": 3509.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 3509.88, + "end": 3509.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 3509.98, + "end": 3510.04, + "probability": 1.0 + }, + { + "word": " out", + "start": 3510.04, + "end": 3510.14, + "probability": 1.0 + }, + { + "word": " right", + "start": 3510.14, + "end": 3510.3, + "probability": 1.0 + }, + { + "word": " now,", + "start": 3510.3, + "end": 3510.54, + "probability": 1.0 + }, + { + "word": " but", + "start": 3510.6, + "end": 3510.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 3510.74, + "end": 3510.86, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3510.86, + "end": 3510.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 3510.96, + "end": 3511.02, + "probability": 1.0 + }, + { + "word": " times", + "start": 3511.02, + "end": 3511.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 3511.26, + "end": 3511.52, + "probability": 0.97119140625 + }, + { + "word": " big", + "start": 3511.52, + "end": 3511.84, + "probability": 1.0 + }, + { + "word": " manufacturers", + "start": 3511.84, + "end": 3512.44, + "probability": 1.0 + }, + { + "word": " will", + "start": 3512.44, + "end": 3512.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 3512.9, + "end": 3513.26, + "probability": 1.0 + }, + { + "word": " something", + "start": 3513.26, + "end": 3513.52, + "probability": 1.0 + }, + { + "word": " there", + "start": 3513.52, + "end": 3513.7, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3513.7, + "end": 3513.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 3513.92, + "end": 3514.06, + "probability": 1.0 + }, + { + "word": " crazy", + "start": 3514.06, + "end": 3514.42, + "probability": 1.0 + }, + { + "word": " bleeding", + "start": 3514.42, + "end": 3514.68, + "probability": 0.7216796875 + }, + { + "word": " edge.", + "start": 3514.68, + "end": 3515.02, + "probability": 0.99609375 + } + ] + }, + { + "id": 3763, + "text": "Right. Let me just go ahead and just drop a note.", + "start": 3515.36, + "end": 3518.2, + "words": [ + { + "word": " Right.", + "start": 3515.36, + "end": 3515.76, + "probability": 0.9990234375 + }, + { + "word": " Let", + "start": 3515.82, + "end": 3516.1, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 3516.1, + "end": 3516.3, + "probability": 1.0 + }, + { + "word": " just", + "start": 3516.3, + "end": 3516.68, + "probability": 1.0 + }, + { + "word": " go", + "start": 3516.68, + "end": 3516.82, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 3516.82, + "end": 3516.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 3516.92, + "end": 3517.04, + "probability": 1.0 + }, + { + "word": " just", + "start": 3517.04, + "end": 3517.46, + "probability": 0.9990234375 + }, + { + "word": " drop", + "start": 3517.46, + "end": 3517.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 3517.82, + "end": 3517.94, + "probability": 1.0 + }, + { + "word": " note.", + "start": 3517.94, + "end": 3518.2, + "probability": 1.0 + } + ] + }, + { + "id": 3764, + "text": "I'm going to go ahead and just drop a note to the CES organizers.", + "start": 3518.4, + "end": 3519.7, + "words": [ + { + "word": " I'm", + "start": 3518.4, + "end": 3518.7, + "probability": 0.07318115234375 + }, + { + "word": " going", + "start": 3518.7, + "end": 3518.7, + "probability": 0.68408203125 + }, + { + "word": " to", + "start": 3518.7, + "end": 3518.7, + "probability": 0.9873046875 + }, + { + "word": " go", + "start": 3518.7, + "end": 3518.7, + "probability": 0.0382080078125 + }, + { + "word": " ahead", + "start": 3518.7, + "end": 3518.7, + "probability": 0.08831787109375 + }, + { + "word": " and", + "start": 3518.7, + "end": 3518.7, + "probability": 0.97265625 + }, + { + "word": " just", + "start": 3518.7, + "end": 3518.7, + "probability": 0.01739501953125 + }, + { + "word": " drop", + "start": 3518.7, + "end": 3518.7, + "probability": 0.0007686614990234375 + }, + { + "word": " a", + "start": 3518.7, + "end": 3518.7, + "probability": 0.07891845703125 + }, + { + "word": " note", + "start": 3518.7, + "end": 3518.7, + "probability": 0.650390625 + }, + { + "word": " to", + "start": 3518.7, + "end": 3518.7, + "probability": 0.96630859375 + }, + { + "word": " the", + "start": 3518.7, + "end": 3518.86, + "probability": 0.99853515625 + }, + { + "word": " CES", + "start": 3518.86, + "end": 3519.34, + "probability": 0.9990234375 + }, + { + "word": " organizers.", + "start": 3519.34, + "end": 3519.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3765, + "text": "If you could just make it... First of all, CES is monstrous.", + "start": 3520.72, + "end": 3525.02, + "words": [ + { + "word": " If", + "start": 3520.72, + "end": 3521.16, + "probability": 0.876953125 + }, + { + "word": " you", + "start": 3521.16, + "end": 3521.34, + "probability": 1.0 + }, + { + "word": " could", + "start": 3521.34, + "end": 3521.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 3521.56, + "end": 3521.86, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 3521.86, + "end": 3522.12, + "probability": 1.0 + }, + { + "word": " it...", + "start": 3522.12, + "end": 3522.52, + "probability": 0.58447265625 + }, + { + "word": " First", + "start": 3522.52, + "end": 3522.98, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 3522.98, + "end": 3523.12, + "probability": 1.0 + }, + { + "word": " all,", + "start": 3523.12, + "end": 3523.26, + "probability": 1.0 + }, + { + "word": " CES", + "start": 3523.34, + "end": 3524.02, + "probability": 1.0 + }, + { + "word": " is", + "start": 3524.02, + "end": 3524.3, + "probability": 1.0 + }, + { + "word": " monstrous.", + "start": 3524.3, + "end": 3525.02, + "probability": 1.0 + } + ] + }, + { + "id": 3766, + "text": "Yeah.", + "start": 3525.08, + "end": 3525.4, + "words": [ + { + "word": " Yeah.", + "start": 3525.08, + "end": 3525.4, + "probability": 0.70703125 + } + ] + }, + { + "id": 3767, + "text": "Right? It takes up all of the Las Vegas Convention Center, and then some.", + "start": 3525.52, + "end": 3532.48, + "words": [ + { + "word": " Right?", + "start": 3525.52, + "end": 3525.7, + "probability": 0.5185546875 + }, + { + "word": " It", + "start": 3525.76, + "end": 3525.9, + "probability": 0.9990234375 + }, + { + "word": " takes", + "start": 3525.9, + "end": 3526.14, + "probability": 1.0 + }, + { + "word": " up", + "start": 3526.14, + "end": 3526.46, + "probability": 1.0 + }, + { + "word": " all", + "start": 3526.46, + "end": 3527.26, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3527.26, + "end": 3527.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3527.54, + "end": 3527.84, + "probability": 1.0 + }, + { + "word": " Las", + "start": 3527.84, + "end": 3529.5, + "probability": 0.99658203125 + }, + { + "word": " Vegas", + "start": 3529.5, + "end": 3529.84, + "probability": 1.0 + }, + { + "word": " Convention", + "start": 3529.84, + "end": 3530.1, + "probability": 0.99755859375 + }, + { + "word": " Center,", + "start": 3530.1, + "end": 3530.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 3530.64, + "end": 3531.46, + "probability": 1.0 + }, + { + "word": " then", + "start": 3531.46, + "end": 3532.2, + "probability": 1.0 + }, + { + "word": " some.", + "start": 3532.2, + "end": 3532.48, + "probability": 1.0 + } + ] + }, + { + "id": 3768, + "text": "It's a gigantic walk.", + "start": 3532.72, + "end": 3534.4, + "words": [ + { + "word": " It's", + "start": 3532.72, + "end": 3533.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 3533.16, + "end": 3533.24, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 3533.24, + "end": 3533.8, + "probability": 1.0 + }, + { + "word": " walk.", + "start": 3533.8, + "end": 3534.4, + "probability": 1.0 + } + ] + }, + { + "id": 3769, + "text": "There's essentially no way to see it all yourself.", + "start": 3535.6, + "end": 3537.54, + "words": [ + { + "word": " There's", + "start": 3535.6, + "end": 3536.04, + "probability": 0.9736328125 + }, + { + "word": " essentially", + "start": 3536.04, + "end": 3536.3, + "probability": 1.0 + }, + { + "word": " no", + "start": 3536.3, + "end": 3536.56, + "probability": 1.0 + }, + { + "word": " way", + "start": 3536.56, + "end": 3536.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 3536.76, + "end": 3536.88, + "probability": 1.0 + }, + { + "word": " see", + "start": 3536.88, + "end": 3537.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 3537.04, + "end": 3537.12, + "probability": 1.0 + }, + { + "word": " all", + "start": 3537.12, + "end": 3537.24, + "probability": 1.0 + }, + { + "word": " yourself.", + "start": 3537.24, + "end": 3537.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3770, + "text": "It's a four-day event if you want to see it.", + "start": 3537.84, + "end": 3540.1, + "words": [ + { + "word": " It's", + "start": 3537.84, + "end": 3538.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 3538.14, + "end": 3538.2, + "probability": 1.0 + }, + { + "word": " four", + "start": 3538.2, + "end": 3538.54, + "probability": 0.99951171875 + }, + { + "word": "-day", + "start": 3538.54, + "end": 3538.66, + "probability": 0.9951171875 + }, + { + "word": " event", + "start": 3538.66, + "end": 3538.96, + "probability": 1.0 + }, + { + "word": " if", + "start": 3538.96, + "end": 3539.22, + "probability": 0.5478515625 + }, + { + "word": " you", + "start": 3539.22, + "end": 3539.58, + "probability": 1.0 + }, + { + "word": " want", + "start": 3539.58, + "end": 3539.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 3539.74, + "end": 3539.86, + "probability": 1.0 + }, + { + "word": " see", + "start": 3539.86, + "end": 3540.0, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3540.0, + "end": 3540.1, + "probability": 1.0 + } + ] + }, + { + "id": 3771, + "text": "And that's if you don't really stop and look at anything.", + "start": 3541.2, + "end": 3543.84, + "words": [ + { + "word": " And", + "start": 3541.2, + "end": 3541.64, + "probability": 0.96875 + }, + { + "word": " that's", + "start": 3541.64, + "end": 3542.08, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 3542.08, + "end": 3542.54, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3542.54, + "end": 3542.68, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3542.68, + "end": 3542.82, + "probability": 1.0 + }, + { + "word": " really", + "start": 3542.82, + "end": 3542.96, + "probability": 1.0 + }, + { + "word": " stop", + "start": 3542.96, + "end": 3543.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 3543.2, + "end": 3543.4, + "probability": 1.0 + }, + { + "word": " look", + "start": 3543.4, + "end": 3543.56, + "probability": 1.0 + }, + { + "word": " at", + "start": 3543.56, + "end": 3543.68, + "probability": 1.0 + }, + { + "word": " anything.", + "start": 3543.68, + "end": 3543.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3772, + "text": "So, I mean, it's a monstrous event.", + "start": 3544.18, + "end": 3546.28, + "words": [ + { + "word": " So,", + "start": 3544.18, + "end": 3544.62, + "probability": 0.966796875 + }, + { + "word": " I", + "start": 3544.7, + "end": 3544.88, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 3544.88, + "end": 3545.06, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3545.06, + "end": 3545.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 3545.22, + "end": 3545.5, + "probability": 0.99951171875 + }, + { + "word": " monstrous", + "start": 3545.5, + "end": 3546.18, + "probability": 1.0 + }, + { + "word": " event.", + "start": 3546.18, + "end": 3546.28, + "probability": 0.99462890625 + } + ] + }, + { + "id": 3773, + "text": "Yeah, you're going to be walking, like, 30 miles a day.", + "start": 3546.28, + "end": 3547.96, + "words": [ + { + "word": " Yeah,", + "start": 3546.28, + "end": 3546.38, + "probability": 0.8779296875 + }, + { + "word": " you're", + "start": 3546.38, + "end": 3546.56, + "probability": 1.0 + }, + { + "word": " going", + "start": 3546.56, + "end": 3546.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 3546.62, + "end": 3546.62, + "probability": 1.0 + }, + { + "word": " be", + "start": 3546.62, + "end": 3546.74, + "probability": 1.0 + }, + { + "word": " walking,", + "start": 3546.74, + "end": 3546.94, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3546.98, + "end": 3547.16, + "probability": 0.99951171875 + }, + { + "word": " 30", + "start": 3547.18, + "end": 3547.4, + "probability": 0.99951171875 + }, + { + "word": " miles", + "start": 3547.4, + "end": 3547.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 3547.62, + "end": 3547.8, + "probability": 1.0 + }, + { + "word": " day.", + "start": 3547.8, + "end": 3547.96, + "probability": 1.0 + } + ] + }, + { + "id": 3774, + "text": "And, yeah, you'll get your steps in for sure.", + "start": 3548.4, + "end": 3552.44, + "words": [ + { + "word": " And,", + "start": 3548.4, + "end": 3548.8, + "probability": 0.9072265625 + }, + { + "word": " yeah,", + "start": 3548.88, + "end": 3549.74, + "probability": 0.98486328125 + }, + { + "word": " you'll", + "start": 3549.84, + "end": 3550.6, + "probability": 0.99462890625 + }, + { + "word": " get", + "start": 3550.6, + "end": 3551.2, + "probability": 1.0 + }, + { + "word": " your", + "start": 3551.2, + "end": 3551.34, + "probability": 1.0 + }, + { + "word": " steps", + "start": 3551.34, + "end": 3551.6, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 3551.6, + "end": 3551.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 3551.8, + "end": 3552.12, + "probability": 0.9072265625 + }, + { + "word": " sure.", + "start": 3552.12, + "end": 3552.44, + "probability": 1.0 + } + ] + }, + { + "id": 3775, + "text": "But if they could make, like, if they could cut the cell phone case manufacturers down to, I don't know, maybe a third of the event, that would be lovely.", + "start": 3553.4, + "end": 3563.6, + "words": [ + { + "word": " But", + "start": 3553.4, + "end": 3553.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 3553.84, + "end": 3554.08, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 3554.08, + "end": 3554.2, + "probability": 1.0 + }, + { + "word": " could", + "start": 3554.2, + "end": 3554.36, + "probability": 0.888671875 + }, + { + "word": " make,", + "start": 3554.36, + "end": 3554.58, + "probability": 0.7451171875 + }, + { + "word": " like,", + "start": 3554.7, + "end": 3555.08, + "probability": 1.0 + }, + { + "word": " if", + "start": 3555.2, + "end": 3555.88, + "probability": 1.0 + }, + { + "word": " they", + "start": 3555.88, + "end": 3556.04, + "probability": 1.0 + }, + { + "word": " could", + "start": 3556.04, + "end": 3556.16, + "probability": 1.0 + }, + { + "word": " cut", + "start": 3556.16, + "end": 3556.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 3556.48, + "end": 3556.7, + "probability": 1.0 + }, + { + "word": " cell", + "start": 3556.7, + "end": 3557.1, + "probability": 0.9990234375 + }, + { + "word": " phone", + "start": 3557.1, + "end": 3557.38, + "probability": 1.0 + }, + { + "word": " case", + "start": 3557.38, + "end": 3557.76, + "probability": 1.0 + }, + { + "word": " manufacturers", + "start": 3557.76, + "end": 3558.58, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 3558.58, + "end": 3559.02, + "probability": 1.0 + }, + { + "word": " to,", + "start": 3559.02, + "end": 3559.32, + "probability": 1.0 + }, + { + "word": " I", + "start": 3559.38, + "end": 3559.52, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3559.52, + "end": 3559.64, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3559.64, + "end": 3559.78, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 3559.88, + "end": 3560.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 3560.42, + "end": 3560.76, + "probability": 1.0 + }, + { + "word": " third", + "start": 3560.76, + "end": 3561.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 3561.24, + "end": 3561.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3561.76, + "end": 3562.06, + "probability": 1.0 + }, + { + "word": " event,", + "start": 3562.06, + "end": 3562.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 3562.96, + "end": 3563.12, + "probability": 1.0 + }, + { + "word": " would", + "start": 3563.12, + "end": 3563.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 3563.26, + "end": 3563.4, + "probability": 1.0 + }, + { + "word": " lovely.", + "start": 3563.4, + "end": 3563.6, + "probability": 1.0 + } + ] + }, + { + "id": 3776, + "text": "I want to see how that's an electronic anyway, though.", + "start": 3564.04, + "end": 3566.26, + "words": [ + { + "word": " I", + "start": 3564.04, + "end": 3564.18, + "probability": 0.9931640625 + }, + { + "word": " want", + "start": 3564.18, + "end": 3564.24, + "probability": 0.9189453125 + }, + { + "word": " to", + "start": 3564.24, + "end": 3564.3, + "probability": 1.0 + }, + { + "word": " see", + "start": 3564.3, + "end": 3564.38, + "probability": 1.0 + }, + { + "word": " how", + "start": 3564.38, + "end": 3564.48, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3564.48, + "end": 3564.8, + "probability": 1.0 + }, + { + "word": " an", + "start": 3564.8, + "end": 3564.86, + "probability": 0.98828125 + }, + { + "word": " electronic", + "start": 3564.86, + "end": 3565.22, + "probability": 0.99951171875 + }, + { + "word": " anyway,", + "start": 3565.22, + "end": 3565.94, + "probability": 0.97607421875 + }, + { + "word": " though.", + "start": 3566.08, + "end": 3566.26, + "probability": 1.0 + } + ] + }, + { + "id": 3777, + "text": "Yeah, but it's also accessories for your electronics.", + "start": 3566.42, + "end": 3568.62, + "words": [ + { + "word": " Yeah,", + "start": 3566.42, + "end": 3566.86, + "probability": 0.9970703125 + }, + { + "word": " but", + "start": 3567.0, + "end": 3567.16, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3567.16, + "end": 3567.32, + "probability": 1.0 + }, + { + "word": " also", + "start": 3567.32, + "end": 3567.46, + "probability": 1.0 + }, + { + "word": " accessories", + "start": 3567.46, + "end": 3567.88, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3567.88, + "end": 3568.1, + "probability": 1.0 + }, + { + "word": " your", + "start": 3568.1, + "end": 3568.24, + "probability": 1.0 + }, + { + "word": " electronics.", + "start": 3568.24, + "end": 3568.62, + "probability": 1.0 + } + ] + }, + { + "id": 3778, + "text": "Not to mention they have all kinds of stuff there that's not necessarily electronic, but it's involved in the technology somehow.", + "start": 3569.44, + "end": 3577.1, + "words": [ + { + "word": " Not", + "start": 3569.44, + "end": 3569.88, + "probability": 0.7275390625 + }, + { + "word": " to", + "start": 3569.88, + "end": 3570.32, + "probability": 1.0 + }, + { + "word": " mention", + "start": 3570.32, + "end": 3570.5, + "probability": 1.0 + }, + { + "word": " they", + "start": 3570.5, + "end": 3570.68, + "probability": 0.98486328125 + }, + { + "word": " have", + "start": 3570.68, + "end": 3570.9, + "probability": 1.0 + }, + { + "word": " all", + "start": 3570.9, + "end": 3571.6, + "probability": 0.9990234375 + }, + { + "word": " kinds", + "start": 3571.6, + "end": 3571.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 3571.78, + "end": 3571.96, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 3571.96, + "end": 3572.14, + "probability": 1.0 + }, + { + "word": " there", + "start": 3572.14, + "end": 3572.28, + "probability": 0.76123046875 + }, + { + "word": " that's", + "start": 3572.28, + "end": 3572.5, + "probability": 1.0 + }, + { + "word": " not", + "start": 3572.5, + "end": 3572.64, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 3572.64, + "end": 3573.06, + "probability": 1.0 + }, + { + "word": " electronic,", + "start": 3573.06, + "end": 3573.58, + "probability": 1.0 + }, + { + "word": " but", + "start": 3573.64, + "end": 3573.94, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3573.94, + "end": 3574.14, + "probability": 1.0 + }, + { + "word": " involved", + "start": 3574.14, + "end": 3574.4, + "probability": 1.0 + }, + { + "word": " in", + "start": 3574.4, + "end": 3574.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 3574.78, + "end": 3575.64, + "probability": 1.0 + }, + { + "word": " technology", + "start": 3575.64, + "end": 3576.54, + "probability": 1.0 + }, + { + "word": " somehow.", + "start": 3576.54, + "end": 3577.1, + "probability": 1.0 + } + ] + }, + { + "id": 3779, + "text": "Right.", + "start": 3577.44, + "end": 3577.88, + "words": [ + { + "word": " Right.", + "start": 3577.44, + "end": 3577.88, + "probability": 0.982421875 + } + ] + }, + { + "id": 3780, + "text": "And there's a lot to see.", + "start": 3578.4, + "end": 3580.8, + "words": [ + { + "word": " And", + "start": 3578.4, + "end": 3578.64, + "probability": 0.81201171875 + }, + { + "word": " there's", + "start": 3578.64, + "end": 3579.58, + "probability": 0.927734375 + }, + { + "word": " a", + "start": 3579.58, + "end": 3580.02, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3580.02, + "end": 3580.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 3580.26, + "end": 3580.48, + "probability": 1.0 + }, + { + "word": " see.", + "start": 3580.48, + "end": 3580.8, + "probability": 1.0 + } + ] + }, + { + "id": 3781, + "text": "And last year, CES was all VR, right?", + "start": 3581.72, + "end": 3585.7, + "words": [ + { + "word": " And", + "start": 3581.72, + "end": 3582.14, + "probability": 0.99951171875 + }, + { + "word": " last", + "start": 3582.14, + "end": 3582.56, + "probability": 1.0 + }, + { + "word": " year,", + "start": 3582.56, + "end": 3582.94, + "probability": 1.0 + }, + { + "word": " CES", + "start": 3583.0, + "end": 3583.46, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 3583.46, + "end": 3583.86, + "probability": 1.0 + }, + { + "word": " all", + "start": 3583.86, + "end": 3584.48, + "probability": 1.0 + }, + { + "word": " VR,", + "start": 3584.48, + "end": 3584.9, + "probability": 1.0 + }, + { + "word": " right?", + "start": 3585.14, + "end": 3585.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3782, + "text": "It was just huge amounts of virtual reality and televisions.", + "start": 3585.78, + "end": 3589.94, + "words": [ + { + "word": " It", + "start": 3585.78, + "end": 3585.88, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 3585.88, + "end": 3585.98, + "probability": 1.0 + }, + { + "word": " just", + "start": 3585.98, + "end": 3586.18, + "probability": 1.0 + }, + { + "word": " huge", + "start": 3586.18, + "end": 3587.22, + "probability": 0.9990234375 + }, + { + "word": " amounts", + "start": 3587.22, + "end": 3587.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 3587.68, + "end": 3587.94, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 3587.94, + "end": 3588.22, + "probability": 1.0 + }, + { + "word": " reality", + "start": 3588.22, + "end": 3588.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 3588.6, + "end": 3589.06, + "probability": 0.96923828125 + }, + { + "word": " televisions.", + "start": 3589.06, + "end": 3589.94, + "probability": 1.0 + } + ] + }, + { + "id": 3783, + "text": "Yeah.", + "start": 3590.24, + "end": 3590.66, + "words": [ + { + "word": " Yeah.", + "start": 3590.24, + "end": 3590.66, + "probability": 0.9267578125 + } + ] + }, + { + "id": 3784, + "text": "There's always a lot of televisions at CES.", + "start": 3590.76, + "end": 3592.6, + "words": [ + { + "word": " There's", + "start": 3590.76, + "end": 3591.1, + "probability": 1.0 + }, + { + "word": " always", + "start": 3591.1, + "end": 3591.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 3591.22, + "end": 3591.38, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3591.38, + "end": 3591.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 3591.54, + "end": 3591.62, + "probability": 1.0 + }, + { + "word": " televisions", + "start": 3591.62, + "end": 3592.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 3592.02, + "end": 3592.22, + "probability": 0.9716796875 + }, + { + "word": " CES.", + "start": 3592.22, + "end": 3592.6, + "probability": 1.0 + } + ] + }, + { + "id": 3785, + "text": "You know, those two things are directly related, and there's only probably another 10 to 15 years while you still will need to have a TV at all.", + "start": 3592.78, + "end": 3600.32, + "words": [ + { + "word": " You", + "start": 3592.78, + "end": 3593.2, + "probability": 0.99072265625 + }, + { + "word": " know,", + "start": 3593.2, + "end": 3593.32, + "probability": 1.0 + }, + { + "word": " those", + "start": 3593.36, + "end": 3593.56, + "probability": 1.0 + }, + { + "word": " two", + "start": 3593.56, + "end": 3593.7, + "probability": 1.0 + }, + { + "word": " things", + "start": 3593.7, + "end": 3593.9, + "probability": 1.0 + }, + { + "word": " are", + "start": 3593.9, + "end": 3594.08, + "probability": 1.0 + }, + { + "word": " directly", + "start": 3594.08, + "end": 3594.32, + "probability": 1.0 + }, + { + "word": " related,", + "start": 3594.32, + "end": 3594.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 3594.86, + "end": 3595.1, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3595.1, + "end": 3595.52, + "probability": 0.99755859375 + }, + { + "word": " only", + "start": 3595.52, + "end": 3595.7, + "probability": 0.9892578125 + }, + { + "word": " probably", + "start": 3595.7, + "end": 3596.04, + "probability": 1.0 + }, + { + "word": " another", + "start": 3596.04, + "end": 3596.44, + "probability": 1.0 + }, + { + "word": " 10", + "start": 3596.44, + "end": 3596.86, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 3596.86, + "end": 3597.4, + "probability": 1.0 + }, + { + "word": " 15", + "start": 3597.4, + "end": 3597.72, + "probability": 1.0 + }, + { + "word": " years", + "start": 3597.72, + "end": 3598.06, + "probability": 1.0 + }, + { + "word": " while", + "start": 3598.06, + "end": 3598.46, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3598.46, + "end": 3598.66, + "probability": 1.0 + }, + { + "word": " still", + "start": 3598.66, + "end": 3598.92, + "probability": 1.0 + }, + { + "word": " will", + "start": 3598.92, + "end": 3599.18, + "probability": 1.0 + }, + { + "word": " need", + "start": 3599.18, + "end": 3599.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 3599.36, + "end": 3599.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 3599.5, + "end": 3599.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 3599.66, + "end": 3599.8, + "probability": 1.0 + }, + { + "word": " TV", + "start": 3599.8, + "end": 3600.02, + "probability": 1.0 + }, + { + "word": " at", + "start": 3600.02, + "end": 3600.16, + "probability": 0.9990234375 + }, + { + "word": " all.", + "start": 3600.16, + "end": 3600.32, + "probability": 1.0 + } + ] + }, + { + "id": 3786, + "text": "We're going to talk about that in a minute.", + "start": 3602.04, + "end": 3603.3, + "words": [ + { + "word": " We're", + "start": 3602.04, + "end": 3602.46, + "probability": 0.99267578125 + }, + { + "word": " going", + "start": 3602.46, + "end": 3602.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3602.46, + "end": 3602.56, + "probability": 1.0 + }, + { + "word": " talk", + "start": 3602.56, + "end": 3602.7, + "probability": 1.0 + }, + { + "word": " about", + "start": 3602.7, + "end": 3602.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 3602.86, + "end": 3603.0, + "probability": 1.0 + }, + { + "word": " in", + "start": 3603.0, + "end": 3603.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 3603.1, + "end": 3603.14, + "probability": 1.0 + }, + { + "word": " minute.", + "start": 3603.14, + "end": 3603.3, + "probability": 1.0 + } + ] + }, + { + "id": 3787, + "text": "Let's fit Greg in here just so that we can get that done.", + "start": 3603.36, + "end": 3606.7, + "words": [ + { + "word": " Let's", + "start": 3603.36, + "end": 3603.64, + "probability": 0.99951171875 + }, + { + "word": " fit", + "start": 3603.64, + "end": 3603.94, + "probability": 0.99951171875 + }, + { + "word": " Greg", + "start": 3603.94, + "end": 3604.18, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3604.18, + "end": 3604.42, + "probability": 1.0 + }, + { + "word": " here", + "start": 3604.42, + "end": 3604.58, + "probability": 1.0 + }, + { + "word": " just", + "start": 3604.58, + "end": 3604.78, + "probability": 0.99365234375 + }, + { + "word": " so", + "start": 3604.78, + "end": 3604.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 3604.94, + "end": 3605.14, + "probability": 1.0 + }, + { + "word": " we", + "start": 3605.14, + "end": 3605.5, + "probability": 1.0 + }, + { + "word": " can", + "start": 3605.5, + "end": 3605.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 3605.68, + "end": 3606.34, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3606.34, + "end": 3606.52, + "probability": 1.0 + }, + { + "word": " done.", + "start": 3606.52, + "end": 3606.7, + "probability": 0.96044921875 + } + ] + }, + { + "id": 3788, + "text": "Same subject.", + "start": 3606.7, + "end": 3607.06, + "words": [ + { + "word": " Same", + "start": 3606.7, + "end": 3606.88, + "probability": 0.49169921875 + }, + { + "word": " subject.", + "start": 3606.88, + "end": 3607.06, + "probability": 1.0 + } + ] + }, + { + "id": 3789, + "text": "Hello, Greg.", + "start": 3607.06, + "end": 3607.42, + "words": [ + { + "word": " Hello,", + "start": 3607.06, + "end": 3607.22, + "probability": 0.9931640625 + }, + { + "word": " Greg.", + "start": 3607.26, + "end": 3607.42, + "probability": 0.998046875 + } + ] + }, + { + "id": 3790, + "text": "How are you?", + "start": 3607.46, + "end": 3607.86, + "words": [ + { + "word": " How", + "start": 3607.46, + "end": 3607.58, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3607.58, + "end": 3607.7, + "probability": 1.0 + }, + { + "word": " you?", + "start": 3607.7, + "end": 3607.86, + "probability": 1.0 + } + ] + }, + { + "id": 3791, + "text": "Yeah, same subject as you.", + "start": 3607.94, + "end": 3609.14, + "words": [ + { + "word": " Yeah,", + "start": 3607.94, + "end": 3608.26, + "probability": 0.9892578125 + }, + { + "word": " same", + "start": 3608.32, + "end": 3608.56, + "probability": 0.9951171875 + }, + { + "word": " subject", + "start": 3608.56, + "end": 3608.92, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3608.92, + "end": 3609.12, + "probability": 0.88525390625 + }, + { + "word": " you.", + "start": 3609.12, + "end": 3609.14, + "probability": 0.38232421875 + } + ] + }, + { + "id": 3792, + "text": "I'm doing good.", + "start": 3609.18, + "end": 3609.66, + "words": [ + { + "word": " I'm", + "start": 3609.18, + "end": 3609.36, + "probability": 0.9765625 + }, + { + "word": " doing", + "start": 3609.36, + "end": 3609.48, + "probability": 0.98388671875 + }, + { + "word": " good.", + "start": 3609.48, + "end": 3609.66, + "probability": 1.0 + } + ] + }, + { + "id": 3793, + "text": "Thanks, Mike.", + "start": 3609.8, + "end": 3610.4, + "words": [ + { + "word": " Thanks,", + "start": 3609.8, + "end": 3610.1, + "probability": 0.998046875 + }, + { + "word": " Mike.", + "start": 3610.24, + "end": 3610.4, + "probability": 1.0 + } + ] + }, + { + "id": 3794, + "text": "On the subject of virtual reality, I'm reading some exciting news about developments other than gaming.", + "start": 3610.5, + "end": 3617.94, + "words": [ + { + "word": " On", + "start": 3610.5, + "end": 3610.68, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 3610.68, + "end": 3610.8, + "probability": 1.0 + }, + { + "word": " subject", + "start": 3610.8, + "end": 3611.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 3611.22, + "end": 3611.5, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 3611.5, + "end": 3611.82, + "probability": 0.99951171875 + }, + { + "word": " reality,", + "start": 3611.82, + "end": 3612.5, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3612.78, + "end": 3613.46, + "probability": 1.0 + }, + { + "word": " reading", + "start": 3613.46, + "end": 3613.6, + "probability": 1.0 + }, + { + "word": " some", + "start": 3613.6, + "end": 3613.84, + "probability": 1.0 + }, + { + "word": " exciting", + "start": 3613.84, + "end": 3614.32, + "probability": 1.0 + }, + { + "word": " news", + "start": 3614.32, + "end": 3614.76, + "probability": 1.0 + }, + { + "word": " about", + "start": 3614.76, + "end": 3615.44, + "probability": 0.99951171875 + }, + { + "word": " developments", + "start": 3615.44, + "end": 3616.66, + "probability": 1.0 + }, + { + "word": " other", + "start": 3616.66, + "end": 3617.06, + "probability": 1.0 + }, + { + "word": " than", + "start": 3617.06, + "end": 3617.36, + "probability": 1.0 + }, + { + "word": " gaming.", + "start": 3617.36, + "end": 3617.94, + "probability": 1.0 + } + ] + }, + { + "id": 3795, + "text": "So the woman is having contractions.", + "start": 3618.44, + "end": 3621.42, + "words": [ + { + "word": " So", + "start": 3618.44, + "end": 3618.96, + "probability": 0.9794921875 + }, + { + "word": " the", + "start": 3618.96, + "end": 3619.36, + "probability": 0.9423828125 + }, + { + "word": " woman", + "start": 3619.36, + "end": 3619.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 3619.68, + "end": 3620.1, + "probability": 1.0 + }, + { + "word": " having", + "start": 3620.1, + "end": 3620.64, + "probability": 1.0 + }, + { + "word": " contractions.", + "start": 3620.64, + "end": 3621.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 3796, + "text": "She's in the hospital.", + "start": 3621.42, + "end": 3622.28, + "words": [ + { + "word": " She's", + "start": 3621.42, + "end": 3621.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 3621.64, + "end": 3621.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3621.76, + "end": 3621.88, + "probability": 1.0 + }, + { + "word": " hospital.", + "start": 3621.88, + "end": 3622.28, + "probability": 1.0 + } + ] + }, + { + "id": 3797, + "text": "She's contemplating getting the epidural, which is fraught with complications.", + "start": 3622.36, + "end": 3626.4, + "words": [ + { + "word": " She's", + "start": 3622.36, + "end": 3622.66, + "probability": 1.0 + }, + { + "word": " contemplating", + "start": 3622.66, + "end": 3623.42, + "probability": 1.0 + }, + { + "word": " getting", + "start": 3623.42, + "end": 3623.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 3623.64, + "end": 3623.88, + "probability": 1.0 + }, + { + "word": " epidural,", + "start": 3623.88, + "end": 3624.46, + "probability": 1.0 + }, + { + "word": " which", + "start": 3624.5, + "end": 3624.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 3624.78, + "end": 3624.98, + "probability": 0.98681640625 + }, + { + "word": " fraught", + "start": 3624.98, + "end": 3625.72, + "probability": 0.994140625 + }, + { + "word": " with", + "start": 3625.72, + "end": 3625.88, + "probability": 1.0 + }, + { + "word": " complications.", + "start": 3625.88, + "end": 3626.4, + "probability": 1.0 + } + ] + }, + { + "id": 3798, + "text": "And the doctor says, well, here, put these on.", + "start": 3626.86, + "end": 3629.4, + "words": [ + { + "word": " And", + "start": 3626.86, + "end": 3627.38, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 3627.38, + "end": 3627.48, + "probability": 1.0 + }, + { + "word": " doctor", + "start": 3627.48, + "end": 3627.78, + "probability": 0.99951171875 + }, + { + "word": " says,", + "start": 3627.78, + "end": 3627.96, + "probability": 1.0 + }, + { + "word": " well,", + "start": 3628.1, + "end": 3628.26, + "probability": 0.94482421875 + }, + { + "word": " here,", + "start": 3628.34, + "end": 3628.48, + "probability": 1.0 + }, + { + "word": " put", + "start": 3628.56, + "end": 3628.82, + "probability": 1.0 + }, + { + "word": " these", + "start": 3628.82, + "end": 3629.1, + "probability": 1.0 + }, + { + "word": " on.", + "start": 3629.1, + "end": 3629.4, + "probability": 1.0 + } + ] + }, + { + "id": 3799, + "text": "Gives her the goggles.", + "start": 3629.52, + "end": 3630.68, + "words": [ + { + "word": " Gives", + "start": 3629.52, + "end": 3630.04, + "probability": 0.998046875 + }, + { + "word": " her", + "start": 3630.04, + "end": 3630.16, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3630.16, + "end": 3630.28, + "probability": 1.0 + }, + { + "word": " goggles.", + "start": 3630.28, + "end": 3630.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3800, + "text": "And her attention then is changed from the pain from the contractions.", + "start": 3631.18, + "end": 3636.96, + "words": [ + { + "word": " And", + "start": 3631.18, + "end": 3631.7, + "probability": 0.95654296875 + }, + { + "word": " her", + "start": 3631.7, + "end": 3632.44, + "probability": 0.9970703125 + }, + { + "word": " attention", + "start": 3632.44, + "end": 3633.26, + "probability": 0.99365234375 + }, + { + "word": " then", + "start": 3633.26, + "end": 3633.56, + "probability": 0.94775390625 + }, + { + "word": " is", + "start": 3633.56, + "end": 3633.84, + "probability": 1.0 + }, + { + "word": " changed", + "start": 3633.84, + "end": 3634.76, + "probability": 1.0 + }, + { + "word": " from", + "start": 3634.76, + "end": 3635.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 3635.3, + "end": 3635.68, + "probability": 1.0 + }, + { + "word": " pain", + "start": 3635.68, + "end": 3636.0, + "probability": 1.0 + }, + { + "word": " from", + "start": 3636.0, + "end": 3636.24, + "probability": 0.8759765625 + }, + { + "word": " the", + "start": 3636.24, + "end": 3636.38, + "probability": 1.0 + }, + { + "word": " contractions.", + "start": 3636.38, + "end": 3636.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3801, + "text": "To the waterfall and the ocean and whatever you see with those goggles.", + "start": 3636.96, + "end": 3641.04, + "words": [ + { + "word": " To", + "start": 3636.96, + "end": 3637.66, + "probability": 0.00701141357421875 + }, + { + "word": " the", + "start": 3637.66, + "end": 3637.74, + "probability": 0.998046875 + }, + { + "word": " waterfall", + "start": 3637.74, + "end": 3638.24, + "probability": 0.9609375 + }, + { + "word": " and", + "start": 3638.24, + "end": 3638.54, + "probability": 0.70849609375 + }, + { + "word": " the", + "start": 3638.54, + "end": 3638.66, + "probability": 0.99951171875 + }, + { + "word": " ocean", + "start": 3638.66, + "end": 3639.04, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3639.04, + "end": 3639.32, + "probability": 0.260986328125 + }, + { + "word": " whatever", + "start": 3639.32, + "end": 3639.82, + "probability": 0.990234375 + }, + { + "word": " you", + "start": 3639.82, + "end": 3640.04, + "probability": 0.99853515625 + }, + { + "word": " see", + "start": 3640.04, + "end": 3640.3, + "probability": 1.0 + }, + { + "word": " with", + "start": 3640.3, + "end": 3640.48, + "probability": 0.99853515625 + }, + { + "word": " those", + "start": 3640.48, + "end": 3640.66, + "probability": 1.0 + }, + { + "word": " goggles.", + "start": 3640.66, + "end": 3641.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3802, + "text": "And hours went by, but it only seemed like minutes.", + "start": 3642.24, + "end": 3644.86, + "words": [ + { + "word": " And", + "start": 3642.24, + "end": 3642.7, + "probability": 0.88427734375 + }, + { + "word": " hours", + "start": 3642.7, + "end": 3643.16, + "probability": 0.99658203125 + }, + { + "word": " went", + "start": 3643.16, + "end": 3643.42, + "probability": 1.0 + }, + { + "word": " by,", + "start": 3643.42, + "end": 3643.74, + "probability": 1.0 + }, + { + "word": " but", + "start": 3643.8, + "end": 3643.94, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3643.94, + "end": 3644.0, + "probability": 1.0 + }, + { + "word": " only", + "start": 3644.0, + "end": 3644.16, + "probability": 1.0 + }, + { + "word": " seemed", + "start": 3644.16, + "end": 3644.4, + "probability": 1.0 + }, + { + "word": " like", + "start": 3644.4, + "end": 3644.6, + "probability": 1.0 + }, + { + "word": " minutes.", + "start": 3644.6, + "end": 3644.86, + "probability": 1.0 + } + ] + }, + { + "id": 3803, + "text": "She gave birth without the use of drugs.", + "start": 3644.92, + "end": 3647.2, + "words": [ + { + "word": " She", + "start": 3644.92, + "end": 3645.08, + "probability": 0.347412109375 + }, + { + "word": " gave", + "start": 3645.08, + "end": 3645.24, + "probability": 1.0 + }, + { + "word": " birth", + "start": 3645.24, + "end": 3645.52, + "probability": 1.0 + }, + { + "word": " without", + "start": 3645.52, + "end": 3645.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 3645.82, + "end": 3646.04, + "probability": 1.0 + }, + { + "word": " use", + "start": 3646.04, + "end": 3646.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 3646.26, + "end": 3646.56, + "probability": 1.0 + }, + { + "word": " drugs.", + "start": 3646.56, + "end": 3647.2, + "probability": 0.9755859375 + } + ] + }, + { + "id": 3804, + "text": "And I'm thinking about when Palmer Luckey, there in Southern California, you know, spending all his time with his computers and games and whatever.", + "start": 3647.58, + "end": 3655.0, + "words": [ + { + "word": " And", + "start": 3647.58, + "end": 3648.0, + "probability": 0.9990234375 + }, + { + "word": " I'm", + "start": 3648.0, + "end": 3648.16, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 3648.16, + "end": 3648.3, + "probability": 1.0 + }, + { + "word": " about", + "start": 3648.3, + "end": 3648.52, + "probability": 1.0 + }, + { + "word": " when", + "start": 3648.52, + "end": 3648.74, + "probability": 0.99951171875 + }, + { + "word": " Palmer", + "start": 3648.74, + "end": 3649.46, + "probability": 0.99560546875 + }, + { + "word": " Luckey,", + "start": 3649.46, + "end": 3649.96, + "probability": 0.6796875 + }, + { + "word": " there", + "start": 3650.0, + "end": 3650.4, + "probability": 0.86181640625 + }, + { + "word": " in", + "start": 3650.4, + "end": 3650.52, + "probability": 1.0 + }, + { + "word": " Southern", + "start": 3650.52, + "end": 3650.78, + "probability": 0.99365234375 + }, + { + "word": " California,", + "start": 3650.78, + "end": 3651.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 3651.56, + "end": 3651.62, + "probability": 0.861328125 + }, + { + "word": " know,", + "start": 3651.62, + "end": 3651.74, + "probability": 1.0 + }, + { + "word": " spending", + "start": 3651.74, + "end": 3651.9, + "probability": 0.9912109375 + }, + { + "word": " all", + "start": 3651.9, + "end": 3652.16, + "probability": 1.0 + }, + { + "word": " his", + "start": 3652.16, + "end": 3652.28, + "probability": 0.91943359375 + }, + { + "word": " time", + "start": 3652.28, + "end": 3652.62, + "probability": 1.0 + }, + { + "word": " with", + "start": 3652.62, + "end": 3653.26, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 3653.26, + "end": 3653.38, + "probability": 1.0 + }, + { + "word": " computers", + "start": 3653.38, + "end": 3653.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 3653.78, + "end": 3654.14, + "probability": 1.0 + }, + { + "word": " games", + "start": 3654.14, + "end": 3654.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 3654.48, + "end": 3654.78, + "probability": 0.99853515625 + }, + { + "word": " whatever.", + "start": 3654.78, + "end": 3655.0, + "probability": 1.0 + } + ] + }, + { + "id": 3805, + "text": "And the neighbor is saying, well, nothing will ever come of that boy.", + "start": 3655.1, + "end": 3657.52, + "words": [ + { + "word": " And", + "start": 3655.1, + "end": 3655.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 3655.24, + "end": 3655.28, + "probability": 0.99951171875 + }, + { + "word": " neighbor", + "start": 3655.28, + "end": 3655.5, + "probability": 0.92236328125 + }, + { + "word": " is", + "start": 3655.5, + "end": 3655.64, + "probability": 0.2210693359375 + }, + { + "word": " saying,", + "start": 3655.64, + "end": 3655.8, + "probability": 1.0 + }, + { + "word": " well,", + "start": 3655.92, + "end": 3656.0, + "probability": 0.96533203125 + }, + { + "word": " nothing", + "start": 3656.08, + "end": 3656.36, + "probability": 1.0 + }, + { + "word": " will", + "start": 3656.36, + "end": 3656.56, + "probability": 1.0 + }, + { + "word": " ever", + "start": 3656.56, + "end": 3656.84, + "probability": 0.99951171875 + }, + { + "word": " come", + "start": 3656.84, + "end": 3657.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 3657.08, + "end": 3657.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3657.2, + "end": 3657.3, + "probability": 1.0 + }, + { + "word": " boy.", + "start": 3657.3, + "end": 3657.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3806, + "text": "And, of course, he sold his development in virtual reality to Zuckerberg for $2 billion.", + "start": 3657.82, + "end": 3665.36, + "words": [ + { + "word": " And,", + "start": 3657.82, + "end": 3658.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 3658.36, + "end": 3658.42, + "probability": 1.0 + }, + { + "word": " course,", + "start": 3658.42, + "end": 3658.6, + "probability": 1.0 + }, + { + "word": " he", + "start": 3658.66, + "end": 3658.88, + "probability": 1.0 + }, + { + "word": " sold", + "start": 3658.88, + "end": 3659.1, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 3659.1, + "end": 3659.68, + "probability": 1.0 + }, + { + "word": " development", + "start": 3659.68, + "end": 3660.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 3660.72, + "end": 3661.32, + "probability": 1.0 + }, + { + "word": " virtual", + "start": 3661.32, + "end": 3661.6, + "probability": 0.99951171875 + }, + { + "word": " reality", + "start": 3661.6, + "end": 3662.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3662.08, + "end": 3662.52, + "probability": 1.0 + }, + { + "word": " Zuckerberg", + "start": 3662.52, + "end": 3664.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 3664.56, + "end": 3664.9, + "probability": 0.99951171875 + }, + { + "word": " $2", + "start": 3664.9, + "end": 3665.06, + "probability": 0.931640625 + }, + { + "word": " billion.", + "start": 3665.06, + "end": 3665.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3807, + "text": "Right.", + "start": 3666.1, + "end": 3666.56, + "words": [ + { + "word": " Right.", + "start": 3666.1, + "end": 3666.56, + "probability": 0.343017578125 + } + ] + }, + { + "id": 3808, + "text": "So, but they're using it to treat, like, people who have fears of driving over the Golden Gate Bridge, you know, over a body of water.", + "start": 3666.56, + "end": 3673.26, + "words": [ + { + "word": " So,", + "start": 3666.56, + "end": 3666.56, + "probability": 0.120849609375 + }, + { + "word": " but", + "start": 3666.56, + "end": 3667.16, + "probability": 0.990234375 + }, + { + "word": " they're", + "start": 3667.16, + "end": 3667.6, + "probability": 0.9814453125 + }, + { + "word": " using", + "start": 3667.6, + "end": 3667.86, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3667.86, + "end": 3668.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 3668.04, + "end": 3668.16, + "probability": 1.0 + }, + { + "word": " treat,", + "start": 3668.16, + "end": 3668.4, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3668.44, + "end": 3668.6, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 3668.66, + "end": 3668.88, + "probability": 1.0 + }, + { + "word": " who", + "start": 3668.88, + "end": 3669.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 3669.02, + "end": 3669.16, + "probability": 1.0 + }, + { + "word": " fears", + "start": 3669.16, + "end": 3669.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 3669.5, + "end": 3669.9, + "probability": 1.0 + }, + { + "word": " driving", + "start": 3669.9, + "end": 3670.58, + "probability": 1.0 + }, + { + "word": " over", + "start": 3670.58, + "end": 3670.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 3670.9, + "end": 3671.12, + "probability": 1.0 + }, + { + "word": " Golden", + "start": 3671.12, + "end": 3671.34, + "probability": 0.99951171875 + }, + { + "word": " Gate", + "start": 3671.34, + "end": 3671.62, + "probability": 0.99951171875 + }, + { + "word": " Bridge,", + "start": 3671.62, + "end": 3671.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 3672.12, + "end": 3672.32, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 3672.32, + "end": 3672.42, + "probability": 1.0 + }, + { + "word": " over", + "start": 3672.44, + "end": 3672.54, + "probability": 0.8857421875 + }, + { + "word": " a", + "start": 3672.54, + "end": 3672.64, + "probability": 1.0 + }, + { + "word": " body", + "start": 3672.64, + "end": 3672.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 3672.86, + "end": 3672.98, + "probability": 1.0 + }, + { + "word": " water.", + "start": 3672.98, + "end": 3673.26, + "probability": 1.0 + } + ] + }, + { + "id": 3809, + "text": "Put on those goggles and they can work their way through it.", + "start": 3673.4, + "end": 3676.96, + "words": [ + { + "word": " Put", + "start": 3673.4, + "end": 3673.84, + "probability": 0.99609375 + }, + { + "word": " on", + "start": 3673.84, + "end": 3674.0, + "probability": 1.0 + }, + { + "word": " those", + "start": 3674.0, + "end": 3674.18, + "probability": 1.0 + }, + { + "word": " goggles", + "start": 3674.18, + "end": 3674.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 3674.58, + "end": 3675.06, + "probability": 0.41015625 + }, + { + "word": " they", + "start": 3675.06, + "end": 3675.5, + "probability": 1.0 + }, + { + "word": " can", + "start": 3675.5, + "end": 3675.72, + "probability": 1.0 + }, + { + "word": " work", + "start": 3675.72, + "end": 3676.14, + "probability": 1.0 + }, + { + "word": " their", + "start": 3676.14, + "end": 3676.34, + "probability": 1.0 + }, + { + "word": " way", + "start": 3676.34, + "end": 3676.5, + "probability": 1.0 + }, + { + "word": " through", + "start": 3676.5, + "end": 3676.74, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3676.74, + "end": 3676.96, + "probability": 1.0 + } + ] + }, + { + "id": 3810, + "text": "They're using them for treating alcoholism, depression.", + "start": 3677.1, + "end": 3680.24, + "words": [ + { + "word": " They're", + "start": 3677.1, + "end": 3677.54, + "probability": 0.9990234375 + }, + { + "word": " using", + "start": 3677.54, + "end": 3677.9, + "probability": 1.0 + }, + { + "word": " them", + "start": 3677.9, + "end": 3678.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 3678.12, + "end": 3678.42, + "probability": 1.0 + }, + { + "word": " treating", + "start": 3678.42, + "end": 3678.9, + "probability": 1.0 + }, + { + "word": " alcoholism,", + "start": 3678.9, + "end": 3679.88, + "probability": 1.0 + }, + { + "word": " depression.", + "start": 3679.9, + "end": 3680.24, + "probability": 1.0 + } + ] + }, + { + "id": 3811, + "text": "Paralysis as well.", + "start": 3681.04, + "end": 3681.94, + "words": [ + { + "word": " Paralysis", + "start": 3681.04, + "end": 3681.48, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3681.48, + "end": 3681.78, + "probability": 0.9912109375 + }, + { + "word": " well.", + "start": 3681.78, + "end": 3681.94, + "probability": 1.0 + } + ] + }, + { + "id": 3812, + "text": "Pardon me?", + "start": 3682.58, + "end": 3683.32, + "words": [ + { + "word": " Pardon", + "start": 3682.58, + "end": 3683.02, + "probability": 0.9951171875 + }, + { + "word": " me?", + "start": 3683.02, + "end": 3683.32, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3813, + "text": "Paralysis as well.", + "start": 3683.56, + "end": 3684.38, + "words": [ + { + "word": " Paralysis", + "start": 3683.56, + "end": 3684.0, + "probability": 1.0 + }, + { + "word": " as", + "start": 3684.0, + "end": 3684.24, + "probability": 1.0 + }, + { + "word": " well.", + "start": 3684.24, + "end": 3684.38, + "probability": 1.0 + } + ] + }, + { + "id": 3814, + "text": "There's actually been some interesting developments in using VR as well as machines to manually stimulate the limbs.", + "start": 3684.44, + "end": 3690.12, + "words": [ + { + "word": " There's", + "start": 3684.44, + "end": 3684.88, + "probability": 0.9951171875 + }, + { + "word": " actually", + "start": 3684.88, + "end": 3685.08, + "probability": 1.0 + }, + { + "word": " been", + "start": 3685.08, + "end": 3685.22, + "probability": 1.0 + }, + { + "word": " some", + "start": 3685.22, + "end": 3685.36, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 3685.36, + "end": 3685.66, + "probability": 1.0 + }, + { + "word": " developments", + "start": 3685.66, + "end": 3686.14, + "probability": 1.0 + }, + { + "word": " in", + "start": 3686.14, + "end": 3686.4, + "probability": 1.0 + }, + { + "word": " using", + "start": 3686.4, + "end": 3686.66, + "probability": 1.0 + }, + { + "word": " VR", + "start": 3686.66, + "end": 3686.98, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3686.98, + "end": 3687.46, + "probability": 0.947265625 + }, + { + "word": " well", + "start": 3687.46, + "end": 3687.94, + "probability": 1.0 + }, + { + "word": " as", + "start": 3687.94, + "end": 3688.12, + "probability": 1.0 + }, + { + "word": " machines", + "start": 3688.12, + "end": 3688.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 3688.34, + "end": 3688.74, + "probability": 1.0 + }, + { + "word": " manually", + "start": 3688.74, + "end": 3689.14, + "probability": 1.0 + }, + { + "word": " stimulate", + "start": 3689.14, + "end": 3689.58, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3689.58, + "end": 3689.92, + "probability": 1.0 + }, + { + "word": " limbs.", + "start": 3689.92, + "end": 3690.12, + "probability": 1.0 + } + ] + }, + { + "id": 3815, + "text": "And then they see their limbs moving in VR.", + "start": 3690.24, + "end": 3692.22, + "words": [ + { + "word": " And", + "start": 3690.24, + "end": 3690.6, + "probability": 0.62548828125 + }, + { + "word": " then", + "start": 3690.6, + "end": 3690.76, + "probability": 0.98486328125 + }, + { + "word": " they", + "start": 3690.76, + "end": 3690.88, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 3690.88, + "end": 3691.08, + "probability": 1.0 + }, + { + "word": " their", + "start": 3691.08, + "end": 3691.28, + "probability": 1.0 + }, + { + "word": " limbs", + "start": 3691.28, + "end": 3691.5, + "probability": 1.0 + }, + { + "word": " moving", + "start": 3691.5, + "end": 3691.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 3691.82, + "end": 3692.0, + "probability": 1.0 + }, + { + "word": " VR.", + "start": 3692.0, + "end": 3692.22, + "probability": 1.0 + } + ] + }, + { + "id": 3816, + "text": "And they've reconnected neural pathways.", + "start": 3692.36, + "end": 3694.12, + "words": [ + { + "word": " And", + "start": 3692.36, + "end": 3692.76, + "probability": 0.99951171875 + }, + { + "word": " they've", + "start": 3692.76, + "end": 3692.96, + "probability": 1.0 + }, + { + "word": " reconnected", + "start": 3692.96, + "end": 3693.52, + "probability": 1.0 + }, + { + "word": " neural", + "start": 3693.52, + "end": 3693.68, + "probability": 1.0 + }, + { + "word": " pathways.", + "start": 3693.68, + "end": 3694.12, + "probability": 1.0 + } + ] + }, + { + "id": 3817, + "text": "And there's some people who have been able to regain function.", + "start": 3694.12, + "end": 3696.66, + "words": [ + { + "word": " And", + "start": 3694.12, + "end": 3694.32, + "probability": 0.01468658447265625 + }, + { + "word": " there's", + "start": 3694.32, + "end": 3694.74, + "probability": 0.92529296875 + }, + { + "word": " some", + "start": 3694.74, + "end": 3694.84, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 3694.84, + "end": 3695.22, + "probability": 1.0 + }, + { + "word": " who", + "start": 3695.22, + "end": 3695.34, + "probability": 0.99462890625 + }, + { + "word": " have", + "start": 3695.34, + "end": 3695.46, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 3695.46, + "end": 3695.68, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 3695.68, + "end": 3695.86, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3695.86, + "end": 3695.98, + "probability": 0.99853515625 + }, + { + "word": " regain", + "start": 3695.98, + "end": 3696.32, + "probability": 0.99560546875 + }, + { + "word": " function.", + "start": 3696.32, + "end": 3696.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3818, + "text": "Amazing.", + "start": 3697.38, + "end": 3697.78, + "words": [ + { + "word": " Amazing.", + "start": 3697.38, + "end": 3697.78, + "probability": 0.7265625 + } + ] + }, + { + "id": 3819, + "text": "And as you were saying a minute ago, so it was a $14 billion industry the last couple of years.", + "start": 3697.84, + "end": 3703.56, + "words": [ + { + "word": " And", + "start": 3697.84, + "end": 3698.02, + "probability": 0.998046875 + }, + { + "word": " as", + "start": 3698.02, + "end": 3698.18, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 3698.18, + "end": 3698.3, + "probability": 1.0 + }, + { + "word": " were", + "start": 3698.3, + "end": 3698.4, + "probability": 0.99267578125 + }, + { + "word": " saying", + "start": 3698.4, + "end": 3698.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 3698.84, + "end": 3699.0, + "probability": 1.0 + }, + { + "word": " minute", + "start": 3699.0, + "end": 3699.16, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 3699.16, + "end": 3699.42, + "probability": 1.0 + }, + { + "word": " so", + "start": 3699.64, + "end": 3700.28, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 3700.28, + "end": 3700.64, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 3700.64, + "end": 3700.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 3700.94, + "end": 3701.08, + "probability": 1.0 + }, + { + "word": " $14", + "start": 3701.08, + "end": 3701.38, + "probability": 0.998046875 + }, + { + "word": " billion", + "start": 3701.38, + "end": 3701.86, + "probability": 0.9990234375 + }, + { + "word": " industry", + "start": 3701.86, + "end": 3702.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 3702.56, + "end": 3702.94, + "probability": 0.90966796875 + }, + { + "word": " last", + "start": 3702.94, + "end": 3703.1, + "probability": 1.0 + }, + { + "word": " couple", + "start": 3703.1, + "end": 3703.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 3703.36, + "end": 3703.4, + "probability": 0.89892578125 + }, + { + "word": " years.", + "start": 3703.4, + "end": 3703.56, + "probability": 1.0 + } + ] + }, + { + "id": 3820, + "text": "They're predicting $140 billion.", + "start": 3703.66, + "end": 3705.48, + "words": [ + { + "word": " They're", + "start": 3703.66, + "end": 3703.98, + "probability": 0.99951171875 + }, + { + "word": " predicting", + "start": 3703.98, + "end": 3704.26, + "probability": 1.0 + }, + { + "word": " $140", + "start": 3704.26, + "end": 3704.96, + "probability": 0.9990234375 + }, + { + "word": " billion.", + "start": 3704.96, + "end": 3705.48, + "probability": 1.0 + } + ] + }, + { + "id": 3821, + "text": "I think anytime somebody tells you that nothing's ever going to come of that, you should look harder into it because that seems to be the litmus test.", + "start": 3705.7, + "end": 3712.86, + "words": [ + { + "word": " I", + "start": 3705.7, + "end": 3705.94, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 3705.94, + "end": 3706.16, + "probability": 1.0 + }, + { + "word": " anytime", + "start": 3706.16, + "end": 3706.74, + "probability": 0.876953125 + }, + { + "word": " somebody", + "start": 3706.74, + "end": 3707.5, + "probability": 1.0 + }, + { + "word": " tells", + "start": 3707.5, + "end": 3707.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 3707.76, + "end": 3707.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 3707.96, + "end": 3708.08, + "probability": 1.0 + }, + { + "word": " nothing's", + "start": 3708.08, + "end": 3708.4, + "probability": 0.9697265625 + }, + { + "word": " ever", + "start": 3708.4, + "end": 3708.54, + "probability": 1.0 + }, + { + "word": " going", + "start": 3708.54, + "end": 3708.66, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3708.66, + "end": 3708.78, + "probability": 1.0 + }, + { + "word": " come", + "start": 3708.78, + "end": 3708.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 3708.92, + "end": 3709.06, + "probability": 1.0 + }, + { + "word": " that,", + "start": 3709.06, + "end": 3709.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 3709.28, + "end": 3709.38, + "probability": 1.0 + }, + { + "word": " should", + "start": 3709.38, + "end": 3709.54, + "probability": 1.0 + }, + { + "word": " look", + "start": 3709.54, + "end": 3709.76, + "probability": 1.0 + }, + { + "word": " harder", + "start": 3709.76, + "end": 3710.1, + "probability": 1.0 + }, + { + "word": " into", + "start": 3710.1, + "end": 3710.4, + "probability": 1.0 + }, + { + "word": " it", + "start": 3710.4, + "end": 3710.64, + "probability": 1.0 + }, + { + "word": " because", + "start": 3710.64, + "end": 3710.9, + "probability": 0.85986328125 + }, + { + "word": " that", + "start": 3710.9, + "end": 3711.54, + "probability": 0.9990234375 + }, + { + "word": " seems", + "start": 3711.54, + "end": 3712.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 3712.0, + "end": 3712.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 3712.2, + "end": 3712.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 3712.32, + "end": 3712.46, + "probability": 1.0 + }, + { + "word": " litmus", + "start": 3712.46, + "end": 3712.66, + "probability": 1.0 + }, + { + "word": " test.", + "start": 3712.66, + "end": 3712.86, + "probability": 1.0 + } + ] + }, + { + "id": 3822, + "text": "Yeah.", + "start": 3713.38, + "end": 3713.7, + "words": [ + { + "word": " Yeah.", + "start": 3713.38, + "end": 3713.7, + "probability": 0.79736328125 + } + ] + }, + { + "id": 3823, + "text": "All right, guys.", + "start": 3713.78, + "end": 3714.46, + "words": [ + { + "word": " All", + "start": 3713.78, + "end": 3714.14, + "probability": 0.99755859375 + }, + { + "word": " right,", + "start": 3714.14, + "end": 3714.26, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 3714.28, + "end": 3714.46, + "probability": 1.0 + } + ] + }, + { + "id": 3824, + "text": "Take care.", + "start": 3714.48, + "end": 3714.8, + "words": [ + { + "word": " Take", + "start": 3714.48, + "end": 3714.62, + "probability": 0.99951171875 + }, + { + "word": " care.", + "start": 3714.62, + "end": 3714.8, + "probability": 1.0 + } + ] + }, + { + "id": 3825, + "text": "Appreciate the call.", + "start": 3714.92, + "end": 3715.62, + "words": [ + { + "word": " Appreciate", + "start": 3714.92, + "end": 3715.3, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3715.3, + "end": 3715.46, + "probability": 0.99951171875 + }, + { + "word": " call.", + "start": 3715.46, + "end": 3715.62, + "probability": 1.0 + } + ] + }, + { + "id": 3826, + "text": "Yeah, and they've been using VR for, like, pain mitigation and stuff like that for a while now.", + "start": 3715.7, + "end": 3720.86, + "words": [ + { + "word": " Yeah,", + "start": 3715.7, + "end": 3715.86, + "probability": 0.75244140625 + }, + { + "word": " and", + "start": 3715.88, + "end": 3715.92, + "probability": 1.0 + }, + { + "word": " they've", + "start": 3715.92, + "end": 3716.12, + "probability": 1.0 + }, + { + "word": " been", + "start": 3716.12, + "end": 3716.26, + "probability": 1.0 + }, + { + "word": " using", + "start": 3716.26, + "end": 3716.48, + "probability": 1.0 + }, + { + "word": " VR", + "start": 3716.48, + "end": 3716.76, + "probability": 1.0 + }, + { + "word": " for,", + "start": 3716.76, + "end": 3717.2, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3717.22, + "end": 3718.04, + "probability": 1.0 + }, + { + "word": " pain", + "start": 3718.08, + "end": 3718.34, + "probability": 1.0 + }, + { + "word": " mitigation", + "start": 3718.34, + "end": 3718.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 3718.64, + "end": 3718.98, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 3718.98, + "end": 3719.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 3719.14, + "end": 3719.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3719.3, + "end": 3719.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 3719.44, + "end": 3719.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 3719.68, + "end": 3720.14, + "probability": 1.0 + }, + { + "word": " while", + "start": 3720.14, + "end": 3720.62, + "probability": 1.0 + }, + { + "word": " now.", + "start": 3720.62, + "end": 3720.86, + "probability": 0.99658203125 + } + ] + }, + { + "id": 3827, + "text": "They've been experimenting with it.", + "start": 3720.9, + "end": 3722.0, + "words": [ + { + "word": " They've", + "start": 3720.9, + "end": 3721.02, + "probability": 0.99609375 + }, + { + "word": " been", + "start": 3721.02, + "end": 3721.14, + "probability": 1.0 + }, + { + "word": " experimenting", + "start": 3721.14, + "end": 3721.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 3721.54, + "end": 3721.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3721.88, + "end": 3722.0, + "probability": 1.0 + } + ] + }, + { + "id": 3828, + "text": "Yeah.", + "start": 3722.2, + "end": 3722.6, + "words": [ + { + "word": " Yeah.", + "start": 3722.2, + "end": 3722.6, + "probability": 0.03338623046875 + } + ] + }, + { + "id": 3829, + "text": "So, I think VR is biggest.", + "start": 3722.6, + "end": 3723.86, + "words": [ + { + "word": " So,", + "start": 3722.6, + "end": 3722.62, + "probability": 0.9658203125 + }, + { + "word": " I", + "start": 3722.7, + "end": 3722.9, + "probability": 0.99658203125 + }, + { + "word": " think", + "start": 3722.9, + "end": 3723.12, + "probability": 0.99951171875 + }, + { + "word": " VR", + "start": 3723.12, + "end": 3723.38, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3723.38, + "end": 3723.58, + "probability": 0.341064453125 + }, + { + "word": " biggest.", + "start": 3723.58, + "end": 3723.86, + "probability": 0.9326171875 + } + ] + }, + { + "id": 3830, + "text": "I guess the future is gaming.", + "start": 3723.86, + "end": 3724.96, + "words": [ + { + "word": " I", + "start": 3723.86, + "end": 3724.02, + "probability": 0.1317138671875 + }, + { + "word": " guess", + "start": 3724.02, + "end": 3724.02, + "probability": 0.8583984375 + }, + { + "word": " the", + "start": 3724.02, + "end": 3724.06, + "probability": 0.91552734375 + }, + { + "word": " future", + "start": 3724.06, + "end": 3724.32, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3724.32, + "end": 3724.58, + "probability": 0.99951171875 + }, + { + "word": " gaming.", + "start": 3724.58, + "end": 3724.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3831, + "text": "It's AR that's going to be everywhere else.", + "start": 3725.04, + "end": 3727.16, + "words": [ + { + "word": " It's", + "start": 3725.04, + "end": 3725.46, + "probability": 0.9990234375 + }, + { + "word": " AR", + "start": 3725.46, + "end": 3725.72, + "probability": 0.98486328125 + }, + { + "word": " that's", + "start": 3725.72, + "end": 3726.06, + "probability": 0.99609375 + }, + { + "word": " going", + "start": 3726.06, + "end": 3726.16, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 3726.16, + "end": 3726.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 3726.26, + "end": 3726.38, + "probability": 1.0 + }, + { + "word": " everywhere", + "start": 3726.38, + "end": 3726.78, + "probability": 0.99951171875 + }, + { + "word": " else.", + "start": 3726.78, + "end": 3727.16, + "probability": 1.0 + } + ] + }, + { + "id": 3832, + "text": "Yeah, and I think that those two things converge at what really is, in my opinion, where this is going, which is the computer brain interface.", + "start": 3727.68, + "end": 3735.88, + "words": [ + { + "word": " Yeah,", + "start": 3727.68, + "end": 3728.2, + "probability": 0.96923828125 + }, + { + "word": " and", + "start": 3728.22, + "end": 3728.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 3728.34, + "end": 3728.48, + "probability": 1.0 + }, + { + "word": " think", + "start": 3728.48, + "end": 3728.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 3728.74, + "end": 3728.84, + "probability": 1.0 + }, + { + "word": " those", + "start": 3728.84, + "end": 3728.98, + "probability": 1.0 + }, + { + "word": " two", + "start": 3728.98, + "end": 3729.14, + "probability": 1.0 + }, + { + "word": " things", + "start": 3729.14, + "end": 3729.42, + "probability": 1.0 + }, + { + "word": " converge", + "start": 3729.42, + "end": 3729.78, + "probability": 1.0 + }, + { + "word": " at", + "start": 3729.78, + "end": 3730.22, + "probability": 1.0 + }, + { + "word": " what", + "start": 3730.22, + "end": 3730.62, + "probability": 1.0 + }, + { + "word": " really", + "start": 3730.62, + "end": 3731.5, + "probability": 1.0 + }, + { + "word": " is,", + "start": 3731.5, + "end": 3731.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 3731.84, + "end": 3732.16, + "probability": 1.0 + }, + { + "word": " my", + "start": 3732.16, + "end": 3732.32, + "probability": 1.0 + }, + { + "word": " opinion,", + "start": 3732.32, + "end": 3732.78, + "probability": 1.0 + }, + { + "word": " where", + "start": 3732.96, + "end": 3733.34, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 3733.34, + "end": 3733.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 3733.58, + "end": 3733.74, + "probability": 1.0 + }, + { + "word": " going,", + "start": 3733.74, + "end": 3733.98, + "probability": 1.0 + }, + { + "word": " which", + "start": 3734.12, + "end": 3734.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 3734.32, + "end": 3734.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 3734.52, + "end": 3734.8, + "probability": 1.0 + }, + { + "word": " computer", + "start": 3734.8, + "end": 3735.32, + "probability": 0.9990234375 + }, + { + "word": " brain", + "start": 3735.32, + "end": 3735.62, + "probability": 0.98974609375 + }, + { + "word": " interface.", + "start": 3735.62, + "end": 3735.88, + "probability": 1.0 + } + ] + }, + { + "id": 3833, + "text": "Yeah, for sure.", + "start": 3736.34, + "end": 3736.98, + "words": [ + { + "word": " Yeah,", + "start": 3736.34, + "end": 3736.6, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3736.62, + "end": 3736.8, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 3736.8, + "end": 3736.98, + "probability": 1.0 + } + ] + }, + { + "id": 3834, + "text": "All right.", + "start": 3737.2, + "end": 3737.4, + "words": [ + { + "word": " All", + "start": 3737.2, + "end": 3737.3, + "probability": 0.391845703125 + }, + { + "word": " right.", + "start": 3737.3, + "end": 3737.4, + "probability": 1.0 + } + ] + }, + { + "id": 3835, + "text": "So, instead of having goggles strapped onto your head or, you know, some type of contact lenses or basically hardware, all right, that you will be looking at some type of, you know, cyborg-like implanted hardware to handle that interface.", + "start": 3737.42, + "end": 3753.3, + "words": [ + { + "word": " So,", + "start": 3737.42, + "end": 3737.7, + "probability": 0.99609375 + }, + { + "word": " instead", + "start": 3737.7, + "end": 3738.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3738.36, + "end": 3738.6, + "probability": 1.0 + }, + { + "word": " having", + "start": 3738.6, + "end": 3738.88, + "probability": 1.0 + }, + { + "word": " goggles", + "start": 3738.88, + "end": 3739.36, + "probability": 0.99951171875 + }, + { + "word": " strapped", + "start": 3739.36, + "end": 3739.72, + "probability": 1.0 + }, + { + "word": " onto", + "start": 3739.72, + "end": 3739.96, + "probability": 0.826171875 + }, + { + "word": " your", + "start": 3739.96, + "end": 3740.08, + "probability": 1.0 + }, + { + "word": " head", + "start": 3740.08, + "end": 3740.4, + "probability": 1.0 + }, + { + "word": " or,", + "start": 3740.4, + "end": 3740.82, + "probability": 0.97314453125 + }, + { + "word": " you", + "start": 3740.9, + "end": 3741.28, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3741.28, + "end": 3741.44, + "probability": 1.0 + }, + { + "word": " some", + "start": 3741.44, + "end": 3741.62, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 3741.62, + "end": 3741.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 3741.94, + "end": 3742.4, + "probability": 1.0 + }, + { + "word": " contact", + "start": 3742.4, + "end": 3743.14, + "probability": 0.998046875 + }, + { + "word": " lenses", + "start": 3743.14, + "end": 3743.6, + "probability": 1.0 + }, + { + "word": " or", + "start": 3743.6, + "end": 3743.9, + "probability": 0.99853515625 + }, + { + "word": " basically", + "start": 3743.9, + "end": 3745.0, + "probability": 0.99267578125 + }, + { + "word": " hardware,", + "start": 3745.0, + "end": 3745.52, + "probability": 1.0 + }, + { + "word": " all", + "start": 3745.8, + "end": 3746.38, + "probability": 0.32861328125 + }, + { + "word": " right,", + "start": 3746.38, + "end": 3746.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 3746.58, + "end": 3746.84, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 3746.84, + "end": 3747.12, + "probability": 1.0 + }, + { + "word": " will", + "start": 3747.12, + "end": 3747.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 3747.28, + "end": 3747.42, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3747.42, + "end": 3747.72, + "probability": 1.0 + }, + { + "word": " at", + "start": 3747.72, + "end": 3748.06, + "probability": 1.0 + }, + { + "word": " some", + "start": 3748.06, + "end": 3748.34, + "probability": 1.0 + }, + { + "word": " type", + "start": 3748.34, + "end": 3748.6, + "probability": 1.0 + }, + { + "word": " of,", + "start": 3748.6, + "end": 3749.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 3749.12, + "end": 3749.3, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 3749.3, + "end": 3749.46, + "probability": 1.0 + }, + { + "word": " cyborg", + "start": 3749.46, + "end": 3750.04, + "probability": 0.998046875 + }, + { + "word": "-like", + "start": 3750.04, + "end": 3750.34, + "probability": 0.9970703125 + }, + { + "word": " implanted", + "start": 3750.34, + "end": 3751.02, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 3751.02, + "end": 3751.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 3751.44, + "end": 3751.92, + "probability": 1.0 + }, + { + "word": " handle", + "start": 3751.92, + "end": 3752.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 3752.64, + "end": 3752.9, + "probability": 1.0 + }, + { + "word": " interface.", + "start": 3752.9, + "end": 3753.3, + "probability": 1.0 + } + ] + }, + { + "id": 3836, + "text": "And everything is going to be in VR.", + "start": 3753.58, + "end": 3753.84, + "words": [ + { + "word": " And", + "start": 3753.58, + "end": 3753.76, + "probability": 0.41357421875 + }, + { + "word": " everything", + "start": 3753.76, + "end": 3753.84, + "probability": 0.440673828125 + }, + { + "word": " is", + "start": 3753.84, + "end": 3753.84, + "probability": 0.08868408203125 + }, + { + "word": " going", + "start": 3753.84, + "end": 3753.84, + "probability": 0.1875 + }, + { + "word": " to", + "start": 3753.84, + "end": 3753.84, + "probability": 0.9794921875 + }, + { + "word": " be", + "start": 3753.84, + "end": 3753.84, + "probability": 0.91455078125 + }, + { + "word": " in", + "start": 3753.84, + "end": 3753.84, + "probability": 0.08428955078125 + }, + { + "word": " VR.", + "start": 3753.84, + "end": 3753.84, + "probability": 0.0026035308837890625 + } + ] + }, + { + "id": 3837, + "text": "OK.", + "start": 3753.86, + "end": 3754.42, + "words": [ + { + "word": " OK.", + "start": 3753.86, + "end": 3754.42, + "probability": 1.8477439880371094e-06 + } + ] + }, + { + "id": 3838, + "text": "", + "start": 3757.78, + "end": 3757.78, + "words": [] + }, + { + "id": 3839, + "text": "", + "start": 3757.78, + "end": 3757.78, + "words": [] + }, + { + "id": 3840, + "text": "", + "start": 3757.78, + "end": 3757.78, + "words": [] + }, + { + "id": 3841, + "text": "OK.", + "start": 3760.22, + "end": 3760.7, + "words": [ + { + "word": " OK.", + "start": 3760.22, + "end": 3760.7, + "probability": 0.85986328125 + } + ] + }, + { + "id": 3842, + "text": "OK.", + "start": 3760.7, + "end": 3760.96, + "words": [ + { + "word": " OK.", + "start": 3760.7, + "end": 3760.96, + "probability": 0.85986328125 + } + ] + }, + { + "id": 3843, + "text": "OK.", + "start": 3762.38, + "end": 3762.86, + "words": [ + { + "word": " OK.", + "start": 3762.38, + "end": 3762.86, + "probability": 0.857421875 + } + ] + }, + { + "id": 3844, + "text": "OK.", + "start": 3763.44, + "end": 3763.9, + "words": [ + { + "word": " OK.", + "start": 3763.44, + "end": 3763.9, + "probability": 0.85546875 + } + ] + }, + { + "id": 3845, + "text": "OK.", + "start": 3764.12, + "end": 3764.24, + "words": [ + { + "word": " OK.", + "start": 3764.12, + "end": 3764.24, + "probability": 0.85595703125 + } + ] + }, + { + "id": 3846, + "text": "OK.", + "start": 3764.36, + "end": 3764.46, + "words": [ + { + "word": " OK.", + "start": 3764.36, + "end": 3764.46, + "probability": 0.857421875 + } + ] + }, + { + "id": 3847, + "text": "OK.", + "start": 3764.82, + "end": 3765.06, + "words": [ + { + "word": " OK.", + "start": 3764.82, + "end": 3765.06, + "probability": 0.8603515625 + } + ] + }, + { + "id": 3848, + "text": "OK.", + "start": 3765.36, + "end": 3765.78, + "words": [ + { + "word": " OK.", + "start": 3765.36, + "end": 3765.78, + "probability": 0.86328125 + } + ] + }, + { + "id": 3849, + "text": "OK.", + "start": 3766.32, + "end": 3766.5, + "words": [ + { + "word": " OK.", + "start": 3766.32, + "end": 3766.5, + "probability": 0.8662109375 + } + ] + }, + { + "id": 3850, + "text": "OK.", + "start": 3774.58, + "end": 3775.06, + "words": [ + { + "word": " OK.", + "start": 3774.58, + "end": 3775.06, + "probability": 0.87158203125 + } + ] + }, + { + "id": 3851, + "text": "OK.", + "start": 3775.38, + "end": 3775.86, + "words": [ + { + "word": " OK.", + "start": 3775.38, + "end": 3775.86, + "probability": 0.87548828125 + } + ] + }, + { + "id": 3852, + "text": "OK.", + "start": 3776.1, + "end": 3776.4, + "words": [ + { + "word": " OK.", + "start": 3776.1, + "end": 3776.4, + "probability": 0.8798828125 + } + ] + }, + { + "id": 3853, + "text": "OK.", + "start": 3776.48, + "end": 3776.82, + "words": [ + { + "word": " OK.", + "start": 3776.48, + "end": 3776.82, + "probability": 0.8828125 + } + ] + }, + { + "id": 3854, + "text": "OK.", + "start": 3776.94, + "end": 3777.14, + "words": [ + { + "word": " OK.", + "start": 3776.94, + "end": 3777.14, + "probability": 0.888671875 + } + ] + }, + { + "id": 3855, + "text": "OK.", + "start": 3777.16, + "end": 3777.18, + "words": [ + { + "word": " OK.", + "start": 3777.16, + "end": 3777.18, + "probability": 0.89306640625 + } + ] + }, + { + "id": 3856, + "text": "OK.", + "start": 3777.2, + "end": 3777.22, + "words": [ + { + "word": " OK.", + "start": 3777.2, + "end": 3777.22, + "probability": 0.89599609375 + } + ] + }, + { + "id": 3857, + "text": "OK.", + "start": 3777.24, + "end": 3777.26, + "words": [ + { + "word": " OK.", + "start": 3777.24, + "end": 3777.26, + "probability": 0.9013671875 + } + ] + }, + { + "id": 3858, + "text": "OK.", + "start": 3777.56, + "end": 3777.82, + "words": [ + { + "word": " OK.", + "start": 3777.56, + "end": 3777.82, + "probability": 0.9052734375 + } + ] + }, + { + "id": 3859, + "text": "OK.", + "start": 3779.38, + "end": 3779.54, + "words": [ + { + "word": " OK.", + "start": 3779.38, + "end": 3779.54, + "probability": 0.90673828125 + } + ] + }, + { + "id": 3860, + "text": "OK.", + "start": 3779.82, + "end": 3779.96, + "words": [ + { + "word": " OK.", + "start": 3779.82, + "end": 3779.96, + "probability": 0.91064453125 + } + ] + }, + { + "id": 3861, + "text": "OK.", + "start": 3780.14, + "end": 3780.56, + "words": [ + { + "word": " OK.", + "start": 3780.14, + "end": 3780.56, + "probability": 0.912109375 + } + ] + }, + { + "id": 3862, + "text": "", + "start": 3780.56, + "end": 3780.56, + "words": [] + }, + { + "id": 3863, + "text": "", + "start": 3780.56, + "end": 3780.56, + "words": [] + }, + { + "id": 3864, + "text": "OK.", + "start": 3780.58, + "end": 3780.72, + "words": [ + { + "word": " OK.", + "start": 3780.58, + "end": 3780.72, + "probability": 0.9189453125 + } + ] + }, + { + "id": 3865, + "text": "OK.", + "start": 3781.5, + "end": 3781.62, + "words": [ + { + "word": " OK.", + "start": 3781.5, + "end": 3781.62, + "probability": 0.9208984375 + } + ] + }, + { + "id": 3866, + "text": "OK.", + "start": 3783.38, + "end": 3783.58, + "words": [ + { + "word": " OK.", + "start": 3783.38, + "end": 3783.58, + "probability": 0.9228515625 + } + ] + }, + { + "id": 3867, + "text": "And, you know, my complaint has always been with the VR stuff is that there's a lot of muddying of the waters between the technologies that are coming out.", + "start": 3783.86, + "end": 3794.56, + "words": [ + { + "word": " And,", + "start": 3783.86, + "end": 3783.88, + "probability": 0.90869140625 + }, + { + "word": " you", + "start": 3783.88, + "end": 3785.46, + "probability": 0.9931640625 + }, + { + "word": " know,", + "start": 3785.46, + "end": 3785.64, + "probability": 1.0 + }, + { + "word": " my", + "start": 3785.64, + "end": 3785.88, + "probability": 1.0 + }, + { + "word": " complaint", + "start": 3785.88, + "end": 3786.2, + "probability": 1.0 + }, + { + "word": " has", + "start": 3786.2, + "end": 3786.48, + "probability": 1.0 + }, + { + "word": " always", + "start": 3786.48, + "end": 3786.74, + "probability": 1.0 + }, + { + "word": " been", + "start": 3786.74, + "end": 3786.98, + "probability": 1.0 + }, + { + "word": " with", + "start": 3786.98, + "end": 3787.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3787.18, + "end": 3787.32, + "probability": 1.0 + }, + { + "word": " VR", + "start": 3787.32, + "end": 3787.52, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 3787.52, + "end": 3787.86, + "probability": 1.0 + }, + { + "word": " is", + "start": 3787.86, + "end": 3788.3, + "probability": 0.98974609375 + }, + { + "word": " that", + "start": 3788.3, + "end": 3788.7, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3788.7, + "end": 3790.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 3790.06, + "end": 3790.16, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3790.16, + "end": 3790.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 3790.3, + "end": 3790.4, + "probability": 1.0 + }, + { + "word": " muddying", + "start": 3790.4, + "end": 3790.74, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3790.74, + "end": 3790.9, + "probability": 0.9345703125 + }, + { + "word": " the", + "start": 3790.9, + "end": 3791.0, + "probability": 1.0 + }, + { + "word": " waters", + "start": 3791.0, + "end": 3791.34, + "probability": 1.0 + }, + { + "word": " between", + "start": 3791.34, + "end": 3791.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3791.8, + "end": 3792.78, + "probability": 1.0 + }, + { + "word": " technologies", + "start": 3792.78, + "end": 3793.74, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3793.74, + "end": 3794.06, + "probability": 1.0 + }, + { + "word": " are", + "start": 3794.06, + "end": 3794.12, + "probability": 1.0 + }, + { + "word": " coming", + "start": 3794.12, + "end": 3794.34, + "probability": 1.0 + }, + { + "word": " out.", + "start": 3794.34, + "end": 3794.56, + "probability": 1.0 + } + ] + }, + { + "id": 3868, + "text": "And just like the caller said, right, to me, VR uses in business, right, are way more important to me than the gaming side of it.", + "start": 3794.68, + "end": 3805.16, + "words": [ + { + "word": " And", + "start": 3794.68, + "end": 3794.84, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3794.84, + "end": 3795.54, + "probability": 0.9794921875 + }, + { + "word": " like", + "start": 3795.54, + "end": 3795.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3795.8, + "end": 3795.94, + "probability": 0.9990234375 + }, + { + "word": " caller", + "start": 3795.94, + "end": 3796.12, + "probability": 0.998046875 + }, + { + "word": " said,", + "start": 3796.12, + "end": 3796.42, + "probability": 1.0 + }, + { + "word": " right,", + "start": 3796.62, + "end": 3796.94, + "probability": 0.87158203125 + }, + { + "word": " to", + "start": 3797.04, + "end": 3797.76, + "probability": 1.0 + }, + { + "word": " me,", + "start": 3797.76, + "end": 3798.12, + "probability": 1.0 + }, + { + "word": " VR", + "start": 3798.12, + "end": 3798.82, + "probability": 1.0 + }, + { + "word": " uses", + "start": 3798.82, + "end": 3799.38, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3799.38, + "end": 3799.92, + "probability": 1.0 + }, + { + "word": " business,", + "start": 3799.92, + "end": 3801.0, + "probability": 1.0 + }, + { + "word": " right,", + "start": 3801.38, + "end": 3801.98, + "probability": 0.91015625 + }, + { + "word": " are", + "start": 3802.04, + "end": 3802.26, + "probability": 1.0 + }, + { + "word": " way", + "start": 3802.26, + "end": 3803.34, + "probability": 1.0 + }, + { + "word": " more", + "start": 3803.34, + "end": 3803.56, + "probability": 1.0 + }, + { + "word": " important", + "start": 3803.56, + "end": 3803.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 3803.92, + "end": 3804.08, + "probability": 1.0 + }, + { + "word": " me", + "start": 3804.08, + "end": 3804.18, + "probability": 1.0 + }, + { + "word": " than", + "start": 3804.18, + "end": 3804.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 3804.32, + "end": 3804.46, + "probability": 1.0 + }, + { + "word": " gaming", + "start": 3804.46, + "end": 3804.64, + "probability": 1.0 + }, + { + "word": " side", + "start": 3804.64, + "end": 3804.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 3804.9, + "end": 3805.04, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3805.04, + "end": 3805.16, + "probability": 1.0 + } + ] + }, + { + "id": 3869, + "text": "And that's the same as somebody who uses a computer all day as my job.", + "start": 3805.26, + "end": 3808.44, + "words": [ + { + "word": " And", + "start": 3805.26, + "end": 3805.36, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 3805.36, + "end": 3805.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3805.54, + "end": 3805.6, + "probability": 1.0 + }, + { + "word": " same", + "start": 3805.6, + "end": 3805.82, + "probability": 1.0 + }, + { + "word": " as", + "start": 3805.82, + "end": 3805.94, + "probability": 0.96337890625 + }, + { + "word": " somebody", + "start": 3805.94, + "end": 3806.18, + "probability": 1.0 + }, + { + "word": " who", + "start": 3806.18, + "end": 3806.34, + "probability": 1.0 + }, + { + "word": " uses", + "start": 3806.34, + "end": 3806.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 3806.72, + "end": 3806.9, + "probability": 1.0 + }, + { + "word": " computer", + "start": 3806.9, + "end": 3807.14, + "probability": 1.0 + }, + { + "word": " all", + "start": 3807.14, + "end": 3807.46, + "probability": 1.0 + }, + { + "word": " day", + "start": 3807.46, + "end": 3807.72, + "probability": 1.0 + }, + { + "word": " as", + "start": 3807.72, + "end": 3807.98, + "probability": 0.99560546875 + }, + { + "word": " my", + "start": 3807.98, + "end": 3808.12, + "probability": 1.0 + }, + { + "word": " job.", + "start": 3808.12, + "end": 3808.44, + "probability": 1.0 + } + ] + }, + { + "id": 3870, + "text": "I cannot wait until I can put on a headset and virtualize 12 monitors so that I don't have to actually have them.", + "start": 3808.62, + "end": 3813.5, + "words": [ + { + "word": " I", + "start": 3808.62, + "end": 3809.06, + "probability": 0.99853515625 + }, + { + "word": " cannot", + "start": 3809.06, + "end": 3809.34, + "probability": 1.0 + }, + { + "word": " wait", + "start": 3809.34, + "end": 3809.62, + "probability": 1.0 + }, + { + "word": " until", + "start": 3809.62, + "end": 3809.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 3809.84, + "end": 3809.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 3809.98, + "end": 3810.08, + "probability": 1.0 + }, + { + "word": " put", + "start": 3810.08, + "end": 3810.22, + "probability": 1.0 + }, + { + "word": " on", + "start": 3810.22, + "end": 3810.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 3810.34, + "end": 3810.38, + "probability": 0.99951171875 + }, + { + "word": " headset", + "start": 3810.38, + "end": 3810.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 3810.62, + "end": 3810.84, + "probability": 1.0 + }, + { + "word": " virtualize", + "start": 3810.84, + "end": 3811.26, + "probability": 0.9990234375 + }, + { + "word": " 12", + "start": 3811.26, + "end": 3811.44, + "probability": 0.99853515625 + }, + { + "word": " monitors", + "start": 3811.44, + "end": 3811.9, + "probability": 1.0 + }, + { + "word": " so", + "start": 3811.9, + "end": 3812.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 3812.16, + "end": 3812.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 3812.28, + "end": 3812.4, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3812.4, + "end": 3812.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 3812.5, + "end": 3812.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 3812.6, + "end": 3812.76, + "probability": 1.0 + }, + { + "word": " actually", + "start": 3812.76, + "end": 3813.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 3813.02, + "end": 3813.26, + "probability": 1.0 + }, + { + "word": " them.", + "start": 3813.26, + "end": 3813.5, + "probability": 1.0 + } + ] + }, + { + "id": 3871, + "text": "Right, and have enough resolution where you can actually see everything.", + "start": 3813.5, + "end": 3815.6, + "words": [ + { + "word": " Right,", + "start": 3813.5, + "end": 3813.76, + "probability": 0.99072265625 + }, + { + "word": " and", + "start": 3813.86, + "end": 3813.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 3813.96, + "end": 3814.14, + "probability": 1.0 + }, + { + "word": " enough", + "start": 3814.14, + "end": 3814.34, + "probability": 1.0 + }, + { + "word": " resolution", + "start": 3814.34, + "end": 3814.66, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 3814.66, + "end": 3814.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 3814.98, + "end": 3815.08, + "probability": 1.0 + }, + { + "word": " can", + "start": 3815.08, + "end": 3815.16, + "probability": 1.0 + }, + { + "word": " actually", + "start": 3815.16, + "end": 3815.36, + "probability": 1.0 + }, + { + "word": " see", + "start": 3815.36, + "end": 3815.56, + "probability": 0.99951171875 + }, + { + "word": " everything.", + "start": 3815.56, + "end": 3815.6, + "probability": 0.85009765625 + } + ] + }, + { + "id": 3872, + "text": "Right, and I'm sure as somebody who pays the electricity bill for the work that I do, you are also happy about that.", + "start": 3815.6, + "end": 3820.42, + "words": [ + { + "word": " Right,", + "start": 3815.6, + "end": 3815.78, + "probability": 0.943359375 + }, + { + "word": " and", + "start": 3815.78, + "end": 3815.92, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3815.92, + "end": 3816.06, + "probability": 1.0 + }, + { + "word": " sure", + "start": 3816.06, + "end": 3816.22, + "probability": 1.0 + }, + { + "word": " as", + "start": 3816.22, + "end": 3816.38, + "probability": 0.99462890625 + }, + { + "word": " somebody", + "start": 3816.38, + "end": 3816.56, + "probability": 1.0 + }, + { + "word": " who", + "start": 3816.56, + "end": 3816.72, + "probability": 1.0 + }, + { + "word": " pays", + "start": 3816.72, + "end": 3816.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3816.94, + "end": 3817.12, + "probability": 1.0 + }, + { + "word": " electricity", + "start": 3817.12, + "end": 3817.38, + "probability": 1.0 + }, + { + "word": " bill", + "start": 3817.38, + "end": 3817.7, + "probability": 1.0 + }, + { + "word": " for", + "start": 3817.7, + "end": 3817.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 3817.88, + "end": 3817.98, + "probability": 1.0 + }, + { + "word": " work", + "start": 3817.98, + "end": 3818.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 3818.16, + "end": 3818.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 3818.28, + "end": 3818.4, + "probability": 1.0 + }, + { + "word": " do,", + "start": 3818.4, + "end": 3818.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 3818.64, + "end": 3819.2, + "probability": 1.0 + }, + { + "word": " are", + "start": 3819.2, + "end": 3819.44, + "probability": 1.0 + }, + { + "word": " also", + "start": 3819.44, + "end": 3819.72, + "probability": 1.0 + }, + { + "word": " happy", + "start": 3819.72, + "end": 3819.98, + "probability": 1.0 + }, + { + "word": " about", + "start": 3819.98, + "end": 3820.18, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3820.18, + "end": 3820.42, + "probability": 1.0 + } + ] + }, + { + "id": 3873, + "text": "Yeah, I could be okay with that.", + "start": 3820.68, + "end": 3822.64, + "words": [ + { + "word": " Yeah,", + "start": 3820.68, + "end": 3820.98, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 3821.12, + "end": 3821.54, + "probability": 1.0 + }, + { + "word": " could", + "start": 3821.54, + "end": 3821.78, + "probability": 0.9951171875 + }, + { + "word": " be", + "start": 3821.78, + "end": 3822.1, + "probability": 1.0 + }, + { + "word": " okay", + "start": 3822.1, + "end": 3822.32, + "probability": 0.99169921875 + }, + { + "word": " with", + "start": 3822.32, + "end": 3822.5, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3822.5, + "end": 3822.64, + "probability": 1.0 + } + ] + }, + { + "id": 3874, + "text": "Yeah.", + "start": 3822.68, + "end": 3822.84, + "words": [ + { + "word": " Yeah.", + "start": 3822.68, + "end": 3822.84, + "probability": 0.337646484375 + } + ] + }, + { + "id": 3875, + "text": "Now, speaking of headsets that have better resolution, so one of the winners of CES this year is the HTC Vive Pro.", + "start": 3823.66, + "end": 3831.22, + "words": [ + { + "word": " Now,", + "start": 3823.66, + "end": 3824.08, + "probability": 0.9990234375 + }, + { + "word": " speaking", + "start": 3824.16, + "end": 3824.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 3824.4, + "end": 3824.62, + "probability": 1.0 + }, + { + "word": " headsets", + "start": 3824.62, + "end": 3825.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 3825.0, + "end": 3825.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 3825.16, + "end": 3825.38, + "probability": 1.0 + }, + { + "word": " better", + "start": 3825.38, + "end": 3825.74, + "probability": 1.0 + }, + { + "word": " resolution,", + "start": 3825.74, + "end": 3826.24, + "probability": 1.0 + }, + { + "word": " so", + "start": 3826.78, + "end": 3827.66, + "probability": 0.9892578125 + }, + { + "word": " one", + "start": 3827.66, + "end": 3827.86, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 3827.86, + "end": 3827.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 3827.94, + "end": 3828.02, + "probability": 1.0 + }, + { + "word": " winners", + "start": 3828.02, + "end": 3828.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 3828.18, + "end": 3828.46, + "probability": 1.0 + }, + { + "word": " CES", + "start": 3828.46, + "end": 3828.88, + "probability": 1.0 + }, + { + "word": " this", + "start": 3828.88, + "end": 3829.06, + "probability": 1.0 + }, + { + "word": " year", + "start": 3829.06, + "end": 3829.32, + "probability": 1.0 + }, + { + "word": " is", + "start": 3829.32, + "end": 3829.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3829.58, + "end": 3829.82, + "probability": 1.0 + }, + { + "word": " HTC", + "start": 3829.82, + "end": 3830.56, + "probability": 1.0 + }, + { + "word": " Vive", + "start": 3830.56, + "end": 3830.82, + "probability": 0.99072265625 + }, + { + "word": " Pro.", + "start": 3830.82, + "end": 3831.22, + "probability": 1.0 + } + ] + }, + { + "id": 3876, + "text": "And this is like their next-gen headset, I take it.", + "start": 3831.56, + "end": 3834.16, + "words": [ + { + "word": " And", + "start": 3831.56, + "end": 3831.82, + "probability": 0.99755859375 + }, + { + "word": " this", + "start": 3831.82, + "end": 3831.98, + "probability": 1.0 + }, + { + "word": " is", + "start": 3831.98, + "end": 3832.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 3832.14, + "end": 3832.32, + "probability": 0.916015625 + }, + { + "word": " their", + "start": 3832.32, + "end": 3832.54, + "probability": 1.0 + }, + { + "word": " next", + "start": 3832.54, + "end": 3832.86, + "probability": 1.0 + }, + { + "word": "-gen", + "start": 3832.86, + "end": 3833.1, + "probability": 0.9345703125 + }, + { + "word": " headset,", + "start": 3833.1, + "end": 3833.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 3833.52, + "end": 3833.82, + "probability": 1.0 + }, + { + "word": " take", + "start": 3833.82, + "end": 3834.02, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3834.02, + "end": 3834.16, + "probability": 1.0 + } + ] + }, + { + "id": 3877, + "text": "Yeah, this is the one that they're releasing, it turns out, this year.", + "start": 3834.28, + "end": 3837.86, + "words": [ + { + "word": " Yeah,", + "start": 3834.28, + "end": 3834.7, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 3834.7, + "end": 3834.82, + "probability": 0.5546875 + }, + { + "word": " is", + "start": 3834.82, + "end": 3834.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 3834.98, + "end": 3835.08, + "probability": 1.0 + }, + { + "word": " one", + "start": 3835.08, + "end": 3835.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 3835.22, + "end": 3835.34, + "probability": 1.0 + }, + { + "word": " they're", + "start": 3835.34, + "end": 3835.66, + "probability": 1.0 + }, + { + "word": " releasing,", + "start": 3835.66, + "end": 3836.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 3836.54, + "end": 3836.84, + "probability": 0.99267578125 + }, + { + "word": " turns", + "start": 3836.84, + "end": 3837.12, + "probability": 1.0 + }, + { + "word": " out,", + "start": 3837.12, + "end": 3837.3, + "probability": 1.0 + }, + { + "word": " this", + "start": 3837.32, + "end": 3837.5, + "probability": 1.0 + }, + { + "word": " year.", + "start": 3837.5, + "end": 3837.86, + "probability": 1.0 + } + ] + }, + { + "id": 3878, + "text": "And so it adds some things that are nice, like 3D audio.", + "start": 3838.7, + "end": 3842.96, + "words": [ + { + "word": " And", + "start": 3838.7, + "end": 3839.12, + "probability": 0.685546875 + }, + { + "word": " so", + "start": 3839.12, + "end": 3839.54, + "probability": 0.724609375 + }, + { + "word": " it", + "start": 3839.54, + "end": 3839.54, + "probability": 0.99755859375 + }, + { + "word": " adds", + "start": 3839.54, + "end": 3840.62, + "probability": 1.0 + }, + { + "word": " some", + "start": 3840.62, + "end": 3840.9, + "probability": 1.0 + }, + { + "word": " things", + "start": 3840.9, + "end": 3841.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 3841.4, + "end": 3841.6, + "probability": 1.0 + }, + { + "word": " are", + "start": 3841.6, + "end": 3841.64, + "probability": 1.0 + }, + { + "word": " nice,", + "start": 3841.64, + "end": 3841.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 3842.02, + "end": 3842.28, + "probability": 1.0 + }, + { + "word": " 3D", + "start": 3842.28, + "end": 3842.66, + "probability": 0.9990234375 + }, + { + "word": " audio.", + "start": 3842.66, + "end": 3842.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3879, + "text": "Which is...", + "start": 3843.7, + "end": 3844.5, + "words": [ + { + "word": " Which", + "start": 3843.7, + "end": 3844.1, + "probability": 0.166015625 + }, + { + "word": " is...", + "start": 3844.1, + "end": 3844.5, + "probability": 0.7666015625 + } + ] + }, + { + "id": 3880, + "text": "The Rift already had that one covered.", + "start": 3844.5, + "end": 3846.12, + "words": [ + { + "word": " The", + "start": 3844.5, + "end": 3844.66, + "probability": 0.9990234375 + }, + { + "word": " Rift", + "start": 3844.66, + "end": 3844.92, + "probability": 0.9970703125 + }, + { + "word": " already", + "start": 3844.92, + "end": 3845.04, + "probability": 1.0 + }, + { + "word": " had", + "start": 3845.04, + "end": 3845.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 3845.32, + "end": 3845.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 3845.46, + "end": 3845.66, + "probability": 1.0 + }, + { + "word": " covered.", + "start": 3845.66, + "end": 3846.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3881, + "text": "Right, but for the HTC side, that's new.", + "start": 3846.38, + "end": 3849.56, + "words": [ + { + "word": " Right,", + "start": 3846.38, + "end": 3846.74, + "probability": 0.998046875 + }, + { + "word": " but", + "start": 3846.86, + "end": 3847.06, + "probability": 1.0 + }, + { + "word": " for", + "start": 3847.06, + "end": 3847.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 3847.4, + "end": 3847.7, + "probability": 1.0 + }, + { + "word": " HTC", + "start": 3847.7, + "end": 3848.32, + "probability": 1.0 + }, + { + "word": " side,", + "start": 3848.32, + "end": 3848.58, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 3848.7, + "end": 3848.96, + "probability": 1.0 + }, + { + "word": " new.", + "start": 3848.96, + "end": 3849.56, + "probability": 0.998046875 + } + ] + }, + { + "id": 3882, + "text": "Yeah.", + "start": 3849.8, + "end": 3849.98, + "words": [ + { + "word": " Yeah.", + "start": 3849.8, + "end": 3849.98, + "probability": 0.7236328125 + } + ] + }, + { + "id": 3883, + "text": "It's more comfortable to wear, they said.", + "start": 3850.52, + "end": 3852.28, + "words": [ + { + "word": " It's", + "start": 3850.52, + "end": 3850.92, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 3850.92, + "end": 3851.04, + "probability": 1.0 + }, + { + "word": " comfortable", + "start": 3851.04, + "end": 3851.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 3851.38, + "end": 3851.72, + "probability": 0.998046875 + }, + { + "word": " wear,", + "start": 3851.72, + "end": 3851.9, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 3851.96, + "end": 3852.06, + "probability": 0.99951171875 + }, + { + "word": " said.", + "start": 3852.06, + "end": 3852.28, + "probability": 1.0 + } + ] + }, + { + "id": 3884, + "text": "It has dual front-facing cameras, which will allow you to start doing AR stuff.", + "start": 3852.38, + "end": 3856.18, + "words": [ + { + "word": " It", + "start": 3852.38, + "end": 3852.54, + "probability": 0.99755859375 + }, + { + "word": " has", + "start": 3852.54, + "end": 3852.72, + "probability": 1.0 + }, + { + "word": " dual", + "start": 3852.72, + "end": 3853.16, + "probability": 1.0 + }, + { + "word": " front", + "start": 3853.16, + "end": 3853.46, + "probability": 1.0 + }, + { + "word": "-facing", + "start": 3853.46, + "end": 3853.74, + "probability": 0.98974609375 + }, + { + "word": " cameras,", + "start": 3853.74, + "end": 3854.22, + "probability": 1.0 + }, + { + "word": " which", + "start": 3854.34, + "end": 3854.56, + "probability": 1.0 + }, + { + "word": " will", + "start": 3854.56, + "end": 3854.64, + "probability": 1.0 + }, + { + "word": " allow", + "start": 3854.64, + "end": 3854.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 3854.8, + "end": 3854.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 3854.96, + "end": 3855.04, + "probability": 1.0 + }, + { + "word": " start", + "start": 3855.04, + "end": 3855.2, + "probability": 1.0 + }, + { + "word": " doing", + "start": 3855.2, + "end": 3855.44, + "probability": 1.0 + }, + { + "word": " AR", + "start": 3855.44, + "end": 3855.8, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3855.8, + "end": 3856.18, + "probability": 1.0 + } + ] + }, + { + "id": 3885, + "text": "Yeah, that, and they're going to do, I almost guarantee they'll be doing inside-out tracking by the end of the year, even if it's just experimental.", + "start": 3856.62, + "end": 3863.34, + "words": [ + { + "word": " Yeah,", + "start": 3856.62, + "end": 3857.02, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 3857.04, + "end": 3857.26, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 3857.32, + "end": 3857.48, + "probability": 1.0 + }, + { + "word": " they're", + "start": 3857.48, + "end": 3857.64, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 3857.64, + "end": 3857.72, + "probability": 0.98046875 + }, + { + "word": " to", + "start": 3857.72, + "end": 3857.86, + "probability": 1.0 + }, + { + "word": " do,", + "start": 3857.86, + "end": 3858.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 3858.14, + "end": 3858.5, + "probability": 1.0 + }, + { + "word": " almost", + "start": 3858.5, + "end": 3858.84, + "probability": 1.0 + }, + { + "word": " guarantee", + "start": 3858.84, + "end": 3859.66, + "probability": 1.0 + }, + { + "word": " they'll", + "start": 3859.66, + "end": 3860.08, + "probability": 0.96240234375 + }, + { + "word": " be", + "start": 3860.08, + "end": 3860.16, + "probability": 1.0 + }, + { + "word": " doing", + "start": 3860.16, + "end": 3860.36, + "probability": 1.0 + }, + { + "word": " inside", + "start": 3860.36, + "end": 3860.64, + "probability": 0.99365234375 + }, + { + "word": "-out", + "start": 3860.64, + "end": 3860.86, + "probability": 0.9990234375 + }, + { + "word": " tracking", + "start": 3860.86, + "end": 3861.06, + "probability": 1.0 + }, + { + "word": " by", + "start": 3861.06, + "end": 3861.54, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3861.54, + "end": 3861.68, + "probability": 1.0 + }, + { + "word": " end", + "start": 3861.68, + "end": 3861.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 3861.88, + "end": 3861.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 3861.98, + "end": 3862.1, + "probability": 1.0 + }, + { + "word": " year,", + "start": 3862.1, + "end": 3862.28, + "probability": 1.0 + }, + { + "word": " even", + "start": 3862.34, + "end": 3862.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 3862.5, + "end": 3862.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3862.64, + "end": 3862.78, + "probability": 1.0 + }, + { + "word": " just", + "start": 3862.78, + "end": 3862.94, + "probability": 1.0 + }, + { + "word": " experimental.", + "start": 3862.94, + "end": 3863.34, + "probability": 1.0 + } + ] + }, + { + "id": 3886, + "text": "So, for people who don't know.", + "start": 3863.7, + "end": 3865.14, + "words": [ + { + "word": " So,", + "start": 3863.7, + "end": 3864.1, + "probability": 0.982421875 + }, + { + "word": " for", + "start": 3864.1, + "end": 3864.44, + "probability": 1.0 + }, + { + "word": " people", + "start": 3864.44, + "end": 3864.72, + "probability": 1.0 + }, + { + "word": " who", + "start": 3864.72, + "end": 3864.84, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3864.84, + "end": 3865.04, + "probability": 1.0 + }, + { + "word": " know.", + "start": 3865.04, + "end": 3865.14, + "probability": 1.0 + } + ] + }, + { + "id": 3887, + "text": "So, HTC uses what are called lighthouses, which are these things that you set up in your room, and they detect your headset, and then they interact with it.", + "start": 3865.28, + "end": 3873.4, + "words": [ + { + "word": " So,", + "start": 3865.28, + "end": 3865.68, + "probability": 0.98828125 + }, + { + "word": " HTC", + "start": 3865.68, + "end": 3866.7, + "probability": 1.0 + }, + { + "word": " uses", + "start": 3866.7, + "end": 3866.94, + "probability": 1.0 + }, + { + "word": " what", + "start": 3866.94, + "end": 3867.2, + "probability": 1.0 + }, + { + "word": " are", + "start": 3867.2, + "end": 3867.3, + "probability": 1.0 + }, + { + "word": " called", + "start": 3867.3, + "end": 3867.52, + "probability": 1.0 + }, + { + "word": " lighthouses,", + "start": 3867.52, + "end": 3868.36, + "probability": 0.98095703125 + }, + { + "word": " which", + "start": 3868.42, + "end": 3868.94, + "probability": 1.0 + }, + { + "word": " are", + "start": 3868.94, + "end": 3869.04, + "probability": 1.0 + }, + { + "word": " these", + "start": 3869.04, + "end": 3869.18, + "probability": 1.0 + }, + { + "word": " things", + "start": 3869.18, + "end": 3869.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 3869.4, + "end": 3869.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 3869.54, + "end": 3869.64, + "probability": 1.0 + }, + { + "word": " set", + "start": 3869.64, + "end": 3869.8, + "probability": 1.0 + }, + { + "word": " up", + "start": 3869.8, + "end": 3869.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 3869.9, + "end": 3870.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 3870.0, + "end": 3870.1, + "probability": 1.0 + }, + { + "word": " room,", + "start": 3870.1, + "end": 3870.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 3870.44, + "end": 3870.86, + "probability": 1.0 + }, + { + "word": " they", + "start": 3870.86, + "end": 3871.02, + "probability": 1.0 + }, + { + "word": " detect", + "start": 3871.02, + "end": 3871.66, + "probability": 1.0 + }, + { + "word": " your", + "start": 3871.66, + "end": 3871.88, + "probability": 1.0 + }, + { + "word": " headset,", + "start": 3871.88, + "end": 3872.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 3872.38, + "end": 3872.58, + "probability": 1.0 + }, + { + "word": " then", + "start": 3872.58, + "end": 3872.68, + "probability": 1.0 + }, + { + "word": " they", + "start": 3872.68, + "end": 3872.76, + "probability": 1.0 + }, + { + "word": " interact", + "start": 3872.76, + "end": 3873.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 3873.08, + "end": 3873.3, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3873.3, + "end": 3873.4, + "probability": 1.0 + } + ] + }, + { + "id": 3888, + "text": "So that it knows where you are in the virtual space.", + "start": 3873.5, + "end": 3875.72, + "words": [ + { + "word": " So", + "start": 3873.5, + "end": 3873.58, + "probability": 0.11529541015625 + }, + { + "word": " that", + "start": 3873.58, + "end": 3873.64, + "probability": 0.74560546875 + }, + { + "word": " it", + "start": 3873.64, + "end": 3873.76, + "probability": 0.99658203125 + }, + { + "word": " knows", + "start": 3873.76, + "end": 3874.08, + "probability": 0.9990234375 + }, + { + "word": " where", + "start": 3874.08, + "end": 3874.34, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3874.34, + "end": 3874.54, + "probability": 1.0 + }, + { + "word": " are", + "start": 3874.54, + "end": 3874.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 3874.74, + "end": 3875.14, + "probability": 0.9208984375 + }, + { + "word": " the", + "start": 3875.14, + "end": 3875.24, + "probability": 0.9765625 + }, + { + "word": " virtual", + "start": 3875.24, + "end": 3875.44, + "probability": 0.99951171875 + }, + { + "word": " space.", + "start": 3875.44, + "end": 3875.72, + "probability": 1.0 + } + ] + }, + { + "id": 3889, + "text": "It's really cumbersome, though.", + "start": 3876.72, + "end": 3877.92, + "words": [ + { + "word": " It's", + "start": 3876.72, + "end": 3877.12, + "probability": 0.92041015625 + }, + { + "word": " really", + "start": 3877.12, + "end": 3877.28, + "probability": 1.0 + }, + { + "word": " cumbersome,", + "start": 3877.28, + "end": 3877.76, + "probability": 1.0 + }, + { + "word": " though.", + "start": 3877.76, + "end": 3877.92, + "probability": 1.0 + } + ] + }, + { + "id": 3890, + "text": "I mean, all the setup that's involved with VR right now is the cumbersome aspect.", + "start": 3877.98, + "end": 3881.9, + "words": [ + { + "word": " I", + "start": 3877.98, + "end": 3878.1, + "probability": 0.9501953125 + }, + { + "word": " mean,", + "start": 3878.1, + "end": 3878.2, + "probability": 1.0 + }, + { + "word": " all", + "start": 3878.2, + "end": 3878.34, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 3878.34, + "end": 3878.48, + "probability": 0.91552734375 + }, + { + "word": " setup", + "start": 3878.48, + "end": 3879.4, + "probability": 0.99072265625 + }, + { + "word": " that's", + "start": 3879.4, + "end": 3879.62, + "probability": 1.0 + }, + { + "word": " involved", + "start": 3879.62, + "end": 3879.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 3879.8, + "end": 3880.02, + "probability": 1.0 + }, + { + "word": " VR", + "start": 3880.02, + "end": 3880.22, + "probability": 1.0 + }, + { + "word": " right", + "start": 3880.22, + "end": 3880.4, + "probability": 1.0 + }, + { + "word": " now", + "start": 3880.4, + "end": 3880.6, + "probability": 1.0 + }, + { + "word": " is", + "start": 3880.6, + "end": 3881.1, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3881.1, + "end": 3881.24, + "probability": 1.0 + }, + { + "word": " cumbersome", + "start": 3881.24, + "end": 3881.62, + "probability": 1.0 + }, + { + "word": " aspect.", + "start": 3881.62, + "end": 3881.9, + "probability": 1.0 + } + ] + }, + { + "id": 3891, + "text": "Inside-out tracking is the idea that your headset is the one that's tracking everything in the room.", + "start": 3882.3, + "end": 3887.2, + "words": [ + { + "word": " Inside", + "start": 3882.3, + "end": 3882.7, + "probability": 0.99755859375 + }, + { + "word": "-out", + "start": 3882.7, + "end": 3882.9, + "probability": 0.9560546875 + }, + { + "word": " tracking", + "start": 3882.9, + "end": 3883.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3883.16, + "end": 3883.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 3883.48, + "end": 3883.58, + "probability": 1.0 + }, + { + "word": " idea", + "start": 3883.58, + "end": 3883.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 3883.8, + "end": 3883.98, + "probability": 1.0 + }, + { + "word": " your", + "start": 3883.98, + "end": 3884.12, + "probability": 1.0 + }, + { + "word": " headset", + "start": 3884.12, + "end": 3884.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 3884.44, + "end": 3884.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 3884.8, + "end": 3885.4, + "probability": 1.0 + }, + { + "word": " one", + "start": 3885.4, + "end": 3885.66, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3885.66, + "end": 3885.98, + "probability": 1.0 + }, + { + "word": " tracking", + "start": 3885.98, + "end": 3886.28, + "probability": 1.0 + }, + { + "word": " everything", + "start": 3886.28, + "end": 3886.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 3886.64, + "end": 3886.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 3886.88, + "end": 3886.96, + "probability": 1.0 + }, + { + "word": " room.", + "start": 3886.96, + "end": 3887.2, + "probability": 1.0 + } + ] + }, + { + "id": 3892, + "text": "So that would mean no more lighthouses at all.", + "start": 3887.78, + "end": 3889.62, + "words": [ + { + "word": " So", + "start": 3887.78, + "end": 3888.18, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3888.18, + "end": 3888.34, + "probability": 0.94970703125 + }, + { + "word": " would", + "start": 3888.34, + "end": 3888.4, + "probability": 0.98779296875 + }, + { + "word": " mean", + "start": 3888.4, + "end": 3888.54, + "probability": 1.0 + }, + { + "word": " no", + "start": 3888.54, + "end": 3888.7, + "probability": 1.0 + }, + { + "word": " more", + "start": 3888.7, + "end": 3888.84, + "probability": 1.0 + }, + { + "word": " lighthouses", + "start": 3888.84, + "end": 3889.24, + "probability": 0.97265625 + }, + { + "word": " at", + "start": 3889.24, + "end": 3889.46, + "probability": 1.0 + }, + { + "word": " all.", + "start": 3889.46, + "end": 3889.62, + "probability": 1.0 + } + ] + }, + { + "id": 3893, + "text": "So that's much more like how the Microsoft version of that is doing it.", + "start": 3889.78, + "end": 3893.78, + "words": [ + { + "word": " So", + "start": 3889.78, + "end": 3889.94, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 3889.94, + "end": 3890.16, + "probability": 0.99853515625 + }, + { + "word": " much", + "start": 3890.16, + "end": 3890.3, + "probability": 1.0 + }, + { + "word": " more", + "start": 3890.3, + "end": 3890.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 3890.46, + "end": 3890.66, + "probability": 1.0 + }, + { + "word": " how", + "start": 3890.66, + "end": 3890.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 3890.86, + "end": 3891.18, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 3891.18, + "end": 3892.14, + "probability": 1.0 + }, + { + "word": " version", + "start": 3892.14, + "end": 3892.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 3892.64, + "end": 3892.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 3892.98, + "end": 3893.14, + "probability": 0.99560546875 + }, + { + "word": " is", + "start": 3893.14, + "end": 3893.36, + "probability": 1.0 + }, + { + "word": " doing", + "start": 3893.36, + "end": 3893.54, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 3893.54, + "end": 3893.78, + "probability": 1.0 + } + ] + }, + { + "id": 3894, + "text": "Because it's actually scanning the room that it sees.", + "start": 3893.88, + "end": 3896.42, + "words": [ + { + "word": " Because", + "start": 3893.88, + "end": 3894.28, + "probability": 0.9091796875 + }, + { + "word": " it's", + "start": 3894.28, + "end": 3894.64, + "probability": 1.0 + }, + { + "word": " actually", + "start": 3894.64, + "end": 3894.88, + "probability": 1.0 + }, + { + "word": " scanning", + "start": 3894.88, + "end": 3895.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 3895.3, + "end": 3895.6, + "probability": 1.0 + }, + { + "word": " room", + "start": 3895.6, + "end": 3895.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 3895.84, + "end": 3896.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 3896.02, + "end": 3896.14, + "probability": 1.0 + }, + { + "word": " sees.", + "start": 3896.14, + "end": 3896.42, + "probability": 1.0 + } + ] + }, + { + "id": 3895, + "text": "And then building a map, as far as...", + "start": 3897.2, + "end": 3900.12, + "words": [ + { + "word": " And", + "start": 3897.2, + "end": 3897.6, + "probability": 0.5576171875 + }, + { + "word": " then", + "start": 3897.6, + "end": 3898.0, + "probability": 1.0 + }, + { + "word": " building", + "start": 3898.0, + "end": 3898.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 3898.36, + "end": 3898.62, + "probability": 1.0 + }, + { + "word": " map,", + "start": 3898.62, + "end": 3898.96, + "probability": 1.0 + }, + { + "word": " as", + "start": 3899.1, + "end": 3899.56, + "probability": 1.0 + }, + { + "word": " far", + "start": 3899.56, + "end": 3899.76, + "probability": 1.0 + }, + { + "word": " as...", + "start": 3899.76, + "end": 3900.12, + "probability": 0.95849609375 + } + ] + }, + { + "id": 3896, + "text": "Yeah, you have to walk around your house, and it scans your entire house.", + "start": 3900.12, + "end": 3903.0, + "words": [ + { + "word": " Yeah,", + "start": 3900.12, + "end": 3900.28, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 3900.3, + "end": 3900.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 3900.4, + "end": 3900.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3900.54, + "end": 3900.68, + "probability": 1.0 + }, + { + "word": " walk", + "start": 3900.68, + "end": 3900.84, + "probability": 0.60302734375 + }, + { + "word": " around", + "start": 3900.84, + "end": 3901.28, + "probability": 1.0 + }, + { + "word": " your", + "start": 3901.28, + "end": 3901.46, + "probability": 1.0 + }, + { + "word": " house,", + "start": 3901.46, + "end": 3901.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 3901.78, + "end": 3901.9, + "probability": 1.0 + }, + { + "word": " it", + "start": 3901.9, + "end": 3901.98, + "probability": 1.0 + }, + { + "word": " scans", + "start": 3901.98, + "end": 3902.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 3902.22, + "end": 3902.44, + "probability": 1.0 + }, + { + "word": " entire", + "start": 3902.44, + "end": 3902.64, + "probability": 1.0 + }, + { + "word": " house.", + "start": 3902.64, + "end": 3903.0, + "probability": 1.0 + } + ] + }, + { + "id": 3897, + "text": "Yeah.", + "start": 3903.06, + "end": 3903.28, + "words": [ + { + "word": " Yeah.", + "start": 3903.06, + "end": 3903.28, + "probability": 0.05047607421875 + } + ] + }, + { + "id": 3898, + "text": "Yeah.", + "start": 3903.28, + "end": 3903.48, + "words": [ + { + "word": " Yeah.", + "start": 3903.28, + "end": 3903.48, + "probability": 0.16943359375 + } + ] + }, + { + "id": 3899, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3900, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3901, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3902, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3903, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3904, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3905, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3906, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3907, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3908, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3909, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3910, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3911, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3912, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3913, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3914, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3915, + "text": "", + "start": 3903.48, + "end": 3903.48, + "words": [] + }, + { + "id": 3916, + "text": "Every time you use it.", + "start": 3903.48, + "end": 3904.04, + "words": [ + { + "word": " Every", + "start": 3903.48, + "end": 3903.56, + "probability": 0.004108428955078125 + }, + { + "word": " time", + "start": 3903.56, + "end": 3903.56, + "probability": 0.9326171875 + }, + { + "word": " you", + "start": 3903.56, + "end": 3903.68, + "probability": 0.9892578125 + }, + { + "word": " use", + "start": 3903.68, + "end": 3903.86, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 3903.86, + "end": 3904.04, + "probability": 0.99755859375 + } + ] + }, + { + "id": 3917, + "text": "Right.", + "start": 3904.1, + "end": 3904.4, + "words": [ + { + "word": " Right.", + "start": 3904.1, + "end": 3904.4, + "probability": 0.9111328125 + } + ] + }, + { + "id": 3918, + "text": "Okay.", + "start": 3904.48, + "end": 3904.78, + "words": [ + { + "word": " Okay.", + "start": 3904.48, + "end": 3904.78, + "probability": 0.8984375 + } + ] + }, + { + "id": 3919, + "text": "And then it also is offering dual mics and a resolution of 2880x1600.", + "start": 3904.86, + "end": 3911.72, + "words": [ + { + "word": " And", + "start": 3904.86, + "end": 3905.12, + "probability": 0.9560546875 + }, + { + "word": " then", + "start": 3905.12, + "end": 3905.36, + "probability": 0.9609375 + }, + { + "word": " it", + "start": 3905.36, + "end": 3905.78, + "probability": 0.94384765625 + }, + { + "word": " also", + "start": 3905.78, + "end": 3906.26, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3906.26, + "end": 3906.58, + "probability": 0.99951171875 + }, + { + "word": " offering", + "start": 3906.58, + "end": 3906.88, + "probability": 0.99951171875 + }, + { + "word": " dual", + "start": 3906.88, + "end": 3907.42, + "probability": 0.99853515625 + }, + { + "word": " mics", + "start": 3907.42, + "end": 3907.74, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 3907.74, + "end": 3908.68, + "probability": 0.9794921875 + }, + { + "word": " a", + "start": 3908.68, + "end": 3909.06, + "probability": 1.0 + }, + { + "word": " resolution", + "start": 3909.06, + "end": 3909.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 3909.68, + "end": 3910.12, + "probability": 1.0 + }, + { + "word": " 2880x1600.", + "start": 3910.12, + "end": 3911.72, + "probability": 0.85205078125 + } + ] + }, + { + "id": 3920, + "text": "That's substantially better than what you get out of the box with either of the main headsets right now.", + "start": 3911.98, + "end": 3917.46, + "words": [ + { + "word": " That's", + "start": 3911.98, + "end": 3912.46, + "probability": 0.9990234375 + }, + { + "word": " substantially", + "start": 3912.46, + "end": 3912.78, + "probability": 1.0 + }, + { + "word": " better", + "start": 3912.78, + "end": 3913.12, + "probability": 1.0 + }, + { + "word": " than", + "start": 3913.12, + "end": 3913.32, + "probability": 1.0 + }, + { + "word": " what", + "start": 3913.32, + "end": 3913.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 3913.46, + "end": 3913.56, + "probability": 1.0 + }, + { + "word": " get", + "start": 3913.56, + "end": 3913.74, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 3913.74, + "end": 3914.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 3914.06, + "end": 3914.1, + "probability": 0.990234375 + }, + { + "word": " the", + "start": 3914.1, + "end": 3914.16, + "probability": 1.0 + }, + { + "word": " box", + "start": 3914.16, + "end": 3914.4, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3914.4, + "end": 3914.62, + "probability": 0.9990234375 + }, + { + "word": " either", + "start": 3914.62, + "end": 3915.48, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 3915.48, + "end": 3915.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3915.76, + "end": 3915.88, + "probability": 1.0 + }, + { + "word": " main", + "start": 3915.88, + "end": 3916.72, + "probability": 0.99951171875 + }, + { + "word": " headsets", + "start": 3916.72, + "end": 3917.08, + "probability": 1.0 + }, + { + "word": " right", + "start": 3917.08, + "end": 3917.26, + "probability": 1.0 + }, + { + "word": " now.", + "start": 3917.26, + "end": 3917.46, + "probability": 1.0 + } + ] + }, + { + "id": 3921, + "text": "Right.", + "start": 3917.64, + "end": 3917.94, + "words": [ + { + "word": " Right.", + "start": 3917.64, + "end": 3917.94, + "probability": 0.99609375 + } + ] + }, + { + "id": 3922, + "text": "So you're looking at 615 pixels per inch, which is considerably better, because you're about the 340?", + "start": 3917.98, + "end": 3924.66, + "words": [ + { + "word": " So", + "start": 3917.98, + "end": 3918.08, + "probability": 0.99609375 + }, + { + "word": " you're", + "start": 3918.08, + "end": 3918.18, + "probability": 0.91845703125 + }, + { + "word": " looking", + "start": 3918.18, + "end": 3918.32, + "probability": 1.0 + }, + { + "word": " at", + "start": 3918.32, + "end": 3918.48, + "probability": 1.0 + }, + { + "word": " 615", + "start": 3918.48, + "end": 3919.58, + "probability": 0.99951171875 + }, + { + "word": " pixels", + "start": 3919.58, + "end": 3920.28, + "probability": 0.99951171875 + }, + { + "word": " per", + "start": 3920.28, + "end": 3920.56, + "probability": 0.99951171875 + }, + { + "word": " inch,", + "start": 3920.56, + "end": 3920.78, + "probability": 1.0 + }, + { + "word": " which", + "start": 3920.92, + "end": 3921.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 3921.12, + "end": 3921.38, + "probability": 1.0 + }, + { + "word": " considerably", + "start": 3921.38, + "end": 3922.02, + "probability": 1.0 + }, + { + "word": " better,", + "start": 3922.02, + "end": 3922.26, + "probability": 1.0 + }, + { + "word": " because", + "start": 3922.34, + "end": 3922.44, + "probability": 1.0 + }, + { + "word": " you're", + "start": 3922.44, + "end": 3922.6, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 3922.6, + "end": 3922.74, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 3922.74, + "end": 3923.04, + "probability": 0.99658203125 + }, + { + "word": " 340?", + "start": 3923.04, + "end": 3924.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3923, + "text": "Something like that.", + "start": 3925.04, + "end": 3925.78, + "words": [ + { + "word": " Something", + "start": 3925.04, + "end": 3925.36, + "probability": 0.86328125 + }, + { + "word": " like", + "start": 3925.36, + "end": 3925.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3925.66, + "end": 3925.78, + "probability": 1.0 + } + ] + }, + { + "id": 3924, + "text": "380 for the other headsets.", + "start": 3925.88, + "end": 3928.48, + "words": [ + { + "word": " 380", + "start": 3925.88, + "end": 3926.26, + "probability": 0.9599609375 + }, + { + "word": " for", + "start": 3926.26, + "end": 3926.94, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 3926.94, + "end": 3927.34, + "probability": 1.0 + }, + { + "word": " other", + "start": 3927.34, + "end": 3928.0, + "probability": 1.0 + }, + { + "word": " headsets.", + "start": 3928.0, + "end": 3928.48, + "probability": 1.0 + } + ] + }, + { + "id": 3925, + "text": "So you're almost twice the resolution.", + "start": 3928.48, + "end": 3929.9, + "words": [ + { + "word": " So", + "start": 3928.48, + "end": 3928.6, + "probability": 0.59326171875 + }, + { + "word": " you're", + "start": 3928.6, + "end": 3928.68, + "probability": 0.9921875 + }, + { + "word": " almost", + "start": 3928.68, + "end": 3928.92, + "probability": 1.0 + }, + { + "word": " twice", + "start": 3928.92, + "end": 3929.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 3929.32, + "end": 3929.54, + "probability": 1.0 + }, + { + "word": " resolution.", + "start": 3929.54, + "end": 3929.9, + "probability": 1.0 + } + ] + }, + { + "id": 3926, + "text": "So right now, I mean, since most people have not even tried this stuff yet...", + "start": 3930.02, + "end": 3933.46, + "words": [ + { + "word": " So", + "start": 3930.02, + "end": 3930.34, + "probability": 0.99365234375 + }, + { + "word": " right", + "start": 3930.34, + "end": 3930.54, + "probability": 0.99853515625 + }, + { + "word": " now,", + "start": 3930.54, + "end": 3930.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 3930.9, + "end": 3930.96, + "probability": 0.7109375 + }, + { + "word": " mean,", + "start": 3930.96, + "end": 3931.04, + "probability": 1.0 + }, + { + "word": " since", + "start": 3931.06, + "end": 3931.3, + "probability": 0.998046875 + }, + { + "word": " most", + "start": 3931.3, + "end": 3931.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 3931.68, + "end": 3931.96, + "probability": 1.0 + }, + { + "word": " have", + "start": 3931.96, + "end": 3932.22, + "probability": 1.0 + }, + { + "word": " not", + "start": 3932.22, + "end": 3932.4, + "probability": 1.0 + }, + { + "word": " even", + "start": 3932.4, + "end": 3932.6, + "probability": 1.0 + }, + { + "word": " tried", + "start": 3932.6, + "end": 3932.88, + "probability": 1.0 + }, + { + "word": " this", + "start": 3932.88, + "end": 3933.08, + "probability": 0.82861328125 + }, + { + "word": " stuff", + "start": 3933.08, + "end": 3933.26, + "probability": 0.99951171875 + }, + { + "word": " yet...", + "start": 3933.26, + "end": 3933.46, + "probability": 0.53466796875 + } + ] + }, + { + "id": 3927, + "text": "There is still what's called a screen door effect, which means that you can see the pixels if you concentrate on it in VR.", + "start": 3933.46, + "end": 3939.36, + "words": [ + { + "word": " There", + "start": 3933.46, + "end": 3933.66, + "probability": 0.343505859375 + }, + { + "word": " is", + "start": 3933.66, + "end": 3934.2, + "probability": 1.0 + }, + { + "word": " still", + "start": 3934.2, + "end": 3934.42, + "probability": 1.0 + }, + { + "word": " what's", + "start": 3934.42, + "end": 3934.62, + "probability": 0.9990234375 + }, + { + "word": " called", + "start": 3934.62, + "end": 3934.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 3934.82, + "end": 3934.96, + "probability": 0.9970703125 + }, + { + "word": " screen", + "start": 3934.96, + "end": 3935.18, + "probability": 0.99609375 + }, + { + "word": " door", + "start": 3935.18, + "end": 3935.36, + "probability": 0.919921875 + }, + { + "word": " effect,", + "start": 3935.36, + "end": 3935.62, + "probability": 1.0 + }, + { + "word": " which", + "start": 3935.86, + "end": 3936.16, + "probability": 1.0 + }, + { + "word": " means", + "start": 3936.16, + "end": 3936.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 3936.38, + "end": 3936.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 3936.64, + "end": 3936.76, + "probability": 1.0 + }, + { + "word": " can", + "start": 3936.76, + "end": 3936.92, + "probability": 1.0 + }, + { + "word": " see", + "start": 3936.92, + "end": 3937.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 3937.24, + "end": 3937.36, + "probability": 1.0 + }, + { + "word": " pixels", + "start": 3937.36, + "end": 3937.66, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 3937.66, + "end": 3937.96, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3937.96, + "end": 3938.08, + "probability": 1.0 + }, + { + "word": " concentrate", + "start": 3938.08, + "end": 3938.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 3938.42, + "end": 3938.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 3938.7, + "end": 3938.84, + "probability": 1.0 + }, + { + "word": " in", + "start": 3938.84, + "end": 3939.08, + "probability": 0.99951171875 + }, + { + "word": " VR.", + "start": 3939.08, + "end": 3939.36, + "probability": 1.0 + } + ] + }, + { + "id": 3928, + "text": "And some people are never even able to overcome that, and they just hate it because they see this stuff.", + "start": 3939.54, + "end": 3944.08, + "words": [ + { + "word": " And", + "start": 3939.54, + "end": 3939.94, + "probability": 0.93505859375 + }, + { + "word": " some", + "start": 3939.94, + "end": 3940.12, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 3940.12, + "end": 3940.34, + "probability": 1.0 + }, + { + "word": " are", + "start": 3940.34, + "end": 3940.5, + "probability": 1.0 + }, + { + "word": " never", + "start": 3940.5, + "end": 3940.66, + "probability": 1.0 + }, + { + "word": " even", + "start": 3940.66, + "end": 3940.9, + "probability": 1.0 + }, + { + "word": " able", + "start": 3940.9, + "end": 3941.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 3941.3, + "end": 3941.5, + "probability": 1.0 + }, + { + "word": " overcome", + "start": 3941.5, + "end": 3941.82, + "probability": 1.0 + }, + { + "word": " that,", + "start": 3941.82, + "end": 3942.06, + "probability": 1.0 + }, + { + "word": " and", + "start": 3942.14, + "end": 3942.36, + "probability": 1.0 + }, + { + "word": " they", + "start": 3942.36, + "end": 3942.64, + "probability": 1.0 + }, + { + "word": " just", + "start": 3942.64, + "end": 3942.86, + "probability": 1.0 + }, + { + "word": " hate", + "start": 3942.86, + "end": 3943.06, + "probability": 1.0 + }, + { + "word": " it", + "start": 3943.06, + "end": 3943.18, + "probability": 1.0 + }, + { + "word": " because", + "start": 3943.18, + "end": 3943.3, + "probability": 0.9970703125 + }, + { + "word": " they", + "start": 3943.3, + "end": 3943.5, + "probability": 1.0 + }, + { + "word": " see", + "start": 3943.5, + "end": 3943.72, + "probability": 1.0 + }, + { + "word": " this", + "start": 3943.72, + "end": 3943.86, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3943.86, + "end": 3944.08, + "probability": 1.0 + } + ] + }, + { + "id": 3929, + "text": "As the resolution increases, that screen door effect is going to drop, and eventually it's going to be gone completely.", + "start": 3944.3, + "end": 3949.96, + "words": [ + { + "word": " As", + "start": 3944.3, + "end": 3944.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 3944.7, + "end": 3944.88, + "probability": 1.0 + }, + { + "word": " resolution", + "start": 3944.88, + "end": 3945.24, + "probability": 1.0 + }, + { + "word": " increases,", + "start": 3945.24, + "end": 3945.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 3946.32, + "end": 3946.78, + "probability": 1.0 + }, + { + "word": " screen", + "start": 3946.78, + "end": 3947.0, + "probability": 1.0 + }, + { + "word": " door", + "start": 3947.0, + "end": 3947.14, + "probability": 1.0 + }, + { + "word": " effect", + "start": 3947.14, + "end": 3947.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 3947.3, + "end": 3947.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 3947.5, + "end": 3947.58, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3947.58, + "end": 3947.68, + "probability": 1.0 + }, + { + "word": " drop,", + "start": 3947.68, + "end": 3947.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 3947.92, + "end": 3948.06, + "probability": 1.0 + }, + { + "word": " eventually", + "start": 3948.06, + "end": 3948.34, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 3948.34, + "end": 3948.98, + "probability": 0.96044921875 + }, + { + "word": " going", + "start": 3948.98, + "end": 3949.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 3949.06, + "end": 3949.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 3949.16, + "end": 3949.28, + "probability": 1.0 + }, + { + "word": " gone", + "start": 3949.28, + "end": 3949.54, + "probability": 1.0 + }, + { + "word": " completely.", + "start": 3949.54, + "end": 3949.96, + "probability": 1.0 + } + ] + }, + { + "id": 3930, + "text": "Right.", + "start": 3950.38, + "end": 3950.78, + "words": [ + { + "word": " Right.", + "start": 3950.38, + "end": 3950.78, + "probability": 0.998046875 + } + ] + }, + { + "id": 3931, + "text": "The pixels will be so small you won't be able to...", + "start": 3950.84, + "end": 3952.44, + "words": [ + { + "word": " The", + "start": 3950.84, + "end": 3950.92, + "probability": 0.99951171875 + }, + { + "word": " pixels", + "start": 3950.92, + "end": 3951.16, + "probability": 0.5380859375 + }, + { + "word": " will", + "start": 3951.16, + "end": 3951.28, + "probability": 0.9970703125 + }, + { + "word": " be", + "start": 3951.28, + "end": 3951.34, + "probability": 1.0 + }, + { + "word": " so", + "start": 3951.34, + "end": 3951.5, + "probability": 1.0 + }, + { + "word": " small", + "start": 3951.5, + "end": 3951.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 3951.76, + "end": 3951.88, + "probability": 0.89306640625 + }, + { + "word": " won't", + "start": 3951.88, + "end": 3952.02, + "probability": 1.0 + }, + { + "word": " be", + "start": 3952.02, + "end": 3952.1, + "probability": 1.0 + }, + { + "word": " able", + "start": 3952.1, + "end": 3952.18, + "probability": 1.0 + }, + { + "word": " to...", + "start": 3952.18, + "end": 3952.44, + "probability": 0.53369140625 + } + ] + }, + { + "id": 3932, + "text": "So when we get to like 8K per eye, which is future for sure.", + "start": 3952.44, + "end": 3956.26, + "words": [ + { + "word": " So", + "start": 3952.44, + "end": 3952.56, + "probability": 0.99658203125 + }, + { + "word": " when", + "start": 3952.56, + "end": 3952.76, + "probability": 0.9638671875 + }, + { + "word": " we", + "start": 3952.76, + "end": 3952.88, + "probability": 1.0 + }, + { + "word": " get", + "start": 3952.88, + "end": 3953.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 3953.0, + "end": 3953.16, + "probability": 1.0 + }, + { + "word": " like", + "start": 3953.16, + "end": 3953.38, + "probability": 0.53759765625 + }, + { + "word": " 8K", + "start": 3953.38, + "end": 3954.0, + "probability": 0.9931640625 + }, + { + "word": " per", + "start": 3954.0, + "end": 3954.28, + "probability": 0.99951171875 + }, + { + "word": " eye,", + "start": 3954.28, + "end": 3954.5, + "probability": 0.9990234375 + }, + { + "word": " which", + "start": 3954.64, + "end": 3954.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 3954.82, + "end": 3954.96, + "probability": 1.0 + }, + { + "word": " future", + "start": 3954.96, + "end": 3955.52, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 3955.52, + "end": 3956.02, + "probability": 0.97412109375 + }, + { + "word": " sure.", + "start": 3956.02, + "end": 3956.26, + "probability": 1.0 + } + ] + }, + { + "id": 3933, + "text": "Right.", + "start": 3956.48, + "end": 3956.78, + "words": [ + { + "word": " Right.", + "start": 3956.48, + "end": 3956.78, + "probability": 0.75439453125 + } + ] + }, + { + "id": 3934, + "text": "8K per eye, it's indistinguishable, I feel like, at that point.", + "start": 3956.82, + "end": 3959.62, + "words": [ + { + "word": " 8K", + "start": 3956.82, + "end": 3957.18, + "probability": 0.9970703125 + }, + { + "word": " per", + "start": 3957.18, + "end": 3957.36, + "probability": 1.0 + }, + { + "word": " eye,", + "start": 3957.36, + "end": 3957.62, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3957.72, + "end": 3958.04, + "probability": 1.0 + }, + { + "word": " indistinguishable,", + "start": 3958.04, + "end": 3958.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 3958.78, + "end": 3958.9, + "probability": 1.0 + }, + { + "word": " feel", + "start": 3958.9, + "end": 3959.02, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3959.02, + "end": 3959.22, + "probability": 1.0 + }, + { + "word": " at", + "start": 3959.22, + "end": 3959.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 3959.32, + "end": 3959.42, + "probability": 1.0 + }, + { + "word": " point.", + "start": 3959.42, + "end": 3959.62, + "probability": 1.0 + } + ] + }, + { + "id": 3935, + "text": "You'd have to have some eagle vision to pick out pixels there.", + "start": 3960.44, + "end": 3962.94, + "words": [ + { + "word": " You'd", + "start": 3960.44, + "end": 3960.84, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 3960.84, + "end": 3960.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 3960.92, + "end": 3960.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 3960.98, + "end": 3961.08, + "probability": 1.0 + }, + { + "word": " some", + "start": 3961.08, + "end": 3961.32, + "probability": 1.0 + }, + { + "word": " eagle", + "start": 3961.32, + "end": 3961.56, + "probability": 0.49365234375 + }, + { + "word": " vision", + "start": 3961.56, + "end": 3961.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 3961.78, + "end": 3962.06, + "probability": 1.0 + }, + { + "word": " pick", + "start": 3962.06, + "end": 3962.22, + "probability": 1.0 + }, + { + "word": " out", + "start": 3962.22, + "end": 3962.38, + "probability": 1.0 + }, + { + "word": " pixels", + "start": 3962.38, + "end": 3962.64, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3962.64, + "end": 3962.94, + "probability": 1.0 + } + ] + }, + { + "id": 3936, + "text": "So, yeah, it's good to see that.", + "start": 3964.24, + "end": 3965.64, + "words": [ + { + "word": " So,", + "start": 3964.24, + "end": 3964.56, + "probability": 0.9521484375 + }, + { + "word": " yeah,", + "start": 3964.56, + "end": 3964.88, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 3964.98, + "end": 3965.1, + "probability": 1.0 + }, + { + "word": " good", + "start": 3965.1, + "end": 3965.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 3965.24, + "end": 3965.34, + "probability": 1.0 + }, + { + "word": " see", + "start": 3965.34, + "end": 3965.52, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3965.52, + "end": 3965.64, + "probability": 0.9951171875 + } + ] + }, + { + "id": 3937, + "text": "I mean, resolution should be the number one thing that they're trying to improve right now.", + "start": 3965.68, + "end": 3968.84, + "words": [ + { + "word": " I", + "start": 3965.68, + "end": 3965.78, + "probability": 0.98486328125 + }, + { + "word": " mean,", + "start": 3965.78, + "end": 3965.86, + "probability": 1.0 + }, + { + "word": " resolution", + "start": 3965.86, + "end": 3966.1, + "probability": 0.93994140625 + }, + { + "word": " should", + "start": 3966.1, + "end": 3966.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 3966.4, + "end": 3966.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 3966.52, + "end": 3966.64, + "probability": 1.0 + }, + { + "word": " number", + "start": 3966.64, + "end": 3966.82, + "probability": 0.99560546875 + }, + { + "word": " one", + "start": 3966.82, + "end": 3966.94, + "probability": 0.9990234375 + }, + { + "word": " thing", + "start": 3966.94, + "end": 3967.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 3967.16, + "end": 3967.28, + "probability": 1.0 + }, + { + "word": " they're", + "start": 3967.28, + "end": 3967.4, + "probability": 1.0 + }, + { + "word": " trying", + "start": 3967.4, + "end": 3967.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 3967.6, + "end": 3967.8, + "probability": 1.0 + }, + { + "word": " improve", + "start": 3967.8, + "end": 3968.1, + "probability": 1.0 + }, + { + "word": " right", + "start": 3968.1, + "end": 3968.64, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 3968.64, + "end": 3968.84, + "probability": 1.0 + } + ] + }, + { + "id": 3938, + "text": "Yeah, and overall, the cumbersomeness of it, like the weight and...", + "start": 3969.28, + "end": 3973.9, + "words": [ + { + "word": " Yeah,", + "start": 3969.28, + "end": 3969.6, + "probability": 0.98974609375 + }, + { + "word": " and", + "start": 3969.64, + "end": 3969.88, + "probability": 1.0 + }, + { + "word": " overall,", + "start": 3969.88, + "end": 3970.82, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 3971.1, + "end": 3971.28, + "probability": 1.0 + }, + { + "word": " cumbersomeness", + "start": 3971.28, + "end": 3972.12, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 3972.12, + "end": 3972.3, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3972.3, + "end": 3972.46, + "probability": 1.0 + }, + { + "word": " like", + "start": 3972.48, + "end": 3972.62, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 3972.62, + "end": 3972.76, + "probability": 0.9794921875 + }, + { + "word": " weight", + "start": 3972.76, + "end": 3973.08, + "probability": 0.998046875 + }, + { + "word": " and...", + "start": 3973.08, + "end": 3973.9, + "probability": 0.54345703125 + } + ] + }, + { + "id": 3939, + "text": "Yeah, I mean, I'll tell you that the Oculus is not too bad.", + "start": 3973.9, + "end": 3976.96, + "words": [ + { + "word": " Yeah,", + "start": 3973.9, + "end": 3974.08, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 3974.16, + "end": 3974.18, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 3974.18, + "end": 3974.34, + "probability": 0.9970703125 + }, + { + "word": " I'll", + "start": 3974.4, + "end": 3974.7, + "probability": 0.90625 + }, + { + "word": " tell", + "start": 3974.7, + "end": 3974.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 3974.86, + "end": 3974.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 3974.96, + "end": 3975.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 3975.06, + "end": 3975.18, + "probability": 1.0 + }, + { + "word": " Oculus", + "start": 3975.18, + "end": 3975.46, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3975.46, + "end": 3975.74, + "probability": 0.9794921875 + }, + { + "word": " not", + "start": 3975.74, + "end": 3975.94, + "probability": 1.0 + }, + { + "word": " too", + "start": 3975.94, + "end": 3976.68, + "probability": 0.798828125 + }, + { + "word": " bad.", + "start": 3976.68, + "end": 3976.96, + "probability": 1.0 + } + ] + }, + { + "id": 3940, + "text": "Like, it definitely feels awkward the first time you use it, but eventually you forget it's there.", + "start": 3977.08, + "end": 3981.84, + "words": [ + { + "word": " Like,", + "start": 3977.08, + "end": 3977.26, + "probability": 0.86865234375 + }, + { + "word": " it", + "start": 3977.26, + "end": 3977.32, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 3977.32, + "end": 3977.6, + "probability": 1.0 + }, + { + "word": " feels", + "start": 3977.6, + "end": 3978.02, + "probability": 1.0 + }, + { + "word": " awkward", + "start": 3978.02, + "end": 3978.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 3978.34, + "end": 3978.76, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 3978.76, + "end": 3978.94, + "probability": 1.0 + }, + { + "word": " time", + "start": 3978.94, + "end": 3979.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 3979.12, + "end": 3979.26, + "probability": 1.0 + }, + { + "word": " use", + "start": 3979.26, + "end": 3979.46, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3979.46, + "end": 3979.68, + "probability": 1.0 + }, + { + "word": " but", + "start": 3979.72, + "end": 3980.32, + "probability": 1.0 + }, + { + "word": " eventually", + "start": 3980.32, + "end": 3981.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 3981.04, + "end": 3981.3, + "probability": 0.98046875 + }, + { + "word": " forget", + "start": 3981.3, + "end": 3981.5, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3981.5, + "end": 3981.68, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3981.68, + "end": 3981.84, + "probability": 1.0 + } + ] + }, + { + "id": 3941, + "text": "They also do this really interesting thing that I've noticed with the tracking to where...", + "start": 3982.5, + "end": 3987.84, + "words": [ + { + "word": " They", + "start": 3982.5, + "end": 3982.82, + "probability": 0.9990234375 + }, + { + "word": " also", + "start": 3982.82, + "end": 3983.02, + "probability": 1.0 + }, + { + "word": " do", + "start": 3983.02, + "end": 3983.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 3983.22, + "end": 3983.38, + "probability": 1.0 + }, + { + "word": " really", + "start": 3983.38, + "end": 3983.58, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 3983.58, + "end": 3983.88, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3983.88, + "end": 3984.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3984.26, + "end": 3984.42, + "probability": 1.0 + }, + { + "word": " I've", + "start": 3984.42, + "end": 3984.56, + "probability": 1.0 + }, + { + "word": " noticed", + "start": 3984.56, + "end": 3984.82, + "probability": 1.0 + }, + { + "word": " with", + "start": 3984.82, + "end": 3985.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 3985.1, + "end": 3985.22, + "probability": 1.0 + }, + { + "word": " tracking", + "start": 3985.22, + "end": 3986.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 3986.74, + "end": 3987.4, + "probability": 0.912109375 + }, + { + "word": " where...", + "start": 3987.4, + "end": 3987.84, + "probability": 0.62353515625 + } + ] + }, + { + "id": 3942, + "text": "I don't know, it's hard to explain, but like, you know how you can close your eyes and reach up and touch your nose and you know exactly where it is?", + "start": 3987.84, + "end": 3992.18, + "words": [ + { + "word": " I", + "start": 3987.84, + "end": 3988.06, + "probability": 0.9814453125 + }, + { + "word": " don't", + "start": 3988.06, + "end": 3988.2, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3988.2, + "end": 3988.28, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3988.3, + "end": 3988.52, + "probability": 1.0 + }, + { + "word": " hard", + "start": 3988.52, + "end": 3988.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 3988.64, + "end": 3988.74, + "probability": 1.0 + }, + { + "word": " explain,", + "start": 3988.74, + "end": 3988.94, + "probability": 1.0 + }, + { + "word": " but", + "start": 3988.98, + "end": 3989.04, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3989.04, + "end": 3989.16, + "probability": 0.2230224609375 + }, + { + "word": " you", + "start": 3989.18, + "end": 3989.24, + "probability": 1.0 + }, + { + "word": " know", + "start": 3989.24, + "end": 3989.28, + "probability": 1.0 + }, + { + "word": " how", + "start": 3989.28, + "end": 3989.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 3989.36, + "end": 3989.5, + "probability": 1.0 + }, + { + "word": " can", + "start": 3989.5, + "end": 3989.62, + "probability": 1.0 + }, + { + "word": " close", + "start": 3989.62, + "end": 3990.0, + "probability": 1.0 + }, + { + "word": " your", + "start": 3990.0, + "end": 3990.12, + "probability": 1.0 + }, + { + "word": " eyes", + "start": 3990.12, + "end": 3990.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 3990.28, + "end": 3990.38, + "probability": 0.99951171875 + }, + { + "word": " reach", + "start": 3990.38, + "end": 3990.5, + "probability": 1.0 + }, + { + "word": " up", + "start": 3990.5, + "end": 3990.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 3990.66, + "end": 3990.74, + "probability": 1.0 + }, + { + "word": " touch", + "start": 3990.74, + "end": 3990.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 3990.88, + "end": 3991.02, + "probability": 1.0 + }, + { + "word": " nose", + "start": 3991.02, + "end": 3991.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 3991.2, + "end": 3991.36, + "probability": 0.9638671875 + }, + { + "word": " you", + "start": 3991.36, + "end": 3991.4, + "probability": 1.0 + }, + { + "word": " know", + "start": 3991.4, + "end": 3991.5, + "probability": 1.0 + }, + { + "word": " exactly", + "start": 3991.5, + "end": 3991.72, + "probability": 1.0 + }, + { + "word": " where", + "start": 3991.72, + "end": 3991.92, + "probability": 1.0 + }, + { + "word": " it", + "start": 3991.92, + "end": 3992.02, + "probability": 1.0 + }, + { + "word": " is?", + "start": 3992.02, + "end": 3992.18, + "probability": 1.0 + } + ] + }, + { + "id": 3943, + "text": "Right.", + "start": 3992.24, + "end": 3992.5, + "words": [ + { + "word": " Right.", + "start": 3992.24, + "end": 3992.5, + "probability": 0.984375 + } + ] + }, + { + "id": 3944, + "text": "It changes your...", + "start": 3992.62, + "end": 3993.44, + "words": [ + { + "word": " It", + "start": 3992.62, + "end": 3992.94, + "probability": 0.89013671875 + }, + { + "word": " changes", + "start": 3992.94, + "end": 3993.28, + "probability": 0.98046875 + }, + { + "word": " your...", + "start": 3993.28, + "end": 3993.44, + "probability": 0.603515625 + } + ] + }, + { + "id": 3945, + "text": "", + "start": 3993.44, + "end": 3993.44, + "words": [] + }, + { + "id": 3946, + "text": "It changes your perspective on where your eyes are, and so you don't slam your hand into the headset.", + "start": 3993.44, + "end": 3997.86, + "words": [ + { + "word": " It", + "start": 3993.44, + "end": 3993.52, + "probability": 0.005451202392578125 + }, + { + "word": " changes", + "start": 3993.52, + "end": 3993.52, + "probability": 0.038909912109375 + }, + { + "word": " your", + "start": 3993.52, + "end": 3993.52, + "probability": 0.98681640625 + }, + { + "word": " perspective", + "start": 3993.52, + "end": 3993.9, + "probability": 0.99560546875 + }, + { + "word": " on", + "start": 3993.9, + "end": 3994.2, + "probability": 0.998046875 + }, + { + "word": " where", + "start": 3994.2, + "end": 3994.4, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3994.4, + "end": 3994.62, + "probability": 0.99951171875 + }, + { + "word": " eyes", + "start": 3994.62, + "end": 3994.86, + "probability": 1.0 + }, + { + "word": " are,", + "start": 3994.86, + "end": 3995.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 3995.2, + "end": 3995.9, + "probability": 0.60400390625 + }, + { + "word": " so", + "start": 3995.9, + "end": 3996.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3996.18, + "end": 3996.34, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3996.34, + "end": 3996.54, + "probability": 1.0 + }, + { + "word": " slam", + "start": 3996.54, + "end": 3996.74, + "probability": 1.0 + }, + { + "word": " your", + "start": 3996.74, + "end": 3997.0, + "probability": 1.0 + }, + { + "word": " hand", + "start": 3997.0, + "end": 3997.24, + "probability": 1.0 + }, + { + "word": " into", + "start": 3997.24, + "end": 3997.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 3997.46, + "end": 3997.6, + "probability": 1.0 + }, + { + "word": " headset.", + "start": 3997.6, + "end": 3997.86, + "probability": 1.0 + } + ] + }, + { + "id": 3947, + "text": "Well, that's interesting.", + "start": 3998.58, + "end": 3999.46, + "words": [ + { + "word": " Well,", + "start": 3998.58, + "end": 3998.98, + "probability": 0.9345703125 + }, + { + "word": " that's", + "start": 3998.98, + "end": 3999.14, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 3999.14, + "end": 3999.46, + "probability": 1.0 + } + ] + }, + { + "id": 3948, + "text": "Yeah, so when you go to pick up your hand and touch your eye, you touch the back, you know, the outside of the case, and you don't just slam your hand into it.", + "start": 3999.64, + "end": 4005.94, + "words": [ + { + "word": " Yeah,", + "start": 3999.64, + "end": 3999.8, + "probability": 0.99365234375 + }, + { + "word": " so", + "start": 3999.84, + "end": 4000.0, + "probability": 1.0 + }, + { + "word": " when", + "start": 4000.0, + "end": 4000.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 4000.18, + "end": 4000.26, + "probability": 1.0 + }, + { + "word": " go", + "start": 4000.26, + "end": 4000.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 4000.38, + "end": 4000.46, + "probability": 1.0 + }, + { + "word": " pick", + "start": 4000.46, + "end": 4000.62, + "probability": 1.0 + }, + { + "word": " up", + "start": 4000.62, + "end": 4000.74, + "probability": 1.0 + }, + { + "word": " your", + "start": 4000.74, + "end": 4000.84, + "probability": 1.0 + }, + { + "word": " hand", + "start": 4000.84, + "end": 4001.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 4001.08, + "end": 4001.22, + "probability": 1.0 + }, + { + "word": " touch", + "start": 4001.22, + "end": 4001.38, + "probability": 1.0 + }, + { + "word": " your", + "start": 4001.38, + "end": 4001.56, + "probability": 1.0 + }, + { + "word": " eye,", + "start": 4001.56, + "end": 4001.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 4001.82, + "end": 4001.92, + "probability": 1.0 + }, + { + "word": " touch", + "start": 4001.92, + "end": 4002.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 4002.14, + "end": 4002.4, + "probability": 1.0 + }, + { + "word": " back,", + "start": 4002.4, + "end": 4002.74, + "probability": 0.71142578125 + }, + { + "word": " you", + "start": 4002.86, + "end": 4002.94, + "probability": 0.92919921875 + }, + { + "word": " know,", + "start": 4002.94, + "end": 4003.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 4003.08, + "end": 4003.14, + "probability": 1.0 + }, + { + "word": " outside", + "start": 4003.14, + "end": 4003.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 4003.38, + "end": 4003.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 4003.56, + "end": 4003.6, + "probability": 1.0 + }, + { + "word": " case,", + "start": 4003.6, + "end": 4003.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 4004.02, + "end": 4004.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 4004.58, + "end": 4004.7, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4004.7, + "end": 4004.88, + "probability": 1.0 + }, + { + "word": " just", + "start": 4004.88, + "end": 4004.98, + "probability": 1.0 + }, + { + "word": " slam", + "start": 4004.98, + "end": 4005.22, + "probability": 1.0 + }, + { + "word": " your", + "start": 4005.22, + "end": 4005.38, + "probability": 1.0 + }, + { + "word": " hand", + "start": 4005.38, + "end": 4005.56, + "probability": 1.0 + }, + { + "word": " into", + "start": 4005.56, + "end": 4005.72, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4005.72, + "end": 4005.94, + "probability": 1.0 + } + ] + }, + { + "id": 3949, + "text": "That would just be...", + "start": 4006.34, + "end": 4007.58, + "words": [ + { + "word": " That", + "start": 4006.34, + "end": 4006.74, + "probability": 1.0 + }, + { + "word": " would", + "start": 4006.74, + "end": 4006.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 4006.92, + "end": 4007.1, + "probability": 0.998046875 + }, + { + "word": " be...", + "start": 4007.1, + "end": 4007.58, + "probability": 0.54638671875 + } + ] + }, + { + "id": 3950, + "text": "That would be beautiful YouTube, just to watch people slamming their hands into the...", + "start": 4008.2799999999997, + "end": 4012.56, + "words": [ + { + "word": " That", + "start": 4008.2799999999997, + "end": 4008.68, + "probability": 0.88916015625 + }, + { + "word": " would", + "start": 4008.68, + "end": 4009.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 4009.08, + "end": 4009.24, + "probability": 1.0 + }, + { + "word": " beautiful", + "start": 4009.24, + "end": 4009.92, + "probability": 0.99951171875 + }, + { + "word": " YouTube,", + "start": 4009.92, + "end": 4010.3, + "probability": 0.99853515625 + }, + { + "word": " just", + "start": 4010.42, + "end": 4010.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 4010.74, + "end": 4010.88, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4010.88, + "end": 4011.06, + "probability": 1.0 + }, + { + "word": " people", + "start": 4011.06, + "end": 4011.28, + "probability": 1.0 + }, + { + "word": " slamming", + "start": 4011.28, + "end": 4012.02, + "probability": 0.9921875 + }, + { + "word": " their", + "start": 4012.02, + "end": 4012.08, + "probability": 1.0 + }, + { + "word": " hands", + "start": 4012.08, + "end": 4012.34, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 4012.34, + "end": 4012.56, + "probability": 0.93115234375 + }, + { + "word": " the...", + "start": 4012.56, + "end": 4012.56, + "probability": 0.5078125 + } + ] + }, + { + "id": 3951, + "text": "You can definitely watch people punching walls in TVs.", + "start": 4012.56, + "end": 4014.9, + "words": [ + { + "word": " You", + "start": 4012.56, + "end": 4012.68, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 4012.68, + "end": 4012.88, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 4012.88, + "end": 4013.22, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4013.22, + "end": 4013.54, + "probability": 1.0 + }, + { + "word": " people", + "start": 4013.54, + "end": 4013.76, + "probability": 1.0 + }, + { + "word": " punching", + "start": 4013.76, + "end": 4014.04, + "probability": 1.0 + }, + { + "word": " walls", + "start": 4014.04, + "end": 4014.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 4014.34, + "end": 4014.6, + "probability": 0.90625 + }, + { + "word": " TVs.", + "start": 4014.6, + "end": 4014.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3952, + "text": "Yeah.", + "start": 4015.28, + "end": 4015.68, + "words": [ + { + "word": " Yeah.", + "start": 4015.28, + "end": 4015.68, + "probability": 0.8837890625 + } + ] + }, + { + "id": 3953, + "text": "The first night that I had mine, I punched my TV and I almost broke it.", + "start": 4015.72, + "end": 4019.04, + "words": [ + { + "word": " The", + "start": 4015.72, + "end": 4015.92, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 4015.92, + "end": 4016.14, + "probability": 1.0 + }, + { + "word": " night", + "start": 4016.14, + "end": 4016.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 4016.36, + "end": 4016.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 4016.5, + "end": 4016.6, + "probability": 1.0 + }, + { + "word": " had", + "start": 4016.6, + "end": 4016.76, + "probability": 1.0 + }, + { + "word": " mine,", + "start": 4016.76, + "end": 4016.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 4017.06, + "end": 4017.24, + "probability": 1.0 + }, + { + "word": " punched", + "start": 4017.24, + "end": 4017.68, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4017.68, + "end": 4017.86, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4017.86, + "end": 4018.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 4018.1, + "end": 4018.26, + "probability": 0.65087890625 + }, + { + "word": " I", + "start": 4018.26, + "end": 4018.28, + "probability": 0.70751953125 + }, + { + "word": " almost", + "start": 4018.28, + "end": 4018.62, + "probability": 1.0 + }, + { + "word": " broke", + "start": 4018.62, + "end": 4018.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4018.88, + "end": 4019.04, + "probability": 1.0 + } + ] + }, + { + "id": 3954, + "text": "You gotta pay attention to the boundaries.", + "start": 4019.84, + "end": 4021.28, + "words": [ + { + "word": " You", + "start": 4019.84, + "end": 4020.24, + "probability": 0.99951171875 + }, + { + "word": " gotta", + "start": 4020.24, + "end": 4020.34, + "probability": 0.1654052734375 + }, + { + "word": " pay", + "start": 4020.34, + "end": 4020.5, + "probability": 1.0 + }, + { + "word": " attention", + "start": 4020.5, + "end": 4020.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4020.76, + "end": 4020.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 4020.92, + "end": 4021.02, + "probability": 1.0 + }, + { + "word": " boundaries.", + "start": 4021.02, + "end": 4021.28, + "probability": 1.0 + } + ] + }, + { + "id": 3955, + "text": "Yeah.", + "start": 4022.8, + "end": 4023.2, + "words": [ + { + "word": " Yeah.", + "start": 4022.8, + "end": 4023.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3956, + "text": "Yeah, I guess you do.", + "start": 4023.44, + "end": 4024.2, + "words": [ + { + "word": " Yeah,", + "start": 4023.44, + "end": 4023.6, + "probability": 0.2568359375 + }, + { + "word": " I", + "start": 4023.64, + "end": 4023.74, + "probability": 0.99658203125 + }, + { + "word": " guess", + "start": 4023.74, + "end": 4023.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 4023.96, + "end": 4024.04, + "probability": 1.0 + }, + { + "word": " do.", + "start": 4024.04, + "end": 4024.2, + "probability": 1.0 + } + ] + }, + { + "id": 3957, + "text": "And so we're going to do one more before we go to another break here.", + "start": 4025.02, + "end": 4027.5, + "words": [ + { + "word": " And", + "start": 4025.02, + "end": 4025.46, + "probability": 0.95166015625 + }, + { + "word": " so", + "start": 4025.46, + "end": 4025.68, + "probability": 0.9990234375 + }, + { + "word": " we're", + "start": 4025.68, + "end": 4025.88, + "probability": 0.96630859375 + }, + { + "word": " going", + "start": 4025.88, + "end": 4025.9, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 4025.9, + "end": 4025.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 4025.98, + "end": 4026.08, + "probability": 1.0 + }, + { + "word": " one", + "start": 4026.08, + "end": 4026.2, + "probability": 1.0 + }, + { + "word": " more", + "start": 4026.2, + "end": 4026.3, + "probability": 1.0 + }, + { + "word": " before", + "start": 4026.3, + "end": 4026.5, + "probability": 1.0 + }, + { + "word": " we", + "start": 4026.5, + "end": 4026.64, + "probability": 1.0 + }, + { + "word": " go", + "start": 4026.64, + "end": 4026.74, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4026.74, + "end": 4026.82, + "probability": 1.0 + }, + { + "word": " another", + "start": 4026.82, + "end": 4026.96, + "probability": 1.0 + }, + { + "word": " break", + "start": 4026.96, + "end": 4027.3, + "probability": 1.0 + }, + { + "word": " here.", + "start": 4027.3, + "end": 4027.5, + "probability": 1.0 + } + ] + }, + { + "id": 3958, + "text": "And I'm kind of skipping towards the end here.", + "start": 4027.98, + "end": 4030.46, + "words": [ + { + "word": " And", + "start": 4027.98, + "end": 4028.42, + "probability": 0.99755859375 + }, + { + "word": " I'm", + "start": 4028.42, + "end": 4028.84, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 4028.84, + "end": 4029.0, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 4029.0, + "end": 4029.1, + "probability": 1.0 + }, + { + "word": " skipping", + "start": 4029.1, + "end": 4029.36, + "probability": 0.998046875 + }, + { + "word": " towards", + "start": 4029.36, + "end": 4029.64, + "probability": 0.9794921875 + }, + { + "word": " the", + "start": 4029.64, + "end": 4030.16, + "probability": 1.0 + }, + { + "word": " end", + "start": 4030.16, + "end": 4030.32, + "probability": 1.0 + }, + { + "word": " here.", + "start": 4030.32, + "end": 4030.46, + "probability": 1.0 + } + ] + }, + { + "id": 3959, + "text": "They always do something that they call the best of the best.", + "start": 4030.54, + "end": 4032.84, + "words": [ + { + "word": " They", + "start": 4030.54, + "end": 4030.74, + "probability": 0.998046875 + }, + { + "word": " always", + "start": 4030.74, + "end": 4031.2, + "probability": 1.0 + }, + { + "word": " do", + "start": 4031.2, + "end": 4031.38, + "probability": 1.0 + }, + { + "word": " something", + "start": 4031.38, + "end": 4031.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 4031.62, + "end": 4031.78, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4031.78, + "end": 4031.94, + "probability": 1.0 + }, + { + "word": " call", + "start": 4031.94, + "end": 4032.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4032.06, + "end": 4032.2, + "probability": 1.0 + }, + { + "word": " best", + "start": 4032.2, + "end": 4032.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 4032.38, + "end": 4032.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 4032.52, + "end": 4032.58, + "probability": 1.0 + }, + { + "word": " best.", + "start": 4032.58, + "end": 4032.84, + "probability": 1.0 + } + ] + }, + { + "id": 3960, + "text": "And often enough, it is not technology as most people would see it.", + "start": 4034.56, + "end": 4039.62, + "words": [ + { + "word": " And", + "start": 4034.56, + "end": 4035.0, + "probability": 0.99462890625 + }, + { + "word": " often", + "start": 4035.0, + "end": 4035.44, + "probability": 0.9990234375 + }, + { + "word": " enough,", + "start": 4035.44, + "end": 4035.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 4035.94, + "end": 4036.28, + "probability": 1.0 + }, + { + "word": " is", + "start": 4036.28, + "end": 4036.42, + "probability": 1.0 + }, + { + "word": " not", + "start": 4036.42, + "end": 4036.7, + "probability": 1.0 + }, + { + "word": " technology", + "start": 4036.7, + "end": 4037.8, + "probability": 1.0 + }, + { + "word": " as", + "start": 4037.8, + "end": 4038.28, + "probability": 1.0 + }, + { + "word": " most", + "start": 4038.28, + "end": 4038.54, + "probability": 1.0 + }, + { + "word": " people", + "start": 4038.54, + "end": 4038.82, + "probability": 1.0 + }, + { + "word": " would", + "start": 4038.82, + "end": 4039.02, + "probability": 1.0 + }, + { + "word": " see", + "start": 4039.02, + "end": 4039.36, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4039.36, + "end": 4039.62, + "probability": 1.0 + } + ] + }, + { + "id": 3961, + "text": "You know, like they wouldn't think of it this way.", + "start": 4039.88, + "end": 4041.96, + "words": [ + { + "word": " You", + "start": 4039.88, + "end": 4040.28, + "probability": 0.7099609375 + }, + { + "word": " know,", + "start": 4040.28, + "end": 4040.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 4040.44, + "end": 4040.58, + "probability": 0.9853515625 + }, + { + "word": " they", + "start": 4040.58, + "end": 4040.9, + "probability": 0.9541015625 + }, + { + "word": " wouldn't", + "start": 4040.9, + "end": 4041.12, + "probability": 1.0 + }, + { + "word": " think", + "start": 4041.12, + "end": 4041.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 4041.34, + "end": 4041.48, + "probability": 1.0 + }, + { + "word": " it", + "start": 4041.48, + "end": 4041.56, + "probability": 1.0 + }, + { + "word": " this", + "start": 4041.56, + "end": 4041.72, + "probability": 1.0 + }, + { + "word": " way.", + "start": 4041.72, + "end": 4041.96, + "probability": 1.0 + } + ] + }, + { + "id": 3962, + "text": "But this year, the winner is Toyota.", + "start": 4042.06, + "end": 4043.76, + "words": [ + { + "word": " But", + "start": 4042.06, + "end": 4042.28, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4042.28, + "end": 4042.62, + "probability": 1.0 + }, + { + "word": " year,", + "start": 4042.62, + "end": 4042.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 4042.92, + "end": 4043.26, + "probability": 1.0 + }, + { + "word": " winner", + "start": 4043.26, + "end": 4043.48, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4043.48, + "end": 4043.62, + "probability": 0.982421875 + }, + { + "word": " Toyota.", + "start": 4043.62, + "end": 4043.76, + "probability": 1.0 + } + ] + }, + { + "id": 3963, + "text": "And they are developing something called the e-palette.", + "start": 4044.54, + "end": 4047.5, + "words": [ + { + "word": " And", + "start": 4044.54, + "end": 4044.98, + "probability": 0.99169921875 + }, + { + "word": " they", + "start": 4044.98, + "end": 4045.2, + "probability": 1.0 + }, + { + "word": " are", + "start": 4045.2, + "end": 4045.32, + "probability": 1.0 + }, + { + "word": " developing", + "start": 4045.32, + "end": 4045.78, + "probability": 1.0 + }, + { + "word": " something", + "start": 4045.78, + "end": 4046.18, + "probability": 1.0 + }, + { + "word": " called", + "start": 4046.18, + "end": 4046.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 4046.54, + "end": 4046.74, + "probability": 1.0 + }, + { + "word": " e", + "start": 4046.74, + "end": 4047.06, + "probability": 0.76318359375 + }, + { + "word": "-palette.", + "start": 4047.06, + "end": 4047.5, + "probability": 0.69140625 + } + ] + }, + { + "id": 3964, + "text": "And it's effectively a van.", + "start": 4048.2, + "end": 4052.28, + "words": [ + { + "word": " And", + "start": 4048.2, + "end": 4048.64, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 4048.64, + "end": 4049.08, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 4049.08, + "end": 4050.48, + "probability": 0.9951171875 + }, + { + "word": " a", + "start": 4050.48, + "end": 4051.14, + "probability": 1.0 + }, + { + "word": " van.", + "start": 4051.14, + "end": 4052.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 3965, + "text": "An autonomous vehicle that's the shape of a large van.", + "start": 4053.44, + "end": 4056.56, + "words": [ + { + "word": " An", + "start": 4053.44, + "end": 4053.56, + "probability": 0.46337890625 + }, + { + "word": " autonomous", + "start": 4053.56, + "end": 4054.26, + "probability": 0.99951171875 + }, + { + "word": " vehicle", + "start": 4054.26, + "end": 4054.64, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4054.64, + "end": 4055.02, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 4055.02, + "end": 4055.16, + "probability": 1.0 + }, + { + "word": " shape", + "start": 4055.16, + "end": 4055.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 4055.48, + "end": 4055.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 4055.66, + "end": 4055.78, + "probability": 1.0 + }, + { + "word": " large", + "start": 4055.78, + "end": 4056.24, + "probability": 1.0 + }, + { + "word": " van.", + "start": 4056.24, + "end": 4056.56, + "probability": 1.0 + } + ] + }, + { + "id": 3966, + "text": "It's a rectangle on wheels.", + "start": 4056.7, + "end": 4058.02, + "words": [ + { + "word": " It's", + "start": 4056.7, + "end": 4056.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 4056.8, + "end": 4056.86, + "probability": 1.0 + }, + { + "word": " rectangle", + "start": 4056.86, + "end": 4057.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 4057.32, + "end": 4057.68, + "probability": 1.0 + }, + { + "word": " wheels.", + "start": 4057.68, + "end": 4058.02, + "probability": 1.0 + } + ] + }, + { + "id": 3967, + "text": "And you can do whatever you want with the inside, right?", + "start": 4058.84, + "end": 4060.98, + "words": [ + { + "word": " And", + "start": 4058.84, + "end": 4059.28, + "probability": 0.9033203125 + }, + { + "word": " you", + "start": 4059.28, + "end": 4059.48, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 4059.48, + "end": 4059.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 4059.56, + "end": 4059.66, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 4059.66, + "end": 4059.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 4059.82, + "end": 4059.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 4059.96, + "end": 4060.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 4060.08, + "end": 4060.18, + "probability": 0.86669921875 + }, + { + "word": " the", + "start": 4060.18, + "end": 4060.22, + "probability": 0.99609375 + }, + { + "word": " inside,", + "start": 4060.22, + "end": 4060.44, + "probability": 0.9990234375 + }, + { + "word": " right?", + "start": 4060.66, + "end": 4060.98, + "probability": 1.0 + } + ] + }, + { + "id": 3968, + "text": "You want to build a food truck?", + "start": 4061.16, + "end": 4062.28, + "words": [ + { + "word": " You", + "start": 4061.16, + "end": 4061.44, + "probability": 0.9326171875 + }, + { + "word": " want", + "start": 4061.44, + "end": 4061.54, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4061.54, + "end": 4061.62, + "probability": 1.0 + }, + { + "word": " build", + "start": 4061.62, + "end": 4061.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 4061.78, + "end": 4061.86, + "probability": 1.0 + }, + { + "word": " food", + "start": 4061.86, + "end": 4062.02, + "probability": 1.0 + }, + { + "word": " truck?", + "start": 4062.02, + "end": 4062.28, + "probability": 1.0 + } + ] + }, + { + "id": 3969, + "text": "You want to build a little RV or a mobile office or just delivery vehicles?", + "start": 4062.42, + "end": 4068.92, + "words": [ + { + "word": " You", + "start": 4062.42, + "end": 4062.72, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 4062.72, + "end": 4062.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 4062.88, + "end": 4063.08, + "probability": 1.0 + }, + { + "word": " build", + "start": 4063.08, + "end": 4064.0, + "probability": 0.75732421875 + }, + { + "word": " a", + "start": 4064.0, + "end": 4064.36, + "probability": 1.0 + }, + { + "word": " little", + "start": 4064.36, + "end": 4064.48, + "probability": 1.0 + }, + { + "word": " RV", + "start": 4064.48, + "end": 4064.9, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4064.9, + "end": 4065.28, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 4065.28, + "end": 4065.36, + "probability": 0.9990234375 + }, + { + "word": " mobile", + "start": 4065.36, + "end": 4065.78, + "probability": 1.0 + }, + { + "word": " office", + "start": 4065.78, + "end": 4066.34, + "probability": 1.0 + }, + { + "word": " or", + "start": 4066.34, + "end": 4066.84, + "probability": 0.97216796875 + }, + { + "word": " just", + "start": 4066.84, + "end": 4067.88, + "probability": 1.0 + }, + { + "word": " delivery", + "start": 4067.88, + "end": 4068.32, + "probability": 1.0 + }, + { + "word": " vehicles?", + "start": 4068.32, + "end": 4068.92, + "probability": 1.0 + } + ] + }, + { + "id": 3970, + "text": "It's one of these things that's such a blank canvas.", + "start": 4070.44, + "end": 4073.62, + "words": [ + { + "word": " It's", + "start": 4070.44, + "end": 4070.88, + "probability": 1.0 + }, + { + "word": " one", + "start": 4070.88, + "end": 4071.32, + "probability": 0.98876953125 + }, + { + "word": " of", + "start": 4071.32, + "end": 4071.96, + "probability": 1.0 + }, + { + "word": " these", + "start": 4071.96, + "end": 4072.04, + "probability": 0.9697265625 + }, + { + "word": " things", + "start": 4072.04, + "end": 4072.22, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4072.22, + "end": 4072.4, + "probability": 0.9873046875 + }, + { + "word": " such", + "start": 4072.4, + "end": 4072.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 4072.68, + "end": 4072.84, + "probability": 1.0 + }, + { + "word": " blank", + "start": 4072.84, + "end": 4073.1, + "probability": 0.99951171875 + }, + { + "word": " canvas.", + "start": 4073.1, + "end": 4073.62, + "probability": 1.0 + } + ] + }, + { + "id": 3971, + "text": "So the name kind of speaks to me like they're trying to...", + "start": 4073.88, + "end": 4076.38, + "words": [ + { + "word": " So", + "start": 4073.88, + "end": 4073.98, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 4073.98, + "end": 4074.12, + "probability": 0.93359375 + }, + { + "word": " name", + "start": 4074.12, + "end": 4074.38, + "probability": 1.0 + }, + { + "word": " kind", + "start": 4074.38, + "end": 4074.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 4074.52, + "end": 4074.76, + "probability": 1.0 + }, + { + "word": " speaks", + "start": 4074.76, + "end": 4074.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 4074.92, + "end": 4075.14, + "probability": 1.0 + }, + { + "word": " me", + "start": 4075.14, + "end": 4075.26, + "probability": 1.0 + }, + { + "word": " like", + "start": 4075.26, + "end": 4075.4, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 4075.4, + "end": 4075.56, + "probability": 1.0 + }, + { + "word": " trying", + "start": 4075.56, + "end": 4075.8, + "probability": 0.7314453125 + }, + { + "word": " to...", + "start": 4075.8, + "end": 4076.38, + "probability": 0.54833984375 + } + ] + }, + { + "id": 3972, + "text": "They're really telling you to do whatever you want with it.", + "start": 4077.36, + "end": 4079.9, + "words": [ + { + "word": " They're", + "start": 4077.36, + "end": 4077.8, + "probability": 0.974609375 + }, + { + "word": " really", + "start": 4077.8, + "end": 4078.24, + "probability": 1.0 + }, + { + "word": " telling", + "start": 4078.24, + "end": 4078.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 4078.52, + "end": 4078.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4078.76, + "end": 4078.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 4078.9, + "end": 4079.02, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 4079.02, + "end": 4079.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 4079.16, + "end": 4079.4, + "probability": 1.0 + }, + { + "word": " want", + "start": 4079.4, + "end": 4079.58, + "probability": 1.0 + }, + { + "word": " with", + "start": 4079.58, + "end": 4079.74, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4079.74, + "end": 4079.9, + "probability": 1.0 + } + ] + }, + { + "id": 3973, + "text": "So it really is...", + "start": 4079.98, + "end": 4080.82, + "words": [ + { + "word": " So", + "start": 4079.98, + "end": 4080.2, + "probability": 0.9892578125 + }, + { + "word": " it", + "start": 4080.2, + "end": 4080.32, + "probability": 0.92041015625 + }, + { + "word": " really", + "start": 4080.32, + "end": 4080.56, + "probability": 1.0 + }, + { + "word": " is...", + "start": 4080.56, + "end": 4080.82, + "probability": 0.69580078125 + } + ] + }, + { + "id": 3974, + "text": "Is it modular?", + "start": 4080.82, + "end": 4081.46, + "words": [ + { + "word": " Is", + "start": 4080.82, + "end": 4080.98, + "probability": 0.99267578125 + }, + { + "word": " it", + "start": 4080.98, + "end": 4081.04, + "probability": 1.0 + }, + { + "word": " modular?", + "start": 4081.04, + "end": 4081.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3975, + "text": "Or like what's...", + "start": 4081.48, + "end": 4082.78, + "words": [ + { + "word": " Or", + "start": 4081.48, + "end": 4081.7, + "probability": 0.452880859375 + }, + { + "word": " like", + "start": 4081.7, + "end": 4081.84, + "probability": 0.703125 + }, + { + "word": " what's...", + "start": 4081.84, + "end": 4082.78, + "probability": 0.8447265625 + } + ] + }, + { + "id": 3976, + "text": "The inside is just empty?", + "start": 4082.78, + "end": 4083.78, + "words": [ + { + "word": " The", + "start": 4082.78, + "end": 4082.9, + "probability": 0.80810546875 + }, + { + "word": " inside", + "start": 4082.9, + "end": 4083.12, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4083.12, + "end": 4083.3, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4083.3, + "end": 4083.44, + "probability": 1.0 + }, + { + "word": " empty?", + "start": 4083.44, + "end": 4083.78, + "probability": 1.0 + } + ] + }, + { + "id": 3977, + "text": "Yeah, it's totally empty.", + "start": 4084.26, + "end": 4085.26, + "words": [ + { + "word": " Yeah,", + "start": 4084.26, + "end": 4084.64, + "probability": 0.98583984375 + }, + { + "word": " it's", + "start": 4084.74, + "end": 4084.86, + "probability": 1.0 + }, + { + "word": " totally", + "start": 4084.86, + "end": 4085.04, + "probability": 1.0 + }, + { + "word": " empty.", + "start": 4085.04, + "end": 4085.26, + "probability": 1.0 + } + ] + }, + { + "id": 3978, + "text": "You can just...", + "start": 4085.48, + "end": 4086.24, + "words": [ + { + "word": " You", + "start": 4085.48, + "end": 4085.8, + "probability": 0.2479248046875 + }, + { + "word": " can", + "start": 4085.8, + "end": 4085.94, + "probability": 1.0 + }, + { + "word": " just...", + "start": 4085.94, + "end": 4086.24, + "probability": 0.58251953125 + } + ] + }, + { + "id": 3979, + "text": "It's just a cube or a rectangular cube.", + "start": 4086.24, + "end": 4088.98, + "words": [ + { + "word": " It's", + "start": 4086.24, + "end": 4086.72, + "probability": 0.98828125 + }, + { + "word": " just", + "start": 4086.72, + "end": 4086.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 4086.88, + "end": 4087.1, + "probability": 1.0 + }, + { + "word": " cube", + "start": 4087.1, + "end": 4087.7, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4087.7, + "end": 4088.04, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 4088.04, + "end": 4088.14, + "probability": 1.0 + }, + { + "word": " rectangular", + "start": 4088.14, + "end": 4088.6, + "probability": 0.99951171875 + }, + { + "word": " cube.", + "start": 4088.6, + "end": 4088.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3980, + "text": "That's actually really cool.", + "start": 4089.0, + "end": 4089.84, + "words": [ + { + "word": " That's", + "start": 4089.0, + "end": 4089.12, + "probability": 1.0 + }, + { + "word": " actually", + "start": 4089.12, + "end": 4089.38, + "probability": 1.0 + }, + { + "word": " really", + "start": 4089.38, + "end": 4089.58, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 4089.58, + "end": 4089.84, + "probability": 1.0 + } + ] + }, + { + "id": 3981, + "text": "On wheels.", + "start": 4089.9, + "end": 4090.26, + "words": [ + { + "word": " On", + "start": 4089.9, + "end": 4090.0, + "probability": 0.98681640625 + }, + { + "word": " wheels.", + "start": 4090.0, + "end": 4090.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 3982, + "text": "That's...", + "start": 4090.68, + "end": 4091.06, + "words": [ + { + "word": " That's...", + "start": 4090.68, + "end": 4091.06, + "probability": 0.77490234375 + } + ] + }, + { + "id": 3983, + "text": "I mean, especially with the autonomous vehicle stuff built in because...", + "start": 4091.06, + "end": 4093.48, + "words": [ + { + "word": " I", + "start": 4091.06, + "end": 4091.16, + "probability": 0.98486328125 + }, + { + "word": " mean,", + "start": 4091.16, + "end": 4091.24, + "probability": 1.0 + }, + { + "word": " especially", + "start": 4091.24, + "end": 4091.44, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4091.44, + "end": 4091.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 4091.7, + "end": 4091.82, + "probability": 1.0 + }, + { + "word": " autonomous", + "start": 4091.82, + "end": 4092.08, + "probability": 0.9990234375 + }, + { + "word": " vehicle", + "start": 4092.08, + "end": 4092.34, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4092.34, + "end": 4092.58, + "probability": 0.99951171875 + }, + { + "word": " built", + "start": 4092.58, + "end": 4092.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 4092.82, + "end": 4093.0, + "probability": 0.9990234375 + }, + { + "word": " because...", + "start": 4093.0, + "end": 4093.48, + "probability": 0.334228515625 + } + ] + }, + { + "id": 3984, + "text": "I mean, yeah, a mobile office would be great for us.", + "start": 4093.48, + "end": 4095.98, + "words": [ + { + "word": " I", + "start": 4093.48, + "end": 4094.06, + "probability": 0.9892578125 + }, + { + "word": " mean,", + "start": 4094.06, + "end": 4094.22, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 4094.22, + "end": 4094.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 4094.44, + "end": 4094.52, + "probability": 0.99951171875 + }, + { + "word": " mobile", + "start": 4094.52, + "end": 4094.7, + "probability": 0.99951171875 + }, + { + "word": " office", + "start": 4094.7, + "end": 4095.02, + "probability": 1.0 + }, + { + "word": " would", + "start": 4095.02, + "end": 4095.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 4095.2, + "end": 4095.3, + "probability": 1.0 + }, + { + "word": " great", + "start": 4095.3, + "end": 4095.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 4095.52, + "end": 4095.7, + "probability": 0.99951171875 + }, + { + "word": " us.", + "start": 4095.7, + "end": 4095.98, + "probability": 1.0 + } + ] + }, + { + "id": 3985, + "text": "Yeah.", + "start": 4096.16, + "end": 4096.44, + "words": [ + { + "word": " Yeah.", + "start": 4096.16, + "end": 4096.44, + "probability": 0.99609375 + } + ] + }, + { + "id": 3986, + "text": "Or, you know, if you wanted to...", + "start": 4097.04, + "end": 4099.06, + "words": [ + { + "word": " Or,", + "start": 4097.04, + "end": 4097.42, + "probability": 0.98779296875 + }, + { + "word": " you", + "start": 4097.56, + "end": 4097.7, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 4097.7, + "end": 4097.86, + "probability": 1.0 + }, + { + "word": " if", + "start": 4097.88, + "end": 4098.14, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4098.14, + "end": 4098.34, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 4098.34, + "end": 4098.58, + "probability": 0.99951171875 + }, + { + "word": " to...", + "start": 4098.58, + "end": 4099.06, + "probability": 1.0 + } + ] + }, + { + "id": 3987, + "text": "If you're one of these...", + "start": 4099.06, + "end": 4100.28, + "words": [ + { + "word": " If", + "start": 4099.06, + "end": 4099.54, + "probability": 0.9931640625 + }, + { + "word": " you're", + "start": 4099.54, + "end": 4099.7, + "probability": 1.0 + }, + { + "word": " one", + "start": 4099.7, + "end": 4099.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4099.86, + "end": 4099.94, + "probability": 1.0 + }, + { + "word": " these...", + "start": 4099.94, + "end": 4100.28, + "probability": 0.9892578125 + } + ] + }, + { + "id": 3988, + "text": "Like, we have food trucks all around town, right?", + "start": 4100.28, + "end": 4102.62, + "words": [ + { + "word": " Like,", + "start": 4100.28, + "end": 4100.74, + "probability": 0.9677734375 + }, + { + "word": " we", + "start": 4100.8, + "end": 4101.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 4101.04, + "end": 4101.2, + "probability": 1.0 + }, + { + "word": " food", + "start": 4101.2, + "end": 4101.42, + "probability": 1.0 + }, + { + "word": " trucks", + "start": 4101.42, + "end": 4101.62, + "probability": 1.0 + }, + { + "word": " all", + "start": 4101.62, + "end": 4101.78, + "probability": 1.0 + }, + { + "word": " around", + "start": 4101.78, + "end": 4102.02, + "probability": 0.99951171875 + }, + { + "word": " town,", + "start": 4102.02, + "end": 4102.34, + "probability": 0.9794921875 + }, + { + "word": " right?", + "start": 4102.38, + "end": 4102.62, + "probability": 1.0 + } + ] + }, + { + "id": 3989, + "text": "Yeah, a nice high-tech food truck can go anywhere.", + "start": 4102.76, + "end": 4104.8, + "words": [ + { + "word": " Yeah,", + "start": 4102.76, + "end": 4102.88, + "probability": 0.419189453125 + }, + { + "word": " a", + "start": 4102.94, + "end": 4103.08, + "probability": 0.9951171875 + }, + { + "word": " nice", + "start": 4103.08, + "end": 4103.42, + "probability": 1.0 + }, + { + "word": " high", + "start": 4103.42, + "end": 4103.66, + "probability": 0.99755859375 + }, + { + "word": "-tech", + "start": 4103.66, + "end": 4103.86, + "probability": 0.998046875 + }, + { + "word": " food", + "start": 4103.86, + "end": 4104.06, + "probability": 1.0 + }, + { + "word": " truck", + "start": 4104.06, + "end": 4104.24, + "probability": 1.0 + }, + { + "word": " can", + "start": 4104.24, + "end": 4104.36, + "probability": 0.994140625 + }, + { + "word": " go", + "start": 4104.36, + "end": 4104.48, + "probability": 1.0 + }, + { + "word": " anywhere.", + "start": 4104.48, + "end": 4104.8, + "probability": 1.0 + } + ] + }, + { + "id": 3990, + "text": "So you can just sit back there and make your food and it drives you to the next location?", + "start": 4106.22, + "end": 4109.74, + "words": [ + { + "word": " So", + "start": 4106.22, + "end": 4106.6, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 4106.6, + "end": 4106.76, + "probability": 0.822265625 + }, + { + "word": " can", + "start": 4106.76, + "end": 4106.88, + "probability": 1.0 + }, + { + "word": " just", + "start": 4106.88, + "end": 4107.02, + "probability": 1.0 + }, + { + "word": " sit", + "start": 4107.02, + "end": 4107.16, + "probability": 1.0 + }, + { + "word": " back", + "start": 4107.16, + "end": 4107.32, + "probability": 1.0 + }, + { + "word": " there", + "start": 4107.32, + "end": 4107.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 4107.48, + "end": 4107.64, + "probability": 1.0 + }, + { + "word": " make", + "start": 4107.64, + "end": 4107.78, + "probability": 1.0 + }, + { + "word": " your", + "start": 4107.78, + "end": 4107.92, + "probability": 1.0 + }, + { + "word": " food", + "start": 4107.92, + "end": 4108.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 4108.18, + "end": 4108.38, + "probability": 0.8330078125 + }, + { + "word": " it", + "start": 4108.38, + "end": 4108.66, + "probability": 1.0 + }, + { + "word": " drives", + "start": 4108.66, + "end": 4108.88, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 4108.88, + "end": 4109.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 4109.08, + "end": 4109.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 4109.18, + "end": 4109.2, + "probability": 1.0 + }, + { + "word": " next", + "start": 4109.2, + "end": 4109.38, + "probability": 1.0 + }, + { + "word": " location?", + "start": 4109.38, + "end": 4109.74, + "probability": 1.0 + } + ] + }, + { + "id": 3991, + "text": "Right, just the space savings.", + "start": 4109.92, + "end": 4111.62, + "words": [ + { + "word": " Right,", + "start": 4109.92, + "end": 4110.22, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 4110.24, + "end": 4110.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 4110.38, + "end": 4110.54, + "probability": 1.0 + }, + { + "word": " space", + "start": 4110.54, + "end": 4111.18, + "probability": 1.0 + }, + { + "word": " savings.", + "start": 4111.18, + "end": 4111.62, + "probability": 1.0 + } + ] + }, + { + "id": 3992, + "text": "And, you know,", + "start": 4111.7, + "end": 4112.46, + "words": [ + { + "word": " And,", + "start": 4111.7, + "end": 4112.06, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 4112.08, + "end": 4112.32, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4112.32, + "end": 4112.46, + "probability": 1.0 + } + ] + }, + { + "id": 3993, + "text": "having the flexibility to do whatever you want with both the interior and the exterior is kind of cool.", + "start": 4112.46, + "end": 4118.34, + "words": [ + { + "word": " having", + "start": 4112.46, + "end": 4112.52, + "probability": 0.11932373046875 + }, + { + "word": " the", + "start": 4112.52, + "end": 4112.88, + "probability": 1.0 + }, + { + "word": " flexibility", + "start": 4112.88, + "end": 4113.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 4113.48, + "end": 4113.84, + "probability": 1.0 + }, + { + "word": " do", + "start": 4113.84, + "end": 4113.96, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 4113.96, + "end": 4114.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 4114.16, + "end": 4114.34, + "probability": 1.0 + }, + { + "word": " want", + "start": 4114.34, + "end": 4114.56, + "probability": 1.0 + }, + { + "word": " with", + "start": 4114.56, + "end": 4114.74, + "probability": 0.99267578125 + }, + { + "word": " both", + "start": 4114.74, + "end": 4115.12, + "probability": 0.80029296875 + }, + { + "word": " the", + "start": 4115.12, + "end": 4115.82, + "probability": 1.0 + }, + { + "word": " interior", + "start": 4115.82, + "end": 4116.12, + "probability": 1.0 + }, + { + "word": " and", + "start": 4116.12, + "end": 4116.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 4116.36, + "end": 4116.5, + "probability": 0.99951171875 + }, + { + "word": " exterior", + "start": 4116.5, + "end": 4116.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 4116.84, + "end": 4117.52, + "probability": 0.99609375 + }, + { + "word": " kind", + "start": 4117.52, + "end": 4117.92, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4117.92, + "end": 4118.14, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 4118.14, + "end": 4118.34, + "probability": 1.0 + } + ] + }, + { + "id": 3994, + "text": "That is pretty cool.", + "start": 4118.52, + "end": 4119.3, + "words": [ + { + "word": " That", + "start": 4118.52, + "end": 4118.72, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4118.72, + "end": 4118.88, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 4118.88, + "end": 4119.08, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 4119.08, + "end": 4119.3, + "probability": 1.0 + } + ] + }, + { + "id": 3995, + "text": "So we'll have to post a link to the Engadget stuff.", + "start": 4120.22, + "end": 4122.72, + "words": [ + { + "word": " So", + "start": 4120.22, + "end": 4120.58, + "probability": 0.93505859375 + }, + { + "word": " we'll", + "start": 4120.58, + "end": 4120.94, + "probability": 0.92919921875 + }, + { + "word": " have", + "start": 4120.94, + "end": 4121.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4121.02, + "end": 4121.14, + "probability": 1.0 + }, + { + "word": " post", + "start": 4121.14, + "end": 4121.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 4121.28, + "end": 4121.4, + "probability": 1.0 + }, + { + "word": " link", + "start": 4121.4, + "end": 4121.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 4121.54, + "end": 4121.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 4121.7, + "end": 4121.8, + "probability": 0.9169921875 + }, + { + "word": " Engadget", + "start": 4121.8, + "end": 4122.52, + "probability": 0.8251953125 + }, + { + "word": " stuff.", + "start": 4122.52, + "end": 4122.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 3996, + "text": "Let's go ahead and take a quick break.", + "start": 4122.82, + "end": 4123.68, + "words": [ + { + "word": " Let's", + "start": 4122.82, + "end": 4122.96, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 4122.96, + "end": 4123.04, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 4123.04, + "end": 4123.1, + "probability": 0.98828125 + }, + { + "word": " and", + "start": 4123.1, + "end": 4123.12, + "probability": 1.0 + }, + { + "word": " take", + "start": 4123.12, + "end": 4123.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 4123.2, + "end": 4123.3, + "probability": 1.0 + }, + { + "word": " quick", + "start": 4123.3, + "end": 4123.42, + "probability": 1.0 + }, + { + "word": " break.", + "start": 4123.42, + "end": 4123.68, + "probability": 1.0 + } + ] + }, + { + "id": 3997, + "text": "And then we're going to come back and answer some phone calls and do a little bit more CES before the end of the show.", + "start": 4123.8, + "end": 4128.74, + "words": [ + { + "word": " And", + "start": 4123.8, + "end": 4124.02, + "probability": 0.99658203125 + }, + { + "word": " then", + "start": 4124.02, + "end": 4124.22, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4124.22, + "end": 4124.8, + "probability": 1.0 + }, + { + "word": " going", + "start": 4124.8, + "end": 4124.88, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4124.88, + "end": 4125.02, + "probability": 1.0 + }, + { + "word": " come", + "start": 4125.02, + "end": 4125.2, + "probability": 1.0 + }, + { + "word": " back", + "start": 4125.2, + "end": 4125.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 4125.58, + "end": 4125.82, + "probability": 1.0 + }, + { + "word": " answer", + "start": 4125.82, + "end": 4126.06, + "probability": 1.0 + }, + { + "word": " some", + "start": 4126.06, + "end": 4126.18, + "probability": 1.0 + }, + { + "word": " phone", + "start": 4126.18, + "end": 4126.38, + "probability": 1.0 + }, + { + "word": " calls", + "start": 4126.38, + "end": 4126.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 4126.64, + "end": 4126.8, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 4126.8, + "end": 4126.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 4126.92, + "end": 4127.02, + "probability": 1.0 + }, + { + "word": " little", + "start": 4127.02, + "end": 4127.12, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4127.12, + "end": 4127.22, + "probability": 1.0 + }, + { + "word": " more", + "start": 4127.22, + "end": 4127.36, + "probability": 1.0 + }, + { + "word": " CES", + "start": 4127.36, + "end": 4127.72, + "probability": 1.0 + }, + { + "word": " before", + "start": 4127.72, + "end": 4128.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4128.06, + "end": 4128.28, + "probability": 1.0 + }, + { + "word": " end", + "start": 4128.28, + "end": 4128.46, + "probability": 1.0 + }, + { + "word": " of", + "start": 4128.46, + "end": 4128.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 4128.54, + "end": 4128.6, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4128.6, + "end": 4128.74, + "probability": 1.0 + } + ] + }, + { + "id": 3998, + "text": "This is the Computer Guru Show on KVOI.", + "start": 4129.56, + "end": 4131.7, + "words": [ + { + "word": " This", + "start": 4129.56, + "end": 4129.92, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4129.92, + "end": 4130.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 4130.28, + "end": 4130.44, + "probability": 0.7431640625 + }, + { + "word": " Computer", + "start": 4130.44, + "end": 4130.64, + "probability": 0.99853515625 + }, + { + "word": " Guru", + "start": 4130.64, + "end": 4130.86, + "probability": 0.9892578125 + }, + { + "word": " Show", + "start": 4130.86, + "end": 4131.04, + "probability": 0.9833984375 + }, + { + "word": " on", + "start": 4131.04, + "end": 4131.22, + "probability": 0.998046875 + }, + { + "word": " KVOI.", + "start": 4131.22, + "end": 4131.7, + "probability": 0.92333984375 + } + ] + }, + { + "id": 3999, + "text": "Give us a call, 790-2040.", + "start": 4131.74, + "end": 4133.92, + "words": [ + { + "word": " Give", + "start": 4131.74, + "end": 4131.82, + "probability": 0.99169921875 + }, + { + "word": " us", + "start": 4131.82, + "end": 4131.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 4131.98, + "end": 4132.0, + "probability": 0.99951171875 + }, + { + "word": " call,", + "start": 4132.0, + "end": 4132.14, + "probability": 1.0 + }, + { + "word": " 790", + "start": 4132.22, + "end": 4132.92, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 4132.92, + "end": 4133.92, + "probability": 0.953125 + } + ] + }, + { + "id": 4000, + "text": "We'll be right back.", + "start": 4152.4800000000005, + "end": 4152.98, + "words": [ + { + "word": " We'll", + "start": 4152.4800000000005, + "end": 4152.76, + "probability": 0.5029296875 + }, + { + "word": " be", + "start": 4152.76, + "end": 4152.76, + "probability": 0.5029296875 + }, + { + "word": " right", + "start": 4152.76, + "end": 4152.9, + "probability": 0.98193359375 + }, + { + "word": " back.", + "start": 4152.9, + "end": 4152.98, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4001, + "text": "We'll be right back.", + "start": 4164.5199999999995, + "end": 4165.16, + "words": [ + { + "word": " We'll", + "start": 4164.5199999999995, + "end": 4165.12, + "probability": 0.464599609375 + }, + { + "word": " be", + "start": 4165.12, + "end": 4165.16, + "probability": 0.50439453125 + }, + { + "word": " right", + "start": 4165.16, + "end": 4165.16, + "probability": 0.9814453125 + }, + { + "word": " back.", + "start": 4165.16, + "end": 4165.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4002, + "text": "Welcome back to the Computer Guru Show.", + "start": 4183.400000000001, + "end": 4185.26, + "words": [ + { + "word": " Welcome", + "start": 4183.400000000001, + "end": 4183.8, + "probability": 0.97216796875 + }, + { + "word": " back", + "start": 4183.8, + "end": 4184.12, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4184.12, + "end": 4184.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 4184.32, + "end": 4184.42, + "probability": 0.82666015625 + }, + { + "word": " Computer", + "start": 4184.42, + "end": 4184.66, + "probability": 0.98876953125 + }, + { + "word": " Guru", + "start": 4184.66, + "end": 4184.98, + "probability": 0.9853515625 + }, + { + "word": " Show.", + "start": 4184.98, + "end": 4185.26, + "probability": 0.89306640625 + } + ] + }, + { + "id": 4003, + "text": "Give us a call, 790-2040, if you'd like to be a part of the show.", + "start": 4185.72, + "end": 4188.42, + "words": [ + { + "word": " Give", + "start": 4185.72, + "end": 4186.12, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 4186.12, + "end": 4186.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 4186.26, + "end": 4186.28, + "probability": 1.0 + }, + { + "word": " call,", + "start": 4186.28, + "end": 4186.4, + "probability": 1.0 + }, + { + "word": " 790", + "start": 4186.46, + "end": 4186.84, + "probability": 0.9990234375 + }, + { + "word": "-2040,", + "start": 4186.84, + "end": 4187.34, + "probability": 0.97412109375 + }, + { + "word": " if", + "start": 4187.4, + "end": 4187.5, + "probability": 1.0 + }, + { + "word": " you'd", + "start": 4187.5, + "end": 4187.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 4187.54, + "end": 4187.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 4187.62, + "end": 4187.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 4187.72, + "end": 4187.78, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4187.78, + "end": 4187.82, + "probability": 0.71484375 + }, + { + "word": " part", + "start": 4187.82, + "end": 4187.94, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4187.94, + "end": 4188.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 4188.04, + "end": 4188.1, + "probability": 0.90576171875 + }, + { + "word": " show.", + "start": 4188.1, + "end": 4188.42, + "probability": 1.0 + } + ] + }, + { + "id": 4004, + "text": "Let's talk to Tom.", + "start": 4188.84, + "end": 4189.66, + "words": [ + { + "word": " Let's", + "start": 4188.84, + "end": 4189.24, + "probability": 0.9990234375 + }, + { + "word": " talk", + "start": 4189.24, + "end": 4189.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 4189.34, + "end": 4189.46, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 4189.46, + "end": 4189.66, + "probability": 1.0 + } + ] + }, + { + "id": 4005, + "text": "Hello, Tom.", + "start": 4189.72, + "end": 4190.14, + "words": [ + { + "word": " Hello,", + "start": 4189.72, + "end": 4189.92, + "probability": 0.99853515625 + }, + { + "word": " Tom.", + "start": 4189.96, + "end": 4190.14, + "probability": 1.0 + } + ] + }, + { + "id": 4006, + "text": "How are you?", + "start": 4190.18, + "end": 4190.52, + "words": [ + { + "word": " How", + "start": 4190.18, + "end": 4190.32, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4190.32, + "end": 4190.38, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4190.38, + "end": 4190.52, + "probability": 1.0 + } + ] + }, + { + "id": 4007, + "text": "Good.", + "start": 4191.26, + "end": 4191.66, + "words": [ + { + "word": " Good.", + "start": 4191.26, + "end": 4191.66, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4008, + "text": "Hi.", + "start": 4191.7, + "end": 4191.88, + "words": [ + { + "word": " Hi.", + "start": 4191.7, + "end": 4191.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4009, + "text": "Thanks for taking my call.", + "start": 4191.98, + "end": 4192.92, + "words": [ + { + "word": " Thanks", + "start": 4191.98, + "end": 4192.18, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4192.18, + "end": 4192.32, + "probability": 1.0 + }, + { + "word": " taking", + "start": 4192.32, + "end": 4192.5, + "probability": 1.0 + }, + { + "word": " my", + "start": 4192.5, + "end": 4192.66, + "probability": 1.0 + }, + { + "word": " call.", + "start": 4192.66, + "end": 4192.92, + "probability": 1.0 + } + ] + }, + { + "id": 4010, + "text": "Two quick questions.", + "start": 4193.34, + "end": 4194.36, + "words": [ + { + "word": " Two", + "start": 4193.34, + "end": 4193.74, + "probability": 0.998046875 + }, + { + "word": " quick", + "start": 4193.74, + "end": 4193.94, + "probability": 0.99658203125 + }, + { + "word": " questions.", + "start": 4193.94, + "end": 4194.36, + "probability": 1.0 + } + ] + }, + { + "id": 4011, + "text": "One is storage.", + "start": 4194.4, + "end": 4195.28, + "words": [ + { + "word": " One", + "start": 4194.4, + "end": 4194.64, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4194.64, + "end": 4194.84, + "probability": 1.0 + }, + { + "word": " storage.", + "start": 4194.84, + "end": 4195.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4012, + "text": "I have Windows 10.", + "start": 4195.860000000001, + "end": 4196.98, + "words": [ + { + "word": " I", + "start": 4195.860000000001, + "end": 4196.26, + "probability": 0.99609375 + }, + { + "word": " have", + "start": 4196.26, + "end": 4196.34, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 4196.34, + "end": 4196.6, + "probability": 0.97119140625 + }, + { + "word": " 10.", + "start": 4196.6, + "end": 4196.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4013, + "text": "Okay.", + "start": 4197.22, + "end": 4197.62, + "words": [ + { + "word": " Okay.", + "start": 4197.22, + "end": 4197.62, + "probability": 0.90087890625 + } + ] + }, + { + "id": 4014, + "text": "And running the automatic update, it gave me an error.", + "start": 4197.72, + "end": 4200.78, + "words": [ + { + "word": " And", + "start": 4197.72, + "end": 4197.92, + "probability": 0.94189453125 + }, + { + "word": " running", + "start": 4197.92, + "end": 4199.08, + "probability": 0.984375 + }, + { + "word": " the", + "start": 4199.08, + "end": 4199.18, + "probability": 0.984375 + }, + { + "word": " automatic", + "start": 4199.18, + "end": 4199.4, + "probability": 0.99853515625 + }, + { + "word": " update,", + "start": 4199.4, + "end": 4199.96, + "probability": 0.70458984375 + }, + { + "word": " it", + "start": 4199.98, + "end": 4200.1, + "probability": 0.99609375 + }, + { + "word": " gave", + "start": 4200.1, + "end": 4200.24, + "probability": 1.0 + }, + { + "word": " me", + "start": 4200.24, + "end": 4200.44, + "probability": 1.0 + }, + { + "word": " an", + "start": 4200.44, + "end": 4200.54, + "probability": 1.0 + }, + { + "word": " error.", + "start": 4200.54, + "end": 4200.78, + "probability": 1.0 + } + ] + }, + { + "id": 4015, + "text": "It says Windows needs more space.", + "start": 4200.86, + "end": 4204.9, + "words": [ + { + "word": " It", + "start": 4200.86, + "end": 4200.96, + "probability": 0.99365234375 + }, + { + "word": " says", + "start": 4200.96, + "end": 4201.28, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4201.28, + "end": 4203.04, + "probability": 0.95703125 + }, + { + "word": " needs", + "start": 4203.04, + "end": 4204.32, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 4204.32, + "end": 4204.56, + "probability": 1.0 + }, + { + "word": " space.", + "start": 4204.56, + "end": 4204.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4016, + "text": "And it says it needs 1.14 gigabytes more space.", + "start": 4205.18, + "end": 4208.54, + "words": [ + { + "word": " And", + "start": 4205.18, + "end": 4205.58, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 4205.58, + "end": 4205.66, + "probability": 1.0 + }, + { + "word": " says", + "start": 4205.66, + "end": 4205.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 4205.84, + "end": 4206.0, + "probability": 1.0 + }, + { + "word": " needs", + "start": 4206.0, + "end": 4206.2, + "probability": 1.0 + }, + { + "word": " 1", + "start": 4206.2, + "end": 4206.5, + "probability": 1.0 + }, + { + "word": ".14", + "start": 4206.5, + "end": 4207.26, + "probability": 0.99951171875 + }, + { + "word": " gigabytes", + "start": 4207.26, + "end": 4207.8, + "probability": 0.99560546875 + }, + { + "word": " more", + "start": 4207.8, + "end": 4208.24, + "probability": 0.9990234375 + }, + { + "word": " space.", + "start": 4208.24, + "end": 4208.54, + "probability": 1.0 + } + ] + }, + { + "id": 4017, + "text": "And then I look at my hard drive and it says I have 3.82 gigabytes.", + "start": 4208.82, + "end": 4212.42, + "words": [ + { + "word": " And", + "start": 4208.82, + "end": 4208.92, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 4208.92, + "end": 4208.98, + "probability": 0.76611328125 + }, + { + "word": " I", + "start": 4208.98, + "end": 4209.04, + "probability": 1.0 + }, + { + "word": " look", + "start": 4209.04, + "end": 4209.18, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 4209.18, + "end": 4209.26, + "probability": 0.99658203125 + }, + { + "word": " my", + "start": 4209.26, + "end": 4209.36, + "probability": 1.0 + }, + { + "word": " hard", + "start": 4209.36, + "end": 4209.56, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4209.56, + "end": 4209.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 4209.82, + "end": 4210.04, + "probability": 0.1990966796875 + }, + { + "word": " it", + "start": 4210.04, + "end": 4210.14, + "probability": 1.0 + }, + { + "word": " says", + "start": 4210.14, + "end": 4210.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 4210.38, + "end": 4210.78, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4210.78, + "end": 4211.0, + "probability": 1.0 + }, + { + "word": " 3", + "start": 4211.0, + "end": 4211.18, + "probability": 1.0 + }, + { + "word": ".82", + "start": 4211.18, + "end": 4211.96, + "probability": 1.0 + }, + { + "word": " gigabytes.", + "start": 4211.96, + "end": 4212.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4018, + "text": "And I'm like, what?", + "start": 4214.22, + "end": 4214.62, + "words": [ + { + "word": " And", + "start": 4214.22, + "end": 4214.62, + "probability": 0.0001552104949951172 + }, + { + "word": " I'm", + "start": 4214.62, + "end": 4214.62, + "probability": 0.0972900390625 + }, + { + "word": " like,", + "start": 4214.62, + "end": 4214.62, + "probability": 0.05072021484375 + }, + { + "word": " what?", + "start": 4214.62, + "end": 4214.62, + "probability": 0.059783935546875 + } + ] + }, + { + "id": 4019, + "text": "", + "start": 4214.62, + "end": 4214.62, + "words": [] + }, + { + "id": 4020, + "text": "Do you have more than one partition on this?", + "start": 4214.62, + "end": 4215.86, + "words": [ + { + "word": " Do", + "start": 4214.62, + "end": 4214.62, + "probability": 0.0667724609375 + }, + { + "word": " you", + "start": 4214.62, + "end": 4214.72, + "probability": 0.9970703125 + }, + { + "word": " have", + "start": 4214.72, + "end": 4214.78, + "probability": 0.9912109375 + }, + { + "word": " more", + "start": 4214.78, + "end": 4214.88, + "probability": 0.994140625 + }, + { + "word": " than", + "start": 4214.88, + "end": 4214.98, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 4214.98, + "end": 4215.12, + "probability": 0.9970703125 + }, + { + "word": " partition", + "start": 4215.12, + "end": 4215.46, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4215.46, + "end": 4215.68, + "probability": 0.9951171875 + }, + { + "word": " this?", + "start": 4215.68, + "end": 4215.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4021, + "text": "Just what came with the system.", + "start": 4216.76, + "end": 4218.1, + "words": [ + { + "word": " Just", + "start": 4216.76, + "end": 4217.16, + "probability": 0.84130859375 + }, + { + "word": " what", + "start": 4217.16, + "end": 4217.34, + "probability": 0.998046875 + }, + { + "word": " came", + "start": 4217.34, + "end": 4217.54, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 4217.54, + "end": 4217.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4217.66, + "end": 4217.8, + "probability": 0.99853515625 + }, + { + "word": " system.", + "start": 4217.8, + "end": 4218.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4022, + "text": "It's, I think, a D, but it's for HP recovery.", + "start": 4218.16, + "end": 4220.62, + "words": [ + { + "word": " It's,", + "start": 4218.16, + "end": 4218.54, + "probability": 0.966796875 + }, + { + "word": " I", + "start": 4218.54, + "end": 4218.76, + "probability": 0.9990234375 + }, + { + "word": " think,", + "start": 4218.76, + "end": 4218.98, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4218.98, + "end": 4219.12, + "probability": 0.99755859375 + }, + { + "word": " D,", + "start": 4219.12, + "end": 4219.16, + "probability": 0.9736328125 + }, + { + "word": " but", + "start": 4219.38, + "end": 4219.56, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 4219.56, + "end": 4219.7, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 4219.7, + "end": 4219.82, + "probability": 0.99951171875 + }, + { + "word": " HP", + "start": 4219.82, + "end": 4220.18, + "probability": 0.98779296875 + }, + { + "word": " recovery.", + "start": 4220.18, + "end": 4220.62, + "probability": 0.8876953125 + } + ] + }, + { + "id": 4023, + "text": "Okay.", + "start": 4221.280000000001, + "end": 4221.68, + "words": [ + { + "word": " Okay.", + "start": 4221.280000000001, + "end": 4221.68, + "probability": 0.91650390625 + } + ] + }, + { + "id": 4024, + "text": "So it's telling you you have three gigabytes free and...", + "start": 4221.74, + "end": 4225.66, + "words": [ + { + "word": " So", + "start": 4221.74, + "end": 4222.02, + "probability": 0.9931640625 + }, + { + "word": " it's", + "start": 4222.02, + "end": 4222.48, + "probability": 0.90625 + }, + { + "word": " telling", + "start": 4222.48, + "end": 4222.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 4222.72, + "end": 4222.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 4222.96, + "end": 4223.08, + "probability": 0.9912109375 + }, + { + "word": " have", + "start": 4223.08, + "end": 4223.28, + "probability": 1.0 + }, + { + "word": " three", + "start": 4223.28, + "end": 4223.66, + "probability": 0.89453125 + }, + { + "word": " gigabytes", + "start": 4223.66, + "end": 4224.3, + "probability": 0.9970703125 + }, + { + "word": " free", + "start": 4224.3, + "end": 4224.78, + "probability": 1.0 + }, + { + "word": " and...", + "start": 4224.78, + "end": 4225.66, + "probability": 0.685546875 + } + ] + }, + { + "id": 4025, + "text": "On the C drive.", + "start": 4226.5, + "end": 4227.56, + "words": [ + { + "word": " On", + "start": 4226.5, + "end": 4226.9, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 4226.9, + "end": 4227.04, + "probability": 1.0 + }, + { + "word": " C", + "start": 4227.04, + "end": 4227.16, + "probability": 0.9990234375 + }, + { + "word": " drive.", + "start": 4227.16, + "end": 4227.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4026, + "text": "On the C drive.", + "start": 4227.78, + "end": 4228.3, + "words": [ + { + "word": " On", + "start": 4227.78, + "end": 4227.9, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4227.9, + "end": 4228.04, + "probability": 0.78857421875 + }, + { + "word": " C", + "start": 4228.04, + "end": 4228.1, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 4228.1, + "end": 4228.3, + "probability": 1.0 + } + ] + }, + { + "id": 4027, + "text": "On that partition.", + "start": 4228.36, + "end": 4229.24, + "words": [ + { + "word": " On", + "start": 4228.36, + "end": 4228.76, + "probability": 0.9873046875 + }, + { + "word": " that", + "start": 4228.76, + "end": 4228.98, + "probability": 0.998046875 + }, + { + "word": " partition.", + "start": 4228.98, + "end": 4229.24, + "probability": 1.0 + } + ] + }, + { + "id": 4028, + "text": "Interesting.", + "start": 4229.9800000000005, + "end": 4230.38, + "words": [ + { + "word": " Interesting.", + "start": 4229.9800000000005, + "end": 4230.38, + "probability": 0.796875 + } + ] + }, + { + "id": 4029, + "text": "It shouldn't be doing that.", + "start": 4231.76, + "end": 4232.86, + "words": [ + { + "word": " It", + "start": 4231.76, + "end": 4232.16, + "probability": 0.99853515625 + }, + { + "word": " shouldn't", + "start": 4232.16, + "end": 4232.42, + "probability": 1.0 + }, + { + "word": " be", + "start": 4232.42, + "end": 4232.5, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4232.5, + "end": 4232.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4232.66, + "end": 4232.86, + "probability": 1.0 + } + ] + }, + { + "id": 4030, + "text": "Is there...", + "start": 4232.98, + "end": 4233.44, + "words": [ + { + "word": " Is", + "start": 4232.98, + "end": 4233.06, + "probability": 0.81884765625 + }, + { + "word": " there...", + "start": 4233.06, + "end": 4233.44, + "probability": 0.7822265625 + } + ] + }, + { + "id": 4031, + "text": "I mean, do you have a bunch of stuff in the recycle bin or anything?", + "start": 4233.44, + "end": 4235.36, + "words": [ + { + "word": " I", + "start": 4233.44, + "end": 4233.76, + "probability": 0.99462890625 + }, + { + "word": " mean,", + "start": 4233.76, + "end": 4233.84, + "probability": 1.0 + }, + { + "word": " do", + "start": 4233.86, + "end": 4233.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 4233.94, + "end": 4234.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 4234.0, + "end": 4234.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 4234.04, + "end": 4234.1, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 4234.1, + "end": 4234.28, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4234.28, + "end": 4234.34, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4234.34, + "end": 4234.48, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 4234.48, + "end": 4234.6, + "probability": 0.9833984375 + }, + { + "word": " the", + "start": 4234.6, + "end": 4234.64, + "probability": 0.91845703125 + }, + { + "word": " recycle", + "start": 4234.64, + "end": 4234.78, + "probability": 0.78564453125 + }, + { + "word": " bin", + "start": 4234.78, + "end": 4235.1, + "probability": 0.98046875 + }, + { + "word": " or", + "start": 4235.1, + "end": 4235.2, + "probability": 1.0 + }, + { + "word": " anything?", + "start": 4235.2, + "end": 4235.36, + "probability": 1.0 + } + ] + }, + { + "id": 4032, + "text": "No.", + "start": 4236.18, + "end": 4236.58, + "words": [ + { + "word": " No.", + "start": 4236.18, + "end": 4236.58, + "probability": 1.0 + } + ] + }, + { + "id": 4033, + "text": "It's empty.", + "start": 4236.64, + "end": 4237.18, + "words": [ + { + "word": " It's", + "start": 4236.64, + "end": 4236.92, + "probability": 0.9873046875 + }, + { + "word": " empty.", + "start": 4236.92, + "end": 4237.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4034, + "text": "Interesting.", + "start": 4238.02, + "end": 4238.42, + "words": [ + { + "word": " Interesting.", + "start": 4238.02, + "end": 4238.42, + "probability": 0.99462890625 + } + ] + }, + { + "id": 4035, + "text": "Is it just close to the limits where it needs maybe two gigabytes?", + "start": 4240.06, + "end": 4242.96, + "words": [ + { + "word": " Is", + "start": 4240.06, + "end": 4240.46, + "probability": 0.9208984375 + }, + { + "word": " it", + "start": 4240.46, + "end": 4240.58, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 4240.58, + "end": 4240.8, + "probability": 0.99951171875 + }, + { + "word": " close", + "start": 4240.8, + "end": 4241.18, + "probability": 0.9873046875 + }, + { + "word": " to", + "start": 4241.18, + "end": 4241.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 4241.36, + "end": 4241.44, + "probability": 0.99951171875 + }, + { + "word": " limits", + "start": 4241.44, + "end": 4241.7, + "probability": 0.97509765625 + }, + { + "word": " where", + "start": 4241.7, + "end": 4241.94, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 4241.94, + "end": 4242.08, + "probability": 1.0 + }, + { + "word": " needs", + "start": 4242.08, + "end": 4242.32, + "probability": 0.99951171875 + }, + { + "word": " maybe", + "start": 4242.32, + "end": 4242.82, + "probability": 0.8779296875 + }, + { + "word": " two", + "start": 4242.82, + "end": 4242.96, + "probability": 0.384765625 + }, + { + "word": " gigabytes?", + "start": 4242.96, + "end": 4242.96, + "probability": 0.80078125 + } + ] + }, + { + "id": 4036, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4037, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4038, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4039, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4040, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4041, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4042, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4043, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4044, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4045, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4046, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4047, + "text": "", + "start": 4242.96, + "end": 4242.96, + "words": [] + }, + { + "id": 4048, + "text": "Four gigabytes?", + "start": 4242.98, + "end": 4243.5, + "words": [ + { + "word": " Four", + "start": 4242.98, + "end": 4243.16, + "probability": 0.64990234375 + }, + { + "word": " gigabytes?", + "start": 4243.16, + "end": 4243.5, + "probability": 0.99658203125 + } + ] + }, + { + "id": 4049, + "text": "No.", + "start": 4243.94, + "end": 4244.32, + "words": [ + { + "word": " No.", + "start": 4243.94, + "end": 4244.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 4050, + "text": "I mean, it shouldn't be doing that at all.", + "start": 4244.38, + "end": 4245.86, + "words": [ + { + "word": " I", + "start": 4244.38, + "end": 4244.5, + "probability": 0.947265625 + }, + { + "word": " mean,", + "start": 4244.5, + "end": 4244.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 4244.68, + "end": 4244.84, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 4244.84, + "end": 4245.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 4245.2, + "end": 4245.26, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4245.26, + "end": 4245.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 4245.4, + "end": 4245.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 4245.54, + "end": 4245.64, + "probability": 1.0 + }, + { + "word": " all.", + "start": 4245.64, + "end": 4245.86, + "probability": 1.0 + } + ] + }, + { + "id": 4051, + "text": "I mean...", + "start": 4246.0, + "end": 4246.32, + "words": [ + { + "word": " I", + "start": 4246.0, + "end": 4246.06, + "probability": 0.3408203125 + }, + { + "word": " mean...", + "start": 4246.06, + "end": 4246.32, + "probability": 0.5146484375 + } + ] + }, + { + "id": 4052, + "text": "So how much do you have free, actually?", + "start": 4246.32, + "end": 4248.2, + "words": [ + { + "word": " So", + "start": 4246.32, + "end": 4246.94, + "probability": 0.99609375 + }, + { + "word": " how", + "start": 4246.94, + "end": 4247.1, + "probability": 0.5849609375 + }, + { + "word": " much", + "start": 4247.1, + "end": 4247.32, + "probability": 1.0 + }, + { + "word": " do", + "start": 4247.32, + "end": 4247.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 4247.42, + "end": 4247.5, + "probability": 1.0 + }, + { + "word": " have", + "start": 4247.5, + "end": 4247.62, + "probability": 1.0 + }, + { + "word": " free,", + "start": 4247.62, + "end": 4247.8, + "probability": 0.99853515625 + }, + { + "word": " actually?", + "start": 4247.9, + "end": 4248.2, + "probability": 1.0 + } + ] + }, + { + "id": 4053, + "text": "Well, I'm pulling up the Explorer window.", + "start": 4249.140000000001, + "end": 4251.76, + "words": [ + { + "word": " Well,", + "start": 4249.140000000001, + "end": 4249.620000000001, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 4249.620000000001, + "end": 4250.1, + "probability": 1.0 + }, + { + "word": " pulling", + "start": 4250.1, + "end": 4250.5, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4250.5, + "end": 4250.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 4250.68, + "end": 4250.84, + "probability": 1.0 + }, + { + "word": " Explorer", + "start": 4250.84, + "end": 4251.38, + "probability": 0.9853515625 + }, + { + "word": " window.", + "start": 4251.38, + "end": 4251.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4054, + "text": "So on the C drive, that partition, it says 3.82 out of 919 gigabytes.", + "start": 4251.9, + "end": 4257.64, + "words": [ + { + "word": " So", + "start": 4251.9, + "end": 4252.2, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4252.2, + "end": 4252.5, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 4252.5, + "end": 4252.72, + "probability": 1.0 + }, + { + "word": " C", + "start": 4252.72, + "end": 4252.92, + "probability": 0.99951171875 + }, + { + "word": " drive,", + "start": 4252.92, + "end": 4253.24, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 4253.38, + "end": 4253.62, + "probability": 0.9990234375 + }, + { + "word": " partition,", + "start": 4253.62, + "end": 4254.02, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4254.18, + "end": 4254.32, + "probability": 0.99951171875 + }, + { + "word": " says", + "start": 4254.32, + "end": 4254.46, + "probability": 0.99951171875 + }, + { + "word": " 3", + "start": 4254.46, + "end": 4254.76, + "probability": 0.99951171875 + }, + { + "word": ".82", + "start": 4254.76, + "end": 4255.38, + "probability": 1.0 + }, + { + "word": " out", + "start": 4255.38, + "end": 4255.84, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4255.84, + "end": 4256.1, + "probability": 1.0 + }, + { + "word": " 919", + "start": 4256.1, + "end": 4257.0, + "probability": 0.998046875 + }, + { + "word": " gigabytes.", + "start": 4257.0, + "end": 4257.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4055, + "text": "It's a terabyte drive.", + "start": 4257.88, + "end": 4258.74, + "words": [ + { + "word": " It's", + "start": 4257.88, + "end": 4258.14, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4258.14, + "end": 4258.18, + "probability": 1.0 + }, + { + "word": " terabyte", + "start": 4258.18, + "end": 4258.46, + "probability": 0.9990234375 + }, + { + "word": " drive.", + "start": 4258.46, + "end": 4258.74, + "probability": 1.0 + } + ] + }, + { + "id": 4056, + "text": "And then on the HP recovery, the D drive that came with the system, it's 1.35 free out of", + "start": 4259.06, + "end": 4265.6, + "words": [ + { + "word": " And", + "start": 4259.06, + "end": 4259.46, + "probability": 0.91552734375 + }, + { + "word": " then", + "start": 4259.46, + "end": 4259.54, + "probability": 0.318115234375 + }, + { + "word": " on", + "start": 4259.54, + "end": 4259.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4259.66, + "end": 4259.76, + "probability": 0.841796875 + }, + { + "word": " HP", + "start": 4259.76, + "end": 4259.98, + "probability": 0.99853515625 + }, + { + "word": " recovery,", + "start": 4259.98, + "end": 4260.52, + "probability": 0.84033203125 + }, + { + "word": " the", + "start": 4260.66, + "end": 4260.94, + "probability": 0.99951171875 + }, + { + "word": " D", + "start": 4260.94, + "end": 4261.14, + "probability": 0.998046875 + }, + { + "word": " drive", + "start": 4261.14, + "end": 4261.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 4261.46, + "end": 4262.04, + "probability": 0.95654296875 + }, + { + "word": " came", + "start": 4262.04, + "end": 4262.56, + "probability": 1.0 + }, + { + "word": " with", + "start": 4262.56, + "end": 4262.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 4262.72, + "end": 4262.82, + "probability": 1.0 + }, + { + "word": " system,", + "start": 4262.82, + "end": 4263.12, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4263.16, + "end": 4263.42, + "probability": 1.0 + }, + { + "word": " 1", + "start": 4263.42, + "end": 4263.56, + "probability": 1.0 + }, + { + "word": ".35", + "start": 4263.56, + "end": 4264.16, + "probability": 1.0 + }, + { + "word": " free", + "start": 4264.16, + "end": 4264.64, + "probability": 0.884765625 + }, + { + "word": " out", + "start": 4264.64, + "end": 4265.22, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4265.22, + "end": 4265.6, + "probability": 1.0 + } + ] + }, + { + "id": 4057, + "text": "11.1 gigabytes.", + "start": 4265.6, + "end": 4267.3, + "words": [ + { + "word": " 11", + "start": 4265.6, + "end": 4266.54, + "probability": 1.0 + }, + { + "word": ".1", + "start": 4266.54, + "end": 4267.02, + "probability": 0.99951171875 + }, + { + "word": " gigabytes.", + "start": 4267.02, + "end": 4267.3, + "probability": 1.0 + } + ] + }, + { + "id": 4058, + "text": "So I think that's for the operating system.", + "start": 4267.72, + "end": 4269.74, + "words": [ + { + "word": " So", + "start": 4267.72, + "end": 4268.2, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 4268.2, + "end": 4268.3, + "probability": 1.0 + }, + { + "word": " think", + "start": 4268.3, + "end": 4268.4, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4268.4, + "end": 4268.6, + "probability": 1.0 + }, + { + "word": " for", + "start": 4268.6, + "end": 4268.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 4268.7, + "end": 4268.76, + "probability": 1.0 + }, + { + "word": " operating", + "start": 4268.76, + "end": 4269.26, + "probability": 1.0 + }, + { + "word": " system.", + "start": 4269.26, + "end": 4269.74, + "probability": 1.0 + } + ] + }, + { + "id": 4059, + "text": "Right.", + "start": 4270.16, + "end": 4270.64, + "words": [ + { + "word": " Right.", + "start": 4270.16, + "end": 4270.64, + "probability": 0.96484375 + } + ] + }, + { + "id": 4060, + "text": "I think you're probably running up against something where you're going to have to", + "start": 4270.72, + "end": 4272.96, + "words": [ + { + "word": " I", + "start": 4270.72, + "end": 4271.04, + "probability": 0.9951171875 + }, + { + "word": " think", + "start": 4271.04, + "end": 4271.28, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4271.28, + "end": 4271.42, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4271.42, + "end": 4271.62, + "probability": 1.0 + }, + { + "word": " running", + "start": 4271.62, + "end": 4271.9, + "probability": 1.0 + }, + { + "word": " up", + "start": 4271.9, + "end": 4272.14, + "probability": 1.0 + }, + { + "word": " against", + "start": 4272.14, + "end": 4272.36, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 4272.36, + "end": 4272.72, + "probability": 1.0 + }, + { + "word": " where", + "start": 4272.72, + "end": 4272.96, + "probability": 0.00817108154296875 + }, + { + "word": " you're", + "start": 4272.96, + "end": 4272.96, + "probability": 0.294921875 + }, + { + "word": " going", + "start": 4272.96, + "end": 4272.96, + "probability": 0.10845947265625 + }, + { + "word": " to", + "start": 4272.96, + "end": 4272.96, + "probability": 0.78466796875 + }, + { + "word": " have", + "start": 4272.96, + "end": 4272.96, + "probability": 0.445068359375 + }, + { + "word": " to", + "start": 4272.96, + "end": 4272.96, + "probability": 0.91796875 + } + ] + }, + { + "id": 4061, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4062, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4063, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4064, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4065, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4066, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4067, + "text": "", + "start": 4272.96, + "end": 4272.96, + "words": [] + }, + { + "id": 4068, + "text": "be more secure.", + "start": 4272.96, + "end": 4276.0, + "words": [ + { + "word": " be", + "start": 4272.96, + "end": 4273.12, + "probability": 5.894899368286133e-05 + }, + { + "word": " more", + "start": 4273.12, + "end": 4276.0, + "probability": 0.0108642578125 + }, + { + "word": " secure.", + "start": 4276.0, + "end": 4276.0, + "probability": 0.0030269622802734375 + } + ] + }, + { + "id": 4069, + "text": "OK.", + "start": 4276.32, + "end": 4276.96, + "words": [ + { + "word": " OK.", + "start": 4276.32, + "end": 4276.96, + "probability": 0.00389862060546875 + } + ] + }, + { + "id": 4070, + "text": "OK.", + "start": 4277.46, + "end": 4278.1, + "words": [ + { + "word": " OK.", + "start": 4277.46, + "end": 4278.1, + "probability": 0.042999267578125 + } + ] + }, + { + "id": 4071, + "text": "", + "start": 4278.42, + "end": 4278.42, + "words": [] + }, + { + "id": 4072, + "text": "", + "start": 4278.42, + "end": 4278.42, + "words": [] + }, + { + "id": 4073, + "text": "OK.", + "start": 4278.42, + "end": 4278.98, + "words": [ + { + "word": " OK.", + "start": 4278.42, + "end": 4278.98, + "probability": 0.615234375 + } + ] + }, + { + "id": 4074, + "text": "OK.", + "start": 4279.1, + "end": 4279.28, + "words": [ + { + "word": " OK.", + "start": 4279.1, + "end": 4279.28, + "probability": 0.751953125 + } + ] + }, + { + "id": 4075, + "text": "OK.", + "start": 4279.28, + "end": 4279.86, + "words": [ + { + "word": " OK.", + "start": 4279.28, + "end": 4279.86, + "probability": 0.81982421875 + } + ] + }, + { + "id": 4076, + "text": "OK.", + "start": 4280.14, + "end": 4280.46, + "words": [ + { + "word": " OK.", + "start": 4280.14, + "end": 4280.46, + "probability": 0.85400390625 + } + ] + }, + { + "id": 4077, + "text": "OK.", + "start": 4280.58, + "end": 4281.1, + "words": [ + { + "word": " OK.", + "start": 4280.58, + "end": 4281.1, + "probability": 0.87451171875 + } + ] + }, + { + "id": 4078, + "text": "", + "start": 4282.3, + "end": 4282.3, + "words": [] + }, + { + "id": 4079, + "text": "", + "start": 4282.3, + "end": 4282.3, + "words": [] + }, + { + "id": 4080, + "text": "OK.", + "start": 4282.3, + "end": 4282.92, + "words": [ + { + "word": " OK.", + "start": 4282.3, + "end": 4282.92, + "probability": 0.9033203125 + } + ] + }, + { + "id": 4081, + "text": "OK.", + "start": 4284.1, + "end": 4284.74, + "words": [ + { + "word": " OK.", + "start": 4284.1, + "end": 4284.74, + "probability": 0.90869140625 + } + ] + }, + { + "id": 4082, + "text": "OK.", + "start": 4284.84, + "end": 4284.88, + "words": [ + { + "word": " OK.", + "start": 4284.84, + "end": 4284.88, + "probability": 0.9140625 + } + ] + }, + { + "id": 4083, + "text": "", + "start": 4284.88, + "end": 4284.88, + "words": [] + }, + { + "id": 4084, + "text": "OK.", + "start": 4284.88, + "end": 4285.4, + "words": [ + { + "word": " OK.", + "start": 4284.88, + "end": 4285.4, + "probability": 0.923828125 + } + ] + }, + { + "id": 4085, + "text": "OK.", + "start": 4288.3, + "end": 4288.94, + "words": [ + { + "word": " OK.", + "start": 4288.3, + "end": 4288.94, + "probability": 0.9287109375 + } + ] + }, + { + "id": 4086, + "text": "OK.", + "start": 4289.1, + "end": 4289.4, + "words": [ + { + "word": " OK.", + "start": 4289.1, + "end": 4289.4, + "probability": 0.93310546875 + } + ] + }, + { + "id": 4087, + "text": "", + "start": 4289.4, + "end": 4289.4, + "words": [] + }, + { + "id": 4088, + "text": "", + "start": 4289.4, + "end": 4289.4, + "words": [] + }, + { + "id": 4089, + "text": "OK.", + "start": 4289.4, + "end": 4289.42, + "words": [ + { + "word": " OK.", + "start": 4289.4, + "end": 4289.42, + "probability": 0.9443359375 + } + ] + }, + { + "id": 4090, + "text": "OK.", + "start": 4289.42, + "end": 4289.5, + "words": [ + { + "word": " OK.", + "start": 4289.42, + "end": 4289.5, + "probability": 0.9482421875 + } + ] + }, + { + "id": 4091, + "text": "OK.", + "start": 4289.62, + "end": 4290.04, + "words": [ + { + "word": " OK.", + "start": 4289.62, + "end": 4290.04, + "probability": 0.95068359375 + } + ] + }, + { + "id": 4092, + "text": "OK.", + "start": 4290.18, + "end": 4290.5, + "words": [ + { + "word": " OK.", + "start": 4290.18, + "end": 4290.5, + "probability": 0.953125 + } + ] + }, + { + "id": 4093, + "text": "OK.", + "start": 4290.6, + "end": 4290.74, + "words": [ + { + "word": " OK.", + "start": 4290.6, + "end": 4290.74, + "probability": 0.955078125 + } + ] + }, + { + "id": 4094, + "text": "OK.", + "start": 4290.94, + "end": 4291.32, + "words": [ + { + "word": " OK.", + "start": 4290.94, + "end": 4291.32, + "probability": 0.95703125 + } + ] + }, + { + "id": 4095, + "text": "OK.", + "start": 4293.3, + "end": 4293.94, + "words": [ + { + "word": " OK.", + "start": 4293.3, + "end": 4293.94, + "probability": 0.95849609375 + } + ] + }, + { + "id": 4096, + "text": "OK.", + "start": 4296.38, + "end": 4297.02, + "words": [ + { + "word": " OK.", + "start": 4296.38, + "end": 4297.02, + "probability": 0.9599609375 + } + ] + }, + { + "id": 4097, + "text": "OK.", + "start": 4298.9, + "end": 4299.24, + "words": [ + { + "word": " OK.", + "start": 4298.9, + "end": 4299.24, + "probability": 0.9609375 + } + ] + }, + { + "id": 4098, + "text": "The majority of that problem is that you're out of space.", + "start": 4302.96, + "end": 4305.24, + "words": [ + { + "word": " The", + "start": 4302.96, + "end": 4302.98, + "probability": 0.46728515625 + }, + { + "word": " majority", + "start": 4302.98, + "end": 4303.62, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4303.62, + "end": 4304.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 4304.02, + "end": 4304.18, + "probability": 0.9990234375 + }, + { + "word": " problem", + "start": 4304.18, + "end": 4304.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 4304.44, + "end": 4304.68, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4304.68, + "end": 4304.8, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 4304.8, + "end": 4304.92, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 4304.92, + "end": 4305.02, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4305.02, + "end": 4305.04, + "probability": 0.99951171875 + }, + { + "word": " space.", + "start": 4305.04, + "end": 4305.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4099, + "text": "Hard disk space?", + "start": 4306.14, + "end": 4307.2, + "words": [ + { + "word": " Hard", + "start": 4306.14, + "end": 4306.54, + "probability": 0.9677734375 + }, + { + "word": " disk", + "start": 4306.54, + "end": 4306.94, + "probability": 0.986328125 + }, + { + "word": " space?", + "start": 4306.94, + "end": 4307.2, + "probability": 0.98046875 + } + ] + }, + { + "id": 4100, + "text": "Mm-hmm.", + "start": 4307.42, + "end": 4307.7, + "words": [ + { + "word": " Mm", + "start": 4307.42, + "end": 4307.62, + "probability": 0.402587890625 + }, + { + "word": "-hmm.", + "start": 4307.62, + "end": 4307.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 4101, + "text": "On streaming video?", + "start": 4307.7, + "end": 4308.6, + "words": [ + { + "word": " On", + "start": 4307.7, + "end": 4308.08, + "probability": 0.99853515625 + }, + { + "word": " streaming", + "start": 4308.08, + "end": 4308.36, + "probability": 0.99951171875 + }, + { + "word": " video?", + "start": 4308.36, + "end": 4308.6, + "probability": 1.0 + } + ] + }, + { + "id": 4102, + "text": "Yeah, it's got to write to the disk before it can show it to you.", + "start": 4308.9, + "end": 4310.8, + "words": [ + { + "word": " Yeah,", + "start": 4308.9, + "end": 4309.16, + "probability": 0.65625 + }, + { + "word": " it's", + "start": 4309.18, + "end": 4309.32, + "probability": 1.0 + }, + { + "word": " got", + "start": 4309.32, + "end": 4309.34, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 4309.34, + "end": 4309.44, + "probability": 0.99853515625 + }, + { + "word": " write", + "start": 4309.44, + "end": 4309.6, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 4309.6, + "end": 4309.72, + "probability": 0.83544921875 + }, + { + "word": " the", + "start": 4309.72, + "end": 4309.82, + "probability": 1.0 + }, + { + "word": " disk", + "start": 4309.82, + "end": 4309.98, + "probability": 0.98779296875 + }, + { + "word": " before", + "start": 4309.98, + "end": 4310.22, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4310.22, + "end": 4310.32, + "probability": 0.99755859375 + }, + { + "word": " can", + "start": 4310.32, + "end": 4310.42, + "probability": 0.9755859375 + }, + { + "word": " show", + "start": 4310.42, + "end": 4310.58, + "probability": 0.99365234375 + }, + { + "word": " it", + "start": 4310.58, + "end": 4310.68, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 4310.68, + "end": 4310.74, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4310.74, + "end": 4310.8, + "probability": 1.0 + } + ] + }, + { + "id": 4103, + "text": "Saving the temporary files as you stream it, that's how it works.", + "start": 4310.88, + "end": 4313.78, + "words": [ + { + "word": " Saving", + "start": 4310.88, + "end": 4311.1, + "probability": 0.9599609375 + }, + { + "word": " the", + "start": 4311.1, + "end": 4311.28, + "probability": 1.0 + }, + { + "word": " temporary", + "start": 4311.28, + "end": 4311.6, + "probability": 1.0 + }, + { + "word": " files", + "start": 4311.6, + "end": 4312.04, + "probability": 1.0 + }, + { + "word": " as", + "start": 4312.04, + "end": 4312.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 4312.4, + "end": 4312.52, + "probability": 0.99951171875 + }, + { + "word": " stream", + "start": 4312.52, + "end": 4313.08, + "probability": 1.0 + }, + { + "word": " it,", + "start": 4313.08, + "end": 4313.22, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4313.26, + "end": 4313.4, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 4313.4, + "end": 4313.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 4313.42, + "end": 4313.54, + "probability": 1.0 + }, + { + "word": " works.", + "start": 4313.54, + "end": 4313.78, + "probability": 1.0 + } + ] + }, + { + "id": 4104, + "text": "Wow.", + "start": 4314.54, + "end": 4314.8, + "words": [ + { + "word": " Wow.", + "start": 4314.54, + "end": 4314.8, + "probability": 0.99365234375 + } + ] + }, + { + "id": 4105, + "text": "Because the other ones like Pac-12 Network or Fox Sports, it doesn't do that.", + "start": 4314.9, + "end": 4319.4, + "words": [ + { + "word": " Because", + "start": 4314.9, + "end": 4315.3, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4315.3, + "end": 4315.56, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 4315.56, + "end": 4315.76, + "probability": 1.0 + }, + { + "word": " ones", + "start": 4315.76, + "end": 4316.04, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 4316.04, + "end": 4316.28, + "probability": 0.6259765625 + }, + { + "word": " Pac", + "start": 4316.28, + "end": 4316.94, + "probability": 0.8935546875 + }, + { + "word": "-12", + "start": 4316.94, + "end": 4317.14, + "probability": 1.0 + }, + { + "word": " Network", + "start": 4317.14, + "end": 4317.4, + "probability": 0.99169921875 + }, + { + "word": " or", + "start": 4317.4, + "end": 4317.86, + "probability": 0.99951171875 + }, + { + "word": " Fox", + "start": 4317.86, + "end": 4318.14, + "probability": 0.99951171875 + }, + { + "word": " Sports,", + "start": 4318.14, + "end": 4318.52, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4318.68, + "end": 4318.82, + "probability": 0.99951171875 + }, + { + "word": " doesn't", + "start": 4318.82, + "end": 4319.08, + "probability": 1.0 + }, + { + "word": " do", + "start": 4319.08, + "end": 4319.2, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4319.2, + "end": 4319.4, + "probability": 1.0 + } + ] + }, + { + "id": 4106, + "text": "They're probably using a different player.", + "start": 4319.62, + "end": 4321.2, + "words": [ + { + "word": " They're", + "start": 4319.62, + "end": 4319.84, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4319.84, + "end": 4320.32, + "probability": 1.0 + }, + { + "word": " using", + "start": 4320.32, + "end": 4320.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 4320.5, + "end": 4320.62, + "probability": 1.0 + }, + { + "word": " different", + "start": 4320.62, + "end": 4320.78, + "probability": 1.0 + }, + { + "word": " player.", + "start": 4320.78, + "end": 4321.2, + "probability": 1.0 + } + ] + }, + { + "id": 4107, + "text": "Or even just smaller size.", + "start": 4321.92, + "end": 4323.4, + "words": [ + { + "word": " Or", + "start": 4321.92, + "end": 4322.32, + "probability": 1.0 + }, + { + "word": " even", + "start": 4322.32, + "end": 4322.48, + "probability": 1.0 + }, + { + "word": " just", + "start": 4322.48, + "end": 4322.68, + "probability": 1.0 + }, + { + "word": " smaller", + "start": 4322.68, + "end": 4322.96, + "probability": 1.0 + }, + { + "word": " size.", + "start": 4322.96, + "end": 4323.4, + "probability": 1.0 + } + ] + }, + { + "id": 4108, + "text": "Right, and smaller chunks, something along those lines.", + "start": 4323.62, + "end": 4325.82, + "words": [ + { + "word": " Right,", + "start": 4323.62, + "end": 4323.88, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 4323.92, + "end": 4324.0, + "probability": 0.91845703125 + }, + { + "word": " smaller", + "start": 4324.0, + "end": 4324.26, + "probability": 1.0 + }, + { + "word": " chunks,", + "start": 4324.26, + "end": 4324.64, + "probability": 1.0 + }, + { + "word": " something", + "start": 4324.76, + "end": 4325.06, + "probability": 1.0 + }, + { + "word": " along", + "start": 4325.06, + "end": 4325.3, + "probability": 1.0 + }, + { + "word": " those", + "start": 4325.3, + "end": 4325.54, + "probability": 1.0 + }, + { + "word": " lines.", + "start": 4325.54, + "end": 4325.82, + "probability": 1.0 + } + ] + }, + { + "id": 4109, + "text": "You're out of space, man.", + "start": 4326.620000000001, + "end": 4327.62, + "words": [ + { + "word": " You're", + "start": 4326.620000000001, + "end": 4327.02, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 4327.02, + "end": 4327.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 4327.12, + "end": 4327.2, + "probability": 1.0 + }, + { + "word": " space,", + "start": 4327.2, + "end": 4327.38, + "probability": 1.0 + }, + { + "word": " man.", + "start": 4327.46, + "end": 4327.62, + "probability": 1.0 + } + ] + }, + { + "id": 4110, + "text": "You've got to fix that first before you do anything else.", + "start": 4327.7, + "end": 4329.9, + "words": [ + { + "word": " You've", + "start": 4327.7, + "end": 4327.9, + "probability": 0.9853515625 + }, + { + "word": " got", + "start": 4327.9, + "end": 4327.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4327.98, + "end": 4328.02, + "probability": 1.0 + }, + { + "word": " fix", + "start": 4328.02, + "end": 4328.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 4328.16, + "end": 4328.28, + "probability": 1.0 + }, + { + "word": " first", + "start": 4328.28, + "end": 4328.54, + "probability": 1.0 + }, + { + "word": " before", + "start": 4328.54, + "end": 4328.9, + "probability": 0.9775390625 + }, + { + "word": " you", + "start": 4328.9, + "end": 4329.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 4329.04, + "end": 4329.2, + "probability": 0.9296875 + }, + { + "word": " anything", + "start": 4329.2, + "end": 4329.56, + "probability": 0.9921875 + }, + { + "word": " else.", + "start": 4329.56, + "end": 4329.9, + "probability": 1.0 + } + ] + }, + { + "id": 4111, + "text": "Last point to that is it actually happens on Xbox, which is Windows,", + "start": 4329.9, + "end": 4333.34, + "words": [ + { + "word": " Last", + "start": 4329.9, + "end": 4330.26, + "probability": 0.06549072265625 + }, + { + "word": " point", + "start": 4330.26, + "end": 4330.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 4330.6, + "end": 4330.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 4330.78, + "end": 4330.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 4330.92, + "end": 4331.12, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 4331.12, + "end": 4331.22, + "probability": 0.92431640625 + }, + { + "word": " actually", + "start": 4331.22, + "end": 4331.5, + "probability": 0.99951171875 + }, + { + "word": " happens", + "start": 4331.5, + "end": 4331.8, + "probability": 0.9677734375 + }, + { + "word": " on", + "start": 4331.8, + "end": 4331.98, + "probability": 1.0 + }, + { + "word": " Xbox,", + "start": 4331.98, + "end": 4332.3, + "probability": 0.99853515625 + }, + { + "word": " which", + "start": 4332.62, + "end": 4332.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 4332.9, + "end": 4333.04, + "probability": 1.0 + }, + { + "word": " Windows,", + "start": 4333.04, + "end": 4333.34, + "probability": 1.0 + } + ] + }, + { + "id": 4112, + "text": "but it doesn't happen on my iPhone.", + "start": 4333.6, + "end": 4334.98, + "words": [ + { + "word": " but", + "start": 4333.6, + "end": 4333.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 4333.96, + "end": 4334.06, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 4334.06, + "end": 4334.26, + "probability": 1.0 + }, + { + "word": " happen", + "start": 4334.26, + "end": 4334.48, + "probability": 1.0 + }, + { + "word": " on", + "start": 4334.48, + "end": 4334.64, + "probability": 1.0 + }, + { + "word": " my", + "start": 4334.64, + "end": 4334.74, + "probability": 1.0 + }, + { + "word": " iPhone.", + "start": 4334.74, + "end": 4334.98, + "probability": 1.0 + } + ] + }, + { + "id": 4113, + "text": "Interesting.", + "start": 4336.18, + "end": 4336.58, + "words": [ + { + "word": " Interesting.", + "start": 4336.18, + "end": 4336.58, + "probability": 0.93310546875 + } + ] + }, + { + "id": 4114, + "text": "Well, that part I can't help you with, at least not off the top of my head.", + "start": 4338.260000000001, + "end": 4341.14, + "words": [ + { + "word": " Well,", + "start": 4338.260000000001, + "end": 4338.660000000001, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 4338.660000000001, + "end": 4339.06, + "probability": 1.0 + }, + { + "word": " part", + "start": 4339.06, + "end": 4339.26, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 4339.26, + "end": 4339.38, + "probability": 0.99951171875 + }, + { + "word": " can't", + "start": 4339.38, + "end": 4339.54, + "probability": 1.0 + }, + { + "word": " help", + "start": 4339.54, + "end": 4339.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 4339.68, + "end": 4339.78, + "probability": 1.0 + }, + { + "word": " with,", + "start": 4339.78, + "end": 4339.98, + "probability": 1.0 + }, + { + "word": " at", + "start": 4340.06, + "end": 4340.22, + "probability": 1.0 + }, + { + "word": " least", + "start": 4340.22, + "end": 4340.3, + "probability": 1.0 + }, + { + "word": " not", + "start": 4340.3, + "end": 4340.5, + "probability": 1.0 + }, + { + "word": " off", + "start": 4340.5, + "end": 4340.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 4340.66, + "end": 4340.72, + "probability": 0.9990234375 + }, + { + "word": " top", + "start": 4340.72, + "end": 4340.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 4340.84, + "end": 4340.92, + "probability": 1.0 + }, + { + "word": " my", + "start": 4340.92, + "end": 4341.0, + "probability": 1.0 + }, + { + "word": " head.", + "start": 4341.0, + "end": 4341.14, + "probability": 1.0 + } + ] + }, + { + "id": 4115, + "text": "But the computer storage issue, you should resolve that.", + "start": 4341.22, + "end": 4346.54, + "words": [ + { + "word": " But", + "start": 4341.22, + "end": 4341.44, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 4341.44, + "end": 4342.38, + "probability": 0.99853515625 + }, + { + "word": " computer", + "start": 4342.38, + "end": 4343.28, + "probability": 0.99951171875 + }, + { + "word": " storage", + "start": 4343.28, + "end": 4343.86, + "probability": 1.0 + }, + { + "word": " issue,", + "start": 4343.86, + "end": 4344.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 4344.62, + "end": 4345.62, + "probability": 1.0 + }, + { + "word": " should", + "start": 4345.62, + "end": 4345.98, + "probability": 1.0 + }, + { + "word": " resolve", + "start": 4345.98, + "end": 4346.26, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4346.26, + "end": 4346.54, + "probability": 1.0 + } + ] + }, + { + "id": 4116, + "text": "Either upgrade to a much larger drive and then clone all your data over,", + "start": 4346.62, + "end": 4350.98, + "words": [ + { + "word": " Either", + "start": 4346.62, + "end": 4346.9, + "probability": 0.9990234375 + }, + { + "word": " upgrade", + "start": 4346.9, + "end": 4347.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 4347.84, + "end": 4348.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 4348.08, + "end": 4348.22, + "probability": 1.0 + }, + { + "word": " much", + "start": 4348.22, + "end": 4348.44, + "probability": 1.0 + }, + { + "word": " larger", + "start": 4348.44, + "end": 4348.72, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4348.72, + "end": 4349.06, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4349.06, + "end": 4349.42, + "probability": 0.99169921875 + }, + { + "word": " then", + "start": 4349.42, + "end": 4349.6, + "probability": 0.998046875 + }, + { + "word": " clone", + "start": 4349.6, + "end": 4350.18, + "probability": 0.88720703125 + }, + { + "word": " all", + "start": 4350.18, + "end": 4350.36, + "probability": 1.0 + }, + { + "word": " your", + "start": 4350.36, + "end": 4350.5, + "probability": 1.0 + }, + { + "word": " data", + "start": 4350.5, + "end": 4350.7, + "probability": 1.0 + }, + { + "word": " over,", + "start": 4350.7, + "end": 4350.98, + "probability": 1.0 + } + ] + }, + { + "id": 4117, + "text": "or add another drive and move stuff to a different drive.", + "start": 4351.460000000001, + "end": 4354.38, + "words": [ + { + "word": " or", + "start": 4351.460000000001, + "end": 4351.860000000001, + "probability": 1.0 + }, + { + "word": " add", + "start": 4351.860000000001, + "end": 4352.26, + "probability": 1.0 + }, + { + "word": " another", + "start": 4352.26, + "end": 4352.54, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4352.54, + "end": 4352.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 4352.94, + "end": 4353.16, + "probability": 1.0 + }, + { + "word": " move", + "start": 4353.16, + "end": 4353.38, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4353.38, + "end": 4353.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 4353.68, + "end": 4353.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 4353.86, + "end": 4353.98, + "probability": 1.0 + }, + { + "word": " different", + "start": 4353.98, + "end": 4354.08, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 4354.08, + "end": 4354.38, + "probability": 1.0 + } + ] + }, + { + "id": 4118, + "text": "Got it.", + "start": 4354.62, + "end": 4355.04, + "words": [ + { + "word": " Got", + "start": 4354.62, + "end": 4354.92, + "probability": 1.0 + }, + { + "word": " it.", + "start": 4354.92, + "end": 4355.04, + "probability": 1.0 + } + ] + }, + { + "id": 4119, + "text": "Thank you very much.", + "start": 4355.12, + "end": 4356.06, + "words": [ + { + "word": " Thank", + "start": 4355.12, + "end": 4355.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 4355.48, + "end": 4355.66, + "probability": 1.0 + }, + { + "word": " very", + "start": 4355.66, + "end": 4355.8, + "probability": 1.0 + }, + { + "word": " much.", + "start": 4355.8, + "end": 4356.06, + "probability": 1.0 + } + ] + }, + { + "id": 4120, + "text": "No problem.", + "start": 4356.18, + "end": 4356.54, + "words": [ + { + "word": " No", + "start": 4356.18, + "end": 4356.32, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 4356.32, + "end": 4356.54, + "probability": 1.0 + } + ] + }, + { + "id": 4121, + "text": "Thanks for the call, Tom.", + "start": 4356.62, + "end": 4357.32, + "words": [ + { + "word": " Thanks", + "start": 4356.62, + "end": 4356.82, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 4356.82, + "end": 4356.9, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4356.9, + "end": 4356.98, + "probability": 0.99951171875 + }, + { + "word": " call,", + "start": 4356.98, + "end": 4357.12, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 4357.16, + "end": 4357.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4122, + "text": "So back to the video.", + "start": 4359.06, + "end": 4359.88, + "words": [ + { + "word": " So", + "start": 4359.06, + "end": 4359.46, + "probability": 0.24560546875 + }, + { + "word": " back", + "start": 4359.46, + "end": 4359.7, + "probability": 0.708984375 + }, + { + "word": " to", + "start": 4359.7, + "end": 4359.88, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 4359.88, + "end": 4359.88, + "probability": 0.83203125 + }, + { + "word": " video.", + "start": 4359.88, + "end": 4359.88, + "probability": 0.065185546875 + } + ] + }, + { + "id": 4123, + "text": "Let's get into the CES stuff.", + "start": 4359.88, + "end": 4360.52, + "words": [ + { + "word": " Let's", + "start": 4359.88, + "end": 4359.88, + "probability": 0.495849609375 + }, + { + "word": " get", + "start": 4359.88, + "end": 4359.88, + "probability": 0.364990234375 + }, + { + "word": " into", + "start": 4359.88, + "end": 4359.88, + "probability": 0.697265625 + }, + { + "word": " the", + "start": 4359.88, + "end": 4359.88, + "probability": 0.9912109375 + }, + { + "word": " CES", + "start": 4359.88, + "end": 4360.26, + "probability": 0.99853515625 + }, + { + "word": " stuff.", + "start": 4360.26, + "end": 4360.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4124, + "text": "I'm seeing something here that I kind of want to mention because it's super cool.", + "start": 4360.66, + "end": 4363.24, + "words": [ + { + "word": " I'm", + "start": 4360.66, + "end": 4360.8, + "probability": 0.99609375 + }, + { + "word": " seeing", + "start": 4360.8, + "end": 4360.96, + "probability": 1.0 + }, + { + "word": " something", + "start": 4360.96, + "end": 4361.2, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 4361.2, + "end": 4361.48, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4361.48, + "end": 4361.64, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 4361.64, + "end": 4361.78, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 4361.78, + "end": 4361.9, + "probability": 0.98193359375 + }, + { + "word": " of", + "start": 4361.9, + "end": 4361.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 4361.96, + "end": 4362.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4362.08, + "end": 4362.14, + "probability": 1.0 + }, + { + "word": " mention", + "start": 4362.14, + "end": 4362.36, + "probability": 1.0 + }, + { + "word": " because", + "start": 4362.36, + "end": 4362.54, + "probability": 0.89599609375 + }, + { + "word": " it's", + "start": 4362.54, + "end": 4362.76, + "probability": 1.0 + }, + { + "word": " super", + "start": 4362.76, + "end": 4362.98, + "probability": 1.0 + }, + { + "word": " cool.", + "start": 4362.98, + "end": 4363.24, + "probability": 1.0 + } + ] + }, + { + "id": 4125, + "text": "What's that?", + "start": 4363.4, + "end": 4363.74, + "words": [ + { + "word": " What's", + "start": 4363.4, + "end": 4363.66, + "probability": 0.9990234375 + }, + { + "word": " that?", + "start": 4363.66, + "end": 4363.74, + "probability": 1.0 + } + ] + }, + { + "id": 4126, + "text": "This is out of the reach of almost everybody.", + "start": 4363.88, + "end": 4365.54, + "words": [ + { + "word": " This", + "start": 4363.88, + "end": 4364.06, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 4364.06, + "end": 4364.14, + "probability": 1.0 + }, + { + "word": " out", + "start": 4364.14, + "end": 4364.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 4364.28, + "end": 4364.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 4364.38, + "end": 4364.44, + "probability": 0.96435546875 + }, + { + "word": " reach", + "start": 4364.44, + "end": 4364.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 4364.66, + "end": 4364.88, + "probability": 1.0 + }, + { + "word": " almost", + "start": 4364.88, + "end": 4365.14, + "probability": 1.0 + }, + { + "word": " everybody.", + "start": 4365.14, + "end": 4365.54, + "probability": 1.0 + } + ] + }, + { + "id": 4127, + "text": "But it's a TV that Samsung calls the wall.", + "start": 4365.82, + "end": 4368.28, + "words": [ + { + "word": " But", + "start": 4365.82, + "end": 4366.26, + "probability": 0.9853515625 + }, + { + "word": " it's", + "start": 4366.26, + "end": 4366.64, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 4366.64, + "end": 4366.68, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4366.68, + "end": 4366.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 4366.94, + "end": 4367.16, + "probability": 1.0 + }, + { + "word": " Samsung", + "start": 4367.16, + "end": 4367.48, + "probability": 1.0 + }, + { + "word": " calls", + "start": 4367.48, + "end": 4367.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 4367.82, + "end": 4368.04, + "probability": 0.59228515625 + }, + { + "word": " wall.", + "start": 4368.04, + "end": 4368.28, + "probability": 0.91015625 + } + ] + }, + { + "id": 4128, + "text": "Did you see this?", + "start": 4368.52, + "end": 4369.12, + "words": [ + { + "word": " Did", + "start": 4368.52, + "end": 4368.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 4368.68, + "end": 4368.78, + "probability": 1.0 + }, + { + "word": " see", + "start": 4368.78, + "end": 4368.92, + "probability": 1.0 + }, + { + "word": " this?", + "start": 4368.92, + "end": 4369.12, + "probability": 1.0 + } + ] + }, + { + "id": 4129, + "text": "I did not.", + "start": 4369.3, + "end": 4369.74, + "words": [ + { + "word": " I", + "start": 4369.3, + "end": 4369.48, + "probability": 0.99951171875 + }, + { + "word": " did", + "start": 4369.48, + "end": 4369.6, + "probability": 1.0 + }, + { + "word": " not.", + "start": 4369.6, + "end": 4369.74, + "probability": 1.0 + } + ] + }, + { + "id": 4130, + "text": "It's a 146-inch super HD display that they're advertising as the first modular TV", + "start": 4369.82, + "end": 4376.72, + "words": [ + { + "word": " It's", + "start": 4369.82, + "end": 4370.22, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4370.22, + "end": 4370.28, + "probability": 0.52978515625 + }, + { + "word": " 146", + "start": 4370.28, + "end": 4371.02, + "probability": 0.998046875 + }, + { + "word": "-inch", + "start": 4371.02, + "end": 4371.44, + "probability": 0.96875 + }, + { + "word": " super", + "start": 4371.44, + "end": 4372.08, + "probability": 0.2020263671875 + }, + { + "word": " HD", + "start": 4372.08, + "end": 4372.9, + "probability": 0.99951171875 + }, + { + "word": " display", + "start": 4372.9, + "end": 4373.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 4373.38, + "end": 4374.46, + "probability": 0.99267578125 + }, + { + "word": " they're", + "start": 4374.46, + "end": 4374.76, + "probability": 1.0 + }, + { + "word": " advertising", + "start": 4374.76, + "end": 4375.32, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 4375.32, + "end": 4375.56, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4375.56, + "end": 4375.68, + "probability": 1.0 + }, + { + "word": " first", + "start": 4375.68, + "end": 4375.86, + "probability": 1.0 + }, + { + "word": " modular", + "start": 4375.86, + "end": 4376.32, + "probability": 1.0 + }, + { + "word": " TV", + "start": 4376.32, + "end": 4376.72, + "probability": 1.0 + } + ] + }, + { + "id": 4131, + "text": "in that you can split up the single panel to work as multiple displays.", + "start": 4376.72, + "end": 4382.1, + "words": [ + { + "word": " in", + "start": 4376.72, + "end": 4377.38, + "probability": 0.95166015625 + }, + { + "word": " that", + "start": 4377.38, + "end": 4377.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 4377.64, + "end": 4377.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 4377.94, + "end": 4378.16, + "probability": 1.0 + }, + { + "word": " split", + "start": 4378.16, + "end": 4378.64, + "probability": 1.0 + }, + { + "word": " up", + "start": 4378.64, + "end": 4378.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 4378.86, + "end": 4379.18, + "probability": 1.0 + }, + { + "word": " single", + "start": 4379.18, + "end": 4379.94, + "probability": 1.0 + }, + { + "word": " panel", + "start": 4379.94, + "end": 4380.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 4380.3, + "end": 4380.94, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 4380.94, + "end": 4381.18, + "probability": 1.0 + }, + { + "word": " as", + "start": 4381.18, + "end": 4381.38, + "probability": 1.0 + }, + { + "word": " multiple", + "start": 4381.38, + "end": 4381.68, + "probability": 1.0 + }, + { + "word": " displays.", + "start": 4381.68, + "end": 4382.1, + "probability": 1.0 + } + ] + }, + { + "id": 4132, + "text": "So, I mean, it doesn't physically break apart, but you can divide the areas of the screen.", + "start": 4382.6, + "end": 4386.76, + "words": [ + { + "word": " So,", + "start": 4382.6, + "end": 4383.04, + "probability": 0.9794921875 + }, + { + "word": " I", + "start": 4383.06, + "end": 4383.14, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 4383.14, + "end": 4383.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 4383.22, + "end": 4383.32, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 4383.32, + "end": 4383.5, + "probability": 1.0 + }, + { + "word": " physically", + "start": 4383.5, + "end": 4383.78, + "probability": 1.0 + }, + { + "word": " break", + "start": 4383.78, + "end": 4384.08, + "probability": 1.0 + }, + { + "word": " apart,", + "start": 4384.08, + "end": 4384.3, + "probability": 1.0 + }, + { + "word": " but", + "start": 4384.44, + "end": 4384.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 4384.66, + "end": 4385.12, + "probability": 1.0 + }, + { + "word": " can", + "start": 4385.12, + "end": 4385.28, + "probability": 1.0 + }, + { + "word": " divide", + "start": 4385.28, + "end": 4385.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 4385.54, + "end": 4385.86, + "probability": 1.0 + }, + { + "word": " areas", + "start": 4385.86, + "end": 4386.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 4386.16, + "end": 4386.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 4386.38, + "end": 4386.5, + "probability": 1.0 + }, + { + "word": " screen.", + "start": 4386.5, + "end": 4386.76, + "probability": 1.0 + } + ] + }, + { + "id": 4133, + "text": "And they said in the demo that they saw here,", + "start": 4387.04, + "end": 4389.0, + "words": [ + { + "word": " And", + "start": 4387.04, + "end": 4387.48, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 4387.48, + "end": 4387.64, + "probability": 1.0 + }, + { + "word": " said", + "start": 4387.64, + "end": 4387.8, + "probability": 1.0 + }, + { + "word": " in", + "start": 4387.8, + "end": 4387.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 4387.94, + "end": 4388.0, + "probability": 1.0 + }, + { + "word": " demo", + "start": 4388.0, + "end": 4388.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 4388.26, + "end": 4388.44, + "probability": 1.0 + }, + { + "word": " they", + "start": 4388.44, + "end": 4388.58, + "probability": 1.0 + }, + { + "word": " saw", + "start": 4388.58, + "end": 4388.78, + "probability": 1.0 + }, + { + "word": " here,", + "start": 4388.78, + "end": 4389.0, + "probability": 1.0 + } + ] + }, + { + "id": 4134, + "text": "Samsung had it configured to where there was like a smaller TV in the center,", + "start": 4389.0, + "end": 4393.84, + "words": [ + { + "word": " Samsung", + "start": 4389.0, + "end": 4389.3, + "probability": 0.15380859375 + }, + { + "word": " had", + "start": 4389.3, + "end": 4390.16, + "probability": 0.98974609375 + }, + { + "word": " it", + "start": 4390.16, + "end": 4390.26, + "probability": 0.98291015625 + }, + { + "word": " configured", + "start": 4390.26, + "end": 4390.54, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 4390.54, + "end": 4390.82, + "probability": 0.9951171875 + }, + { + "word": " where", + "start": 4390.82, + "end": 4390.98, + "probability": 0.99755859375 + }, + { + "word": " there", + "start": 4390.98, + "end": 4391.86, + "probability": 0.8486328125 + }, + { + "word": " was", + "start": 4391.86, + "end": 4392.48, + "probability": 0.99267578125 + }, + { + "word": " like", + "start": 4392.48, + "end": 4392.6, + "probability": 0.48779296875 + }, + { + "word": " a", + "start": 4392.6, + "end": 4392.7, + "probability": 0.99755859375 + }, + { + "word": " smaller", + "start": 4392.7, + "end": 4392.98, + "probability": 0.99853515625 + }, + { + "word": " TV", + "start": 4392.98, + "end": 4393.28, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 4393.28, + "end": 4393.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4393.48, + "end": 4393.56, + "probability": 1.0 + }, + { + "word": " center,", + "start": 4393.56, + "end": 4393.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4135, + "text": "and the border was set to blend in with the wall behind it.", + "start": 4393.94, + "end": 4397.2, + "words": [ + { + "word": " and", + "start": 4393.94, + "end": 4394.78, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4394.78, + "end": 4394.94, + "probability": 0.99951171875 + }, + { + "word": " border", + "start": 4394.94, + "end": 4395.16, + "probability": 0.98193359375 + }, + { + "word": " was", + "start": 4395.16, + "end": 4395.4, + "probability": 0.99951171875 + }, + { + "word": " set", + "start": 4395.4, + "end": 4395.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4395.58, + "end": 4395.7, + "probability": 0.99951171875 + }, + { + "word": " blend", + "start": 4395.7, + "end": 4395.86, + "probability": 0.99658203125 + }, + { + "word": " in", + "start": 4395.86, + "end": 4396.02, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4396.02, + "end": 4396.12, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4396.12, + "end": 4396.2, + "probability": 0.998046875 + }, + { + "word": " wall", + "start": 4396.2, + "end": 4396.44, + "probability": 1.0 + }, + { + "word": " behind", + "start": 4396.44, + "end": 4396.94, + "probability": 0.9990234375 + }, + { + "word": " it.", + "start": 4396.94, + "end": 4397.2, + "probability": 1.0 + } + ] + }, + { + "id": 4136, + "text": "Huh.", + "start": 4397.52, + "end": 4397.88, + "words": [ + { + "word": " Huh.", + "start": 4397.52, + "end": 4397.88, + "probability": 0.8564453125 + } + ] + }, + { + "id": 4137, + "text": "So that's interesting.", + "start": 4398.04, + "end": 4399.96, + "words": [ + { + "word": " So", + "start": 4398.04, + "end": 4398.52, + "probability": 0.99462890625 + }, + { + "word": " that's", + "start": 4398.52, + "end": 4399.66, + "probability": 0.9140625 + }, + { + "word": " interesting.", + "start": 4399.66, + "end": 4399.96, + "probability": 1.0 + } + ] + }, + { + "id": 4138, + "text": "But why?", + "start": 4400.14, + "end": 4400.48, + "words": [ + { + "word": " But", + "start": 4400.14, + "end": 4400.22, + "probability": 0.99609375 + }, + { + "word": " why?", + "start": 4400.22, + "end": 4400.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4139, + "text": "I know.", + "start": 4400.78, + "end": 4401.22, + "words": [ + { + "word": " I", + "start": 4400.78, + "end": 4401.06, + "probability": 0.99951171875 + }, + { + "word": " know.", + "start": 4401.06, + "end": 4401.22, + "probability": 0.94873046875 + } + ] + }, + { + "id": 4140, + "text": "I don't know why you would do that, but...", + "start": 4401.26, + "end": 4402.76, + "words": [ + { + "word": " I", + "start": 4401.26, + "end": 4401.4, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4401.4, + "end": 4401.52, + "probability": 0.998046875 + }, + { + "word": " know", + "start": 4401.52, + "end": 4401.6, + "probability": 1.0 + }, + { + "word": " why", + "start": 4401.6, + "end": 4401.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 4401.78, + "end": 4401.92, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 4401.92, + "end": 4402.06, + "probability": 1.0 + }, + { + "word": " do", + "start": 4402.06, + "end": 4402.22, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4402.22, + "end": 4402.46, + "probability": 1.0 + }, + { + "word": " but...", + "start": 4402.46, + "end": 4402.76, + "probability": 0.638671875 + } + ] + }, + { + "id": 4141, + "text": "It reminds me of the Back to the Future, you know, when Marty has his...", + "start": 4402.76, + "end": 4408.52, + "words": [ + { + "word": " It", + "start": 4402.76, + "end": 4403.02, + "probability": 0.9873046875 + }, + { + "word": " reminds", + "start": 4403.02, + "end": 4403.28, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 4403.28, + "end": 4403.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 4403.56, + "end": 4403.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 4403.74, + "end": 4403.84, + "probability": 0.9775390625 + }, + { + "word": " Back", + "start": 4403.84, + "end": 4404.54, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 4404.54, + "end": 4404.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 4404.66, + "end": 4404.7, + "probability": 1.0 + }, + { + "word": " Future,", + "start": 4404.7, + "end": 4405.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 4405.22, + "end": 4405.8, + "probability": 0.91845703125 + }, + { + "word": " know,", + "start": 4405.8, + "end": 4406.0, + "probability": 1.0 + }, + { + "word": " when", + "start": 4406.0, + "end": 4406.48, + "probability": 0.93896484375 + }, + { + "word": " Marty", + "start": 4406.48, + "end": 4407.82, + "probability": 1.0 + }, + { + "word": " has", + "start": 4407.82, + "end": 4408.14, + "probability": 0.984375 + }, + { + "word": " his...", + "start": 4408.14, + "end": 4408.52, + "probability": 0.9921875 + } + ] + }, + { + "id": 4142, + "text": "Right.", + "start": 4409.4800000000005, + "end": 4409.96, + "words": [ + { + "word": " Right.", + "start": 4409.4800000000005, + "end": 4409.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4143, + "text": "Divided the thing up, or in Idiocracy.", + "start": 4410.84, + "end": 4413.12, + "words": [ + { + "word": " Divided", + "start": 4410.84, + "end": 4411.32, + "probability": 0.85498046875 + }, + { + "word": " the", + "start": 4411.32, + "end": 4411.42, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4411.42, + "end": 4411.64, + "probability": 1.0 + }, + { + "word": " up,", + "start": 4411.64, + "end": 4411.82, + "probability": 1.0 + }, + { + "word": " or", + "start": 4411.9, + "end": 4412.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 4412.02, + "end": 4412.28, + "probability": 0.99951171875 + }, + { + "word": " Idiocracy.", + "start": 4412.28, + "end": 4413.12, + "probability": 0.93603515625 + } + ] + }, + { + "id": 4144, + "text": "Yeah.", + "start": 4413.42, + "end": 4413.9, + "words": [ + { + "word": " Yeah.", + "start": 4413.42, + "end": 4413.9, + "probability": 0.9951171875 + } + ] + }, + { + "id": 4145, + "text": "Right.", + "start": 4414.0, + "end": 4414.28, + "words": [ + { + "word": " Right.", + "start": 4414.0, + "end": 4414.28, + "probability": 0.65576171875 + } + ] + }, + { + "id": 4146, + "text": "Well, you know, as somebody who I have been using multiple displays on my computer for, like,", + "start": 4414.34, + "end": 4418.7, + "words": [ + { + "word": " Well,", + "start": 4414.34, + "end": 4414.68, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 4414.78, + "end": 4414.86, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 4414.86, + "end": 4415.0, + "probability": 1.0 + }, + { + "word": " as", + "start": 4415.0, + "end": 4415.12, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 4415.12, + "end": 4415.36, + "probability": 1.0 + }, + { + "word": " who", + "start": 4415.36, + "end": 4415.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 4415.56, + "end": 4415.9, + "probability": 0.461669921875 + }, + { + "word": " have", + "start": 4415.9, + "end": 4416.08, + "probability": 0.9658203125 + }, + { + "word": " been", + "start": 4416.08, + "end": 4416.42, + "probability": 1.0 + }, + { + "word": " using", + "start": 4416.42, + "end": 4416.68, + "probability": 1.0 + }, + { + "word": " multiple", + "start": 4416.68, + "end": 4416.96, + "probability": 1.0 + }, + { + "word": " displays", + "start": 4416.96, + "end": 4417.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 4417.42, + "end": 4417.6, + "probability": 1.0 + }, + { + "word": " my", + "start": 4417.6, + "end": 4417.7, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4417.7, + "end": 4417.96, + "probability": 1.0 + }, + { + "word": " for,", + "start": 4417.96, + "end": 4418.22, + "probability": 0.9951171875 + }, + { + "word": " like,", + "start": 4418.24, + "end": 4418.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4147, + "text": "the whole time now, it's weird to me to just sit on my couch and just watch something.", + "start": 4418.7, + "end": 4423.46, + "words": [ + { + "word": " the", + "start": 4418.7, + "end": 4418.88, + "probability": 0.8369140625 + }, + { + "word": " whole", + "start": 4418.88, + "end": 4419.1, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 4419.1, + "end": 4419.3, + "probability": 1.0 + }, + { + "word": " now,", + "start": 4419.3, + "end": 4419.56, + "probability": 0.98779296875 + }, + { + "word": " it's", + "start": 4419.66, + "end": 4420.8, + "probability": 0.9404296875 + }, + { + "word": " weird", + "start": 4420.8, + "end": 4421.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 4421.04, + "end": 4421.16, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 4421.16, + "end": 4421.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 4421.3, + "end": 4421.48, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 4421.48, + "end": 4421.64, + "probability": 0.99951171875 + }, + { + "word": " sit", + "start": 4421.64, + "end": 4421.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 4421.82, + "end": 4421.9, + "probability": 1.0 + }, + { + "word": " my", + "start": 4421.9, + "end": 4422.0, + "probability": 1.0 + }, + { + "word": " couch", + "start": 4422.0, + "end": 4422.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 4422.26, + "end": 4422.44, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 4422.44, + "end": 4422.62, + "probability": 0.9990234375 + }, + { + "word": " watch", + "start": 4422.62, + "end": 4423.04, + "probability": 0.9140625 + }, + { + "word": " something.", + "start": 4423.04, + "end": 4423.46, + "probability": 1.0 + } + ] + }, + { + "id": 4148, + "text": "Right.", + "start": 4424.02, + "end": 4424.38, + "words": [ + { + "word": " Right.", + "start": 4424.02, + "end": 4424.38, + "probability": 0.8037109375 + } + ] + }, + { + "id": 4149, + "text": "Because the majority of the time that I'm watching something, I'm working or playing a video game.", + "start": 4424.52, + "end": 4428.1, + "words": [ + { + "word": " Because", + "start": 4424.52, + "end": 4424.62, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 4424.62, + "end": 4424.74, + "probability": 0.9990234375 + }, + { + "word": " majority", + "start": 4424.74, + "end": 4424.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 4424.94, + "end": 4425.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 4425.08, + "end": 4425.14, + "probability": 1.0 + }, + { + "word": " time", + "start": 4425.14, + "end": 4425.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 4425.3, + "end": 4425.4, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 4425.4, + "end": 4425.52, + "probability": 1.0 + }, + { + "word": " watching", + "start": 4425.52, + "end": 4425.8, + "probability": 0.99951171875 + }, + { + "word": " something,", + "start": 4425.8, + "end": 4426.08, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4426.22, + "end": 4426.48, + "probability": 1.0 + }, + { + "word": " working", + "start": 4426.48, + "end": 4426.82, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4426.82, + "end": 4427.2, + "probability": 0.99951171875 + }, + { + "word": " playing", + "start": 4427.2, + "end": 4427.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 4427.62, + "end": 4427.76, + "probability": 1.0 + }, + { + "word": " video", + "start": 4427.76, + "end": 4427.9, + "probability": 0.99951171875 + }, + { + "word": " game.", + "start": 4427.9, + "end": 4428.1, + "probability": 1.0 + } + ] + }, + { + "id": 4150, + "text": "So this whole, like, single-screen concept is weird to me now.", + "start": 4429.120000000001, + "end": 4432.42, + "words": [ + { + "word": " So", + "start": 4429.120000000001, + "end": 4429.4800000000005, + "probability": 0.9951171875 + }, + { + "word": " this", + "start": 4429.4800000000005, + "end": 4429.84, + "probability": 0.78515625 + }, + { + "word": " whole,", + "start": 4429.84, + "end": 4430.02, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4430.06, + "end": 4430.22, + "probability": 0.99951171875 + }, + { + "word": " single", + "start": 4430.22, + "end": 4430.5, + "probability": 0.99951171875 + }, + { + "word": "-screen", + "start": 4430.5, + "end": 4430.8, + "probability": 0.73974609375 + }, + { + "word": " concept", + "start": 4430.8, + "end": 4431.36, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4431.36, + "end": 4431.78, + "probability": 1.0 + }, + { + "word": " weird", + "start": 4431.78, + "end": 4432.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 4432.02, + "end": 4432.14, + "probability": 1.0 + }, + { + "word": " me", + "start": 4432.14, + "end": 4432.26, + "probability": 1.0 + }, + { + "word": " now.", + "start": 4432.26, + "end": 4432.42, + "probability": 1.0 + } + ] + }, + { + "id": 4151, + "text": "Yeah.", + "start": 4432.84, + "end": 4433.2, + "words": [ + { + "word": " Yeah.", + "start": 4432.84, + "end": 4433.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4152, + "text": "Yeah, and the OLED stuff now with these TVs is amazing.", + "start": 4433.54, + "end": 4437.78, + "words": [ + { + "word": " Yeah,", + "start": 4433.54, + "end": 4433.9, + "probability": 0.98876953125 + }, + { + "word": " and", + "start": 4433.94, + "end": 4434.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4434.1, + "end": 4434.44, + "probability": 0.99951171875 + }, + { + "word": " OLED", + "start": 4434.44, + "end": 4434.86, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4434.86, + "end": 4435.2, + "probability": 1.0 + }, + { + "word": " now", + "start": 4435.2, + "end": 4435.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 4435.54, + "end": 4435.76, + "probability": 1.0 + }, + { + "word": " these", + "start": 4435.76, + "end": 4435.98, + "probability": 1.0 + }, + { + "word": " TVs", + "start": 4435.98, + "end": 4436.38, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4436.38, + "end": 4437.0, + "probability": 1.0 + }, + { + "word": " amazing.", + "start": 4437.0, + "end": 4437.78, + "probability": 1.0 + } + ] + }, + { + "id": 4153, + "text": "Yeah, and I mean...", + "start": 4437.88, + "end": 4438.62, + "words": [ + { + "word": " Yeah,", + "start": 4437.88, + "end": 4438.24, + "probability": 0.994140625 + }, + { + "word": " and", + "start": 4438.24, + "end": 4438.4, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 4438.4, + "end": 4438.5, + "probability": 0.9951171875 + }, + { + "word": " mean...", + "start": 4438.5, + "end": 4438.62, + "probability": 0.7890625 + } + ] + }, + { + "id": 4154, + "text": "Because they're super thin.", + "start": 4438.62, + "end": 4439.12, + "words": [ + { + "word": " Because", + "start": 4438.62, + "end": 4438.76, + "probability": 0.394775390625 + }, + { + "word": " they're", + "start": 4438.76, + "end": 4438.76, + "probability": 0.9833984375 + }, + { + "word": " super", + "start": 4438.76, + "end": 4438.76, + "probability": 0.99853515625 + }, + { + "word": " thin.", + "start": 4438.76, + "end": 4439.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4155, + "text": "If you have anything over, like, a 70-inch TV,", + "start": 4439.2, + "end": 4441.42, + "words": [ + { + "word": " If", + "start": 4439.2, + "end": 4439.4, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 4439.4, + "end": 4439.52, + "probability": 1.0 + }, + { + "word": " have", + "start": 4439.52, + "end": 4439.7, + "probability": 1.0 + }, + { + "word": " anything", + "start": 4439.7, + "end": 4439.98, + "probability": 1.0 + }, + { + "word": " over,", + "start": 4439.98, + "end": 4440.32, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4440.4, + "end": 4440.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 4440.56, + "end": 4440.68, + "probability": 1.0 + }, + { + "word": " 70", + "start": 4440.68, + "end": 4440.94, + "probability": 1.0 + }, + { + "word": "-inch", + "start": 4440.94, + "end": 4441.22, + "probability": 1.0 + }, + { + "word": " TV,", + "start": 4441.22, + "end": 4441.42, + "probability": 1.0 + } + ] + }, + { + "id": 4156, + "text": "I would definitely want, like, some picture-in-picture mode to be able to do something else.", + "start": 4441.62, + "end": 4445.2, + "words": [ + { + "word": " I", + "start": 4441.62, + "end": 4442.02, + "probability": 1.0 + }, + { + "word": " would", + "start": 4442.02, + "end": 4442.2, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 4442.2, + "end": 4442.48, + "probability": 1.0 + }, + { + "word": " want,", + "start": 4442.48, + "end": 4442.78, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4442.84, + "end": 4443.06, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 4443.08, + "end": 4443.2, + "probability": 0.99951171875 + }, + { + "word": " picture", + "start": 4443.2, + "end": 4443.48, + "probability": 0.99462890625 + }, + { + "word": "-in", + "start": 4443.48, + "end": 4443.62, + "probability": 0.9990234375 + }, + { + "word": "-picture", + "start": 4443.62, + "end": 4443.84, + "probability": 0.99951171875 + }, + { + "word": " mode", + "start": 4443.84, + "end": 4444.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4444.02, + "end": 4444.2, + "probability": 1.0 + }, + { + "word": " be", + "start": 4444.2, + "end": 4444.32, + "probability": 1.0 + }, + { + "word": " able", + "start": 4444.32, + "end": 4444.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 4444.48, + "end": 4444.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 4444.64, + "end": 4444.76, + "probability": 1.0 + }, + { + "word": " something", + "start": 4444.76, + "end": 4444.92, + "probability": 1.0 + }, + { + "word": " else.", + "start": 4444.92, + "end": 4445.2, + "probability": 1.0 + } + ] + }, + { + "id": 4157, + "text": "Yeah.", + "start": 4445.740000000001, + "end": 4446.1, + "words": [ + { + "word": " Yeah.", + "start": 4445.740000000001, + "end": 4446.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4158, + "text": "Yeah.", + "start": 4446.26, + "end": 4446.62, + "words": [ + { + "word": " Yeah.", + "start": 4446.26, + "end": 4446.62, + "probability": 0.96875 + } + ] + }, + { + "id": 4159, + "text": "Yeah.", + "start": 4446.66, + "end": 4446.9, + "words": [ + { + "word": " Yeah.", + "start": 4446.66, + "end": 4446.9, + "probability": 0.0022525787353515625 + } + ] + }, + { + "id": 4160, + "text": "Personally, I mean...", + "start": 4447.6, + "end": 4448.48, + "words": [ + { + "word": " Personally,", + "start": 4447.6, + "end": 4447.96, + "probability": 0.9814453125 + }, + { + "word": " I", + "start": 4448.16, + "end": 4448.3, + "probability": 1.0 + }, + { + "word": " mean...", + "start": 4448.3, + "end": 4448.48, + "probability": 0.5419921875 + } + ] + }, + { + "id": 4161, + "text": "I don't really watch TV.", + "start": 4448.7, + "end": 4450.2, + "words": [ + { + "word": " I", + "start": 4448.7, + "end": 4448.78, + "probability": 0.96728515625 + }, + { + "word": " don't", + "start": 4448.78, + "end": 4449.32, + "probability": 0.9755859375 + }, + { + "word": " really", + "start": 4449.32, + "end": 4449.46, + "probability": 1.0 + }, + { + "word": " watch", + "start": 4449.46, + "end": 4449.72, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 4449.72, + "end": 4450.2, + "probability": 0.998046875 + } + ] + }, + { + "id": 4162, + "text": "Yeah.", + "start": 4450.42, + "end": 4450.82, + "words": [ + { + "word": " Yeah.", + "start": 4450.42, + "end": 4450.82, + "probability": 0.712890625 + } + ] + }, + { + "id": 4163, + "text": "Right.", + "start": 4450.86, + "end": 4451.02, + "words": [ + { + "word": " Right.", + "start": 4450.86, + "end": 4451.02, + "probability": 0.307373046875 + } + ] + }, + { + "id": 4164, + "text": "So, I mean, any of my media viewing is generally happening on my computer at home.", + "start": 4451.08, + "end": 4456.72, + "words": [ + { + "word": " So,", + "start": 4451.08, + "end": 4451.34, + "probability": 0.9873046875 + }, + { + "word": " I", + "start": 4451.34, + "end": 4451.56, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 4451.56, + "end": 4451.7, + "probability": 1.0 + }, + { + "word": " any", + "start": 4451.72, + "end": 4451.92, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4451.92, + "end": 4452.1, + "probability": 1.0 + }, + { + "word": " my", + "start": 4452.1, + "end": 4452.44, + "probability": 1.0 + }, + { + "word": " media", + "start": 4452.44, + "end": 4453.56, + "probability": 0.51318359375 + }, + { + "word": " viewing", + "start": 4453.56, + "end": 4454.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 4454.58, + "end": 4455.02, + "probability": 1.0 + }, + { + "word": " generally", + "start": 4455.02, + "end": 4455.26, + "probability": 0.99951171875 + }, + { + "word": " happening", + "start": 4455.26, + "end": 4455.66, + "probability": 1.0 + }, + { + "word": " on", + "start": 4455.66, + "end": 4455.84, + "probability": 1.0 + }, + { + "word": " my", + "start": 4455.84, + "end": 4455.94, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4455.94, + "end": 4456.24, + "probability": 1.0 + }, + { + "word": " at", + "start": 4456.24, + "end": 4456.44, + "probability": 0.9931640625 + }, + { + "word": " home.", + "start": 4456.44, + "end": 4456.72, + "probability": 1.0 + } + ] + }, + { + "id": 4165, + "text": "And I have five monitors.", + "start": 4456.8, + "end": 4458.06, + "words": [ + { + "word": " And", + "start": 4456.8, + "end": 4457.04, + "probability": 0.787109375 + }, + { + "word": " I", + "start": 4457.04, + "end": 4457.12, + "probability": 0.99755859375 + }, + { + "word": " have", + "start": 4457.12, + "end": 4457.24, + "probability": 1.0 + }, + { + "word": " five", + "start": 4457.24, + "end": 4457.54, + "probability": 0.9990234375 + }, + { + "word": " monitors.", + "start": 4457.54, + "end": 4458.06, + "probability": 1.0 + } + ] + }, + { + "id": 4166, + "text": "Sorry.", + "start": 4458.38, + "end": 4458.78, + "words": [ + { + "word": " Sorry.", + "start": 4458.38, + "end": 4458.78, + "probability": 0.314697265625 + } + ] + }, + { + "id": 4167, + "text": "So I can just dedicate...", + "start": 4458.84, + "end": 4460.32, + "words": [ + { + "word": " So", + "start": 4458.84, + "end": 4459.0, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 4459.0, + "end": 4459.2, + "probability": 0.6513671875 + }, + { + "word": " can", + "start": 4459.2, + "end": 4459.36, + "probability": 1.0 + }, + { + "word": " just", + "start": 4459.36, + "end": 4459.52, + "probability": 1.0 + }, + { + "word": " dedicate...", + "start": 4459.52, + "end": 4460.32, + "probability": 0.51416015625 + } + ] + }, + { + "id": 4168, + "text": "One of them's actually a TV.", + "start": 4460.32, + "end": 4461.92, + "words": [ + { + "word": " One", + "start": 4460.32, + "end": 4460.7, + "probability": 0.92578125 + }, + { + "word": " of", + "start": 4460.7, + "end": 4460.82, + "probability": 1.0 + }, + { + "word": " them's", + "start": 4460.82, + "end": 4461.04, + "probability": 0.626953125 + }, + { + "word": " actually", + "start": 4461.04, + "end": 4461.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 4461.34, + "end": 4461.58, + "probability": 1.0 + }, + { + "word": " TV.", + "start": 4461.58, + "end": 4461.92, + "probability": 1.0 + } + ] + }, + { + "id": 4169, + "text": "Are you like...", + "start": 4462.360000000001, + "end": 4463.16, + "words": [ + { + "word": " Are", + "start": 4462.360000000001, + "end": 4462.76, + "probability": 0.9208984375 + }, + { + "word": " you", + "start": 4462.76, + "end": 4462.92, + "probability": 1.0 + }, + { + "word": " like...", + "start": 4462.92, + "end": 4463.16, + "probability": 0.9599609375 + } + ] + }, + { + "id": 4170, + "text": "Who was it in Batman where he's watching, like, all the cell phone feeds at once?", + "start": 4463.16, + "end": 4467.5, + "words": [ + { + "word": " Who", + "start": 4463.16, + "end": 4463.48, + "probability": 0.99560546875 + }, + { + "word": " was", + "start": 4463.48, + "end": 4463.6, + "probability": 0.9873046875 + }, + { + "word": " it", + "start": 4463.6, + "end": 4463.72, + "probability": 1.0 + }, + { + "word": " in", + "start": 4463.72, + "end": 4463.82, + "probability": 0.99951171875 + }, + { + "word": " Batman", + "start": 4463.82, + "end": 4464.34, + "probability": 1.0 + }, + { + "word": " where", + "start": 4464.34, + "end": 4464.64, + "probability": 0.9638671875 + }, + { + "word": " he's", + "start": 4464.64, + "end": 4464.78, + "probability": 1.0 + }, + { + "word": " watching,", + "start": 4464.78, + "end": 4465.06, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4465.12, + "end": 4465.32, + "probability": 1.0 + }, + { + "word": " all", + "start": 4465.32, + "end": 4465.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4465.48, + "end": 4465.64, + "probability": 1.0 + }, + { + "word": " cell", + "start": 4465.64, + "end": 4465.84, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 4465.84, + "end": 4466.08, + "probability": 1.0 + }, + { + "word": " feeds", + "start": 4466.08, + "end": 4467.0, + "probability": 0.7998046875 + }, + { + "word": " at", + "start": 4467.0, + "end": 4467.22, + "probability": 0.99951171875 + }, + { + "word": " once?", + "start": 4467.22, + "end": 4467.5, + "probability": 1.0 + } + ] + }, + { + "id": 4171, + "text": "But, you know, I try to break things up so that it gives me...", + "start": 4468.68, + "end": 4472.48, + "words": [ + { + "word": " But,", + "start": 4468.68, + "end": 4469.08, + "probability": 0.68115234375 + }, + { + "word": " you", + "start": 4469.08, + "end": 4469.48, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4469.48, + "end": 4469.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 4469.64, + "end": 4469.7, + "probability": 1.0 + }, + { + "word": " try", + "start": 4469.7, + "end": 4469.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 4469.82, + "end": 4469.94, + "probability": 1.0 + }, + { + "word": " break", + "start": 4469.94, + "end": 4470.1, + "probability": 1.0 + }, + { + "word": " things", + "start": 4470.1, + "end": 4470.3, + "probability": 1.0 + }, + { + "word": " up", + "start": 4470.3, + "end": 4470.56, + "probability": 1.0 + }, + { + "word": " so", + "start": 4470.56, + "end": 4470.92, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 4470.92, + "end": 4471.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 4471.16, + "end": 4471.36, + "probability": 1.0 + }, + { + "word": " gives", + "start": 4471.36, + "end": 4471.58, + "probability": 1.0 + }, + { + "word": " me...", + "start": 4471.58, + "end": 4472.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 4172, + "text": "I don't know.", + "start": 4472.48, + "end": 4472.9, + "words": [ + { + "word": " I", + "start": 4472.48, + "end": 4472.64, + "probability": 0.99853515625 + }, + { + "word": " don't", + "start": 4472.64, + "end": 4472.82, + "probability": 1.0 + }, + { + "word": " know.", + "start": 4472.82, + "end": 4472.9, + "probability": 1.0 + } + ] + }, + { + "id": 4173, + "text": "It's sort of like you when you organize your desk.", + "start": 4472.94, + "end": 4474.96, + "words": [ + { + "word": " It's", + "start": 4472.94, + "end": 4473.06, + "probability": 1.0 + }, + { + "word": " sort", + "start": 4473.06, + "end": 4473.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 4473.52, + "end": 4473.62, + "probability": 1.0 + }, + { + "word": " like", + "start": 4473.62, + "end": 4473.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 4473.76, + "end": 4473.94, + "probability": 0.5830078125 + }, + { + "word": " when", + "start": 4473.94, + "end": 4474.1, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4474.1, + "end": 4474.2, + "probability": 1.0 + }, + { + "word": " organize", + "start": 4474.2, + "end": 4474.48, + "probability": 1.0 + }, + { + "word": " your", + "start": 4474.48, + "end": 4474.7, + "probability": 1.0 + }, + { + "word": " desk.", + "start": 4474.7, + "end": 4474.96, + "probability": 1.0 + } + ] + }, + { + "id": 4174, + "text": "Yeah.", + "start": 4475.06, + "end": 4475.26, + "words": [ + { + "word": " Yeah.", + "start": 4475.06, + "end": 4475.26, + "probability": 0.982421875 + } + ] + }, + { + "id": 4175, + "text": "It's the same thing when I'm organizing what's on what monitor.", + "start": 4475.34, + "end": 4477.76, + "words": [ + { + "word": " It's", + "start": 4475.34, + "end": 4475.62, + "probability": 0.56787109375 + }, + { + "word": " the", + "start": 4475.62, + "end": 4475.62, + "probability": 0.96484375 + }, + { + "word": " same", + "start": 4475.62, + "end": 4475.84, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4475.84, + "end": 4476.0, + "probability": 1.0 + }, + { + "word": " when", + "start": 4476.0, + "end": 4476.16, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4476.16, + "end": 4476.38, + "probability": 1.0 + }, + { + "word": " organizing", + "start": 4476.38, + "end": 4476.76, + "probability": 1.0 + }, + { + "word": " what's", + "start": 4476.76, + "end": 4477.06, + "probability": 1.0 + }, + { + "word": " on", + "start": 4477.06, + "end": 4477.14, + "probability": 1.0 + }, + { + "word": " what", + "start": 4477.14, + "end": 4477.38, + "probability": 1.0 + }, + { + "word": " monitor.", + "start": 4477.38, + "end": 4477.76, + "probability": 1.0 + } + ] + }, + { + "id": 4176, + "text": "Yeah.", + "start": 4478.18, + "end": 4478.56, + "words": [ + { + "word": " Yeah.", + "start": 4478.18, + "end": 4478.56, + "probability": 0.98291015625 + } + ] + }, + { + "id": 4177, + "text": "I do the same thing.", + "start": 4478.66, + "end": 4479.38, + "words": [ + { + "word": " I", + "start": 4478.66, + "end": 4478.72, + "probability": 0.99365234375 + }, + { + "word": " do", + "start": 4478.72, + "end": 4478.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4478.88, + "end": 4478.98, + "probability": 1.0 + }, + { + "word": " same", + "start": 4478.98, + "end": 4479.18, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 4479.18, + "end": 4479.38, + "probability": 1.0 + } + ] + }, + { + "id": 4178, + "text": "I mean, like, when I'm working, I'll have...", + "start": 4479.48, + "end": 4480.86, + "words": [ + { + "word": " I", + "start": 4479.48, + "end": 4479.56, + "probability": 0.93798828125 + }, + { + "word": " mean,", + "start": 4479.56, + "end": 4479.66, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4479.66, + "end": 4479.84, + "probability": 0.89599609375 + }, + { + "word": " when", + "start": 4479.9, + "end": 4479.98, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4479.98, + "end": 4480.1, + "probability": 1.0 + }, + { + "word": " working,", + "start": 4480.1, + "end": 4480.34, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 4480.42, + "end": 4480.52, + "probability": 0.95556640625 + }, + { + "word": " have...", + "start": 4480.52, + "end": 4480.86, + "probability": 0.52001953125 + } + ] + }, + { + "id": 4179, + "text": "My monitors are subdivided into the areas that I need.", + "start": 4480.86, + "end": 4483.64, + "words": [ + { + "word": " My", + "start": 4480.86, + "end": 4481.38, + "probability": 0.9140625 + }, + { + "word": " monitors", + "start": 4481.38, + "end": 4481.72, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4481.72, + "end": 4481.92, + "probability": 1.0 + }, + { + "word": " subdivided", + "start": 4481.92, + "end": 4482.5, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 4482.5, + "end": 4482.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4482.66, + "end": 4482.82, + "probability": 1.0 + }, + { + "word": " areas", + "start": 4482.82, + "end": 4483.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 4483.1, + "end": 4483.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 4483.3, + "end": 4483.42, + "probability": 1.0 + }, + { + "word": " need.", + "start": 4483.42, + "end": 4483.64, + "probability": 1.0 + } + ] + }, + { + "id": 4180, + "text": "And even that's...", + "start": 4484.24, + "end": 4485.1, + "words": [ + { + "word": " And", + "start": 4484.24, + "end": 4484.62, + "probability": 0.994140625 + }, + { + "word": " even", + "start": 4484.62, + "end": 4484.84, + "probability": 0.9990234375 + }, + { + "word": " that's...", + "start": 4484.84, + "end": 4485.1, + "probability": 0.98779296875 + } + ] + }, + { + "id": 4181, + "text": "There's a joke when you use multiple displays that you always need one more.", + "start": 4485.1, + "end": 4488.22, + "words": [ + { + "word": " There's", + "start": 4485.1, + "end": 4485.38, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4485.38, + "end": 4485.84, + "probability": 0.99658203125 + }, + { + "word": " joke", + "start": 4485.84, + "end": 4486.08, + "probability": 1.0 + }, + { + "word": " when", + "start": 4486.08, + "end": 4486.24, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4486.24, + "end": 4486.34, + "probability": 1.0 + }, + { + "word": " use", + "start": 4486.34, + "end": 4486.52, + "probability": 1.0 + }, + { + "word": " multiple", + "start": 4486.52, + "end": 4486.8, + "probability": 1.0 + }, + { + "word": " displays", + "start": 4486.8, + "end": 4487.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 4487.12, + "end": 4487.38, + "probability": 0.9873046875 + }, + { + "word": " you", + "start": 4487.38, + "end": 4487.5, + "probability": 1.0 + }, + { + "word": " always", + "start": 4487.5, + "end": 4487.68, + "probability": 1.0 + }, + { + "word": " need", + "start": 4487.68, + "end": 4487.86, + "probability": 1.0 + }, + { + "word": " one", + "start": 4487.86, + "end": 4488.02, + "probability": 1.0 + }, + { + "word": " more.", + "start": 4488.02, + "end": 4488.22, + "probability": 1.0 + } + ] + }, + { + "id": 4182, + "text": "Yeah.", + "start": 4488.9, + "end": 4489.28, + "words": [ + { + "word": " Yeah.", + "start": 4488.9, + "end": 4489.28, + "probability": 0.97998046875 + } + ] + }, + { + "id": 4183, + "text": "There's no such thing as having enough monitors.", + "start": 4489.36, + "end": 4491.2, + "words": [ + { + "word": " There's", + "start": 4489.36, + "end": 4489.6, + "probability": 0.9990234375 + }, + { + "word": " no", + "start": 4489.6, + "end": 4489.7, + "probability": 1.0 + }, + { + "word": " such", + "start": 4489.7, + "end": 4489.92, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4489.92, + "end": 4490.14, + "probability": 1.0 + }, + { + "word": " as", + "start": 4490.14, + "end": 4490.32, + "probability": 1.0 + }, + { + "word": " having", + "start": 4490.32, + "end": 4490.48, + "probability": 1.0 + }, + { + "word": " enough", + "start": 4490.48, + "end": 4490.82, + "probability": 1.0 + }, + { + "word": " monitors.", + "start": 4490.82, + "end": 4491.2, + "probability": 1.0 + } + ] + }, + { + "id": 4184, + "text": "Well, until you run out of room.", + "start": 4491.7, + "end": 4492.96, + "words": [ + { + "word": " Well,", + "start": 4491.7, + "end": 4492.08, + "probability": 0.99951171875 + }, + { + "word": " until", + "start": 4492.16, + "end": 4492.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 4492.32, + "end": 4492.5, + "probability": 1.0 + }, + { + "word": " run", + "start": 4492.5, + "end": 4492.6, + "probability": 0.99853515625 + }, + { + "word": " out", + "start": 4492.6, + "end": 4492.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 4492.72, + "end": 4492.78, + "probability": 1.0 + }, + { + "word": " room.", + "start": 4492.78, + "end": 4492.96, + "probability": 1.0 + } + ] + }, + { + "id": 4185, + "text": "Yeah.", + "start": 4493.92, + "end": 4494.3, + "words": [ + { + "word": " Yeah.", + "start": 4493.92, + "end": 4494.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4186, + "text": "Right.", + "start": 4494.64, + "end": 4495.02, + "words": [ + { + "word": " Right.", + "start": 4494.64, + "end": 4495.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4187, + "text": "Now, we've got a client that has 12 monitors on one computer.", + "start": 4495.12, + "end": 4500.74, + "words": [ + { + "word": " Now,", + "start": 4495.12, + "end": 4495.34, + "probability": 0.99169921875 + }, + { + "word": " we've", + "start": 4495.34, + "end": 4495.82, + "probability": 1.0 + }, + { + "word": " got", + "start": 4495.82, + "end": 4495.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 4495.98, + "end": 4496.52, + "probability": 0.99755859375 + }, + { + "word": " client", + "start": 4496.52, + "end": 4496.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 4496.94, + "end": 4497.52, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 4497.52, + "end": 4497.8, + "probability": 1.0 + }, + { + "word": " 12", + "start": 4497.8, + "end": 4499.46, + "probability": 0.99560546875 + }, + { + "word": " monitors", + "start": 4499.46, + "end": 4499.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 4499.88, + "end": 4500.16, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 4500.16, + "end": 4500.38, + "probability": 0.99951171875 + }, + { + "word": " computer.", + "start": 4500.38, + "end": 4500.74, + "probability": 1.0 + } + ] + }, + { + "id": 4188, + "text": "And then he has another computer that runs another eight right now.", + "start": 4501.28, + "end": 4504.28, + "words": [ + { + "word": " And", + "start": 4501.28, + "end": 4501.66, + "probability": 1.0 + }, + { + "word": " then", + "start": 4501.66, + "end": 4501.8, + "probability": 1.0 + }, + { + "word": " he", + "start": 4501.8, + "end": 4501.88, + "probability": 0.98974609375 + }, + { + "word": " has", + "start": 4501.88, + "end": 4501.96, + "probability": 1.0 + }, + { + "word": " another", + "start": 4501.96, + "end": 4502.2, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4502.2, + "end": 4502.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 4502.54, + "end": 4502.7, + "probability": 1.0 + }, + { + "word": " runs", + "start": 4502.7, + "end": 4502.82, + "probability": 1.0 + }, + { + "word": " another", + "start": 4502.82, + "end": 4503.02, + "probability": 1.0 + }, + { + "word": " eight", + "start": 4503.02, + "end": 4503.44, + "probability": 0.81298828125 + }, + { + "word": " right", + "start": 4503.44, + "end": 4504.08, + "probability": 0.99560546875 + }, + { + "word": " now.", + "start": 4504.08, + "end": 4504.28, + "probability": 1.0 + } + ] + }, + { + "id": 4189, + "text": "That's crazy.", + "start": 4504.96, + "end": 4505.64, + "words": [ + { + "word": " That's", + "start": 4504.96, + "end": 4505.34, + "probability": 1.0 + }, + { + "word": " crazy.", + "start": 4505.34, + "end": 4505.64, + "probability": 1.0 + } + ] + }, + { + "id": 4190, + "text": "Right.", + "start": 4505.8, + "end": 4506.1, + "words": [ + { + "word": " Right.", + "start": 4505.8, + "end": 4506.1, + "probability": 0.98291015625 + } + ] + }, + { + "id": 4191, + "text": "That's a lot of work for me.", + "start": 4506.14, + "end": 4506.6, + "words": [ + { + "word": " That's", + "start": 4506.14, + "end": 4506.36, + "probability": 0.7626953125 + }, + { + "word": " a", + "start": 4506.36, + "end": 4506.36, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4506.36, + "end": 4506.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 4506.44, + "end": 4506.6, + "probability": 0.9990234375 + }, + { + "word": " work", + "start": 4506.6, + "end": 4506.6, + "probability": 0.63134765625 + }, + { + "word": " for", + "start": 4506.6, + "end": 4506.6, + "probability": 0.404052734375 + }, + { + "word": " me.", + "start": 4506.6, + "end": 4506.6, + "probability": 0.6650390625 + } + ] + }, + { + "id": 4192, + "text": "And they're right next to each other.", + "start": 4506.6, + "end": 4507.54, + "words": [ + { + "word": " And", + "start": 4506.6, + "end": 4506.64, + "probability": 0.9462890625 + }, + { + "word": " they're", + "start": 4506.64, + "end": 4506.72, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 4506.72, + "end": 4506.84, + "probability": 1.0 + }, + { + "word": " next", + "start": 4506.84, + "end": 4507.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 4507.08, + "end": 4507.24, + "probability": 1.0 + }, + { + "word": " each", + "start": 4507.24, + "end": 4507.32, + "probability": 1.0 + }, + { + "word": " other.", + "start": 4507.32, + "end": 4507.54, + "probability": 1.0 + } + ] + }, + { + "id": 4193, + "text": "Right.", + "start": 4507.56, + "end": 4507.74, + "words": [ + { + "word": " Right.", + "start": 4507.56, + "end": 4507.74, + "probability": 0.26611328125 + } + ] + }, + { + "id": 4194, + "text": "", + "start": 4507.74, + "end": 4507.74, + "words": [] + }, + { + "id": 4195, + "text": "Both keyboards are on the same desk.", + "start": 4507.76, + "end": 4509.6, + "words": [ + { + "word": " Both", + "start": 4507.76, + "end": 4508.12, + "probability": 0.76416015625 + }, + { + "word": " keyboards", + "start": 4508.12, + "end": 4508.82, + "probability": 1.0 + }, + { + "word": " are", + "start": 4508.82, + "end": 4508.96, + "probability": 0.65478515625 + }, + { + "word": " on", + "start": 4508.96, + "end": 4509.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 4509.02, + "end": 4509.12, + "probability": 1.0 + }, + { + "word": " same", + "start": 4509.12, + "end": 4509.28, + "probability": 1.0 + }, + { + "word": " desk.", + "start": 4509.28, + "end": 4509.6, + "probability": 1.0 + } + ] + }, + { + "id": 4196, + "text": "You know, there's this great number of relatively small monitors all over the place.", + "start": 4509.72, + "end": 4516.0, + "words": [ + { + "word": " You", + "start": 4509.72, + "end": 4509.78, + "probability": 0.290771484375 + }, + { + "word": " know,", + "start": 4509.78, + "end": 4509.9, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4509.94, + "end": 4510.24, + "probability": 1.0 + }, + { + "word": " this", + "start": 4510.24, + "end": 4510.8, + "probability": 0.939453125 + }, + { + "word": " great", + "start": 4510.8, + "end": 4512.14, + "probability": 1.0 + }, + { + "word": " number", + "start": 4512.14, + "end": 4512.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 4512.48, + "end": 4512.76, + "probability": 1.0 + }, + { + "word": " relatively", + "start": 4512.76, + "end": 4513.62, + "probability": 1.0 + }, + { + "word": " small", + "start": 4513.62, + "end": 4514.0, + "probability": 1.0 + }, + { + "word": " monitors", + "start": 4514.0, + "end": 4514.4, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4514.4, + "end": 4515.38, + "probability": 0.99560546875 + }, + { + "word": " over", + "start": 4515.38, + "end": 4515.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 4515.72, + "end": 4515.84, + "probability": 1.0 + }, + { + "word": " place.", + "start": 4515.84, + "end": 4516.0, + "probability": 1.0 + } + ] + }, + { + "id": 4197, + "text": "Now, I understand what he's trying to do.", + "start": 4516.06, + "end": 4517.66, + "words": [ + { + "word": " Now,", + "start": 4516.06, + "end": 4516.16, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 4516.24, + "end": 4516.78, + "probability": 1.0 + }, + { + "word": " understand", + "start": 4516.78, + "end": 4516.98, + "probability": 1.0 + }, + { + "word": " what", + "start": 4516.98, + "end": 4517.18, + "probability": 1.0 + }, + { + "word": " he's", + "start": 4517.18, + "end": 4517.3, + "probability": 1.0 + }, + { + "word": " trying", + "start": 4517.3, + "end": 4517.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4517.46, + "end": 4517.56, + "probability": 1.0 + }, + { + "word": " do.", + "start": 4517.56, + "end": 4517.66, + "probability": 1.0 + } + ] + }, + { + "id": 4198, + "text": "He's a day trader, whatever.", + "start": 4517.7, + "end": 4518.48, + "words": [ + { + "word": " He's", + "start": 4517.7, + "end": 4517.84, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4517.84, + "end": 4517.86, + "probability": 0.919921875 + }, + { + "word": " day", + "start": 4517.86, + "end": 4518.0, + "probability": 0.9970703125 + }, + { + "word": " trader,", + "start": 4518.0, + "end": 4518.24, + "probability": 0.99951171875 + }, + { + "word": " whatever.", + "start": 4518.32, + "end": 4518.48, + "probability": 1.0 + } + ] + }, + { + "id": 4199, + "text": "Yeah.", + "start": 4518.66, + "end": 4518.88, + "words": [ + { + "word": " Yeah.", + "start": 4518.66, + "end": 4518.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4200, + "text": "I was going to say, there's only really two things you can be using that for.", + "start": 4518.88, + "end": 4521.54, + "words": [ + { + "word": " I", + "start": 4518.88, + "end": 4519.1, + "probability": 0.98876953125 + }, + { + "word": " was", + "start": 4519.1, + "end": 4519.18, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 4519.18, + "end": 4519.24, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4519.24, + "end": 4519.34, + "probability": 1.0 + }, + { + "word": " say,", + "start": 4519.34, + "end": 4519.48, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4519.5, + "end": 4519.68, + "probability": 1.0 + }, + { + "word": " only", + "start": 4519.68, + "end": 4519.78, + "probability": 1.0 + }, + { + "word": " really", + "start": 4519.78, + "end": 4519.98, + "probability": 1.0 + }, + { + "word": " two", + "start": 4519.98, + "end": 4520.3, + "probability": 1.0 + }, + { + "word": " things", + "start": 4520.3, + "end": 4520.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 4520.58, + "end": 4520.76, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 4520.76, + "end": 4520.84, + "probability": 1.0 + }, + { + "word": " be", + "start": 4520.84, + "end": 4520.94, + "probability": 1.0 + }, + { + "word": " using", + "start": 4520.94, + "end": 4521.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 4521.18, + "end": 4521.32, + "probability": 1.0 + }, + { + "word": " for.", + "start": 4521.32, + "end": 4521.54, + "probability": 1.0 + } + ] + }, + { + "id": 4201, + "text": "He wants graphs on all the things.", + "start": 4521.66, + "end": 4523.56, + "words": [ + { + "word": " He", + "start": 4521.66, + "end": 4521.76, + "probability": 0.953125 + }, + { + "word": " wants", + "start": 4521.76, + "end": 4522.02, + "probability": 1.0 + }, + { + "word": " graphs", + "start": 4522.02, + "end": 4522.54, + "probability": 0.89111328125 + }, + { + "word": " on", + "start": 4522.54, + "end": 4522.94, + "probability": 1.0 + }, + { + "word": " all", + "start": 4522.94, + "end": 4523.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 4523.1, + "end": 4523.26, + "probability": 0.89501953125 + }, + { + "word": " things.", + "start": 4523.26, + "end": 4523.56, + "probability": 1.0 + } + ] + }, + { + "id": 4202, + "text": "But still, at some point, it's just like, how do you pay attention to all that?", + "start": 4524.76, + "end": 4527.52, + "words": [ + { + "word": " But", + "start": 4524.76, + "end": 4525.08, + "probability": 0.92919921875 + }, + { + "word": " still,", + "start": 4525.08, + "end": 4525.4, + "probability": 0.99365234375 + }, + { + "word": " at", + "start": 4525.46, + "end": 4525.58, + "probability": 1.0 + }, + { + "word": " some", + "start": 4525.58, + "end": 4525.72, + "probability": 1.0 + }, + { + "word": " point,", + "start": 4525.72, + "end": 4525.96, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4525.98, + "end": 4526.14, + "probability": 1.0 + }, + { + "word": " just", + "start": 4526.14, + "end": 4526.22, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4526.22, + "end": 4526.44, + "probability": 0.99560546875 + }, + { + "word": " how", + "start": 4526.5, + "end": 4526.72, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4526.72, + "end": 4526.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 4526.82, + "end": 4526.84, + "probability": 1.0 + }, + { + "word": " pay", + "start": 4526.84, + "end": 4526.92, + "probability": 1.0 + }, + { + "word": " attention", + "start": 4526.92, + "end": 4527.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 4527.14, + "end": 4527.3, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 4527.3, + "end": 4527.38, + "probability": 1.0 + }, + { + "word": " that?", + "start": 4527.38, + "end": 4527.52, + "probability": 1.0 + } + ] + }, + { + "id": 4203, + "text": "You know, that reminds me.", + "start": 4527.64, + "end": 4528.86, + "words": [ + { + "word": " You", + "start": 4527.64, + "end": 4527.96, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 4527.96, + "end": 4528.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 4528.14, + "end": 4528.22, + "probability": 1.0 + }, + { + "word": " reminds", + "start": 4528.22, + "end": 4528.54, + "probability": 1.0 + }, + { + "word": " me.", + "start": 4528.54, + "end": 4528.86, + "probability": 1.0 + } + ] + }, + { + "id": 4204, + "text": "I just...", + "start": 4528.94, + "end": 4529.22, + "words": [ + { + "word": " I", + "start": 4528.94, + "end": 4528.94, + "probability": 0.44140625 + }, + { + "word": " just...", + "start": 4528.94, + "end": 4529.22, + "probability": 0.50390625 + } + ] + }, + { + "id": 4205, + "text": "Recently, I set up my computer monitors at work to look at all the cryptocurrencies.", + "start": 4529.22, + "end": 4533.52, + "words": [ + { + "word": " Recently,", + "start": 4529.22, + "end": 4529.84, + "probability": 0.98779296875 + }, + { + "word": " I", + "start": 4529.88, + "end": 4530.04, + "probability": 1.0 + }, + { + "word": " set", + "start": 4530.04, + "end": 4530.2, + "probability": 1.0 + }, + { + "word": " up", + "start": 4530.2, + "end": 4530.3, + "probability": 1.0 + }, + { + "word": " my", + "start": 4530.3, + "end": 4530.46, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4530.46, + "end": 4531.42, + "probability": 1.0 + }, + { + "word": " monitors", + "start": 4531.42, + "end": 4531.94, + "probability": 1.0 + }, + { + "word": " at", + "start": 4531.94, + "end": 4532.16, + "probability": 1.0 + }, + { + "word": " work", + "start": 4532.16, + "end": 4532.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 4532.34, + "end": 4532.54, + "probability": 1.0 + }, + { + "word": " look", + "start": 4532.54, + "end": 4532.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 4532.74, + "end": 4532.9, + "probability": 1.0 + }, + { + "word": " all", + "start": 4532.9, + "end": 4533.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 4533.04, + "end": 4533.16, + "probability": 1.0 + }, + { + "word": " cryptocurrencies.", + "start": 4533.16, + "end": 4533.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4206, + "text": "And I was like...", + "start": 4533.7, + "end": 4534.62, + "words": [ + { + "word": " And", + "start": 4533.7, + "end": 4534.02, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 4534.02, + "end": 4534.06, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4534.06, + "end": 4534.32, + "probability": 1.0 + }, + { + "word": " like...", + "start": 4534.32, + "end": 4534.62, + "probability": 0.6669921875 + } + ] + }, + { + "id": 4207, + "text": "The same thing.", + "start": 4534.62, + "end": 4535.38, + "words": [ + { + "word": " The", + "start": 4534.62, + "end": 4535.02, + "probability": 0.99609375 + }, + { + "word": " same", + "start": 4535.02, + "end": 4535.22, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 4535.22, + "end": 4535.38, + "probability": 1.0 + } + ] + }, + { + "id": 4208, + "text": "And I called Howard, and I was like, I'm basically Gordon Gekko now.", + "start": 4535.44, + "end": 4537.56, + "words": [ + { + "word": " And", + "start": 4535.44, + "end": 4535.52, + "probability": 0.974609375 + }, + { + "word": " I", + "start": 4535.52, + "end": 4535.52, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 4535.52, + "end": 4535.7, + "probability": 0.99951171875 + }, + { + "word": " Howard,", + "start": 4535.7, + "end": 4535.94, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4535.98, + "end": 4536.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 4536.08, + "end": 4536.2, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4536.2, + "end": 4536.32, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4536.32, + "end": 4536.4, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4536.42, + "end": 4536.52, + "probability": 1.0 + }, + { + "word": " basically", + "start": 4536.52, + "end": 4536.76, + "probability": 1.0 + }, + { + "word": " Gordon", + "start": 4536.76, + "end": 4537.06, + "probability": 0.99951171875 + }, + { + "word": " Gekko", + "start": 4537.06, + "end": 4537.38, + "probability": 0.98876953125 + }, + { + "word": " now.", + "start": 4537.38, + "end": 4537.56, + "probability": 1.0 + } + ] + }, + { + "id": 4209, + "text": "Basically.", + "start": 4539.46, + "end": 4539.94, + "words": [ + { + "word": " Basically.", + "start": 4539.46, + "end": 4539.94, + "probability": 0.9814453125 + } + ] + }, + { + "id": 4210, + "text": "Basically.", + "start": 4540.1, + "end": 4540.44, + "words": [ + { + "word": " Basically.", + "start": 4540.1, + "end": 4540.44, + "probability": 0.8193359375 + } + ] + }, + { + "id": 4211, + "text": "Yeah.", + "start": 4540.48, + "end": 4540.74, + "words": [ + { + "word": " Yeah.", + "start": 4540.48, + "end": 4540.74, + "probability": 0.9697265625 + } + ] + }, + { + "id": 4212, + "text": "We're basically the same person.", + "start": 4540.78, + "end": 4542.06, + "words": [ + { + "word": " We're", + "start": 4540.78, + "end": 4540.94, + "probability": 0.99609375 + }, + { + "word": " basically", + "start": 4540.94, + "end": 4541.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 4541.26, + "end": 4541.5, + "probability": 1.0 + }, + { + "word": " same", + "start": 4541.5, + "end": 4541.72, + "probability": 1.0 + }, + { + "word": " person.", + "start": 4541.72, + "end": 4542.06, + "probability": 1.0 + } + ] + }, + { + "id": 4213, + "text": "Let's go and talk to Robert.", + "start": 4542.68, + "end": 4543.64, + "words": [ + { + "word": " Let's", + "start": 4542.68, + "end": 4543.16, + "probability": 0.947265625 + }, + { + "word": " go", + "start": 4543.16, + "end": 4543.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 4543.18, + "end": 4543.28, + "probability": 0.86865234375 + }, + { + "word": " talk", + "start": 4543.28, + "end": 4543.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 4543.4, + "end": 4543.46, + "probability": 1.0 + }, + { + "word": " Robert.", + "start": 4543.46, + "end": 4543.64, + "probability": 1.0 + } + ] + }, + { + "id": 4214, + "text": "Hello, Robert.", + "start": 4543.76, + "end": 4544.16, + "words": [ + { + "word": " Hello,", + "start": 4543.76, + "end": 4543.92, + "probability": 0.99853515625 + }, + { + "word": " Robert.", + "start": 4543.96, + "end": 4544.16, + "probability": 1.0 + } + ] + }, + { + "id": 4215, + "text": "How are you?", + "start": 4544.22, + "end": 4544.54, + "words": [ + { + "word": " How", + "start": 4544.22, + "end": 4544.32, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 4544.32, + "end": 4544.42, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4544.42, + "end": 4544.54, + "probability": 1.0 + } + ] + }, + { + "id": 4216, + "text": "Hey, man.", + "start": 4545.88, + "end": 4546.78, + "words": [ + { + "word": " Hey,", + "start": 4545.88, + "end": 4546.36, + "probability": 0.99951171875 + }, + { + "word": " man.", + "start": 4546.48, + "end": 4546.78, + "probability": 0.99462890625 + } + ] + }, + { + "id": 4217, + "text": "Hey.", + "start": 4547.18, + "end": 4547.66, + "words": [ + { + "word": " Hey.", + "start": 4547.18, + "end": 4547.66, + "probability": 0.99658203125 + } + ] + }, + { + "id": 4218, + "text": "On the last call, I'm sure it's probably a storage issue.", + "start": 4547.86, + "end": 4551.92, + "words": [ + { + "word": " On", + "start": 4547.86, + "end": 4548.16, + "probability": 0.7265625 + }, + { + "word": " the", + "start": 4548.16, + "end": 4548.26, + "probability": 1.0 + }, + { + "word": " last", + "start": 4548.26, + "end": 4548.48, + "probability": 1.0 + }, + { + "word": " call,", + "start": 4548.48, + "end": 4548.76, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4549.0, + "end": 4549.14, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 4549.14, + "end": 4550.72, + "probability": 0.9765625 + }, + { + "word": " it's", + "start": 4550.72, + "end": 4550.96, + "probability": 0.8759765625 + }, + { + "word": " probably", + "start": 4550.96, + "end": 4551.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 4551.12, + "end": 4551.28, + "probability": 1.0 + }, + { + "word": " storage", + "start": 4551.28, + "end": 4551.58, + "probability": 0.99951171875 + }, + { + "word": " issue.", + "start": 4551.58, + "end": 4551.92, + "probability": 1.0 + } + ] + }, + { + "id": 4219, + "text": "But I had a buffering issue.", + "start": 4552.38, + "end": 4554.6, + "words": [ + { + "word": " But", + "start": 4552.38, + "end": 4552.86, + "probability": 0.98681640625 + }, + { + "word": " I", + "start": 4552.86, + "end": 4553.36, + "probability": 0.986328125 + }, + { + "word": " had", + "start": 4553.36, + "end": 4553.54, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 4553.54, + "end": 4553.66, + "probability": 1.0 + }, + { + "word": " buffering", + "start": 4553.66, + "end": 4554.06, + "probability": 0.9990234375 + }, + { + "word": " issue.", + "start": 4554.06, + "end": 4554.6, + "probability": 1.0 + } + ] + }, + { + "id": 4220, + "text": "And I'm a photographer, and I upload to Dropbox.", + "start": 4554.74, + "end": 4557.66, + "words": [ + { + "word": " And", + "start": 4554.74, + "end": 4554.98, + "probability": 0.87744140625 + }, + { + "word": " I'm", + "start": 4554.98, + "end": 4555.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 4555.4, + "end": 4555.42, + "probability": 1.0 + }, + { + "word": " photographer,", + "start": 4555.42, + "end": 4555.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 4556.06, + "end": 4556.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 4556.28, + "end": 4556.38, + "probability": 1.0 + }, + { + "word": " upload", + "start": 4556.38, + "end": 4556.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4556.76, + "end": 4557.0, + "probability": 1.0 + }, + { + "word": " Dropbox.", + "start": 4557.0, + "end": 4557.66, + "probability": 1.0 + } + ] + }, + { + "id": 4221, + "text": "Right.", + "start": 4558.5, + "end": 4558.98, + "words": [ + { + "word": " Right.", + "start": 4558.5, + "end": 4558.98, + "probability": 0.94970703125 + } + ] + }, + { + "id": 4222, + "text": "And I had buffering issues.", + "start": 4559.02, + "end": 4561.16, + "words": [ + { + "word": " And", + "start": 4559.02, + "end": 4559.28, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 4559.28, + "end": 4560.36, + "probability": 1.0 + }, + { + "word": " had", + "start": 4560.36, + "end": 4560.54, + "probability": 0.96826171875 + }, + { + "word": " buffering", + "start": 4560.54, + "end": 4560.92, + "probability": 1.0 + }, + { + "word": " issues.", + "start": 4560.92, + "end": 4561.16, + "probability": 1.0 + } + ] + }, + { + "id": 4223, + "text": "It was taking 25 minutes to upload to Dropbox.", + "start": 4561.48, + "end": 4567.12, + "words": [ + { + "word": " It", + "start": 4561.48, + "end": 4561.96, + "probability": 0.998046875 + }, + { + "word": " was", + "start": 4561.96, + "end": 4562.24, + "probability": 1.0 + }, + { + "word": " taking", + "start": 4562.24, + "end": 4562.66, + "probability": 1.0 + }, + { + "word": " 25", + "start": 4562.66, + "end": 4564.88, + "probability": 0.9990234375 + }, + { + "word": " minutes", + "start": 4564.88, + "end": 4565.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 4565.64, + "end": 4565.96, + "probability": 0.99951171875 + }, + { + "word": " upload", + "start": 4565.96, + "end": 4566.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 4566.34, + "end": 4566.52, + "probability": 1.0 + }, + { + "word": " Dropbox.", + "start": 4566.52, + "end": 4567.12, + "probability": 1.0 + } + ] + }, + { + "id": 4224, + "text": "So I checked my speed.", + "start": 4568.14, + "end": 4568.94, + "words": [ + { + "word": " So", + "start": 4568.14, + "end": 4568.62, + "probability": 0.0845947265625 + }, + { + "word": " I", + "start": 4568.62, + "end": 4568.62, + "probability": 0.888671875 + }, + { + "word": " checked", + "start": 4568.62, + "end": 4568.76, + "probability": 0.9658203125 + }, + { + "word": " my", + "start": 4568.76, + "end": 4568.94, + "probability": 0.9716796875 + }, + { + "word": " speed.", + "start": 4568.94, + "end": 4568.94, + "probability": 0.9892578125 + } + ] + }, + { + "id": 4225, + "text": "Like one picture?", + "start": 4568.94, + "end": 4569.48, + "words": [ + { + "word": " Like", + "start": 4568.94, + "end": 4568.94, + "probability": 0.93115234375 + }, + { + "word": " one", + "start": 4568.94, + "end": 4569.16, + "probability": 0.97998046875 + }, + { + "word": " picture?", + "start": 4569.16, + "end": 4569.48, + "probability": 0.47265625 + } + ] + }, + { + "id": 4226, + "text": "Or are we talking like, you know, large amounts?", + "start": 4569.6, + "end": 4571.2, + "words": [ + { + "word": " Or", + "start": 4569.6, + "end": 4569.82, + "probability": 0.96484375 + }, + { + "word": " are", + "start": 4569.82, + "end": 4569.9, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 4569.9, + "end": 4569.98, + "probability": 1.0 + }, + { + "word": " talking", + "start": 4569.98, + "end": 4570.2, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4570.2, + "end": 4570.48, + "probability": 0.60009765625 + }, + { + "word": " you", + "start": 4570.52, + "end": 4570.68, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 4570.68, + "end": 4570.78, + "probability": 1.0 + }, + { + "word": " large", + "start": 4570.78, + "end": 4571.04, + "probability": 0.95068359375 + }, + { + "word": " amounts?", + "start": 4571.04, + "end": 4571.2, + "probability": 0.9921875 + } + ] + }, + { + "id": 4227, + "text": "No, we're talking about 40.", + "start": 4571.22, + "end": 4572.42, + "words": [ + { + "word": " No,", + "start": 4571.22, + "end": 4571.38, + "probability": 0.998046875 + }, + { + "word": " we're", + "start": 4571.38, + "end": 4571.6, + "probability": 1.0 + }, + { + "word": " talking", + "start": 4571.6, + "end": 4571.8, + "probability": 1.0 + }, + { + "word": " about", + "start": 4571.8, + "end": 4572.0, + "probability": 1.0 + }, + { + "word": " 40.", + "start": 4572.0, + "end": 4572.42, + "probability": 0.9951171875 + } + ] + }, + { + "id": 4228, + "text": "What's a...", + "start": 4573.14, + "end": 4573.92, + "words": [ + { + "word": " What's", + "start": 4573.14, + "end": 4573.62, + "probability": 0.5029296875 + }, + { + "word": " a...", + "start": 4573.62, + "end": 4573.92, + "probability": 0.3828125 + } + ] + }, + { + "id": 4229, + "text": "I checked my speed, and I wasn't getting the speed I was paying for.", + "start": 4573.92, + "end": 4577.86, + "words": [ + { + "word": " I", + "start": 4573.92, + "end": 4574.26, + "probability": 0.990234375 + }, + { + "word": " checked", + "start": 4574.26, + "end": 4574.36, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4574.36, + "end": 4575.16, + "probability": 0.998046875 + }, + { + "word": " speed,", + "start": 4575.16, + "end": 4575.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 4575.72, + "end": 4575.88, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4575.88, + "end": 4575.92, + "probability": 1.0 + }, + { + "word": " wasn't", + "start": 4575.92, + "end": 4576.2, + "probability": 1.0 + }, + { + "word": " getting", + "start": 4576.2, + "end": 4576.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 4576.4, + "end": 4576.6, + "probability": 0.99951171875 + }, + { + "word": " speed", + "start": 4576.6, + "end": 4576.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 4576.92, + "end": 4577.14, + "probability": 0.99755859375 + }, + { + "word": " was", + "start": 4577.14, + "end": 4577.32, + "probability": 1.0 + }, + { + "word": " paying", + "start": 4577.32, + "end": 4577.56, + "probability": 0.99951171875 + }, + { + "word": " for.", + "start": 4577.56, + "end": 4577.86, + "probability": 1.0 + } + ] + }, + { + "id": 4230, + "text": "I called Cox Cable.", + "start": 4578.0, + "end": 4579.14, + "words": [ + { + "word": " I", + "start": 4578.0, + "end": 4578.1, + "probability": 0.955078125 + }, + { + "word": " called", + "start": 4578.1, + "end": 4578.28, + "probability": 0.95263671875 + }, + { + "word": " Cox", + "start": 4578.28, + "end": 4578.6, + "probability": 0.998046875 + }, + { + "word": " Cable.", + "start": 4578.6, + "end": 4579.14, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4231, + "text": "They were very sorry.", + "start": 4579.2, + "end": 4580.2, + "words": [ + { + "word": " They", + "start": 4579.2, + "end": 4579.38, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4579.38, + "end": 4579.5, + "probability": 1.0 + }, + { + "word": " very", + "start": 4579.5, + "end": 4579.78, + "probability": 1.0 + }, + { + "word": " sorry.", + "start": 4579.78, + "end": 4580.2, + "probability": 1.0 + } + ] + }, + { + "id": 4232, + "text": "That happens on occasion.", + "start": 4581.52, + "end": 4583.04, + "words": [ + { + "word": " That", + "start": 4581.52, + "end": 4582.0, + "probability": 0.88916015625 + }, + { + "word": " happens", + "start": 4582.0, + "end": 4582.38, + "probability": 1.0 + }, + { + "word": " on", + "start": 4582.38, + "end": 4582.76, + "probability": 1.0 + }, + { + "word": " occasion.", + "start": 4582.76, + "end": 4583.04, + "probability": 1.0 + } + ] + }, + { + "id": 4233, + "text": "I'm surprised you got them to say they were sorry.", + "start": 4584.360000000001, + "end": 4586.16, + "words": [ + { + "word": " I'm", + "start": 4584.360000000001, + "end": 4584.84, + "probability": 0.96630859375 + }, + { + "word": " surprised", + "start": 4584.84, + "end": 4585.14, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4585.14, + "end": 4585.32, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 4585.32, + "end": 4585.42, + "probability": 1.0 + }, + { + "word": " them", + "start": 4585.42, + "end": 4585.52, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 4585.52, + "end": 4585.58, + "probability": 1.0 + }, + { + "word": " say", + "start": 4585.58, + "end": 4585.72, + "probability": 1.0 + }, + { + "word": " they", + "start": 4585.72, + "end": 4585.8, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4585.8, + "end": 4585.92, + "probability": 1.0 + }, + { + "word": " sorry.", + "start": 4585.92, + "end": 4586.16, + "probability": 1.0 + } + ] + }, + { + "id": 4234, + "text": "They were very sorry.", + "start": 4587.34, + "end": 4588.64, + "words": [ + { + "word": " They", + "start": 4587.34, + "end": 4587.82, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4587.82, + "end": 4587.94, + "probability": 1.0 + }, + { + "word": " very", + "start": 4587.94, + "end": 4588.22, + "probability": 1.0 + }, + { + "word": " sorry.", + "start": 4588.22, + "end": 4588.64, + "probability": 1.0 + } + ] + }, + { + "id": 4235, + "text": "Yeah?", + "start": 4589.6, + "end": 4590.08, + "words": [ + { + "word": " Yeah?", + "start": 4589.6, + "end": 4590.08, + "probability": 0.966796875 + } + ] + }, + { + "id": 4236, + "text": "Did they...", + "start": 4590.22, + "end": 4590.94, + "words": [ + { + "word": " Did", + "start": 4590.22, + "end": 4590.68, + "probability": 0.7119140625 + }, + { + "word": " they...", + "start": 4590.68, + "end": 4590.94, + "probability": 0.81591796875 + } + ] + }, + { + "id": 4237, + "text": "They gave me two months of the difference between...", + "start": 4591.76, + "end": 4596.26, + "words": [ + { + "word": " They", + "start": 4591.76, + "end": 4592.24, + "probability": 0.99658203125 + }, + { + "word": " gave", + "start": 4592.24, + "end": 4592.52, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 4592.52, + "end": 4592.74, + "probability": 0.99169921875 + }, + { + "word": " two", + "start": 4592.74, + "end": 4593.04, + "probability": 0.99658203125 + }, + { + "word": " months", + "start": 4593.04, + "end": 4593.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 4593.44, + "end": 4593.8, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4593.8, + "end": 4593.98, + "probability": 0.98779296875 + }, + { + "word": " difference", + "start": 4593.98, + "end": 4594.38, + "probability": 1.0 + }, + { + "word": " between...", + "start": 4594.38, + "end": 4596.26, + "probability": 0.8203125 + } + ] + }, + { + "id": 4238, + "text": "Would I go from 5 to 15 or from 15 to 50?", + "start": 4597.76, + "end": 4601.02, + "words": [ + { + "word": " Would", + "start": 4597.76, + "end": 4598.1, + "probability": 0.634765625 + }, + { + "word": " I", + "start": 4598.1, + "end": 4598.22, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 4598.22, + "end": 4598.36, + "probability": 1.0 + }, + { + "word": " from", + "start": 4598.36, + "end": 4598.54, + "probability": 1.0 + }, + { + "word": " 5", + "start": 4598.54, + "end": 4598.9, + "probability": 0.81884765625 + }, + { + "word": " to", + "start": 4598.9, + "end": 4599.06, + "probability": 0.99267578125 + }, + { + "word": " 15", + "start": 4599.06, + "end": 4599.38, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4599.38, + "end": 4599.8, + "probability": 0.9443359375 + }, + { + "word": " from", + "start": 4599.8, + "end": 4600.0, + "probability": 0.9970703125 + }, + { + "word": " 15", + "start": 4600.0, + "end": 4600.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 4600.42, + "end": 4600.72, + "probability": 1.0 + }, + { + "word": " 50?", + "start": 4600.72, + "end": 4601.02, + "probability": 0.99658203125 + } + ] + }, + { + "id": 4239, + "text": "What's that?", + "start": 4601.860000000001, + "end": 4602.36, + "words": [ + { + "word": " What's", + "start": 4601.860000000001, + "end": 4602.34, + "probability": 0.99951171875 + }, + { + "word": " that?", + "start": 4602.34, + "end": 4602.36, + "probability": 1.0 + } + ] + }, + { + "id": 4240, + "text": "Oh, you went from 15 to 50?", + "start": 4602.74, + "end": 4604.12, + "words": [ + { + "word": " Oh,", + "start": 4602.74, + "end": 4603.22, + "probability": 0.80615234375 + }, + { + "word": " you", + "start": 4603.22, + "end": 4603.28, + "probability": 0.974609375 + }, + { + "word": " went", + "start": 4603.28, + "end": 4603.36, + "probability": 0.998046875 + }, + { + "word": " from", + "start": 4603.36, + "end": 4603.52, + "probability": 1.0 + }, + { + "word": " 15", + "start": 4603.52, + "end": 4603.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 4603.86, + "end": 4604.0, + "probability": 1.0 + }, + { + "word": " 50?", + "start": 4604.0, + "end": 4604.12, + "probability": 0.98876953125 + } + ] + }, + { + "id": 4241, + "text": "On the download, did I go from 5 to 15 or 15 to 50?", + "start": 4604.12, + "end": 4608.24, + "words": [ + { + "word": " On", + "start": 4604.12, + "end": 4604.38, + "probability": 0.98828125 + }, + { + "word": " the", + "start": 4604.38, + "end": 4604.38, + "probability": 0.9892578125 + }, + { + "word": " download,", + "start": 4604.38, + "end": 4604.56, + "probability": 0.78271484375 + }, + { + "word": " did", + "start": 4604.86, + "end": 4604.96, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4604.96, + "end": 4605.1, + "probability": 1.0 + }, + { + "word": " go", + "start": 4605.1, + "end": 4605.58, + "probability": 1.0 + }, + { + "word": " from", + "start": 4605.58, + "end": 4605.82, + "probability": 1.0 + }, + { + "word": " 5", + "start": 4605.82, + "end": 4606.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 4606.16, + "end": 4606.44, + "probability": 1.0 + }, + { + "word": " 15", + "start": 4606.44, + "end": 4606.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 4606.8, + "end": 4607.26, + "probability": 1.0 + }, + { + "word": " 15", + "start": 4607.26, + "end": 4607.66, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4607.66, + "end": 4607.96, + "probability": 1.0 + }, + { + "word": " 50?", + "start": 4607.96, + "end": 4608.24, + "probability": 1.0 + } + ] + }, + { + "id": 4242, + "text": "You didn't go 15 to 50 for uploads.", + "start": 4608.48, + "end": 4610.28, + "words": [ + { + "word": " You", + "start": 4608.48, + "end": 4608.78, + "probability": 0.99658203125 + }, + { + "word": " didn't", + "start": 4608.78, + "end": 4609.02, + "probability": 1.0 + }, + { + "word": " go", + "start": 4609.02, + "end": 4609.1, + "probability": 1.0 + }, + { + "word": " 15", + "start": 4609.1, + "end": 4609.38, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 4609.38, + "end": 4609.5, + "probability": 1.0 + }, + { + "word": " 50", + "start": 4609.5, + "end": 4609.76, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4609.76, + "end": 4609.9, + "probability": 0.97900390625 + }, + { + "word": " uploads.", + "start": 4609.9, + "end": 4610.28, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4243, + "text": "But for...", + "start": 4610.52, + "end": 4611.56, + "words": [ + { + "word": " But", + "start": 4610.52, + "end": 4610.84, + "probability": 0.054962158203125 + }, + { + "word": " for...", + "start": 4610.84, + "end": 4611.56, + "probability": 0.84375 + } + ] + }, + { + "id": 4244, + "text": "No, I'm talking about downloads.", + "start": 4611.56, + "end": 4612.86, + "words": [ + { + "word": " No,", + "start": 4611.56, + "end": 4611.98, + "probability": 0.99658203125 + }, + { + "word": " I'm", + "start": 4612.0, + "end": 4612.18, + "probability": 1.0 + }, + { + "word": " talking", + "start": 4612.18, + "end": 4612.28, + "probability": 1.0 + }, + { + "word": " about", + "start": 4612.28, + "end": 4612.42, + "probability": 1.0 + }, + { + "word": " downloads.", + "start": 4612.42, + "end": 4612.86, + "probability": 0.9921875 + } + ] + }, + { + "id": 4245, + "text": "Downloads, you probably went to 50.", + "start": 4613.02, + "end": 4614.08, + "words": [ + { + "word": " Downloads,", + "start": 4613.02, + "end": 4613.44, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 4613.44, + "end": 4613.5, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4613.5, + "end": 4613.6, + "probability": 0.998046875 + }, + { + "word": " went", + "start": 4613.6, + "end": 4613.78, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4613.78, + "end": 4613.86, + "probability": 0.99951171875 + }, + { + "word": " 50.", + "start": 4613.86, + "end": 4614.08, + "probability": 1.0 + } + ] + }, + { + "id": 4246, + "text": "Yeah.", + "start": 4614.96, + "end": 4615.44, + "words": [ + { + "word": " Yeah.", + "start": 4614.96, + "end": 4615.44, + "probability": 0.998046875 + } + ] + }, + { + "id": 4247, + "text": "So they got me up to 50.", + "start": 4615.48, + "end": 4616.86, + "words": [ + { + "word": " So", + "start": 4615.48, + "end": 4615.76, + "probability": 0.99267578125 + }, + { + "word": " they", + "start": 4615.76, + "end": 4615.96, + "probability": 0.73681640625 + }, + { + "word": " got", + "start": 4615.96, + "end": 4616.12, + "probability": 1.0 + }, + { + "word": " me", + "start": 4616.12, + "end": 4616.3, + "probability": 1.0 + }, + { + "word": " up", + "start": 4616.3, + "end": 4616.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 4616.42, + "end": 4616.56, + "probability": 1.0 + }, + { + "word": " 50.", + "start": 4616.56, + "end": 4616.86, + "probability": 1.0 + } + ] + }, + { + "id": 4248, + "text": "Everything working great.", + "start": 4618.060000000001, + "end": 4619.56, + "words": [ + { + "word": " Everything", + "start": 4618.060000000001, + "end": 4618.540000000001, + "probability": 0.99951171875 + }, + { + "word": " working", + "start": 4618.540000000001, + "end": 4619.02, + "probability": 0.85107421875 + }, + { + "word": " great.", + "start": 4619.02, + "end": 4619.56, + "probability": 1.0 + } + ] + }, + { + "id": 4249, + "text": "Well, that's good.", + "start": 4621.8, + "end": 4622.68, + "words": [ + { + "word": " Well,", + "start": 4621.8, + "end": 4622.28, + "probability": 0.986328125 + }, + { + "word": " that's", + "start": 4622.3, + "end": 4622.54, + "probability": 1.0 + }, + { + "word": " good.", + "start": 4622.54, + "end": 4622.68, + "probability": 1.0 + } + ] + }, + { + "id": 4250, + "text": "So I would advise...", + "start": 4622.78, + "end": 4624.46, + "words": [ + { + "word": " So", + "start": 4622.78, + "end": 4623.04, + "probability": 0.67041015625 + }, + { + "word": " I", + "start": 4623.04, + "end": 4623.68, + "probability": 0.9404296875 + }, + { + "word": " would", + "start": 4623.68, + "end": 4623.86, + "probability": 1.0 + }, + { + "word": " advise...", + "start": 4623.86, + "end": 4624.46, + "probability": 0.91015625 + } + ] + }, + { + "id": 4251, + "text": "Well, you know how much I hate Comcast and Cox.", + "start": 4624.46, + "end": 4627.38, + "words": [ + { + "word": " Well,", + "start": 4624.46, + "end": 4624.84, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 4624.86, + "end": 4624.96, + "probability": 1.0 + }, + { + "word": " know", + "start": 4624.96, + "end": 4625.12, + "probability": 1.0 + }, + { + "word": " how", + "start": 4625.12, + "end": 4625.26, + "probability": 1.0 + }, + { + "word": " much", + "start": 4625.26, + "end": 4625.46, + "probability": 1.0 + }, + { + "word": " I", + "start": 4625.46, + "end": 4625.58, + "probability": 1.0 + }, + { + "word": " hate", + "start": 4625.58, + "end": 4625.78, + "probability": 1.0 + }, + { + "word": " Comcast", + "start": 4625.78, + "end": 4626.28, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4626.28, + "end": 4626.94, + "probability": 0.9951171875 + }, + { + "word": " Cox.", + "start": 4626.94, + "end": 4627.38, + "probability": 0.7880859375 + } + ] + }, + { + "id": 4252, + "text": "With a passion.", + "start": 4627.76, + "end": 4628.32, + "words": [ + { + "word": " With", + "start": 4627.76, + "end": 4627.9, + "probability": 0.06939697265625 + }, + { + "word": " a", + "start": 4627.9, + "end": 4627.96, + "probability": 0.9873046875 + }, + { + "word": " passion.", + "start": 4627.96, + "end": 4628.32, + "probability": 0.998046875 + } + ] + }, + { + "id": 4253, + "text": "As much as you and Rob.", + "start": 4628.56, + "end": 4630.4, + "words": [ + { + "word": " As", + "start": 4628.56, + "end": 4629.04, + "probability": 0.984375 + }, + { + "word": " much", + "start": 4629.04, + "end": 4629.24, + "probability": 1.0 + }, + { + "word": " as", + "start": 4629.24, + "end": 4629.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 4629.4, + "end": 4629.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 4629.64, + "end": 4630.16, + "probability": 0.92333984375 + }, + { + "word": " Rob.", + "start": 4630.16, + "end": 4630.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4254, + "text": "But I would advise people to test their speed,", + "start": 4631.260000000001, + "end": 4634.74, + "words": [ + { + "word": " But", + "start": 4631.260000000001, + "end": 4631.740000000001, + "probability": 0.9453125 + }, + { + "word": " I", + "start": 4631.740000000001, + "end": 4632.22, + "probability": 0.99462890625 + }, + { + "word": " would", + "start": 4632.22, + "end": 4632.38, + "probability": 1.0 + }, + { + "word": " advise", + "start": 4632.38, + "end": 4632.6, + "probability": 1.0 + }, + { + "word": " people", + "start": 4632.6, + "end": 4632.98, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 4632.98, + "end": 4633.24, + "probability": 0.94873046875 + }, + { + "word": " test", + "start": 4633.24, + "end": 4633.5, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 4633.5, + "end": 4633.86, + "probability": 0.98583984375 + }, + { + "word": " speed,", + "start": 4633.86, + "end": 4634.74, + "probability": 0.96630859375 + } + ] + }, + { + "id": 4255, + "text": "because I live in an apartment complex,", + "start": 4634.92, + "end": 4636.92, + "words": [ + { + "word": " because", + "start": 4634.92, + "end": 4635.36, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4635.36, + "end": 4635.8, + "probability": 0.994140625 + }, + { + "word": " live", + "start": 4635.8, + "end": 4635.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 4635.96, + "end": 4636.08, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 4636.08, + "end": 4636.1, + "probability": 0.916015625 + }, + { + "word": " apartment", + "start": 4636.1, + "end": 4636.32, + "probability": 0.95751953125 + }, + { + "word": " complex,", + "start": 4636.32, + "end": 4636.92, + "probability": 1.0 + } + ] + }, + { + "id": 4256, + "text": "and that Cox bucket truck is out there every 10 days.", + "start": 4637.0, + "end": 4640.64, + "words": [ + { + "word": " and", + "start": 4637.0, + "end": 4637.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 4637.24, + "end": 4637.36, + "probability": 0.99951171875 + }, + { + "word": " Cox", + "start": 4637.36, + "end": 4637.68, + "probability": 0.96044921875 + }, + { + "word": " bucket", + "start": 4637.68, + "end": 4638.1, + "probability": 0.98046875 + }, + { + "word": " truck", + "start": 4638.1, + "end": 4638.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 4638.42, + "end": 4638.62, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4638.62, + "end": 4638.8, + "probability": 1.0 + }, + { + "word": " there", + "start": 4638.8, + "end": 4639.04, + "probability": 1.0 + }, + { + "word": " every", + "start": 4639.04, + "end": 4640.18, + "probability": 0.99853515625 + }, + { + "word": " 10", + "start": 4640.18, + "end": 4640.38, + "probability": 0.7578125 + }, + { + "word": " days.", + "start": 4640.38, + "end": 4640.64, + "probability": 1.0 + } + ] + }, + { + "id": 4257, + "text": "Yeah, yeah.", + "start": 4641.200000000001, + "end": 4642.06, + "words": [ + { + "word": " Yeah,", + "start": 4641.200000000001, + "end": 4641.68, + "probability": 0.98974609375 + }, + { + "word": " yeah.", + "start": 4641.74, + "end": 4642.06, + "probability": 0.94873046875 + } + ] + }, + { + "id": 4258, + "text": "I'm sorry to hear that.", + "start": 4642.56, + "end": 4643.76, + "words": [ + { + "word": " I'm", + "start": 4642.56, + "end": 4643.04, + "probability": 1.0 + }, + { + "word": " sorry", + "start": 4643.04, + "end": 4643.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 4643.28, + "end": 4643.42, + "probability": 1.0 + }, + { + "word": " hear", + "start": 4643.42, + "end": 4643.58, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4643.58, + "end": 4643.76, + "probability": 1.0 + } + ] + }, + { + "id": 4259, + "text": "Now, when it comes to this, though,", + "start": 4643.92, + "end": 4645.88, + "words": [ + { + "word": " Now,", + "start": 4643.92, + "end": 4644.2, + "probability": 0.998046875 + }, + { + "word": " when", + "start": 4644.32, + "end": 4644.82, + "probability": 1.0 + }, + { + "word": " it", + "start": 4644.82, + "end": 4644.92, + "probability": 1.0 + }, + { + "word": " comes", + "start": 4644.92, + "end": 4645.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 4645.14, + "end": 4645.32, + "probability": 1.0 + }, + { + "word": " this,", + "start": 4645.32, + "end": 4645.56, + "probability": 1.0 + }, + { + "word": " though,", + "start": 4645.62, + "end": 4645.88, + "probability": 1.0 + } + ] + }, + { + "id": 4260, + "text": "when it comes to Cox and Comcast,", + "start": 4645.94, + "end": 4647.68, + "words": [ + { + "word": " when", + "start": 4645.94, + "end": 4646.18, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4646.18, + "end": 4646.28, + "probability": 1.0 + }, + { + "word": " comes", + "start": 4646.28, + "end": 4646.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 4646.54, + "end": 4646.72, + "probability": 1.0 + }, + { + "word": " Cox", + "start": 4646.72, + "end": 4647.04, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4647.04, + "end": 4647.2, + "probability": 0.9931640625 + }, + { + "word": " Comcast,", + "start": 4647.2, + "end": 4647.68, + "probability": 1.0 + } + ] + }, + { + "id": 4261, + "text": "I find that most people are not getting the speed that they are paying for.", + "start": 4648.240000000001, + "end": 4654.02, + "words": [ + { + "word": " I", + "start": 4648.240000000001, + "end": 4648.72, + "probability": 0.99951171875 + }, + { + "word": " find", + "start": 4648.72, + "end": 4649.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 4649.14, + "end": 4649.6, + "probability": 1.0 + }, + { + "word": " most", + "start": 4649.6, + "end": 4650.34, + "probability": 0.98779296875 + }, + { + "word": " people", + "start": 4650.34, + "end": 4651.38, + "probability": 1.0 + }, + { + "word": " are", + "start": 4651.38, + "end": 4651.62, + "probability": 1.0 + }, + { + "word": " not", + "start": 4651.62, + "end": 4651.8, + "probability": 1.0 + }, + { + "word": " getting", + "start": 4651.8, + "end": 4652.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 4652.1, + "end": 4652.32, + "probability": 1.0 + }, + { + "word": " speed", + "start": 4652.32, + "end": 4652.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 4652.58, + "end": 4652.78, + "probability": 1.0 + }, + { + "word": " they", + "start": 4652.78, + "end": 4652.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 4652.98, + "end": 4653.3, + "probability": 1.0 + }, + { + "word": " paying", + "start": 4653.3, + "end": 4653.76, + "probability": 1.0 + }, + { + "word": " for.", + "start": 4653.76, + "end": 4654.02, + "probability": 1.0 + } + ] + }, + { + "id": 4262, + "text": "And then, additionally,", + "start": 4654.48, + "end": 4655.82, + "words": [ + { + "word": " And", + "start": 4654.48, + "end": 4654.96, + "probability": 0.99658203125 + }, + { + "word": " then,", + "start": 4654.96, + "end": 4655.16, + "probability": 1.0 + }, + { + "word": " additionally,", + "start": 4655.22, + "end": 4655.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4263, + "text": "most people are willing to pay,", + "start": 4656.18, + "end": 4657.64, + "words": [ + { + "word": " most", + "start": 4656.18, + "end": 4656.66, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 4656.66, + "end": 4656.88, + "probability": 1.0 + }, + { + "word": " are", + "start": 4656.88, + "end": 4657.06, + "probability": 1.0 + }, + { + "word": " willing", + "start": 4657.06, + "end": 4657.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 4657.26, + "end": 4657.46, + "probability": 1.0 + }, + { + "word": " pay,", + "start": 4657.46, + "end": 4657.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4264, + "text": "way too much.", + "start": 4657.76, + "end": 4658.72, + "words": [ + { + "word": " way", + "start": 4657.76, + "end": 4657.98, + "probability": 0.98388671875 + }, + { + "word": " too", + "start": 4657.98, + "end": 4658.26, + "probability": 1.0 + }, + { + "word": " much.", + "start": 4658.26, + "end": 4658.72, + "probability": 1.0 + } + ] + }, + { + "id": 4265, + "text": "Right?", + "start": 4658.88, + "end": 4659.32, + "words": [ + { + "word": " Right?", + "start": 4658.88, + "end": 4659.32, + "probability": 0.08197021484375 + } + ] + }, + { + "id": 4266, + "text": "Like, as an example,", + "start": 4659.5, + "end": 4661.32, + "words": [ + { + "word": " Like,", + "start": 4659.5, + "end": 4659.94, + "probability": 0.7822265625 + }, + { + "word": " as", + "start": 4660.08, + "end": 4660.86, + "probability": 0.9990234375 + }, + { + "word": " an", + "start": 4660.86, + "end": 4661.02, + "probability": 1.0 + }, + { + "word": " example,", + "start": 4661.02, + "end": 4661.32, + "probability": 1.0 + } + ] + }, + { + "id": 4267, + "text": "if you have a 50 meg plan for what you're doing,", + "start": 4661.36, + "end": 4663.86, + "words": [ + { + "word": " if", + "start": 4661.36, + "end": 4661.6, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4661.6, + "end": 4661.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 4661.78, + "end": 4661.96, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4661.96, + "end": 4662.1, + "probability": 0.99951171875 + }, + { + "word": " 50", + "start": 4662.1, + "end": 4662.4, + "probability": 0.9990234375 + }, + { + "word": " meg", + "start": 4662.4, + "end": 4662.64, + "probability": 0.82666015625 + }, + { + "word": " plan", + "start": 4662.64, + "end": 4662.9, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 4662.9, + "end": 4663.32, + "probability": 0.99755859375 + }, + { + "word": " what", + "start": 4663.32, + "end": 4663.44, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4663.44, + "end": 4663.6, + "probability": 0.99951171875 + }, + { + "word": " doing,", + "start": 4663.6, + "end": 4663.86, + "probability": 1.0 + } + ] + }, + { + "id": 4268, + "text": "that's about right.", + "start": 4664.4800000000005, + "end": 4665.04, + "words": [ + { + "word": " that's", + "start": 4664.4, + "end": 4664.62, + "probability": 1.0 + }, + { + "word": " about", + "start": 4664.62, + "end": 4664.8, + "probability": 1.0 + }, + { + "word": " right.", + "start": 4664.8, + "end": 4665.04, + "probability": 1.0 + } + ] + }, + { + "id": 4269, + "text": "Right?", + "start": 4665.22, + "end": 4665.64, + "words": [ + { + "word": " Right?", + "start": 4665.22, + "end": 4665.64, + "probability": 0.96533203125 + } + ] + }, + { + "id": 4270, + "text": "That's about what I'd probably tell you to do.", + "start": 4665.7, + "end": 4668.02, + "words": [ + { + "word": " That's", + "start": 4665.7, + "end": 4666.0, + "probability": 0.9990234375 + }, + { + "word": " about", + "start": 4666.0, + "end": 4666.52, + "probability": 0.8427734375 + }, + { + "word": " what", + "start": 4666.52, + "end": 4666.92, + "probability": 0.99951171875 + }, + { + "word": " I'd", + "start": 4666.92, + "end": 4667.12, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4667.12, + "end": 4667.36, + "probability": 1.0 + }, + { + "word": " tell", + "start": 4667.36, + "end": 4667.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 4667.6, + "end": 4667.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 4667.7, + "end": 4667.82, + "probability": 1.0 + }, + { + "word": " do.", + "start": 4667.82, + "end": 4668.02, + "probability": 1.0 + } + ] + }, + { + "id": 4271, + "text": "But I see people out there with these 300 meg plans,", + "start": 4668.32, + "end": 4671.34, + "words": [ + { + "word": " But", + "start": 4668.32, + "end": 4668.76, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4668.76, + "end": 4668.96, + "probability": 0.95166015625 + }, + { + "word": " see", + "start": 4668.96, + "end": 4669.18, + "probability": 1.0 + }, + { + "word": " people", + "start": 4669.18, + "end": 4669.42, + "probability": 1.0 + }, + { + "word": " out", + "start": 4669.42, + "end": 4669.62, + "probability": 1.0 + }, + { + "word": " there", + "start": 4669.62, + "end": 4669.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 4669.78, + "end": 4669.94, + "probability": 1.0 + }, + { + "word": " these", + "start": 4669.94, + "end": 4670.16, + "probability": 1.0 + }, + { + "word": " 300", + "start": 4670.16, + "end": 4670.66, + "probability": 0.99951171875 + }, + { + "word": " meg", + "start": 4670.66, + "end": 4671.04, + "probability": 0.99951171875 + }, + { + "word": " plans,", + "start": 4671.04, + "end": 4671.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4272, + "text": "and all they have is an iPad on their network,", + "start": 4671.54, + "end": 4674.18, + "words": [ + { + "word": " and", + "start": 4671.54, + "end": 4671.7, + "probability": 1.0 + }, + { + "word": " all", + "start": 4671.7, + "end": 4671.84, + "probability": 1.0 + }, + { + "word": " they", + "start": 4671.84, + "end": 4671.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 4671.98, + "end": 4672.22, + "probability": 1.0 + }, + { + "word": " is", + "start": 4672.22, + "end": 4672.42, + "probability": 1.0 + }, + { + "word": " an", + "start": 4672.42, + "end": 4672.56, + "probability": 0.99951171875 + }, + { + "word": " iPad", + "start": 4672.56, + "end": 4672.96, + "probability": 1.0 + }, + { + "word": " on", + "start": 4672.96, + "end": 4673.62, + "probability": 0.99853515625 + }, + { + "word": " their", + "start": 4673.62, + "end": 4673.8, + "probability": 1.0 + }, + { + "word": " network,", + "start": 4673.8, + "end": 4674.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4273, + "text": "and the only reason they got that is because,", + "start": 4674.4, + "end": 4676.18, + "words": [ + { + "word": " and", + "start": 4674.4, + "end": 4674.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 4674.76, + "end": 4674.86, + "probability": 1.0 + }, + { + "word": " only", + "start": 4674.86, + "end": 4675.04, + "probability": 1.0 + }, + { + "word": " reason", + "start": 4675.04, + "end": 4675.28, + "probability": 1.0 + }, + { + "word": " they", + "start": 4675.28, + "end": 4675.42, + "probability": 1.0 + }, + { + "word": " got", + "start": 4675.42, + "end": 4675.58, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4675.58, + "end": 4675.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 4675.76, + "end": 4675.92, + "probability": 1.0 + }, + { + "word": " because,", + "start": 4675.92, + "end": 4676.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4274, + "text": "eh, that website took a little too long to load.", + "start": 4676.38, + "end": 4678.66, + "words": [ + { + "word": " eh,", + "start": 4676.38, + "end": 4676.7, + "probability": 0.994140625 + }, + { + "word": " that", + "start": 4676.76, + "end": 4677.04, + "probability": 1.0 + }, + { + "word": " website", + "start": 4677.04, + "end": 4677.32, + "probability": 0.9990234375 + }, + { + "word": " took", + "start": 4677.32, + "end": 4677.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 4677.58, + "end": 4677.76, + "probability": 1.0 + }, + { + "word": " little", + "start": 4677.76, + "end": 4677.86, + "probability": 0.9990234375 + }, + { + "word": " too", + "start": 4677.86, + "end": 4678.04, + "probability": 0.99951171875 + }, + { + "word": " long", + "start": 4678.04, + "end": 4678.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 4678.26, + "end": 4678.44, + "probability": 1.0 + }, + { + "word": " load.", + "start": 4678.44, + "end": 4678.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4275, + "text": "That is a gigantic waste of money.", + "start": 4679.1, + "end": 4682.9, + "words": [ + { + "word": " That", + "start": 4679.1, + "end": 4679.54, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4679.54, + "end": 4679.7, + "probability": 0.83544921875 + }, + { + "word": " a", + "start": 4679.7, + "end": 4680.76, + "probability": 1.0 + }, + { + "word": " gigantic", + "start": 4680.76, + "end": 4681.7, + "probability": 0.9990234375 + }, + { + "word": " waste", + "start": 4681.7, + "end": 4682.36, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 4682.36, + "end": 4682.66, + "probability": 1.0 + }, + { + "word": " money.", + "start": 4682.66, + "end": 4682.9, + "probability": 1.0 + } + ] + }, + { + "id": 4276, + "text": "And beyond that,", + "start": 4685.000000000001, + "end": 4686.08, + "words": [ + { + "word": " And", + "start": 4685.000000000001, + "end": 4685.4400000000005, + "probability": 0.7529296875 + }, + { + "word": " beyond", + "start": 4685.4400000000005, + "end": 4685.88, + "probability": 0.95947265625 + }, + { + "word": " that,", + "start": 4685.88, + "end": 4686.08, + "probability": 1.0 + } + ] + }, + { + "id": 4277, + "text": "or you see people that go,", + "start": 4686.14, + "end": 4687.32, + "words": [ + { + "word": " or", + "start": 4686.14, + "end": 4686.28, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 4686.28, + "end": 4686.56, + "probability": 0.9970703125 + }, + { + "word": " see", + "start": 4686.56, + "end": 4686.78, + "probability": 1.0 + }, + { + "word": " people", + "start": 4686.78, + "end": 4687.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 4687.04, + "end": 4687.18, + "probability": 1.0 + }, + { + "word": " go,", + "start": 4687.18, + "end": 4687.32, + "probability": 1.0 + } + ] + }, + { + "id": 4278, + "text": "well, you know,", + "start": 4687.32, + "end": 4688.3, + "words": [ + { + "word": " well,", + "start": 4687.32, + "end": 4687.48, + "probability": 0.0443115234375 + }, + { + "word": " you", + "start": 4687.98, + "end": 4688.12, + "probability": 0.55810546875 + }, + { + "word": " know,", + "start": 4688.12, + "end": 4688.3, + "probability": 1.0 + } + ] + }, + { + "id": 4279, + "text": "I went out and got this 500 megabit plan that costs a lot of money per month,", + "start": 4688.36, + "end": 4693.62, + "words": [ + { + "word": " I", + "start": 4688.36, + "end": 4688.54, + "probability": 0.99951171875 + }, + { + "word": " went", + "start": 4688.54, + "end": 4688.72, + "probability": 1.0 + }, + { + "word": " out", + "start": 4688.72, + "end": 4688.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 4688.84, + "end": 4688.94, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 4688.94, + "end": 4689.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 4689.14, + "end": 4689.4, + "probability": 1.0 + }, + { + "word": " 500", + "start": 4689.4, + "end": 4689.96, + "probability": 0.9990234375 + }, + { + "word": " megabit", + "start": 4689.96, + "end": 4690.72, + "probability": 0.96484375 + }, + { + "word": " plan", + "start": 4690.72, + "end": 4691.04, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 4691.04, + "end": 4691.4, + "probability": 0.99951171875 + }, + { + "word": " costs", + "start": 4691.4, + "end": 4691.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 4691.8, + "end": 4692.34, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4692.34, + "end": 4692.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 4692.78, + "end": 4692.94, + "probability": 1.0 + }, + { + "word": " money", + "start": 4692.94, + "end": 4693.1, + "probability": 1.0 + }, + { + "word": " per", + "start": 4693.1, + "end": 4693.28, + "probability": 0.99951171875 + }, + { + "word": " month,", + "start": 4693.28, + "end": 4693.62, + "probability": 1.0 + } + ] + }, + { + "id": 4280, + "text": "and it turns out the only problem that they really had was they had a nine year old router.", + "start": 4693.7, + "end": 4697.6, + "words": [ + { + "word": " and", + "start": 4693.7, + "end": 4693.96, + "probability": 1.0 + }, + { + "word": " it", + "start": 4693.96, + "end": 4694.06, + "probability": 1.0 + }, + { + "word": " turns", + "start": 4694.06, + "end": 4694.22, + "probability": 1.0 + }, + { + "word": " out", + "start": 4694.22, + "end": 4694.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 4694.36, + "end": 4694.48, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 4694.48, + "end": 4694.6, + "probability": 1.0 + }, + { + "word": " problem", + "start": 4694.6, + "end": 4694.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 4694.9, + "end": 4695.0, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 4695.0, + "end": 4695.12, + "probability": 1.0 + }, + { + "word": " really", + "start": 4695.12, + "end": 4695.36, + "probability": 1.0 + }, + { + "word": " had", + "start": 4695.36, + "end": 4695.68, + "probability": 1.0 + }, + { + "word": " was", + "start": 4695.68, + "end": 4696.18, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 4696.18, + "end": 4696.3, + "probability": 1.0 + }, + { + "word": " had", + "start": 4696.3, + "end": 4696.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 4696.44, + "end": 4696.58, + "probability": 1.0 + }, + { + "word": " nine", + "start": 4696.58, + "end": 4696.8, + "probability": 0.546875 + }, + { + "word": " year", + "start": 4696.8, + "end": 4697.0, + "probability": 0.00505828857421875 + }, + { + "word": " old", + "start": 4697.0, + "end": 4697.2, + "probability": 0.99609375 + }, + { + "word": " router.", + "start": 4697.2, + "end": 4697.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4281, + "text": "Right?", + "start": 4698.18, + "end": 4698.58, + "words": [ + { + "word": " Right?", + "start": 4698.18, + "end": 4698.58, + "probability": 0.41748046875 + } + ] + }, + { + "id": 4282, + "text": "So there are,", + "start": 4698.64, + "end": 4700.3, + "words": [ + { + "word": " So", + "start": 4698.64, + "end": 4698.82, + "probability": 0.81396484375 + }, + { + "word": " there", + "start": 4698.82, + "end": 4699.84, + "probability": 0.6982421875 + }, + { + "word": " are,", + "start": 4699.84, + "end": 4700.3, + "probability": 0.99365234375 + } + ] + }, + { + "id": 4283, + "text": "or they have a very slow computer.", + "start": 4700.42, + "end": 4702.32, + "words": [ + { + "word": " or", + "start": 4700.42, + "end": 4700.82, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 4700.82, + "end": 4701.02, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 4701.02, + "end": 4701.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 4701.16, + "end": 4701.28, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 4701.28, + "end": 4701.54, + "probability": 1.0 + }, + { + "word": " slow", + "start": 4701.54, + "end": 4701.88, + "probability": 0.99951171875 + }, + { + "word": " computer.", + "start": 4701.88, + "end": 4702.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4284, + "text": "Maybe they're out of this space,", + "start": 4702.42, + "end": 4703.6, + "words": [ + { + "word": " Maybe", + "start": 4702.42, + "end": 4702.6, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 4702.6, + "end": 4702.78, + "probability": 0.99755859375 + }, + { + "word": " out", + "start": 4702.78, + "end": 4702.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4702.94, + "end": 4703.06, + "probability": 0.8388671875 + }, + { + "word": " this", + "start": 4703.06, + "end": 4703.24, + "probability": 0.0728759765625 + }, + { + "word": " space,", + "start": 4703.24, + "end": 4703.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4285, + "text": "right?", + "start": 4703.76, + "end": 4704.28, + "words": [ + { + "word": " right?", + "start": 4703.76, + "end": 4704.28, + "probability": 0.99267578125 + } + ] + }, + { + "id": 4286, + "text": "And they're blaming the network instead of the computer.", + "start": 4704.34, + "end": 4707.78, + "words": [ + { + "word": " And", + "start": 4704.34, + "end": 4704.52, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 4704.52, + "end": 4704.7, + "probability": 0.99951171875 + }, + { + "word": " blaming", + "start": 4704.7, + "end": 4705.02, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4705.02, + "end": 4705.26, + "probability": 1.0 + }, + { + "word": " network", + "start": 4705.26, + "end": 4705.66, + "probability": 0.99951171875 + }, + { + "word": " instead", + "start": 4705.66, + "end": 4706.58, + "probability": 0.98974609375 + }, + { + "word": " of", + "start": 4706.58, + "end": 4707.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 4707.0, + "end": 4707.38, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 4707.38, + "end": 4707.78, + "probability": 1.0 + } + ] + }, + { + "id": 4287, + "text": "So there's,", + "start": 4707.98, + "end": 4708.46, + "words": [ + { + "word": " So", + "start": 4707.98, + "end": 4708.16, + "probability": 0.99072265625 + }, + { + "word": " there's,", + "start": 4708.16, + "end": 4708.46, + "probability": 0.61279296875 + } + ] + }, + { + "id": 4288, + "text": "there,", + "start": 4708.46, + "end": 4709.0, + "words": [ + { + "word": " there,", + "start": 4708.46, + "end": 4709.0, + "probability": 0.17822265625 + } + ] + }, + { + "id": 4289, + "text": "it's not as simple as the cable companies would like to have you believe,", + "start": 4709.08, + "end": 4712.16, + "words": [ + { + "word": " it's", + "start": 4709.08, + "end": 4709.4, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 4709.4, + "end": 4709.62, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 4709.62, + "end": 4709.86, + "probability": 0.99951171875 + }, + { + "word": " simple", + "start": 4709.86, + "end": 4710.24, + "probability": 1.0 + }, + { + "word": " as", + "start": 4710.24, + "end": 4710.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4710.46, + "end": 4710.58, + "probability": 0.99951171875 + }, + { + "word": " cable", + "start": 4710.58, + "end": 4710.82, + "probability": 0.9990234375 + }, + { + "word": " companies", + "start": 4710.82, + "end": 4711.18, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 4711.18, + "end": 4711.36, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 4711.36, + "end": 4711.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4711.52, + "end": 4711.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 4711.66, + "end": 4711.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 4711.72, + "end": 4711.9, + "probability": 0.99853515625 + }, + { + "word": " believe,", + "start": 4711.9, + "end": 4712.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4290, + "text": "which is,", + "start": 4712.24, + "end": 4712.78, + "words": [ + { + "word": " which", + "start": 4712.24, + "end": 4712.48, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 4712.48, + "end": 4712.78, + "probability": 1.0 + } + ] + }, + { + "id": 4291, + "text": "hey,", + "start": 4712.82, + "end": 4713.16, + "words": [ + { + "word": " hey,", + "start": 4712.82, + "end": 4713.16, + "probability": 0.454833984375 + } + ] + }, + { + "id": 4292, + "text": "just pay for more speed.", + "start": 4713.26, + "end": 4714.38, + "words": [ + { + "word": " just", + "start": 4713.26, + "end": 4713.52, + "probability": 0.9990234375 + }, + { + "word": " pay", + "start": 4713.52, + "end": 4713.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 4713.72, + "end": 4713.88, + "probability": 1.0 + }, + { + "word": " more", + "start": 4713.88, + "end": 4714.04, + "probability": 1.0 + }, + { + "word": " speed.", + "start": 4714.04, + "end": 4714.38, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4293, + "text": "You get more speed.", + "start": 4714.46, + "end": 4715.56, + "words": [ + { + "word": " You", + "start": 4714.46, + "end": 4714.8, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 4714.8, + "end": 4714.98, + "probability": 1.0 + }, + { + "word": " more", + "start": 4714.98, + "end": 4715.2, + "probability": 1.0 + }, + { + "word": " speed.", + "start": 4715.2, + "end": 4715.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4294, + "text": "Well,", + "start": 4715.62, + "end": 4715.82, + "words": [ + { + "word": " Well,", + "start": 4715.62, + "end": 4715.82, + "probability": 0.892578125 + } + ] + }, + { + "id": 4295, + "text": "you know,", + "start": 4715.86, + "end": 4716.04, + "words": [ + { + "word": " you", + "start": 4715.86, + "end": 4715.88, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 4715.88, + "end": 4716.04, + "probability": 1.0 + } + ] + }, + { + "id": 4296, + "text": "it's also a vanity thing.", + "start": 4716.06, + "end": 4717.1, + "words": [ + { + "word": " it's", + "start": 4716.06, + "end": 4716.2, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 4716.2, + "end": 4716.42, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4716.42, + "end": 4716.54, + "probability": 0.9990234375 + }, + { + "word": " vanity", + "start": 4716.54, + "end": 4716.82, + "probability": 0.99951171875 + }, + { + "word": " thing.", + "start": 4716.82, + "end": 4717.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4297, + "text": "You,", + "start": 4717.16, + "end": 4717.3, + "words": [ + { + "word": " You,", + "start": 4717.16, + "end": 4717.3, + "probability": 0.92578125 + } + ] + }, + { + "id": 4298, + "text": "you gotta have the highest possible speed.", + "start": 4717.32, + "end": 4718.84, + "words": [ + { + "word": " you", + "start": 4717.32, + "end": 4717.32, + "probability": 0.0718994140625 + }, + { + "word": " gotta", + "start": 4717.32, + "end": 4717.42, + "probability": 0.03900146484375 + }, + { + "word": " have", + "start": 4717.42, + "end": 4717.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4717.56, + "end": 4717.74, + "probability": 0.99951171875 + }, + { + "word": " highest", + "start": 4717.74, + "end": 4717.96, + "probability": 0.99658203125 + }, + { + "word": " possible", + "start": 4717.96, + "end": 4718.38, + "probability": 0.9990234375 + }, + { + "word": " speed.", + "start": 4718.38, + "end": 4718.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4299, + "text": "You can keep up with the Jones is all you want,", + "start": 4719.0, + "end": 4720.8, + "words": [ + { + "word": " You", + "start": 4719.0, + "end": 4719.22, + "probability": 0.86669921875 + }, + { + "word": " can", + "start": 4719.22, + "end": 4719.38, + "probability": 0.99951171875 + }, + { + "word": " keep", + "start": 4719.38, + "end": 4719.58, + "probability": 1.0 + }, + { + "word": " up", + "start": 4719.58, + "end": 4719.76, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4719.76, + "end": 4719.84, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 4719.84, + "end": 4719.9, + "probability": 0.9970703125 + }, + { + "word": " Jones", + "start": 4719.9, + "end": 4720.1, + "probability": 0.9931640625 + }, + { + "word": " is", + "start": 4720.1, + "end": 4720.26, + "probability": 0.09454345703125 + }, + { + "word": " all", + "start": 4720.26, + "end": 4720.42, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4720.42, + "end": 4720.56, + "probability": 1.0 + }, + { + "word": " want,", + "start": 4720.56, + "end": 4720.8, + "probability": 1.0 + } + ] + }, + { + "id": 4300, + "text": "but I'm telling you that it's a waste of money,", + "start": 4720.9, + "end": 4723.3, + "words": [ + { + "word": " but", + "start": 4720.9, + "end": 4721.06, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 4721.06, + "end": 4721.42, + "probability": 0.9990234375 + }, + { + "word": " telling", + "start": 4721.42, + "end": 4721.76, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4721.76, + "end": 4722.02, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 4722.02, + "end": 4722.36, + "probability": 0.58837890625 + }, + { + "word": " it's", + "start": 4722.36, + "end": 4722.5, + "probability": 0.978515625 + }, + { + "word": " a", + "start": 4722.5, + "end": 4722.58, + "probability": 1.0 + }, + { + "word": " waste", + "start": 4722.58, + "end": 4722.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4722.86, + "end": 4723.06, + "probability": 0.99951171875 + }, + { + "word": " money,", + "start": 4723.06, + "end": 4723.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4301, + "text": "but I,", + "start": 4724.5, + "end": 4725.26, + "words": [ + { + "word": " but", + "start": 4724.5, + "end": 4724.9, + "probability": 0.9970703125 + }, + { + "word": " I,", + "start": 4724.9, + "end": 4725.26, + "probability": 0.75634765625 + } + ] + }, + { + "id": 4302, + "text": "I,", + "start": 4725.28, + "end": 4725.74, + "words": [ + { + "word": " I,", + "start": 4725.28, + "end": 4725.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4303, + "text": "I,", + "start": 4725.74, + "end": 4726.46, + "words": [ + { + "word": " I,", + "start": 4725.74, + "end": 4726.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 4304, + "text": "I suppose you could check that without get off your motor and run a cat court and see if there's any difference there.", + "start": 4726.46, + "end": 4733.52, + "words": [ + { + "word": " I", + "start": 4726.46, + "end": 4726.76, + "probability": 0.99560546875 + }, + { + "word": " suppose", + "start": 4726.76, + "end": 4727.04, + "probability": 0.9521484375 + }, + { + "word": " you", + "start": 4727.04, + "end": 4727.3, + "probability": 0.99853515625 + }, + { + "word": " could", + "start": 4727.3, + "end": 4727.42, + "probability": 1.0 + }, + { + "word": " check", + "start": 4727.42, + "end": 4727.64, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4727.64, + "end": 4727.9, + "probability": 0.9990234375 + }, + { + "word": " without", + "start": 4727.9, + "end": 4728.24, + "probability": 0.50732421875 + }, + { + "word": " get", + "start": 4728.24, + "end": 4728.98, + "probability": 0.424560546875 + }, + { + "word": " off", + "start": 4728.98, + "end": 4729.22, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 4729.22, + "end": 4729.36, + "probability": 1.0 + }, + { + "word": " motor", + "start": 4729.36, + "end": 4729.58, + "probability": 0.630859375 + }, + { + "word": " and", + "start": 4729.58, + "end": 4729.78, + "probability": 0.99560546875 + }, + { + "word": " run", + "start": 4729.78, + "end": 4730.26, + "probability": 0.9052734375 + }, + { + "word": " a", + "start": 4730.26, + "end": 4730.44, + "probability": 1.0 + }, + { + "word": " cat", + "start": 4730.44, + "end": 4730.66, + "probability": 0.990234375 + }, + { + "word": " court", + "start": 4730.66, + "end": 4731.0, + "probability": 0.93310546875 + }, + { + "word": " and", + "start": 4731.0, + "end": 4731.34, + "probability": 0.97412109375 + }, + { + "word": " see", + "start": 4731.34, + "end": 4732.34, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 4732.34, + "end": 4732.48, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4732.48, + "end": 4732.74, + "probability": 1.0 + }, + { + "word": " any", + "start": 4732.74, + "end": 4732.84, + "probability": 0.99951171875 + }, + { + "word": " difference", + "start": 4732.84, + "end": 4733.16, + "probability": 0.99853515625 + }, + { + "word": " there.", + "start": 4733.16, + "end": 4733.52, + "probability": 0.998046875 + } + ] + }, + { + "id": 4305, + "text": "Right?", + "start": 4733.86, + "end": 4734.26, + "words": [ + { + "word": " Right?", + "start": 4733.86, + "end": 4734.26, + "probability": 0.97265625 + } + ] + }, + { + "id": 4306, + "text": "So they want to make you do a direct connection test and that's an,", + "start": 4734.32, + "end": 4737.18, + "words": [ + { + "word": " So", + "start": 4734.32, + "end": 4734.44, + "probability": 0.9921875 + }, + { + "word": " they", + "start": 4734.44, + "end": 4734.68, + "probability": 0.98291015625 + }, + { + "word": " want", + "start": 4734.68, + "end": 4735.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4735.46, + "end": 4735.56, + "probability": 1.0 + }, + { + "word": " make", + "start": 4735.56, + "end": 4735.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 4735.68, + "end": 4735.76, + "probability": 1.0 + }, + { + "word": " do", + "start": 4735.76, + "end": 4735.88, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4735.88, + "end": 4735.96, + "probability": 1.0 + }, + { + "word": " direct", + "start": 4735.96, + "end": 4736.14, + "probability": 1.0 + }, + { + "word": " connection", + "start": 4736.14, + "end": 4736.34, + "probability": 1.0 + }, + { + "word": " test", + "start": 4736.34, + "end": 4736.68, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4736.68, + "end": 4736.86, + "probability": 0.5400390625 + }, + { + "word": " that's", + "start": 4736.86, + "end": 4737.1, + "probability": 1.0 + }, + { + "word": " an,", + "start": 4737.1, + "end": 4737.18, + "probability": 0.98583984375 + } + ] + }, + { + "id": 4307, + "text": "it's a very valid test.", + "start": 4737.2, + "end": 4738.54, + "words": [ + { + "word": " it's", + "start": 4737.2, + "end": 4737.44, + "probability": 0.978515625 + }, + { + "word": " a", + "start": 4737.44, + "end": 4737.48, + "probability": 1.0 + }, + { + "word": " very", + "start": 4737.48, + "end": 4737.74, + "probability": 0.99951171875 + }, + { + "word": " valid", + "start": 4737.74, + "end": 4737.98, + "probability": 0.99951171875 + }, + { + "word": " test.", + "start": 4737.98, + "end": 4738.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4308, + "text": "Sure.", + "start": 4738.62, + "end": 4738.94, + "words": [ + { + "word": " Sure.", + "start": 4738.62, + "end": 4738.94, + "probability": 0.708984375 + } + ] + }, + { + "id": 4309, + "text": "Go ahead and do that.", + "start": 4739.08, + "end": 4739.78, + "words": [ + { + "word": " Go", + "start": 4739.08, + "end": 4739.36, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 4739.36, + "end": 4739.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 4739.52, + "end": 4739.6, + "probability": 1.0 + }, + { + "word": " do", + "start": 4739.6, + "end": 4739.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4739.66, + "end": 4739.78, + "probability": 1.0 + } + ] + }, + { + "id": 4310, + "text": "Plug it in.", + "start": 4739.8, + "end": 4740.2, + "words": [ + { + "word": " Plug", + "start": 4739.8, + "end": 4739.94, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 4739.94, + "end": 4740.1, + "probability": 1.0 + }, + { + "word": " in.", + "start": 4740.1, + "end": 4740.2, + "probability": 1.0 + } + ] + }, + { + "id": 4311, + "text": "See if you see if your wifi is just slow.", + "start": 4740.26, + "end": 4741.86, + "words": [ + { + "word": " See", + "start": 4740.26, + "end": 4740.34, + "probability": 0.99609375 + }, + { + "word": " if", + "start": 4740.34, + "end": 4740.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 4740.5, + "end": 4740.58, + "probability": 0.98291015625 + }, + { + "word": " see", + "start": 4740.58, + "end": 4740.78, + "probability": 0.583984375 + }, + { + "word": " if", + "start": 4740.78, + "end": 4740.84, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4740.84, + "end": 4740.98, + "probability": 1.0 + }, + { + "word": " wifi", + "start": 4740.98, + "end": 4741.24, + "probability": 0.978515625 + }, + { + "word": " is", + "start": 4741.24, + "end": 4741.48, + "probability": 1.0 + }, + { + "word": " just", + "start": 4741.48, + "end": 4741.62, + "probability": 1.0 + }, + { + "word": " slow.", + "start": 4741.62, + "end": 4741.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4312, + "text": "I've always been on the cat court and my wifi is streaming Netflix,", + "start": 4742.68, + "end": 4746.58, + "words": [ + { + "word": " I've", + "start": 4742.68, + "end": 4743.08, + "probability": 0.99951171875 + }, + { + "word": " always", + "start": 4743.08, + "end": 4743.3, + "probability": 1.0 + }, + { + "word": " been", + "start": 4743.3, + "end": 4743.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 4743.54, + "end": 4743.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 4743.72, + "end": 4743.84, + "probability": 1.0 + }, + { + "word": " cat", + "start": 4743.84, + "end": 4744.04, + "probability": 1.0 + }, + { + "word": " court", + "start": 4744.04, + "end": 4744.4, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 4744.4, + "end": 4744.88, + "probability": 0.99462890625 + }, + { + "word": " my", + "start": 4744.88, + "end": 4745.08, + "probability": 1.0 + }, + { + "word": " wifi", + "start": 4745.08, + "end": 4745.4, + "probability": 0.8564453125 + }, + { + "word": " is", + "start": 4745.4, + "end": 4745.76, + "probability": 1.0 + }, + { + "word": " streaming", + "start": 4745.76, + "end": 4746.12, + "probability": 0.998046875 + }, + { + "word": " Netflix,", + "start": 4746.12, + "end": 4746.58, + "probability": 0.849609375 + } + ] + }, + { + "id": 4313, + "text": "just,", + "start": 4746.72, + "end": 4747.18, + "words": [ + { + "word": " just,", + "start": 4746.72, + "end": 4747.18, + "probability": 0.82958984375 + } + ] + }, + { + "id": 4314, + "text": "just fine.", + "start": 4747.32, + "end": 4747.42, + "words": [ + { + "word": " just", + "start": 4747.32, + "end": 4747.32, + "probability": 0.0004813671112060547 + }, + { + "word": " fine.", + "start": 4747.32, + "end": 4747.42, + "probability": 0.978515625 + } + ] + }, + { + "id": 4315, + "text": "Yeah.", + "start": 4747.62, + "end": 4747.82, + "words": [ + { + "word": " Yeah.", + "start": 4747.62, + "end": 4747.82, + "probability": 0.93994140625 + } + ] + }, + { + "id": 4316, + "text": "If you're uploading things,", + "start": 4747.86, + "end": 4748.6, + "words": [ + { + "word": " If", + "start": 4747.86, + "end": 4747.94, + "probability": 0.9912109375 + }, + { + "word": " you're", + "start": 4747.94, + "end": 4748.04, + "probability": 1.0 + }, + { + "word": " uploading", + "start": 4748.04, + "end": 4748.28, + "probability": 0.998046875 + }, + { + "word": " things,", + "start": 4748.28, + "end": 4748.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4317, + "text": "you really shouldn't be doing that over wifi.", + "start": 4748.68, + "end": 4750.18, + "words": [ + { + "word": " you", + "start": 4748.68, + "end": 4748.8, + "probability": 1.0 + }, + { + "word": " really", + "start": 4748.8, + "end": 4748.98, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 4748.98, + "end": 4749.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 4749.28, + "end": 4749.36, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4749.36, + "end": 4749.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 4749.56, + "end": 4749.7, + "probability": 1.0 + }, + { + "word": " over", + "start": 4749.7, + "end": 4749.86, + "probability": 1.0 + }, + { + "word": " wifi.", + "start": 4749.86, + "end": 4750.18, + "probability": 0.84130859375 + } + ] + }, + { + "id": 4318, + "text": "Right.", + "start": 4750.68, + "end": 4751.04, + "words": [ + { + "word": " Right.", + "start": 4750.68, + "end": 4751.04, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4319, + "text": "And,", + "start": 4751.16, + "end": 4751.44, + "words": [ + { + "word": " And,", + "start": 4751.16, + "end": 4751.44, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4320, + "text": "and by the way,", + "start": 4751.5, + "end": 4752.32, + "words": [ + { + "word": " and", + "start": 4751.5, + "end": 4751.7, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 4751.7, + "end": 4752.04, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4752.04, + "end": 4752.2, + "probability": 1.0 + }, + { + "word": " way,", + "start": 4752.2, + "end": 4752.32, + "probability": 1.0 + } + ] + }, + { + "id": 4321, + "text": "if you're doing large uploads as though you are a photographer,", + "start": 4752.36, + "end": 4755.9, + "words": [ + { + "word": " if", + "start": 4752.36, + "end": 4752.46, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4752.46, + "end": 4752.66, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4752.66, + "end": 4752.9, + "probability": 1.0 + }, + { + "word": " large", + "start": 4752.9, + "end": 4753.18, + "probability": 1.0 + }, + { + "word": " uploads", + "start": 4753.18, + "end": 4753.66, + "probability": 1.0 + }, + { + "word": " as", + "start": 4753.66, + "end": 4754.7, + "probability": 0.875 + }, + { + "word": " though", + "start": 4754.7, + "end": 4754.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 4754.94, + "end": 4755.16, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4755.16, + "end": 4755.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 4755.32, + "end": 4755.48, + "probability": 0.99951171875 + }, + { + "word": " photographer,", + "start": 4755.48, + "end": 4755.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4322, + "text": "right?", + "start": 4756.02, + "end": 4756.34, + "words": [ + { + "word": " right?", + "start": 4756.02, + "end": 4756.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4323, + "text": "Cause you say you are,", + "start": 4756.4, + "end": 4757.02, + "words": [ + { + "word": " Cause", + "start": 4756.4, + "end": 4756.54, + "probability": 0.9326171875 + }, + { + "word": " you", + "start": 4756.54, + "end": 4756.66, + "probability": 1.0 + }, + { + "word": " say", + "start": 4756.66, + "end": 4756.8, + "probability": 1.0 + }, + { + "word": " you", + "start": 4756.8, + "end": 4756.88, + "probability": 1.0 + }, + { + "word": " are,", + "start": 4756.88, + "end": 4757.02, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4324, + "text": "right.", + "start": 4757.08, + "end": 4757.24, + "words": [ + { + "word": " right.", + "start": 4757.08, + "end": 4757.24, + "probability": 0.99462890625 + } + ] + }, + { + "id": 4325, + "text": "And,", + "start": 4757.6, + "end": 4757.96, + "words": [ + { + "word": " And,", + "start": 4757.6, + "end": 4757.96, + "probability": 0.99365234375 + } + ] + }, + { + "id": 4326, + "text": "uh,", + "start": 4758.02, + "end": 4758.16, + "words": [ + { + "word": " uh,", + "start": 4758.02, + "end": 4758.16, + "probability": 0.94580078125 + } + ] + }, + { + "id": 4327, + "text": "yeah.", + "start": 4758.34, + "end": 4758.84, + "words": [ + { + "word": " yeah.", + "start": 4758.34, + "end": 4758.84, + "probability": 0.95703125 + } + ] + }, + { + "id": 4328, + "text": "And 40,", + "start": 4759.34, + "end": 4760.04, + "words": [ + { + "word": " And", + "start": 4759.34, + "end": 4759.7, + "probability": 0.994140625 + }, + { + "word": " 40,", + "start": 4759.7, + "end": 4760.04, + "probability": 0.83935546875 + } + ] + }, + { + "id": 4329, + "text": "you know,", + "start": 4760.92, + "end": 4761.48, + "words": [ + { + "word": " you", + "start": 4760.92, + "end": 4761.28, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4761.28, + "end": 4761.48, + "probability": 1.0 + } + ] + }, + { + "id": 4330, + "text": "five megabyte photos at a time.", + "start": 4761.5, + "end": 4763.34, + "words": [ + { + "word": " five", + "start": 4761.5, + "end": 4761.66, + "probability": 0.99755859375 + }, + { + "word": " megabyte", + "start": 4761.66, + "end": 4762.28, + "probability": 0.99658203125 + }, + { + "word": " photos", + "start": 4762.28, + "end": 4762.76, + "probability": 1.0 + }, + { + "word": " at", + "start": 4762.76, + "end": 4762.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 4762.98, + "end": 4763.1, + "probability": 1.0 + }, + { + "word": " time.", + "start": 4763.1, + "end": 4763.34, + "probability": 1.0 + } + ] + }, + { + "id": 4331, + "text": "Right.", + "start": 4763.52, + "end": 4763.88, + "words": [ + { + "word": " Right.", + "start": 4763.52, + "end": 4763.88, + "probability": 0.99462890625 + } + ] + }, + { + "id": 4332, + "text": "So if you're doing that type of thing,", + "start": 4763.98, + "end": 4765.22, + "words": [ + { + "word": " So", + "start": 4763.98, + "end": 4764.12, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 4764.12, + "end": 4764.24, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 4764.24, + "end": 4764.38, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4764.38, + "end": 4764.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 4764.52, + "end": 4764.68, + "probability": 1.0 + }, + { + "word": " type", + "start": 4764.68, + "end": 4764.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 4764.9, + "end": 4765.04, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 4765.04, + "end": 4765.22, + "probability": 1.0 + } + ] + }, + { + "id": 4333, + "text": "I will tell you right now that it's much better to look at the business accounts for that,", + "start": 4765.3, + "end": 4769.48, + "words": [ + { + "word": " I", + "start": 4765.3, + "end": 4765.64, + "probability": 1.0 + }, + { + "word": " will", + "start": 4765.64, + "end": 4765.84, + "probability": 1.0 + }, + { + "word": " tell", + "start": 4765.84, + "end": 4766.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 4766.0, + "end": 4766.1, + "probability": 1.0 + }, + { + "word": " right", + "start": 4766.1, + "end": 4766.22, + "probability": 1.0 + }, + { + "word": " now", + "start": 4766.22, + "end": 4766.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 4766.48, + "end": 4766.74, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 4766.74, + "end": 4766.94, + "probability": 1.0 + }, + { + "word": " much", + "start": 4766.94, + "end": 4767.14, + "probability": 1.0 + }, + { + "word": " better", + "start": 4767.14, + "end": 4767.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 4767.4, + "end": 4767.58, + "probability": 1.0 + }, + { + "word": " look", + "start": 4767.58, + "end": 4767.82, + "probability": 1.0 + }, + { + "word": " at", + "start": 4767.82, + "end": 4768.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 4768.08, + "end": 4768.4, + "probability": 1.0 + }, + { + "word": " business", + "start": 4768.4, + "end": 4768.78, + "probability": 0.99951171875 + }, + { + "word": " accounts", + "start": 4768.78, + "end": 4769.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 4769.08, + "end": 4769.32, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4769.32, + "end": 4769.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4334, + "text": "mainly because they have a higher upload throughput.", + "start": 4770.08, + "end": 4772.44, + "words": [ + { + "word": " mainly", + "start": 4770.08, + "end": 4770.44, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 4770.44, + "end": 4770.76, + "probability": 1.0 + }, + { + "word": " they", + "start": 4770.76, + "end": 4771.06, + "probability": 1.0 + }, + { + "word": " have", + "start": 4771.06, + "end": 4771.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 4771.2, + "end": 4771.32, + "probability": 1.0 + }, + { + "word": " higher", + "start": 4771.32, + "end": 4771.58, + "probability": 1.0 + }, + { + "word": " upload", + "start": 4771.58, + "end": 4772.08, + "probability": 0.99951171875 + }, + { + "word": " throughput.", + "start": 4772.08, + "end": 4772.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4335, + "text": "So if you're going to be doing lots of,", + "start": 4773.1, + "end": 4774.86, + "words": [ + { + "word": " So", + "start": 4773.1, + "end": 4773.46, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 4773.46, + "end": 4773.66, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4773.66, + "end": 4773.78, + "probability": 1.0 + }, + { + "word": " going", + "start": 4773.78, + "end": 4773.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4773.88, + "end": 4773.92, + "probability": 1.0 + }, + { + "word": " be", + "start": 4773.92, + "end": 4773.98, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4773.98, + "end": 4774.14, + "probability": 1.0 + }, + { + "word": " lots", + "start": 4774.14, + "end": 4774.4, + "probability": 0.99951171875 + }, + { + "word": " of,", + "start": 4774.4, + "end": 4774.86, + "probability": 1.0 + } + ] + }, + { + "id": 4336, + "text": "uh,", + "start": 4774.88, + "end": 4775.22, + "words": [ + { + "word": " uh,", + "start": 4774.88, + "end": 4775.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4337, + "text": "uploading to Dropbox,", + "start": 4775.3, + "end": 4776.66, + "words": [ + { + "word": " uploading", + "start": 4775.3, + "end": 4775.82, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 4775.82, + "end": 4776.02, + "probability": 1.0 + }, + { + "word": " Dropbox,", + "start": 4776.02, + "end": 4776.66, + "probability": 0.9462890625 + } + ] + }, + { + "id": 4338, + "text": "cause most of it's asynchronous.", + "start": 4776.66, + "end": 4778.7, + "words": [ + { + "word": " cause", + "start": 4776.66, + "end": 4777.44, + "probability": 0.0010290145874023438 + }, + { + "word": " most", + "start": 4777.44, + "end": 4778.1, + "probability": 0.9765625 + }, + { + "word": " of", + "start": 4778.1, + "end": 4778.24, + "probability": 0.9873046875 + }, + { + "word": " it's", + "start": 4778.24, + "end": 4778.34, + "probability": 0.80859375 + }, + { + "word": " asynchronous.", + "start": 4778.34, + "end": 4778.7, + "probability": 0.98388671875 + } + ] + }, + { + "id": 4339, + "text": "Think about it this way is,", + "start": 4779.0, + "end": 4780.14, + "words": [ + { + "word": " Think", + "start": 4779.0, + "end": 4779.24, + "probability": 0.97119140625 + }, + { + "word": " about", + "start": 4779.24, + "end": 4779.42, + "probability": 0.990234375 + }, + { + "word": " it", + "start": 4779.42, + "end": 4779.56, + "probability": 0.970703125 + }, + { + "word": " this", + "start": 4779.56, + "end": 4779.68, + "probability": 0.9638671875 + }, + { + "word": " way", + "start": 4779.68, + "end": 4779.86, + "probability": 0.9990234375 + }, + { + "word": " is,", + "start": 4779.86, + "end": 4780.14, + "probability": 0.4287109375 + } + ] + }, + { + "id": 4340, + "text": "uh,", + "start": 4780.14, + "end": 4780.28, + "words": [ + { + "word": " uh,", + "start": 4780.14, + "end": 4780.28, + "probability": 0.404541015625 + } + ] + }, + { + "id": 4341, + "text": "you know,", + "start": 4780.32, + "end": 4780.52, + "words": [ + { + "word": " you", + "start": 4780.32, + "end": 4780.38, + "probability": 0.97607421875 + }, + { + "word": " know,", + "start": 4780.38, + "end": 4780.52, + "probability": 0.951171875 + } + ] + }, + { + "id": 4342, + "text": "you're getting that 50 meg down,", + "start": 4780.52, + "end": 4781.7, + "words": [ + { + "word": " you're", + "start": 4780.52, + "end": 4780.66, + "probability": 0.9794921875 + }, + { + "word": " getting", + "start": 4780.66, + "end": 4780.8, + "probability": 0.93994140625 + }, + { + "word": " that", + "start": 4780.8, + "end": 4780.94, + "probability": 0.99853515625 + }, + { + "word": " 50", + "start": 4780.94, + "end": 4781.22, + "probability": 0.99658203125 + }, + { + "word": " meg", + "start": 4781.22, + "end": 4781.4, + "probability": 0.449951171875 + }, + { + "word": " down,", + "start": 4781.4, + "end": 4781.7, + "probability": 0.93798828125 + } + ] + }, + { + "id": 4343, + "text": "but you're only getting five.", + "start": 4781.74, + "end": 4782.7, + "words": [ + { + "word": " but", + "start": 4781.74, + "end": 4781.84, + "probability": 0.9599609375 + }, + { + "word": " you're", + "start": 4781.84, + "end": 4781.92, + "probability": 0.9990234375 + }, + { + "word": " only", + "start": 4781.92, + "end": 4782.04, + "probability": 0.998046875 + }, + { + "word": " getting", + "start": 4782.04, + "end": 4782.2, + "probability": 0.9970703125 + }, + { + "word": " five.", + "start": 4782.2, + "end": 4782.7, + "probability": 0.9765625 + } + ] + }, + { + "id": 4344, + "text": "Yeah.", + "start": 4782.7, + "end": 4783.02, + "words": [ + { + "word": " Yeah.", + "start": 4782.7, + "end": 4783.02, + "probability": 0.7158203125 + } + ] + }, + { + "id": 4345, + "text": "I've noticed that they're selling plans like that.", + "start": 4783.1, + "end": 4784.64, + "words": [ + { + "word": " I've", + "start": 4783.1, + "end": 4783.22, + "probability": 0.9931640625 + }, + { + "word": " noticed", + "start": 4783.22, + "end": 4783.42, + "probability": 0.99609375 + }, + { + "word": " that", + "start": 4783.42, + "end": 4783.6, + "probability": 0.99365234375 + }, + { + "word": " they're", + "start": 4783.6, + "end": 4783.74, + "probability": 0.99560546875 + }, + { + "word": " selling", + "start": 4783.74, + "end": 4783.92, + "probability": 0.998046875 + }, + { + "word": " plans", + "start": 4783.92, + "end": 4784.22, + "probability": 0.99658203125 + }, + { + "word": " like", + "start": 4784.22, + "end": 4784.5, + "probability": 0.99853515625 + }, + { + "word": " that.", + "start": 4784.5, + "end": 4784.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4346, + "text": "Now they're like,", + "start": 4784.7, + "end": 4785.42, + "words": [ + { + "word": " Now", + "start": 4784.7, + "end": 4784.86, + "probability": 0.9873046875 + }, + { + "word": " they're", + "start": 4784.86, + "end": 4785.22, + "probability": 0.8935546875 + }, + { + "word": " like,", + "start": 4785.22, + "end": 4785.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4347, + "text": "you get a gig a bit down,", + "start": 4785.42, + "end": 4786.96, + "words": [ + { + "word": " you", + "start": 4785.42, + "end": 4785.5, + "probability": 0.9970703125 + }, + { + "word": " get", + "start": 4785.5, + "end": 4785.64, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 4785.64, + "end": 4786.18, + "probability": 0.9921875 + }, + { + "word": " gig", + "start": 4786.18, + "end": 4786.42, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 4786.42, + "end": 4786.52, + "probability": 0.2391357421875 + }, + { + "word": " bit", + "start": 4786.52, + "end": 4786.66, + "probability": 0.99951171875 + }, + { + "word": " down,", + "start": 4786.66, + "end": 4786.96, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4348, + "text": "but one meg up,", + "start": 4787.06, + "end": 4788.1, + "words": [ + { + "word": " but", + "start": 4787.06, + "end": 4787.26, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 4787.26, + "end": 4787.52, + "probability": 0.99609375 + }, + { + "word": " meg", + "start": 4787.52, + "end": 4787.76, + "probability": 0.521484375 + }, + { + "word": " up,", + "start": 4787.76, + "end": 4788.1, + "probability": 0.99462890625 + } + ] + }, + { + "id": 4349, + "text": "right?", + "start": 4788.14, + "end": 4788.36, + "words": [ + { + "word": " right?", + "start": 4788.14, + "end": 4788.36, + "probability": 0.556640625 + } + ] + }, + { + "id": 4350, + "text": "What is this?", + "start": 4788.42, + "end": 4788.84, + "words": [ + { + "word": " What", + "start": 4788.42, + "end": 4788.54, + "probability": 0.9619140625 + }, + { + "word": " is", + "start": 4788.54, + "end": 4788.64, + "probability": 0.98291015625 + }, + { + "word": " this?", + "start": 4788.64, + "end": 4788.84, + "probability": 0.99609375 + } + ] + }, + { + "id": 4351, + "text": "And that's how they're,", + "start": 4788.94, + "end": 4789.88, + "words": [ + { + "word": " And", + "start": 4788.94, + "end": 4789.18, + "probability": 0.97119140625 + }, + { + "word": " that's", + "start": 4789.18, + "end": 4789.42, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 4789.42, + "end": 4789.54, + "probability": 0.99609375 + }, + { + "word": " they're,", + "start": 4789.54, + "end": 4789.88, + "probability": 0.986328125 + } + ] + }, + { + "id": 4352, + "text": "that's how they're dedicating that bandwidth or,", + "start": 4789.88, + "end": 4792.08, + "words": [ + { + "word": " that's", + "start": 4789.88, + "end": 4790.22, + "probability": 0.998046875 + }, + { + "word": " how", + "start": 4790.22, + "end": 4790.3, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 4790.3, + "end": 4790.56, + "probability": 0.99853515625 + }, + { + "word": " dedicating", + "start": 4790.56, + "end": 4791.24, + "probability": 0.68359375 + }, + { + "word": " that", + "start": 4791.24, + "end": 4791.44, + "probability": 0.998046875 + }, + { + "word": " bandwidth", + "start": 4791.44, + "end": 4791.8, + "probability": 0.994140625 + }, + { + "word": " or,", + "start": 4791.8, + "end": 4792.08, + "probability": 0.9951171875 + } + ] + }, + { + "id": 4353, + "text": "or splitting it apart enough where they can pull that off on the network.", + "start": 4792.14, + "end": 4795.16, + "words": [ + { + "word": " or", + "start": 4792.14, + "end": 4792.42, + "probability": 0.9990234375 + }, + { + "word": " splitting", + "start": 4792.42, + "end": 4792.96, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 4792.96, + "end": 4793.08, + "probability": 0.99462890625 + }, + { + "word": " apart", + "start": 4793.08, + "end": 4793.26, + "probability": 0.9931640625 + }, + { + "word": " enough", + "start": 4793.26, + "end": 4793.46, + "probability": 0.99462890625 + }, + { + "word": " where", + "start": 4793.46, + "end": 4793.62, + "probability": 0.99267578125 + }, + { + "word": " they", + "start": 4793.62, + "end": 4793.76, + "probability": 1.0 + }, + { + "word": " can", + "start": 4793.76, + "end": 4793.9, + "probability": 1.0 + }, + { + "word": " pull", + "start": 4793.9, + "end": 4794.14, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4794.14, + "end": 4794.36, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 4794.36, + "end": 4794.64, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4794.64, + "end": 4794.78, + "probability": 0.98095703125 + }, + { + "word": " the", + "start": 4794.78, + "end": 4794.88, + "probability": 1.0 + }, + { + "word": " network.", + "start": 4794.88, + "end": 4795.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4354, + "text": "Otherwise they have to upgrade all their stuff and Lord knows,", + "start": 4795.32, + "end": 4798.64, + "words": [ + { + "word": " Otherwise", + "start": 4795.32, + "end": 4795.62, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4795.62, + "end": 4795.88, + "probability": 0.9892578125 + }, + { + "word": " have", + "start": 4795.88, + "end": 4796.0, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 4796.0, + "end": 4796.04, + "probability": 0.99951171875 + }, + { + "word": " upgrade", + "start": 4796.04, + "end": 4796.28, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 4796.28, + "end": 4796.48, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 4796.48, + "end": 4796.62, + "probability": 0.994140625 + }, + { + "word": " stuff", + "start": 4796.62, + "end": 4796.88, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4796.88, + "end": 4797.08, + "probability": 0.7470703125 + }, + { + "word": " Lord", + "start": 4797.08, + "end": 4798.26, + "probability": 0.95166015625 + }, + { + "word": " knows,", + "start": 4798.26, + "end": 4798.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4355, + "text": "you're not going to do that.", + "start": 4798.66, + "end": 4799.38, + "words": [ + { + "word": " you're", + "start": 4798.66, + "end": 4798.82, + "probability": 0.88671875 + }, + { + "word": " not", + "start": 4798.82, + "end": 4798.88, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 4798.88, + "end": 4798.98, + "probability": 0.94287109375 + }, + { + "word": " to", + "start": 4798.98, + "end": 4799.04, + "probability": 1.0 + }, + { + "word": " do", + "start": 4799.04, + "end": 4799.18, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4799.18, + "end": 4799.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4356, + "text": "So,", + "start": 4799.74, + "end": 4800.14, + "words": [ + { + "word": " So,", + "start": 4799.74, + "end": 4800.14, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4357, + "text": "um,", + "start": 4800.26, + "end": 4800.68, + "words": [ + { + "word": " um,", + "start": 4800.26, + "end": 4800.68, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4358, + "text": "the,", + "start": 4801.0, + "end": 4801.2, + "words": [ + { + "word": " the,", + "start": 4801.0, + "end": 4801.2, + "probability": 0.9912109375 + } + ] + }, + { + "id": 4359, + "text": "the best way to,", + "start": 4801.34, + "end": 4802.16, + "words": [ + { + "word": " the", + "start": 4801.34, + "end": 4801.46, + "probability": 0.99951171875 + }, + { + "word": " best", + "start": 4801.46, + "end": 4801.72, + "probability": 0.99853515625 + }, + { + "word": " way", + "start": 4801.72, + "end": 4801.94, + "probability": 0.9970703125 + }, + { + "word": " to,", + "start": 4801.94, + "end": 4802.16, + "probability": 0.95654296875 + } + ] + }, + { + "id": 4360, + "text": "to get relatively decent upload speeds,", + "start": 4802.24, + "end": 4804.94, + "words": [ + { + "word": " to", + "start": 4802.24, + "end": 4802.74, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 4802.74, + "end": 4803.06, + "probability": 0.99609375 + }, + { + "word": " relatively", + "start": 4803.06, + "end": 4803.96, + "probability": 0.990234375 + }, + { + "word": " decent", + "start": 4803.96, + "end": 4804.4, + "probability": 0.9990234375 + }, + { + "word": " upload", + "start": 4804.4, + "end": 4804.68, + "probability": 0.994140625 + }, + { + "word": " speeds,", + "start": 4804.68, + "end": 4804.94, + "probability": 0.97802734375 + } + ] + }, + { + "id": 4361, + "text": "have a business account and you don't have to,", + "start": 4804.96, + "end": 4806.64, + "words": [ + { + "word": " have", + "start": 4804.96, + "end": 4805.18, + "probability": 0.8984375 + }, + { + "word": " a", + "start": 4805.18, + "end": 4805.28, + "probability": 0.99951171875 + }, + { + "word": " business", + "start": 4805.28, + "end": 4805.5, + "probability": 0.99951171875 + }, + { + "word": " account", + "start": 4805.5, + "end": 4805.82, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 4805.82, + "end": 4806.26, + "probability": 0.744140625 + }, + { + "word": " you", + "start": 4806.26, + "end": 4806.48, + "probability": 0.98779296875 + }, + { + "word": " don't", + "start": 4806.48, + "end": 4806.64, + "probability": 0.9951171875 + }, + { + "word": " have", + "start": 4806.64, + "end": 4806.64, + "probability": 0.9541015625 + }, + { + "word": " to,", + "start": 4806.64, + "end": 4806.64, + "probability": 0.96728515625 + } + ] + }, + { + "id": 4362, + "text": "I don't have any data caps,", + "start": 4806.64, + "end": 4807.3, + "words": [ + { + "word": " I", + "start": 4806.64, + "end": 4806.64, + "probability": 0.1470947265625 + }, + { + "word": " don't", + "start": 4806.64, + "end": 4806.64, + "probability": 0.978515625 + }, + { + "word": " have", + "start": 4806.64, + "end": 4806.64, + "probability": 0.9892578125 + }, + { + "word": " any", + "start": 4806.64, + "end": 4806.78, + "probability": 0.99951171875 + }, + { + "word": " data", + "start": 4806.78, + "end": 4807.0, + "probability": 0.9990234375 + }, + { + "word": " caps,", + "start": 4807.0, + "end": 4807.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4363, + "text": "but your bill is like way more expensive.", + "start": 4807.44, + "end": 4809.14, + "words": [ + { + "word": " but", + "start": 4807.44, + "end": 4807.82, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 4807.82, + "end": 4808.04, + "probability": 0.99951171875 + }, + { + "word": " bill", + "start": 4808.04, + "end": 4808.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 4808.18, + "end": 4808.3, + "probability": 1.0 + }, + { + "word": " like", + "start": 4808.3, + "end": 4808.46, + "probability": 0.99560546875 + }, + { + "word": " way", + "start": 4808.46, + "end": 4808.64, + "probability": 1.0 + }, + { + "word": " more", + "start": 4808.64, + "end": 4808.8, + "probability": 1.0 + }, + { + "word": " expensive.", + "start": 4808.8, + "end": 4809.14, + "probability": 1.0 + } + ] + }, + { + "id": 4364, + "text": "Bill is a little bit more expensive.", + "start": 4809.26, + "end": 4810.34, + "words": [ + { + "word": " Bill", + "start": 4809.26, + "end": 4809.48, + "probability": 0.87890625 + }, + { + "word": " is", + "start": 4809.48, + "end": 4809.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 4809.68, + "end": 4809.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 4809.78, + "end": 4809.86, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4809.86, + "end": 4809.98, + "probability": 1.0 + }, + { + "word": " more", + "start": 4809.98, + "end": 4810.1, + "probability": 1.0 + }, + { + "word": " expensive.", + "start": 4810.1, + "end": 4810.34, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4365, + "text": "Yeah.", + "start": 4810.46, + "end": 4810.64, + "words": [ + { + "word": " Yeah.", + "start": 4810.46, + "end": 4810.64, + "probability": 0.98681640625 + } + ] + }, + { + "id": 4366, + "text": "But anyway,", + "start": 4811.42, + "end": 4811.9, + "words": [ + { + "word": " But", + "start": 4811.42, + "end": 4811.7, + "probability": 0.99609375 + }, + { + "word": " anyway,", + "start": 4811.7, + "end": 4811.9, + "probability": 1.0 + } + ] + }, + { + "id": 4367, + "text": "thanks for the call.", + "start": 4811.94, + "end": 4812.44, + "words": [ + { + "word": " thanks", + "start": 4811.94, + "end": 4812.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 4812.08, + "end": 4812.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 4812.22, + "end": 4812.3, + "probability": 1.0 + }, + { + "word": " call.", + "start": 4812.3, + "end": 4812.44, + "probability": 1.0 + } + ] + }, + { + "id": 4368, + "text": "Robert,", + "start": 4812.48, + "end": 4812.62, + "words": [ + { + "word": " Robert,", + "start": 4812.48, + "end": 4812.62, + "probability": 0.94775390625 + } + ] + }, + { + "id": 4369, + "text": "I gotta take a ticket,", + "start": 4812.68, + "end": 4813.48, + "words": [ + { + "word": " I", + "start": 4812.68, + "end": 4812.78, + "probability": 1.0 + }, + { + "word": " gotta", + "start": 4812.78, + "end": 4812.84, + "probability": 0.1942138671875 + }, + { + "word": " take", + "start": 4812.84, + "end": 4813.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 4813.06, + "end": 4813.16, + "probability": 1.0 + }, + { + "word": " ticket,", + "start": 4813.16, + "end": 4813.48, + "probability": 0.11175537109375 + } + ] + }, + { + "id": 4370, + "text": "take a break here.", + "start": 4813.54, + "end": 4814.46, + "words": [ + { + "word": " take", + "start": 4813.54, + "end": 4813.96, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4813.96, + "end": 4814.1, + "probability": 1.0 + }, + { + "word": " break", + "start": 4814.1, + "end": 4814.26, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 4814.26, + "end": 4814.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4371, + "text": "So they were cheaters.", + "start": 4814.68, + "end": 4815.9, + "words": [ + { + "word": " So", + "start": 4814.68, + "end": 4814.96, + "probability": 0.9609375 + }, + { + "word": " they", + "start": 4814.96, + "end": 4815.2, + "probability": 0.9990234375 + }, + { + "word": " were", + "start": 4815.2, + "end": 4815.4, + "probability": 1.0 + }, + { + "word": " cheaters.", + "start": 4815.4, + "end": 4815.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4372, + "text": "People should check.", + "start": 4816.18, + "end": 4817.08, + "words": [ + { + "word": " People", + "start": 4816.18, + "end": 4816.46, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 4816.46, + "end": 4816.72, + "probability": 1.0 + }, + { + "word": " check.", + "start": 4816.72, + "end": 4817.08, + "probability": 1.0 + } + ] + }, + { + "id": 4373, + "text": "Yeah,", + "start": 4817.24, + "end": 4817.52, + "words": [ + { + "word": " Yeah,", + "start": 4817.24, + "end": 4817.52, + "probability": 0.99658203125 + } + ] + }, + { + "id": 4374, + "text": "I agree a lot.", + "start": 4817.58, + "end": 4818.32, + "words": [ + { + "word": " I", + "start": 4817.58, + "end": 4817.74, + "probability": 0.99365234375 + }, + { + "word": " agree", + "start": 4817.74, + "end": 4817.98, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4817.98, + "end": 4818.08, + "probability": 0.841796875 + }, + { + "word": " lot.", + "start": 4818.08, + "end": 4818.32, + "probability": 1.0 + } + ] + }, + { + "id": 4375, + "text": "Yeah.", + "start": 4818.4, + "end": 4818.68, + "words": [ + { + "word": " Yeah.", + "start": 4818.4, + "end": 4818.68, + "probability": 0.99658203125 + } + ] + }, + { + "id": 4376, + "text": "Everyone check your do a speed test.", + "start": 4818.8, + "end": 4820.32, + "words": [ + { + "word": " Everyone", + "start": 4818.8, + "end": 4819.08, + "probability": 0.99365234375 + }, + { + "word": " check", + "start": 4819.08, + "end": 4819.3, + "probability": 0.998046875 + }, + { + "word": " your", + "start": 4819.3, + "end": 4819.52, + "probability": 0.99853515625 + }, + { + "word": " do", + "start": 4819.52, + "end": 4819.82, + "probability": 0.25048828125 + }, + { + "word": " a", + "start": 4819.82, + "end": 4819.94, + "probability": 1.0 + }, + { + "word": " speed", + "start": 4819.94, + "end": 4820.1, + "probability": 0.99951171875 + }, + { + "word": " test.", + "start": 4820.1, + "end": 4820.32, + "probability": 1.0 + } + ] + }, + { + "id": 4377, + "text": "Cause you're not getting what you pay for.", + "start": 4820.4, + "end": 4821.44, + "words": [ + { + "word": " Cause", + "start": 4820.4, + "end": 4820.44, + "probability": 0.8046875 + }, + { + "word": " you're", + "start": 4820.44, + "end": 4820.58, + "probability": 1.0 + }, + { + "word": " not", + "start": 4820.58, + "end": 4820.7, + "probability": 1.0 + }, + { + "word": " getting", + "start": 4820.7, + "end": 4820.9, + "probability": 1.0 + }, + { + "word": " what", + "start": 4820.9, + "end": 4821.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 4821.04, + "end": 4821.16, + "probability": 1.0 + }, + { + "word": " pay", + "start": 4821.16, + "end": 4821.26, + "probability": 0.99755859375 + }, + { + "word": " for.", + "start": 4821.26, + "end": 4821.44, + "probability": 1.0 + } + ] + }, + { + "id": 4378, + "text": "Yeah,", + "start": 4821.46, + "end": 4821.62, + "words": [ + { + "word": " Yeah,", + "start": 4821.46, + "end": 4821.62, + "probability": 0.29638671875 + } + ] + }, + { + "id": 4379, + "text": "you're not.", + "start": 4821.62, + "end": 4821.88, + "words": [ + { + "word": " you're", + "start": 4821.62, + "end": 4821.74, + "probability": 0.9970703125 + }, + { + "word": " not.", + "start": 4821.74, + "end": 4821.88, + "probability": 1.0 + } + ] + }, + { + "id": 4380, + "text": "Unless they have one of those ones that do guaranteed speeds.", + "start": 4822.02, + "end": 4824.5, + "words": [ + { + "word": " Unless", + "start": 4822.02, + "end": 4822.3, + "probability": 0.99462890625 + }, + { + "word": " they", + "start": 4822.3, + "end": 4822.52, + "probability": 0.77099609375 + }, + { + "word": " have", + "start": 4822.52, + "end": 4822.68, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 4822.68, + "end": 4822.84, + "probability": 0.5810546875 + }, + { + "word": " of", + "start": 4822.84, + "end": 4823.08, + "probability": 1.0 + }, + { + "word": " those", + "start": 4823.08, + "end": 4823.22, + "probability": 1.0 + }, + { + "word": " ones", + "start": 4823.22, + "end": 4823.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 4823.4, + "end": 4823.52, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4823.52, + "end": 4823.62, + "probability": 0.9970703125 + }, + { + "word": " guaranteed", + "start": 4823.62, + "end": 4824.06, + "probability": 1.0 + }, + { + "word": " speeds.", + "start": 4824.06, + "end": 4824.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4381, + "text": "Well,", + "start": 4824.74, + "end": 4824.88, + "words": [ + { + "word": " Well,", + "start": 4824.74, + "end": 4824.88, + "probability": 0.92431640625 + } + ] + }, + { + "id": 4382, + "text": "sir,", + "start": 4824.92, + "end": 4825.08, + "words": [ + { + "word": " sir,", + "start": 4824.92, + "end": 4825.08, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4383, + "text": "can you do that test at three in the morning?", + "start": 4825.16, + "end": 4826.68, + "words": [ + { + "word": " can", + "start": 4825.16, + "end": 4825.26, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4825.26, + "end": 4825.38, + "probability": 1.0 + }, + { + "word": " do", + "start": 4825.38, + "end": 4825.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 4825.5, + "end": 4825.64, + "probability": 1.0 + }, + { + "word": " test", + "start": 4825.64, + "end": 4825.88, + "probability": 0.99072265625 + }, + { + "word": " at", + "start": 4825.88, + "end": 4826.02, + "probability": 0.99951171875 + }, + { + "word": " three", + "start": 4826.02, + "end": 4826.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 4826.2, + "end": 4826.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 4826.32, + "end": 4826.38, + "probability": 1.0 + }, + { + "word": " morning?", + "start": 4826.38, + "end": 4826.68, + "probability": 1.0 + } + ] + }, + { + "id": 4384, + "text": "All right,", + "start": 4828.320000000001, + "end": 4828.8, + "words": [ + { + "word": " All", + "start": 4828.320000000001, + "end": 4828.6, + "probability": 0.99853515625 + }, + { + "word": " right,", + "start": 4828.6, + "end": 4828.8, + "probability": 1.0 + } + ] + }, + { + "id": 4385, + "text": "we'll be right back after this.", + "start": 4828.82, + "end": 4829.88, + "words": [ + { + "word": " we'll", + "start": 4828.82, + "end": 4828.96, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 4828.96, + "end": 4829.06, + "probability": 1.0 + }, + { + "word": " right", + "start": 4829.06, + "end": 4829.2, + "probability": 1.0 + }, + { + "word": " back", + "start": 4829.2, + "end": 4829.48, + "probability": 1.0 + }, + { + "word": " after", + "start": 4829.48, + "end": 4829.66, + "probability": 0.99365234375 + }, + { + "word": " this.", + "start": 4829.66, + "end": 4829.88, + "probability": 1.0 + } + ] + }, + { + "id": 4386, + "text": "I'll see it.", + "start": 4837.42, + "end": 4838.46, + "words": [ + { + "word": " I'll", + "start": 4837.42, + "end": 4838.08, + "probability": 0.450439453125 + }, + { + "word": " see", + "start": 4838.08, + "end": 4838.16, + "probability": 0.9814453125 + }, + { + "word": " it.", + "start": 4838.16, + "end": 4838.46, + "probability": 0.266357421875 + } + ] + }, + { + "id": 4387, + "text": "All good people.", + "start": 4838.46, + "end": 4839.66, + "words": [ + { + "word": " All", + "start": 4838.46, + "end": 4838.54, + "probability": 0.78955078125 + }, + { + "word": " good", + "start": 4838.54, + "end": 4838.86, + "probability": 0.99951171875 + }, + { + "word": " people.", + "start": 4838.86, + "end": 4839.66, + "probability": 0.93896484375 + } + ] + }, + { + "id": 4388, + "text": "Each day.", + "start": 4840.16, + "end": 4841.76, + "words": [ + { + "word": " Each", + "start": 4840.16, + "end": 4840.82, + "probability": 0.2381591796875 + }, + { + "word": " day.", + "start": 4840.82, + "end": 4841.76, + "probability": 1.0 + } + ] + }, + { + "id": 4389, + "text": "So satisfied.", + "start": 4841.82, + "end": 4842.8, + "words": [ + { + "word": " So", + "start": 4841.82, + "end": 4842.06, + "probability": 0.98828125 + }, + { + "word": " satisfied.", + "start": 4842.06, + "end": 4842.8, + "probability": 0.96875 + } + ] + }, + { + "id": 4390, + "text": "I'm on my way.", + "start": 4843.22, + "end": 4845.04, + "words": [ + { + "word": " I'm", + "start": 4843.22, + "end": 4843.88, + "probability": 0.798828125 + }, + { + "word": " on", + "start": 4843.88, + "end": 4844.08, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4844.08, + "end": 4844.5, + "probability": 1.0 + }, + { + "word": " way.", + "start": 4844.5, + "end": 4845.04, + "probability": 1.0 + } + ] + }, + { + "id": 4391, + "text": "Computer troubles need some advice.", + "start": 4851.72, + "end": 4854.1, + "words": [ + { + "word": " Computer", + "start": 4851.72, + "end": 4852.38, + "probability": 0.958984375 + }, + { + "word": " troubles", + "start": 4852.38, + "end": 4852.82, + "probability": 0.99560546875 + }, + { + "word": " need", + "start": 4852.82, + "end": 4853.28, + "probability": 0.142578125 + }, + { + "word": " some", + "start": 4853.28, + "end": 4853.76, + "probability": 1.0 + }, + { + "word": " advice.", + "start": 4853.76, + "end": 4854.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4392, + "text": "Call in now.", + "start": 4854.3, + "end": 4855.06, + "words": [ + { + "word": " Call", + "start": 4854.3, + "end": 4854.58, + "probability": 0.916015625 + }, + { + "word": " in", + "start": 4854.58, + "end": 4854.8, + "probability": 0.6650390625 + }, + { + "word": " now.", + "start": 4854.8, + "end": 4855.06, + "probability": 0.984375 + } + ] + }, + { + "id": 4393, + "text": "Mike Swanson.", + "start": 4855.2, + "end": 4855.92, + "words": [ + { + "word": " Mike", + "start": 4855.2, + "end": 4855.54, + "probability": 0.998046875 + }, + { + "word": " Swanson.", + "start": 4855.54, + "end": 4855.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4394, + "text": "We'll be back after these messages.", + "start": 4856.0, + "end": 4857.46, + "words": [ + { + "word": " We'll", + "start": 4856.0, + "end": 4856.18, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 4856.18, + "end": 4856.26, + "probability": 1.0 + }, + { + "word": " back", + "start": 4856.26, + "end": 4856.48, + "probability": 1.0 + }, + { + "word": " after", + "start": 4856.48, + "end": 4856.88, + "probability": 0.99609375 + }, + { + "word": " these", + "start": 4856.88, + "end": 4857.06, + "probability": 0.9990234375 + }, + { + "word": " messages.", + "start": 4857.06, + "end": 4857.46, + "probability": 1.0 + } + ] + }, + { + "id": 4395, + "text": "The computer guru show AM 10 30 KBO.", + "start": 4857.58, + "end": 4861.0, + "words": [ + { + "word": " The", + "start": 4857.58, + "end": 4858.12, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 4858.12, + "end": 4858.42, + "probability": 0.85986328125 + }, + { + "word": " guru", + "start": 4858.42, + "end": 4858.74, + "probability": 0.9892578125 + }, + { + "word": " show", + "start": 4858.74, + "end": 4859.12, + "probability": 0.99658203125 + }, + { + "word": " AM", + "start": 4859.12, + "end": 4859.72, + "probability": 0.299072265625 + }, + { + "word": " 10", + "start": 4859.72, + "end": 4860.0, + "probability": 0.98388671875 + }, + { + "word": " 30", + "start": 4860.0, + "end": 4860.36, + "probability": 0.440673828125 + }, + { + "word": " KBO.", + "start": 4860.36, + "end": 4861.0, + "probability": 0.8974609375 + } + ] + }, + { + "id": 4396, + "text": "Why the voice?", + "start": 4861.1, + "end": 4862.08, + "words": [ + { + "word": " Why", + "start": 4861.1, + "end": 4861.4, + "probability": 0.9521484375 + }, + { + "word": " the", + "start": 4861.4, + "end": 4861.78, + "probability": 0.94677734375 + }, + { + "word": " voice?", + "start": 4861.78, + "end": 4862.08, + "probability": 0.84130859375 + } + ] + }, + { + "id": 4397, + "text": "I'm sorry.", + "start": 4865.96, + "end": 4866.62, + "words": [ + { + "word": " I'm", + "start": 4865.96, + "end": 4866.62, + "probability": 0.335205078125 + }, + { + "word": " sorry.", + "start": 4866.62, + "end": 4866.62, + "probability": 0.00495147705078125 + } + ] + }, + { + "id": 4398, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4399, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4400, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4401, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4402, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4403, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4404, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4405, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4406, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4407, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4408, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4409, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4410, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4411, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4412, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4413, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4414, + "text": "", + "start": 4866.62, + "end": 4866.62, + "words": [] + }, + { + "id": 4415, + "text": "Mike Swanson.", + "start": 4875.74, + "end": 4876.66, + "words": [ + { + "word": " Mike", + "start": 4875.74, + "end": 4876.26, + "probability": 0.826171875 + }, + { + "word": " Swanson.", + "start": 4876.26, + "end": 4876.66, + "probability": 0.99365234375 + } + ] + }, + { + "id": 4416, + "text": "Your computer guru is just a click away.", + "start": 4876.76, + "end": 4878.82, + "words": [ + { + "word": " Your", + "start": 4876.76, + "end": 4876.9, + "probability": 0.9736328125 + }, + { + "word": " computer", + "start": 4876.9, + "end": 4877.3, + "probability": 0.93310546875 + }, + { + "word": " guru", + "start": 4877.3, + "end": 4877.64, + "probability": 0.994140625 + }, + { + "word": " is", + "start": 4877.64, + "end": 4878.02, + "probability": 0.97900390625 + }, + { + "word": " just", + "start": 4878.02, + "end": 4878.28, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4878.28, + "end": 4878.42, + "probability": 1.0 + }, + { + "word": " click", + "start": 4878.42, + "end": 4878.6, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 4878.6, + "end": 4878.82, + "probability": 1.0 + } + ] + }, + { + "id": 4417, + "text": "Listen and watch a guru show.com.", + "start": 4879.02, + "end": 4881.2, + "words": [ + { + "word": " Listen", + "start": 4879.02, + "end": 4879.5, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4879.5, + "end": 4879.7, + "probability": 0.994140625 + }, + { + "word": " watch", + "start": 4879.7, + "end": 4879.98, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4879.98, + "end": 4880.14, + "probability": 0.748046875 + }, + { + "word": " guru", + "start": 4880.14, + "end": 4880.34, + "probability": 0.9189453125 + }, + { + "word": " show", + "start": 4880.34, + "end": 4880.68, + "probability": 0.9951171875 + }, + { + "word": ".com.", + "start": 4880.68, + "end": 4881.2, + "probability": 0.8193359375 + } + ] + }, + { + "id": 4418, + "text": "This is the computer guru show.", + "start": 4881.6, + "end": 4883.62, + "words": [ + { + "word": " This", + "start": 4881.6, + "end": 4882.12, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4882.12, + "end": 4882.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 4882.46, + "end": 4882.6, + "probability": 0.9951171875 + }, + { + "word": " computer", + "start": 4882.6, + "end": 4882.9, + "probability": 0.99169921875 + }, + { + "word": " guru", + "start": 4882.9, + "end": 4883.22, + "probability": 0.99853515625 + }, + { + "word": " show.", + "start": 4883.22, + "end": 4883.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4419, + "text": "Welcome back to the computer guru show.", + "start": 4884.1, + "end": 4887.0, + "words": [ + { + "word": " Welcome", + "start": 4884.1, + "end": 4884.62, + "probability": 0.9990234375 + }, + { + "word": " back", + "start": 4884.62, + "end": 4886.06, + "probability": 0.96875 + }, + { + "word": " to", + "start": 4886.06, + "end": 4886.24, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4886.24, + "end": 4886.32, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4886.32, + "end": 4886.52, + "probability": 1.0 + }, + { + "word": " guru", + "start": 4886.52, + "end": 4886.72, + "probability": 0.9873046875 + }, + { + "word": " show.", + "start": 4886.72, + "end": 4887.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4420, + "text": "We're talking about more of the interesting stuff that is,", + "start": 4887.16, + "end": 4889.96, + "words": [ + { + "word": " We're", + "start": 4887.16, + "end": 4887.68, + "probability": 0.984375 + }, + { + "word": " talking", + "start": 4887.68, + "end": 4887.86, + "probability": 1.0 + }, + { + "word": " about", + "start": 4887.86, + "end": 4888.06, + "probability": 1.0 + }, + { + "word": " more", + "start": 4888.06, + "end": 4888.26, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4888.26, + "end": 4888.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 4888.34, + "end": 4888.42, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 4888.42, + "end": 4888.82, + "probability": 0.99853515625 + }, + { + "word": " stuff", + "start": 4888.82, + "end": 4889.26, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4889.26, + "end": 4889.6, + "probability": 0.97802734375 + }, + { + "word": " is,", + "start": 4889.6, + "end": 4889.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4421, + "text": "uh,", + "start": 4889.96, + "end": 4890.2, + "words": [ + { + "word": " uh,", + "start": 4889.96, + "end": 4890.2, + "probability": 0.97216796875 + } + ] + }, + { + "id": 4422, + "text": "apparently over CES.", + "start": 4890.22, + "end": 4891.54, + "words": [ + { + "word": " apparently", + "start": 4890.22, + "end": 4890.6, + "probability": 0.990234375 + }, + { + "word": " over", + "start": 4890.6, + "end": 4890.84, + "probability": 0.99853515625 + }, + { + "word": " CES.", + "start": 4890.84, + "end": 4891.54, + "probability": 0.9287109375 + } + ] + }, + { + "id": 4423, + "text": "Now,", + "start": 4891.64, + "end": 4892.16, + "words": [ + { + "word": " Now,", + "start": 4891.64, + "end": 4892.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4424, + "text": "a lot of,", + "start": 4892.22, + "end": 4892.6, + "words": [ + { + "word": " a", + "start": 4892.22, + "end": 4892.28, + "probability": 0.99853515625 + }, + { + "word": " lot", + "start": 4892.28, + "end": 4892.42, + "probability": 1.0 + }, + { + "word": " of,", + "start": 4892.42, + "end": 4892.6, + "probability": 1.0 + } + ] + }, + { + "id": 4425, + "text": "uh,", + "start": 4892.6, + "end": 4892.76, + "words": [ + { + "word": " uh,", + "start": 4892.6, + "end": 4892.76, + "probability": 0.9521484375 + } + ] + }, + { + "id": 4426, + "text": "you know,", + "start": 4892.82, + "end": 4893.4, + "words": [ + { + "word": " you", + "start": 4892.82, + "end": 4893.2, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 4893.2, + "end": 4893.4, + "probability": 1.0 + } + ] + }, + { + "id": 4427, + "text": "cities are trying to go smart.", + "start": 4893.4, + "end": 4895.26, + "words": [ + { + "word": " cities", + "start": 4893.4, + "end": 4893.96, + "probability": 0.9765625 + }, + { + "word": " are", + "start": 4893.96, + "end": 4894.22, + "probability": 0.998046875 + }, + { + "word": " trying", + "start": 4894.22, + "end": 4894.44, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4894.44, + "end": 4894.62, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 4894.62, + "end": 4894.9, + "probability": 0.9619140625 + }, + { + "word": " smart.", + "start": 4894.9, + "end": 4895.26, + "probability": 0.97412109375 + } + ] + }, + { + "id": 4428, + "text": "Cities these days,", + "start": 4895.4, + "end": 4896.46, + "words": [ + { + "word": " Cities", + "start": 4895.4, + "end": 4895.92, + "probability": 0.9013671875 + }, + { + "word": " these", + "start": 4895.92, + "end": 4896.2, + "probability": 0.94970703125 + }, + { + "word": " days,", + "start": 4896.2, + "end": 4896.46, + "probability": 1.0 + } + ] + }, + { + "id": 4429, + "text": "they have smart infrastructure and smart city.", + "start": 4896.64, + "end": 4898.66, + "words": [ + { + "word": " they", + "start": 4896.64, + "end": 4896.64, + "probability": 0.0004394054412841797 + }, + { + "word": " have", + "start": 4896.64, + "end": 4896.64, + "probability": 0.6337890625 + }, + { + "word": " smart", + "start": 4896.64, + "end": 4896.74, + "probability": 0.94189453125 + }, + { + "word": " infrastructure", + "start": 4896.74, + "end": 4897.22, + "probability": 0.9775390625 + }, + { + "word": " and", + "start": 4897.22, + "end": 4897.78, + "probability": 0.1881103515625 + }, + { + "word": " smart", + "start": 4897.78, + "end": 4898.24, + "probability": 0.32568359375 + }, + { + "word": " city.", + "start": 4898.24, + "end": 4898.66, + "probability": 0.9609375 + } + ] + }, + { + "id": 4430, + "text": "It's not usually a phrase you hear.", + "start": 4898.76, + "end": 4899.96, + "words": [ + { + "word": " It's", + "start": 4898.76, + "end": 4898.94, + "probability": 0.974609375 + }, + { + "word": " not", + "start": 4898.94, + "end": 4899.04, + "probability": 0.998046875 + }, + { + "word": " usually", + "start": 4899.04, + "end": 4899.32, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 4899.32, + "end": 4899.48, + "probability": 0.994140625 + }, + { + "word": " phrase", + "start": 4899.48, + "end": 4899.68, + "probability": 0.8408203125 + }, + { + "word": " you", + "start": 4899.68, + "end": 4899.84, + "probability": 0.44482421875 + }, + { + "word": " hear.", + "start": 4899.84, + "end": 4899.96, + "probability": 0.94677734375 + } + ] + }, + { + "id": 4431, + "text": "Yeah,", + "start": 4900.06, + "end": 4900.3, + "words": [ + { + "word": " Yeah,", + "start": 4900.06, + "end": 4900.3, + "probability": 0.86279296875 + } + ] + }, + { + "id": 4432, + "text": "it's,", + "start": 4900.36, + "end": 4900.64, + "words": [ + { + "word": " it's,", + "start": 4900.36, + "end": 4900.64, + "probability": 0.98828125 + } + ] + }, + { + "id": 4433, + "text": "it's,", + "start": 4900.64, + "end": 4900.94, + "words": [ + { + "word": " it's,", + "start": 4900.64, + "end": 4900.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4434, + "text": "it's an oxymoron.", + "start": 4900.94, + "end": 4901.68, + "words": [ + { + "word": " it's", + "start": 4900.94, + "end": 4901.16, + "probability": 0.99853515625 + }, + { + "word": " an", + "start": 4901.16, + "end": 4901.2, + "probability": 0.99072265625 + }, + { + "word": " oxymoron.", + "start": 4901.2, + "end": 4901.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4435, + "text": "But,", + "start": 4901.86, + "end": 4902.42, + "words": [ + { + "word": " But,", + "start": 4901.86, + "end": 4902.42, + "probability": 0.98486328125 + } + ] + }, + { + "id": 4436, + "text": "um,", + "start": 4902.58, + "end": 4902.86, + "words": [ + { + "word": " um,", + "start": 4902.58, + "end": 4902.86, + "probability": 0.96728515625 + } + ] + }, + { + "id": 4437, + "text": "the,", + "start": 4903.24, + "end": 4903.68, + "words": [ + { + "word": " the,", + "start": 4903.24, + "end": 4903.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4438, + "text": "the idea of adding the infrastructure for things like,", + "start": 4903.86, + "end": 4908.1, + "words": [ + { + "word": " the", + "start": 4903.86, + "end": 4904.6, + "probability": 0.9990234375 + }, + { + "word": " idea", + "start": 4904.6, + "end": 4905.08, + "probability": 0.9931640625 + }, + { + "word": " of", + "start": 4905.08, + "end": 4905.26, + "probability": 1.0 + }, + { + "word": " adding", + "start": 4905.26, + "end": 4905.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4905.58, + "end": 4905.9, + "probability": 0.99951171875 + }, + { + "word": " infrastructure", + "start": 4905.9, + "end": 4906.46, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4906.46, + "end": 4907.38, + "probability": 0.99853515625 + }, + { + "word": " things", + "start": 4907.38, + "end": 4907.64, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 4907.64, + "end": 4908.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4439, + "text": "you know,", + "start": 4908.22, + "end": 4908.44, + "words": [ + { + "word": " you", + "start": 4908.22, + "end": 4908.38, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 4908.38, + "end": 4908.44, + "probability": 1.0 + } + ] + }, + { + "id": 4440, + "text": "municipal,", + "start": 4908.48, + "end": 4908.74, + "words": [ + { + "word": " municipal,", + "start": 4908.48, + "end": 4908.74, + "probability": 0.96728515625 + } + ] + }, + { + "id": 4441, + "text": "municipal wifi or an IOT,", + "start": 4908.74, + "end": 4911.42, + "words": [ + { + "word": " municipal", + "start": 4908.74, + "end": 4909.06, + "probability": 0.99365234375 + }, + { + "word": " wifi", + "start": 4909.06, + "end": 4909.64, + "probability": 0.927734375 + }, + { + "word": " or", + "start": 4909.64, + "end": 4910.42, + "probability": 0.9580078125 + }, + { + "word": " an", + "start": 4910.42, + "end": 4910.88, + "probability": 0.99560546875 + }, + { + "word": " IOT,", + "start": 4910.88, + "end": 4911.42, + "probability": 0.947265625 + } + ] + }, + { + "id": 4442, + "text": "uh,", + "start": 4911.48, + "end": 4912.0, + "words": [ + { + "word": " uh,", + "start": 4911.48, + "end": 4912.0, + "probability": 0.97314453125 + } + ] + }, + { + "id": 4443, + "text": "sort of interaction with your,", + "start": 4912.2, + "end": 4913.74, + "words": [ + { + "word": " sort", + "start": 4912.2, + "end": 4912.52, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4912.52, + "end": 4912.66, + "probability": 1.0 + }, + { + "word": " interaction", + "start": 4912.66, + "end": 4913.0, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 4913.0, + "end": 4913.52, + "probability": 0.99951171875 + }, + { + "word": " your,", + "start": 4913.52, + "end": 4913.74, + "probability": 0.998046875 + } + ] + }, + { + "id": 4444, + "text": "as an example,", + "start": 4913.84, + "end": 4915.1, + "words": [ + { + "word": " as", + "start": 4913.84, + "end": 4914.58, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 4914.58, + "end": 4914.72, + "probability": 1.0 + }, + { + "word": " example,", + "start": 4914.72, + "end": 4915.1, + "probability": 1.0 + } + ] + }, + { + "id": 4445, + "text": "emergency vehicles now have,", + "start": 4915.2, + "end": 4916.9, + "words": [ + { + "word": " emergency", + "start": 4915.2, + "end": 4915.72, + "probability": 0.99853515625 + }, + { + "word": " vehicles", + "start": 4915.72, + "end": 4916.16, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 4916.16, + "end": 4916.5, + "probability": 0.99853515625 + }, + { + "word": " have,", + "start": 4916.5, + "end": 4916.9, + "probability": 1.0 + } + ] + }, + { + "id": 4446, + "text": "uh,", + "start": 4916.98, + "end": 4917.2, + "words": [ + { + "word": " uh,", + "start": 4916.98, + "end": 4917.2, + "probability": 0.7294921875 + } + ] + }, + { + "id": 4447, + "text": "transponders that pick up on,", + "start": 4918.12, + "end": 4919.58, + "words": [ + { + "word": " transponders", + "start": 4918.12, + "end": 4918.68, + "probability": 0.9892578125 + }, + { + "word": " that", + "start": 4918.68, + "end": 4918.9, + "probability": 0.99951171875 + }, + { + "word": " pick", + "start": 4918.9, + "end": 4919.1, + "probability": 0.998046875 + }, + { + "word": " up", + "start": 4919.1, + "end": 4919.24, + "probability": 1.0 + }, + { + "word": " on,", + "start": 4919.24, + "end": 4919.58, + "probability": 1.0 + } + ] + }, + { + "id": 4448, + "text": "on municipal wifi.", + "start": 4919.6, + "end": 4920.84, + "words": [ + { + "word": " on", + "start": 4919.6, + "end": 4919.86, + "probability": 0.99951171875 + }, + { + "word": " municipal", + "start": 4919.86, + "end": 4920.44, + "probability": 0.9990234375 + }, + { + "word": " wifi.", + "start": 4920.44, + "end": 4920.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 4449, + "text": "Tucson has municipal wifi for its own city services.", + "start": 4921.1, + "end": 4924.44, + "words": [ + { + "word": " Tucson", + "start": 4921.1, + "end": 4921.66, + "probability": 0.9912109375 + }, + { + "word": " has", + "start": 4921.66, + "end": 4921.96, + "probability": 0.99951171875 + }, + { + "word": " municipal", + "start": 4921.96, + "end": 4922.16, + "probability": 0.9765625 + }, + { + "word": " wifi", + "start": 4922.16, + "end": 4922.78, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 4922.78, + "end": 4923.28, + "probability": 0.9990234375 + }, + { + "word": " its", + "start": 4923.28, + "end": 4923.54, + "probability": 0.998046875 + }, + { + "word": " own", + "start": 4923.54, + "end": 4923.7, + "probability": 0.99951171875 + }, + { + "word": " city", + "start": 4923.7, + "end": 4924.0, + "probability": 0.99951171875 + }, + { + "word": " services.", + "start": 4924.0, + "end": 4924.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4450, + "text": "Right.", + "start": 4924.52, + "end": 4924.8, + "words": [ + { + "word": " Right.", + "start": 4924.52, + "end": 4924.8, + "probability": 0.951171875 + } + ] + }, + { + "id": 4451, + "text": "Um,", + "start": 4925.34, + "end": 4925.9, + "words": [ + { + "word": " Um,", + "start": 4925.34, + "end": 4925.9, + "probability": 0.994140625 + } + ] + }, + { + "id": 4452, + "text": "now,", + "start": 4925.94, + "end": 4926.58, + "words": [ + { + "word": " now,", + "start": 4925.94, + "end": 4926.58, + "probability": 0.9521484375 + } + ] + }, + { + "id": 4453, + "text": "", + "start": 4926.62, + "end": 4926.62, + "words": [] + }, + { + "id": 4454, + "text": "", + "start": 4926.62, + "end": 4926.62, + "words": [] + }, + { + "id": 4455, + "text": "", + "start": 4926.62, + "end": 4926.62, + "words": [] + }, + { + "id": 4456, + "text": "", + "start": 4926.62, + "end": 4926.62, + "words": [] + }, + { + "id": 4457, + "text": "", + "start": 4926.62, + "end": 4926.62, + "words": [] + }, + { + "id": 4458, + "text": "it doesn't offer the citywide,", + "start": 4926.64, + "end": 4928.94, + "words": [ + { + "word": " it", + "start": 4926.64, + "end": 4926.74, + "probability": 0.005153656005859375 + }, + { + "word": " doesn't", + "start": 4926.74, + "end": 4927.1, + "probability": 0.99462890625 + }, + { + "word": " offer", + "start": 4927.1, + "end": 4927.36, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4927.36, + "end": 4927.72, + "probability": 0.74560546875 + }, + { + "word": " citywide,", + "start": 4927.72, + "end": 4928.94, + "probability": 0.8046875 + } + ] + }, + { + "id": 4459, + "text": "uh,", + "start": 4929.08, + "end": 4929.36, + "words": [ + { + "word": " uh,", + "start": 4929.08, + "end": 4929.36, + "probability": 0.93603515625 + } + ] + }, + { + "id": 4460, + "text": "wifi that you would hope for.", + "start": 4929.58, + "end": 4931.26, + "words": [ + { + "word": " wifi", + "start": 4929.58, + "end": 4930.16, + "probability": 0.927734375 + }, + { + "word": " that", + "start": 4930.16, + "end": 4930.58, + "probability": 0.99609375 + }, + { + "word": " you", + "start": 4930.58, + "end": 4930.78, + "probability": 1.0 + }, + { + "word": " would", + "start": 4930.78, + "end": 4930.98, + "probability": 0.99853515625 + }, + { + "word": " hope", + "start": 4930.98, + "end": 4931.26, + "probability": 0.181640625 + }, + { + "word": " for.", + "start": 4931.26, + "end": 4931.26, + "probability": 0.9736328125 + } + ] + }, + { + "id": 4461, + "text": "For the public.", + "start": 4931.26, + "end": 4931.74, + "words": [ + { + "word": " For", + "start": 4931.26, + "end": 4931.34, + "probability": 0.419189453125 + }, + { + "word": " the", + "start": 4931.34, + "end": 4931.46, + "probability": 0.99609375 + }, + { + "word": " public.", + "start": 4931.46, + "end": 4931.74, + "probability": 0.998046875 + } + ] + }, + { + "id": 4462, + "text": "Yeah.", + "start": 4932.0, + "end": 4932.3, + "words": [ + { + "word": " Yeah.", + "start": 4932.0, + "end": 4932.3, + "probability": 0.52392578125 + } + ] + }, + { + "id": 4463, + "text": "That would be out there like Colorado does.", + "start": 4932.56, + "end": 4934.54, + "words": [ + { + "word": " That", + "start": 4932.56, + "end": 4933.0, + "probability": 0.98876953125 + }, + { + "word": " would", + "start": 4933.0, + "end": 4933.2, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 4933.2, + "end": 4933.34, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4933.34, + "end": 4933.48, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 4933.48, + "end": 4933.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 4933.66, + "end": 4933.82, + "probability": 0.99560546875 + }, + { + "word": " Colorado", + "start": 4933.82, + "end": 4934.14, + "probability": 0.99853515625 + }, + { + "word": " does.", + "start": 4934.14, + "end": 4934.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4464, + "text": "But,", + "start": 4934.82, + "end": 4935.26, + "words": [ + { + "word": " But,", + "start": 4934.82, + "end": 4935.26, + "probability": 0.994140625 + } + ] + }, + { + "id": 4465, + "text": "um,", + "start": 4936.080000000001, + "end": 4936.52, + "words": [ + { + "word": " um,", + "start": 4936.080000000001, + "end": 4936.52, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4466, + "text": "there,", + "start": 4936.72, + "end": 4937.06, + "words": [ + { + "word": " there,", + "start": 4936.72, + "end": 4937.06, + "probability": 0.9814453125 + } + ] + }, + { + "id": 4467, + "text": "a lot of that is because where are you going to put it?", + "start": 4937.24, + "end": 4940.28, + "words": [ + { + "word": " a", + "start": 4937.24, + "end": 4937.84, + "probability": 0.994140625 + }, + { + "word": " lot", + "start": 4937.84, + "end": 4938.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 4938.28, + "end": 4938.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 4938.36, + "end": 4938.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 4938.48, + "end": 4938.64, + "probability": 1.0 + }, + { + "word": " because", + "start": 4938.64, + "end": 4939.0, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 4939.0, + "end": 4939.78, + "probability": 0.9208984375 + }, + { + "word": " are", + "start": 4939.78, + "end": 4939.88, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 4939.88, + "end": 4939.94, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 4939.94, + "end": 4940.0, + "probability": 0.95703125 + }, + { + "word": " to", + "start": 4940.0, + "end": 4940.02, + "probability": 1.0 + }, + { + "word": " put", + "start": 4940.02, + "end": 4940.14, + "probability": 1.0 + }, + { + "word": " it?", + "start": 4940.14, + "end": 4940.28, + "probability": 1.0 + } + ] + }, + { + "id": 4468, + "text": "Right.", + "start": 4940.32, + "end": 4940.76, + "words": [ + { + "word": " Right.", + "start": 4940.32, + "end": 4940.76, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4469, + "text": "Are you going to spend a bunch of money to put up new posts and,", + "start": 4940.86, + "end": 4944.5, + "words": [ + { + "word": " Are", + "start": 4940.86, + "end": 4941.06, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 4941.06, + "end": 4941.34, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 4941.34, + "end": 4941.42, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4941.42, + "end": 4941.5, + "probability": 0.99951171875 + }, + { + "word": " spend", + "start": 4941.5, + "end": 4941.68, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 4941.68, + "end": 4941.8, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 4941.8, + "end": 4941.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4941.94, + "end": 4942.04, + "probability": 1.0 + }, + { + "word": " money", + "start": 4942.04, + "end": 4942.24, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4942.24, + "end": 4942.46, + "probability": 1.0 + }, + { + "word": " put", + "start": 4942.46, + "end": 4942.8, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4942.8, + "end": 4943.0, + "probability": 0.99951171875 + }, + { + "word": " new", + "start": 4943.0, + "end": 4943.2, + "probability": 0.93017578125 + }, + { + "word": " posts", + "start": 4943.2, + "end": 4944.02, + "probability": 0.99951171875 + }, + { + "word": " and,", + "start": 4944.02, + "end": 4944.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4470, + "text": "you know,", + "start": 4944.58, + "end": 4945.16, + "words": [ + { + "word": " you", + "start": 4944.58, + "end": 4944.94, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 4944.94, + "end": 4945.16, + "probability": 1.0 + } + ] + }, + { + "id": 4471, + "text": "the places to hide all of this,", + "start": 4945.16, + "end": 4947.24, + "words": [ + { + "word": " the", + "start": 4945.16, + "end": 4945.34, + "probability": 0.62841796875 + }, + { + "word": " places", + "start": 4945.34, + "end": 4946.06, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4946.06, + "end": 4946.34, + "probability": 1.0 + }, + { + "word": " hide", + "start": 4946.34, + "end": 4946.62, + "probability": 1.0 + }, + { + "word": " all", + "start": 4946.62, + "end": 4946.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4946.86, + "end": 4947.02, + "probability": 0.9990234375 + }, + { + "word": " this,", + "start": 4947.02, + "end": 4947.24, + "probability": 1.0 + } + ] + }, + { + "id": 4472, + "text": "this,", + "start": 4947.26, + "end": 4947.66, + "words": [ + { + "word": " this,", + "start": 4947.26, + "end": 4947.66, + "probability": 0.9951171875 + } + ] + }, + { + "id": 4473, + "text": "uh,", + "start": 4947.86, + "end": 4948.04, + "words": [ + { + "word": " uh,", + "start": 4947.86, + "end": 4948.04, + "probability": 0.99365234375 + } + ] + }, + { + "id": 4474, + "text": "technology?", + "start": 4948.12, + "end": 4948.66, + "words": [ + { + "word": " technology?", + "start": 4948.12, + "end": 4948.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4475, + "text": "Well,", + "start": 4949.38, + "end": 4949.82, + "words": [ + { + "word": " Well,", + "start": 4949.38, + "end": 4949.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 4476, + "text": "there is a,", + "start": 4949.94, + "end": 4950.78, + "words": [ + { + "word": " there", + "start": 4949.94, + "end": 4950.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 4950.18, + "end": 4950.48, + "probability": 1.0 + }, + { + "word": " a,", + "start": 4950.48, + "end": 4950.78, + "probability": 1.0 + } + ] + }, + { + "id": 4477, + "text": "a company called Wifiber that has figured out a,", + "start": 4950.82, + "end": 4954.66, + "words": [ + { + "word": " a", + "start": 4950.82, + "end": 4951.18, + "probability": 0.99951171875 + }, + { + "word": " company", + "start": 4951.18, + "end": 4951.58, + "probability": 0.9716796875 + }, + { + "word": " called", + "start": 4951.58, + "end": 4951.9, + "probability": 1.0 + }, + { + "word": " Wifiber", + "start": 4951.9, + "end": 4952.48, + "probability": 0.35791015625 + }, + { + "word": " that", + "start": 4952.48, + "end": 4952.8, + "probability": 0.9990234375 + }, + { + "word": " has", + "start": 4952.8, + "end": 4953.22, + "probability": 1.0 + }, + { + "word": " figured", + "start": 4953.22, + "end": 4954.1, + "probability": 0.99658203125 + }, + { + "word": " out", + "start": 4954.1, + "end": 4954.46, + "probability": 0.9990234375 + }, + { + "word": " a,", + "start": 4954.46, + "end": 4954.66, + "probability": 0.96044921875 + } + ] + }, + { + "id": 4478, + "text": "a very interesting way to do,", + "start": 4954.68, + "end": 4956.62, + "words": [ + { + "word": " a", + "start": 4954.68, + "end": 4955.12, + "probability": 0.89697265625 + }, + { + "word": " very", + "start": 4955.12, + "end": 4955.44, + "probability": 0.9677734375 + }, + { + "word": " interesting", + "start": 4955.44, + "end": 4955.84, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 4955.84, + "end": 4956.2, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4956.2, + "end": 4956.44, + "probability": 0.9951171875 + }, + { + "word": " do,", + "start": 4956.44, + "end": 4956.62, + "probability": 0.93798828125 + } + ] + }, + { + "id": 4479, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4480, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4481, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4482, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4483, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4484, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4485, + "text": "", + "start": 4956.62, + "end": 4956.62, + "words": [] + }, + { + "id": 4486, + "text": "sort of a bolt on upgrade.", + "start": 4956.62, + "end": 4958.26, + "words": [ + { + "word": " sort", + "start": 4956.62, + "end": 4956.82, + "probability": 0.232421875 + }, + { + "word": " of", + "start": 4956.82, + "end": 4957.16, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 4957.16, + "end": 4957.26, + "probability": 0.99072265625 + }, + { + "word": " bolt", + "start": 4957.26, + "end": 4957.56, + "probability": 0.99267578125 + }, + { + "word": " on", + "start": 4957.56, + "end": 4957.82, + "probability": 0.15185546875 + }, + { + "word": " upgrade.", + "start": 4957.82, + "end": 4958.26, + "probability": 0.98876953125 + } + ] + }, + { + "id": 4487, + "text": "And what they're suggesting is that you,", + "start": 4958.9800000000005, + "end": 4961.16, + "words": [ + { + "word": " And", + "start": 4958.9800000000005, + "end": 4959.42, + "probability": 0.86962890625 + }, + { + "word": " what", + "start": 4959.42, + "end": 4959.86, + "probability": 0.9765625 + }, + { + "word": " they're", + "start": 4959.86, + "end": 4960.1, + "probability": 0.9892578125 + }, + { + "word": " suggesting", + "start": 4960.1, + "end": 4960.48, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4960.48, + "end": 4960.72, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 4960.72, + "end": 4960.98, + "probability": 0.966796875 + }, + { + "word": " you,", + "start": 4960.98, + "end": 4961.16, + "probability": 0.02716064453125 + } + ] + }, + { + "id": 4488, + "text": "there's street lights everywhere,", + "start": 4961.24, + "end": 4962.5, + "words": [ + { + "word": " there's", + "start": 4961.24, + "end": 4961.8, + "probability": 0.837890625 + }, + { + "word": " street", + "start": 4961.8, + "end": 4962.02, + "probability": 0.98681640625 + }, + { + "word": " lights", + "start": 4962.02, + "end": 4962.22, + "probability": 0.4287109375 + }, + { + "word": " everywhere,", + "start": 4962.22, + "end": 4962.5, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4489, + "text": "right?", + "start": 4962.66, + "end": 4962.86, + "words": [ + { + "word": " right?", + "start": 4962.66, + "end": 4962.86, + "probability": 0.99609375 + } + ] + }, + { + "id": 4490, + "text": "Well,", + "start": 4962.94, + "end": 4963.34, + "words": [ + { + "word": " Well,", + "start": 4962.94, + "end": 4963.34, + "probability": 0.98974609375 + } + ] + }, + { + "id": 4491, + "text": "upgrade the street lights.", + "start": 4963.44, + "end": 4964.4, + "words": [ + { + "word": " upgrade", + "start": 4963.44, + "end": 4963.72, + "probability": 0.9580078125 + }, + { + "word": " the", + "start": 4963.72, + "end": 4963.9, + "probability": 0.994140625 + }, + { + "word": " street", + "start": 4963.9, + "end": 4964.1, + "probability": 0.99853515625 + }, + { + "word": " lights.", + "start": 4964.1, + "end": 4964.4, + "probability": 0.77880859375 + } + ] + }, + { + "id": 4492, + "text": "And in these street lights,", + "start": 4964.46, + "end": 4966.02, + "words": [ + { + "word": " And", + "start": 4964.46, + "end": 4964.88, + "probability": 0.99560546875 + }, + { + "word": " in", + "start": 4964.88, + "end": 4965.22, + "probability": 0.9970703125 + }, + { + "word": " these", + "start": 4965.22, + "end": 4965.46, + "probability": 0.9521484375 + }, + { + "word": " street", + "start": 4965.46, + "end": 4965.72, + "probability": 0.99658203125 + }, + { + "word": " lights,", + "start": 4965.72, + "end": 4966.02, + "probability": 0.953125 + } + ] + }, + { + "id": 4493, + "text": "inside the,", + "start": 4966.12, + "end": 4967.0, + "words": [ + { + "word": " inside", + "start": 4966.12, + "end": 4966.66, + "probability": 0.99755859375 + }, + { + "word": " the,", + "start": 4966.66, + "end": 4967.0, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4494, + "text": "the body of the street light,", + "start": 4967.02, + "end": 4968.2, + "words": [ + { + "word": " the", + "start": 4967.02, + "end": 4967.2, + "probability": 0.9990234375 + }, + { + "word": " body", + "start": 4967.2, + "end": 4967.5, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4967.5, + "end": 4967.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4967.68, + "end": 4967.78, + "probability": 0.99951171875 + }, + { + "word": " street", + "start": 4967.78, + "end": 4967.98, + "probability": 0.9990234375 + }, + { + "word": " light,", + "start": 4967.98, + "end": 4968.2, + "probability": 0.95458984375 + } + ] + }, + { + "id": 4495, + "text": "you have LED lights that are,", + "start": 4968.26, + "end": 4969.98, + "words": [ + { + "word": " you", + "start": 4968.26, + "end": 4968.36, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 4968.36, + "end": 4968.5, + "probability": 1.0 + }, + { + "word": " LED", + "start": 4968.5, + "end": 4968.78, + "probability": 0.444091796875 + }, + { + "word": " lights", + "start": 4968.78, + "end": 4969.14, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4969.14, + "end": 4969.48, + "probability": 0.99853515625 + }, + { + "word": " are,", + "start": 4969.48, + "end": 4969.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4496, + "text": "uh,", + "start": 4970.0, + "end": 4970.64, + "words": [ + { + "word": " uh,", + "start": 4970.0, + "end": 4970.64, + "probability": 0.72900390625 + } + ] + }, + { + "id": 4497, + "text": "you know,", + "start": 4970.96, + "end": 4972.12, + "words": [ + { + "word": " you", + "start": 4970.96, + "end": 4971.5, + "probability": 0.9951171875 + }, + { + "word": " know,", + "start": 4971.5, + "end": 4972.12, + "probability": 1.0 + } + ] + }, + { + "id": 4498, + "text": "cost efficient and all of that.", + "start": 4972.12, + "end": 4973.34, + "words": [ + { + "word": " cost", + "start": 4972.12, + "end": 4972.52, + "probability": 0.9990234375 + }, + { + "word": " efficient", + "start": 4972.52, + "end": 4972.86, + "probability": 0.95703125 + }, + { + "word": " and", + "start": 4972.86, + "end": 4973.0, + "probability": 0.9970703125 + }, + { + "word": " all", + "start": 4973.0, + "end": 4973.12, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4973.12, + "end": 4973.2, + "probability": 0.9970703125 + }, + { + "word": " that.", + "start": 4973.2, + "end": 4973.34, + "probability": 1.0 + } + ] + }, + { + "id": 4499, + "text": "But there's also security cameras and,", + "start": 4973.38, + "end": 4975.18, + "words": [ + { + "word": " But", + "start": 4973.38, + "end": 4973.46, + "probability": 0.9970703125 + }, + { + "word": " there's", + "start": 4973.46, + "end": 4973.62, + "probability": 0.9990234375 + }, + { + "word": " also", + "start": 4973.62, + "end": 4973.76, + "probability": 0.99853515625 + }, + { + "word": " security", + "start": 4973.76, + "end": 4974.08, + "probability": 0.99951171875 + }, + { + "word": " cameras", + "start": 4974.08, + "end": 4974.52, + "probability": 0.99951171875 + }, + { + "word": " and,", + "start": 4974.52, + "end": 4975.18, + "probability": 0.99609375 + } + ] + }, + { + "id": 4500, + "text": "uh,", + "start": 4975.22, + "end": 4975.62, + "words": [ + { + "word": " uh,", + "start": 4975.22, + "end": 4975.62, + "probability": 0.9921875 + } + ] + }, + { + "id": 4501, + "text": "wifi hubs and,", + "start": 4975.76, + "end": 4977.22, + "words": [ + { + "word": " wifi", + "start": 4975.76, + "end": 4976.16, + "probability": 0.81103515625 + }, + { + "word": " hubs", + "start": 4976.16, + "end": 4976.62, + "probability": 0.99951171875 + }, + { + "word": " and,", + "start": 4976.62, + "end": 4977.22, + "probability": 0.281005859375 + } + ] + }, + { + "id": 4502, + "text": "So are you talking about replacing the entire pole or just,", + "start": 4977.28, + "end": 4980.18, + "words": [ + { + "word": " So", + "start": 4977.28, + "end": 4977.56, + "probability": 0.404052734375 + }, + { + "word": " are", + "start": 4977.56, + "end": 4977.7, + "probability": 0.966796875 + }, + { + "word": " you", + "start": 4977.7, + "end": 4977.86, + "probability": 1.0 + }, + { + "word": " talking", + "start": 4977.86, + "end": 4978.08, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 4978.08, + "end": 4978.24, + "probability": 1.0 + }, + { + "word": " replacing", + "start": 4978.24, + "end": 4978.54, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4978.54, + "end": 4978.84, + "probability": 1.0 + }, + { + "word": " entire", + "start": 4978.84, + "end": 4979.04, + "probability": 0.99951171875 + }, + { + "word": " pole", + "start": 4979.04, + "end": 4979.32, + "probability": 0.99560546875 + }, + { + "word": " or", + "start": 4979.32, + "end": 4979.92, + "probability": 0.93017578125 + }, + { + "word": " just,", + "start": 4979.92, + "end": 4980.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4503, + "text": "Just the head.", + "start": 4980.36, + "end": 4980.86, + "words": [ + { + "word": " Just", + "start": 4980.36, + "end": 4980.54, + "probability": 0.27734375 + }, + { + "word": " the", + "start": 4980.54, + "end": 4980.74, + "probability": 0.99853515625 + }, + { + "word": " head.", + "start": 4980.74, + "end": 4980.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4504, + "text": "So they can just pop the,", + "start": 4980.98, + "end": 4982.04, + "words": [ + { + "word": " So", + "start": 4980.98, + "end": 4981.16, + "probability": 0.98583984375 + }, + { + "word": " they", + "start": 4981.16, + "end": 4981.32, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 4981.32, + "end": 4981.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 4981.44, + "end": 4981.6, + "probability": 1.0 + }, + { + "word": " pop", + "start": 4981.6, + "end": 4981.8, + "probability": 0.99951171875 + }, + { + "word": " the,", + "start": 4981.8, + "end": 4982.04, + "probability": 1.0 + } + ] + }, + { + "id": 4505, + "text": "the light fixture out of the pole?", + "start": 4982.1, + "end": 4984.14, + "words": [ + { + "word": " the", + "start": 4982.1, + "end": 4982.74, + "probability": 0.99853515625 + }, + { + "word": " light", + "start": 4982.74, + "end": 4982.96, + "probability": 0.99951171875 + }, + { + "word": " fixture", + "start": 4982.96, + "end": 4983.22, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4983.22, + "end": 4983.58, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4983.58, + "end": 4983.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4983.8, + "end": 4983.98, + "probability": 1.0 + }, + { + "word": " pole?", + "start": 4983.98, + "end": 4984.14, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4506, + "text": "Right.", + "start": 4984.3, + "end": 4984.54, + "words": [ + { + "word": " Right.", + "start": 4984.3, + "end": 4984.54, + "probability": 0.98291015625 + } + ] + }, + { + "id": 4507, + "text": "That's pretty cool.", + "start": 4984.6, + "end": 4985.34, + "words": [ + { + "word": " That's", + "start": 4984.6, + "end": 4984.94, + "probability": 0.998046875 + }, + { + "word": " pretty", + "start": 4984.94, + "end": 4985.1, + "probability": 0.99951171875 + }, + { + "word": " cool.", + "start": 4985.1, + "end": 4985.34, + "probability": 1.0 + } + ] + }, + { + "id": 4508, + "text": "Yeah.", + "start": 4985.46, + "end": 4985.74, + "words": [ + { + "word": " Yeah.", + "start": 4985.46, + "end": 4985.74, + "probability": 0.9677734375 + } + ] + }, + { + "id": 4509, + "text": "And,", + "start": 4985.78, + "end": 4985.92, + "words": [ + { + "word": " And,", + "start": 4985.78, + "end": 4985.92, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4510, + "text": "and,", + "start": 4986.0, + "end": 4986.32, + "words": [ + { + "word": " and,", + "start": 4986.0, + "end": 4986.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4511, + "text": "and,", + "start": 4986.34, + "end": 4986.6, + "words": [ + { + "word": " and,", + "start": 4986.34, + "end": 4986.6, + "probability": 0.82861328125 + } + ] + }, + { + "id": 4512, + "text": "and it even offers some interesting stuff.", + "start": 4986.6, + "end": 4988.12, + "words": [ + { + "word": " and", + "start": 4986.6, + "end": 4986.6, + "probability": 0.00016236305236816406 + }, + { + "word": " it", + "start": 4986.6, + "end": 4986.82, + "probability": 0.638671875 + }, + { + "word": " even", + "start": 4986.82, + "end": 4986.98, + "probability": 0.98095703125 + }, + { + "word": " offers", + "start": 4986.98, + "end": 4987.24, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 4987.24, + "end": 4987.46, + "probability": 0.998046875 + }, + { + "word": " interesting", + "start": 4987.46, + "end": 4987.72, + "probability": 0.99853515625 + }, + { + "word": " stuff.", + "start": 4987.72, + "end": 4988.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4513, + "text": "Like if you can get the everything integrated,", + "start": 4988.2, + "end": 4990.28, + "words": [ + { + "word": " Like", + "start": 4988.2, + "end": 4988.46, + "probability": 0.83447265625 + }, + { + "word": " if", + "start": 4988.46, + "end": 4988.78, + "probability": 0.53466796875 + }, + { + "word": " you", + "start": 4988.78, + "end": 4988.92, + "probability": 1.0 + }, + { + "word": " can", + "start": 4988.92, + "end": 4989.08, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 4989.08, + "end": 4989.34, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4989.34, + "end": 4989.52, + "probability": 0.2303466796875 + }, + { + "word": " everything", + "start": 4989.52, + "end": 4989.82, + "probability": 0.40380859375 + }, + { + "word": " integrated,", + "start": 4989.82, + "end": 4990.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4514, + "text": "um,", + "start": 4990.52, + "end": 4991.14, + "words": [ + { + "word": " um,", + "start": 4990.52, + "end": 4991.14, + "probability": 0.55712890625 + } + ] + }, + { + "id": 4515, + "text": "you could have,", + "start": 4991.28, + "end": 4992.2, + "words": [ + { + "word": " you", + "start": 4991.28, + "end": 4991.6, + "probability": 0.99755859375 + }, + { + "word": " could", + "start": 4991.6, + "end": 4991.76, + "probability": 0.49609375 + }, + { + "word": " have,", + "start": 4991.76, + "end": 4992.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4516, + "text": "uh,", + "start": 4992.24, + "end": 4992.44, + "words": [ + { + "word": " uh,", + "start": 4992.24, + "end": 4992.44, + "probability": 0.9697265625 + } + ] + }, + { + "id": 4517, + "text": "light color changes,", + "start": 4992.56, + "end": 4993.48, + "words": [ + { + "word": " light", + "start": 4992.56, + "end": 4992.76, + "probability": 0.98486328125 + }, + { + "word": " color", + "start": 4992.76, + "end": 4993.0, + "probability": 0.9912109375 + }, + { + "word": " changes,", + "start": 4993.0, + "end": 4993.48, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4518, + "text": "uh,", + "start": 4993.52, + "end": 4994.02, + "words": [ + { + "word": " uh,", + "start": 4993.52, + "end": 4994.02, + "probability": 0.9072265625 + } + ] + }, + { + "id": 4519, + "text": "or,", + "start": 4994.14, + "end": 4994.52, + "words": [ + { + "word": " or,", + "start": 4994.14, + "end": 4994.52, + "probability": 0.99560546875 + } + ] + }, + { + "id": 4520, + "text": "uh,", + "start": 4994.52, + "end": 4994.8, + "words": [ + { + "word": " uh,", + "start": 4994.52, + "end": 4994.8, + "probability": 0.2890625 + } + ] + }, + { + "id": 4521, + "text": "strobing effects to guide emergency vehicles to wherever the emergency is.", + "start": 4994.86, + "end": 4999.0, + "words": [ + { + "word": " strobing", + "start": 4994.86, + "end": 4995.16, + "probability": 0.9970703125 + }, + { + "word": " effects", + "start": 4995.16, + "end": 4995.44, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4995.44, + "end": 4995.78, + "probability": 0.99853515625 + }, + { + "word": " guide", + "start": 4995.78, + "end": 4996.18, + "probability": 0.9990234375 + }, + { + "word": " emergency", + "start": 4996.18, + "end": 4996.54, + "probability": 0.98388671875 + }, + { + "word": " vehicles", + "start": 4996.54, + "end": 4997.0, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4997.0, + "end": 4997.32, + "probability": 0.9951171875 + }, + { + "word": " wherever", + "start": 4997.32, + "end": 4997.8, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4997.8, + "end": 4998.1, + "probability": 0.9990234375 + }, + { + "word": " emergency", + "start": 4998.1, + "end": 4998.62, + "probability": 0.99755859375 + }, + { + "word": " is.", + "start": 4998.62, + "end": 4999.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4522, + "text": "Well,", + "start": 4999.12, + "end": 4999.26, + "words": [ + { + "word": " Well,", + "start": 4999.12, + "end": 4999.26, + "probability": 0.8779296875 + } + ] + }, + { + "id": 4523, + "text": "yeah.", + "start": 4999.28, + "end": 4999.34, + "words": [ + { + "word": " yeah.", + "start": 4999.28, + "end": 4999.34, + "probability": 0.97509765625 + } + ] + }, + { + "id": 4524, + "text": "Cause so many street lights are still like incandescent bulbs.", + "start": 4999.4, + "end": 5002.06, + "words": [ + { + "word": " Cause", + "start": 4999.4, + "end": 4999.52, + "probability": 0.9873046875 + }, + { + "word": " so", + "start": 4999.52, + "end": 4999.7, + "probability": 0.9990234375 + }, + { + "word": " many", + "start": 4999.7, + "end": 4999.88, + "probability": 1.0 + }, + { + "word": " street", + "start": 4999.88, + "end": 5000.1, + "probability": 0.9990234375 + }, + { + "word": " lights", + "start": 5000.1, + "end": 5000.32, + "probability": 0.33447265625 + }, + { + "word": " are", + "start": 5000.32, + "end": 5000.44, + "probability": 0.9990234375 + }, + { + "word": " still", + "start": 5000.44, + "end": 5000.66, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 5000.66, + "end": 5000.92, + "probability": 0.9990234375 + }, + { + "word": " incandescent", + "start": 5000.92, + "end": 5001.68, + "probability": 1.0 + }, + { + "word": " bulbs.", + "start": 5001.68, + "end": 5002.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4525, + "text": "Right.", + "start": 5002.26, + "end": 5002.62, + "words": [ + { + "word": " Right.", + "start": 5002.26, + "end": 5002.62, + "probability": 0.9794921875 + } + ] + }, + { + "id": 4526, + "text": "So they're huge to emit that amount of light.", + "start": 5002.7, + "end": 5005.76, + "words": [ + { + "word": " So", + "start": 5002.7, + "end": 5002.98, + "probability": 0.998046875 + }, + { + "word": " they're", + "start": 5002.98, + "end": 5003.56, + "probability": 0.998046875 + }, + { + "word": " huge", + "start": 5003.56, + "end": 5003.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5003.88, + "end": 5004.32, + "probability": 0.998046875 + }, + { + "word": " emit", + "start": 5004.32, + "end": 5004.78, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 5004.78, + "end": 5004.94, + "probability": 1.0 + }, + { + "word": " amount", + "start": 5004.94, + "end": 5005.14, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 5005.14, + "end": 5005.26, + "probability": 0.0533447265625 + }, + { + "word": " light.", + "start": 5005.26, + "end": 5005.76, + "probability": 0.91845703125 + } + ] + }, + { + "id": 4527, + "text": "And they're not efficient.", + "start": 5005.9, + "end": 5007.2, + "words": [ + { + "word": " And", + "start": 5005.9, + "end": 5006.18, + "probability": 0.98095703125 + }, + { + "word": " they're", + "start": 5006.18, + "end": 5006.48, + "probability": 1.0 + }, + { + "word": " not", + "start": 5006.48, + "end": 5006.82, + "probability": 0.99951171875 + }, + { + "word": " efficient.", + "start": 5006.82, + "end": 5007.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4528, + "text": "Right.", + "start": 5007.34, + "end": 5007.66, + "words": [ + { + "word": " Right.", + "start": 5007.34, + "end": 5007.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 4529, + "text": "By any means.", + "start": 5007.76, + "end": 5008.4, + "words": [ + { + "word": " By", + "start": 5007.76, + "end": 5008.02, + "probability": 0.9892578125 + }, + { + "word": " any", + "start": 5008.02, + "end": 5008.22, + "probability": 1.0 + }, + { + "word": " means.", + "start": 5008.22, + "end": 5008.4, + "probability": 1.0 + } + ] + }, + { + "id": 4530, + "text": "Whereas the equivalent LED could be like a fifth the size of that or smaller,", + "start": 5008.44, + "end": 5012.06, + "words": [ + { + "word": " Whereas", + "start": 5008.44, + "end": 5008.62, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 5008.62, + "end": 5008.84, + "probability": 1.0 + }, + { + "word": " equivalent", + "start": 5008.84, + "end": 5009.18, + "probability": 1.0 + }, + { + "word": " LED", + "start": 5009.18, + "end": 5009.6, + "probability": 0.04833984375 + }, + { + "word": " could", + "start": 5009.6, + "end": 5009.88, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 5009.88, + "end": 5010.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 5010.02, + "end": 5010.22, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5010.22, + "end": 5010.56, + "probability": 0.99951171875 + }, + { + "word": " fifth", + "start": 5010.56, + "end": 5010.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5010.8, + "end": 5011.0, + "probability": 0.5458984375 + }, + { + "word": " size", + "start": 5011.0, + "end": 5011.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 5011.22, + "end": 5011.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 5011.42, + "end": 5011.58, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 5011.58, + "end": 5011.8, + "probability": 0.99609375 + }, + { + "word": " smaller,", + "start": 5011.8, + "end": 5012.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4531, + "text": "giving you,", + "start": 5012.26, + "end": 5013.08, + "words": [ + { + "word": " giving", + "start": 5012.26, + "end": 5012.86, + "probability": 0.9990234375 + }, + { + "word": " you,", + "start": 5012.86, + "end": 5013.08, + "probability": 1.0 + } + ] + }, + { + "id": 4532, + "text": "I guess a bunch of room for other electronics if you want to throw them in there.", + "start": 5013.12, + "end": 5015.72, + "words": [ + { + "word": " I", + "start": 5013.12, + "end": 5013.26, + "probability": 0.99853515625 + }, + { + "word": " guess", + "start": 5013.26, + "end": 5013.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 5013.44, + "end": 5013.54, + "probability": 0.2069091796875 + }, + { + "word": " bunch", + "start": 5013.54, + "end": 5013.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 5013.7, + "end": 5013.8, + "probability": 1.0 + }, + { + "word": " room", + "start": 5013.8, + "end": 5013.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 5013.96, + "end": 5014.22, + "probability": 1.0 + }, + { + "word": " other", + "start": 5014.22, + "end": 5014.48, + "probability": 0.99951171875 + }, + { + "word": " electronics", + "start": 5014.48, + "end": 5014.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 5014.84, + "end": 5015.1, + "probability": 0.80615234375 + }, + { + "word": " you", + "start": 5015.1, + "end": 5015.2, + "probability": 1.0 + }, + { + "word": " want", + "start": 5015.2, + "end": 5015.26, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5015.26, + "end": 5015.32, + "probability": 1.0 + }, + { + "word": " throw", + "start": 5015.32, + "end": 5015.44, + "probability": 0.9990234375 + }, + { + "word": " them", + "start": 5015.44, + "end": 5015.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 5015.54, + "end": 5015.6, + "probability": 1.0 + }, + { + "word": " there.", + "start": 5015.6, + "end": 5015.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4533, + "text": "Yeah.", + "start": 5015.76, + "end": 5016.1, + "words": [ + { + "word": " Yeah.", + "start": 5015.76, + "end": 5016.1, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4534, + "text": "So the,", + "start": 5016.18, + "end": 5016.58, + "words": [ + { + "word": " So", + "start": 5016.18, + "end": 5016.36, + "probability": 0.978515625 + }, + { + "word": " the,", + "start": 5016.36, + "end": 5016.58, + "probability": 0.0164337158203125 + } + ] + }, + { + "id": 4535, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4536, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4537, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4538, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4539, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4540, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4541, + "text": "", + "start": 5016.58, + "end": 5016.58, + "words": [] + }, + { + "id": 4542, + "text": "the only part of the larger larger larger larger larger larger larger larger larger", + "start": 5016.6, + "end": 5021.42, + "words": [ + { + "word": " the", + "start": 5016.6, + "end": 5016.6, + "probability": 1.0251998901367188e-05 + }, + { + "word": " only", + "start": 5016.6, + "end": 5017.5, + "probability": 7.11679458618164e-05 + }, + { + "word": " part", + "start": 5017.5, + "end": 5018.32, + "probability": 0.0106353759765625 + }, + { + "word": " of", + "start": 5018.32, + "end": 5018.4, + "probability": 0.720703125 + }, + { + "word": " the", + "start": 5018.4, + "end": 5018.8, + "probability": 0.3720703125 + }, + { + "word": " larger", + "start": 5018.8, + "end": 5020.22, + "probability": 0.00015544891357421875 + }, + { + "word": " larger", + "start": 5020.22, + "end": 5020.4, + "probability": 0.0006051063537597656 + }, + { + "word": " larger", + "start": 5020.4, + "end": 5021.12, + "probability": 0.001766204833984375 + }, + { + "word": " larger", + "start": 5021.12, + "end": 5021.18, + "probability": 0.00637054443359375 + }, + { + "word": " larger", + "start": 5021.18, + "end": 5021.18, + "probability": 0.059967041015625 + }, + { + "word": " larger", + "start": 5021.18, + "end": 5021.34, + "probability": 0.26513671875 + }, + { + "word": " larger", + "start": 5021.34, + "end": 5021.42, + "probability": 0.45068359375 + }, + { + "word": " larger", + "start": 5021.42, + "end": 5021.42, + "probability": 0.53955078125 + }, + { + "word": " larger", + "start": 5021.42, + "end": 5021.42, + "probability": 0.57763671875 + } + ] + }, + { + "id": 4543, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5022.38, + "end": 5029.12, + "words": [ + { + "word": " larger", + "start": 5022.38, + "end": 5022.42, + "probability": 0.5908203125 + }, + { + "word": " larger", + "start": 5022.42, + "end": 5022.46, + "probability": 0.6220703125 + }, + { + "word": " larger", + "start": 5022.46, + "end": 5022.74, + "probability": 0.66015625 + }, + { + "word": " larger", + "start": 5022.74, + "end": 5025.3, + "probability": 0.697265625 + }, + { + "word": " larger", + "start": 5025.3, + "end": 5025.3, + "probability": 0.720703125 + }, + { + "word": " larger", + "start": 5025.3, + "end": 5025.32, + "probability": 0.740234375 + }, + { + "word": " larger", + "start": 5025.32, + "end": 5025.32, + "probability": 0.75341796875 + }, + { + "word": " larger", + "start": 5025.32, + "end": 5025.78, + "probability": 0.76611328125 + }, + { + "word": " larger", + "start": 5025.78, + "end": 5027.92, + "probability": 0.77392578125 + }, + { + "word": " larger", + "start": 5027.92, + "end": 5029.0, + "probability": 0.78515625 + }, + { + "word": " larger", + "start": 5029.0, + "end": 5029.12, + "probability": 0.79296875 + }, + { + "word": " larger", + "start": 5029.12, + "end": 5029.12, + "probability": 0.79931640625 + } + ] + }, + { + "id": 4544, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5029.54, + "end": 5029.6, + "words": [ + { + "word": " larger", + "start": 5029.54, + "end": 5029.58, + "probability": 0.80322265625 + }, + { + "word": " larger", + "start": 5029.58, + "end": 5029.58, + "probability": 0.80615234375 + }, + { + "word": " larger", + "start": 5029.58, + "end": 5029.6, + "probability": 0.81201171875 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.8154296875 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.81640625 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.8212890625 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.82568359375 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.830078125 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.8330078125 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.8359375 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.84033203125 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.841796875 + } + ] + }, + { + "id": 4545, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5029.6, + "end": 5030.12, + "words": [ + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.84423828125 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5029.6, + "probability": 0.845703125 + }, + { + "word": " larger", + "start": 5029.6, + "end": 5030.08, + "probability": 0.8486328125 + }, + { + "word": " larger", + "start": 5030.08, + "end": 5030.08, + "probability": 0.84912109375 + }, + { + "word": " larger", + "start": 5030.08, + "end": 5030.12, + "probability": 0.85009765625 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.8525390625 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.85400390625 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.85595703125 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.8583984375 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.8583984375 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.8583984375 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.8603515625 + } + ] + }, + { + "id": 4546, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5030.12, + "end": 5030.2, + "words": [ + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.8603515625 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.86279296875 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.86328125 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.86279296875 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.12, + "probability": 0.86328125 + }, + { + "word": " larger", + "start": 5030.12, + "end": 5030.2, + "probability": 0.86376953125 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.865234375 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.865234375 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.8662109375 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.86669921875 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.86767578125 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.86669921875 + } + ] + }, + { + "id": 4547, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5030.2, + "end": 5030.4, + "words": [ + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.869140625 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.8671875 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.2, + "probability": 0.8681640625 + }, + { + "word": " larger", + "start": 5030.2, + "end": 5030.24, + "probability": 0.869140625 + }, + { + "word": " larger", + "start": 5030.24, + "end": 5030.26, + "probability": 0.869140625 + }, + { + "word": " larger", + "start": 5030.26, + "end": 5030.28, + "probability": 0.86865234375 + }, + { + "word": " larger", + "start": 5030.28, + "end": 5030.3, + "probability": 0.8701171875 + }, + { + "word": " larger", + "start": 5030.3, + "end": 5030.32, + "probability": 0.8701171875 + }, + { + "word": " larger", + "start": 5030.32, + "end": 5030.34, + "probability": 0.87060546875 + }, + { + "word": " larger", + "start": 5030.34, + "end": 5030.36, + "probability": 0.8701171875 + }, + { + "word": " larger", + "start": 5030.36, + "end": 5030.38, + "probability": 0.87158203125 + }, + { + "word": " larger", + "start": 5030.38, + "end": 5030.4, + "probability": 0.87255859375 + } + ] + }, + { + "id": 4548, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5030.4, + "end": 5030.64, + "words": [ + { + "word": " larger", + "start": 5030.4, + "end": 5030.42, + "probability": 0.8720703125 + }, + { + "word": " larger", + "start": 5030.42, + "end": 5030.44, + "probability": 0.8720703125 + }, + { + "word": " larger", + "start": 5030.44, + "end": 5030.46, + "probability": 0.87060546875 + }, + { + "word": " larger", + "start": 5030.46, + "end": 5030.48, + "probability": 0.87158203125 + }, + { + "word": " larger", + "start": 5030.48, + "end": 5030.5, + "probability": 0.87353515625 + }, + { + "word": " larger", + "start": 5030.5, + "end": 5030.52, + "probability": 0.8740234375 + }, + { + "word": " larger", + "start": 5030.52, + "end": 5030.54, + "probability": 0.87353515625 + }, + { + "word": " larger", + "start": 5030.54, + "end": 5030.56, + "probability": 0.87451171875 + }, + { + "word": " larger", + "start": 5030.56, + "end": 5030.58, + "probability": 0.87451171875 + }, + { + "word": " larger", + "start": 5030.58, + "end": 5030.6, + "probability": 0.87548828125 + }, + { + "word": " larger", + "start": 5030.6, + "end": 5030.62, + "probability": 0.875 + }, + { + "word": " larger", + "start": 5030.62, + "end": 5030.64, + "probability": 0.8779296875 + } + ] + }, + { + "id": 4549, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5030.64, + "end": 5030.94, + "words": [ + { + "word": " larger", + "start": 5030.64, + "end": 5030.66, + "probability": 0.87646484375 + }, + { + "word": " larger", + "start": 5030.66, + "end": 5030.68, + "probability": 0.87646484375 + }, + { + "word": " larger", + "start": 5030.68, + "end": 5030.7, + "probability": 0.8779296875 + }, + { + "word": " larger", + "start": 5030.7, + "end": 5030.72, + "probability": 0.87744140625 + }, + { + "word": " larger", + "start": 5030.72, + "end": 5030.74, + "probability": 0.87744140625 + }, + { + "word": " larger", + "start": 5030.74, + "end": 5030.76, + "probability": 0.876953125 + }, + { + "word": " larger", + "start": 5030.76, + "end": 5030.78, + "probability": 0.87646484375 + }, + { + "word": " larger", + "start": 5030.78, + "end": 5030.8, + "probability": 0.8759765625 + }, + { + "word": " larger", + "start": 5030.8, + "end": 5030.82, + "probability": 0.8759765625 + }, + { + "word": " larger", + "start": 5030.82, + "end": 5030.94, + "probability": 0.8759765625 + }, + { + "word": " larger", + "start": 5030.94, + "end": 5030.94, + "probability": 0.8759765625 + }, + { + "word": " larger", + "start": 5030.94, + "end": 5030.94, + "probability": 0.8759765625 + } + ] + }, + { + "id": 4550, + "text": "", + "start": 5030.94, + "end": 5030.94, + "words": [] + }, + { + "id": 4551, + "text": "", + "start": 5030.94, + "end": 5030.94, + "words": [] + }, + { + "id": 4552, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5030.94, + "end": 5030.96, + "words": [ + { + "word": " larger", + "start": 5030.94, + "end": 5030.94, + "probability": 0.85009765625 + }, + { + "word": " larger", + "start": 5030.94, + "end": 5030.96, + "probability": 0.84619140625 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.84619140625 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.845703125 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.84375 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.84375 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.84130859375 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.83642578125 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.83642578125 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.833984375 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.83349609375 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.83056640625 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.82861328125 + } + ] + }, + { + "id": 4553, + "text": "", + "start": 5030.96, + "end": 5030.96, + "words": [] + }, + { + "id": 4554, + "text": "larger larger larger larger larger larger larger larger larger larger larger larger", + "start": 5030.96, + "end": 5031.54, + "words": [ + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.8017578125 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.80322265625 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5030.96, + "probability": 0.79931640625 + }, + { + "word": " larger", + "start": 5030.96, + "end": 5031.54, + "probability": 0.7978515625 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.79345703125 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.79443359375 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.7900390625 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.7880859375 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.78564453125 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.7802734375 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.77978515625 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.77490234375 + } + ] + }, + { + "id": 4555, + "text": "", + "start": 5031.54, + "end": 5031.54, + "words": [] + }, + { + "id": 4556, + "text": "larger larger larger larger larger larger larger larger larger larger larger", + "start": 5031.54, + "end": 5035.14, + "words": [ + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.755859375 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.75732421875 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.75244140625 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.75048828125 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.748046875 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.74658203125 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.748046875 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5031.54, + "probability": 0.74462890625 + }, + { + "word": " larger", + "start": 5031.54, + "end": 5032.76, + "probability": 0.74267578125 + }, + { + "word": " larger", + "start": 5032.76, + "end": 5033.56, + "probability": 0.74072265625 + }, + { + "word": " larger", + "start": 5033.56, + "end": 5035.14, + "probability": 0.74072265625 + } + ] + }, + { + "id": 4557, + "text": "Watch traffic, all right, or anything that's nearby a major thoroughfare.", + "start": 5035.14, + "end": 5039.08, + "words": [ + { + "word": " Watch", + "start": 5035.14, + "end": 5035.26, + "probability": 0.256591796875 + }, + { + "word": " traffic,", + "start": 5035.26, + "end": 5035.78, + "probability": 0.99365234375 + }, + { + "word": " all", + "start": 5036.02, + "end": 5036.26, + "probability": 0.720703125 + }, + { + "word": " right,", + "start": 5036.26, + "end": 5036.48, + "probability": 1.0 + }, + { + "word": " or", + "start": 5036.5, + "end": 5036.74, + "probability": 1.0 + }, + { + "word": " anything", + "start": 5036.74, + "end": 5037.14, + "probability": 1.0 + }, + { + "word": " that's", + "start": 5037.14, + "end": 5037.52, + "probability": 1.0 + }, + { + "word": " nearby", + "start": 5037.52, + "end": 5037.86, + "probability": 0.99658203125 + }, + { + "word": " a", + "start": 5037.86, + "end": 5038.1, + "probability": 0.93310546875 + }, + { + "word": " major", + "start": 5038.1, + "end": 5038.42, + "probability": 1.0 + }, + { + "word": " thoroughfare.", + "start": 5038.42, + "end": 5039.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4558, + "text": "I mean, it'd be kind of nice if you're like, if you get mugged or something and the city just has video of that.", + "start": 5039.4, + "end": 5044.88, + "words": [ + { + "word": " I", + "start": 5039.4, + "end": 5039.6, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 5039.6, + "end": 5039.7, + "probability": 1.0 + }, + { + "word": " it'd", + "start": 5039.7, + "end": 5039.82, + "probability": 0.9521484375 + }, + { + "word": " be", + "start": 5039.82, + "end": 5039.9, + "probability": 1.0 + }, + { + "word": " kind", + "start": 5039.9, + "end": 5040.02, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5040.02, + "end": 5040.14, + "probability": 1.0 + }, + { + "word": " nice", + "start": 5040.14, + "end": 5040.38, + "probability": 1.0 + }, + { + "word": " if", + "start": 5040.38, + "end": 5040.6, + "probability": 1.0 + }, + { + "word": " you're", + "start": 5040.6, + "end": 5040.7, + "probability": 0.9189453125 + }, + { + "word": " like,", + "start": 5040.7, + "end": 5040.9, + "probability": 0.61474609375 + }, + { + "word": " if", + "start": 5041.0, + "end": 5041.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 5041.42, + "end": 5041.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 5041.52, + "end": 5041.66, + "probability": 1.0 + }, + { + "word": " mugged", + "start": 5041.66, + "end": 5042.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 5042.04, + "end": 5042.1, + "probability": 1.0 + }, + { + "word": " something", + "start": 5042.1, + "end": 5042.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 5042.4, + "end": 5042.64, + "probability": 0.8125 + }, + { + "word": " the", + "start": 5042.64, + "end": 5042.86, + "probability": 1.0 + }, + { + "word": " city", + "start": 5042.86, + "end": 5043.12, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 5043.12, + "end": 5043.38, + "probability": 1.0 + }, + { + "word": " has", + "start": 5043.38, + "end": 5043.88, + "probability": 1.0 + }, + { + "word": " video", + "start": 5043.88, + "end": 5044.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 5044.42, + "end": 5044.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5044.66, + "end": 5044.88, + "probability": 1.0 + } + ] + }, + { + "id": 4559, + "text": "Yeah, that helps find the dude, right?", + "start": 5045.22, + "end": 5047.12, + "words": [ + { + "word": " Yeah,", + "start": 5045.22, + "end": 5045.62, + "probability": 0.98291015625 + }, + { + "word": " that", + "start": 5045.7, + "end": 5045.76, + "probability": 0.5185546875 + }, + { + "word": " helps", + "start": 5045.76, + "end": 5046.08, + "probability": 0.99951171875 + }, + { + "word": " find", + "start": 5046.08, + "end": 5046.4, + "probability": 0.95849609375 + }, + { + "word": " the", + "start": 5046.4, + "end": 5046.64, + "probability": 0.99658203125 + }, + { + "word": " dude,", + "start": 5046.64, + "end": 5046.76, + "probability": 0.97021484375 + }, + { + "word": " right?", + "start": 5046.92, + "end": 5047.12, + "probability": 1.0 + } + ] + }, + { + "id": 4560, + "text": "That would be nice.", + "start": 5047.580000000001, + "end": 5048.72, + "words": [ + { + "word": " That", + "start": 5047.580000000001, + "end": 5047.9800000000005, + "probability": 0.947265625 + }, + { + "word": " would", + "start": 5047.9800000000005, + "end": 5048.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 5048.38, + "end": 5048.52, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 5048.52, + "end": 5048.72, + "probability": 1.0 + } + ] + }, + { + "id": 4561, + "text": "Not being mugged, of course, but being able to figure out who was the perpetrator.", + "start": 5049.22, + "end": 5053.92, + "words": [ + { + "word": " Not", + "start": 5049.22, + "end": 5049.62, + "probability": 0.998046875 + }, + { + "word": " being", + "start": 5049.62, + "end": 5049.88, + "probability": 1.0 + }, + { + "word": " mugged,", + "start": 5049.88, + "end": 5050.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 5050.26, + "end": 5050.36, + "probability": 1.0 + }, + { + "word": " course,", + "start": 5050.36, + "end": 5050.52, + "probability": 1.0 + }, + { + "word": " but", + "start": 5050.58, + "end": 5050.78, + "probability": 1.0 + }, + { + "word": " being", + "start": 5050.78, + "end": 5051.08, + "probability": 1.0 + }, + { + "word": " able", + "start": 5051.08, + "end": 5051.64, + "probability": 0.96337890625 + }, + { + "word": " to", + "start": 5051.64, + "end": 5051.98, + "probability": 1.0 + }, + { + "word": " figure", + "start": 5051.98, + "end": 5052.24, + "probability": 1.0 + }, + { + "word": " out", + "start": 5052.24, + "end": 5052.44, + "probability": 1.0 + }, + { + "word": " who", + "start": 5052.44, + "end": 5052.68, + "probability": 1.0 + }, + { + "word": " was", + "start": 5052.68, + "end": 5053.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 5053.26, + "end": 5053.46, + "probability": 1.0 + }, + { + "word": " perpetrator.", + "start": 5053.46, + "end": 5053.92, + "probability": 1.0 + } + ] + }, + { + "id": 4562, + "text": "And I imagine that would aid in the, I mean, they could just track people who are running from the police pretty easily.", + "start": 5054.14, + "end": 5058.94, + "words": [ + { + "word": " And", + "start": 5054.14, + "end": 5054.22, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 5054.22, + "end": 5054.32, + "probability": 1.0 + }, + { + "word": " imagine", + "start": 5054.32, + "end": 5054.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 5054.64, + "end": 5054.78, + "probability": 1.0 + }, + { + "word": " would", + "start": 5054.78, + "end": 5054.9, + "probability": 1.0 + }, + { + "word": " aid", + "start": 5054.9, + "end": 5055.1, + "probability": 1.0 + }, + { + "word": " in", + "start": 5055.1, + "end": 5055.26, + "probability": 0.99853515625 + }, + { + "word": " the,", + "start": 5055.26, + "end": 5055.38, + "probability": 0.95068359375 + }, + { + "word": " I", + "start": 5055.38, + "end": 5055.54, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 5055.54, + "end": 5055.66, + "probability": 1.0 + }, + { + "word": " they", + "start": 5055.68, + "end": 5055.84, + "probability": 1.0 + }, + { + "word": " could", + "start": 5055.84, + "end": 5056.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 5056.0, + "end": 5056.58, + "probability": 0.99072265625 + }, + { + "word": " track", + "start": 5056.58, + "end": 5056.94, + "probability": 1.0 + }, + { + "word": " people", + "start": 5056.94, + "end": 5057.22, + "probability": 1.0 + }, + { + "word": " who", + "start": 5057.22, + "end": 5057.44, + "probability": 1.0 + }, + { + "word": " are", + "start": 5057.44, + "end": 5057.54, + "probability": 0.98974609375 + }, + { + "word": " running", + "start": 5057.54, + "end": 5057.74, + "probability": 1.0 + }, + { + "word": " from", + "start": 5057.74, + "end": 5057.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 5057.9, + "end": 5058.06, + "probability": 1.0 + }, + { + "word": " police", + "start": 5058.06, + "end": 5058.32, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 5058.32, + "end": 5058.64, + "probability": 1.0 + }, + { + "word": " easily.", + "start": 5058.64, + "end": 5058.94, + "probability": 1.0 + } + ] + }, + { + "id": 4563, + "text": "Yeah.", + "start": 5059.4800000000005, + "end": 5059.88, + "words": [ + { + "word": " Yeah.", + "start": 5059.4800000000005, + "end": 5059.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4564, + "text": "Now, you see these types of things in Europe all the time, right?", + "start": 5060.38, + "end": 5063.1, + "words": [ + { + "word": " Now,", + "start": 5060.38, + "end": 5060.78, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 5060.88, + "end": 5061.04, + "probability": 1.0 + }, + { + "word": " see", + "start": 5061.04, + "end": 5061.34, + "probability": 1.0 + }, + { + "word": " these", + "start": 5061.34, + "end": 5061.5, + "probability": 1.0 + }, + { + "word": " types", + "start": 5061.5, + "end": 5061.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 5061.64, + "end": 5061.76, + "probability": 1.0 + }, + { + "word": " things", + "start": 5061.76, + "end": 5061.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 5061.9, + "end": 5062.02, + "probability": 0.99560546875 + }, + { + "word": " Europe", + "start": 5062.02, + "end": 5062.2, + "probability": 0.91650390625 + }, + { + "word": " all", + "start": 5062.2, + "end": 5062.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 5062.32, + "end": 5062.38, + "probability": 1.0 + }, + { + "word": " time,", + "start": 5062.38, + "end": 5062.68, + "probability": 1.0 + }, + { + "word": " right?", + "start": 5062.7, + "end": 5063.1, + "probability": 0.9892578125 + } + ] + }, + { + "id": 4565, + "text": "Like, you know, CCTV is a big thing in, like, London.", + "start": 5063.1, + "end": 5066.06, + "words": [ + { + "word": " Like,", + "start": 5063.1, + "end": 5063.2, + "probability": 0.5078125 + }, + { + "word": " you", + "start": 5063.22, + "end": 5063.38, + "probability": 0.9638671875 + }, + { + "word": " know,", + "start": 5063.38, + "end": 5063.46, + "probability": 1.0 + }, + { + "word": " CCTV", + "start": 5063.46, + "end": 5063.78, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5063.78, + "end": 5064.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 5064.28, + "end": 5064.42, + "probability": 1.0 + }, + { + "word": " big", + "start": 5064.42, + "end": 5064.82, + "probability": 1.0 + }, + { + "word": " thing", + "start": 5064.82, + "end": 5065.18, + "probability": 1.0 + }, + { + "word": " in,", + "start": 5065.18, + "end": 5065.42, + "probability": 0.456787109375 + }, + { + "word": " like,", + "start": 5065.42, + "end": 5065.64, + "probability": 1.0 + }, + { + "word": " London.", + "start": 5065.68, + "end": 5066.06, + "probability": 1.0 + } + ] + }, + { + "id": 4566, + "text": "And people say, well, there's just eyes everywhere.", + "start": 5066.64, + "end": 5069.22, + "words": [ + { + "word": " And", + "start": 5066.64, + "end": 5067.14, + "probability": 0.94287109375 + }, + { + "word": " people", + "start": 5067.14, + "end": 5067.64, + "probability": 1.0 + }, + { + "word": " say,", + "start": 5067.64, + "end": 5067.88, + "probability": 1.0 + }, + { + "word": " well,", + "start": 5068.04, + "end": 5068.14, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 5068.18, + "end": 5068.4, + "probability": 1.0 + }, + { + "word": " just", + "start": 5068.4, + "end": 5068.56, + "probability": 1.0 + }, + { + "word": " eyes", + "start": 5068.56, + "end": 5068.78, + "probability": 0.9921875 + }, + { + "word": " everywhere.", + "start": 5068.78, + "end": 5069.22, + "probability": 1.0 + } + ] + }, + { + "id": 4567, + "text": "And that may be true.", + "start": 5069.42, + "end": 5071.48, + "words": [ + { + "word": " And", + "start": 5069.42, + "end": 5069.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 5069.68, + "end": 5070.44, + "probability": 0.99951171875 + }, + { + "word": " may", + "start": 5070.44, + "end": 5070.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 5070.96, + "end": 5071.18, + "probability": 1.0 + }, + { + "word": " true.", + "start": 5071.18, + "end": 5071.48, + "probability": 1.0 + } + ] + }, + { + "id": 4568, + "text": "There's actually some interesting videos of where you can see the CCTV operators noticing a crime and directing police to go deal with it or something along those lines.", + "start": 5071.64, + "end": 5083.58, + "words": [ + { + "word": " There's", + "start": 5071.64, + "end": 5072.02, + "probability": 1.0 + }, + { + "word": " actually", + "start": 5072.02, + "end": 5072.22, + "probability": 1.0 + }, + { + "word": " some", + "start": 5072.22, + "end": 5072.36, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 5072.36, + "end": 5072.62, + "probability": 1.0 + }, + { + "word": " videos", + "start": 5072.62, + "end": 5073.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 5073.08, + "end": 5073.36, + "probability": 0.96337890625 + }, + { + "word": " where", + "start": 5073.36, + "end": 5074.02, + "probability": 0.98193359375 + }, + { + "word": " you", + "start": 5074.02, + "end": 5074.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 5074.16, + "end": 5074.34, + "probability": 1.0 + }, + { + "word": " see", + "start": 5074.34, + "end": 5074.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 5074.74, + "end": 5076.44, + "probability": 1.0 + }, + { + "word": " CCTV", + "start": 5076.44, + "end": 5077.04, + "probability": 1.0 + }, + { + "word": " operators", + "start": 5077.04, + "end": 5078.26, + "probability": 0.99853515625 + }, + { + "word": " noticing", + "start": 5078.26, + "end": 5079.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 5079.04, + "end": 5079.24, + "probability": 0.99609375 + }, + { + "word": " crime", + "start": 5079.24, + "end": 5079.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 5079.46, + "end": 5079.6, + "probability": 0.99951171875 + }, + { + "word": " directing", + "start": 5079.6, + "end": 5079.78, + "probability": 0.99951171875 + }, + { + "word": " police", + "start": 5079.78, + "end": 5080.14, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5080.14, + "end": 5080.38, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 5080.38, + "end": 5081.1, + "probability": 0.99853515625 + }, + { + "word": " deal", + "start": 5081.1, + "end": 5081.44, + "probability": 1.0 + }, + { + "word": " with", + "start": 5081.44, + "end": 5081.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 5081.66, + "end": 5081.88, + "probability": 1.0 + }, + { + "word": " or", + "start": 5081.88, + "end": 5082.56, + "probability": 0.8681640625 + }, + { + "word": " something", + "start": 5082.56, + "end": 5082.88, + "probability": 1.0 + }, + { + "word": " along", + "start": 5082.88, + "end": 5083.1, + "probability": 1.0 + }, + { + "word": " those", + "start": 5083.1, + "end": 5083.3, + "probability": 1.0 + }, + { + "word": " lines.", + "start": 5083.3, + "end": 5083.58, + "probability": 1.0 + } + ] + }, + { + "id": 4569, + "text": "But at the same time, for all of the, you know, omnipotence of this particular technology,", + "start": 5083.74, + "end": 5090.68, + "words": [ + { + "word": " But", + "start": 5083.74, + "end": 5083.92, + "probability": 0.99658203125 + }, + { + "word": " at", + "start": 5083.92, + "end": 5084.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5084.04, + "end": 5084.1, + "probability": 1.0 + }, + { + "word": " same", + "start": 5084.1, + "end": 5084.28, + "probability": 1.0 + }, + { + "word": " time,", + "start": 5084.28, + "end": 5084.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 5084.64, + "end": 5085.0, + "probability": 1.0 + }, + { + "word": " all", + "start": 5085.0, + "end": 5085.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 5085.3, + "end": 5085.52, + "probability": 1.0 + }, + { + "word": " the,", + "start": 5085.52, + "end": 5085.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 5085.88, + "end": 5087.14, + "probability": 1.0 + }, + { + "word": " know,", + "start": 5087.14, + "end": 5087.46, + "probability": 1.0 + }, + { + "word": " omnipotence", + "start": 5087.46, + "end": 5088.48, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 5088.48, + "end": 5088.68, + "probability": 1.0 + }, + { + "word": " this", + "start": 5088.68, + "end": 5088.94, + "probability": 1.0 + }, + { + "word": " particular", + "start": 5088.94, + "end": 5089.36, + "probability": 1.0 + }, + { + "word": " technology,", + "start": 5089.36, + "end": 5090.68, + "probability": 1.0 + } + ] + }, + { + "id": 4570, + "text": "there's certainly a lot of blinders.", + "start": 5091.32, + "end": 5093.08, + "words": [ + { + "word": " there's", + "start": 5091.32, + "end": 5091.82, + "probability": 0.9990234375 + }, + { + "word": " certainly", + "start": 5091.82, + "end": 5092.28, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5092.28, + "end": 5092.56, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5092.56, + "end": 5092.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 5092.74, + "end": 5092.88, + "probability": 0.99658203125 + }, + { + "word": " blinders.", + "start": 5092.88, + "end": 5093.08, + "probability": 0.53125 + } + ] + }, + { + "id": 4571, + "text": "There's blind spots.", + "start": 5093.1, + "end": 5093.36, + "words": [ + { + "word": " There's", + "start": 5093.1, + "end": 5093.36, + "probability": 0.194580078125 + }, + { + "word": " blind", + "start": 5093.36, + "end": 5093.36, + "probability": 0.0212860107421875 + }, + { + "word": " spots.", + "start": 5093.36, + "end": 5093.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4572, + "text": "Yeah.", + "start": 5093.96, + "end": 5094.32, + "words": [ + { + "word": " Yeah.", + "start": 5093.96, + "end": 5094.32, + "probability": 0.7646484375 + } + ] + }, + { + "id": 4573, + "text": "And people know where to go to not be seen.", + "start": 5094.58, + "end": 5097.28, + "words": [ + { + "word": " And", + "start": 5094.58, + "end": 5094.94, + "probability": 0.98681640625 + }, + { + "word": " people", + "start": 5094.94, + "end": 5095.54, + "probability": 0.9775390625 + }, + { + "word": " know", + "start": 5095.54, + "end": 5095.84, + "probability": 1.0 + }, + { + "word": " where", + "start": 5095.84, + "end": 5096.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 5096.1, + "end": 5096.22, + "probability": 1.0 + }, + { + "word": " go", + "start": 5096.22, + "end": 5096.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 5096.42, + "end": 5096.6, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 5096.6, + "end": 5096.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 5096.78, + "end": 5096.94, + "probability": 1.0 + }, + { + "word": " seen.", + "start": 5096.94, + "end": 5097.28, + "probability": 1.0 + } + ] + }, + { + "id": 4574, + "text": "You know, the criminals figure that stuff out pretty quickly.", + "start": 5097.48, + "end": 5099.4, + "words": [ + { + "word": " You", + "start": 5097.48, + "end": 5097.74, + "probability": 0.55224609375 + }, + { + "word": " know,", + "start": 5097.74, + "end": 5097.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 5097.86, + "end": 5097.94, + "probability": 0.99951171875 + }, + { + "word": " criminals", + "start": 5097.94, + "end": 5098.2, + "probability": 1.0 + }, + { + "word": " figure", + "start": 5098.2, + "end": 5098.42, + "probability": 0.90185546875 + }, + { + "word": " that", + "start": 5098.42, + "end": 5098.6, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 5098.6, + "end": 5098.78, + "probability": 1.0 + }, + { + "word": " out", + "start": 5098.78, + "end": 5099.06, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 5099.06, + "end": 5099.3, + "probability": 0.99755859375 + }, + { + "word": " quickly.", + "start": 5099.3, + "end": 5099.4, + "probability": 0.87841796875 + } + ] + }, + { + "id": 4575, + "text": "Pretty quickly.", + "start": 5099.4, + "end": 5099.74, + "words": [ + { + "word": " Pretty", + "start": 5099.4, + "end": 5099.46, + "probability": 0.87548828125 + }, + { + "word": " quickly.", + "start": 5099.46, + "end": 5099.74, + "probability": 1.0 + } + ] + }, + { + "id": 4576, + "text": "It's like that movie Eagle Eye.", + "start": 5100.160000000001, + "end": 5101.5, + "words": [ + { + "word": " It's", + "start": 5100.160000000001, + "end": 5100.52, + "probability": 0.982421875 + }, + { + "word": " like", + "start": 5100.52, + "end": 5100.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 5100.58, + "end": 5100.72, + "probability": 0.99951171875 + }, + { + "word": " movie", + "start": 5100.72, + "end": 5100.9, + "probability": 1.0 + }, + { + "word": " Eagle", + "start": 5100.9, + "end": 5101.26, + "probability": 0.9189453125 + }, + { + "word": " Eye.", + "start": 5101.26, + "end": 5101.5, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4577, + "text": "Have you seen that?", + "start": 5101.56, + "end": 5102.0, + "words": [ + { + "word": " Have", + "start": 5101.56, + "end": 5101.68, + "probability": 1.0 + }, + { + "word": " you", + "start": 5101.68, + "end": 5101.7, + "probability": 1.0 + }, + { + "word": " seen", + "start": 5101.7, + "end": 5101.88, + "probability": 1.0 + }, + { + "word": " that?", + "start": 5101.88, + "end": 5102.0, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4578, + "text": "Yeah.", + "start": 5102.12, + "end": 5102.26, + "words": [ + { + "word": " Yeah.", + "start": 5102.12, + "end": 5102.26, + "probability": 1.0 + } + ] + }, + { + "id": 4579, + "text": "Yeah.", + "start": 5102.46, + "end": 5102.82, + "words": [ + { + "word": " Yeah.", + "start": 5102.46, + "end": 5102.82, + "probability": 0.93115234375 + } + ] + }, + { + "id": 4580, + "text": "And also Minority Report, to a certain extent, minus the psychics.", + "start": 5103.340000000001, + "end": 5106.54, + "words": [ + { + "word": " And", + "start": 5103.340000000001, + "end": 5103.700000000001, + "probability": 0.96240234375 + }, + { + "word": " also", + "start": 5103.700000000001, + "end": 5104.06, + "probability": 0.99951171875 + }, + { + "word": " Minority", + "start": 5104.06, + "end": 5104.74, + "probability": 0.9814453125 + }, + { + "word": " Report,", + "start": 5104.74, + "end": 5104.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5105.06, + "end": 5105.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 5105.22, + "end": 5105.28, + "probability": 1.0 + }, + { + "word": " certain", + "start": 5105.28, + "end": 5105.4, + "probability": 1.0 + }, + { + "word": " extent,", + "start": 5105.4, + "end": 5105.68, + "probability": 1.0 + }, + { + "word": " minus", + "start": 5105.76, + "end": 5105.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 5105.98, + "end": 5106.12, + "probability": 0.89599609375 + }, + { + "word": " psychics.", + "start": 5106.12, + "end": 5106.54, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4581, + "text": "By the way, that was a terrible movie, Eagle Eye.", + "start": 5106.66, + "end": 5109.22, + "words": [ + { + "word": " By", + "start": 5106.66, + "end": 5106.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 5106.96, + "end": 5107.1, + "probability": 1.0 + }, + { + "word": " way,", + "start": 5107.1, + "end": 5107.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 5107.24, + "end": 5107.34, + "probability": 1.0 + }, + { + "word": " was", + "start": 5107.34, + "end": 5107.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 5107.5, + "end": 5107.6, + "probability": 1.0 + }, + { + "word": " terrible", + "start": 5107.6, + "end": 5108.04, + "probability": 1.0 + }, + { + "word": " movie,", + "start": 5108.04, + "end": 5108.36, + "probability": 1.0 + }, + { + "word": " Eagle", + "start": 5108.54, + "end": 5109.02, + "probability": 1.0 + }, + { + "word": " Eye.", + "start": 5109.02, + "end": 5109.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4582, + "text": "But it was entertaining.", + "start": 5109.28, + "end": 5110.08, + "words": [ + { + "word": " But", + "start": 5109.28, + "end": 5109.44, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5109.44, + "end": 5109.62, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 5109.62, + "end": 5109.78, + "probability": 1.0 + }, + { + "word": " entertaining.", + "start": 5109.78, + "end": 5110.08, + "probability": 1.0 + } + ] + }, + { + "id": 4583, + "text": "Yeah.", + "start": 5110.4800000000005, + "end": 5110.84, + "words": [ + { + "word": " Yeah.", + "start": 5110.4800000000005, + "end": 5110.84, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4584, + "text": "I mean, interesting thought concept.", + "start": 5110.9, + "end": 5113.1, + "words": [ + { + "word": " I", + "start": 5110.9, + "end": 5111.26, + "probability": 0.99462890625 + }, + { + "word": " mean,", + "start": 5111.26, + "end": 5111.5, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 5111.52, + "end": 5112.0, + "probability": 1.0 + }, + { + "word": " thought", + "start": 5112.0, + "end": 5112.28, + "probability": 0.93212890625 + }, + { + "word": " concept.", + "start": 5112.28, + "end": 5113.1, + "probability": 0.84765625 + } + ] + }, + { + "id": 4585, + "text": "Not a very good movie.", + "start": 5113.46, + "end": 5114.46, + "words": [ + { + "word": " Not", + "start": 5113.46, + "end": 5113.82, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5113.82, + "end": 5113.98, + "probability": 1.0 + }, + { + "word": " very", + "start": 5113.98, + "end": 5114.1, + "probability": 1.0 + }, + { + "word": " good", + "start": 5114.1, + "end": 5114.26, + "probability": 1.0 + }, + { + "word": " movie.", + "start": 5114.26, + "end": 5114.46, + "probability": 1.0 + } + ] + }, + { + "id": 4586, + "text": "But it's interesting in its own right.", + "start": 5115.960000000001, + "end": 5118.56, + "words": [ + { + "word": " But", + "start": 5115.960000000001, + "end": 5116.320000000001, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 5116.320000000001, + "end": 5116.68, + "probability": 0.9990234375 + }, + { + "word": " interesting", + "start": 5116.68, + "end": 5117.52, + "probability": 0.99365234375 + }, + { + "word": " in", + "start": 5117.52, + "end": 5118.06, + "probability": 0.99951171875 + }, + { + "word": " its", + "start": 5118.06, + "end": 5118.18, + "probability": 1.0 + }, + { + "word": " own", + "start": 5118.18, + "end": 5118.34, + "probability": 1.0 + }, + { + "word": " right.", + "start": 5118.34, + "end": 5118.56, + "probability": 1.0 + } + ] + }, + { + "id": 4587, + "text": "Yeah.", + "start": 5118.76, + "end": 5119.12, + "words": [ + { + "word": " Yeah.", + "start": 5118.76, + "end": 5119.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4588, + "text": "And I mean, these types of upgrades, while this specific one, who knows if they're actually going to use it,", + "start": 5119.12, + "end": 5123.08, + "words": [ + { + "word": " And", + "start": 5119.12, + "end": 5119.2, + "probability": 0.92724609375 + }, + { + "word": " I", + "start": 5119.2, + "end": 5119.24, + "probability": 0.67529296875 + }, + { + "word": " mean,", + "start": 5119.24, + "end": 5119.34, + "probability": 1.0 + }, + { + "word": " these", + "start": 5119.36, + "end": 5119.56, + "probability": 0.99951171875 + }, + { + "word": " types", + "start": 5119.56, + "end": 5120.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 5120.06, + "end": 5120.24, + "probability": 1.0 + }, + { + "word": " upgrades,", + "start": 5120.24, + "end": 5120.56, + "probability": 0.99853515625 + }, + { + "word": " while", + "start": 5120.68, + "end": 5120.8, + "probability": 0.99365234375 + }, + { + "word": " this", + "start": 5120.8, + "end": 5121.04, + "probability": 1.0 + }, + { + "word": " specific", + "start": 5121.04, + "end": 5121.54, + "probability": 1.0 + }, + { + "word": " one,", + "start": 5121.54, + "end": 5121.9, + "probability": 1.0 + }, + { + "word": " who", + "start": 5121.98, + "end": 5122.06, + "probability": 0.99951171875 + }, + { + "word": " knows", + "start": 5122.06, + "end": 5122.24, + "probability": 1.0 + }, + { + "word": " if", + "start": 5122.24, + "end": 5122.4, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 5122.4, + "end": 5122.52, + "probability": 1.0 + }, + { + "word": " actually", + "start": 5122.52, + "end": 5122.76, + "probability": 1.0 + }, + { + "word": " going", + "start": 5122.76, + "end": 5122.9, + "probability": 0.6650390625 + }, + { + "word": " to", + "start": 5122.9, + "end": 5122.96, + "probability": 1.0 + }, + { + "word": " use", + "start": 5122.96, + "end": 5123.08, + "probability": 0.92919921875 + }, + { + "word": " it,", + "start": 5123.08, + "end": 5123.08, + "probability": 0.64404296875 + } + ] + }, + { + "id": 4589, + "text": "but upgrading infrastructure in a cost-effective way is obviously the name of the game.", + "start": 5123.08, + "end": 5127.54, + "words": [ + { + "word": " but", + "start": 5123.08, + "end": 5123.28, + "probability": 0.0308685302734375 + }, + { + "word": " upgrading", + "start": 5123.28, + "end": 5124.46, + "probability": 0.982421875 + }, + { + "word": " infrastructure", + "start": 5124.46, + "end": 5125.06, + "probability": 0.99267578125 + }, + { + "word": " in", + "start": 5125.06, + "end": 5125.38, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 5125.38, + "end": 5125.44, + "probability": 0.99658203125 + }, + { + "word": " cost", + "start": 5125.44, + "end": 5125.7, + "probability": 0.99951171875 + }, + { + "word": "-effective", + "start": 5125.7, + "end": 5125.86, + "probability": 0.9169921875 + }, + { + "word": " way", + "start": 5125.86, + "end": 5126.16, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 5126.16, + "end": 5126.34, + "probability": 0.9990234375 + }, + { + "word": " obviously", + "start": 5126.34, + "end": 5126.76, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 5126.76, + "end": 5127.0, + "probability": 0.99951171875 + }, + { + "word": " name", + "start": 5127.0, + "end": 5127.16, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 5127.16, + "end": 5127.26, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5127.26, + "end": 5127.32, + "probability": 0.99951171875 + }, + { + "word": " game.", + "start": 5127.32, + "end": 5127.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4590, + "text": "And I'm sure we're going to see more stuff like that in the future.", + "start": 5127.72, + "end": 5130.2, + "words": [ + { + "word": " And", + "start": 5127.72, + "end": 5128.2, + "probability": 0.88623046875 + }, + { + "word": " I'm", + "start": 5128.2, + "end": 5128.44, + "probability": 0.99365234375 + }, + { + "word": " sure", + "start": 5128.44, + "end": 5128.62, + "probability": 0.99951171875 + }, + { + "word": " we're", + "start": 5128.62, + "end": 5128.78, + "probability": 0.99560546875 + }, + { + "word": " going", + "start": 5128.78, + "end": 5128.84, + "probability": 0.95703125 + }, + { + "word": " to", + "start": 5128.84, + "end": 5128.92, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 5128.92, + "end": 5129.04, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 5129.04, + "end": 5129.22, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 5129.22, + "end": 5129.4, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 5129.4, + "end": 5129.62, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5129.62, + "end": 5129.74, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 5129.74, + "end": 5129.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5129.86, + "end": 5129.92, + "probability": 0.99951171875 + }, + { + "word": " future.", + "start": 5129.92, + "end": 5130.2, + "probability": 1.0 + } + ] + }, + { + "id": 4591, + "text": "It's cool to see.", + "start": 5130.26, + "end": 5130.84, + "words": [ + { + "word": " It's", + "start": 5130.26, + "end": 5130.4, + "probability": 0.99853515625 + }, + { + "word": " cool", + "start": 5130.4, + "end": 5130.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5130.56, + "end": 5130.68, + "probability": 0.99951171875 + }, + { + "word": " see.", + "start": 5130.68, + "end": 5130.84, + "probability": 1.0 + } + ] + }, + { + "id": 4592, + "text": "Now, apparently Lenovo is cleaning up over at CES.", + "start": 5131.04, + "end": 5135.12, + "words": [ + { + "word": " Now,", + "start": 5131.04, + "end": 5131.52, + "probability": 0.97314453125 + }, + { + "word": " apparently", + "start": 5131.56, + "end": 5131.86, + "probability": 0.99951171875 + }, + { + "word": " Lenovo", + "start": 5131.86, + "end": 5132.58, + "probability": 0.935546875 + }, + { + "word": " is", + "start": 5132.58, + "end": 5132.94, + "probability": 0.99951171875 + }, + { + "word": " cleaning", + "start": 5132.94, + "end": 5133.22, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 5133.22, + "end": 5133.44, + "probability": 0.99853515625 + }, + { + "word": " over", + "start": 5133.44, + "end": 5133.7, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 5133.7, + "end": 5134.0, + "probability": 0.994140625 + }, + { + "word": " CES.", + "start": 5134.0, + "end": 5135.12, + "probability": 0.97998046875 + } + ] + }, + { + "id": 4593, + "text": "Oh, they're announcing a lot of new stuff?", + "start": 5135.12, + "end": 5136.96, + "words": [ + { + "word": " Oh,", + "start": 5135.12, + "end": 5135.46, + "probability": 0.97705078125 + }, + { + "word": " they're", + "start": 5135.52, + "end": 5135.66, + "probability": 0.99951171875 + }, + { + "word": " announcing", + "start": 5135.66, + "end": 5136.22, + "probability": 0.9658203125 + }, + { + "word": " a", + "start": 5136.22, + "end": 5136.5, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5136.5, + "end": 5136.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 5136.6, + "end": 5136.64, + "probability": 1.0 + }, + { + "word": " new", + "start": 5136.64, + "end": 5136.76, + "probability": 1.0 + }, + { + "word": " stuff?", + "start": 5136.76, + "end": 5136.96, + "probability": 1.0 + } + ] + }, + { + "id": 4594, + "text": "Well, they won two categories.", + "start": 5137.3, + "end": 5139.74, + "words": [ + { + "word": " Well,", + "start": 5137.3, + "end": 5137.44, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 5137.64, + "end": 5137.84, + "probability": 0.9990234375 + }, + { + "word": " won", + "start": 5137.84, + "end": 5138.78, + "probability": 0.99169921875 + }, + { + "word": " two", + "start": 5138.78, + "end": 5139.28, + "probability": 0.9990234375 + }, + { + "word": " categories.", + "start": 5139.28, + "end": 5139.74, + "probability": 0.9052734375 + } + ] + }, + { + "id": 4595, + "text": "One for best phone or mobile device and best PC or tablet.", + "start": 5139.92, + "end": 5145.06, + "words": [ + { + "word": " One", + "start": 5139.92, + "end": 5140.16, + "probability": 0.978515625 + }, + { + "word": " for", + "start": 5140.16, + "end": 5140.46, + "probability": 0.99951171875 + }, + { + "word": " best", + "start": 5140.46, + "end": 5141.48, + "probability": 0.97998046875 + }, + { + "word": " phone", + "start": 5141.48, + "end": 5141.88, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 5141.88, + "end": 5142.06, + "probability": 0.99951171875 + }, + { + "word": " mobile", + "start": 5142.06, + "end": 5142.26, + "probability": 1.0 + }, + { + "word": " device", + "start": 5142.26, + "end": 5142.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 5142.66, + "end": 5143.4, + "probability": 0.80029296875 + }, + { + "word": " best", + "start": 5143.4, + "end": 5143.78, + "probability": 1.0 + }, + { + "word": " PC", + "start": 5143.78, + "end": 5144.36, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 5144.36, + "end": 5144.7, + "probability": 1.0 + }, + { + "word": " tablet.", + "start": 5144.7, + "end": 5145.06, + "probability": 1.0 + } + ] + }, + { + "id": 4596, + "text": "That's weird to hear Lenovo making mobile devices.", + "start": 5145.32, + "end": 5147.76, + "words": [ + { + "word": " That's", + "start": 5145.32, + "end": 5145.8, + "probability": 1.0 + }, + { + "word": " weird", + "start": 5145.8, + "end": 5145.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 5145.96, + "end": 5146.08, + "probability": 1.0 + }, + { + "word": " hear", + "start": 5146.08, + "end": 5146.2, + "probability": 1.0 + }, + { + "word": " Lenovo", + "start": 5146.2, + "end": 5146.68, + "probability": 0.9990234375 + }, + { + "word": " making", + "start": 5146.68, + "end": 5147.02, + "probability": 1.0 + }, + { + "word": " mobile", + "start": 5147.02, + "end": 5147.3, + "probability": 1.0 + }, + { + "word": " devices.", + "start": 5147.3, + "end": 5147.76, + "probability": 1.0 + } + ] + }, + { + "id": 4597, + "text": "Yeah.", + "start": 5148.08, + "end": 5148.46, + "words": [ + { + "word": " Yeah.", + "start": 5148.08, + "end": 5148.46, + "probability": 0.9892578125 + } + ] + }, + { + "id": 4598, + "text": "And it looks a lot like the Microsoft Surface.", + "start": 5148.52, + "end": 5152.7, + "words": [ + { + "word": " And", + "start": 5148.52, + "end": 5148.78, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 5148.78, + "end": 5149.02, + "probability": 0.99951171875 + }, + { + "word": " looks", + "start": 5149.02, + "end": 5149.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 5149.42, + "end": 5149.68, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 5149.68, + "end": 5150.2, + "probability": 1.0 + }, + { + "word": " like", + "start": 5150.2, + "end": 5150.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 5150.68, + "end": 5151.52, + "probability": 0.99853515625 + }, + { + "word": " Microsoft", + "start": 5151.52, + "end": 5152.24, + "probability": 0.99951171875 + }, + { + "word": " Surface.", + "start": 5152.24, + "end": 5152.7, + "probability": 0.9794921875 + } + ] + }, + { + "id": 4599, + "text": "Oh, yeah.", + "start": 5153.240000000001, + "end": 5153.9, + "words": [ + { + "word": " Oh,", + "start": 5153.240000000001, + "end": 5153.64, + "probability": 0.93408203125 + }, + { + "word": " yeah.", + "start": 5153.68, + "end": 5153.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4600, + "text": "I remember hearing about that.", + "start": 5154.08, + "end": 5155.54, + "words": [ + { + "word": " I", + "start": 5154.08, + "end": 5154.48, + "probability": 0.99951171875 + }, + { + "word": " remember", + "start": 5154.48, + "end": 5154.74, + "probability": 1.0 + }, + { + "word": " hearing", + "start": 5154.74, + "end": 5155.08, + "probability": 1.0 + }, + { + "word": " about", + "start": 5155.08, + "end": 5155.32, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5155.32, + "end": 5155.54, + "probability": 1.0 + } + ] + }, + { + "id": 4601, + "text": "So it looks remarkably similar to the Microsoft Surface with a very similar stand and keyboard setup.", + "start": 5155.7, + "end": 5163.42, + "words": [ + { + "word": " So", + "start": 5155.7, + "end": 5155.9, + "probability": 0.94775390625 + }, + { + "word": " it", + "start": 5155.9, + "end": 5156.22, + "probability": 0.85009765625 + }, + { + "word": " looks", + "start": 5156.22, + "end": 5156.96, + "probability": 0.99853515625 + }, + { + "word": " remarkably", + "start": 5156.96, + "end": 5158.42, + "probability": 1.0 + }, + { + "word": " similar", + "start": 5158.42, + "end": 5158.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 5158.92, + "end": 5159.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 5159.18, + "end": 5159.22, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 5159.22, + "end": 5159.54, + "probability": 0.99951171875 + }, + { + "word": " Surface", + "start": 5159.54, + "end": 5159.94, + "probability": 0.99755859375 + }, + { + "word": " with", + "start": 5159.94, + "end": 5161.06, + "probability": 0.8486328125 + }, + { + "word": " a", + "start": 5161.06, + "end": 5161.26, + "probability": 1.0 + }, + { + "word": " very", + "start": 5161.26, + "end": 5161.74, + "probability": 1.0 + }, + { + "word": " similar", + "start": 5161.74, + "end": 5162.12, + "probability": 1.0 + }, + { + "word": " stand", + "start": 5162.12, + "end": 5162.5, + "probability": 0.98974609375 + }, + { + "word": " and", + "start": 5162.5, + "end": 5162.68, + "probability": 0.99755859375 + }, + { + "word": " keyboard", + "start": 5162.68, + "end": 5162.9, + "probability": 1.0 + }, + { + "word": " setup.", + "start": 5162.9, + "end": 5163.42, + "probability": 0.98291015625 + } + ] + }, + { + "id": 4602, + "text": "But it's Snapdragon powered.", + "start": 5163.84, + "end": 5165.22, + "words": [ + { + "word": " But", + "start": 5163.84, + "end": 5164.24, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 5164.24, + "end": 5164.44, + "probability": 1.0 + }, + { + "word": " Snapdragon", + "start": 5164.44, + "end": 5164.74, + "probability": 0.9990234375 + }, + { + "word": " powered.", + "start": 5164.74, + "end": 5165.22, + "probability": 0.66455078125 + } + ] + }, + { + "id": 4603, + "text": "So it's got the same type of processor that's in your phone.", + "start": 5165.6, + "end": 5167.8, + "words": [ + { + "word": " So", + "start": 5165.6, + "end": 5166.0, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 5166.0, + "end": 5166.16, + "probability": 1.0 + }, + { + "word": " got", + "start": 5166.16, + "end": 5166.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 5166.28, + "end": 5166.34, + "probability": 1.0 + }, + { + "word": " same", + "start": 5166.34, + "end": 5166.52, + "probability": 1.0 + }, + { + "word": " type", + "start": 5166.52, + "end": 5166.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 5166.7, + "end": 5166.84, + "probability": 1.0 + }, + { + "word": " processor", + "start": 5166.84, + "end": 5167.18, + "probability": 0.9765625 + }, + { + "word": " that's", + "start": 5167.18, + "end": 5167.42, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 5167.42, + "end": 5167.48, + "probability": 1.0 + }, + { + "word": " your", + "start": 5167.48, + "end": 5167.58, + "probability": 1.0 + }, + { + "word": " phone.", + "start": 5167.58, + "end": 5167.8, + "probability": 1.0 + } + ] + }, + { + "id": 4604, + "text": "It allows you to put in the SIM card and have mobile data to it.", + "start": 5167.84, + "end": 5171.22, + "words": [ + { + "word": " It", + "start": 5167.84, + "end": 5167.92, + "probability": 0.98583984375 + }, + { + "word": " allows", + "start": 5167.92, + "end": 5168.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5168.04, + "end": 5168.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 5168.2, + "end": 5168.3, + "probability": 1.0 + }, + { + "word": " put", + "start": 5168.3, + "end": 5168.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 5168.42, + "end": 5168.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5168.5, + "end": 5168.6, + "probability": 0.9443359375 + }, + { + "word": " SIM", + "start": 5168.6, + "end": 5168.76, + "probability": 0.998046875 + }, + { + "word": " card", + "start": 5168.76, + "end": 5169.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 5169.02, + "end": 5169.46, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 5169.46, + "end": 5169.98, + "probability": 1.0 + }, + { + "word": " mobile", + "start": 5169.98, + "end": 5170.3, + "probability": 1.0 + }, + { + "word": " data", + "start": 5170.3, + "end": 5170.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 5170.68, + "end": 5170.96, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5170.96, + "end": 5171.22, + "probability": 1.0 + } + ] + }, + { + "id": 4605, + "text": "And apparently it's fast enough to run Windows 10 on it.", + "start": 5171.32, + "end": 5174.42, + "words": [ + { + "word": " And", + "start": 5171.32, + "end": 5171.58, + "probability": 0.98681640625 + }, + { + "word": " apparently", + "start": 5171.58, + "end": 5172.2, + "probability": 0.984375 + }, + { + "word": " it's", + "start": 5172.2, + "end": 5172.72, + "probability": 0.87158203125 + }, + { + "word": " fast", + "start": 5172.72, + "end": 5173.08, + "probability": 1.0 + }, + { + "word": " enough", + "start": 5173.08, + "end": 5173.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 5173.38, + "end": 5173.52, + "probability": 1.0 + }, + { + "word": " run", + "start": 5173.52, + "end": 5173.6, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 5173.6, + "end": 5173.8, + "probability": 1.0 + }, + { + "word": " 10", + "start": 5173.8, + "end": 5174.08, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5174.08, + "end": 5174.28, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5174.28, + "end": 5174.42, + "probability": 1.0 + } + ] + }, + { + "id": 4606, + "text": "You know, I despise Surface tablets, so I hope that this is better.", + "start": 5174.58, + "end": 5177.12, + "words": [ + { + "word": " You", + "start": 5174.58, + "end": 5174.7, + "probability": 0.9970703125 + }, + { + "word": " know,", + "start": 5174.7, + "end": 5174.78, + "probability": 1.0 + }, + { + "word": " I", + "start": 5174.8, + "end": 5174.92, + "probability": 1.0 + }, + { + "word": " despise", + "start": 5174.92, + "end": 5175.48, + "probability": 0.99951171875 + }, + { + "word": " Surface", + "start": 5175.48, + "end": 5175.68, + "probability": 0.99755859375 + }, + { + "word": " tablets,", + "start": 5175.68, + "end": 5176.06, + "probability": 0.9970703125 + }, + { + "word": " so", + "start": 5176.14, + "end": 5176.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 5176.28, + "end": 5176.34, + "probability": 1.0 + }, + { + "word": " hope", + "start": 5176.34, + "end": 5176.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 5176.52, + "end": 5176.62, + "probability": 1.0 + }, + { + "word": " this", + "start": 5176.62, + "end": 5176.76, + "probability": 1.0 + }, + { + "word": " is", + "start": 5176.76, + "end": 5176.86, + "probability": 1.0 + }, + { + "word": " better.", + "start": 5176.86, + "end": 5177.12, + "probability": 1.0 + } + ] + }, + { + "id": 4607, + "text": "Yeah.", + "start": 5177.88, + "end": 5178.14, + "words": [ + { + "word": " Yeah.", + "start": 5177.88, + "end": 5178.14, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4608, + "text": "I mean, Surface tablets aren't bad.", + "start": 5178.16, + "end": 5179.4, + "words": [ + { + "word": " I", + "start": 5178.16, + "end": 5178.28, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 5178.28, + "end": 5178.48, + "probability": 1.0 + }, + { + "word": " Surface", + "start": 5178.5, + "end": 5178.7, + "probability": 0.99609375 + }, + { + "word": " tablets", + "start": 5178.7, + "end": 5178.96, + "probability": 0.99951171875 + }, + { + "word": " aren't", + "start": 5178.96, + "end": 5179.2, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 5179.2, + "end": 5179.4, + "probability": 0.76513671875 + } + ] + }, + { + "id": 4609, + "text": "The new ones anyway.", + "start": 5179.46, + "end": 5180.06, + "words": [ + { + "word": " The", + "start": 5179.46, + "end": 5179.58, + "probability": 0.9931640625 + }, + { + "word": " new", + "start": 5179.58, + "end": 5179.72, + "probability": 1.0 + }, + { + "word": " ones", + "start": 5179.72, + "end": 5179.86, + "probability": 0.9990234375 + }, + { + "word": " anyway.", + "start": 5179.86, + "end": 5180.06, + "probability": 0.82666015625 + } + ] + }, + { + "id": 4610, + "text": "Yeah.", + "start": 5180.28, + "end": 5180.54, + "words": [ + { + "word": " Yeah.", + "start": 5180.28, + "end": 5180.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4611, + "text": "I haven't used the newest one.", + "start": 5180.6, + "end": 5181.9, + "words": [ + { + "word": " I", + "start": 5180.6, + "end": 5180.7, + "probability": 0.99951171875 + }, + { + "word": " haven't", + "start": 5180.7, + "end": 5180.96, + "probability": 1.0 + }, + { + "word": " used", + "start": 5180.96, + "end": 5181.34, + "probability": 0.9921875 + }, + { + "word": " the", + "start": 5181.34, + "end": 5181.54, + "probability": 1.0 + }, + { + "word": " newest", + "start": 5181.54, + "end": 5181.68, + "probability": 0.99951171875 + }, + { + "word": " one.", + "start": 5181.68, + "end": 5181.9, + "probability": 1.0 + } + ] + }, + { + "id": 4612, + "text": "But every time I've used one in the past, I've been like, oh, this is a good one.", + "start": 5181.96, + "end": 5183.06, + "words": [ + { + "word": " But", + "start": 5181.96, + "end": 5182.04, + "probability": 0.99072265625 + }, + { + "word": " every", + "start": 5182.04, + "end": 5182.2, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 5182.2, + "end": 5182.4, + "probability": 1.0 + }, + { + "word": " I've", + "start": 5182.4, + "end": 5182.62, + "probability": 0.99951171875 + }, + { + "word": " used", + "start": 5182.62, + "end": 5182.72, + "probability": 1.0 + }, + { + "word": " one", + "start": 5182.72, + "end": 5182.86, + "probability": 1.0 + }, + { + "word": " in", + "start": 5182.86, + "end": 5182.94, + "probability": 0.65673828125 + }, + { + "word": " the", + "start": 5182.94, + "end": 5182.98, + "probability": 0.99853515625 + }, + { + "word": " past,", + "start": 5182.98, + "end": 5183.06, + "probability": 0.984375 + }, + { + "word": " I've", + "start": 5183.06, + "end": 5183.06, + "probability": 0.71484375 + }, + { + "word": " been", + "start": 5183.06, + "end": 5183.06, + "probability": 0.1461181640625 + }, + { + "word": " like,", + "start": 5183.06, + "end": 5183.06, + "probability": 0.6416015625 + }, + { + "word": " oh,", + "start": 5183.06, + "end": 5183.06, + "probability": 0.72216796875 + }, + { + "word": " this", + "start": 5183.06, + "end": 5183.06, + "probability": 0.331787109375 + }, + { + "word": " is", + "start": 5183.06, + "end": 5183.06, + "probability": 0.91943359375 + }, + { + "word": " a", + "start": 5183.06, + "end": 5183.06, + "probability": 0.09716796875 + }, + { + "word": " good", + "start": 5183.06, + "end": 5183.06, + "probability": 0.228515625 + }, + { + "word": " one.", + "start": 5183.06, + "end": 5183.06, + "probability": 0.3896484375 + } + ] + }, + { + "id": 4613, + "text": "I've used it in the past.", + "start": 5183.08, + "end": 5183.26, + "words": [ + { + "word": " I've", + "start": 5183.08, + "end": 5183.26, + "probability": 0.109130859375 + }, + { + "word": " used", + "start": 5183.26, + "end": 5183.26, + "probability": 0.0148162841796875 + }, + { + "word": " it", + "start": 5183.26, + "end": 5183.26, + "probability": 0.3896484375 + }, + { + "word": " in", + "start": 5183.26, + "end": 5183.26, + "probability": 0.36376953125 + }, + { + "word": " the", + "start": 5183.26, + "end": 5183.26, + "probability": 0.84033203125 + }, + { + "word": " past.", + "start": 5183.26, + "end": 5183.26, + "probability": 0.990234375 + } + ] + }, + { + "id": 4614, + "text": "I'm just like, this is horrible.", + "start": 5183.26, + "end": 5184.32, + "words": [ + { + "word": " I'm", + "start": 5183.26, + "end": 5183.46, + "probability": 0.95556640625 + }, + { + "word": " just", + "start": 5183.46, + "end": 5183.54, + "probability": 0.97314453125 + }, + { + "word": " like,", + "start": 5183.54, + "end": 5183.68, + "probability": 0.96533203125 + }, + { + "word": " this", + "start": 5183.72, + "end": 5183.82, + "probability": 0.80712890625 + }, + { + "word": " is", + "start": 5183.82, + "end": 5184.04, + "probability": 0.998046875 + }, + { + "word": " horrible.", + "start": 5184.04, + "end": 5184.32, + "probability": 0.9375 + } + ] + }, + { + "id": 4615, + "text": "This is a horrible experience.", + "start": 5185.0, + "end": 5186.26, + "words": [ + { + "word": " This", + "start": 5185.0, + "end": 5185.4, + "probability": 0.98046875 + }, + { + "word": " is", + "start": 5185.4, + "end": 5185.56, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 5185.56, + "end": 5185.62, + "probability": 0.99560546875 + }, + { + "word": " horrible", + "start": 5185.62, + "end": 5185.84, + "probability": 0.9990234375 + }, + { + "word": " experience.", + "start": 5185.84, + "end": 5186.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4616, + "text": "Think about it this way.", + "start": 5186.8, + "end": 5187.84, + "words": [ + { + "word": " Think", + "start": 5186.8, + "end": 5187.2, + "probability": 0.9404296875 + }, + { + "word": " about", + "start": 5187.2, + "end": 5187.38, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 5187.38, + "end": 5187.54, + "probability": 0.9951171875 + }, + { + "word": " this", + "start": 5187.54, + "end": 5187.66, + "probability": 0.9990234375 + }, + { + "word": " way.", + "start": 5187.66, + "end": 5187.84, + "probability": 1.0 + } + ] + }, + { + "id": 4617, + "text": "A laptop that can go literally 20 hours per charge.", + "start": 5187.9, + "end": 5191.68, + "words": [ + { + "word": " A", + "start": 5187.9, + "end": 5188.0, + "probability": 0.99658203125 + }, + { + "word": " laptop", + "start": 5188.0, + "end": 5188.44, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 5188.44, + "end": 5188.68, + "probability": 0.99560546875 + }, + { + "word": " can", + "start": 5188.68, + "end": 5188.84, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 5188.84, + "end": 5189.12, + "probability": 0.99755859375 + }, + { + "word": " literally", + "start": 5189.12, + "end": 5190.16, + "probability": 0.97021484375 + }, + { + "word": " 20", + "start": 5190.16, + "end": 5190.62, + "probability": 0.994140625 + }, + { + "word": " hours", + "start": 5190.62, + "end": 5191.06, + "probability": 0.9990234375 + }, + { + "word": " per", + "start": 5191.06, + "end": 5191.32, + "probability": 0.99853515625 + }, + { + "word": " charge.", + "start": 5191.32, + "end": 5191.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4618, + "text": "Yeah.", + "start": 5192.04, + "end": 5192.42, + "words": [ + { + "word": " Yeah.", + "start": 5192.04, + "end": 5192.42, + "probability": 0.96484375 + } + ] + }, + { + "id": 4619, + "text": "See, like I had a Chromebook and that was like the main feature.", + "start": 5192.48, + "end": 5194.64, + "words": [ + { + "word": " See,", + "start": 5192.48, + "end": 5192.62, + "probability": 0.95458984375 + }, + { + "word": " like", + "start": 5192.68, + "end": 5192.76, + "probability": 0.658203125 + }, + { + "word": " I", + "start": 5192.76, + "end": 5192.82, + "probability": 0.5390625 + }, + { + "word": " had", + "start": 5192.82, + "end": 5192.96, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5192.96, + "end": 5193.04, + "probability": 0.9990234375 + }, + { + "word": " Chromebook", + "start": 5193.04, + "end": 5193.38, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 5193.38, + "end": 5193.54, + "probability": 0.521484375 + }, + { + "word": " that", + "start": 5193.54, + "end": 5193.64, + "probability": 1.0 + }, + { + "word": " was", + "start": 5193.64, + "end": 5193.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 5193.78, + "end": 5193.92, + "probability": 0.9853515625 + }, + { + "word": " the", + "start": 5193.92, + "end": 5194.04, + "probability": 0.99951171875 + }, + { + "word": " main", + "start": 5194.04, + "end": 5194.28, + "probability": 1.0 + }, + { + "word": " feature.", + "start": 5194.28, + "end": 5194.64, + "probability": 1.0 + } + ] + }, + { + "id": 4620, + "text": "So, I mean, Lenovo does good work though.", + "start": 5194.76, + "end": 5196.88, + "words": [ + { + "word": " So,", + "start": 5194.76, + "end": 5194.98, + "probability": 0.9111328125 + }, + { + "word": " I", + "start": 5195.0, + "end": 5195.58, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 5195.58, + "end": 5195.78, + "probability": 1.0 + }, + { + "word": " Lenovo", + "start": 5195.82, + "end": 5196.16, + "probability": 1.0 + }, + { + "word": " does", + "start": 5196.16, + "end": 5196.3, + "probability": 1.0 + }, + { + "word": " good", + "start": 5196.3, + "end": 5196.48, + "probability": 1.0 + }, + { + "word": " work", + "start": 5196.48, + "end": 5196.7, + "probability": 1.0 + }, + { + "word": " though.", + "start": 5196.7, + "end": 5196.88, + "probability": 0.70556640625 + } + ] + }, + { + "id": 4621, + "text": "And the secondary Lenovo, just before we run out of time here, the secondary Lenovo product is their Lenovo ThinkPad X1 Carbon.", + "start": 5197.500000000001, + "end": 5206.16, + "words": [ + { + "word": " And", + "start": 5197.500000000001, + "end": 5197.900000000001, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 5197.900000000001, + "end": 5198.3, + "probability": 0.982421875 + }, + { + "word": " secondary", + "start": 5198.3, + "end": 5198.8, + "probability": 0.998046875 + }, + { + "word": " Lenovo,", + "start": 5198.8, + "end": 5199.38, + "probability": 0.98681640625 + }, + { + "word": " just", + "start": 5199.38, + "end": 5199.52, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 5199.52, + "end": 5199.78, + "probability": 1.0 + }, + { + "word": " we", + "start": 5199.78, + "end": 5199.92, + "probability": 1.0 + }, + { + "word": " run", + "start": 5199.92, + "end": 5200.04, + "probability": 0.99169921875 + }, + { + "word": " out", + "start": 5200.04, + "end": 5200.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 5200.2, + "end": 5200.3, + "probability": 1.0 + }, + { + "word": " time", + "start": 5200.3, + "end": 5200.46, + "probability": 1.0 + }, + { + "word": " here,", + "start": 5200.46, + "end": 5200.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5200.8, + "end": 5200.98, + "probability": 0.99951171875 + }, + { + "word": " secondary", + "start": 5200.98, + "end": 5201.6, + "probability": 0.99853515625 + }, + { + "word": " Lenovo", + "start": 5201.6, + "end": 5202.06, + "probability": 1.0 + }, + { + "word": " product", + "start": 5202.06, + "end": 5202.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 5202.24, + "end": 5202.74, + "probability": 1.0 + }, + { + "word": " their", + "start": 5202.74, + "end": 5203.24, + "probability": 0.99951171875 + }, + { + "word": " Lenovo", + "start": 5203.24, + "end": 5204.9, + "probability": 0.99853515625 + }, + { + "word": " ThinkPad", + "start": 5204.9, + "end": 5205.24, + "probability": 0.990234375 + }, + { + "word": " X1", + "start": 5205.24, + "end": 5205.72, + "probability": 0.998046875 + }, + { + "word": " Carbon.", + "start": 5205.72, + "end": 5206.16, + "probability": 0.98193359375 + } + ] + }, + { + "id": 4622, + "text": "Now, the X1s have been around for a little while.", + "start": 5206.52, + "end": 5208.62, + "words": [ + { + "word": " Now,", + "start": 5206.52, + "end": 5206.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 5207.04, + "end": 5207.32, + "probability": 1.0 + }, + { + "word": " X1s", + "start": 5207.32, + "end": 5207.8, + "probability": 0.9892578125 + }, + { + "word": " have", + "start": 5207.8, + "end": 5207.82, + "probability": 1.0 + }, + { + "word": " been", + "start": 5207.82, + "end": 5207.96, + "probability": 1.0 + }, + { + "word": " around", + "start": 5207.96, + "end": 5208.1, + "probability": 1.0 + }, + { + "word": " for", + "start": 5208.1, + "end": 5208.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 5208.28, + "end": 5208.36, + "probability": 1.0 + }, + { + "word": " little", + "start": 5208.36, + "end": 5208.42, + "probability": 0.99755859375 + }, + { + "word": " while.", + "start": 5208.42, + "end": 5208.62, + "probability": 1.0 + } + ] + }, + { + "id": 4623, + "text": "They've gone through a couple of revisions because of some pretty significant changes.", + "start": 5208.96, + "end": 5213.06, + "words": [ + { + "word": " They've", + "start": 5208.96, + "end": 5209.36, + "probability": 0.9990234375 + }, + { + "word": " gone", + "start": 5209.36, + "end": 5209.54, + "probability": 0.99951171875 + }, + { + "word": " through", + "start": 5209.54, + "end": 5209.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 5209.76, + "end": 5209.9, + "probability": 1.0 + }, + { + "word": " couple", + "start": 5209.9, + "end": 5210.1, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5210.1, + "end": 5210.2, + "probability": 0.90283203125 + }, + { + "word": " revisions", + "start": 5210.2, + "end": 5210.68, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 5210.68, + "end": 5211.06, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 5211.06, + "end": 5211.4, + "probability": 1.0 + }, + { + "word": " some", + "start": 5211.4, + "end": 5212.12, + "probability": 0.9912109375 + }, + { + "word": " pretty", + "start": 5212.12, + "end": 5212.52, + "probability": 0.9990234375 + }, + { + "word": " significant", + "start": 5212.52, + "end": 5213.06, + "probability": 0.99169921875 + }, + { + "word": " changes.", + "start": 5213.06, + "end": 5213.06, + "probability": 0.2059326171875 + } + ] + }, + { + "id": 4624, + "text": "", + "start": 5213.06, + "end": 5213.06, + "words": [] + }, + { + "id": 4625, + "text": "They've gone through some significant problems that they had.", + "start": 5213.08, + "end": 5214.14, + "words": [ + { + "word": " They've", + "start": 5213.08, + "end": 5213.24, + "probability": 0.093017578125 + }, + { + "word": " gone", + "start": 5213.24, + "end": 5213.24, + "probability": 0.00750732421875 + }, + { + "word": " through", + "start": 5213.24, + "end": 5213.24, + "probability": 0.55517578125 + }, + { + "word": " some", + "start": 5213.24, + "end": 5213.24, + "probability": 0.228515625 + }, + { + "word": " significant", + "start": 5213.24, + "end": 5213.24, + "probability": 0.39111328125 + }, + { + "word": " problems", + "start": 5213.24, + "end": 5213.44, + "probability": 0.99267578125 + }, + { + "word": " that", + "start": 5213.44, + "end": 5213.76, + "probability": 0.93359375 + }, + { + "word": " they", + "start": 5213.76, + "end": 5213.92, + "probability": 0.9990234375 + }, + { + "word": " had.", + "start": 5213.92, + "end": 5214.14, + "probability": 0.98974609375 + } + ] + }, + { + "id": 4626, + "text": "Also, the X1s are also known as the Yogas when they were in the transformable version.", + "start": 5215.4400000000005, + "end": 5221.04, + "words": [ + { + "word": " Also,", + "start": 5215.4400000000005, + "end": 5215.88, + "probability": 0.93310546875 + }, + { + "word": " the", + "start": 5216.02, + "end": 5216.08, + "probability": 0.9990234375 + }, + { + "word": " X1s", + "start": 5216.08, + "end": 5216.48, + "probability": 0.92529296875 + }, + { + "word": " are", + "start": 5216.48, + "end": 5216.52, + "probability": 0.9921875 + }, + { + "word": " also", + "start": 5216.52, + "end": 5216.7, + "probability": 0.98583984375 + }, + { + "word": " known", + "start": 5216.7, + "end": 5216.88, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 5216.88, + "end": 5217.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 5217.08, + "end": 5217.18, + "probability": 0.99853515625 + }, + { + "word": " Yogas", + "start": 5217.18, + "end": 5217.68, + "probability": 0.904296875 + }, + { + "word": " when", + "start": 5217.68, + "end": 5217.9, + "probability": 0.734375 + }, + { + "word": " they", + "start": 5217.9, + "end": 5218.12, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 5218.12, + "end": 5218.36, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 5218.36, + "end": 5218.48, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 5218.48, + "end": 5218.58, + "probability": 0.98486328125 + }, + { + "word": " transformable", + "start": 5218.58, + "end": 5220.7, + "probability": 0.7509765625 + }, + { + "word": " version.", + "start": 5220.7, + "end": 5221.04, + "probability": 1.0 + } + ] + }, + { + "id": 4627, + "text": "But this one is not.", + "start": 5221.14, + "end": 5221.78, + "words": [ + { + "word": " But", + "start": 5221.14, + "end": 5221.24, + "probability": 0.9619140625 + }, + { + "word": " this", + "start": 5221.24, + "end": 5221.4, + "probability": 0.98974609375 + }, + { + "word": " one", + "start": 5221.4, + "end": 5221.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 5221.52, + "end": 5221.62, + "probability": 0.99951171875 + }, + { + "word": " not.", + "start": 5221.62, + "end": 5221.78, + "probability": 1.0 + } + ] + }, + { + "id": 4628, + "text": "It's just a laptop.", + "start": 5221.88, + "end": 5222.8, + "words": [ + { + "word": " It's", + "start": 5221.88, + "end": 5222.1, + "probability": 1.0 + }, + { + "word": " just", + "start": 5222.1, + "end": 5222.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 5222.38, + "end": 5222.52, + "probability": 0.9990234375 + }, + { + "word": " laptop.", + "start": 5222.52, + "end": 5222.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4629, + "text": "And it is very, very nice.", + "start": 5223.56, + "end": 5227.8, + "words": [ + { + "word": " And", + "start": 5223.56, + "end": 5224.0, + "probability": 0.9931640625 + }, + { + "word": " it", + "start": 5224.0, + "end": 5224.44, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5224.44, + "end": 5224.92, + "probability": 1.0 + }, + { + "word": " very,", + "start": 5224.92, + "end": 5226.54, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 5226.76, + "end": 5227.34, + "probability": 1.0 + }, + { + "word": " nice.", + "start": 5227.34, + "end": 5227.8, + "probability": 1.0 + } + ] + }, + { + "id": 4630, + "text": "Yeah.", + "start": 5227.9, + "end": 5228.06, + "words": [ + { + "word": " Yeah.", + "start": 5227.9, + "end": 5228.06, + "probability": 0.93115234375 + } + ] + }, + { + "id": 4631, + "text": "We made some money on those Yogas when they first came out.", + "start": 5228.12, + "end": 5231.88, + "words": [ + { + "word": " We", + "start": 5228.12, + "end": 5228.24, + "probability": 0.9990234375 + }, + { + "word": " made", + "start": 5228.24, + "end": 5228.4, + "probability": 1.0 + }, + { + "word": " some", + "start": 5228.4, + "end": 5228.56, + "probability": 1.0 + }, + { + "word": " money", + "start": 5228.56, + "end": 5228.76, + "probability": 1.0 + }, + { + "word": " on", + "start": 5228.76, + "end": 5228.9, + "probability": 1.0 + }, + { + "word": " those", + "start": 5228.9, + "end": 5229.08, + "probability": 1.0 + }, + { + "word": " Yogas", + "start": 5229.08, + "end": 5229.48, + "probability": 0.998046875 + }, + { + "word": " when", + "start": 5229.48, + "end": 5230.34, + "probability": 0.97314453125 + }, + { + "word": " they", + "start": 5230.34, + "end": 5231.26, + "probability": 1.0 + }, + { + "word": " first", + "start": 5231.26, + "end": 5231.48, + "probability": 1.0 + }, + { + "word": " came", + "start": 5231.48, + "end": 5231.7, + "probability": 1.0 + }, + { + "word": " out.", + "start": 5231.7, + "end": 5231.88, + "probability": 1.0 + } + ] + }, + { + "id": 4632, + "text": "Yeah.", + "start": 5231.9, + "end": 5232.0, + "words": [ + { + "word": " Yeah.", + "start": 5231.9, + "end": 5232.0, + "probability": 0.388671875 + } + ] + }, + { + "id": 4633, + "text": "Replacing those hinges on those things.", + "start": 5232.22, + "end": 5233.7, + "words": [ + { + "word": " Replacing", + "start": 5232.22, + "end": 5232.66, + "probability": 0.9951171875 + }, + { + "word": " those", + "start": 5232.66, + "end": 5232.82, + "probability": 1.0 + }, + { + "word": " hinges", + "start": 5232.82, + "end": 5233.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 5233.08, + "end": 5233.32, + "probability": 1.0 + }, + { + "word": " those", + "start": 5233.32, + "end": 5233.48, + "probability": 1.0 + }, + { + "word": " things.", + "start": 5233.48, + "end": 5233.7, + "probability": 1.0 + } + ] + }, + { + "id": 4634, + "text": "But it's got, you know, they've upgraded the cameras.", + "start": 5234.400000000001, + "end": 5237.48, + "words": [ + { + "word": " But", + "start": 5234.400000000001, + "end": 5234.84, + "probability": 0.9970703125 + }, + { + "word": " it's", + "start": 5234.84, + "end": 5235.04, + "probability": 0.83984375 + }, + { + "word": " got,", + "start": 5235.04, + "end": 5235.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 5235.34, + "end": 5236.02, + "probability": 0.97607421875 + }, + { + "word": " know,", + "start": 5236.02, + "end": 5236.2, + "probability": 1.0 + }, + { + "word": " they've", + "start": 5236.2, + "end": 5236.36, + "probability": 1.0 + }, + { + "word": " upgraded", + "start": 5236.36, + "end": 5236.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5236.64, + "end": 5236.92, + "probability": 1.0 + }, + { + "word": " cameras.", + "start": 5236.92, + "end": 5237.48, + "probability": 1.0 + } + ] + }, + { + "id": 4635, + "text": "They even added privacy control for the camera as in a shutter that you can close.", + "start": 5237.76, + "end": 5242.04, + "words": [ + { + "word": " They", + "start": 5237.76, + "end": 5237.94, + "probability": 1.0 + }, + { + "word": " even", + "start": 5237.94, + "end": 5238.14, + "probability": 0.515625 + }, + { + "word": " added", + "start": 5238.14, + "end": 5238.38, + "probability": 1.0 + }, + { + "word": " privacy", + "start": 5238.38, + "end": 5238.84, + "probability": 0.99951171875 + }, + { + "word": " control", + "start": 5238.84, + "end": 5239.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 5239.14, + "end": 5239.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 5239.4, + "end": 5239.54, + "probability": 1.0 + }, + { + "word": " camera", + "start": 5239.54, + "end": 5239.8, + "probability": 1.0 + }, + { + "word": " as", + "start": 5239.8, + "end": 5240.08, + "probability": 0.463623046875 + }, + { + "word": " in", + "start": 5240.08, + "end": 5240.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 5240.24, + "end": 5240.36, + "probability": 1.0 + }, + { + "word": " shutter", + "start": 5240.36, + "end": 5240.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5240.8, + "end": 5241.44, + "probability": 0.92822265625 + }, + { + "word": " you", + "start": 5241.44, + "end": 5241.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 5241.66, + "end": 5241.82, + "probability": 1.0 + }, + { + "word": " close.", + "start": 5241.82, + "end": 5242.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 4636, + "text": "Yeah.", + "start": 5242.04, + "end": 5242.18, + "words": [ + { + "word": " Yeah.", + "start": 5242.04, + "end": 5242.18, + "probability": 0.9111328125 + } + ] + }, + { + "id": 4637, + "text": "You know, you can tell me that the webcam is off all you want, but I want a physical thing that I can cover it with.", + "start": 5242.18, + "end": 5246.92, + "words": [ + { + "word": " You", + "start": 5242.18, + "end": 5242.34, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 5242.34, + "end": 5242.42, + "probability": 0.42236328125 + }, + { + "word": " you", + "start": 5242.48, + "end": 5242.78, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 5242.78, + "end": 5243.06, + "probability": 1.0 + }, + { + "word": " tell", + "start": 5243.06, + "end": 5243.32, + "probability": 1.0 + }, + { + "word": " me", + "start": 5243.32, + "end": 5243.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 5243.46, + "end": 5243.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 5243.58, + "end": 5243.7, + "probability": 1.0 + }, + { + "word": " webcam", + "start": 5243.7, + "end": 5243.9, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 5243.9, + "end": 5244.14, + "probability": 1.0 + }, + { + "word": " off", + "start": 5244.14, + "end": 5244.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 5244.3, + "end": 5244.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 5244.44, + "end": 5244.58, + "probability": 1.0 + }, + { + "word": " want,", + "start": 5244.58, + "end": 5244.76, + "probability": 1.0 + }, + { + "word": " but", + "start": 5244.84, + "end": 5244.94, + "probability": 1.0 + }, + { + "word": " I", + "start": 5244.94, + "end": 5245.02, + "probability": 1.0 + }, + { + "word": " want", + "start": 5245.02, + "end": 5245.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 5245.12, + "end": 5245.22, + "probability": 1.0 + }, + { + "word": " physical", + "start": 5245.22, + "end": 5245.5, + "probability": 1.0 + }, + { + "word": " thing", + "start": 5245.5, + "end": 5245.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 5245.86, + "end": 5246.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 5246.08, + "end": 5246.18, + "probability": 1.0 + }, + { + "word": " can", + "start": 5246.18, + "end": 5246.32, + "probability": 1.0 + }, + { + "word": " cover", + "start": 5246.32, + "end": 5246.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 5246.62, + "end": 5246.74, + "probability": 1.0 + }, + { + "word": " with.", + "start": 5246.74, + "end": 5246.92, + "probability": 1.0 + } + ] + }, + { + "id": 4638, + "text": "Yeah.", + "start": 5247.06, + "end": 5247.36, + "words": [ + { + "word": " Yeah.", + "start": 5247.06, + "end": 5247.36, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4639, + "text": "And it's got Alexa support built into it with that one.", + "start": 5247.44, + "end": 5250.02, + "words": [ + { + "word": " And", + "start": 5247.44, + "end": 5247.52, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 5247.52, + "end": 5247.64, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 5247.64, + "end": 5247.74, + "probability": 1.0 + }, + { + "word": " Alexa", + "start": 5247.74, + "end": 5248.08, + "probability": 0.998046875 + }, + { + "word": " support", + "start": 5248.08, + "end": 5248.42, + "probability": 1.0 + }, + { + "word": " built", + "start": 5248.42, + "end": 5248.68, + "probability": 1.0 + }, + { + "word": " into", + "start": 5248.68, + "end": 5248.94, + "probability": 1.0 + }, + { + "word": " it", + "start": 5248.94, + "end": 5249.2, + "probability": 1.0 + }, + { + "word": " with", + "start": 5249.2, + "end": 5249.64, + "probability": 0.99365234375 + }, + { + "word": " that", + "start": 5249.64, + "end": 5249.86, + "probability": 1.0 + }, + { + "word": " one.", + "start": 5249.86, + "end": 5250.02, + "probability": 1.0 + } + ] + }, + { + "id": 4640, + "text": "So, they're teaming up with Amazon if you want that type of thing.", + "start": 5250.36, + "end": 5253.18, + "words": [ + { + "word": " So,", + "start": 5250.36, + "end": 5250.76, + "probability": 0.9765625 + }, + { + "word": " they're", + "start": 5250.86, + "end": 5251.04, + "probability": 1.0 + }, + { + "word": " teaming", + "start": 5251.04, + "end": 5251.54, + "probability": 1.0 + }, + { + "word": " up", + "start": 5251.54, + "end": 5251.66, + "probability": 1.0 + }, + { + "word": " with", + "start": 5251.66, + "end": 5251.8, + "probability": 1.0 + }, + { + "word": " Amazon", + "start": 5251.8, + "end": 5252.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 5252.1, + "end": 5252.42, + "probability": 0.9619140625 + }, + { + "word": " you", + "start": 5252.42, + "end": 5252.52, + "probability": 1.0 + }, + { + "word": " want", + "start": 5252.52, + "end": 5252.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 5252.68, + "end": 5252.82, + "probability": 1.0 + }, + { + "word": " type", + "start": 5252.82, + "end": 5252.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 5252.98, + "end": 5253.06, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 5253.06, + "end": 5253.18, + "probability": 1.0 + } + ] + }, + { + "id": 4641, + "text": "It's got good microphones on it, of course, because of the Alexa integration.", + "start": 5253.22, + "end": 5256.74, + "words": [ + { + "word": " It's", + "start": 5253.22, + "end": 5253.32, + "probability": 0.9970703125 + }, + { + "word": " got", + "start": 5253.32, + "end": 5253.4, + "probability": 1.0 + }, + { + "word": " good", + "start": 5253.4, + "end": 5253.58, + "probability": 1.0 + }, + { + "word": " microphones", + "start": 5253.58, + "end": 5253.98, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 5253.98, + "end": 5254.24, + "probability": 1.0 + }, + { + "word": " it,", + "start": 5254.24, + "end": 5254.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 5254.4, + "end": 5254.48, + "probability": 1.0 + }, + { + "word": " course,", + "start": 5254.48, + "end": 5254.7, + "probability": 1.0 + }, + { + "word": " because", + "start": 5254.72, + "end": 5254.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 5254.96, + "end": 5255.22, + "probability": 0.7548828125 + }, + { + "word": " the", + "start": 5255.22, + "end": 5255.28, + "probability": 1.0 + }, + { + "word": " Alexa", + "start": 5255.28, + "end": 5255.58, + "probability": 0.974609375 + }, + { + "word": " integration.", + "start": 5255.58, + "end": 5256.74, + "probability": 1.0 + } + ] + }, + { + "id": 4642, + "text": "And it's got great battery life, great heat dissipation, and it's what we would consider an ultrabook.", + "start": 5258.660000000001, + "end": 5264.8, + "words": [ + { + "word": " And", + "start": 5258.660000000001, + "end": 5259.06, + "probability": 0.97021484375 + }, + { + "word": " it's", + "start": 5259.06, + "end": 5259.46, + "probability": 1.0 + }, + { + "word": " got", + "start": 5259.46, + "end": 5259.98, + "probability": 0.99462890625 + }, + { + "word": " great", + "start": 5259.98, + "end": 5260.36, + "probability": 1.0 + }, + { + "word": " battery", + "start": 5260.36, + "end": 5260.66, + "probability": 1.0 + }, + { + "word": " life,", + "start": 5260.66, + "end": 5260.92, + "probability": 1.0 + }, + { + "word": " great", + "start": 5261.06, + "end": 5261.68, + "probability": 1.0 + }, + { + "word": " heat", + "start": 5261.68, + "end": 5261.94, + "probability": 1.0 + }, + { + "word": " dissipation,", + "start": 5261.94, + "end": 5262.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 5262.54, + "end": 5262.7, + "probability": 1.0 + }, + { + "word": " it's", + "start": 5262.7, + "end": 5262.9, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 5262.9, + "end": 5263.56, + "probability": 0.990234375 + }, + { + "word": " we", + "start": 5263.56, + "end": 5263.82, + "probability": 0.962890625 + }, + { + "word": " would", + "start": 5263.82, + "end": 5263.92, + "probability": 0.87841796875 + }, + { + "word": " consider", + "start": 5263.92, + "end": 5264.18, + "probability": 1.0 + }, + { + "word": " an", + "start": 5264.18, + "end": 5264.42, + "probability": 1.0 + }, + { + "word": " ultrabook.", + "start": 5264.42, + "end": 5264.8, + "probability": 0.90380859375 + } + ] + }, + { + "id": 4643, + "text": "So, we're talking probably like over $1,000 range?", + "start": 5265.06, + "end": 5268.72, + "words": [ + { + "word": " So,", + "start": 5265.06, + "end": 5265.46, + "probability": 1.0 + }, + { + "word": " we're", + "start": 5265.48, + "end": 5265.66, + "probability": 1.0 + }, + { + "word": " talking", + "start": 5265.66, + "end": 5266.06, + "probability": 1.0 + }, + { + "word": " probably", + "start": 5266.06, + "end": 5266.44, + "probability": 1.0 + }, + { + "word": " like", + "start": 5266.44, + "end": 5266.88, + "probability": 0.80810546875 + }, + { + "word": " over", + "start": 5266.88, + "end": 5267.68, + "probability": 1.0 + }, + { + "word": " $1", + "start": 5267.68, + "end": 5267.96, + "probability": 0.8740234375 + }, + { + "word": ",000", + "start": 5267.96, + "end": 5268.32, + "probability": 1.0 + }, + { + "word": " range?", + "start": 5268.32, + "end": 5268.72, + "probability": 1.0 + } + ] + }, + { + "id": 4644, + "text": "You're looking at just about the $1,000 range.", + "start": 5268.94, + "end": 5271.12, + "words": [ + { + "word": " You're", + "start": 5268.94, + "end": 5269.1, + "probability": 1.0 + }, + { + "word": " looking", + "start": 5269.1, + "end": 5269.32, + "probability": 1.0 + }, + { + "word": " at", + "start": 5269.32, + "end": 5269.54, + "probability": 1.0 + }, + { + "word": " just", + "start": 5269.54, + "end": 5269.84, + "probability": 0.98681640625 + }, + { + "word": " about", + "start": 5269.84, + "end": 5270.18, + "probability": 0.96533203125 + }, + { + "word": " the", + "start": 5270.18, + "end": 5270.4, + "probability": 0.99609375 + }, + { + "word": " $1", + "start": 5270.4, + "end": 5270.54, + "probability": 1.0 + }, + { + "word": ",000", + "start": 5270.54, + "end": 5270.74, + "probability": 1.0 + }, + { + "word": " range.", + "start": 5270.74, + "end": 5271.12, + "probability": 1.0 + } + ] + }, + { + "id": 4645, + "text": "Right.", + "start": 5271.16, + "end": 5271.3, + "words": [ + { + "word": " Right.", + "start": 5271.16, + "end": 5271.3, + "probability": 0.77685546875 + } + ] + }, + { + "id": 4646, + "text": "So, it's a lot of money for these particular models.", + "start": 5272.04, + "end": 5272.88, + "words": [ + { + "word": " So,", + "start": 5272.04, + "end": 5272.08, + "probability": 0.0026912689208984375 + }, + { + "word": " it's", + "start": 5272.08, + "end": 5272.08, + "probability": 0.39794921875 + }, + { + "word": " a", + "start": 5272.08, + "end": 5272.08, + "probability": 0.2073974609375 + }, + { + "word": " lot", + "start": 5272.08, + "end": 5272.08, + "probability": 0.0670166015625 + }, + { + "word": " of", + "start": 5272.08, + "end": 5272.08, + "probability": 0.58349609375 + }, + { + "word": " money", + "start": 5272.08, + "end": 5272.08, + "probability": 0.0168914794921875 + }, + { + "word": " for", + "start": 5272.08, + "end": 5272.08, + "probability": 0.62451171875 + }, + { + "word": " these", + "start": 5272.08, + "end": 5272.16, + "probability": 0.974609375 + }, + { + "word": " particular", + "start": 5272.16, + "end": 5272.48, + "probability": 0.9921875 + }, + { + "word": " models.", + "start": 5272.48, + "end": 5272.88, + "probability": 0.9970703125 + } + ] + }, + { + "id": 4647, + "text": "Anyway, thanks for listening to today's episode of the Computer Guru Show.", + "start": 5273.660000000001, + "end": 5276.8, + "words": [ + { + "word": " Anyway,", + "start": 5273.660000000001, + "end": 5274.06, + "probability": 0.95556640625 + }, + { + "word": " thanks", + "start": 5274.1, + "end": 5274.28, + "probability": 0.99169921875 + }, + { + "word": " for", + "start": 5274.28, + "end": 5274.38, + "probability": 0.99755859375 + }, + { + "word": " listening", + "start": 5274.38, + "end": 5274.6, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 5274.6, + "end": 5274.72, + "probability": 0.97705078125 + }, + { + "word": " today's", + "start": 5274.72, + "end": 5275.06, + "probability": 0.986328125 + }, + { + "word": " episode", + "start": 5275.06, + "end": 5275.54, + "probability": 0.9951171875 + }, + { + "word": " of", + "start": 5275.54, + "end": 5275.88, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 5275.88, + "end": 5275.98, + "probability": 0.517578125 + }, + { + "word": " Computer", + "start": 5275.98, + "end": 5276.26, + "probability": 0.93896484375 + }, + { + "word": " Guru", + "start": 5276.26, + "end": 5276.52, + "probability": 0.98583984375 + }, + { + "word": " Show.", + "start": 5276.52, + "end": 5276.8, + "probability": 0.79345703125 + } + ] + }, + { + "id": 4648, + "text": "If you would need a new website, you need your management for your business, one of your technology needs,", + "start": 5276.88, + "end": 5282.14, + "words": [ + { + "word": " If", + "start": 5276.88, + "end": 5277.08, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 5277.08, + "end": 5277.16, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 5277.16, + "end": 5277.3, + "probability": 0.822265625 + }, + { + "word": " need", + "start": 5277.3, + "end": 5277.54, + "probability": 0.99072265625 + }, + { + "word": " a", + "start": 5277.54, + "end": 5277.68, + "probability": 0.99609375 + }, + { + "word": " new", + "start": 5277.68, + "end": 5277.78, + "probability": 0.99560546875 + }, + { + "word": " website,", + "start": 5277.78, + "end": 5278.1, + "probability": 0.99072265625 + }, + { + "word": " you", + "start": 5278.22, + "end": 5278.32, + "probability": 0.85888671875 + }, + { + "word": " need", + "start": 5278.32, + "end": 5278.42, + "probability": 0.982421875 + }, + { + "word": " your", + "start": 5278.42, + "end": 5278.64, + "probability": 0.68701171875 + }, + { + "word": " management", + "start": 5278.64, + "end": 5279.36, + "probability": 0.98828125 + }, + { + "word": " for", + "start": 5279.36, + "end": 5280.62, + "probability": 0.92626953125 + }, + { + "word": " your", + "start": 5280.62, + "end": 5280.76, + "probability": 0.99462890625 + }, + { + "word": " business,", + "start": 5280.76, + "end": 5281.16, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 5281.2, + "end": 5281.36, + "probability": 0.81396484375 + }, + { + "word": " of", + "start": 5281.36, + "end": 5281.4, + "probability": 0.96923828125 + }, + { + "word": " your", + "start": 5281.4, + "end": 5281.48, + "probability": 0.9970703125 + }, + { + "word": " technology", + "start": 5281.48, + "end": 5281.86, + "probability": 0.99267578125 + }, + { + "word": " needs,", + "start": 5281.86, + "end": 5282.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 4649, + "text": "give us a call down at the shop at 304-8300.", + "start": 5282.34, + "end": 5285.06, + "words": [ + { + "word": " give", + "start": 5282.34, + "end": 5282.6, + "probability": 0.9765625 + }, + { + "word": " us", + "start": 5282.6, + "end": 5282.76, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 5282.76, + "end": 5282.78, + "probability": 0.99169921875 + }, + { + "word": " call", + "start": 5282.78, + "end": 5282.94, + "probability": 0.9990234375 + }, + { + "word": " down", + "start": 5282.94, + "end": 5283.06, + "probability": 0.9462890625 + }, + { + "word": " at", + "start": 5283.06, + "end": 5283.2, + "probability": 0.96533203125 + }, + { + "word": " the", + "start": 5283.2, + "end": 5283.22, + "probability": 0.990234375 + }, + { + "word": " shop", + "start": 5283.22, + "end": 5283.36, + "probability": 0.9658203125 + }, + { + "word": " at", + "start": 5283.36, + "end": 5283.56, + "probability": 0.97802734375 + }, + { + "word": " 304", + "start": 5283.56, + "end": 5284.3, + "probability": 0.970703125 + }, + { + "word": "-8300.", + "start": 5284.3, + "end": 5285.06, + "probability": 0.93310546875 + } + ] + }, + { + "id": 4650, + "text": "You can also visit us at 510 East Fort Lowell, 64 North Harrison, or, of course, always visit our website azcomputerguru.com.", + "start": 5285.52, + "end": 5292.94, + "words": [ + { + "word": " You", + "start": 5285.52, + "end": 5285.88, + "probability": 0.99755859375 + }, + { + "word": " can", + "start": 5285.88, + "end": 5285.96, + "probability": 0.99267578125 + }, + { + "word": " also", + "start": 5285.96, + "end": 5286.1, + "probability": 0.99853515625 + }, + { + "word": " visit", + "start": 5286.1, + "end": 5286.36, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 5286.36, + "end": 5286.64, + "probability": 0.99462890625 + }, + { + "word": " at", + "start": 5286.64, + "end": 5286.78, + "probability": 0.96533203125 + }, + { + "word": " 510", + "start": 5286.78, + "end": 5287.22, + "probability": 0.98583984375 + }, + { + "word": " East", + "start": 5287.22, + "end": 5287.56, + "probability": 0.9873046875 + }, + { + "word": " Fort", + "start": 5287.56, + "end": 5287.84, + "probability": 0.89697265625 + }, + { + "word": " Lowell,", + "start": 5287.84, + "end": 5288.16, + "probability": 0.92919921875 + }, + { + "word": " 64", + "start": 5288.24, + "end": 5288.62, + "probability": 0.99658203125 + }, + { + "word": " North", + "start": 5288.62, + "end": 5288.96, + "probability": 0.9912109375 + }, + { + "word": " Harrison,", + "start": 5288.96, + "end": 5289.28, + "probability": 0.99365234375 + }, + { + "word": " or,", + "start": 5289.48, + "end": 5289.98, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 5290.08, + "end": 5290.26, + "probability": 0.99951171875 + }, + { + "word": " course,", + "start": 5290.26, + "end": 5290.54, + "probability": 1.0 + }, + { + "word": " always", + "start": 5290.58, + "end": 5290.86, + "probability": 0.9951171875 + }, + { + "word": " visit", + "start": 5290.86, + "end": 5291.18, + "probability": 0.98193359375 + }, + { + "word": " our", + "start": 5291.18, + "end": 5291.32, + "probability": 0.9970703125 + }, + { + "word": " website", + "start": 5291.32, + "end": 5291.56, + "probability": 0.994140625 + }, + { + "word": " azcomputerguru", + "start": 5291.56, + "end": 5292.5, + "probability": 0.80517578125 + }, + { + "word": ".com.", + "start": 5292.5, + "end": 5292.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4651, + "text": "Thanks to Perfection Auto Works for sponsoring.", + "start": 5293.12, + "end": 5294.56, + "words": [ + { + "word": " Thanks", + "start": 5293.12, + "end": 5293.5, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 5293.5, + "end": 5293.6, + "probability": 0.96240234375 + }, + { + "word": " Perfection", + "start": 5293.6, + "end": 5293.9, + "probability": 0.90966796875 + }, + { + "word": " Auto", + "start": 5293.9, + "end": 5294.0, + "probability": 0.8349609375 + }, + { + "word": " Works", + "start": 5294.0, + "end": 5294.16, + "probability": 0.80810546875 + }, + { + "word": " for", + "start": 5294.16, + "end": 5294.28, + "probability": 0.99609375 + }, + { + "word": " sponsoring.", + "start": 5294.28, + "end": 5294.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 4652, + "text": "We'll see you next week.", + "start": 5294.8, + "end": 5295.66, + "words": [ + { + "word": " We'll", + "start": 5294.8, + "end": 5295.06, + "probability": 0.9970703125 + }, + { + "word": " see", + "start": 5295.06, + "end": 5295.18, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 5295.18, + "end": 5295.28, + "probability": 0.99609375 + }, + { + "word": " next", + "start": 5295.28, + "end": 5295.44, + "probability": 0.9990234375 + }, + { + "word": " week.", + "start": 5295.44, + "end": 5295.66, + "probability": 0.99609375 + } + ] + }, + { + "id": 4653, + "text": "", + "start": 5302.04, + "end": 5302.04, + "words": [] + }, + { + "id": 4654, + "text": "", + "start": 5302.04, + "end": 5302.04, + "words": [] + }, + { + "id": 4655, + "text": "Have a great day.", + "start": 5302.04, + "end": 5302.06, + "words": [ + { + "word": " Have", + "start": 5302.04, + "end": 5302.06, + "probability": 0.837890625 + }, + { + "word": " a", + "start": 5302.06, + "end": 5302.06, + "probability": 1.0 + }, + { + "word": " great", + "start": 5302.06, + "end": 5302.06, + "probability": 0.9951171875 + }, + { + "word": " day.", + "start": 5302.06, + "end": 5302.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 4656, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4657, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4658, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4659, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4660, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4661, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4662, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4663, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4664, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4665, + "text": "", + "start": 5302.06, + "end": 5302.06, + "words": [] + }, + { + "id": 4666, + "text": "Have a great day.", + "start": 5302.12, + "end": 5302.16, + "words": [ + { + "word": " Have", + "start": 5302.12, + "end": 5302.16, + "probability": 0.97314453125 + }, + { + "word": " a", + "start": 5302.16, + "end": 5302.16, + "probability": 1.0 + }, + { + "word": " great", + "start": 5302.16, + "end": 5302.16, + "probability": 0.99462890625 + }, + { + "word": " day.", + "start": 5302.16, + "end": 5302.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4667, + "text": "", + "start": 5302.16, + "end": 5302.16, + "words": [] + }, + { + "id": 4668, + "text": "", + "start": 5302.16, + "end": 5302.16, + "words": [] + }, + { + "id": 4669, + "text": "", + "start": 5302.16, + "end": 5302.16, + "words": [] + }, + { + "id": 4670, + "text": "", + "start": 5302.16, + "end": 5302.16, + "words": [] + }, + { + "id": 4671, + "text": "Have a great day.", + "start": 5302.16, + "end": 5302.2, + "words": [ + { + "word": " Have", + "start": 5302.16, + "end": 5302.2, + "probability": 0.97265625 + }, + { + "word": " a", + "start": 5302.2, + "end": 5302.2, + "probability": 1.0 + }, + { + "word": " great", + "start": 5302.2, + "end": 5302.2, + "probability": 0.99560546875 + }, + { + "word": " day.", + "start": 5302.2, + "end": 5302.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4672, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4673, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4674, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4675, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4676, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4677, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4678, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4679, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4680, + "text": "", + "start": 5302.2, + "end": 5302.2, + "words": [] + }, + { + "id": 4681, + "text": "Have a great day.", + "start": 5302.2, + "end": 5302.3, + "words": [ + { + "word": " Have", + "start": 5302.2, + "end": 5302.24, + "probability": 0.97021484375 + }, + { + "word": " a", + "start": 5302.24, + "end": 5302.26, + "probability": 0.99951171875 + }, + { + "word": " great", + "start": 5302.26, + "end": 5302.28, + "probability": 0.99609375 + }, + { + "word": " day.", + "start": 5302.28, + "end": 5302.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 4682, + "text": "Thank you.", + "start": 5302.3, + "end": 5302.32, + "words": [ + { + "word": " Thank", + "start": 5302.3, + "end": 5302.32, + "probability": 0.1890869140625 + }, + { + "word": " you.", + "start": 5302.32, + "end": 5302.32, + "probability": 0.99755859375 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.srt new file mode 100644 index 0000000..08952ba --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.srt @@ -0,0 +1,18732 @@ +1 +00:00:01,300 --> 00:00:06,200 +From my heart and from my hand, why don't people understand my intention? + +2 +00:00:06,820 --> 00:00:08,060 +Computer running slow? + +3 +00:00:08,220 --> 00:00:08,560 +Avoiding. + +4 +00:00:08,760 --> 00:00:09,500 +Caught a virus? + +5 +00:00:09,800 --> 00:00:10,240 +No! + +6 +00:00:10,900 --> 00:00:11,240 +When? + +7 +00:00:12,020 --> 00:00:15,000 +Does your computer seem to have a life of its own? + +8 +00:00:15,100 --> 00:00:15,960 +Now functioning. + +9 +00:00:16,280 --> 00:00:17,420 +Need input. + +10 +00:00:17,780 --> 00:00:19,420 +The computer guru is here. + +11 +00:00:19,600 --> 00:00:20,560 +Thank God you're here! + +12 +00:00:20,940 --> 00:00:21,760 +Call in now. + +13 +00:00:22,040 --> 00:00:24,980 +Now it's Mike Swanson, your computer guru. + +14 +00:00:25,760 --> 00:00:27,460 +Oh, let's see where... + +15 +00:00:27,460 --> 00:00:28,040 +Look at this. + +16 +00:00:28,100 --> 00:00:29,220 +The levels are all right. + +17 +00:00:29,320 --> 00:00:29,800 +Hello. + +18 +00:00:30,000 --> 00:00:30,340 +Hi. + +19 +00:00:30,940 --> 00:00:32,380 +Hey, how you doing today, Kent? + +20 +00:00:33,020 --> 00:00:33,900 +Every once in a while. + +21 +00:00:34,060 --> 00:00:35,920 +I am pleased with... + +22 +00:00:36,720 --> 00:00:37,220 +I don't know. + +23 +00:00:37,240 --> 00:00:39,400 +I kind of like the over-modulated thing because it's like... + +24 +00:00:39,400 --> 00:00:40,300 +Like I'm yelling at everyone? + +25 +00:00:40,300 --> 00:00:42,000 +It's like an extra kick to the show right at the beginning. + +26 +00:00:42,220 --> 00:00:42,960 +Oh, my goodness. + +27 +00:00:43,140 --> 00:00:43,340 +All right. + +28 +00:00:43,380 --> 00:00:44,380 +Welcome to the Computer Guru Show. + +29 +00:00:44,420 --> 00:00:47,800 +My name is Mike, here to deal with your technology needs and treat you like a person in the process. + +30 +00:00:50,200 --> 00:00:51,560 +7902040 if you'd like to be part of the show. + +31 +00:00:52,300 --> 00:00:57,260 +We would love to have you on and talk about whatever's ailing you technology-wise. + +32 +00:00:58,500 --> 00:00:59,980 +And I was inadvertently... + +33 +00:01:00,000 --> 00:01:00,760 +I was inadvertently rude to Bob. + +34 +00:01:00,960 --> 00:01:01,960 +I didn't mean to be. + +35 +00:01:02,020 --> 00:01:02,460 +Sorry, Bob. + +36 +00:01:03,060 --> 00:01:03,700 +I apologize. + +37 +00:01:05,140 --> 00:01:08,740 +See, when I'm rude, I try to do it on purpose because it's like I might as well get the credit for it. + +38 +00:01:08,840 --> 00:01:09,220 +Oh, yeah. + +39 +00:01:09,380 --> 00:01:09,560 +You know? + +40 +00:01:09,740 --> 00:01:10,860 +That's not my style. + +41 +00:01:11,500 --> 00:01:11,940 +I don't know. + +42 +00:01:11,940 --> 00:01:13,520 +Sometimes a little snark is a good thing. + +43 +00:01:13,660 --> 00:01:14,620 +You know, it's just... + +44 +00:01:14,620 --> 00:01:15,960 +My mind is in other places. + +45 +00:01:16,000 --> 00:01:16,380 +That's all. + +46 +00:01:16,500 --> 00:01:16,720 +Yeah. + +47 +00:01:16,780 --> 00:01:17,660 +There's a lot going on. + +48 +00:01:18,000 --> 00:01:19,080 +There's a lot going on. + +49 +00:01:19,220 --> 00:01:21,160 +So I had an interesting experience last night. + +50 +00:01:21,380 --> 00:01:21,820 +Oh, yeah? + +51 +00:01:21,960 --> 00:01:22,620 +Technology-wise. + +52 +00:01:22,680 --> 00:01:22,920 +Yeah. + +53 +00:01:23,000 --> 00:01:23,600 +Tell me about it. + +54 +00:01:23,680 --> 00:01:25,540 +So I'm at the ATM after work because it's Friday. + +55 +00:01:25,720 --> 00:01:26,860 +Time to go deposit my check. + +56 +00:01:26,980 --> 00:01:27,240 +Right. + +57 +00:01:27,860 --> 00:01:29,760 +And I get my check deposited. + +58 +00:01:30,000 --> 00:01:31,940 +And I went to go withdraw some cash. + +59 +00:01:32,300 --> 00:01:33,920 +And the machine just froze. + +60 +00:01:34,100 --> 00:01:34,340 +Okay? + +61 +00:01:34,460 --> 00:01:35,140 +So I'm like, all right. + +62 +00:01:35,460 --> 00:01:36,640 +It's going to time out eventually. + +63 +00:01:36,980 --> 00:01:37,280 +Right. + +64 +00:01:37,540 --> 00:01:39,080 +And it did after like 10 minutes. + +65 +00:01:39,300 --> 00:01:40,280 +And it rebooted. + +66 +00:01:40,340 --> 00:01:43,560 +And apparently that ATM was running Windows 7, which is an interesting fact. + +67 +00:01:44,500 --> 00:01:48,640 +But the more interesting thing was that when it was all the way back booted, which took... + +68 +00:01:48,640 --> 00:01:50,160 +A process that took 20 minutes, by the way. + +69 +00:01:50,580 --> 00:01:50,920 +Wow. + +70 +00:01:51,120 --> 00:01:54,440 +When it was all the way back, it just decided to keep my card in it. + +71 +00:01:55,040 --> 00:01:56,620 +So I don't have that anymore, I guess. + +72 +00:02:00,000 --> 00:02:00,440 +I don't know. + +73 +00:02:01,420 --> 00:02:06,000 +I use the type of ATMs that don't actually take your card. + +74 +00:02:06,300 --> 00:02:06,580 +Yeah. + +75 +00:02:06,600 --> 00:02:08,060 +Mine takes it into the machine. + +76 +00:02:08,500 --> 00:02:08,820 +Yeah. + +77 +00:02:08,880 --> 00:02:09,760 +Mine doesn't do that. + +78 +00:02:09,920 --> 00:02:11,180 +So I called my bank this morning. + +79 +00:02:11,200 --> 00:02:13,060 +And they informed me that I can just go down there and get it. + +80 +00:02:13,100 --> 00:02:13,840 +So I was like, okay, great. + +81 +00:02:13,980 --> 00:02:14,940 +What time do you close today? + +82 +00:02:15,080 --> 00:02:17,800 +And they said, 1 o'clock, which is coincidentally when the show ends. + +83 +00:02:18,180 --> 00:02:18,500 +So... + +84 +00:02:18,500 --> 00:02:19,920 +Do you need to take off early? + +85 +00:02:20,080 --> 00:02:22,320 +I guess I just won't have my debit card this weekend, which is fine. + +86 +00:02:22,540 --> 00:02:22,920 +All right. + +87 +00:02:23,780 --> 00:02:24,300 +All right. + +88 +00:02:24,380 --> 00:02:25,040 +All right. + +89 +00:02:25,040 --> 00:02:27,980 +Did you see any available USB ports on it? + +90 +00:02:28,780 --> 00:02:29,820 +You know, I was almost... + +91 +00:02:29,820 --> 00:02:30,400 +I was considering that. + +92 +00:02:30,540 --> 00:02:33,620 +And then I was like, I'm not going to be the guy who gets caught fiddling with the ATM. + +93 +00:02:33,780 --> 00:02:34,620 +I'm just not going to do it. + +94 +00:02:34,680 --> 00:02:36,280 +So I'll just deal with it. + +95 +00:02:37,120 --> 00:02:37,660 +All right. + +96 +00:02:37,760 --> 00:02:40,340 +I didn't get my cash either, though, which kind of sucked because I needed that. + +97 +00:02:41,320 --> 00:02:41,600 +Yeah. + +98 +00:02:41,680 --> 00:02:41,960 +Yeah. + +99 +00:02:42,020 --> 00:02:43,140 +I could see that would be a problem. + +100 +00:02:43,660 --> 00:02:43,940 +Yeah. + +101 +00:02:44,020 --> 00:02:47,940 +And I had to tell, like, I think it was like six people who came up behind me that I was + +102 +00:02:47,940 --> 00:02:48,700 +just going to be here. + +103 +00:02:48,720 --> 00:02:49,920 +And they're just going to have to deal with that. + +104 +00:02:50,080 --> 00:02:50,360 +Right. + +105 +00:02:50,780 --> 00:02:52,140 +You can move me if you like. + +106 +00:02:52,240 --> 00:02:54,420 +I was like, you know, I can move, but it's not going to work anyway. + +107 +00:02:54,480 --> 00:02:54,780 +It's frozen. + +108 +00:02:54,940 --> 00:02:55,220 +So... + +109 +00:02:55,220 --> 00:02:55,920 +All right. + +110 +00:02:56,820 --> 00:02:57,840 +There's no recourse for you. + +111 +00:02:57,880 --> 00:02:58,180 +I'm sorry. + +112 +00:02:58,180 --> 00:02:58,320 +Sorry. + +113 +00:03:00,000 --> 00:03:02,220 +Well, Windows 7, huh? + +114 +00:03:02,580 --> 00:03:02,980 +Yeah. + +115 +00:03:03,020 --> 00:03:04,360 +Which, you know, I was a little bit... + +116 +00:03:04,360 --> 00:03:07,660 +I mean, it's not good, but it's better than if I saw, like, an XP screen. + +117 +00:03:07,840 --> 00:03:11,500 +I am mildly miffed that they're using Windows 7 still. + +118 +00:03:11,640 --> 00:03:12,760 +But we all knew that. + +119 +00:03:13,600 --> 00:03:17,720 +Up until very recently, there were still a bunch of ATMs running Windows XP. + +120 +00:03:17,820 --> 00:03:18,000 +Yeah. + +121 +00:03:18,140 --> 00:03:19,620 +Or 98 even, maybe. + +122 +00:03:19,860 --> 00:03:20,260 +Yeah. + +123 +00:03:20,320 --> 00:03:21,620 +And I know that the... + +124 +00:03:22,100 --> 00:03:27,920 +Because it crashes all the time, the sign computer for the Roadhouse Theater... + +125 +00:03:28,180 --> 00:03:30,040 +Is absolutely Windows XP. + +126 +00:03:30,560 --> 00:03:35,300 +I noticed also when it was going through its boot sequence that this ATM had an American Megatrends board. + +127 +00:03:35,840 --> 00:03:36,580 +I was like, wow. + +128 +00:03:36,740 --> 00:03:37,140 +Yeah. + +129 +00:03:37,260 --> 00:03:38,440 +And they got it running Windows 7. + +130 +00:03:39,000 --> 00:03:39,640 +That's amazing. + +131 +00:03:39,660 --> 00:03:40,760 +I don't know if I feel good about that. + +132 +00:03:41,020 --> 00:03:42,520 +But I know why it's not running Windows 10. + +133 +00:03:43,920 --> 00:03:44,320 +Why? + +134 +00:03:44,780 --> 00:03:46,420 +Because it's an American Megatrends board. + +135 +00:03:47,540 --> 00:03:49,460 +Is it a board or just a BIOS? + +136 +00:03:49,780 --> 00:03:50,620 +I don't know. + +137 +00:03:50,740 --> 00:03:52,100 +It's probably just a BIOS. + +138 +00:03:52,260 --> 00:03:52,880 +I imagine. + +139 +00:03:53,100 --> 00:03:53,560 +It was old. + +140 +00:03:53,620 --> 00:03:54,120 +That's all I know. + +141 +00:03:54,320 --> 00:03:54,680 +Yeah. + +142 +00:03:54,980 --> 00:03:56,680 +I'm guessing it's just a BIOS. + +143 +00:03:56,680 --> 00:03:57,780 +Because the... + +144 +00:03:58,180 --> 00:03:59,480 +And I bet it's an Atom. + +145 +00:03:59,920 --> 00:04:00,360 +Oh, yeah? + +146 +00:04:00,660 --> 00:04:00,900 +Yeah. + +147 +00:04:01,120 --> 00:04:03,240 +Because, like, the firewall machines that we built. + +148 +00:04:03,320 --> 00:04:03,660 +Oh, yeah. + +149 +00:04:03,720 --> 00:04:04,500 +I could see that, I guess. + +150 +00:04:04,600 --> 00:04:06,380 +They're Atoms with AMI BIOS. + +151 +00:04:06,500 --> 00:04:06,820 +Okay. + +152 +00:04:06,980 --> 00:04:07,840 +That makes more sense. + +153 +00:04:07,880 --> 00:04:08,860 +That makes me feel a little bit better. + +154 +00:04:09,080 --> 00:04:09,340 +Yeah. + +155 +00:04:10,440 --> 00:04:14,840 +Otherwise, you're going to have to go in and, like, you know, ATM shame, operating system shame your bank. + +156 +00:04:15,100 --> 00:04:15,460 +I know. + +157 +00:04:15,480 --> 00:04:16,420 +I have a hard time... + +158 +00:04:16,420 --> 00:04:19,760 +I'm going to have a hard time not mentioning that to them when I go eventually to get my debit card. + +159 +00:04:19,880 --> 00:04:24,720 +Like, by the way, you know, we do IT security and your machine is running Windows 7 out there. + +160 +00:04:24,820 --> 00:04:25,280 +What's with that? + +161 +00:04:25,620 --> 00:04:27,820 +Generally, there's special sort of... + +162 +00:04:29,180 --> 00:04:34,060 +blends of Windows 7 and some other custom kernel that's going on. + +163 +00:04:34,100 --> 00:04:35,680 +I hope so, but at the same time, I just... + +164 +00:04:35,680 --> 00:04:38,520 +I don't have very much faith in any of this anymore. + +165 +00:04:39,100 --> 00:04:39,580 +So... + +166 +00:04:39,580 --> 00:04:40,280 +Yeah. + +167 +00:04:40,360 --> 00:04:40,800 +Yeah. + +168 +00:04:40,880 --> 00:04:42,040 +I don't blame you. + +169 +00:04:42,320 --> 00:04:45,580 +The ATMs are interesting animals. + +170 +00:04:46,180 --> 00:04:48,480 +And so are gas pumps these days. + +171 +00:04:48,760 --> 00:04:49,240 +Yeah. + +172 +00:04:49,440 --> 00:04:52,860 +And they're similar in the fact that they're almost computers. + +173 +00:04:53,580 --> 00:04:54,060 +And... + +174 +00:04:54,060 --> 00:04:55,940 +Well, I mean, they are, but... + +175 +00:04:55,940 --> 00:04:57,900 +Yeah, they have to have some computational power to... + +176 +00:04:58,180 --> 00:04:59,140 +scream an advertisement at you. + +177 +00:05:00,780 --> 00:05:02,560 +Are you talking about those little boxes? + +178 +00:05:02,800 --> 00:05:02,920 +Yeah. + +179 +00:05:03,040 --> 00:05:05,620 +Like, they have TVs on them now that are just playing commercials. + +180 +00:05:05,980 --> 00:05:06,360 +Yeah. + +181 +00:05:06,660 --> 00:05:09,840 +At least the one by my house. + +182 +00:05:10,100 --> 00:05:11,680 +It doesn't do commercials. + +183 +00:05:11,760 --> 00:05:12,400 +It does weather. + +184 +00:05:12,800 --> 00:05:13,800 +That's better, at least. + +185 +00:05:13,940 --> 00:05:16,100 +Every time I have a commercial playing while I'm getting gas, + +186 +00:05:16,280 --> 00:05:18,420 +I can't help but feel like I'm in Minority Report. + +187 +00:05:18,760 --> 00:05:20,080 +You know, when they're walking through the mall. + +188 +00:05:21,100 --> 00:05:21,500 +Yeah. + +189 +00:05:22,460 --> 00:05:23,080 +I just... + +190 +00:05:23,080 --> 00:05:23,400 +I don't... + +191 +00:05:23,400 --> 00:05:25,180 +I've never understood that kind of advertising. + +192 +00:05:25,580 --> 00:05:27,880 +Never in my life have I bought... + +193 +00:05:28,180 --> 00:05:30,460 +something as a result of an ad that was that invasive. + +194 +00:05:31,100 --> 00:05:32,060 +In fact, I've said, + +195 +00:05:32,140 --> 00:05:33,280 +now I'm not going to buy that. + +196 +00:05:33,660 --> 00:05:37,440 +Right, because I'm offended by the volume of this particular commercial. + +197 +00:05:37,800 --> 00:05:39,240 +Yeah, but never in my life have I, like, + +198 +00:05:39,260 --> 00:05:41,060 +been about to skip a YouTube ad, + +199 +00:05:41,120 --> 00:05:42,780 +and then I was like, wait, this product is interesting. + +200 +00:05:43,220 --> 00:05:44,400 +I don't think that's ever happened. + +201 +00:05:46,600 --> 00:05:48,340 +I'm trying to think if I've... + +202 +00:05:48,340 --> 00:05:50,140 +Is it a subconscious thing that they're going for? + +203 +00:05:50,260 --> 00:05:51,440 +Like, I'm going to see a Coke commercial, + +204 +00:05:51,560 --> 00:05:51,900 +and I'll be like, + +205 +00:05:52,060 --> 00:05:53,520 +yeah, it's been a while since I had a Coke. + +206 +00:05:54,720 --> 00:05:55,840 +Yeah, I don't know. + +207 +00:05:56,040 --> 00:05:58,160 +In fact, I almost feel like... + +208 +00:05:58,180 --> 00:05:59,500 +I'm offended at the movie theaters. + +209 +00:05:59,760 --> 00:06:00,220 +Yeah. + +210 +00:06:00,360 --> 00:06:02,000 +Where it's just like, okay, + +211 +00:06:02,500 --> 00:06:03,960 +if you can have a... + +212 +00:06:03,960 --> 00:06:05,760 +First of all, I don't understand how + +213 +00:06:06,560 --> 00:06:08,400 +Coke advertising is supposed to work. + +214 +00:06:08,640 --> 00:06:09,460 +Right, because + +215 +00:06:10,180 --> 00:06:11,420 +every Coke commercial + +216 +00:06:12,460 --> 00:06:13,560 +almost, I mean, + +217 +00:06:13,580 --> 00:06:15,620 +if you were to replace the Coke, + +218 +00:06:15,700 --> 00:06:18,520 +would be a hallucinogenic drug. + +219 +00:06:18,840 --> 00:06:19,280 +It's true. + +220 +00:06:19,600 --> 00:06:20,800 +Right, it would just be, + +221 +00:06:21,500 --> 00:06:23,140 +you know, you're imagining suddenly + +222 +00:06:23,140 --> 00:06:25,280 +that there are people dancing in the car wash. + +223 +00:06:26,320 --> 00:06:28,040 +Also, I've never had an event, + +224 +00:06:28,040 --> 00:06:28,280 +and I've never had an event ruined + +225 +00:06:28,280 --> 00:06:29,420 +because I didn't have + +226 +00:06:29,420 --> 00:06:31,080 +a particular brand of soda there. + +227 +00:06:31,700 --> 00:06:32,960 +Like, I've never been, like, at the beach, + +228 +00:06:33,000 --> 00:06:33,560 +and I was like, man, + +229 +00:06:33,660 --> 00:06:34,920 +this would have been way better with a Pepsi. + +230 +00:06:37,360 --> 00:06:38,340 +Also, I can't... + +231 +00:06:38,340 --> 00:06:40,120 +There's no way for me to be any more aware + +232 +00:06:40,120 --> 00:06:41,000 +that Coke exists. + +233 +00:06:42,520 --> 00:06:44,200 +Like, I don't need to see an ad ever again. + +234 +00:06:45,060 --> 00:06:46,180 +Yeah, Coke's one of those things + +235 +00:06:46,180 --> 00:06:46,920 +where it's sort of... + +236 +00:06:47,880 --> 00:06:48,520 +Everyone knows. + +237 +00:06:48,800 --> 00:06:49,660 +I feel like they're just advertising + +238 +00:06:49,660 --> 00:06:50,860 +because that's what they've always done + +239 +00:06:50,860 --> 00:06:51,680 +at this point. + +240 +00:06:52,600 --> 00:06:54,120 +Nobody's going to not know about Coke. + +241 +00:06:54,260 --> 00:06:55,240 +I think it's a tax credit. + +242 +00:06:55,560 --> 00:06:57,040 +It must be something like that. + +243 +00:06:57,200 --> 00:06:57,820 +Yeah, because... + +244 +00:06:57,820 --> 00:06:58,640 +Because they could not advertise + +245 +00:06:58,640 --> 00:06:59,520 +for ten straight years, + +246 +00:06:59,580 --> 00:07:00,800 +and I would buy the same amount of Coke + +247 +00:07:00,800 --> 00:07:01,700 +that I do anyway, + +248 +00:07:02,380 --> 00:07:03,640 +which is every now and then. + +249 +00:07:03,960 --> 00:07:04,640 +On occasion. + +250 +00:07:04,780 --> 00:07:06,240 +If the gas station that I'm at + +251 +00:07:06,240 --> 00:07:07,620 +doesn't have, like, an iced tea. + +252 +00:07:09,220 --> 00:07:11,700 +Which is probably sold and distributed + +253 +00:07:11,700 --> 00:07:12,460 +by Coke anyway. + +254 +00:07:12,460 --> 00:07:13,360 +Almost certainly, yeah. + +255 +00:07:13,680 --> 00:07:15,800 +Yeah, Coke is one of those companies + +256 +00:07:15,800 --> 00:07:17,980 +that, at least in the beverage world, + +257 +00:07:18,740 --> 00:07:19,540 +that is... + +258 +00:07:19,540 --> 00:07:21,140 +They're much like Disney in that regard. + +259 +00:07:21,880 --> 00:07:22,900 +They just own everything? + +260 +00:07:23,180 --> 00:07:24,980 +Yeah, they own all the things. + +261 +00:07:26,280 --> 00:07:26,680 +Yeah. + +262 +00:07:28,240 --> 00:07:30,220 +Anyway, the irritation level + +263 +00:07:30,220 --> 00:07:33,300 +with the way that technology + +264 +00:07:33,300 --> 00:07:34,860 +is being used to advertise + +265 +00:07:35,940 --> 00:07:36,820 +is high. + +266 +00:07:37,180 --> 00:07:38,700 +I mean, it's like an arms race. + +267 +00:07:38,820 --> 00:07:41,540 +There's so much invested in blocking ads + +268 +00:07:41,540 --> 00:07:42,960 +and then blocking ad blockers. + +269 +00:07:43,620 --> 00:07:45,360 +Right, well, it's hard to do at the gas station. + +270 +00:07:45,780 --> 00:07:46,720 +Yeah, I don't know what... + +271 +00:07:46,720 --> 00:07:48,300 +I was thinking about making some, like, + +272 +00:07:48,300 --> 00:07:49,680 +AR glasses that detect ads. + +273 +00:07:49,880 --> 00:07:51,660 +Do you think that maybe they'll move towards, + +274 +00:07:51,660 --> 00:07:54,260 +like, the ATMs before you get your cash out? + +275 +00:07:54,320 --> 00:07:55,460 +You have to watch a commercial. + +276 +00:07:55,780 --> 00:07:56,520 +That would not... + +277 +00:07:56,520 --> 00:07:57,200 +Don't even say that, + +278 +00:07:57,240 --> 00:07:57,680 +because that's... + +279 +00:07:57,680 --> 00:07:58,580 +That's probably going to happen. + +280 +00:08:00,200 --> 00:08:00,900 +Yeah, you can't... + +281 +00:08:00,900 --> 00:08:01,500 +You can't... + +282 +00:08:01,500 --> 00:08:02,000 +It's going to be like, + +283 +00:08:02,060 --> 00:08:03,860 +pay a $1 fee or watch this ad. + +284 +00:08:05,060 --> 00:08:05,700 +Oh, yeah. + +285 +00:08:06,160 --> 00:08:06,480 +Yeah. + +286 +00:08:06,580 --> 00:08:07,040 +You know what's sad? + +287 +00:08:07,160 --> 00:08:08,480 +I would pay the fee, like, every time. + +288 +00:08:08,680 --> 00:08:09,900 +Right, and it's like a... + +289 +00:08:09,900 --> 00:08:12,120 +It's a two-minute commercial. + +290 +00:08:12,940 --> 00:08:13,260 +Right? + +291 +00:08:13,420 --> 00:08:14,740 +Oh, man, that would be the worst. + +292 +00:08:15,020 --> 00:08:16,180 +And people would do it. + +293 +00:08:16,220 --> 00:08:17,740 +And there's just a line behind you. + +294 +00:08:17,920 --> 00:08:18,240 +Right. + +295 +00:08:18,320 --> 00:08:19,080 +And people are like, + +296 +00:08:19,140 --> 00:08:19,900 +just pay the dollar, + +297 +00:08:19,980 --> 00:08:21,000 +and you're like, I can't. + +298 +00:08:22,500 --> 00:08:23,620 +All right, let's talk to Charles. + +299 +00:08:23,740 --> 00:08:24,460 +Hey, Charles, how are you? + +300 +00:08:26,020 --> 00:08:26,880 +Oh, there we go. + +301 +00:08:27,160 --> 00:08:27,480 +Yeah. + +302 +00:08:27,680 --> 00:08:30,480 +I've got to forcefully disagree with you + +303 +00:08:30,480 --> 00:08:32,100 +about the reality in those Coke commercials. + +304 +00:08:32,360 --> 00:08:33,280 +I'm going to tell you, + +305 +00:08:33,320 --> 00:08:35,020 +when those polar bears are at my house, + +306 +00:08:35,160 --> 00:08:37,340 +they absolutely want a Coke. + +307 +00:08:37,820 --> 00:08:38,520 +You know what? + +308 +00:08:38,640 --> 00:08:39,500 +What's wrong with you? + +309 +00:08:40,400 --> 00:08:42,480 +Maybe I just haven't invited the... + +310 +00:08:42,480 --> 00:08:44,420 +Are you supposed to take the hallucinogenic drugs + +311 +00:08:44,420 --> 00:08:46,200 +before you watch the Coke commercial? + +312 +00:08:46,400 --> 00:08:47,340 +Is that how it works? + +313 +00:08:47,520 --> 00:08:50,120 +No, the commercial is the hallucinogenic drug. + +314 +00:08:50,140 --> 00:08:50,540 +You're right. + +315 +00:08:51,420 --> 00:08:52,180 +My goodness. + +316 +00:08:52,300 --> 00:08:54,220 +Why are you guys watching the commercial anyway? + +317 +00:08:54,240 --> 00:08:54,960 +Most of those... + +318 +00:08:54,960 --> 00:08:55,640 +Or listening to it. + +319 +00:08:55,800 --> 00:08:57,340 +Most of the stuff at the gas pump + +320 +00:08:57,340 --> 00:09:00,200 +and the other places have a mute button. + +321 +00:09:00,580 --> 00:09:01,360 +Do they really? + +322 +00:09:01,880 --> 00:09:03,220 +Yeah, most of them do. + +323 +00:09:03,280 --> 00:09:04,320 +You just got to look at the screen. + +324 +00:09:04,520 --> 00:09:07,520 +And of all people not to realize that, guys, + +325 +00:09:07,600 --> 00:09:09,500 +most of them have a mute button that'll... + +326 +00:09:09,500 --> 00:09:10,460 +Even if you don't... + +327 +00:09:10,460 --> 00:09:12,480 +Even if you can't stop watching the commercial, + +328 +00:09:12,660 --> 00:09:14,120 +you can at least not listen. + +329 +00:09:14,220 --> 00:09:15,640 +I feel like that would be... + +330 +00:09:15,640 --> 00:09:16,860 +I feel like I don't want to do that + +331 +00:09:16,860 --> 00:09:18,240 +because then they're going to know + +332 +00:09:18,240 --> 00:09:20,740 +that I interacted with their advertisement in some way. + +333 +00:09:21,160 --> 00:09:24,280 +And the mute buttons on the ones at... + +334 +00:09:25,000 --> 00:09:25,800 +Oh, what's the name? + +335 +00:09:25,960 --> 00:09:27,060 +I don't even know what's the word. + +336 +00:09:27,060 --> 00:09:28,860 +But they get the little box that says, + +337 +00:09:30,220 --> 00:09:31,180 +hey, points member, + +338 +00:09:31,480 --> 00:09:33,080 +and then it starts screen matching. + +339 +00:09:33,120 --> 00:09:35,860 +It's a little round control panel + +340 +00:09:35,860 --> 00:09:37,200 +and they've got a mute button on it. + +341 +00:09:37,240 --> 00:09:37,940 +Yeah, I just like... + +342 +00:09:37,940 --> 00:09:39,400 +Most of the mute buttons are broken + +343 +00:09:39,920 --> 00:09:41,360 +from people just jamming in. + +344 +00:09:41,540 --> 00:09:42,760 +Some of them are, + +345 +00:09:42,840 --> 00:09:44,340 +but I noticed most of the mute buttons, + +346 +00:09:44,480 --> 00:09:45,340 +most of the buttons, + +347 +00:09:45,880 --> 00:09:47,900 +they're not touched except the mute button. + +348 +00:09:47,940 --> 00:09:49,660 +It's got the writing on it. + +349 +00:09:49,680 --> 00:09:51,480 +It's kind of worn down from people pushing it. + +350 +00:09:51,520 --> 00:09:51,680 +Right. + +351 +00:09:52,000 --> 00:09:53,220 +There's been a few that have been out + +352 +00:09:53,220 --> 00:09:54,360 +where the mute button is broken + +353 +00:09:54,360 --> 00:09:55,740 +because somebody apparently... + +354 +00:09:57,140 --> 00:09:58,420 +Was unhappy with it. + +355 +00:09:58,420 --> 00:10:00,020 +They were just forcibly muting the ad. + +356 +00:10:00,340 --> 00:10:01,300 +They're muting harder. + +357 +00:10:02,220 --> 00:10:05,060 +Well, I carry certain things like that stick + +358 +00:10:05,060 --> 00:10:07,180 +and I find that on the ones that are broken, + +359 +00:10:07,260 --> 00:10:08,920 +if I jam the stick on it pretty hard, + +360 +00:10:08,960 --> 00:10:09,520 +it'll still mute. + +361 +00:10:10,000 --> 00:10:10,360 +Okay. + +362 +00:10:10,400 --> 00:10:12,200 +I was getting gas at QT recently + +363 +00:10:12,200 --> 00:10:15,640 +and apparently somebody pulled up + +364 +00:10:15,640 --> 00:10:16,420 +to one of the gas pumps + +365 +00:10:16,420 --> 00:10:17,620 +and then called the QT + +366 +00:10:17,620 --> 00:10:18,620 +and asked them to come out + +367 +00:10:18,620 --> 00:10:19,620 +and pump their gas for them + +368 +00:10:19,620 --> 00:10:20,160 +and they did it. + +369 +00:10:20,700 --> 00:10:21,060 +Wow. + +370 +00:10:22,180 --> 00:10:23,100 +They have to. + +371 +00:10:23,140 --> 00:10:24,820 +That's part of handicap legislation. + +372 +00:10:25,180 --> 00:10:26,140 +Oh, do you have to be... + +373 +00:10:26,140 --> 00:10:26,800 +Do you have to have, like, + +374 +00:10:26,800 --> 00:10:27,560 +a handicap sticker for that? + +375 +00:10:27,560 --> 00:10:28,160 +Yeah, you have to offer that service + +376 +00:10:28,160 --> 00:10:29,820 +because if you don't, + +377 +00:10:29,820 --> 00:10:31,060 +it's supposed to be intimidating + +378 +00:10:31,060 --> 00:10:31,820 +against some people. + +379 +00:10:31,840 --> 00:10:33,000 +So the moral of the story is + +380 +00:10:33,000 --> 00:10:36,100 +if you hit the little round squawk box + +381 +00:10:36,100 --> 00:10:37,080 +with a baseball bat, + +382 +00:10:37,320 --> 00:10:38,300 +it mutes it. + +383 +00:10:38,920 --> 00:10:39,320 +So... + +384 +00:10:39,940 --> 00:10:41,420 +If you just hit the gas pump with your car, + +385 +00:10:41,500 --> 00:10:42,340 +it'll probably mute it too. + +386 +00:10:43,760 --> 00:10:46,760 +Yeah, especially if you have some igniting device. + +387 +00:10:47,020 --> 00:10:47,240 +Yeah. + +388 +00:10:47,540 --> 00:10:48,080 +All right. + +389 +00:10:48,160 --> 00:10:49,240 +That's an ultra hot take. + +390 +00:10:49,600 --> 00:10:50,160 +All right. + +391 +00:10:50,460 --> 00:10:51,760 +Thanks for the call, Charles. + +392 +00:10:52,620 --> 00:10:53,020 +Thanks. + +393 +00:10:55,160 --> 00:10:56,500 +So if you have run over + +394 +00:10:56,500 --> 00:10:58,520 +a gas station pump with your car + +395 +00:10:58,520 --> 00:10:59,340 +and you need it repaired, + +396 +00:10:59,460 --> 00:11:00,740 +take it to Perfection Auto Works. + +397 +00:11:01,020 --> 00:11:02,280 +Oh, that was good. + +398 +00:11:02,580 --> 00:11:04,700 +Because I think that they can probably + +399 +00:11:04,700 --> 00:11:06,520 +take care of that for you. + +400 +00:11:07,620 --> 00:11:08,340 +Speaking of... + +401 +00:11:09,380 --> 00:11:10,100 +Speaking of... + +402 +00:11:10,100 --> 00:11:12,920 +I am in negotiations with Mike + +403 +00:11:12,920 --> 00:11:13,800 +to actually get my car done. + +404 +00:11:14,060 --> 00:11:14,520 +Oh, yeah? + +405 +00:11:14,700 --> 00:11:16,920 +Yeah, because I'm still waiting on my... + +406 +00:11:17,300 --> 00:11:18,300 +Because I told him, I was like, + +407 +00:11:18,380 --> 00:11:19,340 +I can't be without a car. + +408 +00:11:19,520 --> 00:11:19,780 +Yeah. + +409 +00:11:19,940 --> 00:11:21,640 +You know, because you know how much... + +410 +00:11:21,640 --> 00:11:23,680 +You know how unforgiving my schedule is. + +411 +00:11:23,760 --> 00:11:24,100 +It's true. + +412 +00:11:25,040 --> 00:11:25,400 +So... + +413 +00:11:25,400 --> 00:11:26,040 +But... + +414 +00:11:26,680 --> 00:11:27,120 +Hopefully... + +415 +00:11:27,120 --> 00:11:27,900 +Hopefully... + +416 +00:11:28,640 --> 00:11:30,340 +We'll finish putting together the Prius. + +417 +00:11:30,440 --> 00:11:31,080 +Oh, that's what I was going to say. + +418 +00:11:31,120 --> 00:11:31,920 +You're talking about the Prius here? + +419 +00:11:32,020 --> 00:11:32,040 +Yeah. + +420 +00:11:32,140 --> 00:11:32,680 +And then... + +421 +00:11:33,220 --> 00:11:33,960 +And then... + +422 +00:11:33,960 --> 00:11:35,240 +And then Mike can have the BMW + +423 +00:11:35,240 --> 00:11:36,880 +to make it beautiful. + +424 +00:11:37,260 --> 00:11:39,160 +And you can just be speeding around in the Prius. + +425 +00:11:39,240 --> 00:11:39,540 +That's right. + +426 +00:11:39,700 --> 00:11:41,880 +I'll be a speedy Prius. + +427 +00:11:43,880 --> 00:11:44,320 +Well... + +428 +00:11:44,320 --> 00:11:44,900 +Anyway... + +429 +00:11:45,760 --> 00:11:46,860 +Check out their website, + +430 +00:11:47,040 --> 00:11:48,160 +perfectionautoworks.com. + +431 +00:11:49,180 --> 00:11:50,820 +Yeah, they're good guys. + +432 +00:11:50,900 --> 00:11:52,420 +If anybody can fix that Prius, + +433 +00:11:52,480 --> 00:11:53,820 +it's Perfection Auto Works. + +434 +00:11:54,180 --> 00:11:54,620 +Yeah. + +435 +00:11:54,760 --> 00:11:55,200 +Yeah. + +436 +00:11:55,240 --> 00:11:55,660 +I... + +437 +00:11:55,660 --> 00:11:57,500 +They're good people, though. + +438 +00:11:57,600 --> 00:11:57,940 +And... + +439 +00:11:58,680 --> 00:11:59,380 +And, you know, + +440 +00:11:59,880 --> 00:12:00,640 +they have a... + +441 +00:12:00,640 --> 00:12:02,340 +They have kind of a special thing going on + +442 +00:12:02,340 --> 00:12:03,540 +where if you... + +443 +00:12:03,540 --> 00:12:04,300 +If you tell them, + +444 +00:12:04,320 --> 00:12:04,940 +hey, you know, + +445 +00:12:04,940 --> 00:12:05,940 +Computer Guru sent me, + +446 +00:12:06,020 --> 00:12:07,060 +you don't have to wait + +447 +00:12:07,060 --> 00:12:08,060 +to the end of the line. + +448 +00:12:08,160 --> 00:12:08,620 +You get... + +449 +00:12:08,620 --> 00:12:09,700 +You get bumped up a bit. + +450 +00:12:09,740 --> 00:12:10,840 +Front of the line service, huh? + +451 +00:12:10,980 --> 00:12:11,160 +Yeah. + +452 +00:12:12,040 --> 00:12:13,120 +So, you just... + +453 +00:12:13,120 --> 00:12:14,160 +You just go ahead and tell them + +454 +00:12:14,160 --> 00:12:15,240 +Computer Guru sent you + +455 +00:12:15,240 --> 00:12:17,620 +and they will be very happy with that. + +456 +00:12:17,920 --> 00:12:19,020 +Which will make me happy. + +457 +00:12:19,240 --> 00:12:19,680 +All right? + +458 +00:12:19,720 --> 00:12:20,440 +Because I like happy. + +459 +00:12:20,540 --> 00:12:21,520 +Everybody likes happy. + +460 +00:12:21,700 --> 00:12:22,060 +Anyway, + +461 +00:12:22,080 --> 00:12:23,060 +perfectionautoworks.com. + +462 +00:12:23,120 --> 00:12:23,500 +Check them out. + +463 +00:12:24,120 --> 00:12:25,400 +Listen to their ad coming up next. + +464 +00:12:25,660 --> 00:12:26,800 +And we'll be right back. + +465 +00:12:36,580 --> 00:12:39,260 +I'll be the roundabout + +466 +00:12:40,120 --> 00:12:43,000 +The words will make you out + +467 +00:12:43,000 --> 00:12:47,740 +Your Computer Guru, Mike Swanson, + +468 +00:12:47,860 --> 00:12:48,880 +is here to help you tame + +469 +00:12:48,880 --> 00:12:49,940 +that beast of a machine. + +470 +00:12:50,240 --> 00:12:51,600 +Join the chat right now + +471 +00:12:51,600 --> 00:12:53,060 +at gurushow.com + +472 +00:12:53,060 --> 00:12:53,820 +or call in. + +473 +00:12:53,900 --> 00:12:55,640 +This is the Computer Guru Show. + +474 +00:12:55,660 --> 00:12:57,380 +On KVOY, The Voice. + +475 +00:12:59,740 --> 00:13:01,960 +Your technology guru, Mike Swanson, + +476 +00:13:02,080 --> 00:13:03,420 +is answering all your questions + +477 +00:13:03,420 --> 00:13:04,180 +one by one. + +478 +00:13:04,240 --> 00:13:04,860 +Yes, science! + +479 +00:13:05,240 --> 00:13:06,240 +So, chime in with yours. + +480 +00:13:06,500 --> 00:13:08,560 +The website is gurushow.com. + +481 +00:13:08,760 --> 00:13:10,940 +Tune in, click in, and kick back. + +482 +00:13:11,180 --> 00:13:13,100 +This is the Computer Guru Show. + +483 +00:13:14,660 --> 00:13:15,780 +So, let's take a moment + +484 +00:13:15,780 --> 00:13:17,300 +to talk about our favorite, + +485 +00:13:17,460 --> 00:13:20,360 +you know, process chip manufacturer. + +486 +00:13:21,160 --> 00:13:23,000 +Those guys over at Intel + +487 +00:13:23,000 --> 00:13:24,020 +are in trouble. + +488 +00:13:24,380 --> 00:13:25,620 +Kind of in a big way, too. + +489 +00:13:25,660 --> 00:13:27,380 +Yeah, and for a couple + +490 +00:13:27,380 --> 00:13:28,100 +of different reasons. + +491 +00:13:28,380 --> 00:13:29,880 +You want to talk about the CEO first + +492 +00:13:29,880 --> 00:13:30,840 +or the security? + +493 +00:13:30,840 --> 00:13:31,800 +I think we should probably explain + +494 +00:13:31,800 --> 00:13:32,420 +what happened + +495 +00:13:32,420 --> 00:13:33,760 +and then talk about the CEO. + +496 +00:13:33,920 --> 00:13:34,200 +Okay. + +497 +00:13:35,780 --> 00:13:37,400 +So, we've been talking about + +498 +00:13:37,400 --> 00:13:39,160 +some AMT flaws, + +499 +00:13:39,300 --> 00:13:41,720 +which is the management service + +500 +00:13:41,720 --> 00:13:44,000 +that's built into a lot of the, + +501 +00:13:45,220 --> 00:13:47,360 +most of the Intel processors these days. + +502 +00:13:47,580 --> 00:13:49,160 +And it allows for, + +503 +00:13:49,600 --> 00:13:51,280 +it's designed for, like, + +504 +00:13:51,300 --> 00:13:52,420 +large corporate IT + +505 +00:13:52,420 --> 00:13:54,200 +to be able to have + +506 +00:13:54,200 --> 00:13:55,640 +a fair amount of money + +507 +00:13:55,660 --> 00:13:56,560 +and be able to do + +508 +00:13:56,560 --> 00:13:57,460 +a lot of things + +509 +00:13:57,460 --> 00:13:57,640 +and be able to do + +510 +00:13:57,640 --> 00:13:57,640 + + +511 +00:13:57,640 --> 00:13:57,640 + + +512 +00:13:57,640 --> 00:13:57,640 + + +513 +00:13:57,640 --> 00:13:57,640 + + +514 +00:13:57,640 --> 00:13:57,640 + + +515 +00:13:57,640 --> 00:13:57,640 + + +516 +00:13:57,640 --> 00:13:57,640 + + +517 +00:13:57,640 --> 00:14:01,260 +as though they are sitting at it, + +518 +00:14:01,280 --> 00:14:01,800 +but remotely. + +519 +00:14:02,420 --> 00:14:02,820 +Right. + +520 +00:14:02,880 --> 00:14:04,540 +And just control the computer + +521 +00:14:05,140 --> 00:14:06,080 +completely, right, + +522 +00:14:06,120 --> 00:14:06,580 +from remote. + +523 +00:14:07,300 --> 00:14:09,240 +And it's a super useful feature + +524 +00:14:09,240 --> 00:14:10,680 +if you're managing large networks. + +525 +00:14:11,020 --> 00:14:12,000 +Yeah, because, I mean, + +526 +00:14:12,020 --> 00:14:12,800 +it's nice to have, like, + +527 +00:14:12,800 --> 00:14:14,040 +a remote connection, + +528 +00:14:14,220 --> 00:14:15,660 +but when you need to manage the BIOS. + +529 +00:14:16,000 --> 00:14:16,400 +Yeah. + +530 +00:14:16,720 --> 00:14:18,740 +And it allows you to make, you know, + +531 +00:14:18,760 --> 00:14:19,700 +changes to the system + +532 +00:14:19,700 --> 00:14:20,480 +while it's running, + +533 +00:14:20,600 --> 00:14:21,280 +that type of thing. + +534 +00:14:23,400 --> 00:14:24,460 +But, you know, + +535 +00:14:24,480 --> 00:14:25,580 +we've been saying for years, + +536 +00:14:25,620 --> 00:14:25,640 +you know, + +537 +00:14:25,640 --> 00:14:25,860 +for years, + +538 +00:14:25,860 --> 00:14:28,340 +hey, this is kind of a dangerous thing + +539 +00:14:28,340 --> 00:14:29,260 +to have in here + +540 +00:14:29,260 --> 00:14:30,460 +because it's effectively + +541 +00:14:30,460 --> 00:14:31,540 +a separate computer + +542 +00:14:32,140 --> 00:14:33,200 +that's running with, + +543 +00:14:33,280 --> 00:14:33,460 +you know, + +544 +00:14:33,480 --> 00:14:35,420 +a separate running processor + +545 +00:14:35,420 --> 00:14:37,140 +that's running within the machine. + +546 +00:14:38,500 --> 00:14:40,320 +And even when the machine is + +547 +00:14:40,320 --> 00:14:42,200 +quote-unquote powered off, + +548 +00:14:42,980 --> 00:14:43,120 +right, + +549 +00:14:43,240 --> 00:14:45,480 +that other processor is running + +550 +00:14:45,480 --> 00:14:46,760 +and the network card is running, + +551 +00:14:46,940 --> 00:14:48,600 +so you can manage that machine + +552 +00:14:48,600 --> 00:14:49,920 +and even if you wanted to, + +553 +00:14:49,960 --> 00:14:51,820 +turn the machine on from remote. + +554 +00:14:53,720 --> 00:14:55,620 +And we started talking about this + +555 +00:14:55,640 --> 00:14:56,760 +security flaws in this + +556 +00:14:56,760 --> 00:14:57,560 +a couple of years ago. + +557 +00:14:58,280 --> 00:14:59,860 +And it turns out + +558 +00:14:59,860 --> 00:15:01,080 +that it's gotten everybody else's attention + +559 +00:15:01,080 --> 00:15:01,580 +right now + +560 +00:15:01,580 --> 00:15:03,160 +because some serious flaws + +561 +00:15:03,160 --> 00:15:04,560 +have been found, + +562 +00:15:04,740 --> 00:15:06,280 +especially with the way + +563 +00:15:06,280 --> 00:15:08,460 +that operating systems interact + +564 +00:15:08,460 --> 00:15:09,540 +with these particular + +565 +00:15:09,540 --> 00:15:10,900 +management processes. + +566 +00:15:11,940 --> 00:15:13,220 +And it's not limited + +567 +00:15:13,220 --> 00:15:15,000 +just to Windows. + +568 +00:15:15,360 --> 00:15:16,820 +Mac machines are also affected + +569 +00:15:16,820 --> 00:15:17,720 +because most of them + +570 +00:15:17,720 --> 00:15:18,620 +are running Intel chips. + +571 +00:15:19,140 --> 00:15:20,220 +At least for now, + +572 +00:15:20,300 --> 00:15:21,240 +I imagine we're going to see + +573 +00:15:21,240 --> 00:15:21,880 +a change in that + +574 +00:15:21,880 --> 00:15:23,200 +pretty quickly. + +575 +00:15:23,200 --> 00:15:24,080 +Which would be kind of crazy + +576 +00:15:24,080 --> 00:15:25,000 +because historically + +577 +00:15:25,000 --> 00:15:25,620 +they've been running Intel chips + +578 +00:15:25,620 --> 00:15:26,720 +and one of the biggest purchasers + +579 +00:15:26,720 --> 00:15:27,640 +of Intel processors. + +580 +00:15:28,120 --> 00:15:30,700 +Yeah, and of course, + +581 +00:15:30,780 --> 00:15:31,160 +you know, + +582 +00:15:31,180 --> 00:15:32,600 +this type of news to say, + +583 +00:15:32,660 --> 00:15:34,560 +hey, there's these gigantic flaws. + +584 +00:15:35,180 --> 00:15:36,580 +We should probably tell you + +585 +00:15:36,580 --> 00:15:38,080 +that this isn't one of the flaws + +586 +00:15:38,080 --> 00:15:38,700 +where it's just like, + +587 +00:15:38,780 --> 00:15:39,700 +hey, somebody could turn + +588 +00:15:39,700 --> 00:15:40,380 +your computer on. + +589 +00:15:40,980 --> 00:15:43,460 +It's that with this particular exploit + +590 +00:15:44,160 --> 00:15:46,040 +that even things like + +591 +00:15:46,040 --> 00:15:47,060 +full disk encryption + +592 +00:15:47,060 --> 00:15:49,420 +would mean nothing, right? + +593 +00:15:49,540 --> 00:15:50,640 +The remote attacker + +594 +00:15:50,640 --> 00:15:52,100 +could read your information, + +595 +00:15:52,360 --> 00:15:55,520 +would be able to take information, + +596 +00:15:55,520 --> 00:15:56,080 +from you. + +597 +00:15:56,160 --> 00:15:57,640 +They would be able to see passwords + +598 +00:15:57,640 --> 00:15:58,920 +as they're typed in real time + +599 +00:15:58,920 --> 00:16:00,540 +and no antivirus would be able + +600 +00:16:00,540 --> 00:16:01,140 +to detect it + +601 +00:16:01,140 --> 00:16:02,140 +because it's not running + +602 +00:16:02,140 --> 00:16:03,240 +in the same sphere. + +603 +00:16:03,600 --> 00:16:04,780 +It's not running within + +604 +00:16:04,780 --> 00:16:06,260 +that operating system context. + +605 +00:16:06,620 --> 00:16:08,300 +It's running at the hardware level + +606 +00:16:08,300 --> 00:16:10,020 +where it can read everything. + +607 +00:16:11,380 --> 00:16:14,900 +And this really puts a lot of places + +608 +00:16:14,900 --> 00:16:16,900 +in pretty significant risk. + +609 +00:16:17,260 --> 00:16:18,520 +The interesting thing here to me + +610 +00:16:18,520 --> 00:16:19,820 +is that while there's already + +611 +00:16:19,820 --> 00:16:20,720 +a fix for this, + +612 +00:16:21,440 --> 00:16:22,840 +that patch essentially, + +613 +00:16:23,000 --> 00:16:24,000 +the way that it handles this, + +614 +00:16:24,080 --> 00:16:25,500 +slows the processor down a lot. + +615 +00:16:25,500 --> 00:16:26,600 +It slows down by as much as 30%. + +616 +00:16:26,600 --> 00:16:27,460 +Right. + +617 +00:16:27,480 --> 00:16:28,380 +Now, they're saying that you're probably + +618 +00:16:28,380 --> 00:16:30,320 +not going to see that much on average. + +619 +00:16:30,440 --> 00:16:30,680 +Yeah. + +620 +00:16:30,700 --> 00:16:30,980 +Right. + +621 +00:16:31,080 --> 00:16:32,280 +But there's the potential + +622 +00:16:32,280 --> 00:16:34,240 +for 30% slowing. + +623 +00:16:34,320 --> 00:16:34,920 +And I mean, + +624 +00:16:34,940 --> 00:16:37,720 +when we're in a competition sphere + +625 +00:16:37,720 --> 00:16:39,540 +right now between AMD and Intel + +626 +00:16:39,540 --> 00:16:41,240 +where, I mean, + +627 +00:16:41,280 --> 00:16:42,420 +speed advantage is measured + +628 +00:16:42,420 --> 00:16:43,740 +in single digit percentages, + +629 +00:16:44,420 --> 00:16:45,560 +that's a big drop. + +630 +00:16:46,020 --> 00:16:46,500 +Yeah. + +631 +00:16:46,520 --> 00:16:47,660 +Yeah, it certainly is. + +632 +00:16:48,880 --> 00:16:50,000 +To me, you know, + +633 +00:16:50,020 --> 00:16:50,800 +the performance impact + +634 +00:16:51,280 --> 00:16:53,980 +isn't nearly as important + +635 +00:16:53,980 --> 00:16:55,280 +as the security impact. + +636 +00:16:55,280 --> 00:16:55,480 +Right. + +637 +00:16:55,500 --> 00:16:55,820 +Of course. + +638 +00:16:56,080 --> 00:16:57,620 +You know, because most of the time, + +639 +00:16:57,620 --> 00:16:58,480 +in most cases, + +640 +00:16:59,120 --> 00:16:59,560 +generally, + +641 +00:16:59,620 --> 00:17:01,420 +people are sort of overpowered + +642 +00:17:01,420 --> 00:17:02,300 +on the CPU anyway. + +643 +00:17:02,480 --> 00:17:04,260 +They're not hitting that CPU + +644 +00:17:04,260 --> 00:17:05,240 +all that hard. + +645 +00:17:05,320 --> 00:17:05,460 +Yeah. + +646 +00:17:05,500 --> 00:17:07,580 +Even with the highest end gaming rig, + +647 +00:17:07,640 --> 00:17:09,360 +you really don't need a 12 core i7. + +648 +00:17:09,760 --> 00:17:10,200 +Right. + +649 +00:17:10,440 --> 00:17:11,720 +And so there's a lot of people + +650 +00:17:11,720 --> 00:17:12,500 +that are running, + +651 +00:17:12,640 --> 00:17:13,740 +as an example, + +652 +00:17:13,860 --> 00:17:15,040 +like i7 processors. + +653 +00:17:15,260 --> 00:17:16,320 +And they're going to be using, + +654 +00:17:16,480 --> 00:17:18,100 +I bet if you were to look at + +655 +00:17:18,100 --> 00:17:20,140 +an overall process usage + +656 +00:17:20,140 --> 00:17:20,960 +for a machine, + +657 +00:17:21,100 --> 00:17:21,820 +you're probably saying + +658 +00:17:21,820 --> 00:17:23,160 +20% usage, + +659 +00:17:23,520 --> 00:17:25,480 +30% for like a 20% + +660 +00:17:25,500 --> 00:17:26,060 +or 24 hour period. + +661 +00:17:27,360 --> 00:17:28,600 +Even on my machine, + +662 +00:17:28,760 --> 00:17:29,140 +right, + +663 +00:17:29,260 --> 00:17:29,460 +where, + +664 +00:17:29,660 --> 00:17:30,180 +you know, + +665 +00:17:30,220 --> 00:17:32,920 +I experiment a lot + +666 +00:17:32,920 --> 00:17:33,960 +with things that are + +667 +00:17:33,960 --> 00:17:35,860 +even high CPU usage. + +668 +00:17:35,960 --> 00:17:37,260 +I'm probably only averaging + +669 +00:17:37,260 --> 00:17:38,320 +40% usage. + +670 +00:17:38,640 --> 00:17:39,680 +I wonder how this will affect + +671 +00:17:39,680 --> 00:17:42,520 +the animation and movie production industries + +672 +00:17:42,520 --> 00:17:44,320 +because any type of film production + +673 +00:17:44,320 --> 00:17:46,140 +is very processor intensive. + +674 +00:17:46,980 --> 00:17:48,840 +And unless they've got it running on like + +675 +00:17:48,840 --> 00:17:49,880 +a separate GPU farm, + +676 +00:17:50,020 --> 00:17:51,540 +which the really big companies will do. + +677 +00:17:51,620 --> 00:17:52,800 +Yeah, Pixar's got their own phone. + +678 +00:17:52,820 --> 00:17:53,900 +But like YouTube developer, + +679 +00:17:54,100 --> 00:17:55,120 +or YouTube show runners, + +680 +00:17:55,120 --> 00:17:55,680 +for instance, + +681 +00:17:56,460 --> 00:17:58,380 +most of the time they're using Macs as well. + +682 +00:17:58,580 --> 00:18:00,300 +And yeah, I mean, + +683 +00:18:00,320 --> 00:18:02,480 +a 20 to 30% drop in your ability + +684 +00:18:02,480 --> 00:18:03,620 +to render your video + +685 +00:18:03,620 --> 00:18:04,500 +is kind of a big deal. + +686 +00:18:04,740 --> 00:18:05,180 +Right. + +687 +00:18:05,340 --> 00:18:06,800 +Yeah, it's going to be interesting. + +688 +00:18:07,780 --> 00:18:08,860 +And so anyway, + +689 +00:18:09,000 --> 00:18:10,800 +there's just no way to stop this, + +690 +00:18:10,860 --> 00:18:11,300 +right, + +691 +00:18:11,380 --> 00:18:13,540 +other than getting the software patches. + +692 +00:18:13,660 --> 00:18:15,320 +And from what I understand, + +693 +00:18:15,400 --> 00:18:18,340 +there's going to be some basic firmware updates, + +694 +00:18:18,900 --> 00:18:20,460 +firmware updates for the processors. + +695 +00:18:20,740 --> 00:18:22,400 +It's also worth noting that this is, + +696 +00:18:22,400 --> 00:18:24,540 +this is legacy Intel processor stuff. + +697 +00:18:24,580 --> 00:18:24,840 +Like, + +698 +00:18:24,840 --> 00:18:25,100 +this stuff is going to be, like, + +699 +00:18:25,100 --> 00:18:25,100 + + +700 +00:18:25,100 --> 00:18:25,100 + + +701 +00:18:25,100 --> 00:18:25,100 + + +702 +00:18:25,100 --> 00:18:25,100 + + +703 +00:18:25,100 --> 00:18:25,100 + + +704 +00:18:25,100 --> 00:18:26,740 +this stuff that's coming out brand new + +705 +00:18:26,740 --> 00:18:28,360 +is not going to be affected by this. + +706 +00:18:28,560 --> 00:18:29,060 +Actually, since last year. + +707 +00:18:29,180 --> 00:18:29,360 +Yeah. + +708 +00:18:30,280 --> 00:18:31,160 +And the, + +709 +00:18:31,620 --> 00:18:35,640 +there is an option to turn off AMT in most processors, right? + +710 +00:18:35,720 --> 00:18:38,960 +And turning that off actually does a great deal + +711 +00:18:38,960 --> 00:18:41,060 +towards protecting yourself from this particular thing. + +712 +00:18:41,180 --> 00:18:42,620 +But most people don't go into the BIOS. + +713 +00:18:42,720 --> 00:18:43,960 +And that's not going to be an option anyway + +714 +00:18:43,960 --> 00:18:46,420 +for the really big businesses that need those AMT features. + +715 +00:18:46,680 --> 00:18:47,020 +Right. + +716 +00:18:48,100 --> 00:18:50,300 +So I'm curious what's going to happen there. + +717 +00:18:50,300 --> 00:18:51,380 +As you would imagine, + +718 +00:18:51,440 --> 00:18:54,520 +the Intel stock didn't, you know, + +719 +00:18:54,520 --> 00:18:56,300 +didn't fare all that well because of it. + +720 +00:18:56,380 --> 00:18:58,400 +Yeah, it dropped by 3% pretty much instantly, + +721 +00:18:58,520 --> 00:18:59,820 +which is a huge number for them. + +722 +00:19:00,080 --> 00:19:00,580 +Yeah. + +723 +00:19:00,660 --> 00:19:02,280 +But you know what the interesting thing is, + +724 +00:19:02,340 --> 00:19:06,300 +is how the CEO reacted before the release of this announcement + +725 +00:19:06,300 --> 00:19:08,060 +or the announcement of this particular flaw, + +726 +00:19:08,960 --> 00:19:11,180 +which was, I mean, + +727 +00:19:11,220 --> 00:19:13,900 +he normally sells about, you know, + +728 +00:19:13,900 --> 00:19:16,860 +$2 million a year worth of Intel stock. + +729 +00:19:17,480 --> 00:19:19,460 +But it was $40 million this year, + +730 +00:19:20,120 --> 00:19:22,180 +right before this was announced. + +731 +00:19:22,800 --> 00:19:24,300 +And so. What a coincidence. + +732 +00:19:24,900 --> 00:19:27,380 +You know, I'm sure that there's no sort of like, + +733 +00:19:27,480 --> 00:19:29,100 +you know, he knew or anything. + +734 +00:19:29,380 --> 00:19:30,160 +No, that was just luck. + +735 +00:19:31,120 --> 00:19:32,220 +It was already scheduled. + +736 +00:19:32,300 --> 00:19:35,320 +Just happened to need 20 times as normal amount, + +737 +00:19:36,920 --> 00:19:37,900 +you know, this year. + +738 +00:19:38,120 --> 00:19:41,060 +Maybe he was buying a house or a yacht. + +739 +00:19:41,420 --> 00:19:42,820 +Just in case. + +740 +00:19:43,060 --> 00:19:44,860 +Right. Or it was a really rough Christmas. + +741 +00:19:44,940 --> 00:19:45,740 +That's what it was. + +742 +00:19:47,740 --> 00:19:50,160 +So once again, we've got some type of a, + +743 +00:19:50,160 --> 00:19:53,820 +you know, a CEO type person that is in the tech industry. + +744 +00:19:53,920 --> 00:19:54,280 +Now, this is a really tough time. Right. + +745 +00:19:54,280 --> 00:19:54,640 +OK. + +746 +00:19:57,060 --> 00:19:57,080 +OK. + +747 +00:19:57,100 --> 00:19:57,120 +OK. + +748 +00:19:59,100 --> 00:19:59,480 +OK. + +749 +00:19:59,480 --> 00:20:03,340 +Cryptocoin, where they were selling Cryptocoin off before. + +750 +00:20:03,560 --> 00:20:03,760 +Right. + +751 +00:20:05,820 --> 00:20:06,660 +Which one was that? + +752 +00:20:06,740 --> 00:20:08,080 +I can't remember which coin that was. + +753 +00:20:09,400 --> 00:20:10,500 +It's one of the ones that you have. + +754 +00:20:11,020 --> 00:20:12,140 +Oh, it was Bitcoin Cash. + +755 +00:20:12,360 --> 00:20:12,580 +Yeah. + +756 +00:20:13,140 --> 00:20:17,700 +So, yeah, Bitcoin Cash, the developer of that basically saying, + +757 +00:20:17,880 --> 00:20:20,300 +hey, you know, I just need some extra money right now. + +758 +00:20:20,540 --> 00:20:22,140 +And taking a bunch out. + +759 +00:20:23,480 --> 00:20:29,220 +But anyway, so there's an investigation happening to find out, you know, + +760 +00:20:29,480 --> 00:20:32,160 +what he knew and when he knew it, that type of thing. + +761 +00:20:32,660 --> 00:20:36,280 +Yeah, because that's the most insider trading thing I've ever heard, I think. + +762 +00:20:36,940 --> 00:20:38,920 +I don't know how you could think you're going to get away with that. + +763 +00:20:40,320 --> 00:20:41,200 +I don't know. + +764 +00:20:42,100 --> 00:20:48,500 +So anyway, your computer may be telling you that, hey, you need some updates, by the way, + +765 +00:20:48,920 --> 00:20:53,100 +even though this has mostly been patched in previous updates. + +766 +00:20:53,900 --> 00:20:55,420 +How is that going to get patched? + +767 +00:20:55,420 --> 00:20:56,440 +Is it going to be a BIOS update? + +768 +00:20:56,560 --> 00:20:57,060 +How does that work? + +769 +00:20:57,360 --> 00:20:58,900 +Right now it's an OS update. + +770 +00:20:58,940 --> 00:20:59,140 +Okay. + +771 +00:21:00,460 --> 00:21:04,820 +But from what I understand, there are going to be firmware updates for your board. + +772 +00:21:04,960 --> 00:21:06,600 +Most people don't go out there and get those. + +773 +00:21:06,840 --> 00:21:09,640 +And it's kind of a scary thing to be, like, flashing your BIOS. + +774 +00:21:09,720 --> 00:21:14,700 +Yeah, because, well, in new machines it's not so much because they generally have dual BIOS. + +775 +00:21:14,800 --> 00:21:15,040 +Right. + +776 +00:21:15,340 --> 00:21:19,200 +But older machines, let's say older than five years ago. + +777 +00:21:19,580 --> 00:21:22,520 +I'll never feel comfortable 100% with that. + +778 +00:21:22,620 --> 00:21:25,780 +There is a remote chance that you will brick your machine. + +779 +00:21:26,000 --> 00:21:29,380 +Do you know how many things I have bricked because I didn't read the revision number? + +780 +00:21:29,480 --> 00:21:30,600 +I don't remember at the end of the model number. + +781 +00:21:31,120 --> 00:21:31,820 +It happens. + +782 +00:21:32,040 --> 00:21:32,820 +It does happen. + +783 +00:21:34,300 --> 00:21:37,980 +So you should be careful if you're going to update the BIOS. + +784 +00:21:37,980 --> 00:21:39,960 +But it's also one of those things that you should probably do. + +785 +00:21:40,380 --> 00:21:40,740 +Yeah. + +786 +00:21:40,860 --> 00:21:45,280 +And if you're running a newer machine, like you said, that has the dual BIOS, then you really aren't at risk. + +787 +00:21:45,620 --> 00:21:45,980 +Yeah. + +788 +00:21:46,060 --> 00:21:47,180 +You just go ahead and do what you do. + +789 +00:21:47,440 --> 00:21:49,420 +Get your update if you have a dual BIOS machine. + +790 +00:21:50,380 --> 00:21:53,020 +And that will help you out quite a lot. + +791 +00:21:53,080 --> 00:21:58,780 +And if you're buying a new machine and you're just a normal person, maybe look at buying a Ryzen processor, a machine with a Ryzen. + +792 +00:21:58,880 --> 00:21:59,240 +Maybe. + +793 +00:21:59,480 --> 00:22:04,480 +I mean, I'm still trying to overcome my extreme prejudice of AMD. + +794 +00:22:04,760 --> 00:22:05,900 +You've got to give them credit, though. + +795 +00:22:05,960 --> 00:22:08,820 +The Ryzen series is almost a different company at this point. + +796 +00:22:09,140 --> 00:22:09,500 +Yeah. + +797 +00:22:09,620 --> 00:22:13,320 +If you think of it as not AMD but as Ryzen instead, you might be okay. + +798 +00:22:14,300 --> 00:22:15,640 +I'll take a look at that. + +799 +00:22:16,300 --> 00:22:17,380 +I mean, well, you know what? + +800 +00:22:17,420 --> 00:22:19,120 +I should probably build one and just try it. + +801 +00:22:19,220 --> 00:22:20,100 +Get a Ryzen 5. + +802 +00:22:20,360 --> 00:22:22,600 +Don't go with the highest end one, not the lowest end one. + +803 +00:22:22,900 --> 00:22:24,000 +Ryzen 5 is where it's at. + +804 +00:22:24,280 --> 00:22:29,460 +So they're using a similar numbering structure to, like, the i5. + +805 +00:22:29,480 --> 00:22:29,800 +The i series? + +806 +00:22:30,040 --> 00:22:30,800 +It seems like it, yeah. + +807 +00:22:30,960 --> 00:22:32,700 +Just trying to jump on that? + +808 +00:22:32,940 --> 00:22:33,580 +I guess so. + +809 +00:22:33,720 --> 00:22:34,740 +It kind of worked, though. + +810 +00:22:34,900 --> 00:22:35,880 +Yeah, I guess so. + +811 +00:22:37,000 --> 00:22:42,560 +Yeah, I'll build one, and then I will give an honest feedback of it. + +812 +00:22:42,640 --> 00:22:47,040 +I think the best compliment that I could give to the Ryzen processors is that you will not notice a difference. + +813 +00:22:47,880 --> 00:22:49,660 +That would be amazing. + +814 +00:22:50,040 --> 00:22:51,260 +And they're, like, $200 cheaper. + +815 +00:22:51,500 --> 00:22:55,280 +Yeah, because the problem with AMD is that you knew that you were on an AMD machine. + +816 +00:22:55,540 --> 00:22:55,780 +Yeah. + +817 +00:22:56,300 --> 00:22:56,900 +It's loud. + +818 +00:22:57,080 --> 00:22:57,460 +It's hot. + +819 +00:22:57,900 --> 00:22:58,300 +Right. + +820 +00:22:58,420 --> 00:22:58,860 +It is. + +821 +00:22:59,560 --> 00:23:00,300 +Frequently crashes. + +822 +00:23:00,820 --> 00:23:02,260 +Yeah, those types of things. + +823 +00:23:02,360 --> 00:23:05,660 +And it gave very different blue screens as to Intel processors. + +824 +00:23:06,680 --> 00:23:07,120 +Yeah. + +825 +00:23:07,960 --> 00:23:13,940 +If I could build a machine with an AMD processor that I just didn't know it was an AMD, yeah. + +826 +00:23:14,200 --> 00:23:17,500 +That would be a complete success in my opinion. + +827 +00:23:17,500 --> 00:23:20,920 +Yeah, because they're not, like, incredibly faster than Intel processors right now. + +828 +00:23:21,040 --> 00:23:24,780 +It's just that they're night and day better than previous AMD offerings. + +829 +00:23:25,180 --> 00:23:25,540 +Right. + +830 +00:23:25,780 --> 00:23:29,140 +All right, so let's take a break, and then we'll come back and talk more about, + +831 +00:23:29,480 --> 00:23:31,660 +uh, the problems with the technology of this world. + +832 +00:23:31,880 --> 00:23:35,260 +Not to mention, you can give us a call at 790-2040. + +833 +00:23:35,360 --> 00:23:36,120 +We'll be right back. + +834 +00:23:54,000 --> 00:23:57,840 +Whether you're dealing with hardware installation or, heaven forbid, a virus. + +835 +00:23:57,920 --> 00:23:58,360 +No! + +836 +00:23:58,520 --> 00:23:58,960 +No! + +837 +00:23:58,960 --> 00:23:59,380 +No! + +838 +00:23:59,480 --> 00:24:02,980 +Mike Swanson is answering all your questions one by one. + +839 +00:24:03,080 --> 00:24:05,120 +So call in or chat in with yours. + +840 +00:24:05,400 --> 00:24:06,100 +The website? + +841 +00:24:06,520 --> 00:24:07,620 +Gurushow.com. + +842 +00:24:07,940 --> 00:24:10,220 +Tune in, click in, and kick back. + +843 +00:24:10,460 --> 00:24:14,460 +This is the Computer Guru Show on AM1030 KV... + +844 +00:24:14,460 --> 00:24:18,080 +Mike Swanson, your computer guru, is just a click away. + +845 +00:24:18,280 --> 00:24:20,380 +Listen and watch at gurushow.com. + +846 +00:24:20,680 --> 00:24:24,440 +This is the Computer Guru Show on KVOI, The Voice. + +847 +00:24:25,500 --> 00:24:28,660 +Welcome back to the Computer Guru Show, 790-2040. + +848 +00:24:28,680 --> 00:24:29,460 +If you'd like to be a part of the show, you can find us on Facebook, Twitter, or Instagram. + +849 +00:24:29,480 --> 00:24:31,480 +If you'd like to be a part of the show, how'd my levels change? + +850 +00:24:31,700 --> 00:24:32,480 +That's what I want to know. + +851 +00:24:32,700 --> 00:24:33,120 +They did. + +852 +00:24:33,580 --> 00:24:33,980 +Didn't they? + +853 +00:24:34,040 --> 00:24:35,000 +Or am I just being louder? + +854 +00:24:35,200 --> 00:24:35,480 +It's me. + +855 +00:24:35,520 --> 00:24:36,040 +I changed them. + +856 +00:24:36,160 --> 00:24:36,700 +Oh, okay. + +857 +00:24:37,500 --> 00:24:38,020 +All right. + +858 +00:24:38,780 --> 00:24:43,100 +So if you'd like to call and ask a question, you can give us a call, 790-2040. + +859 +00:24:43,200 --> 00:24:50,280 +And if you're the type that doesn't want to talk to us on air, you can call 304-8300 and talk to the shop. + +860 +00:24:50,420 --> 00:24:52,700 +They won't put you on the air at all. + +861 +00:24:53,800 --> 00:24:54,320 +Not at all. + +862 +00:24:54,400 --> 00:24:54,840 +I promise. + +863 +00:24:55,680 --> 00:24:58,300 +Although it is Howard, so he may try to mess with you a little bit. + +864 +00:24:58,500 --> 00:24:59,260 +Well, it is, yeah. + +865 +00:25:00,480 --> 00:25:02,040 +that's how Howard gets his kicks + +866 +00:25:02,040 --> 00:25:03,960 +he tries to mess with people a little bit + +867 +00:25:03,960 --> 00:25:05,300 +that's what happens + +868 +00:25:06,620 --> 00:25:07,980 +what's next sir? + +869 +00:25:08,500 --> 00:25:10,200 +how would you feel about purchasing + +870 +00:25:10,200 --> 00:25:11,940 +fried chicken with bitcoin? + +871 +00:25:13,080 --> 00:25:13,960 +you know what + +872 +00:25:13,960 --> 00:25:16,700 +I knew that the fast food companies were going to jump on this + +873 +00:25:16,700 --> 00:25:17,340 +why wouldn't they? + +874 +00:25:17,540 --> 00:25:20,600 +because it's nothing but you make more money than you + +875 +00:25:21,920 --> 00:25:23,040 +inflation on this + +876 +00:25:23,040 --> 00:25:24,900 +I have to say though that I wouldn't want + +877 +00:25:24,900 --> 00:25:27,240 +to do a transaction for fast food + +878 +00:25:27,240 --> 00:25:28,520 +with bitcoin because it would be + +879 +00:25:28,520 --> 00:25:31,080 +incredibly slow if they wanted you to stand there + +880 +00:25:31,080 --> 00:25:31,700 +and verify it + +881 +00:25:32,340 --> 00:25:34,020 +bitcoin transactions are slow + +882 +00:25:34,020 --> 00:25:36,740 +I imagine they're working through some type of + +883 +00:25:37,740 --> 00:25:38,660 +clearing house + +884 +00:25:38,660 --> 00:25:39,240 +for that + +885 +00:25:39,240 --> 00:25:41,140 +an escrow account + +886 +00:25:41,140 --> 00:25:43,280 +if they would take litecoin + +887 +00:25:43,280 --> 00:25:45,100 +or ripple + +888 +00:25:46,220 --> 00:25:48,020 +ripple is crazy fast + +889 +00:25:48,020 --> 00:25:50,580 +so how long does it take on average + +890 +00:25:50,580 --> 00:25:51,360 +for a transaction? + +891 +00:25:51,740 --> 00:25:53,200 +bitcoin transactions can take hours + +892 +00:25:53,200 --> 00:25:55,780 +depending on how many people + +893 +00:25:55,780 --> 00:25:56,960 +are trading things at the moment + +894 +00:25:57,580 --> 00:25:58,440 +litecoin transactions + +895 +00:25:58,520 --> 00:26:00,500 +tend to take like 10 minutes from my experience + +896 +00:26:00,500 --> 00:26:02,240 +and ripple is like instant + +897 +00:26:02,240 --> 00:26:02,840 +hmm + +898 +00:26:02,840 --> 00:26:03,720 +alright then + +899 +00:26:03,720 --> 00:26:05,160 +I've done zero + +900 +00:26:06,120 --> 00:26:07,380 +ripple or litecoin + +901 +00:26:07,380 --> 00:26:08,300 +well bitcoin was + +902 +00:26:08,300 --> 00:26:09,160 +you know it was the + +903 +00:26:09,160 --> 00:26:09,740 +it's the OG + +904 +00:26:09,740 --> 00:26:11,940 +it was the model that everything else is based on + +905 +00:26:11,940 --> 00:26:13,260 +but they've improved on it since then + +906 +00:26:13,260 --> 00:26:15,320 +so you gotta look at some of these smaller + +907 +00:26:15,320 --> 00:26:16,620 +newer coins if you want to + +908 +00:26:16,620 --> 00:26:17,940 +see the upcoming technology + +909 +00:26:18,420 --> 00:26:18,820 +yeah + +910 +00:26:18,820 --> 00:26:20,320 +wow we got popular all of a sudden + +911 +00:26:20,320 --> 00:26:21,600 +yeah I don't know what you did + +912 +00:26:21,600 --> 00:26:22,020 +but + +913 +00:26:22,020 --> 00:26:22,700 +anyway + +914 +00:26:22,700 --> 00:26:25,160 +maybe I actually said the phone number slow enough this time + +915 +00:26:25,160 --> 00:26:27,000 +or I said something that just offended everyone + +916 +00:26:27,000 --> 00:26:27,360 +just now + +917 +00:26:27,360 --> 00:26:28,260 +everyone's mad at you + +918 +00:26:28,260 --> 00:26:28,480 +or something like that + +919 +00:26:28,520 --> 00:26:30,320 +I can't believe you said bitcoin is slow + +920 +00:26:32,080 --> 00:26:33,120 +kfc what? + +921 +00:26:33,620 --> 00:26:35,100 +yeah anyway that was the point of that + +922 +00:26:35,100 --> 00:26:37,340 +was that kfc in Canada is accepting bitcoin now + +923 +00:26:37,340 --> 00:26:39,340 +yeah and we've been working on + +924 +00:26:39,340 --> 00:26:41,660 +ways to potentially do that + +925 +00:26:41,660 --> 00:26:43,620 +but it seems to confuse + +926 +00:26:43,620 --> 00:26:45,480 +anyone who's an accountant altogether + +927 +00:26:46,060 --> 00:26:47,020 +yeah the biggest + +928 +00:26:47,020 --> 00:26:48,880 +hang up with bitcoin right now is that + +929 +00:26:48,880 --> 00:26:51,460 +none of the people who are in a position + +930 +00:26:51,460 --> 00:26:53,120 +to like make this happen + +931 +00:26:53,120 --> 00:26:53,960 +understand it + +932 +00:26:53,960 --> 00:26:54,660 +right + +933 +00:26:55,260 --> 00:26:55,780 +unfortunately + +934 +00:26:55,780 --> 00:26:57,560 +it's not that hard of a concept either + +935 +00:26:57,560 --> 00:26:58,360 +yeah and we have this + +936 +00:26:58,360 --> 00:27:00,440 +this is sort of weird contract going with our + +937 +00:27:00,440 --> 00:27:01,620 +payment provider + +938 +00:27:02,140 --> 00:27:02,620 +and + +939 +00:27:03,660 --> 00:27:06,240 +it's like I can't use another payment provider + +940 +00:27:07,300 --> 00:27:08,060 +in conjunction + +941 +00:27:08,060 --> 00:27:10,160 +would they consider bitcoin to be a payment provider? + +942 +00:27:10,420 --> 00:27:10,780 +yes + +943 +00:27:10,780 --> 00:27:11,820 +that's ridiculous + +944 +00:27:11,820 --> 00:27:12,140 +yeah + +945 +00:27:12,140 --> 00:27:14,320 +and that's one of the things I've been working with + +946 +00:27:14,320 --> 00:27:15,500 +is talking them out of that + +947 +00:27:15,500 --> 00:27:17,300 +do they consider trade a payment provider? + +948 +00:27:17,520 --> 00:27:18,560 +because that's like the same thing + +949 +00:27:18,560 --> 00:27:19,100 +yeah + +950 +00:27:19,100 --> 00:27:20,000 +no they don't + +951 +00:27:20,000 --> 00:27:20,600 +bartering + +952 +00:27:20,600 --> 00:27:20,940 +yeah + +953 +00:27:20,940 --> 00:27:22,460 +I mean yeah we're gonna + +954 +00:27:22,460 --> 00:27:23,400 +we're gonna work on that + +955 +00:27:23,400 --> 00:27:24,520 +because I'd really like to see + +956 +00:27:24,520 --> 00:27:25,320 +a cryptocurrency + +957 +00:27:26,080 --> 00:27:26,960 +ability to pay + +958 +00:27:26,960 --> 00:27:27,920 +at computer guru + +959 +00:27:27,920 --> 00:27:28,260 +yeah + +960 +00:27:28,260 --> 00:27:28,340 +yeah + +961 +00:27:28,360 --> 00:27:28,520 +! + +962 +00:27:28,520 --> 00:27:28,960 +me too + +963 +00:27:28,960 --> 00:27:31,260 +and as everyone should + +964 +00:27:31,260 --> 00:27:31,820 +should want + +965 +00:27:31,820 --> 00:27:32,360 +right + +966 +00:27:32,360 --> 00:27:33,560 +because that would be interesting + +967 +00:27:34,140 --> 00:27:34,840 +I don't know + +968 +00:27:34,840 --> 00:27:36,300 +I'm half doing it + +969 +00:27:36,300 --> 00:27:37,220 +just because of curiosity + +970 +00:27:37,740 --> 00:27:38,700 +yeah and I mean with + +971 +00:27:38,700 --> 00:27:39,660 +you know everybody always says + +972 +00:27:39,660 --> 00:27:40,380 +bitcoin's gonna fail + +973 +00:27:40,380 --> 00:27:41,460 +that could be the case + +974 +00:27:41,460 --> 00:27:42,300 +bitcoin might fail + +975 +00:27:42,300 --> 00:27:43,600 +but the underlying technology + +976 +00:27:43,600 --> 00:27:44,360 +of the blockchain + +977 +00:27:44,360 --> 00:27:45,580 +and all these new technologies + +978 +00:27:45,580 --> 00:27:46,320 +that are using it + +979 +00:27:46,320 --> 00:27:47,120 +that's forever + +980 +00:27:47,120 --> 00:27:47,820 +it's gonna be around + +981 +00:27:47,820 --> 00:27:48,420 +right + +982 +00:27:48,420 --> 00:27:49,720 +all right let's take some calls here + +983 +00:27:49,720 --> 00:27:50,520 +who are we gonna start with? + +984 +00:27:51,660 --> 00:27:52,380 +with Les + +985 +00:27:52,980 --> 00:27:53,860 +let's start with + +986 +00:27:53,860 --> 00:27:54,860 +line two + +987 +00:27:54,860 --> 00:27:55,060 +Les + +988 +00:27:55,060 --> 00:27:55,580 +hello Les + +989 +00:27:55,580 --> 00:27:56,000 +how are you? + +990 +00:27:56,520 --> 00:27:57,260 +hi guys + +991 +00:27:57,260 --> 00:27:57,860 +2018 + +992 +00:27:57,860 --> 00:27:58,420 +greetings + +993 +00:27:59,140 --> 00:27:59,660 +greetings + +994 +00:27:59,660 --> 00:28:00,120 +you as well + +995 +00:28:01,240 --> 00:28:03,100 +and I took your advice + +996 +00:28:03,100 --> 00:28:03,900 +I was probably + +997 +00:28:03,900 --> 00:28:04,960 +last month + +998 +00:28:04,960 --> 00:28:05,960 +about upgrading + +999 +00:28:05,960 --> 00:28:07,000 +taking advantage + +1000 +00:28:07,000 --> 00:28:08,080 +of the Windows 10 upgrade + +1001 +00:28:08,080 --> 00:28:09,260 +using the + +1002 +00:28:10,160 --> 00:28:11,580 +disabled service method + +1003 +00:28:11,580 --> 00:28:12,760 +it would have had to have been + +1004 +00:28:12,760 --> 00:28:13,220 +last month + +1005 +00:28:13,220 --> 00:28:13,560 +yeah + +1006 +00:28:13,560 --> 00:28:14,240 +for free + +1007 +00:28:14,240 --> 00:28:14,640 +yeah + +1008 +00:28:14,640 --> 00:28:15,940 +yeah for free + +1009 +00:28:15,940 --> 00:28:16,440 +for free + +1010 +00:28:16,440 --> 00:28:17,660 +and I had an old + +1011 +00:28:17,660 --> 00:28:20,520 +like a Windows 8.0 + +1012 +00:28:20,520 --> 00:28:21,100 +that I hadn't used + +1013 +00:28:21,100 --> 00:28:21,360 +and I + +1014 +00:28:22,080 --> 00:28:23,000 +figured that would be + +1015 +00:28:23,000 --> 00:28:23,820 +a good way to get into + +1016 +00:28:23,820 --> 00:28:25,000 +the virtual box + +1017 +00:28:25,620 --> 00:28:27,200 +to make one with 10 + +1018 +00:28:27,200 --> 00:28:27,580 +so I + +1019 +00:28:27,580 --> 00:28:28,760 +created a virtual box + +1020 +00:28:28,760 --> 00:28:29,260 +with 8 + +1021 +00:28:29,260 --> 00:28:29,780 +and then I + +1022 +00:28:29,780 --> 00:28:31,140 +upgraded it + +1023 +00:28:31,140 --> 00:28:31,760 +to 10 + +1024 +00:28:31,760 --> 00:28:32,400 +no problems + +1025 +00:28:33,460 --> 00:28:35,300 +other than the video sharing + +1026 +00:28:35,300 --> 00:28:36,520 +I was looking at it + +1027 +00:28:36,520 --> 00:28:36,760 +and + +1028 +00:28:37,700 --> 00:28:38,980 +the most you can get + +1029 +00:28:38,980 --> 00:28:39,620 +is like 256 + +1030 +00:28:40,260 --> 00:28:40,740 +megabytes + +1031 +00:28:40,740 --> 00:28:41,700 +for your video memory + +1032 +00:28:41,700 --> 00:28:42,300 +and + +1033 +00:28:42,300 --> 00:28:44,180 +my intent of the video + +1034 +00:28:44,180 --> 00:28:45,820 +or the virtual box + +1035 +00:28:45,820 --> 00:28:46,620 +would be to + +1036 +00:28:47,540 --> 00:28:48,660 +be able to put your + +1037 +00:28:48,660 --> 00:28:49,820 +programs on there + +1038 +00:28:49,820 --> 00:28:50,640 +like Photoshop + +1039 +00:28:50,640 --> 00:28:51,280 +and all that + +1040 +00:28:51,280 --> 00:28:51,760 +I think Mike + +1041 +00:28:51,760 --> 00:28:52,460 +you had suggested + +1042 +00:28:52,460 --> 00:28:53,380 +then you have like + +1043 +00:28:53,380 --> 00:28:55,500 +something you can + +1044 +00:28:55,500 --> 00:28:56,140 +use + +1045 +00:28:56,140 --> 00:28:57,420 +and not have to worry about + +1046 +00:28:57,580 --> 00:28:57,860 +you know + +1047 +00:28:57,860 --> 00:28:59,700 +putting in your keys + +1048 +00:28:59,700 --> 00:29:00,500 +and all that stuff + +1049 +00:29:00,500 --> 00:29:00,940 +right + +1050 +00:29:00,940 --> 00:29:01,300 +but + +1051 +00:29:02,700 --> 00:29:03,740 +256 megabyte + +1052 +00:29:03,740 --> 00:29:04,420 +is really nothing + +1053 +00:29:04,420 --> 00:29:05,220 +if you're going to use + +1054 +00:29:05,220 --> 00:29:05,540 +Photoshop + +1055 +00:29:05,540 --> 00:29:06,720 +so am I missing something + +1056 +00:29:06,720 --> 00:29:07,920 +or is that not really + +1057 +00:29:07,920 --> 00:29:09,320 +you're using virtual box + +1058 +00:29:09,320 --> 00:29:09,520 +right + +1059 +00:29:09,520 --> 00:29:10,100 +yeah it's a virtual + +1060 +00:29:10,100 --> 00:29:11,640 +limitation of virtual box + +1061 +00:29:11,640 --> 00:29:14,180 +so the virtual box + +1062 +00:29:14,180 --> 00:29:15,440 +limitation is 256 + +1063 +00:29:15,440 --> 00:29:16,660 +but I think that's only + +1064 +00:29:16,660 --> 00:29:18,720 +on the 32 bit version + +1065 +00:29:18,720 --> 00:29:19,760 +or you have the 64 bit + +1066 +00:29:19,760 --> 00:29:20,780 +version of virtual box + +1067 +00:29:20,780 --> 00:29:21,240 +yeah I'm + +1068 +00:29:21,240 --> 00:29:22,220 +pretty sure it's + +1069 +00:29:22,220 --> 00:29:23,580 +installed in 64 bit + +1070 +00:29:23,580 --> 00:29:24,620 +and the operating system + +1071 +00:29:24,620 --> 00:29:24,980 +is 64 + +1072 +00:29:25,560 --> 00:29:26,080 +yeah + +1073 +00:29:26,080 --> 00:29:26,440 +yeah + +1074 +00:29:26,440 --> 00:29:27,160 +Windows 10 + +1075 +00:29:27,160 --> 00:29:27,500 +just + +1076 +00:29:27,580 --> 00:29:27,960 +making sure + +1077 +00:29:28,860 --> 00:29:30,020 +making sure that + +1078 +00:29:30,020 --> 00:29:30,620 +your original + +1079 +00:29:30,620 --> 00:29:31,640 +like your Windows 8 + +1080 +00:29:31,640 --> 00:29:32,500 +that you upgraded + +1081 +00:29:32,500 --> 00:29:33,600 +was also 64 + +1082 +00:29:33,600 --> 00:29:33,880 +yeah + +1083 +00:29:33,880 --> 00:29:34,860 +everything was + +1084 +00:29:35,420 --> 00:29:35,900 +10 + +1085 +00:29:35,900 --> 00:29:37,500 +in fact I think + +1086 +00:29:37,500 --> 00:29:38,540 +it installed it in the + +1087 +00:29:38,540 --> 00:29:39,500 +I want to say + +1088 +00:29:39,500 --> 00:29:40,000 +I remember + +1089 +00:29:40,000 --> 00:29:40,800 +from messing around + +1090 +00:29:40,800 --> 00:29:41,380 +with virtual box + +1091 +00:29:41,380 --> 00:29:42,060 +that if you want to + +1092 +00:29:42,060 --> 00:29:42,620 +access more + +1093 +00:29:42,620 --> 00:29:43,560 +you have to set up + +1094 +00:29:43,560 --> 00:29:44,160 +a pass through + +1095 +00:29:44,160 --> 00:29:44,900 +so that it's actually + +1096 +00:29:44,900 --> 00:29:46,440 +utilizing your GPU + +1097 +00:29:46,440 --> 00:29:46,960 +right + +1098 +00:29:46,960 --> 00:29:47,680 +there's a way to do + +1099 +00:29:47,680 --> 00:29:48,660 +and I don't remember + +1100 +00:29:48,660 --> 00:29:49,320 +off the top of my head + +1101 +00:29:49,320 --> 00:29:49,840 +how to do it + +1102 +00:29:49,840 --> 00:29:50,440 +but there's a way + +1103 +00:29:50,440 --> 00:29:51,360 +in virtual box + +1104 +00:29:51,360 --> 00:29:53,620 +to give direct access + +1105 +00:29:53,620 --> 00:29:55,300 +to that operating system + +1106 +00:29:55,300 --> 00:29:56,280 +because it's simulating + +1107 +00:29:56,280 --> 00:29:57,080 +it's simulating + +1108 +00:29:57,080 --> 00:29:57,560 +that GPU + +1109 +00:29:57,560 --> 00:29:57,560 + + +1110 +00:29:57,560 --> 00:29:57,560 + + +1111 +00:29:57,580 --> 00:29:57,900 +right + +1112 +00:29:57,900 --> 00:29:58,240 +right + +1113 +00:29:58,240 --> 00:29:58,660 +yeah + +1114 +00:29:59,580 --> 00:30:01,020 +so there is a way + +1115 +00:30:01,020 --> 00:30:01,760 +to do a pass through + +1116 +00:30:01,760 --> 00:30:02,300 +and I can't remember + +1117 +00:30:02,300 --> 00:30:03,240 +how that works + +1118 +00:30:03,240 --> 00:30:04,220 +off the top of my head + +1119 +00:30:04,220 --> 00:30:06,420 +the other flavors + +1120 +00:30:06,420 --> 00:30:07,360 +that cost more + +1121 +00:30:07,360 --> 00:30:07,960 +for + +1122 +00:30:07,960 --> 00:30:08,620 +yeah + +1123 +00:30:08,620 --> 00:30:09,620 +you know + +1124 +00:30:09,620 --> 00:30:10,400 +virtualizing machines + +1125 +00:30:10,400 --> 00:30:12,400 +tend to have this built in + +1126 +00:30:12,400 --> 00:30:13,920 +or they offer you + +1127 +00:30:13,920 --> 00:30:15,680 +better virtualization + +1128 +00:30:15,680 --> 00:30:16,640 +when it comes to + +1129 +00:30:16,640 --> 00:30:17,380 +graphics hardware + +1130 +00:30:18,820 --> 00:30:20,180 +but there is a way + +1131 +00:30:20,180 --> 00:30:20,920 +to do a pass through + +1132 +00:30:20,920 --> 00:30:21,620 +in virtual box + +1133 +00:30:21,620 --> 00:30:22,500 +and unfortunately + +1134 +00:30:22,500 --> 00:30:23,120 +I don't remember + +1135 +00:30:23,120 --> 00:30:23,720 +what it is + +1136 +00:30:23,720 --> 00:30:24,460 +I could research + +1137 +00:30:24,460 --> 00:30:25,180 +I just researched + +1138 +00:30:25,180 --> 00:30:26,060 +how to get to + +1139 +00:30:26,060 --> 00:30:26,660 +I think it was + +1140 +00:30:26,660 --> 00:30:27,560 +24 megs + +1141 +00:30:27,580 --> 00:30:28,220 +and to get it + +1142 +00:30:28,220 --> 00:30:29,560 +to 256 + +1143 +00:30:29,560 --> 00:30:30,720 +you know + +1144 +00:30:30,720 --> 00:30:31,060 +there was some + +1145 +00:30:31,060 --> 00:30:31,660 +YouTube videos + +1146 +00:30:33,340 --> 00:30:34,040 +on that + +1147 +00:30:34,040 --> 00:30:34,600 +that was pretty + +1148 +00:30:34,600 --> 00:30:35,120 +straightforward + +1149 +00:30:35,120 --> 00:30:36,000 +but I do have it + +1150 +00:30:36,000 --> 00:30:36,580 +set up for 10 + +1151 +00:30:36,580 --> 00:30:36,960 +and I'm + +1152 +00:30:37,560 --> 00:30:38,300 +playing around with it + +1153 +00:30:38,300 --> 00:30:39,100 +but before I start + +1154 +00:30:39,100 --> 00:30:39,880 +installing stuff + +1155 +00:30:40,460 --> 00:30:41,360 +it's not going to be + +1156 +00:30:41,360 --> 00:30:42,100 +overly useful + +1157 +00:30:42,100 --> 00:30:42,580 +yeah + +1158 +00:30:42,580 --> 00:30:43,540 +I bet if you just + +1159 +00:30:43,540 --> 00:30:45,000 +Google virtual box + +1160 +00:30:45,000 --> 00:30:45,840 +GPU pass through + +1161 +00:30:45,840 --> 00:30:46,720 +you'll find what you need + +1162 +00:30:46,720 --> 00:30:47,840 +not to mention that + +1163 +00:30:47,840 --> 00:30:48,660 +there's an interesting + +1164 +00:30:48,660 --> 00:30:49,340 +thing that happens + +1165 +00:30:49,340 --> 00:30:51,020 +with these types of things + +1166 +00:30:51,020 --> 00:30:51,580 +even though + +1167 +00:30:51,580 --> 00:30:52,280 +your machine + +1168 +00:30:52,280 --> 00:30:53,340 +your virtual machine + +1169 +00:30:53,340 --> 00:30:54,420 +may only be reporting + +1170 +00:30:54,420 --> 00:30:55,920 +that 256 megs of RAM + +1171 +00:30:56,540 --> 00:30:57,000 +it's + +1172 +00:30:57,000 --> 00:30:58,240 +still passing that + +1173 +00:30:58,240 --> 00:30:59,300 +through to the real card + +1174 +00:30:59,300 --> 00:31:00,180 +and then getting + +1175 +00:31:00,180 --> 00:31:00,980 +a response back + +1176 +00:31:00,980 --> 00:31:02,620 +and that happens + +1177 +00:31:02,620 --> 00:31:03,740 +really fast + +1178 +00:31:03,740 --> 00:31:04,960 +so the + +1179 +00:31:04,960 --> 00:31:06,380 +even though it says + +1180 +00:31:06,380 --> 00:31:07,520 +that it has less RAM + +1181 +00:31:07,520 --> 00:31:07,880 +there + +1182 +00:31:07,880 --> 00:31:09,120 +that's initially + +1183 +00:31:09,120 --> 00:31:09,920 +utilizable + +1184 +00:31:09,920 --> 00:31:10,640 +you know + +1185 +00:31:10,640 --> 00:31:11,460 +that you can use + +1186 +00:31:12,640 --> 00:31:13,980 +it's still pretty quick + +1187 +00:31:13,980 --> 00:31:15,600 +and it may not be + +1188 +00:31:15,600 --> 00:31:16,180 +the bottleneck + +1189 +00:31:16,180 --> 00:31:16,600 +that you think + +1190 +00:31:16,600 --> 00:31:17,260 +it's going to be + +1191 +00:31:17,260 --> 00:31:18,460 +I hadn't tried + +1192 +00:31:18,460 --> 00:31:19,240 +with any photo + +1193 +00:31:19,240 --> 00:31:19,660 +I just + +1194 +00:31:19,660 --> 00:31:20,420 +before I said + +1195 +00:31:20,420 --> 00:31:21,440 +before I got further + +1196 +00:31:21,440 --> 00:31:22,780 +I thought I would ask + +1197 +00:31:22,780 --> 00:31:24,240 +and the other + +1198 +00:31:24,240 --> 00:31:24,920 +little problem + +1199 +00:31:24,920 --> 00:31:25,940 +with that virtual box + +1200 +00:31:25,940 --> 00:31:26,240 +is + +1201 +00:31:26,240 --> 00:31:26,980 +you know + +1202 +00:31:27,000 --> 00:31:27,480 +so I have + +1203 +00:31:27,480 --> 00:31:28,080 +let's say I have + +1204 +00:31:28,080 --> 00:31:28,740 +a USB printer + +1205 +00:31:29,500 --> 00:31:31,760 +and it sees that port + +1206 +00:31:31,760 --> 00:31:32,860 +but it doesn't + +1207 +00:31:32,860 --> 00:31:34,060 +share between + +1208 +00:31:34,060 --> 00:31:34,900 +the host machine + +1209 +00:31:34,900 --> 00:31:35,540 +I couldn't really + +1210 +00:31:35,540 --> 00:31:36,000 +figure out + +1211 +00:31:36,000 --> 00:31:36,800 +how to get any + +1212 +00:31:36,800 --> 00:31:37,760 +or the webcam + +1213 +00:31:37,760 --> 00:31:38,660 +you know it sees + +1214 +00:31:38,660 --> 00:31:39,080 +the port + +1215 +00:31:39,080 --> 00:31:40,360 +but it's like + +1216 +00:31:40,360 --> 00:31:41,460 +my host computer + +1217 +00:31:42,060 --> 00:31:43,420 +has a webcam access + +1218 +00:31:43,420 --> 00:31:44,480 +but I wasn't sure + +1219 +00:31:44,480 --> 00:31:45,180 +how to + +1220 +00:31:45,180 --> 00:31:46,740 +at the top of the screen + +1221 +00:31:46,740 --> 00:31:47,900 +there's going to be + +1222 +00:31:47,900 --> 00:31:49,280 +like a USB devices + +1223 +00:31:49,280 --> 00:31:50,580 +drop down menu + +1224 +00:31:50,580 --> 00:31:51,360 +right + +1225 +00:31:51,360 --> 00:31:52,880 +and you can go in there + +1226 +00:31:52,880 --> 00:31:53,920 +and then assign it + +1227 +00:31:53,920 --> 00:31:54,680 +to whatever + +1228 +00:31:54,680 --> 00:31:55,320 +virtual machine + +1229 +00:31:55,320 --> 00:31:55,700 +you want + +1230 +00:31:55,700 --> 00:31:56,480 +but by default + +1231 +00:31:56,480 --> 00:31:56,980 +you can get + +1232 +00:31:57,000 --> 00:31:58,020 +those are on + +1233 +00:31:58,020 --> 00:31:58,840 +the host machine first + +1234 +00:31:58,840 --> 00:32:00,780 +and so then you can + +1235 +00:32:00,780 --> 00:32:01,840 +when you go and assign + +1236 +00:32:01,840 --> 00:32:02,620 +it to a virtual machine + +1237 +00:32:02,620 --> 00:32:03,600 +it virtually + +1238 +00:32:04,320 --> 00:32:04,960 +unplugs it + +1239 +00:32:04,960 --> 00:32:05,680 +from the host machine + +1240 +00:32:05,680 --> 00:32:06,540 +and plugs it into + +1241 +00:32:06,540 --> 00:32:07,940 +the virtual machine + +1242 +00:32:07,940 --> 00:32:08,720 +and you have to do + +1243 +00:32:08,720 --> 00:32:09,120 +the same thing + +1244 +00:32:09,120 --> 00:32:09,860 +with network connections + +1245 +00:32:09,860 --> 00:32:10,180 +right + +1246 +00:32:10,180 --> 00:32:11,020 +no network + +1247 +00:32:11,020 --> 00:32:12,100 +they're bridged + +1248 +00:32:12,100 --> 00:32:12,320 +okay + +1249 +00:32:12,320 --> 00:32:12,780 +so + +1250 +00:32:12,780 --> 00:32:13,620 +yeah that did it + +1251 +00:32:13,620 --> 00:32:14,120 +automatically + +1252 +00:32:14,120 --> 00:32:14,720 +the network + +1253 +00:32:14,720 --> 00:32:15,640 +I didn't have to do + +1254 +00:32:15,640 --> 00:32:16,260 +much with that + +1255 +00:32:16,260 --> 00:32:17,400 +it was just the + +1256 +00:32:17,400 --> 00:32:18,920 +it could see + +1257 +00:32:18,920 --> 00:32:19,640 +there was a webcam + +1258 +00:32:19,640 --> 00:32:20,460 +but it couldn't + +1259 +00:32:20,460 --> 00:32:21,060 +access it + +1260 +00:32:21,060 --> 00:32:21,180 +right + +1261 +00:32:21,180 --> 00:32:22,180 +because USB devices + +1262 +00:32:22,180 --> 00:32:22,740 +are exclusive + +1263 +00:32:23,440 --> 00:32:25,080 +so you can't have + +1264 +00:32:25,080 --> 00:32:25,780 +a USB plugged + +1265 +00:32:25,780 --> 00:32:26,920 +into a USB device + +1266 +00:32:26,920 --> 00:32:27,660 +plugged into more + +1267 +00:32:27,660 --> 00:32:28,240 +than one machine + +1268 +00:32:28,240 --> 00:32:28,760 +at a time + +1269 +00:32:28,760 --> 00:32:29,580 +so you have to + +1270 +00:32:29,580 --> 00:32:30,440 +effectively go and + +1271 +00:32:30,440 --> 00:32:31,240 +unplug it from the + +1272 +00:32:31,240 --> 00:32:31,620 +host machine + +1273 +00:32:31,620 --> 00:32:32,320 +and plug it into + +1274 +00:32:32,320 --> 00:32:32,920 +the virtual machine + +1275 +00:32:34,360 --> 00:32:34,800 +okay + +1276 +00:32:34,800 --> 00:32:35,680 +well I will play + +1277 +00:32:35,680 --> 00:32:36,240 +around with that + +1278 +00:32:36,240 --> 00:32:36,820 +it's um + +1279 +00:32:36,820 --> 00:32:37,980 +it was also fun + +1280 +00:32:37,980 --> 00:32:38,540 +setting up + +1281 +00:32:38,540 --> 00:32:40,400 +the fresh installs + +1282 +00:32:40,400 --> 00:32:41,120 +of Windows 7 + +1283 +00:32:41,120 --> 00:32:41,840 +I don't know why + +1284 +00:32:41,840 --> 00:32:42,980 +I see what you guys + +1285 +00:32:42,980 --> 00:32:43,640 +were talking about + +1286 +00:32:43,640 --> 00:32:44,000 +yeah + +1287 +00:32:46,120 --> 00:32:47,000 +it's different + +1288 +00:32:47,000 --> 00:32:47,940 +and the nice thing + +1289 +00:32:47,940 --> 00:32:48,920 +is that you can now + +1290 +00:32:48,920 --> 00:32:50,260 +make backup copies + +1291 +00:32:50,260 --> 00:32:51,160 +of that virtual + +1292 +00:32:51,160 --> 00:32:51,900 +machine file + +1293 +00:32:52,500 --> 00:32:53,680 +or put them on + +1294 +00:32:53,680 --> 00:32:54,200 +a different machine + +1295 +00:32:54,200 --> 00:32:55,220 +and fire them up + +1296 +00:32:55,220 --> 00:32:55,740 +and everything's + +1297 +00:32:55,740 --> 00:32:56,300 +exactly the way + +1298 +00:32:56,300 --> 00:32:56,820 +it's supposed to be + +1299 +00:32:56,920 --> 00:32:57,320 +or you can just + +1300 +00:32:57,320 --> 00:32:58,160 +share them on a network + +1301 +00:32:58,160 --> 00:32:59,260 +but you'll have + +1302 +00:32:59,260 --> 00:33:00,000 +exclusive access + +1303 +00:33:00,000 --> 00:33:00,960 +to one of them + +1304 +00:33:01,840 --> 00:33:02,740 +so like + +1305 +00:33:02,740 --> 00:33:03,460 +speaking of network + +1306 +00:33:03,460 --> 00:33:04,100 +did you ever + +1307 +00:33:04,100 --> 00:33:04,980 +research that + +1308 +00:33:04,980 --> 00:33:05,420 +Zools + +1309 +00:33:06,160 --> 00:33:07,160 +no I forgot + +1310 +00:33:07,160 --> 00:33:07,940 +file thing + +1311 +00:33:07,940 --> 00:33:08,820 +no I forgot + +1312 +00:33:08,820 --> 00:33:10,280 +you were correct + +1313 +00:33:10,280 --> 00:33:11,620 +it was IOSafe + +1314 +00:33:11,620 --> 00:33:13,140 +as far as + +1315 +00:33:13,140 --> 00:33:14,220 +the fireproof + +1316 +00:33:17,240 --> 00:33:17,820 +waterproof + +1317 +00:33:18,780 --> 00:33:19,920 +backup drive + +1318 +00:33:19,920 --> 00:33:20,800 +enclosures + +1319 +00:33:20,800 --> 00:33:21,180 +right + +1320 +00:33:22,120 --> 00:33:22,960 +but the + +1321 +00:33:22,960 --> 00:33:24,500 +ones I'm seeing + +1322 +00:33:24,500 --> 00:33:25,400 +that I would + +1323 +00:33:25,400 --> 00:33:26,220 +consider reasonable + +1324 +00:33:26,220 --> 00:33:26,900 +for + +1325 +00:33:26,920 --> 00:33:26,960 +um + +1326 +00:33:27,500 --> 00:33:27,900 +priced + +1327 +00:33:27,900 --> 00:33:29,920 +are all USB 3's + +1328 +00:33:29,920 --> 00:33:30,180 +and + +1329 +00:33:30,180 --> 00:33:31,580 +I'm pretty sure + +1330 +00:33:31,580 --> 00:33:32,300 +you have a + +1331 +00:33:32,300 --> 00:33:33,620 +you know + +1332 +00:33:33,620 --> 00:33:34,260 +maybe a 6 + +1333 +00:33:34,260 --> 00:33:35,320 +9 foot limit + +1334 +00:33:35,320 --> 00:33:36,120 +on the cable + +1335 +00:33:36,800 --> 00:33:37,360 +um + +1336 +00:33:37,360 --> 00:33:38,800 +so here's how + +1337 +00:33:38,800 --> 00:33:39,140 +you get around + +1338 +00:33:39,140 --> 00:33:39,520 +between them + +1339 +00:33:39,520 --> 00:33:40,660 +you can get + +1340 +00:33:40,660 --> 00:33:42,500 +$30 little boxes + +1341 +00:33:42,500 --> 00:33:44,040 +that will take USB + +1342 +00:33:44,040 --> 00:33:44,880 +and turn it into + +1343 +00:33:44,880 --> 00:33:45,180 +network + +1344 +00:33:45,180 --> 00:33:46,200 +oh + +1345 +00:33:46,200 --> 00:33:47,100 +so + +1346 +00:33:47,100 --> 00:33:48,820 +and you can have + +1347 +00:33:48,820 --> 00:33:49,240 +them powered + +1348 +00:33:49,240 --> 00:33:49,900 +over the network + +1349 +00:33:49,900 --> 00:33:51,240 +so they can live + +1350 +00:33:51,240 --> 00:33:51,680 +anywhere + +1351 +00:33:51,680 --> 00:33:53,300 +and you can + +1352 +00:33:53,300 --> 00:33:54,000 +convert + +1353 +00:33:54,000 --> 00:33:54,980 +it's basically + +1354 +00:33:54,980 --> 00:33:55,920 +a USB to network + +1355 +00:33:55,920 --> 00:33:56,380 +adapter + +1356 +00:33:56,380 --> 00:33:57,200 +you can get them + +1357 +00:33:57,200 --> 00:33:57,560 +on Amazon + +1358 +00:33:57,560 --> 00:33:58,140 +for as little + +1359 +00:33:58,140 --> 00:33:59,200 +as like $6 + +1360 +00:33:59,200 --> 00:34:00,480 +don't get the cheap + +1361 +00:34:00,480 --> 00:34:00,700 +ones + +1362 +00:34:01,520 --> 00:34:02,480 +don't get the cheap + +1363 +00:34:02,480 --> 00:34:02,700 +ones + +1364 +00:34:02,700 --> 00:34:03,660 +get the most + +1365 +00:34:03,660 --> 00:34:04,180 +expensive one + +1366 +00:34:04,180 --> 00:34:04,600 +you can find + +1367 +00:34:04,600 --> 00:34:04,900 +actually + +1368 +00:34:04,900 --> 00:34:05,800 +on those + +1369 +00:34:05,800 --> 00:34:06,280 +so there would + +1370 +00:34:06,280 --> 00:34:07,580 +be USB 3 to + +1371 +00:34:07,580 --> 00:34:08,040 +network + +1372 +00:34:08,040 --> 00:34:08,580 +yes + +1373 +00:34:08,580 --> 00:34:09,100 +okay + +1374 +00:34:10,020 --> 00:34:10,500 +and + +1375 +00:34:10,500 --> 00:34:10,840 +alright + +1376 +00:34:10,840 --> 00:34:12,020 +and those + +1377 +00:34:12,020 --> 00:34:12,620 +what they'll do + +1378 +00:34:12,620 --> 00:34:12,920 +is they + +1379 +00:34:12,920 --> 00:34:13,600 +they basically + +1380 +00:34:13,600 --> 00:34:13,980 +become + +1381 +00:34:13,980 --> 00:34:15,780 +little SMB + +1382 +00:34:15,780 --> 00:34:16,060 +servers + +1383 +00:34:16,060 --> 00:34:17,240 +so it becomes + +1384 +00:34:17,240 --> 00:34:18,120 +like a network + +1385 +00:34:18,120 --> 00:34:18,700 +share + +1386 +00:34:18,700 --> 00:34:19,600 +on the network + +1387 +00:34:20,480 --> 00:34:21,500 +it's pretty cool + +1388 +00:34:22,020 --> 00:34:22,740 +check them out + +1389 +00:34:22,740 --> 00:34:22,980 +alright + +1390 +00:34:22,980 --> 00:34:23,840 +I will research + +1391 +00:34:23,840 --> 00:34:24,280 +that because + +1392 +00:34:24,280 --> 00:34:25,460 +the USB 3 ones + +1393 +00:34:25,460 --> 00:34:26,020 +you could get + +1394 +00:34:26,020 --> 00:34:27,320 +a 3 + +1395 +00:34:28,220 --> 00:34:28,740 +terabyte + +1396 +00:34:30,080 --> 00:34:30,860 +IOS safe + +1397 +00:34:30,860 --> 00:34:31,300 +for maybe + +1398 +00:34:31,300 --> 00:34:32,120 +$350 + +1399 +00:34:32,120 --> 00:34:33,380 +with no drives + +1400 +00:34:33,380 --> 00:34:33,880 +but yes + +1401 +00:34:35,120 --> 00:34:35,640 +yes + +1402 +00:34:35,640 --> 00:34:36,080 +actually + +1403 +00:34:37,240 --> 00:34:38,280 +that did have + +1404 +00:34:38,280 --> 00:34:38,640 +a drive + +1405 +00:34:38,640 --> 00:34:39,360 +for $350 + +1406 +00:34:39,360 --> 00:34:39,840 +I feel like + +1407 +00:34:39,840 --> 00:34:40,200 +it should come + +1408 +00:34:40,200 --> 00:34:40,640 +with a drive + +1409 +00:34:40,640 --> 00:34:41,820 +yeah but the + +1410 +00:34:41,820 --> 00:34:42,340 +IOS safes + +1411 +00:34:42,340 --> 00:34:42,960 +are stupid + +1412 +00:34:42,960 --> 00:34:43,440 +expensive + +1413 +00:34:43,440 --> 00:34:44,560 +because they're + +1414 +00:34:44,560 --> 00:34:44,900 +fireproof + +1415 +00:34:44,900 --> 00:34:45,840 +and you know + +1416 +00:34:45,840 --> 00:34:46,300 +all of that + +1417 +00:34:46,300 --> 00:34:46,740 +yeah but the + +1418 +00:34:46,740 --> 00:34:47,380 +ones with the + +1419 +00:34:47,380 --> 00:34:47,720 +network + +1420 +00:34:47,720 --> 00:34:48,620 +are started + +1421 +00:34:48,620 --> 00:34:49,380 +like they were + +1422 +00:34:49,380 --> 00:34:51,140 +about $650 + +1423 +00:34:51,140 --> 00:34:52,520 +without any + +1424 +00:34:52,520 --> 00:34:52,840 +drives + +1425 +00:34:52,840 --> 00:34:54,160 +that's the ones + +1426 +00:34:54,160 --> 00:34:54,740 +I'm thinking about + +1427 +00:34:54,740 --> 00:34:55,460 +yeah + +1428 +00:34:55,460 --> 00:34:56,000 +well I gotta + +1429 +00:34:56,020 --> 00:34:56,320 +move on + +1430 +00:34:56,320 --> 00:34:57,300 +thank you for + +1431 +00:34:57,300 --> 00:34:57,480 +the call + +1432 +00:34:57,480 --> 00:34:58,580 +appreciate it + +1433 +00:34:58,580 --> 00:34:59,620 +let's move on + +1434 +00:34:59,620 --> 00:35:01,040 +to Bruce + +1435 +00:35:01,580 --> 00:35:02,400 +let's talk to Bruce + +1436 +00:35:02,400 --> 00:35:02,800 +hello Bruce + +1437 +00:35:02,800 --> 00:35:03,280 +how are you + +1438 +00:35:03,900 --> 00:35:04,280 +good morning + +1439 +00:35:04,280 --> 00:35:04,620 +I'm good + +1440 +00:35:04,620 --> 00:35:04,900 +and yourself + +1441 +00:35:04,900 --> 00:35:05,580 +not bad + +1442 +00:35:05,580 --> 00:35:06,040 +what can I do + +1443 +00:35:06,040 --> 00:35:06,320 +for you + +1444 +00:35:06,320 --> 00:35:08,140 +can you talk + +1445 +00:35:08,140 --> 00:35:08,540 +a little more + +1446 +00:35:08,540 --> 00:35:09,600 +about Bitcoin + +1447 +00:35:09,600 --> 00:35:10,200 +and then + +1448 +00:35:10,200 --> 00:35:11,040 +the Bitcoin + +1449 +00:35:11,040 --> 00:35:11,600 +mining + +1450 +00:35:11,600 --> 00:35:13,200 +I hear these + +1451 +00:35:13,200 --> 00:35:13,700 +people that are + +1452 +00:35:13,700 --> 00:35:14,480 +Bitcoin mining + +1453 +00:35:14,480 --> 00:35:15,260 +and I don't + +1454 +00:35:15,260 --> 00:35:16,000 +really understand + +1455 +00:35:16,000 --> 00:35:17,040 +what they're looking + +1456 +00:35:17,040 --> 00:35:17,340 +for + +1457 +00:35:17,340 --> 00:35:17,400 +I'm going to + +1458 +00:35:17,400 --> 00:35:17,740 +turn it over + +1459 +00:35:17,740 --> 00:35:18,020 +to Rob + +1460 +00:35:18,020 --> 00:35:18,480 +because that's + +1461 +00:35:18,480 --> 00:35:19,080 +his area + +1462 +00:35:19,080 --> 00:35:19,660 +and then hang on + +1463 +00:35:19,660 --> 00:35:20,760 +the other thing + +1464 +00:35:20,760 --> 00:35:22,100 +is I see that + +1465 +00:35:22,100 --> 00:35:22,880 +Ripple is trading + +1466 +00:35:22,880 --> 00:35:24,400 +at almost 7 + +1467 +00:35:24,400 --> 00:35:24,920 +and it's at + +1468 +00:35:24,920 --> 00:35:25,840 +201 as we + +1469 +00:35:26,900 --> 00:35:27,400 +speak + +1470 +00:35:27,400 --> 00:35:27,900 +yeah + +1471 +00:35:27,900 --> 00:35:28,520 +isn't that a + +1472 +00:35:28,520 --> 00:35:29,360 +bank based + +1473 +00:35:30,200 --> 00:35:30,700 +cryptocurrency + +1474 +00:35:30,700 --> 00:35:31,820 +yeah Ripple's + +1475 +00:35:31,820 --> 00:35:32,500 +interesting because + +1476 +00:35:32,500 --> 00:35:32,980 +it's like a + +1477 +00:35:32,980 --> 00:35:33,460 +decentralized + +1478 +00:35:33,460 --> 00:35:34,480 +centralized currency + +1479 +00:35:34,480 --> 00:35:35,500 +I don't want to + +1480 +00:35:35,500 --> 00:35:35,860 +get too much + +1481 +00:35:35,860 --> 00:35:36,120 +into that + +1482 +00:35:36,120 --> 00:35:36,440 +because it's + +1483 +00:35:36,440 --> 00:35:37,000 +pretty technical + +1484 +00:35:37,000 --> 00:35:37,520 +and there's a lot + +1485 +00:35:37,520 --> 00:35:37,680 +involved + +1486 +00:35:37,680 --> 00:35:38,180 +but I would + +1487 +00:35:38,180 --> 00:35:38,720 +definitely tell + +1488 +00:35:38,720 --> 00:35:39,340 +anybody who's + +1489 +00:35:39,340 --> 00:35:40,120 +already knows + +1490 +00:35:40,120 --> 00:35:40,600 +something about + +1491 +00:35:40,600 --> 00:35:40,900 +crypto + +1492 +00:35:40,900 --> 00:35:41,860 +to go look at + +1493 +00:35:41,860 --> 00:35:42,260 +Ripple if you + +1494 +00:35:42,260 --> 00:35:42,700 +haven't already + +1495 +00:35:43,260 --> 00:35:44,320 +but yeah as far + +1496 +00:35:44,320 --> 00:35:44,940 +as Bitcoin mining + +1497 +00:35:44,940 --> 00:35:45,260 +goes + +1498 +00:35:45,260 --> 00:35:46,320 +it's I mean + +1499 +00:35:46,320 --> 00:35:47,240 +really all it is + +1500 +00:35:47,240 --> 00:35:47,780 +on a fundamental + +1501 +00:35:47,780 --> 00:35:48,860 +level is + +1502 +00:35:48,860 --> 00:35:49,700 +your computer + +1503 +00:35:49,700 --> 00:35:50,360 +being used + +1504 +00:35:50,360 --> 00:35:50,980 +to solve + +1505 +00:35:50,980 --> 00:35:51,560 +the algorithm + +1506 +00:35:51,560 --> 00:35:52,180 +that is + +1507 +00:35:52,180 --> 00:35:53,140 +that particular + +1508 +00:35:53,140 --> 00:35:53,800 +block of + +1509 +00:35:53,800 --> 00:35:54,200 +Bitcoins + +1510 +00:35:55,040 --> 00:35:55,820 +so it's + +1511 +00:35:55,820 --> 00:35:56,200 +just trying + +1512 +00:35:56,200 --> 00:35:57,500 +to decrypt + +1513 +00:35:57,500 --> 00:35:58,040 +that block + +1514 +00:35:58,040 --> 00:35:58,620 +essentially + +1515 +00:35:58,620 --> 00:36:00,300 +and you get + +1516 +00:36:00,300 --> 00:36:00,800 +a percentage + +1517 +00:36:00,800 --> 00:36:01,440 +of those coins + +1518 +00:36:01,440 --> 00:36:01,980 +based on how + +1519 +00:36:01,980 --> 00:36:02,340 +much work + +1520 +00:36:02,340 --> 00:36:02,820 +your computer + +1521 +00:36:02,820 --> 00:36:03,500 +did if you're + +1522 +00:36:03,500 --> 00:36:04,180 +using a pool + +1523 +00:36:04,180 --> 00:36:04,980 +right so + +1524 +00:36:04,980 --> 00:36:06,900 +for the + +1525 +00:36:06,900 --> 00:36:07,680 +uninitiated + +1526 +00:36:08,420 --> 00:36:09,800 +there is a + +1527 +00:36:09,800 --> 00:36:10,960 +set number + +1528 +00:36:10,960 --> 00:36:11,640 +of + +1529 +00:36:12,540 --> 00:36:13,140 +Bitcoins + +1530 +00:36:13,140 --> 00:36:14,060 +that are + +1531 +00:36:14,060 --> 00:36:14,400 +available + +1532 +00:36:14,400 --> 00:36:15,600 +and how + +1533 +00:36:15,600 --> 00:36:16,600 +each one of + +1534 +00:36:16,600 --> 00:36:17,080 +those coins + +1535 +00:36:17,080 --> 00:36:17,940 +comes into + +1536 +00:36:17,940 --> 00:36:18,420 +the world + +1537 +00:36:18,420 --> 00:36:19,460 +is that a + +1538 +00:36:19,460 --> 00:36:19,900 +number of + +1539 +00:36:19,900 --> 00:36:20,720 +machines are + +1540 +00:36:20,720 --> 00:36:21,420 +involved in + +1541 +00:36:21,420 --> 00:36:21,740 +the process + +1542 +00:36:21,740 --> 00:36:23,040 +of creating + +1543 +00:36:23,040 --> 00:36:23,900 +that particular + +1544 +00:36:23,900 --> 00:36:24,980 +block for + +1545 +00:36:24,980 --> 00:36:25,340 +the blockchain + +1546 +00:36:25,820 --> 00:36:26,400 +so each one + +1547 +00:36:26,400 --> 00:36:26,660 +that gets + +1548 +00:36:26,660 --> 00:36:27,000 +completed + +1549 +00:36:27,000 --> 00:36:27,480 +is a new + +1550 +00:36:27,480 --> 00:36:27,740 +Bitcoin + +1551 +00:36:27,740 --> 00:36:28,220 +that exists + +1552 +00:36:28,220 --> 00:36:28,820 +in the world + +1553 +00:36:28,820 --> 00:36:30,820 +and the + +1554 +00:36:31,360 --> 00:36:31,900 +way that the + +1555 +00:36:31,900 --> 00:36:32,520 +algorithm works + +1556 +00:36:32,520 --> 00:36:33,540 +is that each + +1557 +00:36:33,540 --> 00:36:34,500 +coin is more + +1558 +00:36:34,500 --> 00:36:35,100 +difficult + +1559 +00:36:35,100 --> 00:36:35,740 +exponentially + +1560 +00:36:35,740 --> 00:36:36,520 +than the one + +1561 +00:36:36,520 --> 00:36:36,840 +before + +1562 +00:36:37,380 --> 00:36:38,340 +and so there's + +1563 +00:36:38,340 --> 00:36:38,660 +a bunch of + +1564 +00:36:38,660 --> 00:36:39,140 +machines that + +1565 +00:36:39,140 --> 00:36:39,560 +are all trying + +1566 +00:36:39,560 --> 00:36:40,060 +to solve + +1567 +00:36:40,060 --> 00:36:41,160 +a particular + +1568 +00:36:41,160 --> 00:36:41,800 +yeah because + +1569 +00:36:41,800 --> 00:36:42,320 +at this point + +1570 +00:36:42,320 --> 00:36:42,860 +it used to be + +1571 +00:36:42,860 --> 00:36:43,300 +that you could + +1572 +00:36:43,300 --> 00:36:43,940 +mine solo + +1573 +00:36:43,940 --> 00:36:44,820 +just by yourself + +1574 +00:36:44,820 --> 00:36:45,440 +and you could + +1575 +00:36:45,440 --> 00:36:46,440 +get I mean + +1576 +00:36:46,440 --> 00:36:47,080 +thousands of + +1577 +00:36:47,080 --> 00:36:47,540 +coins a day + +1578 +00:36:47,540 --> 00:36:48,120 +at one point + +1579 +00:36:48,120 --> 00:36:49,480 +but as it got + +1580 +00:36:49,480 --> 00:36:49,980 +more difficult + +1581 +00:36:49,980 --> 00:36:50,740 +it's essentially + +1582 +00:36:50,740 --> 00:36:51,400 +now impossible + +1583 +00:36:51,400 --> 00:36:52,780 +to mine on + +1584 +00:36:52,780 --> 00:36:53,160 +your own + +1585 +00:36:53,160 --> 00:36:53,520 +with just + +1586 +00:36:53,520 --> 00:36:54,020 +your computer + +1587 +00:36:54,480 --> 00:36:55,400 +so what the + +1588 +00:36:55,400 --> 00:36:55,860 +vast majority + +1589 +00:36:55,860 --> 00:36:56,420 +of people do + +1590 +00:36:56,420 --> 00:36:57,020 +is they join + +1591 +00:36:57,020 --> 00:36:57,780 +what are called + +1592 +00:36:57,780 --> 00:36:58,480 +pools which are + +1593 +00:36:58,480 --> 00:36:59,020 +just networks + +1594 +00:36:59,020 --> 00:37:00,140 +of computers + +1595 +00:37:00,140 --> 00:37:00,720 +it's almost + +1596 +00:37:00,720 --> 00:37:01,340 +like a botnet + +1597 +00:37:01,340 --> 00:37:01,900 +in a way + +1598 +00:37:01,900 --> 00:37:03,140 +and it's + +1599 +00:37:03,140 --> 00:37:03,700 +tens of + +1600 +00:37:03,700 --> 00:37:04,220 +thousands of + +1601 +00:37:04,220 --> 00:37:04,760 +machines all + +1602 +00:37:04,760 --> 00:37:05,080 +around the + +1603 +00:37:05,080 --> 00:37:05,480 +world that + +1604 +00:37:05,480 --> 00:37:05,780 +are all + +1605 +00:37:05,780 --> 00:37:06,260 +working to + +1606 +00:37:06,260 --> 00:37:06,660 +solve that + +1607 +00:37:06,660 --> 00:37:07,220 +one block + +1608 +00:37:07,220 --> 00:37:07,920 +together + +1609 +00:37:07,920 --> 00:37:09,100 +and then you + +1610 +00:37:09,100 --> 00:37:09,540 +are awarded + +1611 +00:37:09,540 --> 00:37:09,980 +a small + +1612 +00:37:09,980 --> 00:37:10,760 +amount based + +1613 +00:37:10,760 --> 00:37:11,220 +on what + +1614 +00:37:11,220 --> 00:37:11,620 +your machine + +1615 +00:37:11,620 --> 00:37:11,840 +did + +1616 +00:37:13,540 --> 00:37:14,380 +so yeah + +1617 +00:37:14,380 --> 00:37:15,180 +for the most + +1618 +00:37:15,180 --> 00:37:15,600 +part Bitcoin + +1619 +00:37:15,600 --> 00:37:16,300 +mining is not + +1620 +00:37:16,300 --> 00:37:17,160 +profitable these + +1621 +00:37:17,160 --> 00:37:17,600 +days you'll + +1622 +00:37:17,600 --> 00:37:18,140 +spend more on + +1623 +00:37:18,140 --> 00:37:18,480 +the electricity + +1624 +00:37:18,480 --> 00:37:19,140 +that it takes + +1625 +00:37:19,620 --> 00:37:20,320 +unless you + +1626 +00:37:20,320 --> 00:37:21,160 +have like a + +1627 +00:37:21,160 --> 00:37:21,760 +crazy warehouse + +1628 +00:37:21,760 --> 00:37:22,420 +in the jungle + +1629 +00:37:22,420 --> 00:37:23,440 +that has every + +1630 +00:37:23,440 --> 00:37:24,240 +GPU manufactured + +1631 +00:37:24,240 --> 00:37:25,240 +by AMD last + +1632 +00:37:25,240 --> 00:37:26,140 +year inside + +1633 +00:37:26,140 --> 00:37:26,480 +of it + +1634 +00:37:26,480 --> 00:37:27,040 +and it's + +1635 +00:37:27,040 --> 00:37:27,460 +solar powered + +1636 +00:37:27,460 --> 00:37:27,760 +yeah + +1637 +00:37:29,040 --> 00:37:29,940 +but yeah I + +1638 +00:37:29,940 --> 00:37:30,280 +mean these + +1639 +00:37:30,280 --> 00:37:30,980 +other cryptocurrencies + +1640 +00:37:30,980 --> 00:37:32,280 +you can definitely + +1641 +00:37:32,280 --> 00:37:32,980 +still mine them + +1642 +00:37:32,980 --> 00:37:33,660 +there's a lot + +1643 +00:37:33,660 --> 00:37:33,980 +of research + +1644 +00:37:33,980 --> 00:37:34,420 +that's done + +1645 +00:37:34,420 --> 00:37:34,860 +on it but + +1646 +00:37:34,860 --> 00:37:35,660 +I highly + +1647 +00:37:35,660 --> 00:37:36,200 +suggest that + +1648 +00:37:36,200 --> 00:37:36,740 +everybody go + +1649 +00:37:36,740 --> 00:37:37,100 +and do that + +1650 +00:37:37,100 --> 00:37:37,960 +because whether + +1651 +00:37:37,960 --> 00:37:38,440 +you like Bitcoin + +1652 +00:37:38,440 --> 00:37:39,140 +or not it's + +1653 +00:37:39,140 --> 00:37:39,540 +a part of + +1654 +00:37:39,540 --> 00:37:39,920 +things right + +1655 +00:37:39,920 --> 00:37:40,380 +now and it's + +1656 +00:37:40,380 --> 00:37:40,820 +going to be + +1657 +00:37:40,820 --> 00:37:41,200 +for the + +1658 +00:37:41,200 --> 00:37:41,640 +foreseeable + +1659 +00:37:41,640 --> 00:37:41,960 +future + +1660 +00:37:43,320 --> 00:37:43,880 +yeah I + +1661 +00:37:43,880 --> 00:37:44,480 +believe that + +1662 +00:37:45,260 --> 00:37:46,240 +well thank you + +1663 +00:37:46,240 --> 00:37:46,640 +so much + +1664 +00:37:46,640 --> 00:37:47,240 +no problem + +1665 +00:37:47,700 --> 00:37:48,240 +alright bye + +1666 +00:37:48,240 --> 00:37:49,240 +yeah it's one of + +1667 +00:37:49,240 --> 00:37:49,720 +the questions that + +1668 +00:37:49,720 --> 00:37:50,220 +I get quite a + +1669 +00:37:50,220 --> 00:37:50,580 +lot is + +1670 +00:37:51,360 --> 00:37:51,760 +what + +1671 +00:37:51,760 --> 00:37:53,420 +how is this + +1672 +00:37:53,420 --> 00:37:54,060 +Bitcoin a thing + +1673 +00:37:54,060 --> 00:37:54,380 +what's all + +1674 +00:37:54,380 --> 00:37:54,780 +this Bitcoin + +1675 +00:37:54,780 --> 00:37:56,220 +yeah I'm + +1676 +00:37:56,220 --> 00:37:56,620 +happy to talk + +1677 +00:37:56,620 --> 00:37:57,020 +about it though + +1678 +00:37:57,020 --> 00:37:58,780 +alright give us + +1679 +00:37:58,780 --> 00:37:58,940 +a call + +1680 +00:37:59,900 --> 00:38:00,620 +7902040 we'll + +1681 +00:38:00,620 --> 00:38:01,060 +be back right + +1682 +00:38:01,060 --> 00:38:01,400 +after these + +1683 +00:38:01,400 --> 00:38:01,840 +messages + +1684 +00:38:18,400 --> 00:38:19,440 +computer troubles + +1685 +00:38:19,440 --> 00:38:20,380 +need some + +1686 +00:38:20,380 --> 00:38:21,280 +advice call + +1687 +00:38:21,280 --> 00:38:21,680 +in now + +1688 +00:38:21,680 --> 00:38:22,500 +Mike Swanson + +1689 +00:38:22,500 --> 00:38:23,080 +will be back + +1690 +00:38:23,080 --> 00:38:23,660 +after these + +1691 +00:38:23,660 --> 00:38:24,080 +messages + +1692 +00:38:24,080 --> 00:38:24,760 +thank you + +1693 +00:38:24,760 --> 00:38:25,040 +the computer + +1694 +00:38:25,040 --> 00:38:25,720 +guru show + +1695 +00:38:25,720 --> 00:38:26,940 +AM 1030 + +1696 +00:38:26,940 --> 00:38:27,800 +KBOY + +1697 +00:38:27,800 --> 00:38:28,740 +The Voice + +1698 +00:38:42,980 --> 00:38:44,340 +Mike Swanson + +1699 +00:38:44,340 --> 00:38:45,000 +your computer + +1700 +00:38:45,000 --> 00:38:45,960 +guru is just + +1701 +00:38:45,960 --> 00:38:46,520 +a click away + +1702 +00:38:46,520 --> 00:38:47,660 +listen and watch + +1703 +00:38:47,660 --> 00:38:48,380 +a guru show + +1704 +00:38:48,380 --> 00:38:49,060 +dot com + +1705 +00:38:49,060 --> 00:38:50,300 +this is the + +1706 +00:38:50,300 --> 00:38:50,920 +computer guru + +1707 +00:38:50,920 --> 00:38:51,340 +show + +1708 +00:38:51,340 --> 00:38:53,160 +welcome back + +1709 +00:38:54,120 --> 00:38:54,440 +to the computer + +1710 +00:38:54,440 --> 00:38:54,880 +guru show + +1711 +00:38:55,660 --> 00:38:56,960 +if you'd like to + +1712 +00:38:56,960 --> 00:38:57,560 +be part of the + +1713 +00:38:57,560 --> 00:38:58,040 +show you can + +1714 +00:38:58,040 --> 00:38:58,480 +give us a call + +1715 +00:38:58,480 --> 00:39:01,240 +520-790-2040 + +1716 +00:39:02,400 --> 00:39:03,100 +let's go ahead + +1717 +00:39:03,100 --> 00:39:03,360 +and talk to + +1718 +00:39:03,360 --> 00:39:03,520 +Sandy + +1719 +00:39:03,520 --> 00:39:04,020 +hello Sandy + +1720 +00:39:04,020 --> 00:39:04,500 +how are you + +1721 +00:39:05,120 --> 00:39:05,900 +well good + +1722 +00:39:05,900 --> 00:39:06,260 +morning + +1723 +00:39:06,260 --> 00:39:07,840 +I just got + +1724 +00:39:07,840 --> 00:39:08,760 +a new computer + +1725 +00:39:08,760 --> 00:39:09,600 +and I'm putting + +1726 +00:39:09,600 --> 00:39:10,180 +all the new + +1727 +00:39:10,760 --> 00:39:11,600 +software and + +1728 +00:39:11,600 --> 00:39:12,220 +things on + +1729 +00:39:12,220 --> 00:39:13,200 +and my new + +1730 +00:39:13,200 --> 00:39:14,500 +machine has + +1731 +00:39:14,500 --> 00:39:15,780 +office 365 + +1732 +00:39:15,780 --> 00:39:17,480 +360 which is + +1733 +00:39:17,480 --> 00:39:18,140 +I think cloud + +1734 +00:39:18,140 --> 00:39:18,460 +based + +1735 +00:39:18,460 --> 00:39:19,720 +and I have + +1736 +00:39:19,720 --> 00:39:20,200 +this prejudice + +1737 +00:39:20,200 --> 00:39:20,740 +I just + +1738 +00:39:20,740 --> 00:39:21,620 +I'm avoiding + +1739 +00:39:21,620 --> 00:39:22,180 +the cloud + +1740 +00:39:22,180 --> 00:39:22,720 +still + +1741 +00:39:22,720 --> 00:39:23,380 +okay + +1742 +00:39:23,380 --> 00:39:24,180 +I found out + +1743 +00:39:24,180 --> 00:39:24,780 +that there's + +1744 +00:39:24,780 --> 00:39:25,780 +a Libra office + +1745 +00:39:25,780 --> 00:39:27,240 +or office Libra + +1746 +00:39:27,240 --> 00:39:28,520 +which has a suite + +1747 +00:39:28,520 --> 00:39:29,320 +of a calculator + +1748 +00:39:29,320 --> 00:39:30,560 +and like a word + +1749 +00:39:30,560 --> 00:39:31,060 +processor + +1750 +00:39:31,060 --> 00:39:33,280 +and PowerPoint + +1751 +00:39:33,280 --> 00:39:33,820 +like + +1752 +00:39:33,820 --> 00:39:34,880 +yeah it's + +1753 +00:39:34,880 --> 00:39:35,680 +it's basically + +1754 +00:39:35,680 --> 00:39:36,740 +a clone of office + +1755 +00:39:36,740 --> 00:39:38,460 +now would that + +1756 +00:39:38,460 --> 00:39:39,100 +would that + +1757 +00:39:39,100 --> 00:39:40,600 +if I use that + +1758 +00:39:40,600 --> 00:39:41,220 +too long + +1759 +00:39:41,220 --> 00:39:42,680 +will my data + +1760 +00:39:42,680 --> 00:39:43,780 +eventually not be + +1761 +00:39:43,780 --> 00:39:44,460 +compatible + +1762 +00:39:44,460 --> 00:39:45,400 +do you think + +1763 +00:39:45,400 --> 00:39:46,020 +in the future + +1764 +00:39:46,020 --> 00:39:46,240 +to + +1765 +00:39:47,020 --> 00:39:47,620 +well + +1766 +00:39:47,620 --> 00:39:48,840 +as of right now + +1767 +00:39:48,840 --> 00:39:49,380 +Libra office + +1768 +00:39:49,380 --> 00:39:49,960 +has the ability + +1769 +00:39:49,960 --> 00:39:50,980 +to save in all + +1770 +00:39:50,980 --> 00:39:51,660 +of the Microsoft + +1771 +00:39:51,660 --> 00:39:52,460 +office formats + +1772 +00:39:52,460 --> 00:39:53,420 +and I really + +1773 +00:39:53,420 --> 00:39:53,980 +don't see that + +1774 +00:39:53,980 --> 00:39:54,440 +changing in the + +1775 +00:39:54,440 --> 00:39:54,820 +future because + +1776 +00:39:54,820 --> 00:39:55,280 +it's kind of like + +1777 +00:39:55,280 --> 00:39:55,900 +their big selling + +1778 +00:39:55,900 --> 00:39:56,680 +point is that + +1779 +00:39:56,680 --> 00:39:57,140 +it's compatible + +1780 +00:39:57,140 --> 00:39:58,280 +with office + +1781 +00:39:58,280 --> 00:40:00,160 +so as long as + +1782 +00:40:00,160 --> 00:40:00,640 +you're backing it + +1783 +00:40:00,640 --> 00:40:01,040 +up properly + +1784 +00:40:01,040 --> 00:40:01,560 +it should be + +1785 +00:40:01,560 --> 00:40:01,780 +fine + +1786 +00:40:02,440 --> 00:40:03,000 +okay + +1787 +00:40:03,000 --> 00:40:03,480 +okay + +1788 +00:40:03,480 --> 00:40:03,900 +because I + +1789 +00:40:03,900 --> 00:40:05,460 +is office + +1790 +00:40:05,460 --> 00:40:07,240 +365 cloud + +1791 +00:40:07,240 --> 00:40:07,840 +based mean + +1792 +00:40:07,840 --> 00:40:08,800 +that in the + +1793 +00:40:08,800 --> 00:40:09,100 +future + +1794 +00:40:09,100 --> 00:40:10,400 +I would + +1795 +00:40:10,400 --> 00:40:10,800 +purchase + +1796 +00:40:10,800 --> 00:40:11,680 +the next + +1797 +00:40:11,680 --> 00:40:12,360 +version of + +1798 +00:40:12,360 --> 00:40:12,720 +office + +1799 +00:40:13,360 --> 00:40:14,200 +without a + +1800 +00:40:14,200 --> 00:40:15,000 +CD + +1801 +00:40:15,000 --> 00:40:15,420 +is that + +1802 +00:40:15,420 --> 00:40:16,100 +what that + +1803 +00:40:16,100 --> 00:40:16,360 +means + +1804 +00:40:16,360 --> 00:40:16,900 +so the way + +1805 +00:40:16,900 --> 00:40:17,320 +that 365 + +1806 +00:40:17,320 --> 00:40:18,560 +works is + +1807 +00:40:19,360 --> 00:40:20,580 +this is one + +1808 +00:40:20,580 --> 00:40:20,960 +of my complaints + +1809 +00:40:20,960 --> 00:40:21,580 +about Microsoft + +1810 +00:40:21,580 --> 00:40:23,380 +and I'll do a + +1811 +00:40:23,380 --> 00:40:23,920 +short rant + +1812 +00:40:23,920 --> 00:40:24,580 +and then we'll + +1813 +00:40:24,580 --> 00:40:25,880 +actually answer + +1814 +00:40:25,880 --> 00:40:26,340 +your question + +1815 +00:40:26,340 --> 00:40:27,360 +is that + +1816 +00:40:27,360 --> 00:40:27,780 +Microsoft + +1817 +00:40:27,780 --> 00:40:28,200 +needs to + +1818 +00:40:28,200 --> 00:40:28,760 +stop naming + +1819 +00:40:28,760 --> 00:40:29,500 +products that + +1820 +00:40:29,500 --> 00:40:29,860 +are different + +1821 +00:40:29,860 --> 00:40:30,620 +with the same + +1822 +00:40:30,620 --> 00:40:30,960 +name + +1823 +00:40:30,960 --> 00:40:31,440 +yeah + +1824 +00:40:31,440 --> 00:40:31,980 +right + +1825 +00:40:31,980 --> 00:40:32,660 +so there's + +1826 +00:40:32,660 --> 00:40:33,120 +Microsoft + +1827 +00:40:33,120 --> 00:40:34,520 +office 365 + +1828 +00:40:35,280 --> 00:40:36,420 +and within + +1829 +00:40:36,420 --> 00:40:37,140 +365 + +1830 +00:40:37,140 --> 00:40:38,260 +there is the + +1831 +00:40:38,260 --> 00:40:38,720 +version that + +1832 +00:40:38,720 --> 00:40:39,360 +you can just + +1833 +00:40:39,360 --> 00:40:39,840 +purchase + +1834 +00:40:39,840 --> 00:40:40,980 +there is the + +1835 +00:40:40,980 --> 00:40:41,560 +version that + +1836 +00:40:41,560 --> 00:40:43,000 +is the + +1837 +00:40:43,000 --> 00:40:43,740 +subscription + +1838 +00:40:43,740 --> 00:40:44,280 +model + +1839 +00:40:45,100 --> 00:40:46,000 +it's also + +1840 +00:40:46,000 --> 00:40:46,880 +what they call + +1841 +00:40:46,880 --> 00:40:47,440 +their mail + +1842 +00:40:47,440 --> 00:40:47,780 +service + +1843 +00:40:48,720 --> 00:40:49,640 +it's just + +1844 +00:40:49,640 --> 00:40:50,800 +it's ridiculous + +1845 +00:40:50,800 --> 00:40:51,560 +that they name + +1846 +00:40:51,560 --> 00:40:52,160 +everything the + +1847 +00:40:52,160 --> 00:40:52,660 +same thing + +1848 +00:40:53,380 --> 00:40:54,760 +but so + +1849 +00:40:54,760 --> 00:40:56,200 +the what is + +1850 +00:40:56,200 --> 00:40:57,320 +commonly referred + +1851 +00:40:57,320 --> 00:40:57,920 +to is the + +1852 +00:40:57,920 --> 00:40:58,800 +cloud version + +1853 +00:40:58,800 --> 00:41:00,260 +of office + +1854 +00:41:00,260 --> 00:41:01,780 +365 is the + +1855 +00:41:01,780 --> 00:41:02,240 +subscription + +1856 +00:41:02,240 --> 00:41:02,800 +model + +1857 +00:41:02,800 --> 00:41:03,980 +where you give + +1858 +00:41:03,980 --> 00:41:04,920 +them a hundred + +1859 +00:41:04,920 --> 00:41:05,520 +dollars a year + +1860 +00:41:05,520 --> 00:41:07,120 +and they give + +1861 +00:41:07,120 --> 00:41:07,780 +you office + +1862 +00:41:07,780 --> 00:41:08,940 +on up to + +1863 +00:41:08,940 --> 00:41:10,020 +five computers + +1864 +00:41:10,020 --> 00:41:11,620 +and effectively + +1865 +00:41:11,620 --> 00:41:12,320 +an unlimited + +1866 +00:41:12,320 --> 00:41:12,920 +number of + +1867 +00:41:12,920 --> 00:41:13,700 +mobile devices + +1868 +00:41:14,760 --> 00:41:16,280 +so and + +1869 +00:41:16,280 --> 00:41:17,240 +there would + +1870 +00:41:17,240 --> 00:41:17,580 +be no + +1871 +00:41:17,580 --> 00:41:18,020 +purchasing + +1872 +00:41:18,020 --> 00:41:19,020 +new versions + +1873 +00:41:19,020 --> 00:41:19,620 +it would just + +1874 +00:41:19,620 --> 00:41:20,060 +automatically + +1875 +00:41:20,060 --> 00:41:20,900 +become the + +1876 +00:41:20,900 --> 00:41:21,340 +new version + +1877 +00:41:21,340 --> 00:41:21,920 +when the + +1878 +00:41:21,920 --> 00:41:22,300 +new version + +1879 +00:41:22,300 --> 00:41:22,740 +is released + +1880 +00:41:24,300 --> 00:41:25,340 +so that's + +1881 +00:41:25,340 --> 00:41:25,760 +how the + +1882 +00:41:25,760 --> 00:41:27,120 +what they call + +1883 +00:41:27,120 --> 00:41:27,700 +the cloud + +1884 +00:41:27,700 --> 00:41:28,200 +version + +1885 +00:41:28,900 --> 00:41:29,840 +really is + +1886 +00:41:29,840 --> 00:41:30,840 +has nothing + +1887 +00:41:30,840 --> 00:41:31,360 +to do with + +1888 +00:41:31,360 --> 00:41:31,820 +my data + +1889 +00:41:31,820 --> 00:41:32,360 +being in + +1890 +00:41:32,360 --> 00:41:32,740 +the cloud + +1891 +00:41:32,740 --> 00:41:33,660 +no they + +1892 +00:41:33,660 --> 00:41:33,940 +certainly + +1893 +00:41:33,940 --> 00:41:34,760 +encourage you + +1894 +00:41:34,760 --> 00:41:35,080 +that they + +1895 +00:41:35,080 --> 00:41:35,580 +want you to + +1896 +00:41:35,580 --> 00:41:36,020 +save your + +1897 +00:41:36,020 --> 00:41:36,420 +data to + +1898 +00:41:36,420 --> 00:41:37,000 +one drive + +1899 +00:41:37,000 --> 00:41:37,800 +which is + +1900 +00:41:37,800 --> 00:41:38,280 +the cloud + +1901 +00:41:38,280 --> 00:41:38,760 +version of + +1902 +00:41:38,760 --> 00:41:39,120 +storage + +1903 +00:41:39,120 --> 00:41:39,800 +for Microsoft + +1904 +00:41:39,800 --> 00:41:40,760 +but you + +1905 +00:41:40,760 --> 00:41:41,060 +don't have + +1906 +00:41:41,060 --> 00:41:41,360 +to it + +1907 +00:41:41,360 --> 00:41:41,640 +doesn't + +1908 +00:41:41,640 --> 00:41:42,140 +require you + +1909 +00:41:42,140 --> 00:41:42,680 +to do so + +1910 +00:41:43,420 --> 00:41:43,940 +so + +1911 +00:41:43,940 --> 00:41:44,740 +which drive + +1912 +00:41:45,880 --> 00:41:46,400 +Microsoft's + +1913 +00:41:46,400 --> 00:41:46,920 +version of + +1914 +00:41:46,920 --> 00:41:47,300 +own cloud + +1915 +00:41:47,300 --> 00:41:47,760 +is called + +1916 +00:41:47,760 --> 00:41:48,400 +or of + +1917 +00:41:48,400 --> 00:41:49,100 +Dropbox + +1918 +00:41:49,100 --> 00:41:49,480 +is called + +1919 +00:41:49,480 --> 00:41:50,140 +one drive + +1920 +00:41:51,420 --> 00:41:52,060 +which is + +1921 +00:41:52,060 --> 00:41:52,460 +oh I've + +1922 +00:41:52,460 --> 00:41:52,860 +seen that + +1923 +00:41:52,860 --> 00:41:53,180 +yeah + +1924 +00:41:53,380 --> 00:41:53,480 +right + +1925 +00:41:53,480 --> 00:41:53,980 +which they + +1926 +00:41:53,980 --> 00:41:54,160 +have + +1927 +00:41:54,160 --> 00:41:54,900 +lovely + +1928 +00:41:54,900 --> 00:41:55,960 +as they + +1929 +00:41:55,960 --> 00:41:56,320 +you know + +1930 +00:41:56,320 --> 00:41:56,620 +as they + +1931 +00:41:56,620 --> 00:41:56,820 +are + +1932 +00:41:56,820 --> 00:41:57,240 +and thoughtful + +1933 +00:41:57,240 --> 00:41:57,660 +as they + +1934 +00:41:57,660 --> 00:41:57,840 +are + +1935 +00:41:57,840 --> 00:41:58,360 +have forced + +1936 +00:41:58,360 --> 00:41:58,820 +one drive + +1937 +00:41:58,820 --> 00:41:59,400 +onto every + +1938 +00:41:59,400 --> 00:42:00,020 +computer in + +1939 +00:42:00,020 --> 00:42:00,340 +the world + +1940 +00:42:00,340 --> 00:42:01,160 +yes I see + +1941 +00:42:01,160 --> 00:42:01,640 +it all the + +1942 +00:42:01,640 --> 00:42:01,840 +time + +1943 +00:42:01,840 --> 00:42:02,220 +so + +1944 +00:42:03,100 --> 00:42:03,980 +you can + +1945 +00:42:03,980 --> 00:42:04,620 +save + +1946 +00:42:05,100 --> 00:42:05,740 +to the + +1947 +00:42:05,740 --> 00:42:05,940 +cloud + +1948 +00:42:05,940 --> 00:42:06,560 +that way + +1949 +00:42:06,560 --> 00:42:07,500 +but if + +1950 +00:42:07,500 --> 00:42:07,700 +you don't + +1951 +00:42:07,700 --> 00:42:07,940 +want to + +1952 +00:42:07,940 --> 00:42:08,360 +then just + +1953 +00:42:08,360 --> 00:42:09,140 +don't + +1954 +00:42:09,720 --> 00:42:09,920 +and + +1955 +00:42:09,920 --> 00:42:11,320 +that will + +1956 +00:42:11,320 --> 00:42:11,720 +take care + +1957 +00:42:11,720 --> 00:42:12,060 +of that + +1958 +00:42:12,660 --> 00:42:13,340 +but there's + +1959 +00:42:13,340 --> 00:42:13,760 +really no + +1960 +00:42:13,760 --> 00:42:14,340 +reason for + +1961 +00:42:14,340 --> 00:42:14,720 +me to + +1962 +00:42:14,720 --> 00:42:15,080 +avoid + +1963 +00:42:15,080 --> 00:42:15,700 +office + +1964 +00:42:15,700 --> 00:42:16,460 +365 + +1965 +00:42:16,460 --> 00:42:17,100 +if I + +1966 +00:42:17,100 --> 00:42:17,500 +take the + +1967 +00:42:17,500 --> 00:42:18,080 +mail server + +1968 +00:42:18,080 --> 00:42:18,660 +version + +1969 +00:42:18,660 --> 00:42:19,200 +is that what + +1970 +00:42:19,200 --> 00:42:19,540 +you mean + +1971 +00:42:19,540 --> 00:42:19,820 +for that + +1972 +00:42:19,820 --> 00:42:21,080 +I'm saying + +1973 +00:42:21,080 --> 00:42:21,700 +is if you + +1974 +00:42:21,700 --> 00:42:22,200 +don't save + +1975 +00:42:22,200 --> 00:42:22,380 +to + +1976 +00:42:22,380 --> 00:42:22,780 +to + +1977 +00:42:22,780 --> 00:42:23,020 +! + +1978 +00:42:23,020 --> 00:42:23,680 +you know + +1979 +00:42:23,680 --> 00:42:24,180 +one drive + +1980 +00:42:24,180 --> 00:42:24,840 +then + +1981 +00:42:24,840 --> 00:42:25,860 +you're not + +1982 +00:42:25,860 --> 00:42:26,320 +saving to + +1983 +00:42:26,320 --> 00:42:26,640 +the cloud + +1984 +00:42:26,640 --> 00:42:27,220 +and that's + +1985 +00:42:27,220 --> 00:42:27,460 +fine + +1986 +00:42:27,460 --> 00:42:27,900 +okay + +1987 +00:42:27,900 --> 00:42:28,560 +alright + +1988 +00:42:28,560 --> 00:42:29,720 +may I + +1989 +00:42:29,720 --> 00:42:30,680 +sneak in + +1990 +00:42:30,680 --> 00:42:31,080 +one more + +1991 +00:42:31,080 --> 00:42:31,560 +question + +1992 +00:42:31,560 --> 00:42:32,120 +since I + +1993 +00:42:32,120 --> 00:42:33,020 +you've got + +1994 +00:42:33,020 --> 00:42:33,600 +about 30 + +1995 +00:42:33,600 --> 00:42:34,060 +seconds + +1996 +00:42:34,060 --> 00:42:34,600 +so yes + +1997 +00:42:34,600 --> 00:42:34,880 +okay + +1998 +00:42:34,880 --> 00:42:35,920 +I love + +1999 +00:42:35,920 --> 00:42:36,260 +Opera + +2000 +00:42:36,260 --> 00:42:36,980 +I load + +2001 +00:42:36,980 --> 00:42:37,420 +the new + +2002 +00:42:37,420 --> 00:42:37,800 +Opera + +2003 +00:42:37,800 --> 00:42:38,160 +it has + +2004 +00:42:38,160 --> 00:42:38,800 +free VPN + +2005 +00:42:38,800 --> 00:42:39,640 +but I hear + +2006 +00:42:39,640 --> 00:42:40,120 +it's been + +2007 +00:42:40,120 --> 00:42:40,520 +bought by + +2008 +00:42:40,520 --> 00:42:40,900 +China + +2009 +00:42:40,900 --> 00:42:41,460 +and I'm + +2010 +00:42:41,460 --> 00:42:41,740 +nervous + +2011 +00:42:42,540 --> 00:42:43,660 +I don't + +2012 +00:42:43,660 --> 00:42:43,960 +blame you + +2013 +00:42:43,960 --> 00:42:45,660 +I mean + +2014 +00:42:45,660 --> 00:42:46,020 +I don't + +2015 +00:42:46,020 --> 00:42:46,260 +know that + +2016 +00:42:46,260 --> 00:42:46,560 +that's + +2017 +00:42:46,560 --> 00:42:46,920 +necessarily + +2018 +00:42:46,920 --> 00:42:47,320 +a huge + +2019 +00:42:47,320 --> 00:42:47,640 +security + +2020 +00:42:47,640 --> 00:42:47,940 +flaw + +2021 +00:42:47,940 --> 00:42:48,180 +unless + +2022 +00:42:48,180 --> 00:42:48,380 +you're + +2023 +00:42:48,380 --> 00:42:48,600 +dealing + +2024 +00:42:48,600 --> 00:42:48,920 +with + +2025 +00:42:48,920 --> 00:42:49,800 +you know + +2026 +00:42:49,800 --> 00:42:50,180 +sensitive + +2027 +00:42:50,180 --> 00:42:50,600 +information + +2028 +00:42:51,700 --> 00:42:52,260 +but + +2029 +00:42:52,260 --> 00:42:52,580 +you + +2030 +00:42:52,780 --> 00:42:53,260 +but if + +2031 +00:42:53,260 --> 00:42:53,580 +you're + +2032 +00:42:53,580 --> 00:42:54,420 +you know + +2033 +00:42:54,420 --> 00:42:54,800 +if that's + +2034 +00:42:54,800 --> 00:42:55,000 +the one + +2035 +00:42:55,000 --> 00:42:55,300 +you like + +2036 +00:42:55,300 --> 00:42:55,500 +that's + +2037 +00:42:55,500 --> 00:42:55,740 +the one + +2038 +00:42:55,740 --> 00:42:56,040 +you like + +2039 +00:42:56,040 --> 00:42:56,440 +just use + +2040 +00:42:56,440 --> 00:42:56,620 +a + +2041 +00:42:56,620 --> 00:42:56,920 +which + +2042 +00:42:56,920 --> 00:42:57,660 +which + +2043 +00:42:59,400 --> 00:42:59,860 +browser + +2044 +00:42:59,860 --> 00:43:00,240 +do you + +2045 +00:43:00,240 --> 00:43:00,740 +particularly + +2046 +00:43:00,740 --> 00:43:01,180 +like + +2047 +00:43:01,180 --> 00:43:01,980 +I use + +2048 +00:43:01,980 --> 00:43:02,260 +Chrome + +2049 +00:43:02,260 --> 00:43:03,280 +and Rob + +2050 +00:43:03,280 --> 00:43:03,520 +uses + +2051 +00:43:03,520 --> 00:43:03,980 +Chromium + +2052 +00:43:03,980 --> 00:43:04,700 +but + +2053 +00:43:04,700 --> 00:43:05,500 +I'm + +2054 +00:43:05,500 --> 00:43:05,660 +sorry + +2055 +00:43:05,660 --> 00:43:05,840 +I'm + +2056 +00:43:05,840 --> 00:43:06,000 +out of + +2057 +00:43:06,000 --> 00:43:06,140 +time + +2058 +00:43:06,140 --> 00:43:06,360 +Sam + +2059 +00:43:06,360 --> 00:43:07,480 +thank you + +2060 +00:43:07,480 --> 00:43:08,080 +very much + +2061 +00:43:08,080 --> 00:43:08,580 +thank you + +2062 +00:43:08,580 --> 00:43:08,820 +for the + +2063 +00:43:08,820 --> 00:43:08,960 +call + +2064 +00:43:08,960 --> 00:43:09,800 +if you'd + +2065 +00:43:09,800 --> 00:43:10,080 +like to + +2066 +00:43:10,080 --> 00:43:10,840 +stick around + +2067 +00:43:10,840 --> 00:43:11,080 +for the + +2068 +00:43:11,080 --> 00:43:11,480 +second hour + +2069 +00:43:11,480 --> 00:43:11,700 +we'd + +2070 +00:43:11,700 --> 00:43:11,960 +appreciate + +2071 +00:43:11,960 --> 00:43:12,180 +it + +2072 +00:43:12,180 --> 00:43:12,620 +790 + +2073 +00:43:12,620 --> 00:43:13,200 +2040 + +2074 +00:43:13,200 --> 00:43:13,720 +and we'll + +2075 +00:43:13,720 --> 00:43:14,000 +be right + +2076 +00:43:14,000 --> 00:43:14,360 +back + +2077 +00:43:14,360 --> 00:43:15,440 +I say + +2078 +00:43:15,440 --> 00:43:16,780 +a warning + +2079 +00:43:17,340 --> 00:43:17,800 +live + +2080 +00:43:17,800 --> 00:43:18,420 +without + +2081 +00:43:18,420 --> 00:43:19,300 +warning + +2082 +00:43:19,300 --> 00:43:20,720 +I say + +2083 +00:43:21,880 --> 00:43:21,880 + + +2084 +00:43:21,880 --> 00:43:21,880 + + +2085 +00:43:21,880 --> 00:43:21,880 + + +2086 +00:43:21,880 --> 00:43:21,880 + + +2087 +00:43:21,880 --> 00:43:22,760 +I say + +2088 +00:43:22,760 --> 00:43:23,380 +I say + +2089 +00:43:23,380 --> 00:43:24,600 +a warning + +2090 +00:43:25,600 --> 00:43:26,280 +people + +2091 +00:43:26,280 --> 00:43:27,120 +understand + +2092 +00:43:27,700 --> 00:43:27,920 +my + +2093 +00:43:27,920 --> 00:43:28,400 +intention + +2094 +00:43:28,400 --> 00:43:29,440 +computer + +2095 +00:43:29,440 --> 00:43:29,840 +running + +2096 +00:43:29,840 --> 00:43:30,220 +slow + +2097 +00:43:30,220 --> 00:43:30,620 +avoiding + +2098 +00:43:30,620 --> 00:43:31,240 +caught + +2099 +00:43:31,240 --> 00:43:31,640 +a virus + +2100 +00:43:32,640 --> 00:43:33,320 +does + +2101 +00:43:34,660 --> 00:43:34,760 +your + +2102 +00:43:34,760 --> 00:43:35,220 +computer + +2103 +00:43:35,220 --> 00:43:35,660 +seem + +2104 +00:43:35,660 --> 00:43:36,080 +to have + +2105 +00:43:36,080 --> 00:43:36,580 +a life + +2106 +00:43:36,580 --> 00:43:36,900 +of its + +2107 +00:43:36,900 --> 00:43:37,160 +own + +2108 +00:43:37,160 --> 00:43:37,780 +malfunction + +2109 +00:43:37,780 --> 00:43:38,980 +need + +2110 +00:43:38,980 --> 00:43:39,640 +input + +2111 +00:43:39,640 --> 00:43:40,060 +the + +2112 +00:43:40,060 --> 00:43:40,400 +computer + +2113 +00:43:40,400 --> 00:43:40,820 +guru + +2114 +00:43:40,820 --> 00:43:41,600 +is here + +2115 +00:43:41,600 --> 00:43:42,120 +call + +2116 +00:43:43,460 --> 00:43:43,560 +in + +2117 +00:43:43,560 --> 00:43:43,960 +now + +2118 +00:43:43,960 --> 00:43:44,540 +now + +2119 +00:43:44,540 --> 00:43:45,020 +it's + +2120 +00:43:45,020 --> 00:43:45,220 +Mike + +2121 +00:43:45,220 --> 00:43:45,600 +Swanson + +2122 +00:43:45,600 --> 00:43:46,120 +your + +2123 +00:43:46,120 --> 00:43:46,580 +computer + +2124 +00:43:46,580 --> 00:43:47,100 +guru + +2125 +00:43:48,180 --> 00:43:48,860 +hello + +2126 +00:43:48,860 --> 00:43:49,380 +and welcome + +2127 +00:43:49,380 --> 00:43:49,620 +to the + +2128 +00:43:49,620 --> 00:43:49,820 +computer + +2129 +00:43:49,820 --> 00:43:50,060 +guru + +2130 +00:43:50,060 --> 00:43:50,260 +show + +2131 +00:43:50,260 --> 00:43:50,480 +my name + +2132 +00:43:50,480 --> 00:43:50,740 +is Mike + +2133 +00:43:50,740 --> 00:43:51,000 +here to + +2134 +00:43:51,000 --> 00:43:51,240 +deal with + +2135 +00:43:51,240 --> 00:43:51,280 +your + +2136 +00:43:51,280 --> 00:43:51,560 +technology + +2137 +00:43:51,560 --> 00:43:51,900 +needs + +2138 +00:43:51,900 --> 00:43:52,200 +and + +2139 +00:43:52,200 --> 00:43:52,520 +treat + +2140 +00:43:52,520 --> 00:43:52,660 +you + +2141 +00:43:52,660 --> 00:43:52,800 +! + +2142 +00:43:52,800 --> 00:43:52,800 + + +2143 +00:43:52,800 --> 00:43:53,000 +a + +2144 +00:43:53,000 --> 00:43:53,260 +person + +2145 +00:43:53,260 --> 00:43:53,500 +give + +2146 +00:43:53,500 --> 00:43:53,680 +us + +2147 +00:43:53,680 --> 00:43:53,720 +a + +2148 +00:43:53,720 --> 00:43:53,880 +call + +2149 +00:43:53,880 --> 00:43:54,060 +if + +2150 +00:43:54,060 --> 00:43:54,180 +you'd + +2151 +00:43:54,180 --> 00:43:54,300 +like + +2152 +00:43:54,300 --> 00:43:54,380 +to + +2153 +00:43:54,380 --> 00:43:54,440 +be + +2154 +00:43:54,440 --> 00:43:54,580 +part + +2155 +00:43:54,580 --> 00:43:54,700 +of + +2156 +00:43:54,700 --> 00:43:54,720 +the + +2157 +00:43:54,720 --> 00:43:54,860 +show + +2158 +00:43:54,860 --> 00:43:55,340 +790 + +2159 +00:43:55,340 --> 00:43:55,880 +2040 + +2160 +00:43:55,880 --> 00:43:56,100 +where + +2161 +00:43:56,100 --> 00:43:56,220 +we + +2162 +00:43:56,220 --> 00:43:56,380 +can + +2163 +00:43:56,380 --> 00:43:56,540 +deal + +2164 +00:43:56,540 --> 00:43:56,700 +with + +2165 +00:43:56,700 --> 00:43:57,140 +whatever + +2166 +00:43:57,140 --> 00:43:57,640 +technology + +2167 +00:43:57,640 --> 00:43:58,140 +issues + +2168 +00:43:58,140 --> 00:43:58,480 +you + +2169 +00:43:58,480 --> 00:43:58,640 +are + +2170 +00:43:58,640 --> 00:43:59,000 +having + +2171 +00:43:59,000 --> 00:43:59,680 +Rob + +2172 +00:43:59,680 --> 00:43:59,840 +is + +2173 +00:43:59,840 --> 00:44:00,060 +finished + +2174 +00:44:00,060 --> 00:44:00,260 +with + +2175 +00:44:00,260 --> 00:44:00,400 +this + +2176 +00:44:00,400 --> 00:44:00,660 +coughing + +2177 +00:44:00,660 --> 00:44:00,900 +fit + +2178 +00:44:00,900 --> 00:44:01,140 +I'm + +2179 +00:44:01,140 --> 00:44:01,360 +dealing + +2180 +00:44:01,360 --> 00:44:01,620 +with + +2181 +00:44:01,620 --> 00:44:02,140 +issues + +2182 +00:44:02,140 --> 00:44:02,320 +of + +2183 +00:44:02,320 --> 00:44:02,400 +my + +2184 +00:44:02,400 --> 00:44:02,660 +own + +2185 +00:44:02,660 --> 00:44:03,600 +allergies + +2186 +00:44:03,600 --> 00:44:03,980 +man + +2187 +00:44:03,980 --> 00:44:04,600 +I + +2188 +00:44:05,400 --> 00:44:05,480 +have + +2189 +00:44:05,480 --> 00:44:05,840 +horrible + +2190 +00:44:05,840 --> 00:44:06,100 +horrible + +2191 +00:44:06,100 --> 00:44:06,640 +allergies + +2192 +00:44:06,640 --> 00:44:07,520 +everybody's + +2193 +00:44:07,520 --> 00:44:07,720 +got + +2194 +00:44:07,720 --> 00:44:08,100 +that + +2195 +00:44:08,640 --> 00:44:08,840 +cough + +2196 +00:44:08,840 --> 00:44:09,200 +right + +2197 +00:44:09,200 --> 00:44:09,500 +now + +2198 +00:44:09,500 --> 00:44:09,840 +I + +2199 +00:44:09,840 --> 00:44:09,980 +would + +2200 +00:44:09,980 --> 00:44:10,120 +just + +2201 +00:44:10,120 --> 00:44:10,360 +remove + +2202 +00:44:10,360 --> 00:44:10,640 +my + +2203 +00:44:10,640 --> 00:44:11,060 +sinuses + +2204 +00:44:11,060 --> 00:44:11,340 +if I + +2205 +00:44:11,340 --> 00:44:11,540 +could + +2206 +00:44:11,540 --> 00:44:12,180 +right + +2207 +00:44:12,180 --> 00:44:12,940 +probably + +2208 +00:44:12,940 --> 00:44:13,140 +not + +2209 +00:44:13,140 --> 00:44:13,420 +actually + +2210 +00:44:13,420 --> 00:44:13,700 +but + +2211 +00:44:13,700 --> 00:44:14,440 +seems + +2212 +00:44:14,440 --> 00:44:14,580 +like + +2213 +00:44:14,580 --> 00:44:14,720 +it + +2214 +00:44:14,720 --> 00:44:14,800 +would + +2215 +00:44:14,800 --> 00:44:14,880 +be + +2216 +00:44:14,880 --> 00:44:14,960 +a + +2217 +00:44:14,960 --> 00:44:15,040 +good + +2218 +00:44:15,040 --> 00:44:15,240 +idea + +2219 +00:44:15,240 --> 00:44:15,400 +right + +2220 +00:44:15,400 --> 00:44:15,580 +now + +2221 +00:44:15,580 --> 00:44:15,800 +you + +2222 +00:44:15,800 --> 00:44:16,040 +can + +2223 +00:44:16,040 --> 00:44:16,240 +just + +2224 +00:44:16,240 --> 00:44:16,580 +ask + +2225 +00:44:16,580 --> 00:44:16,720 +the + +2226 +00:44:16,720 --> 00:44:16,900 +dude + +2227 +00:44:16,900 --> 00:44:17,060 +from + +2228 +00:44:17,060 --> 00:44:17,520 +NXS + +2229 +00:44:17,520 --> 00:44:17,740 +about + +2230 +00:44:17,740 --> 00:44:18,120 +that + +2231 +00:44:20,120 --> 00:44:20,560 +alright + +2232 +00:44:22,660 --> 00:44:23,100 +let's + +2233 +00:44:23,100 --> 00:44:23,380 +go ahead + +2234 +00:44:23,380 --> 00:44:23,680 +and + +2235 +00:44:23,680 --> 00:44:23,980 +Marv + +2236 +00:44:23,980 --> 00:44:24,080 +has + +2237 +00:44:24,080 --> 00:44:24,220 +been + +2238 +00:44:24,220 --> 00:44:24,500 +very + +2239 +00:44:24,500 --> 00:44:25,240 +patient + +2240 +00:44:25,240 --> 00:44:25,940 +and + +2241 +00:44:25,940 --> 00:44:26,320 +he + +2242 +00:44:26,320 --> 00:44:26,660 +held + +2243 +00:44:26,660 --> 00:44:26,840 +over + +2244 +00:44:26,840 --> 00:44:27,120 +from + +2245 +00:44:27,120 --> 00:44:27,280 +the + +2246 +00:44:27,280 --> 00:44:27,460 +last + +2247 +00:44:27,460 --> 00:44:27,800 +hour + +2248 +00:44:27,800 --> 00:44:28,020 +so + +2249 +00:44:28,020 --> 00:44:28,220 +let's + +2250 +00:44:28,220 --> 00:44:28,380 +go ahead + +2251 +00:44:28,380 --> 00:44:28,520 +and talk + +2252 +00:44:28,520 --> 00:44:28,760 +to Marv + +2253 +00:44:28,760 --> 00:44:28,920 +hello + +2254 +00:44:28,920 --> 00:44:29,140 +Marv + +2255 +00:44:29,140 --> 00:44:29,280 +how + +2256 +00:44:29,280 --> 00:44:29,420 +are + +2257 +00:44:29,420 --> 00:44:29,640 +you + +2258 +00:44:30,120 --> 00:44:30,560 +oh + +2259 +00:44:30,560 --> 00:44:30,840 +I'm + +2260 +00:44:30,840 --> 00:44:31,200 +fine + +2261 +00:44:31,200 --> 00:44:31,980 +what + +2262 +00:44:31,980 --> 00:44:32,080 +can + +2263 +00:44:32,080 --> 00:44:32,200 +I + +2264 +00:44:32,200 --> 00:44:32,320 +do + +2265 +00:44:32,320 --> 00:44:32,520 +for + +2266 +00:44:32,520 --> 00:44:32,680 +you + +2267 +00:44:32,680 --> 00:44:33,020 +Marv + +2268 +00:44:33,020 --> 00:44:33,300 +my + +2269 +00:44:33,300 --> 00:44:33,740 +problem + +2270 +00:44:33,740 --> 00:44:34,200 +is + +2271 +00:44:34,720 --> 00:44:35,160 +my + +2272 +00:44:35,160 --> 00:44:35,600 +computer + +2273 +00:44:35,600 --> 00:44:36,080 +comes + +2274 +00:44:36,080 --> 00:44:36,420 +up + +2275 +00:44:36,420 --> 00:44:36,700 +very + +2276 +00:44:36,700 --> 00:44:37,160 +slowly + +2277 +00:44:38,040 --> 00:44:38,480 +okay + +2278 +00:44:39,180 --> 00:44:39,620 +it's + +2279 +00:44:39,620 --> 00:44:39,700 +in + +2280 +00:44:39,700 --> 00:44:40,200 +HP + +2281 +00:44:40,200 --> 00:44:40,660 +and + +2282 +00:44:41,420 --> 00:44:41,740 +when I + +2283 +00:44:41,740 --> 00:44:42,060 +turn it + +2284 +00:44:42,060 --> 00:44:42,380 +on + +2285 +00:44:42,380 --> 00:44:43,020 +the + +2286 +00:44:43,020 --> 00:44:43,340 +HP + +2287 +00:44:43,340 --> 00:44:43,680 +comes + +2288 +00:44:43,680 --> 00:44:44,040 +up + +2289 +00:44:44,040 --> 00:44:44,380 +on + +2290 +00:44:44,380 --> 00:44:44,660 +the + +2291 +00:44:44,660 --> 00:44:45,080 +screen + +2292 +00:44:45,080 --> 00:44:45,500 +I've + +2293 +00:44:45,500 --> 00:44:45,580 +got + +2294 +00:44:45,580 --> 00:44:45,800 +two + +2295 +00:44:45,800 --> 00:44:46,200 +screens + +2296 +00:44:46,200 --> 00:44:47,240 +and + +2297 +00:44:47,240 --> 00:44:47,440 +it + +2298 +00:44:47,440 --> 00:44:47,880 +comes + +2299 +00:44:47,880 --> 00:44:48,060 +up + +2300 +00:44:48,060 --> 00:44:48,240 +on + +2301 +00:44:48,240 --> 00:44:48,380 +the + +2302 +00:44:48,380 --> 00:44:48,540 +left + +2303 +00:44:48,540 --> 00:44:48,800 +screen + +2304 +00:44:48,800 --> 00:44:49,800 +and + +2305 +00:44:49,800 --> 00:44:50,100 +then + +2306 +00:44:50,100 --> 00:44:50,540 +it + +2307 +00:44:50,540 --> 00:44:50,800 +goes + +2308 +00:44:50,800 --> 00:44:51,140 +black + +2309 +00:44:51,840 --> 00:44:52,440 +and + +2310 +00:44:52,440 --> 00:44:52,740 +it + +2311 +00:44:54,100 --> 00:44:54,700 +starts + +2312 +00:44:56,160 --> 00:44:56,760 +just + +2313 +00:44:59,200 --> 00:44:59,800 +going + +2314 +00:45:03,620 --> 00:45:04,220 +back + +2315 +00:45:06,520 --> 00:45:06,580 +and + +2316 +00:45:06,580 --> 00:45:06,880 +forth + +2317 +00:45:06,880 --> 00:45:07,720 +so + +2318 +00:45:07,720 --> 00:45:07,860 +how + +2319 +00:45:07,860 --> 00:45:08,060 +long + +2320 +00:45:08,060 --> 00:45:08,300 +do + +2321 +00:45:08,300 --> 00:45:08,300 + + +2322 +00:45:08,300 --> 00:45:08,440 +think + +2323 +00:45:08,440 --> 00:45:08,600 +that + +2324 +00:45:08,600 --> 00:45:08,760 +it + +2325 +00:45:08,760 --> 00:45:09,140 +takes + +2326 +00:45:09,140 --> 00:45:09,600 +for + +2327 +00:45:09,600 --> 00:45:09,800 +it + +2328 +00:45:09,800 --> 00:45:09,880 +to + +2329 +00:45:09,880 --> 00:45:10,000 +be + +2330 +00:45:10,000 --> 00:45:10,080 +with + +2331 +00:45:10,080 --> 00:45:10,180 +up + +2332 +00:45:10,200 --> 00:45:10,280 +! + +2333 +00:45:10,280 --> 00:45:10,500 +Marv + +2334 +00:45:11,180 --> 00:45:11,700 +it's + +2335 +00:45:11,700 --> 00:45:11,920 +two + +2336 +00:45:11,920 --> 00:45:12,180 +and a + +2337 +00:45:12,180 --> 00:45:12,320 +half + +2338 +00:45:12,320 --> 00:45:12,740 +minutes + +2339 +00:45:12,740 --> 00:45:13,540 +okay + +2340 +00:45:13,540 --> 00:45:14,580 +and + +2341 +00:45:14,580 --> 00:45:15,100 +then + +2342 +00:45:16,160 --> 00:45:16,680 +it + +2343 +00:45:16,680 --> 00:45:16,880 +will + +2344 +00:45:16,880 --> 00:45:17,160 +ask + +2345 +00:45:17,160 --> 00:45:17,420 +for + +2346 +00:45:17,420 --> 00:45:17,780 +my + +2347 +00:45:17,780 --> 00:45:18,640 +password + +2348 +00:45:18,640 --> 00:45:19,660 +okay + +2349 +00:45:19,660 --> 00:45:20,360 +how + +2350 +00:45:20,360 --> 00:45:20,540 +old + +2351 +00:45:20,540 --> 00:45:20,620 +is + +2352 +00:45:20,620 --> 00:45:20,760 +this + +2353 +00:45:20,760 --> 00:45:21,040 +computer + +2354 +00:45:21,880 --> 00:45:22,400 +oh + +2355 +00:45:22,400 --> 00:45:22,720 +five + +2356 +00:45:22,720 --> 00:45:23,140 +years + +2357 +00:45:23,880 --> 00:45:24,400 +yeah + +2358 +00:45:24,400 --> 00:45:25,240 +it's + +2359 +00:45:25,240 --> 00:45:25,440 +probably + +2360 +00:45:25,440 --> 00:45:25,720 +time + +2361 +00:45:25,720 --> 00:45:26,000 +to do + +2362 +00:45:26,000 --> 00:45:26,140 +some + +2363 +00:45:26,140 --> 00:45:26,420 +upgrades + +2364 +00:45:26,420 --> 00:45:26,780 +on that + +2365 +00:45:26,780 --> 00:45:26,940 +one + +2366 +00:45:26,940 --> 00:45:27,060 +or + +2367 +00:45:27,060 --> 00:45:27,360 +replace + +2368 +00:45:27,360 --> 00:45:27,720 +it + +2369 +00:45:28,540 --> 00:45:29,060 +yeah + +2370 +00:45:29,600 --> 00:45:30,120 +because + +2371 +00:45:30,120 --> 00:45:30,580 +it's + +2372 +00:45:30,580 --> 00:45:31,420 +which + +2373 +00:45:31,420 --> 00:45:31,760 +would + +2374 +00:45:31,760 --> 00:45:32,220 +you say + +2375 +00:45:32,220 --> 00:45:32,320 +is + +2376 +00:45:32,320 --> 00:45:32,500 +Windows + +2377 +00:45:32,500 --> 00:45:32,740 +7 + +2378 +00:45:32,740 --> 00:45:32,920 +on + +2379 +00:45:32,920 --> 00:45:33,100 +that + +2380 +00:45:34,040 --> 00:45:34,560 +no + +2381 +00:45:34,560 --> 00:45:34,740 +it's + +2382 +00:45:34,740 --> 00:45:35,000 +10 + +2383 +00:45:35,000 --> 00:45:35,800 +it's + +2384 +00:45:35,800 --> 00:45:35,940 +10 + +2385 +00:45:35,940 --> 00:45:36,160 +you + +2386 +00:45:36,160 --> 00:45:36,420 +definitely + +2387 +00:45:36,420 --> 00:45:36,680 +need + +2388 +00:45:36,680 --> 00:45:36,800 +some + +2389 +00:45:36,800 --> 00:45:37,100 +upgrades + +2390 +00:45:37,100 --> 00:45:37,340 +in + +2391 +00:45:37,340 --> 00:45:37,620 +or + +2392 +00:45:37,620 --> 00:45:37,740 +to + +2393 +00:45:37,740 --> 00:45:38,040 +replace + +2394 +00:45:38,040 --> 00:45:38,260 +it + +2395 +00:45:38,260 --> 00:45:39,140 +so + +2396 +00:45:39,140 --> 00:45:39,700 +uh + +2397 +00:45:39,700 --> 00:45:39,900 +I + +2398 +00:45:40,420 --> 00:45:40,820 +mean + +2399 +00:45:40,820 --> 00:45:41,100 +if + +2400 +00:45:41,100 --> 00:45:41,600 +you + +2401 +00:45:41,600 --> 00:45:41,740 +want + +2402 +00:45:41,740 --> 00:45:41,840 +to + +2403 +00:45:41,840 --> 00:45:42,000 +go + +2404 +00:45:42,000 --> 00:45:42,360 +sort + +2405 +00:45:42,360 --> 00:45:42,460 +of + +2406 +00:45:42,460 --> 00:45:42,700 +the + +2407 +00:45:42,700 --> 00:45:42,940 +you + +2408 +00:45:42,940 --> 00:45:43,220 +know + +2409 +00:45:43,220 --> 00:45:43,740 +relatively + +2410 +00:45:43,740 --> 00:45:44,200 +inexpensive + +2411 +00:45:44,200 --> 00:45:44,640 +route + +2412 +00:45:44,640 --> 00:45:45,360 +you + +2413 +00:45:45,360 --> 00:45:45,540 +could + +2414 +00:45:45,540 --> 00:45:45,720 +do + +2415 +00:45:45,720 --> 00:45:45,880 +a + +2416 +00:45:45,880 --> 00:45:46,440 +minor + +2417 +00:45:46,440 --> 00:45:46,720 +upgrade + +2418 +00:45:46,720 --> 00:45:47,000 +and + +2419 +00:45:47,000 --> 00:45:47,020 +a + +2420 +00:45:47,020 --> 00:45:47,260 +solid + +2421 +00:45:47,260 --> 00:45:47,460 +state + +2422 +00:45:47,460 --> 00:45:47,740 +upgrade + +2423 +00:45:47,740 --> 00:45:48,040 +on + +2424 +00:45:48,040 --> 00:45:48,200 +it + +2425 +00:45:48,200 --> 00:45:48,360 +and + +2426 +00:45:48,360 --> 00:45:48,480 +that + +2427 +00:45:48,480 --> 00:45:48,600 +would + +2428 +00:45:48,600 --> 00:45:48,800 +make + +2429 +00:45:48,800 --> 00:45:49,000 +it + +2430 +00:45:49,000 --> 00:45:49,500 +faster + +2431 +00:45:50,520 --> 00:45:50,920 +but + +2432 +00:45:50,920 --> 00:45:51,160 +at + +2433 +00:45:51,160 --> 00:45:51,320 +five + +2434 +00:45:51,320 --> 00:45:51,520 +years + +2435 +00:45:51,520 --> 00:45:51,780 +old + +2436 +00:45:51,780 --> 00:45:51,920 +it + +2437 +00:45:51,920 --> 00:45:52,060 +may + +2438 +00:45:52,060 --> 00:45:52,200 +not + +2439 +00:45:52,200 --> 00:45:52,320 +be + +2440 +00:45:52,320 --> 00:45:52,500 +worth + +2441 +00:45:52,500 --> 00:45:52,900 +investing + +2442 +00:45:52,900 --> 00:45:53,060 +in + +2443 +00:45:53,060 --> 00:45:53,180 +that + +2444 +00:45:53,180 --> 00:45:53,420 +machine + +2445 +00:45:53,420 --> 00:45:53,860 +you + +2446 +00:45:53,860 --> 00:45:54,040 +might + +2447 +00:45:54,040 --> 00:45:54,240 +just + +2448 +00:45:54,240 --> 00:45:54,540 +be + +2449 +00:45:54,540 --> 00:45:54,900 +looking + +2450 +00:45:54,900 --> 00:45:55,140 +at + +2451 +00:45:55,140 --> 00:45:55,240 +a + +2452 +00:45:55,240 --> 00:45:55,400 +new + +2453 +00:45:55,400 --> 00:45:55,820 +computer + +2454 +00:45:57,100 --> 00:45:57,500 +yeah + +2455 +00:45:58,540 --> 00:45:58,940 +so + +2456 +00:46:00,900 --> 00:46:01,300 +I'm + +2457 +00:46:01,300 --> 00:46:01,400 +not + +2458 +00:46:01,400 --> 00:46:01,560 +sure + +2459 +00:46:01,560 --> 00:46:01,780 +where + +2460 +00:46:01,780 --> 00:46:02,220 +I can + +2461 +00:46:02,220 --> 00:46:02,400 +help + +2462 +00:46:02,400 --> 00:46:02,500 +you + +2463 +00:46:02,500 --> 00:46:02,660 +other + +2464 +00:46:02,660 --> 00:46:02,800 +than + +2465 +00:46:02,800 --> 00:46:02,920 +to + +2466 +00:46:02,920 --> 00:46:03,100 +tell + +2467 +00:46:03,100 --> 00:46:03,220 +you + +2468 +00:46:03,220 --> 00:46:03,360 +that + +2469 +00:46:03,360 --> 00:46:03,500 +it's + +2470 +00:46:09,700 --> 00:46:09,920 +a + +2471 +00:46:11,380 --> 00:46:11,820 +machine + +2472 +00:46:11,820 --> 00:46:11,820 + + +2473 +00:46:11,820 --> 00:46:12,040 +you + +2474 +00:46:12,040 --> 00:46:12,180 +probably + +2475 +00:46:12,180 --> 00:46:12,480 +want + +2476 +00:46:12,480 --> 00:46:12,600 +to + +2477 +00:46:12,600 --> 00:46:12,680 +go + +2478 +00:46:12,680 --> 00:46:12,800 +with + +2479 +00:46:12,800 --> 00:46:12,900 +a + +2480 +00:46:12,900 --> 00:46:13,220 +clone + +2481 +00:46:13,820 --> 00:46:14,260 +where + +2482 +00:46:14,260 --> 00:46:14,740 +you + +2483 +00:46:14,740 --> 00:46:14,900 +could + +2484 +00:46:14,900 --> 00:46:15,040 +get + +2485 +00:46:15,040 --> 00:46:15,200 +another + +2486 +00:46:15,200 --> 00:46:15,560 +machine + +2487 +00:46:15,560 --> 00:46:15,780 +and + +2488 +00:46:15,780 --> 00:46:15,900 +we + +2489 +00:46:15,900 --> 00:46:16,020 +can + +2490 +00:46:16,020 --> 00:46:16,200 +just + +2491 +00:46:16,200 --> 00:46:16,520 +pick + +2492 +00:46:16,520 --> 00:46:16,720 +up + +2493 +00:46:16,720 --> 00:46:16,920 +your + +2494 +00:46:16,920 --> 00:46:17,560 +current + +2495 +00:46:17,560 --> 00:46:17,860 +operating + +2496 +00:46:17,860 --> 00:46:18,180 +system + +2497 +00:46:18,180 --> 00:46:18,380 +and + +2498 +00:46:18,380 --> 00:46:18,520 +put + +2499 +00:46:18,520 --> 00:46:18,640 +it + +2500 +00:46:18,640 --> 00:46:18,700 +on + +2501 +00:46:18,700 --> 00:46:18,840 +your + +2502 +00:46:18,840 --> 00:46:18,980 +new + +2503 +00:46:18,980 --> 00:46:19,380 +computer + +2504 +00:46:20,520 --> 00:46:20,960 +okay + +2505 +00:46:21,740 --> 00:46:22,180 +or + +2506 +00:46:22,880 --> 00:46:23,320 +do + +2507 +00:46:23,320 --> 00:46:23,500 +the + +2508 +00:46:23,500 --> 00:46:23,800 +upgrade + +2509 +00:46:23,800 --> 00:46:24,100 +it + +2510 +00:46:24,100 --> 00:46:24,240 +just + +2511 +00:46:24,240 --> 00:46:24,400 +sort + +2512 +00:46:24,400 --> 00:46:24,480 +of + +2513 +00:46:24,480 --> 00:46:24,680 +depends + +2514 +00:46:24,680 --> 00:46:24,880 +on + +2515 +00:46:24,880 --> 00:46:25,040 +the + +2516 +00:46:25,040 --> 00:46:25,280 +base + +2517 +00:46:25,280 --> 00:46:25,620 +machine + +2518 +00:46:25,620 --> 00:46:26,060 +you + +2519 +00:46:26,060 --> 00:46:26,880 +know + +2520 +00:46:26,880 --> 00:46:27,020 +which + +2521 +00:46:27,020 --> 00:46:27,440 +processor + +2522 +00:46:27,440 --> 00:46:27,640 +is + +2523 +00:46:27,640 --> 00:46:27,740 +in + +2524 +00:46:27,740 --> 00:46:27,900 +that + +2525 +00:46:29,820 --> 00:46:30,260 +no + +2526 +00:46:31,160 --> 00:46:31,600 +not + +2527 +00:46:32,740 --> 00:46:33,180 +just + +2528 +00:46:33,180 --> 00:46:33,480 +off + +2529 +00:46:33,480 --> 00:46:33,920 +hand + +2530 +00:46:33,920 --> 00:46:34,640 +okay + +2531 +00:46:35,340 --> 00:46:35,780 +so + +2532 +00:46:35,780 --> 00:46:36,100 +if + +2533 +00:46:36,100 --> 00:46:36,200 +you + +2534 +00:46:36,200 --> 00:46:36,300 +have + +2535 +00:46:36,300 --> 00:46:36,360 +a + +2536 +00:46:36,360 --> 00:46:36,840 +nice + +2537 +00:46:36,840 --> 00:46:37,440 +older + +2538 +00:46:38,000 --> 00:46:38,440 +i7 + +2539 +00:46:38,440 --> 00:46:38,760 +or + +2540 +00:46:38,760 --> 00:46:39,080 +something + +2541 +00:46:39,080 --> 00:46:39,680 +you + +2542 +00:46:39,680 --> 00:46:39,940 +then + +2543 +00:46:39,940 --> 00:46:40,580 +that + +2544 +00:46:40,580 --> 00:46:40,940 +machine + +2545 +00:46:40,940 --> 00:46:41,600 +may be + +2546 +00:46:41,600 --> 00:46:41,860 +worth + +2547 +00:46:41,860 --> 00:46:42,100 +just + +2548 +00:46:42,100 --> 00:46:42,380 +doing + +2549 +00:46:42,380 --> 00:46:42,760 +upgrades + +2550 +00:46:42,760 --> 00:46:43,020 +on + +2551 +00:46:43,020 --> 00:46:43,160 +it + +2552 +00:46:43,160 --> 00:46:43,260 +would + +2553 +00:46:43,260 --> 00:46:43,380 +be + +2554 +00:46:43,380 --> 00:46:43,700 +cheaper + +2555 +00:46:43,700 --> 00:46:43,880 +than + +2556 +00:46:43,880 --> 00:46:44,240 +replacing + +2557 +00:46:44,240 --> 00:46:44,560 +the + +2558 +00:46:44,560 --> 00:46:44,980 +machine + +2559 +00:46:44,980 --> 00:46:45,360 +outright + +2560 +00:46:46,240 --> 00:46:46,760 +but + +2561 +00:46:47,380 --> 00:46:47,440 +what + +2562 +00:46:47,440 --> 00:46:47,620 +you + +2563 +00:46:47,620 --> 00:46:47,720 +can + +2564 +00:46:47,720 --> 00:46:47,860 +do + +2565 +00:46:47,860 --> 00:46:47,980 +is + +2566 +00:46:47,980 --> 00:46:48,080 +you + +2567 +00:46:48,080 --> 00:46:48,120 +can + +2568 +00:46:48,120 --> 00:46:48,280 +call + +2569 +00:46:48,280 --> 00:46:48,440 +down + +2570 +00:46:48,440 --> 00:46:48,560 +to + +2571 +00:46:48,560 --> 00:46:48,580 +the + +2572 +00:46:48,580 --> 00:46:48,880 +shop + +2573 +00:46:48,880 --> 00:46:49,100 +at + +2574 +00:46:49,100 --> 00:46:50,180 +304-8300 + +2575 +00:46:50,180 --> 00:46:50,860 +and + +2576 +00:46:50,860 --> 00:46:51,400 +talk + +2577 +00:46:51,400 --> 00:46:51,540 +to + +2578 +00:46:51,540 --> 00:46:51,720 +them + +2579 +00:46:51,720 --> 00:46:52,000 +and + +2580 +00:46:52,000 --> 00:46:52,080 +they + +2581 +00:46:52,080 --> 00:46:52,440 +can + +2582 +00:46:52,440 --> 00:46:52,600 +get + +2583 +00:46:52,600 --> 00:46:52,700 +all + +2584 +00:46:52,700 --> 00:46:52,820 +the + +2585 +00:46:52,820 --> 00:46:53,100 +specs + +2586 +00:46:53,100 --> 00:46:53,320 +from + +2587 +00:46:53,320 --> 00:46:53,480 +your + +2588 +00:46:53,480 --> 00:46:53,940 +computer + +2589 +00:46:54,760 --> 00:46:55,280 +especially + +2590 +00:46:55,280 --> 00:46:55,860 +if + +2591 +00:46:55,860 --> 00:46:55,880 +you + +2592 +00:46:55,880 --> 00:46:56,020 +call + +2593 +00:46:56,020 --> 00:46:56,240 +on + +2594 +00:46:57,400 --> 00:46:57,920 +monday + +2595 +00:46:57,920 --> 00:46:58,000 +or + +2596 +00:46:58,000 --> 00:46:58,320 +tuesday + +2597 +00:46:58,320 --> 00:46:58,860 +whatever + +2598 +00:46:58,860 --> 00:46:59,260 +you're + +2599 +00:46:59,260 --> 00:46:59,560 +comfortable + +2600 +00:46:59,560 --> 00:46:59,800 +with + +2601 +00:47:00,540 --> 00:47:01,060 +and + +2602 +00:47:01,060 --> 00:47:01,760 +talk + +2603 +00:47:01,760 --> 00:47:02,000 +to + +2604 +00:47:02,000 --> 00:47:02,240 +winter + +2605 +00:47:02,240 --> 00:47:02,520 +she + +2606 +00:47:02,520 --> 00:47:02,700 +does + +2607 +00:47:02,700 --> 00:47:02,880 +all + +2608 +00:47:02,880 --> 00:47:03,060 +the + +2609 +00:47:03,060 --> 00:47:03,300 +machine + +2610 +00:47:03,300 --> 00:47:03,660 +builds + +2611 +00:47:04,300 --> 00:47:04,820 +and + +2612 +00:47:04,820 --> 00:47:05,520 +she + +2613 +00:47:05,520 --> 00:47:05,640 +can + +2614 +00:47:05,640 --> 00:47:06,100 +tell + +2615 +00:47:06,100 --> 00:47:06,240 +you + +2616 +00:47:06,240 --> 00:47:06,340 +what + +2617 +00:47:06,340 --> 00:47:06,440 +it + +2618 +00:47:06,440 --> 00:47:06,440 + + +2619 +00:47:06,440 --> 00:47:06,740 +cost + +2620 +00:47:06,740 --> 00:47:06,960 +to + +2621 +00:47:06,960 --> 00:47:07,440 +either + +2622 +00:47:07,440 --> 00:47:07,820 +upgrade + +2623 +00:47:07,820 --> 00:47:07,980 +or + +2624 +00:47:07,980 --> 00:47:08,260 +replace + +2625 +00:47:08,260 --> 00:47:08,460 +that + +2626 +00:47:08,460 --> 00:47:08,720 +machine + +2627 +00:47:09,600 --> 00:47:10,080 +okay + +2628 +00:47:10,080 --> 00:47:11,020 +well + +2629 +00:47:11,020 --> 00:47:11,480 +thank + +2630 +00:47:11,480 --> 00:47:11,720 +you + +2631 +00:47:11,720 --> 00:47:12,000 +i + +2632 +00:47:12,000 --> 00:47:12,500 +appreciate + +2633 +00:47:12,500 --> 00:47:12,740 +the + +2634 +00:47:12,740 --> 00:47:12,920 +call + +2635 +00:47:12,920 --> 00:47:13,280 +marv + +2636 +00:47:13,280 --> 00:47:14,220 +sure + +2637 +00:47:14,220 --> 00:47:14,640 +you + +2638 +00:47:14,640 --> 00:47:14,800 +have + +2639 +00:47:14,800 --> 00:47:15,000 +yourself + +2640 +00:47:15,000 --> 00:47:15,160 +a + +2641 +00:47:15,160 --> 00:47:15,340 +wonderful + +2642 +00:47:15,340 --> 00:47:15,580 +day + +2643 +00:47:15,580 --> 00:47:15,800 +and + +2644 +00:47:15,800 --> 00:47:16,000 +let's + +2645 +00:47:16,000 --> 00:47:16,060 +go + +2646 +00:47:16,060 --> 00:47:16,180 +ahead + +2647 +00:47:16,180 --> 00:47:16,220 +and + +2648 +00:47:16,220 --> 00:47:16,420 +talk + +2649 +00:47:16,420 --> 00:47:16,580 +to + +2650 +00:47:17,500 --> 00:47:17,980 +richard + +2651 +00:47:17,980 --> 00:47:18,180 +hello + +2652 +00:47:18,180 --> 00:47:18,460 +richard + +2653 +00:47:18,460 --> 00:47:18,640 +how are + +2654 +00:47:18,640 --> 00:47:18,740 +you + +2655 +00:47:19,340 --> 00:47:19,480 +hey + +2656 +00:47:19,480 --> 00:47:19,700 +mike + +2657 +00:47:19,700 --> 00:47:19,820 +good + +2658 +00:47:19,820 --> 00:47:20,140 +morning + +2659 +00:47:20,760 --> 00:47:21,240 +i've + +2660 +00:47:21,240 --> 00:47:21,320 +got + +2661 +00:47:21,320 --> 00:47:21,520 +an + +2662 +00:47:21,520 --> 00:47:21,980 +icloud + +2663 +00:47:21,980 --> 00:47:22,580 +management + +2664 +00:47:22,580 --> 00:47:23,220 +storage + +2665 +00:47:23,220 --> 00:47:23,980 +question + +2666 +00:47:23,980 --> 00:47:24,740 +following + +2667 +00:47:25,280 --> 00:47:25,460 +your + +2668 +00:47:25,460 --> 00:47:25,860 +advice + +2669 +00:47:25,860 --> 00:47:26,140 +a + +2670 +00:47:26,140 --> 00:47:26,300 +ways + +2671 +00:47:26,300 --> 00:47:26,620 +back + +2672 +00:47:26,620 --> 00:47:26,920 +i + +2673 +00:47:26,920 --> 00:47:27,220 +finally + +2674 +00:47:27,220 --> 00:47:27,360 +did + +2675 +00:47:27,360 --> 00:47:27,580 +go + +2676 +00:47:27,580 --> 00:47:27,740 +over + +2677 +00:47:27,740 --> 00:47:27,860 +to + +2678 +00:47:27,860 --> 00:47:28,280 +icloud + +2679 +00:47:28,280 --> 00:47:28,800 +storage + +2680 +00:47:28,800 --> 00:47:29,320 +seemed + +2681 +00:47:29,320 --> 00:47:29,480 +to + +2682 +00:47:29,480 --> 00:47:29,640 +work + +2683 +00:47:29,640 --> 00:47:29,940 +pretty + +2684 +00:47:29,940 --> 00:47:30,160 +well + +2685 +00:47:30,660 --> 00:47:31,140 +but + +2686 +00:47:31,140 --> 00:47:31,540 +what + +2687 +00:47:31,540 --> 00:47:31,700 +i + +2688 +00:47:31,700 --> 00:47:32,100 +found + +2689 +00:47:32,100 --> 00:47:32,280 +out + +2690 +00:47:32,280 --> 00:47:32,620 +is + +2691 +00:47:32,620 --> 00:47:32,740 +that + +2692 +00:47:32,740 --> 00:47:33,040 +first + +2693 +00:47:33,040 --> 00:47:33,220 +of + +2694 +00:47:33,220 --> 00:47:33,420 +all + +2695 +00:47:33,420 --> 00:47:33,580 +it + +2696 +00:47:33,580 --> 00:47:33,820 +seemed + +2697 +00:47:33,820 --> 00:47:34,020 +to + +2698 +00:47:34,020 --> 00:47:34,280 +lag + +2699 +00:47:34,280 --> 00:47:34,800 +data + +2700 +00:47:34,800 --> 00:47:35,500 +transfer + +2701 +00:47:35,500 --> 00:47:36,320 +to + +2702 +00:47:36,320 --> 00:47:36,480 +the + +2703 +00:47:36,480 --> 00:47:36,720 +five + +2704 +00:47:36,720 --> 00:47:36,900 +i + +2705 +00:47:36,900 --> 00:47:37,440 +devices + +2706 +00:47:37,440 --> 00:47:37,740 +i + +2707 +00:47:37,740 --> 00:47:37,960 +have + +2708 +00:47:37,960 --> 00:47:38,180 +by + +2709 +00:47:38,180 --> 00:47:38,320 +a + +2710 +00:47:38,320 --> 00:47:38,820 +material + +2711 +00:47:38,820 --> 00:47:39,160 +time + +2712 +00:47:39,160 --> 00:47:39,520 +lag + +2713 +00:47:39,520 --> 00:47:39,820 +i'm + +2714 +00:47:39,820 --> 00:47:39,960 +talking + +2715 +00:47:39,960 --> 00:47:40,160 +about + +2716 +00:47:40,160 --> 00:47:40,600 +months + +2717 +00:47:40,600 --> 00:47:41,240 +and + +2718 +00:47:41,240 --> 00:47:41,420 +then + +2719 +00:47:41,420 --> 00:47:41,580 +was + +2720 +00:47:41,580 --> 00:47:41,880 +always + +2721 +00:47:41,880 --> 00:47:42,160 +incomplete + +2722 +00:47:42,940 --> 00:47:43,420 +i + +2723 +00:47:43,420 --> 00:47:43,900 +deleted + +2724 +00:47:43,900 --> 00:47:44,120 +it + +2725 +00:47:44,120 --> 00:47:44,380 +all + +2726 +00:47:44,380 --> 00:47:44,720 +and + +2727 +00:47:44,720 --> 00:47:45,400 +restarted + +2728 +00:47:45,400 --> 00:47:45,600 +it + +2729 +00:47:45,600 --> 00:47:45,840 +that + +2730 +00:47:45,840 --> 00:47:46,120 +seemed + +2731 +00:47:46,120 --> 00:47:46,320 +to + +2732 +00:47:46,320 --> 00:47:46,520 +bring + +2733 +00:47:46,520 --> 00:47:46,640 +it + +2734 +00:47:46,640 --> 00:47:46,840 +back + +2735 +00:47:46,840 --> 00:47:47,020 +to + +2736 +00:47:47,020 --> 00:47:47,140 +a + +2737 +00:47:47,140 --> 00:47:47,460 +fairly + +2738 +00:47:47,460 --> 00:47:47,660 +good + +2739 +00:47:47,660 --> 00:47:48,000 +level + +2740 +00:47:48,000 --> 00:47:48,780 +but + +2741 +00:47:48,780 --> 00:47:48,940 +i + +2742 +00:47:48,940 --> 00:47:49,140 +see + +2743 +00:47:49,140 --> 00:47:49,380 +it + +2744 +00:47:49,380 --> 00:47:49,660 +seems + +2745 +00:47:49,660 --> 00:47:49,900 +that + +2746 +00:47:49,900 --> 00:47:50,140 +as + +2747 +00:47:50,140 --> 00:47:50,540 +files + +2748 +00:47:50,540 --> 00:47:50,820 +are + +2749 +00:47:50,820 --> 00:47:51,240 +added + +2750 +00:47:51,980 --> 00:47:52,460 +they + +2751 +00:47:52,460 --> 00:47:53,000 +don't + +2752 +00:47:53,000 --> 00:47:53,180 +really + +2753 +00:47:53,180 --> 00:47:53,440 +go + +2754 +00:47:53,440 --> 00:47:53,560 +to + +2755 +00:47:53,560 --> 00:47:53,720 +the + +2756 +00:47:53,720 --> 00:47:53,960 +cloud + +2757 +00:47:59,940 --> 00:48:00,400 +aligned + +2758 +00:48:00,400 --> 00:48:01,160 +source + +2759 +00:48:01,160 --> 00:48:01,800 +files + +2760 +00:48:01,800 --> 00:48:02,720 +on the + +2761 +00:48:02,720 --> 00:48:03,600 +computer + +2762 +00:48:03,600 --> 00:48:04,860 +with + +2763 +00:48:04,860 --> 00:48:05,120 +those + +2764 +00:48:05,120 --> 00:48:05,560 +that are + +2765 +00:48:05,560 --> 00:48:06,360 +transferred + +2766 +00:48:06,360 --> 00:48:06,960 +over to + +2767 +00:48:06,960 --> 00:48:07,080 +the + +2768 +00:48:07,080 --> 00:48:07,520 +iCloud + +2769 +00:48:07,520 --> 00:48:07,820 +drive + +2770 +00:48:07,820 --> 00:48:08,280 +file + +2771 +00:48:08,280 --> 00:48:09,220 +and + +2772 +00:48:09,220 --> 00:48:09,700 +they + +2773 +00:48:09,700 --> 00:48:09,980 +still + +2774 +00:48:09,980 --> 00:48:10,260 +don't + +2775 +00:48:10,260 --> 00:48:10,580 +seem + +2776 +00:48:10,580 --> 00:48:10,860 +to + +2777 +00:48:10,860 --> 00:48:11,080 +really + +2778 +00:48:11,080 --> 00:48:11,440 +work + +2779 +00:48:11,440 --> 00:48:11,880 +efficiently + +2780 +00:48:11,880 --> 00:48:12,800 +most + +2781 +00:48:12,800 --> 00:48:13,100 +of + +2782 +00:48:13,100 --> 00:48:13,220 +my + +2783 +00:48:13,220 --> 00:48:13,700 +files + +2784 +00:48:13,700 --> 00:48:14,660 +are + +2785 +00:48:14,660 --> 00:48:15,440 +data + +2786 +00:48:15,440 --> 00:48:15,820 +files + +2787 +00:48:15,820 --> 00:48:16,360 +about + +2788 +00:48:16,360 --> 00:48:16,700 +50 + +2789 +00:48:16,700 --> 00:48:17,080 +gigabytes + +2790 +00:48:18,000 --> 00:48:18,720 +hundreds + +2791 +00:48:18,720 --> 00:48:19,120 +of + +2792 +00:48:19,120 --> 00:48:19,480 +thousands + +2793 +00:48:19,480 --> 00:48:19,720 +of + +2794 +00:48:19,720 --> 00:48:19,980 +files + +2795 +00:48:19,980 --> 00:48:20,420 +overall + +2796 +00:48:20,420 --> 00:48:21,080 +maybe + +2797 +00:48:21,080 --> 00:48:21,400 +about + +2798 +00:48:21,400 --> 00:48:21,760 +50 + +2799 +00:48:21,760 --> 00:48:21,980 +that + +2800 +00:48:21,980 --> 00:48:22,200 +call + +2801 +00:48:22,200 --> 00:48:22,480 +us + +2802 +00:48:23,540 --> 00:48:24,780 +50,000 + +2803 +00:48:24,780 --> 00:48:24,940 +that + +2804 +00:48:24,940 --> 00:48:25,160 +call + +2805 +00:48:25,160 --> 00:48:25,420 +us + +2806 +00:48:25,420 --> 00:48:25,780 +using + +2807 +00:48:25,780 --> 00:48:25,980 +the + +2808 +00:48:25,980 --> 00:48:26,420 +Fujitsu + +2809 +00:48:26,420 --> 00:48:27,140 +scanners + +2810 +00:48:27,140 --> 00:48:27,440 +that + +2811 +00:48:27,440 --> 00:48:27,600 +i've + +2812 +00:48:27,600 --> 00:48:27,660 +had + +2813 +00:48:27,660 --> 00:48:27,820 +for + +2814 +00:48:27,820 --> 00:48:27,980 +about + +2815 +00:48:27,980 --> 00:48:28,200 +10 + +2816 +00:48:28,200 --> 00:48:28,480 +years + +2817 +00:48:28,480 --> 00:48:29,120 +and + +2818 +00:48:29,120 --> 00:48:29,920 +i + +2819 +00:48:29,920 --> 00:48:30,340 +! + +2820 +00:48:30,340 --> 00:48:30,880 +is + +2821 +00:48:31,440 --> 00:48:31,460 +it + +2822 +00:48:31,460 --> 00:48:32,060 +necessary + +2823 +00:48:32,060 --> 00:48:32,500 +i + +2824 +00:48:32,500 --> 00:48:32,760 +guess + +2825 +00:48:32,760 --> 00:48:32,960 +the + +2826 +00:48:32,960 --> 00:48:33,320 +question + +2827 +00:48:33,320 --> 00:48:33,540 +is + +2828 +00:48:33,540 --> 00:48:33,700 +is + +2829 +00:48:33,700 --> 00:48:33,860 +it + +2830 +00:48:33,860 --> 00:48:34,260 +necessary + +2831 +00:48:34,260 --> 00:48:35,300 +to + +2832 +00:48:35,300 --> 00:48:35,620 +flush + +2833 +00:48:35,620 --> 00:48:36,060 +out + +2834 +00:48:36,060 --> 00:48:36,320 +or + +2835 +00:48:36,320 --> 00:48:36,620 +delete + +2836 +00:48:36,620 --> 00:48:37,540 +that + +2837 +00:48:37,540 --> 00:48:38,040 +process + +2838 +00:48:38,040 --> 00:48:38,460 +entirely + +2839 +00:48:38,460 --> 00:48:39,120 +go + +2840 +00:48:39,120 --> 00:48:39,260 +to + +2841 +00:48:39,260 --> 00:48:39,660 +zero + +2842 +00:48:39,660 --> 00:48:40,520 +on + +2843 +00:48:40,520 --> 00:48:40,800 +both + +2844 +00:48:40,800 --> 00:48:41,340 +sides + +2845 +00:48:41,340 --> 00:48:41,860 +and + +2846 +00:48:41,860 --> 00:48:42,120 +then + +2847 +00:48:42,120 --> 00:48:43,260 +reload + +2848 +00:48:43,260 --> 00:48:43,620 +as + +2849 +00:48:43,620 --> 00:48:43,840 +it + +2850 +00:48:43,840 --> 00:48:44,020 +can + +2851 +00:48:44,020 --> 00:48:44,360 +reload + +2852 +00:48:44,360 --> 00:48:44,720 +the + +2853 +00:48:44,720 --> 00:48:45,020 +drive + +2854 +00:48:45,020 --> 00:48:46,020 +again + +2855 +00:48:46,020 --> 00:48:46,620 +through + +2856 +00:48:46,620 --> 00:48:46,760 +the + +2857 +00:48:46,760 --> 00:48:47,140 +computer + +2858 +00:48:47,140 --> 00:48:47,940 +generally + +2859 +00:48:47,940 --> 00:48:48,380 +no + +2860 +00:48:48,380 --> 00:48:49,140 +normally + +2861 +00:48:49,140 --> 00:48:49,420 +that + +2862 +00:48:49,420 --> 00:48:49,580 +would + +2863 +00:48:49,580 --> 00:48:49,780 +not + +2864 +00:48:49,780 --> 00:48:49,940 +be + +2865 +00:48:49,940 --> 00:48:50,120 +any + +2866 +00:48:50,120 --> 00:48:50,360 +type + +2867 +00:48:50,360 --> 00:48:50,540 +of + +2868 +00:48:50,540 --> 00:48:50,880 +requirement + +2869 +00:48:50,880 --> 00:48:51,180 +there + +2870 +00:48:51,180 --> 00:48:51,400 +can + +2871 +00:48:51,400 --> 00:48:51,760 +be + +2872 +00:48:51,760 --> 00:48:52,340 +instances + +2873 +00:48:52,340 --> 00:48:52,760 +where + +2874 +00:48:52,760 --> 00:48:53,020 +everything + +2875 +00:48:53,020 --> 00:48:53,240 +gets + +2876 +00:48:53,240 --> 00:48:54,080 +clogged + +2877 +00:48:54,080 --> 00:48:54,240 +up + +2878 +00:48:54,240 --> 00:48:54,520 +and + +2879 +00:48:54,520 --> 00:48:54,880 +it + +2880 +00:48:54,880 --> 00:48:55,180 +doesn't + +2881 +00:48:55,180 --> 00:48:55,700 +know + +2882 +00:48:55,700 --> 00:48:55,920 +how + +2883 +00:48:55,920 --> 00:48:56,120 +to + +2884 +00:48:56,120 --> 00:48:56,540 +proceed + +2885 +00:48:56,540 --> 00:48:57,340 +and + +2886 +00:48:57,340 --> 00:48:57,460 +of + +2887 +00:48:57,460 --> 00:48:57,600 +course + +2888 +00:48:57,600 --> 00:48:57,900 +because + +2889 +00:48:57,900 --> 00:48:58,180 +it's + +2890 +00:48:58,180 --> 00:48:58,360 +ample + +2891 +00:48:58,360 --> 00:48:58,540 +it + +2892 +00:48:59,920 --> 00:49:00,060 +doesn't + +2893 +00:49:00,060 --> 00:49:00,300 +do + +2894 +00:49:00,300 --> 00:49:00,540 +it + +2895 +00:49:01,240 --> 00:49:01,840 +now + +2896 +00:49:02,580 --> 00:49:02,660 +the + +2897 +00:49:02,660 --> 00:49:02,900 +other + +2898 +00:49:02,900 --> 00:49:03,940 +so + +2899 +00:49:03,940 --> 00:49:04,280 +are + +2900 +00:49:04,280 --> 00:49:04,480 +you + +2901 +00:49:04,480 --> 00:49:04,820 +seeing + +2902 +00:49:04,820 --> 00:49:05,040 +the + +2903 +00:49:05,040 --> 00:49:05,340 +files + +2904 +00:49:05,340 --> 00:49:05,720 +that + +2905 +00:49:05,720 --> 00:49:05,780 +are + +2906 +00:49:05,780 --> 00:49:05,880 +on + +2907 +00:49:05,880 --> 00:49:06,040 +your + +2908 +00:49:06,040 --> 00:49:06,440 +pc + +2909 +00:49:06,440 --> 00:49:07,640 +are + +2910 +00:49:07,640 --> 00:49:08,520 +those + +2911 +00:49:08,520 --> 00:49:08,980 +showing + +2912 +00:49:08,980 --> 00:49:09,320 +up + +2913 +00:49:09,320 --> 00:49:09,400 +in + +2914 +00:49:09,400 --> 00:49:09,760 +icloud + +2915 +00:49:10,720 --> 00:49:11,320 +well + +2916 +00:49:11,320 --> 00:49:11,980 +that's + +2917 +00:49:11,980 --> 00:49:12,100 +the + +2918 +00:49:12,100 --> 00:49:12,400 +question + +2919 +00:49:12,400 --> 00:49:12,780 +some + +2920 +00:49:12,780 --> 00:49:12,960 +of + +2921 +00:49:12,960 --> 00:49:13,100 +them + +2922 +00:49:13,100 --> 00:49:13,320 +are + +2923 +00:49:13,320 --> 00:49:13,600 +some + +2924 +00:49:13,600 --> 00:49:13,780 +of + +2925 +00:49:13,780 --> 00:49:13,920 +them + +2926 +00:49:13,920 --> 00:49:14,360 +aren't + +2927 +00:49:14,360 --> 00:49:14,580 +so + +2928 +00:49:14,580 --> 00:49:14,800 +if + +2929 +00:49:14,800 --> 00:49:15,040 +i + +2930 +00:49:15,040 --> 00:49:15,160 +would + +2931 +00:49:15,160 --> 00:49:15,420 +for + +2932 +00:49:15,420 --> 00:49:16,000 +example + +2933 +00:49:16,000 --> 00:49:16,720 +i + +2934 +00:49:16,720 --> 00:49:17,260 +have + +2935 +00:49:17,260 --> 00:49:17,400 +a + +2936 +00:49:17,400 --> 00:49:17,680 +program + +2937 +00:49:17,680 --> 00:49:18,000 +to + +2938 +00:49:18,000 --> 00:49:18,220 +take + +2939 +00:49:18,220 --> 00:49:18,380 +some + +2940 +00:49:18,380 --> 00:49:18,640 +old + +2941 +00:49:18,640 --> 00:49:18,980 +legacy + +2942 +00:49:18,980 --> 00:49:19,360 +files + +2943 +00:49:19,360 --> 00:49:19,800 +created + +2944 +00:49:19,800 --> 00:49:20,040 +with + +2945 +00:49:20,040 --> 00:49:20,420 +pfs + +2946 +00:49:20,420 --> 00:49:20,760 +professional + +2947 +00:49:20,760 --> 00:49:21,360 +right + +2948 +00:49:21,360 --> 00:49:21,700 +convert + +2949 +00:49:21,700 --> 00:49:21,960 +them + +2950 +00:49:21,960 --> 00:49:22,080 +to + +2951 +00:49:22,080 --> 00:49:22,500 +pdf + +2952 +00:49:22,500 --> 00:49:23,360 +and + +2953 +00:49:23,360 --> 00:49:23,660 +word + +2954 +00:49:23,660 --> 00:49:24,120 +files + +2955 +00:49:25,140 --> 00:49:25,740 +so + +2956 +00:49:26,260 --> 00:49:26,640 +i've + +2957 +00:49:26,640 --> 00:49:26,860 +used + +2958 +00:49:26,860 --> 00:49:27,200 +that + +2959 +00:49:27,200 --> 00:49:28,060 +as + +2960 +00:49:28,060 --> 00:49:28,300 +an + +2961 +00:49:28,300 --> 00:49:28,540 +aid + +2962 +00:49:28,540 --> 00:49:28,740 +to + +2963 +00:49:28,740 --> 00:49:28,820 +try + +2964 +00:49:28,820 --> 00:49:29,120 +to + +2965 +00:49:29,120 --> 00:49:29,520 +get + +2966 +00:49:29,520 --> 00:49:30,200 +everything + +2967 +00:49:30,200 --> 00:49:30,480 +into + +2968 +00:49:30,480 --> 00:49:30,700 +one + +2969 +00:49:30,700 --> 00:49:31,120 +place + +2970 +00:49:31,120 --> 00:49:31,260 +so + +2971 +00:49:31,260 --> 00:49:31,380 +i + +2972 +00:49:31,380 --> 00:49:31,480 +can + +2973 +00:49:31,480 --> 00:49:31,800 +see + +2974 +00:49:31,800 --> 00:49:32,260 +from + +2975 +00:49:32,260 --> 00:49:32,480 +all + +2976 +00:49:32,480 --> 00:49:32,600 +the + +2977 +00:49:32,600 --> 00:49:32,960 +devices + +2978 +00:49:32,960 --> 00:49:33,360 +so + +2979 +00:49:33,360 --> 00:49:33,700 +let's + +2980 +00:49:33,700 --> 00:49:33,880 +say + +2981 +00:49:33,880 --> 00:49:34,780 +i + +2982 +00:49:34,780 --> 00:49:34,980 +would + +2983 +00:49:34,980 --> 00:49:35,260 +send + +2984 +00:49:35,260 --> 00:49:35,600 +over + +2985 +00:49:35,600 --> 00:49:35,900 +some + +2986 +00:49:35,900 --> 00:49:36,240 +word + +2987 +00:49:36,240 --> 00:49:36,640 +files + +2988 +00:49:36,640 --> 00:49:37,040 +today + +2989 +00:49:37,040 --> 00:49:37,360 +that + +2990 +00:49:37,360 --> 00:49:37,440 +are + +2991 +00:49:37,440 --> 00:49:37,760 +part + +2992 +00:49:37,760 --> 00:49:37,960 +of + +2993 +00:49:37,960 --> 00:49:38,560 +a + +2994 +00:49:38,560 --> 00:49:39,000 +cluster + +2995 +00:49:39,000 --> 00:49:39,180 +of + +2996 +00:49:39,180 --> 00:49:39,520 +files + +2997 +00:49:39,520 --> 00:49:39,740 +in + +2998 +00:49:39,740 --> 00:49:39,820 +a + +2999 +00:49:39,820 --> 00:49:40,280 +directory + +3000 +00:49:40,280 --> 00:49:41,300 +the + +3001 +00:49:41,300 --> 00:49:41,820 +answer + +3002 +00:49:41,820 --> 00:49:42,100 +is + +3003 +00:49:42,100 --> 00:49:42,300 +no + +3004 +00:49:42,300 --> 00:49:42,520 +they + +3005 +00:49:42,520 --> 00:49:42,820 +don't + +3006 +00:49:42,820 --> 00:49:43,000 +just + +3007 +00:49:43,000 --> 00:49:43,220 +go + +3008 +00:49:43,220 --> 00:49:43,520 +over + +3009 +00:49:43,520 --> 00:49:44,040 +they + +3010 +00:49:44,040 --> 00:49:44,220 +may + +3011 +00:49:44,220 --> 00:49:44,360 +or + +3012 +00:49:44,360 --> 00:49:44,520 +may + +3013 +00:49:44,520 --> 00:49:44,800 +not + +3014 +00:49:44,800 --> 00:49:45,580 +but + +3015 +00:49:45,580 --> 00:49:45,720 +do + +3016 +00:49:45,720 --> 00:49:45,880 +they + +3017 +00:49:45,880 --> 00:49:46,500 +dependably + +3018 +00:49:46,500 --> 00:49:46,760 +go + +3019 +00:49:46,760 --> 00:49:47,080 +over + +3020 +00:49:47,080 --> 00:49:47,540 +rather + +3021 +00:49:47,540 --> 00:49:48,120 +uniformly + +3022 +00:49:48,120 --> 00:49:49,100 +given + +3023 +00:49:49,100 --> 00:49:49,320 +a + +3024 +00:49:49,320 --> 00:49:49,660 +time + +3025 +00:49:49,660 --> 00:49:49,960 +interval + +3026 +00:49:49,960 --> 00:49:50,660 +no + +3027 +00:49:50,660 --> 00:49:50,920 +they + +3028 +00:49:50,920 --> 00:49:51,340 +don't + +3029 +00:49:51,340 --> 00:49:51,900 +i'll + +3030 +00:49:51,900 --> 00:49:52,160 +take + +3031 +00:49:52,160 --> 00:49:52,340 +the + +3032 +00:49:52,340 --> 00:49:52,660 +laptop + +3033 +00:49:52,660 --> 00:49:53,080 +the + +3034 +00:49:53,080 --> 00:49:53,360 +source + +3035 +00:49:53,360 --> 00:49:53,580 +laptop + +3036 +00:49:54,420 --> 00:49:55,020 +strip + +3037 +00:49:55,020 --> 00:49:55,360 +it + +3038 +00:49:55,360 --> 00:49:55,480 +of + +3039 +00:49:55,480 --> 00:49:55,700 +anything + +3040 +00:49:55,700 --> 00:49:56,080 +that's + +3041 +00:49:56,080 --> 00:49:56,520 +operating + +3042 +00:49:56,520 --> 00:49:57,320 +leave + +3043 +00:49:57,320 --> 00:49:57,540 +it + +3044 +00:49:57,540 --> 00:49:57,700 +on + +3045 +00:49:57,700 --> 00:49:58,120 +overnight + +3046 +00:49:58,120 --> 00:49:58,460 +with + +3047 +00:49:58,460 --> 00:49:58,680 +nothing + +3048 +00:49:58,680 --> 00:49:58,960 +else + +3049 +00:49:58,960 --> 00:49:59,180 +going + +3050 +00:49:59,180 --> 00:49:59,500 +on + +3051 +00:49:59,500 --> 00:49:59,780 +but + +3052 +00:49:59,780 --> 00:50:00,240 +hopefully + +3053 +00:50:00,240 --> 00:50:00,820 +the + +3054 +00:50:00,820 --> 00:50:01,200 +iCloud + +3055 +00:50:01,200 --> 00:50:01,800 +transfer + +3056 +00:50:01,800 --> 00:50:02,240 +and + +3057 +00:50:02,240 --> 00:50:02,520 +it + +3058 +00:50:02,520 --> 00:50:02,740 +still + +3059 +00:50:02,740 --> 00:50:03,060 +doesn't + +3060 +00:50:03,060 --> 00:50:03,240 +seem + +3061 +00:50:03,240 --> 00:50:03,380 +to + +3062 +00:50:03,380 --> 00:50:03,620 +help + +3063 +00:50:03,620 --> 00:50:04,520 +interesting + +3064 +00:50:04,520 --> 00:50:05,720 +i + +3065 +00:50:06,560 --> 00:50:07,160 +would + +3066 +00:50:07,160 --> 00:50:07,660 +guess + +3067 +00:50:07,660 --> 00:50:07,840 +that + +3068 +00:50:07,840 --> 00:50:08,000 +there's + +3069 +00:50:08,000 --> 00:50:08,200 +probably + +3070 +00:50:08,200 --> 00:50:08,440 +a little + +3071 +00:50:08,440 --> 00:50:08,600 +more + +3072 +00:50:08,600 --> 00:50:08,920 +going + +3073 +00:50:08,920 --> 00:50:09,500 +on + +3074 +00:50:09,500 --> 00:50:09,720 +there + +3075 +00:50:09,720 --> 00:50:10,020 +but + +3076 +00:50:10,020 --> 00:50:10,660 +also + +3077 +00:50:10,660 --> 00:50:11,300 +iCloud + +3078 +00:50:11,300 --> 00:50:11,640 +isn't + +3079 +00:50:11,640 --> 00:50:12,140 +necessarily + +3080 +00:50:12,140 --> 00:50:12,680 +the + +3081 +00:50:12,680 --> 00:50:13,680 +best + +3082 +00:50:14,300 --> 00:50:14,900 +solution + +3083 +00:50:14,900 --> 00:50:15,380 +for + +3084 +00:50:15,380 --> 00:50:15,580 +that + +3085 +00:50:15,580 --> 00:50:16,000 +number + +3086 +00:50:16,000 --> 00:50:16,320 +of + +3087 +00:50:16,320 --> 00:50:16,640 +files + +3088 +00:50:16,640 --> 00:50:16,840 +and + +3089 +00:50:16,840 --> 00:50:17,100 +smaller + +3090 +00:50:17,100 --> 00:50:17,440 +numbers + +3091 +00:50:17,440 --> 00:50:18,160 +that + +3092 +00:50:18,160 --> 00:50:18,520 +probably + +3093 +00:50:18,520 --> 00:50:18,820 +would + +3094 +00:50:18,820 --> 00:50:19,020 +work + +3095 +00:50:19,020 --> 00:50:19,260 +pretty + +3096 +00:50:19,260 --> 00:50:19,500 +well + +3097 +00:50:19,500 --> 00:50:19,740 +not + +3098 +00:50:19,740 --> 00:50:19,900 +to + +3099 +00:50:19,900 --> 00:50:20,120 +mention + +3100 +00:50:20,120 --> 00:50:20,400 +that + +3101 +00:50:20,400 --> 00:50:21,520 +iCloud + +3102 +00:50:21,520 --> 00:50:21,760 +seems + +3103 +00:50:21,760 --> 00:50:21,960 +to + +3104 +00:50:21,960 --> 00:50:22,140 +have + +3105 +00:50:22,140 --> 00:50:22,360 +an + +3106 +00:50:22,360 --> 00:50:23,020 +affinity + +3107 +00:50:23,020 --> 00:50:23,600 +for + +3108 +00:50:24,520 --> 00:50:25,120 +pictures + +3109 +00:50:25,120 --> 00:50:25,760 +and + +3110 +00:50:25,760 --> 00:50:26,400 +music + +3111 +00:50:26,400 --> 00:50:26,840 +files + +3112 +00:50:26,840 --> 00:50:27,220 +not + +3113 +00:50:27,220 --> 00:50:27,780 +necessarily + +3114 +00:50:27,780 --> 00:50:28,560 +anything + +3115 +00:50:28,560 --> 00:50:29,160 +else + +3116 +00:50:29,860 --> 00:50:30,460 +so + +3117 +00:50:31,160 --> 00:50:31,920 +you may + +3118 +00:50:31,920 --> 00:50:32,100 +be + +3119 +00:50:32,100 --> 00:50:32,340 +looking + +3120 +00:50:32,340 --> 00:50:32,580 +at + +3121 +00:50:32,580 --> 00:50:33,300 +possibly + +3122 +00:50:33,300 --> 00:50:33,540 +a + +3123 +00:50:33,540 --> 00:50:33,700 +different + +3124 +00:50:33,700 --> 00:50:34,040 +solution + +3125 +00:50:34,040 --> 00:50:34,280 +for + +3126 +00:50:34,280 --> 00:50:34,460 +that + +3127 +00:50:34,460 --> 00:50:34,780 +if + +3128 +00:50:34,780 --> 00:50:34,920 +you + +3129 +00:50:34,920 --> 00:50:35,220 +want + +3130 +00:50:35,220 --> 00:50:35,380 +to + +3131 +00:50:35,380 --> 00:50:35,460 +be + +3132 +00:50:35,460 --> 00:50:35,620 +able + +3133 +00:50:35,620 --> 00:50:35,860 +to + +3134 +00:50:35,860 --> 00:50:36,660 +synchronize + +3135 +00:50:36,660 --> 00:50:37,060 +large + +3136 +00:50:37,060 --> 00:50:37,460 +amounts + +3137 +00:50:37,460 --> 00:50:37,720 +of + +3138 +00:50:37,720 --> 00:50:37,920 +data + +3139 +00:50:37,920 --> 00:50:38,460 +of + +3140 +00:50:38,460 --> 00:50:39,280 +various + +3141 +00:50:39,280 --> 00:50:40,120 +data + +3142 +00:50:40,120 --> 00:50:40,480 +types + +3143 +00:50:41,160 --> 00:50:41,760 +to + +3144 +00:50:41,760 --> 00:50:42,000 +multiple + +3145 +00:50:42,000 --> 00:50:42,300 +machines + +3146 +00:50:42,300 --> 00:50:43,280 +so + +3147 +00:50:44,700 --> 00:50:45,480 +let me + +3148 +00:50:45,480 --> 00:50:46,320 +see if + +3149 +00:50:46,320 --> 00:50:46,480 +i can + +3150 +00:50:46,480 --> 00:50:46,700 +understand + +3151 +00:50:46,700 --> 00:50:46,960 +how + +3152 +00:50:46,960 --> 00:50:47,140 +you're + +3153 +00:50:47,140 --> 00:50:47,420 +using + +3154 +00:50:47,420 --> 00:50:47,660 +this + +3155 +00:50:48,340 --> 00:50:48,940 +you're + +3156 +00:50:48,940 --> 00:50:49,280 +using + +3157 +00:50:49,280 --> 00:50:49,560 +it + +3158 +00:50:49,560 --> 00:50:50,000 +effectively + +3159 +00:50:50,000 --> 00:50:50,360 +as a + +3160 +00:50:50,360 --> 00:50:50,640 +backup + +3161 +00:50:50,640 --> 00:50:51,100 +and + +3162 +00:50:51,100 --> 00:50:51,340 +a + +3163 +00:50:51,340 --> 00:50:51,600 +way + +3164 +00:50:51,600 --> 00:50:51,880 +to + +3165 +00:50:51,880 --> 00:50:52,340 +translate + +3166 +00:50:52,340 --> 00:50:52,340 + + +3167 +00:50:52,340 --> 00:50:52,340 + + +3168 +00:50:52,340 --> 00:50:52,340 + + +3169 +00:50:52,340 --> 00:50:52,460 +for + +3170 +00:50:52,460 --> 00:50:52,660 +data + +3171 +00:50:52,660 --> 00:50:52,880 +to + +3172 +00:50:52,880 --> 00:50:53,080 +your + +3173 +00:50:53,080 --> 00:50:53,400 +mobile + +3174 +00:50:53,400 --> 00:50:53,900 +devices + +3175 +00:50:53,900 --> 00:50:54,600 +correct + +3176 +00:50:54,600 --> 00:50:55,000 +in + +3177 +00:50:55,000 --> 00:50:55,140 +other + +3178 +00:50:55,140 --> 00:50:55,300 +words + +3179 +00:50:55,300 --> 00:50:55,440 +i + +3180 +00:50:55,440 --> 00:50:55,600 +have + +3181 +00:50:55,600 --> 00:50:55,740 +a + +3182 +00:50:55,740 --> 00:50:56,520 +large + +3183 +00:50:57,160 --> 00:50:57,320 +number + +3184 +00:50:57,320 --> 00:50:57,540 +of + +3185 +00:50:57,540 --> 00:50:57,920 +files + +3186 +00:50:58,680 --> 00:50:59,400 +various + +3187 +00:51:00,000 --> 00:51:00,460 +sources + +3188 +00:51:00,460 --> 00:51:01,240 +so + +3189 +00:51:01,240 --> 00:51:01,640 +i + +3190 +00:51:01,640 --> 00:51:01,840 +don't + +3191 +00:51:01,840 --> 00:51:01,980 +mean + +3192 +00:51:01,980 --> 00:51:02,460 +unique + +3193 +00:51:02,460 --> 00:51:02,840 +unique + +3194 +00:51:02,840 --> 00:51:03,880 +data + +3195 +00:51:04,760 --> 00:51:05,040 +types + +3196 +00:51:05,040 --> 00:51:05,460 +but + +3197 +00:51:05,460 --> 00:51:05,820 +various + +3198 +00:51:05,820 --> 00:51:06,380 +sources + +3199 +00:51:06,380 --> 00:51:06,740 +so + +3200 +00:51:06,740 --> 00:51:07,080 +let's + +3201 +00:51:07,080 --> 00:51:07,260 +say + +3202 +00:51:07,260 --> 00:51:07,480 +you + +3203 +00:51:08,360 --> 00:51:09,080 +signed + +3204 +00:51:09,080 --> 00:51:09,720 +a + +3205 +00:51:09,720 --> 00:51:09,960 +20 + +3206 +00:51:09,960 --> 00:51:10,240 +page + +3207 +00:51:10,240 --> 00:51:10,780 +contract + +3208 +00:51:10,780 --> 00:51:11,840 +well + +3209 +00:51:11,840 --> 00:51:12,260 +i + +3210 +00:51:12,260 --> 00:51:12,420 +would + +3211 +00:51:12,420 --> 00:51:12,620 +want + +3212 +00:51:12,620 --> 00:51:12,720 +to + +3213 +00:51:12,720 --> 00:51:13,000 +slap + +3214 +00:51:13,000 --> 00:51:13,260 +that + +3215 +00:51:13,260 --> 00:51:14,500 +into + +3216 +00:51:14,500 --> 00:51:14,820 +the + +3217 +00:51:14,820 --> 00:51:15,140 +scanner + +3218 +00:51:15,140 --> 00:51:16,540 +create + +3219 +00:51:16,540 --> 00:51:16,780 +a + +3220 +00:51:16,780 --> 00:51:17,200 +pdf + +3221 +00:51:17,200 --> 00:51:17,760 +version + +3222 +00:51:17,760 --> 00:51:18,140 +of + +3223 +00:51:18,140 --> 00:51:18,320 +it + +3224 +00:51:18,320 --> 00:51:18,900 +and + +3225 +00:51:18,900 --> 00:51:19,140 +have + +3226 +00:51:19,140 --> 00:51:19,260 +it + +3227 +00:51:19,260 --> 00:51:19,420 +on + +3228 +00:51:19,420 --> 00:51:19,620 +my + +3229 +00:51:19,620 --> 00:51:20,260 +5i + +3230 +00:51:20,260 --> 00:51:20,640 +devices + +3231 +00:51:20,640 --> 00:51:21,820 +so + +3232 +00:51:21,820 --> 00:51:22,200 +that's + +3233 +00:51:22,200 --> 00:51:22,260 +an + +3234 +00:51:22,260 --> 00:51:22,800 +example + +3235 +00:51:22,800 --> 00:51:23,060 +of + +3236 +00:51:23,060 --> 00:51:23,180 +the + +3237 +00:51:23,180 --> 00:51:23,420 +way + +3238 +00:51:23,420 --> 00:51:23,560 +i + +3239 +00:51:23,560 --> 00:51:23,720 +would + +3240 +00:51:23,720 --> 00:51:23,980 +use + +3241 +00:51:23,980 --> 00:51:24,280 +that + +3242 +00:51:24,280 --> 00:51:24,700 +if + +3243 +00:51:24,700 --> 00:51:24,840 +i + +3244 +00:51:24,840 --> 00:51:24,960 +got + +3245 +00:51:24,960 --> 00:51:25,080 +a + +3246 +00:51:25,080 --> 00:51:25,500 +newsletter + +3247 +00:51:25,500 --> 00:51:25,920 +in + +3248 +00:51:25,920 --> 00:51:26,200 +from + +3249 +00:51:26,200 --> 00:51:26,540 +john + +3250 +00:51:26,540 --> 00:51:26,820 +doe + +3251 +00:51:26,820 --> 00:51:27,300 +associates + +3252 +00:51:27,300 --> 00:51:28,220 +i + +3253 +00:51:28,220 --> 00:51:28,420 +would + +3254 +00:51:28,420 --> 00:51:28,600 +want + +3255 +00:51:28,600 --> 00:51:28,720 +to + +3256 +00:51:28,720 --> 00:51:28,920 +slap + +3257 +00:51:28,920 --> 00:51:29,220 +that + +3258 +00:51:29,220 --> 00:51:29,440 +in + +3259 +00:51:29,440 --> 00:51:29,660 +there + +3260 +00:51:29,660 --> 00:51:30,460 +same + +3261 +00:51:30,460 --> 00:51:31,100 +process + +3262 +00:51:31,100 --> 00:51:31,960 +pdf + +3263 +00:51:31,960 --> 00:51:32,400 +files + +3264 +00:51:32,400 --> 00:51:33,400 +transfer + +3265 +00:51:33,400 --> 00:51:34,060 +so + +3266 +00:51:34,820 --> 00:51:35,060 +each + +3267 +00:51:35,060 --> 00:51:35,420 +file + +3268 +00:51:35,420 --> 00:51:35,740 +of + +3269 +00:51:35,740 --> 00:51:36,080 +course + +3270 +00:51:36,080 --> 00:51:36,300 +with + +3271 +00:51:36,300 --> 00:51:36,440 +the + +3272 +00:51:36,440 --> 00:51:36,760 +scanner + +3273 +00:51:36,760 --> 00:51:37,140 +shows + +3274 +00:51:37,140 --> 00:51:37,500 +up + +3275 +00:51:37,500 --> 00:51:37,660 +as + +3276 +00:51:37,660 --> 00:51:37,760 +a + +3277 +00:51:37,760 --> 00:51:38,060 +single + +3278 +00:51:38,060 --> 00:51:38,540 +pdf + +3279 +00:51:38,540 --> 00:51:39,300 +it + +3280 +00:51:39,300 --> 00:51:39,500 +may + +3281 +00:51:39,500 --> 00:51:39,720 +have + +3282 +00:51:39,720 --> 00:51:40,000 +anywhere + +3283 +00:51:40,000 --> 00:51:40,360 +from + +3284 +00:51:40,360 --> 00:51:40,620 +one + +3285 +00:51:40,620 --> 00:51:41,120 +to + +3286 +00:51:41,120 --> 00:51:41,520 +500 + +3287 +00:51:41,520 --> 00:51:41,980 +pages + +3288 +00:51:41,980 --> 00:51:42,340 +maybe + +3289 +00:51:42,340 --> 00:51:42,580 +an + +3290 +00:51:42,580 --> 00:51:42,820 +annual + +3291 +00:51:42,820 --> 00:51:43,200 +report + +3292 +00:51:43,200 --> 00:51:43,520 +from + +3293 +00:51:43,520 --> 00:51:43,620 +a + +3294 +00:51:43,620 --> 00:51:43,900 +company + +3295 +00:51:43,900 --> 00:51:44,440 +so + +3296 +00:51:44,440 --> 00:51:44,920 +that's + +3297 +00:51:44,920 --> 00:51:45,020 +the + +3298 +00:51:45,020 --> 00:51:45,260 +range + +3299 +00:51:45,260 --> 00:51:45,460 +of + +3300 +00:51:45,460 --> 00:51:45,700 +stuff + +3301 +00:51:45,700 --> 00:51:45,920 +that + +3302 +00:51:45,920 --> 00:51:46,040 +it + +3303 +00:51:46,560 --> 00:51:46,780 +takes + +3304 +00:51:46,780 --> 00:51:47,340 +okay + +3305 +00:51:47,340 --> 00:51:47,720 +so + +3306 +00:51:53,620 --> 00:51:54,220 +i + +3307 +00:51:55,700 --> 00:51:56,300 +cloud + +3308 +00:51:56,300 --> 00:51:56,460 +drive + +3309 +00:51:56,460 --> 00:51:56,800 +like + +3310 +00:51:56,800 --> 00:51:56,900 +i + +3311 +00:51:56,900 --> 00:51:57,080 +said + +3312 +00:51:57,080 --> 00:51:57,220 +has + +3313 +00:51:57,220 --> 00:51:57,420 +this + +3314 +00:51:57,420 --> 00:51:57,760 +affinity + +3315 +00:51:57,760 --> 00:51:58,100 +for + +3316 +00:51:58,100 --> 00:51:58,380 +pictures + +3317 +00:51:58,380 --> 00:51:58,540 +and + +3318 +00:51:58,540 --> 00:51:58,740 +music + +3319 +00:51:58,740 --> 00:51:59,060 +because + +3320 +00:51:59,060 --> 00:51:59,460 +that's + +3321 +00:51:59,460 --> 00:51:59,680 +the + +3322 +00:51:59,680 --> 00:52:00,260 +general + +3323 +00:52:00,260 --> 00:52:00,760 +usage + +3324 +00:52:00,760 --> 00:52:01,160 +for + +3325 +00:52:01,160 --> 00:52:01,520 +people + +3326 +00:52:01,520 --> 00:52:01,720 +who + +3327 +00:52:01,720 --> 00:52:01,820 +are + +3328 +00:52:01,820 --> 00:52:02,140 +using + +3329 +00:52:02,140 --> 00:52:02,840 +mac + +3330 +00:52:02,840 --> 00:52:03,460 +computers + +3331 +00:52:03,460 --> 00:52:03,760 +and + +3332 +00:52:03,760 --> 00:52:04,080 +ios + +3333 +00:52:04,080 --> 00:52:04,460 +devices + +3334 +00:52:05,160 --> 00:52:05,760 +you + +3335 +00:52:06,860 --> 00:52:06,960 +might + +3336 +00:52:06,960 --> 00:52:07,160 +be + +3337 +00:52:07,160 --> 00:52:07,380 +wanting + +3338 +00:52:07,380 --> 00:52:07,780 +to + +3339 +00:52:07,780 --> 00:52:07,920 +look + +3340 +00:52:07,920 --> 00:52:08,020 +at + +3341 +00:52:08,020 --> 00:52:08,180 +something + +3342 +00:52:08,180 --> 00:52:08,480 +like + +3343 +00:52:08,480 --> 00:52:09,000 +dropbox + +3344 +00:52:09,000 --> 00:52:09,340 +or + +3345 +00:52:09,340 --> 00:52:09,700 +one + +3346 +00:52:09,700 --> 00:52:09,820 +of + +3347 +00:52:09,820 --> 00:52:09,860 +the + +3348 +00:52:09,860 --> 00:52:10,180 +services + +3349 +00:52:10,180 --> 00:52:10,400 +that + +3350 +00:52:10,400 --> 00:52:10,540 +we + +3351 +00:52:10,540 --> 00:52:10,860 +provide + +3352 +00:52:10,860 --> 00:52:11,080 +we + +3353 +00:52:11,080 --> 00:52:11,280 +provide + +3354 +00:52:11,280 --> 00:52:11,520 +known + +3355 +00:52:11,520 --> 00:52:11,760 +cloud + +3356 +00:52:11,760 --> 00:52:12,020 +service + +3357 +00:52:12,020 --> 00:52:12,260 +for + +3358 +00:52:12,260 --> 00:52:12,420 +that + +3359 +00:52:13,100 --> 00:52:13,700 +where + +3360 +00:52:13,700 --> 00:52:14,520 +you + +3361 +00:52:14,520 --> 00:52:14,760 +can + +3362 +00:52:14,760 --> 00:52:15,240 +synchronize + +3363 +00:52:15,240 --> 00:52:15,580 +huge + +3364 +00:52:15,580 --> 00:52:15,840 +amounts + +3365 +00:52:15,840 --> 00:52:16,000 +of + +3366 +00:52:16,000 --> 00:52:16,240 +data + +3367 +00:52:16,240 --> 00:52:16,800 +and + +3368 +00:52:16,800 --> 00:52:17,280 +numbers + +3369 +00:52:17,280 --> 00:52:17,480 +of + +3370 +00:52:17,480 --> 00:52:17,780 +files + +3371 +00:52:17,780 --> 00:52:18,280 +with + +3372 +00:52:18,280 --> 00:52:19,480 +any + +3373 +00:52:19,480 --> 00:52:19,720 +number + +3374 +00:52:19,720 --> 00:52:19,900 +of + +3375 +00:52:19,900 --> 00:52:20,240 +devices + +3376 +00:52:20,960 --> 00:52:21,560 +is + +3377 +00:52:21,560 --> 00:52:22,040 +part + +3378 +00:52:22,040 --> 00:52:22,040 + + +3379 +00:52:22,040 --> 00:52:22,260 +the + +3380 +00:52:22,260 --> 00:52:22,580 +expression + +3381 +00:52:22,580 --> 00:52:23,060 +google + +3382 +00:52:23,060 --> 00:52:23,940 +services + +3383 +00:52:23,940 --> 00:52:24,520 +are + +3384 +00:52:24,520 --> 00:52:24,840 +available + +3385 +00:52:24,840 --> 00:52:25,480 +for + +3386 +00:52:25,480 --> 00:52:25,700 +it + +3387 +00:52:25,700 --> 00:52:26,140 +google + +3388 +00:52:26,140 --> 00:52:26,620 +drive + +3389 +00:52:26,620 --> 00:52:26,840 +would + +3390 +00:52:26,840 --> 00:52:27,040 +work + +3391 +00:52:27,040 --> 00:52:27,160 +for + +3392 +00:52:27,160 --> 00:52:27,280 +that + +3393 +00:52:27,280 --> 00:52:27,480 +but + +3394 +00:52:27,480 --> 00:52:27,620 +the + +3395 +00:52:27,620 --> 00:52:27,920 +problem + +3396 +00:52:27,920 --> 00:52:28,180 +with + +3397 +00:52:28,180 --> 00:52:28,500 +the + +3398 +00:52:28,500 --> 00:52:29,480 +ios + +3399 +00:52:29,480 --> 00:52:29,900 +side + +3400 +00:52:29,900 --> 00:52:30,280 +is + +3401 +00:52:30,280 --> 00:52:30,500 +that + +3402 +00:52:30,500 --> 00:52:30,960 +it + +3403 +00:52:30,960 --> 00:52:31,280 +doesn't + +3404 +00:52:31,280 --> 00:52:31,520 +play + +3405 +00:52:31,520 --> 00:52:31,800 +real + +3406 +00:52:31,800 --> 00:52:32,120 +nice + +3407 +00:52:32,120 --> 00:52:32,340 +with + +3408 +00:52:32,340 --> 00:52:32,820 +the + +3409 +00:52:32,820 --> 00:52:33,300 +i + +3410 +00:52:33,300 --> 00:52:33,720 +devices + +3411 +00:52:34,980 --> 00:52:35,540 +so + +3412 +00:52:35,540 --> 00:52:36,180 +you're + +3413 +00:52:36,180 --> 00:52:36,380 +going to + +3414 +00:52:36,380 --> 00:52:36,680 +look at + +3415 +00:52:36,680 --> 00:52:36,820 +something + +3416 +00:52:36,820 --> 00:52:37,020 +that's + +3417 +00:52:37,020 --> 00:52:37,080 +a little + +3418 +00:52:37,080 --> 00:52:37,240 +more + +3419 +00:52:37,240 --> 00:52:37,640 +neutral + +3420 +00:52:37,640 --> 00:52:38,040 +just + +3421 +00:52:38,040 --> 00:52:38,300 +because + +3422 +00:52:38,300 --> 00:52:38,800 +google + +3423 +00:52:38,800 --> 00:52:39,460 +and + +3424 +00:52:39,460 --> 00:52:40,020 +apple + +3425 +00:52:40,020 --> 00:52:40,240 +don't + +3426 +00:52:40,240 --> 00:52:40,520 +necessarily + +3427 +00:52:40,520 --> 00:52:40,880 +get + +3428 +00:52:40,880 --> 00:52:41,020 +along + +3429 +00:52:41,020 --> 00:52:41,280 +all + +3430 +00:52:41,280 --> 00:52:41,400 +the + +3431 +00:52:41,400 --> 00:52:41,660 +time + +3432 +00:52:41,660 --> 00:52:42,620 +so + +3433 +00:52:44,160 --> 00:52:44,720 +i + +3434 +00:52:44,720 --> 00:52:44,880 +guess + +3435 +00:52:44,880 --> 00:52:45,200 +that's + +3436 +00:52:45,200 --> 00:52:45,360 +the + +3437 +00:52:45,360 --> 00:52:46,140 +rub + +3438 +00:52:46,140 --> 00:52:46,520 +i + +3439 +00:52:46,520 --> 00:52:47,140 +do + +3440 +00:52:47,140 --> 00:52:47,260 +have + +3441 +00:52:47,260 --> 00:52:47,540 +a lot + +3442 +00:52:47,540 --> 00:52:47,640 +of + +3443 +00:52:47,640 --> 00:52:47,920 +pictures + +3444 +00:52:47,920 --> 00:52:48,160 +like + +3445 +00:52:48,160 --> 00:52:48,400 +everybody + +3446 +00:52:48,400 --> 00:52:48,740 +else + +3447 +00:52:48,740 --> 00:52:49,020 +does + +3448 +00:52:49,020 --> 00:52:49,240 +but + +3449 +00:52:49,920 --> 00:52:50,360 +the + +3450 +00:52:50,360 --> 00:52:50,720 +pictures + +3451 +00:52:50,720 --> 00:52:50,980 +seems + +3452 +00:52:50,980 --> 00:52:51,380 +to be + +3453 +00:52:51,380 --> 00:52:51,640 +just + +3454 +00:52:51,640 --> 00:52:52,020 +fine + +3455 +00:52:52,020 --> 00:52:52,820 +probably + +3456 +00:52:53,440 --> 00:52:54,040 +seven or + +3457 +00:52:54,040 --> 00:52:54,160 +eight + +3458 +00:52:54,160 --> 00:52:54,480 +thousand + +3459 +00:52:54,480 --> 00:52:54,880 +pictures + +3460 +00:52:54,880 --> 00:52:55,180 +i + +3461 +00:52:55,180 --> 00:52:55,320 +guess + +3462 +00:52:55,320 --> 00:52:55,480 +not + +3463 +00:52:55,480 --> 00:52:55,640 +too + +3464 +00:52:55,640 --> 00:52:55,880 +many + +3465 +00:52:55,880 --> 00:52:56,100 +these + +3466 +00:52:56,100 --> 00:52:56,420 +days + +3467 +00:52:56,900 --> 00:52:57,340 +but + +3468 +00:52:57,340 --> 00:52:57,780 +they + +3469 +00:52:57,780 --> 00:52:58,120 +seem + +3470 +00:52:58,120 --> 00:52:58,240 +to + +3471 +00:52:58,240 --> 00:52:58,360 +be + +3472 +00:52:58,360 --> 00:52:58,660 +fine + +3473 +00:52:58,660 --> 00:52:59,260 +right + +3474 +00:52:59,260 --> 00:52:59,680 +and i + +3475 +00:52:59,680 --> 00:52:59,860 +think + +3476 +00:52:59,860 --> 00:53:00,020 +it's + +3477 +00:53:00,020 --> 00:53:00,120 +just + +3478 +00:53:00,120 --> 00:53:00,440 +because + +3479 +00:53:00,440 --> 00:53:00,720 +it + +3480 +00:53:01,300 --> 00:53:01,740 +preferences + +3481 +00:53:01,740 --> 00:53:02,560 +those + +3482 +00:53:02,560 --> 00:53:03,180 +particular + +3483 +00:53:03,180 --> 00:53:03,580 +types + +3484 +00:53:03,580 --> 00:53:03,760 +of + +3485 +00:53:03,760 --> 00:53:04,140 +files + +3486 +00:53:04,140 --> 00:53:04,940 +where + +3487 +00:53:04,940 --> 00:53:05,180 +something + +3488 +00:53:05,180 --> 00:53:05,460 +like + +3489 +00:53:05,460 --> 00:53:05,960 +dropbox + +3490 +00:53:05,960 --> 00:53:06,160 +or + +3491 +00:53:06,160 --> 00:53:06,340 +uncle + +3492 +00:53:06,340 --> 00:53:06,540 +like + +3493 +00:53:06,540 --> 00:53:06,840 +that + +3494 +00:53:06,840 --> 00:53:07,380 +does + +3495 +00:53:07,380 --> 00:53:07,640 +not + +3496 +00:53:07,640 --> 00:53:07,840 +care + +3497 +00:53:07,840 --> 00:53:08,000 +at + +3498 +00:53:08,000 --> 00:53:08,100 +all + +3499 +00:53:08,100 --> 00:53:08,320 +what + +3500 +00:53:08,320 --> 00:53:08,520 +type + +3501 +00:53:08,520 --> 00:53:08,700 +of + +3502 +00:53:08,700 --> 00:53:08,900 +data + +3503 +00:53:08,900 --> 00:53:09,060 +it + +3504 +00:53:09,060 --> 00:53:09,240 +is + +3505 +00:53:09,240 --> 00:53:09,320 +it + +3506 +00:53:09,320 --> 00:53:09,520 +just + +3507 +00:53:09,520 --> 00:53:09,740 +knows + +3508 +00:53:09,740 --> 00:53:09,920 +that + +3509 +00:53:09,920 --> 00:53:10,060 +it + +3510 +00:53:10,060 --> 00:53:10,200 +is + +3511 +00:53:10,200 --> 00:53:10,460 +data + +3512 +00:53:10,460 --> 00:53:10,620 +and + +3513 +00:53:10,620 --> 00:53:10,720 +it + +3514 +00:53:10,720 --> 00:53:10,980 +moves + +3515 +00:53:10,980 --> 00:53:11,120 +it + +3516 +00:53:11,900 --> 00:53:12,340 +what + +3517 +00:53:12,340 --> 00:53:12,800 +security + +3518 +00:53:12,800 --> 00:53:13,580 +concerns + +3519 +00:53:13,580 --> 00:53:14,200 +should + +3520 +00:53:14,200 --> 00:53:14,440 +someone + +3521 +00:53:14,440 --> 00:53:15,100 +have + +3522 +00:53:15,100 --> 00:53:15,380 +about + +3523 +00:53:15,380 --> 00:53:16,060 +dropbox + +3524 +00:53:17,260 --> 00:53:17,920 +other + +3525 +00:53:18,460 --> 00:53:18,620 +than + +3526 +00:53:18,620 --> 00:53:19,080 +other + +3527 +00:53:19,080 --> 00:53:19,480 +types + +3528 +00:53:19,480 --> 00:53:19,880 +of + +3529 +00:53:20,980 --> 00:53:21,640 +dropbox + +3530 +00:53:21,640 --> 00:53:21,920 +itself + +3531 +00:53:22,780 --> 00:53:23,440 +virtually + +3532 +00:53:23,440 --> 00:53:23,840 +none + +3533 +00:53:23,840 --> 00:53:24,860 +but + +3534 +00:53:24,860 --> 00:53:25,320 +when it + +3535 +00:53:25,320 --> 00:53:25,500 +comes + +3536 +00:53:25,500 --> 00:53:25,660 +to + +3537 +00:53:25,660 --> 00:53:26,500 +tangential + +3538 +00:53:26,500 --> 00:53:26,860 +stuff + +3539 +00:53:26,860 --> 00:53:27,340 +like + +3540 +00:53:27,340 --> 00:53:28,940 +if you get a certain type of infection + +3541 +00:53:28,940 --> 00:53:29,800 +that can damage + +3542 +00:53:29,800 --> 00:53:30,840 +the source + +3543 +00:53:30,840 --> 00:53:31,140 +data + +3544 +00:53:31,140 --> 00:53:32,680 +then that would + +3545 +00:53:32,680 --> 00:53:33,520 +carry along + +3546 +00:53:33,520 --> 00:53:34,560 +to something + +3547 +00:53:34,560 --> 00:53:34,900 +like + +3548 +00:53:34,900 --> 00:53:35,940 +either + +3549 +00:53:35,940 --> 00:53:37,080 +dropbox + +3550 +00:53:37,080 --> 00:53:37,400 +or uncle + +3551 +00:53:37,400 --> 00:53:37,780 +or anything + +3552 +00:53:37,780 --> 00:53:38,240 +like that + +3553 +00:53:38,240 --> 00:53:38,840 +right + +3554 +00:53:38,840 --> 00:53:39,140 +ok + +3555 +00:53:39,140 --> 00:53:39,600 +i figured + +3556 +00:53:39,600 --> 00:53:39,800 +that + +3557 +00:53:39,800 --> 00:53:40,040 +but + +3558 +00:53:40,040 --> 00:53:40,660 +it's + +3559 +00:53:40,660 --> 00:53:40,860 +nothing + +3560 +00:53:40,860 --> 00:53:41,360 +internal + +3561 +00:53:41,360 --> 00:53:41,640 +to + +3562 +00:53:41,640 --> 00:53:42,160 +dropbox + +3563 +00:53:42,160 --> 00:53:42,600 +per se + +3564 +00:53:42,600 --> 00:53:42,840 +it + +3565 +00:53:42,840 --> 00:53:43,180 +wouldn't + +3566 +00:53:43,180 --> 00:53:43,400 +work + +3567 +00:53:43,400 --> 00:53:44,100 +dropbox + +3568 +00:53:44,100 --> 00:53:44,480 +has had + +3569 +00:53:44,480 --> 00:53:44,620 +their + +3570 +00:53:44,620 --> 00:53:45,080 +problems + +3571 +00:53:45,080 --> 00:53:45,600 +but + +3572 +00:53:45,600 --> 00:53:46,160 +nothing + +3573 +00:53:46,160 --> 00:53:46,620 +so + +3574 +00:53:46,620 --> 00:53:47,240 +major + +3575 +00:53:47,240 --> 00:53:47,600 +that it's + +3576 +00:53:47,600 --> 00:53:48,100 +noteworthy + +3577 +00:53:48,100 --> 00:53:48,500 +right + +3578 +00:53:48,500 --> 00:53:49,140 +the + +3579 +00:53:49,140 --> 00:53:49,540 +biggest + +3580 +00:53:49,540 --> 00:53:49,860 +problem + +3581 +00:53:49,860 --> 00:53:50,120 +that i've + +3582 +00:53:50,120 --> 00:53:50,320 +seen + +3583 +00:53:50,320 --> 00:53:50,460 +with + +3584 +00:53:50,460 --> 00:53:51,000 +dropbox + +3585 +00:53:51,000 --> 00:53:51,600 +lately + +3586 +00:53:51,600 --> 00:53:52,200 +is + +3587 +00:53:52,200 --> 00:53:52,500 +that + +3588 +00:53:52,500 --> 00:53:53,600 +this + +3589 +00:53:53,600 --> 00:53:53,780 +is + +3590 +00:53:53,780 --> 00:53:54,000 +probably + +3591 +00:53:54,000 --> 00:53:54,400 +six + +3592 +00:53:54,400 --> 00:53:54,660 +months + +3593 +00:53:54,660 --> 00:53:54,900 +ago + +3594 +00:53:54,900 --> 00:53:55,120 +where + +3595 +00:53:55,120 --> 00:53:55,280 +they + +3596 +00:53:55,280 --> 00:53:55,440 +had + +3597 +00:53:55,440 --> 00:53:55,680 +some + +3598 +00:53:55,680 --> 00:53:56,020 +sort + +3599 +00:53:56,020 --> 00:53:56,140 +of + +3600 +00:53:56,140 --> 00:53:56,260 +a + +3601 +00:53:56,260 --> 00:53:56,580 +glitch + +3602 +00:53:56,580 --> 00:53:56,840 +where + +3603 +00:53:56,840 --> 00:53:57,580 +everybody's + +3604 +00:53:57,580 --> 00:53:57,740 +data + +3605 +00:53:57,740 --> 00:53:58,220 +reverted + +3606 +00:53:58,220 --> 00:53:58,660 +back + +3607 +00:53:58,660 --> 00:53:59,540 +like + +3608 +00:53:59,540 --> 00:53:59,960 +a + +3609 +00:53:59,960 --> 00:54:00,180 +week + +3610 +00:54:00,900 --> 00:54:01,460 +and + +3611 +00:54:02,260 --> 00:54:02,820 +then + +3612 +00:54:02,820 --> 00:54:03,180 +you + +3613 +00:54:03,180 --> 00:54:03,360 +had + +3614 +00:54:03,360 --> 00:54:03,460 +to + +3615 +00:54:03,460 --> 00:54:04,140 +request + +3616 +00:54:04,140 --> 00:54:04,520 +a + +3617 +00:54:04,520 --> 00:54:04,940 +special + +3618 +00:54:04,940 --> 00:54:05,620 +restore + +3619 +00:54:05,620 --> 00:54:06,200 +on + +3620 +00:54:06,200 --> 00:54:06,460 +their + +3621 +00:54:06,460 --> 00:54:06,800 +part + +3622 +00:54:06,800 --> 00:54:07,100 +to + +3623 +00:54:07,100 --> 00:54:07,300 +put + +3624 +00:54:07,300 --> 00:54:07,460 +your + +3625 +00:54:07,460 --> 00:54:07,700 +data + +3626 +00:54:07,700 --> 00:54:07,920 +back + +3627 +00:54:07,920 --> 00:54:08,080 +to + +3628 +00:54:08,080 --> 00:54:08,140 +the + +3629 +00:54:08,140 --> 00:54:08,260 +way + +3630 +00:54:08,260 --> 00:54:08,360 +it + +3631 +00:54:08,360 --> 00:54:08,660 +was + +3632 +00:54:09,400 --> 00:54:09,960 +but + +3633 +00:54:11,000 --> 00:54:11,560 +it's + +3634 +00:54:11,560 --> 00:54:11,700 +pretty + +3635 +00:54:11,700 --> 00:54:11,920 +few + +3636 +00:54:11,920 --> 00:54:12,060 +and + +3637 +00:54:12,060 --> 00:54:12,200 +far + +3638 +00:54:14,200 --> 00:54:15,040 +not to mention + +3639 +00:54:15,040 --> 00:54:15,960 +that i would always + +3640 +00:54:15,960 --> 00:54:16,720 +set up something like + +3641 +00:54:16,720 --> 00:54:17,880 +shadow copies to go along + +3642 +00:54:17,880 --> 00:54:18,520 +with it locally + +3643 +00:54:18,520 --> 00:54:19,620 +yeah because the two way + +3644 +00:54:19,620 --> 00:54:20,540 +syncing thing can totally + +3645 +00:54:20,540 --> 00:54:21,160 +mess you up + +3646 +00:54:21,160 --> 00:54:22,340 +so if you turn on + +3647 +00:54:22,340 --> 00:54:22,740 +something like + +3648 +00:54:22,740 --> 00:54:23,480 +shadow copies + +3649 +00:54:23,480 --> 00:54:24,420 +if something goes + +3650 +00:54:24,420 --> 00:54:25,300 +terribly wrong + +3651 +00:54:25,300 --> 00:54:26,140 +you can just + +3652 +00:54:26,140 --> 00:54:26,800 +revert from + +3653 +00:54:26,800 --> 00:54:27,220 +a + +3654 +00:54:28,280 --> 00:54:29,060 +vss copy + +3655 +00:54:29,060 --> 00:54:30,080 +and everything + +3656 +00:54:30,080 --> 00:54:30,640 +would be fine + +3657 +00:54:30,640 --> 00:54:31,780 +what is shadow copy + +3658 +00:54:31,780 --> 00:54:33,220 +it's a built in + +3659 +00:54:33,220 --> 00:54:34,480 +feature within + +3660 +00:54:35,060 --> 00:54:35,940 +all windows + +3661 +00:54:35,940 --> 00:54:36,280 +since + +3662 +00:54:36,280 --> 00:54:37,640 +windows 7 + +3663 +00:54:38,140 --> 00:54:38,620 +which + +3664 +00:54:38,620 --> 00:54:39,720 +allows you to turn + +3665 +00:54:39,720 --> 00:54:40,680 +on something where it + +3666 +00:54:40,680 --> 00:54:41,860 +takes a snapshot of + +3667 +00:54:41,860 --> 00:54:42,800 +all of your files + +3668 +00:54:42,800 --> 00:54:43,400 +all at once + +3669 +00:54:43,400 --> 00:54:45,640 +and allows you to revert + +3670 +00:54:45,640 --> 00:54:47,700 +back to any one of those + +3671 +00:54:47,700 --> 00:54:48,260 +snapshots + +3672 +00:54:48,260 --> 00:54:50,300 +if there's a problem + +3673 +00:54:50,300 --> 00:54:52,800 +so it's like a little micro backup + +3674 +00:54:52,800 --> 00:54:53,620 +sort of + +3675 +00:54:54,420 --> 00:54:55,520 +providing that the data + +3676 +00:54:55,520 --> 00:54:56,420 +you know that the drive + +3677 +00:54:56,420 --> 00:54:57,320 +doesn't go bad + +3678 +00:54:57,320 --> 00:54:59,320 +it allows you to have snapshots + +3679 +00:54:59,320 --> 00:54:59,940 +in time + +3680 +00:54:59,940 --> 00:55:01,640 +that you can return to + +3681 +00:55:02,600 --> 00:55:06,480 +i do rolling backups on an external drive so + +3682 +00:55:06,480 --> 00:55:07,400 +i don't know if that's + +3683 +00:55:07,400 --> 00:55:12,700 +yeah well the shadow copies are nice because first of all it's on the local drive and it's instant + +3684 +00:55:12,700 --> 00:55:13,380 +that's the + +3685 +00:55:13,380 --> 00:55:13,380 + + +3686 +00:55:13,380 --> 00:55:13,380 + + +3687 +00:55:13,380 --> 00:55:13,380 + + +3688 +00:55:13,380 --> 00:55:13,380 + + +3689 +00:55:13,380 --> 00:55:13,380 + + +3690 +00:55:13,380 --> 00:55:13,380 + + +3691 +00:55:13,380 --> 00:55:13,380 + + +3692 +00:55:13,380 --> 00:55:13,380 + + +3693 +00:55:13,380 --> 00:55:13,380 + + +3694 +00:55:13,380 --> 00:55:13,380 + + +3695 +00:55:13,400 --> 00:55:14,400 +only secure language + +3696 +00:55:14,980 --> 00:55:15,400 +secure language + +3697 +00:55:16,580 --> 00:55:16,960 +secure language + +3698 +00:55:18,680 --> 00:55:20,000 +secure language + +3699 +00:55:20,000 --> 00:55:20,480 +secure language + +3700 +00:55:20,480 --> 00:55:20,480 + + +3701 +00:55:20,480 --> 00:55:20,560 +secure language + +3702 +00:55:20,560 --> 00:55:23,520 +secure language + +3703 +00:55:23,520 --> 00:55:23,960 +secure language + +3704 +00:55:23,960 --> 00:55:24,120 +secure language + +3705 +00:55:24,120 --> 00:55:24,400 +secure language + +3706 +00:55:25,600 --> 00:55:27,200 +secure language + +3707 +00:55:27,200 --> 00:55:29,520 +secure language + +3708 +00:55:29,520 --> 00:55:29,520 + + +3709 +00:55:29,520 --> 00:55:29,520 + + +3710 +00:55:29,520 --> 00:55:29,800 +secure language + +3711 +00:55:29,800 --> 00:55:30,340 +secure language + +3712 +00:55:30,340 --> 00:55:30,700 +secure language + +3713 +00:55:31,400 --> 00:55:31,680 +secure language + +3714 +00:55:31,680 --> 00:55:31,720 +secure language + +3715 +00:55:31,720 --> 00:55:32,500 +secure language + +3716 +00:55:32,500 --> 00:55:32,860 +secure language + +3717 +00:55:32,860 --> 00:55:32,860 + + +3718 +00:55:32,860 --> 00:55:33,000 +secure language + +3719 +00:55:33,000 --> 00:55:33,520 +secure language + +3720 +00:55:33,520 --> 00:55:35,280 +secure language + +3721 +00:55:36,220 --> 00:55:37,460 +secure language + +3722 +00:55:37,460 --> 00:55:38,920 +secure language + +3723 +00:55:38,920 --> 00:55:39,920 +secure language + +3724 +00:55:39,920 --> 00:55:42,340 +secure language + +3725 +00:55:43,580 --> 00:55:46,640 +command line and does it come up or how do you evoke it? + +3726 +00:55:46,940 --> 00:55:50,540 +Yeah, a good place to start is to go to the disk manager + +3727 +00:55:50,540 --> 00:55:55,380 +and you can right click on the disk manager and there is a configure shadow copies + +3728 +00:55:55,380 --> 00:55:59,180 +section there. And then you can set the schedule + +3729 +00:55:59,180 --> 00:56:02,080 +and how much disk space it's allowed to use and that type of stuff. + +3730 +00:56:02,560 --> 00:56:05,920 +Gotcha. Alright, appreciate the input. Thank you. + +3731 +00:56:06,260 --> 00:56:08,420 +Appreciate the call. Have a good day, Dick. You bet. + +3732 +00:56:09,020 --> 00:56:12,400 +Alright, we're going to take a break. When we come back, more of the Computer Guru show + +3733 +00:56:12,400 --> 00:56:15,240 +right here on KVOI at 790-2040. + +3734 +00:56:35,840 --> 00:56:38,400 +Your Computer Guru, Mike Swanson, is here to help you + +3735 +00:56:38,400 --> 00:56:43,000 +tame that beast of a machine. Join the chat right now at gurushow.com + +3736 +00:56:43,000 --> 00:56:46,620 +or call in. This is the Computer Guru show on KVOI + +3737 +00:56:46,620 --> 00:56:47,320 +The Voice. + +3738 +00:57:04,140 --> 00:57:06,120 +Welcome back to the Computer Guru show. + +3739 +00:57:06,900 --> 00:57:08,140 +So this time of year, + +3740 +00:57:08,400 --> 00:57:12,340 +is CES. Now, I wanted to go this year, but could not. + +3741 +00:57:12,460 --> 00:57:15,360 +We need to go at some point. Yeah, it's been a couple of years. + +3742 +00:57:15,580 --> 00:57:18,800 +We're going to have to like plan like almost the whole year to go to that. + +3743 +00:57:19,320 --> 00:57:22,560 +Yeah, well, if you want to get a hotel, you definitely have to plan right now. + +3744 +00:57:22,800 --> 00:57:27,120 +I just want to go back to E3. Yeah, E3 is fun, but I like CES better. + +3745 +00:57:27,200 --> 00:57:29,560 +It's just I've never been to CES, though, so I don't know what I'm missing. + +3746 +00:57:30,220 --> 00:57:34,300 +Yeah, yeah, you don't know what you're missing. CES, in my opinion, is better. + +3747 +00:57:34,420 --> 00:57:37,900 +If we go to CES, though, you can meet the one that you hate the most. + +3748 +00:57:38,520 --> 00:57:41,060 +Which one? We can run into Linus from Linus Tech Tips. + +3749 +00:57:41,420 --> 00:57:42,720 +Oh, wow. Because he goes to that. + +3750 +00:57:43,440 --> 00:57:46,200 +He doesn't want to mess with me. Is there going to be like the Highlander? + +3751 +00:57:47,300 --> 00:57:48,500 +Yeah. You're going to pull out a katana? + +3752 +00:57:48,620 --> 00:57:49,440 +There can be only one. + +3753 +00:57:50,520 --> 00:57:52,540 +You look like you're going to say something. Are you going to say something, Kent? + +3754 +00:57:52,620 --> 00:57:56,280 +No, you're just, you're just... He's always poised just in case you blame him for something. + +3755 +00:57:56,520 --> 00:57:59,380 +Right. He's like, what'd you do, Kent? Contemplating. + +3756 +00:57:59,500 --> 00:58:01,640 +What'd you do? You look guilty. + +3757 +00:58:02,520 --> 00:58:08,000 +All right, so let's talk about CES stuff, and we're going to use the Engadget winners list for this particular... + +3758 +00:58:08,400 --> 00:58:12,580 +So this is the Consumer Electronics Show, for those of you who are not familiar with CES. + +3759 +00:58:12,580 --> 00:58:17,240 +Yeah, Consumer Electronics Showcase, which is mostly just a technology... + +3760 +00:58:18,060 --> 00:58:23,420 +It's an excuse to go to Vegas. And beyond that, it's all the upcoming technology. + +3761 +00:58:23,420 --> 00:58:26,180 +All the new toys you're going to see over the next, like, three to four years. + +3762 +00:58:26,600 --> 00:58:28,200 +Yeah, and some of them are out now. + +3763 +00:58:28,540 --> 00:58:35,020 +Yeah, occasionally there's stuff that's going to be out right now, but a lot of times the big manufacturers will have something there that's just crazy bleeding edge. + +3764 +00:58:35,360 --> 00:58:38,200 +Right. Let me just go ahead and just drop a note. + +3765 +00:58:38,400 --> 00:58:39,700 +I'm going to go ahead and just drop a note to the CES organizers. + +3766 +00:58:40,720 --> 00:58:45,020 +If you could just make it... First of all, CES is monstrous. + +3767 +00:58:45,080 --> 00:58:45,400 +Yeah. + +3768 +00:58:45,520 --> 00:58:52,480 +Right? It takes up all of the Las Vegas Convention Center, and then some. + +3769 +00:58:52,720 --> 00:58:54,400 +It's a gigantic walk. + +3770 +00:58:55,600 --> 00:58:57,540 +There's essentially no way to see it all yourself. + +3771 +00:58:57,840 --> 00:59:00,100 +It's a four-day event if you want to see it. + +3772 +00:59:01,200 --> 00:59:03,840 +And that's if you don't really stop and look at anything. + +3773 +00:59:04,180 --> 00:59:06,280 +So, I mean, it's a monstrous event. + +3774 +00:59:06,280 --> 00:59:07,960 +Yeah, you're going to be walking, like, 30 miles a day. + +3775 +00:59:08,400 --> 00:59:12,440 +And, yeah, you'll get your steps in for sure. + +3776 +00:59:13,400 --> 00:59:23,600 +But if they could make, like, if they could cut the cell phone case manufacturers down to, I don't know, maybe a third of the event, that would be lovely. + +3777 +00:59:24,040 --> 00:59:26,260 +I want to see how that's an electronic anyway, though. + +3778 +00:59:26,420 --> 00:59:28,620 +Yeah, but it's also accessories for your electronics. + +3779 +00:59:29,440 --> 00:59:37,100 +Not to mention they have all kinds of stuff there that's not necessarily electronic, but it's involved in the technology somehow. + +3780 +00:59:37,440 --> 00:59:37,880 +Right. + +3781 +00:59:38,400 --> 00:59:40,800 +And there's a lot to see. + +3782 +00:59:41,720 --> 00:59:45,700 +And last year, CES was all VR, right? + +3783 +00:59:45,780 --> 00:59:49,940 +It was just huge amounts of virtual reality and televisions. + +3784 +00:59:50,240 --> 00:59:50,660 +Yeah. + +3785 +00:59:50,760 --> 00:59:52,600 +There's always a lot of televisions at CES. + +3786 +00:59:52,780 --> 01:00:00,320 +You know, those two things are directly related, and there's only probably another 10 to 15 years while you still will need to have a TV at all. + +3787 +01:00:02,040 --> 01:00:03,300 +We're going to talk about that in a minute. + +3788 +01:00:03,360 --> 01:00:06,700 +Let's fit Greg in here just so that we can get that done. + +3789 +01:00:06,700 --> 01:00:07,060 +Same subject. + +3790 +01:00:07,060 --> 01:00:07,420 +Hello, Greg. + +3791 +01:00:07,460 --> 01:00:07,860 +How are you? + +3792 +01:00:07,940 --> 01:00:09,140 +Yeah, same subject as you. + +3793 +01:00:09,180 --> 01:00:09,660 +I'm doing good. + +3794 +01:00:09,800 --> 01:00:10,400 +Thanks, Mike. + +3795 +01:00:10,500 --> 01:00:17,940 +On the subject of virtual reality, I'm reading some exciting news about developments other than gaming. + +3796 +01:00:18,440 --> 01:00:21,420 +So the woman is having contractions. + +3797 +01:00:21,420 --> 01:00:22,280 +She's in the hospital. + +3798 +01:00:22,360 --> 01:00:26,400 +She's contemplating getting the epidural, which is fraught with complications. + +3799 +01:00:26,860 --> 01:00:29,400 +And the doctor says, well, here, put these on. + +3800 +01:00:29,520 --> 01:00:30,680 +Gives her the goggles. + +3801 +01:00:31,180 --> 01:00:36,960 +And her attention then is changed from the pain from the contractions. + +3802 +01:00:36,960 --> 01:00:41,040 +To the waterfall and the ocean and whatever you see with those goggles. + +3803 +01:00:42,240 --> 01:00:44,860 +And hours went by, but it only seemed like minutes. + +3804 +01:00:44,920 --> 01:00:47,200 +She gave birth without the use of drugs. + +3805 +01:00:47,580 --> 01:00:55,000 +And I'm thinking about when Palmer Luckey, there in Southern California, you know, spending all his time with his computers and games and whatever. + +3806 +01:00:55,100 --> 01:00:57,520 +And the neighbor is saying, well, nothing will ever come of that boy. + +3807 +01:00:57,820 --> 01:01:05,360 +And, of course, he sold his development in virtual reality to Zuckerberg for $2 billion. + +3808 +01:01:06,100 --> 01:01:06,560 +Right. + +3809 +01:01:06,560 --> 01:01:13,260 +So, but they're using it to treat, like, people who have fears of driving over the Golden Gate Bridge, you know, over a body of water. + +3810 +01:01:13,400 --> 01:01:16,960 +Put on those goggles and they can work their way through it. + +3811 +01:01:17,100 --> 01:01:20,240 +They're using them for treating alcoholism, depression. + +3812 +01:01:21,040 --> 01:01:21,940 +Paralysis as well. + +3813 +01:01:22,580 --> 01:01:23,320 +Pardon me? + +3814 +01:01:23,560 --> 01:01:24,380 +Paralysis as well. + +3815 +01:01:24,440 --> 01:01:30,120 +There's actually been some interesting developments in using VR as well as machines to manually stimulate the limbs. + +3816 +01:01:30,240 --> 01:01:32,220 +And then they see their limbs moving in VR. + +3817 +01:01:32,360 --> 01:01:34,120 +And they've reconnected neural pathways. + +3818 +01:01:34,120 --> 01:01:36,660 +And there's some people who have been able to regain function. + +3819 +01:01:37,380 --> 01:01:37,780 +Amazing. + +3820 +01:01:37,840 --> 01:01:43,560 +And as you were saying a minute ago, so it was a $14 billion industry the last couple of years. + +3821 +01:01:43,660 --> 01:01:45,480 +They're predicting $140 billion. + +3822 +01:01:45,700 --> 01:01:52,860 +I think anytime somebody tells you that nothing's ever going to come of that, you should look harder into it because that seems to be the litmus test. + +3823 +01:01:53,380 --> 01:01:53,700 +Yeah. + +3824 +01:01:53,780 --> 01:01:54,460 +All right, guys. + +3825 +01:01:54,480 --> 01:01:54,800 +Take care. + +3826 +01:01:54,920 --> 01:01:55,620 +Appreciate the call. + +3827 +01:01:55,700 --> 01:02:00,860 +Yeah, and they've been using VR for, like, pain mitigation and stuff like that for a while now. + +3828 +01:02:00,900 --> 01:02:02,000 +They've been experimenting with it. + +3829 +01:02:02,200 --> 01:02:02,600 +Yeah. + +3830 +01:02:02,600 --> 01:02:03,860 +So, I think VR is biggest. + +3831 +01:02:03,860 --> 01:02:04,960 +I guess the future is gaming. + +3832 +01:02:05,040 --> 01:02:07,160 +It's AR that's going to be everywhere else. + +3833 +01:02:07,680 --> 01:02:15,880 +Yeah, and I think that those two things converge at what really is, in my opinion, where this is going, which is the computer brain interface. + +3834 +01:02:16,340 --> 01:02:16,980 +Yeah, for sure. + +3835 +01:02:17,200 --> 01:02:17,400 +All right. + +3836 +01:02:17,420 --> 01:02:33,300 +So, instead of having goggles strapped onto your head or, you know, some type of contact lenses or basically hardware, all right, that you will be looking at some type of, you know, cyborg-like implanted hardware to handle that interface. + +3837 +01:02:33,580 --> 01:02:33,840 +And everything is going to be in VR. + +3838 +01:02:33,860 --> 01:02:34,420 +OK. + +3839 +01:02:37,780 --> 01:02:37,780 + + +3840 +01:02:37,780 --> 01:02:37,780 + + +3841 +01:02:37,780 --> 01:02:37,780 + + +3842 +01:02:40,220 --> 01:02:40,700 +OK. + +3843 +01:02:40,700 --> 01:02:40,960 +OK. + +3844 +01:02:42,380 --> 01:02:42,860 +OK. + +3845 +01:02:43,440 --> 01:02:43,900 +OK. + +3846 +01:02:44,120 --> 01:02:44,240 +OK. + +3847 +01:02:44,360 --> 01:02:44,460 +OK. + +3848 +01:02:44,820 --> 01:02:45,060 +OK. + +3849 +01:02:45,360 --> 01:02:45,780 +OK. + +3850 +01:02:46,320 --> 01:02:46,500 +OK. + +3851 +01:02:54,580 --> 01:02:55,060 +OK. + +3852 +01:02:55,380 --> 01:02:55,860 +OK. + +3853 +01:02:56,100 --> 01:02:56,400 +OK. + +3854 +01:02:56,480 --> 01:02:56,820 +OK. + +3855 +01:02:56,940 --> 01:02:57,140 +OK. + +3856 +01:02:57,160 --> 01:02:57,180 +OK. + +3857 +01:02:57,200 --> 01:02:57,220 +OK. + +3858 +01:02:57,240 --> 01:02:57,260 +OK. + +3859 +01:02:57,560 --> 01:02:57,820 +OK. + +3860 +01:02:59,380 --> 01:02:59,540 +OK. + +3861 +01:02:59,820 --> 01:02:59,960 +OK. + +3862 +01:03:00,140 --> 01:03:00,560 +OK. + +3863 +01:03:00,560 --> 01:03:00,560 + + +3864 +01:03:00,560 --> 01:03:00,560 + + +3865 +01:03:00,580 --> 01:03:00,720 +OK. + +3866 +01:03:01,500 --> 01:03:01,620 +OK. + +3867 +01:03:03,380 --> 01:03:03,580 +OK. + +3868 +01:03:03,860 --> 01:03:14,560 +And, you know, my complaint has always been with the VR stuff is that there's a lot of muddying of the waters between the technologies that are coming out. + +3869 +01:03:14,680 --> 01:03:25,160 +And just like the caller said, right, to me, VR uses in business, right, are way more important to me than the gaming side of it. + +3870 +01:03:25,260 --> 01:03:28,440 +And that's the same as somebody who uses a computer all day as my job. + +3871 +01:03:28,620 --> 01:03:33,500 +I cannot wait until I can put on a headset and virtualize 12 monitors so that I don't have to actually have them. + +3872 +01:03:33,500 --> 01:03:35,600 +Right, and have enough resolution where you can actually see everything. + +3873 +01:03:35,600 --> 01:03:40,420 +Right, and I'm sure as somebody who pays the electricity bill for the work that I do, you are also happy about that. + +3874 +01:03:40,680 --> 01:03:42,640 +Yeah, I could be okay with that. + +3875 +01:03:42,680 --> 01:03:42,840 +Yeah. + +3876 +01:03:43,660 --> 01:03:51,220 +Now, speaking of headsets that have better resolution, so one of the winners of CES this year is the HTC Vive Pro. + +3877 +01:03:51,560 --> 01:03:54,160 +And this is like their next-gen headset, I take it. + +3878 +01:03:54,280 --> 01:03:57,860 +Yeah, this is the one that they're releasing, it turns out, this year. + +3879 +01:03:58,700 --> 01:04:02,960 +And so it adds some things that are nice, like 3D audio. + +3880 +01:04:03,700 --> 01:04:04,500 +Which is... + +3881 +01:04:04,500 --> 01:04:06,120 +The Rift already had that one covered. + +3882 +01:04:06,380 --> 01:04:09,560 +Right, but for the HTC side, that's new. + +3883 +01:04:09,800 --> 01:04:09,980 +Yeah. + +3884 +01:04:10,520 --> 01:04:12,280 +It's more comfortable to wear, they said. + +3885 +01:04:12,380 --> 01:04:16,180 +It has dual front-facing cameras, which will allow you to start doing AR stuff. + +3886 +01:04:16,620 --> 01:04:23,340 +Yeah, that, and they're going to do, I almost guarantee they'll be doing inside-out tracking by the end of the year, even if it's just experimental. + +3887 +01:04:23,700 --> 01:04:25,140 +So, for people who don't know. + +3888 +01:04:25,280 --> 01:04:33,400 +So, HTC uses what are called lighthouses, which are these things that you set up in your room, and they detect your headset, and then they interact with it. + +3889 +01:04:33,500 --> 01:04:35,720 +So that it knows where you are in the virtual space. + +3890 +01:04:36,720 --> 01:04:37,920 +It's really cumbersome, though. + +3891 +01:04:37,980 --> 01:04:41,900 +I mean, all the setup that's involved with VR right now is the cumbersome aspect. + +3892 +01:04:42,300 --> 01:04:47,200 +Inside-out tracking is the idea that your headset is the one that's tracking everything in the room. + +3893 +01:04:47,780 --> 01:04:49,620 +So that would mean no more lighthouses at all. + +3894 +01:04:49,780 --> 01:04:53,780 +So that's much more like how the Microsoft version of that is doing it. + +3895 +01:04:53,880 --> 01:04:56,420 +Because it's actually scanning the room that it sees. + +3896 +01:04:57,200 --> 01:05:00,120 +And then building a map, as far as... + +3897 +01:05:00,120 --> 01:05:03,000 +Yeah, you have to walk around your house, and it scans your entire house. + +3898 +01:05:03,060 --> 01:05:03,280 +Yeah. + +3899 +01:05:03,280 --> 01:05:03,480 +Yeah. + +3900 +01:05:03,480 --> 01:05:03,480 + + +3901 +01:05:03,480 --> 01:05:03,480 + + +3902 +01:05:03,480 --> 01:05:03,480 + + +3903 +01:05:03,480 --> 01:05:03,480 + + +3904 +01:05:03,480 --> 01:05:03,480 + + +3905 +01:05:03,480 --> 01:05:03,480 + + +3906 +01:05:03,480 --> 01:05:03,480 + + +3907 +01:05:03,480 --> 01:05:03,480 + + +3908 +01:05:03,480 --> 01:05:03,480 + + +3909 +01:05:03,480 --> 01:05:03,480 + + +3910 +01:05:03,480 --> 01:05:03,480 + + +3911 +01:05:03,480 --> 01:05:03,480 + + +3912 +01:05:03,480 --> 01:05:03,480 + + +3913 +01:05:03,480 --> 01:05:03,480 + + +3914 +01:05:03,480 --> 01:05:03,480 + + +3915 +01:05:03,480 --> 01:05:03,480 + + +3916 +01:05:03,480 --> 01:05:03,480 + + +3917 +01:05:03,480 --> 01:05:04,040 +Every time you use it. + +3918 +01:05:04,100 --> 01:05:04,400 +Right. + +3919 +01:05:04,480 --> 01:05:04,780 +Okay. + +3920 +01:05:04,860 --> 01:05:11,720 +And then it also is offering dual mics and a resolution of 2880x1600. + +3921 +01:05:11,980 --> 01:05:17,460 +That's substantially better than what you get out of the box with either of the main headsets right now. + +3922 +01:05:17,640 --> 01:05:17,940 +Right. + +3923 +01:05:17,980 --> 01:05:24,660 +So you're looking at 615 pixels per inch, which is considerably better, because you're about the 340? + +3924 +01:05:25,040 --> 01:05:25,780 +Something like that. + +3925 +01:05:25,880 --> 01:05:28,480 +380 for the other headsets. + +3926 +01:05:28,480 --> 01:05:29,900 +So you're almost twice the resolution. + +3927 +01:05:30,020 --> 01:05:33,460 +So right now, I mean, since most people have not even tried this stuff yet... + +3928 +01:05:33,460 --> 01:05:39,360 +There is still what's called a screen door effect, which means that you can see the pixels if you concentrate on it in VR. + +3929 +01:05:39,540 --> 01:05:44,080 +And some people are never even able to overcome that, and they just hate it because they see this stuff. + +3930 +01:05:44,300 --> 01:05:49,960 +As the resolution increases, that screen door effect is going to drop, and eventually it's going to be gone completely. + +3931 +01:05:50,380 --> 01:05:50,780 +Right. + +3932 +01:05:50,840 --> 01:05:52,440 +The pixels will be so small you won't be able to... + +3933 +01:05:52,440 --> 01:05:56,260 +So when we get to like 8K per eye, which is future for sure. + +3934 +01:05:56,480 --> 01:05:56,780 +Right. + +3935 +01:05:56,820 --> 01:05:59,620 +8K per eye, it's indistinguishable, I feel like, at that point. + +3936 +01:06:00,440 --> 01:06:02,940 +You'd have to have some eagle vision to pick out pixels there. + +3937 +01:06:04,240 --> 01:06:05,640 +So, yeah, it's good to see that. + +3938 +01:06:05,680 --> 01:06:08,840 +I mean, resolution should be the number one thing that they're trying to improve right now. + +3939 +01:06:09,280 --> 01:06:13,900 +Yeah, and overall, the cumbersomeness of it, like the weight and... + +3940 +01:06:13,900 --> 01:06:16,960 +Yeah, I mean, I'll tell you that the Oculus is not too bad. + +3941 +01:06:17,080 --> 01:06:21,840 +Like, it definitely feels awkward the first time you use it, but eventually you forget it's there. + +3942 +01:06:22,500 --> 01:06:27,840 +They also do this really interesting thing that I've noticed with the tracking to where... + +3943 +01:06:27,840 --> 01:06:32,180 +I don't know, it's hard to explain, but like, you know how you can close your eyes and reach up and touch your nose and you know exactly where it is? + +3944 +01:06:32,240 --> 01:06:32,500 +Right. + +3945 +01:06:32,620 --> 01:06:33,440 +It changes your... + +3946 +01:06:33,440 --> 01:06:33,440 + + +3947 +01:06:33,440 --> 01:06:37,860 +It changes your perspective on where your eyes are, and so you don't slam your hand into the headset. + +3948 +01:06:38,580 --> 01:06:39,460 +Well, that's interesting. + +3949 +01:06:39,640 --> 01:06:45,940 +Yeah, so when you go to pick up your hand and touch your eye, you touch the back, you know, the outside of the case, and you don't just slam your hand into it. + +3950 +01:06:46,340 --> 01:06:47,580 +That would just be... + +3951 +01:06:48,280 --> 01:06:52,560 +That would be beautiful YouTube, just to watch people slamming their hands into the... + +3952 +01:06:52,560 --> 01:06:54,900 +You can definitely watch people punching walls in TVs. + +3953 +01:06:55,280 --> 01:06:55,680 +Yeah. + +3954 +01:06:55,720 --> 01:06:59,040 +The first night that I had mine, I punched my TV and I almost broke it. + +3955 +01:06:59,840 --> 01:07:01,280 +You gotta pay attention to the boundaries. + +3956 +01:07:02,800 --> 01:07:03,200 +Yeah. + +3957 +01:07:03,440 --> 01:07:04,200 +Yeah, I guess you do. + +3958 +01:07:05,020 --> 01:07:07,500 +And so we're going to do one more before we go to another break here. + +3959 +01:07:07,980 --> 01:07:10,460 +And I'm kind of skipping towards the end here. + +3960 +01:07:10,540 --> 01:07:12,840 +They always do something that they call the best of the best. + +3961 +01:07:14,560 --> 01:07:19,620 +And often enough, it is not technology as most people would see it. + +3962 +01:07:19,880 --> 01:07:21,960 +You know, like they wouldn't think of it this way. + +3963 +01:07:22,060 --> 01:07:23,760 +But this year, the winner is Toyota. + +3964 +01:07:24,540 --> 01:07:27,500 +And they are developing something called the e-palette. + +3965 +01:07:28,200 --> 01:07:32,280 +And it's effectively a van. + +3966 +01:07:33,440 --> 01:07:36,560 +An autonomous vehicle that's the shape of a large van. + +3967 +01:07:36,700 --> 01:07:38,020 +It's a rectangle on wheels. + +3968 +01:07:38,840 --> 01:07:40,980 +And you can do whatever you want with the inside, right? + +3969 +01:07:41,160 --> 01:07:42,280 +You want to build a food truck? + +3970 +01:07:42,420 --> 01:07:48,920 +You want to build a little RV or a mobile office or just delivery vehicles? + +3971 +01:07:50,440 --> 01:07:53,620 +It's one of these things that's such a blank canvas. + +3972 +01:07:53,880 --> 01:07:56,380 +So the name kind of speaks to me like they're trying to... + +3973 +01:07:57,360 --> 01:07:59,900 +They're really telling you to do whatever you want with it. + +3974 +01:07:59,980 --> 01:08:00,820 +So it really is... + +3975 +01:08:00,820 --> 01:08:01,460 +Is it modular? + +3976 +01:08:01,480 --> 01:08:02,780 +Or like what's... + +3977 +01:08:02,780 --> 01:08:03,780 +The inside is just empty? + +3978 +01:08:04,260 --> 01:08:05,260 +Yeah, it's totally empty. + +3979 +01:08:05,480 --> 01:08:06,240 +You can just... + +3980 +01:08:06,240 --> 01:08:08,980 +It's just a cube or a rectangular cube. + +3981 +01:08:09,000 --> 01:08:09,840 +That's actually really cool. + +3982 +01:08:09,900 --> 01:08:10,260 +On wheels. + +3983 +01:08:10,680 --> 01:08:11,060 +That's... + +3984 +01:08:11,060 --> 01:08:13,480 +I mean, especially with the autonomous vehicle stuff built in because... + +3985 +01:08:13,480 --> 01:08:15,980 +I mean, yeah, a mobile office would be great for us. + +3986 +01:08:16,160 --> 01:08:16,440 +Yeah. + +3987 +01:08:17,040 --> 01:08:19,060 +Or, you know, if you wanted to... + +3988 +01:08:19,060 --> 01:08:20,280 +If you're one of these... + +3989 +01:08:20,280 --> 01:08:22,620 +Like, we have food trucks all around town, right? + +3990 +01:08:22,760 --> 01:08:24,800 +Yeah, a nice high-tech food truck can go anywhere. + +3991 +01:08:26,220 --> 01:08:29,740 +So you can just sit back there and make your food and it drives you to the next location? + +3992 +01:08:29,920 --> 01:08:31,620 +Right, just the space savings. + +3993 +01:08:31,700 --> 01:08:32,460 +And, you know, + +3994 +01:08:32,460 --> 01:08:38,340 +having the flexibility to do whatever you want with both the interior and the exterior is kind of cool. + +3995 +01:08:38,520 --> 01:08:39,300 +That is pretty cool. + +3996 +01:08:40,220 --> 01:08:42,720 +So we'll have to post a link to the Engadget stuff. + +3997 +01:08:42,820 --> 01:08:43,680 +Let's go ahead and take a quick break. + +3998 +01:08:43,800 --> 01:08:48,740 +And then we're going to come back and answer some phone calls and do a little bit more CES before the end of the show. + +3999 +01:08:49,560 --> 01:08:51,700 +This is the Computer Guru Show on KVOI. + +4000 +01:08:51,740 --> 01:08:53,920 +Give us a call, 790-2040. + +4001 +01:09:12,480 --> 01:09:12,980 +We'll be right back. + +4002 +01:09:24,520 --> 01:09:25,160 +We'll be right back. + +4003 +01:09:43,400 --> 01:09:45,260 +Welcome back to the Computer Guru Show. + +4004 +01:09:45,720 --> 01:09:48,420 +Give us a call, 790-2040, if you'd like to be a part of the show. + +4005 +01:09:48,840 --> 01:09:49,660 +Let's talk to Tom. + +4006 +01:09:49,720 --> 01:09:50,140 +Hello, Tom. + +4007 +01:09:50,180 --> 01:09:50,520 +How are you? + +4008 +01:09:51,260 --> 01:09:51,660 +Good. + +4009 +01:09:51,700 --> 01:09:51,880 +Hi. + +4010 +01:09:51,980 --> 01:09:52,920 +Thanks for taking my call. + +4011 +01:09:53,340 --> 01:09:54,360 +Two quick questions. + +4012 +01:09:54,400 --> 01:09:55,280 +One is storage. + +4013 +01:09:55,860 --> 01:09:56,980 +I have Windows 10. + +4014 +01:09:57,220 --> 01:09:57,620 +Okay. + +4015 +01:09:57,720 --> 01:10:00,780 +And running the automatic update, it gave me an error. + +4016 +01:10:00,860 --> 01:10:04,900 +It says Windows needs more space. + +4017 +01:10:05,180 --> 01:10:08,540 +And it says it needs 1.14 gigabytes more space. + +4018 +01:10:08,820 --> 01:10:12,420 +And then I look at my hard drive and it says I have 3.82 gigabytes. + +4019 +01:10:14,220 --> 01:10:14,620 +And I'm like, what? + +4020 +01:10:14,620 --> 01:10:14,620 + + +4021 +01:10:14,620 --> 01:10:15,860 +Do you have more than one partition on this? + +4022 +01:10:16,760 --> 01:10:18,100 +Just what came with the system. + +4023 +01:10:18,160 --> 01:10:20,620 +It's, I think, a D, but it's for HP recovery. + +4024 +01:10:21,280 --> 01:10:21,680 +Okay. + +4025 +01:10:21,740 --> 01:10:25,660 +So it's telling you you have three gigabytes free and... + +4026 +01:10:26,500 --> 01:10:27,560 +On the C drive. + +4027 +01:10:27,780 --> 01:10:28,300 +On the C drive. + +4028 +01:10:28,360 --> 01:10:29,240 +On that partition. + +4029 +01:10:29,980 --> 01:10:30,380 +Interesting. + +4030 +01:10:31,760 --> 01:10:32,860 +It shouldn't be doing that. + +4031 +01:10:32,980 --> 01:10:33,440 +Is there... + +4032 +01:10:33,440 --> 01:10:35,360 +I mean, do you have a bunch of stuff in the recycle bin or anything? + +4033 +01:10:36,180 --> 01:10:36,580 +No. + +4034 +01:10:36,640 --> 01:10:37,180 +It's empty. + +4035 +01:10:38,020 --> 01:10:38,420 +Interesting. + +4036 +01:10:40,060 --> 01:10:42,960 +Is it just close to the limits where it needs maybe two gigabytes? + +4037 +01:10:42,960 --> 01:10:42,960 + + +4038 +01:10:42,960 --> 01:10:42,960 + + +4039 +01:10:42,960 --> 01:10:42,960 + + +4040 +01:10:42,960 --> 01:10:42,960 + + +4041 +01:10:42,960 --> 01:10:42,960 + + +4042 +01:10:42,960 --> 01:10:42,960 + + +4043 +01:10:42,960 --> 01:10:42,960 + + +4044 +01:10:42,960 --> 01:10:42,960 + + +4045 +01:10:42,960 --> 01:10:42,960 + + +4046 +01:10:42,960 --> 01:10:42,960 + + +4047 +01:10:42,960 --> 01:10:42,960 + + +4048 +01:10:42,960 --> 01:10:42,960 + + +4049 +01:10:42,980 --> 01:10:43,500 +Four gigabytes? + +4050 +01:10:43,940 --> 01:10:44,320 +No. + +4051 +01:10:44,380 --> 01:10:45,860 +I mean, it shouldn't be doing that at all. + +4052 +01:10:46,000 --> 01:10:46,320 +I mean... + +4053 +01:10:46,320 --> 01:10:48,200 +So how much do you have free, actually? + +4054 +01:10:49,140 --> 01:10:51,760 +Well, I'm pulling up the Explorer window. + +4055 +01:10:51,900 --> 01:10:57,640 +So on the C drive, that partition, it says 3.82 out of 919 gigabytes. + +4056 +01:10:57,880 --> 01:10:58,740 +It's a terabyte drive. + +4057 +01:10:59,060 --> 01:11:05,600 +And then on the HP recovery, the D drive that came with the system, it's 1.35 free out of + +4058 +01:11:05,600 --> 01:11:07,300 +11.1 gigabytes. + +4059 +01:11:07,720 --> 01:11:09,740 +So I think that's for the operating system. + +4060 +01:11:10,160 --> 01:11:10,640 +Right. + +4061 +01:11:10,720 --> 01:11:12,960 +I think you're probably running up against something where you're going to have to + +4062 +01:11:12,960 --> 01:11:12,960 + + +4063 +01:11:12,960 --> 01:11:12,960 + + +4064 +01:11:12,960 --> 01:11:12,960 + + +4065 +01:11:12,960 --> 01:11:12,960 + + +4066 +01:11:12,960 --> 01:11:12,960 + + +4067 +01:11:12,960 --> 01:11:12,960 + + +4068 +01:11:12,960 --> 01:11:12,960 + + +4069 +01:11:12,960 --> 01:11:16,000 +be more secure. + +4070 +01:11:16,320 --> 01:11:16,960 +OK. + +4071 +01:11:17,460 --> 01:11:18,100 +OK. + +4072 +01:11:18,420 --> 01:11:18,420 + + +4073 +01:11:18,420 --> 01:11:18,420 + + +4074 +01:11:18,420 --> 01:11:18,980 +OK. + +4075 +01:11:19,100 --> 01:11:19,280 +OK. + +4076 +01:11:19,280 --> 01:11:19,860 +OK. + +4077 +01:11:20,140 --> 01:11:20,460 +OK. + +4078 +01:11:20,580 --> 01:11:21,100 +OK. + +4079 +01:11:22,300 --> 01:11:22,300 + + +4080 +01:11:22,300 --> 01:11:22,300 + + +4081 +01:11:22,300 --> 01:11:22,920 +OK. + +4082 +01:11:24,100 --> 01:11:24,740 +OK. + +4083 +01:11:24,840 --> 01:11:24,880 +OK. + +4084 +01:11:24,880 --> 01:11:24,880 + + +4085 +01:11:24,880 --> 01:11:25,400 +OK. + +4086 +01:11:28,300 --> 01:11:28,940 +OK. + +4087 +01:11:29,100 --> 01:11:29,400 +OK. + +4088 +01:11:29,400 --> 01:11:29,400 + + +4089 +01:11:29,400 --> 01:11:29,400 + + +4090 +01:11:29,400 --> 01:11:29,420 +OK. + +4091 +01:11:29,420 --> 01:11:29,500 +OK. + +4092 +01:11:29,620 --> 01:11:30,040 +OK. + +4093 +01:11:30,180 --> 01:11:30,500 +OK. + +4094 +01:11:30,600 --> 01:11:30,740 +OK. + +4095 +01:11:30,940 --> 01:11:31,320 +OK. + +4096 +01:11:33,300 --> 01:11:33,940 +OK. + +4097 +01:11:36,380 --> 01:11:37,020 +OK. + +4098 +01:11:38,900 --> 01:11:39,240 +OK. + +4099 +01:11:42,960 --> 01:11:45,240 +The majority of that problem is that you're out of space. + +4100 +01:11:46,140 --> 01:11:47,200 +Hard disk space? + +4101 +01:11:47,420 --> 01:11:47,700 +Mm-hmm. + +4102 +01:11:47,700 --> 01:11:48,600 +On streaming video? + +4103 +01:11:48,900 --> 01:11:50,800 +Yeah, it's got to write to the disk before it can show it to you. + +4104 +01:11:50,880 --> 01:11:53,780 +Saving the temporary files as you stream it, that's how it works. + +4105 +01:11:54,540 --> 01:11:54,800 +Wow. + +4106 +01:11:54,900 --> 01:11:59,400 +Because the other ones like Pac-12 Network or Fox Sports, it doesn't do that. + +4107 +01:11:59,620 --> 01:12:01,200 +They're probably using a different player. + +4108 +01:12:01,920 --> 01:12:03,400 +Or even just smaller size. + +4109 +01:12:03,620 --> 01:12:05,820 +Right, and smaller chunks, something along those lines. + +4110 +01:12:06,620 --> 01:12:07,620 +You're out of space, man. + +4111 +01:12:07,700 --> 01:12:09,900 +You've got to fix that first before you do anything else. + +4112 +01:12:09,900 --> 01:12:13,340 +Last point to that is it actually happens on Xbox, which is Windows, + +4113 +01:12:13,600 --> 01:12:14,980 +but it doesn't happen on my iPhone. + +4114 +01:12:16,180 --> 01:12:16,580 +Interesting. + +4115 +01:12:18,260 --> 01:12:21,140 +Well, that part I can't help you with, at least not off the top of my head. + +4116 +01:12:21,220 --> 01:12:26,540 +But the computer storage issue, you should resolve that. + +4117 +01:12:26,620 --> 01:12:30,980 +Either upgrade to a much larger drive and then clone all your data over, + +4118 +01:12:31,460 --> 01:12:34,380 +or add another drive and move stuff to a different drive. + +4119 +01:12:34,620 --> 01:12:35,040 +Got it. + +4120 +01:12:35,120 --> 01:12:36,060 +Thank you very much. + +4121 +01:12:36,180 --> 01:12:36,540 +No problem. + +4122 +01:12:36,620 --> 01:12:37,320 +Thanks for the call, Tom. + +4123 +01:12:39,060 --> 01:12:39,880 +So back to the video. + +4124 +01:12:39,880 --> 01:12:40,520 +Let's get into the CES stuff. + +4125 +01:12:40,660 --> 01:12:43,240 +I'm seeing something here that I kind of want to mention because it's super cool. + +4126 +01:12:43,400 --> 01:12:43,740 +What's that? + +4127 +01:12:43,880 --> 01:12:45,540 +This is out of the reach of almost everybody. + +4128 +01:12:45,820 --> 01:12:48,280 +But it's a TV that Samsung calls the wall. + +4129 +01:12:48,520 --> 01:12:49,120 +Did you see this? + +4130 +01:12:49,300 --> 01:12:49,740 +I did not. + +4131 +01:12:49,820 --> 01:12:56,720 +It's a 146-inch super HD display that they're advertising as the first modular TV + +4132 +01:12:56,720 --> 01:13:02,100 +in that you can split up the single panel to work as multiple displays. + +4133 +01:13:02,600 --> 01:13:06,760 +So, I mean, it doesn't physically break apart, but you can divide the areas of the screen. + +4134 +01:13:07,040 --> 01:13:09,000 +And they said in the demo that they saw here, + +4135 +01:13:09,000 --> 01:13:13,840 +Samsung had it configured to where there was like a smaller TV in the center, + +4136 +01:13:13,940 --> 01:13:17,200 +and the border was set to blend in with the wall behind it. + +4137 +01:13:17,520 --> 01:13:17,880 +Huh. + +4138 +01:13:18,040 --> 01:13:19,960 +So that's interesting. + +4139 +01:13:20,140 --> 01:13:20,480 +But why? + +4140 +01:13:20,780 --> 01:13:21,220 +I know. + +4141 +01:13:21,260 --> 01:13:22,760 +I don't know why you would do that, but... + +4142 +01:13:22,760 --> 01:13:28,520 +It reminds me of the Back to the Future, you know, when Marty has his... + +4143 +01:13:29,480 --> 01:13:29,960 +Right. + +4144 +01:13:30,840 --> 01:13:33,120 +Divided the thing up, or in Idiocracy. + +4145 +01:13:33,420 --> 01:13:33,900 +Yeah. + +4146 +01:13:34,000 --> 01:13:34,280 +Right. + +4147 +01:13:34,340 --> 01:13:38,700 +Well, you know, as somebody who I have been using multiple displays on my computer for, like, + +4148 +01:13:38,700 --> 01:13:43,460 +the whole time now, it's weird to me to just sit on my couch and just watch something. + +4149 +01:13:44,020 --> 01:13:44,380 +Right. + +4150 +01:13:44,520 --> 01:13:48,100 +Because the majority of the time that I'm watching something, I'm working or playing a video game. + +4151 +01:13:49,120 --> 01:13:52,420 +So this whole, like, single-screen concept is weird to me now. + +4152 +01:13:52,840 --> 01:13:53,200 +Yeah. + +4153 +01:13:53,540 --> 01:13:57,780 +Yeah, and the OLED stuff now with these TVs is amazing. + +4154 +01:13:57,880 --> 01:13:58,620 +Yeah, and I mean... + +4155 +01:13:58,620 --> 01:13:59,120 +Because they're super thin. + +4156 +01:13:59,200 --> 01:14:01,420 +If you have anything over, like, a 70-inch TV, + +4157 +01:14:01,620 --> 01:14:05,200 +I would definitely want, like, some picture-in-picture mode to be able to do something else. + +4158 +01:14:05,740 --> 01:14:06,100 +Yeah. + +4159 +01:14:06,260 --> 01:14:06,620 +Yeah. + +4160 +01:14:06,660 --> 01:14:06,900 +Yeah. + +4161 +01:14:07,600 --> 01:14:08,480 +Personally, I mean... + +4162 +01:14:08,700 --> 01:14:10,200 +I don't really watch TV. + +4163 +01:14:10,420 --> 01:14:10,820 +Yeah. + +4164 +01:14:10,860 --> 01:14:11,020 +Right. + +4165 +01:14:11,080 --> 01:14:16,720 +So, I mean, any of my media viewing is generally happening on my computer at home. + +4166 +01:14:16,800 --> 01:14:18,060 +And I have five monitors. + +4167 +01:14:18,380 --> 01:14:18,780 +Sorry. + +4168 +01:14:18,840 --> 01:14:20,320 +So I can just dedicate... + +4169 +01:14:20,320 --> 01:14:21,920 +One of them's actually a TV. + +4170 +01:14:22,360 --> 01:14:23,160 +Are you like... + +4171 +01:14:23,160 --> 01:14:27,500 +Who was it in Batman where he's watching, like, all the cell phone feeds at once? + +4172 +01:14:28,680 --> 01:14:32,480 +But, you know, I try to break things up so that it gives me... + +4173 +01:14:32,480 --> 01:14:32,900 +I don't know. + +4174 +01:14:32,940 --> 01:14:34,960 +It's sort of like you when you organize your desk. + +4175 +01:14:35,060 --> 01:14:35,260 +Yeah. + +4176 +01:14:35,340 --> 01:14:37,760 +It's the same thing when I'm organizing what's on what monitor. + +4177 +01:14:38,180 --> 01:14:38,560 +Yeah. + +4178 +01:14:38,660 --> 01:14:39,380 +I do the same thing. + +4179 +01:14:39,480 --> 01:14:40,860 +I mean, like, when I'm working, I'll have... + +4180 +01:14:40,860 --> 01:14:43,640 +My monitors are subdivided into the areas that I need. + +4181 +01:14:44,240 --> 01:14:45,100 +And even that's... + +4182 +01:14:45,100 --> 01:14:48,220 +There's a joke when you use multiple displays that you always need one more. + +4183 +01:14:48,900 --> 01:14:49,280 +Yeah. + +4184 +01:14:49,360 --> 01:14:51,200 +There's no such thing as having enough monitors. + +4185 +01:14:51,700 --> 01:14:52,960 +Well, until you run out of room. + +4186 +01:14:53,920 --> 01:14:54,300 +Yeah. + +4187 +01:14:54,640 --> 01:14:55,020 +Right. + +4188 +01:14:55,120 --> 01:15:00,740 +Now, we've got a client that has 12 monitors on one computer. + +4189 +01:15:01,280 --> 01:15:04,280 +And then he has another computer that runs another eight right now. + +4190 +01:15:04,960 --> 01:15:05,640 +That's crazy. + +4191 +01:15:05,800 --> 01:15:06,100 +Right. + +4192 +01:15:06,140 --> 01:15:06,600 +That's a lot of work for me. + +4193 +01:15:06,600 --> 01:15:07,540 +And they're right next to each other. + +4194 +01:15:07,560 --> 01:15:07,740 +Right. + +4195 +01:15:07,740 --> 01:15:07,740 + + +4196 +01:15:07,760 --> 01:15:09,600 +Both keyboards are on the same desk. + +4197 +01:15:09,720 --> 01:15:16,000 +You know, there's this great number of relatively small monitors all over the place. + +4198 +01:15:16,060 --> 01:15:17,660 +Now, I understand what he's trying to do. + +4199 +01:15:17,700 --> 01:15:18,480 +He's a day trader, whatever. + +4200 +01:15:18,660 --> 01:15:18,880 +Yeah. + +4201 +01:15:18,880 --> 01:15:21,540 +I was going to say, there's only really two things you can be using that for. + +4202 +01:15:21,660 --> 01:15:23,560 +He wants graphs on all the things. + +4203 +01:15:24,760 --> 01:15:27,520 +But still, at some point, it's just like, how do you pay attention to all that? + +4204 +01:15:27,640 --> 01:15:28,860 +You know, that reminds me. + +4205 +01:15:28,940 --> 01:15:29,220 +I just... + +4206 +01:15:29,220 --> 01:15:33,520 +Recently, I set up my computer monitors at work to look at all the cryptocurrencies. + +4207 +01:15:33,700 --> 01:15:34,620 +And I was like... + +4208 +01:15:34,620 --> 01:15:35,380 +The same thing. + +4209 +01:15:35,440 --> 01:15:37,560 +And I called Howard, and I was like, I'm basically Gordon Gekko now. + +4210 +01:15:39,460 --> 01:15:39,940 +Basically. + +4211 +01:15:40,100 --> 01:15:40,440 +Basically. + +4212 +01:15:40,480 --> 01:15:40,740 +Yeah. + +4213 +01:15:40,780 --> 01:15:42,060 +We're basically the same person. + +4214 +01:15:42,680 --> 01:15:43,640 +Let's go and talk to Robert. + +4215 +01:15:43,760 --> 01:15:44,160 +Hello, Robert. + +4216 +01:15:44,220 --> 01:15:44,540 +How are you? + +4217 +01:15:45,880 --> 01:15:46,780 +Hey, man. + +4218 +01:15:47,180 --> 01:15:47,660 +Hey. + +4219 +01:15:47,860 --> 01:15:51,920 +On the last call, I'm sure it's probably a storage issue. + +4220 +01:15:52,380 --> 01:15:54,600 +But I had a buffering issue. + +4221 +01:15:54,740 --> 01:15:57,660 +And I'm a photographer, and I upload to Dropbox. + +4222 +01:15:58,500 --> 01:15:58,980 +Right. + +4223 +01:15:59,020 --> 01:16:01,160 +And I had buffering issues. + +4224 +01:16:01,480 --> 01:16:07,120 +It was taking 25 minutes to upload to Dropbox. + +4225 +01:16:08,140 --> 01:16:08,940 +So I checked my speed. + +4226 +01:16:08,940 --> 01:16:09,480 +Like one picture? + +4227 +01:16:09,600 --> 01:16:11,200 +Or are we talking like, you know, large amounts? + +4228 +01:16:11,220 --> 01:16:12,420 +No, we're talking about 40. + +4229 +01:16:13,140 --> 01:16:13,920 +What's a... + +4230 +01:16:13,920 --> 01:16:17,860 +I checked my speed, and I wasn't getting the speed I was paying for. + +4231 +01:16:18,000 --> 01:16:19,140 +I called Cox Cable. + +4232 +01:16:19,200 --> 01:16:20,200 +They were very sorry. + +4233 +01:16:21,520 --> 01:16:23,040 +That happens on occasion. + +4234 +01:16:24,360 --> 01:16:26,160 +I'm surprised you got them to say they were sorry. + +4235 +01:16:27,340 --> 01:16:28,640 +They were very sorry. + +4236 +01:16:29,600 --> 01:16:30,080 +Yeah? + +4237 +01:16:30,220 --> 01:16:30,940 +Did they... + +4238 +01:16:31,760 --> 01:16:36,260 +They gave me two months of the difference between... + +4239 +01:16:37,760 --> 01:16:41,020 +Would I go from 5 to 15 or from 15 to 50? + +4240 +01:16:41,860 --> 01:16:42,360 +What's that? + +4241 +01:16:42,740 --> 01:16:44,120 +Oh, you went from 15 to 50? + +4242 +01:16:44,120 --> 01:16:48,240 +On the download, did I go from 5 to 15 or 15 to 50? + +4243 +01:16:48,480 --> 01:16:50,280 +You didn't go 15 to 50 for uploads. + +4244 +01:16:50,520 --> 01:16:51,560 +But for... + +4245 +01:16:51,560 --> 01:16:52,860 +No, I'm talking about downloads. + +4246 +01:16:53,020 --> 01:16:54,080 +Downloads, you probably went to 50. + +4247 +01:16:54,960 --> 01:16:55,440 +Yeah. + +4248 +01:16:55,480 --> 01:16:56,860 +So they got me up to 50. + +4249 +01:16:58,060 --> 01:16:59,560 +Everything working great. + +4250 +01:17:01,800 --> 01:17:02,680 +Well, that's good. + +4251 +01:17:02,780 --> 01:17:04,460 +So I would advise... + +4252 +01:17:04,460 --> 01:17:07,380 +Well, you know how much I hate Comcast and Cox. + +4253 +01:17:07,760 --> 01:17:08,320 +With a passion. + +4254 +01:17:08,560 --> 01:17:10,400 +As much as you and Rob. + +4255 +01:17:11,260 --> 01:17:14,740 +But I would advise people to test their speed, + +4256 +01:17:14,920 --> 01:17:16,920 +because I live in an apartment complex, + +4257 +01:17:17,000 --> 01:17:20,640 +and that Cox bucket truck is out there every 10 days. + +4258 +01:17:21,200 --> 01:17:22,060 +Yeah, yeah. + +4259 +01:17:22,560 --> 01:17:23,760 +I'm sorry to hear that. + +4260 +01:17:23,920 --> 01:17:25,880 +Now, when it comes to this, though, + +4261 +01:17:25,940 --> 01:17:27,680 +when it comes to Cox and Comcast, + +4262 +01:17:28,240 --> 01:17:34,020 +I find that most people are not getting the speed that they are paying for. + +4263 +01:17:34,480 --> 01:17:35,820 +And then, additionally, + +4264 +01:17:36,180 --> 01:17:37,640 +most people are willing to pay, + +4265 +01:17:37,760 --> 01:17:38,720 +way too much. + +4266 +01:17:38,880 --> 01:17:39,320 +Right? + +4267 +01:17:39,500 --> 01:17:41,320 +Like, as an example, + +4268 +01:17:41,360 --> 01:17:43,860 +if you have a 50 meg plan for what you're doing, + +4269 +01:17:44,480 --> 01:17:45,040 +that's about right. + +4270 +01:17:45,220 --> 01:17:45,640 +Right? + +4271 +01:17:45,700 --> 01:17:48,020 +That's about what I'd probably tell you to do. + +4272 +01:17:48,320 --> 01:17:51,340 +But I see people out there with these 300 meg plans, + +4273 +01:17:51,540 --> 01:17:54,180 +and all they have is an iPad on their network, + +4274 +01:17:54,400 --> 01:17:56,180 +and the only reason they got that is because, + +4275 +01:17:56,380 --> 01:17:58,660 +eh, that website took a little too long to load. + +4276 +01:17:59,100 --> 01:18:02,900 +That is a gigantic waste of money. + +4277 +01:18:05,000 --> 01:18:06,080 +And beyond that, + +4278 +01:18:06,140 --> 01:18:07,320 +or you see people that go, + +4279 +01:18:07,320 --> 01:18:08,300 +well, you know, + +4280 +01:18:08,360 --> 01:18:13,620 +I went out and got this 500 megabit plan that costs a lot of money per month, + +4281 +01:18:13,700 --> 01:18:17,600 +and it turns out the only problem that they really had was they had a nine year old router. + +4282 +01:18:18,180 --> 01:18:18,580 +Right? + +4283 +01:18:18,640 --> 01:18:20,300 +So there are, + +4284 +01:18:20,420 --> 01:18:22,320 +or they have a very slow computer. + +4285 +01:18:22,420 --> 01:18:23,600 +Maybe they're out of this space, + +4286 +01:18:23,760 --> 01:18:24,280 +right? + +4287 +01:18:24,340 --> 01:18:27,780 +And they're blaming the network instead of the computer. + +4288 +01:18:27,980 --> 01:18:28,460 +So there's, + +4289 +01:18:28,460 --> 01:18:29,000 +there, + +4290 +01:18:29,080 --> 01:18:32,160 +it's not as simple as the cable companies would like to have you believe, + +4291 +01:18:32,240 --> 01:18:32,780 +which is, + +4292 +01:18:32,820 --> 01:18:33,160 +hey, + +4293 +01:18:33,260 --> 01:18:34,380 +just pay for more speed. + +4294 +01:18:34,460 --> 01:18:35,560 +You get more speed. + +4295 +01:18:35,620 --> 01:18:35,820 +Well, + +4296 +01:18:35,860 --> 01:18:36,040 +you know, + +4297 +01:18:36,060 --> 01:18:37,100 +it's also a vanity thing. + +4298 +01:18:37,160 --> 01:18:37,300 +You, + +4299 +01:18:37,320 --> 01:18:38,840 +you gotta have the highest possible speed. + +4300 +01:18:39,000 --> 01:18:40,800 +You can keep up with the Jones is all you want, + +4301 +01:18:40,900 --> 01:18:43,300 +but I'm telling you that it's a waste of money, + +4302 +01:18:44,500 --> 01:18:45,260 +but I, + +4303 +01:18:45,280 --> 01:18:45,740 +I, + +4304 +01:18:45,740 --> 01:18:46,460 +I, + +4305 +01:18:46,460 --> 01:18:53,520 +I suppose you could check that without get off your motor and run a cat court and see if there's any difference there. + +4306 +01:18:53,860 --> 01:18:54,260 +Right? + +4307 +01:18:54,320 --> 01:18:57,180 +So they want to make you do a direct connection test and that's an, + +4308 +01:18:57,200 --> 01:18:58,540 +it's a very valid test. + +4309 +01:18:58,620 --> 01:18:58,940 +Sure. + +4310 +01:18:59,080 --> 01:18:59,780 +Go ahead and do that. + +4311 +01:18:59,800 --> 01:19:00,200 +Plug it in. + +4312 +01:19:00,260 --> 01:19:01,860 +See if you see if your wifi is just slow. + +4313 +01:19:02,680 --> 01:19:06,580 +I've always been on the cat court and my wifi is streaming Netflix, + +4314 +01:19:06,720 --> 01:19:07,180 +just, + +4315 +01:19:07,320 --> 01:19:07,420 +just fine. + +4316 +01:19:07,620 --> 01:19:07,820 +Yeah. + +4317 +01:19:07,860 --> 01:19:08,600 +If you're uploading things, + +4318 +01:19:08,680 --> 01:19:10,180 +you really shouldn't be doing that over wifi. + +4319 +01:19:10,680 --> 01:19:11,040 +Right. + +4320 +01:19:11,160 --> 01:19:11,440 +And, + +4321 +01:19:11,500 --> 01:19:12,320 +and by the way, + +4322 +01:19:12,360 --> 01:19:15,900 +if you're doing large uploads as though you are a photographer, + +4323 +01:19:16,020 --> 01:19:16,340 +right? + +4324 +01:19:16,400 --> 01:19:17,020 +Cause you say you are, + +4325 +01:19:17,080 --> 01:19:17,240 +right. + +4326 +01:19:17,600 --> 01:19:17,960 +And, + +4327 +01:19:18,020 --> 01:19:18,160 +uh, + +4328 +01:19:18,340 --> 01:19:18,840 +yeah. + +4329 +01:19:19,340 --> 01:19:20,040 +And 40, + +4330 +01:19:20,920 --> 01:19:21,480 +you know, + +4331 +01:19:21,500 --> 01:19:23,340 +five megabyte photos at a time. + +4332 +01:19:23,520 --> 01:19:23,880 +Right. + +4333 +01:19:23,980 --> 01:19:25,220 +So if you're doing that type of thing, + +4334 +01:19:25,300 --> 01:19:29,480 +I will tell you right now that it's much better to look at the business accounts for that, + +4335 +01:19:30,080 --> 01:19:32,440 +mainly because they have a higher upload throughput. + +4336 +01:19:33,100 --> 01:19:34,860 +So if you're going to be doing lots of, + +4337 +01:19:34,880 --> 01:19:35,220 +uh, + +4338 +01:19:35,300 --> 01:19:36,660 +uploading to Dropbox, + +4339 +01:19:36,660 --> 01:19:38,700 +cause most of it's asynchronous. + +4340 +01:19:39,000 --> 01:19:40,140 +Think about it this way is, + +4341 +01:19:40,140 --> 01:19:40,280 +uh, + +4342 +01:19:40,320 --> 01:19:40,520 +you know, + +4343 +01:19:40,520 --> 01:19:41,700 +you're getting that 50 meg down, + +4344 +01:19:41,740 --> 01:19:42,700 +but you're only getting five. + +4345 +01:19:42,700 --> 01:19:43,020 +Yeah. + +4346 +01:19:43,100 --> 01:19:44,640 +I've noticed that they're selling plans like that. + +4347 +01:19:44,700 --> 01:19:45,420 +Now they're like, + +4348 +01:19:45,420 --> 01:19:46,960 +you get a gig a bit down, + +4349 +01:19:47,060 --> 01:19:48,100 +but one meg up, + +4350 +01:19:48,140 --> 01:19:48,360 +right? + +4351 +01:19:48,420 --> 01:19:48,840 +What is this? + +4352 +01:19:48,940 --> 01:19:49,880 +And that's how they're, + +4353 +01:19:49,880 --> 01:19:52,080 +that's how they're dedicating that bandwidth or, + +4354 +01:19:52,140 --> 01:19:55,160 +or splitting it apart enough where they can pull that off on the network. + +4355 +01:19:55,320 --> 01:19:58,640 +Otherwise they have to upgrade all their stuff and Lord knows, + +4356 +01:19:58,660 --> 01:19:59,380 +you're not going to do that. + +4357 +01:19:59,740 --> 01:20:00,140 +So, + +4358 +01:20:00,260 --> 01:20:00,680 +um, + +4359 +01:20:01,000 --> 01:20:01,200 +the, + +4360 +01:20:01,340 --> 01:20:02,160 +the best way to, + +4361 +01:20:02,240 --> 01:20:04,940 +to get relatively decent upload speeds, + +4362 +01:20:04,960 --> 01:20:06,640 +have a business account and you don't have to, + +4363 +01:20:06,640 --> 01:20:07,300 +I don't have any data caps, + +4364 +01:20:07,440 --> 01:20:09,140 +but your bill is like way more expensive. + +4365 +01:20:09,260 --> 01:20:10,340 +Bill is a little bit more expensive. + +4366 +01:20:10,460 --> 01:20:10,640 +Yeah. + +4367 +01:20:11,420 --> 01:20:11,900 +But anyway, + +4368 +01:20:11,940 --> 01:20:12,440 +thanks for the call. + +4369 +01:20:12,480 --> 01:20:12,620 +Robert, + +4370 +01:20:12,680 --> 01:20:13,480 +I gotta take a ticket, + +4371 +01:20:13,540 --> 01:20:14,460 +take a break here. + +4372 +01:20:14,680 --> 01:20:15,900 +So they were cheaters. + +4373 +01:20:16,180 --> 01:20:17,080 +People should check. + +4374 +01:20:17,240 --> 01:20:17,520 +Yeah, + +4375 +01:20:17,580 --> 01:20:18,320 +I agree a lot. + +4376 +01:20:18,400 --> 01:20:18,680 +Yeah. + +4377 +01:20:18,800 --> 01:20:20,320 +Everyone check your do a speed test. + +4378 +01:20:20,400 --> 01:20:21,440 +Cause you're not getting what you pay for. + +4379 +01:20:21,460 --> 01:20:21,620 +Yeah, + +4380 +01:20:21,620 --> 01:20:21,880 +you're not. + +4381 +01:20:22,020 --> 01:20:24,500 +Unless they have one of those ones that do guaranteed speeds. + +4382 +01:20:24,740 --> 01:20:24,880 +Well, + +4383 +01:20:24,920 --> 01:20:25,080 +sir, + +4384 +01:20:25,160 --> 01:20:26,680 +can you do that test at three in the morning? + +4385 +01:20:28,320 --> 01:20:28,800 +All right, + +4386 +01:20:28,820 --> 01:20:29,880 +we'll be right back after this. + +4387 +01:20:37,420 --> 01:20:38,460 +I'll see it. + +4388 +01:20:38,460 --> 01:20:39,660 +All good people. + +4389 +01:20:40,160 --> 01:20:41,760 +Each day. + +4390 +01:20:41,820 --> 01:20:42,800 +So satisfied. + +4391 +01:20:43,220 --> 01:20:45,040 +I'm on my way. + +4392 +01:20:51,720 --> 01:20:54,100 +Computer troubles need some advice. + +4393 +01:20:54,300 --> 01:20:55,060 +Call in now. + +4394 +01:20:55,200 --> 01:20:55,920 +Mike Swanson. + +4395 +01:20:56,000 --> 01:20:57,460 +We'll be back after these messages. + +4396 +01:20:57,580 --> 01:21:01,000 +The computer guru show AM 10 30 KBO. + +4397 +01:21:01,100 --> 01:21:02,080 +Why the voice? + +4398 +01:21:05,960 --> 01:21:06,620 +I'm sorry. + +4399 +01:21:06,620 --> 01:21:06,620 + + +4400 +01:21:06,620 --> 01:21:06,620 + + +4401 +01:21:06,620 --> 01:21:06,620 + + +4402 +01:21:06,620 --> 01:21:06,620 + + +4403 +01:21:06,620 --> 01:21:06,620 + + +4404 +01:21:06,620 --> 01:21:06,620 + + +4405 +01:21:06,620 --> 01:21:06,620 + + +4406 +01:21:06,620 --> 01:21:06,620 + + +4407 +01:21:06,620 --> 01:21:06,620 + + +4408 +01:21:06,620 --> 01:21:06,620 + + +4409 +01:21:06,620 --> 01:21:06,620 + + +4410 +01:21:06,620 --> 01:21:06,620 + + +4411 +01:21:06,620 --> 01:21:06,620 + + +4412 +01:21:06,620 --> 01:21:06,620 + + +4413 +01:21:06,620 --> 01:21:06,620 + + +4414 +01:21:06,620 --> 01:21:06,620 + + +4415 +01:21:06,620 --> 01:21:06,620 + + +4416 +01:21:15,740 --> 01:21:16,660 +Mike Swanson. + +4417 +01:21:16,760 --> 01:21:18,820 +Your computer guru is just a click away. + +4418 +01:21:19,020 --> 01:21:21,200 +Listen and watch a guru show.com. + +4419 +01:21:21,600 --> 01:21:23,620 +This is the computer guru show. + +4420 +01:21:24,100 --> 01:21:27,000 +Welcome back to the computer guru show. + +4421 +01:21:27,160 --> 01:21:29,960 +We're talking about more of the interesting stuff that is, + +4422 +01:21:29,960 --> 01:21:30,200 +uh, + +4423 +01:21:30,220 --> 01:21:31,540 +apparently over CES. + +4424 +01:21:31,640 --> 01:21:32,160 +Now, + +4425 +01:21:32,220 --> 01:21:32,600 +a lot of, + +4426 +01:21:32,600 --> 01:21:32,760 +uh, + +4427 +01:21:32,820 --> 01:21:33,400 +you know, + +4428 +01:21:33,400 --> 01:21:35,260 +cities are trying to go smart. + +4429 +01:21:35,400 --> 01:21:36,460 +Cities these days, + +4430 +01:21:36,640 --> 01:21:38,660 +they have smart infrastructure and smart city. + +4431 +01:21:38,760 --> 01:21:39,960 +It's not usually a phrase you hear. + +4432 +01:21:40,060 --> 01:21:40,300 +Yeah, + +4433 +01:21:40,360 --> 01:21:40,640 +it's, + +4434 +01:21:40,640 --> 01:21:40,940 +it's, + +4435 +01:21:40,940 --> 01:21:41,680 +it's an oxymoron. + +4436 +01:21:41,860 --> 01:21:42,420 +But, + +4437 +01:21:42,580 --> 01:21:42,860 +um, + +4438 +01:21:43,240 --> 01:21:43,680 +the, + +4439 +01:21:43,860 --> 01:21:48,100 +the idea of adding the infrastructure for things like, + +4440 +01:21:48,220 --> 01:21:48,440 +you know, + +4441 +01:21:48,480 --> 01:21:48,740 +municipal, + +4442 +01:21:48,740 --> 01:21:51,420 +municipal wifi or an IOT, + +4443 +01:21:51,480 --> 01:21:52,000 +uh, + +4444 +01:21:52,200 --> 01:21:53,740 +sort of interaction with your, + +4445 +01:21:53,840 --> 01:21:55,100 +as an example, + +4446 +01:21:55,200 --> 01:21:56,900 +emergency vehicles now have, + +4447 +01:21:56,980 --> 01:21:57,200 +uh, + +4448 +01:21:58,120 --> 01:21:59,580 +transponders that pick up on, + +4449 +01:21:59,600 --> 01:22:00,840 +on municipal wifi. + +4450 +01:22:01,100 --> 01:22:04,440 +Tucson has municipal wifi for its own city services. + +4451 +01:22:04,520 --> 01:22:04,800 +Right. + +4452 +01:22:05,340 --> 01:22:05,900 +Um, + +4453 +01:22:05,940 --> 01:22:06,580 +now, + +4454 +01:22:06,620 --> 01:22:06,620 + + +4455 +01:22:06,620 --> 01:22:06,620 + + +4456 +01:22:06,620 --> 01:22:06,620 + + +4457 +01:22:06,620 --> 01:22:06,620 + + +4458 +01:22:06,620 --> 01:22:06,620 + + +4459 +01:22:06,640 --> 01:22:08,940 +it doesn't offer the citywide, + +4460 +01:22:09,080 --> 01:22:09,360 +uh, + +4461 +01:22:09,580 --> 01:22:11,260 +wifi that you would hope for. + +4462 +01:22:11,260 --> 01:22:11,740 +For the public. + +4463 +01:22:12,000 --> 01:22:12,300 +Yeah. + +4464 +01:22:12,560 --> 01:22:14,540 +That would be out there like Colorado does. + +4465 +01:22:14,820 --> 01:22:15,260 +But, + +4466 +01:22:16,080 --> 01:22:16,520 +um, + +4467 +01:22:16,720 --> 01:22:17,060 +there, + +4468 +01:22:17,240 --> 01:22:20,280 +a lot of that is because where are you going to put it? + +4469 +01:22:20,320 --> 01:22:20,760 +Right. + +4470 +01:22:20,860 --> 01:22:24,500 +Are you going to spend a bunch of money to put up new posts and, + +4471 +01:22:24,580 --> 01:22:25,160 +you know, + +4472 +01:22:25,160 --> 01:22:27,240 +the places to hide all of this, + +4473 +01:22:27,260 --> 01:22:27,660 +this, + +4474 +01:22:27,860 --> 01:22:28,040 +uh, + +4475 +01:22:28,120 --> 01:22:28,660 +technology? + +4476 +01:22:29,380 --> 01:22:29,820 +Well, + +4477 +01:22:29,940 --> 01:22:30,780 +there is a, + +4478 +01:22:30,820 --> 01:22:34,660 +a company called Wifiber that has figured out a, + +4479 +01:22:34,680 --> 01:22:36,620 +a very interesting way to do, + +4480 +01:22:36,620 --> 01:22:36,620 + + +4481 +01:22:36,620 --> 01:22:36,620 + + +4482 +01:22:36,620 --> 01:22:36,620 + + +4483 +01:22:36,620 --> 01:22:36,620 + + +4484 +01:22:36,620 --> 01:22:36,620 + + +4485 +01:22:36,620 --> 01:22:36,620 + + +4486 +01:22:36,620 --> 01:22:36,620 + + +4487 +01:22:36,620 --> 01:22:38,260 +sort of a bolt on upgrade. + +4488 +01:22:38,980 --> 01:22:41,160 +And what they're suggesting is that you, + +4489 +01:22:41,240 --> 01:22:42,500 +there's street lights everywhere, + +4490 +01:22:42,660 --> 01:22:42,860 +right? + +4491 +01:22:42,940 --> 01:22:43,340 +Well, + +4492 +01:22:43,440 --> 01:22:44,400 +upgrade the street lights. + +4493 +01:22:44,460 --> 01:22:46,020 +And in these street lights, + +4494 +01:22:46,120 --> 01:22:47,000 +inside the, + +4495 +01:22:47,020 --> 01:22:48,200 +the body of the street light, + +4496 +01:22:48,260 --> 01:22:49,980 +you have LED lights that are, + +4497 +01:22:50,000 --> 01:22:50,640 +uh, + +4498 +01:22:50,960 --> 01:22:52,120 +you know, + +4499 +01:22:52,120 --> 01:22:53,340 +cost efficient and all of that. + +4500 +01:22:53,380 --> 01:22:55,180 +But there's also security cameras and, + +4501 +01:22:55,220 --> 01:22:55,620 +uh, + +4502 +01:22:55,760 --> 01:22:57,220 +wifi hubs and, + +4503 +01:22:57,280 --> 01:23:00,180 +So are you talking about replacing the entire pole or just, + +4504 +01:23:00,360 --> 01:23:00,860 +Just the head. + +4505 +01:23:00,980 --> 01:23:02,040 +So they can just pop the, + +4506 +01:23:02,100 --> 01:23:04,140 +the light fixture out of the pole? + +4507 +01:23:04,300 --> 01:23:04,540 +Right. + +4508 +01:23:04,600 --> 01:23:05,340 +That's pretty cool. + +4509 +01:23:05,460 --> 01:23:05,740 +Yeah. + +4510 +01:23:05,780 --> 01:23:05,920 +And, + +4511 +01:23:06,000 --> 01:23:06,320 +and, + +4512 +01:23:06,340 --> 01:23:06,600 +and, + +4513 +01:23:06,600 --> 01:23:08,120 +and it even offers some interesting stuff. + +4514 +01:23:08,200 --> 01:23:10,280 +Like if you can get the everything integrated, + +4515 +01:23:10,520 --> 01:23:11,140 +um, + +4516 +01:23:11,280 --> 01:23:12,200 +you could have, + +4517 +01:23:12,240 --> 01:23:12,440 +uh, + +4518 +01:23:12,560 --> 01:23:13,480 +light color changes, + +4519 +01:23:13,520 --> 01:23:14,020 +uh, + +4520 +01:23:14,140 --> 01:23:14,520 +or, + +4521 +01:23:14,520 --> 01:23:14,800 +uh, + +4522 +01:23:14,860 --> 01:23:19,000 +strobing effects to guide emergency vehicles to wherever the emergency is. + +4523 +01:23:19,120 --> 01:23:19,260 +Well, + +4524 +01:23:19,280 --> 01:23:19,340 +yeah. + +4525 +01:23:19,400 --> 01:23:22,060 +Cause so many street lights are still like incandescent bulbs. + +4526 +01:23:22,260 --> 01:23:22,620 +Right. + +4527 +01:23:22,700 --> 01:23:25,760 +So they're huge to emit that amount of light. + +4528 +01:23:25,900 --> 01:23:27,200 +And they're not efficient. + +4529 +01:23:27,340 --> 01:23:27,660 +Right. + +4530 +01:23:27,760 --> 01:23:28,400 +By any means. + +4531 +01:23:28,440 --> 01:23:32,060 +Whereas the equivalent LED could be like a fifth the size of that or smaller, + +4532 +01:23:32,260 --> 01:23:33,080 +giving you, + +4533 +01:23:33,120 --> 01:23:35,720 +I guess a bunch of room for other electronics if you want to throw them in there. + +4534 +01:23:35,760 --> 01:23:36,100 +Yeah. + +4535 +01:23:36,180 --> 01:23:36,580 +So the, + +4536 +01:23:36,580 --> 01:23:36,580 + + +4537 +01:23:36,580 --> 01:23:36,580 + + +4538 +01:23:36,580 --> 01:23:36,580 + + +4539 +01:23:36,580 --> 01:23:36,580 + + +4540 +01:23:36,580 --> 01:23:36,580 + + +4541 +01:23:36,580 --> 01:23:36,580 + + +4542 +01:23:36,580 --> 01:23:36,580 + + +4543 +01:23:36,600 --> 01:23:41,420 +the only part of the larger larger larger larger larger larger larger larger larger + +4544 +01:23:42,380 --> 01:23:49,120 +larger larger larger larger larger larger larger larger larger larger larger larger + +4545 +01:23:49,540 --> 01:23:49,600 +larger larger larger larger larger larger larger larger larger larger larger larger + +4546 +01:23:49,600 --> 01:23:50,120 +larger larger larger larger larger larger larger larger larger larger larger larger + +4547 +01:23:50,120 --> 01:23:50,200 +larger larger larger larger larger larger larger larger larger larger larger larger + +4548 +01:23:50,200 --> 01:23:50,400 +larger larger larger larger larger larger larger larger larger larger larger larger + +4549 +01:23:50,400 --> 01:23:50,640 +larger larger larger larger larger larger larger larger larger larger larger larger + +4550 +01:23:50,640 --> 01:23:50,940 +larger larger larger larger larger larger larger larger larger larger larger larger + +4551 +01:23:50,940 --> 01:23:50,940 + + +4552 +01:23:50,940 --> 01:23:50,940 + + +4553 +01:23:50,940 --> 01:23:50,960 +larger larger larger larger larger larger larger larger larger larger larger larger larger + +4554 +01:23:50,960 --> 01:23:50,960 + + +4555 +01:23:50,960 --> 01:23:51,540 +larger larger larger larger larger larger larger larger larger larger larger larger + +4556 +01:23:51,540 --> 01:23:51,540 + + +4557 +01:23:51,540 --> 01:23:55,140 +larger larger larger larger larger larger larger larger larger larger larger + +4558 +01:23:55,140 --> 01:23:59,080 +Watch traffic, all right, or anything that's nearby a major thoroughfare. + +4559 +01:23:59,400 --> 01:24:04,880 +I mean, it'd be kind of nice if you're like, if you get mugged or something and the city just has video of that. + +4560 +01:24:05,220 --> 01:24:07,120 +Yeah, that helps find the dude, right? + +4561 +01:24:07,580 --> 01:24:08,720 +That would be nice. + +4562 +01:24:09,220 --> 01:24:13,920 +Not being mugged, of course, but being able to figure out who was the perpetrator. + +4563 +01:24:14,140 --> 01:24:18,940 +And I imagine that would aid in the, I mean, they could just track people who are running from the police pretty easily. + +4564 +01:24:19,480 --> 01:24:19,880 +Yeah. + +4565 +01:24:20,380 --> 01:24:23,100 +Now, you see these types of things in Europe all the time, right? + +4566 +01:24:23,100 --> 01:24:26,060 +Like, you know, CCTV is a big thing in, like, London. + +4567 +01:24:26,640 --> 01:24:29,220 +And people say, well, there's just eyes everywhere. + +4568 +01:24:29,420 --> 01:24:31,480 +And that may be true. + +4569 +01:24:31,640 --> 01:24:43,580 +There's actually some interesting videos of where you can see the CCTV operators noticing a crime and directing police to go deal with it or something along those lines. + +4570 +01:24:43,740 --> 01:24:50,680 +But at the same time, for all of the, you know, omnipotence of this particular technology, + +4571 +01:24:51,320 --> 01:24:53,080 +there's certainly a lot of blinders. + +4572 +01:24:53,100 --> 01:24:53,360 +There's blind spots. + +4573 +01:24:53,960 --> 01:24:54,320 +Yeah. + +4574 +01:24:54,580 --> 01:24:57,280 +And people know where to go to not be seen. + +4575 +01:24:57,480 --> 01:24:59,400 +You know, the criminals figure that stuff out pretty quickly. + +4576 +01:24:59,400 --> 01:24:59,740 +Pretty quickly. + +4577 +01:25:00,160 --> 01:25:01,500 +It's like that movie Eagle Eye. + +4578 +01:25:01,560 --> 01:25:02,000 +Have you seen that? + +4579 +01:25:02,120 --> 01:25:02,260 +Yeah. + +4580 +01:25:02,460 --> 01:25:02,820 +Yeah. + +4581 +01:25:03,340 --> 01:25:06,540 +And also Minority Report, to a certain extent, minus the psychics. + +4582 +01:25:06,660 --> 01:25:09,220 +By the way, that was a terrible movie, Eagle Eye. + +4583 +01:25:09,280 --> 01:25:10,080 +But it was entertaining. + +4584 +01:25:10,480 --> 01:25:10,840 +Yeah. + +4585 +01:25:10,900 --> 01:25:13,100 +I mean, interesting thought concept. + +4586 +01:25:13,460 --> 01:25:14,460 +Not a very good movie. + +4587 +01:25:15,960 --> 01:25:18,560 +But it's interesting in its own right. + +4588 +01:25:18,760 --> 01:25:19,120 +Yeah. + +4589 +01:25:19,120 --> 01:25:23,080 +And I mean, these types of upgrades, while this specific one, who knows if they're actually going to use it, + +4590 +01:25:23,080 --> 01:25:27,540 +but upgrading infrastructure in a cost-effective way is obviously the name of the game. + +4591 +01:25:27,720 --> 01:25:30,200 +And I'm sure we're going to see more stuff like that in the future. + +4592 +01:25:30,260 --> 01:25:30,840 +It's cool to see. + +4593 +01:25:31,040 --> 01:25:35,120 +Now, apparently Lenovo is cleaning up over at CES. + +4594 +01:25:35,120 --> 01:25:36,960 +Oh, they're announcing a lot of new stuff? + +4595 +01:25:37,300 --> 01:25:39,740 +Well, they won two categories. + +4596 +01:25:39,920 --> 01:25:45,060 +One for best phone or mobile device and best PC or tablet. + +4597 +01:25:45,320 --> 01:25:47,760 +That's weird to hear Lenovo making mobile devices. + +4598 +01:25:48,080 --> 01:25:48,460 +Yeah. + +4599 +01:25:48,520 --> 01:25:52,700 +And it looks a lot like the Microsoft Surface. + +4600 +01:25:53,240 --> 01:25:53,900 +Oh, yeah. + +4601 +01:25:54,080 --> 01:25:55,540 +I remember hearing about that. + +4602 +01:25:55,700 --> 01:26:03,420 +So it looks remarkably similar to the Microsoft Surface with a very similar stand and keyboard setup. + +4603 +01:26:03,840 --> 01:26:05,220 +But it's Snapdragon powered. + +4604 +01:26:05,600 --> 01:26:07,800 +So it's got the same type of processor that's in your phone. + +4605 +01:26:07,840 --> 01:26:11,220 +It allows you to put in the SIM card and have mobile data to it. + +4606 +01:26:11,320 --> 01:26:14,420 +And apparently it's fast enough to run Windows 10 on it. + +4607 +01:26:14,580 --> 01:26:17,120 +You know, I despise Surface tablets, so I hope that this is better. + +4608 +01:26:17,880 --> 01:26:18,140 +Yeah. + +4609 +01:26:18,160 --> 01:26:19,400 +I mean, Surface tablets aren't bad. + +4610 +01:26:19,460 --> 01:26:20,060 +The new ones anyway. + +4611 +01:26:20,280 --> 01:26:20,540 +Yeah. + +4612 +01:26:20,600 --> 01:26:21,900 +I haven't used the newest one. + +4613 +01:26:21,960 --> 01:26:23,060 +But every time I've used one in the past, I've been like, oh, this is a good one. + +4614 +01:26:23,080 --> 01:26:23,260 +I've used it in the past. + +4615 +01:26:23,260 --> 01:26:24,320 +I'm just like, this is horrible. + +4616 +01:26:25,000 --> 01:26:26,260 +This is a horrible experience. + +4617 +01:26:26,800 --> 01:26:27,840 +Think about it this way. + +4618 +01:26:27,900 --> 01:26:31,680 +A laptop that can go literally 20 hours per charge. + +4619 +01:26:32,040 --> 01:26:32,420 +Yeah. + +4620 +01:26:32,480 --> 01:26:34,640 +See, like I had a Chromebook and that was like the main feature. + +4621 +01:26:34,760 --> 01:26:36,880 +So, I mean, Lenovo does good work though. + +4622 +01:26:37,500 --> 01:26:46,160 +And the secondary Lenovo, just before we run out of time here, the secondary Lenovo product is their Lenovo ThinkPad X1 Carbon. + +4623 +01:26:46,520 --> 01:26:48,620 +Now, the X1s have been around for a little while. + +4624 +01:26:48,960 --> 01:26:53,060 +They've gone through a couple of revisions because of some pretty significant changes. + +4625 +01:26:53,060 --> 01:26:53,060 + + +4626 +01:26:53,080 --> 01:26:54,140 +They've gone through some significant problems that they had. + +4627 +01:26:55,440 --> 01:27:01,040 +Also, the X1s are also known as the Yogas when they were in the transformable version. + +4628 +01:27:01,140 --> 01:27:01,780 +But this one is not. + +4629 +01:27:01,880 --> 01:27:02,800 +It's just a laptop. + +4630 +01:27:03,560 --> 01:27:07,800 +And it is very, very nice. + +4631 +01:27:07,900 --> 01:27:08,060 +Yeah. + +4632 +01:27:08,120 --> 01:27:11,880 +We made some money on those Yogas when they first came out. + +4633 +01:27:11,900 --> 01:27:12,000 +Yeah. + +4634 +01:27:12,220 --> 01:27:13,700 +Replacing those hinges on those things. + +4635 +01:27:14,400 --> 01:27:17,480 +But it's got, you know, they've upgraded the cameras. + +4636 +01:27:17,760 --> 01:27:22,040 +They even added privacy control for the camera as in a shutter that you can close. + +4637 +01:27:22,040 --> 01:27:22,180 +Yeah. + +4638 +01:27:22,180 --> 01:27:26,920 +You know, you can tell me that the webcam is off all you want, but I want a physical thing that I can cover it with. + +4639 +01:27:27,060 --> 01:27:27,360 +Yeah. + +4640 +01:27:27,440 --> 01:27:30,020 +And it's got Alexa support built into it with that one. + +4641 +01:27:30,360 --> 01:27:33,180 +So, they're teaming up with Amazon if you want that type of thing. + +4642 +01:27:33,220 --> 01:27:36,740 +It's got good microphones on it, of course, because of the Alexa integration. + +4643 +01:27:38,660 --> 01:27:44,800 +And it's got great battery life, great heat dissipation, and it's what we would consider an ultrabook. + +4644 +01:27:45,060 --> 01:27:48,720 +So, we're talking probably like over $1,000 range? + +4645 +01:27:48,940 --> 01:27:51,120 +You're looking at just about the $1,000 range. + +4646 +01:27:51,160 --> 01:27:51,300 +Right. + +4647 +01:27:52,040 --> 01:27:52,880 +So, it's a lot of money for these particular models. + +4648 +01:27:53,660 --> 01:27:56,800 +Anyway, thanks for listening to today's episode of the Computer Guru Show. + +4649 +01:27:56,880 --> 01:28:02,140 +If you would need a new website, you need your management for your business, one of your technology needs, + +4650 +01:28:02,340 --> 01:28:05,060 +give us a call down at the shop at 304-8300. + +4651 +01:28:05,520 --> 01:28:12,940 +You can also visit us at 510 East Fort Lowell, 64 North Harrison, or, of course, always visit our website azcomputerguru.com. + +4652 +01:28:13,120 --> 01:28:14,560 +Thanks to Perfection Auto Works for sponsoring. + +4653 +01:28:14,800 --> 01:28:15,660 +We'll see you next week. + +4654 +01:28:22,040 --> 01:28:22,040 + + +4655 +01:28:22,040 --> 01:28:22,040 + + +4656 +01:28:22,040 --> 01:28:22,060 +Have a great day. + +4657 +01:28:22,060 --> 01:28:22,060 + + +4658 +01:28:22,060 --> 01:28:22,060 + + +4659 +01:28:22,060 --> 01:28:22,060 + + +4660 +01:28:22,060 --> 01:28:22,060 + + +4661 +01:28:22,060 --> 01:28:22,060 + + +4662 +01:28:22,060 --> 01:28:22,060 + + +4663 +01:28:22,060 --> 01:28:22,060 + + +4664 +01:28:22,060 --> 01:28:22,060 + + +4665 +01:28:22,060 --> 01:28:22,060 + + +4666 +01:28:22,060 --> 01:28:22,060 + + +4667 +01:28:22,120 --> 01:28:22,160 +Have a great day. + +4668 +01:28:22,160 --> 01:28:22,160 + + +4669 +01:28:22,160 --> 01:28:22,160 + + +4670 +01:28:22,160 --> 01:28:22,160 + + +4671 +01:28:22,160 --> 01:28:22,160 + + +4672 +01:28:22,160 --> 01:28:22,200 +Have a great day. + +4673 +01:28:22,200 --> 01:28:22,200 + + +4674 +01:28:22,200 --> 01:28:22,200 + + +4675 +01:28:22,200 --> 01:28:22,200 + + +4676 +01:28:22,200 --> 01:28:22,200 + + +4677 +01:28:22,200 --> 01:28:22,200 + + +4678 +01:28:22,200 --> 01:28:22,200 + + +4679 +01:28:22,200 --> 01:28:22,200 + + +4680 +01:28:22,200 --> 01:28:22,200 + + +4681 +01:28:22,200 --> 01:28:22,200 + + +4682 +01:28:22,200 --> 01:28:22,300 +Have a great day. + +4683 +01:28:22,300 --> 01:28:22,320 +Thank you. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.txt new file mode 100644 index 0000000..c3c82ec --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e17/transcript.txt @@ -0,0 +1,4683 @@ +From my heart and from my hand, why don't people understand my intention? +Computer running slow? +Avoiding. +Caught a virus? +No! +When? +Does your computer seem to have a life of its own? +Now functioning. +Need input. +The computer guru is here. +Thank God you're here! +Call in now. +Now it's Mike Swanson, your computer guru. +Oh, let's see where... +Look at this. +The levels are all right. +Hello. +Hi. +Hey, how you doing today, Kent? +Every once in a while. +I am pleased with... +I don't know. +I kind of like the over-modulated thing because it's like... +Like I'm yelling at everyone? +It's like an extra kick to the show right at the beginning. +Oh, my goodness. +All right. +Welcome to the Computer Guru Show. +My name is Mike, here to deal with your technology needs and treat you like a person in the process. +7902040 if you'd like to be part of the show. +We would love to have you on and talk about whatever's ailing you technology-wise. +And I was inadvertently... +I was inadvertently rude to Bob. +I didn't mean to be. +Sorry, Bob. +I apologize. +See, when I'm rude, I try to do it on purpose because it's like I might as well get the credit for it. +Oh, yeah. +You know? +That's not my style. +I don't know. +Sometimes a little snark is a good thing. +You know, it's just... +My mind is in other places. +That's all. +Yeah. +There's a lot going on. +There's a lot going on. +So I had an interesting experience last night. +Oh, yeah? +Technology-wise. +Yeah. +Tell me about it. +So I'm at the ATM after work because it's Friday. +Time to go deposit my check. +Right. +And I get my check deposited. +And I went to go withdraw some cash. +And the machine just froze. +Okay? +So I'm like, all right. +It's going to time out eventually. +Right. +And it did after like 10 minutes. +And it rebooted. +And apparently that ATM was running Windows 7, which is an interesting fact. +But the more interesting thing was that when it was all the way back booted, which took... +A process that took 20 minutes, by the way. +Wow. +When it was all the way back, it just decided to keep my card in it. +So I don't have that anymore, I guess. +I don't know. +I use the type of ATMs that don't actually take your card. +Yeah. +Mine takes it into the machine. +Yeah. +Mine doesn't do that. +So I called my bank this morning. +And they informed me that I can just go down there and get it. +So I was like, okay, great. +What time do you close today? +And they said, 1 o'clock, which is coincidentally when the show ends. +So... +Do you need to take off early? +I guess I just won't have my debit card this weekend, which is fine. +All right. +All right. +All right. +Did you see any available USB ports on it? +You know, I was almost... +I was considering that. +And then I was like, I'm not going to be the guy who gets caught fiddling with the ATM. +I'm just not going to do it. +So I'll just deal with it. +All right. +I didn't get my cash either, though, which kind of sucked because I needed that. +Yeah. +Yeah. +I could see that would be a problem. +Yeah. +And I had to tell, like, I think it was like six people who came up behind me that I was +just going to be here. +And they're just going to have to deal with that. +Right. +You can move me if you like. +I was like, you know, I can move, but it's not going to work anyway. +It's frozen. +So... +All right. +There's no recourse for you. +I'm sorry. +Sorry. +Well, Windows 7, huh? +Yeah. +Which, you know, I was a little bit... +I mean, it's not good, but it's better than if I saw, like, an XP screen. +I am mildly miffed that they're using Windows 7 still. +But we all knew that. +Up until very recently, there were still a bunch of ATMs running Windows XP. +Yeah. +Or 98 even, maybe. +Yeah. +And I know that the... +Because it crashes all the time, the sign computer for the Roadhouse Theater... +Is absolutely Windows XP. +I noticed also when it was going through its boot sequence that this ATM had an American Megatrends board. +I was like, wow. +Yeah. +And they got it running Windows 7. +That's amazing. +I don't know if I feel good about that. +But I know why it's not running Windows 10. +Why? +Because it's an American Megatrends board. +Is it a board or just a BIOS? +I don't know. +It's probably just a BIOS. +I imagine. +It was old. +That's all I know. +Yeah. +I'm guessing it's just a BIOS. +Because the... +And I bet it's an Atom. +Oh, yeah? +Yeah. +Because, like, the firewall machines that we built. +Oh, yeah. +I could see that, I guess. +They're Atoms with AMI BIOS. +Okay. +That makes more sense. +That makes me feel a little bit better. +Yeah. +Otherwise, you're going to have to go in and, like, you know, ATM shame, operating system shame your bank. +I know. +I have a hard time... +I'm going to have a hard time not mentioning that to them when I go eventually to get my debit card. +Like, by the way, you know, we do IT security and your machine is running Windows 7 out there. +What's with that? +Generally, there's special sort of... +blends of Windows 7 and some other custom kernel that's going on. +I hope so, but at the same time, I just... +I don't have very much faith in any of this anymore. +So... +Yeah. +Yeah. +I don't blame you. +The ATMs are interesting animals. +And so are gas pumps these days. +Yeah. +And they're similar in the fact that they're almost computers. +And... +Well, I mean, they are, but... +Yeah, they have to have some computational power to... +scream an advertisement at you. +Are you talking about those little boxes? +Yeah. +Like, they have TVs on them now that are just playing commercials. +Yeah. +At least the one by my house. +It doesn't do commercials. +It does weather. +That's better, at least. +Every time I have a commercial playing while I'm getting gas, +I can't help but feel like I'm in Minority Report. +You know, when they're walking through the mall. +Yeah. +I just... +I don't... +I've never understood that kind of advertising. +Never in my life have I bought... +something as a result of an ad that was that invasive. +In fact, I've said, +now I'm not going to buy that. +Right, because I'm offended by the volume of this particular commercial. +Yeah, but never in my life have I, like, +been about to skip a YouTube ad, +and then I was like, wait, this product is interesting. +I don't think that's ever happened. +I'm trying to think if I've... +Is it a subconscious thing that they're going for? +Like, I'm going to see a Coke commercial, +and I'll be like, +yeah, it's been a while since I had a Coke. +Yeah, I don't know. +In fact, I almost feel like... +I'm offended at the movie theaters. +Yeah. +Where it's just like, okay, +if you can have a... +First of all, I don't understand how +Coke advertising is supposed to work. +Right, because +every Coke commercial +almost, I mean, +if you were to replace the Coke, +would be a hallucinogenic drug. +It's true. +Right, it would just be, +you know, you're imagining suddenly +that there are people dancing in the car wash. +Also, I've never had an event, +and I've never had an event ruined +because I didn't have +a particular brand of soda there. +Like, I've never been, like, at the beach, +and I was like, man, +this would have been way better with a Pepsi. +Also, I can't... +There's no way for me to be any more aware +that Coke exists. +Like, I don't need to see an ad ever again. +Yeah, Coke's one of those things +where it's sort of... +Everyone knows. +I feel like they're just advertising +because that's what they've always done +at this point. +Nobody's going to not know about Coke. +I think it's a tax credit. +It must be something like that. +Yeah, because... +Because they could not advertise +for ten straight years, +and I would buy the same amount of Coke +that I do anyway, +which is every now and then. +On occasion. +If the gas station that I'm at +doesn't have, like, an iced tea. +Which is probably sold and distributed +by Coke anyway. +Almost certainly, yeah. +Yeah, Coke is one of those companies +that, at least in the beverage world, +that is... +They're much like Disney in that regard. +They just own everything? +Yeah, they own all the things. +Yeah. +Anyway, the irritation level +with the way that technology +is being used to advertise +is high. +I mean, it's like an arms race. +There's so much invested in blocking ads +and then blocking ad blockers. +Right, well, it's hard to do at the gas station. +Yeah, I don't know what... +I was thinking about making some, like, +AR glasses that detect ads. +Do you think that maybe they'll move towards, +like, the ATMs before you get your cash out? +You have to watch a commercial. +That would not... +Don't even say that, +because that's... +That's probably going to happen. +Yeah, you can't... +You can't... +It's going to be like, +pay a $1 fee or watch this ad. +Oh, yeah. +Yeah. +You know what's sad? +I would pay the fee, like, every time. +Right, and it's like a... +It's a two-minute commercial. +Right? +Oh, man, that would be the worst. +And people would do it. +And there's just a line behind you. +Right. +And people are like, +just pay the dollar, +and you're like, I can't. +All right, let's talk to Charles. +Hey, Charles, how are you? +Oh, there we go. +Yeah. +I've got to forcefully disagree with you +about the reality in those Coke commercials. +I'm going to tell you, +when those polar bears are at my house, +they absolutely want a Coke. +You know what? +What's wrong with you? +Maybe I just haven't invited the... +Are you supposed to take the hallucinogenic drugs +before you watch the Coke commercial? +Is that how it works? +No, the commercial is the hallucinogenic drug. +You're right. +My goodness. +Why are you guys watching the commercial anyway? +Most of those... +Or listening to it. +Most of the stuff at the gas pump +and the other places have a mute button. +Do they really? +Yeah, most of them do. +You just got to look at the screen. +And of all people not to realize that, guys, +most of them have a mute button that'll... +Even if you don't... +Even if you can't stop watching the commercial, +you can at least not listen. +I feel like that would be... +I feel like I don't want to do that +because then they're going to know +that I interacted with their advertisement in some way. +And the mute buttons on the ones at... +Oh, what's the name? +I don't even know what's the word. +But they get the little box that says, +hey, points member, +and then it starts screen matching. +It's a little round control panel +and they've got a mute button on it. +Yeah, I just like... +Most of the mute buttons are broken +from people just jamming in. +Some of them are, +but I noticed most of the mute buttons, +most of the buttons, +they're not touched except the mute button. +It's got the writing on it. +It's kind of worn down from people pushing it. +Right. +There's been a few that have been out +where the mute button is broken +because somebody apparently... +Was unhappy with it. +They were just forcibly muting the ad. +They're muting harder. +Well, I carry certain things like that stick +and I find that on the ones that are broken, +if I jam the stick on it pretty hard, +it'll still mute. +Okay. +I was getting gas at QT recently +and apparently somebody pulled up +to one of the gas pumps +and then called the QT +and asked them to come out +and pump their gas for them +and they did it. +Wow. +They have to. +That's part of handicap legislation. +Oh, do you have to be... +Do you have to have, like, +a handicap sticker for that? +Yeah, you have to offer that service +because if you don't, +it's supposed to be intimidating +against some people. +So the moral of the story is +if you hit the little round squawk box +with a baseball bat, +it mutes it. +So... +If you just hit the gas pump with your car, +it'll probably mute it too. +Yeah, especially if you have some igniting device. +Yeah. +All right. +That's an ultra hot take. +All right. +Thanks for the call, Charles. +Thanks. +So if you have run over +a gas station pump with your car +and you need it repaired, +take it to Perfection Auto Works. +Oh, that was good. +Because I think that they can probably +take care of that for you. +Speaking of... +Speaking of... +I am in negotiations with Mike +to actually get my car done. +Oh, yeah? +Yeah, because I'm still waiting on my... +Because I told him, I was like, +I can't be without a car. +Yeah. +You know, because you know how much... +You know how unforgiving my schedule is. +It's true. +So... +But... +Hopefully... +Hopefully... +We'll finish putting together the Prius. +Oh, that's what I was going to say. +You're talking about the Prius here? +Yeah. +And then... +And then... +And then Mike can have the BMW +to make it beautiful. +And you can just be speeding around in the Prius. +That's right. +I'll be a speedy Prius. +Well... +Anyway... +Check out their website, +perfectionautoworks.com. +Yeah, they're good guys. +If anybody can fix that Prius, +it's Perfection Auto Works. +Yeah. +Yeah. +I... +They're good people, though. +And... +And, you know, +they have a... +They have kind of a special thing going on +where if you... +If you tell them, +hey, you know, +Computer Guru sent me, +you don't have to wait +to the end of the line. +You get... +You get bumped up a bit. +Front of the line service, huh? +Yeah. +So, you just... +You just go ahead and tell them +Computer Guru sent you +and they will be very happy with that. +Which will make me happy. +All right? +Because I like happy. +Everybody likes happy. +Anyway, +perfectionautoworks.com. +Check them out. +Listen to their ad coming up next. +And we'll be right back. +I'll be the roundabout +The words will make you out +Your Computer Guru, Mike Swanson, +is here to help you tame +that beast of a machine. +Join the chat right now +at gurushow.com +or call in. +This is the Computer Guru Show. +On KVOY, The Voice. +Your technology guru, Mike Swanson, +is answering all your questions +one by one. +Yes, science! +So, chime in with yours. +The website is gurushow.com. +Tune in, click in, and kick back. +This is the Computer Guru Show. +So, let's take a moment +to talk about our favorite, +you know, process chip manufacturer. +Those guys over at Intel +are in trouble. +Kind of in a big way, too. +Yeah, and for a couple +of different reasons. +You want to talk about the CEO first +or the security? +I think we should probably explain +what happened +and then talk about the CEO. +Okay. +So, we've been talking about +some AMT flaws, +which is the management service +that's built into a lot of the, +most of the Intel processors these days. +And it allows for, +it's designed for, like, +large corporate IT +to be able to have +a fair amount of money +and be able to do +a lot of things +and be able to do + + + + + + + +as though they are sitting at it, +but remotely. +Right. +And just control the computer +completely, right, +from remote. +And it's a super useful feature +if you're managing large networks. +Yeah, because, I mean, +it's nice to have, like, +a remote connection, +but when you need to manage the BIOS. +Yeah. +And it allows you to make, you know, +changes to the system +while it's running, +that type of thing. +But, you know, +we've been saying for years, +you know, +for years, +hey, this is kind of a dangerous thing +to have in here +because it's effectively +a separate computer +that's running with, +you know, +a separate running processor +that's running within the machine. +And even when the machine is +quote-unquote powered off, +right, +that other processor is running +and the network card is running, +so you can manage that machine +and even if you wanted to, +turn the machine on from remote. +And we started talking about this +security flaws in this +a couple of years ago. +And it turns out +that it's gotten everybody else's attention +right now +because some serious flaws +have been found, +especially with the way +that operating systems interact +with these particular +management processes. +And it's not limited +just to Windows. +Mac machines are also affected +because most of them +are running Intel chips. +At least for now, +I imagine we're going to see +a change in that +pretty quickly. +Which would be kind of crazy +because historically +they've been running Intel chips +and one of the biggest purchasers +of Intel processors. +Yeah, and of course, +you know, +this type of news to say, +hey, there's these gigantic flaws. +We should probably tell you +that this isn't one of the flaws +where it's just like, +hey, somebody could turn +your computer on. +It's that with this particular exploit +that even things like +full disk encryption +would mean nothing, right? +The remote attacker +could read your information, +would be able to take information, +from you. +They would be able to see passwords +as they're typed in real time +and no antivirus would be able +to detect it +because it's not running +in the same sphere. +It's not running within +that operating system context. +It's running at the hardware level +where it can read everything. +And this really puts a lot of places +in pretty significant risk. +The interesting thing here to me +is that while there's already +a fix for this, +that patch essentially, +the way that it handles this, +slows the processor down a lot. +It slows down by as much as 30%. +Right. +Now, they're saying that you're probably +not going to see that much on average. +Yeah. +Right. +But there's the potential +for 30% slowing. +And I mean, +when we're in a competition sphere +right now between AMD and Intel +where, I mean, +speed advantage is measured +in single digit percentages, +that's a big drop. +Yeah. +Yeah, it certainly is. +To me, you know, +the performance impact +isn't nearly as important +as the security impact. +Right. +Of course. +You know, because most of the time, +in most cases, +generally, +people are sort of overpowered +on the CPU anyway. +They're not hitting that CPU +all that hard. +Yeah. +Even with the highest end gaming rig, +you really don't need a 12 core i7. +Right. +And so there's a lot of people +that are running, +as an example, +like i7 processors. +And they're going to be using, +I bet if you were to look at +an overall process usage +for a machine, +you're probably saying +20% usage, +30% for like a 20% +or 24 hour period. +Even on my machine, +right, +where, +you know, +I experiment a lot +with things that are +even high CPU usage. +I'm probably only averaging +40% usage. +I wonder how this will affect +the animation and movie production industries +because any type of film production +is very processor intensive. +And unless they've got it running on like +a separate GPU farm, +which the really big companies will do. +Yeah, Pixar's got their own phone. +But like YouTube developer, +or YouTube show runners, +for instance, +most of the time they're using Macs as well. +And yeah, I mean, +a 20 to 30% drop in your ability +to render your video +is kind of a big deal. +Right. +Yeah, it's going to be interesting. +And so anyway, +there's just no way to stop this, +right, +other than getting the software patches. +And from what I understand, +there's going to be some basic firmware updates, +firmware updates for the processors. +It's also worth noting that this is, +this is legacy Intel processor stuff. +Like, +this stuff is going to be, like, + + + + + +this stuff that's coming out brand new +is not going to be affected by this. +Actually, since last year. +Yeah. +And the, +there is an option to turn off AMT in most processors, right? +And turning that off actually does a great deal +towards protecting yourself from this particular thing. +But most people don't go into the BIOS. +And that's not going to be an option anyway +for the really big businesses that need those AMT features. +Right. +So I'm curious what's going to happen there. +As you would imagine, +the Intel stock didn't, you know, +didn't fare all that well because of it. +Yeah, it dropped by 3% pretty much instantly, +which is a huge number for them. +Yeah. +But you know what the interesting thing is, +is how the CEO reacted before the release of this announcement +or the announcement of this particular flaw, +which was, I mean, +he normally sells about, you know, +$2 million a year worth of Intel stock. +But it was $40 million this year, +right before this was announced. +And so. What a coincidence. +You know, I'm sure that there's no sort of like, +you know, he knew or anything. +No, that was just luck. +It was already scheduled. +Just happened to need 20 times as normal amount, +you know, this year. +Maybe he was buying a house or a yacht. +Just in case. +Right. Or it was a really rough Christmas. +That's what it was. +So once again, we've got some type of a, +you know, a CEO type person that is in the tech industry. +Now, this is a really tough time. Right. +OK. +OK. +OK. +OK. +Cryptocoin, where they were selling Cryptocoin off before. +Right. +Which one was that? +I can't remember which coin that was. +It's one of the ones that you have. +Oh, it was Bitcoin Cash. +Yeah. +So, yeah, Bitcoin Cash, the developer of that basically saying, +hey, you know, I just need some extra money right now. +And taking a bunch out. +But anyway, so there's an investigation happening to find out, you know, +what he knew and when he knew it, that type of thing. +Yeah, because that's the most insider trading thing I've ever heard, I think. +I don't know how you could think you're going to get away with that. +I don't know. +So anyway, your computer may be telling you that, hey, you need some updates, by the way, +even though this has mostly been patched in previous updates. +How is that going to get patched? +Is it going to be a BIOS update? +How does that work? +Right now it's an OS update. +Okay. +But from what I understand, there are going to be firmware updates for your board. +Most people don't go out there and get those. +And it's kind of a scary thing to be, like, flashing your BIOS. +Yeah, because, well, in new machines it's not so much because they generally have dual BIOS. +Right. +But older machines, let's say older than five years ago. +I'll never feel comfortable 100% with that. +There is a remote chance that you will brick your machine. +Do you know how many things I have bricked because I didn't read the revision number? +I don't remember at the end of the model number. +It happens. +It does happen. +So you should be careful if you're going to update the BIOS. +But it's also one of those things that you should probably do. +Yeah. +And if you're running a newer machine, like you said, that has the dual BIOS, then you really aren't at risk. +Yeah. +You just go ahead and do what you do. +Get your update if you have a dual BIOS machine. +And that will help you out quite a lot. +And if you're buying a new machine and you're just a normal person, maybe look at buying a Ryzen processor, a machine with a Ryzen. +Maybe. +I mean, I'm still trying to overcome my extreme prejudice of AMD. +You've got to give them credit, though. +The Ryzen series is almost a different company at this point. +Yeah. +If you think of it as not AMD but as Ryzen instead, you might be okay. +I'll take a look at that. +I mean, well, you know what? +I should probably build one and just try it. +Get a Ryzen 5. +Don't go with the highest end one, not the lowest end one. +Ryzen 5 is where it's at. +So they're using a similar numbering structure to, like, the i5. +The i series? +It seems like it, yeah. +Just trying to jump on that? +I guess so. +It kind of worked, though. +Yeah, I guess so. +Yeah, I'll build one, and then I will give an honest feedback of it. +I think the best compliment that I could give to the Ryzen processors is that you will not notice a difference. +That would be amazing. +And they're, like, $200 cheaper. +Yeah, because the problem with AMD is that you knew that you were on an AMD machine. +Yeah. +It's loud. +It's hot. +Right. +It is. +Frequently crashes. +Yeah, those types of things. +And it gave very different blue screens as to Intel processors. +Yeah. +If I could build a machine with an AMD processor that I just didn't know it was an AMD, yeah. +That would be a complete success in my opinion. +Yeah, because they're not, like, incredibly faster than Intel processors right now. +It's just that they're night and day better than previous AMD offerings. +Right. +All right, so let's take a break, and then we'll come back and talk more about, +uh, the problems with the technology of this world. +Not to mention, you can give us a call at 790-2040. +We'll be right back. +Whether you're dealing with hardware installation or, heaven forbid, a virus. +No! +No! +No! +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours. +The website? +Gurushow.com. +Tune in, click in, and kick back. +This is the Computer Guru Show on AM1030 KV... +Mike Swanson, your computer guru, is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show on KVOI, The Voice. +Welcome back to the Computer Guru Show, 790-2040. +If you'd like to be a part of the show, you can find us on Facebook, Twitter, or Instagram. +If you'd like to be a part of the show, how'd my levels change? +That's what I want to know. +They did. +Didn't they? +Or am I just being louder? +It's me. +I changed them. +Oh, okay. +All right. +So if you'd like to call and ask a question, you can give us a call, 790-2040. +And if you're the type that doesn't want to talk to us on air, you can call 304-8300 and talk to the shop. +They won't put you on the air at all. +Not at all. +I promise. +Although it is Howard, so he may try to mess with you a little bit. +Well, it is, yeah. +that's how Howard gets his kicks +he tries to mess with people a little bit +that's what happens +what's next sir? +how would you feel about purchasing +fried chicken with bitcoin? +you know what +I knew that the fast food companies were going to jump on this +why wouldn't they? +because it's nothing but you make more money than you +inflation on this +I have to say though that I wouldn't want +to do a transaction for fast food +with bitcoin because it would be +incredibly slow if they wanted you to stand there +and verify it +bitcoin transactions are slow +I imagine they're working through some type of +clearing house +for that +an escrow account +if they would take litecoin +or ripple +ripple is crazy fast +so how long does it take on average +for a transaction? +bitcoin transactions can take hours +depending on how many people +are trading things at the moment +litecoin transactions +tend to take like 10 minutes from my experience +and ripple is like instant +hmm +alright then +I've done zero +ripple or litecoin +well bitcoin was +you know it was the +it's the OG +it was the model that everything else is based on +but they've improved on it since then +so you gotta look at some of these smaller +newer coins if you want to +see the upcoming technology +yeah +wow we got popular all of a sudden +yeah I don't know what you did +but +anyway +maybe I actually said the phone number slow enough this time +or I said something that just offended everyone +just now +everyone's mad at you +or something like that +I can't believe you said bitcoin is slow +kfc what? +yeah anyway that was the point of that +was that kfc in Canada is accepting bitcoin now +yeah and we've been working on +ways to potentially do that +but it seems to confuse +anyone who's an accountant altogether +yeah the biggest +hang up with bitcoin right now is that +none of the people who are in a position +to like make this happen +understand it +right +unfortunately +it's not that hard of a concept either +yeah and we have this +this is sort of weird contract going with our +payment provider +and +it's like I can't use another payment provider +in conjunction +would they consider bitcoin to be a payment provider? +yes +that's ridiculous +yeah +and that's one of the things I've been working with +is talking them out of that +do they consider trade a payment provider? +because that's like the same thing +yeah +no they don't +bartering +yeah +I mean yeah we're gonna +we're gonna work on that +because I'd really like to see +a cryptocurrency +ability to pay +at computer guru +yeah +yeah +! +me too +and as everyone should +should want +right +because that would be interesting +I don't know +I'm half doing it +just because of curiosity +yeah and I mean with +you know everybody always says +bitcoin's gonna fail +that could be the case +bitcoin might fail +but the underlying technology +of the blockchain +and all these new technologies +that are using it +that's forever +it's gonna be around +right +all right let's take some calls here +who are we gonna start with? +with Les +let's start with +line two +Les +hello Les +how are you? +hi guys +2018 +greetings +greetings +you as well +and I took your advice +I was probably +last month +about upgrading +taking advantage +of the Windows 10 upgrade +using the +disabled service method +it would have had to have been +last month +yeah +for free +yeah +yeah for free +for free +and I had an old +like a Windows 8.0 +that I hadn't used +and I +figured that would be +a good way to get into +the virtual box +to make one with 10 +so I +created a virtual box +with 8 +and then I +upgraded it +to 10 +no problems +other than the video sharing +I was looking at it +and +the most you can get +is like 256 +megabytes +for your video memory +and +my intent of the video +or the virtual box +would be to +be able to put your +programs on there +like Photoshop +and all that +I think Mike +you had suggested +then you have like +something you can +use +and not have to worry about +you know +putting in your keys +and all that stuff +right +but +256 megabyte +is really nothing +if you're going to use +Photoshop +so am I missing something +or is that not really +you're using virtual box +right +yeah it's a virtual +limitation of virtual box +so the virtual box +limitation is 256 +but I think that's only +on the 32 bit version +or you have the 64 bit +version of virtual box +yeah I'm +pretty sure it's +installed in 64 bit +and the operating system +is 64 +yeah +yeah +Windows 10 +just +making sure +making sure that +your original +like your Windows 8 +that you upgraded +was also 64 +yeah +everything was +10 +in fact I think +it installed it in the +I want to say +I remember +from messing around +with virtual box +that if you want to +access more +you have to set up +a pass through +so that it's actually +utilizing your GPU +right +there's a way to do +and I don't remember +off the top of my head +how to do it +but there's a way +in virtual box +to give direct access +to that operating system +because it's simulating +it's simulating +that GPU + + +right +right +yeah +so there is a way +to do a pass through +and I can't remember +how that works +off the top of my head +the other flavors +that cost more +for +yeah +you know +virtualizing machines +tend to have this built in +or they offer you +better virtualization +when it comes to +graphics hardware +but there is a way +to do a pass through +in virtual box +and unfortunately +I don't remember +what it is +I could research +I just researched +how to get to +I think it was +24 megs +and to get it +to 256 +you know +there was some +YouTube videos +on that +that was pretty +straightforward +but I do have it +set up for 10 +and I'm +playing around with it +but before I start +installing stuff +it's not going to be +overly useful +yeah +I bet if you just +Google virtual box +GPU pass through +you'll find what you need +not to mention that +there's an interesting +thing that happens +with these types of things +even though +your machine +your virtual machine +may only be reporting +that 256 megs of RAM +it's +still passing that +through to the real card +and then getting +a response back +and that happens +really fast +so the +even though it says +that it has less RAM +there +that's initially +utilizable +you know +that you can use +it's still pretty quick +and it may not be +the bottleneck +that you think +it's going to be +I hadn't tried +with any photo +I just +before I said +before I got further +I thought I would ask +and the other +little problem +with that virtual box +is +you know +so I have +let's say I have +a USB printer +and it sees that port +but it doesn't +share between +the host machine +I couldn't really +figure out +how to get any +or the webcam +you know it sees +the port +but it's like +my host computer +has a webcam access +but I wasn't sure +how to +at the top of the screen +there's going to be +like a USB devices +drop down menu +right +and you can go in there +and then assign it +to whatever +virtual machine +you want +but by default +you can get +those are on +the host machine first +and so then you can +when you go and assign +it to a virtual machine +it virtually +unplugs it +from the host machine +and plugs it into +the virtual machine +and you have to do +the same thing +with network connections +right +no network +they're bridged +okay +so +yeah that did it +automatically +the network +I didn't have to do +much with that +it was just the +it could see +there was a webcam +but it couldn't +access it +right +because USB devices +are exclusive +so you can't have +a USB plugged +into a USB device +plugged into more +than one machine +at a time +so you have to +effectively go and +unplug it from the +host machine +and plug it into +the virtual machine +okay +well I will play +around with that +it's um +it was also fun +setting up +the fresh installs +of Windows 7 +I don't know why +I see what you guys +were talking about +yeah +it's different +and the nice thing +is that you can now +make backup copies +of that virtual +machine file +or put them on +a different machine +and fire them up +and everything's +exactly the way +it's supposed to be +or you can just +share them on a network +but you'll have +exclusive access +to one of them +so like +speaking of network +did you ever +research that +Zools +no I forgot +file thing +no I forgot +you were correct +it was IOSafe +as far as +the fireproof +waterproof +backup drive +enclosures +right +but the +ones I'm seeing +that I would +consider reasonable +for +um +priced +are all USB 3's +and +I'm pretty sure +you have a +you know +maybe a 6 +9 foot limit +on the cable +um +so here's how +you get around +between them +you can get +$30 little boxes +that will take USB +and turn it into +network +oh +so +and you can have +them powered +over the network +so they can live +anywhere +and you can +convert +it's basically +a USB to network +adapter +you can get them +on Amazon +for as little +as like $6 +don't get the cheap +ones +don't get the cheap +ones +get the most +expensive one +you can find +actually +on those +so there would +be USB 3 to +network +yes +okay +and +alright +and those +what they'll do +is they +they basically +become +little SMB +servers +so it becomes +like a network +share +on the network +it's pretty cool +check them out +alright +I will research +that because +the USB 3 ones +you could get +a 3 +terabyte +IOS safe +for maybe +$350 +with no drives +but yes +yes +actually +that did have +a drive +for $350 +I feel like +it should come +with a drive +yeah but the +IOS safes +are stupid +expensive +because they're +fireproof +and you know +all of that +yeah but the +ones with the +network +are started +like they were +about $650 +without any +drives +that's the ones +I'm thinking about +yeah +well I gotta +move on +thank you for +the call +appreciate it +let's move on +to Bruce +let's talk to Bruce +hello Bruce +how are you +good morning +I'm good +and yourself +not bad +what can I do +for you +can you talk +a little more +about Bitcoin +and then +the Bitcoin +mining +I hear these +people that are +Bitcoin mining +and I don't +really understand +what they're looking +for +I'm going to +turn it over +to Rob +because that's +his area +and then hang on +the other thing +is I see that +Ripple is trading +at almost 7 +and it's at +201 as we +speak +yeah +isn't that a +bank based +cryptocurrency +yeah Ripple's +interesting because +it's like a +decentralized +centralized currency +I don't want to +get too much +into that +because it's +pretty technical +and there's a lot +involved +but I would +definitely tell +anybody who's +already knows +something about +crypto +to go look at +Ripple if you +haven't already +but yeah as far +as Bitcoin mining +goes +it's I mean +really all it is +on a fundamental +level is +your computer +being used +to solve +the algorithm +that is +that particular +block of +Bitcoins +so it's +just trying +to decrypt +that block +essentially +and you get +a percentage +of those coins +based on how +much work +your computer +did if you're +using a pool +right so +for the +uninitiated +there is a +set number +of +Bitcoins +that are +available +and how +each one of +those coins +comes into +the world +is that a +number of +machines are +involved in +the process +of creating +that particular +block for +the blockchain +so each one +that gets +completed +is a new +Bitcoin +that exists +in the world +and the +way that the +algorithm works +is that each +coin is more +difficult +exponentially +than the one +before +and so there's +a bunch of +machines that +are all trying +to solve +a particular +yeah because +at this point +it used to be +that you could +mine solo +just by yourself +and you could +get I mean +thousands of +coins a day +at one point +but as it got +more difficult +it's essentially +now impossible +to mine on +your own +with just +your computer +so what the +vast majority +of people do +is they join +what are called +pools which are +just networks +of computers +it's almost +like a botnet +in a way +and it's +tens of +thousands of +machines all +around the +world that +are all +working to +solve that +one block +together +and then you +are awarded +a small +amount based +on what +your machine +did +so yeah +for the most +part Bitcoin +mining is not +profitable these +days you'll +spend more on +the electricity +that it takes +unless you +have like a +crazy warehouse +in the jungle +that has every +GPU manufactured +by AMD last +year inside +of it +and it's +solar powered +yeah +but yeah I +mean these +other cryptocurrencies +you can definitely +still mine them +there's a lot +of research +that's done +on it but +I highly +suggest that +everybody go +and do that +because whether +you like Bitcoin +or not it's +a part of +things right +now and it's +going to be +for the +foreseeable +future +yeah I +believe that +well thank you +so much +no problem +alright bye +yeah it's one of +the questions that +I get quite a +lot is +what +how is this +Bitcoin a thing +what's all +this Bitcoin +yeah I'm +happy to talk +about it though +alright give us +a call +7902040 we'll +be back right +after these +messages +computer troubles +need some +advice call +in now +Mike Swanson +will be back +after these +messages +thank you +the computer +guru show +AM 1030 +KBOY +The Voice +Mike Swanson +your computer +guru is just +a click away +listen and watch +a guru show +dot com +this is the +computer guru +show +welcome back +to the computer +guru show +if you'd like to +be part of the +show you can +give us a call +520-790-2040 +let's go ahead +and talk to +Sandy +hello Sandy +how are you +well good +morning +I just got +a new computer +and I'm putting +all the new +software and +things on +and my new +machine has +office 365 +360 which is +I think cloud +based +and I have +this prejudice +I just +I'm avoiding +the cloud +still +okay +I found out +that there's +a Libra office +or office Libra +which has a suite +of a calculator +and like a word +processor +and PowerPoint +like +yeah it's +it's basically +a clone of office +now would that +would that +if I use that +too long +will my data +eventually not be +compatible +do you think +in the future +to +well +as of right now +Libra office +has the ability +to save in all +of the Microsoft +office formats +and I really +don't see that +changing in the +future because +it's kind of like +their big selling +point is that +it's compatible +with office +so as long as +you're backing it +up properly +it should be +fine +okay +okay +because I +is office +365 cloud +based mean +that in the +future +I would +purchase +the next +version of +office +without a +CD +is that +what that +means +so the way +that 365 +works is +this is one +of my complaints +about Microsoft +and I'll do a +short rant +and then we'll +actually answer +your question +is that +Microsoft +needs to +stop naming +products that +are different +with the same +name +yeah +right +so there's +Microsoft +office 365 +and within +365 +there is the +version that +you can just +purchase +there is the +version that +is the +subscription +model +it's also +what they call +their mail +service +it's just +it's ridiculous +that they name +everything the +same thing +but so +the what is +commonly referred +to is the +cloud version +of office +365 is the +subscription +model +where you give +them a hundred +dollars a year +and they give +you office +on up to +five computers +and effectively +an unlimited +number of +mobile devices +so and +there would +be no +purchasing +new versions +it would just +automatically +become the +new version +when the +new version +is released +so that's +how the +what they call +the cloud +version +really is +has nothing +to do with +my data +being in +the cloud +no they +certainly +encourage you +that they +want you to +save your +data to +one drive +which is +the cloud +version of +storage +for Microsoft +but you +don't have +to it +doesn't +require you +to do so +so +which drive +Microsoft's +version of +own cloud +is called +or of +Dropbox +is called +one drive +which is +oh I've +seen that +yeah +right +which they +have +lovely +as they +you know +as they +are +and thoughtful +as they +are +have forced +one drive +onto every +computer in +the world +yes I see +it all the +time +so +you can +save +to the +cloud +that way +but if +you don't +want to +then just +don't +and +that will +take care +of that +but there's +really no +reason for +me to +avoid +office +365 +if I +take the +mail server +version +is that what +you mean +for that +I'm saying +is if you +don't save +to +to +! +you know +one drive +then +you're not +saving to +the cloud +and that's +fine +okay +alright +may I +sneak in +one more +question +since I +you've got +about 30 +seconds +so yes +okay +I love +Opera +I load +the new +Opera +it has +free VPN +but I hear +it's been +bought by +China +and I'm +nervous +I don't +blame you +I mean +I don't +know that +that's +necessarily +a huge +security +flaw +unless +you're +dealing +with +you know +sensitive +information +but +you +but if +you're +you know +if that's +the one +you like +that's +the one +you like +just use +a +which +which +browser +do you +particularly +like +I use +Chrome +and Rob +uses +Chromium +but +I'm +sorry +I'm +out of +time +Sam +thank you +very much +thank you +for the +call +if you'd +like to +stick around +for the +second hour +we'd +appreciate +it +790 +2040 +and we'll +be right +back +I say +a warning +live +without +warning +I say + + + + +I say +I say +a warning +people +understand +my +intention +computer +running +slow +avoiding +caught +a virus +does +your +computer +seem +to have +a life +of its +own +malfunction +need +input +the +computer +guru +is here +call +in +now +now +it's +Mike +Swanson +your +computer +guru +hello +and welcome +to the +computer +guru +show +my name +is Mike +here to +deal with +your +technology +needs +and +treat +you +! + +a +person +give +us +a +call +if +you'd +like +to +be +part +of +the +show +790 +2040 +where +we +can +deal +with +whatever +technology +issues +you +are +having +Rob +is +finished +with +this +coughing +fit +I'm +dealing +with +issues +of +my +own +allergies +man +I +have +horrible +horrible +allergies +everybody's +got +that +cough +right +now +I +would +just +remove +my +sinuses +if I +could +right +probably +not +actually +but +seems +like +it +would +be +a +good +idea +right +now +you +can +just +ask +the +dude +from +NXS +about +that +alright +let's +go ahead +and +Marv +has +been +very +patient +and +he +held +over +from +the +last +hour +so +let's +go ahead +and talk +to Marv +hello +Marv +how +are +you +oh +I'm +fine +what +can +I +do +for +you +Marv +my +problem +is +my +computer +comes +up +very +slowly +okay +it's +in +HP +and +when I +turn it +on +the +HP +comes +up +on +the +screen +I've +got +two +screens +and +it +comes +up +on +the +left +screen +and +then +it +goes +black +and +it +starts +just +going +back +and +forth +so +how +long +do + +think +that +it +takes +for +it +to +be +with +up +! +Marv +it's +two +and a +half +minutes +okay +and +then +it +will +ask +for +my +password +okay +how +old +is +this +computer +oh +five +years +yeah +it's +probably +time +to do +some +upgrades +on that +one +or +replace +it +yeah +because +it's +which +would +you say +is +Windows +7 +on +that +no +it's +10 +it's +10 +you +definitely +need +some +upgrades +in +or +to +replace +it +so +uh +I +mean +if +you +want +to +go +sort +of +the +you +know +relatively +inexpensive +route +you +could +do +a +minor +upgrade +and +a +solid +state +upgrade +on +it +and +that +would +make +it +faster +but +at +five +years +old +it +may +not +be +worth +investing +in +that +machine +you +might +just +be +looking +at +a +new +computer +yeah +so +I'm +not +sure +where +I can +help +you +other +than +to +tell +you +that +it's +a +machine + +you +probably +want +to +go +with +a +clone +where +you +could +get +another +machine +and +we +can +just +pick +up +your +current +operating +system +and +put +it +on +your +new +computer +okay +or +do +the +upgrade +it +just +sort +of +depends +on +the +base +machine +you +know +which +processor +is +in +that +no +not +just +off +hand +okay +so +if +you +have +a +nice +older +i7 +or +something +you +then +that +machine +may be +worth +just +doing +upgrades +on +it +would +be +cheaper +than +replacing +the +machine +outright +but +what +you +can +do +is +you +can +call +down +to +the +shop +at +304-8300 +and +talk +to +them +and +they +can +get +all +the +specs +from +your +computer +especially +if +you +call +on +monday +or +tuesday +whatever +you're +comfortable +with +and +talk +to +winter +she +does +all +the +machine +builds +and +she +can +tell +you +what +it + +cost +to +either +upgrade +or +replace +that +machine +okay +well +thank +you +i +appreciate +the +call +marv +sure +you +have +yourself +a +wonderful +day +and +let's +go +ahead +and +talk +to +richard +hello +richard +how are +you +hey +mike +good +morning +i've +got +an +icloud +management +storage +question +following +your +advice +a +ways +back +i +finally +did +go +over +to +icloud +storage +seemed +to +work +pretty +well +but +what +i +found +out +is +that +first +of +all +it +seemed +to +lag +data +transfer +to +the +five +i +devices +i +have +by +a +material +time +lag +i'm +talking +about +months +and +then +was +always +incomplete +i +deleted +it +all +and +restarted +it +that +seemed +to +bring +it +back +to +a +fairly +good +level +but +i +see +it +seems +that +as +files +are +added +they +don't +really +go +to +the +cloud +aligned +source +files +on the +computer +with +those +that are +transferred +over to +the +iCloud +drive +file +and +they +still +don't +seem +to +really +work +efficiently +most +of +my +files +are +data +files +about +50 +gigabytes +hundreds +of +thousands +of +files +overall +maybe +about +50 +that +call +us +50,000 +that +call +us +using +the +Fujitsu +scanners +that +i've +had +for +about +10 +years +and +i +! +is +it +necessary +i +guess +the +question +is +is +it +necessary +to +flush +out +or +delete +that +process +entirely +go +to +zero +on +both +sides +and +then +reload +as +it +can +reload +the +drive +again +through +the +computer +generally +no +normally +that +would +not +be +any +type +of +requirement +there +can +be +instances +where +everything +gets +clogged +up +and +it +doesn't +know +how +to +proceed +and +of +course +because +it's +ample +it +doesn't +do +it +now +the +other +so +are +you +seeing +the +files +that +are +on +your +pc +are +those +showing +up +in +icloud +well +that's +the +question +some +of +them +are +some +of +them +aren't +so +if +i +would +for +example +i +have +a +program +to +take +some +old +legacy +files +created +with +pfs +professional +right +convert +them +to +pdf +and +word +files +so +i've +used +that +as +an +aid +to +try +to +get +everything +into +one +place +so +i +can +see +from +all +the +devices +so +let's +say +i +would +send +over +some +word +files +today +that +are +part +of +a +cluster +of +files +in +a +directory +the +answer +is +no +they +don't +just +go +over +they +may +or +may +not +but +do +they +dependably +go +over +rather +uniformly +given +a +time +interval +no +they +don't +i'll +take +the +laptop +the +source +laptop +strip +it +of +anything +that's +operating +leave +it +on +overnight +with +nothing +else +going +on +but +hopefully +the +iCloud +transfer +and +it +still +doesn't +seem +to +help +interesting +i +would +guess +that +there's +probably +a little +more +going +on +there +but +also +iCloud +isn't +necessarily +the +best +solution +for +that +number +of +files +and +smaller +numbers +that +probably +would +work +pretty +well +not +to +mention +that +iCloud +seems +to +have +an +affinity +for +pictures +and +music +files +not +necessarily +anything +else +so +you may +be +looking +at +possibly +a +different +solution +for +that +if +you +want +to +be +able +to +synchronize +large +amounts +of +data +of +various +data +types +to +multiple +machines +so +let me +see if +i can +understand +how +you're +using +this +you're +using +it +effectively +as a +backup +and +a +way +to +translate + + + +for +data +to +your +mobile +devices +correct +in +other +words +i +have +a +large +number +of +files +various +sources +so +i +don't +mean +unique +unique +data +types +but +various +sources +so +let's +say +you +signed +a +20 +page +contract +well +i +would +want +to +slap +that +into +the +scanner +create +a +pdf +version +of +it +and +have +it +on +my +5i +devices +so +that's +an +example +of +the +way +i +would +use +that +if +i +got +a +newsletter +in +from +john +doe +associates +i +would +want +to +slap +that +in +there +same +process +pdf +files +transfer +so +each +file +of +course +with +the +scanner +shows +up +as +a +single +pdf +it +may +have +anywhere +from +one +to +500 +pages +maybe +an +annual +report +from +a +company +so +that's +the +range +of +stuff +that +it +takes +okay +so +i +cloud +drive +like +i +said +has +this +affinity +for +pictures +and +music +because +that's +the +general +usage +for +people +who +are +using +mac +computers +and +ios +devices +you +might +be +wanting +to +look +at +something +like +dropbox +or +one +of +the +services +that +we +provide +we +provide +known +cloud +service +for +that +where +you +can +synchronize +huge +amounts +of +data +and +numbers +of +files +with +any +number +of +devices +is +part + +the +expression +google +services +are +available +for +it +google +drive +would +work +for +that +but +the +problem +with +the +ios +side +is +that +it +doesn't +play +real +nice +with +the +i +devices +so +you're +going to +look at +something +that's +a little +more +neutral +just +because +google +and +apple +don't +necessarily +get +along +all +the +time +so +i +guess +that's +the +rub +i +do +have +a lot +of +pictures +like +everybody +else +does +but +the +pictures +seems +to be +just +fine +probably +seven or +eight +thousand +pictures +i +guess +not +too +many +these +days +but +they +seem +to +be +fine +right +and i +think +it's +just +because +it +preferences +those +particular +types +of +files +where +something +like +dropbox +or +uncle +like +that +does +not +care +at +all +what +type +of +data +it +is +it +just +knows +that +it +is +data +and +it +moves +it +what +security +concerns +should +someone +have +about +dropbox +other +than +other +types +of +dropbox +itself +virtually +none +but +when it +comes +to +tangential +stuff +like +if you get a certain type of infection +that can damage +the source +data +then that would +carry along +to something +like +either +dropbox +or uncle +or anything +like that +right +ok +i figured +that +but +it's +nothing +internal +to +dropbox +per se +it +wouldn't +work +dropbox +has had +their +problems +but +nothing +so +major +that it's +noteworthy +right +the +biggest +problem +that i've +seen +with +dropbox +lately +is +that +this +is +probably +six +months +ago +where +they +had +some +sort +of +a +glitch +where +everybody's +data +reverted +back +like +a +week +and +then +you +had +to +request +a +special +restore +on +their +part +to +put +your +data +back +to +the +way +it +was +but +it's +pretty +few +and +far +not to mention +that i would always +set up something like +shadow copies to go along +with it locally +yeah because the two way +syncing thing can totally +mess you up +so if you turn on +something like +shadow copies +if something goes +terribly wrong +you can just +revert from +a +vss copy +and everything +would be fine +what is shadow copy +it's a built in +feature within +all windows +since +windows 7 +which +allows you to turn +on something where it +takes a snapshot of +all of your files +all at once +and allows you to revert +back to any one of those +snapshots +if there's a problem +so it's like a little micro backup +sort of +providing that the data +you know that the drive +doesn't go bad +it allows you to have snapshots +in time +that you can return to +i do rolling backups on an external drive so +i don't know if that's +yeah well the shadow copies are nice because first of all it's on the local drive and it's instant +that's the + + + + + + + + + + +only secure language +secure language +secure language +secure language +secure language + +secure language +secure language +secure language +secure language +secure language +secure language +secure language + + +secure language +secure language +secure language +secure language +secure language +secure language +secure language + +secure language +secure language +secure language +secure language +secure language +secure language +secure language +command line and does it come up or how do you evoke it? +Yeah, a good place to start is to go to the disk manager +and you can right click on the disk manager and there is a configure shadow copies +section there. And then you can set the schedule +and how much disk space it's allowed to use and that type of stuff. +Gotcha. Alright, appreciate the input. Thank you. +Appreciate the call. Have a good day, Dick. You bet. +Alright, we're going to take a break. When we come back, more of the Computer Guru show +right here on KVOI at 790-2040. +Your Computer Guru, Mike Swanson, is here to help you +tame that beast of a machine. Join the chat right now at gurushow.com +or call in. This is the Computer Guru show on KVOI +The Voice. +Welcome back to the Computer Guru show. +So this time of year, +is CES. Now, I wanted to go this year, but could not. +We need to go at some point. Yeah, it's been a couple of years. +We're going to have to like plan like almost the whole year to go to that. +Yeah, well, if you want to get a hotel, you definitely have to plan right now. +I just want to go back to E3. Yeah, E3 is fun, but I like CES better. +It's just I've never been to CES, though, so I don't know what I'm missing. +Yeah, yeah, you don't know what you're missing. CES, in my opinion, is better. +If we go to CES, though, you can meet the one that you hate the most. +Which one? We can run into Linus from Linus Tech Tips. +Oh, wow. Because he goes to that. +He doesn't want to mess with me. Is there going to be like the Highlander? +Yeah. You're going to pull out a katana? +There can be only one. +You look like you're going to say something. Are you going to say something, Kent? +No, you're just, you're just... He's always poised just in case you blame him for something. +Right. He's like, what'd you do, Kent? Contemplating. +What'd you do? You look guilty. +All right, so let's talk about CES stuff, and we're going to use the Engadget winners list for this particular... +So this is the Consumer Electronics Show, for those of you who are not familiar with CES. +Yeah, Consumer Electronics Showcase, which is mostly just a technology... +It's an excuse to go to Vegas. And beyond that, it's all the upcoming technology. +All the new toys you're going to see over the next, like, three to four years. +Yeah, and some of them are out now. +Yeah, occasionally there's stuff that's going to be out right now, but a lot of times the big manufacturers will have something there that's just crazy bleeding edge. +Right. Let me just go ahead and just drop a note. +I'm going to go ahead and just drop a note to the CES organizers. +If you could just make it... First of all, CES is monstrous. +Yeah. +Right? It takes up all of the Las Vegas Convention Center, and then some. +It's a gigantic walk. +There's essentially no way to see it all yourself. +It's a four-day event if you want to see it. +And that's if you don't really stop and look at anything. +So, I mean, it's a monstrous event. +Yeah, you're going to be walking, like, 30 miles a day. +And, yeah, you'll get your steps in for sure. +But if they could make, like, if they could cut the cell phone case manufacturers down to, I don't know, maybe a third of the event, that would be lovely. +I want to see how that's an electronic anyway, though. +Yeah, but it's also accessories for your electronics. +Not to mention they have all kinds of stuff there that's not necessarily electronic, but it's involved in the technology somehow. +Right. +And there's a lot to see. +And last year, CES was all VR, right? +It was just huge amounts of virtual reality and televisions. +Yeah. +There's always a lot of televisions at CES. +You know, those two things are directly related, and there's only probably another 10 to 15 years while you still will need to have a TV at all. +We're going to talk about that in a minute. +Let's fit Greg in here just so that we can get that done. +Same subject. +Hello, Greg. +How are you? +Yeah, same subject as you. +I'm doing good. +Thanks, Mike. +On the subject of virtual reality, I'm reading some exciting news about developments other than gaming. +So the woman is having contractions. +She's in the hospital. +She's contemplating getting the epidural, which is fraught with complications. +And the doctor says, well, here, put these on. +Gives her the goggles. +And her attention then is changed from the pain from the contractions. +To the waterfall and the ocean and whatever you see with those goggles. +And hours went by, but it only seemed like minutes. +She gave birth without the use of drugs. +And I'm thinking about when Palmer Luckey, there in Southern California, you know, spending all his time with his computers and games and whatever. +And the neighbor is saying, well, nothing will ever come of that boy. +And, of course, he sold his development in virtual reality to Zuckerberg for $2 billion. +Right. +So, but they're using it to treat, like, people who have fears of driving over the Golden Gate Bridge, you know, over a body of water. +Put on those goggles and they can work their way through it. +They're using them for treating alcoholism, depression. +Paralysis as well. +Pardon me? +Paralysis as well. +There's actually been some interesting developments in using VR as well as machines to manually stimulate the limbs. +And then they see their limbs moving in VR. +And they've reconnected neural pathways. +And there's some people who have been able to regain function. +Amazing. +And as you were saying a minute ago, so it was a $14 billion industry the last couple of years. +They're predicting $140 billion. +I think anytime somebody tells you that nothing's ever going to come of that, you should look harder into it because that seems to be the litmus test. +Yeah. +All right, guys. +Take care. +Appreciate the call. +Yeah, and they've been using VR for, like, pain mitigation and stuff like that for a while now. +They've been experimenting with it. +Yeah. +So, I think VR is biggest. +I guess the future is gaming. +It's AR that's going to be everywhere else. +Yeah, and I think that those two things converge at what really is, in my opinion, where this is going, which is the computer brain interface. +Yeah, for sure. +All right. +So, instead of having goggles strapped onto your head or, you know, some type of contact lenses or basically hardware, all right, that you will be looking at some type of, you know, cyborg-like implanted hardware to handle that interface. +And everything is going to be in VR. +OK. + + + +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. + + +OK. +OK. +OK. +And, you know, my complaint has always been with the VR stuff is that there's a lot of muddying of the waters between the technologies that are coming out. +And just like the caller said, right, to me, VR uses in business, right, are way more important to me than the gaming side of it. +And that's the same as somebody who uses a computer all day as my job. +I cannot wait until I can put on a headset and virtualize 12 monitors so that I don't have to actually have them. +Right, and have enough resolution where you can actually see everything. +Right, and I'm sure as somebody who pays the electricity bill for the work that I do, you are also happy about that. +Yeah, I could be okay with that. +Yeah. +Now, speaking of headsets that have better resolution, so one of the winners of CES this year is the HTC Vive Pro. +And this is like their next-gen headset, I take it. +Yeah, this is the one that they're releasing, it turns out, this year. +And so it adds some things that are nice, like 3D audio. +Which is... +The Rift already had that one covered. +Right, but for the HTC side, that's new. +Yeah. +It's more comfortable to wear, they said. +It has dual front-facing cameras, which will allow you to start doing AR stuff. +Yeah, that, and they're going to do, I almost guarantee they'll be doing inside-out tracking by the end of the year, even if it's just experimental. +So, for people who don't know. +So, HTC uses what are called lighthouses, which are these things that you set up in your room, and they detect your headset, and then they interact with it. +So that it knows where you are in the virtual space. +It's really cumbersome, though. +I mean, all the setup that's involved with VR right now is the cumbersome aspect. +Inside-out tracking is the idea that your headset is the one that's tracking everything in the room. +So that would mean no more lighthouses at all. +So that's much more like how the Microsoft version of that is doing it. +Because it's actually scanning the room that it sees. +And then building a map, as far as... +Yeah, you have to walk around your house, and it scans your entire house. +Yeah. +Yeah. + + + + + + + + + + + + + + + + + +Every time you use it. +Right. +Okay. +And then it also is offering dual mics and a resolution of 2880x1600. +That's substantially better than what you get out of the box with either of the main headsets right now. +Right. +So you're looking at 615 pixels per inch, which is considerably better, because you're about the 340? +Something like that. +380 for the other headsets. +So you're almost twice the resolution. +So right now, I mean, since most people have not even tried this stuff yet... +There is still what's called a screen door effect, which means that you can see the pixels if you concentrate on it in VR. +And some people are never even able to overcome that, and they just hate it because they see this stuff. +As the resolution increases, that screen door effect is going to drop, and eventually it's going to be gone completely. +Right. +The pixels will be so small you won't be able to... +So when we get to like 8K per eye, which is future for sure. +Right. +8K per eye, it's indistinguishable, I feel like, at that point. +You'd have to have some eagle vision to pick out pixels there. +So, yeah, it's good to see that. +I mean, resolution should be the number one thing that they're trying to improve right now. +Yeah, and overall, the cumbersomeness of it, like the weight and... +Yeah, I mean, I'll tell you that the Oculus is not too bad. +Like, it definitely feels awkward the first time you use it, but eventually you forget it's there. +They also do this really interesting thing that I've noticed with the tracking to where... +I don't know, it's hard to explain, but like, you know how you can close your eyes and reach up and touch your nose and you know exactly where it is? +Right. +It changes your... + +It changes your perspective on where your eyes are, and so you don't slam your hand into the headset. +Well, that's interesting. +Yeah, so when you go to pick up your hand and touch your eye, you touch the back, you know, the outside of the case, and you don't just slam your hand into it. +That would just be... +That would be beautiful YouTube, just to watch people slamming their hands into the... +You can definitely watch people punching walls in TVs. +Yeah. +The first night that I had mine, I punched my TV and I almost broke it. +You gotta pay attention to the boundaries. +Yeah. +Yeah, I guess you do. +And so we're going to do one more before we go to another break here. +And I'm kind of skipping towards the end here. +They always do something that they call the best of the best. +And often enough, it is not technology as most people would see it. +You know, like they wouldn't think of it this way. +But this year, the winner is Toyota. +And they are developing something called the e-palette. +And it's effectively a van. +An autonomous vehicle that's the shape of a large van. +It's a rectangle on wheels. +And you can do whatever you want with the inside, right? +You want to build a food truck? +You want to build a little RV or a mobile office or just delivery vehicles? +It's one of these things that's such a blank canvas. +So the name kind of speaks to me like they're trying to... +They're really telling you to do whatever you want with it. +So it really is... +Is it modular? +Or like what's... +The inside is just empty? +Yeah, it's totally empty. +You can just... +It's just a cube or a rectangular cube. +That's actually really cool. +On wheels. +That's... +I mean, especially with the autonomous vehicle stuff built in because... +I mean, yeah, a mobile office would be great for us. +Yeah. +Or, you know, if you wanted to... +If you're one of these... +Like, we have food trucks all around town, right? +Yeah, a nice high-tech food truck can go anywhere. +So you can just sit back there and make your food and it drives you to the next location? +Right, just the space savings. +And, you know, +having the flexibility to do whatever you want with both the interior and the exterior is kind of cool. +That is pretty cool. +So we'll have to post a link to the Engadget stuff. +Let's go ahead and take a quick break. +And then we're going to come back and answer some phone calls and do a little bit more CES before the end of the show. +This is the Computer Guru Show on KVOI. +Give us a call, 790-2040. +We'll be right back. +We'll be right back. +Welcome back to the Computer Guru Show. +Give us a call, 790-2040, if you'd like to be a part of the show. +Let's talk to Tom. +Hello, Tom. +How are you? +Good. +Hi. +Thanks for taking my call. +Two quick questions. +One is storage. +I have Windows 10. +Okay. +And running the automatic update, it gave me an error. +It says Windows needs more space. +And it says it needs 1.14 gigabytes more space. +And then I look at my hard drive and it says I have 3.82 gigabytes. +And I'm like, what? + +Do you have more than one partition on this? +Just what came with the system. +It's, I think, a D, but it's for HP recovery. +Okay. +So it's telling you you have three gigabytes free and... +On the C drive. +On the C drive. +On that partition. +Interesting. +It shouldn't be doing that. +Is there... +I mean, do you have a bunch of stuff in the recycle bin or anything? +No. +It's empty. +Interesting. +Is it just close to the limits where it needs maybe two gigabytes? + + + + + + + + + + + + +Four gigabytes? +No. +I mean, it shouldn't be doing that at all. +I mean... +So how much do you have free, actually? +Well, I'm pulling up the Explorer window. +So on the C drive, that partition, it says 3.82 out of 919 gigabytes. +It's a terabyte drive. +And then on the HP recovery, the D drive that came with the system, it's 1.35 free out of +11.1 gigabytes. +So I think that's for the operating system. +Right. +I think you're probably running up against something where you're going to have to + + + + + + + +be more secure. +OK. +OK. + + +OK. +OK. +OK. +OK. +OK. + + +OK. +OK. +OK. + +OK. +OK. +OK. + + +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +The majority of that problem is that you're out of space. +Hard disk space? +Mm-hmm. +On streaming video? +Yeah, it's got to write to the disk before it can show it to you. +Saving the temporary files as you stream it, that's how it works. +Wow. +Because the other ones like Pac-12 Network or Fox Sports, it doesn't do that. +They're probably using a different player. +Or even just smaller size. +Right, and smaller chunks, something along those lines. +You're out of space, man. +You've got to fix that first before you do anything else. +Last point to that is it actually happens on Xbox, which is Windows, +but it doesn't happen on my iPhone. +Interesting. +Well, that part I can't help you with, at least not off the top of my head. +But the computer storage issue, you should resolve that. +Either upgrade to a much larger drive and then clone all your data over, +or add another drive and move stuff to a different drive. +Got it. +Thank you very much. +No problem. +Thanks for the call, Tom. +So back to the video. +Let's get into the CES stuff. +I'm seeing something here that I kind of want to mention because it's super cool. +What's that? +This is out of the reach of almost everybody. +But it's a TV that Samsung calls the wall. +Did you see this? +I did not. +It's a 146-inch super HD display that they're advertising as the first modular TV +in that you can split up the single panel to work as multiple displays. +So, I mean, it doesn't physically break apart, but you can divide the areas of the screen. +And they said in the demo that they saw here, +Samsung had it configured to where there was like a smaller TV in the center, +and the border was set to blend in with the wall behind it. +Huh. +So that's interesting. +But why? +I know. +I don't know why you would do that, but... +It reminds me of the Back to the Future, you know, when Marty has his... +Right. +Divided the thing up, or in Idiocracy. +Yeah. +Right. +Well, you know, as somebody who I have been using multiple displays on my computer for, like, +the whole time now, it's weird to me to just sit on my couch and just watch something. +Right. +Because the majority of the time that I'm watching something, I'm working or playing a video game. +So this whole, like, single-screen concept is weird to me now. +Yeah. +Yeah, and the OLED stuff now with these TVs is amazing. +Yeah, and I mean... +Because they're super thin. +If you have anything over, like, a 70-inch TV, +I would definitely want, like, some picture-in-picture mode to be able to do something else. +Yeah. +Yeah. +Yeah. +Personally, I mean... +I don't really watch TV. +Yeah. +Right. +So, I mean, any of my media viewing is generally happening on my computer at home. +And I have five monitors. +Sorry. +So I can just dedicate... +One of them's actually a TV. +Are you like... +Who was it in Batman where he's watching, like, all the cell phone feeds at once? +But, you know, I try to break things up so that it gives me... +I don't know. +It's sort of like you when you organize your desk. +Yeah. +It's the same thing when I'm organizing what's on what monitor. +Yeah. +I do the same thing. +I mean, like, when I'm working, I'll have... +My monitors are subdivided into the areas that I need. +And even that's... +There's a joke when you use multiple displays that you always need one more. +Yeah. +There's no such thing as having enough monitors. +Well, until you run out of room. +Yeah. +Right. +Now, we've got a client that has 12 monitors on one computer. +And then he has another computer that runs another eight right now. +That's crazy. +Right. +That's a lot of work for me. +And they're right next to each other. +Right. + +Both keyboards are on the same desk. +You know, there's this great number of relatively small monitors all over the place. +Now, I understand what he's trying to do. +He's a day trader, whatever. +Yeah. +I was going to say, there's only really two things you can be using that for. +He wants graphs on all the things. +But still, at some point, it's just like, how do you pay attention to all that? +You know, that reminds me. +I just... +Recently, I set up my computer monitors at work to look at all the cryptocurrencies. +And I was like... +The same thing. +And I called Howard, and I was like, I'm basically Gordon Gekko now. +Basically. +Basically. +Yeah. +We're basically the same person. +Let's go and talk to Robert. +Hello, Robert. +How are you? +Hey, man. +Hey. +On the last call, I'm sure it's probably a storage issue. +But I had a buffering issue. +And I'm a photographer, and I upload to Dropbox. +Right. +And I had buffering issues. +It was taking 25 minutes to upload to Dropbox. +So I checked my speed. +Like one picture? +Or are we talking like, you know, large amounts? +No, we're talking about 40. +What's a... +I checked my speed, and I wasn't getting the speed I was paying for. +I called Cox Cable. +They were very sorry. +That happens on occasion. +I'm surprised you got them to say they were sorry. +They were very sorry. +Yeah? +Did they... +They gave me two months of the difference between... +Would I go from 5 to 15 or from 15 to 50? +What's that? +Oh, you went from 15 to 50? +On the download, did I go from 5 to 15 or 15 to 50? +You didn't go 15 to 50 for uploads. +But for... +No, I'm talking about downloads. +Downloads, you probably went to 50. +Yeah. +So they got me up to 50. +Everything working great. +Well, that's good. +So I would advise... +Well, you know how much I hate Comcast and Cox. +With a passion. +As much as you and Rob. +But I would advise people to test their speed, +because I live in an apartment complex, +and that Cox bucket truck is out there every 10 days. +Yeah, yeah. +I'm sorry to hear that. +Now, when it comes to this, though, +when it comes to Cox and Comcast, +I find that most people are not getting the speed that they are paying for. +And then, additionally, +most people are willing to pay, +way too much. +Right? +Like, as an example, +if you have a 50 meg plan for what you're doing, +that's about right. +Right? +That's about what I'd probably tell you to do. +But I see people out there with these 300 meg plans, +and all they have is an iPad on their network, +and the only reason they got that is because, +eh, that website took a little too long to load. +That is a gigantic waste of money. +And beyond that, +or you see people that go, +well, you know, +I went out and got this 500 megabit plan that costs a lot of money per month, +and it turns out the only problem that they really had was they had a nine year old router. +Right? +So there are, +or they have a very slow computer. +Maybe they're out of this space, +right? +And they're blaming the network instead of the computer. +So there's, +there, +it's not as simple as the cable companies would like to have you believe, +which is, +hey, +just pay for more speed. +You get more speed. +Well, +you know, +it's also a vanity thing. +You, +you gotta have the highest possible speed. +You can keep up with the Jones is all you want, +but I'm telling you that it's a waste of money, +but I, +I, +I, +I suppose you could check that without get off your motor and run a cat court and see if there's any difference there. +Right? +So they want to make you do a direct connection test and that's an, +it's a very valid test. +Sure. +Go ahead and do that. +Plug it in. +See if you see if your wifi is just slow. +I've always been on the cat court and my wifi is streaming Netflix, +just, +just fine. +Yeah. +If you're uploading things, +you really shouldn't be doing that over wifi. +Right. +And, +and by the way, +if you're doing large uploads as though you are a photographer, +right? +Cause you say you are, +right. +And, +uh, +yeah. +And 40, +you know, +five megabyte photos at a time. +Right. +So if you're doing that type of thing, +I will tell you right now that it's much better to look at the business accounts for that, +mainly because they have a higher upload throughput. +So if you're going to be doing lots of, +uh, +uploading to Dropbox, +cause most of it's asynchronous. +Think about it this way is, +uh, +you know, +you're getting that 50 meg down, +but you're only getting five. +Yeah. +I've noticed that they're selling plans like that. +Now they're like, +you get a gig a bit down, +but one meg up, +right? +What is this? +And that's how they're, +that's how they're dedicating that bandwidth or, +or splitting it apart enough where they can pull that off on the network. +Otherwise they have to upgrade all their stuff and Lord knows, +you're not going to do that. +So, +um, +the, +the best way to, +to get relatively decent upload speeds, +have a business account and you don't have to, +I don't have any data caps, +but your bill is like way more expensive. +Bill is a little bit more expensive. +Yeah. +But anyway, +thanks for the call. +Robert, +I gotta take a ticket, +take a break here. +So they were cheaters. +People should check. +Yeah, +I agree a lot. +Yeah. +Everyone check your do a speed test. +Cause you're not getting what you pay for. +Yeah, +you're not. +Unless they have one of those ones that do guaranteed speeds. +Well, +sir, +can you do that test at three in the morning? +All right, +we'll be right back after this. +I'll see it. +All good people. +Each day. +So satisfied. +I'm on my way. +Computer troubles need some advice. +Call in now. +Mike Swanson. +We'll be back after these messages. +The computer guru show AM 10 30 KBO. +Why the voice? +I'm sorry. + + + + + + + + + + + + + + + + + +Mike Swanson. +Your computer guru is just a click away. +Listen and watch a guru show.com. +This is the computer guru show. +Welcome back to the computer guru show. +We're talking about more of the interesting stuff that is, +uh, +apparently over CES. +Now, +a lot of, +uh, +you know, +cities are trying to go smart. +Cities these days, +they have smart infrastructure and smart city. +It's not usually a phrase you hear. +Yeah, +it's, +it's, +it's an oxymoron. +But, +um, +the, +the idea of adding the infrastructure for things like, +you know, +municipal, +municipal wifi or an IOT, +uh, +sort of interaction with your, +as an example, +emergency vehicles now have, +uh, +transponders that pick up on, +on municipal wifi. +Tucson has municipal wifi for its own city services. +Right. +Um, +now, + + + + + +it doesn't offer the citywide, +uh, +wifi that you would hope for. +For the public. +Yeah. +That would be out there like Colorado does. +But, +um, +there, +a lot of that is because where are you going to put it? +Right. +Are you going to spend a bunch of money to put up new posts and, +you know, +the places to hide all of this, +this, +uh, +technology? +Well, +there is a, +a company called Wifiber that has figured out a, +a very interesting way to do, + + + + + + + +sort of a bolt on upgrade. +And what they're suggesting is that you, +there's street lights everywhere, +right? +Well, +upgrade the street lights. +And in these street lights, +inside the, +the body of the street light, +you have LED lights that are, +uh, +you know, +cost efficient and all of that. +But there's also security cameras and, +uh, +wifi hubs and, +So are you talking about replacing the entire pole or just, +Just the head. +So they can just pop the, +the light fixture out of the pole? +Right. +That's pretty cool. +Yeah. +And, +and, +and, +and it even offers some interesting stuff. +Like if you can get the everything integrated, +um, +you could have, +uh, +light color changes, +uh, +or, +uh, +strobing effects to guide emergency vehicles to wherever the emergency is. +Well, +yeah. +Cause so many street lights are still like incandescent bulbs. +Right. +So they're huge to emit that amount of light. +And they're not efficient. +Right. +By any means. +Whereas the equivalent LED could be like a fifth the size of that or smaller, +giving you, +I guess a bunch of room for other electronics if you want to throw them in there. +Yeah. +So the, + + + + + + + +the only part of the larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger +larger larger larger larger larger larger larger larger larger larger larger larger + + +larger larger larger larger larger larger larger larger larger larger larger larger larger + +larger larger larger larger larger larger larger larger larger larger larger larger + +larger larger larger larger larger larger larger larger larger larger larger +Watch traffic, all right, or anything that's nearby a major thoroughfare. +I mean, it'd be kind of nice if you're like, if you get mugged or something and the city just has video of that. +Yeah, that helps find the dude, right? +That would be nice. +Not being mugged, of course, but being able to figure out who was the perpetrator. +And I imagine that would aid in the, I mean, they could just track people who are running from the police pretty easily. +Yeah. +Now, you see these types of things in Europe all the time, right? +Like, you know, CCTV is a big thing in, like, London. +And people say, well, there's just eyes everywhere. +And that may be true. +There's actually some interesting videos of where you can see the CCTV operators noticing a crime and directing police to go deal with it or something along those lines. +But at the same time, for all of the, you know, omnipotence of this particular technology, +there's certainly a lot of blinders. +There's blind spots. +Yeah. +And people know where to go to not be seen. +You know, the criminals figure that stuff out pretty quickly. +Pretty quickly. +It's like that movie Eagle Eye. +Have you seen that? +Yeah. +Yeah. +And also Minority Report, to a certain extent, minus the psychics. +By the way, that was a terrible movie, Eagle Eye. +But it was entertaining. +Yeah. +I mean, interesting thought concept. +Not a very good movie. +But it's interesting in its own right. +Yeah. +And I mean, these types of upgrades, while this specific one, who knows if they're actually going to use it, +but upgrading infrastructure in a cost-effective way is obviously the name of the game. +And I'm sure we're going to see more stuff like that in the future. +It's cool to see. +Now, apparently Lenovo is cleaning up over at CES. +Oh, they're announcing a lot of new stuff? +Well, they won two categories. +One for best phone or mobile device and best PC or tablet. +That's weird to hear Lenovo making mobile devices. +Yeah. +And it looks a lot like the Microsoft Surface. +Oh, yeah. +I remember hearing about that. +So it looks remarkably similar to the Microsoft Surface with a very similar stand and keyboard setup. +But it's Snapdragon powered. +So it's got the same type of processor that's in your phone. +It allows you to put in the SIM card and have mobile data to it. +And apparently it's fast enough to run Windows 10 on it. +You know, I despise Surface tablets, so I hope that this is better. +Yeah. +I mean, Surface tablets aren't bad. +The new ones anyway. +Yeah. +I haven't used the newest one. +But every time I've used one in the past, I've been like, oh, this is a good one. +I've used it in the past. +I'm just like, this is horrible. +This is a horrible experience. +Think about it this way. +A laptop that can go literally 20 hours per charge. +Yeah. +See, like I had a Chromebook and that was like the main feature. +So, I mean, Lenovo does good work though. +And the secondary Lenovo, just before we run out of time here, the secondary Lenovo product is their Lenovo ThinkPad X1 Carbon. +Now, the X1s have been around for a little while. +They've gone through a couple of revisions because of some pretty significant changes. + +They've gone through some significant problems that they had. +Also, the X1s are also known as the Yogas when they were in the transformable version. +But this one is not. +It's just a laptop. +And it is very, very nice. +Yeah. +We made some money on those Yogas when they first came out. +Yeah. +Replacing those hinges on those things. +But it's got, you know, they've upgraded the cameras. +They even added privacy control for the camera as in a shutter that you can close. +Yeah. +You know, you can tell me that the webcam is off all you want, but I want a physical thing that I can cover it with. +Yeah. +And it's got Alexa support built into it with that one. +So, they're teaming up with Amazon if you want that type of thing. +It's got good microphones on it, of course, because of the Alexa integration. +And it's got great battery life, great heat dissipation, and it's what we would consider an ultrabook. +So, we're talking probably like over $1,000 range? +You're looking at just about the $1,000 range. +Right. +So, it's a lot of money for these particular models. +Anyway, thanks for listening to today's episode of the Computer Guru Show. +If you would need a new website, you need your management for your business, one of your technology needs, +give us a call down at the shop at 304-8300. +You can also visit us at 510 East Fort Lowell, 64 North Harrison, or, of course, always visit our website azcomputerguru.com. +Thanks to Perfection Auto Works for sponsoring. +We'll see you next week. + + +Have a great day. + + + + + + + + + + +Have a great day. + + + + +Have a great day. + + + + + + + + + +Have a great day. +Thank you. diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.json b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.json new file mode 100644 index 0000000..de4214d --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.json @@ -0,0 +1,110644 @@ +{ + "language": "en", + "language_probability": 1.0, + "duration": 5300.976, + "segments": [ + { + "id": 0, + "text": "From my heart and from my hand, why don't people understand my intention?", + "start": 0.0, + "end": 5.06, + "words": [ + { + "word": " From", + "start": 0.0, + "end": 0.8, + "probability": 0.7568359375 + }, + { + "word": " my", + "start": 0.8, + "end": 1.12, + "probability": 0.9970703125 + }, + { + "word": " heart", + "start": 1.12, + "end": 1.44, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1.44, + "end": 1.6, + "probability": 0.9970703125 + }, + { + "word": " from", + "start": 1.6, + "end": 1.84, + "probability": 1.0 + }, + { + "word": " my", + "start": 1.84, + "end": 2.1, + "probability": 1.0 + }, + { + "word": " hand,", + "start": 2.1, + "end": 2.42, + "probability": 0.994140625 + }, + { + "word": " why", + "start": 2.5, + "end": 2.7, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2.7, + "end": 3.06, + "probability": 1.0 + }, + { + "word": " people", + "start": 3.06, + "end": 3.36, + "probability": 1.0 + }, + { + "word": " understand", + "start": 3.36, + "end": 3.92, + "probability": 1.0 + }, + { + "word": " my", + "start": 3.92, + "end": 4.62, + "probability": 1.0 + }, + { + "word": " intention?", + "start": 4.62, + "end": 5.06, + "probability": 0.86083984375 + } + ] + }, + { + "id": 1, + "text": "Computer running slow?", + "start": 5.7, + "end": 6.9, + "words": [ + { + "word": " Computer", + "start": 5.7, + "end": 6.3, + "probability": 0.99755859375 + }, + { + "word": " running", + "start": 6.3, + "end": 6.54, + "probability": 1.0 + }, + { + "word": " slow?", + "start": 6.54, + "end": 6.9, + "probability": 1.0 + } + ] + }, + { + "id": 2, + "text": "Avoiding.", + "start": 7.08, + "end": 7.38, + "words": [ + { + "word": " Avoiding.", + "start": 7.08, + "end": 7.38, + "probability": 0.958984375 + } + ] + }, + { + "id": 3, + "text": "Caught a virus?", + "start": 7.62, + "end": 8.36, + "words": [ + { + "word": " Caught", + "start": 7.62, + "end": 8.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 8.0, + "end": 8.04, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 8.04, + "end": 8.36, + "probability": 1.0 + } + ] + }, + { + "id": 4, + "text": "No!", + "start": 8.66, + "end": 9.08, + "words": [ + { + "word": " No!", + "start": 8.66, + "end": 9.08, + "probability": 0.414306640625 + } + ] + }, + { + "id": 5, + "text": "When?", + "start": 9.8, + "end": 10.1, + "words": [ + { + "word": " When?", + "start": 9.8, + "end": 10.1, + "probability": 0.429931640625 + } + ] + }, + { + "id": 6, + "text": "Does your computer seem to have a life of its own?", + "start": 10.88, + "end": 13.86, + "words": [ + { + "word": " Does", + "start": 10.66, + "end": 10.96, + "probability": 0.95849609375 + }, + { + "word": " your", + "start": 10.96, + "end": 11.46, + "probability": 1.0 + }, + { + "word": " computer", + "start": 11.46, + "end": 11.94, + "probability": 1.0 + }, + { + "word": " seem", + "start": 11.94, + "end": 12.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 12.34, + "end": 12.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 12.54, + "end": 12.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 12.78, + "end": 12.94, + "probability": 1.0 + }, + { + "word": " life", + "start": 12.94, + "end": 13.26, + "probability": 1.0 + }, + { + "word": " of", + "start": 13.26, + "end": 13.44, + "probability": 1.0 + }, + { + "word": " its", + "start": 13.44, + "end": 13.6, + "probability": 0.99853515625 + }, + { + "word": " own?", + "start": 13.6, + "end": 13.86, + "probability": 1.0 + } + ] + }, + { + "id": 7, + "text": "Malfunction.", + "start": 14.2, + "end": 14.8, + "words": [ + { + "word": " Malfunction.", + "start": 14.2, + "end": 14.8, + "probability": 0.9482421875 + } + ] + }, + { + "id": 8, + "text": "Need input.", + "start": 15.16, + "end": 16.24, + "words": [ + { + "word": " Need", + "start": 15.16, + "end": 15.76, + "probability": 0.88232421875 + }, + { + "word": " input.", + "start": 15.76, + "end": 16.24, + "probability": 0.99560546875 + } + ] + }, + { + "id": 9, + "text": "The Computer Guru is here.", + "start": 16.64, + "end": 18.28, + "words": [ + { + "word": " The", + "start": 16.64, + "end": 16.8, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 16.8, + "end": 17.1, + "probability": 0.7705078125 + }, + { + "word": " Guru", + "start": 17.1, + "end": 17.52, + "probability": 1.0 + }, + { + "word": " is", + "start": 17.52, + "end": 17.96, + "probability": 1.0 + }, + { + "word": " here.", + "start": 17.96, + "end": 18.28, + "probability": 1.0 + } + ] + }, + { + "id": 10, + "text": "Thank God you're here!", + "start": 18.44, + "end": 19.34, + "words": [ + { + "word": " Thank", + "start": 18.44, + "end": 18.58, + "probability": 0.7470703125 + }, + { + "word": " God", + "start": 18.58, + "end": 18.92, + "probability": 0.99560546875 + }, + { + "word": " you're", + "start": 18.92, + "end": 19.22, + "probability": 0.99755859375 + }, + { + "word": " here!", + "start": 19.22, + "end": 19.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 11, + "text": "Call in now.", + "start": 19.8, + "end": 20.6, + "words": [ + { + "word": " Call", + "start": 19.8, + "end": 20.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 20.02, + "end": 20.28, + "probability": 0.99951171875 + }, + { + "word": " now.", + "start": 20.28, + "end": 20.6, + "probability": 1.0 + } + ] + }, + { + "id": 12, + "text": "Now, it's Mike Swanson, your Computer Guru.", + "start": 20.92, + "end": 23.82, + "words": [ + { + "word": " Now,", + "start": 20.92, + "end": 21.36, + "probability": 1.0 + }, + { + "word": " it's", + "start": 21.38, + "end": 21.7, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 21.7, + "end": 21.92, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 21.92, + "end": 22.3, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 22.58, + "end": 22.82, + "probability": 0.99658203125 + }, + { + "word": " Computer", + "start": 22.82, + "end": 23.32, + "probability": 0.99755859375 + }, + { + "word": " Guru.", + "start": 23.32, + "end": 23.82, + "probability": 1.0 + } + ] + }, + { + "id": 13, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 24.9, + "end": 26.8, + "words": [ + { + "word": " Hello", + "start": 24.9, + "end": 25.5, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 25.5, + "end": 25.66, + "probability": 0.94921875 + }, + { + "word": " welcome", + "start": 25.66, + "end": 25.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 25.88, + "end": 26.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 26.1, + "end": 26.18, + "probability": 0.88720703125 + }, + { + "word": " Computer", + "start": 26.18, + "end": 26.38, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 26.38, + "end": 26.62, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 26.62, + "end": 26.8, + "probability": 0.94140625 + } + ] + }, + { + "id": 14, + "text": "My name's Mike, here to deal with your technology needs and treat you like a person in the process.", + "start": 26.8, + "end": 30.6, + "words": [ + { + "word": " My", + "start": 26.8, + "end": 26.92, + "probability": 0.14404296875 + }, + { + "word": " name's", + "start": 26.92, + "end": 27.1, + "probability": 0.810546875 + }, + { + "word": " Mike,", + "start": 27.1, + "end": 27.28, + "probability": 0.9580078125 + }, + { + "word": " here", + "start": 27.36, + "end": 27.44, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 27.44, + "end": 27.54, + "probability": 0.99951171875 + }, + { + "word": " deal", + "start": 27.54, + "end": 27.7, + "probability": 0.99658203125 + }, + { + "word": " with", + "start": 27.7, + "end": 27.8, + "probability": 1.0 + }, + { + "word": " your", + "start": 27.8, + "end": 27.88, + "probability": 0.99853515625 + }, + { + "word": " technology", + "start": 27.88, + "end": 28.14, + "probability": 0.998046875 + }, + { + "word": " needs", + "start": 28.14, + "end": 28.5, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 28.5, + "end": 28.84, + "probability": 0.98046875 + }, + { + "word": " treat", + "start": 28.84, + "end": 29.16, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 29.16, + "end": 29.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 29.36, + "end": 29.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 29.52, + "end": 29.68, + "probability": 0.99951171875 + }, + { + "word": " person", + "start": 29.68, + "end": 29.98, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 29.98, + "end": 30.14, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 30.14, + "end": 30.3, + "probability": 1.0 + }, + { + "word": " process.", + "start": 30.3, + "end": 30.6, + "probability": 1.0 + } + ] + }, + { + "id": 15, + "text": "Give us a call if you'd like to be part of the show.", + "start": 30.7, + "end": 31.96, + "words": [ + { + "word": " Give", + "start": 30.7, + "end": 30.82, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 30.82, + "end": 30.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 30.94, + "end": 30.98, + "probability": 1.0 + }, + { + "word": " call", + "start": 30.98, + "end": 31.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 31.1, + "end": 31.22, + "probability": 0.99609375 + }, + { + "word": " you'd", + "start": 31.22, + "end": 31.34, + "probability": 1.0 + }, + { + "word": " like", + "start": 31.34, + "end": 31.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 31.42, + "end": 31.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 31.5, + "end": 31.54, + "probability": 1.0 + }, + { + "word": " part", + "start": 31.54, + "end": 31.68, + "probability": 0.94384765625 + }, + { + "word": " of", + "start": 31.68, + "end": 31.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 31.78, + "end": 31.8, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 31.8, + "end": 31.96, + "probability": 1.0 + } + ] + }, + { + "id": 16, + "text": "It's 520-790-2040.", + "start": 32.04, + "end": 34.36, + "words": [ + { + "word": " It's", + "start": 32.04, + "end": 32.12, + "probability": 0.96875 + }, + { + "word": " 520", + "start": 32.12, + "end": 32.54, + "probability": 0.9931640625 + }, + { + "word": "-790", + "start": 32.54, + "end": 33.36, + "probability": 0.99755859375 + }, + { + "word": "-2040.", + "start": 33.36, + "end": 34.36, + "probability": 1.0 + } + ] + }, + { + "id": 17, + "text": "Hello, Kent.", + "start": 35.6, + "end": 36.3, + "words": [ + { + "word": " Hello,", + "start": 35.6, + "end": 35.92, + "probability": 0.9990234375 + }, + { + "word": " Kent.", + "start": 36.04, + "end": 36.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 18, + "text": "Good morning, Mr. Guru.", + "start": 37.6, + "end": 38.68, + "words": [ + { + "word": " Good", + "start": 37.6, + "end": 37.92, + "probability": 0.99755859375 + }, + { + "word": " morning,", + "start": 37.92, + "end": 38.24, + "probability": 1.0 + }, + { + "word": " Mr.", + "start": 38.28, + "end": 38.44, + "probability": 1.0 + }, + { + "word": " Guru.", + "start": 38.52, + "end": 38.68, + "probability": 0.994140625 + } + ] + }, + { + "id": 19, + "text": "We've got Kent here.", + "start": 38.96, + "end": 39.9, + "words": [ + { + "word": " We've", + "start": 38.96, + "end": 39.28, + "probability": 0.9794921875 + }, + { + "word": " got", + "start": 39.28, + "end": 39.4, + "probability": 1.0 + }, + { + "word": " Kent", + "start": 39.4, + "end": 39.68, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 39.68, + "end": 39.9, + "probability": 1.0 + } + ] + }, + { + "id": 20, + "text": "We've got Tara.", + "start": 40.04, + "end": 41.0, + "words": [ + { + "word": " We've", + "start": 40.04, + "end": 40.32, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 40.32, + "end": 40.62, + "probability": 1.0 + }, + { + "word": " Tara.", + "start": 40.62, + "end": 41.0, + "probability": 0.99853515625 + } + ] + }, + { + "id": 21, + "text": "Hello.", + "start": 41.4, + "end": 41.72, + "words": [ + { + "word": " Hello.", + "start": 41.4, + "end": 41.72, + "probability": 0.9482421875 + } + ] + }, + { + "id": 22, + "text": "We've got a guest who we'll get to in a minute.", + "start": 42.02, + "end": 43.16, + "words": [ + { + "word": " We've", + "start": 42.02, + "end": 42.08, + "probability": 1.0 + }, + { + "word": " got", + "start": 42.08, + "end": 42.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 42.14, + "end": 42.2, + "probability": 0.99365234375 + }, + { + "word": " guest", + "start": 42.2, + "end": 42.38, + "probability": 1.0 + }, + { + "word": " who", + "start": 42.38, + "end": 42.52, + "probability": 0.99169921875 + }, + { + "word": " we'll", + "start": 42.52, + "end": 42.62, + "probability": 1.0 + }, + { + "word": " get", + "start": 42.62, + "end": 42.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 42.7, + "end": 42.8, + "probability": 1.0 + }, + { + "word": " in", + "start": 42.8, + "end": 42.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 42.92, + "end": 43.02, + "probability": 1.0 + }, + { + "word": " minute.", + "start": 43.02, + "end": 43.16, + "probability": 1.0 + } + ] + }, + { + "id": 23, + "text": "But let's start by saying there are a lot of things happening in the world, in technology anyway,", + "start": 46.26, + "end": 53.06, + "words": [ + { + "word": " But", + "start": 46.26, + "end": 46.58, + "probability": 0.8671875 + }, + { + "word": " let's", + "start": 46.58, + "end": 46.9, + "probability": 0.9970703125 + }, + { + "word": " start", + "start": 46.9, + "end": 47.06, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 47.06, + "end": 47.3, + "probability": 1.0 + }, + { + "word": " saying", + "start": 47.3, + "end": 47.68, + "probability": 1.0 + }, + { + "word": " there", + "start": 47.68, + "end": 48.16, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 48.16, + "end": 48.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 48.42, + "end": 48.6, + "probability": 1.0 + }, + { + "word": " lot", + "start": 48.6, + "end": 48.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 48.86, + "end": 49.1, + "probability": 1.0 + }, + { + "word": " things", + "start": 49.1, + "end": 50.3, + "probability": 0.9951171875 + }, + { + "word": " happening", + "start": 50.3, + "end": 50.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 50.92, + "end": 51.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 51.18, + "end": 51.26, + "probability": 0.99951171875 + }, + { + "word": " world,", + "start": 51.26, + "end": 51.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 51.56, + "end": 52.0, + "probability": 0.9970703125 + }, + { + "word": " technology", + "start": 52.0, + "end": 52.64, + "probability": 1.0 + }, + { + "word": " anyway,", + "start": 52.64, + "end": 53.06, + "probability": 0.98095703125 + } + ] + }, + { + "id": 24, + "text": "that you may not, you should probably be aware of.", + "start": 53.22, + "end": 56.04, + "words": [ + { + "word": " that", + "start": 53.22, + "end": 53.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 53.38, + "end": 53.48, + "probability": 1.0 + }, + { + "word": " may", + "start": 53.48, + "end": 53.58, + "probability": 0.6669921875 + }, + { + "word": " not,", + "start": 53.58, + "end": 53.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 53.92, + "end": 54.5, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 54.5, + "end": 55.04, + "probability": 1.0 + }, + { + "word": " probably", + "start": 55.04, + "end": 55.3, + "probability": 1.0 + }, + { + "word": " be", + "start": 55.3, + "end": 55.5, + "probability": 1.0 + }, + { + "word": " aware", + "start": 55.5, + "end": 55.7, + "probability": 1.0 + }, + { + "word": " of.", + "start": 55.7, + "end": 56.04, + "probability": 1.0 + } + ] + }, + { + "id": 25, + "text": "Right?", + "start": 56.12, + "end": 56.34, + "words": [ + { + "word": " Right?", + "start": 56.12, + "end": 56.34, + "probability": 0.9130859375 + } + ] + }, + { + "id": 26, + "text": "So we're going to get started.", + "start": 56.42, + "end": 56.78, + "words": [ + { + "word": " So", + "start": 56.42, + "end": 56.54, + "probability": 0.6796875 + }, + { + "word": " we're", + "start": 56.54, + "end": 56.66, + "probability": 0.94482421875 + }, + { + "word": " going", + "start": 56.66, + "end": 56.78, + "probability": 0.9892578125 + }, + { + "word": " to", + "start": 56.78, + "end": 56.78, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 56.78, + "end": 56.78, + "probability": 0.37353515625 + }, + { + "word": " started.", + "start": 56.78, + "end": 56.78, + "probability": 0.2098388671875 + } + ] + }, + { + "id": 27, + "text": "", + "start": 56.78, + "end": 56.78, + "words": [] + }, + { + "id": 28, + "text": "", + "start": 56.78, + "end": 56.78, + "words": [] + }, + { + "id": 29, + "text": "", + "start": 56.78, + "end": 56.78, + "words": [] + }, + { + "id": 30, + "text": "", + "start": 56.78, + "end": 56.78, + "words": [] + }, + { + "id": 31, + "text": "", + "start": 56.78, + "end": 56.78, + "words": [] + }, + { + "id": 32, + "text": "", + "start": 56.78, + "end": 56.78, + "words": [] + }, + { + "id": 33, + "text": "We're going to spend probably the first hour of the show talking mostly about scams and", + "start": 56.78, + "end": 60.62, + "words": [ + { + "word": " We're", + "start": 56.78, + "end": 56.96, + "probability": 0.83642578125 + }, + { + "word": " going", + "start": 56.96, + "end": 57.02, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 57.02, + "end": 57.12, + "probability": 1.0 + }, + { + "word": " spend", + "start": 57.12, + "end": 57.28, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 57.28, + "end": 57.62, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 57.62, + "end": 57.84, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 57.84, + "end": 58.02, + "probability": 1.0 + }, + { + "word": " hour", + "start": 58.02, + "end": 58.22, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 58.22, + "end": 58.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 58.32, + "end": 58.32, + "probability": 1.0 + }, + { + "word": " show", + "start": 58.32, + "end": 58.5, + "probability": 1.0 + }, + { + "word": " talking", + "start": 58.5, + "end": 58.78, + "probability": 0.9970703125 + }, + { + "word": " mostly", + "start": 58.78, + "end": 59.08, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 59.08, + "end": 59.34, + "probability": 1.0 + }, + { + "word": " scams", + "start": 59.34, + "end": 60.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 60.04, + "end": 60.62, + "probability": 0.763671875 + } + ] + }, + { + "id": 34, + "text": "ways that people are just trying to steal your money.", + "start": 60.62, + "end": 65.2, + "words": [ + { + "word": " ways", + "start": 60.62, + "end": 61.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 61.06, + "end": 61.62, + "probability": 1.0 + }, + { + "word": " people", + "start": 61.62, + "end": 62.62, + "probability": 0.96875 + }, + { + "word": " are", + "start": 62.62, + "end": 63.2, + "probability": 1.0 + }, + { + "word": " just", + "start": 63.2, + "end": 63.4, + "probability": 1.0 + }, + { + "word": " trying", + "start": 63.4, + "end": 63.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 63.64, + "end": 63.88, + "probability": 1.0 + }, + { + "word": " steal", + "start": 63.88, + "end": 64.52, + "probability": 1.0 + }, + { + "word": " your", + "start": 64.52, + "end": 64.94, + "probability": 1.0 + }, + { + "word": " money.", + "start": 64.94, + "end": 65.2, + "probability": 1.0 + } + ] + }, + { + "id": 35, + "text": "Always.", + "start": 65.6, + "end": 66.0, + "words": [ + { + "word": " Always.", + "start": 65.6, + "end": 66.0, + "probability": 0.931640625 + } + ] + }, + { + "id": 36, + "text": "Because that's what they want to do.", + "start": 66.52, + "end": 67.5, + "words": [ + { + "word": " Because", + "start": 66.52, + "end": 66.76, + "probability": 0.9912109375 + }, + { + "word": " that's", + "start": 66.76, + "end": 66.98, + "probability": 1.0 + }, + { + "word": " what", + "start": 66.98, + "end": 67.06, + "probability": 1.0 + }, + { + "word": " they", + "start": 67.06, + "end": 67.18, + "probability": 1.0 + }, + { + "word": " want", + "start": 67.18, + "end": 67.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 67.32, + "end": 67.42, + "probability": 1.0 + }, + { + "word": " do.", + "start": 67.42, + "end": 67.5, + "probability": 1.0 + } + ] + }, + { + "id": 37, + "text": "It's much easier to steal it than to earn it.", + "start": 67.54, + "end": 69.24, + "words": [ + { + "word": " It's", + "start": 67.54, + "end": 67.7, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 67.7, + "end": 67.84, + "probability": 1.0 + }, + { + "word": " easier", + "start": 67.84, + "end": 68.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 68.12, + "end": 68.3, + "probability": 1.0 + }, + { + "word": " steal", + "start": 68.3, + "end": 68.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 68.52, + "end": 68.7, + "probability": 1.0 + }, + { + "word": " than", + "start": 68.7, + "end": 68.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 68.8, + "end": 68.9, + "probability": 1.0 + }, + { + "word": " earn", + "start": 68.9, + "end": 69.1, + "probability": 1.0 + }, + { + "word": " it.", + "start": 69.1, + "end": 69.24, + "probability": 1.0 + } + ] + }, + { + "id": 38, + "text": "That's what I hear anyway.", + "start": 69.4, + "end": 70.46, + "words": [ + { + "word": " That's", + "start": 69.4, + "end": 69.8, + "probability": 1.0 + }, + { + "word": " what", + "start": 69.8, + "end": 69.92, + "probability": 1.0 + }, + { + "word": " I", + "start": 69.92, + "end": 70.06, + "probability": 1.0 + }, + { + "word": " hear", + "start": 70.06, + "end": 70.2, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 70.2, + "end": 70.46, + "probability": 0.82958984375 + } + ] + }, + { + "id": 39, + "text": "It's not like I have that much of it to give anyway.", + "start": 70.8, + "end": 72.8, + "words": [ + { + "word": " It's", + "start": 70.8, + "end": 71.02, + "probability": 1.0 + }, + { + "word": " not", + "start": 71.02, + "end": 71.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 71.1, + "end": 71.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 71.28, + "end": 71.38, + "probability": 1.0 + }, + { + "word": " have", + "start": 71.38, + "end": 71.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 71.52, + "end": 71.66, + "probability": 1.0 + }, + { + "word": " much", + "start": 71.66, + "end": 71.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 71.88, + "end": 72.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 72.08, + "end": 72.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 72.2, + "end": 72.32, + "probability": 1.0 + }, + { + "word": " give", + "start": 72.32, + "end": 72.48, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 72.48, + "end": 72.8, + "probability": 0.99951171875 + } + ] + }, + { + "id": 40, + "text": "This is true.", + "start": 73.46, + "end": 74.18, + "words": [ + { + "word": " This", + "start": 73.46, + "end": 73.86, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 73.86, + "end": 73.96, + "probability": 1.0 + }, + { + "word": " true.", + "start": 73.96, + "end": 74.18, + "probability": 1.0 + } + ] + }, + { + "id": 41, + "text": "We're all poor, poor individuals.", + "start": 74.28, + "end": 76.24, + "words": [ + { + "word": " We're", + "start": 74.28, + "end": 74.46, + "probability": 1.0 + }, + { + "word": " all", + "start": 74.46, + "end": 74.62, + "probability": 1.0 + }, + { + "word": " poor,", + "start": 74.62, + "end": 75.3, + "probability": 0.99755859375 + }, + { + "word": " poor", + "start": 75.46, + "end": 75.64, + "probability": 1.0 + }, + { + "word": " individuals.", + "start": 75.64, + "end": 76.24, + "probability": 1.0 + } + ] + }, + { + "id": 42, + "text": "But so we basically, this is going to be an interesting show.", + "start": 77.79999999999998, + "end": 84.74, + "words": [ + { + "word": " But", + "start": 77.79999999999998, + "end": 78.19999999999999, + "probability": 0.405029296875 + }, + { + "word": " so", + "start": 78.19999999999999, + "end": 78.6, + "probability": 0.66650390625 + }, + { + "word": " we", + "start": 78.6, + "end": 79.52, + "probability": 0.99365234375 + }, + { + "word": " basically,", + "start": 79.52, + "end": 80.64, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 80.98, + "end": 82.7, + "probability": 0.64404296875 + }, + { + "word": " is", + "start": 82.7, + "end": 83.88, + "probability": 1.0 + }, + { + "word": " going", + "start": 83.88, + "end": 83.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 83.94, + "end": 84.02, + "probability": 1.0 + }, + { + "word": " be", + "start": 84.02, + "end": 84.06, + "probability": 1.0 + }, + { + "word": " an", + "start": 84.06, + "end": 84.16, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 84.16, + "end": 84.36, + "probability": 1.0 + }, + { + "word": " show.", + "start": 84.36, + "end": 84.74, + "probability": 1.0 + } + ] + }, + { + "id": 43, + "text": "All right?", + "start": 84.9, + "end": 85.4, + "words": [ + { + "word": " All", + "start": 84.9, + "end": 85.3, + "probability": 0.96630859375 + }, + { + "word": " right?", + "start": 85.3, + "end": 85.4, + "probability": 1.0 + } + ] + }, + { + "id": 44, + "text": "Because Mark was talking about it.", + "start": 85.78, + "end": 86.76, + "words": [ + { + "word": " Because", + "start": 85.78, + "end": 86.18, + "probability": 0.4130859375 + }, + { + "word": " Mark", + "start": 86.18, + "end": 86.48, + "probability": 0.98583984375 + }, + { + "word": " was", + "start": 86.48, + "end": 86.66, + "probability": 0.97900390625 + }, + { + "word": " talking", + "start": 86.66, + "end": 86.76, + "probability": 0.51904296875 + }, + { + "word": " about", + "start": 86.76, + "end": 86.76, + "probability": 0.38916015625 + }, + { + "word": " it.", + "start": 86.76, + "end": 86.76, + "probability": 0.66015625 + } + ] + }, + { + "id": 45, + "text": "He was talking in the last hour a little bit.", + "start": 86.78, + "end": 88.04, + "words": [ + { + "word": " He", + "start": 86.78, + "end": 86.92, + "probability": 0.00405120849609375 + }, + { + "word": " was", + "start": 86.92, + "end": 86.92, + "probability": 0.03533935546875 + }, + { + "word": " talking", + "start": 86.92, + "end": 86.92, + "probability": 0.76806640625 + }, + { + "word": " in", + "start": 86.92, + "end": 87.1, + "probability": 0.85205078125 + }, + { + "word": " the", + "start": 87.1, + "end": 87.18, + "probability": 1.0 + }, + { + "word": " last", + "start": 87.18, + "end": 87.42, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 87.42, + "end": 87.66, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 87.66, + "end": 87.72, + "probability": 0.99365234375 + }, + { + "word": " little", + "start": 87.72, + "end": 87.86, + "probability": 0.99951171875 + }, + { + "word": " bit.", + "start": 87.86, + "end": 88.04, + "probability": 1.0 + } + ] + }, + { + "id": 46, + "text": "There's a bit of a buzz.", + "start": 88.1, + "end": 89.6, + "words": [ + { + "word": " There's", + "start": 88.1, + "end": 88.32, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 88.32, + "end": 88.9, + "probability": 0.9814453125 + }, + { + "word": " bit", + "start": 88.9, + "end": 89.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 89.02, + "end": 89.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 89.12, + "end": 89.22, + "probability": 1.0 + }, + { + "word": " buzz.", + "start": 89.22, + "end": 89.6, + "probability": 1.0 + } + ] + }, + { + "id": 47, + "text": "I've been keeping things under wraps.", + "start": 89.68, + "end": 90.9, + "words": [ + { + "word": " I've", + "start": 89.68, + "end": 89.78, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 89.78, + "end": 89.84, + "probability": 1.0 + }, + { + "word": " keeping", + "start": 89.84, + "end": 90.08, + "probability": 1.0 + }, + { + "word": " things", + "start": 90.08, + "end": 90.36, + "probability": 1.0 + }, + { + "word": " under", + "start": 90.36, + "end": 90.6, + "probability": 1.0 + }, + { + "word": " wraps.", + "start": 90.6, + "end": 90.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 48, + "text": "Mainly just because I haven't really known anything up until like yesterday.", + "start": 90.98, + "end": 94.12, + "words": [ + { + "word": " Mainly", + "start": 90.98, + "end": 91.18, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 91.18, + "end": 91.42, + "probability": 0.9873046875 + }, + { + "word": " because", + "start": 91.42, + "end": 91.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 91.66, + "end": 91.86, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 91.86, + "end": 92.02, + "probability": 1.0 + }, + { + "word": " really", + "start": 92.02, + "end": 92.18, + "probability": 0.99951171875 + }, + { + "word": " known", + "start": 92.18, + "end": 92.48, + "probability": 1.0 + }, + { + "word": " anything", + "start": 92.48, + "end": 92.86, + "probability": 1.0 + }, + { + "word": " up", + "start": 92.86, + "end": 93.16, + "probability": 0.98095703125 + }, + { + "word": " until", + "start": 93.16, + "end": 93.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 93.36, + "end": 93.62, + "probability": 0.54248046875 + }, + { + "word": " yesterday.", + "start": 93.62, + "end": 94.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 49, + "text": "But stick around for the second hour for news on what's coming up with the Computer Guru", + "start": 96.72000000000003, + "end": 101.68, + "words": [ + { + "word": " But", + "start": 96.72000000000003, + "end": 97.20000000000002, + "probability": 0.935546875 + }, + { + "word": " stick", + "start": 97.20000000000002, + "end": 97.68, + "probability": 0.89013671875 + }, + { + "word": " around", + "start": 97.68, + "end": 97.88, + "probability": 1.0 + }, + { + "word": " for", + "start": 97.88, + "end": 98.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 98.0, + "end": 98.08, + "probability": 1.0 + }, + { + "word": " second", + "start": 98.08, + "end": 98.28, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 98.28, + "end": 98.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 98.44, + "end": 98.66, + "probability": 0.98974609375 + }, + { + "word": " news", + "start": 98.66, + "end": 99.24, + "probability": 1.0 + }, + { + "word": " on", + "start": 99.24, + "end": 99.48, + "probability": 1.0 + }, + { + "word": " what's", + "start": 99.48, + "end": 99.74, + "probability": 1.0 + }, + { + "word": " coming", + "start": 99.74, + "end": 99.98, + "probability": 1.0 + }, + { + "word": " up", + "start": 99.98, + "end": 100.28, + "probability": 1.0 + }, + { + "word": " with", + "start": 100.28, + "end": 100.74, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 100.74, + "end": 101.06, + "probability": 0.9677734375 + }, + { + "word": " Computer", + "start": 101.06, + "end": 101.44, + "probability": 0.98046875 + }, + { + "word": " Guru", + "start": 101.44, + "end": 101.68, + "probability": 0.99609375 + } + ] + }, + { + "id": 50, + "text": "Show and how it's going to move forward.", + "start": 101.68, + "end": 105.48, + "words": [ + { + "word": " Show", + "start": 101.68, + "end": 101.9, + "probability": 0.52294921875 + }, + { + "word": " and", + "start": 101.9, + "end": 102.3, + "probability": 0.76171875 + }, + { + "word": " how", + "start": 102.3, + "end": 103.32, + "probability": 1.0 + }, + { + "word": " it's", + "start": 103.32, + "end": 103.76, + "probability": 1.0 + }, + { + "word": " going", + "start": 103.76, + "end": 104.52, + "probability": 0.9951171875 + }, + { + "word": " to", + "start": 104.52, + "end": 104.88, + "probability": 1.0 + }, + { + "word": " move", + "start": 104.88, + "end": 105.06, + "probability": 1.0 + }, + { + "word": " forward.", + "start": 105.06, + "end": 105.48, + "probability": 1.0 + } + ] + }, + { + "id": 51, + "text": "But just stick around for that part.", + "start": 107.24000000000001, + "end": 110.04, + "words": [ + { + "word": " But", + "start": 107.24000000000001, + "end": 107.72, + "probability": 0.955078125 + }, + { + "word": " just", + "start": 107.72, + "end": 108.2, + "probability": 0.30615234375 + }, + { + "word": " stick", + "start": 108.2, + "end": 109.36, + "probability": 1.0 + }, + { + "word": " around", + "start": 109.36, + "end": 109.54, + "probability": 1.0 + }, + { + "word": " for", + "start": 109.54, + "end": 109.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 109.68, + "end": 109.82, + "probability": 1.0 + }, + { + "word": " part.", + "start": 109.82, + "end": 110.04, + "probability": 1.0 + } + ] + }, + { + "id": 52, + "text": "First, we're going to talk to Jay here.", + "start": 111.02000000000001, + "end": 113.62, + "words": [ + { + "word": " First,", + "start": 111.02000000000001, + "end": 111.5, + "probability": 1.0 + }, + { + "word": " we're", + "start": 111.64, + "end": 111.84, + "probability": 1.0 + }, + { + "word": " going", + "start": 111.84, + "end": 111.9, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 111.9, + "end": 112.0, + "probability": 1.0 + }, + { + "word": " talk", + "start": 112.0, + "end": 112.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 112.2, + "end": 112.38, + "probability": 1.0 + }, + { + "word": " Jay", + "start": 112.38, + "end": 113.36, + "probability": 0.99267578125 + }, + { + "word": " here.", + "start": 113.36, + "end": 113.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 53, + "text": "Jay is a, he called me last week.", + "start": 113.72, + "end": 116.06, + "words": [ + { + "word": " Jay", + "start": 113.72, + "end": 114.02, + "probability": 0.703125 + }, + { + "word": " is", + "start": 114.02, + "end": 114.56, + "probability": 0.60693359375 + }, + { + "word": " a,", + "start": 114.56, + "end": 114.72, + "probability": 1.0 + }, + { + "word": " he", + "start": 114.88, + "end": 115.14, + "probability": 1.0 + }, + { + "word": " called", + "start": 115.14, + "end": 115.42, + "probability": 0.9990234375 + }, + { + "word": " me", + "start": 115.42, + "end": 115.52, + "probability": 1.0 + }, + { + "word": " last", + "start": 115.52, + "end": 115.72, + "probability": 1.0 + }, + { + "word": " week.", + "start": 115.72, + "end": 116.06, + "probability": 1.0 + } + ] + }, + { + "id": 54, + "text": "After one of the, after last week's show, was it?", + "start": 116.82000000000001, + "end": 119.38, + "words": [ + { + "word": " After", + "start": 116.82000000000001, + "end": 117.26, + "probability": 0.43017578125 + }, + { + "word": " one", + "start": 117.26, + "end": 117.5, + "probability": 0.283447265625 + }, + { + "word": " of", + "start": 117.5, + "end": 117.6, + "probability": 0.403564453125 + }, + { + "word": " the,", + "start": 117.6, + "end": 117.68, + "probability": 0.98828125 + }, + { + "word": " after", + "start": 117.7, + "end": 118.06, + "probability": 0.97998046875 + }, + { + "word": " last", + "start": 118.06, + "end": 118.58, + "probability": 0.78125 + }, + { + "word": " week's", + "start": 118.58, + "end": 118.96, + "probability": 1.0 + }, + { + "word": " show,", + "start": 118.96, + "end": 119.1, + "probability": 1.0 + }, + { + "word": " was", + "start": 119.16, + "end": 119.26, + "probability": 0.9990234375 + }, + { + "word": " it?", + "start": 119.26, + "end": 119.38, + "probability": 1.0 + } + ] + }, + { + "id": 55, + "text": "Yeah.", + "start": 119.44, + "end": 119.84, + "words": [ + { + "word": " Yeah.", + "start": 119.44, + "end": 119.84, + "probability": 0.98876953125 + } + ] + }, + { + "id": 56, + "text": "Yeah.", + "start": 119.86, + "end": 120.22, + "words": [ + { + "word": " Yeah.", + "start": 119.86, + "end": 120.22, + "probability": 0.5419921875 + } + ] + }, + { + "id": 57, + "text": "And basically wanted to talk about the Microsoft scammers that are out there or tech support", + "start": 121.22, + "end": 127.5, + "words": [ + { + "word": " And", + "start": 121.22, + "end": 121.66, + "probability": 0.9169921875 + }, + { + "word": " basically", + "start": 121.66, + "end": 122.1, + "probability": 0.90087890625 + }, + { + "word": " wanted", + "start": 122.1, + "end": 123.28, + "probability": 0.404296875 + }, + { + "word": " to", + "start": 123.28, + "end": 123.44, + "probability": 1.0 + }, + { + "word": " talk", + "start": 123.44, + "end": 123.66, + "probability": 1.0 + }, + { + "word": " about", + "start": 123.66, + "end": 124.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 124.0, + "end": 124.82, + "probability": 1.0 + }, + { + "word": " Microsoft", + "start": 124.82, + "end": 125.32, + "probability": 1.0 + }, + { + "word": " scammers", + "start": 125.32, + "end": 125.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 125.92, + "end": 126.36, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 126.36, + "end": 126.46, + "probability": 1.0 + }, + { + "word": " out", + "start": 126.46, + "end": 126.64, + "probability": 1.0 + }, + { + "word": " there", + "start": 126.64, + "end": 126.82, + "probability": 1.0 + }, + { + "word": " or", + "start": 126.82, + "end": 127.02, + "probability": 0.88525390625 + }, + { + "word": " tech", + "start": 127.02, + "end": 127.26, + "probability": 1.0 + }, + { + "word": " support", + "start": 127.26, + "end": 127.5, + "probability": 1.0 + } + ] + }, + { + "id": 58, + "text": "scammers that exist out there.", + "start": 127.5, + "end": 128.92, + "words": [ + { + "word": " scammers", + "start": 127.5, + "end": 128.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 128.0, + "end": 128.24, + "probability": 1.0 + }, + { + "word": " exist", + "start": 128.24, + "end": 128.44, + "probability": 1.0 + }, + { + "word": " out", + "start": 128.44, + "end": 128.72, + "probability": 1.0 + }, + { + "word": " there.", + "start": 128.72, + "end": 128.92, + "probability": 1.0 + } + ] + }, + { + "id": 59, + "text": "Now, Jay is a tech journalist.", + "start": 129.78, + "end": 131.22, + "words": [ + { + "word": " Now,", + "start": 129.78, + "end": 130.22, + "probability": 0.99951171875 + }, + { + "word": " Jay", + "start": 130.38, + "end": 130.62, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 130.62, + "end": 130.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 130.76, + "end": 130.82, + "probability": 1.0 + }, + { + "word": " tech", + "start": 130.82, + "end": 130.98, + "probability": 1.0 + }, + { + "word": " journalist.", + "start": 130.98, + "end": 131.22, + "probability": 0.9951171875 + } + ] + }, + { + "id": 60, + "text": "He lives in Green Valley.", + "start": 131.36, + "end": 132.26, + "words": [ + { + "word": " He", + "start": 131.36, + "end": 131.58, + "probability": 1.0 + }, + { + "word": " lives", + "start": 131.58, + "end": 131.78, + "probability": 1.0 + }, + { + "word": " in", + "start": 131.78, + "end": 131.9, + "probability": 1.0 + }, + { + "word": " Green", + "start": 131.9, + "end": 132.02, + "probability": 0.99853515625 + }, + { + "word": " Valley.", + "start": 132.02, + "end": 132.26, + "probability": 1.0 + } + ] + }, + { + "id": 61, + "text": "He's chilling out in the Green Valley.", + "start": 132.38, + "end": 135.5, + "words": [ + { + "word": " He's", + "start": 132.38, + "end": 132.52, + "probability": 1.0 + }, + { + "word": " chilling", + "start": 132.52, + "end": 133.2, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 133.2, + "end": 133.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 133.42, + "end": 133.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 133.58, + "end": 133.66, + "probability": 1.0 + }, + { + "word": " Green", + "start": 133.66, + "end": 134.86, + "probability": 0.87109375 + }, + { + "word": " Valley.", + "start": 134.86, + "end": 135.5, + "probability": 1.0 + } + ] + }, + { + "id": 62, + "text": "And he's principal of Collar Radio Communications Group.", + "start": 135.62, + "end": 139.04, + "words": [ + { + "word": " And", + "start": 135.62, + "end": 135.82, + "probability": 0.9521484375 + }, + { + "word": " he's", + "start": 135.82, + "end": 136.88, + "probability": 0.8251953125 + }, + { + "word": " principal", + "start": 136.88, + "end": 137.2, + "probability": 0.449462890625 + }, + { + "word": " of", + "start": 137.2, + "end": 137.52, + "probability": 1.0 + }, + { + "word": " Collar", + "start": 137.52, + "end": 137.9, + "probability": 0.39453125 + }, + { + "word": " Radio", + "start": 137.9, + "end": 138.16, + "probability": 0.99951171875 + }, + { + "word": " Communications", + "start": 138.16, + "end": 138.62, + "probability": 0.9990234375 + }, + { + "word": " Group.", + "start": 138.62, + "end": 139.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 63, + "text": "And he's got some old school cred.", + "start": 140.06, + "end": 142.14, + "words": [ + { + "word": " And", + "start": 140.06, + "end": 140.5, + "probability": 0.76904296875 + }, + { + "word": " he's", + "start": 140.5, + "end": 140.94, + "probability": 1.0 + }, + { + "word": " got", + "start": 140.94, + "end": 141.28, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 141.28, + "end": 141.48, + "probability": 1.0 + }, + { + "word": " old", + "start": 141.48, + "end": 141.64, + "probability": 1.0 + }, + { + "word": " school", + "start": 141.64, + "end": 141.8, + "probability": 0.93115234375 + }, + { + "word": " cred.", + "start": 141.8, + "end": 142.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 64, + "text": "Yeah.", + "start": 142.34, + "end": 142.78, + "words": [ + { + "word": " Yeah.", + "start": 142.34, + "end": 142.78, + "probability": 0.9345703125 + } + ] + }, + { + "id": 65, + "text": "Like I used to as far as running the old BBSs.", + "start": 142.8, + "end": 145.92, + "words": [ + { + "word": " Like", + "start": 142.8, + "end": 143.12, + "probability": 0.8046875 + }, + { + "word": " I", + "start": 143.12, + "end": 143.3, + "probability": 0.99951171875 + }, + { + "word": " used", + "start": 143.3, + "end": 143.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 143.52, + "end": 143.68, + "probability": 1.0 + }, + { + "word": " as", + "start": 143.68, + "end": 143.96, + "probability": 0.79150390625 + }, + { + "word": " far", + "start": 143.96, + "end": 144.12, + "probability": 1.0 + }, + { + "word": " as", + "start": 144.12, + "end": 144.34, + "probability": 1.0 + }, + { + "word": " running", + "start": 144.34, + "end": 144.64, + "probability": 0.45263671875 + }, + { + "word": " the", + "start": 144.64, + "end": 144.94, + "probability": 1.0 + }, + { + "word": " old", + "start": 144.94, + "end": 145.1, + "probability": 1.0 + }, + { + "word": " BBSs.", + "start": 145.1, + "end": 145.92, + "probability": 0.96875 + } + ] + }, + { + "id": 66, + "text": "You started Colorado Snowbank in 85.", + "start": 146.78, + "end": 148.9, + "words": [ + { + "word": " You", + "start": 146.78, + "end": 147.22, + "probability": 0.52197265625 + }, + { + "word": " started", + "start": 147.22, + "end": 147.52, + "probability": 0.99267578125 + }, + { + "word": " Colorado", + "start": 147.52, + "end": 147.9, + "probability": 0.99755859375 + }, + { + "word": " Snowbank", + "start": 147.9, + "end": 148.5, + "probability": 0.88427734375 + }, + { + "word": " in", + "start": 148.5, + "end": 148.7, + "probability": 0.9990234375 + }, + { + "word": " 85.", + "start": 148.7, + "end": 148.9, + "probability": 0.50244140625 + } + ] + }, + { + "id": 67, + "text": "Man, that's, I remember seeing the name of your BBS on the national lists back in the", + "start": 150.14000000000001, + "end": 156.76, + "words": [ + { + "word": " Man,", + "start": 150.14000000000001, + "end": 150.58, + "probability": 0.46435546875 + }, + { + "word": " that's,", + "start": 150.58, + "end": 150.88, + "probability": 0.9443359375 + }, + { + "word": " I", + "start": 150.9, + "end": 152.3, + "probability": 0.9990234375 + }, + { + "word": " remember", + "start": 152.3, + "end": 152.56, + "probability": 1.0 + }, + { + "word": " seeing", + "start": 152.56, + "end": 152.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 152.86, + "end": 153.0, + "probability": 1.0 + }, + { + "word": " name", + "start": 153.0, + "end": 153.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 153.14, + "end": 153.26, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 153.26, + "end": 153.88, + "probability": 0.994140625 + }, + { + "word": " BBS", + "start": 153.88, + "end": 154.88, + "probability": 0.978515625 + }, + { + "word": " on", + "start": 154.88, + "end": 155.08, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 155.08, + "end": 155.16, + "probability": 1.0 + }, + { + "word": " national", + "start": 155.16, + "end": 155.44, + "probability": 0.97607421875 + }, + { + "word": " lists", + "start": 155.44, + "end": 155.82, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 155.82, + "end": 156.46, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 156.46, + "end": 156.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 156.68, + "end": 156.76, + "probability": 1.0 + } + ] + }, + { + "id": 68, + "text": "day.", + "start": 156.76, + "end": 157.04, + "words": [ + { + "word": " day.", + "start": 156.76, + "end": 157.04, + "probability": 1.0 + } + ] + }, + { + "id": 69, + "text": "Just because I used to keep track of those and I have a crazy memory.", + "start": 157.08, + "end": 159.78, + "words": [ + { + "word": " Just", + "start": 157.08, + "end": 157.4, + "probability": 0.99560546875 + }, + { + "word": " because", + "start": 157.4, + "end": 157.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 157.56, + "end": 157.8, + "probability": 1.0 + }, + { + "word": " used", + "start": 157.8, + "end": 157.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 157.92, + "end": 158.02, + "probability": 1.0 + }, + { + "word": " keep", + "start": 158.02, + "end": 158.16, + "probability": 1.0 + }, + { + "word": " track", + "start": 158.16, + "end": 158.34, + "probability": 0.98388671875 + }, + { + "word": " of", + "start": 158.34, + "end": 158.48, + "probability": 1.0 + }, + { + "word": " those", + "start": 158.48, + "end": 158.6, + "probability": 0.80810546875 + }, + { + "word": " and", + "start": 158.6, + "end": 158.7, + "probability": 0.70556640625 + }, + { + "word": " I", + "start": 158.7, + "end": 158.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 158.78, + "end": 158.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 158.94, + "end": 159.06, + "probability": 1.0 + }, + { + "word": " crazy", + "start": 159.06, + "end": 159.5, + "probability": 1.0 + }, + { + "word": " memory.", + "start": 159.5, + "end": 159.78, + "probability": 1.0 + } + ] + }, + { + "id": 70, + "text": "But did you say you went multi-line with that?", + "start": 160.84, + "end": 163.26, + "words": [ + { + "word": " But", + "start": 160.84, + "end": 161.28, + "probability": 0.99462890625 + }, + { + "word": " did", + "start": 161.28, + "end": 161.68, + "probability": 0.89453125 + }, + { + "word": " you", + "start": 161.68, + "end": 162.02, + "probability": 1.0 + }, + { + "word": " say", + "start": 162.02, + "end": 162.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 162.16, + "end": 162.26, + "probability": 1.0 + }, + { + "word": " went", + "start": 162.26, + "end": 162.42, + "probability": 0.9990234375 + }, + { + "word": " multi", + "start": 162.42, + "end": 162.74, + "probability": 0.69140625 + }, + { + "word": "-line", + "start": 162.74, + "end": 162.98, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 162.98, + "end": 163.12, + "probability": 1.0 + }, + { + "word": " that?", + "start": 163.12, + "end": 163.26, + "probability": 1.0 + } + ] + }, + { + "id": 71, + "text": "We went multi-line.", + "start": 163.48, + "end": 164.5, + "words": [ + { + "word": " We", + "start": 163.48, + "end": 163.76, + "probability": 0.99853515625 + }, + { + "word": " went", + "start": 163.76, + "end": 163.9, + "probability": 0.9990234375 + }, + { + "word": " multi", + "start": 163.9, + "end": 164.26, + "probability": 1.0 + }, + { + "word": "-line.", + "start": 164.26, + "end": 164.5, + "probability": 1.0 + } + ] + }, + { + "id": 72, + "text": "Yeah.", + "start": 164.58, + "end": 164.76, + "words": [ + { + "word": " Yeah.", + "start": 164.58, + "end": 164.76, + "probability": 0.88720703125 + } + ] + }, + { + "id": 73, + "text": "It was under TBBS, the breadboard system, which was the only one that had multi-line.", + "start": 164.78, + "end": 170.8, + "words": [ + { + "word": " It", + "start": 164.78, + "end": 165.16, + "probability": 0.98046875 + }, + { + "word": " was", + "start": 165.16, + "end": 165.52, + "probability": 1.0 + }, + { + "word": " under", + "start": 165.52, + "end": 165.78, + "probability": 1.0 + }, + { + "word": " TBBS,", + "start": 165.78, + "end": 166.52, + "probability": 0.9814453125 + }, + { + "word": " the", + "start": 166.76, + "end": 166.94, + "probability": 0.99267578125 + }, + { + "word": " breadboard", + "start": 166.94, + "end": 167.38, + "probability": 0.9775390625 + }, + { + "word": " system,", + "start": 167.38, + "end": 167.74, + "probability": 1.0 + }, + { + "word": " which", + "start": 167.9, + "end": 168.2, + "probability": 1.0 + }, + { + "word": " was", + "start": 168.2, + "end": 168.34, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 168.34, + "end": 168.8, + "probability": 1.0 + }, + { + "word": " only", + "start": 168.8, + "end": 169.0, + "probability": 1.0 + }, + { + "word": " one", + "start": 169.0, + "end": 169.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 169.18, + "end": 169.34, + "probability": 1.0 + }, + { + "word": " had", + "start": 169.34, + "end": 169.56, + "probability": 1.0 + }, + { + "word": " multi", + "start": 169.56, + "end": 170.46, + "probability": 0.99951171875 + }, + { + "word": "-line.", + "start": 170.46, + "end": 170.8, + "probability": 1.0 + } + ] + }, + { + "id": 74, + "text": "At least in the beginning, yeah.", + "start": 171.5, + "end": 172.94, + "words": [ + { + "word": " At", + "start": 171.5, + "end": 171.94, + "probability": 1.0 + }, + { + "word": " least", + "start": 171.94, + "end": 172.32, + "probability": 1.0 + }, + { + "word": " in", + "start": 172.32, + "end": 172.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 172.44, + "end": 172.48, + "probability": 1.0 + }, + { + "word": " beginning,", + "start": 172.48, + "end": 172.7, + "probability": 1.0 + }, + { + "word": " yeah.", + "start": 172.82, + "end": 172.94, + "probability": 1.0 + } + ] + }, + { + "id": 75, + "text": "Yeah.", + "start": 173.2, + "end": 173.54, + "words": [ + { + "word": " Yeah.", + "start": 173.2, + "end": 173.54, + "probability": 0.99169921875 + } + ] + }, + { + "id": 76, + "text": "All right.", + "start": 174.02, + "end": 174.6, + "words": [ + { + "word": " All", + "start": 174.02, + "end": 174.46, + "probability": 0.96630859375 + }, + { + "word": " right.", + "start": 174.46, + "end": 174.6, + "probability": 1.0 + } + ] + }, + { + "id": 77, + "text": "Now you produce news segments.", + "start": 174.64, + "end": 176.64, + "words": [ + { + "word": " Now", + "start": 174.64, + "end": 174.8, + "probability": 0.97412109375 + }, + { + "word": " you", + "start": 174.8, + "end": 175.02, + "probability": 0.9921875 + }, + { + "word": " produce", + "start": 175.02, + "end": 175.74, + "probability": 0.9248046875 + }, + { + "word": " news", + "start": 175.74, + "end": 176.3, + "probability": 0.18994140625 + }, + { + "word": " segments.", + "start": 176.3, + "end": 176.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 78, + "text": "I couldn't be more secure.", + "start": 176.78, + "end": 178.2, + "words": [ + { + "word": " I", + "start": 176.78, + "end": 176.98, + "probability": 0.0023555755615234375 + }, + { + "word": " couldn't", + "start": 176.98, + "end": 177.52, + "probability": 0.498291015625 + }, + { + "word": " be", + "start": 177.52, + "end": 177.64, + "probability": 0.046539306640625 + }, + { + "word": " more", + "start": 177.64, + "end": 177.64, + "probability": 0.35546875 + }, + { + "word": " secure.", + "start": 177.64, + "end": 178.2, + "probability": 0.00682830810546875 + } + ] + }, + { + "id": 79, + "text": "OK.", + "start": 197.28, + "end": 197.82, + "words": [ + { + "word": " OK.", + "start": 197.28, + "end": 197.82, + "probability": 0.0001634359359741211 + } + ] + }, + { + "id": 80, + "text": "OK.", + "start": 198.14, + "end": 198.42, + "words": [ + { + "word": " OK.", + "start": 198.14, + "end": 198.42, + "probability": 0.04095458984375 + } + ] + }, + { + "id": 81, + "text": "OK.", + "start": 200.12, + "end": 200.66, + "words": [ + { + "word": " OK.", + "start": 200.12, + "end": 200.66, + "probability": 0.489013671875 + } + ] + }, + { + "id": 82, + "text": "", + "start": 200.66, + "end": 200.66, + "words": [] + }, + { + "id": 83, + "text": "", + "start": 200.66, + "end": 200.66, + "words": [] + }, + { + "id": 84, + "text": "", + "start": 200.66, + "end": 200.66, + "words": [] + }, + { + "id": 85, + "text": "", + "start": 200.66, + "end": 200.66, + "words": [] + }, + { + "id": 86, + "text": "OK.", + "start": 200.66, + "end": 200.78, + "words": [ + { + "word": " OK.", + "start": 200.66, + "end": 200.78, + "probability": 0.921875 + } + ] + }, + { + "id": 87, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 88, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 89, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 90, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 91, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 92, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 93, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 94, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 95, + "text": "", + "start": 200.78, + "end": 200.78, + "words": [] + }, + { + "id": 96, + "text": "OK.", + "start": 200.78, + "end": 200.8, + "words": [ + { + "word": " OK.", + "start": 200.78, + "end": 200.8, + "probability": 0.94873046875 + } + ] + }, + { + "id": 97, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 98, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 99, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 100, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 101, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 102, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 103, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 104, + "text": "", + "start": 200.8, + "end": 200.8, + "words": [] + }, + { + "id": 105, + "text": "OK.", + "start": 200.8, + "end": 200.82, + "words": [ + { + "word": " OK.", + "start": 200.8, + "end": 200.82, + "probability": 0.958984375 + } + ] + }, + { + "id": 106, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 107, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 108, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 109, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 110, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 111, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 112, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 113, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 114, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 115, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 116, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 117, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 118, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 119, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 120, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 121, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 122, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 123, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 124, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 125, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 126, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 127, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 128, + "text": "", + "start": 200.82, + "end": 200.82, + "words": [] + }, + { + "id": 129, + "text": "OK.", + "start": 200.82, + "end": 201.02, + "words": [ + { + "word": " OK.", + "start": 200.82, + "end": 201.02, + "probability": 0.966796875 + } + ] + }, + { + "id": 130, + "text": "OK.", + "start": 201.2, + "end": 201.32, + "words": [ + { + "word": " OK.", + "start": 201.2, + "end": 201.32, + "probability": 0.96728515625 + } + ] + }, + { + "id": 131, + "text": "OK.", + "start": 201.86, + "end": 202.4, + "words": [ + { + "word": " OK.", + "start": 201.86, + "end": 202.4, + "probability": 0.96728515625 + } + ] + }, + { + "id": 132, + "text": "And there's a certain demographic, which I tend to talk to, which seem to be most at risk as far as either the age range or the technology proficiency that we really have to watch out for and say, hey, listen, you can't just fall for stuff like this.", + "start": 202.4, + "end": 220.62, + "words": [ + { + "word": " And", + "start": 202.4, + "end": 202.74, + "probability": 0.94921875 + }, + { + "word": " there's", + "start": 202.74, + "end": 203.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 203.26, + "end": 203.36, + "probability": 1.0 + }, + { + "word": " certain", + "start": 203.36, + "end": 203.72, + "probability": 1.0 + }, + { + "word": " demographic,", + "start": 203.72, + "end": 204.14, + "probability": 1.0 + }, + { + "word": " which", + "start": 204.34, + "end": 204.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 204.56, + "end": 204.68, + "probability": 1.0 + }, + { + "word": " tend", + "start": 204.68, + "end": 204.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 204.86, + "end": 204.96, + "probability": 1.0 + }, + { + "word": " talk", + "start": 204.96, + "end": 205.14, + "probability": 1.0 + }, + { + "word": " to,", + "start": 205.14, + "end": 205.32, + "probability": 1.0 + }, + { + "word": " which", + "start": 205.36, + "end": 205.66, + "probability": 1.0 + }, + { + "word": " seem", + "start": 205.66, + "end": 205.94, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 205.94, + "end": 206.12, + "probability": 1.0 + }, + { + "word": " be", + "start": 206.12, + "end": 206.34, + "probability": 1.0 + }, + { + "word": " most", + "start": 206.34, + "end": 207.22, + "probability": 1.0 + }, + { + "word": " at", + "start": 207.22, + "end": 207.52, + "probability": 1.0 + }, + { + "word": " risk", + "start": 207.52, + "end": 208.06, + "probability": 0.99072265625 + }, + { + "word": " as", + "start": 208.06, + "end": 208.58, + "probability": 0.943359375 + }, + { + "word": " far", + "start": 208.58, + "end": 208.84, + "probability": 1.0 + }, + { + "word": " as", + "start": 208.84, + "end": 209.16, + "probability": 1.0 + }, + { + "word": " either", + "start": 209.16, + "end": 209.56, + "probability": 0.83544921875 + }, + { + "word": " the", + "start": 209.56, + "end": 210.74, + "probability": 1.0 + }, + { + "word": " age", + "start": 210.74, + "end": 211.0, + "probability": 1.0 + }, + { + "word": " range", + "start": 211.0, + "end": 211.32, + "probability": 1.0 + }, + { + "word": " or", + "start": 211.32, + "end": 211.48, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 211.48, + "end": 211.56, + "probability": 1.0 + }, + { + "word": " technology", + "start": 211.56, + "end": 212.04, + "probability": 1.0 + }, + { + "word": " proficiency", + "start": 212.04, + "end": 214.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 214.44, + "end": 215.44, + "probability": 0.95166015625 + }, + { + "word": " we", + "start": 215.44, + "end": 216.08, + "probability": 1.0 + }, + { + "word": " really", + "start": 216.08, + "end": 216.22, + "probability": 1.0 + }, + { + "word": " have", + "start": 216.22, + "end": 216.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 216.38, + "end": 216.48, + "probability": 1.0 + }, + { + "word": " watch", + "start": 216.48, + "end": 216.64, + "probability": 1.0 + }, + { + "word": " out", + "start": 216.64, + "end": 216.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 216.8, + "end": 217.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 217.02, + "end": 217.18, + "probability": 0.93505859375 + }, + { + "word": " say,", + "start": 217.18, + "end": 217.34, + "probability": 1.0 + }, + { + "word": " hey,", + "start": 217.42, + "end": 217.54, + "probability": 0.96875 + }, + { + "word": " listen,", + "start": 217.56, + "end": 217.72, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 217.86, + "end": 218.36, + "probability": 1.0 + }, + { + "word": " can't", + "start": 218.36, + "end": 218.92, + "probability": 1.0 + }, + { + "word": " just", + "start": 218.92, + "end": 219.54, + "probability": 0.99951171875 + }, + { + "word": " fall", + "start": 219.54, + "end": 219.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 219.78, + "end": 219.96, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 219.96, + "end": 220.12, + "probability": 1.0 + }, + { + "word": " like", + "start": 220.12, + "end": 220.38, + "probability": 1.0 + }, + { + "word": " this.", + "start": 220.38, + "end": 220.62, + "probability": 1.0 + } + ] + }, + { + "id": 133, + "text": "And like the Nigerian print scams that have been going on for 20 years and people still fall for them.", + "start": 220.72, + "end": 227.74, + "words": [ + { + "word": " And", + "start": 220.72, + "end": 220.78, + "probability": 0.30224609375 + }, + { + "word": " like", + "start": 220.78, + "end": 221.5, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 221.5, + "end": 221.62, + "probability": 1.0 + }, + { + "word": " Nigerian", + "start": 221.62, + "end": 222.12, + "probability": 0.99853515625 + }, + { + "word": " print", + "start": 222.12, + "end": 222.48, + "probability": 0.97021484375 + }, + { + "word": " scams", + "start": 222.48, + "end": 223.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 223.48, + "end": 224.14, + "probability": 0.64404296875 + }, + { + "word": " have", + "start": 224.14, + "end": 224.84, + "probability": 1.0 + }, + { + "word": " been", + "start": 224.84, + "end": 224.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 224.94, + "end": 225.14, + "probability": 1.0 + }, + { + "word": " on", + "start": 225.14, + "end": 225.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 225.3, + "end": 225.46, + "probability": 1.0 + }, + { + "word": " 20", + "start": 225.46, + "end": 225.86, + "probability": 1.0 + }, + { + "word": " years", + "start": 225.86, + "end": 226.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 226.26, + "end": 226.66, + "probability": 0.72705078125 + }, + { + "word": " people", + "start": 226.66, + "end": 226.94, + "probability": 1.0 + }, + { + "word": " still", + "start": 226.94, + "end": 227.18, + "probability": 1.0 + }, + { + "word": " fall", + "start": 227.18, + "end": 227.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 227.52, + "end": 227.7, + "probability": 0.998046875 + }, + { + "word": " them.", + "start": 227.7, + "end": 227.74, + "probability": 0.494140625 + } + ] + }, + { + "id": 134, + "text": "Longer than that.", + "start": 227.74, + "end": 228.46, + "words": [ + { + "word": " Longer", + "start": 227.74, + "end": 228.12, + "probability": 0.99365234375 + }, + { + "word": " than", + "start": 228.12, + "end": 228.24, + "probability": 1.0 + }, + { + "word": " that.", + "start": 228.24, + "end": 228.46, + "probability": 1.0 + } + ] + }, + { + "id": 135, + "text": "Yeah.", + "start": 228.84, + "end": 229.32, + "words": [ + { + "word": " Yeah.", + "start": 228.84, + "end": 229.32, + "probability": 0.97802734375 + } + ] + }, + { + "id": 136, + "text": "Well, about 20 AOL days, really.", + "start": 229.32, + "end": 232.86, + "words": [ + { + "word": " Well,", + "start": 229.32, + "end": 229.6, + "probability": 0.27490234375 + }, + { + "word": " about", + "start": 229.76, + "end": 231.06, + "probability": 0.9990234375 + }, + { + "word": " 20", + "start": 231.06, + "end": 231.56, + "probability": 0.99755859375 + }, + { + "word": " AOL", + "start": 231.56, + "end": 232.24, + "probability": 0.6748046875 + }, + { + "word": " days,", + "start": 232.24, + "end": 232.52, + "probability": 0.99609375 + }, + { + "word": " really.", + "start": 232.64, + "end": 232.86, + "probability": 1.0 + } + ] + }, + { + "id": 137, + "text": "Well, okay.", + "start": 233.0, + "end": 233.42, + "words": [ + { + "word": " Well,", + "start": 233.0, + "end": 233.18, + "probability": 0.9912109375 + }, + { + "word": " okay.", + "start": 233.2, + "end": 233.42, + "probability": 0.9365234375 + } + ] + }, + { + "id": 138, + "text": "Okay.", + "start": 233.5, + "end": 233.76, + "words": [ + { + "word": " Okay.", + "start": 233.5, + "end": 233.76, + "probability": 0.880859375 + } + ] + }, + { + "id": 139, + "text": "Online.", + "start": 233.8, + "end": 234.04, + "words": [ + { + "word": " Online.", + "start": 233.8, + "end": 234.04, + "probability": 0.9921875 + } + ] + }, + { + "id": 140, + "text": "But they originally started out with a letter.", + "start": 234.2, + "end": 237.26, + "words": [ + { + "word": " But", + "start": 234.2, + "end": 234.46, + "probability": 0.93408203125 + }, + { + "word": " they", + "start": 234.46, + "end": 234.92, + "probability": 0.9970703125 + }, + { + "word": " originally", + "start": 234.92, + "end": 235.3, + "probability": 1.0 + }, + { + "word": " started", + "start": 235.3, + "end": 235.66, + "probability": 1.0 + }, + { + "word": " out", + "start": 235.66, + "end": 236.02, + "probability": 1.0 + }, + { + "word": " with", + "start": 236.02, + "end": 236.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 236.36, + "end": 236.58, + "probability": 1.0 + }, + { + "word": " letter.", + "start": 236.58, + "end": 237.26, + "probability": 1.0 + } + ] + }, + { + "id": 141, + "text": "They were sending out letters to attorneys and dentists and stuff like that.", + "start": 237.36, + "end": 241.74, + "words": [ + { + "word": " They", + "start": 237.36, + "end": 237.62, + "probability": 0.9931640625 + }, + { + "word": " were", + "start": 237.62, + "end": 237.7, + "probability": 1.0 + }, + { + "word": " sending", + "start": 237.7, + "end": 237.98, + "probability": 1.0 + }, + { + "word": " out", + "start": 237.98, + "end": 238.22, + "probability": 1.0 + }, + { + "word": " letters", + "start": 238.22, + "end": 238.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 238.58, + "end": 238.9, + "probability": 1.0 + }, + { + "word": " attorneys", + "start": 238.9, + "end": 239.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 239.54, + "end": 239.96, + "probability": 0.99853515625 + }, + { + "word": " dentists", + "start": 239.96, + "end": 241.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 241.04, + "end": 241.16, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 241.16, + "end": 241.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 241.38, + "end": 241.58, + "probability": 1.0 + }, + { + "word": " that.", + "start": 241.58, + "end": 241.74, + "probability": 1.0 + } + ] + }, + { + "id": 142, + "text": "Then they migrated to the online world and it's called a 419 scam.", + "start": 241.84, + "end": 250.16, + "words": [ + { + "word": " Then", + "start": 241.84, + "end": 242.28, + "probability": 0.99072265625 + }, + { + "word": " they", + "start": 242.28, + "end": 242.86, + "probability": 0.986328125 + }, + { + "word": " migrated", + "start": 242.86, + "end": 243.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 243.46, + "end": 243.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 243.8, + "end": 244.04, + "probability": 0.91943359375 + }, + { + "word": " online", + "start": 244.04, + "end": 246.98, + "probability": 1.0 + }, + { + "word": " world", + "start": 246.98, + "end": 247.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 247.46, + "end": 247.86, + "probability": 0.271240234375 + }, + { + "word": " it's", + "start": 247.86, + "end": 248.28, + "probability": 1.0 + }, + { + "word": " called", + "start": 248.28, + "end": 248.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 248.48, + "end": 248.66, + "probability": 1.0 + }, + { + "word": " 419", + "start": 248.66, + "end": 249.24, + "probability": 0.9931640625 + }, + { + "word": " scam.", + "start": 249.24, + "end": 250.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 143, + "text": "Oh, yeah?", + "start": 250.84, + "end": 251.48, + "words": [ + { + "word": " Oh,", + "start": 250.84, + "end": 251.36, + "probability": 0.99951171875 + }, + { + "word": " yeah?", + "start": 251.36, + "end": 251.48, + "probability": 1.0 + } + ] + }, + { + "id": 144, + "text": "Yeah.", + "start": 251.78, + "end": 251.96, + "words": [ + { + "word": " Yeah.", + "start": 251.78, + "end": 251.96, + "probability": 0.9970703125 + } + ] + }, + { + "id": 145, + "text": "See, now, I'm one of these weird people that I actually don't get mail, like at all.", + "start": 252.06, + "end": 257.16, + "words": [ + { + "word": " See,", + "start": 252.06, + "end": 252.54, + "probability": 0.99267578125 + }, + { + "word": " now,", + "start": 252.64, + "end": 252.74, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 252.82, + "end": 253.6, + "probability": 1.0 + }, + { + "word": " one", + "start": 253.6, + "end": 253.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 253.72, + "end": 253.82, + "probability": 1.0 + }, + { + "word": " these", + "start": 253.82, + "end": 253.94, + "probability": 0.99951171875 + }, + { + "word": " weird", + "start": 253.94, + "end": 254.18, + "probability": 1.0 + }, + { + "word": " people", + "start": 254.18, + "end": 254.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 254.46, + "end": 254.68, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 254.68, + "end": 254.86, + "probability": 1.0 + }, + { + "word": " actually", + "start": 254.86, + "end": 255.18, + "probability": 1.0 + }, + { + "word": " don't", + "start": 255.18, + "end": 255.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 255.44, + "end": 255.66, + "probability": 0.99951171875 + }, + { + "word": " mail,", + "start": 255.66, + "end": 256.0, + "probability": 0.998046875 + }, + { + "word": " like", + "start": 256.12, + "end": 256.62, + "probability": 1.0 + }, + { + "word": " at", + "start": 256.62, + "end": 256.82, + "probability": 0.5888671875 + }, + { + "word": " all.", + "start": 256.82, + "end": 257.16, + "probability": 1.0 + } + ] + }, + { + "id": 146, + "text": "It's like there's...", + "start": 257.8, + "end": 259.3, + "words": [ + { + "word": " It's", + "start": 257.8, + "end": 258.32, + "probability": 0.92578125 + }, + { + "word": " like", + "start": 258.32, + "end": 258.52, + "probability": 0.9892578125 + }, + { + "word": " there's...", + "start": 258.52, + "end": 259.3, + "probability": 0.650390625 + } + ] + }, + { + "id": 147, + "text": "There's still...", + "start": 259.32, + "end": 259.7, + "words": [ + { + "word": " There's", + "start": 259.32, + "end": 259.34, + "probability": 0.77099609375 + }, + { + "word": " still...", + "start": 259.34, + "end": 259.7, + "probability": 0.5029296875 + } + ] + }, + { + "id": 148, + "text": "At my house, there's still the, this address is vacant slip in the mailbox.", + "start": 259.7, + "end": 264.62, + "words": [ + { + "word": " At", + "start": 259.7, + "end": 260.16, + "probability": 0.9443359375 + }, + { + "word": " my", + "start": 260.16, + "end": 260.4, + "probability": 1.0 + }, + { + "word": " house,", + "start": 260.4, + "end": 261.44, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 261.56, + "end": 261.7, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 261.7, + "end": 261.88, + "probability": 1.0 + }, + { + "word": " the,", + "start": 261.88, + "end": 262.12, + "probability": 0.99267578125 + }, + { + "word": " this", + "start": 262.18, + "end": 262.74, + "probability": 0.9931640625 + }, + { + "word": " address", + "start": 262.74, + "end": 263.14, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 263.14, + "end": 263.42, + "probability": 1.0 + }, + { + "word": " vacant", + "start": 263.42, + "end": 263.76, + "probability": 0.99951171875 + }, + { + "word": " slip", + "start": 263.76, + "end": 264.04, + "probability": 0.97705078125 + }, + { + "word": " in", + "start": 264.04, + "end": 264.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 264.28, + "end": 264.38, + "probability": 1.0 + }, + { + "word": " mailbox.", + "start": 264.38, + "end": 264.62, + "probability": 0.9970703125 + } + ] + }, + { + "id": 149, + "text": "So I just...", + "start": 264.92, + "end": 265.9, + "words": [ + { + "word": " So", + "start": 264.92, + "end": 265.22, + "probability": 0.955078125 + }, + { + "word": " I", + "start": 265.22, + "end": 265.52, + "probability": 0.7490234375 + }, + { + "word": " just...", + "start": 265.52, + "end": 265.9, + "probability": 0.88671875 + } + ] + }, + { + "id": 150, + "text": "No mail.", + "start": 265.9, + "end": 266.58, + "words": [ + { + "word": " No", + "start": 265.9, + "end": 266.32, + "probability": 0.98876953125 + }, + { + "word": " mail.", + "start": 266.32, + "end": 266.58, + "probability": 0.99853515625 + } + ] + }, + { + "id": 151, + "text": "So I'm just one...", + "start": 266.8, + "end": 268.92, + "words": [ + { + "word": " So", + "start": 266.8, + "end": 267.32, + "probability": 0.970703125 + }, + { + "word": " I'm", + "start": 267.32, + "end": 268.52, + "probability": 0.99609375 + }, + { + "word": " just", + "start": 268.52, + "end": 268.68, + "probability": 0.880859375 + }, + { + "word": " one...", + "start": 268.68, + "end": 268.92, + "probability": 0.59228515625 + } + ] + }, + { + "id": 152, + "text": "I'm kind of weird like that.", + "start": 268.92, + "end": 270.02, + "words": [ + { + "word": " I'm", + "start": 268.92, + "end": 269.18, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 269.18, + "end": 269.34, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 269.34, + "end": 269.42, + "probability": 1.0 + }, + { + "word": " weird", + "start": 269.42, + "end": 269.56, + "probability": 1.0 + }, + { + "word": " like", + "start": 269.56, + "end": 269.76, + "probability": 1.0 + }, + { + "word": " that.", + "start": 269.76, + "end": 270.02, + "probability": 1.0 + } + ] + }, + { + "id": 153, + "text": "I actually know somebody who got the letter way, way back in the day.", + "start": 270.82, + "end": 275.84, + "words": [ + { + "word": " I", + "start": 270.82, + "end": 271.34, + "probability": 0.998046875 + }, + { + "word": " actually", + "start": 271.34, + "end": 271.64, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 271.64, + "end": 271.86, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 271.86, + "end": 272.2, + "probability": 1.0 + }, + { + "word": " who", + "start": 272.2, + "end": 272.58, + "probability": 1.0 + }, + { + "word": " got", + "start": 272.58, + "end": 273.44, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 273.44, + "end": 273.74, + "probability": 1.0 + }, + { + "word": " letter", + "start": 273.74, + "end": 274.12, + "probability": 1.0 + }, + { + "word": " way,", + "start": 274.12, + "end": 274.82, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 274.88, + "end": 275.12, + "probability": 1.0 + }, + { + "word": " back", + "start": 275.12, + "end": 275.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 275.3, + "end": 275.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 275.54, + "end": 275.6, + "probability": 1.0 + }, + { + "word": " day.", + "start": 275.6, + "end": 275.84, + "probability": 1.0 + } + ] + }, + { + "id": 154, + "text": "Really?", + "start": 275.98, + "end": 276.32, + "words": [ + { + "word": " Really?", + "start": 275.98, + "end": 276.32, + "probability": 0.98828125 + } + ] + }, + { + "id": 155, + "text": "Regarding their business.", + "start": 276.42, + "end": 277.28, + "words": [ + { + "word": " Regarding", + "start": 276.42, + "end": 276.76, + "probability": 0.99267578125 + }, + { + "word": " their", + "start": 276.76, + "end": 276.98, + "probability": 1.0 + }, + { + "word": " business.", + "start": 276.98, + "end": 277.28, + "probability": 1.0 + } + ] + }, + { + "id": 156, + "text": "Huh.", + "start": 277.62, + "end": 278.12, + "words": [ + { + "word": " Huh.", + "start": 277.62, + "end": 278.12, + "probability": 0.38525390625 + } + ] + }, + { + "id": 157, + "text": "And they gave them money and did not get it back, even though it eventually got reported and whatnot.", + "start": 278.16, + "end": 283.58, + "words": [ + { + "word": " And", + "start": 278.16, + "end": 278.32, + "probability": 0.99755859375 + }, + { + "word": " they", + "start": 278.32, + "end": 278.74, + "probability": 1.0 + }, + { + "word": " gave", + "start": 278.74, + "end": 279.14, + "probability": 1.0 + }, + { + "word": " them", + "start": 279.14, + "end": 279.36, + "probability": 0.99951171875 + }, + { + "word": " money", + "start": 279.36, + "end": 279.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 279.6, + "end": 279.9, + "probability": 0.998046875 + }, + { + "word": " did", + "start": 279.9, + "end": 280.12, + "probability": 1.0 + }, + { + "word": " not", + "start": 280.12, + "end": 280.32, + "probability": 1.0 + }, + { + "word": " get", + "start": 280.32, + "end": 280.52, + "probability": 1.0 + }, + { + "word": " it", + "start": 280.52, + "end": 280.68, + "probability": 1.0 + }, + { + "word": " back,", + "start": 280.68, + "end": 280.9, + "probability": 1.0 + }, + { + "word": " even", + "start": 280.94, + "end": 281.16, + "probability": 1.0 + }, + { + "word": " though", + "start": 281.16, + "end": 281.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 281.42, + "end": 281.96, + "probability": 0.71826171875 + }, + { + "word": " eventually", + "start": 281.96, + "end": 282.44, + "probability": 1.0 + }, + { + "word": " got", + "start": 282.44, + "end": 282.68, + "probability": 1.0 + }, + { + "word": " reported", + "start": 282.68, + "end": 283.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 283.04, + "end": 283.32, + "probability": 0.99853515625 + }, + { + "word": " whatnot.", + "start": 283.32, + "end": 283.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 158, + "text": "So, Jay, tell me about yourself and what your motivation is for...", + "start": 283.9, + "end": 288.84, + "words": [ + { + "word": " So,", + "start": 283.9, + "end": 284.42, + "probability": 0.7421875 + }, + { + "word": " Jay,", + "start": 284.52, + "end": 284.7, + "probability": 0.8056640625 + }, + { + "word": " tell", + "start": 284.82, + "end": 285.92, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 285.92, + "end": 286.12, + "probability": 1.0 + }, + { + "word": " about", + "start": 286.12, + "end": 286.32, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 286.32, + "end": 286.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 286.62, + "end": 286.84, + "probability": 0.9970703125 + }, + { + "word": " what", + "start": 286.84, + "end": 286.96, + "probability": 1.0 + }, + { + "word": " your", + "start": 286.96, + "end": 287.44, + "probability": 1.0 + }, + { + "word": " motivation", + "start": 287.44, + "end": 288.04, + "probability": 1.0 + }, + { + "word": " is", + "start": 288.04, + "end": 288.48, + "probability": 1.0 + }, + { + "word": " for...", + "start": 288.48, + "end": 288.84, + "probability": 0.818359375 + } + ] + }, + { + "id": 159, + "text": "What's going on here with scam and...", + "start": 289.32, + "end": 291.22, + "words": [ + { + "word": " What's", + "start": 289.32, + "end": 289.46, + "probability": 0.84521484375 + }, + { + "word": " going", + "start": 289.46, + "end": 289.58, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 289.58, + "end": 289.82, + "probability": 1.0 + }, + { + "word": " here", + "start": 289.82, + "end": 289.98, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 289.98, + "end": 290.12, + "probability": 0.9853515625 + }, + { + "word": " scam", + "start": 290.12, + "end": 290.62, + "probability": 0.83447265625 + }, + { + "word": " and...", + "start": 290.62, + "end": 291.22, + "probability": 0.44482421875 + } + ] + }, + { + "id": 160, + "text": "Well, motivation and my motivation here was talk about a whole...", + "start": 291.22, + "end": 295.0, + "words": [ + { + "word": " Well,", + "start": 291.22, + "end": 291.52, + "probability": 0.95166015625 + }, + { + "word": " motivation", + "start": 291.52, + "end": 292.4, + "probability": 0.9892578125 + }, + { + "word": " and", + "start": 292.4, + "end": 292.74, + "probability": 0.65869140625 + }, + { + "word": " my", + "start": 292.74, + "end": 292.86, + "probability": 1.0 + }, + { + "word": " motivation", + "start": 292.86, + "end": 293.26, + "probability": 1.0 + }, + { + "word": " here", + "start": 293.26, + "end": 293.7, + "probability": 1.0 + }, + { + "word": " was", + "start": 293.7, + "end": 293.94, + "probability": 0.998046875 + }, + { + "word": " talk", + "start": 293.94, + "end": 294.14, + "probability": 0.386474609375 + }, + { + "word": " about", + "start": 294.14, + "end": 294.54, + "probability": 1.0 + }, + { + "word": " a", + "start": 294.54, + "end": 294.72, + "probability": 0.93310546875 + }, + { + "word": " whole...", + "start": 294.72, + "end": 295.0, + "probability": 0.56689453125 + } + ] + }, + { + "id": 161, + "text": "Just a little segment called scam baiting.", + "start": 295.0, + "end": 298.64, + "words": [ + { + "word": " Just", + "start": 295.0, + "end": 295.36, + "probability": 0.626953125 + }, + { + "word": " a", + "start": 295.36, + "end": 295.52, + "probability": 1.0 + }, + { + "word": " little", + "start": 295.52, + "end": 295.72, + "probability": 0.99951171875 + }, + { + "word": " segment", + "start": 295.72, + "end": 296.34, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 296.34, + "end": 297.16, + "probability": 0.99951171875 + }, + { + "word": " scam", + "start": 297.16, + "end": 297.74, + "probability": 0.5927734375 + }, + { + "word": " baiting.", + "start": 297.74, + "end": 298.64, + "probability": 0.99462890625 + } + ] + }, + { + "id": 162, + "text": "And to go back, there are actually three types of people who are at risk.", + "start": 299.74, + "end": 305.08, + "words": [ + { + "word": " And", + "start": 299.48999999999995, + "end": 299.78, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 299.78, + "end": 299.9, + "probability": 0.90087890625 + }, + { + "word": " go", + "start": 299.9, + "end": 300.16, + "probability": 1.0 + }, + { + "word": " back,", + "start": 300.16, + "end": 300.54, + "probability": 1.0 + }, + { + "word": " there", + "start": 300.54, + "end": 300.7, + "probability": 1.0 + }, + { + "word": " are", + "start": 300.7, + "end": 300.82, + "probability": 1.0 + }, + { + "word": " actually", + "start": 300.82, + "end": 301.16, + "probability": 1.0 + }, + { + "word": " three", + "start": 301.16, + "end": 301.68, + "probability": 0.99658203125 + }, + { + "word": " types", + "start": 301.68, + "end": 303.56, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 303.56, + "end": 303.84, + "probability": 1.0 + }, + { + "word": " people", + "start": 303.84, + "end": 304.04, + "probability": 1.0 + }, + { + "word": " who", + "start": 304.04, + "end": 304.26, + "probability": 1.0 + }, + { + "word": " are", + "start": 304.26, + "end": 304.44, + "probability": 1.0 + }, + { + "word": " at", + "start": 304.44, + "end": 304.74, + "probability": 1.0 + }, + { + "word": " risk.", + "start": 304.74, + "end": 305.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 163, + "text": "One, you're talking about the older college kids and also people who are foreign, who don't speak the language quite as well.", + "start": 305.32, + "end": 315.7, + "words": [ + { + "word": " One,", + "start": 305.32, + "end": 305.76, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 305.82, + "end": 305.94, + "probability": 1.0 + }, + { + "word": " talking", + "start": 305.94, + "end": 306.22, + "probability": 1.0 + }, + { + "word": " about", + "start": 306.22, + "end": 306.52, + "probability": 1.0 + }, + { + "word": " the", + "start": 306.52, + "end": 306.8, + "probability": 0.994140625 + }, + { + "word": " older", + "start": 306.8, + "end": 307.48, + "probability": 1.0 + }, + { + "word": " college", + "start": 307.48, + "end": 309.38, + "probability": 0.98291015625 + }, + { + "word": " kids", + "start": 309.38, + "end": 309.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 309.88, + "end": 310.36, + "probability": 0.7578125 + }, + { + "word": " also", + "start": 310.36, + "end": 311.08, + "probability": 1.0 + }, + { + "word": " people", + "start": 311.08, + "end": 311.34, + "probability": 1.0 + }, + { + "word": " who", + "start": 311.34, + "end": 311.68, + "probability": 1.0 + }, + { + "word": " are", + "start": 311.68, + "end": 311.92, + "probability": 1.0 + }, + { + "word": " foreign,", + "start": 311.92, + "end": 312.7, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 312.86, + "end": 313.36, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 313.36, + "end": 313.72, + "probability": 1.0 + }, + { + "word": " speak", + "start": 313.72, + "end": 314.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 314.0, + "end": 314.3, + "probability": 1.0 + }, + { + "word": " language", + "start": 314.3, + "end": 314.76, + "probability": 1.0 + }, + { + "word": " quite", + "start": 314.76, + "end": 315.18, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 315.18, + "end": 315.44, + "probability": 1.0 + }, + { + "word": " well.", + "start": 315.44, + "end": 315.7, + "probability": 1.0 + } + ] + }, + { + "id": 164, + "text": "Right.", + "start": 315.78, + "end": 316.04, + "words": [ + { + "word": " Right.", + "start": 315.78, + "end": 316.04, + "probability": 0.50732421875 + } + ] + }, + { + "id": 165, + "text": "They are easily intimidated.", + "start": 316.12, + "end": 317.44, + "words": [ + { + "word": " They", + "start": 316.12, + "end": 316.26, + "probability": 0.98876953125 + }, + { + "word": " are", + "start": 316.26, + "end": 316.32, + "probability": 0.99951171875 + }, + { + "word": " easily", + "start": 316.32, + "end": 316.7, + "probability": 1.0 + }, + { + "word": " intimidated.", + "start": 316.7, + "end": 317.44, + "probability": 1.0 + } + ] + }, + { + "id": 166, + "text": "And...", + "start": 318.32, + "end": 318.9, + "words": [ + { + "word": " And...", + "start": 318.32, + "end": 318.9, + "probability": 0.89794921875 + } + ] + }, + { + "id": 167, + "text": "So there's a whole segment that's called scam baiters.", + "start": 319.52, + "end": 325.34, + "words": [ + { + "word": " So", + "start": 319.52, + "end": 320.14, + "probability": 0.9638671875 + }, + { + "word": " there's", + "start": 320.14, + "end": 320.46, + "probability": 0.9775390625 + }, + { + "word": " a", + "start": 320.46, + "end": 320.52, + "probability": 1.0 + }, + { + "word": " whole", + "start": 320.52, + "end": 320.72, + "probability": 1.0 + }, + { + "word": " segment", + "start": 320.72, + "end": 321.46, + "probability": 1.0 + }, + { + "word": " that's", + "start": 321.46, + "end": 323.04, + "probability": 0.99755859375 + }, + { + "word": " called", + "start": 323.04, + "end": 323.3, + "probability": 1.0 + }, + { + "word": " scam", + "start": 323.3, + "end": 324.84, + "probability": 0.00782012939453125 + }, + { + "word": " baiters.", + "start": 324.84, + "end": 325.34, + "probability": 0.9765625 + } + ] + }, + { + "id": 168, + "text": "But to just give you a little bit of background, we're talking about big money.", + "start": 325.4, + "end": 329.78, + "words": [ + { + "word": " But", + "start": 325.4, + "end": 325.98, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 325.98, + "end": 326.12, + "probability": 1.0 + }, + { + "word": " just", + "start": 326.12, + "end": 326.36, + "probability": 1.0 + }, + { + "word": " give", + "start": 326.36, + "end": 326.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 326.56, + "end": 326.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 326.7, + "end": 326.78, + "probability": 1.0 + }, + { + "word": " little", + "start": 326.78, + "end": 327.08, + "probability": 1.0 + }, + { + "word": " bit", + "start": 327.08, + "end": 327.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 327.28, + "end": 327.4, + "probability": 1.0 + }, + { + "word": " background,", + "start": 327.4, + "end": 327.72, + "probability": 1.0 + }, + { + "word": " we're", + "start": 327.86, + "end": 328.06, + "probability": 1.0 + }, + { + "word": " talking", + "start": 328.06, + "end": 328.26, + "probability": 1.0 + }, + { + "word": " about", + "start": 328.26, + "end": 328.54, + "probability": 1.0 + }, + { + "word": " big", + "start": 328.54, + "end": 329.2, + "probability": 1.0 + }, + { + "word": " money.", + "start": 329.2, + "end": 329.78, + "probability": 1.0 + } + ] + }, + { + "id": 169, + "text": "And in April 26, 2017, there was a new survey that indicates Americans...", + "start": 330.38, + "end": 336.9, + "words": [ + { + "word": " And", + "start": 330.38, + "end": 331.0, + "probability": 0.9853515625 + }, + { + "word": " in", + "start": 331.0, + "end": 331.62, + "probability": 0.99755859375 + }, + { + "word": " April", + "start": 331.62, + "end": 332.38, + "probability": 1.0 + }, + { + "word": " 26,", + "start": 332.38, + "end": 332.86, + "probability": 0.99365234375 + }, + { + "word": " 2017,", + "start": 333.12, + "end": 334.0, + "probability": 1.0 + }, + { + "word": " there", + "start": 334.32, + "end": 334.58, + "probability": 1.0 + }, + { + "word": " was", + "start": 334.58, + "end": 334.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 334.68, + "end": 334.8, + "probability": 1.0 + }, + { + "word": " new", + "start": 334.8, + "end": 334.98, + "probability": 1.0 + }, + { + "word": " survey", + "start": 334.98, + "end": 335.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 335.4, + "end": 335.68, + "probability": 1.0 + }, + { + "word": " indicates", + "start": 335.68, + "end": 336.2, + "probability": 1.0 + }, + { + "word": " Americans...", + "start": 336.2, + "end": 336.9, + "probability": 0.5009765625 + } + ] + }, + { + "id": 170, + "text": "This is just Americans lost $9.5 billion to phone scams.", + "start": 337.44, + "end": 345.4, + "words": [ + { + "word": " This", + "start": 337.44, + "end": 337.72, + "probability": 0.9521484375 + }, + { + "word": " is", + "start": 337.72, + "end": 337.86, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 337.86, + "end": 338.06, + "probability": 0.99951171875 + }, + { + "word": " Americans", + "start": 338.06, + "end": 338.76, + "probability": 0.9990234375 + }, + { + "word": " lost", + "start": 338.76, + "end": 339.38, + "probability": 0.99853515625 + }, + { + "word": " $9", + "start": 339.38, + "end": 340.36, + "probability": 0.998046875 + }, + { + "word": ".5", + "start": 340.36, + "end": 341.8, + "probability": 0.99951171875 + }, + { + "word": " billion", + "start": 341.8, + "end": 342.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 342.76, + "end": 344.18, + "probability": 0.99462890625 + }, + { + "word": " phone", + "start": 344.18, + "end": 344.8, + "probability": 0.99951171875 + }, + { + "word": " scams.", + "start": 344.8, + "end": 345.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 171, + "text": "And that was just last year.", + "start": 345.44, + "end": 347.08, + "words": [ + { + "word": " And", + "start": 345.44, + "end": 345.76, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 345.76, + "end": 345.9, + "probability": 1.0 + }, + { + "word": " was", + "start": 345.9, + "end": 346.06, + "probability": 1.0 + }, + { + "word": " just", + "start": 346.06, + "end": 346.26, + "probability": 1.0 + }, + { + "word": " last", + "start": 346.26, + "end": 346.52, + "probability": 1.0 + }, + { + "word": " year.", + "start": 346.52, + "end": 347.08, + "probability": 1.0 + } + ] + }, + { + "id": 172, + "text": "So who knows?", + "start": 347.4, + "end": 348.48, + "words": [ + { + "word": " So", + "start": 347.4, + "end": 347.98, + "probability": 0.9990234375 + }, + { + "word": " who", + "start": 347.98, + "end": 348.2, + "probability": 0.9990234375 + }, + { + "word": " knows?", + "start": 348.2, + "end": 348.48, + "probability": 0.9951171875 + } + ] + }, + { + "id": 173, + "text": "Who knows what happened all of 17 and what's happening now?", + "start": 349.32, + "end": 353.8, + "words": [ + { + "word": " Who", + "start": 349.32, + "end": 349.46, + "probability": 0.0013980865478515625 + }, + { + "word": " knows", + "start": 349.46, + "end": 349.46, + "probability": 0.908203125 + }, + { + "word": " what", + "start": 349.46, + "end": 349.56, + "probability": 0.9892578125 + }, + { + "word": " happened", + "start": 349.56, + "end": 349.98, + "probability": 0.96240234375 + }, + { + "word": " all", + "start": 349.98, + "end": 351.08, + "probability": 0.77490234375 + }, + { + "word": " of", + "start": 351.08, + "end": 351.3, + "probability": 0.9912109375 + }, + { + "word": " 17", + "start": 351.3, + "end": 351.74, + "probability": 0.87158203125 + }, + { + "word": " and", + "start": 351.74, + "end": 352.1, + "probability": 0.93505859375 + }, + { + "word": " what's", + "start": 352.1, + "end": 352.6, + "probability": 0.9970703125 + }, + { + "word": " happening", + "start": 352.6, + "end": 352.82, + "probability": 0.99609375 + }, + { + "word": " now?", + "start": 352.82, + "end": 353.8, + "probability": 0.9951171875 + } + ] + }, + { + "id": 174, + "text": "So it's big bucks that they are making.", + "start": 354.16, + "end": 358.56, + "words": [ + { + "word": " So", + "start": 354.16, + "end": 354.74, + "probability": 0.96337890625 + }, + { + "word": " it's", + "start": 354.74, + "end": 355.16, + "probability": 0.966796875 + }, + { + "word": " big", + "start": 355.16, + "end": 355.86, + "probability": 0.74658203125 + }, + { + "word": " bucks", + "start": 355.86, + "end": 357.06, + "probability": 0.6083984375 + }, + { + "word": " that", + "start": 357.06, + "end": 357.6, + "probability": 0.998046875 + }, + { + "word": " they", + "start": 357.6, + "end": 358.08, + "probability": 1.0 + }, + { + "word": " are", + "start": 358.08, + "end": 358.26, + "probability": 1.0 + }, + { + "word": " making.", + "start": 358.26, + "end": 358.56, + "probability": 1.0 + } + ] + }, + { + "id": 175, + "text": "And it's not only Americans.", + "start": 358.68, + "end": 360.48, + "words": [ + { + "word": " And", + "start": 358.68, + "end": 359.02, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 359.02, + "end": 359.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 359.2, + "end": 359.4, + "probability": 1.0 + }, + { + "word": " only", + "start": 359.4, + "end": 359.74, + "probability": 1.0 + }, + { + "word": " Americans.", + "start": 359.74, + "end": 360.48, + "probability": 1.0 + } + ] + }, + { + "id": 176, + "text": "These scammers are all over the world.", + "start": 361.34, + "end": 363.56, + "words": [ + { + "word": " These", + "start": 361.1, + "end": 361.44, + "probability": 0.99951171875 + }, + { + "word": " scammers", + "start": 361.44, + "end": 361.92, + "probability": 1.0 + }, + { + "word": " are", + "start": 361.92, + "end": 362.48, + "probability": 1.0 + }, + { + "word": " all", + "start": 362.48, + "end": 362.76, + "probability": 1.0 + }, + { + "word": " over", + "start": 362.76, + "end": 363.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 363.1, + "end": 363.3, + "probability": 1.0 + }, + { + "word": " world.", + "start": 363.3, + "end": 363.56, + "probability": 1.0 + } + ] + }, + { + "id": 177, + "text": "Okay.", + "start": 363.9, + "end": 364.58, + "words": [ + { + "word": " Okay.", + "start": 363.9, + "end": 364.58, + "probability": 0.9033203125 + } + ] + }, + { + "id": 178, + "text": "So you mentioned scam baiting, at least the phrase scam baiters.", + "start": 364.64, + "end": 369.26, + "words": [ + { + "word": " So", + "start": 364.64, + "end": 364.78, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 364.78, + "end": 365.0, + "probability": 0.99951171875 + }, + { + "word": " mentioned", + "start": 365.0, + "end": 365.56, + "probability": 1.0 + }, + { + "word": " scam", + "start": 365.56, + "end": 365.94, + "probability": 0.80126953125 + }, + { + "word": " baiting,", + "start": 365.94, + "end": 366.52, + "probability": 0.9951171875 + }, + { + "word": " at", + "start": 366.52, + "end": 367.12, + "probability": 1.0 + }, + { + "word": " least", + "start": 367.12, + "end": 367.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 367.44, + "end": 367.6, + "probability": 1.0 + }, + { + "word": " phrase", + "start": 367.6, + "end": 368.4, + "probability": 0.99951171875 + }, + { + "word": " scam", + "start": 368.4, + "end": 368.8, + "probability": 0.98974609375 + }, + { + "word": " baiters.", + "start": 368.8, + "end": 369.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 179, + "text": "Now, there's plenty of scammers out there.", + "start": 369.44, + "end": 372.0, + "words": [ + { + "word": " Now,", + "start": 369.44, + "end": 370.12, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 370.2, + "end": 370.82, + "probability": 1.0 + }, + { + "word": " plenty", + "start": 370.82, + "end": 371.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 371.08, + "end": 371.24, + "probability": 1.0 + }, + { + "word": " scammers", + "start": 371.24, + "end": 371.54, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 371.54, + "end": 371.76, + "probability": 1.0 + }, + { + "word": " there.", + "start": 371.76, + "end": 372.0, + "probability": 1.0 + } + ] + }, + { + "id": 180, + "text": "But typically, the scam baiters are things like the ones that are trying to hook...", + "start": 372.62, + "end": 379.16, + "words": [ + { + "word": " But", + "start": 372.62, + "end": 373.3, + "probability": 0.99853515625 + }, + { + "word": " typically,", + "start": 373.3, + "end": 374.3, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 374.34, + "end": 374.54, + "probability": 1.0 + }, + { + "word": " scam", + "start": 374.54, + "end": 374.96, + "probability": 0.99560546875 + }, + { + "word": " baiters", + "start": 374.96, + "end": 375.72, + "probability": 1.0 + }, + { + "word": " are", + "start": 375.72, + "end": 375.96, + "probability": 1.0 + }, + { + "word": " things", + "start": 375.96, + "end": 376.58, + "probability": 0.99560546875 + }, + { + "word": " like", + "start": 376.58, + "end": 377.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 377.22, + "end": 377.62, + "probability": 0.99951171875 + }, + { + "word": " ones", + "start": 377.62, + "end": 377.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 377.78, + "end": 377.9, + "probability": 1.0 + }, + { + "word": " are", + "start": 377.9, + "end": 378.0, + "probability": 1.0 + }, + { + "word": " trying", + "start": 378.0, + "end": 378.32, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 378.32, + "end": 378.64, + "probability": 1.0 + }, + { + "word": " hook...", + "start": 378.64, + "end": 379.16, + "probability": 0.499755859375 + } + ] + }, + { + "id": 181, + "text": "the scammers into making a mistake or reverse engineering the scammers.", + "start": 379.16, + "end": 385.74, + "words": [ + { + "word": " the", + "start": 379.16, + "end": 379.36, + "probability": 0.79736328125 + }, + { + "word": " scammers", + "start": 379.36, + "end": 379.88, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 379.88, + "end": 380.24, + "probability": 0.99755859375 + }, + { + "word": " making", + "start": 380.24, + "end": 381.92, + "probability": 0.85546875 + }, + { + "word": " a", + "start": 381.92, + "end": 382.56, + "probability": 1.0 + }, + { + "word": " mistake", + "start": 382.56, + "end": 382.78, + "probability": 1.0 + }, + { + "word": " or", + "start": 382.78, + "end": 383.08, + "probability": 0.99072265625 + }, + { + "word": " reverse", + "start": 383.08, + "end": 383.72, + "probability": 0.99951171875 + }, + { + "word": " engineering", + "start": 383.72, + "end": 384.22, + "probability": 0.95166015625 + }, + { + "word": " the", + "start": 384.22, + "end": 385.02, + "probability": 1.0 + }, + { + "word": " scammers.", + "start": 385.02, + "end": 385.74, + "probability": 0.974609375 + } + ] + }, + { + "id": 182, + "text": "As an example, there was an article on Reddit yesterday that talked about one of the, quote unquote, scam baiters", + "start": 387.14, + "end": 397.16, + "words": [ + { + "word": " As", + "start": 387.14, + "end": 387.74, + "probability": 0.9970703125 + }, + { + "word": " an", + "start": 387.74, + "end": 387.94, + "probability": 1.0 + }, + { + "word": " example,", + "start": 387.94, + "end": 388.3, + "probability": 1.0 + }, + { + "word": " there", + "start": 388.46, + "end": 388.84, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 388.84, + "end": 389.18, + "probability": 1.0 + }, + { + "word": " an", + "start": 389.18, + "end": 390.72, + "probability": 0.9541015625 + }, + { + "word": " article", + "start": 390.72, + "end": 391.78, + "probability": 1.0 + }, + { + "word": " on", + "start": 391.78, + "end": 391.96, + "probability": 0.9921875 + }, + { + "word": " Reddit", + "start": 391.96, + "end": 392.14, + "probability": 1.0 + }, + { + "word": " yesterday", + "start": 392.14, + "end": 392.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 392.52, + "end": 392.82, + "probability": 0.994140625 + }, + { + "word": " talked", + "start": 392.82, + "end": 393.06, + "probability": 1.0 + }, + { + "word": " about", + "start": 393.06, + "end": 393.34, + "probability": 1.0 + }, + { + "word": " one", + "start": 393.34, + "end": 394.6, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 394.6, + "end": 394.68, + "probability": 1.0 + }, + { + "word": " the,", + "start": 394.68, + "end": 394.88, + "probability": 1.0 + }, + { + "word": " quote", + "start": 394.96, + "end": 396.08, + "probability": 1.0 + }, + { + "word": " unquote,", + "start": 396.08, + "end": 396.28, + "probability": 0.59716796875 + }, + { + "word": " scam", + "start": 396.42, + "end": 396.7, + "probability": 0.1712646484375 + }, + { + "word": " baiters", + "start": 396.7, + "end": 397.16, + "probability": 0.9873046875 + } + ] + }, + { + "id": 183, + "text": "that basically hacked his way into the scammers and refunded a bunch of money to people that had had their money taken by the scammers.", + "start": 397.16, + "end": 405.66, + "words": [ + { + "word": " that", + "start": 397.16, + "end": 397.98, + "probability": 0.91796875 + }, + { + "word": " basically", + "start": 397.98, + "end": 399.34, + "probability": 0.99951171875 + }, + { + "word": " hacked", + "start": 399.34, + "end": 399.64, + "probability": 1.0 + }, + { + "word": " his", + "start": 399.64, + "end": 399.8, + "probability": 0.998046875 + }, + { + "word": " way", + "start": 399.8, + "end": 399.96, + "probability": 1.0 + }, + { + "word": " into", + "start": 399.96, + "end": 400.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 400.32, + "end": 400.7, + "probability": 0.97802734375 + }, + { + "word": " scammers", + "start": 400.7, + "end": 401.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 401.2, + "end": 401.48, + "probability": 1.0 + }, + { + "word": " refunded", + "start": 401.48, + "end": 402.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 402.16, + "end": 402.26, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 402.26, + "end": 402.4, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 402.4, + "end": 402.54, + "probability": 1.0 + }, + { + "word": " money", + "start": 402.54, + "end": 402.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 402.92, + "end": 403.28, + "probability": 1.0 + }, + { + "word": " people", + "start": 403.28, + "end": 403.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 403.6, + "end": 403.84, + "probability": 1.0 + }, + { + "word": " had", + "start": 403.84, + "end": 403.94, + "probability": 1.0 + }, + { + "word": " had", + "start": 403.94, + "end": 404.14, + "probability": 0.53466796875 + }, + { + "word": " their", + "start": 404.14, + "end": 404.32, + "probability": 1.0 + }, + { + "word": " money", + "start": 404.32, + "end": 404.52, + "probability": 1.0 + }, + { + "word": " taken", + "start": 404.52, + "end": 404.86, + "probability": 1.0 + }, + { + "word": " by", + "start": 404.86, + "end": 405.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 405.14, + "end": 405.26, + "probability": 1.0 + }, + { + "word": " scammers.", + "start": 405.26, + "end": 405.66, + "probability": 0.99755859375 + } + ] + }, + { + "id": 184, + "text": "And so these guys are out there kind of...", + "start": 406.2, + "end": 409.08, + "words": [ + { + "word": " And", + "start": 406.2, + "end": 406.8, + "probability": 0.8828125 + }, + { + "word": " so", + "start": 406.8, + "end": 407.46, + "probability": 0.99853515625 + }, + { + "word": " these", + "start": 407.46, + "end": 407.86, + "probability": 0.89892578125 + }, + { + "word": " guys", + "start": 407.86, + "end": 408.06, + "probability": 1.0 + }, + { + "word": " are", + "start": 408.06, + "end": 408.22, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 408.22, + "end": 408.36, + "probability": 1.0 + }, + { + "word": " there", + "start": 408.36, + "end": 408.58, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 408.58, + "end": 408.9, + "probability": 0.9033203125 + }, + { + "word": " of...", + "start": 408.9, + "end": 409.08, + "probability": 0.5 + } + ] + }, + { + "id": 185, + "text": "They're more like the 4chan and 8chan crowd that are reverse engineering the scammers and saying,", + "start": 409.8, + "end": 415.62, + "words": [ + { + "word": " They're", + "start": 409.8, + "end": 410.24, + "probability": 0.57958984375 + }, + { + "word": " more", + "start": 410.24, + "end": 410.48, + "probability": 0.984375 + }, + { + "word": " like", + "start": 410.48, + "end": 410.72, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 410.72, + "end": 410.88, + "probability": 0.998046875 + }, + { + "word": " 4chan", + "start": 410.88, + "end": 411.36, + "probability": 0.9736328125 + }, + { + "word": " and", + "start": 411.36, + "end": 411.64, + "probability": 0.798828125 + }, + { + "word": " 8chan", + "start": 411.64, + "end": 412.16, + "probability": 0.998046875 + }, + { + "word": " crowd", + "start": 412.16, + "end": 412.46, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 412.46, + "end": 412.8, + "probability": 0.9931640625 + }, + { + "word": " are", + "start": 412.8, + "end": 412.92, + "probability": 0.99951171875 + }, + { + "word": " reverse", + "start": 412.92, + "end": 413.66, + "probability": 0.99658203125 + }, + { + "word": " engineering", + "start": 413.66, + "end": 414.12, + "probability": 0.6953125 + }, + { + "word": " the", + "start": 414.12, + "end": 414.66, + "probability": 0.99951171875 + }, + { + "word": " scammers", + "start": 414.66, + "end": 415.1, + "probability": 1.0 + }, + { + "word": " and", + "start": 415.1, + "end": 415.32, + "probability": 0.9775390625 + }, + { + "word": " saying,", + "start": 415.32, + "end": 415.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 186, + "text": "well, you know what?", + "start": 415.66, + "end": 416.12, + "words": [ + { + "word": " well,", + "start": 415.66, + "end": 415.8, + "probability": 0.90771484375 + }, + { + "word": " you", + "start": 415.84, + "end": 415.92, + "probability": 1.0 + }, + { + "word": " know", + "start": 415.92, + "end": 415.98, + "probability": 1.0 + }, + { + "word": " what?", + "start": 415.98, + "end": 416.12, + "probability": 1.0 + } + ] + }, + { + "id": 187, + "text": "We're not going to let you get away with this.", + "start": 416.44, + "end": 417.98, + "words": [ + { + "word": " We're", + "start": 416.44, + "end": 416.88, + "probability": 1.0 + }, + { + "word": " not", + "start": 416.88, + "end": 416.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 416.96, + "end": 417.08, + "probability": 0.9873046875 + }, + { + "word": " to", + "start": 417.08, + "end": 417.14, + "probability": 1.0 + }, + { + "word": " let", + "start": 417.14, + "end": 417.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 417.24, + "end": 417.3, + "probability": 1.0 + }, + { + "word": " get", + "start": 417.3, + "end": 417.4, + "probability": 1.0 + }, + { + "word": " away", + "start": 417.4, + "end": 417.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 417.54, + "end": 417.7, + "probability": 1.0 + }, + { + "word": " this.", + "start": 417.7, + "end": 417.98, + "probability": 1.0 + } + ] + }, + { + "id": 188, + "text": "And a lot of them are just wasting time, which is great.", + "start": 418.28, + "end": 422.36, + "words": [ + { + "word": " And", + "start": 418.28, + "end": 418.72, + "probability": 0.90283203125 + }, + { + "word": " a", + "start": 418.72, + "end": 419.06, + "probability": 0.99072265625 + }, + { + "word": " lot", + "start": 419.06, + "end": 420.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 420.16, + "end": 420.26, + "probability": 1.0 + }, + { + "word": " them", + "start": 420.26, + "end": 420.36, + "probability": 1.0 + }, + { + "word": " are", + "start": 420.36, + "end": 420.46, + "probability": 1.0 + }, + { + "word": " just", + "start": 420.46, + "end": 420.6, + "probability": 1.0 + }, + { + "word": " wasting", + "start": 420.6, + "end": 421.02, + "probability": 1.0 + }, + { + "word": " time,", + "start": 421.02, + "end": 421.48, + "probability": 1.0 + }, + { + "word": " which", + "start": 421.62, + "end": 421.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 421.9, + "end": 422.04, + "probability": 1.0 + }, + { + "word": " great.", + "start": 422.04, + "end": 422.36, + "probability": 1.0 + } + ] + }, + { + "id": 189, + "text": "Because if they're on there trying to waste the time of the scammer,", + "start": 422.44, + "end": 426.3, + "words": [ + { + "word": " Because", + "start": 422.44, + "end": 422.64, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 422.64, + "end": 422.82, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 422.82, + "end": 422.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 422.98, + "end": 423.16, + "probability": 0.998046875 + }, + { + "word": " there", + "start": 423.16, + "end": 423.38, + "probability": 0.9990234375 + }, + { + "word": " trying", + "start": 423.38, + "end": 424.52, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 424.52, + "end": 424.78, + "probability": 1.0 + }, + { + "word": " waste", + "start": 424.78, + "end": 425.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 425.08, + "end": 425.3, + "probability": 1.0 + }, + { + "word": " time", + "start": 425.3, + "end": 425.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 425.58, + "end": 425.7, + "probability": 0.9609375 + }, + { + "word": " the", + "start": 425.7, + "end": 425.78, + "probability": 1.0 + }, + { + "word": " scammer,", + "start": 425.78, + "end": 426.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 190, + "text": "that person isn't out scamming somebody else at that moment, someone who's very much at risk.", + "start": 426.3, + "end": 431.3, + "words": [ + { + "word": " that", + "start": 426.3, + "end": 426.58, + "probability": 1.0 + }, + { + "word": " person", + "start": 426.58, + "end": 426.96, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 426.96, + "end": 427.28, + "probability": 1.0 + }, + { + "word": " out", + "start": 427.28, + "end": 427.42, + "probability": 1.0 + }, + { + "word": " scamming", + "start": 427.42, + "end": 427.92, + "probability": 0.99658203125 + }, + { + "word": " somebody", + "start": 427.92, + "end": 428.2, + "probability": 1.0 + }, + { + "word": " else", + "start": 428.2, + "end": 428.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 428.54, + "end": 428.72, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 428.72, + "end": 428.84, + "probability": 1.0 + }, + { + "word": " moment,", + "start": 428.84, + "end": 429.18, + "probability": 1.0 + }, + { + "word": " someone", + "start": 429.3, + "end": 429.52, + "probability": 0.99951171875 + }, + { + "word": " who's", + "start": 429.52, + "end": 430.06, + "probability": 0.791015625 + }, + { + "word": " very", + "start": 430.06, + "end": 430.6, + "probability": 1.0 + }, + { + "word": " much", + "start": 430.6, + "end": 430.8, + "probability": 1.0 + }, + { + "word": " at", + "start": 430.8, + "end": 430.96, + "probability": 1.0 + }, + { + "word": " risk.", + "start": 430.96, + "end": 431.3, + "probability": 1.0 + } + ] + }, + { + "id": 191, + "text": "And at least in my line of work during my day job, Mary, we deal with this every day,", + "start": 432.24, + "end": 438.34, + "words": [ + { + "word": " And", + "start": 432.24, + "end": 432.68, + "probability": 0.99560546875 + }, + { + "word": " at", + "start": 432.68, + "end": 433.12, + "probability": 0.99267578125 + }, + { + "word": " least", + "start": 433.12, + "end": 434.06, + "probability": 1.0 + }, + { + "word": " in", + "start": 434.06, + "end": 434.18, + "probability": 1.0 + }, + { + "word": " my", + "start": 434.18, + "end": 434.36, + "probability": 1.0 + }, + { + "word": " line", + "start": 434.36, + "end": 434.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 434.58, + "end": 434.66, + "probability": 1.0 + }, + { + "word": " work", + "start": 434.66, + "end": 434.88, + "probability": 1.0 + }, + { + "word": " during", + "start": 434.88, + "end": 435.7, + "probability": 0.5810546875 + }, + { + "word": " my", + "start": 435.7, + "end": 435.92, + "probability": 1.0 + }, + { + "word": " day", + "start": 435.92, + "end": 436.14, + "probability": 1.0 + }, + { + "word": " job,", + "start": 436.14, + "end": 436.52, + "probability": 1.0 + }, + { + "word": " Mary,", + "start": 436.6, + "end": 436.98, + "probability": 0.279541015625 + }, + { + "word": " we", + "start": 436.98, + "end": 437.16, + "probability": 1.0 + }, + { + "word": " deal", + "start": 437.16, + "end": 437.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 437.32, + "end": 437.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 437.46, + "end": 437.74, + "probability": 1.0 + }, + { + "word": " every", + "start": 437.74, + "end": 438.04, + "probability": 1.0 + }, + { + "word": " day,", + "start": 438.04, + "end": 438.34, + "probability": 1.0 + } + ] + }, + { + "id": 192, + "text": "right?", + "start": 438.42, + "end": 438.62, + "words": [ + { + "word": " right?", + "start": 438.42, + "end": 438.62, + "probability": 0.00223541259765625 + } + ] + }, + { + "id": 193, + "text": "Right.", + "start": 438.68, + "end": 438.96, + "words": [ + { + "word": " Right.", + "start": 438.68, + "end": 438.96, + "probability": 0.2177734375 + } + ] + }, + { + "id": 194, + "text": "Right.", + "start": 438.96, + "end": 439.14, + "words": [ + { + "word": " Right.", + "start": 438.96, + "end": 439.14, + "probability": 0.436767578125 + } + ] + }, + { + "id": 195, + "text": "", + "start": 439.14, + "end": 439.14, + "words": [] + }, + { + "id": 196, + "text": "", + "start": 439.14, + "end": 439.14, + "words": [] + }, + { + "id": 197, + "text": "", + "start": 439.14, + "end": 439.14, + "words": [] + }, + { + "id": 198, + "text": "", + "start": 439.14, + "end": 439.14, + "words": [] + }, + { + "id": 199, + "text": "", + "start": 439.14, + "end": 439.14, + "words": [] + }, + { + "id": 200, + "text": "", + "start": 439.14, + "end": 439.14, + "words": [] + }, + { + "id": 201, + "text": "And so I call up and say, well, you know, or they come into the shop and say, well, you know,", + "start": 439.16, + "end": 442.32, + "words": [ + { + "word": " And", + "start": 439.16, + "end": 439.24, + "probability": 0.1175537109375 + }, + { + "word": " so", + "start": 439.24, + "end": 439.24, + "probability": 0.14404296875 + }, + { + "word": " I", + "start": 439.24, + "end": 439.24, + "probability": 0.047576904296875 + }, + { + "word": " call", + "start": 439.24, + "end": 439.24, + "probability": 0.0083465576171875 + }, + { + "word": " up", + "start": 439.24, + "end": 439.28, + "probability": 0.9072265625 + }, + { + "word": " and", + "start": 439.28, + "end": 439.46, + "probability": 0.99462890625 + }, + { + "word": " say,", + "start": 439.46, + "end": 439.66, + "probability": 0.99658203125 + }, + { + "word": " well,", + "start": 439.74, + "end": 439.88, + "probability": 0.99267578125 + }, + { + "word": " you", + "start": 439.98, + "end": 440.3, + "probability": 0.82373046875 + }, + { + "word": " know,", + "start": 440.3, + "end": 440.54, + "probability": 1.0 + }, + { + "word": " or", + "start": 440.54, + "end": 440.78, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 440.78, + "end": 440.94, + "probability": 1.0 + }, + { + "word": " come", + "start": 440.94, + "end": 441.1, + "probability": 1.0 + }, + { + "word": " into", + "start": 441.1, + "end": 441.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 441.26, + "end": 441.36, + "probability": 1.0 + }, + { + "word": " shop", + "start": 441.36, + "end": 441.56, + "probability": 1.0 + }, + { + "word": " and", + "start": 441.56, + "end": 441.74, + "probability": 0.99951171875 + }, + { + "word": " say,", + "start": 441.74, + "end": 441.86, + "probability": 1.0 + }, + { + "word": " well,", + "start": 441.92, + "end": 442.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 442.08, + "end": 442.16, + "probability": 1.0 + }, + { + "word": " know,", + "start": 442.16, + "end": 442.32, + "probability": 1.0 + } + ] + }, + { + "id": 202, + "text": "I let this person onto my machine and they did horrible things and they gave me my credit card number.", + "start": 442.34, + "end": 446.76, + "words": [ + { + "word": " I", + "start": 442.34, + "end": 442.48, + "probability": 1.0 + }, + { + "word": " let", + "start": 442.48, + "end": 442.82, + "probability": 0.955078125 + }, + { + "word": " this", + "start": 442.82, + "end": 442.96, + "probability": 1.0 + }, + { + "word": " person", + "start": 442.96, + "end": 443.24, + "probability": 1.0 + }, + { + "word": " onto", + "start": 443.24, + "end": 443.4, + "probability": 0.94580078125 + }, + { + "word": " my", + "start": 443.4, + "end": 443.56, + "probability": 1.0 + }, + { + "word": " machine", + "start": 443.56, + "end": 443.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 443.9, + "end": 444.16, + "probability": 0.88671875 + }, + { + "word": " they", + "start": 444.16, + "end": 444.26, + "probability": 1.0 + }, + { + "word": " did", + "start": 444.26, + "end": 444.5, + "probability": 1.0 + }, + { + "word": " horrible", + "start": 444.5, + "end": 445.02, + "probability": 0.265625 + }, + { + "word": " things", + "start": 445.02, + "end": 445.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 445.48, + "end": 445.68, + "probability": 0.978515625 + }, + { + "word": " they", + "start": 445.68, + "end": 445.72, + "probability": 0.515625 + }, + { + "word": " gave", + "start": 445.72, + "end": 445.86, + "probability": 1.0 + }, + { + "word": " me", + "start": 445.86, + "end": 445.98, + "probability": 0.44189453125 + }, + { + "word": " my", + "start": 445.98, + "end": 446.1, + "probability": 1.0 + }, + { + "word": " credit", + "start": 446.1, + "end": 446.28, + "probability": 1.0 + }, + { + "word": " card", + "start": 446.28, + "end": 446.44, + "probability": 1.0 + }, + { + "word": " number.", + "start": 446.44, + "end": 446.76, + "probability": 1.0 + } + ] + }, + { + "id": 203, + "text": "And now I need you to fix my computer to make sure that it's secure.", + "start": 447.06, + "end": 450.06, + "words": [ + { + "word": " And", + "start": 447.06, + "end": 447.42, + "probability": 1.0 + }, + { + "word": " now", + "start": 447.42, + "end": 447.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 447.58, + "end": 447.68, + "probability": 1.0 + }, + { + "word": " need", + "start": 447.68, + "end": 447.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 447.78, + "end": 447.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 447.92, + "end": 447.96, + "probability": 1.0 + }, + { + "word": " fix", + "start": 447.96, + "end": 448.14, + "probability": 1.0 + }, + { + "word": " my", + "start": 448.14, + "end": 448.26, + "probability": 1.0 + }, + { + "word": " computer", + "start": 448.26, + "end": 448.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 448.6, + "end": 449.08, + "probability": 1.0 + }, + { + "word": " make", + "start": 449.08, + "end": 449.24, + "probability": 1.0 + }, + { + "word": " sure", + "start": 449.24, + "end": 449.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 449.42, + "end": 449.58, + "probability": 1.0 + }, + { + "word": " it's", + "start": 449.58, + "end": 449.78, + "probability": 1.0 + }, + { + "word": " secure.", + "start": 449.78, + "end": 450.06, + "probability": 1.0 + } + ] + }, + { + "id": 204, + "text": "So there's definitely a lot of money, not just directly like the, you know,", + "start": 451.7, + "end": 455.7, + "words": [ + { + "word": " So", + "start": 451.7, + "end": 452.06, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 452.06, + "end": 452.42, + "probability": 0.974609375 + }, + { + "word": " definitely", + "start": 452.42, + "end": 452.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 452.82, + "end": 453.08, + "probability": 1.0 + }, + { + "word": " lot", + "start": 453.08, + "end": 453.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 453.22, + "end": 453.32, + "probability": 1.0 + }, + { + "word": " money,", + "start": 453.32, + "end": 453.48, + "probability": 1.0 + }, + { + "word": " not", + "start": 453.54, + "end": 453.64, + "probability": 1.0 + }, + { + "word": " just", + "start": 453.64, + "end": 453.88, + "probability": 1.0 + }, + { + "word": " directly", + "start": 453.88, + "end": 454.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 454.54, + "end": 455.04, + "probability": 0.982421875 + }, + { + "word": " the,", + "start": 455.04, + "end": 455.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 455.3, + "end": 455.52, + "probability": 1.0 + }, + { + "word": " know,", + "start": 455.52, + "end": 455.7, + "probability": 1.0 + } + ] + }, + { + "id": 205, + "text": "the billions of dollars that were lost directly to scammers,", + "start": 455.7, + "end": 459.0, + "words": [ + { + "word": " the", + "start": 455.7, + "end": 455.82, + "probability": 1.0 + }, + { + "word": " billions", + "start": 455.82, + "end": 456.26, + "probability": 0.99169921875 + }, + { + "word": " of", + "start": 456.26, + "end": 456.58, + "probability": 1.0 + }, + { + "word": " dollars", + "start": 456.58, + "end": 456.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 456.82, + "end": 457.04, + "probability": 1.0 + }, + { + "word": " were", + "start": 457.04, + "end": 457.14, + "probability": 1.0 + }, + { + "word": " lost", + "start": 457.14, + "end": 457.48, + "probability": 1.0 + }, + { + "word": " directly", + "start": 457.48, + "end": 458.14, + "probability": 1.0 + }, + { + "word": " to", + "start": 458.14, + "end": 458.56, + "probability": 1.0 + }, + { + "word": " scammers,", + "start": 458.56, + "end": 459.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 206, + "text": "but there's an entire secondary market where now these people have to go and have their computer looked at", + "start": 459.06, + "end": 464.86, + "words": [ + { + "word": " but", + "start": 459.06, + "end": 459.18, + "probability": 1.0 + }, + { + "word": " there's", + "start": 459.18, + "end": 459.48, + "probability": 1.0 + }, + { + "word": " an", + "start": 459.48, + "end": 459.62, + "probability": 0.32763671875 + }, + { + "word": " entire", + "start": 459.62, + "end": 460.8, + "probability": 1.0 + }, + { + "word": " secondary", + "start": 460.8, + "end": 461.26, + "probability": 1.0 + }, + { + "word": " market", + "start": 461.26, + "end": 461.74, + "probability": 1.0 + }, + { + "word": " where", + "start": 461.74, + "end": 462.52, + "probability": 0.99951171875 + }, + { + "word": " now", + "start": 462.52, + "end": 463.1, + "probability": 1.0 + }, + { + "word": " these", + "start": 463.1, + "end": 463.26, + "probability": 1.0 + }, + { + "word": " people", + "start": 463.26, + "end": 463.46, + "probability": 1.0 + }, + { + "word": " have", + "start": 463.46, + "end": 463.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 463.58, + "end": 463.72, + "probability": 1.0 + }, + { + "word": " go", + "start": 463.72, + "end": 463.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 463.8, + "end": 463.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 463.9, + "end": 464.04, + "probability": 1.0 + }, + { + "word": " their", + "start": 464.04, + "end": 464.14, + "probability": 1.0 + }, + { + "word": " computer", + "start": 464.14, + "end": 464.4, + "probability": 1.0 + }, + { + "word": " looked", + "start": 464.4, + "end": 464.62, + "probability": 1.0 + }, + { + "word": " at", + "start": 464.62, + "end": 464.86, + "probability": 1.0 + } + ] + }, + { + "id": 207, + "text": "and they end up spending money with places like me or, you know, Best Buy or somebody.", + "start": 464.86, + "end": 469.04, + "words": [ + { + "word": " and", + "start": 464.86, + "end": 465.14, + "probability": 0.6826171875 + }, + { + "word": " they", + "start": 465.14, + "end": 465.54, + "probability": 1.0 + }, + { + "word": " end", + "start": 465.54, + "end": 465.68, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 465.68, + "end": 465.8, + "probability": 1.0 + }, + { + "word": " spending", + "start": 465.8, + "end": 465.98, + "probability": 1.0 + }, + { + "word": " money", + "start": 465.98, + "end": 466.24, + "probability": 1.0 + }, + { + "word": " with", + "start": 466.24, + "end": 466.54, + "probability": 1.0 + }, + { + "word": " places", + "start": 466.54, + "end": 466.8, + "probability": 0.9912109375 + }, + { + "word": " like", + "start": 466.8, + "end": 467.26, + "probability": 1.0 + }, + { + "word": " me", + "start": 467.26, + "end": 467.48, + "probability": 0.9990234375 + }, + { + "word": " or,", + "start": 467.48, + "end": 467.96, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 467.96, + "end": 468.24, + "probability": 1.0 + }, + { + "word": " know,", + "start": 468.24, + "end": 468.36, + "probability": 1.0 + }, + { + "word": " Best", + "start": 468.36, + "end": 468.52, + "probability": 0.9970703125 + }, + { + "word": " Buy", + "start": 468.52, + "end": 468.7, + "probability": 0.9970703125 + }, + { + "word": " or", + "start": 468.7, + "end": 468.84, + "probability": 0.9912109375 + }, + { + "word": " somebody.", + "start": 468.84, + "end": 469.04, + "probability": 0.93798828125 + } + ] + }, + { + "id": 208, + "text": "Right.", + "start": 469.16, + "end": 469.36, + "words": [ + { + "word": " Right.", + "start": 469.16, + "end": 469.36, + "probability": 0.0021572113037109375 + } + ] + }, + { + "id": 209, + "text": "Or somebody else to try to get their machine back in a working state afterwards.", + "start": 469.36, + "end": 472.98, + "words": [ + { + "word": " Or", + "start": 469.36, + "end": 469.36, + "probability": 0.0017042160034179688 + }, + { + "word": " somebody", + "start": 469.36, + "end": 469.36, + "probability": 0.000213623046875 + }, + { + "word": " else", + "start": 469.36, + "end": 469.36, + "probability": 0.947265625 + }, + { + "word": " to", + "start": 469.36, + "end": 470.08, + "probability": 0.93505859375 + }, + { + "word": " try", + "start": 470.08, + "end": 470.58, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 470.58, + "end": 470.74, + "probability": 0.998046875 + }, + { + "word": " get", + "start": 470.74, + "end": 470.88, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 470.88, + "end": 471.0, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 471.0, + "end": 471.26, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 471.26, + "end": 471.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 471.54, + "end": 471.78, + "probability": 0.9541015625 + }, + { + "word": " a", + "start": 471.78, + "end": 471.82, + "probability": 0.9990234375 + }, + { + "word": " working", + "start": 471.82, + "end": 472.04, + "probability": 1.0 + }, + { + "word": " state", + "start": 472.04, + "end": 472.36, + "probability": 0.9990234375 + }, + { + "word": " afterwards.", + "start": 472.36, + "end": 472.98, + "probability": 0.99755859375 + } + ] + }, + { + "id": 210, + "text": "So there's an indirect market or loss involved with that also,", + "start": 473.48, + "end": 476.9, + "words": [ + { + "word": " So", + "start": 473.48, + "end": 473.96, + "probability": 0.98876953125 + }, + { + "word": " there's", + "start": 473.96, + "end": 474.2, + "probability": 0.96142578125 + }, + { + "word": " an", + "start": 474.2, + "end": 474.24, + "probability": 1.0 + }, + { + "word": " indirect", + "start": 474.24, + "end": 474.62, + "probability": 1.0 + }, + { + "word": " market", + "start": 474.62, + "end": 475.2, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 475.2, + "end": 475.4, + "probability": 0.9990234375 + }, + { + "word": " loss", + "start": 475.4, + "end": 475.7, + "probability": 1.0 + }, + { + "word": " involved", + "start": 475.7, + "end": 476.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 476.06, + "end": 476.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 476.38, + "end": 476.52, + "probability": 1.0 + }, + { + "word": " also,", + "start": 476.52, + "end": 476.9, + "probability": 0.99462890625 + } + ] + }, + { + "id": 211, + "text": "which I assume is going to be probably on par with that original number, right?", + "start": 476.98, + "end": 482.5, + "words": [ + { + "word": " which", + "start": 476.98, + "end": 477.76, + "probability": 1.0 + }, + { + "word": " I", + "start": 477.76, + "end": 478.06, + "probability": 1.0 + }, + { + "word": " assume", + "start": 478.06, + "end": 478.46, + "probability": 1.0 + }, + { + "word": " is", + "start": 478.46, + "end": 478.64, + "probability": 1.0 + }, + { + "word": " going", + "start": 478.64, + "end": 478.76, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 478.76, + "end": 478.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 478.9, + "end": 479.06, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 479.06, + "end": 480.08, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 480.08, + "end": 480.48, + "probability": 1.0 + }, + { + "word": " par", + "start": 480.48, + "end": 480.78, + "probability": 1.0 + }, + { + "word": " with", + "start": 480.78, + "end": 481.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 481.04, + "end": 481.2, + "probability": 1.0 + }, + { + "word": " original", + "start": 481.2, + "end": 481.48, + "probability": 0.99951171875 + }, + { + "word": " number,", + "start": 481.48, + "end": 481.96, + "probability": 1.0 + }, + { + "word": " right?", + "start": 482.1, + "end": 482.5, + "probability": 0.99365234375 + } + ] + }, + { + "id": 212, + "text": "Because they're going to take a couple hundred dollars from,", + "start": 482.56, + "end": 484.28, + "words": [ + { + "word": " Because", + "start": 482.56, + "end": 482.74, + "probability": 0.99853515625 + }, + { + "word": " they're", + "start": 482.74, + "end": 482.9, + "probability": 1.0 + }, + { + "word": " going", + "start": 482.9, + "end": 482.98, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 482.98, + "end": 483.02, + "probability": 1.0 + }, + { + "word": " take", + "start": 483.02, + "end": 483.18, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 483.18, + "end": 483.3, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 483.3, + "end": 483.5, + "probability": 0.99951171875 + }, + { + "word": " hundred", + "start": 483.5, + "end": 483.62, + "probability": 0.80859375 + }, + { + "word": " dollars", + "start": 483.62, + "end": 484.04, + "probability": 0.99951171875 + }, + { + "word": " from,", + "start": 484.04, + "end": 484.28, + "probability": 0.970703125 + } + ] + }, + { + "id": 213, + "text": "or up to $400 on average from every person that they deal with.", + "start": 484.36, + "end": 488.68, + "words": [ + { + "word": " or", + "start": 484.36, + "end": 484.62, + "probability": 1.0 + }, + { + "word": " up", + "start": 484.62, + "end": 484.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 484.92, + "end": 485.06, + "probability": 1.0 + }, + { + "word": " $400", + "start": 485.06, + "end": 485.52, + "probability": 0.98974609375 + }, + { + "word": " on", + "start": 485.52, + "end": 485.96, + "probability": 0.99853515625 + }, + { + "word": " average", + "start": 485.96, + "end": 486.32, + "probability": 1.0 + }, + { + "word": " from", + "start": 486.32, + "end": 486.66, + "probability": 0.99072265625 + }, + { + "word": " every", + "start": 486.66, + "end": 486.98, + "probability": 1.0 + }, + { + "word": " person", + "start": 486.98, + "end": 487.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 487.58, + "end": 488.04, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 488.04, + "end": 488.2, + "probability": 1.0 + }, + { + "word": " deal", + "start": 488.2, + "end": 488.42, + "probability": 1.0 + }, + { + "word": " with.", + "start": 488.42, + "end": 488.68, + "probability": 1.0 + } + ] + }, + { + "id": 214, + "text": "And then you're, that person then has to go and spend another, you know,", + "start": 489.18, + "end": 492.42, + "words": [ + { + "word": " And", + "start": 489.18, + "end": 489.66, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 489.66, + "end": 490.02, + "probability": 0.9775390625 + }, + { + "word": " you're,", + "start": 490.02, + "end": 490.26, + "probability": 0.8291015625 + }, + { + "word": " that", + "start": 490.28, + "end": 490.52, + "probability": 0.99951171875 + }, + { + "word": " person", + "start": 490.52, + "end": 490.88, + "probability": 1.0 + }, + { + "word": " then", + "start": 490.88, + "end": 491.0, + "probability": 1.0 + }, + { + "word": " has", + "start": 491.0, + "end": 491.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 491.18, + "end": 491.26, + "probability": 1.0 + }, + { + "word": " go", + "start": 491.26, + "end": 491.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 491.38, + "end": 491.46, + "probability": 1.0 + }, + { + "word": " spend", + "start": 491.46, + "end": 491.64, + "probability": 1.0 + }, + { + "word": " another,", + "start": 491.64, + "end": 491.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 491.98, + "end": 492.34, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 492.34, + "end": 492.42, + "probability": 1.0 + } + ] + }, + { + "id": 215, + "text": "$150 to $200 to get their machine fixed up afterwards.", + "start": 492.42, + "end": 495.28, + "words": [ + { + "word": " $150", + "start": 492.42, + "end": 492.84, + "probability": 0.7724609375 + }, + { + "word": " to", + "start": 492.84, + "end": 493.02, + "probability": 1.0 + }, + { + "word": " $200", + "start": 493.02, + "end": 493.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 493.36, + "end": 493.68, + "probability": 1.0 + }, + { + "word": " get", + "start": 493.68, + "end": 493.8, + "probability": 1.0 + }, + { + "word": " their", + "start": 493.8, + "end": 493.92, + "probability": 1.0 + }, + { + "word": " machine", + "start": 493.92, + "end": 494.2, + "probability": 1.0 + }, + { + "word": " fixed", + "start": 494.2, + "end": 494.72, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 494.72, + "end": 494.92, + "probability": 1.0 + }, + { + "word": " afterwards.", + "start": 494.92, + "end": 495.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 216, + "text": "So that's, that's a huge amount of money that's out there in the world.", + "start": 496.11999999999995, + "end": 499.14, + "words": [ + { + "word": " So", + "start": 496.11999999999995, + "end": 496.59999999999997, + "probability": 0.99951171875 + }, + { + "word": " that's,", + "start": 496.59999999999997, + "end": 497.08, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 497.08, + "end": 497.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 497.24, + "end": 497.32, + "probability": 0.99951171875 + }, + { + "word": " huge", + "start": 497.32, + "end": 497.62, + "probability": 1.0 + }, + { + "word": " amount", + "start": 497.62, + "end": 497.86, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 497.86, + "end": 497.98, + "probability": 0.99951171875 + }, + { + "word": " money", + "start": 497.98, + "end": 498.16, + "probability": 1.0 + }, + { + "word": " that's", + "start": 498.16, + "end": 498.38, + "probability": 0.9873046875 + }, + { + "word": " out", + "start": 498.38, + "end": 498.52, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 498.52, + "end": 498.72, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 498.72, + "end": 498.86, + "probability": 0.93359375 + }, + { + "word": " the", + "start": 498.86, + "end": 498.9, + "probability": 0.99951171875 + }, + { + "word": " world.", + "start": 498.9, + "end": 499.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 217, + "text": "Just because, because people are, well, on two sides of it,", + "start": 499.16, + "end": 504.22, + "words": [ + { + "word": " Just", + "start": 499.16, + "end": 499.4, + "probability": 0.1370849609375 + }, + { + "word": " because,", + "start": 499.4, + "end": 500.76, + "probability": 0.91455078125 + }, + { + "word": " because", + "start": 501.06, + "end": 501.58, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 501.58, + "end": 501.94, + "probability": 1.0 + }, + { + "word": " are,", + "start": 501.94, + "end": 502.82, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 502.9, + "end": 503.2, + "probability": 0.99560546875 + }, + { + "word": " on", + "start": 503.24, + "end": 503.44, + "probability": 0.99951171875 + }, + { + "word": " two", + "start": 503.44, + "end": 503.68, + "probability": 0.99951171875 + }, + { + "word": " sides", + "start": 503.68, + "end": 503.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 503.96, + "end": 504.14, + "probability": 1.0 + }, + { + "word": " it,", + "start": 504.14, + "end": 504.22, + "probability": 1.0 + } + ] + }, + { + "id": 218, + "text": "you've got the gullibility of the user side,", + "start": 504.28, + "end": 507.08, + "words": [ + { + "word": " you've", + "start": 504.28, + "end": 504.4, + "probability": 0.998046875 + }, + { + "word": " got", + "start": 504.4, + "end": 504.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 504.5, + "end": 504.72, + "probability": 1.0 + }, + { + "word": " gullibility", + "start": 504.72, + "end": 505.26, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 505.26, + "end": 505.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 505.8, + "end": 506.06, + "probability": 1.0 + }, + { + "word": " user", + "start": 506.06, + "end": 506.7, + "probability": 1.0 + }, + { + "word": " side,", + "start": 506.7, + "end": 507.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 219, + "text": "but you also have the, the,", + "start": 507.52, + "end": 509.2, + "words": [ + { + "word": " but", + "start": 507.52, + "end": 507.9, + "probability": 1.0 + }, + { + "word": " you", + "start": 507.9, + "end": 508.02, + "probability": 1.0 + }, + { + "word": " also", + "start": 508.02, + "end": 508.18, + "probability": 1.0 + }, + { + "word": " have", + "start": 508.18, + "end": 508.5, + "probability": 1.0 + }, + { + "word": " the,", + "start": 508.5, + "end": 508.84, + "probability": 1.0 + }, + { + "word": " the,", + "start": 508.84, + "end": 509.2, + "probability": 1.0 + } + ] + }, + { + "id": 220, + "text": "the aspect of it where you've got people that are just preying upon others.", + "start": 509.22, + "end": 512.44, + "words": [ + { + "word": " the", + "start": 509.22, + "end": 509.64, + "probability": 1.0 + }, + { + "word": " aspect", + "start": 509.64, + "end": 509.96, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 509.96, + "end": 510.28, + "probability": 1.0 + }, + { + "word": " it", + "start": 510.28, + "end": 510.4, + "probability": 1.0 + }, + { + "word": " where", + "start": 510.4, + "end": 510.54, + "probability": 0.9970703125 + }, + { + "word": " you've", + "start": 510.54, + "end": 510.7, + "probability": 1.0 + }, + { + "word": " got", + "start": 510.7, + "end": 510.82, + "probability": 1.0 + }, + { + "word": " people", + "start": 510.82, + "end": 511.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 511.06, + "end": 511.18, + "probability": 1.0 + }, + { + "word": " are", + "start": 511.18, + "end": 511.26, + "probability": 1.0 + }, + { + "word": " just", + "start": 511.26, + "end": 511.4, + "probability": 1.0 + }, + { + "word": " preying", + "start": 511.4, + "end": 511.8, + "probability": 0.98876953125 + }, + { + "word": " upon", + "start": 511.8, + "end": 512.0, + "probability": 0.99951171875 + }, + { + "word": " others.", + "start": 512.0, + "end": 512.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 221, + "text": "And you're going to see a lot of this with people who have like regular phone lines.", + "start": 516.7, + "end": 521.58, + "words": [ + { + "word": " And", + "start": 516.7, + "end": 517.08, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 517.08, + "end": 517.46, + "probability": 0.98828125 + }, + { + "word": " going", + "start": 517.46, + "end": 517.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 517.56, + "end": 517.66, + "probability": 1.0 + }, + { + "word": " see", + "start": 517.66, + "end": 517.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 517.82, + "end": 517.92, + "probability": 1.0 + }, + { + "word": " lot", + "start": 517.92, + "end": 518.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 518.04, + "end": 518.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 518.14, + "end": 518.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 518.32, + "end": 519.26, + "probability": 0.9521484375 + }, + { + "word": " people", + "start": 519.26, + "end": 520.06, + "probability": 1.0 + }, + { + "word": " who", + "start": 520.06, + "end": 520.24, + "probability": 1.0 + }, + { + "word": " have", + "start": 520.24, + "end": 520.4, + "probability": 1.0 + }, + { + "word": " like", + "start": 520.4, + "end": 520.6, + "probability": 0.9931640625 + }, + { + "word": " regular", + "start": 520.6, + "end": 521.0, + "probability": 0.99951171875 + }, + { + "word": " phone", + "start": 521.0, + "end": 521.22, + "probability": 1.0 + }, + { + "word": " lines.", + "start": 521.22, + "end": 521.58, + "probability": 1.0 + } + ] + }, + { + "id": 222, + "text": "Like if you have a landline in your house,", + "start": 521.92, + "end": 523.66, + "words": [ + { + "word": " Like", + "start": 521.92, + "end": 522.3, + "probability": 0.9970703125 + }, + { + "word": " if", + "start": 522.3, + "end": 522.46, + "probability": 0.984375 + }, + { + "word": " you", + "start": 522.46, + "end": 522.58, + "probability": 1.0 + }, + { + "word": " have", + "start": 522.58, + "end": 522.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 522.72, + "end": 522.82, + "probability": 1.0 + }, + { + "word": " landline", + "start": 522.82, + "end": 523.26, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 523.26, + "end": 523.38, + "probability": 1.0 + }, + { + "word": " your", + "start": 523.38, + "end": 523.46, + "probability": 1.0 + }, + { + "word": " house,", + "start": 523.46, + "end": 523.66, + "probability": 1.0 + } + ] + }, + { + "id": 223, + "text": "you're much more likely to be contacted by these types of people.", + "start": 523.68, + "end": 527.62, + "words": [ + { + "word": " you're", + "start": 523.68, + "end": 523.82, + "probability": 1.0 + }, + { + "word": " much", + "start": 523.82, + "end": 524.08, + "probability": 1.0 + }, + { + "word": " more", + "start": 524.08, + "end": 524.3, + "probability": 1.0 + }, + { + "word": " likely", + "start": 524.3, + "end": 524.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 524.6, + "end": 524.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 524.78, + "end": 525.34, + "probability": 0.83251953125 + }, + { + "word": " contacted", + "start": 525.34, + "end": 526.46, + "probability": 0.99951171875 + }, + { + "word": " by", + "start": 526.46, + "end": 526.82, + "probability": 1.0 + }, + { + "word": " these", + "start": 526.82, + "end": 527.0, + "probability": 0.9990234375 + }, + { + "word": " types", + "start": 527.0, + "end": 527.2, + "probability": 0.85888671875 + }, + { + "word": " of", + "start": 527.2, + "end": 527.38, + "probability": 1.0 + }, + { + "word": " people.", + "start": 527.38, + "end": 527.62, + "probability": 1.0 + } + ] + }, + { + "id": 224, + "text": "Like,", + "start": 528.04, + "end": 528.42, + "words": [ + { + "word": " Like,", + "start": 528.04, + "end": 528.42, + "probability": 0.99755859375 + } + ] + }, + { + "id": 225, + "text": "I never get the call.", + "start": 528.48, + "end": 529.14, + "words": [ + { + "word": " I", + "start": 528.48, + "end": 528.54, + "probability": 0.974609375 + }, + { + "word": " never", + "start": 528.54, + "end": 528.7, + "probability": 0.9970703125 + }, + { + "word": " get", + "start": 528.7, + "end": 528.88, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 528.88, + "end": 529.0, + "probability": 0.9970703125 + }, + { + "word": " call.", + "start": 529.0, + "end": 529.14, + "probability": 0.77685546875 + } + ] + }, + { + "id": 226, + "text": "I don't get the calls anymore, right?", + "start": 529.16, + "end": 530.3, + "words": [ + { + "word": " I", + "start": 529.16, + "end": 529.58, + "probability": 0.00429534912109375 + }, + { + "word": " don't", + "start": 529.58, + "end": 529.58, + "probability": 0.8251953125 + }, + { + "word": " get", + "start": 529.58, + "end": 529.58, + "probability": 0.029815673828125 + }, + { + "word": " the", + "start": 529.58, + "end": 529.58, + "probability": 0.0155487060546875 + }, + { + "word": " calls", + "start": 529.58, + "end": 529.58, + "probability": 0.8486328125 + }, + { + "word": " anymore,", + "start": 529.58, + "end": 529.58, + "probability": 0.99267578125 + }, + { + "word": " right?", + "start": 529.82, + "end": 530.3, + "probability": 0.68896484375 + } + ] + }, + { + "id": 227, + "text": "Just because I'm cell phone only.", + "start": 530.32, + "end": 531.62, + "words": [ + { + "word": " Just", + "start": 530.32, + "end": 530.48, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 530.48, + "end": 530.68, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 530.68, + "end": 530.9, + "probability": 1.0 + }, + { + "word": " cell", + "start": 530.9, + "end": 531.1, + "probability": 0.99462890625 + }, + { + "word": " phone", + "start": 531.1, + "end": 531.3, + "probability": 0.99951171875 + }, + { + "word": " only.", + "start": 531.3, + "end": 531.62, + "probability": 0.990234375 + } + ] + }, + { + "id": 228, + "text": "I don't have any landlines,", + "start": 531.78, + "end": 533.06, + "words": [ + { + "word": " I", + "start": 531.78, + "end": 531.94, + "probability": 1.0 + }, + { + "word": " don't", + "start": 531.94, + "end": 532.12, + "probability": 1.0 + }, + { + "word": " have", + "start": 532.12, + "end": 532.3, + "probability": 1.0 + }, + { + "word": " any", + "start": 532.3, + "end": 532.54, + "probability": 1.0 + }, + { + "word": " landlines,", + "start": 532.54, + "end": 533.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 229, + "text": "but people who have landlines get these calls all the time.", + "start": 533.58, + "end": 537.2, + "words": [ + { + "word": " but", + "start": 533.58, + "end": 534.1, + "probability": 1.0 + }, + { + "word": " people", + "start": 534.1, + "end": 534.48, + "probability": 1.0 + }, + { + "word": " who", + "start": 534.48, + "end": 534.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 534.66, + "end": 534.94, + "probability": 1.0 + }, + { + "word": " landlines", + "start": 534.94, + "end": 535.44, + "probability": 1.0 + }, + { + "word": " get", + "start": 535.44, + "end": 535.64, + "probability": 0.99658203125 + }, + { + "word": " these", + "start": 535.64, + "end": 535.84, + "probability": 1.0 + }, + { + "word": " calls", + "start": 535.84, + "end": 536.14, + "probability": 1.0 + }, + { + "word": " all", + "start": 536.14, + "end": 536.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 536.76, + "end": 536.92, + "probability": 1.0 + }, + { + "word": " time.", + "start": 536.92, + "end": 537.2, + "probability": 1.0 + } + ] + }, + { + "id": 230, + "text": "Cell phones are being attacked all the time.", + "start": 537.4, + "end": 540.02, + "words": [ + { + "word": " Cell", + "start": 537.4, + "end": 537.9, + "probability": 0.99853515625 + }, + { + "word": " phones", + "start": 537.9, + "end": 538.26, + "probability": 1.0 + }, + { + "word": " are", + "start": 538.26, + "end": 538.54, + "probability": 1.0 + }, + { + "word": " being", + "start": 538.54, + "end": 538.92, + "probability": 0.9931640625 + }, + { + "word": " attacked", + "start": 538.92, + "end": 539.26, + "probability": 1.0 + }, + { + "word": " all", + "start": 539.26, + "end": 539.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 539.6, + "end": 539.7, + "probability": 1.0 + }, + { + "word": " time.", + "start": 539.7, + "end": 540.02, + "probability": 1.0 + } + ] + }, + { + "id": 231, + "text": "Now, member card services.", + "start": 540.04, + "end": 541.5, + "words": [ + { + "word": " Now,", + "start": 540.04, + "end": 540.28, + "probability": 0.99169921875 + }, + { + "word": " member", + "start": 540.3, + "end": 540.58, + "probability": 0.99267578125 + }, + { + "word": " card", + "start": 540.58, + "end": 540.88, + "probability": 0.99951171875 + }, + { + "word": " services.", + "start": 540.88, + "end": 541.5, + "probability": 1.0 + } + ] + }, + { + "id": 232, + "text": "Yeah, that's a big one.", + "start": 541.88, + "end": 543.62, + "words": [ + { + "word": " Yeah,", + "start": 541.88, + "end": 542.4, + "probability": 0.8330078125 + }, + { + "word": " that's", + "start": 542.46, + "end": 542.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 542.64, + "end": 542.74, + "probability": 1.0 + }, + { + "word": " big", + "start": 542.74, + "end": 543.32, + "probability": 1.0 + }, + { + "word": " one.", + "start": 543.32, + "end": 543.62, + "probability": 1.0 + } + ] + }, + { + "id": 233, + "text": "And before you go back on that and you,", + "start": 544.82, + "end": 547.54, + "words": [ + { + "word": " And", + "start": 544.82, + "end": 545.34, + "probability": 0.44091796875 + }, + { + "word": " before", + "start": 545.34, + "end": 545.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 545.74, + "end": 545.94, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 545.94, + "end": 546.06, + "probability": 1.0 + }, + { + "word": " back", + "start": 546.06, + "end": 546.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 546.32, + "end": 546.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 546.48, + "end": 546.72, + "probability": 1.0 + }, + { + "word": " and", + "start": 546.72, + "end": 547.28, + "probability": 0.97265625 + }, + { + "word": " you,", + "start": 547.28, + "end": 547.54, + "probability": 1.0 + } + ] + }, + { + "id": 234, + "text": "you hit the nail on the head,", + "start": 547.58, + "end": 549.06, + "words": [ + { + "word": " you", + "start": 547.58, + "end": 547.74, + "probability": 1.0 + }, + { + "word": " hit", + "start": 547.74, + "end": 547.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 547.98, + "end": 548.22, + "probability": 1.0 + }, + { + "word": " nail", + "start": 548.22, + "end": 548.48, + "probability": 1.0 + }, + { + "word": " on", + "start": 548.48, + "end": 548.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 548.72, + "end": 548.88, + "probability": 1.0 + }, + { + "word": " head,", + "start": 548.88, + "end": 549.06, + "probability": 1.0 + } + ] + }, + { + "id": 235, + "text": "what do scam baiters do?", + "start": 549.18, + "end": 550.68, + "words": [ + { + "word": " what", + "start": 549.18, + "end": 549.4, + "probability": 1.0 + }, + { + "word": " do", + "start": 549.4, + "end": 549.6, + "probability": 1.0 + }, + { + "word": " scam", + "start": 549.6, + "end": 549.88, + "probability": 0.5546875 + }, + { + "word": " baiters", + "start": 549.88, + "end": 550.46, + "probability": 0.9921875 + }, + { + "word": " do?", + "start": 550.46, + "end": 550.68, + "probability": 1.0 + } + ] + }, + { + "id": 236, + "text": "Their whole goal is to waste their time hours on end.", + "start": 550.84, + "end": 556.18, + "words": [ + { + "word": " Their", + "start": 550.84, + "end": 551.3, + "probability": 0.9990234375 + }, + { + "word": " whole", + "start": 551.3, + "end": 551.64, + "probability": 1.0 + }, + { + "word": " goal", + "start": 551.64, + "end": 552.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 552.16, + "end": 552.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 552.54, + "end": 552.74, + "probability": 1.0 + }, + { + "word": " waste", + "start": 552.74, + "end": 553.14, + "probability": 0.99853515625 + }, + { + "word": " their", + "start": 553.14, + "end": 553.84, + "probability": 0.99755859375 + }, + { + "word": " time", + "start": 553.84, + "end": 554.5, + "probability": 0.99951171875 + }, + { + "word": " hours", + "start": 554.5, + "end": 555.32, + "probability": 0.70654296875 + }, + { + "word": " on", + "start": 555.32, + "end": 555.78, + "probability": 0.99951171875 + }, + { + "word": " end.", + "start": 555.78, + "end": 556.18, + "probability": 1.0 + } + ] + }, + { + "id": 237, + "text": "And even right now,", + "start": 556.26, + "end": 557.76, + "words": [ + { + "word": " And", + "start": 556.26, + "end": 556.76, + "probability": 0.9990234375 + }, + { + "word": " even", + "start": 556.76, + "end": 557.08, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 557.08, + "end": 557.44, + "probability": 1.0 + }, + { + "word": " now,", + "start": 557.44, + "end": 557.76, + "probability": 1.0 + } + ] + }, + { + "id": 238, + "text": "as we speak,", + "start": 557.78, + "end": 558.78, + "words": [ + { + "word": " as", + "start": 557.78, + "end": 558.02, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 558.02, + "end": 558.32, + "probability": 1.0 + }, + { + "word": " speak,", + "start": 558.32, + "end": 558.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 239, + "text": "and you can go to YouTube and look up scam baiting or IRS scam.", + "start": 559.16, + "end": 564.08, + "words": [ + { + "word": " and", + "start": 559.16, + "end": 559.64, + "probability": 0.46728515625 + }, + { + "word": " you", + "start": 559.64, + "end": 559.76, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 559.76, + "end": 559.94, + "probability": 1.0 + }, + { + "word": " go", + "start": 559.94, + "end": 560.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 560.16, + "end": 560.42, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 560.42, + "end": 561.0, + "probability": 0.98046875 + }, + { + "word": " and", + "start": 561.0, + "end": 561.76, + "probability": 0.99169921875 + }, + { + "word": " look", + "start": 561.76, + "end": 562.04, + "probability": 1.0 + }, + { + "word": " up", + "start": 562.04, + "end": 562.22, + "probability": 1.0 + }, + { + "word": " scam", + "start": 562.22, + "end": 562.52, + "probability": 0.338623046875 + }, + { + "word": " baiting", + "start": 562.52, + "end": 563.02, + "probability": 0.9873046875 + }, + { + "word": " or", + "start": 563.02, + "end": 563.16, + "probability": 0.9921875 + }, + { + "word": " IRS", + "start": 563.16, + "end": 563.68, + "probability": 0.994140625 + }, + { + "word": " scam.", + "start": 563.68, + "end": 564.08, + "probability": 0.99755859375 + } + ] + }, + { + "id": 240, + "text": "There is a live stream now and there's a series of five or six,", + "start": 564.28, + "end": 569.02, + "words": [ + { + "word": " There", + "start": 564.28, + "end": 564.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 564.68, + "end": 565.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 565.0, + "end": 565.24, + "probability": 1.0 + }, + { + "word": " live", + "start": 565.24, + "end": 565.6, + "probability": 0.99658203125 + }, + { + "word": " stream", + "start": 565.6, + "end": 566.0, + "probability": 1.0 + }, + { + "word": " now", + "start": 566.0, + "end": 566.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 566.38, + "end": 566.56, + "probability": 0.09100341796875 + }, + { + "word": " there's", + "start": 566.56, + "end": 566.78, + "probability": 0.9677734375 + }, + { + "word": " a", + "start": 566.78, + "end": 566.92, + "probability": 1.0 + }, + { + "word": " series", + "start": 566.92, + "end": 567.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 567.28, + "end": 567.66, + "probability": 1.0 + }, + { + "word": " five", + "start": 567.66, + "end": 568.64, + "probability": 0.9521484375 + }, + { + "word": " or", + "start": 568.64, + "end": 568.74, + "probability": 1.0 + }, + { + "word": " six,", + "start": 568.74, + "end": 569.02, + "probability": 0.99609375 + } + ] + }, + { + "id": 241, + "text": "seven scam baiters.", + "start": 569.04, + "end": 570.54, + "words": [ + { + "word": " seven", + "start": 569.04, + "end": 569.52, + "probability": 1.0 + }, + { + "word": " scam", + "start": 569.52, + "end": 569.92, + "probability": 0.98193359375 + }, + { + "word": " baiters.", + "start": 569.92, + "end": 570.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 242, + "text": "And they're not all guys.", + "start": 570.78, + "end": 572.46, + "words": [ + { + "word": " And", + "start": 570.78, + "end": 571.36, + "probability": 0.9931640625 + }, + { + "word": " they're", + "start": 571.36, + "end": 571.66, + "probability": 1.0 + }, + { + "word": " not", + "start": 571.66, + "end": 571.8, + "probability": 1.0 + }, + { + "word": " all", + "start": 571.8, + "end": 572.0, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 572.0, + "end": 572.46, + "probability": 1.0 + } + ] + }, + { + "id": 243, + "text": "They're women,", + "start": 572.6, + "end": 573.44, + "words": [ + { + "word": " They're", + "start": 572.6, + "end": 573.1, + "probability": 0.9658203125 + }, + { + "word": " women,", + "start": 573.1, + "end": 573.44, + "probability": 1.0 + } + ] + }, + { + "id": 244, + "text": "they're men,", + "start": 573.62, + "end": 574.22, + "words": [ + { + "word": " they're", + "start": 573.62, + "end": 573.92, + "probability": 0.998046875 + }, + { + "word": " men,", + "start": 573.92, + "end": 574.22, + "probability": 1.0 + } + ] + }, + { + "id": 245, + "text": "they're old,", + "start": 574.36, + "end": 574.94, + "words": [ + { + "word": " they're", + "start": 574.36, + "end": 574.56, + "probability": 1.0 + }, + { + "word": " old,", + "start": 574.56, + "end": 574.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 246, + "text": "young,", + "start": 575.04, + "end": 575.44, + "words": [ + { + "word": " young,", + "start": 575.04, + "end": 575.44, + "probability": 1.0 + } + ] + }, + { + "id": 247, + "text": "some speak Spanish.", + "start": 575.68, + "end": 576.9, + "words": [ + { + "word": " some", + "start": 575.68, + "end": 576.0, + "probability": 0.99951171875 + }, + { + "word": " speak", + "start": 576.0, + "end": 576.38, + "probability": 1.0 + }, + { + "word": " Spanish.", + "start": 576.38, + "end": 576.9, + "probability": 1.0 + } + ] + }, + { + "id": 248, + "text": "They're online right now.", + "start": 577.42, + "end": 579.02, + "words": [ + { + "word": " They're", + "start": 577.42, + "end": 578.0, + "probability": 1.0 + }, + { + "word": " online", + "start": 578.0, + "end": 578.34, + "probability": 1.0 + }, + { + "word": " right", + "start": 578.34, + "end": 578.78, + "probability": 1.0 + }, + { + "word": " now.", + "start": 578.78, + "end": 579.02, + "probability": 1.0 + } + ] + }, + { + "id": 249, + "text": "Real time scam baiting.", + "start": 579.04, + "end": 580.74, + "words": [ + { + "word": " Real", + "start": 579.04, + "end": 579.3, + "probability": 0.9892578125 + }, + { + "word": " time", + "start": 579.3, + "end": 579.56, + "probability": 0.833984375 + }, + { + "word": " scam", + "start": 579.56, + "end": 580.24, + "probability": 0.98486328125 + }, + { + "word": " baiting.", + "start": 580.24, + "end": 580.74, + "probability": 0.8935546875 + } + ] + }, + { + "id": 250, + "text": "You can go to YouTube,", + "start": 580.76, + "end": 582.18, + "words": [ + { + "word": " You", + "start": 580.76, + "end": 581.0, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 581.0, + "end": 581.22, + "probability": 1.0 + }, + { + "word": " go", + "start": 581.22, + "end": 581.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 581.72, + "end": 581.86, + "probability": 1.0 + }, + { + "word": " YouTube,", + "start": 581.86, + "end": 582.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 251, + "text": "find it and listen to them.", + "start": 582.44, + "end": 584.4, + "words": [ + { + "word": " find", + "start": 582.44, + "end": 583.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 583.12, + "end": 583.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 583.34, + "end": 583.54, + "probability": 0.99462890625 + }, + { + "word": " listen", + "start": 583.54, + "end": 583.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 583.88, + "end": 584.18, + "probability": 1.0 + }, + { + "word": " them.", + "start": 584.18, + "end": 584.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 252, + "text": "And if you,", + "start": 584.48, + "end": 585.32, + "words": [ + { + "word": " And", + "start": 584.48, + "end": 584.98, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 584.98, + "end": 585.14, + "probability": 1.0 + }, + { + "word": " you,", + "start": 585.14, + "end": 585.32, + "probability": 1.0 + } + ] + }, + { + "id": 253, + "text": "uh,", + "start": 585.32, + "end": 585.72, + "words": [ + { + "word": " uh,", + "start": 585.32, + "end": 585.72, + "probability": 0.7900390625 + } + ] + }, + { + "id": 254, + "text": "if you're out there and you've never heard,", + "start": 585.96, + "end": 588.2, + "words": [ + { + "word": " if", + "start": 585.96, + "end": 586.44, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 586.44, + "end": 586.68, + "probability": 1.0 + }, + { + "word": " out", + "start": 586.68, + "end": 587.02, + "probability": 1.0 + }, + { + "word": " there", + "start": 587.02, + "end": 587.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 587.22, + "end": 587.32, + "probability": 0.99951171875 + }, + { + "word": " you've", + "start": 587.32, + "end": 587.54, + "probability": 1.0 + }, + { + "word": " never", + "start": 587.54, + "end": 587.8, + "probability": 0.99951171875 + }, + { + "word": " heard,", + "start": 587.8, + "end": 588.2, + "probability": 1.0 + } + ] + }, + { + "id": 255, + "text": "what,", + "start": 588.2, + "end": 589.12, + "words": [ + { + "word": " what,", + "start": 588.2, + "end": 589.12, + "probability": 0.1605224609375 + } + ] + }, + { + "id": 256, + "text": "uh,", + "start": 589.26, + "end": 589.58, + "words": [ + { + "word": " uh,", + "start": 589.26, + "end": 589.58, + "probability": 0.95068359375 + } + ] + }, + { + "id": 257, + "text": "some of these scams are the Medicare fried fraud,", + "start": 589.92, + "end": 593.54, + "words": [ + { + "word": " some", + "start": 589.92, + "end": 590.68, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 590.68, + "end": 590.86, + "probability": 1.0 + }, + { + "word": " these", + "start": 590.86, + "end": 590.98, + "probability": 0.99951171875 + }, + { + "word": " scams", + "start": 590.98, + "end": 591.4, + "probability": 1.0 + }, + { + "word": " are", + "start": 591.4, + "end": 591.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 591.68, + "end": 591.84, + "probability": 0.304443359375 + }, + { + "word": " Medicare", + "start": 591.84, + "end": 592.24, + "probability": 0.98583984375 + }, + { + "word": " fried", + "start": 592.24, + "end": 592.7, + "probability": 0.64404296875 + }, + { + "word": " fraud,", + "start": 592.7, + "end": 593.54, + "probability": 0.994140625 + } + ] + }, + { + "id": 258, + "text": "the,", + "start": 593.76, + "end": 594.02, + "words": [ + { + "word": " the,", + "start": 593.76, + "end": 594.02, + "probability": 0.99755859375 + } + ] + }, + { + "id": 259, + "text": "uh,", + "start": 594.14, + "end": 594.52, + "words": [ + { + "word": " uh,", + "start": 594.14, + "end": 594.52, + "probability": 0.751953125 + } + ] + }, + { + "id": 260, + "text": "oh,", + "start": 594.6, + "end": 594.96, + "words": [ + { + "word": " oh,", + "start": 594.6, + "end": 594.96, + "probability": 0.3662109375 + } + ] + }, + { + "id": 261, + "text": "uh,", + "start": 595.7, + "end": 595.92, + "words": [ + { + "word": " uh,", + "start": 595.7, + "end": 595.92, + "probability": 0.98388671875 + } + ] + }, + { + "id": 262, + "text": "the grant scam.", + "start": 595.98, + "end": 596.94, + "words": [ + { + "word": " the", + "start": 595.98, + "end": 596.16, + "probability": 0.99853515625 + }, + { + "word": " grant", + "start": 596.16, + "end": 596.48, + "probability": 0.998046875 + }, + { + "word": " scam.", + "start": 596.48, + "end": 596.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 263, + "text": "Uh,", + "start": 597.32, + "end": 597.96, + "words": [ + { + "word": " Uh,", + "start": 597.32, + "end": 597.96, + "probability": 0.9921875 + } + ] + }, + { + "id": 264, + "text": "you can go to YouTube,", + "start": 598.18, + "end": 599.9, + "words": [ + { + "word": " you", + "start": 598.18, + "end": 598.48, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 598.48, + "end": 598.66, + "probability": 1.0 + }, + { + "word": " go", + "start": 598.66, + "end": 598.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 598.9, + "end": 599.22, + "probability": 1.0 + }, + { + "word": " YouTube,", + "start": 599.22, + "end": 599.9, + "probability": 0.9970703125 + } + ] + }, + { + "id": 265, + "text": "you're safe and look up scam baiting or IRS scam.", + "start": 600.04, + "end": 604.6600000000001, + "words": [ + { + "word": " you're", + "start": 600.04, + "end": 600.36, + "probability": 0.95654296875 + }, + { + "word": " safe", + "start": 600.36, + "end": 600.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 600.78, + "end": 601.78, + "probability": 0.98974609375 + }, + { + "word": " look", + "start": 601.78, + "end": 602.2, + "probability": 1.0 + }, + { + "word": " up", + "start": 602.2, + "end": 602.36, + "probability": 0.99951171875 + }, + { + "word": " scam", + "start": 602.36, + "end": 602.8, + "probability": 0.9951171875 + }, + { + "word": " baiting", + "start": 602.8, + "end": 603.44, + "probability": 0.99169921875 + }, + { + "word": " or", + "start": 603.44, + "end": 604.04, + "probability": 0.9951171875 + }, + { + "word": " IRS", + "start": 604.04, + "end": 604.58, + "probability": 0.9990234375 + }, + { + "word": " scam.", + "start": 604.58, + "end": 604.9000000000001, + "probability": 0.99853515625 + } + ] + }, + { + "id": 266, + "text": "And you can,", + "start": 605.46, + "end": 606.68, + "words": [ + { + "word": " And", + "start": 605.46, + "end": 606.1, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 606.1, + "end": 606.36, + "probability": 0.99951171875 + }, + { + "word": " can,", + "start": 606.36, + "end": 606.68, + "probability": 1.0 + } + ] + }, + { + "id": 267, + "text": "uh,", + "start": 606.7, + "end": 607.2, + "words": [ + { + "word": " uh,", + "start": 606.7, + "end": 607.2, + "probability": 0.99267578125 + } + ] + }, + { + "id": 268, + "text": "see literally hundreds of thousands of videos.", + "start": 607.42, + "end": 611.54, + "words": [ + { + "word": " see", + "start": 607.42, + "end": 608.4, + "probability": 0.99609375 + }, + { + "word": " literally", + "start": 608.4, + "end": 609.0, + "probability": 0.99853515625 + }, + { + "word": " hundreds", + "start": 609.0, + "end": 609.5, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 609.5, + "end": 609.72, + "probability": 1.0 + }, + { + "word": " thousands", + "start": 609.72, + "end": 610.12, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 610.12, + "end": 610.8, + "probability": 0.99951171875 + }, + { + "word": " videos.", + "start": 610.8, + "end": 611.54, + "probability": 0.998046875 + } + ] + }, + { + "id": 269, + "text": "And a lot of these people are creative even with cartoons and names.", + "start": 612.04, + "end": 617.4, + "words": [ + { + "word": " And", + "start": 612.04, + "end": 612.68, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 612.68, + "end": 612.82, + "probability": 1.0 + }, + { + "word": " lot", + "start": 612.82, + "end": 612.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 612.96, + "end": 613.06, + "probability": 1.0 + }, + { + "word": " these", + "start": 613.06, + "end": 613.18, + "probability": 1.0 + }, + { + "word": " people", + "start": 613.18, + "end": 613.5, + "probability": 1.0 + }, + { + "word": " are", + "start": 613.5, + "end": 613.68, + "probability": 1.0 + }, + { + "word": " creative", + "start": 613.68, + "end": 614.22, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 614.22, + "end": 614.9, + "probability": 0.5732421875 + }, + { + "word": " with", + "start": 614.9, + "end": 615.14, + "probability": 1.0 + }, + { + "word": " cartoons", + "start": 615.14, + "end": 615.7, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 615.7, + "end": 616.88, + "probability": 0.9892578125 + }, + { + "word": " names.", + "start": 616.88, + "end": 617.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 270, + "text": "But the,", + "start": 617.52, + "end": 618.18, + "words": [ + { + "word": " But", + "start": 617.52, + "end": 617.98, + "probability": 0.98291015625 + }, + { + "word": " the,", + "start": 617.98, + "end": 618.18, + "probability": 0.57177734375 + } + ] + }, + { + "id": 271, + "text": "", + "start": 618.18, + "end": 618.18, + "words": [] + }, + { + "id": 272, + "text": "these people are doing,", + "start": 618.18, + "end": 618.8, + "words": [ + { + "word": " these", + "start": 618.18, + "end": 618.18, + "probability": 0.033966064453125 + }, + { + "word": " people", + "start": 618.18, + "end": 618.46, + "probability": 0.9853515625 + }, + { + "word": " are", + "start": 618.46, + "end": 618.6, + "probability": 0.9873046875 + }, + { + "word": " doing,", + "start": 618.6, + "end": 618.8, + "probability": 0.9951171875 + } + ] + }, + { + "id": 273, + "text": "and then you can familiarize yourself with what's going on.", + "start": 618.94, + "end": 622.62, + "words": [ + { + "word": " and", + "start": 618.94, + "end": 619.04, + "probability": 0.9970703125 + }, + { + "word": " then", + "start": 619.04, + "end": 619.2, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 619.2, + "end": 619.32, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 619.32, + "end": 619.5, + "probability": 0.9990234375 + }, + { + "word": " familiarize", + "start": 619.5, + "end": 620.28, + "probability": 0.99853515625 + }, + { + "word": " yourself", + "start": 620.28, + "end": 620.6, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 620.6, + "end": 621.42, + "probability": 0.97119140625 + }, + { + "word": " what's", + "start": 621.42, + "end": 621.88, + "probability": 0.99755859375 + }, + { + "word": " going", + "start": 621.88, + "end": 622.14, + "probability": 1.0 + }, + { + "word": " on.", + "start": 622.14, + "end": 622.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 274, + "text": "It is a lot of it is funny.", + "start": 622.78, + "end": 624.72, + "words": [ + { + "word": " It", + "start": 622.78, + "end": 623.14, + "probability": 0.5166015625 + }, + { + "word": " is", + "start": 623.14, + "end": 623.24, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 623.24, + "end": 623.38, + "probability": 0.69873046875 + }, + { + "word": " lot", + "start": 623.38, + "end": 623.6, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 623.6, + "end": 623.74, + "probability": 0.99658203125 + }, + { + "word": " it", + "start": 623.74, + "end": 623.86, + "probability": 0.8984375 + }, + { + "word": " is", + "start": 623.86, + "end": 624.18, + "probability": 0.99169921875 + }, + { + "word": " funny.", + "start": 624.18, + "end": 624.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 275, + "text": "A lot of it is NSFW.", + "start": 624.88, + "end": 627.04, + "words": [ + { + "word": " A", + "start": 624.88, + "end": 625.36, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 625.36, + "end": 625.58, + "probability": 1.0 + }, + { + "word": " of", + "start": 625.58, + "end": 625.72, + "probability": 1.0 + }, + { + "word": " it", + "start": 625.72, + "end": 625.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 625.84, + "end": 626.02, + "probability": 0.99951171875 + }, + { + "word": " NSFW.", + "start": 626.02, + "end": 627.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 276, + "text": "That's for sure.", + "start": 627.4, + "end": 628.34, + "words": [ + { + "word": " That's", + "start": 627.4, + "end": 627.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 627.96, + "end": 628.06, + "probability": 0.99951171875 + }, + { + "word": " sure.", + "start": 628.06, + "end": 628.34, + "probability": 1.0 + } + ] + }, + { + "id": 277, + "text": "You learned how to swear in Hindi.", + "start": 628.5, + "end": 630.64, + "words": [ + { + "word": " You", + "start": 628.5, + "end": 628.92, + "probability": 0.99951171875 + }, + { + "word": " learned", + "start": 628.92, + "end": 629.22, + "probability": 0.63623046875 + }, + { + "word": " how", + "start": 629.22, + "end": 629.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 629.46, + "end": 629.62, + "probability": 1.0 + }, + { + "word": " swear", + "start": 629.62, + "end": 629.96, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 629.96, + "end": 630.28, + "probability": 0.9990234375 + }, + { + "word": " Hindi.", + "start": 630.28, + "end": 630.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 278, + "text": "You can learn a second language.", + "start": 630.82, + "end": 632.6, + "words": [ + { + "word": " You", + "start": 630.82, + "end": 631.38, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 631.38, + "end": 631.56, + "probability": 0.97265625 + }, + { + "word": " learn", + "start": 631.56, + "end": 631.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 631.84, + "end": 631.94, + "probability": 0.99951171875 + }, + { + "word": " second", + "start": 631.94, + "end": 632.22, + "probability": 0.998046875 + }, + { + "word": " language.", + "start": 632.22, + "end": 632.6, + "probability": 1.0 + } + ] + }, + { + "id": 279, + "text": "It's very educational.", + "start": 632.66, + "end": 633.74, + "words": [ + { + "word": " It's", + "start": 632.66, + "end": 632.94, + "probability": 1.0 + }, + { + "word": " very", + "start": 632.94, + "end": 633.12, + "probability": 1.0 + }, + { + "word": " educational.", + "start": 633.12, + "end": 633.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 280, + "text": "Uh,", + "start": 634.06, + "end": 634.62, + "words": [ + { + "word": " Uh,", + "start": 634.06, + "end": 634.62, + "probability": 0.01096343994140625 + } + ] + }, + { + "id": 281, + "text": "but you can see what's going on and the situations.", + "start": 634.86, + "end": 638.64, + "words": [ + { + "word": " but", + "start": 634.86, + "end": 635.18, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 635.18, + "end": 635.34, + "probability": 1.0 + }, + { + "word": " can", + "start": 635.34, + "end": 635.46, + "probability": 1.0 + }, + { + "word": " see", + "start": 635.46, + "end": 635.76, + "probability": 1.0 + }, + { + "word": " what's", + "start": 635.76, + "end": 636.54, + "probability": 1.0 + }, + { + "word": " going", + "start": 636.54, + "end": 636.76, + "probability": 1.0 + }, + { + "word": " on", + "start": 636.76, + "end": 637.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 637.16, + "end": 637.54, + "probability": 0.953125 + }, + { + "word": " the", + "start": 637.54, + "end": 638.0, + "probability": 1.0 + }, + { + "word": " situations.", + "start": 638.0, + "end": 638.64, + "probability": 0.9970703125 + } + ] + }, + { + "id": 282, + "text": "He's scam baiters will call in as an old lady,", + "start": 638.66, + "end": 642.22, + "words": [ + { + "word": " He's", + "start": 638.66, + "end": 638.98, + "probability": 0.3544921875 + }, + { + "word": " scam", + "start": 638.98, + "end": 639.28, + "probability": 0.1566162109375 + }, + { + "word": " baiters", + "start": 639.28, + "end": 639.82, + "probability": 0.9765625 + }, + { + "word": " will", + "start": 639.82, + "end": 640.4, + "probability": 0.5751953125 + }, + { + "word": " call", + "start": 640.4, + "end": 640.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 640.9, + "end": 641.16, + "probability": 1.0 + }, + { + "word": " as", + "start": 641.16, + "end": 641.46, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 641.46, + "end": 641.64, + "probability": 1.0 + }, + { + "word": " old", + "start": 641.64, + "end": 641.88, + "probability": 1.0 + }, + { + "word": " lady,", + "start": 641.88, + "end": 642.22, + "probability": 1.0 + } + ] + }, + { + "id": 283, + "text": "an old man who's on a low income.", + "start": 642.24, + "end": 645.82, + "words": [ + { + "word": " an", + "start": 642.24, + "end": 642.44, + "probability": 0.98974609375 + }, + { + "word": " old", + "start": 642.44, + "end": 642.72, + "probability": 1.0 + }, + { + "word": " man", + "start": 642.72, + "end": 643.0, + "probability": 1.0 + }, + { + "word": " who's", + "start": 643.0, + "end": 643.76, + "probability": 0.9921875 + }, + { + "word": " on", + "start": 643.76, + "end": 644.22, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 644.22, + "end": 644.48, + "probability": 0.82861328125 + }, + { + "word": " low", + "start": 644.48, + "end": 645.38, + "probability": 0.99951171875 + }, + { + "word": " income.", + "start": 645.38, + "end": 645.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 284, + "text": "These scammers do,", + "start": 646.16, + "end": 647.72, + "words": [ + { + "word": " These", + "start": 646.16, + "end": 646.72, + "probability": 0.86767578125 + }, + { + "word": " scammers", + "start": 646.72, + "end": 647.38, + "probability": 0.99951171875 + }, + { + "word": " do,", + "start": 647.38, + "end": 647.72, + "probability": 0.98583984375 + } + ] + }, + { + "id": 285, + "text": "not care.", + "start": 648.18, + "end": 648.8, + "words": [ + { + "word": " not", + "start": 648.18, + "end": 648.28, + "probability": 0.2802734375 + }, + { + "word": " care.", + "start": 648.28, + "end": 648.8, + "probability": 0.99755859375 + } + ] + }, + { + "id": 286, + "text": "Nope.", + "start": 649.36, + "end": 649.68, + "words": [ + { + "word": " Nope.", + "start": 649.36, + "end": 649.68, + "probability": 0.96435546875 + } + ] + }, + { + "id": 287, + "text": "All right.", + "start": 649.84, + "end": 650.32, + "words": [ + { + "word": " All", + "start": 649.84, + "end": 650.16, + "probability": 0.58251953125 + }, + { + "word": " right.", + "start": 650.16, + "end": 650.32, + "probability": 1.0 + } + ] + }, + { + "id": 288, + "text": "Well,", + "start": 650.34, + "end": 650.44, + "words": [ + { + "word": " Well,", + "start": 650.34, + "end": 650.44, + "probability": 0.98974609375 + } + ] + }, + { + "id": 289, + "text": "we're going to talk more about that after we do the first break here.", + "start": 650.5, + "end": 652.72, + "words": [ + { + "word": " we're", + "start": 650.5, + "end": 650.6, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 650.6, + "end": 650.7, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 650.7, + "end": 650.76, + "probability": 1.0 + }, + { + "word": " talk", + "start": 650.76, + "end": 650.9, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 650.9, + "end": 651.04, + "probability": 1.0 + }, + { + "word": " about", + "start": 651.04, + "end": 651.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 651.2, + "end": 651.4, + "probability": 1.0 + }, + { + "word": " after", + "start": 651.4, + "end": 651.6, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 651.6, + "end": 651.7, + "probability": 1.0 + }, + { + "word": " do", + "start": 651.7, + "end": 651.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 651.84, + "end": 652.0, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 652.0, + "end": 652.32, + "probability": 1.0 + }, + { + "word": " break", + "start": 652.32, + "end": 652.56, + "probability": 0.99853515625 + }, + { + "word": " here.", + "start": 652.56, + "end": 652.72, + "probability": 0.99853515625 + } + ] + }, + { + "id": 290, + "text": "First,", + "start": 652.78, + "end": 652.92, + "words": [ + { + "word": " First,", + "start": 652.78, + "end": 652.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 291, + "text": "let's take a moment to mention our sponsor.", + "start": 653.02, + "end": 654.2, + "words": [ + { + "word": " let's", + "start": 653.02, + "end": 653.18, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 653.18, + "end": 653.28, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 653.28, + "end": 653.36, + "probability": 1.0 + }, + { + "word": " moment", + "start": 653.36, + "end": 653.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 653.54, + "end": 653.66, + "probability": 0.99951171875 + }, + { + "word": " mention", + "start": 653.66, + "end": 653.8, + "probability": 0.99755859375 + }, + { + "word": " our", + "start": 653.8, + "end": 653.92, + "probability": 0.9990234375 + }, + { + "word": " sponsor.", + "start": 653.92, + "end": 654.2, + "probability": 0.9970703125 + } + ] + }, + { + "id": 292, + "text": "That would be perfection out of works.", + "start": 654.3, + "end": 655.52, + "words": [ + { + "word": " That", + "start": 654.3, + "end": 654.38, + "probability": 0.99169921875 + }, + { + "word": " would", + "start": 654.38, + "end": 654.5, + "probability": 0.99658203125 + }, + { + "word": " be", + "start": 654.5, + "end": 654.58, + "probability": 1.0 + }, + { + "word": " perfection", + "start": 654.58, + "end": 654.94, + "probability": 0.08929443359375 + }, + { + "word": " out", + "start": 654.94, + "end": 655.24, + "probability": 0.053375244140625 + }, + { + "word": " of", + "start": 655.24, + "end": 655.32, + "probability": 0.998046875 + }, + { + "word": " works.", + "start": 655.32, + "end": 655.52, + "probability": 0.99560546875 + } + ] + }, + { + "id": 293, + "text": "You can visit their website,", + "start": 655.9, + "end": 657.02, + "words": [ + { + "word": " You", + "start": 655.9, + "end": 656.22, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 656.22, + "end": 656.38, + "probability": 1.0 + }, + { + "word": " visit", + "start": 656.38, + "end": 656.6, + "probability": 0.9990234375 + }, + { + "word": " their", + "start": 656.6, + "end": 656.74, + "probability": 1.0 + }, + { + "word": " website,", + "start": 656.74, + "end": 657.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 294, + "text": "perfection,", + "start": 657.16, + "end": 657.46, + "words": [ + { + "word": " perfection,", + "start": 657.16, + "end": 657.46, + "probability": 0.998046875 + } + ] + }, + { + "id": 295, + "text": "out of works.com and they will happily get your car in for a 26 point inspection.", + "start": 657.52, + "end": 662.16, + "words": [ + { + "word": " out", + "start": 657.52, + "end": 657.64, + "probability": 0.8271484375 + }, + { + "word": " of", + "start": 657.64, + "end": 657.7, + "probability": 0.99951171875 + }, + { + "word": " works", + "start": 657.7, + "end": 657.86, + "probability": 0.99951171875 + }, + { + "word": ".com", + "start": 657.86, + "end": 658.2, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 658.2, + "end": 658.84, + "probability": 0.37744140625 + }, + { + "word": " they", + "start": 658.84, + "end": 659.16, + "probability": 1.0 + }, + { + "word": " will", + "start": 659.16, + "end": 659.5, + "probability": 1.0 + }, + { + "word": " happily", + "start": 659.5, + "end": 660.0, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 660.0, + "end": 660.62, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 660.62, + "end": 660.78, + "probability": 0.99951171875 + }, + { + "word": " car", + "start": 660.78, + "end": 660.98, + "probability": 1.0 + }, + { + "word": " in", + "start": 660.98, + "end": 661.14, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 661.14, + "end": 661.3, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 661.3, + "end": 661.34, + "probability": 0.962890625 + }, + { + "word": " 26", + "start": 661.34, + "end": 661.56, + "probability": 0.9990234375 + }, + { + "word": " point", + "start": 661.56, + "end": 661.86, + "probability": 0.99951171875 + }, + { + "word": " inspection.", + "start": 661.86, + "end": 662.16, + "probability": 1.0 + } + ] + }, + { + "id": 296, + "text": "It is that time of year as you know,", + "start": 662.3, + "end": 664.52, + "words": [ + { + "word": " It", + "start": 662.3, + "end": 662.6, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 662.6, + "end": 662.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 662.92, + "end": 663.14, + "probability": 1.0 + }, + { + "word": " time", + "start": 663.14, + "end": 663.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 663.5, + "end": 663.6, + "probability": 0.99951171875 + }, + { + "word": " year", + "start": 663.6, + "end": 663.88, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 663.88, + "end": 664.2, + "probability": 0.9873046875 + }, + { + "word": " you", + "start": 664.2, + "end": 664.36, + "probability": 0.99169921875 + }, + { + "word": " know,", + "start": 664.36, + "end": 664.52, + "probability": 1.0 + } + ] + }, + { + "id": 297, + "text": "starting to,", + "start": 664.54, + "end": 665.16, + "words": [ + { + "word": " starting", + "start": 664.54, + "end": 664.92, + "probability": 0.74365234375 + }, + { + "word": " to,", + "start": 664.92, + "end": 665.16, + "probability": 1.0 + } + ] + }, + { + "id": 298, + "text": "we're going to end up in before,", + "start": 665.6999999999999, + "end": 666.8, + "words": [ + { + "word": " we're", + "start": 665.6, + "end": 665.76, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 665.76, + "end": 665.82, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 665.82, + "end": 665.88, + "probability": 1.0 + }, + { + "word": " end", + "start": 665.88, + "end": 666.0, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 666.0, + "end": 666.14, + "probability": 1.0 + }, + { + "word": " in", + "start": 666.14, + "end": 666.22, + "probability": 0.99951171875 + }, + { + "word": " before,", + "start": 666.22, + "end": 666.8, + "probability": 0.77978515625 + } + ] + }, + { + "id": 299, + "text": "you know,", + "start": 666.86, + "end": 667.12, + "words": [ + { + "word": " you", + "start": 666.86, + "end": 667.0, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 667.0, + "end": 667.12, + "probability": 1.0 + } + ] + }, + { + "id": 300, + "text": "it's gonna be summer again.", + "start": 667.18, + "end": 668.02, + "words": [ + { + "word": " it's", + "start": 667.18, + "end": 667.28, + "probability": 0.99951171875 + }, + { + "word": " gonna", + "start": 667.28, + "end": 667.32, + "probability": 0.100830078125 + }, + { + "word": " be", + "start": 667.32, + "end": 667.46, + "probability": 1.0 + }, + { + "word": " summer", + "start": 667.46, + "end": 667.7, + "probability": 0.99853515625 + }, + { + "word": " again.", + "start": 667.7, + "end": 668.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 301, + "text": "True story.", + "start": 668.18, + "end": 668.94, + "words": [ + { + "word": " True", + "start": 668.18, + "end": 668.5, + "probability": 0.99853515625 + }, + { + "word": " story.", + "start": 668.5, + "end": 668.94, + "probability": 1.0 + } + ] + }, + { + "id": 302, + "text": "Yeah.", + "start": 669.04, + "end": 669.28, + "words": [ + { + "word": " Yeah.", + "start": 669.04, + "end": 669.28, + "probability": 0.99658203125 + } + ] + }, + { + "id": 303, + "text": "And,", + "start": 669.58, + "end": 669.9, + "words": [ + { + "word": " And,", + "start": 669.58, + "end": 669.9, + "probability": 0.99755859375 + } + ] + }, + { + "id": 304, + "text": "uh,", + "start": 670.04, + "end": 670.3, + "words": [ + { + "word": " uh,", + "start": 670.04, + "end": 670.3, + "probability": 0.89208984375 + } + ] + }, + { + "id": 305, + "text": "well,", + "start": 670.32, + "end": 670.5, + "words": [ + { + "word": " well,", + "start": 670.32, + "end": 670.5, + "probability": 0.99560546875 + } + ] + }, + { + "id": 306, + "text": "you never know right now,", + "start": 670.56, + "end": 671.52, + "words": [ + { + "word": " you", + "start": 670.56, + "end": 670.64, + "probability": 0.99951171875 + }, + { + "word": " never", + "start": 670.64, + "end": 670.8, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 670.8, + "end": 671.04, + "probability": 1.0 + }, + { + "word": " right", + "start": 671.04, + "end": 671.24, + "probability": 0.99951171875 + }, + { + "word": " now,", + "start": 671.24, + "end": 671.52, + "probability": 1.0 + } + ] + }, + { + "id": 307, + "text": "uh,", + "start": 671.6, + "end": 672.06, + "words": [ + { + "word": " uh,", + "start": 671.6, + "end": 672.06, + "probability": 0.9951171875 + } + ] + }, + { + "id": 308, + "text": "cause one day it's 50 degrees and one day it's 80 degrees.", + "start": 672.4799999999999, + "end": 675.16, + "words": [ + { + "word": " cause", + "start": 672.4799999999999, + "end": 672.8, + "probability": 0.79443359375 + }, + { + "word": " one", + "start": 672.8, + "end": 673.12, + "probability": 0.99951171875 + }, + { + "word": " day", + "start": 673.12, + "end": 673.3, + "probability": 1.0 + }, + { + "word": " it's", + "start": 673.3, + "end": 673.5, + "probability": 1.0 + }, + { + "word": " 50", + "start": 673.5, + "end": 673.8, + "probability": 0.99951171875 + }, + { + "word": " degrees", + "start": 673.8, + "end": 674.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 674.2, + "end": 674.38, + "probability": 0.9912109375 + }, + { + "word": " one", + "start": 674.38, + "end": 674.46, + "probability": 0.99951171875 + }, + { + "word": " day", + "start": 674.46, + "end": 674.58, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 674.58, + "end": 674.7, + "probability": 1.0 + }, + { + "word": " 80", + "start": 674.7, + "end": 674.86, + "probability": 0.99951171875 + }, + { + "word": " degrees.", + "start": 674.86, + "end": 675.16, + "probability": 1.0 + } + ] + }, + { + "id": 309, + "text": "You,", + "start": 675.2, + "end": 675.32, + "words": [ + { + "word": " You,", + "start": 675.2, + "end": 675.32, + "probability": 0.98779296875 + } + ] + }, + { + "id": 310, + "text": "you just don't know,", + "start": 675.38, + "end": 676.08, + "words": [ + { + "word": " you", + "start": 675.38, + "end": 675.52, + "probability": 1.0 + }, + { + "word": " just", + "start": 675.52, + "end": 675.74, + "probability": 0.99755859375 + }, + { + "word": " don't", + "start": 675.74, + "end": 675.96, + "probability": 1.0 + }, + { + "word": " know,", + "start": 675.96, + "end": 676.08, + "probability": 1.0 + } + ] + }, + { + "id": 311, + "text": "but go down there and get your,", + "start": 676.5999999999999, + "end": 678.08, + "words": [ + { + "word": " but", + "start": 676.5999999999999, + "end": 676.92, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 676.92, + "end": 677.18, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 677.18, + "end": 677.34, + "probability": 1.0 + }, + { + "word": " there", + "start": 677.34, + "end": 677.54, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 677.54, + "end": 677.7, + "probability": 0.9970703125 + }, + { + "word": " get", + "start": 677.7, + "end": 677.88, + "probability": 0.99853515625 + }, + { + "word": " your,", + "start": 677.88, + "end": 678.08, + "probability": 0.98974609375 + } + ] + }, + { + "id": 312, + "text": "your 26 point inspection.", + "start": 678.18, + "end": 678.84, + "words": [ + { + "word": " your", + "start": 678.18, + "end": 678.18, + "probability": 8.571147918701172e-05 + }, + { + "word": " 26", + "start": 678.18, + "end": 678.4, + "probability": 0.94677734375 + }, + { + "word": " point", + "start": 678.4, + "end": 678.62, + "probability": 0.34619140625 + }, + { + "word": " inspection.", + "start": 678.62, + "end": 678.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 313, + "text": "You can also give them call three,", + "start": 678.98, + "end": 679.88, + "words": [ + { + "word": " You", + "start": 678.98, + "end": 679.08, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 679.08, + "end": 679.12, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 679.12, + "end": 679.26, + "probability": 0.99951171875 + }, + { + "word": " give", + "start": 679.26, + "end": 679.42, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 679.42, + "end": 679.54, + "probability": 1.0 + }, + { + "word": " call", + "start": 679.54, + "end": 679.68, + "probability": 0.10797119140625 + }, + { + "word": " three,", + "start": 679.68, + "end": 679.88, + "probability": 0.0977783203125 + } + ] + }, + { + "id": 314, + "text": "two,", + "start": 679.96, + "end": 680.12, + "words": [ + { + "word": " two,", + "start": 679.96, + "end": 680.12, + "probability": 0.96337890625 + } + ] + }, + { + "id": 315, + "text": "three 8650.", + "start": 680.14, + "end": 681.22, + "words": [ + { + "word": " three", + "start": 680.14, + "end": 680.34, + "probability": 0.998046875 + }, + { + "word": " 8650.", + "start": 680.34, + "end": 681.22, + "probability": 0.572265625 + } + ] + }, + { + "id": 316, + "text": "Tell Mike and his team that you heard from us and you get a little bit of", + "start": 681.56, + "end": 684.1, + "words": [ + { + "word": " Tell", + "start": 681.56, + "end": 681.88, + "probability": 0.9990234375 + }, + { + "word": " Mike", + "start": 681.88, + "end": 682.1, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 682.1, + "end": 682.24, + "probability": 1.0 + }, + { + "word": " his", + "start": 682.24, + "end": 682.3, + "probability": 1.0 + }, + { + "word": " team", + "start": 682.3, + "end": 682.5, + "probability": 1.0 + }, + { + "word": " that", + "start": 682.5, + "end": 682.62, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 682.62, + "end": 682.68, + "probability": 1.0 + }, + { + "word": " heard", + "start": 682.68, + "end": 682.82, + "probability": 1.0 + }, + { + "word": " from", + "start": 682.82, + "end": 682.98, + "probability": 1.0 + }, + { + "word": " us", + "start": 682.98, + "end": 683.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 683.16, + "end": 683.3, + "probability": 0.9853515625 + }, + { + "word": " you", + "start": 683.3, + "end": 683.4, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 683.4, + "end": 683.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 683.58, + "end": 683.68, + "probability": 1.0 + }, + { + "word": " little", + "start": 683.68, + "end": 683.84, + "probability": 1.0 + }, + { + "word": " bit", + "start": 683.84, + "end": 683.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 683.98, + "end": 684.1, + "probability": 1.0 + } + ] + }, + { + "id": 317, + "text": "prioritized expedited service.", + "start": 684.9799999999999, + "end": 686.04, + "words": [ + { + "word": " prioritized", + "start": 684.9799999999999, + "end": 685.3, + "probability": 0.9931640625 + }, + { + "word": " expedited", + "start": 685.3, + "end": 685.62, + "probability": 0.73779296875 + }, + { + "word": " service.", + "start": 685.62, + "end": 686.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 318, + "text": "Yeah.", + "start": 686.74, + "end": 687.06, + "words": [ + { + "word": " Yeah.", + "start": 686.74, + "end": 687.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 319, + "text": "Cause you know,", + "start": 687.18, + "end": 687.84, + "words": [ + { + "word": " Cause", + "start": 687.18, + "end": 687.42, + "probability": 0.94091796875 + }, + { + "word": " you", + "start": 687.42, + "end": 687.7, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 687.7, + "end": 687.84, + "probability": 0.998046875 + } + ] + }, + { + "id": 320, + "text": "computer career show.", + "start": 687.84, + "end": 688.56, + "words": [ + { + "word": " computer", + "start": 687.84, + "end": 688.18, + "probability": 0.982421875 + }, + { + "word": " career", + "start": 688.18, + "end": 688.36, + "probability": 0.493896484375 + }, + { + "word": " show.", + "start": 688.36, + "end": 688.56, + "probability": 0.99658203125 + } + ] + }, + { + "id": 321, + "text": "Anyway,", + "start": 689.14, + "end": 689.46, + "words": [ + { + "word": " Anyway,", + "start": 689.14, + "end": 689.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 322, + "text": "check them out.", + "start": 689.58, + "end": 690.28, + "words": [ + { + "word": " check", + "start": 689.58, + "end": 689.94, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 689.94, + "end": 690.12, + "probability": 1.0 + }, + { + "word": " out.", + "start": 690.12, + "end": 690.28, + "probability": 1.0 + } + ] + }, + { + "id": 323, + "text": "Perfection out of works.com.", + "start": 690.6, + "end": 691.4, + "words": [ + { + "word": " Perfection", + "start": 690.6, + "end": 690.92, + "probability": 0.98974609375 + }, + { + "word": " out", + "start": 690.92, + "end": 691.02, + "probability": 0.50048828125 + }, + { + "word": " of", + "start": 691.02, + "end": 691.06, + "probability": 0.99853515625 + }, + { + "word": " works", + "start": 691.06, + "end": 691.2, + "probability": 0.9814453125 + }, + { + "word": ".com.", + "start": 691.2, + "end": 691.4, + "probability": 0.97998046875 + } + ] + }, + { + "id": 324, + "text": "Listen to their ad coming up next.", + "start": 691.68, + "end": 692.82, + "words": [ + { + "word": " Listen", + "start": 691.68, + "end": 692.0, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 692.0, + "end": 692.14, + "probability": 1.0 + }, + { + "word": " their", + "start": 692.14, + "end": 692.22, + "probability": 0.94580078125 + }, + { + "word": " ad", + "start": 692.22, + "end": 692.32, + "probability": 0.82666015625 + }, + { + "word": " coming", + "start": 692.32, + "end": 692.48, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 692.48, + "end": 692.58, + "probability": 1.0 + }, + { + "word": " next.", + "start": 692.58, + "end": 692.82, + "probability": 1.0 + } + ] + }, + { + "id": 325, + "text": "And we'll be right back after this.", + "start": 692.88, + "end": 694.18, + "words": [ + { + "word": " And", + "start": 692.88, + "end": 693.14, + "probability": 0.99951171875 + }, + { + "word": " we'll", + "start": 693.14, + "end": 693.32, + "probability": 1.0 + }, + { + "word": " be", + "start": 693.32, + "end": 693.38, + "probability": 1.0 + }, + { + "word": " right", + "start": 693.38, + "end": 693.56, + "probability": 1.0 + }, + { + "word": " back", + "start": 693.56, + "end": 693.74, + "probability": 1.0 + }, + { + "word": " after", + "start": 693.74, + "end": 694.0, + "probability": 0.98779296875 + }, + { + "word": " this.", + "start": 694.0, + "end": 694.18, + "probability": 1.0 + } + ] + }, + { + "id": 326, + "text": "Oh,", + "start": 708.18, + "end": 708.2, + "words": [ + { + "word": " Oh,", + "start": 708.18, + "end": 708.2, + "probability": 0.01137542724609375 + } + ] + }, + { + "id": 327, + "text": "yeah.", + "start": 708.2, + "end": 708.44, + "words": [ + { + "word": " yeah.", + "start": 708.2, + "end": 708.44, + "probability": 0.6357421875 + } + ] + }, + { + "id": 328, + "text": "Look up.", + "start": 709.2, + "end": 710.04, + "words": [ + { + "word": " Look", + "start": 709.2, + "end": 709.72, + "probability": 0.9130859375 + }, + { + "word": " up.", + "start": 709.72, + "end": 710.04, + "probability": 0.006481170654296875 + } + ] + }, + { + "id": 329, + "text": "Hmm.", + "start": 710.6800000000001, + "end": 711.2, + "words": [ + { + "word": " Hmm.", + "start": 710.6800000000001, + "end": 711.2, + "probability": 0.1307373046875 + } + ] + }, + { + "id": 330, + "text": "Pop pop.", + "start": 711.64, + "end": 712.42, + "words": [ + { + "word": " Pop", + "start": 711.64, + "end": 712.16, + "probability": 0.69140625 + }, + { + "word": " pop.", + "start": 712.16, + "end": 712.42, + "probability": 0.1634521484375 + } + ] + }, + { + "id": 331, + "text": "Your computer guru.", + "start": 714.6, + "end": 716.08, + "words": [ + { + "word": " Your", + "start": 714.6, + "end": 715.12, + "probability": 0.90673828125 + }, + { + "word": " computer", + "start": 715.12, + "end": 715.64, + "probability": 0.994140625 + }, + { + "word": " guru.", + "start": 715.64, + "end": 716.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 332, + "text": "Mike Swanson is here to help you tame that beast of a machine.", + "start": 716.14, + "end": 718.96, + "words": [ + { + "word": " Mike", + "start": 716.14, + "end": 716.34, + "probability": 0.9912109375 + }, + { + "word": " Swanson", + "start": 716.34, + "end": 716.74, + "probability": 0.974609375 + }, + { + "word": " is", + "start": 716.74, + "end": 716.98, + "probability": 0.9951171875 + }, + { + "word": " here", + "start": 716.98, + "end": 717.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 717.16, + "end": 717.3, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 717.3, + "end": 717.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 717.52, + "end": 717.68, + "probability": 0.99951171875 + }, + { + "word": " tame", + "start": 717.68, + "end": 717.88, + "probability": 0.9853515625 + }, + { + "word": " that", + "start": 717.88, + "end": 718.08, + "probability": 0.99951171875 + }, + { + "word": " beast", + "start": 718.08, + "end": 718.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 718.36, + "end": 718.62, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 718.62, + "end": 718.7, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 718.7, + "end": 718.96, + "probability": 1.0 + } + ] + }, + { + "id": 333, + "text": "Join the chat right now at guru show.com or call in.", + "start": 719.2, + "end": 722.82, + "words": [ + { + "word": " Join", + "start": 719.2, + "end": 719.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 719.72, + "end": 719.92, + "probability": 1.0 + }, + { + "word": " chat", + "start": 719.92, + "end": 720.12, + "probability": 1.0 + }, + { + "word": " right", + "start": 720.12, + "end": 720.34, + "probability": 1.0 + }, + { + "word": " now", + "start": 720.34, + "end": 720.66, + "probability": 1.0 + }, + { + "word": " at", + "start": 720.66, + "end": 720.92, + "probability": 0.97900390625 + }, + { + "word": " guru", + "start": 720.92, + "end": 721.2, + "probability": 0.67724609375 + }, + { + "word": " show", + "start": 721.2, + "end": 721.46, + "probability": 0.9912109375 + }, + { + "word": ".com", + "start": 721.46, + "end": 722.06, + "probability": 0.6171875 + }, + { + "word": " or", + "start": 722.06, + "end": 722.34, + "probability": 0.9912109375 + }, + { + "word": " call", + "start": 722.34, + "end": 722.58, + "probability": 0.998046875 + }, + { + "word": " in.", + "start": 722.58, + "end": 722.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 334, + "text": "This is the computer guru show on KVO.", + "start": 722.9, + "end": 725.5, + "words": [ + { + "word": " This", + "start": 722.9, + "end": 723.2, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 723.2, + "end": 723.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 723.56, + "end": 723.64, + "probability": 0.2392578125 + }, + { + "word": " computer", + "start": 723.64, + "end": 723.9, + "probability": 0.994140625 + }, + { + "word": " guru", + "start": 723.9, + "end": 724.26, + "probability": 0.99853515625 + }, + { + "word": " show", + "start": 724.26, + "end": 724.62, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 724.62, + "end": 725.04, + "probability": 0.99560546875 + }, + { + "word": " KVO.", + "start": 725.04, + "end": 725.5, + "probability": 0.603515625 + } + ] + }, + { + "id": 335, + "text": "Why the voice?", + "start": 725.54, + "end": 726.38, + "words": [ + { + "word": " Why", + "start": 725.54, + "end": 725.84, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 725.84, + "end": 726.12, + "probability": 0.96728515625 + }, + { + "word": " voice?", + "start": 726.12, + "end": 726.38, + "probability": 1.0 + } + ] + }, + { + "id": 336, + "text": "Your technology guru.", + "start": 730.2, + "end": 731.62, + "words": [ + { + "word": " Your", + "start": 730.2, + "end": 730.72, + "probability": 0.9951171875 + }, + { + "word": " technology", + "start": 730.72, + "end": 731.24, + "probability": 0.9970703125 + }, + { + "word": " guru.", + "start": 731.24, + "end": 731.62, + "probability": 0.99560546875 + } + ] + }, + { + "id": 337, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 731.76, + "end": 734.6, + "words": [ + { + "word": " Mike", + "start": 731.76, + "end": 731.98, + "probability": 0.99755859375 + }, + { + "word": " Swanson", + "start": 731.98, + "end": 732.38, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 732.38, + "end": 732.6, + "probability": 0.998046875 + }, + { + "word": " answering", + "start": 732.6, + "end": 732.92, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 732.92, + "end": 733.24, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 733.24, + "end": 733.44, + "probability": 1.0 + }, + { + "word": " questions", + "start": 733.44, + "end": 733.82, + "probability": 1.0 + }, + { + "word": " one", + "start": 733.82, + "end": 734.12, + "probability": 0.78515625 + }, + { + "word": " by", + "start": 734.12, + "end": 734.3, + "probability": 0.99951171875 + }, + { + "word": " one.", + "start": 734.3, + "end": 734.6, + "probability": 1.0 + } + ] + }, + { + "id": 338, + "text": "Yes.", + "start": 734.62, + "end": 734.84, + "words": [ + { + "word": " Yes.", + "start": 734.62, + "end": 734.84, + "probability": 0.9814453125 + } + ] + }, + { + "id": 339, + "text": "So chime in with yours.", + "start": 735.0, + "end": 736.64, + "words": [ + { + "word": " So", + "start": 735.0, + "end": 735.52, + "probability": 0.045074462890625 + }, + { + "word": " chime", + "start": 735.52, + "end": 735.86, + "probability": 0.97802734375 + }, + { + "word": " in", + "start": 735.86, + "end": 736.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 736.16, + "end": 736.42, + "probability": 0.99755859375 + }, + { + "word": " yours.", + "start": 736.42, + "end": 736.64, + "probability": 0.9990234375 + } + ] + }, + { + "id": 340, + "text": "The website is guru.com.", + "start": 736.76, + "end": 738.16, + "words": [ + { + "word": " The", + "start": 736.76, + "end": 737.2, + "probability": 0.9970703125 + }, + { + "word": " website", + "start": 737.2, + "end": 737.5, + "probability": 0.84814453125 + }, + { + "word": " is", + "start": 737.5, + "end": 737.86, + "probability": 0.99755859375 + }, + { + "word": " guru", + "start": 737.86, + "end": 738.12, + "probability": 0.908203125 + }, + { + "word": ".com.", + "start": 738.12, + "end": 738.16, + "probability": 0.7177734375 + } + ] + }, + { + "id": 341, + "text": "And you can also tune in to the computer guru show.com.", + "start": 738.16, + "end": 738.84, + "words": [ + { + "word": " And", + "start": 738.16, + "end": 738.16, + "probability": 0.001312255859375 + }, + { + "word": " you", + "start": 738.16, + "end": 738.16, + "probability": 0.043853759765625 + }, + { + "word": " can", + "start": 738.16, + "end": 738.16, + "probability": 0.4072265625 + }, + { + "word": " also", + "start": 738.16, + "end": 738.16, + "probability": 0.026458740234375 + }, + { + "word": " tune", + "start": 738.16, + "end": 738.16, + "probability": 0.03472900390625 + }, + { + "word": " in", + "start": 738.16, + "end": 738.16, + "probability": 0.9287109375 + }, + { + "word": " to", + "start": 738.16, + "end": 738.16, + "probability": 0.030303955078125 + }, + { + "word": " the", + "start": 738.16, + "end": 738.16, + "probability": 0.449462890625 + }, + { + "word": " computer", + "start": 738.16, + "end": 738.16, + "probability": 0.09173583984375 + }, + { + "word": " guru", + "start": 738.16, + "end": 738.16, + "probability": 0.9580078125 + }, + { + "word": " show", + "start": 738.16, + "end": 738.44, + "probability": 0.98828125 + }, + { + "word": ".com.", + "start": 738.44, + "end": 738.84, + "probability": 0.46484375 + } + ] + }, + { + "id": 342, + "text": "Tune in,", + "start": 739.2, + "end": 739.9, + "words": [ + { + "word": " Tune", + "start": 739.2, + "end": 739.64, + "probability": 0.9931640625 + }, + { + "word": " in,", + "start": 739.64, + "end": 739.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 343, + "text": "click in and kick back.", + "start": 739.94, + "end": 741.36, + "words": [ + { + "word": " click", + "start": 739.94, + "end": 740.32, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 740.32, + "end": 740.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 740.58, + "end": 740.86, + "probability": 0.127685546875 + }, + { + "word": " kick", + "start": 740.86, + "end": 741.06, + "probability": 0.99951171875 + }, + { + "word": " back.", + "start": 741.06, + "end": 741.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 344, + "text": "This is a computer guru show.", + "start": 741.62, + "end": 743.52, + "words": [ + { + "word": " This", + "start": 741.62, + "end": 742.06, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 742.06, + "end": 742.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 742.42, + "end": 742.56, + "probability": 0.89794921875 + }, + { + "word": " computer", + "start": 742.56, + "end": 742.84, + "probability": 0.99169921875 + }, + { + "word": " guru", + "start": 742.84, + "end": 743.16, + "probability": 0.9990234375 + }, + { + "word": " show.", + "start": 743.16, + "end": 743.52, + "probability": 1.0 + } + ] + }, + { + "id": 345, + "text": "Welcome back to the computer guru show.", + "start": 745.08, + "end": 746.86, + "words": [ + { + "word": " Welcome", + "start": 745.08, + "end": 745.52, + "probability": 0.9951171875 + }, + { + "word": " back", + "start": 745.52, + "end": 745.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 745.86, + "end": 746.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 746.06, + "end": 746.16, + "probability": 0.99755859375 + }, + { + "word": " computer", + "start": 746.16, + "end": 746.38, + "probability": 0.99755859375 + }, + { + "word": " guru", + "start": 746.38, + "end": 746.6, + "probability": 0.99365234375 + }, + { + "word": " show.", + "start": 746.6, + "end": 746.86, + "probability": 1.0 + } + ] + }, + { + "id": 346, + "text": "My name is make Mike here to deal with your technology needs.", + "start": 746.96, + "end": 749.54, + "words": [ + { + "word": " My", + "start": 746.96, + "end": 747.4, + "probability": 0.99951171875 + }, + { + "word": " name", + "start": 747.4, + "end": 747.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 747.58, + "end": 747.72, + "probability": 0.99755859375 + }, + { + "word": " make", + "start": 747.72, + "end": 747.9, + "probability": 0.10528564453125 + }, + { + "word": " Mike", + "start": 747.9, + "end": 748.18, + "probability": 0.994140625 + }, + { + "word": " here", + "start": 748.18, + "end": 748.42, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 748.42, + "end": 748.58, + "probability": 1.0 + }, + { + "word": " deal", + "start": 748.58, + "end": 748.72, + "probability": 0.99755859375 + }, + { + "word": " with", + "start": 748.72, + "end": 748.84, + "probability": 1.0 + }, + { + "word": " your", + "start": 748.84, + "end": 748.96, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 748.96, + "end": 749.28, + "probability": 0.99951171875 + }, + { + "word": " needs.", + "start": 749.28, + "end": 749.54, + "probability": 0.97998046875 + } + ] + }, + { + "id": 347, + "text": "Andrew,", + "start": 749.56, + "end": 749.82, + "words": [ + { + "word": " Andrew,", + "start": 749.56, + "end": 749.82, + "probability": 0.288818359375 + } + ] + }, + { + "id": 348, + "text": "would you like a person in the process?", + "start": 749.84, + "end": 750.72, + "words": [ + { + "word": " would", + "start": 749.84, + "end": 749.96, + "probability": 0.354736328125 + }, + { + "word": " you", + "start": 749.96, + "end": 749.96, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 749.96, + "end": 750.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 750.06, + "end": 750.06, + "probability": 0.86572265625 + }, + { + "word": " person", + "start": 750.06, + "end": 750.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 750.3, + "end": 750.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 750.4, + "end": 750.42, + "probability": 1.0 + }, + { + "word": " process?", + "start": 750.42, + "end": 750.72, + "probability": 1.0 + } + ] + }, + { + "id": 349, + "text": "We have Jay Melnick in.", + "start": 750.78, + "end": 751.86, + "words": [ + { + "word": " We", + "start": 750.78, + "end": 750.98, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 750.98, + "end": 751.2, + "probability": 1.0 + }, + { + "word": " Jay", + "start": 751.2, + "end": 751.4, + "probability": 0.96875 + }, + { + "word": " Melnick", + "start": 751.4, + "end": 751.68, + "probability": 0.748046875 + }, + { + "word": " in.", + "start": 751.68, + "end": 751.86, + "probability": 0.1514892578125 + } + ] + }, + { + "id": 350, + "text": "He is a basically a journalist working on stories about scammers and,", + "start": 751.96, + "end": 757.88, + "words": [ + { + "word": " He", + "start": 751.96, + "end": 752.26, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 752.26, + "end": 752.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 752.5, + "end": 752.64, + "probability": 0.1885986328125 + }, + { + "word": " basically", + "start": 752.64, + "end": 754.56, + "probability": 0.689453125 + }, + { + "word": " a", + "start": 754.56, + "end": 754.8, + "probability": 0.998046875 + }, + { + "word": " journalist", + "start": 754.8, + "end": 755.06, + "probability": 1.0 + }, + { + "word": " working", + "start": 755.06, + "end": 755.34, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 755.34, + "end": 755.6, + "probability": 1.0 + }, + { + "word": " stories", + "start": 755.6, + "end": 755.84, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 755.84, + "end": 756.26, + "probability": 0.99951171875 + }, + { + "word": " scammers", + "start": 756.26, + "end": 756.92, + "probability": 0.99951171875 + }, + { + "word": " and,", + "start": 756.92, + "end": 757.88, + "probability": 0.9755859375 + } + ] + }, + { + "id": 351, + "text": "and all of the sort of nuance that's happening in that particular area,", + "start": 757.96, + "end": 761.56, + "words": [ + { + "word": " and", + "start": 757.96, + "end": 758.16, + "probability": 1.0 + }, + { + "word": " all", + "start": 758.16, + "end": 758.48, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 758.48, + "end": 758.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 758.68, + "end": 759.0, + "probability": 1.0 + }, + { + "word": " sort", + "start": 759.0, + "end": 759.4, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 759.4, + "end": 759.52, + "probability": 1.0 + }, + { + "word": " nuance", + "start": 759.52, + "end": 759.92, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 759.92, + "end": 760.36, + "probability": 1.0 + }, + { + "word": " happening", + "start": 760.36, + "end": 760.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 760.66, + "end": 760.88, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 760.88, + "end": 761.02, + "probability": 1.0 + }, + { + "word": " particular", + "start": 761.02, + "end": 761.32, + "probability": 0.99951171875 + }, + { + "word": " area,", + "start": 761.32, + "end": 761.56, + "probability": 0.9775390625 + } + ] + }, + { + "id": 352, + "text": "trying to keep people safe and doing a bunch of interviews.", + "start": 761.58, + "end": 763.3, + "words": [ + { + "word": " trying", + "start": 761.58, + "end": 761.68, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 761.68, + "end": 761.8, + "probability": 1.0 + }, + { + "word": " keep", + "start": 761.8, + "end": 761.92, + "probability": 1.0 + }, + { + "word": " people", + "start": 761.92, + "end": 762.16, + "probability": 1.0 + }, + { + "word": " safe", + "start": 762.16, + "end": 762.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 762.4, + "end": 762.56, + "probability": 0.99462890625 + }, + { + "word": " doing", + "start": 762.56, + "end": 762.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 762.7, + "end": 762.8, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 762.8, + "end": 762.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 762.94, + "end": 763.02, + "probability": 1.0 + }, + { + "word": " interviews.", + "start": 763.02, + "end": 763.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 353, + "text": "He said,", + "start": 763.36, + "end": 763.58, + "words": [ + { + "word": " He", + "start": 763.36, + "end": 763.46, + "probability": 0.450439453125 + }, + { + "word": " said,", + "start": 763.46, + "end": 763.58, + "probability": 0.9892578125 + } + ] + }, + { + "id": 354, + "text": "so,", + "start": 764.1199999999999, + "end": 764.56, + "words": [ + { + "word": " so,", + "start": 764.1199999999999, + "end": 764.56, + "probability": 0.9951171875 + } + ] + }, + { + "id": 355, + "text": "so tell me about you.", + "start": 764.64, + "end": 765.66, + "words": [ + { + "word": " so", + "start": 764.64, + "end": 764.9, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 764.9, + "end": 765.08, + "probability": 0.9970703125 + }, + { + "word": " me", + "start": 765.08, + "end": 765.2, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 765.2, + "end": 765.42, + "probability": 0.99853515625 + }, + { + "word": " you.", + "start": 765.42, + "end": 765.66, + "probability": 0.99169921875 + } + ] + }, + { + "id": 356, + "text": "Let's,", + "start": 765.74, + "end": 766.12, + "words": [ + { + "word": " Let's,", + "start": 765.74, + "end": 766.12, + "probability": 0.9990234375 + } + ] + }, + { + "id": 357, + "text": "let's get a little background on you,", + "start": 766.12, + "end": 767.28, + "words": [ + { + "word": " let's", + "start": 766.12, + "end": 766.32, + "probability": 1.0 + }, + { + "word": " get", + "start": 766.32, + "end": 766.42, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 766.42, + "end": 766.5, + "probability": 1.0 + }, + { + "word": " little", + "start": 766.5, + "end": 766.58, + "probability": 1.0 + }, + { + "word": " background", + "start": 766.58, + "end": 766.92, + "probability": 0.99609375 + }, + { + "word": " on", + "start": 766.92, + "end": 767.14, + "probability": 0.99560546875 + }, + { + "word": " you,", + "start": 767.14, + "end": 767.28, + "probability": 0.986328125 + } + ] + }, + { + "id": 358, + "text": "Jay.", + "start": 767.34, + "end": 767.52, + "words": [ + { + "word": " Jay.", + "start": 767.34, + "end": 767.52, + "probability": 0.99462890625 + } + ] + }, + { + "id": 359, + "text": "I mean,", + "start": 767.62, + "end": 767.88, + "words": [ + { + "word": " I", + "start": 767.62, + "end": 767.76, + "probability": 0.99853515625 + }, + { + "word": " mean,", + "start": 767.76, + "end": 767.88, + "probability": 0.9951171875 + } + ] + }, + { + "id": 360, + "text": "other than the,", + "start": 767.88, + "end": 768.14, + "words": [ + { + "word": " other", + "start": 767.88, + "end": 768.04, + "probability": 0.958984375 + }, + { + "word": " than", + "start": 768.04, + "end": 768.14, + "probability": 0.01898193359375 + }, + { + "word": " the,", + "start": 768.14, + "end": 768.14, + "probability": 0.073486328125 + } + ] + }, + { + "id": 361, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 362, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 363, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 364, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 365, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 366, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 367, + "text": "", + "start": 768.14, + "end": 768.14, + "words": [] + }, + { + "id": 368, + "text": "other than your intro here,", + "start": 768.16, + "end": 768.96, + "words": [ + { + "word": " other", + "start": 768.16, + "end": 768.24, + "probability": 0.00061798095703125 + }, + { + "word": " than", + "start": 768.24, + "end": 768.24, + "probability": 0.99658203125 + }, + { + "word": " your", + "start": 768.24, + "end": 768.38, + "probability": 0.99853515625 + }, + { + "word": " intro", + "start": 768.38, + "end": 768.72, + "probability": 0.99609375 + }, + { + "word": " here,", + "start": 768.72, + "end": 768.96, + "probability": 0.98583984375 + } + ] + }, + { + "id": 369, + "text": "what is your,", + "start": 769.12, + "end": 770.1, + "words": [ + { + "word": " what", + "start": 769.12, + "end": 769.6, + "probability": 0.99609375 + }, + { + "word": " is", + "start": 769.6, + "end": 769.8, + "probability": 0.420166015625 + }, + { + "word": " your,", + "start": 769.8, + "end": 770.1, + "probability": 0.998046875 + } + ] + }, + { + "id": 370, + "text": "what started you on this path?", + "start": 771.52, + "end": 773.1, + "words": [ + { + "word": " what", + "start": 771.52, + "end": 771.96, + "probability": 0.998046875 + }, + { + "word": " started", + "start": 771.96, + "end": 772.36, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 772.36, + "end": 772.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 772.52, + "end": 772.64, + "probability": 0.99462890625 + }, + { + "word": " this", + "start": 772.64, + "end": 772.78, + "probability": 0.99951171875 + }, + { + "word": " path?", + "start": 772.78, + "end": 773.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 371, + "text": "Do you think", + "start": 773.32, + "end": 773.84, + "words": [ + { + "word": " Do", + "start": 773.32, + "end": 773.54, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 773.54, + "end": 773.6, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 773.6, + "end": 773.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 372, + "text": "on the path of computers?", + "start": 773.84, + "end": 775.1, + "words": [ + { + "word": " on", + "start": 773.84, + "end": 774.06, + "probability": 0.2861328125 + }, + { + "word": " the", + "start": 774.06, + "end": 774.18, + "probability": 0.99755859375 + }, + { + "word": " path", + "start": 774.18, + "end": 774.46, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 774.46, + "end": 774.7, + "probability": 0.98779296875 + }, + { + "word": " computers?", + "start": 774.7, + "end": 775.1, + "probability": 0.99560546875 + } + ] + }, + { + "id": 373, + "text": "Yeah.", + "start": 775.42, + "end": 775.76, + "words": [ + { + "word": " Yeah.", + "start": 775.42, + "end": 775.76, + "probability": 0.9833984375 + } + ] + }, + { + "id": 374, + "text": "I'm always curious.", + "start": 776.24, + "end": 777.22, + "words": [ + { + "word": " I'm", + "start": 776.24, + "end": 776.68, + "probability": 0.990234375 + }, + { + "word": " always", + "start": 776.68, + "end": 776.9, + "probability": 1.0 + }, + { + "word": " curious.", + "start": 776.9, + "end": 777.22, + "probability": 1.0 + } + ] + }, + { + "id": 375, + "text": "So how people got into technology,", + "start": 777.3, + "end": 778.4, + "words": [ + { + "word": " So", + "start": 777.3, + "end": 777.4, + "probability": 0.99169921875 + }, + { + "word": " how", + "start": 777.4, + "end": 777.48, + "probability": 0.99853515625 + }, + { + "word": " people", + "start": 777.48, + "end": 777.7, + "probability": 1.0 + }, + { + "word": " got", + "start": 777.7, + "end": 777.92, + "probability": 0.9931640625 + }, + { + "word": " into", + "start": 777.92, + "end": 778.1, + "probability": 0.99853515625 + }, + { + "word": " technology,", + "start": 778.1, + "end": 778.4, + "probability": 0.94970703125 + } + ] + }, + { + "id": 376, + "text": "uh,", + "start": 778.9799999999999, + "end": 779.42, + "words": [ + { + "word": " uh,", + "start": 778.9799999999999, + "end": 779.42, + "probability": 0.79052734375 + } + ] + }, + { + "id": 377, + "text": "in,", + "start": 781.3199999999999, + "end": 781.76, + "words": [ + { + "word": " in,", + "start": 781.3199999999999, + "end": 781.76, + "probability": 0.9892578125 + } + ] + }, + { + "id": 378, + "text": "in high school,", + "start": 781.88, + "end": 782.66, + "words": [ + { + "word": " in", + "start": 781.88, + "end": 782.02, + "probability": 0.9990234375 + }, + { + "word": " high", + "start": 782.02, + "end": 782.3, + "probability": 0.9892578125 + }, + { + "word": " school,", + "start": 782.3, + "end": 782.66, + "probability": 1.0 + } + ] + }, + { + "id": 379, + "text": "uh,", + "start": 783.2399999999999, + "end": 783.68, + "words": [ + { + "word": " uh,", + "start": 783.2399999999999, + "end": 783.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 380, + "text": "an Emily Griffith opportunity school.", + "start": 784.02, + "end": 786.16, + "words": [ + { + "word": " an", + "start": 784.02, + "end": 784.5, + "probability": 0.176513671875 + }, + { + "word": " Emily", + "start": 784.5, + "end": 784.8, + "probability": 0.99853515625 + }, + { + "word": " Griffith", + "start": 784.8, + "end": 785.24, + "probability": 0.99951171875 + }, + { + "word": " opportunity", + "start": 785.24, + "end": 785.56, + "probability": 0.97998046875 + }, + { + "word": " school.", + "start": 785.56, + "end": 786.16, + "probability": 0.998046875 + } + ] + }, + { + "id": 381, + "text": "There was a,", + "start": 786.3, + "end": 786.88, + "words": [ + { + "word": " There", + "start": 786.3, + "end": 786.54, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 786.54, + "end": 786.72, + "probability": 1.0 + }, + { + "word": " a,", + "start": 786.72, + "end": 786.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 382, + "text": "uh,", + "start": 787.0, + "end": 787.28, + "words": [ + { + "word": " uh,", + "start": 787.0, + "end": 787.28, + "probability": 0.9775390625 + } + ] + }, + { + "id": 383, + "text": "beginning computing,", + "start": 787.3, + "end": 788.52, + "words": [ + { + "word": " beginning", + "start": 787.3, + "end": 787.74, + "probability": 0.9970703125 + }, + { + "word": " computing,", + "start": 787.74, + "end": 788.52, + "probability": 0.99755859375 + } + ] + }, + { + "id": 384, + "text": "and this was punch card days,", + "start": 788.6, + "end": 790.06, + "words": [ + { + "word": " and", + "start": 788.6, + "end": 788.82, + "probability": 0.998046875 + }, + { + "word": " this", + "start": 788.82, + "end": 788.96, + "probability": 1.0 + }, + { + "word": " was", + "start": 788.96, + "end": 789.1, + "probability": 0.990234375 + }, + { + "word": " punch", + "start": 789.1, + "end": 789.34, + "probability": 0.99658203125 + }, + { + "word": " card", + "start": 789.34, + "end": 789.62, + "probability": 0.98876953125 + }, + { + "word": " days,", + "start": 789.62, + "end": 790.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 385, + "text": "right?", + "start": 790.22, + "end": 790.84, + "words": [ + { + "word": " right?", + "start": 790.22, + "end": 790.84, + "probability": 0.9931640625 + } + ] + }, + { + "id": 386, + "text": "So we learned machine language.", + "start": 790.96, + "end": 792.32, + "words": [ + { + "word": " So", + "start": 790.96, + "end": 791.1, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 791.1, + "end": 791.28, + "probability": 0.99951171875 + }, + { + "word": " learned", + "start": 791.28, + "end": 791.5, + "probability": 0.99462890625 + }, + { + "word": " machine", + "start": 791.5, + "end": 791.76, + "probability": 0.99951171875 + }, + { + "word": " language.", + "start": 791.76, + "end": 792.32, + "probability": 1.0 + } + ] + }, + { + "id": 387, + "text": "And then the university of Denver,", + "start": 792.62, + "end": 794.44, + "words": [ + { + "word": " And", + "start": 792.62, + "end": 793.06, + "probability": 0.99462890625 + }, + { + "word": " then", + "start": 793.06, + "end": 793.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 793.26, + "end": 793.36, + "probability": 1.0 + }, + { + "word": " university", + "start": 793.36, + "end": 793.7, + "probability": 0.97607421875 + }, + { + "word": " of", + "start": 793.7, + "end": 794.04, + "probability": 1.0 + }, + { + "word": " Denver,", + "start": 794.04, + "end": 794.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 388, + "text": "uh,", + "start": 794.9799999999999, + "end": 795.42, + "words": [ + { + "word": " uh,", + "start": 794.9799999999999, + "end": 795.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 389, + "text": "we did programming and that was Algal.", + "start": 795.54, + "end": 797.58, + "words": [ + { + "word": " we", + "start": 795.54, + "end": 795.72, + "probability": 0.9951171875 + }, + { + "word": " did", + "start": 795.72, + "end": 795.88, + "probability": 0.99951171875 + }, + { + "word": " programming", + "start": 795.88, + "end": 796.42, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 796.42, + "end": 796.64, + "probability": 0.9716796875 + }, + { + "word": " that", + "start": 796.64, + "end": 796.78, + "probability": 1.0 + }, + { + "word": " was", + "start": 796.78, + "end": 796.96, + "probability": 1.0 + }, + { + "word": " Algal.", + "start": 796.96, + "end": 797.58, + "probability": 0.7333984375 + } + ] + }, + { + "id": 390, + "text": "And,", + "start": 797.7, + "end": 798.14, + "words": [ + { + "word": " And,", + "start": 797.7, + "end": 798.14, + "probability": 0.057098388671875 + } + ] + }, + { + "id": 391, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 392, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 393, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 394, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 395, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 396, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 397, + "text": "", + "start": 798.14, + "end": 798.14, + "words": [] + }, + { + "id": 398, + "text": "and that was the huge with the raised floors and air conditionings.", + "start": 798.16, + "end": 802.66, + "words": [ + { + "word": " and", + "start": 798.16, + "end": 798.48, + "probability": 0.281005859375 + }, + { + "word": " that", + "start": 798.48, + "end": 798.62, + "probability": 1.0 + }, + { + "word": " was", + "start": 798.62, + "end": 798.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 798.92, + "end": 799.68, + "probability": 0.2093505859375 + }, + { + "word": " huge", + "start": 799.68, + "end": 800.08, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 800.08, + "end": 800.64, + "probability": 0.27734375 + }, + { + "word": " the", + "start": 800.64, + "end": 800.76, + "probability": 1.0 + }, + { + "word": " raised", + "start": 800.76, + "end": 801.02, + "probability": 1.0 + }, + { + "word": " floors", + "start": 801.02, + "end": 801.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 801.48, + "end": 801.86, + "probability": 0.99951171875 + }, + { + "word": " air", + "start": 801.86, + "end": 802.0, + "probability": 1.0 + }, + { + "word": " conditionings.", + "start": 802.0, + "end": 802.66, + "probability": 0.8037109375 + } + ] + }, + { + "id": 399, + "text": "And that was like one Thursday every month or something.", + "start": 802.66, + "end": 805.76, + "words": [ + { + "word": " And", + "start": 802.66, + "end": 802.76, + "probability": 0.578125 + }, + { + "word": " that", + "start": 802.76, + "end": 802.88, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 802.88, + "end": 803.06, + "probability": 1.0 + }, + { + "word": " like", + "start": 803.06, + "end": 803.3, + "probability": 0.9228515625 + }, + { + "word": " one", + "start": 803.3, + "end": 803.58, + "probability": 1.0 + }, + { + "word": " Thursday", + "start": 803.58, + "end": 804.52, + "probability": 1.0 + }, + { + "word": " every", + "start": 804.52, + "end": 804.92, + "probability": 0.99951171875 + }, + { + "word": " month", + "start": 804.92, + "end": 805.24, + "probability": 1.0 + }, + { + "word": " or", + "start": 805.24, + "end": 805.42, + "probability": 0.99951171875 + }, + { + "word": " something.", + "start": 805.42, + "end": 805.76, + "probability": 1.0 + } + ] + }, + { + "id": 400, + "text": "Right.", + "start": 805.98, + "end": 806.38, + "words": [ + { + "word": " Right.", + "start": 805.98, + "end": 806.38, + "probability": 0.76025390625 + } + ] + }, + { + "id": 401, + "text": "Uh,", + "start": 806.92, + "end": 807.36, + "words": [ + { + "word": " Uh,", + "start": 806.92, + "end": 807.36, + "probability": 0.19140625 + } + ] + }, + { + "id": 402, + "text": "college,", + "start": 808.16, + "end": 808.24, + "words": [ + { + "word": " college,", + "start": 808.02, + "end": 808.24, + "probability": 0.98779296875 + } + ] + }, + { + "id": 403, + "text": "uh,", + "start": 808.54, + "end": 808.9, + "words": [ + { + "word": " uh,", + "start": 808.54, + "end": 808.9, + "probability": 0.8857421875 + } + ] + }, + { + "id": 404, + "text": "went into,", + "start": 809.7399999999999, + "end": 810.4, + "words": [ + { + "word": " went", + "start": 809.7399999999999, + "end": 810.18, + "probability": 0.93408203125 + }, + { + "word": " into,", + "start": 810.18, + "end": 810.4, + "probability": 1.0 + } + ] + }, + { + "id": 405, + "text": "uh,", + "start": 810.54, + "end": 811.0, + "words": [ + { + "word": " uh,", + "start": 810.54, + "end": 811.0, + "probability": 0.99462890625 + } + ] + }, + { + "id": 406, + "text": "uh,", + "start": 811.2, + "end": 811.38, + "words": [ + { + "word": " uh,", + "start": 811.2, + "end": 811.38, + "probability": 0.7568359375 + } + ] + }, + { + "id": 407, + "text": "it or whatever.", + "start": 811.38, + "end": 812.56, + "words": [ + { + "word": " it", + "start": 811.38, + "end": 811.84, + "probability": 0.705078125 + }, + { + "word": " or", + "start": 811.84, + "end": 812.18, + "probability": 0.984375 + }, + { + "word": " whatever.", + "start": 812.18, + "end": 812.56, + "probability": 1.0 + } + ] + }, + { + "id": 408, + "text": "And I was still punch cards.", + "start": 812.68, + "end": 814.02, + "words": [ + { + "word": " And", + "start": 812.68, + "end": 813.02, + "probability": 0.751953125 + }, + { + "word": " I", + "start": 813.02, + "end": 813.1, + "probability": 0.8916015625 + }, + { + "word": " was", + "start": 813.1, + "end": 813.2, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 813.2, + "end": 813.4, + "probability": 0.99951171875 + }, + { + "word": " punch", + "start": 813.4, + "end": 813.66, + "probability": 0.99560546875 + }, + { + "word": " cards.", + "start": 813.66, + "end": 814.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 409, + "text": "And I got to be thinking,", + "start": 814.6, + "end": 815.98, + "words": [ + { + "word": " And", + "start": 814.6, + "end": 815.04, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 815.04, + "end": 815.22, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 815.22, + "end": 815.38, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 815.38, + "end": 815.54, + "probability": 1.0 + }, + { + "word": " be", + "start": 815.54, + "end": 815.64, + "probability": 1.0 + }, + { + "word": " thinking,", + "start": 815.64, + "end": 815.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 410, + "text": "well,", + "start": 816.04, + "end": 816.2, + "words": [ + { + "word": " well,", + "start": 816.04, + "end": 816.2, + "probability": 0.9716796875 + } + ] + }, + { + "id": 411, + "text": "she is a computer's the way they're going to go.", + "start": 816.24, + "end": 818.56, + "words": [ + { + "word": " she", + "start": 816.24, + "end": 816.38, + "probability": 0.294921875 + }, + { + "word": " is", + "start": 816.38, + "end": 816.72, + "probability": 0.262451171875 + }, + { + "word": " a", + "start": 816.72, + "end": 816.9, + "probability": 0.306396484375 + }, + { + "word": " computer's", + "start": 816.9, + "end": 817.54, + "probability": 0.7216796875 + }, + { + "word": " the", + "start": 817.54, + "end": 817.6, + "probability": 0.96630859375 + }, + { + "word": " way", + "start": 817.6, + "end": 817.8, + "probability": 1.0 + }, + { + "word": " they're", + "start": 817.8, + "end": 817.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 817.96, + "end": 818.06, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 818.06, + "end": 818.2, + "probability": 1.0 + }, + { + "word": " go.", + "start": 818.2, + "end": 818.56, + "probability": 1.0 + } + ] + }, + { + "id": 412, + "text": "And it's just programming.", + "start": 819.32, + "end": 820.78, + "words": [ + { + "word": " And", + "start": 819.32, + "end": 819.76, + "probability": 0.98876953125 + }, + { + "word": " it's", + "start": 819.76, + "end": 819.94, + "probability": 0.94873046875 + }, + { + "word": " just", + "start": 819.94, + "end": 820.04, + "probability": 1.0 + }, + { + "word": " programming.", + "start": 820.04, + "end": 820.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 413, + "text": "We're,", + "start": 821.72, + "end": 822.16, + "words": [ + { + "word": " We're,", + "start": 821.72, + "end": 822.16, + "probability": 0.6904296875 + } + ] + }, + { + "id": 414, + "text": "you know,", + "start": 822.18, + "end": 822.6, + "words": [ + { + "word": " you", + "start": 822.18, + "end": 822.32, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 822.32, + "end": 822.6, + "probability": 1.0 + } + ] + }, + { + "id": 415, + "text": "what's,", + "start": 822.64, + "end": 823.02, + "words": [ + { + "word": " what's,", + "start": 822.64, + "end": 823.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 416, + "text": "what's the downfall of that?", + "start": 823.02, + "end": 824.46, + "words": [ + { + "word": " what's", + "start": 823.02, + "end": 823.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 823.36, + "end": 823.4, + "probability": 0.99951171875 + }, + { + "word": " downfall", + "start": 823.4, + "end": 823.98, + "probability": 1.0 + }, + { + "word": " of", + "start": 823.98, + "end": 824.22, + "probability": 1.0 + }, + { + "word": " that?", + "start": 824.22, + "end": 824.46, + "probability": 1.0 + } + ] + }, + { + "id": 417, + "text": "Well,", + "start": 824.6, + "end": 825.04, + "words": [ + { + "word": " Well,", + "start": 824.6, + "end": 825.04, + "probability": 0.9990234375 + } + ] + }, + { + "id": 418, + "text": "the punch cards,", + "start": 825.12, + "end": 825.68, + "words": [ + { + "word": " the", + "start": 825.12, + "end": 825.14, + "probability": 0.99658203125 + }, + { + "word": " punch", + "start": 825.14, + "end": 825.38, + "probability": 1.0 + }, + { + "word": " cards,", + "start": 825.38, + "end": 825.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 419, + "text": "well,", + "start": 825.72, + "end": 825.86, + "words": [ + { + "word": " well,", + "start": 825.72, + "end": 825.86, + "probability": 0.99462890625 + } + ] + }, + { + "id": 420, + "text": "it's a little bit more complex than that.", + "start": 828.16, + "end": 828.52, + "words": [ + { + "word": " it's", + "start": 828.16, + "end": 828.16, + "probability": 0.2327880859375 + }, + { + "word": " a", + "start": 828.16, + "end": 828.5, + "probability": 0.11224365234375 + }, + { + "word": " little", + "start": 828.5, + "end": 828.52, + "probability": 0.12200927734375 + }, + { + "word": " bit", + "start": 828.52, + "end": 828.52, + "probability": 0.370849609375 + }, + { + "word": " more", + "start": 828.52, + "end": 828.52, + "probability": 0.0911865234375 + }, + { + "word": " complex", + "start": 828.52, + "end": 828.52, + "probability": 0.07977294921875 + }, + { + "word": " than", + "start": 828.52, + "end": 828.52, + "probability": 0.09625244140625 + }, + { + "word": " that.", + "start": 828.52, + "end": 828.52, + "probability": 0.1630859375 + } + ] + }, + { + "id": 421, + "text": "", + "start": 828.52, + "end": 828.52, + "words": [] + }, + { + "id": 422, + "text": "", + "start": 828.52, + "end": 828.52, + "words": [] + }, + { + "id": 423, + "text": "uh,", + "start": 828.52, + "end": 828.82, + "words": [ + { + "word": " uh,", + "start": 828.52, + "end": 828.82, + "probability": 0.84130859375 + } + ] + }, + { + "id": 424, + "text": "let's take away the human element.", + "start": 829.38, + "end": 830.8, + "words": [ + { + "word": " let's", + "start": 829.38, + "end": 829.82, + "probability": 0.9814453125 + }, + { + "word": " take", + "start": 829.82, + "end": 829.92, + "probability": 0.99609375 + }, + { + "word": " away", + "start": 829.92, + "end": 830.12, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 830.12, + "end": 830.26, + "probability": 0.99853515625 + }, + { + "word": " human", + "start": 830.26, + "end": 830.48, + "probability": 0.99853515625 + }, + { + "word": " element.", + "start": 830.48, + "end": 830.8, + "probability": 0.77001953125 + } + ] + }, + { + "id": 425, + "text": "So computers will be programming computers.", + "start": 830.9, + "end": 832.88, + "words": [ + { + "word": " So", + "start": 830.9, + "end": 831.04, + "probability": 0.99658203125 + }, + { + "word": " computers", + "start": 831.04, + "end": 831.46, + "probability": 0.93603515625 + }, + { + "word": " will", + "start": 831.46, + "end": 831.82, + "probability": 0.92431640625 + }, + { + "word": " be", + "start": 831.82, + "end": 831.96, + "probability": 0.99951171875 + }, + { + "word": " programming", + "start": 831.96, + "end": 832.42, + "probability": 0.99658203125 + }, + { + "word": " computers.", + "start": 832.42, + "end": 832.88, + "probability": 0.99365234375 + } + ] + }, + { + "id": 426, + "text": "What is that going to look like in the future?", + "start": 833.78, + "end": 835.78, + "words": [ + { + "word": " What", + "start": 833.78, + "end": 834.22, + "probability": 0.99658203125 + }, + { + "word": " is", + "start": 834.22, + "end": 834.48, + "probability": 0.94970703125 + }, + { + "word": " that", + "start": 834.48, + "end": 834.6, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 834.6, + "end": 834.74, + "probability": 0.9306640625 + }, + { + "word": " to", + "start": 834.74, + "end": 834.86, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 834.86, + "end": 835.0, + "probability": 1.0 + }, + { + "word": " like", + "start": 835.0, + "end": 835.22, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 835.22, + "end": 835.36, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 835.36, + "end": 835.46, + "probability": 1.0 + }, + { + "word": " future?", + "start": 835.46, + "end": 835.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 427, + "text": "Let's before PCs.", + "start": 835.86, + "end": 836.88, + "words": [ + { + "word": " Let's", + "start": 835.86, + "end": 836.08, + "probability": 0.68115234375 + }, + { + "word": " before", + "start": 836.08, + "end": 836.28, + "probability": 0.40234375 + }, + { + "word": " PCs.", + "start": 836.28, + "end": 836.88, + "probability": 0.9423828125 + } + ] + }, + { + "id": 428, + "text": "So I went back to business and went to my,", + "start": 837.46, + "end": 841.9, + "words": [ + { + "word": " So", + "start": 837.46, + "end": 837.9, + "probability": 0.92724609375 + }, + { + "word": " I", + "start": 837.9, + "end": 838.1, + "probability": 0.99755859375 + }, + { + "word": " went", + "start": 838.1, + "end": 838.32, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 838.32, + "end": 838.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 838.52, + "end": 838.68, + "probability": 0.99951171875 + }, + { + "word": " business", + "start": 838.68, + "end": 838.9, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 838.9, + "end": 840.42, + "probability": 0.9853515625 + }, + { + "word": " went", + "start": 840.42, + "end": 841.5, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 841.5, + "end": 841.7, + "probability": 0.9990234375 + }, + { + "word": " my,", + "start": 841.7, + "end": 841.9, + "probability": 0.9912109375 + } + ] + }, + { + "id": 429, + "text": "uh,", + "start": 842.1, + "end": 842.3, + "words": [ + { + "word": " uh,", + "start": 842.1, + "end": 842.3, + "probability": 0.99462890625 + } + ] + }, + { + "id": 430, + "text": "radio days,", + "start": 843.1199999999999, + "end": 843.94, + "words": [ + { + "word": " radio", + "start": 843.1199999999999, + "end": 843.56, + "probability": 0.99267578125 + }, + { + "word": " days,", + "start": 843.56, + "end": 843.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 431, + "text": "I guess,", + "start": 844.06, + "end": 844.48, + "words": [ + { + "word": " I", + "start": 844.06, + "end": 844.24, + "probability": 0.9990234375 + }, + { + "word": " guess,", + "start": 844.24, + "end": 844.48, + "probability": 1.0 + } + ] + }, + { + "id": 432, + "text": "and Denver and doing all kinds of stuff and TV.", + "start": 844.48, + "end": 847.66, + "words": [ + { + "word": " and", + "start": 844.48, + "end": 844.6, + "probability": 0.474365234375 + }, + { + "word": " Denver", + "start": 844.6, + "end": 844.9, + "probability": 0.8310546875 + }, + { + "word": " and", + "start": 844.9, + "end": 845.18, + "probability": 0.927734375 + }, + { + "word": " doing", + "start": 845.18, + "end": 845.94, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 845.94, + "end": 846.18, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 846.18, + "end": 846.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 846.42, + "end": 846.66, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 846.66, + "end": 846.88, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 846.88, + "end": 847.16, + "probability": 0.99609375 + }, + { + "word": " TV.", + "start": 847.16, + "end": 847.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 433, + "text": "And then,", + "start": 848.34, + "end": 849.12, + "words": [ + { + "word": " And", + "start": 848.34, + "end": 848.78, + "probability": 0.99951171875 + }, + { + "word": " then,", + "start": 848.78, + "end": 849.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 434, + "text": "uh,", + "start": 849.14, + "end": 849.34, + "words": [ + { + "word": " uh,", + "start": 849.14, + "end": 849.34, + "probability": 0.9599609375 + } + ] + }, + { + "id": 435, + "text": "went back and saw the new thing of BBSs and I liked what was going on.", + "start": 850.54, + "end": 856.42, + "words": [ + { + "word": " went", + "start": 850.54, + "end": 850.82, + "probability": 0.935546875 + }, + { + "word": " back", + "start": 850.82, + "end": 851.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 851.18, + "end": 851.36, + "probability": 1.0 + }, + { + "word": " saw", + "start": 851.36, + "end": 851.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 851.64, + "end": 852.66, + "probability": 0.99755859375 + }, + { + "word": " new", + "start": 852.66, + "end": 852.8, + "probability": 0.99951171875 + }, + { + "word": " thing", + "start": 852.8, + "end": 853.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 853.06, + "end": 853.16, + "probability": 0.98583984375 + }, + { + "word": " BBSs", + "start": 853.16, + "end": 854.1, + "probability": 0.9091796875 + }, + { + "word": " and", + "start": 854.1, + "end": 854.88, + "probability": 0.71044921875 + }, + { + "word": " I", + "start": 854.88, + "end": 855.1, + "probability": 0.99951171875 + }, + { + "word": " liked", + "start": 855.1, + "end": 855.46, + "probability": 0.9853515625 + }, + { + "word": " what", + "start": 855.46, + "end": 855.76, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 855.76, + "end": 855.94, + "probability": 1.0 + }, + { + "word": " going", + "start": 855.94, + "end": 856.16, + "probability": 0.99951171875 + }, + { + "word": " on.", + "start": 856.16, + "end": 856.42, + "probability": 1.0 + } + ] + }, + { + "id": 436, + "text": "So that's where I started going to the,", + "start": 856.5, + "end": 858.14, + "words": [ + { + "word": " So", + "start": 856.5, + "end": 856.66, + "probability": 0.98828125 + }, + { + "word": " that's", + "start": 856.66, + "end": 857.56, + "probability": 0.998046875 + }, + { + "word": " where", + "start": 857.56, + "end": 857.68, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 857.68, + "end": 857.82, + "probability": 0.99951171875 + }, + { + "word": " started", + "start": 857.82, + "end": 858.14, + "probability": 0.9970703125 + }, + { + "word": " going", + "start": 858.14, + "end": 858.14, + "probability": 0.1402587890625 + }, + { + "word": " to", + "start": 858.14, + "end": 858.14, + "probability": 0.1849365234375 + }, + { + "word": " the,", + "start": 858.14, + "end": 858.14, + "probability": 0.1282958984375 + } + ] + }, + { + "id": 437, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 438, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 439, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 440, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 441, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 442, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 443, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 444, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 445, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 446, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 447, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 448, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 449, + "text": "", + "start": 858.14, + "end": 858.14, + "words": [] + }, + { + "id": 450, + "text": "uh,", + "start": 858.16, + "end": 858.26, + "words": [ + { + "word": " uh,", + "start": 858.16, + "end": 858.26, + "probability": 0.0003345012664794922 + } + ] + }, + { + "id": 451, + "text": "the Colorado snow bank.", + "start": 858.46, + "end": 859.06, + "words": [ + { + "word": " the", + "start": 858.46, + "end": 858.46, + "probability": 0.01477813720703125 + }, + { + "word": " Colorado", + "start": 858.46, + "end": 858.46, + "probability": 0.841796875 + }, + { + "word": " snow", + "start": 858.46, + "end": 858.74, + "probability": 0.5078125 + }, + { + "word": " bank.", + "start": 858.74, + "end": 859.06, + "probability": 0.83154296875 + } + ] + }, + { + "id": 452, + "text": "This is 85,", + "start": 859.2, + "end": 860.1, + "words": [ + { + "word": " This", + "start": 859.2, + "end": 859.36, + "probability": 0.9677734375 + }, + { + "word": " is", + "start": 859.36, + "end": 859.56, + "probability": 0.79248046875 + }, + { + "word": " 85,", + "start": 859.56, + "end": 860.1, + "probability": 0.96875 + } + ] + }, + { + "id": 453, + "text": "84,", + "start": 860.46, + "end": 860.94, + "words": [ + { + "word": " 84,", + "start": 860.46, + "end": 860.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 454, + "text": "uh,", + "start": 861.9399999999999, + "end": 862.38, + "words": [ + { + "word": " uh,", + "start": 861.9399999999999, + "end": 862.38, + "probability": 0.8720703125 + } + ] + }, + { + "id": 455, + "text": "got laughed at a lot.", + "start": 862.52, + "end": 863.82, + "words": [ + { + "word": " got", + "start": 862.52, + "end": 862.76, + "probability": 0.99462890625 + }, + { + "word": " laughed", + "start": 862.76, + "end": 863.2, + "probability": 0.998046875 + }, + { + "word": " at", + "start": 863.2, + "end": 863.46, + "probability": 0.958984375 + }, + { + "word": " a", + "start": 863.46, + "end": 863.6, + "probability": 0.99853515625 + }, + { + "word": " lot.", + "start": 863.6, + "end": 863.82, + "probability": 1.0 + } + ] + }, + { + "id": 456, + "text": "Cara snow bank cause skiing in Colorado and,", + "start": 863.92, + "end": 867.44, + "words": [ + { + "word": " Cara", + "start": 863.92, + "end": 864.36, + "probability": 0.403564453125 + }, + { + "word": " snow", + "start": 864.36, + "end": 864.68, + "probability": 0.96630859375 + }, + { + "word": " bank", + "start": 864.68, + "end": 865.04, + "probability": 0.8251953125 + }, + { + "word": " cause", + "start": 865.04, + "end": 865.26, + "probability": 0.58154296875 + }, + { + "word": " skiing", + "start": 865.26, + "end": 865.62, + "probability": 0.70751953125 + }, + { + "word": " in", + "start": 865.62, + "end": 865.74, + "probability": 0.9892578125 + }, + { + "word": " Colorado", + "start": 865.74, + "end": 866.16, + "probability": 0.9990234375 + }, + { + "word": " and,", + "start": 866.16, + "end": 867.44, + "probability": 0.927734375 + } + ] + }, + { + "id": 457, + "text": "uh,", + "start": 867.5, + "end": 867.66, + "words": [ + { + "word": " uh,", + "start": 867.5, + "end": 867.66, + "probability": 0.42431640625 + } + ] + }, + { + "id": 458, + "text": "tried to sell that idea.", + "start": 867.82, + "end": 871.22, + "words": [ + { + "word": " tried", + "start": 867.82, + "end": 868.32, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 868.32, + "end": 868.58, + "probability": 0.99951171875 + }, + { + "word": " sell", + "start": 868.58, + "end": 868.92, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 868.92, + "end": 869.8, + "probability": 0.998046875 + }, + { + "word": " idea.", + "start": 869.8, + "end": 871.22, + "probability": 0.982421875 + } + ] + }, + { + "id": 459, + "text": "Oh yeah.", + "start": 871.36, + "end": 871.74, + "words": [ + { + "word": " Oh", + "start": 871.36, + "end": 871.5, + "probability": 0.99365234375 + }, + { + "word": " yeah.", + "start": 871.5, + "end": 871.74, + "probability": 0.97412109375 + } + ] + }, + { + "id": 460, + "text": "People,", + "start": 871.86, + "end": 872.2, + "words": [ + { + "word": " People,", + "start": 871.86, + "end": 872.2, + "probability": 0.99267578125 + } + ] + }, + { + "id": 461, + "text": "people's computers calling other computers and I get snow reports and road reports and all this other stuff.", + "start": 872.26, + "end": 878.3, + "words": [ + { + "word": " people's", + "start": 872.26, + "end": 873.02, + "probability": 0.99609375 + }, + { + "word": " computers", + "start": 873.02, + "end": 873.28, + "probability": 0.99853515625 + }, + { + "word": " calling", + "start": 873.28, + "end": 874.04, + "probability": 0.9541015625 + }, + { + "word": " other", + "start": 874.04, + "end": 874.34, + "probability": 1.0 + }, + { + "word": " computers", + "start": 874.34, + "end": 875.0, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 875.0, + "end": 875.64, + "probability": 0.73046875 + }, + { + "word": " I", + "start": 875.64, + "end": 875.7, + "probability": 0.91064453125 + }, + { + "word": " get", + "start": 875.7, + "end": 875.86, + "probability": 0.99462890625 + }, + { + "word": " snow", + "start": 875.86, + "end": 876.1, + "probability": 0.99951171875 + }, + { + "word": " reports", + "start": 876.1, + "end": 876.48, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 876.48, + "end": 876.74, + "probability": 0.98974609375 + }, + { + "word": " road", + "start": 876.74, + "end": 876.92, + "probability": 0.99951171875 + }, + { + "word": " reports", + "start": 876.92, + "end": 877.24, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 877.24, + "end": 877.54, + "probability": 0.99755859375 + }, + { + "word": " all", + "start": 877.54, + "end": 877.64, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 877.64, + "end": 877.8, + "probability": 1.0 + }, + { + "word": " other", + "start": 877.8, + "end": 877.98, + "probability": 0.99951171875 + }, + { + "word": " stuff.", + "start": 877.98, + "end": 878.3, + "probability": 1.0 + } + ] + }, + { + "id": 462, + "text": "And they just sort of looked at me and laughed,", + "start": 878.42, + "end": 881.06, + "words": [ + { + "word": " And", + "start": 878.42, + "end": 878.86, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 878.86, + "end": 879.0, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 879.0, + "end": 879.16, + "probability": 1.0 + }, + { + "word": " sort", + "start": 879.16, + "end": 879.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 879.38, + "end": 879.48, + "probability": 1.0 + }, + { + "word": " looked", + "start": 879.48, + "end": 879.68, + "probability": 1.0 + }, + { + "word": " at", + "start": 879.68, + "end": 879.82, + "probability": 1.0 + }, + { + "word": " me", + "start": 879.82, + "end": 879.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 879.98, + "end": 880.36, + "probability": 0.9990234375 + }, + { + "word": " laughed,", + "start": 880.36, + "end": 881.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 463, + "text": "you know,", + "start": 881.26, + "end": 881.86, + "words": [ + { + "word": " you", + "start": 881.26, + "end": 881.66, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 881.66, + "end": 881.86, + "probability": 1.0 + } + ] + }, + { + "id": 464, + "text": "and had to take it on the road and stuff.", + "start": 881.86, + "end": 884.08, + "words": [ + { + "word": " and", + "start": 881.86, + "end": 882.54, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 882.54, + "end": 882.9, + "probability": 0.493408203125 + }, + { + "word": " to", + "start": 882.9, + "end": 883.06, + "probability": 1.0 + }, + { + "word": " take", + "start": 883.06, + "end": 883.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 883.22, + "end": 883.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 883.32, + "end": 883.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 883.42, + "end": 883.54, + "probability": 1.0 + }, + { + "word": " road", + "start": 883.54, + "end": 883.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 883.74, + "end": 883.86, + "probability": 0.93994140625 + }, + { + "word": " stuff.", + "start": 883.86, + "end": 884.08, + "probability": 0.998046875 + } + ] + }, + { + "id": 465, + "text": "And then over a time period,", + "start": 884.3, + "end": 886.06, + "words": [ + { + "word": " And", + "start": 884.3, + "end": 884.74, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 884.74, + "end": 885.04, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 885.04, + "end": 885.28, + "probability": 0.96533203125 + }, + { + "word": " a", + "start": 885.28, + "end": 885.46, + "probability": 0.77197265625 + }, + { + "word": " time", + "start": 885.46, + "end": 885.72, + "probability": 1.0 + }, + { + "word": " period,", + "start": 885.72, + "end": 886.06, + "probability": 1.0 + } + ] + }, + { + "id": 466, + "text": "some of these people who are laughing,", + "start": 886.14, + "end": 887.5, + "words": [ + { + "word": " some", + "start": 886.14, + "end": 886.38, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 886.38, + "end": 886.54, + "probability": 1.0 + }, + { + "word": " these", + "start": 886.54, + "end": 886.62, + "probability": 1.0 + }, + { + "word": " people", + "start": 886.62, + "end": 886.9, + "probability": 1.0 + }, + { + "word": " who", + "start": 886.9, + "end": 887.02, + "probability": 0.95751953125 + }, + { + "word": " are", + "start": 887.02, + "end": 887.1, + "probability": 0.99365234375 + }, + { + "word": " laughing,", + "start": 887.1, + "end": 887.5, + "probability": 1.0 + } + ] + }, + { + "id": 467, + "text": "they'll unveil and laugh anymore.", + "start": 887.5, + "end": 890.52, + "words": [ + { + "word": " they'll", + "start": 887.5, + "end": 888.18, + "probability": 0.0033588409423828125 + }, + { + "word": " unveil", + "start": 888.18, + "end": 889.1, + "probability": 0.5166015625 + }, + { + "word": " and", + "start": 889.1, + "end": 889.54, + "probability": 0.390625 + }, + { + "word": " laugh", + "start": 889.54, + "end": 890.02, + "probability": 0.916015625 + }, + { + "word": " anymore.", + "start": 890.02, + "end": 890.52, + "probability": 0.97021484375 + } + ] + }, + { + "id": 468, + "text": "They became gurus and then I was laughing at them.", + "start": 890.6, + "end": 893.3, + "words": [ + { + "word": " They", + "start": 890.6, + "end": 890.74, + "probability": 0.9892578125 + }, + { + "word": " became", + "start": 890.74, + "end": 891.06, + "probability": 0.99365234375 + }, + { + "word": " gurus", + "start": 891.06, + "end": 891.7, + "probability": 0.9921875 + }, + { + "word": " and", + "start": 891.7, + "end": 891.94, + "probability": 0.64306640625 + }, + { + "word": " then", + "start": 891.94, + "end": 892.06, + "probability": 0.98779296875 + }, + { + "word": " I", + "start": 892.06, + "end": 892.26, + "probability": 0.99267578125 + }, + { + "word": " was", + "start": 892.26, + "end": 892.46, + "probability": 0.998046875 + }, + { + "word": " laughing", + "start": 892.46, + "end": 892.9, + "probability": 0.998046875 + }, + { + "word": " at", + "start": 892.9, + "end": 893.06, + "probability": 0.9951171875 + }, + { + "word": " them.", + "start": 893.06, + "end": 893.3, + "probability": 0.99853515625 + } + ] + }, + { + "id": 469, + "text": "So yeah.", + "start": 893.48, + "end": 895.22, + "words": [ + { + "word": " So", + "start": 893.48, + "end": 893.84, + "probability": 0.85498046875 + }, + { + "word": " yeah.", + "start": 893.84, + "end": 895.22, + "probability": 0.4208984375 + } + ] + }, + { + "id": 470, + "text": "So those of you don't know,", + "start": 895.6, + "end": 897.18, + "words": [ + { + "word": " So", + "start": 895.6, + "end": 896.06, + "probability": 0.724609375 + }, + { + "word": " those", + "start": 896.06, + "end": 896.62, + "probability": 0.92724609375 + }, + { + "word": " of", + "start": 896.62, + "end": 896.74, + "probability": 0.8896484375 + }, + { + "word": " you", + "start": 896.74, + "end": 896.8, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 896.8, + "end": 897.02, + "probability": 0.77880859375 + }, + { + "word": " know,", + "start": 897.02, + "end": 897.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 471, + "text": "the BBSs are,", + "start": 897.26, + "end": 898.52, + "words": [ + { + "word": " the", + "start": 897.26, + "end": 897.34, + "probability": 0.99853515625 + }, + { + "word": " BBSs", + "start": 897.34, + "end": 898.3, + "probability": 0.89306640625 + }, + { + "word": " are,", + "start": 898.3, + "end": 898.52, + "probability": 0.599609375 + } + ] + }, + { + "id": 472, + "text": "were bulletin board systems and they were,", + "start": 898.7, + "end": 900.38, + "words": [ + { + "word": " were", + "start": 898.7, + "end": 898.94, + "probability": 0.87744140625 + }, + { + "word": " bulletin", + "start": 898.94, + "end": 899.34, + "probability": 0.99609375 + }, + { + "word": " board", + "start": 899.34, + "end": 899.44, + "probability": 0.9990234375 + }, + { + "word": " systems", + "start": 899.44, + "end": 899.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 899.66, + "end": 900.02, + "probability": 0.93994140625 + }, + { + "word": " they", + "start": 900.02, + "end": 900.12, + "probability": 1.0 + }, + { + "word": " were,", + "start": 900.12, + "end": 900.38, + "probability": 1.0 + } + ] + }, + { + "id": 473, + "text": "they were effectively the precursor to the internet.", + "start": 900.4, + "end": 903.62, + "words": [ + { + "word": " they", + "start": 900.4, + "end": 900.98, + "probability": 0.9990234375 + }, + { + "word": " were", + "start": 900.98, + "end": 901.14, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 901.14, + "end": 901.8, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 901.8, + "end": 902.1, + "probability": 0.9990234375 + }, + { + "word": " precursor", + "start": 902.1, + "end": 902.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 902.96, + "end": 903.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 903.1, + "end": 903.24, + "probability": 1.0 + }, + { + "word": " internet.", + "start": 903.24, + "end": 903.62, + "probability": 0.96923828125 + } + ] + }, + { + "id": 474, + "text": "Um,", + "start": 904.06, + "end": 904.52, + "words": [ + { + "word": " Um,", + "start": 904.06, + "end": 904.52, + "probability": 0.3193359375 + } + ] + }, + { + "id": 475, + "text": "especially,", + "start": 904.7, + "end": 905.2, + "words": [ + { + "word": " especially,", + "start": 904.7, + "end": 905.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 476, + "text": "I mean,", + "start": 905.36, + "end": 905.92, + "words": [ + { + "word": " I", + "start": 905.36, + "end": 905.76, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 905.76, + "end": 905.92, + "probability": 1.0 + } + ] + }, + { + "id": 477, + "text": "you really started seeing the,", + "start": 905.94, + "end": 907.42, + "words": [ + { + "word": " you", + "start": 905.94, + "end": 906.04, + "probability": 0.99853515625 + }, + { + "word": " really", + "start": 906.04, + "end": 906.34, + "probability": 1.0 + }, + { + "word": " started", + "start": 906.34, + "end": 906.72, + "probability": 1.0 + }, + { + "word": " seeing", + "start": 906.72, + "end": 907.14, + "probability": 1.0 + }, + { + "word": " the,", + "start": 907.14, + "end": 907.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 478, + "text": "where things were going when things like echo mail came up,", + "start": 907.46, + "end": 911.24, + "words": [ + { + "word": " where", + "start": 907.46, + "end": 907.96, + "probability": 0.99853515625 + }, + { + "word": " things", + "start": 907.96, + "end": 908.26, + "probability": 1.0 + }, + { + "word": " were", + "start": 908.26, + "end": 908.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 908.5, + "end": 908.76, + "probability": 1.0 + }, + { + "word": " when", + "start": 908.76, + "end": 908.98, + "probability": 0.99853515625 + }, + { + "word": " things", + "start": 908.98, + "end": 909.18, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 909.18, + "end": 909.4, + "probability": 1.0 + }, + { + "word": " echo", + "start": 909.4, + "end": 909.72, + "probability": 0.68115234375 + }, + { + "word": " mail", + "start": 909.72, + "end": 910.0, + "probability": 0.99609375 + }, + { + "word": " came", + "start": 910.0, + "end": 911.0, + "probability": 0.98681640625 + }, + { + "word": " up,", + "start": 911.0, + "end": 911.24, + "probability": 0.908203125 + } + ] + }, + { + "id": 479, + "text": "became a thing.", + "start": 911.28, + "end": 912.04, + "words": [ + { + "word": " became", + "start": 911.28, + "end": 911.58, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 911.58, + "end": 911.8, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 911.8, + "end": 912.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 480, + "text": "If I don't know.", + "start": 912.16, + "end": 912.64, + "words": [ + { + "word": " If", + "start": 912.16, + "end": 912.3, + "probability": 0.11346435546875 + }, + { + "word": " I", + "start": 912.3, + "end": 912.38, + "probability": 1.0 + }, + { + "word": " don't", + "start": 912.38, + "end": 912.56, + "probability": 0.9912109375 + }, + { + "word": " know.", + "start": 912.56, + "end": 912.64, + "probability": 0.7734375 + } + ] + }, + { + "id": 481, + "text": "Yeah.", + "start": 912.82, + "end": 913.2, + "words": [ + { + "word": " Yeah.", + "start": 912.82, + "end": 913.2, + "probability": 0.8525390625 + } + ] + }, + { + "id": 482, + "text": "So where you had,", + "start": 913.28, + "end": 914.32, + "words": [ + { + "word": " So", + "start": 913.28, + "end": 913.5, + "probability": 0.99267578125 + }, + { + "word": " where", + "start": 913.5, + "end": 913.78, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 913.78, + "end": 913.94, + "probability": 1.0 + }, + { + "word": " had,", + "start": 913.94, + "end": 914.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 483, + "text": "uh,", + "start": 914.32, + "end": 914.6, + "words": [ + { + "word": " uh,", + "start": 914.32, + "end": 914.6, + "probability": 0.99267578125 + } + ] + }, + { + "id": 484, + "text": "and different bulletin boards all came out.", + "start": 914.74, + "end": 917.48, + "words": [ + { + "word": " and", + "start": 914.74, + "end": 915.1, + "probability": 0.62939453125 + }, + { + "word": " different", + "start": 915.1, + "end": 915.92, + "probability": 0.51318359375 + }, + { + "word": " bulletin", + "start": 915.92, + "end": 916.9, + "probability": 0.9951171875 + }, + { + "word": " boards", + "start": 916.9, + "end": 917.12, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 917.12, + "end": 917.3, + "probability": 0.76220703125 + }, + { + "word": " came", + "start": 917.3, + "end": 917.48, + "probability": 0.9912109375 + }, + { + "word": " out.", + "start": 917.48, + "end": 917.48, + "probability": 0.294677734375 + } + ] + }, + { + "id": 485, + "text": "", + "start": 917.48, + "end": 917.48, + "words": [] + }, + { + "id": 486, + "text": "And then you started communicating with one another to share information so that you could do like,", + "start": 917.5, + "end": 921.36, + "words": [ + { + "word": " And", + "start": 917.5, + "end": 917.72, + "probability": 0.030609130859375 + }, + { + "word": " then", + "start": 917.72, + "end": 917.72, + "probability": 0.310302734375 + }, + { + "word": " you", + "start": 917.72, + "end": 917.72, + "probability": 0.0040740966796875 + }, + { + "word": " started", + "start": 917.72, + "end": 917.72, + "probability": 0.044647216796875 + }, + { + "word": " communicating", + "start": 917.72, + "end": 917.72, + "probability": 0.89453125 + }, + { + "word": " with", + "start": 917.72, + "end": 918.04, + "probability": 0.99853515625 + }, + { + "word": " one", + "start": 918.04, + "end": 918.22, + "probability": 0.9970703125 + }, + { + "word": " another", + "start": 918.22, + "end": 918.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 918.52, + "end": 918.9, + "probability": 0.994140625 + }, + { + "word": " share", + "start": 918.9, + "end": 919.26, + "probability": 1.0 + }, + { + "word": " information", + "start": 919.26, + "end": 919.58, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 919.58, + "end": 920.16, + "probability": 0.96728515625 + }, + { + "word": " that", + "start": 920.16, + "end": 920.26, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 920.26, + "end": 920.4, + "probability": 1.0 + }, + { + "word": " could", + "start": 920.4, + "end": 920.58, + "probability": 1.0 + }, + { + "word": " do", + "start": 920.58, + "end": 920.82, + "probability": 0.9990234375 + }, + { + "word": " like,", + "start": 920.82, + "end": 921.36, + "probability": 0.63037109375 + } + ] + }, + { + "id": 487, + "text": "uh,", + "start": 921.46, + "end": 921.54, + "words": [ + { + "word": " uh,", + "start": 921.46, + "end": 921.54, + "probability": 0.041778564453125 + } + ] + }, + { + "id": 488, + "text": "you know,", + "start": 922.2399999999999, + "end": 922.82, + "words": [ + { + "word": " you", + "start": 922.2399999999999, + "end": 922.68, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 922.68, + "end": 922.82, + "probability": 1.0 + } + ] + }, + { + "id": 489, + "text": "it's kind of weird is that you used to have like a,", + "start": 922.82, + "end": 926.34, + "words": [ + { + "word": " it's", + "start": 922.82, + "end": 923.42, + "probability": 0.986328125 + }, + { + "word": " kind", + "start": 923.42, + "end": 923.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 923.56, + "end": 923.68, + "probability": 1.0 + }, + { + "word": " weird", + "start": 923.68, + "end": 923.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 923.92, + "end": 924.08, + "probability": 0.59912109375 + }, + { + "word": " that", + "start": 924.08, + "end": 924.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 924.22, + "end": 925.28, + "probability": 0.9873046875 + }, + { + "word": " used", + "start": 925.28, + "end": 925.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 925.5, + "end": 925.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 925.6, + "end": 925.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 925.74, + "end": 926.04, + "probability": 0.99951171875 + }, + { + "word": " a,", + "start": 926.04, + "end": 926.34, + "probability": 0.88232421875 + } + ] + }, + { + "id": 490, + "text": "uh,", + "start": 926.34, + "end": 926.66, + "words": [ + { + "word": " uh,", + "start": 926.34, + "end": 926.66, + "probability": 0.84765625 + } + ] + }, + { + "id": 491, + "text": "think of like your work email.", + "start": 926.82, + "end": 928.22, + "words": [ + { + "word": " think", + "start": 926.82, + "end": 927.28, + "probability": 0.9755859375 + }, + { + "word": " of", + "start": 927.28, + "end": 927.4, + "probability": 0.84765625 + }, + { + "word": " like", + "start": 927.4, + "end": 927.52, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 927.52, + "end": 927.66, + "probability": 1.0 + }, + { + "word": " work", + "start": 927.66, + "end": 927.88, + "probability": 0.99951171875 + }, + { + "word": " email.", + "start": 927.88, + "end": 928.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 492, + "text": "Yeah.", + "start": 928.54, + "end": 928.98, + "words": [ + { + "word": " Yeah.", + "start": 928.54, + "end": 928.98, + "probability": 0.69140625 + } + ] + }, + { + "id": 493, + "text": "So you'd be able to,", + "start": 929.04, + "end": 929.78, + "words": [ + { + "word": " So", + "start": 929.04, + "end": 929.2, + "probability": 0.384521484375 + }, + { + "word": " you'd", + "start": 929.2, + "end": 929.42, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 929.42, + "end": 929.48, + "probability": 1.0 + }, + { + "word": " able", + "start": 929.48, + "end": 929.66, + "probability": 1.0 + }, + { + "word": " to,", + "start": 929.66, + "end": 929.78, + "probability": 1.0 + } + ] + }, + { + "id": 494, + "text": "to log into the BBS and check your individual mail.", + "start": 929.82, + "end": 932.58, + "words": [ + { + "word": " to", + "start": 929.82, + "end": 930.04, + "probability": 1.0 + }, + { + "word": " log", + "start": 930.04, + "end": 930.36, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 930.36, + "end": 930.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 930.56, + "end": 930.7, + "probability": 1.0 + }, + { + "word": " BBS", + "start": 930.7, + "end": 931.04, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 931.04, + "end": 931.26, + "probability": 1.0 + }, + { + "word": " check", + "start": 931.26, + "end": 931.48, + "probability": 1.0 + }, + { + "word": " your", + "start": 931.48, + "end": 931.72, + "probability": 1.0 + }, + { + "word": " individual", + "start": 931.72, + "end": 932.26, + "probability": 1.0 + }, + { + "word": " mail.", + "start": 932.26, + "end": 932.58, + "probability": 0.99609375 + } + ] + }, + { + "id": 495, + "text": "And there was generally a,", + "start": 932.72, + "end": 933.72, + "words": [ + { + "word": " And", + "start": 932.72, + "end": 932.82, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 932.82, + "end": 932.94, + "probability": 1.0 + }, + { + "word": " was", + "start": 932.94, + "end": 933.06, + "probability": 1.0 + }, + { + "word": " generally", + "start": 933.06, + "end": 933.38, + "probability": 1.0 + }, + { + "word": " a,", + "start": 933.38, + "end": 933.72, + "probability": 1.0 + } + ] + }, + { + "id": 496, + "text": "uh,", + "start": 934.5, + "end": 934.6, + "words": [ + { + "word": " uh,", + "start": 934.38, + "end": 934.6, + "probability": 0.9921875 + } + ] + }, + { + "id": 497, + "text": "a series of posts which were somewhat similar to what Reddit is today to a certain extent where people could comment on and have a conversation.", + "start": 934.88, + "end": 942.78, + "words": [ + { + "word": " a", + "start": 934.88, + "end": 935.2, + "probability": 0.9921875 + }, + { + "word": " series", + "start": 935.2, + "end": 935.7, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 935.7, + "end": 935.9, + "probability": 1.0 + }, + { + "word": " posts", + "start": 935.9, + "end": 936.28, + "probability": 1.0 + }, + { + "word": " which", + "start": 936.28, + "end": 936.76, + "probability": 0.233642578125 + }, + { + "word": " were", + "start": 936.76, + "end": 936.92, + "probability": 1.0 + }, + { + "word": " somewhat", + "start": 936.92, + "end": 937.5, + "probability": 1.0 + }, + { + "word": " similar", + "start": 937.5, + "end": 937.74, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 937.74, + "end": 938.02, + "probability": 1.0 + }, + { + "word": " what", + "start": 938.02, + "end": 938.14, + "probability": 0.99951171875 + }, + { + "word": " Reddit", + "start": 938.14, + "end": 938.6, + "probability": 0.98095703125 + }, + { + "word": " is", + "start": 938.6, + "end": 938.8, + "probability": 1.0 + }, + { + "word": " today", + "start": 938.8, + "end": 939.12, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 939.12, + "end": 940.44, + "probability": 0.833984375 + }, + { + "word": " a", + "start": 940.44, + "end": 940.56, + "probability": 1.0 + }, + { + "word": " certain", + "start": 940.56, + "end": 940.7, + "probability": 0.99951171875 + }, + { + "word": " extent", + "start": 940.7, + "end": 940.88, + "probability": 1.0 + }, + { + "word": " where", + "start": 940.88, + "end": 941.06, + "probability": 0.99755859375 + }, + { + "word": " people", + "start": 941.06, + "end": 941.26, + "probability": 1.0 + }, + { + "word": " could", + "start": 941.26, + "end": 941.46, + "probability": 1.0 + }, + { + "word": " comment", + "start": 941.46, + "end": 941.78, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 941.78, + "end": 942.08, + "probability": 1.0 + }, + { + "word": " and", + "start": 942.08, + "end": 942.2, + "probability": 0.99853515625 + }, + { + "word": " have", + "start": 942.2, + "end": 942.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 942.32, + "end": 942.4, + "probability": 1.0 + }, + { + "word": " conversation.", + "start": 942.4, + "end": 942.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 498, + "text": "And then once things like Fido net became a thing,", + "start": 943.24, + "end": 946.28, + "words": [ + { + "word": " And", + "start": 943.24, + "end": 943.68, + "probability": 0.99755859375 + }, + { + "word": " then", + "start": 943.68, + "end": 943.94, + "probability": 1.0 + }, + { + "word": " once", + "start": 943.94, + "end": 944.56, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 944.56, + "end": 944.88, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 944.88, + "end": 945.14, + "probability": 1.0 + }, + { + "word": " Fido", + "start": 945.14, + "end": 945.46, + "probability": 0.7998046875 + }, + { + "word": " net", + "start": 945.46, + "end": 945.64, + "probability": 0.916015625 + }, + { + "word": " became", + "start": 945.64, + "end": 945.88, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 945.88, + "end": 946.06, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 946.06, + "end": 946.28, + "probability": 1.0 + } + ] + }, + { + "id": 499, + "text": "then those same conversations were then echoed to other bulletin board systems where other people could log into them and also communicate with that particular thread or send mail from one server to another.", + "start": 946.28, + "end": 957.68, + "words": [ + { + "word": " then", + "start": 946.28, + "end": 946.9, + "probability": 0.56396484375 + }, + { + "word": " those", + "start": 946.9, + "end": 947.7, + "probability": 0.99853515625 + }, + { + "word": " same", + "start": 947.7, + "end": 948.3, + "probability": 1.0 + }, + { + "word": " conversations", + "start": 948.3, + "end": 948.9, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 948.9, + "end": 949.26, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 949.26, + "end": 949.46, + "probability": 0.99609375 + }, + { + "word": " echoed", + "start": 949.46, + "end": 950.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 950.04, + "end": 950.24, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 950.24, + "end": 950.62, + "probability": 1.0 + }, + { + "word": " bulletin", + "start": 950.62, + "end": 951.08, + "probability": 0.78466796875 + }, + { + "word": " board", + "start": 951.08, + "end": 951.2, + "probability": 0.998046875 + }, + { + "word": " systems", + "start": 951.2, + "end": 951.44, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 951.44, + "end": 951.82, + "probability": 0.9658203125 + }, + { + "word": " other", + "start": 951.82, + "end": 952.0, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 952.0, + "end": 952.26, + "probability": 1.0 + }, + { + "word": " could", + "start": 952.26, + "end": 952.44, + "probability": 0.99462890625 + }, + { + "word": " log", + "start": 952.44, + "end": 952.62, + "probability": 0.998046875 + }, + { + "word": " into", + "start": 952.62, + "end": 952.88, + "probability": 0.96923828125 + }, + { + "word": " them", + "start": 952.88, + "end": 953.08, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 953.08, + "end": 953.16, + "probability": 0.9951171875 + }, + { + "word": " also", + "start": 953.16, + "end": 953.38, + "probability": 0.99951171875 + }, + { + "word": " communicate", + "start": 953.38, + "end": 953.7, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 953.7, + "end": 954.1, + "probability": 1.0 + }, + { + "word": " that", + "start": 954.1, + "end": 954.28, + "probability": 1.0 + }, + { + "word": " particular", + "start": 954.28, + "end": 954.64, + "probability": 0.99951171875 + }, + { + "word": " thread", + "start": 954.64, + "end": 955.04, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 955.04, + "end": 955.32, + "probability": 0.99365234375 + }, + { + "word": " send", + "start": 955.32, + "end": 955.58, + "probability": 1.0 + }, + { + "word": " mail", + "start": 955.58, + "end": 955.84, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 955.84, + "end": 956.08, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 956.08, + "end": 956.32, + "probability": 1.0 + }, + { + "word": " server", + "start": 956.32, + "end": 957.12, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 957.12, + "end": 957.38, + "probability": 1.0 + }, + { + "word": " another.", + "start": 957.38, + "end": 957.68, + "probability": 1.0 + } + ] + }, + { + "id": 500, + "text": "And it was,", + "start": 957.98, + "end": 958.74, + "words": [ + { + "word": " And", + "start": 957.98, + "end": 958.5, + "probability": 0.91845703125 + }, + { + "word": " it", + "start": 958.5, + "end": 958.62, + "probability": 0.99951171875 + }, + { + "word": " was,", + "start": 958.62, + "end": 958.74, + "probability": 0.330810546875 + } + ] + }, + { + "id": 501, + "text": "it,", + "start": 959.0, + "end": 959.76, + "words": [ + { + "word": " it,", + "start": 959.0, + "end": 959.76, + "probability": 1.0 + } + ] + }, + { + "id": 502, + "text": "it definitely was what the internet is now.", + "start": 959.82, + "end": 963.34, + "words": [ + { + "word": " it", + "start": 959.82, + "end": 960.06, + "probability": 0.99951171875 + }, + { + "word": " definitely", + "start": 960.06, + "end": 960.5, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 960.5, + "end": 961.02, + "probability": 1.0 + }, + { + "word": " what", + "start": 961.02, + "end": 962.0, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 962.0, + "end": 962.26, + "probability": 1.0 + }, + { + "word": " internet", + "start": 962.26, + "end": 962.58, + "probability": 0.98779296875 + }, + { + "word": " is", + "start": 962.58, + "end": 962.9, + "probability": 1.0 + }, + { + "word": " now.", + "start": 962.9, + "end": 963.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 503, + "text": "Yeah.", + "start": 963.62, + "end": 964.14, + "words": [ + { + "word": " Yeah.", + "start": 963.62, + "end": 964.14, + "probability": 0.035308837890625 + } + ] + }, + { + "id": 504, + "text": "As far as you could see the,", + "start": 964.14, + "end": 966.46, + "words": [ + { + "word": " As", + "start": 964.14, + "end": 964.38, + "probability": 0.994140625 + }, + { + "word": " far", + "start": 964.38, + "end": 964.6, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 964.6, + "end": 964.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 964.92, + "end": 965.68, + "probability": 0.99267578125 + }, + { + "word": " could", + "start": 965.68, + "end": 965.86, + "probability": 0.998046875 + }, + { + "word": " see", + "start": 965.86, + "end": 966.1, + "probability": 1.0 + }, + { + "word": " the,", + "start": 966.1, + "end": 966.46, + "probability": 0.9931640625 + } + ] + }, + { + "id": 505, + "text": "the echoes of that,", + "start": 966.5, + "end": 968.0, + "words": [ + { + "word": " the", + "start": 966.5, + "end": 966.82, + "probability": 0.99951171875 + }, + { + "word": " echoes", + "start": 966.82, + "end": 967.24, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 967.24, + "end": 967.6, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 967.6, + "end": 968.0, + "probability": 1.0 + } + ] + }, + { + "id": 506, + "text": "uh,", + "start": 968.08, + "end": 968.5, + "words": [ + { + "word": " uh,", + "start": 968.08, + "end": 968.5, + "probability": 0.303955078125 + } + ] + }, + { + "id": 507, + "text": "sort of a Darwinian,", + "start": 968.56, + "end": 969.52, + "words": [ + { + "word": " sort", + "start": 968.56, + "end": 968.7, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 968.7, + "end": 968.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 968.82, + "end": 968.92, + "probability": 0.99951171875 + }, + { + "word": " Darwinian,", + "start": 968.92, + "end": 969.52, + "probability": 0.9970703125 + } + ] + }, + { + "id": 508, + "text": "uh,", + "start": 969.56, + "end": 970.06, + "words": [ + { + "word": " uh,", + "start": 969.56, + "end": 970.06, + "probability": 0.98583984375 + } + ] + }, + { + "id": 509, + "text": "precursor to that.", + "start": 971.14, + "end": 972.1, + "words": [ + { + "word": " precursor", + "start": 971.14, + "end": 971.66, + "probability": 0.87353515625 + }, + { + "word": " to", + "start": 971.66, + "end": 971.74, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 971.74, + "end": 972.1, + "probability": 1.0 + } + ] + }, + { + "id": 510, + "text": "It's,", + "start": 972.6800000000001, + "end": 973.2, + "words": [ + { + "word": " It's,", + "start": 972.6800000000001, + "end": 973.2, + "probability": 0.9892578125 + } + ] + }, + { + "id": 511, + "text": "it was pretty interesting.", + "start": 973.2, + "end": 974.32, + "words": [ + { + "word": " it", + "start": 973.2, + "end": 973.54, + "probability": 1.0 + }, + { + "word": " was", + "start": 973.54, + "end": 973.68, + "probability": 0.99951171875 + }, + { + "word": " pretty", + "start": 973.68, + "end": 973.9, + "probability": 0.99951171875 + }, + { + "word": " interesting.", + "start": 973.9, + "end": 974.32, + "probability": 1.0 + } + ] + }, + { + "id": 512, + "text": "And I,", + "start": 974.36, + "end": 974.56, + "words": [ + { + "word": " And", + "start": 974.36, + "end": 974.46, + "probability": 0.998046875 + }, + { + "word": " I,", + "start": 974.46, + "end": 974.56, + "probability": 1.0 + } + ] + }, + { + "id": 513, + "text": "I've,", + "start": 974.56, + "end": 974.82, + "words": [ + { + "word": " I've,", + "start": 974.56, + "end": 974.82, + "probability": 0.459228515625 + } + ] + }, + { + "id": 514, + "text": "I found myself hugely fascinated with the bulletin board systems of the back in the day.", + "start": 974.9, + "end": 979.22, + "words": [ + { + "word": " I", + "start": 974.9, + "end": 975.06, + "probability": 1.0 + }, + { + "word": " found", + "start": 975.06, + "end": 975.24, + "probability": 0.53759765625 + }, + { + "word": " myself", + "start": 975.24, + "end": 975.54, + "probability": 1.0 + }, + { + "word": " hugely", + "start": 975.54, + "end": 976.02, + "probability": 1.0 + }, + { + "word": " fascinated", + "start": 976.02, + "end": 976.58, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 976.58, + "end": 976.88, + "probability": 1.0 + }, + { + "word": " the", + "start": 976.88, + "end": 976.98, + "probability": 0.99951171875 + }, + { + "word": " bulletin", + "start": 976.98, + "end": 977.22, + "probability": 0.99755859375 + }, + { + "word": " board", + "start": 977.22, + "end": 977.32, + "probability": 0.9990234375 + }, + { + "word": " systems", + "start": 977.32, + "end": 977.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 977.68, + "end": 977.82, + "probability": 0.96728515625 + }, + { + "word": " the", + "start": 977.82, + "end": 977.92, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 977.92, + "end": 978.64, + "probability": 0.603515625 + }, + { + "word": " in", + "start": 978.64, + "end": 978.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 978.84, + "end": 978.94, + "probability": 1.0 + }, + { + "word": " day.", + "start": 978.94, + "end": 979.22, + "probability": 1.0 + } + ] + }, + { + "id": 515, + "text": "And I spent a lot of time doing that,", + "start": 979.82, + "end": 981.88, + "words": [ + { + "word": " And", + "start": 979.82, + "end": 980.3, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 980.3, + "end": 980.64, + "probability": 0.9990234375 + }, + { + "word": " spent", + "start": 980.64, + "end": 980.84, + "probability": 1.0 + }, + { + "word": " a", + "start": 980.84, + "end": 980.98, + "probability": 1.0 + }, + { + "word": " lot", + "start": 980.98, + "end": 981.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 981.12, + "end": 981.16, + "probability": 1.0 + }, + { + "word": " time", + "start": 981.16, + "end": 981.36, + "probability": 1.0 + }, + { + "word": " doing", + "start": 981.36, + "end": 981.54, + "probability": 1.0 + }, + { + "word": " that,", + "start": 981.54, + "end": 981.88, + "probability": 1.0 + } + ] + }, + { + "id": 516, + "text": "uh,", + "start": 981.88, + "end": 982.06, + "words": [ + { + "word": " uh,", + "start": 981.88, + "end": 982.06, + "probability": 0.81689453125 + } + ] + }, + { + "id": 517, + "text": "even though my,", + "start": 982.24, + "end": 983.04, + "words": [ + { + "word": " even", + "start": 982.24, + "end": 982.52, + "probability": 1.0 + }, + { + "word": " though", + "start": 982.52, + "end": 982.76, + "probability": 1.0 + }, + { + "word": " my,", + "start": 982.76, + "end": 983.04, + "probability": 1.0 + } + ] + }, + { + "id": 518, + "text": "my father was not terribly happy with it.", + "start": 983.08, + "end": 985.68, + "words": [ + { + "word": " my", + "start": 983.08, + "end": 983.36, + "probability": 1.0 + }, + { + "word": " father", + "start": 983.36, + "end": 983.92, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 983.92, + "end": 984.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 984.2, + "end": 984.4, + "probability": 1.0 + }, + { + "word": " terribly", + "start": 984.4, + "end": 984.78, + "probability": 1.0 + }, + { + "word": " happy", + "start": 984.78, + "end": 985.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 985.08, + "end": 985.48, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 985.48, + "end": 985.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 519, + "text": "Um,", + "start": 986.12, + "end": 986.6, + "words": [ + { + "word": " Um,", + "start": 986.12, + "end": 986.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 520, + "text": "because at the time,", + "start": 986.88, + "end": 988.02, + "words": [ + { + "word": " because", + "start": 986.88, + "end": 987.42, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 987.42, + "end": 987.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 987.66, + "end": 987.78, + "probability": 1.0 + }, + { + "word": " time,", + "start": 987.78, + "end": 988.02, + "probability": 1.0 + } + ] + }, + { + "id": 521, + "text": "you know,", + "start": 988.04, + "end": 988.28, + "words": [ + { + "word": " you", + "start": 988.04, + "end": 988.18, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 988.18, + "end": 988.28, + "probability": 1.0 + } + ] + }, + { + "id": 522, + "text": "I was,", + "start": 988.28, + "end": 988.72, + "words": [ + { + "word": " I", + "start": 988.28, + "end": 988.42, + "probability": 1.0 + }, + { + "word": " was,", + "start": 988.42, + "end": 988.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 523, + "text": "I don't know,", + "start": 989.28, + "end": 990.06, + "words": [ + { + "word": " I", + "start": 989.28, + "end": 989.76, + "probability": 1.0 + }, + { + "word": " don't", + "start": 989.76, + "end": 989.92, + "probability": 1.0 + }, + { + "word": " know,", + "start": 989.92, + "end": 990.06, + "probability": 1.0 + } + ] + }, + { + "id": 524, + "text": "12 years old or something like that.", + "start": 990.1, + "end": 991.8, + "words": [ + { + "word": " 12", + "start": 990.1, + "end": 990.5, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 990.5, + "end": 990.76, + "probability": 1.0 + }, + { + "word": " old", + "start": 990.76, + "end": 991.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 991.04, + "end": 991.18, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 991.18, + "end": 991.32, + "probability": 1.0 + }, + { + "word": " like", + "start": 991.32, + "end": 991.56, + "probability": 1.0 + }, + { + "word": " that.", + "start": 991.56, + "end": 991.8, + "probability": 1.0 + } + ] + }, + { + "id": 525, + "text": "And,", + "start": 991.9, + "end": 992.24, + "words": [ + { + "word": " And,", + "start": 991.9, + "end": 992.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 526, + "text": "uh,", + "start": 992.32, + "end": 992.62, + "words": [ + { + "word": " uh,", + "start": 992.32, + "end": 992.62, + "probability": 0.783203125 + } + ] + }, + { + "id": 527, + "text": "I kept tearing apart computers to,", + "start": 992.84, + "end": 994.92, + "words": [ + { + "word": " I", + "start": 992.84, + "end": 993.4, + "probability": 0.99951171875 + }, + { + "word": " kept", + "start": 993.4, + "end": 993.66, + "probability": 1.0 + }, + { + "word": " tearing", + "start": 993.66, + "end": 993.86, + "probability": 0.99951171875 + }, + { + "word": " apart", + "start": 993.86, + "end": 994.14, + "probability": 0.99951171875 + }, + { + "word": " computers", + "start": 994.14, + "end": 994.6, + "probability": 0.99951171875 + }, + { + "word": " to,", + "start": 994.6, + "end": 994.92, + "probability": 1.0 + } + ] + }, + { + "id": 528, + "text": "to,", + "start": 995.0, + "end": 995.46, + "words": [ + { + "word": " to,", + "start": 995.0, + "end": 995.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 529, + "text": "you know,", + "start": 995.6, + "end": 996.06, + "words": [ + { + "word": " you", + "start": 995.6, + "end": 995.92, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 995.92, + "end": 996.06, + "probability": 1.0 + } + ] + }, + { + "id": 530, + "text": "make a bigger system and,", + "start": 996.06, + "end": 997.9, + "words": [ + { + "word": " make", + "start": 996.06, + "end": 996.34, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 996.34, + "end": 996.6, + "probability": 1.0 + }, + { + "word": " bigger", + "start": 996.6, + "end": 997.0, + "probability": 1.0 + }, + { + "word": " system", + "start": 997.0, + "end": 997.44, + "probability": 1.0 + }, + { + "word": " and,", + "start": 997.44, + "end": 997.9, + "probability": 0.998046875 + } + ] + }, + { + "id": 531, + "text": "and build my own home network and stuff like that.", + "start": 997.96, + "end": 1001.82, + "words": [ + { + "word": " and", + "start": 997.96, + "end": 998.32, + "probability": 0.99951171875 + }, + { + "word": " build", + "start": 998.32, + "end": 999.68, + "probability": 0.9970703125 + }, + { + "word": " my", + "start": 999.68, + "end": 999.92, + "probability": 1.0 + }, + { + "word": " own", + "start": 999.92, + "end": 1000.18, + "probability": 0.998046875 + }, + { + "word": " home", + "start": 1000.18, + "end": 1000.56, + "probability": 0.9990234375 + }, + { + "word": " network", + "start": 1000.56, + "end": 1000.88, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1000.88, + "end": 1001.16, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 1001.16, + "end": 1001.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 1001.36, + "end": 1001.58, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1001.58, + "end": 1001.82, + "probability": 1.0 + } + ] + }, + { + "id": 532, + "text": "And,", + "start": 1001.88, + "end": 1002.06, + "words": [ + { + "word": " And,", + "start": 1001.88, + "end": 1002.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 533, + "text": "uh,", + "start": 1002.1, + "end": 1002.34, + "words": [ + { + "word": " uh,", + "start": 1002.1, + "end": 1002.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 534, + "text": "yeah,", + "start": 1002.34, + "end": 1002.68, + "words": [ + { + "word": " yeah,", + "start": 1002.34, + "end": 1002.68, + "probability": 0.10400390625 + } + ] + }, + { + "id": 535, + "text": "he wasn't,", + "start": 1002.76, + "end": 1003.18, + "words": [ + { + "word": " he", + "start": 1002.76, + "end": 1002.84, + "probability": 1.0 + }, + { + "word": " wasn't,", + "start": 1002.84, + "end": 1003.18, + "probability": 1.0 + } + ] + }, + { + "id": 536, + "text": "wasn't pleased,", + "start": 1003.18, + "end": 1003.72, + "words": [ + { + "word": " wasn't", + "start": 1003.18, + "end": 1003.52, + "probability": 0.9990234375 + }, + { + "word": " pleased,", + "start": 1003.52, + "end": 1003.72, + "probability": 1.0 + } + ] + }, + { + "id": 537, + "text": "especially because computers back then were really expensive.", + "start": 1003.8, + "end": 1007.14, + "words": [ + { + "word": " especially", + "start": 1003.8, + "end": 1004.1, + "probability": 1.0 + }, + { + "word": " because", + "start": 1004.1, + "end": 1004.3, + "probability": 0.9853515625 + }, + { + "word": " computers", + "start": 1004.3, + "end": 1004.62, + "probability": 1.0 + }, + { + "word": " back", + "start": 1004.62, + "end": 1004.9, + "probability": 1.0 + }, + { + "word": " then", + "start": 1004.9, + "end": 1005.12, + "probability": 1.0 + }, + { + "word": " were", + "start": 1005.12, + "end": 1005.3, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1005.3, + "end": 1006.7, + "probability": 0.99609375 + }, + { + "word": " expensive.", + "start": 1006.7, + "end": 1007.14, + "probability": 1.0 + } + ] + }, + { + "id": 538, + "text": "Uh,", + "start": 1007.64, + "end": 1008.0, + "words": [ + { + "word": " Uh,", + "start": 1007.64, + "end": 1008.0, + "probability": 0.1341552734375 + } + ] + }, + { + "id": 539, + "text": "so I mean that,", + "start": 1008.16, + "end": 1009.62, + "words": [ + { + "word": " so", + "start": 1008.16, + "end": 1008.42, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 1008.42, + "end": 1008.68, + "probability": 0.76318359375 + }, + { + "word": " mean", + "start": 1008.68, + "end": 1008.9, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1008.9, + "end": 1009.62, + "probability": 0.90478515625 + } + ] + }, + { + "id": 540, + "text": "that,", + "start": 1009.74, + "end": 1010.02, + "words": [ + { + "word": " that,", + "start": 1009.74, + "end": 1010.02, + "probability": 1.0 + } + ] + }, + { + "id": 541, + "text": "that time I broke his computer,", + "start": 1010.1, + "end": 1011.94, + "words": [ + { + "word": " that", + "start": 1010.1, + "end": 1010.7, + "probability": 0.99755859375 + }, + { + "word": " time", + "start": 1010.7, + "end": 1010.96, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 1010.96, + "end": 1011.12, + "probability": 1.0 + }, + { + "word": " broke", + "start": 1011.12, + "end": 1011.3, + "probability": 1.0 + }, + { + "word": " his", + "start": 1011.3, + "end": 1011.52, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 1011.52, + "end": 1011.94, + "probability": 1.0 + } + ] + }, + { + "id": 542, + "text": "uh,", + "start": 1012.04, + "end": 1012.44, + "words": [ + { + "word": " uh,", + "start": 1012.04, + "end": 1012.44, + "probability": 0.828125 + } + ] + }, + { + "id": 543, + "text": "which I've told the story before where I,", + "start": 1012.58, + "end": 1014.16, + "words": [ + { + "word": " which", + "start": 1012.58, + "end": 1012.82, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 1012.82, + "end": 1012.92, + "probability": 1.0 + }, + { + "word": " told", + "start": 1012.92, + "end": 1013.08, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1013.08, + "end": 1013.22, + "probability": 0.9970703125 + }, + { + "word": " story", + "start": 1013.22, + "end": 1013.44, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 1013.44, + "end": 1013.7, + "probability": 0.9990234375 + }, + { + "word": " where", + "start": 1013.7, + "end": 1013.98, + "probability": 0.94384765625 + }, + { + "word": " I,", + "start": 1013.98, + "end": 1014.16, + "probability": 1.0 + } + ] + }, + { + "id": 544, + "text": "I took apart his computer and broke it.", + "start": 1014.18, + "end": 1015.58, + "words": [ + { + "word": " I", + "start": 1014.18, + "end": 1014.36, + "probability": 1.0 + }, + { + "word": " took", + "start": 1014.36, + "end": 1014.5, + "probability": 0.99951171875 + }, + { + "word": " apart", + "start": 1014.5, + "end": 1014.72, + "probability": 0.99560546875 + }, + { + "word": " his", + "start": 1014.72, + "end": 1014.84, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1014.84, + "end": 1015.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 1015.14, + "end": 1015.26, + "probability": 1.0 + }, + { + "word": " broke", + "start": 1015.26, + "end": 1015.4, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 1015.4, + "end": 1015.58, + "probability": 1.0 + } + ] + }, + { + "id": 545, + "text": "Um,", + "start": 1016.2, + "end": 1016.56, + "words": [ + { + "word": " Um,", + "start": 1016.2, + "end": 1016.56, + "probability": 0.9970703125 + } + ] + }, + { + "id": 546, + "text": "and he gave me the carcass of the machine and then put a lock on his door and said,", + "start": 1017.1999999999999, + "end": 1021.32, + "words": [ + { + "word": " and", + "start": 1017.1999999999999, + "end": 1017.56, + "probability": 0.99951171875 + }, + { + "word": " he", + "start": 1017.56, + "end": 1017.92, + "probability": 0.99951171875 + }, + { + "word": " gave", + "start": 1017.92, + "end": 1018.2, + "probability": 1.0 + }, + { + "word": " me", + "start": 1018.2, + "end": 1018.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 1018.48, + "end": 1018.62, + "probability": 1.0 + }, + { + "word": " carcass", + "start": 1018.62, + "end": 1019.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1019.06, + "end": 1019.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1019.24, + "end": 1019.34, + "probability": 1.0 + }, + { + "word": " machine", + "start": 1019.34, + "end": 1019.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 1019.66, + "end": 1019.98, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 1019.98, + "end": 1020.04, + "probability": 0.99755859375 + }, + { + "word": " put", + "start": 1020.04, + "end": 1020.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 1020.18, + "end": 1020.28, + "probability": 1.0 + }, + { + "word": " lock", + "start": 1020.28, + "end": 1020.44, + "probability": 1.0 + }, + { + "word": " on", + "start": 1020.44, + "end": 1020.6, + "probability": 1.0 + }, + { + "word": " his", + "start": 1020.6, + "end": 1020.72, + "probability": 1.0 + }, + { + "word": " door", + "start": 1020.72, + "end": 1020.92, + "probability": 1.0 + }, + { + "word": " and", + "start": 1020.92, + "end": 1021.1, + "probability": 0.99951171875 + }, + { + "word": " said,", + "start": 1021.1, + "end": 1021.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 547, + "text": "yeah,", + "start": 1021.48, + "end": 1021.84, + "words": [ + { + "word": " yeah,", + "start": 1021.48, + "end": 1021.84, + "probability": 1.0 + } + ] + }, + { + "id": 548, + "text": "if you want to use a computer again,", + "start": 1021.92, + "end": 1022.94, + "words": [ + { + "word": " if", + "start": 1021.92, + "end": 1022.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 1022.04, + "end": 1022.14, + "probability": 1.0 + }, + { + "word": " want", + "start": 1022.14, + "end": 1022.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 1022.26, + "end": 1022.34, + "probability": 1.0 + }, + { + "word": " use", + "start": 1022.34, + "end": 1022.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 1022.44, + "end": 1022.5, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 1022.5, + "end": 1022.78, + "probability": 1.0 + }, + { + "word": " again,", + "start": 1022.78, + "end": 1022.94, + "probability": 0.9970703125 + } + ] + }, + { + "id": 549, + "text": "you're going to fix this one.", + "start": 1023.02, + "end": 1023.92, + "words": [ + { + "word": " you're", + "start": 1023.02, + "end": 1023.2, + "probability": 1.0 + }, + { + "word": " going", + "start": 1023.2, + "end": 1023.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 1023.22, + "end": 1023.32, + "probability": 1.0 + }, + { + "word": " fix", + "start": 1023.32, + "end": 1023.54, + "probability": 1.0 + }, + { + "word": " this", + "start": 1023.54, + "end": 1023.72, + "probability": 1.0 + }, + { + "word": " one.", + "start": 1023.72, + "end": 1023.92, + "probability": 1.0 + } + ] + }, + { + "id": 550, + "text": "And,", + "start": 1024.8200000000002, + "end": 1025.18, + "words": [ + { + "word": " And,", + "start": 1024.8200000000002, + "end": 1025.18, + "probability": 0.99853515625 + } + ] + }, + { + "id": 551, + "text": "uh,", + "start": 1025.28, + "end": 1025.48, + "words": [ + { + "word": " uh,", + "start": 1025.28, + "end": 1025.48, + "probability": 0.98095703125 + } + ] + }, + { + "id": 552, + "text": "that's sort of where the,", + "start": 1025.6, + "end": 1026.42, + "words": [ + { + "word": " that's", + "start": 1025.6, + "end": 1025.86, + "probability": 0.9990234375 + }, + { + "word": " sort", + "start": 1025.86, + "end": 1026.02, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1026.02, + "end": 1026.16, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 1026.16, + "end": 1026.3, + "probability": 0.9892578125 + }, + { + "word": " the,", + "start": 1026.3, + "end": 1026.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 553, + "text": "the computer guru was born.", + "start": 1026.42, + "end": 1027.84, + "words": [ + { + "word": " the", + "start": 1026.42, + "end": 1026.7, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 1026.7, + "end": 1027.0, + "probability": 0.99853515625 + }, + { + "word": " guru", + "start": 1027.0, + "end": 1027.34, + "probability": 0.9921875 + }, + { + "word": " was", + "start": 1027.34, + "end": 1027.58, + "probability": 1.0 + }, + { + "word": " born.", + "start": 1027.58, + "end": 1027.84, + "probability": 1.0 + } + ] + }, + { + "id": 554, + "text": "But,", + "start": 1028.24, + "end": 1028.6, + "words": [ + { + "word": " But,", + "start": 1028.24, + "end": 1028.6, + "probability": 0.99462890625 + } + ] + }, + { + "id": 555, + "text": "you know,", + "start": 1028.98, + "end": 1029.44, + "words": [ + { + "word": " you", + "start": 1028.98, + "end": 1029.34, + "probability": 0.98779296875 + }, + { + "word": " know,", + "start": 1029.34, + "end": 1029.44, + "probability": 1.0 + } + ] + }, + { + "id": 556, + "text": "you didn't want to drop another three or $4,000,", + "start": 1029.48, + "end": 1032.02, + "words": [ + { + "word": " you", + "start": 1029.48, + "end": 1029.52, + "probability": 0.9951171875 + }, + { + "word": " didn't", + "start": 1029.52, + "end": 1029.72, + "probability": 1.0 + }, + { + "word": " want", + "start": 1029.72, + "end": 1029.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 1029.8, + "end": 1029.92, + "probability": 1.0 + }, + { + "word": " drop", + "start": 1029.92, + "end": 1030.14, + "probability": 1.0 + }, + { + "word": " another", + "start": 1030.14, + "end": 1030.38, + "probability": 1.0 + }, + { + "word": " three", + "start": 1030.38, + "end": 1031.14, + "probability": 0.98046875 + }, + { + "word": " or", + "start": 1031.14, + "end": 1031.3, + "probability": 1.0 + }, + { + "word": " $4", + "start": 1031.3, + "end": 1031.42, + "probability": 0.9921875 + }, + { + "word": ",000,", + "start": 1031.42, + "end": 1032.02, + "probability": 1.0 + } + ] + }, + { + "id": 557, + "text": "uh,", + "start": 1032.02, + "end": 1032.32, + "words": [ + { + "word": " uh,", + "start": 1032.02, + "end": 1032.32, + "probability": 0.84716796875 + } + ] + }, + { + "id": 558, + "text": "on a replacement machine because that was quite a bit of money back then.", + "start": 1032.34, + "end": 1036.12, + "words": [ + { + "word": " on", + "start": 1032.34, + "end": 1032.46, + "probability": 0.70166015625 + }, + { + "word": " a", + "start": 1032.46, + "end": 1032.58, + "probability": 0.998046875 + }, + { + "word": " replacement", + "start": 1032.58, + "end": 1032.9, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 1032.9, + "end": 1033.32, + "probability": 1.0 + }, + { + "word": " because", + "start": 1033.32, + "end": 1033.88, + "probability": 0.884765625 + }, + { + "word": " that", + "start": 1033.88, + "end": 1034.44, + "probability": 0.98046875 + }, + { + "word": " was", + "start": 1034.44, + "end": 1034.72, + "probability": 0.99951171875 + }, + { + "word": " quite", + "start": 1034.72, + "end": 1035.28, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1035.28, + "end": 1035.38, + "probability": 1.0 + }, + { + "word": " bit", + "start": 1035.38, + "end": 1035.48, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1035.48, + "end": 1035.5, + "probability": 0.99951171875 + }, + { + "word": " money", + "start": 1035.5, + "end": 1035.66, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 1035.66, + "end": 1035.84, + "probability": 0.9990234375 + }, + { + "word": " then.", + "start": 1035.84, + "end": 1036.12, + "probability": 1.0 + } + ] + }, + { + "id": 559, + "text": "And even,", + "start": 1036.6, + "end": 1037.6, + "words": [ + { + "word": " And", + "start": 1036.6, + "end": 1037.12, + "probability": 0.8671875 + }, + { + "word": " even,", + "start": 1037.12, + "end": 1037.6, + "probability": 0.99462890625 + } + ] + }, + { + "id": 560, + "text": "I mean,", + "start": 1037.72, + "end": 1038.24, + "words": [ + { + "word": " I", + "start": 1037.72, + "end": 1038.12, + "probability": 0.9892578125 + }, + { + "word": " mean,", + "start": 1038.12, + "end": 1038.24, + "probability": 1.0 + } + ] + }, + { + "id": 561, + "text": "by today's standards,", + "start": 1038.28, + "end": 1039.32, + "words": [ + { + "word": " by", + "start": 1038.28, + "end": 1038.42, + "probability": 0.99609375 + }, + { + "word": " today's", + "start": 1038.42, + "end": 1038.94, + "probability": 1.0 + }, + { + "word": " standards,", + "start": 1038.94, + "end": 1039.32, + "probability": 1.0 + } + ] + }, + { + "id": 562, + "text": "your smartphone is infinitely more powerful than the machines that we were running the", + "start": 1039.66, + "end": 1043.82, + "words": [ + { + "word": " your", + "start": 1039.66, + "end": 1040.2, + "probability": 0.9921875 + }, + { + "word": " smartphone", + "start": 1040.2, + "end": 1040.72, + "probability": 0.98583984375 + }, + { + "word": " is", + "start": 1040.72, + "end": 1041.02, + "probability": 1.0 + }, + { + "word": " infinitely", + "start": 1041.02, + "end": 1041.56, + "probability": 1.0 + }, + { + "word": " more", + "start": 1041.56, + "end": 1041.92, + "probability": 1.0 + }, + { + "word": " powerful", + "start": 1041.92, + "end": 1042.32, + "probability": 1.0 + }, + { + "word": " than", + "start": 1042.32, + "end": 1042.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1042.64, + "end": 1042.76, + "probability": 1.0 + }, + { + "word": " machines", + "start": 1042.76, + "end": 1043.0, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1043.0, + "end": 1043.18, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 1043.18, + "end": 1043.3, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 1043.3, + "end": 1043.4, + "probability": 0.998046875 + }, + { + "word": " running", + "start": 1043.4, + "end": 1043.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1043.58, + "end": 1043.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 563, + "text": "Bolton boards on,", + "start": 1043.82, + "end": 1044.76, + "words": [ + { + "word": " Bolton", + "start": 1043.82, + "end": 1044.3, + "probability": 0.72705078125 + }, + { + "word": " boards", + "start": 1044.3, + "end": 1044.48, + "probability": 0.87890625 + }, + { + "word": " on,", + "start": 1044.48, + "end": 1044.76, + "probability": 1.0 + } + ] + }, + { + "id": 564, + "text": "uh,", + "start": 1044.94, + "end": 1045.76, + "words": [ + { + "word": " uh,", + "start": 1044.94, + "end": 1045.76, + "probability": 0.27099609375 + } + ] + }, + { + "id": 565, + "text": "it more storage and everything,", + "start": 1046.08, + "end": 1047.62, + "words": [ + { + "word": " it", + "start": 1046.08, + "end": 1046.42, + "probability": 0.75732421875 + }, + { + "word": " more", + "start": 1046.42, + "end": 1046.68, + "probability": 0.93701171875 + }, + { + "word": " storage", + "start": 1046.68, + "end": 1047.24, + "probability": 1.0 + }, + { + "word": " and", + "start": 1047.24, + "end": 1047.4, + "probability": 1.0 + }, + { + "word": " everything,", + "start": 1047.4, + "end": 1047.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 566, + "text": "right?", + "start": 1047.82, + "end": 1048.12, + "words": [ + { + "word": " right?", + "start": 1047.82, + "end": 1048.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 567, + "text": "It was just so much,", + "start": 1048.18, + "end": 1049.46, + "words": [ + { + "word": " It", + "start": 1048.18, + "end": 1048.26, + "probability": 0.99853515625 + }, + { + "word": " was", + "start": 1048.26, + "end": 1048.34, + "probability": 1.0 + }, + { + "word": " just", + "start": 1048.34, + "end": 1048.56, + "probability": 1.0 + }, + { + "word": " so", + "start": 1048.56, + "end": 1049.02, + "probability": 1.0 + }, + { + "word": " much,", + "start": 1049.02, + "end": 1049.46, + "probability": 1.0 + } + ] + }, + { + "id": 568, + "text": "it's such a quaint technology,", + "start": 1049.48, + "end": 1051.94, + "words": [ + { + "word": " it's", + "start": 1049.48, + "end": 1050.34, + "probability": 1.0 + }, + { + "word": " such", + "start": 1050.34, + "end": 1050.6, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1050.6, + "end": 1050.72, + "probability": 1.0 + }, + { + "word": " quaint", + "start": 1050.72, + "end": 1051.46, + "probability": 0.9990234375 + }, + { + "word": " technology,", + "start": 1051.46, + "end": 1051.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 569, + "text": "but I look back upon those days fondly.", + "start": 1052.24, + "end": 1054.42, + "words": [ + { + "word": " but", + "start": 1052.24, + "end": 1052.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 1052.56, + "end": 1052.68, + "probability": 1.0 + }, + { + "word": " look", + "start": 1052.68, + "end": 1052.84, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 1052.84, + "end": 1053.04, + "probability": 1.0 + }, + { + "word": " upon", + "start": 1053.04, + "end": 1053.24, + "probability": 1.0 + }, + { + "word": " those", + "start": 1053.24, + "end": 1053.48, + "probability": 1.0 + }, + { + "word": " days", + "start": 1053.48, + "end": 1053.74, + "probability": 0.998046875 + }, + { + "word": " fondly.", + "start": 1053.74, + "end": 1054.42, + "probability": 0.99755859375 + } + ] + }, + { + "id": 570, + "text": "Oh,", + "start": 1054.48, + "end": 1054.82, + "words": [ + { + "word": " Oh,", + "start": 1054.48, + "end": 1054.82, + "probability": 0.51220703125 + } + ] + }, + { + "id": 571, + "text": "my first,", + "start": 1054.84, + "end": 1055.54, + "words": [ + { + "word": " my", + "start": 1054.84, + "end": 1054.96, + "probability": 0.235595703125 + }, + { + "word": " first,", + "start": 1054.96, + "end": 1055.54, + "probability": 1.0 + } + ] + }, + { + "id": 572, + "text": "uh,", + "start": 1055.66, + "end": 1055.8, + "words": [ + { + "word": " uh,", + "start": 1055.66, + "end": 1055.8, + "probability": 0.994140625 + } + ] + }, + { + "id": 573, + "text": "10 megabyte hard drive was a thousand dollars.", + "start": 1055.98, + "end": 1058.78, + "words": [ + { + "word": " 10", + "start": 1055.98, + "end": 1056.54, + "probability": 0.99951171875 + }, + { + "word": " megabyte", + "start": 1056.54, + "end": 1057.14, + "probability": 0.9970703125 + }, + { + "word": " hard", + "start": 1057.14, + "end": 1057.44, + "probability": 0.99951171875 + }, + { + "word": " drive", + "start": 1057.44, + "end": 1057.7, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1057.7, + "end": 1057.94, + "probability": 1.0 + }, + { + "word": " a", + "start": 1057.94, + "end": 1058.08, + "probability": 0.9609375 + }, + { + "word": " thousand", + "start": 1058.08, + "end": 1058.4, + "probability": 0.99951171875 + }, + { + "word": " dollars.", + "start": 1058.4, + "end": 1058.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 574, + "text": "And also when you were,", + "start": 1059.6000000000001, + "end": 1061.44, + "words": [ + { + "word": " And", + "start": 1059.6000000000001, + "end": 1060.1200000000001, + "probability": 0.88525390625 + }, + { + "word": " also", + "start": 1060.1200000000001, + "end": 1060.64, + "probability": 1.0 + }, + { + "word": " when", + "start": 1060.64, + "end": 1061.08, + "probability": 0.9638671875 + }, + { + "word": " you", + "start": 1061.08, + "end": 1061.24, + "probability": 1.0 + }, + { + "word": " were,", + "start": 1061.24, + "end": 1061.44, + "probability": 1.0 + } + ] + }, + { + "id": 575, + "text": "they were all,", + "start": 1061.5, + "end": 1062.32, + "words": [ + { + "word": " they", + "start": 1061.5, + "end": 1061.98, + "probability": 0.99365234375 + }, + { + "word": " were", + "start": 1061.98, + "end": 1062.14, + "probability": 1.0 + }, + { + "word": " all,", + "start": 1062.14, + "end": 1062.32, + "probability": 0.84228515625 + } + ] + }, + { + "id": 576, + "text": "they were all modem.", + "start": 1062.34, + "end": 1062.82, + "words": [ + { + "word": " they", + "start": 1062.34, + "end": 1062.42, + "probability": 8.189678192138672e-05 + }, + { + "word": " were", + "start": 1062.42, + "end": 1062.42, + "probability": 0.119873046875 + }, + { + "word": " all", + "start": 1062.42, + "end": 1062.42, + "probability": 0.4892578125 + }, + { + "word": " modem.", + "start": 1062.42, + "end": 1062.82, + "probability": 0.9873046875 + } + ] + }, + { + "id": 577, + "text": "There was no wifi.", + "start": 1062.86, + "end": 1064.06, + "words": [ + { + "word": " There", + "start": 1062.86, + "end": 1063.3, + "probability": 0.96240234375 + }, + { + "word": " was", + "start": 1063.3, + "end": 1063.46, + "probability": 0.9931640625 + }, + { + "word": " no", + "start": 1063.46, + "end": 1063.6, + "probability": 0.99853515625 + }, + { + "word": " wifi.", + "start": 1063.6, + "end": 1064.06, + "probability": 0.2105712890625 + } + ] + }, + { + "id": 578, + "text": "So you're tying,", + "start": 1064.44, + "end": 1065.38, + "words": [ + { + "word": " So", + "start": 1064.44, + "end": 1064.88, + "probability": 0.98388671875 + }, + { + "word": " you're", + "start": 1064.88, + "end": 1065.08, + "probability": 0.9326171875 + }, + { + "word": " tying,", + "start": 1065.08, + "end": 1065.38, + "probability": 0.97998046875 + } + ] + }, + { + "id": 579, + "text": "tying up a phone line.", + "start": 1065.4, + "end": 1066.54, + "words": [ + { + "word": " tying", + "start": 1065.4, + "end": 1065.64, + "probability": 0.99609375 + }, + { + "word": " up", + "start": 1065.64, + "end": 1065.94, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1065.94, + "end": 1066.04, + "probability": 0.9990234375 + }, + { + "word": " phone", + "start": 1066.04, + "end": 1066.26, + "probability": 0.99853515625 + }, + { + "word": " line.", + "start": 1066.26, + "end": 1066.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 580, + "text": "Oh yeah.", + "start": 1066.7, + "end": 1067.24, + "words": [ + { + "word": " Oh", + "start": 1066.7, + "end": 1067.04, + "probability": 0.9765625 + }, + { + "word": " yeah.", + "start": 1067.04, + "end": 1067.24, + "probability": 0.9560546875 + } + ] + }, + { + "id": 581, + "text": "Yeah.", + "start": 1067.48, + "end": 1067.92, + "words": [ + { + "word": " Yeah.", + "start": 1067.48, + "end": 1067.92, + "probability": 0.98046875 + } + ] + }, + { + "id": 582, + "text": "I had a separate phone line just for that because nobody could get me off of that lucky off of the Bolton boards.", + "start": 1068.0, + "end": 1074.24, + "words": [ + { + "word": " I", + "start": 1068.0, + "end": 1068.2, + "probability": 0.9521484375 + }, + { + "word": " had", + "start": 1068.2, + "end": 1068.62, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1068.62, + "end": 1068.72, + "probability": 0.9990234375 + }, + { + "word": " separate", + "start": 1068.72, + "end": 1068.96, + "probability": 0.9990234375 + }, + { + "word": " phone", + "start": 1068.96, + "end": 1069.46, + "probability": 0.9990234375 + }, + { + "word": " line", + "start": 1069.46, + "end": 1069.72, + "probability": 1.0 + }, + { + "word": " just", + "start": 1069.72, + "end": 1069.96, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1069.96, + "end": 1070.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1070.14, + "end": 1070.5, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 1070.5, + "end": 1070.84, + "probability": 0.98974609375 + }, + { + "word": " nobody", + "start": 1070.84, + "end": 1071.84, + "probability": 0.990234375 + }, + { + "word": " could", + "start": 1071.84, + "end": 1072.02, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 1072.02, + "end": 1072.18, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 1072.18, + "end": 1072.32, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 1072.32, + "end": 1072.46, + "probability": 0.955078125 + }, + { + "word": " of", + "start": 1072.46, + "end": 1072.58, + "probability": 0.96728515625 + }, + { + "word": " that", + "start": 1072.58, + "end": 1072.72, + "probability": 0.81103515625 + }, + { + "word": " lucky", + "start": 1072.72, + "end": 1073.02, + "probability": 0.50244140625 + }, + { + "word": " off", + "start": 1073.02, + "end": 1073.52, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 1073.52, + "end": 1073.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1073.64, + "end": 1073.7, + "probability": 1.0 + }, + { + "word": " Bolton", + "start": 1073.7, + "end": 1073.98, + "probability": 0.50537109375 + }, + { + "word": " boards.", + "start": 1073.98, + "end": 1074.24, + "probability": 0.9990234375 + } + ] + }, + { + "id": 583, + "text": "Um,", + "start": 1075.32, + "end": 1075.76, + "words": [ + { + "word": " Um,", + "start": 1075.32, + "end": 1075.76, + "probability": 0.8486328125 + } + ] + }, + { + "id": 584, + "text": "I mean,", + "start": 1076.04, + "end": 1076.6, + "words": [ + { + "word": " I", + "start": 1076.04, + "end": 1076.34, + "probability": 0.67919921875 + }, + { + "word": " mean,", + "start": 1076.34, + "end": 1076.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 585, + "text": "at first it was,", + "start": 1076.62, + "end": 1077.28, + "words": [ + { + "word": " at", + "start": 1076.62, + "end": 1076.7, + "probability": 0.99853515625 + }, + { + "word": " first", + "start": 1076.7, + "end": 1076.9, + "probability": 1.0 + }, + { + "word": " it", + "start": 1076.9, + "end": 1077.08, + "probability": 0.99951171875 + }, + { + "word": " was,", + "start": 1077.08, + "end": 1077.28, + "probability": 1.0 + } + ] + }, + { + "id": 586, + "text": "you know,", + "start": 1077.28, + "end": 1077.52, + "words": [ + { + "word": " you", + "start": 1077.28, + "end": 1077.44, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1077.44, + "end": 1077.52, + "probability": 1.0 + } + ] + }, + { + "id": 587, + "text": "somebody picking up the phone and then you see the garbage appear on the screen because somebody started talking or,", + "start": 1077.52, + "end": 1083.56, + "words": [ + { + "word": " somebody", + "start": 1077.52, + "end": 1077.68, + "probability": 0.99169921875 + }, + { + "word": " picking", + "start": 1077.68, + "end": 1077.9, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1077.9, + "end": 1078.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1078.14, + "end": 1078.28, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1078.28, + "end": 1078.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 1078.5, + "end": 1078.68, + "probability": 0.9990234375 + }, + { + "word": " then", + "start": 1078.68, + "end": 1078.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1078.84, + "end": 1079.16, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 1079.16, + "end": 1079.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1079.34, + "end": 1079.44, + "probability": 1.0 + }, + { + "word": " garbage", + "start": 1079.44, + "end": 1079.74, + "probability": 0.99951171875 + }, + { + "word": " appear", + "start": 1079.74, + "end": 1079.98, + "probability": 0.9892578125 + }, + { + "word": " on", + "start": 1079.98, + "end": 1080.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1080.18, + "end": 1080.28, + "probability": 1.0 + }, + { + "word": " screen", + "start": 1080.28, + "end": 1080.56, + "probability": 1.0 + }, + { + "word": " because", + "start": 1080.56, + "end": 1081.08, + "probability": 0.998046875 + }, + { + "word": " somebody", + "start": 1081.08, + "end": 1081.82, + "probability": 0.953125 + }, + { + "word": " started", + "start": 1081.82, + "end": 1082.58, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 1082.58, + "end": 1083.14, + "probability": 1.0 + }, + { + "word": " or,", + "start": 1083.14, + "end": 1083.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 588, + "text": "you know,", + "start": 1083.64, + "end": 1084.08, + "words": [ + { + "word": " you", + "start": 1083.64, + "end": 1083.92, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1083.92, + "end": 1084.08, + "probability": 1.0 + } + ] + }, + { + "id": 589, + "text": "interrupting your communication.", + "start": 1084.08, + "end": 1085.24, + "words": [ + { + "word": " interrupting", + "start": 1084.08, + "end": 1084.5, + "probability": 0.99853515625 + }, + { + "word": " your", + "start": 1084.5, + "end": 1084.74, + "probability": 1.0 + }, + { + "word": " communication.", + "start": 1084.74, + "end": 1085.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 590, + "text": "But yeah,", + "start": 1085.34, + "end": 1086.52, + "words": [ + { + "word": " But", + "start": 1085.34, + "end": 1085.66, + "probability": 0.91259765625 + }, + { + "word": " yeah,", + "start": 1085.66, + "end": 1086.52, + "probability": 0.998046875 + } + ] + }, + { + "id": 591, + "text": "I mean,", + "start": 1086.66, + "end": 1086.96, + "words": [ + { + "word": " I", + "start": 1086.66, + "end": 1086.78, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 1086.78, + "end": 1086.96, + "probability": 1.0 + } + ] + }, + { + "id": 592, + "text": "that's some old school cool for,", + "start": 1086.96, + "end": 1088.86, + "words": [ + { + "word": " that's", + "start": 1086.96, + "end": 1087.26, + "probability": 0.9912109375 + }, + { + "word": " some", + "start": 1087.26, + "end": 1087.36, + "probability": 0.9990234375 + }, + { + "word": " old", + "start": 1087.36, + "end": 1087.78, + "probability": 0.99951171875 + }, + { + "word": " school", + "start": 1087.78, + "end": 1088.0, + "probability": 1.0 + }, + { + "word": " cool", + "start": 1088.0, + "end": 1088.36, + "probability": 0.9716796875 + }, + { + "word": " for,", + "start": 1088.36, + "end": 1088.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 593, + "text": "uh,", + "start": 1088.9, + "end": 1089.16, + "words": [ + { + "word": " uh,", + "start": 1088.9, + "end": 1089.16, + "probability": 0.89501953125 + } + ] + }, + { + "id": 594, + "text": "when it was not,", + "start": 1089.18, + "end": 1089.8, + "words": [ + { + "word": " when", + "start": 1089.18, + "end": 1089.32, + "probability": 0.9970703125 + }, + { + "word": " it", + "start": 1089.32, + "end": 1089.42, + "probability": 1.0 + }, + { + "word": " was", + "start": 1089.42, + "end": 1089.54, + "probability": 1.0 + }, + { + "word": " not,", + "start": 1089.54, + "end": 1089.8, + "probability": 1.0 + } + ] + }, + { + "id": 595, + "text": "you know,", + "start": 1089.8, + "end": 1090.14, + "words": [ + { + "word": " you", + "start": 1089.8, + "end": 1090.04, + "probability": 0.99658203125 + }, + { + "word": " know,", + "start": 1090.04, + "end": 1090.14, + "probability": 1.0 + } + ] + }, + { + "id": 596, + "text": "basically we were just nerds back then.", + "start": 1090.14, + "end": 1091.72, + "words": [ + { + "word": " basically", + "start": 1090.14, + "end": 1090.44, + "probability": 0.05853271484375 + }, + { + "word": " we", + "start": 1090.44, + "end": 1090.72, + "probability": 0.787109375 + }, + { + "word": " were", + "start": 1090.72, + "end": 1090.76, + "probability": 0.9892578125 + }, + { + "word": " just", + "start": 1090.76, + "end": 1090.94, + "probability": 0.99951171875 + }, + { + "word": " nerds", + "start": 1090.94, + "end": 1091.32, + "probability": 0.9990234375 + }, + { + "word": " back", + "start": 1091.32, + "end": 1091.4, + "probability": 0.9990234375 + }, + { + "word": " then.", + "start": 1091.4, + "end": 1091.72, + "probability": 1.0 + } + ] + }, + { + "id": 597, + "text": "", + "start": 1092.24, + "end": 1092.24, + "words": [] + }, + { + "id": 598, + "text": "uh,", + "start": 1092.36, + "end": 1092.52, + "words": [ + { + "word": " uh,", + "start": 1092.36, + "end": 1092.52, + "probability": 0.501953125 + } + ] + }, + { + "id": 599, + "text": "yeah.", + "start": 1093.04, + "end": 1093.54, + "words": [ + { + "word": " yeah.", + "start": 1093.04, + "end": 1093.54, + "probability": 0.9970703125 + } + ] + }, + { + "id": 600, + "text": "Yeah.", + "start": 1093.86, + "end": 1094.36, + "words": [ + { + "word": " Yeah.", + "start": 1093.86, + "end": 1094.36, + "probability": 0.95166015625 + } + ] + }, + { + "id": 601, + "text": "Let me throw something out.", + "start": 1094.4, + "end": 1095.34, + "words": [ + { + "word": " Let", + "start": 1094.4, + "end": 1094.48, + "probability": 0.99755859375 + }, + { + "word": " me", + "start": 1094.48, + "end": 1094.6, + "probability": 1.0 + }, + { + "word": " throw", + "start": 1094.6, + "end": 1094.8, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1094.8, + "end": 1095.08, + "probability": 1.0 + }, + { + "word": " out.", + "start": 1095.08, + "end": 1095.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 602, + "text": "Sure.", + "start": 1095.38, + "end": 1095.72, + "words": [ + { + "word": " Sure.", + "start": 1095.38, + "end": 1095.72, + "probability": 0.68310546875 + } + ] + }, + { + "id": 603, + "text": "Go for it.", + "start": 1095.78, + "end": 1096.54, + "words": [ + { + "word": " Go", + "start": 1095.78, + "end": 1096.24, + "probability": 0.654296875 + }, + { + "word": " for", + "start": 1096.24, + "end": 1096.4, + "probability": 0.998046875 + }, + { + "word": " it.", + "start": 1096.4, + "end": 1096.54, + "probability": 1.0 + } + ] + }, + { + "id": 604, + "text": "Get ready to write.", + "start": 1096.54, + "end": 1097.44, + "words": [ + { + "word": " Get", + "start": 1096.54, + "end": 1096.78, + "probability": 0.9970703125 + }, + { + "word": " ready", + "start": 1096.78, + "end": 1097.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1097.02, + "end": 1097.2, + "probability": 1.0 + }, + { + "word": " write.", + "start": 1097.2, + "end": 1097.44, + "probability": 1.0 + } + ] + }, + { + "id": 605, + "text": "Here's a great site for everybody.", + "start": 1097.62, + "end": 1099.54, + "words": [ + { + "word": " Here's", + "start": 1097.62, + "end": 1098.12, + "probability": 0.96875 + }, + { + "word": " a", + "start": 1098.12, + "end": 1098.26, + "probability": 1.0 + }, + { + "word": " great", + "start": 1098.26, + "end": 1098.58, + "probability": 0.99951171875 + }, + { + "word": " site", + "start": 1098.58, + "end": 1098.9, + "probability": 1.0 + }, + { + "word": " for", + "start": 1098.9, + "end": 1099.18, + "probability": 1.0 + }, + { + "word": " everybody.", + "start": 1099.18, + "end": 1099.54, + "probability": 1.0 + } + ] + }, + { + "id": 606, + "text": "It's called scam aside.com.", + "start": 1099.84, + "end": 1102.54, + "words": [ + { + "word": " It's", + "start": 1099.84, + "end": 1100.34, + "probability": 1.0 + }, + { + "word": " called", + "start": 1100.34, + "end": 1100.56, + "probability": 0.99755859375 + }, + { + "word": " scam", + "start": 1100.56, + "end": 1101.04, + "probability": 0.96435546875 + }, + { + "word": " aside", + "start": 1101.04, + "end": 1101.46, + "probability": 0.83642578125 + }, + { + "word": ".com.", + "start": 1101.46, + "end": 1102.54, + "probability": 0.9814453125 + } + ] + }, + { + "id": 607, + "text": "S C A M I C I D E.com.", + "start": 1102.72, + "end": 1106.16, + "words": [ + { + "word": " S", + "start": 1102.72, + "end": 1103.06, + "probability": 0.98974609375 + }, + { + "word": " C", + "start": 1103.06, + "end": 1103.28, + "probability": 0.91357421875 + }, + { + "word": " A", + "start": 1103.28, + "end": 1103.52, + "probability": 0.7158203125 + }, + { + "word": " M", + "start": 1103.52, + "end": 1103.9, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1103.9, + "end": 1104.54, + "probability": 0.94970703125 + }, + { + "word": " C", + "start": 1104.54, + "end": 1104.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 1104.86, + "end": 1105.14, + "probability": 0.99853515625 + }, + { + "word": " D", + "start": 1105.14, + "end": 1105.42, + "probability": 0.9990234375 + }, + { + "word": " E", + "start": 1105.42, + "end": 1105.64, + "probability": 0.9990234375 + }, + { + "word": ".com.", + "start": 1105.64, + "end": 1106.16, + "probability": 0.98046875 + } + ] + }, + { + "id": 608, + "text": "It's a newsletter.", + "start": 1106.64, + "end": 1107.68, + "words": [ + { + "word": " It's", + "start": 1106.64, + "end": 1107.14, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1107.14, + "end": 1107.2, + "probability": 1.0 + }, + { + "word": " newsletter.", + "start": 1107.2, + "end": 1107.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 609, + "text": "It's a daily newsletter.", + "start": 1107.9, + "end": 1109.3, + "words": [ + { + "word": " It's", + "start": 1107.9, + "end": 1108.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1108.2, + "end": 1108.32, + "probability": 1.0 + }, + { + "word": " daily", + "start": 1108.32, + "end": 1108.82, + "probability": 0.99951171875 + }, + { + "word": " newsletter.", + "start": 1108.82, + "end": 1109.3, + "probability": 1.0 + } + ] + }, + { + "id": 610, + "text": "The guy is an attorney and he puts out the latest scams and warnings out there and it's free.", + "start": 1109.7, + "end": 1116.86, + "words": [ + { + "word": " The", + "start": 1109.7, + "end": 1110.2, + "probability": 0.99951171875 + }, + { + "word": " guy", + "start": 1110.2, + "end": 1110.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 1110.38, + "end": 1110.62, + "probability": 1.0 + }, + { + "word": " an", + "start": 1110.62, + "end": 1110.8, + "probability": 1.0 + }, + { + "word": " attorney", + "start": 1110.8, + "end": 1111.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 1111.14, + "end": 1111.6, + "probability": 0.99609375 + }, + { + "word": " he", + "start": 1111.6, + "end": 1111.78, + "probability": 1.0 + }, + { + "word": " puts", + "start": 1111.78, + "end": 1112.04, + "probability": 1.0 + }, + { + "word": " out", + "start": 1112.04, + "end": 1112.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1112.28, + "end": 1112.5, + "probability": 1.0 + }, + { + "word": " latest", + "start": 1112.5, + "end": 1112.76, + "probability": 0.99951171875 + }, + { + "word": " scams", + "start": 1112.76, + "end": 1113.48, + "probability": 0.9580078125 + }, + { + "word": " and", + "start": 1113.48, + "end": 1113.6, + "probability": 0.99755859375 + }, + { + "word": " warnings", + "start": 1113.6, + "end": 1113.98, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 1113.98, + "end": 1114.6, + "probability": 0.99560546875 + }, + { + "word": " there", + "start": 1114.6, + "end": 1114.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 1114.94, + "end": 1115.7, + "probability": 0.93994140625 + }, + { + "word": " it's", + "start": 1115.7, + "end": 1116.64, + "probability": 1.0 + }, + { + "word": " free.", + "start": 1116.64, + "end": 1116.86, + "probability": 1.0 + } + ] + }, + { + "id": 611, + "text": "You can get it and,", + "start": 1116.96, + "end": 1118.06, + "words": [ + { + "word": " You", + "start": 1116.96, + "end": 1117.36, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1117.36, + "end": 1117.52, + "probability": 1.0 + }, + { + "word": " get", + "start": 1117.52, + "end": 1117.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 1117.68, + "end": 1117.88, + "probability": 1.0 + }, + { + "word": " and,", + "start": 1117.88, + "end": 1118.06, + "probability": 0.5791015625 + } + ] + }, + { + "id": 612, + "text": "uh,", + "start": 1118.2, + "end": 1118.48, + "words": [ + { + "word": " uh,", + "start": 1118.2, + "end": 1118.48, + "probability": 0.9716796875 + } + ] + }, + { + "id": 613, + "text": "you can see what's going on.", + "start": 1118.48, + "end": 1120.46, + "words": [ + { + "word": " you", + "start": 1118.48, + "end": 1119.12, + "probability": 0.337646484375 + }, + { + "word": " can", + "start": 1119.12, + "end": 1119.68, + "probability": 0.998046875 + }, + { + "word": " see", + "start": 1119.68, + "end": 1119.86, + "probability": 1.0 + }, + { + "word": " what's", + "start": 1119.86, + "end": 1120.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 1120.04, + "end": 1120.2, + "probability": 1.0 + }, + { + "word": " on.", + "start": 1120.2, + "end": 1120.46, + "probability": 1.0 + } + ] + }, + { + "id": 614, + "text": "So one of the things that we were talking about when we spoke on the phone last week is that I,", + "start": 1120.64, + "end": 1127.54, + "words": [ + { + "word": " So", + "start": 1120.64, + "end": 1121.04, + "probability": 0.955078125 + }, + { + "word": " one", + "start": 1121.04, + "end": 1121.18, + "probability": 0.93701171875 + }, + { + "word": " of", + "start": 1121.18, + "end": 1121.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 1121.26, + "end": 1121.28, + "probability": 1.0 + }, + { + "word": " things", + "start": 1121.28, + "end": 1121.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 1121.44, + "end": 1121.56, + "probability": 0.99560546875 + }, + { + "word": " we", + "start": 1121.56, + "end": 1121.62, + "probability": 1.0 + }, + { + "word": " were", + "start": 1121.62, + "end": 1121.68, + "probability": 1.0 + }, + { + "word": " talking", + "start": 1121.68, + "end": 1121.88, + "probability": 1.0 + }, + { + "word": " about", + "start": 1121.88, + "end": 1122.14, + "probability": 1.0 + }, + { + "word": " when", + "start": 1122.14, + "end": 1122.38, + "probability": 0.998046875 + }, + { + "word": " we", + "start": 1122.38, + "end": 1122.58, + "probability": 1.0 + }, + { + "word": " spoke", + "start": 1122.58, + "end": 1123.02, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1123.02, + "end": 1123.94, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1123.94, + "end": 1124.1, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1124.1, + "end": 1124.34, + "probability": 1.0 + }, + { + "word": " last", + "start": 1124.34, + "end": 1124.62, + "probability": 0.99951171875 + }, + { + "word": " week", + "start": 1124.62, + "end": 1125.0, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 1125.0, + "end": 1125.66, + "probability": 0.970703125 + }, + { + "word": " that", + "start": 1125.66, + "end": 1125.98, + "probability": 0.99951171875 + }, + { + "word": " I,", + "start": 1125.98, + "end": 1127.54, + "probability": 0.59228515625 + } + ] + }, + { + "id": 615, + "text": "you know,", + "start": 1127.54, + "end": 1127.7, + "words": [ + { + "word": " you", + "start": 1127.54, + "end": 1127.62, + "probability": 0.99560546875 + }, + { + "word": " know,", + "start": 1127.62, + "end": 1127.7, + "probability": 1.0 + } + ] + }, + { + "id": 616, + "text": "I often don't think about these scams because,", + "start": 1127.74, + "end": 1129.6, + "words": [ + { + "word": " I", + "start": 1127.74, + "end": 1127.8, + "probability": 0.99951171875 + }, + { + "word": " often", + "start": 1127.8, + "end": 1128.06, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1128.06, + "end": 1128.3, + "probability": 1.0 + }, + { + "word": " think", + "start": 1128.3, + "end": 1128.46, + "probability": 1.0 + }, + { + "word": " about", + "start": 1128.46, + "end": 1128.66, + "probability": 1.0 + }, + { + "word": " these", + "start": 1128.66, + "end": 1128.88, + "probability": 1.0 + }, + { + "word": " scams", + "start": 1128.88, + "end": 1129.26, + "probability": 0.9736328125 + }, + { + "word": " because,", + "start": 1129.26, + "end": 1129.6, + "probability": 0.99853515625 + } + ] + }, + { + "id": 617, + "text": "um,", + "start": 1129.64, + "end": 1130.12, + "words": [ + { + "word": " um,", + "start": 1129.64, + "end": 1130.12, + "probability": 0.9873046875 + } + ] + }, + { + "id": 618, + "text": "I have insulated myself in such a way.", + "start": 1130.82, + "end": 1133.36, + "words": [ + { + "word": " I", + "start": 1130.82, + "end": 1131.22, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 1131.22, + "end": 1131.36, + "probability": 0.9033203125 + }, + { + "word": " insulated", + "start": 1131.36, + "end": 1132.2, + "probability": 1.0 + }, + { + "word": " myself", + "start": 1132.2, + "end": 1132.52, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1132.52, + "end": 1132.94, + "probability": 1.0 + }, + { + "word": " such", + "start": 1132.94, + "end": 1133.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 1133.12, + "end": 1133.22, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1133.22, + "end": 1133.36, + "probability": 1.0 + } + ] + }, + { + "id": 619, + "text": "They don't really see them.", + "start": 1133.4, + "end": 1134.24, + "words": [ + { + "word": " They", + "start": 1133.4, + "end": 1133.46, + "probability": 0.99609375 + }, + { + "word": " don't", + "start": 1133.46, + "end": 1133.66, + "probability": 1.0 + }, + { + "word": " really", + "start": 1133.66, + "end": 1133.78, + "probability": 1.0 + }, + { + "word": " see", + "start": 1133.78, + "end": 1134.08, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1134.08, + "end": 1134.24, + "probability": 1.0 + } + ] + }, + { + "id": 620, + "text": "I'm not exposed to them very often other than when a customer comes in and says,", + "start": 1134.3, + "end": 1137.82, + "words": [ + { + "word": " I'm", + "start": 1134.3, + "end": 1134.42, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 1134.42, + "end": 1134.54, + "probability": 1.0 + }, + { + "word": " exposed", + "start": 1134.54, + "end": 1135.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1135.02, + "end": 1135.2, + "probability": 1.0 + }, + { + "word": " them", + "start": 1135.2, + "end": 1135.32, + "probability": 1.0 + }, + { + "word": " very", + "start": 1135.32, + "end": 1135.5, + "probability": 0.99951171875 + }, + { + "word": " often", + "start": 1135.5, + "end": 1135.78, + "probability": 1.0 + }, + { + "word": " other", + "start": 1135.78, + "end": 1136.04, + "probability": 0.74072265625 + }, + { + "word": " than", + "start": 1136.04, + "end": 1136.32, + "probability": 1.0 + }, + { + "word": " when", + "start": 1136.32, + "end": 1136.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 1136.6, + "end": 1136.94, + "probability": 0.99951171875 + }, + { + "word": " customer", + "start": 1136.94, + "end": 1137.24, + "probability": 0.9990234375 + }, + { + "word": " comes", + "start": 1137.24, + "end": 1137.46, + "probability": 1.0 + }, + { + "word": " in", + "start": 1137.46, + "end": 1137.6, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1137.6, + "end": 1137.64, + "probability": 1.0 + }, + { + "word": " says,", + "start": 1137.64, + "end": 1137.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 621, + "text": "well,", + "start": 1137.88, + "end": 1138.0, + "words": [ + { + "word": " well,", + "start": 1137.88, + "end": 1138.0, + "probability": 0.98095703125 + } + ] + }, + { + "id": 622, + "text": "I,", + "start": 1138.06, + "end": 1138.12, + "words": [ + { + "word": " I,", + "start": 1138.06, + "end": 1138.12, + "probability": 0.9296875 + } + ] + }, + { + "id": 623, + "text": "you know,", + "start": 1138.16, + "end": 1138.58, + "words": [ + { + "word": " you", + "start": 1138.16, + "end": 1138.42, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1138.42, + "end": 1138.58, + "probability": 1.0 + } + ] + }, + { + "id": 624, + "text": "the scam happened to me.", + "start": 1138.58, + "end": 1139.8, + "words": [ + { + "word": " the", + "start": 1138.58, + "end": 1138.7, + "probability": 0.98046875 + }, + { + "word": " scam", + "start": 1138.7, + "end": 1138.96, + "probability": 0.99951171875 + }, + { + "word": " happened", + "start": 1138.96, + "end": 1139.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 1139.38, + "end": 1139.58, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1139.58, + "end": 1139.8, + "probability": 1.0 + } + ] + }, + { + "id": 625, + "text": "Um,", + "start": 1140.5, + "end": 1140.9, + "words": [ + { + "word": " Um,", + "start": 1140.5, + "end": 1140.9, + "probability": 0.97265625 + } + ] + }, + { + "id": 626, + "text": "so opportunity,", + "start": 1141.1, + "end": 1142.44, + "words": [ + { + "word": " so", + "start": 1141.1, + "end": 1141.7, + "probability": 0.99951171875 + }, + { + "word": " opportunity,", + "start": 1141.7, + "end": 1142.44, + "probability": 0.98974609375 + } + ] + }, + { + "id": 627, + "text": "you know,", + "start": 1142.48, + "end": 1142.8, + "words": [ + { + "word": " you", + "start": 1142.48, + "end": 1142.7, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1142.7, + "end": 1142.8, + "probability": 1.0 + } + ] + }, + { + "id": 628, + "text": "scams like the yes scam,", + "start": 1142.8, + "end": 1144.42, + "words": [ + { + "word": " scams", + "start": 1142.8, + "end": 1143.2, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 1143.2, + "end": 1143.4, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1143.4, + "end": 1143.64, + "probability": 1.0 + }, + { + "word": " yes", + "start": 1143.64, + "end": 1144.06, + "probability": 0.99365234375 + }, + { + "word": " scam,", + "start": 1144.06, + "end": 1144.42, + "probability": 0.9921875 + } + ] + }, + { + "id": 629, + "text": "which it's not necessarily an online scam.", + "start": 1145.0199999999998, + "end": 1147.22, + "words": [ + { + "word": " which", + "start": 1145.0199999999998, + "end": 1145.4199999999998, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1145.4199999999998, + "end": 1145.82, + "probability": 0.97119140625 + }, + { + "word": " not", + "start": 1145.82, + "end": 1145.96, + "probability": 1.0 + }, + { + "word": " necessarily", + "start": 1145.96, + "end": 1146.42, + "probability": 1.0 + }, + { + "word": " an", + "start": 1146.42, + "end": 1146.66, + "probability": 1.0 + }, + { + "word": " online", + "start": 1146.66, + "end": 1146.92, + "probability": 1.0 + }, + { + "word": " scam.", + "start": 1146.92, + "end": 1147.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 630, + "text": "That's a phone scam.", + "start": 1147.28, + "end": 1148.1, + "words": [ + { + "word": " That's", + "start": 1147.28, + "end": 1147.48, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 1147.48, + "end": 1147.48, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1147.48, + "end": 1147.78, + "probability": 1.0 + }, + { + "word": " scam.", + "start": 1147.78, + "end": 1148.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 631, + "text": "That a lot of people will inadvertently fall for where someone will call you up on the phone and say,", + "start": 1148.1, + "end": 1155.46, + "words": [ + { + "word": " That", + "start": 1148.1, + "end": 1148.52, + "probability": 0.029388427734375 + }, + { + "word": " a", + "start": 1148.52, + "end": 1149.1, + "probability": 0.9892578125 + }, + { + "word": " lot", + "start": 1149.1, + "end": 1149.64, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1149.64, + "end": 1149.76, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1149.76, + "end": 1150.02, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 1150.02, + "end": 1150.56, + "probability": 0.953125 + }, + { + "word": " inadvertently", + "start": 1150.56, + "end": 1151.82, + "probability": 0.97314453125 + }, + { + "word": " fall", + "start": 1151.82, + "end": 1152.08, + "probability": 0.9951171875 + }, + { + "word": " for", + "start": 1152.08, + "end": 1152.34, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 1152.34, + "end": 1152.88, + "probability": 0.254150390625 + }, + { + "word": " someone", + "start": 1152.88, + "end": 1153.6, + "probability": 0.99853515625 + }, + { + "word": " will", + "start": 1153.6, + "end": 1153.82, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 1153.82, + "end": 1154.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 1154.06, + "end": 1154.28, + "probability": 1.0 + }, + { + "word": " up", + "start": 1154.28, + "end": 1154.48, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1154.48, + "end": 1154.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1154.64, + "end": 1154.72, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1154.72, + "end": 1154.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 1154.98, + "end": 1155.2, + "probability": 0.9921875 + }, + { + "word": " say,", + "start": 1155.2, + "end": 1155.46, + "probability": 0.98974609375 + } + ] + }, + { + "id": 632, + "text": "um,", + "start": 1156.06, + "end": 1156.56, + "words": [ + { + "word": " um,", + "start": 1156.06, + "end": 1156.56, + "probability": 0.44384765625 + } + ] + }, + { + "id": 633, + "text": "they,", + "start": 1156.76, + "end": 1157.26, + "words": [ + { + "word": " they,", + "start": 1156.76, + "end": 1157.26, + "probability": 0.99365234375 + } + ] + }, + { + "id": 634, + "text": "they can say often little things like,", + "start": 1157.26, + "end": 1159.58, + "words": [ + { + "word": " they", + "start": 1157.26, + "end": 1157.74, + "probability": 1.0 + }, + { + "word": " can", + "start": 1157.74, + "end": 1158.12, + "probability": 0.9169921875 + }, + { + "word": " say", + "start": 1158.12, + "end": 1158.34, + "probability": 1.0 + }, + { + "word": " often", + "start": 1158.34, + "end": 1158.64, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 1158.64, + "end": 1158.92, + "probability": 1.0 + }, + { + "word": " things", + "start": 1158.92, + "end": 1159.28, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1159.28, + "end": 1159.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 635, + "text": "can you hear me?", + "start": 1159.62, + "end": 1160.26, + "words": [ + { + "word": " can", + "start": 1159.62, + "end": 1159.76, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1159.76, + "end": 1159.94, + "probability": 1.0 + }, + { + "word": " hear", + "start": 1159.94, + "end": 1160.08, + "probability": 1.0 + }, + { + "word": " me?", + "start": 1160.08, + "end": 1160.26, + "probability": 1.0 + } + ] + }, + { + "id": 636, + "text": "But they'll often open with something,", + "start": 1160.3, + "end": 1162.24, + "words": [ + { + "word": " But", + "start": 1160.3, + "end": 1160.56, + "probability": 0.99755859375 + }, + { + "word": " they'll", + "start": 1160.56, + "end": 1160.92, + "probability": 0.998046875 + }, + { + "word": " often", + "start": 1160.92, + "end": 1161.4, + "probability": 0.9990234375 + }, + { + "word": " open", + "start": 1161.4, + "end": 1161.76, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1161.76, + "end": 1161.94, + "probability": 1.0 + }, + { + "word": " something,", + "start": 1161.94, + "end": 1162.24, + "probability": 1.0 + } + ] + }, + { + "id": 637, + "text": "you know,", + "start": 1162.32, + "end": 1163.12, + "words": [ + { + "word": " you", + "start": 1162.32, + "end": 1162.78, + "probability": 0.99169921875 + }, + { + "word": " know,", + "start": 1162.78, + "end": 1163.12, + "probability": 1.0 + } + ] + }, + { + "id": 638, + "text": "useful like,", + "start": 1163.12, + "end": 1163.96, + "words": [ + { + "word": " useful", + "start": 1163.12, + "end": 1163.5, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1163.5, + "end": 1163.96, + "probability": 0.42626953125 + } + ] + }, + { + "id": 639, + "text": "hi,", + "start": 1163.98, + "end": 1164.18, + "words": [ + { + "word": " hi,", + "start": 1163.98, + "end": 1164.18, + "probability": 0.83203125 + } + ] + }, + { + "id": 640, + "text": "I'm from blue cross blue shield or something along those lines.", + "start": 1164.2, + "end": 1166.78, + "words": [ + { + "word": " I'm", + "start": 1164.2, + "end": 1164.34, + "probability": 0.9990234375 + }, + { + "word": " from", + "start": 1164.34, + "end": 1164.6, + "probability": 1.0 + }, + { + "word": " blue", + "start": 1164.6, + "end": 1165.02, + "probability": 0.7744140625 + }, + { + "word": " cross", + "start": 1165.02, + "end": 1165.16, + "probability": 0.99658203125 + }, + { + "word": " blue", + "start": 1165.16, + "end": 1165.36, + "probability": 0.724609375 + }, + { + "word": " shield", + "start": 1165.36, + "end": 1165.64, + "probability": 0.99658203125 + }, + { + "word": " or", + "start": 1165.64, + "end": 1165.84, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 1165.84, + "end": 1166.02, + "probability": 1.0 + }, + { + "word": " along", + "start": 1166.02, + "end": 1166.24, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 1166.24, + "end": 1166.46, + "probability": 1.0 + }, + { + "word": " lines.", + "start": 1166.46, + "end": 1166.78, + "probability": 1.0 + } + ] + }, + { + "id": 641, + "text": "Are you this person?", + "start": 1167.0, + "end": 1168.44, + "words": [ + { + "word": " Are", + "start": 1167.0, + "end": 1167.5, + "probability": 0.98876953125 + }, + { + "word": " you", + "start": 1167.5, + "end": 1167.76, + "probability": 1.0 + }, + { + "word": " this", + "start": 1167.76, + "end": 1167.98, + "probability": 1.0 + }, + { + "word": " person?", + "start": 1167.98, + "end": 1168.44, + "probability": 1.0 + } + ] + }, + { + "id": 642, + "text": "And they're wanting you to say yes so that they can then take snippets of your conversation.", + "start": 1168.48, + "end": 1174.12, + "words": [ + { + "word": " And", + "start": 1168.48, + "end": 1168.72, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 1168.72, + "end": 1168.94, + "probability": 1.0 + }, + { + "word": " wanting", + "start": 1168.94, + "end": 1169.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 1169.34, + "end": 1169.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 1169.62, + "end": 1169.76, + "probability": 1.0 + }, + { + "word": " say", + "start": 1169.76, + "end": 1169.96, + "probability": 1.0 + }, + { + "word": " yes", + "start": 1169.96, + "end": 1170.34, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 1170.34, + "end": 1171.28, + "probability": 0.1510009765625 + }, + { + "word": " that", + "start": 1171.28, + "end": 1171.48, + "probability": 1.0 + }, + { + "word": " they", + "start": 1171.48, + "end": 1171.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 1171.66, + "end": 1171.84, + "probability": 1.0 + }, + { + "word": " then", + "start": 1171.84, + "end": 1172.08, + "probability": 1.0 + }, + { + "word": " take", + "start": 1172.08, + "end": 1172.58, + "probability": 1.0 + }, + { + "word": " snippets", + "start": 1172.58, + "end": 1173.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 1173.3, + "end": 1173.42, + "probability": 1.0 + }, + { + "word": " your", + "start": 1173.42, + "end": 1173.56, + "probability": 0.99951171875 + }, + { + "word": " conversation.", + "start": 1173.56, + "end": 1174.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 643, + "text": "Uh,", + "start": 1174.7, + "end": 1175.2, + "words": [ + { + "word": " Uh,", + "start": 1174.7, + "end": 1175.2, + "probability": 0.3994140625 + } + ] + }, + { + "id": 644, + "text": "and over the course of the car of the,", + "start": 1175.2, + "end": 1177.08, + "words": [ + { + "word": " and", + "start": 1175.2, + "end": 1175.32, + "probability": 0.152099609375 + }, + { + "word": " over", + "start": 1175.32, + "end": 1175.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1175.62, + "end": 1175.8, + "probability": 1.0 + }, + { + "word": " course", + "start": 1175.8, + "end": 1176.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 1176.14, + "end": 1176.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 1176.3, + "end": 1176.42, + "probability": 1.0 + }, + { + "word": " car", + "start": 1176.42, + "end": 1176.5, + "probability": 6.16312026977539e-05 + }, + { + "word": " of", + "start": 1176.5, + "end": 1176.74, + "probability": 0.796875 + }, + { + "word": " the,", + "start": 1176.74, + "end": 1177.08, + "probability": 0.99853515625 + } + ] + }, + { + "id": 645, + "text": "uh,", + "start": 1177.12, + "end": 1177.82, + "words": [ + { + "word": " uh,", + "start": 1177.12, + "end": 1177.82, + "probability": 0.96875 + } + ] + }, + { + "id": 646, + "text": "conversation that you have with them,", + "start": 1177.96, + "end": 1179.18, + "words": [ + { + "word": " conversation", + "start": 1177.96, + "end": 1178.36, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1178.36, + "end": 1178.6, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1178.6, + "end": 1178.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 1178.64, + "end": 1178.8, + "probability": 1.0 + }, + { + "word": " with", + "start": 1178.8, + "end": 1179.0, + "probability": 0.99951171875 + }, + { + "word": " them,", + "start": 1179.0, + "end": 1179.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 647, + "text": "they can then reorder that in their audio editing platform and have you verbally sign a contract.", + "start": 1179.24, + "end": 1185.24, + "words": [ + { + "word": " they", + "start": 1179.24, + "end": 1179.4, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 1179.4, + "end": 1179.6, + "probability": 1.0 + }, + { + "word": " then", + "start": 1179.6, + "end": 1179.8, + "probability": 0.99951171875 + }, + { + "word": " reorder", + "start": 1179.8, + "end": 1180.74, + "probability": 0.6826171875 + }, + { + "word": " that", + "start": 1180.74, + "end": 1181.06, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 1181.06, + "end": 1181.44, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 1181.44, + "end": 1181.68, + "probability": 0.9990234375 + }, + { + "word": " audio", + "start": 1181.68, + "end": 1182.08, + "probability": 0.99951171875 + }, + { + "word": " editing", + "start": 1182.08, + "end": 1182.48, + "probability": 0.99755859375 + }, + { + "word": " platform", + "start": 1182.48, + "end": 1183.06, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1183.06, + "end": 1183.42, + "probability": 0.9951171875 + }, + { + "word": " have", + "start": 1183.42, + "end": 1183.76, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1183.76, + "end": 1183.96, + "probability": 1.0 + }, + { + "word": " verbally", + "start": 1183.96, + "end": 1184.34, + "probability": 0.99853515625 + }, + { + "word": " sign", + "start": 1184.34, + "end": 1184.66, + "probability": 0.99072265625 + }, + { + "word": " a", + "start": 1184.66, + "end": 1184.82, + "probability": 0.99951171875 + }, + { + "word": " contract.", + "start": 1184.82, + "end": 1185.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 648, + "text": "And so there's a lot of people that fall for this.", + "start": 1185.96, + "end": 1188.44, + "words": [ + { + "word": " And", + "start": 1185.96, + "end": 1186.36, + "probability": 0.998046875 + }, + { + "word": " so", + "start": 1186.36, + "end": 1186.76, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 1186.76, + "end": 1187.34, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 1187.34, + "end": 1187.36, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1187.36, + "end": 1187.46, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1187.46, + "end": 1187.5, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1187.5, + "end": 1187.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 1187.72, + "end": 1187.82, + "probability": 0.98681640625 + }, + { + "word": " fall", + "start": 1187.82, + "end": 1188.0, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 1188.0, + "end": 1188.2, + "probability": 0.99755859375 + }, + { + "word": " this.", + "start": 1188.2, + "end": 1188.44, + "probability": 0.99560546875 + } + ] + }, + { + "id": 649, + "text": "Yeah.", + "start": 1188.6, + "end": 1189.0, + "words": [ + { + "word": " Yeah.", + "start": 1188.6, + "end": 1189.0, + "probability": 0.54833984375 + } + ] + }, + { + "id": 650, + "text": "And basically,", + "start": 1189.28, + "end": 1190.42, + "words": [ + { + "word": " And", + "start": 1189.28, + "end": 1189.68, + "probability": 0.9970703125 + }, + { + "word": " basically,", + "start": 1189.68, + "end": 1190.42, + "probability": 0.9951171875 + } + ] + }, + { + "id": 651, + "text": "you know,", + "start": 1190.52, + "end": 1190.82, + "words": [ + { + "word": " you", + "start": 1190.52, + "end": 1190.74, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1190.74, + "end": 1190.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 652, + "text": "you have to be kind of ruthless.", + "start": 1190.86, + "end": 1192.14, + "words": [ + { + "word": " you", + "start": 1190.86, + "end": 1190.94, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 1190.94, + "end": 1191.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1191.08, + "end": 1191.24, + "probability": 1.0 + }, + { + "word": " be", + "start": 1191.24, + "end": 1191.4, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 1191.4, + "end": 1191.66, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1191.66, + "end": 1191.78, + "probability": 0.99951171875 + }, + { + "word": " ruthless.", + "start": 1191.78, + "end": 1192.14, + "probability": 0.998046875 + } + ] + }, + { + "id": 653, + "text": "So if somebody calls you up and says,", + "start": 1192.26, + "end": 1193.84, + "words": [ + { + "word": " So", + "start": 1192.26, + "end": 1192.64, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1192.64, + "end": 1192.78, + "probability": 0.98974609375 + }, + { + "word": " somebody", + "start": 1192.78, + "end": 1192.94, + "probability": 0.99853515625 + }, + { + "word": " calls", + "start": 1192.94, + "end": 1193.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 1193.14, + "end": 1193.3, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 1193.3, + "end": 1193.46, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1193.46, + "end": 1193.6, + "probability": 1.0 + }, + { + "word": " says,", + "start": 1193.6, + "end": 1193.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 654, + "text": "I'm so and so are you,", + "start": 1194.3, + "end": 1195.88, + "words": [ + { + "word": " I'm", + "start": 1194.3, + "end": 1194.7, + "probability": 0.98876953125 + }, + { + "word": " so", + "start": 1194.7, + "end": 1194.84, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 1194.84, + "end": 1195.02, + "probability": 0.04437255859375 + }, + { + "word": " so", + "start": 1195.02, + "end": 1195.2, + "probability": 1.0 + }, + { + "word": " are", + "start": 1195.2, + "end": 1195.58, + "probability": 0.32763671875 + }, + { + "word": " you,", + "start": 1195.58, + "end": 1195.88, + "probability": 0.99755859375 + } + ] + }, + { + "id": 655, + "text": "can you hear me?", + "start": 1196.32, + "end": 1197.26, + "words": [ + { + "word": " can", + "start": 1196.32, + "end": 1196.72, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1196.72, + "end": 1196.9, + "probability": 1.0 + }, + { + "word": " hear", + "start": 1196.9, + "end": 1197.06, + "probability": 1.0 + }, + { + "word": " me?", + "start": 1197.06, + "end": 1197.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 656, + "text": "Or are you this person?", + "start": 1197.26, + "end": 1198.88, + "words": [ + { + "word": " Or", + "start": 1197.26, + "end": 1197.44, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 1197.44, + "end": 1197.7, + "probability": 0.93212890625 + }, + { + "word": " you", + "start": 1197.7, + "end": 1198.24, + "probability": 0.94091796875 + }, + { + "word": " this", + "start": 1198.24, + "end": 1198.46, + "probability": 0.75439453125 + }, + { + "word": " person?", + "start": 1198.46, + "end": 1198.88, + "probability": 1.0 + } + ] + }, + { + "id": 657, + "text": "Um,", + "start": 1199.46, + "end": 1199.86, + "words": [ + { + "word": " Um,", + "start": 1199.46, + "end": 1199.86, + "probability": 0.845703125 + } + ] + }, + { + "id": 658, + "text": "don't say yes.", + "start": 1201.2199999999998, + "end": 1201.96, + "words": [ + { + "word": " don't", + "start": 1201.2199999999998, + "end": 1201.62, + "probability": 0.99755859375 + }, + { + "word": " say", + "start": 1201.62, + "end": 1201.7, + "probability": 1.0 + }, + { + "word": " yes.", + "start": 1201.7, + "end": 1201.96, + "probability": 0.99853515625 + } + ] + }, + { + "id": 659, + "text": "That's all that part of social engineering that you see.", + "start": 1202.14, + "end": 1204.94, + "words": [ + { + "word": " That's", + "start": 1202.14, + "end": 1202.52, + "probability": 0.9931640625 + }, + { + "word": " all", + "start": 1202.52, + "end": 1202.62, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1202.62, + "end": 1202.78, + "probability": 0.9990234375 + }, + { + "word": " part", + "start": 1202.78, + "end": 1203.16, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 1203.16, + "end": 1203.3, + "probability": 1.0 + }, + { + "word": " social", + "start": 1203.3, + "end": 1203.56, + "probability": 0.99951171875 + }, + { + "word": " engineering", + "start": 1203.56, + "end": 1204.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 1204.28, + "end": 1204.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 1204.54, + "end": 1204.7, + "probability": 1.0 + }, + { + "word": " see.", + "start": 1204.7, + "end": 1204.94, + "probability": 0.99609375 + } + ] + }, + { + "id": 660, + "text": "Yeah.", + "start": 1205.04, + "end": 1205.18, + "words": [ + { + "word": " Yeah.", + "start": 1205.04, + "end": 1205.18, + "probability": 0.5205078125 + } + ] + }, + { + "id": 661, + "text": "", + "start": 1205.18, + "end": 1205.18, + "words": [] + }, + { + "id": 662, + "text": "Yeah.", + "start": 1205.18, + "end": 1205.5, + "words": [ + { + "word": " Yeah.", + "start": 1205.18, + "end": 1205.5, + "probability": 0.9755859375 + } + ] + }, + { + "id": 663, + "text": "That's a manipulation for sure.", + "start": 1205.92, + "end": 1207.62, + "words": [ + { + "word": " That's", + "start": 1205.92, + "end": 1206.32, + "probability": 0.5615234375 + }, + { + "word": " a", + "start": 1206.32, + "end": 1206.5, + "probability": 0.96533203125 + }, + { + "word": " manipulation", + "start": 1206.5, + "end": 1206.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 1206.72, + "end": 1207.34, + "probability": 0.97998046875 + }, + { + "word": " sure.", + "start": 1207.34, + "end": 1207.62, + "probability": 1.0 + } + ] + }, + { + "id": 664, + "text": "And,", + "start": 1208.16, + "end": 1208.56, + "words": [ + { + "word": " And,", + "start": 1208.16, + "end": 1208.56, + "probability": 0.94580078125 + } + ] + }, + { + "id": 665, + "text": "uh,", + "start": 1208.7, + "end": 1209.32, + "words": [ + { + "word": " uh,", + "start": 1208.7, + "end": 1209.32, + "probability": 0.9921875 + } + ] + }, + { + "id": 666, + "text": "I just,", + "start": 1209.64, + "end": 1210.36, + "words": [ + { + "word": " I", + "start": 1209.64, + "end": 1209.88, + "probability": 1.0 + }, + { + "word": " just,", + "start": 1209.88, + "end": 1210.36, + "probability": 1.0 + } + ] + }, + { + "id": 667, + "text": "I don't talk to anybody on the phone in that way.", + "start": 1210.44, + "end": 1213.6, + "words": [ + { + "word": " I", + "start": 1210.44, + "end": 1210.58, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1210.58, + "end": 1210.78, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1210.78, + "end": 1210.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1210.94, + "end": 1211.08, + "probability": 1.0 + }, + { + "word": " anybody", + "start": 1211.08, + "end": 1211.32, + "probability": 1.0 + }, + { + "word": " on", + "start": 1211.32, + "end": 1211.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 1211.76, + "end": 1212.16, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1212.16, + "end": 1212.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 1212.48, + "end": 1212.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 1212.82, + "end": 1213.16, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1213.16, + "end": 1213.6, + "probability": 1.0 + } + ] + }, + { + "id": 668, + "text": "Like when people call up and say,", + "start": 1213.64, + "end": 1215.0, + "words": [ + { + "word": " Like", + "start": 1213.64, + "end": 1214.0, + "probability": 1.0 + }, + { + "word": " when", + "start": 1214.0, + "end": 1214.18, + "probability": 1.0 + }, + { + "word": " people", + "start": 1214.18, + "end": 1214.4, + "probability": 1.0 + }, + { + "word": " call", + "start": 1214.4, + "end": 1214.68, + "probability": 1.0 + }, + { + "word": " up", + "start": 1214.68, + "end": 1214.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 1214.82, + "end": 1214.86, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1214.86, + "end": 1215.0, + "probability": 1.0 + } + ] + }, + { + "id": 669, + "text": "is this so and so I can say,", + "start": 1215.06, + "end": 1216.62, + "words": [ + { + "word": " is", + "start": 1215.06, + "end": 1215.14, + "probability": 1.0 + }, + { + "word": " this", + "start": 1215.14, + "end": 1215.26, + "probability": 1.0 + }, + { + "word": " so", + "start": 1215.26, + "end": 1215.44, + "probability": 1.0 + }, + { + "word": " and", + "start": 1215.44, + "end": 1215.6, + "probability": 0.0164794921875 + }, + { + "word": " so", + "start": 1215.6, + "end": 1215.76, + "probability": 1.0 + }, + { + "word": " I", + "start": 1215.76, + "end": 1216.24, + "probability": 0.96923828125 + }, + { + "word": " can", + "start": 1216.24, + "end": 1216.42, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1216.42, + "end": 1216.62, + "probability": 1.0 + } + ] + }, + { + "id": 670, + "text": "I'll often just say,", + "start": 1216.72, + "end": 1217.78, + "words": [ + { + "word": " I'll", + "start": 1216.72, + "end": 1217.14, + "probability": 0.9619140625 + }, + { + "word": " often", + "start": 1217.14, + "end": 1217.44, + "probability": 1.0 + }, + { + "word": " just", + "start": 1217.44, + "end": 1217.6, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1217.6, + "end": 1217.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 671, + "text": "how can I help you?", + "start": 1217.86, + "end": 1218.54, + "words": [ + { + "word": " how", + "start": 1217.86, + "end": 1218.02, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1218.02, + "end": 1218.16, + "probability": 1.0 + }, + { + "word": " I", + "start": 1218.16, + "end": 1218.24, + "probability": 1.0 + }, + { + "word": " help", + "start": 1218.24, + "end": 1218.38, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1218.38, + "end": 1218.54, + "probability": 1.0 + } + ] + }, + { + "id": 672, + "text": "All right.", + "start": 1218.74, + "end": 1219.28, + "words": [ + { + "word": " All", + "start": 1218.74, + "end": 1219.14, + "probability": 0.9833984375 + }, + { + "word": " right.", + "start": 1219.14, + "end": 1219.28, + "probability": 1.0 + } + ] + }, + { + "id": 673, + "text": "I won't say yes or no,", + "start": 1219.32, + "end": 1220.78, + "words": [ + { + "word": " I", + "start": 1219.32, + "end": 1219.46, + "probability": 1.0 + }, + { + "word": " won't", + "start": 1219.46, + "end": 1219.8, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 1219.8, + "end": 1220.1, + "probability": 1.0 + }, + { + "word": " yes", + "start": 1220.1, + "end": 1220.36, + "probability": 1.0 + }, + { + "word": " or", + "start": 1220.36, + "end": 1220.54, + "probability": 1.0 + }, + { + "word": " no,", + "start": 1220.54, + "end": 1220.78, + "probability": 1.0 + } + ] + }, + { + "id": 674, + "text": "or anything that can be used against me in that way.", + "start": 1220.9, + "end": 1224.16, + "words": [ + { + "word": " or", + "start": 1220.9, + "end": 1221.08, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1221.08, + "end": 1221.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 1221.76, + "end": 1222.08, + "probability": 1.0 + }, + { + "word": " can", + "start": 1222.08, + "end": 1222.22, + "probability": 1.0 + }, + { + "word": " be", + "start": 1222.22, + "end": 1222.4, + "probability": 1.0 + }, + { + "word": " used", + "start": 1222.4, + "end": 1222.76, + "probability": 1.0 + }, + { + "word": " against", + "start": 1222.76, + "end": 1223.3, + "probability": 1.0 + }, + { + "word": " me", + "start": 1223.3, + "end": 1223.64, + "probability": 1.0 + }, + { + "word": " in", + "start": 1223.64, + "end": 1223.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 1223.76, + "end": 1223.92, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1223.92, + "end": 1224.16, + "probability": 1.0 + } + ] + }, + { + "id": 675, + "text": "And mainly because I,", + "start": 1224.2, + "end": 1224.8, + "words": [ + { + "word": " And", + "start": 1224.2, + "end": 1224.28, + "probability": 0.9794921875 + }, + { + "word": " mainly", + "start": 1224.28, + "end": 1224.4, + "probability": 0.99169921875 + }, + { + "word": " because", + "start": 1224.4, + "end": 1224.6, + "probability": 0.8056640625 + }, + { + "word": " I,", + "start": 1224.6, + "end": 1224.8, + "probability": 1.0 + } + ] + }, + { + "id": 676, + "text": "I need them to authenticate with me.", + "start": 1224.82, + "end": 1226.84, + "words": [ + { + "word": " I", + "start": 1224.82, + "end": 1225.24, + "probability": 1.0 + }, + { + "word": " need", + "start": 1225.24, + "end": 1225.44, + "probability": 1.0 + }, + { + "word": " them", + "start": 1225.44, + "end": 1225.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 1225.64, + "end": 1225.84, + "probability": 1.0 + }, + { + "word": " authenticate", + "start": 1225.84, + "end": 1226.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 1226.32, + "end": 1226.56, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1226.56, + "end": 1226.84, + "probability": 1.0 + } + ] + }, + { + "id": 677, + "text": "Right.", + "start": 1227.12, + "end": 1227.52, + "words": [ + { + "word": " Right.", + "start": 1227.12, + "end": 1227.52, + "probability": 0.9921875 + } + ] + }, + { + "id": 678, + "text": "I don't know who you are.", + "start": 1227.66, + "end": 1228.72, + "words": [ + { + "word": " I", + "start": 1227.66, + "end": 1227.82, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1227.82, + "end": 1228.2, + "probability": 0.998046875 + }, + { + "word": " know", + "start": 1228.2, + "end": 1228.28, + "probability": 1.0 + }, + { + "word": " who", + "start": 1228.28, + "end": 1228.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 1228.38, + "end": 1228.52, + "probability": 1.0 + }, + { + "word": " are.", + "start": 1228.52, + "end": 1228.72, + "probability": 1.0 + } + ] + }, + { + "id": 679, + "text": "You're calling me.", + "start": 1228.74, + "end": 1229.34, + "words": [ + { + "word": " You're", + "start": 1228.74, + "end": 1228.88, + "probability": 0.9990234375 + }, + { + "word": " calling", + "start": 1228.88, + "end": 1229.08, + "probability": 0.9990234375 + }, + { + "word": " me.", + "start": 1229.08, + "end": 1229.34, + "probability": 1.0 + } + ] + }, + { + "id": 680, + "text": "You better prove to me who you are before I say anything that's important or that can potentially get in the way of my conversation.", + "start": 1229.42, + "end": 1235.16, + "words": [ + { + "word": " You", + "start": 1229.42, + "end": 1229.54, + "probability": 0.99951171875 + }, + { + "word": " better", + "start": 1229.54, + "end": 1229.74, + "probability": 0.99853515625 + }, + { + "word": " prove", + "start": 1229.74, + "end": 1230.08, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1230.08, + "end": 1230.28, + "probability": 1.0 + }, + { + "word": " me", + "start": 1230.28, + "end": 1230.38, + "probability": 1.0 + }, + { + "word": " who", + "start": 1230.38, + "end": 1230.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 1230.66, + "end": 1230.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 1230.86, + "end": 1231.14, + "probability": 1.0 + }, + { + "word": " before", + "start": 1231.14, + "end": 1231.48, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 1231.48, + "end": 1231.96, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 1231.96, + "end": 1232.26, + "probability": 1.0 + }, + { + "word": " anything", + "start": 1232.26, + "end": 1232.6, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1232.6, + "end": 1232.96, + "probability": 0.99560546875 + }, + { + "word": " important", + "start": 1232.96, + "end": 1233.34, + "probability": 1.0 + }, + { + "word": " or", + "start": 1233.34, + "end": 1234.2, + "probability": 0.810546875 + }, + { + "word": " that", + "start": 1234.2, + "end": 1234.34, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1234.34, + "end": 1234.48, + "probability": 0.99658203125 + }, + { + "word": " potentially", + "start": 1234.48, + "end": 1234.92, + "probability": 0.9873046875 + }, + { + "word": " get", + "start": 1234.92, + "end": 1235.16, + "probability": 0.92041015625 + }, + { + "word": " in", + "start": 1235.16, + "end": 1235.16, + "probability": 0.1580810546875 + }, + { + "word": " the", + "start": 1235.16, + "end": 1235.16, + "probability": 0.859375 + }, + { + "word": " way", + "start": 1235.16, + "end": 1235.16, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1235.16, + "end": 1235.16, + "probability": 0.499755859375 + }, + { + "word": " my", + "start": 1235.16, + "end": 1235.16, + "probability": 0.5888671875 + }, + { + "word": " conversation.", + "start": 1235.16, + "end": 1235.16, + "probability": 0.00815582275390625 + } + ] + }, + { + "id": 681, + "text": "", + "start": 1235.16, + "end": 1235.16, + "words": [] + }, + { + "id": 682, + "text": "You would,", + "start": 1235.16, + "end": 1236.52, + "words": [ + { + "word": " You", + "start": 1235.16, + "end": 1235.4, + "probability": 0.0261383056640625 + }, + { + "word": " would,", + "start": 1235.4, + "end": 1236.52, + "probability": 0.63037109375 + } + ] + }, + { + "id": 683, + "text": "you would also mention in that same conversation,", + "start": 1236.52, + "end": 1238.6, + "words": [ + { + "word": " you", + "start": 1236.52, + "end": 1236.8, + "probability": 0.982421875 + }, + { + "word": " would", + "start": 1236.8, + "end": 1236.98, + "probability": 0.9326171875 + }, + { + "word": " also", + "start": 1236.98, + "end": 1237.18, + "probability": 0.99755859375 + }, + { + "word": " mention", + "start": 1237.18, + "end": 1237.54, + "probability": 0.8876953125 + }, + { + "word": " in", + "start": 1237.54, + "end": 1237.74, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 1237.74, + "end": 1237.86, + "probability": 0.9990234375 + }, + { + "word": " same", + "start": 1237.86, + "end": 1238.08, + "probability": 0.9990234375 + }, + { + "word": " conversation,", + "start": 1238.08, + "end": 1238.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 684, + "text": "how could anyone fall for this,", + "start": 1238.92, + "end": 1241.76, + "words": [ + { + "word": " how", + "start": 1238.92, + "end": 1239.44, + "probability": 0.9794921875 + }, + { + "word": " could", + "start": 1239.44, + "end": 1239.68, + "probability": 0.9990234375 + }, + { + "word": " anyone", + "start": 1239.68, + "end": 1240.18, + "probability": 0.99609375 + }, + { + "word": " fall", + "start": 1240.18, + "end": 1241.2, + "probability": 0.95556640625 + }, + { + "word": " for", + "start": 1241.2, + "end": 1241.48, + "probability": 0.99951171875 + }, + { + "word": " this,", + "start": 1241.48, + "end": 1241.76, + "probability": 0.6630859375 + } + ] + }, + { + "id": 685, + "text": "this stuff?", + "start": 1241.8, + "end": 1242.56, + "words": [ + { + "word": " this", + "start": 1241.8, + "end": 1242.2, + "probability": 0.9990234375 + }, + { + "word": " stuff?", + "start": 1242.2, + "end": 1242.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 686, + "text": "I mean,", + "start": 1242.7, + "end": 1243.3, + "words": [ + { + "word": " I", + "start": 1242.7, + "end": 1243.14, + "probability": 0.99658203125 + }, + { + "word": " mean,", + "start": 1243.14, + "end": 1243.3, + "probability": 1.0 + } + ] + }, + { + "id": 687, + "text": "you and I and the people listening out there,", + "start": 1243.32, + "end": 1245.84, + "words": [ + { + "word": " you", + "start": 1243.32, + "end": 1243.44, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1243.44, + "end": 1243.6, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 1243.6, + "end": 1243.86, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1243.86, + "end": 1244.52, + "probability": 0.66259765625 + }, + { + "word": " the", + "start": 1244.52, + "end": 1244.66, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 1244.66, + "end": 1244.9, + "probability": 1.0 + }, + { + "word": " listening", + "start": 1244.9, + "end": 1245.34, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 1245.34, + "end": 1245.58, + "probability": 0.9990234375 + }, + { + "word": " there,", + "start": 1245.58, + "end": 1245.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 688, + "text": "how can,", + "start": 1245.88, + "end": 1246.5, + "words": [ + { + "word": " how", + "start": 1245.88, + "end": 1246.28, + "probability": 0.9970703125 + }, + { + "word": " can,", + "start": 1246.28, + "end": 1246.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 689, + "text": "I mean,", + "start": 1246.6, + "end": 1247.0, + "words": [ + { + "word": " I", + "start": 1246.6, + "end": 1246.8, + "probability": 0.99755859375 + }, + { + "word": " mean,", + "start": 1246.8, + "end": 1247.0, + "probability": 1.0 + } + ] + }, + { + "id": 690, + "text": "it sounds so ridiculous.", + "start": 1247.0, + "end": 1248.56, + "words": [ + { + "word": " it", + "start": 1247.0, + "end": 1247.04, + "probability": 0.86767578125 + }, + { + "word": " sounds", + "start": 1247.04, + "end": 1247.52, + "probability": 0.9658203125 + }, + { + "word": " so", + "start": 1247.52, + "end": 1247.94, + "probability": 0.99951171875 + }, + { + "word": " ridiculous.", + "start": 1247.94, + "end": 1248.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 691, + "text": "Uh,", + "start": 1249.26, + "end": 1249.74, + "words": [ + { + "word": " Uh,", + "start": 1249.26, + "end": 1249.74, + "probability": 0.623046875 + } + ] + }, + { + "id": 692, + "text": "they want you to go to a federally authorized store,", + "start": 1249.9, + "end": 1252.62, + "words": [ + { + "word": " they", + "start": 1249.9, + "end": 1250.08, + "probability": 0.99462890625 + }, + { + "word": " want", + "start": 1250.08, + "end": 1250.3, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 1250.3, + "end": 1250.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1250.48, + "end": 1250.6, + "probability": 1.0 + }, + { + "word": " go", + "start": 1250.6, + "end": 1250.76, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1250.76, + "end": 1250.88, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1250.88, + "end": 1251.02, + "probability": 0.9990234375 + }, + { + "word": " federally", + "start": 1251.02, + "end": 1251.44, + "probability": 0.9970703125 + }, + { + "word": " authorized", + "start": 1251.44, + "end": 1251.84, + "probability": 0.9990234375 + }, + { + "word": " store,", + "start": 1251.84, + "end": 1252.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 693, + "text": "which is Walmart or target to keep,", + "start": 1252.9, + "end": 1255.46, + "words": [ + { + "word": " which", + "start": 1252.9, + "end": 1253.54, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1253.54, + "end": 1253.68, + "probability": 0.99951171875 + }, + { + "word": " Walmart", + "start": 1253.68, + "end": 1254.2, + "probability": 0.98681640625 + }, + { + "word": " or", + "start": 1254.2, + "end": 1254.52, + "probability": 0.99755859375 + }, + { + "word": " target", + "start": 1254.52, + "end": 1254.88, + "probability": 0.369873046875 + }, + { + "word": " to", + "start": 1254.88, + "end": 1255.14, + "probability": 0.99560546875 + }, + { + "word": " keep,", + "start": 1255.14, + "end": 1255.46, + "probability": 0.75341796875 + } + ] + }, + { + "id": 694, + "text": "pick up a federally authorized voucher to pay for,", + "start": 1255.48, + "end": 1259.28, + "words": [ + { + "word": " pick", + "start": 1255.48, + "end": 1255.98, + "probability": 0.9970703125 + }, + { + "word": " up", + "start": 1255.98, + "end": 1256.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1256.2, + "end": 1256.34, + "probability": 0.99560546875 + }, + { + "word": " federally", + "start": 1256.34, + "end": 1257.24, + "probability": 0.9970703125 + }, + { + "word": " authorized", + "start": 1257.24, + "end": 1257.72, + "probability": 0.99951171875 + }, + { + "word": " voucher", + "start": 1257.72, + "end": 1258.68, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1258.68, + "end": 1258.78, + "probability": 0.99658203125 + }, + { + "word": " pay", + "start": 1258.78, + "end": 1259.0, + "probability": 0.9990234375 + }, + { + "word": " for,", + "start": 1259.0, + "end": 1259.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 695, + "text": "which pre-paid credit card or gift card,", + "start": 1259.38, + "end": 1261.66, + "words": [ + { + "word": " which", + "start": 1259.38, + "end": 1259.64, + "probability": 0.98828125 + }, + { + "word": " pre", + "start": 1259.64, + "end": 1259.94, + "probability": 0.62353515625 + }, + { + "word": "-paid", + "start": 1259.94, + "end": 1260.16, + "probability": 0.892578125 + }, + { + "word": " credit", + "start": 1260.16, + "end": 1260.72, + "probability": 0.9189453125 + }, + { + "word": " card", + "start": 1260.72, + "end": 1261.0, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 1261.0, + "end": 1261.22, + "probability": 0.974609375 + }, + { + "word": " gift", + "start": 1261.22, + "end": 1261.42, + "probability": 0.97509765625 + }, + { + "word": " card,", + "start": 1261.42, + "end": 1261.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 696, + "text": "gift card,", + "start": 1261.72, + "end": 1262.58, + "words": [ + { + "word": " gift", + "start": 1261.72, + "end": 1262.2, + "probability": 0.61767578125 + }, + { + "word": " card,", + "start": 1262.2, + "end": 1262.58, + "probability": 1.0 + } + ] + }, + { + "id": 697, + "text": "which is a gift card.", + "start": 1262.6, + "end": 1263.5, + "words": [ + { + "word": " which", + "start": 1262.6, + "end": 1262.72, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1262.72, + "end": 1262.88, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1262.88, + "end": 1262.98, + "probability": 0.998046875 + }, + { + "word": " gift", + "start": 1262.98, + "end": 1263.14, + "probability": 1.0 + }, + { + "word": " card.", + "start": 1263.14, + "end": 1263.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 698, + "text": "And how can anybody,", + "start": 1263.56, + "end": 1264.6, + "words": [ + { + "word": " And", + "start": 1263.56, + "end": 1264.02, + "probability": 0.99755859375 + }, + { + "word": " how", + "start": 1264.02, + "end": 1264.2, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1264.2, + "end": 1264.38, + "probability": 0.943359375 + }, + { + "word": " anybody,", + "start": 1264.38, + "end": 1264.6, + "probability": 0.99365234375 + } + ] + }, + { + "id": 699, + "text": "and,", + "start": 1264.7, + "end": 1265.06, + "words": [ + { + "word": " and,", + "start": 1264.7, + "end": 1265.06, + "probability": 0.75341796875 + } + ] + }, + { + "id": 700, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 701, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 702, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 703, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 704, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 705, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 706, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 707, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 708, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 709, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 710, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 711, + "text": "", + "start": 1265.14, + "end": 1265.14, + "words": [] + }, + { + "id": 712, + "text": "but if you listen to these calls on YouTube,", + "start": 1265.16, + "end": 1269.12, + "words": [ + { + "word": " but", + "start": 1265.16, + "end": 1265.26, + "probability": 0.06524658203125 + }, + { + "word": " if", + "start": 1265.26, + "end": 1265.42, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1265.42, + "end": 1265.56, + "probability": 1.0 + }, + { + "word": " listen", + "start": 1265.56, + "end": 1265.96, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1265.96, + "end": 1266.3, + "probability": 1.0 + }, + { + "word": " these", + "start": 1266.3, + "end": 1266.66, + "probability": 1.0 + }, + { + "word": " calls", + "start": 1266.66, + "end": 1267.26, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1267.26, + "end": 1268.74, + "probability": 0.998046875 + }, + { + "word": " YouTube,", + "start": 1268.74, + "end": 1269.12, + "probability": 0.96142578125 + } + ] + }, + { + "id": 713, + "text": "you can see how it can be.", + "start": 1269.34, + "end": 1272.32, + "words": [ + { + "word": " you", + "start": 1269.34, + "end": 1270.02, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1270.02, + "end": 1270.34, + "probability": 1.0 + }, + { + "word": " see", + "start": 1270.34, + "end": 1270.7, + "probability": 1.0 + }, + { + "word": " how", + "start": 1270.7, + "end": 1271.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 1271.0, + "end": 1271.52, + "probability": 0.381103515625 + }, + { + "word": " can", + "start": 1271.52, + "end": 1271.94, + "probability": 0.99951171875 + }, + { + "word": " be.", + "start": 1271.94, + "end": 1272.32, + "probability": 0.0004189014434814453 + } + ] + }, + { + "id": 714, + "text": "People can be intimidated or the don't have the use of language or they're greedy.", + "start": 1272.54, + "end": 1278.62, + "words": [ + { + "word": " People", + "start": 1272.54, + "end": 1273.14, + "probability": 0.92041015625 + }, + { + "word": " can", + "start": 1273.14, + "end": 1273.42, + "probability": 0.99755859375 + }, + { + "word": " be", + "start": 1273.42, + "end": 1273.82, + "probability": 0.99755859375 + }, + { + "word": " intimidated", + "start": 1273.82, + "end": 1274.46, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 1274.46, + "end": 1275.16, + "probability": 0.77587890625 + }, + { + "word": " the", + "start": 1275.16, + "end": 1275.32, + "probability": 0.006755828857421875 + }, + { + "word": " don't", + "start": 1275.32, + "end": 1275.78, + "probability": 0.98486328125 + }, + { + "word": " have", + "start": 1275.78, + "end": 1275.88, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1275.88, + "end": 1276.0, + "probability": 0.97998046875 + }, + { + "word": " use", + "start": 1276.0, + "end": 1276.2, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 1276.2, + "end": 1276.32, + "probability": 0.99853515625 + }, + { + "word": " language", + "start": 1276.32, + "end": 1276.5, + "probability": 0.0089111328125 + }, + { + "word": " or", + "start": 1276.5, + "end": 1277.6, + "probability": 0.875 + }, + { + "word": " they're", + "start": 1277.6, + "end": 1278.18, + "probability": 0.89892578125 + }, + { + "word": " greedy.", + "start": 1278.18, + "end": 1278.62, + "probability": 0.98828125 + } + ] + }, + { + "id": 715, + "text": "They rely a lot upon greed.", + "start": 1278.84, + "end": 1280.8, + "words": [ + { + "word": " They", + "start": 1278.84, + "end": 1279.1, + "probability": 0.99072265625 + }, + { + "word": " rely", + "start": 1279.1, + "end": 1279.44, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 1279.44, + "end": 1279.74, + "probability": 0.98486328125 + }, + { + "word": " lot", + "start": 1279.74, + "end": 1279.92, + "probability": 0.99951171875 + }, + { + "word": " upon", + "start": 1279.92, + "end": 1280.2, + "probability": 0.98193359375 + }, + { + "word": " greed.", + "start": 1280.2, + "end": 1280.8, + "probability": 0.93359375 + } + ] + }, + { + "id": 716, + "text": "How that can happen.", + "start": 1281.22, + "end": 1282.68, + "words": [ + { + "word": " How", + "start": 1281.22, + "end": 1281.82, + "probability": 0.9814453125 + }, + { + "word": " that", + "start": 1281.82, + "end": 1282.04, + "probability": 0.974609375 + }, + { + "word": " can", + "start": 1282.04, + "end": 1282.28, + "probability": 0.99560546875 + }, + { + "word": " happen.", + "start": 1282.28, + "end": 1282.68, + "probability": 0.9931640625 + } + ] + }, + { + "id": 717, + "text": "Well,", + "start": 1282.84, + "end": 1283.32, + "words": [ + { + "word": " Well,", + "start": 1282.84, + "end": 1283.32, + "probability": 0.880859375 + } + ] + }, + { + "id": 718, + "text": "I think there's a sort of like a snow blindness that happens,", + "start": 1283.44, + "end": 1287.34, + "words": [ + { + "word": " I", + "start": 1283.44, + "end": 1283.72, + "probability": 0.9912109375 + }, + { + "word": " think", + "start": 1283.72, + "end": 1283.94, + "probability": 0.99853515625 + }, + { + "word": " there's", + "start": 1283.94, + "end": 1284.2, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 1284.2, + "end": 1284.24, + "probability": 0.97119140625 + }, + { + "word": " sort", + "start": 1284.24, + "end": 1284.88, + "probability": 0.57421875 + }, + { + "word": " of", + "start": 1284.88, + "end": 1285.26, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 1285.26, + "end": 1285.84, + "probability": 0.95068359375 + }, + { + "word": " a", + "start": 1285.84, + "end": 1285.92, + "probability": 0.99072265625 + }, + { + "word": " snow", + "start": 1285.92, + "end": 1286.16, + "probability": 0.90234375 + }, + { + "word": " blindness", + "start": 1286.16, + "end": 1286.64, + "probability": 0.94287109375 + }, + { + "word": " that", + "start": 1286.64, + "end": 1287.0, + "probability": 0.93603515625 + }, + { + "word": " happens,", + "start": 1287.0, + "end": 1287.34, + "probability": 0.9873046875 + } + ] + }, + { + "id": 719, + "text": "but it's tech blind,", + "start": 1287.44, + "end": 1288.56, + "words": [ + { + "word": " but", + "start": 1287.44, + "end": 1287.64, + "probability": 0.98291015625 + }, + { + "word": " it's", + "start": 1287.64, + "end": 1288.02, + "probability": 0.98828125 + }, + { + "word": " tech", + "start": 1288.02, + "end": 1288.22, + "probability": 0.8564453125 + }, + { + "word": " blind,", + "start": 1288.22, + "end": 1288.56, + "probability": 0.931640625 + } + ] + }, + { + "id": 720, + "text": "right?", + "start": 1288.74, + "end": 1289.12, + "words": [ + { + "word": " right?", + "start": 1288.74, + "end": 1289.12, + "probability": 0.93359375 + } + ] + }, + { + "id": 721, + "text": "Where you've got these people that they have no,", + "start": 1289.2, + "end": 1291.36, + "words": [ + { + "word": " Where", + "start": 1289.2, + "end": 1289.3, + "probability": 0.95654296875 + }, + { + "word": " you've", + "start": 1289.3, + "end": 1289.48, + "probability": 0.99658203125 + }, + { + "word": " got", + "start": 1289.48, + "end": 1289.64, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 1289.64, + "end": 1289.78, + "probability": 0.99755859375 + }, + { + "word": " people", + "start": 1289.78, + "end": 1290.08, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1290.08, + "end": 1290.32, + "probability": 0.98291015625 + }, + { + "word": " they", + "start": 1290.32, + "end": 1290.7, + "probability": 0.734375 + }, + { + "word": " have", + "start": 1290.7, + "end": 1290.86, + "probability": 0.84423828125 + }, + { + "word": " no,", + "start": 1290.86, + "end": 1291.36, + "probability": 0.89599609375 + } + ] + }, + { + "id": 722, + "text": "no,", + "start": 1291.44, + "end": 1291.92, + "words": [ + { + "word": " no,", + "start": 1291.44, + "end": 1291.92, + "probability": 0.9580078125 + } + ] + }, + { + "id": 723, + "text": "it's magic how their computer works.", + "start": 1292.0, + "end": 1294.12, + "words": [ + { + "word": " it's", + "start": 1292.0, + "end": 1292.28, + "probability": 0.9931640625 + }, + { + "word": " magic", + "start": 1292.28, + "end": 1292.8, + "probability": 0.9951171875 + }, + { + "word": " how", + "start": 1292.8, + "end": 1293.22, + "probability": 0.908203125 + }, + { + "word": " their", + "start": 1293.22, + "end": 1293.4, + "probability": 0.99658203125 + }, + { + "word": " computer", + "start": 1293.4, + "end": 1293.68, + "probability": 0.9990234375 + }, + { + "word": " works.", + "start": 1293.68, + "end": 1294.12, + "probability": 0.998046875 + } + ] + }, + { + "id": 724, + "text": "And so,", + "start": 1294.22, + "end": 1295.04, + "words": [ + { + "word": " And", + "start": 1294.22, + "end": 1294.82, + "probability": 0.99072265625 + }, + { + "word": " so,", + "start": 1294.82, + "end": 1295.04, + "probability": 0.9970703125 + } + ] + }, + { + "id": 725, + "text": "So when they are faced with one of these scammers, they just are like, well, I don't know how any of this works.", + "start": 1295.16, + "end": 1301.48, + "words": [ + { + "word": " So", + "start": 1295.16, + "end": 1295.16, + "probability": 0.59814453125 + }, + { + "word": " when", + "start": 1295.16, + "end": 1295.3, + "probability": 0.9384765625 + }, + { + "word": " they", + "start": 1295.3, + "end": 1296.4, + "probability": 0.84912109375 + }, + { + "word": " are", + "start": 1296.4, + "end": 1296.68, + "probability": 0.99951171875 + }, + { + "word": " faced", + "start": 1296.68, + "end": 1297.22, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 1297.22, + "end": 1297.66, + "probability": 1.0 + }, + { + "word": " one", + "start": 1297.66, + "end": 1297.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 1297.88, + "end": 1297.96, + "probability": 1.0 + }, + { + "word": " these", + "start": 1297.96, + "end": 1298.12, + "probability": 1.0 + }, + { + "word": " scammers,", + "start": 1298.12, + "end": 1298.6, + "probability": 1.0 + }, + { + "word": " they", + "start": 1298.68, + "end": 1298.88, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1298.88, + "end": 1299.1, + "probability": 0.89111328125 + }, + { + "word": " are", + "start": 1299.1, + "end": 1299.24, + "probability": 0.97314453125 + }, + { + "word": " like,", + "start": 1299.24, + "end": 1299.4, + "probability": 0.998046875 + }, + { + "word": " well,", + "start": 1299.52, + "end": 1299.62, + "probability": 0.96875 + }, + { + "word": " I", + "start": 1299.7, + "end": 1299.84, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1299.84, + "end": 1300.08, + "probability": 1.0 + }, + { + "word": " know", + "start": 1300.08, + "end": 1300.52, + "probability": 0.9912109375 + }, + { + "word": " how", + "start": 1300.52, + "end": 1300.7, + "probability": 1.0 + }, + { + "word": " any", + "start": 1300.7, + "end": 1300.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1300.9, + "end": 1301.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 1301.0, + "end": 1301.18, + "probability": 1.0 + }, + { + "word": " works.", + "start": 1301.18, + "end": 1301.48, + "probability": 1.0 + } + ] + }, + { + "id": 726, + "text": "So it's much easier for them to just take whatever that other person says, no matter how ridiculous it is.", + "start": 1301.54, + "end": 1306.58, + "words": [ + { + "word": " So", + "start": 1301.54, + "end": 1301.7, + "probability": 0.99853515625 + }, + { + "word": " it's", + "start": 1301.7, + "end": 1301.88, + "probability": 0.9990234375 + }, + { + "word": " much", + "start": 1301.88, + "end": 1302.12, + "probability": 1.0 + }, + { + "word": " easier", + "start": 1302.12, + "end": 1302.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 1302.42, + "end": 1302.64, + "probability": 1.0 + }, + { + "word": " them", + "start": 1302.64, + "end": 1302.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1302.82, + "end": 1302.94, + "probability": 1.0 + }, + { + "word": " just", + "start": 1302.94, + "end": 1303.12, + "probability": 1.0 + }, + { + "word": " take", + "start": 1303.12, + "end": 1303.48, + "probability": 1.0 + }, + { + "word": " whatever", + "start": 1303.48, + "end": 1304.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 1304.08, + "end": 1304.48, + "probability": 1.0 + }, + { + "word": " other", + "start": 1304.48, + "end": 1304.66, + "probability": 1.0 + }, + { + "word": " person", + "start": 1304.66, + "end": 1304.92, + "probability": 1.0 + }, + { + "word": " says,", + "start": 1304.92, + "end": 1305.06, + "probability": 1.0 + }, + { + "word": " no", + "start": 1305.14, + "end": 1305.22, + "probability": 1.0 + }, + { + "word": " matter", + "start": 1305.22, + "end": 1305.38, + "probability": 1.0 + }, + { + "word": " how", + "start": 1305.38, + "end": 1305.58, + "probability": 1.0 + }, + { + "word": " ridiculous", + "start": 1305.58, + "end": 1306.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 1306.02, + "end": 1306.36, + "probability": 1.0 + }, + { + "word": " is.", + "start": 1306.36, + "end": 1306.58, + "probability": 1.0 + } + ] + }, + { + "id": 727, + "text": "Like, go down to the store and get a gift card and then come back and give me the number.", + "start": 1306.98, + "end": 1310.22, + "words": [ + { + "word": " Like,", + "start": 1306.98, + "end": 1307.34, + "probability": 0.98779296875 + }, + { + "word": " go", + "start": 1307.38, + "end": 1307.66, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 1307.66, + "end": 1307.82, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 1307.82, + "end": 1307.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1307.86, + "end": 1308.0, + "probability": 1.0 + }, + { + "word": " store", + "start": 1308.0, + "end": 1308.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 1308.14, + "end": 1308.22, + "probability": 1.0 + }, + { + "word": " get", + "start": 1308.22, + "end": 1308.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1308.32, + "end": 1308.42, + "probability": 1.0 + }, + { + "word": " gift", + "start": 1308.42, + "end": 1308.54, + "probability": 1.0 + }, + { + "word": " card", + "start": 1308.54, + "end": 1308.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 1308.8, + "end": 1309.18, + "probability": 0.6279296875 + }, + { + "word": " then", + "start": 1309.18, + "end": 1309.3, + "probability": 1.0 + }, + { + "word": " come", + "start": 1309.3, + "end": 1309.46, + "probability": 1.0 + }, + { + "word": " back", + "start": 1309.46, + "end": 1309.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 1309.62, + "end": 1309.72, + "probability": 1.0 + }, + { + "word": " give", + "start": 1309.72, + "end": 1309.82, + "probability": 1.0 + }, + { + "word": " me", + "start": 1309.82, + "end": 1309.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1309.92, + "end": 1310.0, + "probability": 1.0 + }, + { + "word": " number.", + "start": 1310.0, + "end": 1310.22, + "probability": 1.0 + } + ] + }, + { + "id": 728, + "text": "They're more willing to do that than to go like, well, I don't know how this works, but that just doesn't seem right to me.", + "start": 1311.1000000000001, + "end": 1318.0, + "words": [ + { + "word": " They're", + "start": 1311.1000000000001, + "end": 1311.46, + "probability": 0.900390625 + }, + { + "word": " more", + "start": 1311.46, + "end": 1311.68, + "probability": 1.0 + }, + { + "word": " willing", + "start": 1311.68, + "end": 1312.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 1312.0, + "end": 1312.18, + "probability": 1.0 + }, + { + "word": " do", + "start": 1312.18, + "end": 1312.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 1312.34, + "end": 1312.58, + "probability": 1.0 + }, + { + "word": " than", + "start": 1312.58, + "end": 1312.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 1312.88, + "end": 1313.04, + "probability": 1.0 + }, + { + "word": " go", + "start": 1313.04, + "end": 1313.22, + "probability": 1.0 + }, + { + "word": " like,", + "start": 1313.22, + "end": 1313.54, + "probability": 0.99609375 + }, + { + "word": " well,", + "start": 1313.68, + "end": 1313.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 1314.0, + "end": 1314.58, + "probability": 1.0 + }, + { + "word": " don't", + "start": 1314.58, + "end": 1315.58, + "probability": 1.0 + }, + { + "word": " know", + "start": 1315.58, + "end": 1315.7, + "probability": 1.0 + }, + { + "word": " how", + "start": 1315.7, + "end": 1315.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 1315.94, + "end": 1316.4, + "probability": 1.0 + }, + { + "word": " works,", + "start": 1316.4, + "end": 1316.7, + "probability": 1.0 + }, + { + "word": " but", + "start": 1316.76, + "end": 1316.86, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1316.86, + "end": 1316.98, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 1316.98, + "end": 1317.12, + "probability": 0.9970703125 + }, + { + "word": " doesn't", + "start": 1317.12, + "end": 1317.36, + "probability": 1.0 + }, + { + "word": " seem", + "start": 1317.36, + "end": 1317.54, + "probability": 1.0 + }, + { + "word": " right", + "start": 1317.54, + "end": 1317.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 1317.74, + "end": 1317.86, + "probability": 1.0 + }, + { + "word": " me.", + "start": 1317.86, + "end": 1318.0, + "probability": 1.0 + } + ] + }, + { + "id": 729, + "text": "And because it's so foreign to them, they might not even understand that it is wrong.", + "start": 1319.0200000000002, + "end": 1323.06, + "words": [ + { + "word": " And", + "start": 1319.0200000000002, + "end": 1319.38, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 1319.38, + "end": 1319.74, + "probability": 0.99755859375 + }, + { + "word": " it's", + "start": 1319.74, + "end": 1320.28, + "probability": 1.0 + }, + { + "word": " so", + "start": 1320.28, + "end": 1320.48, + "probability": 1.0 + }, + { + "word": " foreign", + "start": 1320.48, + "end": 1320.9, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 1320.9, + "end": 1321.02, + "probability": 0.96875 + }, + { + "word": " them,", + "start": 1321.02, + "end": 1321.12, + "probability": 1.0 + }, + { + "word": " they", + "start": 1321.14, + "end": 1321.22, + "probability": 1.0 + }, + { + "word": " might", + "start": 1321.22, + "end": 1321.38, + "probability": 0.99658203125 + }, + { + "word": " not", + "start": 1321.38, + "end": 1321.58, + "probability": 1.0 + }, + { + "word": " even", + "start": 1321.58, + "end": 1321.78, + "probability": 1.0 + }, + { + "word": " understand", + "start": 1321.78, + "end": 1322.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 1322.18, + "end": 1322.44, + "probability": 1.0 + }, + { + "word": " it", + "start": 1322.44, + "end": 1322.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 1322.54, + "end": 1322.74, + "probability": 1.0 + }, + { + "word": " wrong.", + "start": 1322.74, + "end": 1323.06, + "probability": 1.0 + } + ] + }, + { + "id": 730, + "text": "Or that it's not something that should normally happen.", + "start": 1323.6599999999999, + "end": 1326.66, + "words": [ + { + "word": " Or", + "start": 1323.6599999999999, + "end": 1324.1, + "probability": 0.4140625 + }, + { + "word": " that", + "start": 1324.1, + "end": 1324.54, + "probability": 0.99658203125 + }, + { + "word": " it's", + "start": 1324.54, + "end": 1324.76, + "probability": 0.998046875 + }, + { + "word": " not", + "start": 1324.76, + "end": 1324.94, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 1324.94, + "end": 1325.38, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1325.38, + "end": 1325.56, + "probability": 0.98828125 + }, + { + "word": " should", + "start": 1325.56, + "end": 1325.7, + "probability": 0.99951171875 + }, + { + "word": " normally", + "start": 1325.7, + "end": 1326.08, + "probability": 0.9990234375 + }, + { + "word": " happen.", + "start": 1326.08, + "end": 1326.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 731, + "text": "And that's why over the years, you know, I've encouraged people.", + "start": 1327.9, + "end": 1330.22, + "words": [ + { + "word": " And", + "start": 1327.9, + "end": 1328.34, + "probability": 0.97021484375 + }, + { + "word": " that's", + "start": 1328.34, + "end": 1328.6, + "probability": 0.99951171875 + }, + { + "word": " why", + "start": 1328.6, + "end": 1328.72, + "probability": 1.0 + }, + { + "word": " over", + "start": 1328.72, + "end": 1328.9, + "probability": 0.93212890625 + }, + { + "word": " the", + "start": 1328.9, + "end": 1329.02, + "probability": 1.0 + }, + { + "word": " years,", + "start": 1329.02, + "end": 1329.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 1329.32, + "end": 1329.38, + "probability": 0.67578125 + }, + { + "word": " know,", + "start": 1329.38, + "end": 1329.48, + "probability": 1.0 + }, + { + "word": " I've", + "start": 1329.48, + "end": 1329.58, + "probability": 1.0 + }, + { + "word": " encouraged", + "start": 1329.58, + "end": 1329.86, + "probability": 1.0 + }, + { + "word": " people.", + "start": 1329.86, + "end": 1330.22, + "probability": 1.0 + } + ] + }, + { + "id": 732, + "text": "If you have, you know, somebody calling you, trying to scam you, send them my way.", + "start": 1330.32, + "end": 1335.14, + "words": [ + { + "word": " If", + "start": 1330.32, + "end": 1330.44, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 1330.44, + "end": 1330.52, + "probability": 1.0 + }, + { + "word": " have,", + "start": 1330.52, + "end": 1331.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 1331.08, + "end": 1331.9, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1331.9, + "end": 1332.08, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1332.08, + "end": 1332.26, + "probability": 1.0 + }, + { + "word": " calling", + "start": 1332.26, + "end": 1332.5, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1332.5, + "end": 1332.76, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1332.8, + "end": 1333.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 1333.02, + "end": 1333.16, + "probability": 1.0 + }, + { + "word": " scam", + "start": 1333.16, + "end": 1333.38, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1333.38, + "end": 1333.64, + "probability": 1.0 + }, + { + "word": " send", + "start": 1333.74, + "end": 1334.64, + "probability": 0.9326171875 + }, + { + "word": " them", + "start": 1334.64, + "end": 1334.82, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 1334.82, + "end": 1334.94, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1334.94, + "end": 1335.14, + "probability": 1.0 + } + ] + }, + { + "id": 733, + "text": "I'll deal with them.", + "start": 1335.34, + "end": 1336.22, + "words": [ + { + "word": " I'll", + "start": 1335.34, + "end": 1335.78, + "probability": 1.0 + }, + { + "word": " deal", + "start": 1335.78, + "end": 1335.96, + "probability": 1.0 + }, + { + "word": " with", + "start": 1335.96, + "end": 1336.08, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 1336.08, + "end": 1336.22, + "probability": 1.0 + } + ] + }, + { + "id": 734, + "text": "And there's even a new one that happened just last week.", + "start": 1336.36, + "end": 1338.96, + "words": [ + { + "word": " And", + "start": 1336.36, + "end": 1336.52, + "probability": 0.9990234375 + }, + { + "word": " there's", + "start": 1336.52, + "end": 1336.7, + "probability": 1.0 + }, + { + "word": " even", + "start": 1336.7, + "end": 1336.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 1336.92, + "end": 1337.08, + "probability": 1.0 + }, + { + "word": " new", + "start": 1337.08, + "end": 1337.22, + "probability": 1.0 + }, + { + "word": " one", + "start": 1337.22, + "end": 1337.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 1337.4, + "end": 1337.56, + "probability": 1.0 + }, + { + "word": " happened", + "start": 1337.56, + "end": 1337.96, + "probability": 1.0 + }, + { + "word": " just", + "start": 1337.96, + "end": 1338.26, + "probability": 1.0 + }, + { + "word": " last", + "start": 1338.26, + "end": 1338.54, + "probability": 1.0 + }, + { + "word": " week.", + "start": 1338.54, + "end": 1338.96, + "probability": 1.0 + } + ] + }, + { + "id": 735, + "text": "It's a Roku call.", + "start": 1339.06, + "end": 1342.22, + "words": [ + { + "word": " It's", + "start": 1339.06, + "end": 1339.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 1339.44, + "end": 1339.64, + "probability": 1.0 + }, + { + "word": " Roku", + "start": 1339.64, + "end": 1340.14, + "probability": 0.99951171875 + }, + { + "word": " call.", + "start": 1340.14, + "end": 1342.22, + "probability": 0.9775390625 + } + ] + }, + { + "id": 736, + "text": "A person calls, says they're from Roku.", + "start": 1342.66, + "end": 1345.64, + "words": [ + { + "word": " A", + "start": 1342.66, + "end": 1343.1, + "probability": 0.6572265625 + }, + { + "word": " person", + "start": 1343.1, + "end": 1344.22, + "probability": 0.9990234375 + }, + { + "word": " calls,", + "start": 1344.22, + "end": 1344.42, + "probability": 0.6337890625 + }, + { + "word": " says", + "start": 1344.6, + "end": 1344.78, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 1344.78, + "end": 1344.96, + "probability": 1.0 + }, + { + "word": " from", + "start": 1344.96, + "end": 1345.16, + "probability": 1.0 + }, + { + "word": " Roku.", + "start": 1345.16, + "end": 1345.64, + "probability": 1.0 + } + ] + }, + { + "id": 737, + "text": "And you have to now buy their premium service to get Roku for $200.", + "start": 1346.08, + "end": 1352.62, + "words": [ + { + "word": " And", + "start": 1346.08, + "end": 1346.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 1346.52, + "end": 1347.0, + "probability": 1.0 + }, + { + "word": " have", + "start": 1347.0, + "end": 1347.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1347.36, + "end": 1347.48, + "probability": 1.0 + }, + { + "word": " now", + "start": 1347.48, + "end": 1347.7, + "probability": 1.0 + }, + { + "word": " buy", + "start": 1347.7, + "end": 1348.08, + "probability": 1.0 + }, + { + "word": " their", + "start": 1348.08, + "end": 1348.44, + "probability": 1.0 + }, + { + "word": " premium", + "start": 1348.44, + "end": 1349.04, + "probability": 1.0 + }, + { + "word": " service", + "start": 1349.04, + "end": 1349.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 1349.66, + "end": 1350.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 1350.04, + "end": 1350.3, + "probability": 1.0 + }, + { + "word": " Roku", + "start": 1350.3, + "end": 1350.68, + "probability": 1.0 + }, + { + "word": " for", + "start": 1350.68, + "end": 1351.38, + "probability": 0.99755859375 + }, + { + "word": " $200.", + "start": 1351.38, + "end": 1352.62, + "probability": 0.998046875 + } + ] + }, + { + "id": 738, + "text": "Plus $5 a month.", + "start": 1353.74, + "end": 1355.3, + "words": [ + { + "word": " Plus", + "start": 1353.74, + "end": 1354.22, + "probability": 0.220703125 + }, + { + "word": " $5", + "start": 1354.22, + "end": 1354.7, + "probability": 0.93994140625 + }, + { + "word": " a", + "start": 1354.7, + "end": 1355.04, + "probability": 0.9736328125 + }, + { + "word": " month.", + "start": 1355.04, + "end": 1355.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 739, + "text": "But Roku, it's actually called the Premier Service, not Premium.", + "start": 1355.78, + "end": 1359.62, + "words": [ + { + "word": " But", + "start": 1355.78, + "end": 1356.26, + "probability": 0.99169921875 + }, + { + "word": " Roku,", + "start": 1356.26, + "end": 1356.68, + "probability": 0.9951171875 + }, + { + "word": " it's", + "start": 1356.8, + "end": 1356.98, + "probability": 0.99951171875 + }, + { + "word": " actually", + "start": 1356.98, + "end": 1357.3, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 1357.3, + "end": 1357.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 1357.7, + "end": 1357.94, + "probability": 0.9990234375 + }, + { + "word": " Premier", + "start": 1357.94, + "end": 1358.3, + "probability": 0.6494140625 + }, + { + "word": " Service,", + "start": 1358.3, + "end": 1358.86, + "probability": 0.68798828125 + }, + { + "word": " not", + "start": 1358.88, + "end": 1359.14, + "probability": 0.998046875 + }, + { + "word": " Premium.", + "start": 1359.14, + "end": 1359.62, + "probability": 0.78955078125 + } + ] + }, + { + "id": 740, + "text": "But that's a new one out there.", + "start": 1360.28, + "end": 1362.04, + "words": [ + { + "word": " But", + "start": 1360.28, + "end": 1360.76, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 1360.76, + "end": 1361.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1361.2, + "end": 1361.28, + "probability": 0.95703125 + }, + { + "word": " new", + "start": 1361.28, + "end": 1361.46, + "probability": 1.0 + }, + { + "word": " one", + "start": 1361.46, + "end": 1361.6, + "probability": 1.0 + }, + { + "word": " out", + "start": 1361.6, + "end": 1361.78, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1361.78, + "end": 1362.04, + "probability": 1.0 + } + ] + }, + { + "id": 741, + "text": "Interesting.", + "start": 1362.66, + "end": 1363.14, + "words": [ + { + "word": " Interesting.", + "start": 1362.66, + "end": 1363.14, + "probability": 0.96484375 + } + ] + }, + { + "id": 742, + "text": "Yeah.", + "start": 1363.34, + "end": 1363.78, + "words": [ + { + "word": " Yeah.", + "start": 1363.34, + "end": 1363.78, + "probability": 0.95703125 + } + ] + }, + { + "id": 743, + "text": "Well, it's definitely not a new thing.", + "start": 1364.12, + "end": 1366.14, + "words": [ + { + "word": " Well,", + "start": 1364.12, + "end": 1364.6, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 1364.72, + "end": 1364.96, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 1364.96, + "end": 1365.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 1365.2, + "end": 1365.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 1365.5, + "end": 1365.62, + "probability": 1.0 + }, + { + "word": " new", + "start": 1365.62, + "end": 1365.78, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 1365.78, + "end": 1366.14, + "probability": 1.0 + } + ] + }, + { + "id": 744, + "text": "You know, as far as like even what we had Tucson Electric Power that's been issuing warnings like every week through the news saying, you know, if somebody calls you and says they're from TEP, they're not.", + "start": 1366.24, + "end": 1377.74, + "words": [ + { + "word": " You", + "start": 1366.24, + "end": 1366.68, + "probability": 0.348388671875 + }, + { + "word": " know,", + "start": 1366.68, + "end": 1366.86, + "probability": 1.0 + }, + { + "word": " as", + "start": 1366.86, + "end": 1366.96, + "probability": 0.99951171875 + }, + { + "word": " far", + "start": 1366.96, + "end": 1367.34, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 1367.34, + "end": 1367.56, + "probability": 1.0 + }, + { + "word": " like", + "start": 1367.56, + "end": 1367.72, + "probability": 0.5380859375 + }, + { + "word": " even", + "start": 1367.72, + "end": 1367.98, + "probability": 0.94287109375 + }, + { + "word": " what", + "start": 1367.98, + "end": 1368.42, + "probability": 0.994140625 + }, + { + "word": " we", + "start": 1368.42, + "end": 1368.58, + "probability": 1.0 + }, + { + "word": " had", + "start": 1368.58, + "end": 1368.68, + "probability": 1.0 + }, + { + "word": " Tucson", + "start": 1368.68, + "end": 1369.58, + "probability": 0.58056640625 + }, + { + "word": " Electric", + "start": 1369.58, + "end": 1369.82, + "probability": 0.9521484375 + }, + { + "word": " Power", + "start": 1369.82, + "end": 1370.12, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1370.12, + "end": 1370.36, + "probability": 0.9345703125 + }, + { + "word": " been", + "start": 1370.36, + "end": 1370.48, + "probability": 1.0 + }, + { + "word": " issuing", + "start": 1370.48, + "end": 1370.74, + "probability": 1.0 + }, + { + "word": " warnings", + "start": 1370.74, + "end": 1371.18, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 1371.18, + "end": 1371.52, + "probability": 0.99365234375 + }, + { + "word": " every", + "start": 1371.52, + "end": 1371.94, + "probability": 1.0 + }, + { + "word": " week", + "start": 1371.94, + "end": 1372.38, + "probability": 1.0 + }, + { + "word": " through", + "start": 1372.38, + "end": 1372.84, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 1372.84, + "end": 1373.02, + "probability": 1.0 + }, + { + "word": " news", + "start": 1373.02, + "end": 1373.26, + "probability": 0.99951171875 + }, + { + "word": " saying,", + "start": 1373.26, + "end": 1373.62, + "probability": 0.98193359375 + }, + { + "word": " you", + "start": 1373.78, + "end": 1374.3, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 1374.3, + "end": 1374.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 1374.48, + "end": 1374.86, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 1374.86, + "end": 1375.14, + "probability": 1.0 + }, + { + "word": " calls", + "start": 1375.14, + "end": 1375.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 1375.46, + "end": 1375.66, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1375.66, + "end": 1375.72, + "probability": 1.0 + }, + { + "word": " says", + "start": 1375.72, + "end": 1375.88, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1375.88, + "end": 1376.06, + "probability": 1.0 + }, + { + "word": " from", + "start": 1376.06, + "end": 1376.18, + "probability": 1.0 + }, + { + "word": " TEP,", + "start": 1376.18, + "end": 1376.5, + "probability": 0.98974609375 + }, + { + "word": " they're", + "start": 1376.68, + "end": 1377.5, + "probability": 1.0 + }, + { + "word": " not.", + "start": 1377.5, + "end": 1377.74, + "probability": 1.0 + } + ] + }, + { + "id": 745, + "text": "Or if they show up at your house, they're probably not.", + "start": 1378.08, + "end": 1380.98, + "words": [ + { + "word": " Or", + "start": 1378.08, + "end": 1378.56, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 1378.56, + "end": 1378.7, + "probability": 1.0 + }, + { + "word": " they", + "start": 1378.7, + "end": 1378.82, + "probability": 1.0 + }, + { + "word": " show", + "start": 1378.82, + "end": 1379.02, + "probability": 1.0 + }, + { + "word": " up", + "start": 1379.02, + "end": 1379.14, + "probability": 1.0 + }, + { + "word": " at", + "start": 1379.14, + "end": 1379.26, + "probability": 1.0 + }, + { + "word": " your", + "start": 1379.26, + "end": 1379.36, + "probability": 1.0 + }, + { + "word": " house,", + "start": 1379.36, + "end": 1379.7, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1379.84, + "end": 1380.24, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1380.24, + "end": 1380.56, + "probability": 1.0 + }, + { + "word": " not.", + "start": 1380.56, + "end": 1380.98, + "probability": 1.0 + } + ] + }, + { + "id": 746, + "text": "You know, unless they can probably.", + "start": 1381.08, + "end": 1382.58, + "words": [ + { + "word": " You", + "start": 1381.08, + "end": 1381.38, + "probability": 0.892578125 + }, + { + "word": " know,", + "start": 1381.38, + "end": 1381.54, + "probability": 1.0 + }, + { + "word": " unless", + "start": 1381.58, + "end": 1381.82, + "probability": 1.0 + }, + { + "word": " they", + "start": 1381.82, + "end": 1382.02, + "probability": 1.0 + }, + { + "word": " can", + "start": 1382.02, + "end": 1382.16, + "probability": 1.0 + }, + { + "word": " probably.", + "start": 1382.16, + "end": 1382.58, + "probability": 0.9970703125 + } + ] + }, + { + "id": 747, + "text": "They probably authenticate and have ID and all of that stuff.", + "start": 1382.58, + "end": 1385.28, + "words": [ + { + "word": " They", + "start": 1382.58, + "end": 1382.68, + "probability": 0.00026607513427734375 + }, + { + "word": " probably", + "start": 1382.68, + "end": 1382.68, + "probability": 0.03656005859375 + }, + { + "word": " authenticate", + "start": 1382.68, + "end": 1383.54, + "probability": 0.98974609375 + }, + { + "word": " and", + "start": 1383.54, + "end": 1383.74, + "probability": 0.9931640625 + }, + { + "word": " have", + "start": 1383.74, + "end": 1383.9, + "probability": 0.99951171875 + }, + { + "word": " ID", + "start": 1383.9, + "end": 1384.18, + "probability": 0.97998046875 + }, + { + "word": " and", + "start": 1384.18, + "end": 1384.52, + "probability": 0.99609375 + }, + { + "word": " all", + "start": 1384.52, + "end": 1384.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 1384.7, + "end": 1384.82, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 1384.82, + "end": 1384.96, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 1384.96, + "end": 1385.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 748, + "text": "You know, scamming is it.", + "start": 1386.3400000000001, + "end": 1388.84, + "words": [ + { + "word": " You", + "start": 1386.3400000000001, + "end": 1386.7, + "probability": 0.356689453125 + }, + { + "word": " know,", + "start": 1386.7, + "end": 1386.84, + "probability": 1.0 + }, + { + "word": " scamming", + "start": 1386.88, + "end": 1387.56, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 1387.56, + "end": 1387.68, + "probability": 0.99755859375 + }, + { + "word": " it.", + "start": 1387.68, + "end": 1388.84, + "probability": 0.10638427734375 + } + ] + }, + { + "id": 749, + "text": "I really wish we could just say that nobody was gullible enough to or naive enough or ignorant enough on the subject to fall for these things.", + "start": 1389.8000000000002, + "end": 1398.6, + "words": [ + { + "word": " I", + "start": 1389.8000000000002, + "end": 1390.16, + "probability": 0.99462890625 + }, + { + "word": " really", + "start": 1390.16, + "end": 1390.42, + "probability": 1.0 + }, + { + "word": " wish", + "start": 1390.42, + "end": 1390.66, + "probability": 1.0 + }, + { + "word": " we", + "start": 1390.66, + "end": 1390.84, + "probability": 0.61669921875 + }, + { + "word": " could", + "start": 1390.84, + "end": 1391.1, + "probability": 1.0 + }, + { + "word": " just", + "start": 1391.1, + "end": 1391.36, + "probability": 1.0 + }, + { + "word": " say", + "start": 1391.36, + "end": 1391.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 1391.54, + "end": 1391.66, + "probability": 1.0 + }, + { + "word": " nobody", + "start": 1391.66, + "end": 1391.88, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 1391.88, + "end": 1392.1, + "probability": 1.0 + }, + { + "word": " gullible", + "start": 1392.1, + "end": 1392.4, + "probability": 0.99951171875 + }, + { + "word": " enough", + "start": 1392.4, + "end": 1392.66, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 1392.66, + "end": 1392.78, + "probability": 0.7568359375 + }, + { + "word": " or", + "start": 1392.78, + "end": 1393.3, + "probability": 0.7099609375 + }, + { + "word": " naive", + "start": 1393.3, + "end": 1394.34, + "probability": 0.99609375 + }, + { + "word": " enough", + "start": 1394.34, + "end": 1394.64, + "probability": 1.0 + }, + { + "word": " or", + "start": 1394.64, + "end": 1394.98, + "probability": 0.99951171875 + }, + { + "word": " ignorant", + "start": 1394.98, + "end": 1395.56, + "probability": 1.0 + }, + { + "word": " enough", + "start": 1395.56, + "end": 1395.96, + "probability": 1.0 + }, + { + "word": " on", + "start": 1395.96, + "end": 1396.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1396.24, + "end": 1396.36, + "probability": 1.0 + }, + { + "word": " subject", + "start": 1396.36, + "end": 1396.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1396.82, + "end": 1397.26, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1397.26, + "end": 1397.98, + "probability": 1.0 + }, + { + "word": " for", + "start": 1397.98, + "end": 1398.18, + "probability": 1.0 + }, + { + "word": " these", + "start": 1398.18, + "end": 1398.36, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1398.36, + "end": 1398.6, + "probability": 1.0 + } + ] + }, + { + "id": 750, + "text": "But they do.", + "start": 1398.7, + "end": 1399.6, + "words": [ + { + "word": " But", + "start": 1398.7, + "end": 1398.94, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1398.94, + "end": 1399.34, + "probability": 0.9990234375 + }, + { + "word": " do.", + "start": 1399.34, + "end": 1399.6, + "probability": 1.0 + } + ] + }, + { + "id": 751, + "text": "And we'll talk about ways that you can protect yourself after this next break here.", + "start": 1400.8600000000001, + "end": 1404.58, + "words": [ + { + "word": " And", + "start": 1400.8600000000001, + "end": 1401.22, + "probability": 0.9990234375 + }, + { + "word": " we'll", + "start": 1401.22, + "end": 1401.58, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1401.58, + "end": 1401.96, + "probability": 0.99169921875 + }, + { + "word": " about", + "start": 1401.96, + "end": 1402.14, + "probability": 1.0 + }, + { + "word": " ways", + "start": 1402.14, + "end": 1402.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 1402.3, + "end": 1402.42, + "probability": 0.98046875 + }, + { + "word": " you", + "start": 1402.42, + "end": 1402.48, + "probability": 1.0 + }, + { + "word": " can", + "start": 1402.48, + "end": 1402.58, + "probability": 1.0 + }, + { + "word": " protect", + "start": 1402.58, + "end": 1402.74, + "probability": 0.97998046875 + }, + { + "word": " yourself", + "start": 1402.74, + "end": 1403.42, + "probability": 0.99658203125 + }, + { + "word": " after", + "start": 1403.42, + "end": 1403.82, + "probability": 1.0 + }, + { + "word": " this", + "start": 1403.82, + "end": 1404.0, + "probability": 1.0 + }, + { + "word": " next", + "start": 1404.0, + "end": 1404.2, + "probability": 1.0 + }, + { + "word": " break", + "start": 1404.2, + "end": 1404.42, + "probability": 1.0 + }, + { + "word": " here.", + "start": 1404.42, + "end": 1404.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 752, + "text": "So stick around for more of the Computer Guru Show right here on KVOI.", + "start": 1405.1000000000001, + "end": 1407.7, + "words": [ + { + "word": " So", + "start": 1405.1000000000001, + "end": 1405.46, + "probability": 0.99951171875 + }, + { + "word": " stick", + "start": 1405.46, + "end": 1405.66, + "probability": 0.978515625 + }, + { + "word": " around", + "start": 1405.66, + "end": 1405.8, + "probability": 1.0 + }, + { + "word": " for", + "start": 1405.8, + "end": 1405.92, + "probability": 1.0 + }, + { + "word": " more", + "start": 1405.92, + "end": 1406.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 1406.04, + "end": 1406.12, + "probability": 0.9775390625 + }, + { + "word": " the", + "start": 1406.12, + "end": 1406.14, + "probability": 0.71533203125 + }, + { + "word": " Computer", + "start": 1406.14, + "end": 1406.32, + "probability": 0.9765625 + }, + { + "word": " Guru", + "start": 1406.32, + "end": 1406.52, + "probability": 0.978515625 + }, + { + "word": " Show", + "start": 1406.52, + "end": 1406.7, + "probability": 0.78466796875 + }, + { + "word": " right", + "start": 1406.7, + "end": 1406.96, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 1406.96, + "end": 1407.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 1407.1, + "end": 1407.2, + "probability": 0.9931640625 + }, + { + "word": " KVOI.", + "start": 1407.2, + "end": 1407.7, + "probability": 0.89306640625 + } + ] + }, + { + "id": 753, + "text": "Give us a call if you'd like to be part of the show.", + "start": 1407.74, + "end": 1408.98, + "words": [ + { + "word": " Give", + "start": 1407.74, + "end": 1407.86, + "probability": 0.984375 + }, + { + "word": " us", + "start": 1407.86, + "end": 1408.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1408.0, + "end": 1408.04, + "probability": 1.0 + }, + { + "word": " call", + "start": 1408.04, + "end": 1408.14, + "probability": 1.0 + }, + { + "word": " if", + "start": 1408.14, + "end": 1408.26, + "probability": 0.9970703125 + }, + { + "word": " you'd", + "start": 1408.26, + "end": 1408.38, + "probability": 1.0 + }, + { + "word": " like", + "start": 1408.38, + "end": 1408.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 1408.44, + "end": 1408.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 1408.5, + "end": 1408.56, + "probability": 1.0 + }, + { + "word": " part", + "start": 1408.56, + "end": 1408.72, + "probability": 0.98779296875 + }, + { + "word": " of", + "start": 1408.72, + "end": 1408.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 1408.8, + "end": 1408.84, + "probability": 1.0 + }, + { + "word": " show.", + "start": 1408.84, + "end": 1408.98, + "probability": 1.0 + } + ] + }, + { + "id": 754, + "text": "790-2040.", + "start": 1409.24, + "end": 1410.22, + "words": [ + { + "word": " 790", + "start": 1409.24, + "end": 1409.6, + "probability": 0.958984375 + }, + { + "word": "-2040.", + "start": 1409.6, + "end": 1410.22, + "probability": 0.9814453125 + } + ] + }, + { + "id": 755, + "text": "We'll be right back.", + "start": 1410.28, + "end": 1410.9, + "words": [ + { + "word": " We'll", + "start": 1410.28, + "end": 1410.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 1410.58, + "end": 1410.64, + "probability": 1.0 + }, + { + "word": " right", + "start": 1410.64, + "end": 1410.74, + "probability": 1.0 + }, + { + "word": " back.", + "start": 1410.74, + "end": 1410.9, + "probability": 1.0 + } + ] + }, + { + "id": 756, + "text": "We'll be right back.", + "start": 1424.04, + "end": 1425.96, + "words": [ + { + "word": " We'll", + "start": 1424.04, + "end": 1424.92, + "probability": 0.494873046875 + }, + { + "word": " be", + "start": 1424.92, + "end": 1425.4, + "probability": 0.4892578125 + }, + { + "word": " right", + "start": 1425.4, + "end": 1425.52, + "probability": 0.9677734375 + }, + { + "word": " back.", + "start": 1425.52, + "end": 1425.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 757, + "text": "We'll be right back.", + "start": 1431.7799999999997, + "end": 1436.34, + "words": [ + { + "word": " We'll", + "start": 1431.7799999999997, + "end": 1433.1799999999998, + "probability": 0.43017578125 + }, + { + "word": " be", + "start": 1433.1799999999998, + "end": 1434.58, + "probability": 0.51953125 + }, + { + "word": " right", + "start": 1434.58, + "end": 1434.62, + "probability": 0.96435546875 + }, + { + "word": " back.", + "start": 1434.62, + "end": 1436.34, + "probability": 0.99853515625 + } + ] + }, + { + "id": 758, + "text": "We'll be right back.", + "start": 1455.96, + "end": 1456.66, + "words": [ + { + "word": " We'll", + "start": 1455.96, + "end": 1456.38, + "probability": 0.1573486328125 + }, + { + "word": " be", + "start": 1456.38, + "end": 1456.64, + "probability": 0.11895751953125 + }, + { + "word": " right", + "start": 1456.64, + "end": 1456.66, + "probability": 0.54052734375 + }, + { + "word": " back.", + "start": 1456.66, + "end": 1456.66, + "probability": 0.99560546875 + } + ] + }, + { + "id": 759, + "text": "We'll be right back.", + "start": 1486.5, + "end": 1486.98, + "words": [ + { + "word": " We'll", + "start": 1486.5, + "end": 1486.98, + "probability": 0.01061248779296875 + }, + { + "word": " be", + "start": 1486.98, + "end": 1486.98, + "probability": 0.09698486328125 + }, + { + "word": " right", + "start": 1486.98, + "end": 1486.98, + "probability": 0.91650390625 + }, + { + "word": " back.", + "start": 1486.98, + "end": 1486.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 760, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 761, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 762, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 763, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 764, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 765, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 766, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 767, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 768, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 769, + "text": "", + "start": 1486.98, + "end": 1486.98, + "words": [] + }, + { + "id": 770, + "text": "There are some ways that we talk about where people can protect themselves from these types of things.", + "start": 1486.98, + "end": 1490.98, + "words": [ + { + "word": " There", + "start": 1486.98, + "end": 1486.98, + "probability": 0.0013484954833984375 + }, + { + "word": " are", + "start": 1486.98, + "end": 1487.24, + "probability": 0.99365234375 + }, + { + "word": " some", + "start": 1487.24, + "end": 1487.58, + "probability": 0.9990234375 + }, + { + "word": " ways", + "start": 1487.58, + "end": 1487.8, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1487.8, + "end": 1488.1, + "probability": 0.99755859375 + }, + { + "word": " we", + "start": 1488.1, + "end": 1488.4, + "probability": 0.98828125 + }, + { + "word": " talk", + "start": 1488.4, + "end": 1488.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 1488.6, + "end": 1488.86, + "probability": 1.0 + }, + { + "word": " where", + "start": 1488.86, + "end": 1489.06, + "probability": 0.99609375 + }, + { + "word": " people", + "start": 1489.06, + "end": 1489.32, + "probability": 1.0 + }, + { + "word": " can", + "start": 1489.32, + "end": 1489.5, + "probability": 1.0 + }, + { + "word": " protect", + "start": 1489.5, + "end": 1489.68, + "probability": 0.99951171875 + }, + { + "word": " themselves", + "start": 1489.68, + "end": 1490.02, + "probability": 1.0 + }, + { + "word": " from", + "start": 1490.02, + "end": 1490.3, + "probability": 0.99951171875 + }, + { + "word": " these", + "start": 1490.3, + "end": 1490.42, + "probability": 1.0 + }, + { + "word": " types", + "start": 1490.42, + "end": 1490.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 1490.64, + "end": 1490.8, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1490.8, + "end": 1490.98, + "probability": 1.0 + } + ] + }, + { + "id": 771, + "text": "One of which is, you know, just be skeptical.", + "start": 1492.2, + "end": 1495.4, + "words": [ + { + "word": " One", + "start": 1492.2, + "end": 1492.68, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 1492.68, + "end": 1492.84, + "probability": 1.0 + }, + { + "word": " which", + "start": 1492.84, + "end": 1493.06, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1493.06, + "end": 1493.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 1493.56, + "end": 1494.36, + "probability": 0.93115234375 + }, + { + "word": " know,", + "start": 1494.36, + "end": 1494.56, + "probability": 1.0 + }, + { + "word": " just", + "start": 1494.56, + "end": 1494.72, + "probability": 1.0 + }, + { + "word": " be", + "start": 1494.72, + "end": 1494.9, + "probability": 1.0 + }, + { + "word": " skeptical.", + "start": 1494.9, + "end": 1495.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 772, + "text": "Really be skeptical.", + "start": 1496.04, + "end": 1497.18, + "words": [ + { + "word": " Really", + "start": 1496.04, + "end": 1496.52, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 1496.52, + "end": 1496.76, + "probability": 1.0 + }, + { + "word": " skeptical.", + "start": 1496.76, + "end": 1497.18, + "probability": 1.0 + } + ] + }, + { + "id": 773, + "text": "Like, don't provide credit card information for somebody who calls you.", + "start": 1497.2, + "end": 1501.92, + "words": [ + { + "word": " Like,", + "start": 1497.2, + "end": 1497.5, + "probability": 0.9326171875 + }, + { + "word": " don't", + "start": 1497.54, + "end": 1497.94, + "probability": 1.0 + }, + { + "word": " provide", + "start": 1497.94, + "end": 1499.02, + "probability": 0.990234375 + }, + { + "word": " credit", + "start": 1499.02, + "end": 1499.5, + "probability": 1.0 + }, + { + "word": " card", + "start": 1499.5, + "end": 1499.76, + "probability": 0.99951171875 + }, + { + "word": " information", + "start": 1499.76, + "end": 1500.0, + "probability": 0.70751953125 + }, + { + "word": " for", + "start": 1500.0, + "end": 1500.92, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 1500.92, + "end": 1501.2, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 1501.2, + "end": 1501.36, + "probability": 1.0 + }, + { + "word": " calls", + "start": 1501.36, + "end": 1501.62, + "probability": 1.0 + }, + { + "word": " you.", + "start": 1501.62, + "end": 1501.92, + "probability": 1.0 + } + ] + }, + { + "id": 774, + "text": "Now, I mean, if you know who you're dealing with, right, and they can properly authenticate with you, right,", + "start": 1502.06, + "end": 1508.98, + "words": [ + { + "word": " Now,", + "start": 1502.06, + "end": 1502.5, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 1502.5, + "end": 1502.66, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 1502.66, + "end": 1503.06, + "probability": 1.0 + }, + { + "word": " if", + "start": 1503.06, + "end": 1503.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 1503.16, + "end": 1503.38, + "probability": 1.0 + }, + { + "word": " know", + "start": 1503.38, + "end": 1504.74, + "probability": 0.99365234375 + }, + { + "word": " who", + "start": 1504.74, + "end": 1505.08, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1505.08, + "end": 1505.24, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 1505.24, + "end": 1505.48, + "probability": 1.0 + }, + { + "word": " with,", + "start": 1505.48, + "end": 1505.78, + "probability": 1.0 + }, + { + "word": " right,", + "start": 1505.86, + "end": 1506.38, + "probability": 0.96337890625 + }, + { + "word": " and", + "start": 1506.42, + "end": 1506.54, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1506.54, + "end": 1506.62, + "probability": 1.0 + }, + { + "word": " can", + "start": 1506.62, + "end": 1506.76, + "probability": 1.0 + }, + { + "word": " properly", + "start": 1506.76, + "end": 1507.22, + "probability": 1.0 + }, + { + "word": " authenticate", + "start": 1507.22, + "end": 1507.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 1507.9, + "end": 1508.14, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1508.14, + "end": 1508.44, + "probability": 1.0 + }, + { + "word": " right,", + "start": 1508.48, + "end": 1508.98, + "probability": 0.99365234375 + } + ] + }, + { + "id": 775, + "text": "and you've called them at a number that you know is definitely them and you want to initiate some type of payment that way, sure.", + "start": 1509.0, + "end": 1515.68, + "words": [ + { + "word": " and", + "start": 1509.0, + "end": 1509.1, + "probability": 0.131103515625 + }, + { + "word": " you've", + "start": 1509.1, + "end": 1509.28, + "probability": 0.998046875 + }, + { + "word": " called", + "start": 1509.28, + "end": 1509.5, + "probability": 1.0 + }, + { + "word": " them", + "start": 1509.5, + "end": 1509.82, + "probability": 1.0 + }, + { + "word": " at", + "start": 1509.82, + "end": 1509.98, + "probability": 0.98095703125 + }, + { + "word": " a", + "start": 1509.98, + "end": 1510.1, + "probability": 1.0 + }, + { + "word": " number", + "start": 1510.1, + "end": 1510.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 1510.32, + "end": 1510.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1510.48, + "end": 1510.58, + "probability": 1.0 + }, + { + "word": " know", + "start": 1510.58, + "end": 1510.8, + "probability": 1.0 + }, + { + "word": " is", + "start": 1510.8, + "end": 1511.0, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 1511.0, + "end": 1511.32, + "probability": 1.0 + }, + { + "word": " them", + "start": 1511.32, + "end": 1511.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 1511.8, + "end": 1512.76, + "probability": 0.2305908203125 + }, + { + "word": " you", + "start": 1512.76, + "end": 1513.16, + "probability": 1.0 + }, + { + "word": " want", + "start": 1513.16, + "end": 1513.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 1513.3, + "end": 1513.44, + "probability": 1.0 + }, + { + "word": " initiate", + "start": 1513.44, + "end": 1513.76, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 1513.76, + "end": 1514.06, + "probability": 1.0 + }, + { + "word": " type", + "start": 1514.06, + "end": 1514.28, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1514.28, + "end": 1514.52, + "probability": 1.0 + }, + { + "word": " payment", + "start": 1514.52, + "end": 1514.86, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1514.86, + "end": 1515.1, + "probability": 0.9990234375 + }, + { + "word": " way,", + "start": 1515.1, + "end": 1515.34, + "probability": 1.0 + }, + { + "word": " sure.", + "start": 1515.4, + "end": 1515.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 776, + "text": "But if somebody calls you and says, you know what, I think you need to give us money, you should probably just say no.", + "start": 1515.96, + "end": 1521.76, + "words": [ + { + "word": " But", + "start": 1515.96, + "end": 1516.04, + "probability": 0.87451171875 + }, + { + "word": " if", + "start": 1516.04, + "end": 1516.12, + "probability": 0.99853515625 + }, + { + "word": " somebody", + "start": 1516.12, + "end": 1516.34, + "probability": 1.0 + }, + { + "word": " calls", + "start": 1516.34, + "end": 1516.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 1516.6, + "end": 1516.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 1516.88, + "end": 1517.18, + "probability": 0.99853515625 + }, + { + "word": " says,", + "start": 1517.18, + "end": 1517.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 1517.56, + "end": 1517.66, + "probability": 0.984375 + }, + { + "word": " know", + "start": 1517.66, + "end": 1517.72, + "probability": 1.0 + }, + { + "word": " what,", + "start": 1517.72, + "end": 1517.86, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 1517.94, + "end": 1518.62, + "probability": 1.0 + }, + { + "word": " think", + "start": 1518.62, + "end": 1518.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 1518.82, + "end": 1518.94, + "probability": 1.0 + }, + { + "word": " need", + "start": 1518.94, + "end": 1519.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 1519.04, + "end": 1519.12, + "probability": 1.0 + }, + { + "word": " give", + "start": 1519.12, + "end": 1519.22, + "probability": 1.0 + }, + { + "word": " us", + "start": 1519.22, + "end": 1519.34, + "probability": 1.0 + }, + { + "word": " money,", + "start": 1519.34, + "end": 1519.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 1520.3, + "end": 1520.78, + "probability": 0.9892578125 + }, + { + "word": " should", + "start": 1520.78, + "end": 1520.98, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1520.98, + "end": 1521.22, + "probability": 1.0 + }, + { + "word": " just", + "start": 1521.22, + "end": 1521.46, + "probability": 1.0 + }, + { + "word": " say", + "start": 1521.46, + "end": 1521.6, + "probability": 1.0 + }, + { + "word": " no.", + "start": 1521.6, + "end": 1521.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 777, + "text": "And you can also join the fight, you know, as far as that type of stuff is concerned.", + "start": 1523.38, + "end": 1527.18, + "words": [ + { + "word": " And", + "start": 1523.38, + "end": 1523.74, + "probability": 0.978515625 + }, + { + "word": " you", + "start": 1523.74, + "end": 1524.1, + "probability": 0.9970703125 + }, + { + "word": " can", + "start": 1524.1, + "end": 1524.26, + "probability": 0.99951171875 + }, + { + "word": " also", + "start": 1524.26, + "end": 1524.48, + "probability": 1.0 + }, + { + "word": " join", + "start": 1524.48, + "end": 1524.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 1524.74, + "end": 1524.86, + "probability": 1.0 + }, + { + "word": " fight,", + "start": 1524.86, + "end": 1525.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 1525.2, + "end": 1525.52, + "probability": 0.98193359375 + }, + { + "word": " know,", + "start": 1525.52, + "end": 1525.66, + "probability": 1.0 + }, + { + "word": " as", + "start": 1525.66, + "end": 1525.78, + "probability": 1.0 + }, + { + "word": " far", + "start": 1525.78, + "end": 1525.94, + "probability": 1.0 + }, + { + "word": " as", + "start": 1525.94, + "end": 1526.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1526.14, + "end": 1526.3, + "probability": 1.0 + }, + { + "word": " type", + "start": 1526.3, + "end": 1526.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 1526.48, + "end": 1526.6, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1526.6, + "end": 1526.74, + "probability": 1.0 + }, + { + "word": " is", + "start": 1526.74, + "end": 1526.92, + "probability": 1.0 + }, + { + "word": " concerned.", + "start": 1526.92, + "end": 1527.18, + "probability": 1.0 + } + ] + }, + { + "id": 778, + "text": "And we've talked about this before, which is waste their time as much as possible.", + "start": 1528.5600000000002, + "end": 1532.74, + "words": [ + { + "word": " And", + "start": 1528.5600000000002, + "end": 1528.92, + "probability": 0.9990234375 + }, + { + "word": " we've", + "start": 1528.92, + "end": 1529.28, + "probability": 1.0 + }, + { + "word": " talked", + "start": 1529.28, + "end": 1529.42, + "probability": 1.0 + }, + { + "word": " about", + "start": 1529.42, + "end": 1529.64, + "probability": 1.0 + }, + { + "word": " this", + "start": 1529.64, + "end": 1529.8, + "probability": 1.0 + }, + { + "word": " before,", + "start": 1529.8, + "end": 1530.1, + "probability": 1.0 + }, + { + "word": " which", + "start": 1530.18, + "end": 1530.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 1530.36, + "end": 1530.52, + "probability": 1.0 + }, + { + "word": " waste", + "start": 1530.52, + "end": 1530.84, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 1530.84, + "end": 1530.96, + "probability": 1.0 + }, + { + "word": " time", + "start": 1530.96, + "end": 1531.22, + "probability": 1.0 + }, + { + "word": " as", + "start": 1531.22, + "end": 1531.96, + "probability": 0.99853515625 + }, + { + "word": " much", + "start": 1531.96, + "end": 1532.24, + "probability": 1.0 + }, + { + "word": " as", + "start": 1532.24, + "end": 1532.38, + "probability": 1.0 + }, + { + "word": " possible.", + "start": 1532.38, + "end": 1532.74, + "probability": 1.0 + } + ] + }, + { + "id": 779, + "text": "If you've got the time, you know, most of the people that are going to fall for this are probably retired anyway.", + "start": 1532.86, + "end": 1538.0, + "words": [ + { + "word": " If", + "start": 1532.86, + "end": 1533.1, + "probability": 0.99951171875 + }, + { + "word": " you've", + "start": 1533.1, + "end": 1533.88, + "probability": 0.962890625 + }, + { + "word": " got", + "start": 1533.88, + "end": 1534.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 1534.04, + "end": 1534.22, + "probability": 1.0 + }, + { + "word": " time,", + "start": 1534.22, + "end": 1534.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 1534.54, + "end": 1534.62, + "probability": 0.9658203125 + }, + { + "word": " know,", + "start": 1534.62, + "end": 1534.72, + "probability": 1.0 + }, + { + "word": " most", + "start": 1534.74, + "end": 1535.46, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1535.46, + "end": 1535.68, + "probability": 1.0 + }, + { + "word": " the", + "start": 1535.68, + "end": 1535.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 1535.68, + "end": 1535.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 1535.92, + "end": 1536.14, + "probability": 0.99853515625 + }, + { + "word": " are", + "start": 1536.14, + "end": 1536.22, + "probability": 1.0 + }, + { + "word": " going", + "start": 1536.22, + "end": 1536.24, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 1536.24, + "end": 1536.36, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1536.36, + "end": 1536.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 1536.5, + "end": 1536.66, + "probability": 1.0 + }, + { + "word": " this", + "start": 1536.66, + "end": 1536.84, + "probability": 1.0 + }, + { + "word": " are", + "start": 1536.84, + "end": 1536.98, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1536.98, + "end": 1537.24, + "probability": 1.0 + }, + { + "word": " retired", + "start": 1537.24, + "end": 1537.66, + "probability": 1.0 + }, + { + "word": " anyway.", + "start": 1537.66, + "end": 1538.0, + "probability": 1.0 + } + ] + }, + { + "id": 780, + "text": "So there's a great chance that if you need a new hobby, your hobby can be just wasting the time of somebody trying to.", + "start": 1538.7200000000003, + "end": 1545.84, + "words": [ + { + "word": " So", + "start": 1538.7200000000003, + "end": 1539.0800000000002, + "probability": 0.99951171875 + }, + { + "word": " there's", + "start": 1539.0800000000002, + "end": 1539.44, + "probability": 0.9833984375 + }, + { + "word": " a", + "start": 1539.44, + "end": 1539.46, + "probability": 1.0 + }, + { + "word": " great", + "start": 1539.46, + "end": 1539.96, + "probability": 0.994140625 + }, + { + "word": " chance", + "start": 1539.96, + "end": 1540.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 1540.36, + "end": 1540.56, + "probability": 1.0 + }, + { + "word": " if", + "start": 1540.56, + "end": 1540.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 1540.72, + "end": 1540.84, + "probability": 1.0 + }, + { + "word": " need", + "start": 1540.84, + "end": 1540.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 1540.98, + "end": 1541.08, + "probability": 1.0 + }, + { + "word": " new", + "start": 1541.08, + "end": 1541.18, + "probability": 1.0 + }, + { + "word": " hobby,", + "start": 1541.18, + "end": 1541.52, + "probability": 1.0 + }, + { + "word": " your", + "start": 1541.66, + "end": 1542.36, + "probability": 0.99755859375 + }, + { + "word": " hobby", + "start": 1542.36, + "end": 1542.66, + "probability": 1.0 + }, + { + "word": " can", + "start": 1542.66, + "end": 1542.88, + "probability": 1.0 + }, + { + "word": " be", + "start": 1542.88, + "end": 1543.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 1543.0, + "end": 1543.4, + "probability": 1.0 + }, + { + "word": " wasting", + "start": 1543.4, + "end": 1544.52, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1544.52, + "end": 1544.8, + "probability": 1.0 + }, + { + "word": " time", + "start": 1544.8, + "end": 1545.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 1545.12, + "end": 1545.3, + "probability": 0.9990234375 + }, + { + "word": " somebody", + "start": 1545.3, + "end": 1545.46, + "probability": 0.99951171875 + }, + { + "word": " trying", + "start": 1545.46, + "end": 1545.68, + "probability": 0.99951171875 + }, + { + "word": " to.", + "start": 1545.68, + "end": 1545.84, + "probability": 0.994140625 + } + ] + }, + { + "id": 781, + "text": "Scam you and take as long as possible and make them repeat themselves as many times as you can.", + "start": 1545.84, + "end": 1550.76, + "words": [ + { + "word": " Scam", + "start": 1545.84, + "end": 1546.06, + "probability": 0.4892578125 + }, + { + "word": " you", + "start": 1546.06, + "end": 1546.22, + "probability": 0.92333984375 + }, + { + "word": " and", + "start": 1546.22, + "end": 1546.72, + "probability": 0.919921875 + }, + { + "word": " take", + "start": 1546.72, + "end": 1547.1, + "probability": 0.9921875 + }, + { + "word": " as", + "start": 1547.1, + "end": 1547.3, + "probability": 0.99267578125 + }, + { + "word": " long", + "start": 1547.3, + "end": 1547.52, + "probability": 0.99462890625 + }, + { + "word": " as", + "start": 1547.52, + "end": 1547.66, + "probability": 0.99560546875 + }, + { + "word": " possible", + "start": 1547.66, + "end": 1548.04, + "probability": 0.99560546875 + }, + { + "word": " and", + "start": 1548.04, + "end": 1548.52, + "probability": 0.92578125 + }, + { + "word": " make", + "start": 1548.52, + "end": 1548.94, + "probability": 0.99560546875 + }, + { + "word": " them", + "start": 1548.94, + "end": 1549.12, + "probability": 0.998046875 + }, + { + "word": " repeat", + "start": 1549.12, + "end": 1549.32, + "probability": 0.9931640625 + }, + { + "word": " themselves", + "start": 1549.32, + "end": 1549.66, + "probability": 0.99609375 + }, + { + "word": " as", + "start": 1549.66, + "end": 1549.94, + "probability": 0.990234375 + }, + { + "word": " many", + "start": 1549.94, + "end": 1550.06, + "probability": 0.99853515625 + }, + { + "word": " times", + "start": 1550.06, + "end": 1550.32, + "probability": 0.99560546875 + }, + { + "word": " as", + "start": 1550.32, + "end": 1550.5, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 1550.5, + "end": 1550.6, + "probability": 0.99951171875 + }, + { + "word": " can.", + "start": 1550.6, + "end": 1550.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 782, + "text": "What are your tips as far as, you know, what should people be on the lookout for and ways that you think that they can either contribute towards the cause or ways that they can just know that they're trying.", + "start": 1552.78, + "end": 1568.26, + "words": [ + { + "word": " What", + "start": 1552.78, + "end": 1553.26, + "probability": 0.44970703125 + }, + { + "word": " are", + "start": 1553.26, + "end": 1553.56, + "probability": 0.9921875 + }, + { + "word": " your", + "start": 1553.56, + "end": 1553.68, + "probability": 0.998046875 + }, + { + "word": " tips", + "start": 1553.68, + "end": 1554.0, + "probability": 0.998046875 + }, + { + "word": " as", + "start": 1554.0, + "end": 1554.9, + "probability": 0.79150390625 + }, + { + "word": " far", + "start": 1554.9, + "end": 1555.34, + "probability": 0.99462890625 + }, + { + "word": " as,", + "start": 1555.34, + "end": 1555.9, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 1555.9, + "end": 1557.08, + "probability": 0.92431640625 + }, + { + "word": " know,", + "start": 1557.08, + "end": 1557.32, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 1557.32, + "end": 1557.58, + "probability": 0.77392578125 + }, + { + "word": " should", + "start": 1557.58, + "end": 1557.88, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 1557.88, + "end": 1558.14, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 1558.14, + "end": 1558.3, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1558.3, + "end": 1558.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1558.42, + "end": 1558.5, + "probability": 0.99951171875 + }, + { + "word": " lookout", + "start": 1558.5, + "end": 1558.72, + "probability": 0.99609375 + }, + { + "word": " for", + "start": 1558.72, + "end": 1559.0, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1559.0, + "end": 1559.68, + "probability": 0.9013671875 + }, + { + "word": " ways", + "start": 1559.68, + "end": 1560.12, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1560.12, + "end": 1560.4, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1560.4, + "end": 1560.74, + "probability": 0.935546875 + }, + { + "word": " think", + "start": 1560.74, + "end": 1561.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 1561.04, + "end": 1561.24, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 1561.24, + "end": 1561.4, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1561.4, + "end": 1561.62, + "probability": 1.0 + }, + { + "word": " either", + "start": 1561.62, + "end": 1562.46, + "probability": 0.99462890625 + }, + { + "word": " contribute", + "start": 1562.46, + "end": 1562.98, + "probability": 0.9990234375 + }, + { + "word": " towards", + "start": 1562.98, + "end": 1563.6, + "probability": 0.90771484375 + }, + { + "word": " the", + "start": 1563.6, + "end": 1564.1, + "probability": 0.99951171875 + }, + { + "word": " cause", + "start": 1564.1, + "end": 1564.36, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 1564.36, + "end": 1564.82, + "probability": 0.99609375 + }, + { + "word": " ways", + "start": 1564.82, + "end": 1565.48, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 1565.48, + "end": 1565.68, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1565.68, + "end": 1565.88, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 1565.88, + "end": 1566.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 1566.02, + "end": 1566.26, + "probability": 0.99755859375 + }, + { + "word": " know", + "start": 1566.26, + "end": 1567.4, + "probability": 0.98046875 + }, + { + "word": " that", + "start": 1567.4, + "end": 1567.8, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 1567.8, + "end": 1567.98, + "probability": 0.9423828125 + }, + { + "word": " trying.", + "start": 1567.98, + "end": 1568.26, + "probability": 0.9951171875 + } + ] + }, + { + "id": 783, + "text": "Somebody's trying to scam them in some way or another.", + "start": 1568.36, + "end": 1570.54, + "words": [ + { + "word": " Somebody's", + "start": 1568.36, + "end": 1568.82, + "probability": 0.83935546875 + }, + { + "word": " trying", + "start": 1568.82, + "end": 1568.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 1568.98, + "end": 1569.1, + "probability": 1.0 + }, + { + "word": " scam", + "start": 1569.1, + "end": 1569.32, + "probability": 0.998046875 + }, + { + "word": " them", + "start": 1569.32, + "end": 1569.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 1569.54, + "end": 1569.9, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 1569.9, + "end": 1570.06, + "probability": 1.0 + }, + { + "word": " way", + "start": 1570.06, + "end": 1570.22, + "probability": 1.0 + }, + { + "word": " or", + "start": 1570.22, + "end": 1570.36, + "probability": 0.99951171875 + }, + { + "word": " another.", + "start": 1570.36, + "end": 1570.54, + "probability": 1.0 + } + ] + }, + { + "id": 784, + "text": "They just it just doesn't make sense.", + "start": 1570.72, + "end": 1573.32, + "words": [ + { + "word": " They", + "start": 1570.72, + "end": 1571.06, + "probability": 0.92578125 + }, + { + "word": " just", + "start": 1571.06, + "end": 1571.34, + "probability": 1.0 + }, + { + "word": " it", + "start": 1571.34, + "end": 1571.7, + "probability": 0.943359375 + }, + { + "word": " just", + "start": 1571.7, + "end": 1572.04, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1572.04, + "end": 1572.58, + "probability": 1.0 + }, + { + "word": " make", + "start": 1572.58, + "end": 1572.8, + "probability": 1.0 + }, + { + "word": " sense.", + "start": 1572.8, + "end": 1573.32, + "probability": 1.0 + } + ] + }, + { + "id": 785, + "text": "I mean, what they're trying to offer.", + "start": 1573.56, + "end": 1575.24, + "words": [ + { + "word": " I", + "start": 1573.56, + "end": 1573.9, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 1573.9, + "end": 1574.06, + "probability": 1.0 + }, + { + "word": " what", + "start": 1574.08, + "end": 1574.28, + "probability": 0.9990234375 + }, + { + "word": " they're", + "start": 1574.28, + "end": 1574.48, + "probability": 1.0 + }, + { + "word": " trying", + "start": 1574.48, + "end": 1574.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1574.72, + "end": 1574.88, + "probability": 1.0 + }, + { + "word": " offer.", + "start": 1574.88, + "end": 1575.24, + "probability": 1.0 + } + ] + }, + { + "id": 786, + "text": "Oh, yeah.", + "start": 1576.02, + "end": 1576.62, + "words": [ + { + "word": " Oh,", + "start": 1576.02, + "end": 1576.42, + "probability": 0.376953125 + }, + { + "word": " yeah.", + "start": 1576.48, + "end": 1576.62, + "probability": 0.99755859375 + } + ] + }, + { + "id": 787, + "text": "You want a free cruise, but you have to pay these charges or whatever.", + "start": 1576.64, + "end": 1580.2, + "words": [ + { + "word": " You", + "start": 1576.64, + "end": 1576.8, + "probability": 0.99560546875 + }, + { + "word": " want", + "start": 1576.8, + "end": 1577.04, + "probability": 0.98681640625 + }, + { + "word": " a", + "start": 1577.04, + "end": 1577.18, + "probability": 0.9951171875 + }, + { + "word": " free", + "start": 1577.18, + "end": 1577.38, + "probability": 1.0 + }, + { + "word": " cruise,", + "start": 1577.38, + "end": 1577.86, + "probability": 1.0 + }, + { + "word": " but", + "start": 1577.96, + "end": 1578.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 1578.32, + "end": 1578.44, + "probability": 1.0 + }, + { + "word": " have", + "start": 1578.44, + "end": 1578.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 1578.58, + "end": 1578.74, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1578.74, + "end": 1578.92, + "probability": 1.0 + }, + { + "word": " these", + "start": 1578.92, + "end": 1579.16, + "probability": 1.0 + }, + { + "word": " charges", + "start": 1579.16, + "end": 1579.58, + "probability": 1.0 + }, + { + "word": " or", + "start": 1579.58, + "end": 1579.9, + "probability": 0.99560546875 + }, + { + "word": " whatever.", + "start": 1579.9, + "end": 1580.2, + "probability": 1.0 + } + ] + }, + { + "id": 788, + "text": "You're listening to the show.", + "start": 1581.1, + "end": 1582.36, + "words": [ + { + "word": " You're", + "start": 1581.1, + "end": 1581.5, + "probability": 0.958984375 + }, + { + "word": " listening", + "start": 1581.5, + "end": 1581.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1581.82, + "end": 1581.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 1581.98, + "end": 1582.08, + "probability": 0.92822265625 + }, + { + "word": " show.", + "start": 1582.08, + "end": 1582.36, + "probability": 1.0 + } + ] + }, + { + "id": 789, + "text": "You've got the Internet.", + "start": 1582.76, + "end": 1584.04, + "words": [ + { + "word": " You've", + "start": 1582.76, + "end": 1583.16, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 1583.16, + "end": 1583.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 1583.44, + "end": 1583.78, + "probability": 1.0 + }, + { + "word": " Internet.", + "start": 1583.78, + "end": 1584.04, + "probability": 0.73388671875 + } + ] + }, + { + "id": 790, + "text": "You've got the power of the Internet.", + "start": 1584.22, + "end": 1585.76, + "words": [ + { + "word": " You've", + "start": 1584.22, + "end": 1584.44, + "probability": 1.0 + }, + { + "word": " got", + "start": 1584.44, + "end": 1584.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 1584.6, + "end": 1584.8, + "probability": 1.0 + }, + { + "word": " power", + "start": 1584.8, + "end": 1585.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1585.24, + "end": 1585.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 1585.42, + "end": 1585.46, + "probability": 0.99951171875 + }, + { + "word": " Internet.", + "start": 1585.46, + "end": 1585.76, + "probability": 1.0 + } + ] + }, + { + "id": 791, + "text": "You've got the power of Google.", + "start": 1585.94, + "end": 1587.08, + "words": [ + { + "word": " You've", + "start": 1585.94, + "end": 1586.1, + "probability": 1.0 + }, + { + "word": " got", + "start": 1586.1, + "end": 1586.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 1586.24, + "end": 1586.42, + "probability": 1.0 + }, + { + "word": " power", + "start": 1586.42, + "end": 1586.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 1586.72, + "end": 1586.92, + "probability": 1.0 + }, + { + "word": " Google.", + "start": 1586.92, + "end": 1587.08, + "probability": 1.0 + } + ] + }, + { + "id": 792, + "text": "Just Google it up.", + "start": 1587.38, + "end": 1588.68, + "words": [ + { + "word": " Just", + "start": 1587.38, + "end": 1587.78, + "probability": 0.994140625 + }, + { + "word": " Google", + "start": 1587.78, + "end": 1588.16, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1588.16, + "end": 1588.42, + "probability": 0.99951171875 + }, + { + "word": " up.", + "start": 1588.42, + "end": 1588.68, + "probability": 0.98828125 + } + ] + }, + { + "id": 793, + "text": "You know what they're trying to say.", + "start": 1589.08, + "end": 1590.84, + "words": [ + { + "word": " You", + "start": 1589.08, + "end": 1589.48, + "probability": 0.59521484375 + }, + { + "word": " know", + "start": 1589.48, + "end": 1589.6, + "probability": 1.0 + }, + { + "word": " what", + "start": 1589.6, + "end": 1589.98, + "probability": 0.7451171875 + }, + { + "word": " they're", + "start": 1589.98, + "end": 1590.3, + "probability": 0.998046875 + }, + { + "word": " trying", + "start": 1590.3, + "end": 1590.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 1590.54, + "end": 1590.68, + "probability": 1.0 + }, + { + "word": " say.", + "start": 1590.68, + "end": 1590.84, + "probability": 1.0 + } + ] + }, + { + "id": 794, + "text": "Oh, what company are you with?", + "start": 1590.9, + "end": 1592.14, + "words": [ + { + "word": " Oh,", + "start": 1590.9, + "end": 1591.04, + "probability": 0.9990234375 + }, + { + "word": " what", + "start": 1591.06, + "end": 1591.16, + "probability": 1.0 + }, + { + "word": " company", + "start": 1591.16, + "end": 1591.56, + "probability": 1.0 + }, + { + "word": " are", + "start": 1591.56, + "end": 1591.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 1591.76, + "end": 1591.92, + "probability": 1.0 + }, + { + "word": " with?", + "start": 1591.92, + "end": 1592.14, + "probability": 1.0 + } + ] + }, + { + "id": 795, + "text": "Repeat that again.", + "start": 1592.66, + "end": 1593.62, + "words": [ + { + "word": " Repeat", + "start": 1592.66, + "end": 1593.06, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 1593.06, + "end": 1593.38, + "probability": 1.0 + }, + { + "word": " again.", + "start": 1593.38, + "end": 1593.62, + "probability": 1.0 + } + ] + }, + { + "id": 796, + "text": "Oftentimes you can just type in the phone number they're calling.", + "start": 1594.88, + "end": 1596.76, + "words": [ + { + "word": " Oftentimes", + "start": 1594.88, + "end": 1595.28, + "probability": 0.86279296875 + }, + { + "word": " you", + "start": 1595.28, + "end": 1595.54, + "probability": 0.888671875 + }, + { + "word": " can", + "start": 1595.54, + "end": 1595.58, + "probability": 1.0 + }, + { + "word": " just", + "start": 1595.58, + "end": 1595.72, + "probability": 1.0 + }, + { + "word": " type", + "start": 1595.72, + "end": 1595.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 1595.9, + "end": 1596.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 1596.02, + "end": 1596.1, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1596.1, + "end": 1596.28, + "probability": 1.0 + }, + { + "word": " number", + "start": 1596.28, + "end": 1596.46, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1596.46, + "end": 1596.64, + "probability": 0.8369140625 + }, + { + "word": " calling.", + "start": 1596.64, + "end": 1596.76, + "probability": 1.0 + } + ] + }, + { + "id": 797, + "text": "You can type in the phone number.", + "start": 1597.0, + "end": 1598.6, + "words": [ + { + "word": " You", + "start": 1597.0, + "end": 1597.4, + "probability": 0.99462890625 + }, + { + "word": " can", + "start": 1597.4, + "end": 1597.64, + "probability": 1.0 + }, + { + "word": " type", + "start": 1597.64, + "end": 1597.9, + "probability": 1.0 + }, + { + "word": " in", + "start": 1597.9, + "end": 1598.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 1598.04, + "end": 1598.14, + "probability": 1.0 + }, + { + "word": " phone", + "start": 1598.14, + "end": 1598.32, + "probability": 1.0 + }, + { + "word": " number.", + "start": 1598.32, + "end": 1598.6, + "probability": 1.0 + } + ] + }, + { + "id": 798, + "text": "There's a service online that's called bad numbers dot.", + "start": 1598.64, + "end": 1602.16, + "words": [ + { + "word": " There's", + "start": 1598.64, + "end": 1598.96, + "probability": 1.0 + }, + { + "word": " a", + "start": 1598.96, + "end": 1599.04, + "probability": 1.0 + }, + { + "word": " service", + "start": 1599.04, + "end": 1599.46, + "probability": 1.0 + }, + { + "word": " online", + "start": 1599.46, + "end": 1599.82, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1599.82, + "end": 1600.16, + "probability": 0.8603515625 + }, + { + "word": " called", + "start": 1600.16, + "end": 1600.4, + "probability": 1.0 + }, + { + "word": " bad", + "start": 1600.4, + "end": 1600.72, + "probability": 0.73876953125 + }, + { + "word": " numbers", + "start": 1600.72, + "end": 1601.3, + "probability": 0.76806640625 + }, + { + "word": " dot.", + "start": 1601.3, + "end": 1602.16, + "probability": 0.71484375 + } + ] + }, + { + "id": 799, + "text": "I.N.F.O.", + "start": 1602.2, + "end": 1603.22, + "words": [ + { + "word": " I", + "start": 1602.2, + "end": 1602.44, + "probability": 0.90380859375 + }, + { + "word": ".N", + "start": 1602.44, + "end": 1602.76, + "probability": 0.6494140625 + }, + { + "word": ".F", + "start": 1602.76, + "end": 1602.9, + "probability": 0.99267578125 + }, + { + "word": ".O.", + "start": 1602.9, + "end": 1603.22, + "probability": 0.98876953125 + } + ] + }, + { + "id": 800, + "text": "You can verify.", + "start": 1604.24, + "end": 1605.6, + "words": [ + { + "word": " You", + "start": 1604.24, + "end": 1604.64, + "probability": 0.99462890625 + }, + { + "word": " can", + "start": 1604.64, + "end": 1604.88, + "probability": 1.0 + }, + { + "word": " verify.", + "start": 1604.88, + "end": 1605.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 801, + "text": "You can verify through that.", + "start": 1605.84, + "end": 1606.4, + "words": [ + { + "word": " You", + "start": 1605.84, + "end": 1605.92, + "probability": 0.005756378173828125 + }, + { + "word": " can", + "start": 1605.92, + "end": 1605.92, + "probability": 0.55224609375 + }, + { + "word": " verify", + "start": 1605.92, + "end": 1605.92, + "probability": 0.031219482421875 + }, + { + "word": " through", + "start": 1605.92, + "end": 1606.02, + "probability": 0.92138671875 + }, + { + "word": " that.", + "start": 1606.02, + "end": 1606.4, + "probability": 0.99755859375 + } + ] + }, + { + "id": 802, + "text": "And if they say they're with the company, take a name and number down.", + "start": 1607.4, + "end": 1610.24, + "words": [ + { + "word": " And", + "start": 1607.4, + "end": 1607.94, + "probability": 0.9111328125 + }, + { + "word": " if", + "start": 1607.94, + "end": 1608.08, + "probability": 0.99560546875 + }, + { + "word": " they", + "start": 1608.08, + "end": 1608.22, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 1608.22, + "end": 1608.46, + "probability": 0.9931640625 + }, + { + "word": " they're", + "start": 1608.46, + "end": 1608.6, + "probability": 0.99658203125 + }, + { + "word": " with", + "start": 1608.6, + "end": 1608.76, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1608.76, + "end": 1608.84, + "probability": 0.2509765625 + }, + { + "word": " company,", + "start": 1608.84, + "end": 1609.14, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 1609.24, + "end": 1609.4, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1609.4, + "end": 1609.54, + "probability": 0.99853515625 + }, + { + "word": " name", + "start": 1609.54, + "end": 1609.72, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1609.72, + "end": 1609.84, + "probability": 0.97900390625 + }, + { + "word": " number", + "start": 1609.84, + "end": 1610.06, + "probability": 0.98486328125 + }, + { + "word": " down.", + "start": 1610.06, + "end": 1610.24, + "probability": 0.91552734375 + } + ] + }, + { + "id": 803, + "text": "Find a known good number for that company and call that company.", + "start": 1610.74, + "end": 1616.52, + "words": [ + { + "word": " Find", + "start": 1610.74, + "end": 1611.28, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1611.28, + "end": 1611.66, + "probability": 1.0 + }, + { + "word": " known", + "start": 1611.66, + "end": 1611.9, + "probability": 1.0 + }, + { + "word": " good", + "start": 1611.9, + "end": 1612.2, + "probability": 0.98486328125 + }, + { + "word": " number", + "start": 1612.2, + "end": 1612.52, + "probability": 1.0 + }, + { + "word": " for", + "start": 1612.52, + "end": 1612.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 1612.74, + "end": 1612.92, + "probability": 1.0 + }, + { + "word": " company", + "start": 1612.92, + "end": 1613.34, + "probability": 1.0 + }, + { + "word": " and", + "start": 1613.34, + "end": 1614.68, + "probability": 0.8564453125 + }, + { + "word": " call", + "start": 1614.68, + "end": 1615.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 1615.9, + "end": 1616.12, + "probability": 1.0 + }, + { + "word": " company.", + "start": 1616.12, + "end": 1616.52, + "probability": 1.0 + } + ] + }, + { + "id": 804, + "text": "And even as you well know, they can really spoof and social engineer just from your bank.", + "start": 1616.84, + "end": 1622.46, + "words": [ + { + "word": " And", + "start": 1616.84, + "end": 1617.28, + "probability": 0.99951171875 + }, + { + "word": " even", + "start": 1617.28, + "end": 1617.58, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1617.58, + "end": 1617.76, + "probability": 0.9560546875 + }, + { + "word": " you", + "start": 1617.76, + "end": 1617.96, + "probability": 1.0 + }, + { + "word": " well", + "start": 1617.96, + "end": 1618.14, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 1618.14, + "end": 1618.42, + "probability": 1.0 + }, + { + "word": " they", + "start": 1618.54, + "end": 1618.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 1618.68, + "end": 1618.88, + "probability": 1.0 + }, + { + "word": " really", + "start": 1618.88, + "end": 1619.28, + "probability": 1.0 + }, + { + "word": " spoof", + "start": 1619.28, + "end": 1619.94, + "probability": 1.0 + }, + { + "word": " and", + "start": 1619.94, + "end": 1620.16, + "probability": 0.80615234375 + }, + { + "word": " social", + "start": 1620.16, + "end": 1620.46, + "probability": 0.99951171875 + }, + { + "word": " engineer", + "start": 1620.46, + "end": 1621.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 1621.0, + "end": 1621.42, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 1621.42, + "end": 1621.86, + "probability": 1.0 + }, + { + "word": " your", + "start": 1621.86, + "end": 1622.12, + "probability": 1.0 + }, + { + "word": " bank.", + "start": 1622.12, + "end": 1622.46, + "probability": 1.0 + } + ] + }, + { + "id": 805, + "text": "It looks like your bank is asking you to like a phishing experiment, phishing experiment or spear phishing.", + "start": 1622.64, + "end": 1628.4, + "words": [ + { + "word": " It", + "start": 1622.64, + "end": 1622.84, + "probability": 0.99951171875 + }, + { + "word": " looks", + "start": 1622.84, + "end": 1623.1, + "probability": 1.0 + }, + { + "word": " like", + "start": 1623.1, + "end": 1623.4, + "probability": 1.0 + }, + { + "word": " your", + "start": 1623.4, + "end": 1623.58, + "probability": 1.0 + }, + { + "word": " bank", + "start": 1623.58, + "end": 1623.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 1623.9, + "end": 1624.12, + "probability": 1.0 + }, + { + "word": " asking", + "start": 1624.12, + "end": 1624.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 1624.48, + "end": 1624.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1624.82, + "end": 1624.92, + "probability": 0.8779296875 + }, + { + "word": " like", + "start": 1624.92, + "end": 1625.18, + "probability": 0.0169677734375 + }, + { + "word": " a", + "start": 1625.18, + "end": 1625.38, + "probability": 1.0 + }, + { + "word": " phishing", + "start": 1625.38, + "end": 1625.64, + "probability": 0.857421875 + }, + { + "word": " experiment,", + "start": 1625.64, + "end": 1626.04, + "probability": 0.97314453125 + }, + { + "word": " phishing", + "start": 1626.28, + "end": 1626.58, + "probability": 0.82275390625 + }, + { + "word": " experiment", + "start": 1626.58, + "end": 1627.0, + "probability": 0.9853515625 + }, + { + "word": " or", + "start": 1627.0, + "end": 1627.6, + "probability": 0.9912109375 + }, + { + "word": " spear", + "start": 1627.6, + "end": 1627.82, + "probability": 0.984375 + }, + { + "word": " phishing.", + "start": 1627.82, + "end": 1628.4, + "probability": 0.98291015625 + } + ] + }, + { + "id": 806, + "text": "Even spear phishing is where they have your contact information, especially with all these numbers.", + "start": 1628.4, + "end": 1635.72, + "words": [ + { + "word": " Even", + "start": 1628.4, + "end": 1628.86, + "probability": 0.97998046875 + }, + { + "word": " spear", + "start": 1628.86, + "end": 1629.82, + "probability": 0.99853515625 + }, + { + "word": " phishing", + "start": 1629.82, + "end": 1630.24, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 1630.24, + "end": 1630.44, + "probability": 1.0 + }, + { + "word": " where", + "start": 1630.44, + "end": 1630.6, + "probability": 1.0 + }, + { + "word": " they", + "start": 1630.6, + "end": 1630.74, + "probability": 1.0 + }, + { + "word": " have", + "start": 1630.74, + "end": 1631.06, + "probability": 1.0 + }, + { + "word": " your", + "start": 1631.06, + "end": 1631.38, + "probability": 1.0 + }, + { + "word": " contact", + "start": 1631.38, + "end": 1631.92, + "probability": 1.0 + }, + { + "word": " information,", + "start": 1631.92, + "end": 1632.44, + "probability": 1.0 + }, + { + "word": " especially", + "start": 1632.72, + "end": 1633.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 1633.0, + "end": 1633.36, + "probability": 1.0 + }, + { + "word": " all", + "start": 1633.36, + "end": 1633.74, + "probability": 1.0 + }, + { + "word": " these", + "start": 1633.74, + "end": 1634.04, + "probability": 1.0 + }, + { + "word": " numbers.", + "start": 1634.04, + "end": 1635.72, + "probability": 0.97119140625 + } + ] + }, + { + "id": 807, + "text": "And sites that have been compromised so they can directly say Mr.", + "start": 1635.84, + "end": 1639.64, + "words": [ + { + "word": " And", + "start": 1635.84, + "end": 1636.22, + "probability": 0.0131378173828125 + }, + { + "word": " sites", + "start": 1636.22, + "end": 1636.6, + "probability": 0.9765625 + }, + { + "word": " that", + "start": 1636.6, + "end": 1636.84, + "probability": 0.9892578125 + }, + { + "word": " have", + "start": 1636.84, + "end": 1636.96, + "probability": 0.99609375 + }, + { + "word": " been", + "start": 1636.96, + "end": 1637.08, + "probability": 0.99365234375 + }, + { + "word": " compromised", + "start": 1637.08, + "end": 1637.48, + "probability": 0.990234375 + }, + { + "word": " so", + "start": 1637.48, + "end": 1637.98, + "probability": 0.2012939453125 + }, + { + "word": " they", + "start": 1637.98, + "end": 1638.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 1638.16, + "end": 1638.34, + "probability": 0.99951171875 + }, + { + "word": " directly", + "start": 1638.34, + "end": 1638.7, + "probability": 0.99853515625 + }, + { + "word": " say", + "start": 1638.7, + "end": 1639.12, + "probability": 0.99951171875 + }, + { + "word": " Mr.", + "start": 1639.12, + "end": 1639.64, + "probability": 0.91943359375 + } + ] + }, + { + "id": 808, + "text": "Mrs.", + "start": 1639.82, + "end": 1639.98, + "words": [ + { + "word": " Mrs.", + "start": 1639.82, + "end": 1639.98, + "probability": 0.25927734375 + } + ] + }, + { + "id": 809, + "text": "Jones.", + "start": 1640.12, + "end": 1640.52, + "words": [ + { + "word": " Jones.", + "start": 1640.12, + "end": 1640.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 810, + "text": "Thanks, Equifax.", + "start": 1640.72, + "end": 1641.44, + "words": [ + { + "word": " Thanks,", + "start": 1640.72, + "end": 1640.9, + "probability": 0.994140625 + }, + { + "word": " Equifax.", + "start": 1640.94, + "end": 1641.44, + "probability": 0.99755859375 + } + ] + }, + { + "id": 811, + "text": "Yeah.", + "start": 1641.72, + "end": 1642.28, + "words": [ + { + "word": " Yeah.", + "start": 1641.72, + "end": 1642.28, + "probability": 0.98876953125 + } + ] + }, + { + "id": 812, + "text": "And hey, Target also.", + "start": 1642.4, + "end": 1644.42, + "words": [ + { + "word": " And", + "start": 1642.4, + "end": 1642.9, + "probability": 0.9892578125 + }, + { + "word": " hey,", + "start": 1642.9, + "end": 1643.36, + "probability": 0.2230224609375 + }, + { + "word": " Target", + "start": 1643.54, + "end": 1643.96, + "probability": 0.998046875 + }, + { + "word": " also.", + "start": 1643.96, + "end": 1644.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 813, + "text": "Right.", + "start": 1644.86, + "end": 1644.96, + "words": [ + { + "word": " Right.", + "start": 1644.86, + "end": 1644.96, + "probability": 0.177734375 + } + ] + }, + { + "id": 814, + "text": "Home Depot.", + "start": 1645.12, + "end": 1645.94, + "words": [ + { + "word": " Home", + "start": 1645.12, + "end": 1645.68, + "probability": 0.99951171875 + }, + { + "word": " Depot.", + "start": 1645.68, + "end": 1645.94, + "probability": 1.0 + } + ] + }, + { + "id": 815, + "text": "Home Depot.", + "start": 1646.16, + "end": 1646.88, + "words": [ + { + "word": " Home", + "start": 1646.16, + "end": 1646.52, + "probability": 0.9990234375 + }, + { + "word": " Depot.", + "start": 1646.52, + "end": 1646.88, + "probability": 1.0 + } + ] + }, + { + "id": 816, + "text": "I mean, the list goes on for.", + "start": 1646.9, + "end": 1648.38, + "words": [ + { + "word": " I", + "start": 1646.9, + "end": 1647.2, + "probability": 0.994140625 + }, + { + "word": " mean,", + "start": 1647.2, + "end": 1647.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1647.4, + "end": 1647.54, + "probability": 1.0 + }, + { + "word": " list", + "start": 1647.54, + "end": 1647.72, + "probability": 1.0 + }, + { + "word": " goes", + "start": 1647.72, + "end": 1647.9, + "probability": 1.0 + }, + { + "word": " on", + "start": 1647.9, + "end": 1648.16, + "probability": 1.0 + }, + { + "word": " for.", + "start": 1648.16, + "end": 1648.38, + "probability": 0.15380859375 + } + ] + }, + { + "id": 817, + "text": "So just hang up.", + "start": 1648.76, + "end": 1651.2, + "words": [ + { + "word": " So", + "start": 1648.76, + "end": 1649.32, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1649.32, + "end": 1650.64, + "probability": 0.92919921875 + }, + { + "word": " hang", + "start": 1650.64, + "end": 1650.94, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1650.94, + "end": 1651.2, + "probability": 1.0 + } + ] + }, + { + "id": 818, + "text": "Call the known good.", + "start": 1651.5, + "end": 1653.36, + "words": [ + { + "word": " Call", + "start": 1651.5, + "end": 1652.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1652.06, + "end": 1652.84, + "probability": 0.9970703125 + }, + { + "word": " known", + "start": 1652.84, + "end": 1653.04, + "probability": 0.99365234375 + }, + { + "word": " good.", + "start": 1653.04, + "end": 1653.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 819, + "text": "Turn your credit card over.", + "start": 1653.42, + "end": 1654.92, + "words": [ + { + "word": " Turn", + "start": 1653.42, + "end": 1653.78, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 1653.78, + "end": 1654.06, + "probability": 1.0 + }, + { + "word": " credit", + "start": 1654.06, + "end": 1654.34, + "probability": 1.0 + }, + { + "word": " card", + "start": 1654.34, + "end": 1654.62, + "probability": 1.0 + }, + { + "word": " over.", + "start": 1654.62, + "end": 1654.92, + "probability": 1.0 + } + ] + }, + { + "id": 820, + "text": "Call them.", + "start": 1655.04, + "end": 1655.8, + "words": [ + { + "word": " Call", + "start": 1655.04, + "end": 1655.42, + "probability": 0.99951171875 + }, + { + "word": " them.", + "start": 1655.42, + "end": 1655.8, + "probability": 1.0 + } + ] + }, + { + "id": 821, + "text": "And then to go to help the cause, which is time up.", + "start": 1656.24, + "end": 1662.46, + "words": [ + { + "word": " And", + "start": 1656.24, + "end": 1656.8, + "probability": 0.99169921875 + }, + { + "word": " then", + "start": 1656.8, + "end": 1657.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 1657.04, + "end": 1657.94, + "probability": 0.99853515625 + }, + { + "word": " go", + "start": 1657.94, + "end": 1658.18, + "probability": 0.97509765625 + }, + { + "word": " to", + "start": 1658.18, + "end": 1658.92, + "probability": 0.95166015625 + }, + { + "word": " help", + "start": 1658.92, + "end": 1660.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1660.06, + "end": 1660.24, + "probability": 1.0 + }, + { + "word": " cause,", + "start": 1660.24, + "end": 1660.52, + "probability": 1.0 + }, + { + "word": " which", + "start": 1660.84, + "end": 1661.48, + "probability": 1.0 + }, + { + "word": " is", + "start": 1661.48, + "end": 1661.68, + "probability": 1.0 + }, + { + "word": " time", + "start": 1661.68, + "end": 1662.12, + "probability": 0.564453125 + }, + { + "word": " up.", + "start": 1662.12, + "end": 1662.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 822, + "text": "Don't hang up.", + "start": 1662.46, + "end": 1663.44, + "words": [ + { + "word": " Don't", + "start": 1662.46, + "end": 1662.9, + "probability": 0.9990234375 + }, + { + "word": " hang", + "start": 1662.9, + "end": 1663.04, + "probability": 1.0 + }, + { + "word": " up.", + "start": 1663.04, + "end": 1663.44, + "probability": 1.0 + } + ] + }, + { + "id": 823, + "text": "Is just talk to them.", + "start": 1663.66, + "end": 1665.42, + "words": [ + { + "word": " Is", + "start": 1663.66, + "end": 1664.22, + "probability": 0.6748046875 + }, + { + "word": " just", + "start": 1664.22, + "end": 1664.76, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 1664.76, + "end": 1665.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 1665.18, + "end": 1665.28, + "probability": 1.0 + }, + { + "word": " them.", + "start": 1665.28, + "end": 1665.42, + "probability": 0.90673828125 + } + ] + }, + { + "id": 824, + "text": "Yeah.", + "start": 1665.44, + "end": 1665.82, + "words": [ + { + "word": " Yeah.", + "start": 1665.44, + "end": 1665.82, + "probability": 0.01556396484375 + } + ] + }, + { + "id": 825, + "text": "I don't hear you.", + "start": 1665.84, + "end": 1666.44, + "words": [ + { + "word": " I", + "start": 1665.84, + "end": 1665.96, + "probability": 0.91455078125 + }, + { + "word": " don't", + "start": 1665.96, + "end": 1666.12, + "probability": 0.99853515625 + }, + { + "word": " hear", + "start": 1666.12, + "end": 1666.3, + "probability": 0.9970703125 + }, + { + "word": " you.", + "start": 1666.3, + "end": 1666.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 826, + "text": "What did you say?", + "start": 1666.46, + "end": 1667.08, + "words": [ + { + "word": " What", + "start": 1666.46, + "end": 1666.54, + "probability": 0.99609375 + }, + { + "word": " did", + "start": 1666.54, + "end": 1666.66, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1666.66, + "end": 1666.8, + "probability": 1.0 + }, + { + "word": " say?", + "start": 1666.8, + "end": 1667.08, + "probability": 1.0 + } + ] + }, + { + "id": 827, + "text": "If you want ideas on how to time up, go to YouTube.", + "start": 1667.2, + "end": 1672.04, + "words": [ + { + "word": " If", + "start": 1667.2, + "end": 1667.78, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 1667.78, + "end": 1667.94, + "probability": 1.0 + }, + { + "word": " want", + "start": 1667.94, + "end": 1668.18, + "probability": 0.99951171875 + }, + { + "word": " ideas", + "start": 1668.18, + "end": 1669.42, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 1669.42, + "end": 1669.72, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 1669.72, + "end": 1669.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 1669.92, + "end": 1670.08, + "probability": 1.0 + }, + { + "word": " time", + "start": 1670.08, + "end": 1670.38, + "probability": 0.133544921875 + }, + { + "word": " up,", + "start": 1670.38, + "end": 1670.58, + "probability": 0.98388671875 + }, + { + "word": " go", + "start": 1670.68, + "end": 1671.36, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1671.36, + "end": 1671.66, + "probability": 1.0 + }, + { + "word": " YouTube.", + "start": 1671.66, + "end": 1672.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 828, + "text": "Go look at scam baiting.", + "start": 1672.16, + "end": 1674.22, + "words": [ + { + "word": " Go", + "start": 1672.16, + "end": 1672.6, + "probability": 0.9990234375 + }, + { + "word": " look", + "start": 1672.6, + "end": 1672.96, + "probability": 0.998046875 + }, + { + "word": " at", + "start": 1672.96, + "end": 1673.22, + "probability": 1.0 + }, + { + "word": " scam", + "start": 1673.22, + "end": 1673.68, + "probability": 0.46826171875 + }, + { + "word": " baiting.", + "start": 1673.68, + "end": 1674.22, + "probability": 0.9853515625 + } + ] + }, + { + "id": 829, + "text": "Go look at IRS scams.", + "start": 1674.22, + "end": 1677.1, + "words": [ + { + "word": " Go", + "start": 1674.22, + "end": 1674.4, + "probability": 0.99853515625 + }, + { + "word": " look", + "start": 1674.4, + "end": 1674.7, + "probability": 1.0 + }, + { + "word": " at", + "start": 1674.7, + "end": 1674.9, + "probability": 1.0 + }, + { + "word": " IRS", + "start": 1674.9, + "end": 1675.34, + "probability": 0.99951171875 + }, + { + "word": " scams.", + "start": 1675.34, + "end": 1677.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 830, + "text": "You'll find them all there.", + "start": 1678.26, + "end": 1679.66, + "words": [ + { + "word": " You'll", + "start": 1678.26, + "end": 1678.86, + "probability": 0.99755859375 + }, + { + "word": " find", + "start": 1678.86, + "end": 1679.16, + "probability": 1.0 + }, + { + "word": " them", + "start": 1679.16, + "end": 1679.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 1679.3, + "end": 1679.46, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1679.46, + "end": 1679.66, + "probability": 0.99462890625 + } + ] + }, + { + "id": 831, + "text": "Hundreds of thousands.", + "start": 1679.72, + "end": 1680.72, + "words": [ + { + "word": " Hundreds", + "start": 1679.72, + "end": 1680.08, + "probability": 0.98779296875 + }, + { + "word": " of", + "start": 1680.08, + "end": 1680.34, + "probability": 1.0 + }, + { + "word": " thousands.", + "start": 1680.34, + "end": 1680.72, + "probability": 1.0 + } + ] + }, + { + "id": 832, + "text": "Some are enjoyable and pleasurable.", + "start": 1681.24, + "end": 1683.48, + "words": [ + { + "word": " Some", + "start": 1681.24, + "end": 1681.84, + "probability": 0.99755859375 + }, + { + "word": " are", + "start": 1681.84, + "end": 1682.02, + "probability": 1.0 + }, + { + "word": " enjoyable", + "start": 1682.02, + "end": 1682.58, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1682.58, + "end": 1682.9, + "probability": 0.99951171875 + }, + { + "word": " pleasurable.", + "start": 1682.9, + "end": 1683.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 833, + "text": "There's cartoons and funny names.", + "start": 1683.58, + "end": 1686.36, + "words": [ + { + "word": " There's", + "start": 1683.58, + "end": 1683.96, + "probability": 0.998046875 + }, + { + "word": " cartoons", + "start": 1683.96, + "end": 1684.44, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 1684.44, + "end": 1684.96, + "probability": 0.99853515625 + }, + { + "word": " funny", + "start": 1684.96, + "end": 1685.88, + "probability": 0.99951171875 + }, + { + "word": " names.", + "start": 1685.88, + "end": 1686.36, + "probability": 1.0 + } + ] + }, + { + "id": 834, + "text": "We have Wonder Woman calling with a voice changer and just all kinds of other people.", + "start": 1687.1999999999998, + "end": 1694.74, + "words": [ + { + "word": " We", + "start": 1686.9, + "end": 1687.2, + "probability": 0.84765625 + }, + { + "word": " have", + "start": 1687.2, + "end": 1687.52, + "probability": 1.0 + }, + { + "word": " Wonder", + "start": 1687.52, + "end": 1689.2, + "probability": 0.97705078125 + }, + { + "word": " Woman", + "start": 1689.2, + "end": 1689.56, + "probability": 1.0 + }, + { + "word": " calling", + "start": 1689.56, + "end": 1689.96, + "probability": 0.974609375 + }, + { + "word": " with", + "start": 1689.96, + "end": 1690.4, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1690.4, + "end": 1690.52, + "probability": 0.99951171875 + }, + { + "word": " voice", + "start": 1690.52, + "end": 1690.74, + "probability": 0.99951171875 + }, + { + "word": " changer", + "start": 1690.74, + "end": 1691.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 1691.2, + "end": 1692.3, + "probability": 0.58251953125 + }, + { + "word": " just", + "start": 1692.3, + "end": 1693.46, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 1693.46, + "end": 1693.74, + "probability": 1.0 + }, + { + "word": " kinds", + "start": 1693.74, + "end": 1693.96, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1693.96, + "end": 1694.2, + "probability": 1.0 + }, + { + "word": " other", + "start": 1694.2, + "end": 1694.38, + "probability": 1.0 + }, + { + "word": " people.", + "start": 1694.38, + "end": 1694.74, + "probability": 1.0 + } + ] + }, + { + "id": 835, + "text": "Yeah.", + "start": 1694.88, + "end": 1695.14, + "words": [ + { + "word": " Yeah.", + "start": 1694.88, + "end": 1695.14, + "probability": 0.2578125 + } + ] + }, + { + "id": 836, + "text": "There's a lot.", + "start": 1695.14, + "end": 1695.66, + "words": [ + { + "word": " There's", + "start": 1695.14, + "end": 1695.52, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 1695.52, + "end": 1695.56, + "probability": 0.99951171875 + }, + { + "word": " lot.", + "start": 1695.56, + "end": 1695.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 837, + "text": "There's a lot of sound boards that are out there.", + "start": 1695.66, + "end": 1696.74, + "words": [ + { + "word": " There's", + "start": 1695.66, + "end": 1695.66, + "probability": 0.44189453125 + }, + { + "word": " a", + "start": 1695.66, + "end": 1695.66, + "probability": 0.96533203125 + }, + { + "word": " lot", + "start": 1695.66, + "end": 1695.66, + "probability": 0.982421875 + }, + { + "word": " of", + "start": 1695.66, + "end": 1695.76, + "probability": 0.9990234375 + }, + { + "word": " sound", + "start": 1695.76, + "end": 1695.92, + "probability": 0.99267578125 + }, + { + "word": " boards", + "start": 1695.92, + "end": 1696.22, + "probability": 0.481201171875 + }, + { + "word": " that", + "start": 1696.22, + "end": 1696.42, + "probability": 0.953125 + }, + { + "word": " are", + "start": 1696.42, + "end": 1696.52, + "probability": 0.9951171875 + }, + { + "word": " out", + "start": 1696.52, + "end": 1696.66, + "probability": 0.974609375 + }, + { + "word": " there.", + "start": 1696.66, + "end": 1696.74, + "probability": 0.9873046875 + } + ] + }, + { + "id": 838, + "text": "Sound boards.", + "start": 1696.76, + "end": 1697.18, + "words": [ + { + "word": " Sound", + "start": 1696.76, + "end": 1697.08, + "probability": 0.81005859375 + }, + { + "word": " boards.", + "start": 1697.08, + "end": 1697.18, + "probability": 0.99609375 + } + ] + }, + { + "id": 839, + "text": "Yeah.", + "start": 1697.36, + "end": 1697.62, + "words": [ + { + "word": " Yeah.", + "start": 1697.36, + "end": 1697.62, + "probability": 0.89306640625 + } + ] + }, + { + "id": 840, + "text": "There's one of them that is just, it's a riot to listen to.", + "start": 1699.0, + "end": 1702.72, + "words": [ + { + "word": " There's", + "start": 1699.0, + "end": 1699.36, + "probability": 0.90966796875 + }, + { + "word": " one", + "start": 1699.36, + "end": 1699.46, + "probability": 0.86669921875 + }, + { + "word": " of", + "start": 1699.46, + "end": 1699.66, + "probability": 0.9990234375 + }, + { + "word": " them", + "start": 1699.66, + "end": 1699.8, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1699.8, + "end": 1699.98, + "probability": 0.9921875 + }, + { + "word": " is", + "start": 1699.98, + "end": 1700.2, + "probability": 0.998046875 + }, + { + "word": " just,", + "start": 1700.2, + "end": 1700.92, + "probability": 0.92919921875 + }, + { + "word": " it's", + "start": 1701.62, + "end": 1701.88, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1701.88, + "end": 1701.94, + "probability": 0.99951171875 + }, + { + "word": " riot", + "start": 1701.94, + "end": 1702.22, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 1702.22, + "end": 1702.38, + "probability": 0.99951171875 + }, + { + "word": " listen", + "start": 1702.38, + "end": 1702.56, + "probability": 1.0 + }, + { + "word": " to.", + "start": 1702.56, + "end": 1702.72, + "probability": 1.0 + } + ] + }, + { + "id": 841, + "text": "It's using the Arnold Schwarzenegger sound board to respond to people trying to scam them.", + "start": 1702.76, + "end": 1708.54, + "words": [ + { + "word": " It's", + "start": 1702.76, + "end": 1702.94, + "probability": 0.99951171875 + }, + { + "word": " using", + "start": 1702.94, + "end": 1703.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1703.18, + "end": 1703.48, + "probability": 1.0 + }, + { + "word": " Arnold", + "start": 1703.48, + "end": 1703.84, + "probability": 0.9990234375 + }, + { + "word": " Schwarzenegger", + "start": 1703.84, + "end": 1704.4, + "probability": 0.99951171875 + }, + { + "word": " sound", + "start": 1704.4, + "end": 1704.64, + "probability": 0.99462890625 + }, + { + "word": " board", + "start": 1704.64, + "end": 1704.84, + "probability": 0.94384765625 + }, + { + "word": " to", + "start": 1704.84, + "end": 1705.28, + "probability": 0.998046875 + }, + { + "word": " respond", + "start": 1705.28, + "end": 1706.66, + "probability": 0.9814453125 + }, + { + "word": " to", + "start": 1706.66, + "end": 1707.06, + "probability": 0.9990234375 + }, + { + "word": " people", + "start": 1707.06, + "end": 1707.58, + "probability": 0.99560546875 + }, + { + "word": " trying", + "start": 1707.58, + "end": 1707.94, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1707.94, + "end": 1708.06, + "probability": 1.0 + }, + { + "word": " scam", + "start": 1708.06, + "end": 1708.28, + "probability": 0.99853515625 + }, + { + "word": " them.", + "start": 1708.28, + "end": 1708.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 842, + "text": "Or it's asking things like, who is your daddy and what does he do?", + "start": 1709.72, + "end": 1712.24, + "words": [ + { + "word": " Or", + "start": 1709.72, + "end": 1710.08, + "probability": 0.498779296875 + }, + { + "word": " it's", + "start": 1710.08, + "end": 1710.26, + "probability": 0.9990234375 + }, + { + "word": " asking", + "start": 1710.26, + "end": 1710.48, + "probability": 1.0 + }, + { + "word": " things", + "start": 1710.48, + "end": 1710.7, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1710.7, + "end": 1711.02, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 1711.12, + "end": 1711.22, + "probability": 0.98486328125 + }, + { + "word": " is", + "start": 1711.22, + "end": 1711.32, + "probability": 0.875 + }, + { + "word": " your", + "start": 1711.32, + "end": 1711.44, + "probability": 1.0 + }, + { + "word": " daddy", + "start": 1711.44, + "end": 1711.66, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 1711.66, + "end": 1711.8, + "probability": 0.97509765625 + }, + { + "word": " what", + "start": 1711.8, + "end": 1711.92, + "probability": 1.0 + }, + { + "word": " does", + "start": 1711.92, + "end": 1712.02, + "probability": 1.0 + }, + { + "word": " he", + "start": 1712.02, + "end": 1712.08, + "probability": 1.0 + }, + { + "word": " do?", + "start": 1712.08, + "end": 1712.24, + "probability": 1.0 + } + ] + }, + { + "id": 843, + "text": "You know, it's pretty, it's great if you are, if you're cognizant of these things, if you can recognize the scams.", + "start": 1712.76, + "end": 1719.94, + "words": [ + { + "word": " You", + "start": 1712.76, + "end": 1712.8, + "probability": 0.5537109375 + }, + { + "word": " know,", + "start": 1712.8, + "end": 1712.94, + "probability": 1.0 + }, + { + "word": " it's", + "start": 1713.0, + "end": 1713.3, + "probability": 1.0 + }, + { + "word": " pretty,", + "start": 1713.3, + "end": 1714.24, + "probability": 0.86474609375 + }, + { + "word": " it's", + "start": 1714.52, + "end": 1715.2, + "probability": 1.0 + }, + { + "word": " great", + "start": 1715.2, + "end": 1715.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 1715.5, + "end": 1715.84, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1715.84, + "end": 1716.0, + "probability": 1.0 + }, + { + "word": " are,", + "start": 1716.0, + "end": 1716.24, + "probability": 0.97265625 + }, + { + "word": " if", + "start": 1716.42, + "end": 1716.76, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1716.76, + "end": 1716.96, + "probability": 0.9814453125 + }, + { + "word": " cognizant", + "start": 1716.96, + "end": 1718.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1718.06, + "end": 1718.2, + "probability": 1.0 + }, + { + "word": " these", + "start": 1718.2, + "end": 1718.32, + "probability": 1.0 + }, + { + "word": " things,", + "start": 1718.32, + "end": 1718.46, + "probability": 1.0 + }, + { + "word": " if", + "start": 1718.5, + "end": 1718.6, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1718.6, + "end": 1718.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 1718.68, + "end": 1718.82, + "probability": 1.0 + }, + { + "word": " recognize", + "start": 1718.82, + "end": 1719.22, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1719.22, + "end": 1719.48, + "probability": 1.0 + }, + { + "word": " scams.", + "start": 1719.48, + "end": 1719.94, + "probability": 1.0 + } + ] + }, + { + "id": 844, + "text": "And it's just a lot of fun to watch them waste the time of the scammers.", + "start": 1719.96, + "end": 1724.48, + "words": [ + { + "word": " And", + "start": 1719.96, + "end": 1720.26, + "probability": 0.974609375 + }, + { + "word": " it's", + "start": 1720.26, + "end": 1721.96, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 1721.96, + "end": 1722.24, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 1722.24, + "end": 1722.38, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1722.38, + "end": 1722.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 1722.5, + "end": 1722.58, + "probability": 1.0 + }, + { + "word": " fun", + "start": 1722.58, + "end": 1722.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 1722.7, + "end": 1722.82, + "probability": 0.99951171875 + }, + { + "word": " watch", + "start": 1722.82, + "end": 1722.98, + "probability": 1.0 + }, + { + "word": " them", + "start": 1722.98, + "end": 1723.16, + "probability": 0.99951171875 + }, + { + "word": " waste", + "start": 1723.16, + "end": 1723.4, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 1723.4, + "end": 1723.64, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 1723.64, + "end": 1723.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1723.92, + "end": 1724.04, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 1724.04, + "end": 1724.12, + "probability": 0.99951171875 + }, + { + "word": " scammers.", + "start": 1724.12, + "end": 1724.48, + "probability": 1.0 + } + ] + }, + { + "id": 845, + "text": "Yeah.", + "start": 1724.82, + "end": 1725.18, + "words": [ + { + "word": " Yeah.", + "start": 1724.82, + "end": 1725.18, + "probability": 0.021759033203125 + } + ] + }, + { + "id": 846, + "text": "Yeah.", + "start": 1725.28, + "end": 1725.52, + "words": [ + { + "word": " Yeah.", + "start": 1725.28, + "end": 1725.52, + "probability": 0.335693359375 + } + ] + }, + { + "id": 847, + "text": "Yeah.", + "start": 1725.52, + "end": 1725.64, + "words": [ + { + "word": " Yeah.", + "start": 1725.52, + "end": 1725.64, + "probability": 0.79443359375 + } + ] + }, + { + "id": 848, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 849, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 850, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 851, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 852, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 853, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 854, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 855, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 856, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 857, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 858, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 859, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 860, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 861, + "text": "", + "start": 1725.64, + "end": 1725.64, + "words": [] + }, + { + "id": 862, + "text": "There's the other side of that too, where there's people that are taking it to the scammers and basically being destructive to the other side.", + "start": 1725.66, + "end": 1735.68, + "words": [ + { + "word": " There's", + "start": 1725.66, + "end": 1725.78, + "probability": 0.95849609375 + }, + { + "word": " the", + "start": 1725.78, + "end": 1726.2, + "probability": 0.98828125 + }, + { + "word": " other", + "start": 1726.2, + "end": 1726.64, + "probability": 1.0 + }, + { + "word": " side", + "start": 1726.64, + "end": 1726.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 1726.8, + "end": 1726.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 1726.88, + "end": 1726.96, + "probability": 1.0 + }, + { + "word": " too,", + "start": 1726.96, + "end": 1727.16, + "probability": 0.3486328125 + }, + { + "word": " where", + "start": 1727.2, + "end": 1727.3, + "probability": 0.98974609375 + }, + { + "word": " there's", + "start": 1727.3, + "end": 1727.46, + "probability": 0.96240234375 + }, + { + "word": " people", + "start": 1727.46, + "end": 1727.58, + "probability": 0.9970703125 + }, + { + "word": " that", + "start": 1727.58, + "end": 1727.86, + "probability": 1.0 + }, + { + "word": " are", + "start": 1727.86, + "end": 1727.96, + "probability": 1.0 + }, + { + "word": " taking", + "start": 1727.96, + "end": 1728.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 1728.62, + "end": 1728.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 1728.94, + "end": 1729.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 1729.1, + "end": 1729.3, + "probability": 1.0 + }, + { + "word": " scammers", + "start": 1729.3, + "end": 1729.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 1729.66, + "end": 1730.04, + "probability": 0.97119140625 + }, + { + "word": " basically", + "start": 1730.04, + "end": 1731.8, + "probability": 0.9970703125 + }, + { + "word": " being", + "start": 1731.8, + "end": 1732.76, + "probability": 1.0 + }, + { + "word": " destructive", + "start": 1732.76, + "end": 1734.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 1734.12, + "end": 1734.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1734.86, + "end": 1735.02, + "probability": 1.0 + }, + { + "word": " other", + "start": 1735.02, + "end": 1735.26, + "probability": 1.0 + }, + { + "word": " side.", + "start": 1735.26, + "end": 1735.68, + "probability": 1.0 + } + ] + }, + { + "id": 863, + "text": "As far as they'll get somebody to remote into their computer.", + "start": 1735.82, + "end": 1740.22, + "words": [ + { + "word": " As", + "start": 1735.82, + "end": 1736.34, + "probability": 0.92138671875 + }, + { + "word": " far", + "start": 1736.34, + "end": 1736.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 1736.5, + "end": 1736.94, + "probability": 1.0 + }, + { + "word": " they'll", + "start": 1736.94, + "end": 1738.34, + "probability": 0.8798828125 + }, + { + "word": " get", + "start": 1738.34, + "end": 1738.5, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 1738.5, + "end": 1738.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 1738.76, + "end": 1739.0, + "probability": 1.0 + }, + { + "word": " remote", + "start": 1739.0, + "end": 1739.4, + "probability": 0.99755859375 + }, + { + "word": " into", + "start": 1739.4, + "end": 1739.66, + "probability": 0.99609375 + }, + { + "word": " their", + "start": 1739.66, + "end": 1739.88, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1739.88, + "end": 1740.22, + "probability": 1.0 + } + ] + }, + { + "id": 864, + "text": "And one of the ones that stood out to me was that they left a file that looked like a Bitcoin wallet in a folder on their desktop.", + "start": 1741.3, + "end": 1748.16, + "words": [ + { + "word": " And", + "start": 1741.3, + "end": 1741.82, + "probability": 0.853515625 + }, + { + "word": " one", + "start": 1741.82, + "end": 1742.34, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 1742.34, + "end": 1742.44, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1742.44, + "end": 1742.46, + "probability": 1.0 + }, + { + "word": " ones", + "start": 1742.46, + "end": 1742.58, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1742.58, + "end": 1742.66, + "probability": 1.0 + }, + { + "word": " stood", + "start": 1742.66, + "end": 1742.84, + "probability": 1.0 + }, + { + "word": " out", + "start": 1742.84, + "end": 1743.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 1743.0, + "end": 1743.12, + "probability": 1.0 + }, + { + "word": " me", + "start": 1743.12, + "end": 1743.26, + "probability": 1.0 + }, + { + "word": " was", + "start": 1743.26, + "end": 1743.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 1743.44, + "end": 1743.7, + "probability": 1.0 + }, + { + "word": " they", + "start": 1743.7, + "end": 1744.08, + "probability": 1.0 + }, + { + "word": " left", + "start": 1744.08, + "end": 1744.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 1744.3, + "end": 1744.58, + "probability": 1.0 + }, + { + "word": " file", + "start": 1744.58, + "end": 1745.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 1745.06, + "end": 1745.28, + "probability": 1.0 + }, + { + "word": " looked", + "start": 1745.28, + "end": 1745.48, + "probability": 1.0 + }, + { + "word": " like", + "start": 1745.48, + "end": 1745.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 1745.68, + "end": 1745.82, + "probability": 1.0 + }, + { + "word": " Bitcoin", + "start": 1745.82, + "end": 1746.12, + "probability": 0.9482421875 + }, + { + "word": " wallet", + "start": 1746.12, + "end": 1746.56, + "probability": 1.0 + }, + { + "word": " in", + "start": 1746.56, + "end": 1747.18, + "probability": 0.998046875 + }, + { + "word": " a", + "start": 1747.18, + "end": 1747.26, + "probability": 1.0 + }, + { + "word": " folder", + "start": 1747.26, + "end": 1747.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 1747.54, + "end": 1747.76, + "probability": 1.0 + }, + { + "word": " their", + "start": 1747.76, + "end": 1747.84, + "probability": 1.0 + }, + { + "word": " desktop.", + "start": 1747.84, + "end": 1748.16, + "probability": 1.0 + } + ] + }, + { + "id": 865, + "text": "And, but that file actually was a, basically a Trojan.", + "start": 1749.6200000000001, + "end": 1755.38, + "words": [ + { + "word": " And,", + "start": 1749.6200000000001, + "end": 1750.14, + "probability": 0.02716064453125 + }, + { + "word": " but", + "start": 1750.14, + "end": 1750.66, + "probability": 0.9814453125 + }, + { + "word": " that", + "start": 1750.66, + "end": 1751.02, + "probability": 1.0 + }, + { + "word": " file", + "start": 1751.02, + "end": 1751.3, + "probability": 1.0 + }, + { + "word": " actually", + "start": 1751.3, + "end": 1751.82, + "probability": 1.0 + }, + { + "word": " was", + "start": 1751.82, + "end": 1752.3, + "probability": 1.0 + }, + { + "word": " a,", + "start": 1752.3, + "end": 1753.14, + "probability": 0.92919921875 + }, + { + "word": " basically", + "start": 1753.3, + "end": 1754.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 1754.74, + "end": 1754.96, + "probability": 0.99951171875 + }, + { + "word": " Trojan.", + "start": 1754.96, + "end": 1755.38, + "probability": 0.9765625 + } + ] + }, + { + "id": 866, + "text": "It was a way for, you know, he knew that the scammer would snatch that file.", + "start": 1755.66, + "end": 1762.16, + "words": [ + { + "word": " It", + "start": 1755.66, + "end": 1755.68, + "probability": 0.93212890625 + }, + { + "word": " was", + "start": 1755.68, + "end": 1755.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1755.82, + "end": 1756.0, + "probability": 1.0 + }, + { + "word": " way", + "start": 1756.0, + "end": 1756.42, + "probability": 1.0 + }, + { + "word": " for,", + "start": 1756.42, + "end": 1756.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 1757.0, + "end": 1758.66, + "probability": 0.94091796875 + }, + { + "word": " know,", + "start": 1758.66, + "end": 1758.84, + "probability": 1.0 + }, + { + "word": " he", + "start": 1758.84, + "end": 1759.0, + "probability": 1.0 + }, + { + "word": " knew", + "start": 1759.0, + "end": 1759.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 1759.24, + "end": 1759.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 1759.46, + "end": 1759.62, + "probability": 0.998046875 + }, + { + "word": " scammer", + "start": 1759.62, + "end": 1760.5, + "probability": 0.9970703125 + }, + { + "word": " would", + "start": 1760.5, + "end": 1760.78, + "probability": 1.0 + }, + { + "word": " snatch", + "start": 1760.78, + "end": 1761.52, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1761.52, + "end": 1761.78, + "probability": 1.0 + }, + { + "word": " file.", + "start": 1761.78, + "end": 1762.16, + "probability": 1.0 + } + ] + }, + { + "id": 867, + "text": "Oh yeah.", + "start": 1762.3, + "end": 1762.6, + "words": [ + { + "word": " Oh", + "start": 1762.3, + "end": 1762.48, + "probability": 0.9951171875 + }, + { + "word": " yeah.", + "start": 1762.48, + "end": 1762.6, + "probability": 0.0284271240234375 + } + ] + }, + { + "id": 868, + "text": "And take it off his computer.", + "start": 1762.72, + "end": 1764.34, + "words": [ + { + "word": " And", + "start": 1762.72, + "end": 1763.14, + "probability": 0.99853515625 + }, + { + "word": " take", + "start": 1763.14, + "end": 1763.56, + "probability": 0.8330078125 + }, + { + "word": " it", + "start": 1763.56, + "end": 1763.78, + "probability": 1.0 + }, + { + "word": " off", + "start": 1763.78, + "end": 1763.9, + "probability": 1.0 + }, + { + "word": " his", + "start": 1763.9, + "end": 1764.04, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1764.04, + "end": 1764.34, + "probability": 1.0 + } + ] + }, + { + "id": 869, + "text": "So, you know, he left the guy into his computer and he saw the guy drag that file off onto his own desktop.", + "start": 1764.48, + "end": 1772.4, + "words": [ + { + "word": " So,", + "start": 1764.48, + "end": 1764.82, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1764.96, + "end": 1765.22, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 1765.22, + "end": 1765.36, + "probability": 1.0 + }, + { + "word": " he", + "start": 1765.36, + "end": 1765.46, + "probability": 1.0 + }, + { + "word": " left", + "start": 1765.46, + "end": 1766.0, + "probability": 0.1566162109375 + }, + { + "word": " the", + "start": 1766.0, + "end": 1766.18, + "probability": 1.0 + }, + { + "word": " guy", + "start": 1766.18, + "end": 1766.56, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 1766.56, + "end": 1766.78, + "probability": 0.90087890625 + }, + { + "word": " his", + "start": 1766.78, + "end": 1766.92, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1766.92, + "end": 1767.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 1767.22, + "end": 1767.62, + "probability": 0.77392578125 + }, + { + "word": " he", + "start": 1767.62, + "end": 1768.46, + "probability": 0.982421875 + }, + { + "word": " saw", + "start": 1768.46, + "end": 1769.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 1769.66, + "end": 1769.86, + "probability": 1.0 + }, + { + "word": " guy", + "start": 1769.86, + "end": 1770.04, + "probability": 1.0 + }, + { + "word": " drag", + "start": 1770.04, + "end": 1770.34, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 1770.34, + "end": 1770.68, + "probability": 1.0 + }, + { + "word": " file", + "start": 1770.68, + "end": 1771.04, + "probability": 1.0 + }, + { + "word": " off", + "start": 1771.04, + "end": 1771.4, + "probability": 1.0 + }, + { + "word": " onto", + "start": 1771.4, + "end": 1771.64, + "probability": 1.0 + }, + { + "word": " his", + "start": 1771.64, + "end": 1771.82, + "probability": 1.0 + }, + { + "word": " own", + "start": 1771.82, + "end": 1772.02, + "probability": 1.0 + }, + { + "word": " desktop.", + "start": 1772.02, + "end": 1772.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 870, + "text": "And when he ran it, he had remote control of that guy's computer.", + "start": 1772.84, + "end": 1776.38, + "words": [ + { + "word": " And", + "start": 1772.84, + "end": 1773.28, + "probability": 1.0 + }, + { + "word": " when", + "start": 1773.28, + "end": 1773.6, + "probability": 1.0 + }, + { + "word": " he", + "start": 1773.6, + "end": 1773.72, + "probability": 1.0 + }, + { + "word": " ran", + "start": 1773.72, + "end": 1773.94, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1773.94, + "end": 1774.16, + "probability": 1.0 + }, + { + "word": " he", + "start": 1774.22, + "end": 1774.58, + "probability": 1.0 + }, + { + "word": " had", + "start": 1774.58, + "end": 1774.78, + "probability": 1.0 + }, + { + "word": " remote", + "start": 1774.78, + "end": 1775.0, + "probability": 1.0 + }, + { + "word": " control", + "start": 1775.0, + "end": 1775.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 1775.38, + "end": 1775.58, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1775.58, + "end": 1775.78, + "probability": 1.0 + }, + { + "word": " guy's", + "start": 1775.78, + "end": 1776.12, + "probability": 1.0 + }, + { + "word": " computer.", + "start": 1776.12, + "end": 1776.38, + "probability": 1.0 + } + ] + }, + { + "id": 871, + "text": "Sure.", + "start": 1776.72, + "end": 1776.98, + "words": [ + { + "word": " Sure.", + "start": 1776.72, + "end": 1776.98, + "probability": 0.86083984375 + } + ] + }, + { + "id": 872, + "text": "And then really started scaring them because he was like, yeah, well, I see your background is this.", + "start": 1777.08, + "end": 1781.9, + "words": [ + { + "word": " And", + "start": 1777.08, + "end": 1777.34, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1777.34, + "end": 1777.54, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 1777.54, + "end": 1778.28, + "probability": 0.9990234375 + }, + { + "word": " started", + "start": 1778.28, + "end": 1778.64, + "probability": 1.0 + }, + { + "word": " scaring", + "start": 1778.64, + "end": 1779.22, + "probability": 0.99951171875 + }, + { + "word": " them", + "start": 1779.22, + "end": 1779.42, + "probability": 0.99853515625 + }, + { + "word": " because", + "start": 1779.42, + "end": 1779.7, + "probability": 0.99609375 + }, + { + "word": " he", + "start": 1779.7, + "end": 1779.82, + "probability": 1.0 + }, + { + "word": " was", + "start": 1779.82, + "end": 1779.9, + "probability": 0.89013671875 + }, + { + "word": " like,", + "start": 1779.9, + "end": 1780.1, + "probability": 1.0 + }, + { + "word": " yeah,", + "start": 1780.16, + "end": 1780.32, + "probability": 0.99755859375 + }, + { + "word": " well,", + "start": 1780.32, + "end": 1780.5, + "probability": 1.0 + }, + { + "word": " I", + "start": 1780.54, + "end": 1780.62, + "probability": 1.0 + }, + { + "word": " see", + "start": 1780.62, + "end": 1780.8, + "probability": 1.0 + }, + { + "word": " your", + "start": 1780.8, + "end": 1780.9, + "probability": 1.0 + }, + { + "word": " background", + "start": 1780.9, + "end": 1781.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 1781.3, + "end": 1781.56, + "probability": 0.90185546875 + }, + { + "word": " this.", + "start": 1781.56, + "end": 1781.9, + "probability": 1.0 + } + ] + }, + { + "id": 873, + "text": "And, you know, I see what software you're using to do all of this.", + "start": 1781.94, + "end": 1785.64, + "words": [ + { + "word": " And,", + "start": 1781.94, + "end": 1782.24, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1782.3, + "end": 1782.76, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1782.76, + "end": 1783.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 1783.04, + "end": 1783.98, + "probability": 1.0 + }, + { + "word": " see", + "start": 1783.98, + "end": 1784.26, + "probability": 1.0 + }, + { + "word": " what", + "start": 1784.26, + "end": 1784.36, + "probability": 0.9990234375 + }, + { + "word": " software", + "start": 1784.36, + "end": 1784.64, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1784.64, + "end": 1784.9, + "probability": 1.0 + }, + { + "word": " using", + "start": 1784.9, + "end": 1785.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 1785.0, + "end": 1785.16, + "probability": 0.990234375 + }, + { + "word": " do", + "start": 1785.16, + "end": 1785.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 1785.3, + "end": 1785.46, + "probability": 0.97802734375 + }, + { + "word": " of", + "start": 1785.46, + "end": 1785.56, + "probability": 0.99658203125 + }, + { + "word": " this.", + "start": 1785.56, + "end": 1785.64, + "probability": 0.8994140625 + } + ] + }, + { + "id": 874, + "text": "And basically started refunding people's money from the other side, you know, locked that user out of his own computer and said, refund, refund, refund.", + "start": 1785.66, + "end": 1794.5, + "words": [ + { + "word": " And", + "start": 1785.66, + "end": 1785.92, + "probability": 0.01263427734375 + }, + { + "word": " basically", + "start": 1785.92, + "end": 1786.9, + "probability": 0.98046875 + }, + { + "word": " started", + "start": 1786.9, + "end": 1787.4, + "probability": 0.998046875 + }, + { + "word": " refunding", + "start": 1787.4, + "end": 1788.46, + "probability": 0.9990234375 + }, + { + "word": " people's", + "start": 1788.46, + "end": 1788.96, + "probability": 1.0 + }, + { + "word": " money", + "start": 1788.96, + "end": 1789.18, + "probability": 1.0 + }, + { + "word": " from", + "start": 1789.18, + "end": 1789.52, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 1789.52, + "end": 1789.66, + "probability": 1.0 + }, + { + "word": " other", + "start": 1789.66, + "end": 1789.88, + "probability": 1.0 + }, + { + "word": " side,", + "start": 1789.88, + "end": 1790.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 1790.48, + "end": 1790.68, + "probability": 0.548828125 + }, + { + "word": " know,", + "start": 1790.68, + "end": 1790.82, + "probability": 1.0 + }, + { + "word": " locked", + "start": 1790.82, + "end": 1791.12, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 1791.12, + "end": 1791.34, + "probability": 1.0 + }, + { + "word": " user", + "start": 1791.34, + "end": 1791.68, + "probability": 1.0 + }, + { + "word": " out", + "start": 1791.68, + "end": 1791.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 1791.96, + "end": 1792.08, + "probability": 1.0 + }, + { + "word": " his", + "start": 1792.08, + "end": 1792.18, + "probability": 1.0 + }, + { + "word": " own", + "start": 1792.18, + "end": 1792.36, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1792.36, + "end": 1792.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 1792.74, + "end": 1793.08, + "probability": 0.99853515625 + }, + { + "word": " said,", + "start": 1793.08, + "end": 1793.3, + "probability": 1.0 + }, + { + "word": " refund,", + "start": 1793.4, + "end": 1793.8, + "probability": 0.97265625 + }, + { + "word": " refund,", + "start": 1793.92, + "end": 1794.18, + "probability": 1.0 + }, + { + "word": " refund.", + "start": 1794.28, + "end": 1794.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 875, + "text": "And, and, and before they managed to turn the computer off, refunded about $20,000 worth of money.", + "start": 1795.0, + "end": 1800.22, + "words": [ + { + "word": " And,", + "start": 1795.0, + "end": 1795.44, + "probability": 0.998046875 + }, + { + "word": " and,", + "start": 1795.52, + "end": 1795.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 1795.8, + "end": 1796.06, + "probability": 1.0 + }, + { + "word": " before", + "start": 1796.06, + "end": 1796.3, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 1796.3, + "end": 1796.64, + "probability": 1.0 + }, + { + "word": " managed", + "start": 1796.64, + "end": 1797.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 1797.0, + "end": 1797.16, + "probability": 1.0 + }, + { + "word": " turn", + "start": 1797.16, + "end": 1797.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 1797.32, + "end": 1797.4, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1797.4, + "end": 1797.68, + "probability": 1.0 + }, + { + "word": " off,", + "start": 1797.68, + "end": 1797.92, + "probability": 1.0 + }, + { + "word": " refunded", + "start": 1797.96, + "end": 1798.4, + "probability": 0.9912109375 + }, + { + "word": " about", + "start": 1798.4, + "end": 1798.54, + "probability": 1.0 + }, + { + "word": " $20", + "start": 1798.54, + "end": 1798.78, + "probability": 1.0 + }, + { + "word": ",000", + "start": 1798.78, + "end": 1799.46, + "probability": 1.0 + }, + { + "word": " worth", + "start": 1799.46, + "end": 1799.9, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 1799.9, + "end": 1799.98, + "probability": 1.0 + }, + { + "word": " money.", + "start": 1799.98, + "end": 1800.22, + "probability": 1.0 + } + ] + }, + { + "id": 876, + "text": "And that's good on him.", + "start": 1800.36, + "end": 1803.04, + "words": [ + { + "word": " And", + "start": 1800.36, + "end": 1800.8, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 1800.8, + "end": 1802.26, + "probability": 1.0 + }, + { + "word": " good", + "start": 1802.26, + "end": 1802.48, + "probability": 0.5888671875 + }, + { + "word": " on", + "start": 1802.48, + "end": 1802.82, + "probability": 1.0 + }, + { + "word": " him.", + "start": 1802.82, + "end": 1803.04, + "probability": 1.0 + } + ] + }, + { + "id": 877, + "text": "Now he's legitimately saying, well, you know, I don't know if I should be open on this YouTube because technically what I did is illegal.", + "start": 1803.12, + "end": 1809.5, + "words": [ + { + "word": " Now", + "start": 1803.12, + "end": 1803.32, + "probability": 0.99609375 + }, + { + "word": " he's", + "start": 1803.32, + "end": 1804.34, + "probability": 0.943359375 + }, + { + "word": " legitimately", + "start": 1804.34, + "end": 1805.68, + "probability": 0.9990234375 + }, + { + "word": " saying,", + "start": 1805.68, + "end": 1806.2, + "probability": 0.99951171875 + }, + { + "word": " well,", + "start": 1806.38, + "end": 1806.54, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 1806.6, + "end": 1806.76, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 1806.76, + "end": 1806.82, + "probability": 1.0 + }, + { + "word": " I", + "start": 1806.86, + "end": 1806.9, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1806.9, + "end": 1807.04, + "probability": 1.0 + }, + { + "word": " know", + "start": 1807.04, + "end": 1807.1, + "probability": 1.0 + }, + { + "word": " if", + "start": 1807.1, + "end": 1807.18, + "probability": 1.0 + }, + { + "word": " I", + "start": 1807.18, + "end": 1807.22, + "probability": 1.0 + }, + { + "word": " should", + "start": 1807.22, + "end": 1807.32, + "probability": 1.0 + }, + { + "word": " be", + "start": 1807.32, + "end": 1807.42, + "probability": 0.9814453125 + }, + { + "word": " open", + "start": 1807.42, + "end": 1807.54, + "probability": 0.38037109375 + }, + { + "word": " on", + "start": 1807.54, + "end": 1807.68, + "probability": 0.98681640625 + }, + { + "word": " this", + "start": 1807.68, + "end": 1807.78, + "probability": 0.99462890625 + }, + { + "word": " YouTube", + "start": 1807.78, + "end": 1807.98, + "probability": 0.998046875 + }, + { + "word": " because", + "start": 1807.98, + "end": 1808.18, + "probability": 0.96484375 + }, + { + "word": " technically", + "start": 1808.18, + "end": 1808.54, + "probability": 1.0 + }, + { + "word": " what", + "start": 1808.54, + "end": 1808.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 1808.84, + "end": 1808.96, + "probability": 1.0 + }, + { + "word": " did", + "start": 1808.96, + "end": 1809.1, + "probability": 1.0 + }, + { + "word": " is", + "start": 1809.1, + "end": 1809.22, + "probability": 0.9609375 + }, + { + "word": " illegal.", + "start": 1809.22, + "end": 1809.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 878, + "text": "Right.", + "start": 1810.02, + "end": 1810.46, + "words": [ + { + "word": " Right.", + "start": 1810.02, + "end": 1810.46, + "probability": 0.974609375 + } + ] + }, + { + "id": 879, + "text": "As far as, as remote controlling somebody else's computer without their permission.", + "start": 1810.52, + "end": 1815.42, + "words": [ + { + "word": " As", + "start": 1810.52, + "end": 1810.6, + "probability": 0.99365234375 + }, + { + "word": " far", + "start": 1810.6, + "end": 1810.78, + "probability": 0.99951171875 + }, + { + "word": " as,", + "start": 1810.78, + "end": 1811.1, + "probability": 1.0 + }, + { + "word": " as", + "start": 1811.1, + "end": 1811.64, + "probability": 0.998046875 + }, + { + "word": " remote", + "start": 1811.64, + "end": 1812.46, + "probability": 0.99755859375 + }, + { + "word": " controlling", + "start": 1812.46, + "end": 1813.1, + "probability": 0.9990234375 + }, + { + "word": " somebody", + "start": 1813.1, + "end": 1813.56, + "probability": 0.99658203125 + }, + { + "word": " else's", + "start": 1813.56, + "end": 1813.94, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1813.94, + "end": 1814.24, + "probability": 1.0 + }, + { + "word": " without", + "start": 1814.24, + "end": 1814.56, + "probability": 0.9921875 + }, + { + "word": " their", + "start": 1814.56, + "end": 1814.9, + "probability": 0.99853515625 + }, + { + "word": " permission.", + "start": 1814.9, + "end": 1815.42, + "probability": 0.998046875 + } + ] + }, + { + "id": 880, + "text": "But that's the same thing they're doing to you, right?", + "start": 1816.04, + "end": 1818.06, + "words": [ + { + "word": " But", + "start": 1816.04, + "end": 1816.44, + "probability": 0.8740234375 + }, + { + "word": " that's", + "start": 1816.44, + "end": 1816.68, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1816.68, + "end": 1816.76, + "probability": 1.0 + }, + { + "word": " same", + "start": 1816.76, + "end": 1816.92, + "probability": 1.0 + }, + { + "word": " thing", + "start": 1816.92, + "end": 1817.06, + "probability": 1.0 + }, + { + "word": " they're", + "start": 1817.06, + "end": 1817.24, + "probability": 0.9951171875 + }, + { + "word": " doing", + "start": 1817.24, + "end": 1817.36, + "probability": 1.0 + }, + { + "word": " to", + "start": 1817.36, + "end": 1817.5, + "probability": 1.0 + }, + { + "word": " you,", + "start": 1817.5, + "end": 1817.7, + "probability": 1.0 + }, + { + "word": " right?", + "start": 1817.82, + "end": 1818.06, + "probability": 0.97900390625 + } + ] + }, + { + "id": 881, + "text": "Because the permission that you give them is under false pretense.", + "start": 1818.12, + "end": 1821.3, + "words": [ + { + "word": " Because", + "start": 1818.12, + "end": 1818.36, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 1818.36, + "end": 1818.48, + "probability": 1.0 + }, + { + "word": " permission", + "start": 1818.48, + "end": 1818.76, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 1818.76, + "end": 1819.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 1819.0, + "end": 1819.1, + "probability": 1.0 + }, + { + "word": " give", + "start": 1819.1, + "end": 1819.34, + "probability": 1.0 + }, + { + "word": " them", + "start": 1819.34, + "end": 1819.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 1819.56, + "end": 1819.74, + "probability": 1.0 + }, + { + "word": " under", + "start": 1819.74, + "end": 1820.04, + "probability": 1.0 + }, + { + "word": " false", + "start": 1820.04, + "end": 1820.58, + "probability": 1.0 + }, + { + "word": " pretense.", + "start": 1820.58, + "end": 1821.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 882, + "text": "But it's not like you're going to be able to call and say, well, some random company, most likely in India, took control of my computer and stole information or, you know, took money from my bank account or, you know, the biggest red flag of all, asked me to pay in a non-traditional currency.", + "start": 1822.36, + "end": 1839.98, + "words": [ + { + "word": " But", + "start": 1822.36, + "end": 1822.76, + "probability": 0.94384765625 + }, + { + "word": " it's", + "start": 1822.76, + "end": 1823.16, + "probability": 1.0 + }, + { + "word": " not", + "start": 1823.16, + "end": 1823.28, + "probability": 1.0 + }, + { + "word": " like", + "start": 1823.28, + "end": 1823.58, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1823.58, + "end": 1824.04, + "probability": 1.0 + }, + { + "word": " going", + "start": 1824.04, + "end": 1824.14, + "probability": 0.9912109375 + }, + { + "word": " to", + "start": 1824.14, + "end": 1824.24, + "probability": 1.0 + }, + { + "word": " be", + "start": 1824.24, + "end": 1824.32, + "probability": 1.0 + }, + { + "word": " able", + "start": 1824.32, + "end": 1824.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 1824.48, + "end": 1824.62, + "probability": 1.0 + }, + { + "word": " call", + "start": 1824.62, + "end": 1824.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 1824.82, + "end": 1824.98, + "probability": 1.0 + }, + { + "word": " say,", + "start": 1824.98, + "end": 1825.14, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1825.22, + "end": 1825.36, + "probability": 0.98779296875 + }, + { + "word": " some", + "start": 1825.4, + "end": 1825.62, + "probability": 1.0 + }, + { + "word": " random", + "start": 1825.62, + "end": 1826.02, + "probability": 1.0 + }, + { + "word": " company,", + "start": 1826.02, + "end": 1826.5, + "probability": 1.0 + }, + { + "word": " most", + "start": 1826.64, + "end": 1827.14, + "probability": 0.99951171875 + }, + { + "word": " likely", + "start": 1827.14, + "end": 1827.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 1827.48, + "end": 1827.66, + "probability": 0.99853515625 + }, + { + "word": " India,", + "start": 1827.66, + "end": 1827.92, + "probability": 1.0 + }, + { + "word": " took", + "start": 1828.08, + "end": 1828.9, + "probability": 0.99951171875 + }, + { + "word": " control", + "start": 1828.9, + "end": 1829.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 1829.22, + "end": 1829.36, + "probability": 1.0 + }, + { + "word": " my", + "start": 1829.36, + "end": 1829.44, + "probability": 1.0 + }, + { + "word": " computer", + "start": 1829.44, + "end": 1829.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 1829.8, + "end": 1830.2, + "probability": 0.99951171875 + }, + { + "word": " stole", + "start": 1830.2, + "end": 1830.64, + "probability": 1.0 + }, + { + "word": " information", + "start": 1830.64, + "end": 1831.1, + "probability": 1.0 + }, + { + "word": " or,", + "start": 1831.1, + "end": 1831.82, + "probability": 0.94775390625 + }, + { + "word": " you", + "start": 1831.9, + "end": 1832.32, + "probability": 1.0 + }, + { + "word": " know,", + "start": 1832.32, + "end": 1832.52, + "probability": 1.0 + }, + { + "word": " took", + "start": 1832.52, + "end": 1833.1, + "probability": 0.9970703125 + }, + { + "word": " money", + "start": 1833.1, + "end": 1833.38, + "probability": 1.0 + }, + { + "word": " from", + "start": 1833.38, + "end": 1833.58, + "probability": 1.0 + }, + { + "word": " my", + "start": 1833.58, + "end": 1833.7, + "probability": 1.0 + }, + { + "word": " bank", + "start": 1833.7, + "end": 1833.9, + "probability": 1.0 + }, + { + "word": " account", + "start": 1833.9, + "end": 1834.16, + "probability": 1.0 + }, + { + "word": " or,", + "start": 1834.16, + "end": 1834.46, + "probability": 0.75146484375 + }, + { + "word": " you", + "start": 1834.48, + "end": 1835.88, + "probability": 0.9970703125 + }, + { + "word": " know,", + "start": 1835.88, + "end": 1836.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 1836.06, + "end": 1836.14, + "probability": 0.9990234375 + }, + { + "word": " biggest", + "start": 1836.14, + "end": 1836.38, + "probability": 0.99951171875 + }, + { + "word": " red", + "start": 1836.38, + "end": 1836.58, + "probability": 1.0 + }, + { + "word": " flag", + "start": 1836.58, + "end": 1836.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 1836.84, + "end": 1837.02, + "probability": 1.0 + }, + { + "word": " all,", + "start": 1837.02, + "end": 1837.18, + "probability": 1.0 + }, + { + "word": " asked", + "start": 1837.26, + "end": 1837.54, + "probability": 0.97802734375 + }, + { + "word": " me", + "start": 1837.54, + "end": 1837.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 1837.72, + "end": 1837.84, + "probability": 1.0 + }, + { + "word": " pay", + "start": 1837.84, + "end": 1838.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 1838.04, + "end": 1838.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 1838.2, + "end": 1838.32, + "probability": 1.0 + }, + { + "word": " non", + "start": 1838.32, + "end": 1838.7, + "probability": 0.96435546875 + }, + { + "word": "-traditional", + "start": 1838.7, + "end": 1839.56, + "probability": 0.99658203125 + }, + { + "word": " currency.", + "start": 1839.56, + "end": 1839.98, + "probability": 1.0 + } + ] + }, + { + "id": 883, + "text": "Sure.", + "start": 1840.46, + "end": 1840.86, + "words": [ + { + "word": " Sure.", + "start": 1840.46, + "end": 1840.86, + "probability": 0.96923828125 + } + ] + }, + { + "id": 884, + "text": "As far as the gift cards or, or, or.", + "start": 1840.9, + "end": 1844.6, + "words": [ + { + "word": " As", + "start": 1840.9, + "end": 1840.96, + "probability": 0.98681640625 + }, + { + "word": " far", + "start": 1840.96, + "end": 1841.1, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 1841.1, + "end": 1841.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 1841.36, + "end": 1841.62, + "probability": 1.0 + }, + { + "word": " gift", + "start": 1841.62, + "end": 1843.06, + "probability": 0.99951171875 + }, + { + "word": " cards", + "start": 1843.06, + "end": 1843.5, + "probability": 1.0 + }, + { + "word": " or,", + "start": 1843.5, + "end": 1843.82, + "probability": 0.97900390625 + }, + { + "word": " or,", + "start": 1843.82, + "end": 1844.2, + "probability": 0.62451171875 + }, + { + "word": " or.", + "start": 1844.2, + "end": 1844.6, + "probability": 0.978515625 + } + ] + }, + { + "id": 885, + "text": "Through some type of a cryptocurrency exchange or some type of not regular refundable cash money.", + "start": 1845.66, + "end": 1852.48, + "words": [ + { + "word": " Through", + "start": 1845.66, + "end": 1845.9, + "probability": 0.1875 + }, + { + "word": " some", + "start": 1845.9, + "end": 1846.12, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 1846.12, + "end": 1846.38, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1846.38, + "end": 1846.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 1846.58, + "end": 1846.68, + "probability": 0.998046875 + }, + { + "word": " cryptocurrency", + "start": 1846.68, + "end": 1847.04, + "probability": 0.99755859375 + }, + { + "word": " exchange", + "start": 1847.04, + "end": 1847.54, + "probability": 1.0 + }, + { + "word": " or", + "start": 1847.54, + "end": 1848.1, + "probability": 0.9677734375 + }, + { + "word": " some", + "start": 1848.1, + "end": 1848.5, + "probability": 1.0 + }, + { + "word": " type", + "start": 1848.5, + "end": 1848.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 1848.82, + "end": 1849.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 1849.2, + "end": 1850.36, + "probability": 0.9990234375 + }, + { + "word": " regular", + "start": 1850.36, + "end": 1851.02, + "probability": 0.98193359375 + }, + { + "word": " refundable", + "start": 1851.02, + "end": 1851.88, + "probability": 0.9970703125 + }, + { + "word": " cash", + "start": 1851.88, + "end": 1852.14, + "probability": 1.0 + }, + { + "word": " money.", + "start": 1852.14, + "end": 1852.48, + "probability": 1.0 + } + ] + }, + { + "id": 886, + "text": "Sure.", + "start": 1852.66, + "end": 1852.84, + "words": [ + { + "word": " Sure.", + "start": 1852.66, + "end": 1852.84, + "probability": 0.75927734375 + } + ] + }, + { + "id": 887, + "text": "So it's just be on the lookout.", + "start": 1853.86, + "end": 1855.48, + "words": [ + { + "word": " So", + "start": 1853.86, + "end": 1854.26, + "probability": 0.97314453125 + }, + { + "word": " it's", + "start": 1854.26, + "end": 1854.66, + "probability": 0.7236328125 + }, + { + "word": " just", + "start": 1854.66, + "end": 1854.78, + "probability": 0.978515625 + }, + { + "word": " be", + "start": 1854.78, + "end": 1855.02, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 1855.02, + "end": 1855.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 1855.14, + "end": 1855.24, + "probability": 1.0 + }, + { + "word": " lookout.", + "start": 1855.24, + "end": 1855.48, + "probability": 1.0 + } + ] + }, + { + "id": 888, + "text": "And if you're, you're right, if it doesn't make sense, if it seems like, well, you know what?", + "start": 1855.66, + "end": 1859.76, + "words": [ + { + "word": " And", + "start": 1855.66, + "end": 1855.78, + "probability": 0.984375 + }, + { + "word": " if", + "start": 1855.78, + "end": 1855.86, + "probability": 0.5458984375 + }, + { + "word": " you're,", + "start": 1855.86, + "end": 1856.12, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 1856.14, + "end": 1856.3, + "probability": 0.9990234375 + }, + { + "word": " right,", + "start": 1856.3, + "end": 1856.44, + "probability": 1.0 + }, + { + "word": " if", + "start": 1856.48, + "end": 1856.56, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1856.56, + "end": 1856.66, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 1856.66, + "end": 1856.86, + "probability": 1.0 + }, + { + "word": " make", + "start": 1856.86, + "end": 1857.02, + "probability": 1.0 + }, + { + "word": " sense,", + "start": 1857.02, + "end": 1857.48, + "probability": 1.0 + }, + { + "word": " if", + "start": 1857.5, + "end": 1858.4, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 1858.4, + "end": 1858.58, + "probability": 1.0 + }, + { + "word": " seems", + "start": 1858.58, + "end": 1858.96, + "probability": 0.99951171875 + }, + { + "word": " like,", + "start": 1858.96, + "end": 1859.22, + "probability": 1.0 + }, + { + "word": " well,", + "start": 1859.24, + "end": 1859.38, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1859.4, + "end": 1859.48, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 1859.48, + "end": 1859.54, + "probability": 1.0 + }, + { + "word": " what?", + "start": 1859.54, + "end": 1859.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 889, + "text": "I don't feel comfortable, you know, listen to your spidey senses.", + "start": 1859.96, + "end": 1862.56, + "words": [ + { + "word": " I", + "start": 1859.96, + "end": 1860.36, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 1860.36, + "end": 1860.6, + "probability": 1.0 + }, + { + "word": " feel", + "start": 1860.6, + "end": 1860.8, + "probability": 1.0 + }, + { + "word": " comfortable,", + "start": 1860.8, + "end": 1861.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 1861.24, + "end": 1861.44, + "probability": 0.68212890625 + }, + { + "word": " know,", + "start": 1861.44, + "end": 1861.62, + "probability": 0.99951171875 + }, + { + "word": " listen", + "start": 1861.62, + "end": 1861.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1861.82, + "end": 1861.98, + "probability": 1.0 + }, + { + "word": " your", + "start": 1861.98, + "end": 1862.02, + "probability": 1.0 + }, + { + "word": " spidey", + "start": 1862.02, + "end": 1862.36, + "probability": 0.974609375 + }, + { + "word": " senses.", + "start": 1862.36, + "end": 1862.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 890, + "text": "All right.", + "start": 1862.76, + "end": 1863.22, + "words": [ + { + "word": " All", + "start": 1862.76, + "end": 1863.14, + "probability": 0.97802734375 + }, + { + "word": " right.", + "start": 1863.14, + "end": 1863.22, + "probability": 1.0 + } + ] + }, + { + "id": 891, + "text": "If it, if it feels wrong, like you don't know what's going on here, then you should probably just back out of that situation.", + "start": 1863.24, + "end": 1868.54, + "words": [ + { + "word": " If", + "start": 1863.24, + "end": 1863.38, + "probability": 0.98681640625 + }, + { + "word": " it,", + "start": 1863.38, + "end": 1863.54, + "probability": 0.93994140625 + }, + { + "word": " if", + "start": 1863.56, + "end": 1863.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 1863.7, + "end": 1863.88, + "probability": 1.0 + }, + { + "word": " feels", + "start": 1863.88, + "end": 1864.24, + "probability": 0.99951171875 + }, + { + "word": " wrong,", + "start": 1864.24, + "end": 1864.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 1864.74, + "end": 1865.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 1865.04, + "end": 1865.24, + "probability": 0.98681640625 + }, + { + "word": " don't", + "start": 1865.24, + "end": 1865.4, + "probability": 1.0 + }, + { + "word": " know", + "start": 1865.4, + "end": 1865.5, + "probability": 1.0 + }, + { + "word": " what's", + "start": 1865.5, + "end": 1865.68, + "probability": 1.0 + }, + { + "word": " going", + "start": 1865.68, + "end": 1865.8, + "probability": 1.0 + }, + { + "word": " on", + "start": 1865.8, + "end": 1866.04, + "probability": 1.0 + }, + { + "word": " here,", + "start": 1866.04, + "end": 1866.28, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 1866.38, + "end": 1867.1, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1867.1, + "end": 1867.28, + "probability": 1.0 + }, + { + "word": " should", + "start": 1867.28, + "end": 1867.38, + "probability": 1.0 + }, + { + "word": " probably", + "start": 1867.38, + "end": 1867.52, + "probability": 1.0 + }, + { + "word": " just", + "start": 1867.52, + "end": 1867.68, + "probability": 1.0 + }, + { + "word": " back", + "start": 1867.68, + "end": 1867.86, + "probability": 1.0 + }, + { + "word": " out", + "start": 1867.86, + "end": 1868.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 1868.06, + "end": 1868.14, + "probability": 1.0 + }, + { + "word": " that", + "start": 1868.14, + "end": 1868.24, + "probability": 1.0 + }, + { + "word": " situation.", + "start": 1868.24, + "end": 1868.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 892, + "text": "The other thing that want people could do is if you're a church or where you have relatives,", + "start": 1868.82, + "end": 1874.94, + "words": [ + { + "word": " The", + "start": 1868.82, + "end": 1869.2, + "probability": 0.998046875 + }, + { + "word": " other", + "start": 1869.2, + "end": 1869.36, + "probability": 0.9990234375 + }, + { + "word": " thing", + "start": 1869.36, + "end": 1869.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 1869.6, + "end": 1869.76, + "probability": 1.0 + }, + { + "word": " want", + "start": 1869.76, + "end": 1869.94, + "probability": 0.546875 + }, + { + "word": " people", + "start": 1869.94, + "end": 1870.28, + "probability": 0.99853515625 + }, + { + "word": " could", + "start": 1870.28, + "end": 1870.48, + "probability": 0.9970703125 + }, + { + "word": " do", + "start": 1870.48, + "end": 1870.68, + "probability": 1.0 + }, + { + "word": " is", + "start": 1870.68, + "end": 1871.06, + "probability": 1.0 + }, + { + "word": " if", + "start": 1871.06, + "end": 1871.38, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1871.38, + "end": 1871.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 1871.56, + "end": 1871.66, + "probability": 0.97705078125 + }, + { + "word": " church", + "start": 1871.66, + "end": 1872.12, + "probability": 1.0 + }, + { + "word": " or", + "start": 1872.12, + "end": 1872.72, + "probability": 0.99853515625 + }, + { + "word": " where", + "start": 1872.72, + "end": 1873.82, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 1873.82, + "end": 1874.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 1874.02, + "end": 1874.3, + "probability": 1.0 + }, + { + "word": " relatives,", + "start": 1874.3, + "end": 1874.94, + "probability": 0.99755859375 + } + ] + }, + { + "id": 893, + "text": "older relatives or people who are having problems, challenges, I'll put it that way.", + "start": 1874.94, + "end": 1881.3, + "words": [ + { + "word": " older", + "start": 1874.94, + "end": 1875.2, + "probability": 0.00504302978515625 + }, + { + "word": " relatives", + "start": 1875.2, + "end": 1876.2, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 1876.2, + "end": 1876.66, + "probability": 0.82080078125 + }, + { + "word": " people", + "start": 1876.66, + "end": 1876.98, + "probability": 1.0 + }, + { + "word": " who", + "start": 1876.98, + "end": 1877.28, + "probability": 1.0 + }, + { + "word": " are", + "start": 1877.28, + "end": 1877.46, + "probability": 0.99951171875 + }, + { + "word": " having", + "start": 1877.46, + "end": 1878.36, + "probability": 0.99951171875 + }, + { + "word": " problems,", + "start": 1878.36, + "end": 1879.54, + "probability": 0.99951171875 + }, + { + "word": " challenges,", + "start": 1879.66, + "end": 1880.3, + "probability": 1.0 + }, + { + "word": " I'll", + "start": 1880.5, + "end": 1880.72, + "probability": 0.9951171875 + }, + { + "word": " put", + "start": 1880.72, + "end": 1880.78, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 1880.78, + "end": 1880.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 1880.92, + "end": 1881.04, + "probability": 1.0 + }, + { + "word": " way.", + "start": 1881.04, + "end": 1881.3, + "probability": 1.0 + } + ] + }, + { + "id": 894, + "text": "Check on them, make sure that what they're doing and inform them of this stuff because they don't know.", + "start": 1882.04, + "end": 1889.22, + "words": [ + { + "word": " Check", + "start": 1882.04, + "end": 1882.44, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 1882.44, + "end": 1882.64, + "probability": 1.0 + }, + { + "word": " them,", + "start": 1882.64, + "end": 1882.84, + "probability": 1.0 + }, + { + "word": " make", + "start": 1882.9, + "end": 1883.1, + "probability": 1.0 + }, + { + "word": " sure", + "start": 1883.1, + "end": 1883.46, + "probability": 1.0 + }, + { + "word": " that", + "start": 1883.46, + "end": 1883.94, + "probability": 0.9091796875 + }, + { + "word": " what", + "start": 1883.94, + "end": 1884.18, + "probability": 0.99951171875 + }, + { + "word": " they're", + "start": 1884.18, + "end": 1884.46, + "probability": 1.0 + }, + { + "word": " doing", + "start": 1884.46, + "end": 1884.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 1884.76, + "end": 1885.34, + "probability": 0.955078125 + }, + { + "word": " inform", + "start": 1885.34, + "end": 1886.3, + "probability": 1.0 + }, + { + "word": " them", + "start": 1886.3, + "end": 1886.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 1886.7, + "end": 1886.94, + "probability": 1.0 + }, + { + "word": " this", + "start": 1886.94, + "end": 1887.1, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 1887.1, + "end": 1887.38, + "probability": 1.0 + }, + { + "word": " because", + "start": 1887.38, + "end": 1888.46, + "probability": 0.89208984375 + }, + { + "word": " they", + "start": 1888.46, + "end": 1888.76, + "probability": 0.984375 + }, + { + "word": " don't", + "start": 1888.76, + "end": 1889.1, + "probability": 1.0 + }, + { + "word": " know.", + "start": 1889.1, + "end": 1889.22, + "probability": 1.0 + } + ] + }, + { + "id": 895, + "text": "And there's, there's a couple of other ways that you can sort of passively protect yourself.", + "start": 1889.7, + "end": 1893.48, + "words": [ + { + "word": " And", + "start": 1889.7, + "end": 1890.1, + "probability": 0.9716796875 + }, + { + "word": " there's,", + "start": 1890.1, + "end": 1890.4, + "probability": 0.998046875 + }, + { + "word": " there's", + "start": 1890.4, + "end": 1890.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1890.82, + "end": 1890.9, + "probability": 1.0 + }, + { + "word": " couple", + "start": 1890.9, + "end": 1891.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 1891.12, + "end": 1891.2, + "probability": 0.7490234375 + }, + { + "word": " other", + "start": 1891.2, + "end": 1891.28, + "probability": 0.5244140625 + }, + { + "word": " ways", + "start": 1891.28, + "end": 1891.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 1891.42, + "end": 1891.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 1891.52, + "end": 1891.6, + "probability": 1.0 + }, + { + "word": " can", + "start": 1891.6, + "end": 1891.78, + "probability": 1.0 + }, + { + "word": " sort", + "start": 1891.78, + "end": 1892.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 1892.3, + "end": 1892.4, + "probability": 1.0 + }, + { + "word": " passively", + "start": 1892.4, + "end": 1892.92, + "probability": 1.0 + }, + { + "word": " protect", + "start": 1892.92, + "end": 1893.16, + "probability": 1.0 + }, + { + "word": " yourself.", + "start": 1893.16, + "end": 1893.48, + "probability": 1.0 + } + ] + }, + { + "id": 896, + "text": "We'll talk about those in a moment.", + "start": 1893.6, + "end": 1894.42, + "words": [ + { + "word": " We'll", + "start": 1893.6, + "end": 1893.68, + "probability": 0.9931640625 + }, + { + "word": " talk", + "start": 1893.68, + "end": 1893.78, + "probability": 1.0 + }, + { + "word": " about", + "start": 1893.78, + "end": 1893.98, + "probability": 1.0 + }, + { + "word": " those", + "start": 1893.98, + "end": 1894.14, + "probability": 1.0 + }, + { + "word": " in", + "start": 1894.14, + "end": 1894.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 1894.22, + "end": 1894.26, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 1894.26, + "end": 1894.42, + "probability": 0.9990234375 + } + ] + }, + { + "id": 897, + "text": "Let's talk to Mike.", + "start": 1894.46, + "end": 1895.48, + "words": [ + { + "word": " Let's", + "start": 1894.46, + "end": 1894.68, + "probability": 1.0 + }, + { + "word": " talk", + "start": 1894.68, + "end": 1894.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 1894.82, + "end": 1895.02, + "probability": 1.0 + }, + { + "word": " Mike.", + "start": 1895.02, + "end": 1895.48, + "probability": 0.98779296875 + } + ] + }, + { + "id": 898, + "text": "We got a caller.", + "start": 1895.68, + "end": 1896.18, + "words": [ + { + "word": " We", + "start": 1895.68, + "end": 1895.82, + "probability": 1.0 + }, + { + "word": " got", + "start": 1895.82, + "end": 1895.88, + "probability": 0.55419921875 + }, + { + "word": " a", + "start": 1895.88, + "end": 1895.98, + "probability": 0.98828125 + }, + { + "word": " caller.", + "start": 1895.98, + "end": 1896.18, + "probability": 0.97705078125 + } + ] + }, + { + "id": 899, + "text": "Hello, Mike.", + "start": 1896.22, + "end": 1896.56, + "words": [ + { + "word": " Hello,", + "start": 1896.22, + "end": 1896.38, + "probability": 0.9990234375 + }, + { + "word": " Mike.", + "start": 1896.44, + "end": 1896.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 900, + "text": "How are you?", + "start": 1896.62, + "end": 1896.9, + "words": [ + { + "word": " How", + "start": 1896.62, + "end": 1896.74, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 1896.74, + "end": 1896.8, + "probability": 1.0 + }, + { + "word": " you?", + "start": 1896.8, + "end": 1896.9, + "probability": 1.0 + } + ] + }, + { + "id": 901, + "text": "Good.", + "start": 1897.08, + "end": 1897.48, + "words": [ + { + "word": " Good.", + "start": 1897.08, + "end": 1897.48, + "probability": 0.998046875 + } + ] + }, + { + "id": 902, + "text": "A while back, my dad got a so-called phone call from his grandson.", + "start": 1897.6, + "end": 1902.3, + "words": [ + { + "word": " A", + "start": 1897.6, + "end": 1898.0, + "probability": 0.9931640625 + }, + { + "word": " while", + "start": 1898.0, + "end": 1898.26, + "probability": 0.99951171875 + }, + { + "word": " back,", + "start": 1898.26, + "end": 1898.58, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 1898.72, + "end": 1899.2, + "probability": 0.99853515625 + }, + { + "word": " dad", + "start": 1899.2, + "end": 1899.54, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 1899.54, + "end": 1899.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 1899.82, + "end": 1900.08, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 1900.08, + "end": 1900.62, + "probability": 0.99951171875 + }, + { + "word": "-called", + "start": 1900.62, + "end": 1900.96, + "probability": 0.99853515625 + }, + { + "word": " phone", + "start": 1900.96, + "end": 1901.24, + "probability": 0.99951171875 + }, + { + "word": " call", + "start": 1901.24, + "end": 1901.52, + "probability": 1.0 + }, + { + "word": " from", + "start": 1901.52, + "end": 1901.78, + "probability": 0.99951171875 + }, + { + "word": " his", + "start": 1901.78, + "end": 1901.92, + "probability": 1.0 + }, + { + "word": " grandson.", + "start": 1901.92, + "end": 1902.3, + "probability": 1.0 + } + ] + }, + { + "id": 903, + "text": "I've never had a child or my sister.", + "start": 1902.46, + "end": 1904.3, + "words": [ + { + "word": " I've", + "start": 1902.46, + "end": 1902.86, + "probability": 0.892578125 + }, + { + "word": " never", + "start": 1902.86, + "end": 1903.04, + "probability": 1.0 + }, + { + "word": " had", + "start": 1903.04, + "end": 1903.24, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1903.24, + "end": 1903.36, + "probability": 1.0 + }, + { + "word": " child", + "start": 1903.36, + "end": 1903.66, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 1903.66, + "end": 1903.82, + "probability": 0.98876953125 + }, + { + "word": " my", + "start": 1903.82, + "end": 1903.94, + "probability": 1.0 + }, + { + "word": " sister.", + "start": 1903.94, + "end": 1904.3, + "probability": 1.0 + } + ] + }, + { + "id": 904, + "text": "And this supposed grandchild asked my dad to wire him some money because he was in a car accident.", + "start": 1904.94, + "end": 1910.02, + "words": [ + { + "word": " And", + "start": 1904.94, + "end": 1905.08, + "probability": 0.79052734375 + }, + { + "word": " this", + "start": 1905.08, + "end": 1905.22, + "probability": 0.94580078125 + }, + { + "word": " supposed", + "start": 1905.22, + "end": 1905.48, + "probability": 0.99755859375 + }, + { + "word": " grandchild", + "start": 1905.48, + "end": 1906.12, + "probability": 0.9990234375 + }, + { + "word": " asked", + "start": 1906.12, + "end": 1906.56, + "probability": 0.9990234375 + }, + { + "word": " my", + "start": 1906.56, + "end": 1906.76, + "probability": 1.0 + }, + { + "word": " dad", + "start": 1906.76, + "end": 1907.02, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1907.02, + "end": 1907.2, + "probability": 1.0 + }, + { + "word": " wire", + "start": 1907.2, + "end": 1907.44, + "probability": 0.99951171875 + }, + { + "word": " him", + "start": 1907.44, + "end": 1907.6, + "probability": 1.0 + }, + { + "word": " some", + "start": 1907.6, + "end": 1907.8, + "probability": 1.0 + }, + { + "word": " money", + "start": 1907.8, + "end": 1908.12, + "probability": 1.0 + }, + { + "word": " because", + "start": 1908.12, + "end": 1908.88, + "probability": 0.98779296875 + }, + { + "word": " he", + "start": 1908.88, + "end": 1909.1, + "probability": 1.0 + }, + { + "word": " was", + "start": 1909.1, + "end": 1909.2, + "probability": 1.0 + }, + { + "word": " in", + "start": 1909.2, + "end": 1909.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 1909.32, + "end": 1909.38, + "probability": 1.0 + }, + { + "word": " car", + "start": 1909.38, + "end": 1909.62, + "probability": 1.0 + }, + { + "word": " accident.", + "start": 1909.62, + "end": 1910.02, + "probability": 1.0 + } + ] + }, + { + "id": 905, + "text": "Yeah.", + "start": 1911.24, + "end": 1911.68, + "words": [ + { + "word": " Yeah.", + "start": 1911.24, + "end": 1911.68, + "probability": 0.904296875 + } + ] + }, + { + "id": 906, + "text": "And my dad obviously didn't fall for it, but I just thought it was interesting.", + "start": 1911.78, + "end": 1915.4, + "words": [ + { + "word": " And", + "start": 1911.78, + "end": 1912.22, + "probability": 0.9951171875 + }, + { + "word": " my", + "start": 1912.22, + "end": 1912.74, + "probability": 0.99951171875 + }, + { + "word": " dad", + "start": 1912.74, + "end": 1913.06, + "probability": 1.0 + }, + { + "word": " obviously", + "start": 1913.06, + "end": 1913.5, + "probability": 0.99462890625 + }, + { + "word": " didn't", + "start": 1913.5, + "end": 1913.84, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1913.84, + "end": 1914.0, + "probability": 0.9951171875 + }, + { + "word": " for", + "start": 1914.0, + "end": 1914.16, + "probability": 1.0 + }, + { + "word": " it,", + "start": 1914.16, + "end": 1914.32, + "probability": 1.0 + }, + { + "word": " but", + "start": 1914.34, + "end": 1914.42, + "probability": 1.0 + }, + { + "word": " I", + "start": 1914.42, + "end": 1914.52, + "probability": 1.0 + }, + { + "word": " just", + "start": 1914.52, + "end": 1914.72, + "probability": 1.0 + }, + { + "word": " thought", + "start": 1914.72, + "end": 1914.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 1914.88, + "end": 1915.0, + "probability": 1.0 + }, + { + "word": " was", + "start": 1915.0, + "end": 1915.08, + "probability": 1.0 + }, + { + "word": " interesting.", + "start": 1915.08, + "end": 1915.4, + "probability": 1.0 + } + ] + }, + { + "id": 907, + "text": "My folks called and said, we got a call from your son saying he needed money.", + "start": 1915.58, + "end": 1919.68, + "words": [ + { + "word": " My", + "start": 1915.58, + "end": 1916.0, + "probability": 0.9033203125 + }, + { + "word": " folks", + "start": 1916.0, + "end": 1916.32, + "probability": 0.984375 + }, + { + "word": " called", + "start": 1916.32, + "end": 1916.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 1916.62, + "end": 1916.76, + "probability": 0.99951171875 + }, + { + "word": " said,", + "start": 1916.76, + "end": 1916.98, + "probability": 1.0 + }, + { + "word": " we", + "start": 1917.12, + "end": 1917.64, + "probability": 0.95068359375 + }, + { + "word": " got", + "start": 1917.64, + "end": 1917.8, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 1917.8, + "end": 1917.92, + "probability": 1.0 + }, + { + "word": " call", + "start": 1917.92, + "end": 1918.16, + "probability": 1.0 + }, + { + "word": " from", + "start": 1918.16, + "end": 1918.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 1918.3, + "end": 1918.48, + "probability": 1.0 + }, + { + "word": " son", + "start": 1918.48, + "end": 1918.74, + "probability": 1.0 + }, + { + "word": " saying", + "start": 1918.74, + "end": 1919.04, + "probability": 1.0 + }, + { + "word": " he", + "start": 1919.04, + "end": 1919.18, + "probability": 0.9775390625 + }, + { + "word": " needed", + "start": 1919.18, + "end": 1919.38, + "probability": 1.0 + }, + { + "word": " money.", + "start": 1919.38, + "end": 1919.68, + "probability": 1.0 + } + ] + }, + { + "id": 908, + "text": "Yeah.", + "start": 1920.58, + "end": 1921.02, + "words": [ + { + "word": " Yeah.", + "start": 1920.58, + "end": 1921.02, + "probability": 0.583984375 + } + ] + }, + { + "id": 909, + "text": "Yeah.", + "start": 1921.48, + "end": 1921.92, + "words": [ + { + "word": " Yeah.", + "start": 1921.48, + "end": 1921.92, + "probability": 0.85693359375 + } + ] + }, + { + "id": 910, + "text": "The grandchild in trouble of some type or another is, is definitely a larger scam that's out there.", + "start": 1921.96, + "end": 1927.22, + "words": [ + { + "word": " The", + "start": 1921.96, + "end": 1922.18, + "probability": 0.98779296875 + }, + { + "word": " grandchild", + "start": 1922.18, + "end": 1922.84, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 1922.84, + "end": 1923.24, + "probability": 0.99951171875 + }, + { + "word": " trouble", + "start": 1923.24, + "end": 1923.52, + "probability": 1.0 + }, + { + "word": " of", + "start": 1923.52, + "end": 1923.86, + "probability": 1.0 + }, + { + "word": " some", + "start": 1923.86, + "end": 1923.98, + "probability": 1.0 + }, + { + "word": " type", + "start": 1923.98, + "end": 1924.2, + "probability": 1.0 + }, + { + "word": " or", + "start": 1924.2, + "end": 1924.36, + "probability": 1.0 + }, + { + "word": " another", + "start": 1924.36, + "end": 1924.54, + "probability": 1.0 + }, + { + "word": " is,", + "start": 1924.54, + "end": 1925.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 1925.2, + "end": 1925.52, + "probability": 0.99658203125 + }, + { + "word": " definitely", + "start": 1925.52, + "end": 1925.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 1925.88, + "end": 1926.12, + "probability": 1.0 + }, + { + "word": " larger", + "start": 1926.12, + "end": 1926.34, + "probability": 1.0 + }, + { + "word": " scam", + "start": 1926.34, + "end": 1926.62, + "probability": 0.98779296875 + }, + { + "word": " that's", + "start": 1926.62, + "end": 1926.9, + "probability": 0.9970703125 + }, + { + "word": " out", + "start": 1926.9, + "end": 1927.02, + "probability": 1.0 + }, + { + "word": " there.", + "start": 1927.02, + "end": 1927.22, + "probability": 1.0 + } + ] + }, + { + "id": 911, + "text": "And a lot of people fall for it.", + "start": 1928.0, + "end": 1929.88, + "words": [ + { + "word": " And", + "start": 1928.0, + "end": 1928.44, + "probability": 0.69189453125 + }, + { + "word": " a", + "start": 1928.44, + "end": 1928.78, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1928.78, + "end": 1928.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 1928.92, + "end": 1929.0, + "probability": 1.0 + }, + { + "word": " people", + "start": 1929.0, + "end": 1929.16, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1929.16, + "end": 1929.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 1929.4, + "end": 1929.62, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1929.62, + "end": 1929.88, + "probability": 1.0 + } + ] + }, + { + "id": 912, + "text": "Man, so many people fall for those types of things.", + "start": 1929.96, + "end": 1931.7, + "words": [ + { + "word": " Man,", + "start": 1929.96, + "end": 1930.4, + "probability": 0.72900390625 + }, + { + "word": " so", + "start": 1930.4, + "end": 1930.54, + "probability": 1.0 + }, + { + "word": " many", + "start": 1930.54, + "end": 1930.68, + "probability": 1.0 + }, + { + "word": " people", + "start": 1930.68, + "end": 1930.88, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1930.88, + "end": 1931.14, + "probability": 1.0 + }, + { + "word": " for", + "start": 1931.14, + "end": 1931.32, + "probability": 1.0 + }, + { + "word": " those", + "start": 1931.32, + "end": 1931.46, + "probability": 0.97705078125 + }, + { + "word": " types", + "start": 1931.46, + "end": 1931.64, + "probability": 0.7265625 + }, + { + "word": " of", + "start": 1931.64, + "end": 1931.7, + "probability": 0.99951171875 + }, + { + "word": " things.", + "start": 1931.7, + "end": 1931.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 913, + "text": "And I've heard situations where this one woman.", + "start": 1931.7, + "end": 1934.76, + "words": [ + { + "word": " And", + "start": 1931.7, + "end": 1932.08, + "probability": 0.1986083984375 + }, + { + "word": " I've", + "start": 1932.08, + "end": 1932.48, + "probability": 0.99951171875 + }, + { + "word": " heard", + "start": 1932.48, + "end": 1932.66, + "probability": 1.0 + }, + { + "word": " situations", + "start": 1932.66, + "end": 1932.98, + "probability": 1.0 + }, + { + "word": " where", + "start": 1932.98, + "end": 1933.58, + "probability": 1.0 + }, + { + "word": " this", + "start": 1933.58, + "end": 1934.28, + "probability": 0.990234375 + }, + { + "word": " one", + "start": 1934.28, + "end": 1934.5, + "probability": 1.0 + }, + { + "word": " woman.", + "start": 1934.5, + "end": 1934.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 914, + "text": "I heard on the radio lost her life savings over some of these scams.", + "start": 1934.94, + "end": 1939.12, + "words": [ + { + "word": " I", + "start": 1934.94, + "end": 1935.02, + "probability": 0.9619140625 + }, + { + "word": " heard", + "start": 1935.02, + "end": 1935.22, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 1935.22, + "end": 1935.34, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 1935.34, + "end": 1935.44, + "probability": 1.0 + }, + { + "word": " radio", + "start": 1935.44, + "end": 1935.68, + "probability": 1.0 + }, + { + "word": " lost", + "start": 1935.68, + "end": 1936.02, + "probability": 0.46142578125 + }, + { + "word": " her", + "start": 1936.02, + "end": 1936.26, + "probability": 1.0 + }, + { + "word": " life", + "start": 1936.26, + "end": 1936.5, + "probability": 0.99951171875 + }, + { + "word": " savings", + "start": 1936.5, + "end": 1936.94, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 1936.94, + "end": 1937.66, + "probability": 0.9873046875 + }, + { + "word": " some", + "start": 1937.66, + "end": 1938.34, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1938.34, + "end": 1938.56, + "probability": 1.0 + }, + { + "word": " these", + "start": 1938.56, + "end": 1938.66, + "probability": 1.0 + }, + { + "word": " scams.", + "start": 1938.66, + "end": 1939.12, + "probability": 1.0 + } + ] + }, + { + "id": 915, + "text": "Yeah.", + "start": 1939.64, + "end": 1940.08, + "words": [ + { + "word": " Yeah.", + "start": 1939.64, + "end": 1940.08, + "probability": 0.98046875 + } + ] + }, + { + "id": 916, + "text": "Well, I mean, there's, there's a lot of money involved in it.", + "start": 1940.1, + "end": 1942.16, + "words": [ + { + "word": " Well,", + "start": 1940.1, + "end": 1940.26, + "probability": 0.9853515625 + }, + { + "word": " I", + "start": 1940.3, + "end": 1940.38, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 1940.38, + "end": 1940.54, + "probability": 1.0 + }, + { + "word": " there's,", + "start": 1940.58, + "end": 1940.88, + "probability": 1.0 + }, + { + "word": " there's", + "start": 1940.88, + "end": 1941.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 1941.1, + "end": 1941.16, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 1941.16, + "end": 1941.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 1941.38, + "end": 1941.5, + "probability": 1.0 + }, + { + "word": " money", + "start": 1941.5, + "end": 1941.68, + "probability": 1.0 + }, + { + "word": " involved", + "start": 1941.68, + "end": 1941.92, + "probability": 0.99853515625 + }, + { + "word": " in", + "start": 1941.92, + "end": 1942.1, + "probability": 0.98388671875 + }, + { + "word": " it.", + "start": 1942.1, + "end": 1942.16, + "probability": 0.99560546875 + } + ] + }, + { + "id": 917, + "text": "You know, you were saying that, um, that Jay, that there was, uh, even local people have lost thousands and thousands of dollars.", + "start": 1942.22, + "end": 1948.1, + "words": [ + { + "word": " You", + "start": 1942.22, + "end": 1942.28, + "probability": 0.970703125 + }, + { + "word": " know,", + "start": 1942.28, + "end": 1942.3, + "probability": 0.8369140625 + }, + { + "word": " you", + "start": 1942.34, + "end": 1942.52, + "probability": 0.998046875 + }, + { + "word": " were", + "start": 1942.52, + "end": 1942.62, + "probability": 0.99755859375 + }, + { + "word": " saying", + "start": 1942.62, + "end": 1942.86, + "probability": 1.0 + }, + { + "word": " that,", + "start": 1942.86, + "end": 1943.12, + "probability": 0.99462890625 + }, + { + "word": " um,", + "start": 1943.12, + "end": 1943.42, + "probability": 0.67626953125 + }, + { + "word": " that", + "start": 1943.42, + "end": 1943.78, + "probability": 0.99853515625 + }, + { + "word": " Jay,", + "start": 1943.78, + "end": 1944.12, + "probability": 0.97802734375 + }, + { + "word": " that", + "start": 1944.22, + "end": 1944.32, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 1944.32, + "end": 1944.46, + "probability": 0.9970703125 + }, + { + "word": " was,", + "start": 1944.46, + "end": 1944.66, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 1944.76, + "end": 1945.4, + "probability": 0.99853515625 + }, + { + "word": " even", + "start": 1945.54, + "end": 1945.92, + "probability": 0.9921875 + }, + { + "word": " local", + "start": 1945.92, + "end": 1946.2, + "probability": 1.0 + }, + { + "word": " people", + "start": 1946.2, + "end": 1946.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 1946.48, + "end": 1946.64, + "probability": 0.966796875 + }, + { + "word": " lost", + "start": 1946.64, + "end": 1946.8, + "probability": 1.0 + }, + { + "word": " thousands", + "start": 1946.8, + "end": 1947.32, + "probability": 1.0 + }, + { + "word": " and", + "start": 1947.32, + "end": 1947.52, + "probability": 0.99462890625 + }, + { + "word": " thousands", + "start": 1947.52, + "end": 1947.78, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 1947.78, + "end": 1947.94, + "probability": 0.9814453125 + }, + { + "word": " dollars.", + "start": 1947.94, + "end": 1948.1, + "probability": 0.92138671875 + } + ] + }, + { + "id": 918, + "text": "Down in, in the past few months down in Green Valley, one gentleman lost $50,000.", + "start": 1948.1, + "end": 1952.9, + "words": [ + { + "word": " Down", + "start": 1948.1, + "end": 1948.36, + "probability": 0.55810546875 + }, + { + "word": " in,", + "start": 1948.36, + "end": 1948.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 1948.42, + "end": 1948.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 1948.64, + "end": 1948.8, + "probability": 1.0 + }, + { + "word": " past", + "start": 1948.8, + "end": 1949.02, + "probability": 1.0 + }, + { + "word": " few", + "start": 1949.02, + "end": 1949.26, + "probability": 1.0 + }, + { + "word": " months", + "start": 1949.26, + "end": 1949.46, + "probability": 1.0 + }, + { + "word": " down", + "start": 1949.46, + "end": 1949.74, + "probability": 0.80810546875 + }, + { + "word": " in", + "start": 1949.74, + "end": 1949.9, + "probability": 0.97705078125 + }, + { + "word": " Green", + "start": 1949.9, + "end": 1950.04, + "probability": 0.296875 + }, + { + "word": " Valley,", + "start": 1950.04, + "end": 1950.32, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 1950.44, + "end": 1950.64, + "probability": 0.998046875 + }, + { + "word": " gentleman", + "start": 1950.64, + "end": 1951.28, + "probability": 0.99267578125 + }, + { + "word": " lost", + "start": 1951.28, + "end": 1951.66, + "probability": 1.0 + }, + { + "word": " $50", + "start": 1951.66, + "end": 1952.08, + "probability": 1.0 + }, + { + "word": ",000.", + "start": 1952.08, + "end": 1952.9, + "probability": 1.0 + } + ] + }, + { + "id": 919, + "text": "Yikes.", + "start": 1953.56, + "end": 1954.0, + "words": [ + { + "word": " Yikes.", + "start": 1953.56, + "end": 1954.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 920, + "text": "And one woman lost $54,000.", + "start": 1954.08, + "end": 1957.74, + "words": [ + { + "word": " And", + "start": 1954.08, + "end": 1954.36, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 1954.36, + "end": 1954.92, + "probability": 0.9990234375 + }, + { + "word": " woman", + "start": 1954.92, + "end": 1955.24, + "probability": 1.0 + }, + { + "word": " lost", + "start": 1955.24, + "end": 1955.64, + "probability": 0.99951171875 + }, + { + "word": " $54", + "start": 1955.64, + "end": 1956.52, + "probability": 0.9990234375 + }, + { + "word": ",000.", + "start": 1956.52, + "end": 1957.74, + "probability": 1.0 + } + ] + }, + { + "id": 921, + "text": "And that's recent.", + "start": 1958.7, + "end": 1960.06, + "words": [ + { + "word": " And", + "start": 1958.7, + "end": 1959.14, + "probability": 0.99560546875 + }, + { + "word": " that's", + "start": 1959.14, + "end": 1959.58, + "probability": 0.9609375 + }, + { + "word": " recent.", + "start": 1959.58, + "end": 1960.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 922, + "text": "And there's very little recourse depending on how that's.", + "start": 1960.32, + "end": 1962.86, + "words": [ + { + "word": " And", + "start": 1960.32, + "end": 1960.44, + "probability": 0.70751953125 + }, + { + "word": " there's", + "start": 1960.44, + "end": 1960.68, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 1960.68, + "end": 1960.84, + "probability": 1.0 + }, + { + "word": " little", + "start": 1960.84, + "end": 1961.06, + "probability": 1.0 + }, + { + "word": " recourse", + "start": 1961.06, + "end": 1961.52, + "probability": 1.0 + }, + { + "word": " depending", + "start": 1961.52, + "end": 1961.82, + "probability": 0.8232421875 + }, + { + "word": " on", + "start": 1961.82, + "end": 1962.3, + "probability": 1.0 + }, + { + "word": " how", + "start": 1962.3, + "end": 1962.5, + "probability": 1.0 + }, + { + "word": " that's.", + "start": 1962.5, + "end": 1962.86, + "probability": 1.0 + } + ] + }, + { + "id": 923, + "text": "It's gone.", + "start": 1962.88, + "end": 1963.38, + "words": [ + { + "word": " It's", + "start": 1962.88, + "end": 1963.14, + "probability": 0.8623046875 + }, + { + "word": " gone.", + "start": 1963.14, + "end": 1963.38, + "probability": 1.0 + } + ] + }, + { + "id": 924, + "text": "Yeah.", + "start": 1963.46, + "end": 1963.7, + "words": [ + { + "word": " Yeah.", + "start": 1963.46, + "end": 1963.7, + "probability": 0.9794921875 + } + ] + }, + { + "id": 925, + "text": "How you deal with that.", + "start": 1963.74, + "end": 1964.5, + "words": [ + { + "word": " How", + "start": 1963.74, + "end": 1963.82, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 1963.82, + "end": 1963.94, + "probability": 0.9951171875 + }, + { + "word": " deal", + "start": 1963.94, + "end": 1964.16, + "probability": 1.0 + }, + { + "word": " with", + "start": 1964.16, + "end": 1964.28, + "probability": 1.0 + }, + { + "word": " that.", + "start": 1964.28, + "end": 1964.5, + "probability": 1.0 + } + ] + }, + { + "id": 926, + "text": "Um, and that's why when you use things like non-traditional currencies and, and, uh, when you're dealing with, um, you know, you're being overly trusting, I think when it comes to a lot of people, uh, you don't just take somebody's word for it.", + "start": 1965.52, + "end": 1980.04, + "words": [ + { + "word": " Um,", + "start": 1965.52, + "end": 1965.96, + "probability": 0.03228759765625 + }, + { + "word": " and", + "start": 1965.96, + "end": 1966.4, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 1966.4, + "end": 1966.82, + "probability": 0.998046875 + }, + { + "word": " why", + "start": 1966.82, + "end": 1966.98, + "probability": 1.0 + }, + { + "word": " when", + "start": 1966.98, + "end": 1967.24, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 1967.24, + "end": 1967.36, + "probability": 1.0 + }, + { + "word": " use", + "start": 1967.36, + "end": 1967.56, + "probability": 1.0 + }, + { + "word": " things", + "start": 1967.56, + "end": 1967.74, + "probability": 1.0 + }, + { + "word": " like", + "start": 1967.74, + "end": 1967.94, + "probability": 1.0 + }, + { + "word": " non", + "start": 1967.94, + "end": 1968.12, + "probability": 0.67919921875 + }, + { + "word": "-traditional", + "start": 1968.12, + "end": 1968.44, + "probability": 0.99853515625 + }, + { + "word": " currencies", + "start": 1968.44, + "end": 1968.86, + "probability": 1.0 + }, + { + "word": " and,", + "start": 1968.86, + "end": 1969.24, + "probability": 0.99853515625 + }, + { + "word": " and,", + "start": 1969.26, + "end": 1969.7, + "probability": 0.99267578125 + }, + { + "word": " uh,", + "start": 1969.78, + "end": 1970.12, + "probability": 0.99755859375 + }, + { + "word": " when", + "start": 1970.24, + "end": 1970.86, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 1970.86, + "end": 1971.06, + "probability": 1.0 + }, + { + "word": " dealing", + "start": 1971.06, + "end": 1971.34, + "probability": 1.0 + }, + { + "word": " with,", + "start": 1971.34, + "end": 1971.74, + "probability": 1.0 + }, + { + "word": " um,", + "start": 1971.8, + "end": 1973.16, + "probability": 0.71240234375 + }, + { + "word": " you", + "start": 1973.28, + "end": 1973.92, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 1973.92, + "end": 1974.12, + "probability": 1.0 + }, + { + "word": " you're", + "start": 1974.14, + "end": 1974.62, + "probability": 0.9970703125 + }, + { + "word": " being", + "start": 1974.62, + "end": 1974.8, + "probability": 0.99853515625 + }, + { + "word": " overly", + "start": 1974.8, + "end": 1975.1, + "probability": 1.0 + }, + { + "word": " trusting,", + "start": 1975.1, + "end": 1975.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 1975.6, + "end": 1975.8, + "probability": 1.0 + }, + { + "word": " think", + "start": 1975.8, + "end": 1976.0, + "probability": 1.0 + }, + { + "word": " when", + "start": 1976.0, + "end": 1976.16, + "probability": 0.85009765625 + }, + { + "word": " it", + "start": 1976.16, + "end": 1976.28, + "probability": 1.0 + }, + { + "word": " comes", + "start": 1976.28, + "end": 1976.42, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 1976.42, + "end": 1976.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 1976.64, + "end": 1977.0, + "probability": 1.0 + }, + { + "word": " lot", + "start": 1977.0, + "end": 1977.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 1977.24, + "end": 1977.32, + "probability": 1.0 + }, + { + "word": " people,", + "start": 1977.32, + "end": 1977.6, + "probability": 1.0 + }, + { + "word": " uh,", + "start": 1977.74, + "end": 1978.04, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 1978.14, + "end": 1978.26, + "probability": 0.91943359375 + }, + { + "word": " don't", + "start": 1978.26, + "end": 1978.5, + "probability": 1.0 + }, + { + "word": " just", + "start": 1978.5, + "end": 1978.74, + "probability": 1.0 + }, + { + "word": " take", + "start": 1978.74, + "end": 1979.14, + "probability": 1.0 + }, + { + "word": " somebody's", + "start": 1979.14, + "end": 1979.5, + "probability": 1.0 + }, + { + "word": " word", + "start": 1979.5, + "end": 1979.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 1979.64, + "end": 1979.88, + "probability": 1.0 + }, + { + "word": " it.", + "start": 1979.88, + "end": 1980.04, + "probability": 1.0 + } + ] + }, + { + "id": 927, + "text": "It's definitely not a good idea.", + "start": 1980.1, + "end": 1982.1, + "words": [ + { + "word": " It's", + "start": 1980.1, + "end": 1980.48, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 1980.48, + "end": 1981.1, + "probability": 1.0 + }, + { + "word": " not", + "start": 1981.1, + "end": 1981.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 1981.36, + "end": 1981.5, + "probability": 1.0 + }, + { + "word": " good", + "start": 1981.5, + "end": 1981.64, + "probability": 1.0 + }, + { + "word": " idea.", + "start": 1981.64, + "end": 1982.1, + "probability": 1.0 + } + ] + }, + { + "id": 928, + "text": "Yeah.", + "start": 1982.2, + "end": 1982.58, + "words": [ + { + "word": " Yeah.", + "start": 1982.2, + "end": 1982.58, + "probability": 0.0222320556640625 + } + ] + }, + { + "id": 929, + "text": "And, and especially with the older generation, they will, they are more likely to fall for the heartstrings type things.", + "start": 1982.64, + "end": 1989.1, + "words": [ + { + "word": " And,", + "start": 1982.64, + "end": 1982.78, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 1982.88, + "end": 1983.14, + "probability": 0.99951171875 + }, + { + "word": " especially", + "start": 1983.14, + "end": 1983.62, + "probability": 0.99267578125 + }, + { + "word": " with", + "start": 1983.62, + "end": 1983.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 1983.92, + "end": 1984.12, + "probability": 1.0 + }, + { + "word": " older", + "start": 1984.12, + "end": 1984.36, + "probability": 1.0 + }, + { + "word": " generation,", + "start": 1984.36, + "end": 1984.8, + "probability": 1.0 + }, + { + "word": " they", + "start": 1984.92, + "end": 1985.08, + "probability": 1.0 + }, + { + "word": " will,", + "start": 1985.08, + "end": 1985.34, + "probability": 1.0 + }, + { + "word": " they", + "start": 1985.42, + "end": 1986.38, + "probability": 1.0 + }, + { + "word": " are", + "start": 1986.38, + "end": 1986.52, + "probability": 1.0 + }, + { + "word": " more", + "start": 1986.52, + "end": 1986.78, + "probability": 1.0 + }, + { + "word": " likely", + "start": 1986.78, + "end": 1987.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 1987.16, + "end": 1987.36, + "probability": 1.0 + }, + { + "word": " fall", + "start": 1987.36, + "end": 1987.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 1987.56, + "end": 1987.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 1987.72, + "end": 1987.84, + "probability": 0.9970703125 + }, + { + "word": " heartstrings", + "start": 1987.84, + "end": 1988.3, + "probability": 0.99609375 + }, + { + "word": " type", + "start": 1988.3, + "end": 1988.66, + "probability": 1.0 + }, + { + "word": " things.", + "start": 1988.66, + "end": 1989.1, + "probability": 1.0 + } + ] + }, + { + "id": 930, + "text": "Right.", + "start": 1989.2, + "end": 1989.6, + "words": [ + { + "word": " Right.", + "start": 1989.2, + "end": 1989.6, + "probability": 0.484619140625 + } + ] + }, + { + "id": 931, + "text": "Like, like the Nigerian Prince scam.", + "start": 1989.7, + "end": 1991.58, + "words": [ + { + "word": " Like,", + "start": 1989.7, + "end": 1989.9, + "probability": 0.919921875 + }, + { + "word": " like", + "start": 1989.92, + "end": 1990.08, + "probability": 0.89208984375 + }, + { + "word": " the", + "start": 1990.08, + "end": 1990.68, + "probability": 0.9990234375 + }, + { + "word": " Nigerian", + "start": 1990.68, + "end": 1991.18, + "probability": 0.99755859375 + }, + { + "word": " Prince", + "start": 1991.18, + "end": 1991.34, + "probability": 0.441650390625 + }, + { + "word": " scam.", + "start": 1991.34, + "end": 1991.58, + "probability": 0.91357421875 + } + ] + }, + { + "id": 932, + "text": "Like the, the friend or a relative.", + "start": 1991.64, + "end": 1994.5, + "words": [ + { + "word": " Like", + "start": 1991.64, + "end": 1991.78, + "probability": 0.8193359375 + }, + { + "word": " the,", + "start": 1991.78, + "end": 1991.98, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 1991.98, + "end": 1992.22, + "probability": 0.9970703125 + }, + { + "word": " friend", + "start": 1992.22, + "end": 1992.84, + "probability": 0.97509765625 + }, + { + "word": " or", + "start": 1992.84, + "end": 1993.36, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 1993.36, + "end": 1993.98, + "probability": 0.9423828125 + }, + { + "word": " relative.", + "start": 1993.98, + "end": 1994.5, + "probability": 1.0 + } + ] + }, + { + "id": 933, + "text": "That's in jail or in another country and stranded.", + "start": 1994.5, + "end": 1997.54, + "words": [ + { + "word": " That's", + "start": 1994.5, + "end": 1994.84, + "probability": 0.515625 + }, + { + "word": " in", + "start": 1994.84, + "end": 1994.98, + "probability": 0.998046875 + }, + { + "word": " jail", + "start": 1994.98, + "end": 1995.32, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 1995.32, + "end": 1995.8, + "probability": 0.962890625 + }, + { + "word": " in", + "start": 1995.8, + "end": 1996.3, + "probability": 0.98046875 + }, + { + "word": " another", + "start": 1996.3, + "end": 1996.54, + "probability": 0.99658203125 + }, + { + "word": " country", + "start": 1996.54, + "end": 1996.94, + "probability": 0.970703125 + }, + { + "word": " and", + "start": 1996.94, + "end": 1997.12, + "probability": 0.9404296875 + }, + { + "word": " stranded.", + "start": 1997.12, + "end": 1997.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 934, + "text": "Or you'll get the email.", + "start": 1997.8, + "end": 1998.8, + "words": [ + { + "word": " Or", + "start": 1997.8, + "end": 1998.04, + "probability": 0.9794921875 + }, + { + "word": " you'll", + "start": 1998.04, + "end": 1998.22, + "probability": 0.82861328125 + }, + { + "word": " get", + "start": 1998.22, + "end": 1998.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 1998.34, + "end": 1998.48, + "probability": 0.99951171875 + }, + { + "word": " email.", + "start": 1998.48, + "end": 1998.8, + "probability": 0.7626953125 + } + ] + }, + { + "id": 935, + "text": "Yeah.", + "start": 1999.42, + "end": 1999.88, + "words": [ + { + "word": " Yeah.", + "start": 1999.42, + "end": 1999.88, + "probability": 0.98779296875 + } + ] + }, + { + "id": 936, + "text": "Uh, and it's just, it's, you, you have to be more cynical than that when it comes to the technology.", + "start": 1999.98, + "end": 2007.24, + "words": [ + { + "word": " Uh,", + "start": 1999.98, + "end": 2000.24, + "probability": 0.0181732177734375 + }, + { + "word": " and", + "start": 2000.42, + "end": 2000.74, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2000.74, + "end": 2001.66, + "probability": 0.98828125 + }, + { + "word": " just,", + "start": 2001.66, + "end": 2001.88, + "probability": 1.0 + }, + { + "word": " it's,", + "start": 2001.92, + "end": 2002.4, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2002.4, + "end": 2003.66, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 2003.82, + "end": 2004.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 2004.02, + "end": 2004.32, + "probability": 0.83544921875 + }, + { + "word": " to", + "start": 2004.32, + "end": 2004.48, + "probability": 1.0 + }, + { + "word": " be", + "start": 2004.48, + "end": 2004.58, + "probability": 1.0 + }, + { + "word": " more", + "start": 2004.58, + "end": 2004.74, + "probability": 1.0 + }, + { + "word": " cynical", + "start": 2004.74, + "end": 2005.04, + "probability": 1.0 + }, + { + "word": " than", + "start": 2005.04, + "end": 2005.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 2005.26, + "end": 2005.52, + "probability": 1.0 + }, + { + "word": " when", + "start": 2005.52, + "end": 2005.82, + "probability": 0.8046875 + }, + { + "word": " it", + "start": 2005.82, + "end": 2006.0, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2006.0, + "end": 2006.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2006.16, + "end": 2006.38, + "probability": 1.0 + }, + { + "word": " the", + "start": 2006.38, + "end": 2006.5, + "probability": 0.99951171875 + }, + { + "word": " technology.", + "start": 2006.5, + "end": 2007.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 937, + "text": "Right.", + "start": 2007.42, + "end": 2007.88, + "words": [ + { + "word": " Right.", + "start": 2007.42, + "end": 2007.88, + "probability": 0.96923828125 + } + ] + }, + { + "id": 938, + "text": "Because.", + "start": 2007.92, + "end": 2008.14, + "words": [ + { + "word": " Because.", + "start": 2007.92, + "end": 2008.14, + "probability": 0.93701171875 + } + ] + }, + { + "id": 939, + "text": "Exactly.", + "start": 2008.76, + "end": 2009.22, + "words": [ + { + "word": " Exactly.", + "start": 2008.76, + "end": 2009.22, + "probability": 0.970703125 + } + ] + }, + { + "id": 940, + "text": "There's a lot of people that fall for very, very sort of obvious things when you look back on it.", + "start": 2009.44, + "end": 2014.94, + "words": [ + { + "word": " There's", + "start": 2009.44, + "end": 2009.9, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 2009.9, + "end": 2009.96, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2009.96, + "end": 2010.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 2010.06, + "end": 2010.08, + "probability": 1.0 + }, + { + "word": " people", + "start": 2010.08, + "end": 2010.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 2010.3, + "end": 2010.38, + "probability": 0.671875 + }, + { + "word": " fall", + "start": 2010.38, + "end": 2010.56, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2010.56, + "end": 2010.78, + "probability": 1.0 + }, + { + "word": " very,", + "start": 2010.78, + "end": 2011.16, + "probability": 1.0 + }, + { + "word": " very", + "start": 2011.34, + "end": 2011.88, + "probability": 1.0 + }, + { + "word": " sort", + "start": 2011.88, + "end": 2012.82, + "probability": 0.98681640625 + }, + { + "word": " of", + "start": 2012.82, + "end": 2012.98, + "probability": 1.0 + }, + { + "word": " obvious", + "start": 2012.98, + "end": 2013.4, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2013.4, + "end": 2013.8, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 2013.8, + "end": 2014.06, + "probability": 0.99560546875 + }, + { + "word": " you", + "start": 2014.06, + "end": 2014.18, + "probability": 1.0 + }, + { + "word": " look", + "start": 2014.18, + "end": 2014.32, + "probability": 1.0 + }, + { + "word": " back", + "start": 2014.32, + "end": 2014.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 2014.56, + "end": 2014.78, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2014.78, + "end": 2014.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 941, + "text": "And another major fraud, especially with the older community is a Medicare fraud.", + "start": 2015.04, + "end": 2019.68, + "words": [ + { + "word": " And", + "start": 2015.04, + "end": 2015.22, + "probability": 0.99462890625 + }, + { + "word": " another", + "start": 2015.22, + "end": 2015.52, + "probability": 0.99951171875 + }, + { + "word": " major", + "start": 2015.52, + "end": 2016.16, + "probability": 1.0 + }, + { + "word": " fraud,", + "start": 2016.16, + "end": 2016.62, + "probability": 1.0 + }, + { + "word": " especially", + "start": 2016.72, + "end": 2017.0, + "probability": 1.0 + }, + { + "word": " with", + "start": 2017.0, + "end": 2017.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 2017.32, + "end": 2017.42, + "probability": 1.0 + }, + { + "word": " older", + "start": 2017.42, + "end": 2017.68, + "probability": 1.0 + }, + { + "word": " community", + "start": 2017.68, + "end": 2018.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 2018.18, + "end": 2018.5, + "probability": 0.82861328125 + }, + { + "word": " a", + "start": 2018.5, + "end": 2018.62, + "probability": 1.0 + }, + { + "word": " Medicare", + "start": 2018.62, + "end": 2019.16, + "probability": 0.9990234375 + }, + { + "word": " fraud.", + "start": 2019.16, + "end": 2019.68, + "probability": 1.0 + } + ] + }, + { + "id": 942, + "text": "You will get a call or something that says, oh, free back, back break.", + "start": 2019.98, + "end": 2024.42, + "words": [ + { + "word": " You", + "start": 2019.98, + "end": 2020.44, + "probability": 0.998046875 + }, + { + "word": " will", + "start": 2020.44, + "end": 2020.58, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 2020.58, + "end": 2020.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 2020.74, + "end": 2020.88, + "probability": 1.0 + }, + { + "word": " call", + "start": 2020.88, + "end": 2021.3, + "probability": 1.0 + }, + { + "word": " or", + "start": 2021.3, + "end": 2021.56, + "probability": 1.0 + }, + { + "word": " something", + "start": 2021.56, + "end": 2021.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 2021.86, + "end": 2022.02, + "probability": 0.9755859375 + }, + { + "word": " says,", + "start": 2022.02, + "end": 2022.18, + "probability": 1.0 + }, + { + "word": " oh,", + "start": 2022.3, + "end": 2022.44, + "probability": 0.2000732421875 + }, + { + "word": " free", + "start": 2022.58, + "end": 2023.26, + "probability": 0.9990234375 + }, + { + "word": " back,", + "start": 2023.26, + "end": 2023.66, + "probability": 0.98828125 + }, + { + "word": " back", + "start": 2023.7, + "end": 2023.98, + "probability": 0.9990234375 + }, + { + "word": " break.", + "start": 2023.98, + "end": 2024.42, + "probability": 0.705078125 + } + ] + }, + { + "id": 943, + "text": "Free this, free that for medical stuff.", + "start": 2024.5, + "end": 2026.68, + "words": [ + { + "word": " Free", + "start": 2024.5, + "end": 2024.72, + "probability": 0.5087890625 + }, + { + "word": " this,", + "start": 2024.72, + "end": 2025.22, + "probability": 0.99853515625 + }, + { + "word": " free", + "start": 2025.38, + "end": 2025.54, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2025.54, + "end": 2025.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 2025.74, + "end": 2025.96, + "probability": 0.9716796875 + }, + { + "word": " medical", + "start": 2025.96, + "end": 2026.3, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2026.3, + "end": 2026.68, + "probability": 1.0 + } + ] + }, + { + "id": 944, + "text": "Right.", + "start": 2026.92, + "end": 2027.14, + "words": [ + { + "word": " Right.", + "start": 2026.92, + "end": 2027.14, + "probability": 0.432373046875 + } + ] + }, + { + "id": 945, + "text": "And it's just outright Medicare fraud.", + "start": 2027.32, + "end": 2029.9, + "words": [ + { + "word": " And", + "start": 2027.32, + "end": 2027.64, + "probability": 0.9921875 + }, + { + "word": " it's", + "start": 2027.64, + "end": 2027.98, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2027.98, + "end": 2028.18, + "probability": 1.0 + }, + { + "word": " outright", + "start": 2028.18, + "end": 2028.64, + "probability": 1.0 + }, + { + "word": " Medicare", + "start": 2028.64, + "end": 2029.5, + "probability": 0.9990234375 + }, + { + "word": " fraud.", + "start": 2029.5, + "end": 2029.9, + "probability": 1.0 + } + ] + }, + { + "id": 946, + "text": "They want all your numbers and it's ID theft as well.", + "start": 2029.94, + "end": 2033.04, + "words": [ + { + "word": " They", + "start": 2029.94, + "end": 2030.12, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2030.12, + "end": 2030.32, + "probability": 1.0 + }, + { + "word": " all", + "start": 2030.32, + "end": 2030.54, + "probability": 1.0 + }, + { + "word": " your", + "start": 2030.54, + "end": 2030.76, + "probability": 1.0 + }, + { + "word": " numbers", + "start": 2030.76, + "end": 2031.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 2031.14, + "end": 2031.66, + "probability": 0.1190185546875 + }, + { + "word": " it's", + "start": 2031.66, + "end": 2031.98, + "probability": 0.994140625 + }, + { + "word": " ID", + "start": 2031.98, + "end": 2032.16, + "probability": 0.97802734375 + }, + { + "word": " theft", + "start": 2032.16, + "end": 2032.52, + "probability": 1.0 + }, + { + "word": " as", + "start": 2032.52, + "end": 2032.8, + "probability": 0.99951171875 + }, + { + "word": " well.", + "start": 2032.8, + "end": 2033.04, + "probability": 1.0 + } + ] + }, + { + "id": 947, + "text": "They want all your numbers, your insurances and stuff like that.", + "start": 2033.24, + "end": 2036.04, + "words": [ + { + "word": " They", + "start": 2033.24, + "end": 2033.58, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 2033.58, + "end": 2033.72, + "probability": 1.0 + }, + { + "word": " all", + "start": 2033.72, + "end": 2033.86, + "probability": 1.0 + }, + { + "word": " your", + "start": 2033.86, + "end": 2034.04, + "probability": 1.0 + }, + { + "word": " numbers,", + "start": 2034.04, + "end": 2034.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 2034.4, + "end": 2034.56, + "probability": 1.0 + }, + { + "word": " insurances", + "start": 2034.56, + "end": 2035.2, + "probability": 0.9931640625 + }, + { + "word": " and", + "start": 2035.2, + "end": 2035.38, + "probability": 0.98828125 + }, + { + "word": " stuff", + "start": 2035.38, + "end": 2035.62, + "probability": 1.0 + }, + { + "word": " like", + "start": 2035.62, + "end": 2035.84, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2035.84, + "end": 2036.04, + "probability": 1.0 + } + ] + }, + { + "id": 948, + "text": "Don't know if you even get your back brace or your arm stuff, but they've got all your numbers and they've got your Medicare number, which is your social security number.", + "start": 2036.2, + "end": 2045.96, + "words": [ + { + "word": " Don't", + "start": 2036.2, + "end": 2036.66, + "probability": 0.9970703125 + }, + { + "word": " know", + "start": 2036.66, + "end": 2036.78, + "probability": 1.0 + }, + { + "word": " if", + "start": 2036.78, + "end": 2036.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 2036.98, + "end": 2037.1, + "probability": 1.0 + }, + { + "word": " even", + "start": 2037.1, + "end": 2037.34, + "probability": 1.0 + }, + { + "word": " get", + "start": 2037.34, + "end": 2037.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 2037.58, + "end": 2037.74, + "probability": 1.0 + }, + { + "word": " back", + "start": 2037.74, + "end": 2038.0, + "probability": 1.0 + }, + { + "word": " brace", + "start": 2038.0, + "end": 2038.32, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2038.32, + "end": 2038.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 2038.58, + "end": 2038.74, + "probability": 1.0 + }, + { + "word": " arm", + "start": 2038.74, + "end": 2039.02, + "probability": 0.9931640625 + }, + { + "word": " stuff,", + "start": 2039.02, + "end": 2039.26, + "probability": 1.0 + }, + { + "word": " but", + "start": 2039.44, + "end": 2039.86, + "probability": 1.0 + }, + { + "word": " they've", + "start": 2039.86, + "end": 2040.12, + "probability": 1.0 + }, + { + "word": " got", + "start": 2040.12, + "end": 2040.26, + "probability": 1.0 + }, + { + "word": " all", + "start": 2040.26, + "end": 2040.48, + "probability": 1.0 + }, + { + "word": " your", + "start": 2040.48, + "end": 2040.66, + "probability": 1.0 + }, + { + "word": " numbers", + "start": 2040.66, + "end": 2041.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 2041.0, + "end": 2041.52, + "probability": 0.61474609375 + }, + { + "word": " they've", + "start": 2041.52, + "end": 2041.96, + "probability": 1.0 + }, + { + "word": " got", + "start": 2041.96, + "end": 2042.14, + "probability": 1.0 + }, + { + "word": " your", + "start": 2042.14, + "end": 2042.32, + "probability": 1.0 + }, + { + "word": " Medicare", + "start": 2042.32, + "end": 2042.72, + "probability": 1.0 + }, + { + "word": " number,", + "start": 2042.72, + "end": 2043.0, + "probability": 1.0 + }, + { + "word": " which", + "start": 2043.14, + "end": 2043.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 2043.42, + "end": 2043.58, + "probability": 1.0 + }, + { + "word": " your", + "start": 2043.58, + "end": 2043.92, + "probability": 1.0 + }, + { + "word": " social", + "start": 2043.92, + "end": 2044.94, + "probability": 0.59912109375 + }, + { + "word": " security", + "start": 2044.94, + "end": 2045.42, + "probability": 1.0 + }, + { + "word": " number.", + "start": 2045.42, + "end": 2045.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 949, + "text": "Right.", + "start": 2046.22, + "end": 2046.5, + "words": [ + { + "word": " Right.", + "start": 2046.22, + "end": 2046.5, + "probability": 0.9521484375 + } + ] + }, + { + "id": 950, + "text": "And, and believe me, any of these places that if, if Wilford Brimley is saying that you should probably check into it.", + "start": 2047.06, + "end": 2054.42, + "words": [ + { + "word": " And,", + "start": 2047.06, + "end": 2047.54, + "probability": 0.99560546875 + }, + { + "word": " and", + "start": 2047.66, + "end": 2047.8, + "probability": 0.98486328125 + }, + { + "word": " believe", + "start": 2047.8, + "end": 2048.16, + "probability": 0.99951171875 + }, + { + "word": " me,", + "start": 2048.16, + "end": 2048.42, + "probability": 1.0 + }, + { + "word": " any", + "start": 2048.44, + "end": 2048.56, + "probability": 0.99462890625 + }, + { + "word": " of", + "start": 2048.56, + "end": 2048.72, + "probability": 1.0 + }, + { + "word": " these", + "start": 2048.72, + "end": 2048.86, + "probability": 1.0 + }, + { + "word": " places", + "start": 2048.86, + "end": 2049.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 2049.22, + "end": 2049.54, + "probability": 0.9990234375 + }, + { + "word": " if,", + "start": 2049.54, + "end": 2051.04, + "probability": 0.92919921875 + }, + { + "word": " if", + "start": 2051.18, + "end": 2051.3, + "probability": 0.99853515625 + }, + { + "word": " Wilford", + "start": 2051.3, + "end": 2051.72, + "probability": 0.939453125 + }, + { + "word": " Brimley", + "start": 2051.72, + "end": 2052.1, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 2052.1, + "end": 2052.34, + "probability": 1.0 + }, + { + "word": " saying", + "start": 2052.34, + "end": 2052.7, + "probability": 0.8330078125 + }, + { + "word": " that", + "start": 2052.7, + "end": 2052.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 2052.96, + "end": 2053.1, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 2053.1, + "end": 2053.26, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 2053.26, + "end": 2053.54, + "probability": 1.0 + }, + { + "word": " check", + "start": 2053.54, + "end": 2053.9, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 2053.9, + "end": 2054.16, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2054.16, + "end": 2054.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 951, + "text": "That may be okay.", + "start": 2054.42, + "end": 2056.16, + "words": [ + { + "word": " That", + "start": 2054.42, + "end": 2054.54, + "probability": 0.1201171875 + }, + { + "word": " may", + "start": 2054.54, + "end": 2055.66, + "probability": 0.9765625 + }, + { + "word": " be", + "start": 2055.66, + "end": 2055.92, + "probability": 1.0 + }, + { + "word": " okay.", + "start": 2055.92, + "end": 2056.16, + "probability": 0.94189453125 + } + ] + }, + { + "id": 952, + "text": "Is he still alive?", + "start": 2056.24, + "end": 2056.86, + "words": [ + { + "word": " Is", + "start": 2056.24, + "end": 2056.38, + "probability": 0.9990234375 + }, + { + "word": " he", + "start": 2056.38, + "end": 2056.46, + "probability": 1.0 + }, + { + "word": " still", + "start": 2056.46, + "end": 2056.66, + "probability": 1.0 + }, + { + "word": " alive?", + "start": 2056.66, + "end": 2056.86, + "probability": 1.0 + } + ] + }, + { + "id": 953, + "text": "Did we determine whether or not Wilford Brimley is still alive?", + "start": 2057.06, + "end": 2059.06, + "words": [ + { + "word": " Did", + "start": 2057.06, + "end": 2057.14, + "probability": 0.9970703125 + }, + { + "word": " we", + "start": 2057.14, + "end": 2057.24, + "probability": 1.0 + }, + { + "word": " determine", + "start": 2057.24, + "end": 2057.54, + "probability": 1.0 + }, + { + "word": " whether", + "start": 2057.54, + "end": 2057.82, + "probability": 1.0 + }, + { + "word": " or", + "start": 2057.82, + "end": 2057.92, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2057.92, + "end": 2058.02, + "probability": 1.0 + }, + { + "word": " Wilford", + "start": 2058.02, + "end": 2058.3, + "probability": 0.9287109375 + }, + { + "word": " Brimley", + "start": 2058.3, + "end": 2058.58, + "probability": 0.99462890625 + }, + { + "word": " is", + "start": 2058.58, + "end": 2058.7, + "probability": 0.99951171875 + }, + { + "word": " still", + "start": 2058.7, + "end": 2058.84, + "probability": 1.0 + }, + { + "word": " alive?", + "start": 2058.84, + "end": 2059.06, + "probability": 1.0 + } + ] + }, + { + "id": 954, + "text": "I don't know.", + "start": 2059.22, + "end": 2059.46, + "words": [ + { + "word": " I", + "start": 2059.22, + "end": 2059.3, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2059.3, + "end": 2059.42, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2059.42, + "end": 2059.46, + "probability": 1.0 + } + ] + }, + { + "id": 955, + "text": "I don't know.", + "start": 2059.46, + "end": 2059.84, + "words": [ + { + "word": " I", + "start": 2059.46, + "end": 2059.54, + "probability": 0.73828125 + }, + { + "word": " don't", + "start": 2059.54, + "end": 2059.66, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2059.66, + "end": 2059.84, + "probability": 0.99462890625 + } + ] + }, + { + "id": 956, + "text": "But they're not going to call you at home and offer you free stuff.", + "start": 2060.06, + "end": 2065.0, + "words": [ + { + "word": " But", + "start": 2060.06, + "end": 2060.42, + "probability": 0.96435546875 + }, + { + "word": " they're", + "start": 2060.42, + "end": 2061.22, + "probability": 0.99609375 + }, + { + "word": " not", + "start": 2061.22, + "end": 2061.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 2061.36, + "end": 2061.46, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2061.46, + "end": 2061.58, + "probability": 1.0 + }, + { + "word": " call", + "start": 2061.58, + "end": 2061.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 2061.78, + "end": 2062.08, + "probability": 1.0 + }, + { + "word": " at", + "start": 2062.08, + "end": 2062.7, + "probability": 0.99951171875 + }, + { + "word": " home", + "start": 2062.7, + "end": 2063.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 2063.0, + "end": 2063.68, + "probability": 0.99609375 + }, + { + "word": " offer", + "start": 2063.68, + "end": 2064.1, + "probability": 1.0 + }, + { + "word": " you", + "start": 2064.1, + "end": 2064.34, + "probability": 1.0 + }, + { + "word": " free", + "start": 2064.34, + "end": 2064.58, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2064.58, + "end": 2065.0, + "probability": 1.0 + } + ] + }, + { + "id": 957, + "text": "Right.", + "start": 2065.24, + "end": 2065.54, + "words": [ + { + "word": " Right.", + "start": 2065.24, + "end": 2065.54, + "probability": 0.29052734375 + } + ] + }, + { + "id": 958, + "text": "Even the thing that you see on TV about the get your Medicare approved rascal scooter.", + "start": 2065.62, + "end": 2070.1, + "words": [ + { + "word": " Even", + "start": 2065.62, + "end": 2065.84, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 2065.84, + "end": 2065.98, + "probability": 0.99853515625 + }, + { + "word": " thing", + "start": 2065.98, + "end": 2066.42, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2066.42, + "end": 2066.56, + "probability": 0.8857421875 + }, + { + "word": " you", + "start": 2066.56, + "end": 2066.72, + "probability": 1.0 + }, + { + "word": " see", + "start": 2066.72, + "end": 2066.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 2066.92, + "end": 2067.06, + "probability": 1.0 + }, + { + "word": " TV", + "start": 2067.06, + "end": 2067.32, + "probability": 1.0 + }, + { + "word": " about", + "start": 2067.32, + "end": 2067.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 2067.66, + "end": 2067.88, + "probability": 0.99853515625 + }, + { + "word": " get", + "start": 2067.88, + "end": 2068.34, + "probability": 0.94091796875 + }, + { + "word": " your", + "start": 2068.34, + "end": 2068.48, + "probability": 0.9873046875 + }, + { + "word": " Medicare", + "start": 2068.48, + "end": 2068.82, + "probability": 0.9990234375 + }, + { + "word": " approved", + "start": 2068.82, + "end": 2069.18, + "probability": 0.9208984375 + }, + { + "word": " rascal", + "start": 2069.18, + "end": 2069.68, + "probability": 0.990234375 + }, + { + "word": " scooter.", + "start": 2069.68, + "end": 2070.1, + "probability": 0.99755859375 + } + ] + }, + { + "id": 959, + "text": "And yes, he is.", + "start": 2070.38, + "end": 2070.92, + "words": [ + { + "word": " And", + "start": 2070.38, + "end": 2070.48, + "probability": 0.9951171875 + }, + { + "word": " yes,", + "start": 2070.48, + "end": 2070.66, + "probability": 0.85546875 + }, + { + "word": " he", + "start": 2070.7, + "end": 2070.84, + "probability": 0.9990234375 + }, + { + "word": " is.", + "start": 2070.84, + "end": 2070.92, + "probability": 1.0 + } + ] + }, + { + "id": 960, + "text": "Okay, cool.", + "start": 2071.12, + "end": 2071.66, + "words": [ + { + "word": " Okay,", + "start": 2071.12, + "end": 2071.48, + "probability": 0.97314453125 + }, + { + "word": " cool.", + "start": 2071.54, + "end": 2071.66, + "probability": 1.0 + } + ] + }, + { + "id": 961, + "text": "I'm glad that he is.", + "start": 2072.7, + "end": 2073.6, + "words": [ + { + "word": " I'm", + "start": 2072.7, + "end": 2073.06, + "probability": 0.998046875 + }, + { + "word": " glad", + "start": 2073.06, + "end": 2073.24, + "probability": 1.0 + }, + { + "word": " that", + "start": 2073.24, + "end": 2073.4, + "probability": 1.0 + }, + { + "word": " he", + "start": 2073.4, + "end": 2073.48, + "probability": 1.0 + }, + { + "word": " is.", + "start": 2073.48, + "end": 2073.6, + "probability": 0.9990234375 + } + ] + }, + { + "id": 962, + "text": "It's probably because of those diabetes testing supplies.", + "start": 2073.66, + "end": 2075.72, + "words": [ + { + "word": " It's", + "start": 2073.66, + "end": 2073.78, + "probability": 0.998046875 + }, + { + "word": " probably", + "start": 2073.78, + "end": 2073.96, + "probability": 1.0 + }, + { + "word": " because", + "start": 2073.96, + "end": 2074.22, + "probability": 1.0 + }, + { + "word": " of", + "start": 2074.22, + "end": 2074.44, + "probability": 1.0 + }, + { + "word": " those", + "start": 2074.44, + "end": 2074.56, + "probability": 1.0 + }, + { + "word": " diabetes", + "start": 2074.56, + "end": 2074.88, + "probability": 0.9990234375 + }, + { + "word": " testing", + "start": 2074.88, + "end": 2075.32, + "probability": 0.89404296875 + }, + { + "word": " supplies.", + "start": 2075.32, + "end": 2075.72, + "probability": 1.0 + } + ] + }, + { + "id": 963, + "text": "Yeah, that's it.", + "start": 2076.08, + "end": 2076.62, + "words": [ + { + "word": " Yeah,", + "start": 2076.08, + "end": 2076.28, + "probability": 0.99560546875 + }, + { + "word": " that's", + "start": 2076.28, + "end": 2076.58, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2076.58, + "end": 2076.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 964, + "text": "But if, you know, even if you're going to get your free rascal, right, that they talk about on the, on the, on television.", + "start": 2077.7599999999998, + "end": 2084.16, + "words": [ + { + "word": " But", + "start": 2077.7599999999998, + "end": 2078.12, + "probability": 0.9697265625 + }, + { + "word": " if,", + "start": 2078.12, + "end": 2078.48, + "probability": 0.376953125 + }, + { + "word": " you", + "start": 2078.5, + "end": 2079.34, + "probability": 0.88232421875 + }, + { + "word": " know,", + "start": 2079.34, + "end": 2079.52, + "probability": 1.0 + }, + { + "word": " even", + "start": 2079.52, + "end": 2079.68, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2079.68, + "end": 2079.8, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2079.8, + "end": 2079.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 2079.92, + "end": 2079.98, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2079.98, + "end": 2080.04, + "probability": 1.0 + }, + { + "word": " get", + "start": 2080.04, + "end": 2080.14, + "probability": 1.0 + }, + { + "word": " your", + "start": 2080.14, + "end": 2080.28, + "probability": 1.0 + }, + { + "word": " free", + "start": 2080.28, + "end": 2080.5, + "probability": 1.0 + }, + { + "word": " rascal,", + "start": 2080.5, + "end": 2080.98, + "probability": 1.0 + }, + { + "word": " right,", + "start": 2081.08, + "end": 2081.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 2081.58, + "end": 2081.7, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 2081.7, + "end": 2081.84, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2081.84, + "end": 2082.0, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2082.0, + "end": 2082.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 2082.26, + "end": 2082.52, + "probability": 1.0 + }, + { + "word": " the,", + "start": 2082.52, + "end": 2082.68, + "probability": 0.43310546875 + }, + { + "word": " on", + "start": 2082.78, + "end": 2083.26, + "probability": 1.0 + }, + { + "word": " the,", + "start": 2083.26, + "end": 2083.4, + "probability": 0.96728515625 + }, + { + "word": " on", + "start": 2083.4, + "end": 2083.74, + "probability": 1.0 + }, + { + "word": " television.", + "start": 2083.74, + "end": 2084.16, + "probability": 1.0 + } + ] + }, + { + "id": 965, + "text": "At three in the morning.", + "start": 2084.42, + "end": 2085.68, + "words": [ + { + "word": " At", + "start": 2084.42, + "end": 2084.74, + "probability": 0.0303497314453125 + }, + { + "word": " three", + "start": 2084.74, + "end": 2085.2, + "probability": 0.4599609375 + }, + { + "word": " in", + "start": 2085.2, + "end": 2085.34, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2085.34, + "end": 2085.46, + "probability": 1.0 + }, + { + "word": " morning.", + "start": 2085.46, + "end": 2085.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 966, + "text": "That's still you calling them, not them calling you.", + "start": 2086.82, + "end": 2089.58, + "words": [ + { + "word": " That's", + "start": 2086.82, + "end": 2087.3, + "probability": 0.9931640625 + }, + { + "word": " still", + "start": 2087.3, + "end": 2087.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 2087.58, + "end": 2087.82, + "probability": 0.99755859375 + }, + { + "word": " calling", + "start": 2087.82, + "end": 2088.08, + "probability": 0.99609375 + }, + { + "word": " them,", + "start": 2088.08, + "end": 2088.34, + "probability": 0.99951171875 + }, + { + "word": " not", + "start": 2088.48, + "end": 2088.76, + "probability": 0.998046875 + }, + { + "word": " them", + "start": 2088.76, + "end": 2088.98, + "probability": 1.0 + }, + { + "word": " calling", + "start": 2088.98, + "end": 2089.26, + "probability": 1.0 + }, + { + "word": " you.", + "start": 2089.26, + "end": 2089.58, + "probability": 1.0 + } + ] + }, + { + "id": 967, + "text": "And that whole, it's just, it's really sad to me that people fall for these types of things.", + "start": 2090.94, + "end": 2096.44, + "words": [ + { + "word": " And", + "start": 2090.94, + "end": 2091.42, + "probability": 0.8662109375 + }, + { + "word": " that", + "start": 2091.42, + "end": 2091.9, + "probability": 0.89208984375 + }, + { + "word": " whole,", + "start": 2091.9, + "end": 2092.26, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 2092.52, + "end": 2092.94, + "probability": 0.9990234375 + }, + { + "word": " just,", + "start": 2092.94, + "end": 2093.14, + "probability": 0.84765625 + }, + { + "word": " it's", + "start": 2093.18, + "end": 2093.5, + "probability": 1.0 + }, + { + "word": " really", + "start": 2093.5, + "end": 2094.2, + "probability": 1.0 + }, + { + "word": " sad", + "start": 2094.2, + "end": 2094.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2094.58, + "end": 2094.84, + "probability": 1.0 + }, + { + "word": " me", + "start": 2094.84, + "end": 2095.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2095.0, + "end": 2095.2, + "probability": 0.998046875 + }, + { + "word": " people", + "start": 2095.2, + "end": 2095.38, + "probability": 1.0 + }, + { + "word": " fall", + "start": 2095.38, + "end": 2095.66, + "probability": 1.0 + }, + { + "word": " for", + "start": 2095.66, + "end": 2095.86, + "probability": 1.0 + }, + { + "word": " these", + "start": 2095.86, + "end": 2095.98, + "probability": 1.0 + }, + { + "word": " types", + "start": 2095.98, + "end": 2096.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 2096.14, + "end": 2096.26, + "probability": 1.0 + }, + { + "word": " things.", + "start": 2096.26, + "end": 2096.44, + "probability": 1.0 + } + ] + }, + { + "id": 968, + "text": "And like I said, I don't even see them anymore.", + "start": 2096.52, + "end": 2098.32, + "words": [ + { + "word": " And", + "start": 2096.52, + "end": 2096.58, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 2096.58, + "end": 2096.68, + "probability": 0.9892578125 + }, + { + "word": " I", + "start": 2096.68, + "end": 2096.74, + "probability": 0.93896484375 + }, + { + "word": " said,", + "start": 2096.74, + "end": 2096.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 2096.88, + "end": 2097.0, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2097.0, + "end": 2097.12, + "probability": 1.0 + }, + { + "word": " even", + "start": 2097.12, + "end": 2097.26, + "probability": 1.0 + }, + { + "word": " see", + "start": 2097.26, + "end": 2097.64, + "probability": 1.0 + }, + { + "word": " them", + "start": 2097.64, + "end": 2097.9, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 2097.9, + "end": 2098.32, + "probability": 1.0 + } + ] + }, + { + "id": 969, + "text": "Well, I even have received calls from, oh yeah, we're returning your call on your medical alarm or your alarm, which I've never called on.", + "start": 2098.6, + "end": 2107.98, + "words": [ + { + "word": " Well,", + "start": 2098.6, + "end": 2098.7, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2098.72, + "end": 2098.82, + "probability": 1.0 + }, + { + "word": " even", + "start": 2098.82, + "end": 2099.04, + "probability": 1.0 + }, + { + "word": " have", + "start": 2099.04, + "end": 2099.32, + "probability": 0.99755859375 + }, + { + "word": " received", + "start": 2099.32, + "end": 2099.74, + "probability": 1.0 + }, + { + "word": " calls", + "start": 2099.74, + "end": 2100.34, + "probability": 1.0 + }, + { + "word": " from,", + "start": 2100.34, + "end": 2100.72, + "probability": 1.0 + }, + { + "word": " oh", + "start": 2100.78, + "end": 2100.98, + "probability": 0.9482421875 + }, + { + "word": " yeah,", + "start": 2100.98, + "end": 2101.22, + "probability": 0.46484375 + }, + { + "word": " we're", + "start": 2101.28, + "end": 2101.48, + "probability": 0.9609375 + }, + { + "word": " returning", + "start": 2101.48, + "end": 2102.0, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 2102.0, + "end": 2102.32, + "probability": 1.0 + }, + { + "word": " call", + "start": 2102.32, + "end": 2102.62, + "probability": 1.0 + }, + { + "word": " on", + "start": 2102.62, + "end": 2102.9, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2102.9, + "end": 2103.06, + "probability": 1.0 + }, + { + "word": " medical", + "start": 2103.06, + "end": 2103.52, + "probability": 0.99951171875 + }, + { + "word": " alarm", + "start": 2103.52, + "end": 2104.1, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2104.1, + "end": 2104.86, + "probability": 0.80517578125 + }, + { + "word": " your", + "start": 2104.86, + "end": 2105.26, + "probability": 1.0 + }, + { + "word": " alarm,", + "start": 2105.26, + "end": 2106.32, + "probability": 1.0 + }, + { + "word": " which", + "start": 2106.52, + "end": 2106.78, + "probability": 1.0 + }, + { + "word": " I've", + "start": 2106.78, + "end": 2107.02, + "probability": 1.0 + }, + { + "word": " never", + "start": 2107.02, + "end": 2107.24, + "probability": 1.0 + }, + { + "word": " called", + "start": 2107.24, + "end": 2107.64, + "probability": 1.0 + }, + { + "word": " on.", + "start": 2107.64, + "end": 2107.98, + "probability": 1.0 + } + ] + }, + { + "id": 970, + "text": "But it starts out, hey, we're returning your call.", + "start": 2108.08, + "end": 2110.38, + "words": [ + { + "word": " But", + "start": 2108.08, + "end": 2108.56, + "probability": 0.97900390625 + }, + { + "word": " it", + "start": 2108.56, + "end": 2108.68, + "probability": 1.0 + }, + { + "word": " starts", + "start": 2108.68, + "end": 2108.92, + "probability": 1.0 + }, + { + "word": " out,", + "start": 2108.92, + "end": 2109.02, + "probability": 0.314208984375 + }, + { + "word": " hey,", + "start": 2109.06, + "end": 2109.22, + "probability": 0.99853515625 + }, + { + "word": " we're", + "start": 2109.28, + "end": 2109.46, + "probability": 1.0 + }, + { + "word": " returning", + "start": 2109.46, + "end": 2109.8, + "probability": 1.0 + }, + { + "word": " your", + "start": 2109.8, + "end": 2110.12, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2110.12, + "end": 2110.38, + "probability": 1.0 + } + ] + }, + { + "id": 971, + "text": "So if somebody is confused a little bit.", + "start": 2111.18, + "end": 2113.96, + "words": [ + { + "word": " So", + "start": 2111.18, + "end": 2111.66, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2111.66, + "end": 2112.14, + "probability": 0.94140625 + }, + { + "word": " somebody", + "start": 2112.14, + "end": 2112.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 2112.82, + "end": 2112.94, + "probability": 0.158203125 + }, + { + "word": " confused", + "start": 2112.94, + "end": 2113.24, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2113.24, + "end": 2113.6, + "probability": 0.9990234375 + }, + { + "word": " little", + "start": 2113.6, + "end": 2113.74, + "probability": 1.0 + }, + { + "word": " bit.", + "start": 2113.74, + "end": 2113.96, + "probability": 1.0 + } + ] + }, + { + "id": 972, + "text": "That maybe I made a call.", + "start": 2113.96, + "end": 2115.54, + "words": [ + { + "word": " That", + "start": 2113.96, + "end": 2114.06, + "probability": 0.040771484375 + }, + { + "word": " maybe", + "start": 2114.06, + "end": 2114.56, + "probability": 0.430419921875 + }, + { + "word": " I", + "start": 2114.56, + "end": 2115.0, + "probability": 0.99951171875 + }, + { + "word": " made", + "start": 2115.0, + "end": 2115.2, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2115.2, + "end": 2115.32, + "probability": 1.0 + }, + { + "word": " call.", + "start": 2115.32, + "end": 2115.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 973, + "text": "I don't know.", + "start": 2115.64, + "end": 2116.32, + "words": [ + { + "word": " I", + "start": 2115.64, + "end": 2115.8, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2115.8, + "end": 2116.16, + "probability": 1.0 + }, + { + "word": " know.", + "start": 2116.16, + "end": 2116.32, + "probability": 1.0 + } + ] + }, + { + "id": 974, + "text": "Wow.", + "start": 2117.02, + "end": 2117.38, + "words": [ + { + "word": " Wow.", + "start": 2117.02, + "end": 2117.38, + "probability": 0.98681640625 + } + ] + }, + { + "id": 975, + "text": "Praying on the dimension.", + "start": 2117.46, + "end": 2118.32, + "words": [ + { + "word": " Praying", + "start": 2117.46, + "end": 2117.82, + "probability": 0.798828125 + }, + { + "word": " on", + "start": 2117.82, + "end": 2117.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 2117.98, + "end": 2118.1, + "probability": 0.99951171875 + }, + { + "word": " dimension.", + "start": 2118.1, + "end": 2118.32, + "probability": 0.89892578125 + } + ] + }, + { + "id": 976, + "text": "That's, that's no good.", + "start": 2118.94, + "end": 2120.0, + "words": [ + { + "word": " That's,", + "start": 2118.94, + "end": 2119.3, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2119.3, + "end": 2119.56, + "probability": 1.0 + }, + { + "word": " no", + "start": 2119.56, + "end": 2119.68, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 2119.68, + "end": 2120.0, + "probability": 1.0 + } + ] + }, + { + "id": 977, + "text": "It's no good at all.", + "start": 2120.1, + "end": 2121.0, + "words": [ + { + "word": " It's", + "start": 2120.1, + "end": 2120.46, + "probability": 0.974609375 + }, + { + "word": " no", + "start": 2120.46, + "end": 2120.54, + "probability": 0.99951171875 + }, + { + "word": " good", + "start": 2120.54, + "end": 2120.74, + "probability": 1.0 + }, + { + "word": " at", + "start": 2120.74, + "end": 2120.84, + "probability": 0.99951171875 + }, + { + "word": " all.", + "start": 2120.84, + "end": 2121.0, + "probability": 1.0 + } + ] + }, + { + "id": 978, + "text": "All right.", + "start": 2121.4, + "end": 2121.84, + "words": [ + { + "word": " All", + "start": 2121.4, + "end": 2121.76, + "probability": 0.96533203125 + }, + { + "word": " right.", + "start": 2121.76, + "end": 2121.84, + "probability": 1.0 + } + ] + }, + { + "id": 979, + "text": "Let's take another break because we've got to fit another one in before the end of the hour here.", + "start": 2121.86, + "end": 2124.22, + "words": [ + { + "word": " Let's", + "start": 2121.86, + "end": 2121.96, + "probability": 0.91796875 + }, + { + "word": " take", + "start": 2121.96, + "end": 2122.02, + "probability": 1.0 + }, + { + "word": " another", + "start": 2122.02, + "end": 2122.12, + "probability": 1.0 + }, + { + "word": " break", + "start": 2122.12, + "end": 2122.38, + "probability": 1.0 + }, + { + "word": " because", + "start": 2122.38, + "end": 2122.52, + "probability": 0.2032470703125 + }, + { + "word": " we've", + "start": 2122.52, + "end": 2122.68, + "probability": 0.78271484375 + }, + { + "word": " got", + "start": 2122.68, + "end": 2122.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2122.74, + "end": 2122.82, + "probability": 0.98583984375 + }, + { + "word": " fit", + "start": 2122.82, + "end": 2122.92, + "probability": 0.99462890625 + }, + { + "word": " another", + "start": 2122.92, + "end": 2123.06, + "probability": 0.9326171875 + }, + { + "word": " one", + "start": 2123.06, + "end": 2123.26, + "probability": 0.998046875 + }, + { + "word": " in", + "start": 2123.26, + "end": 2123.34, + "probability": 0.99853515625 + }, + { + "word": " before", + "start": 2123.34, + "end": 2123.5, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2123.5, + "end": 2123.62, + "probability": 1.0 + }, + { + "word": " end", + "start": 2123.62, + "end": 2123.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 2123.74, + "end": 2123.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 2123.8, + "end": 2123.86, + "probability": 1.0 + }, + { + "word": " hour", + "start": 2123.86, + "end": 2124.06, + "probability": 0.99951171875 + }, + { + "word": " here.", + "start": 2124.06, + "end": 2124.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 980, + "text": "And we'll be back right after these messages.", + "start": 2124.3, + "end": 2126.46, + "words": [ + { + "word": " And", + "start": 2124.3, + "end": 2124.66, + "probability": 0.99853515625 + }, + { + "word": " we'll", + "start": 2124.66, + "end": 2125.24, + "probability": 0.9228515625 + }, + { + "word": " be", + "start": 2125.24, + "end": 2125.32, + "probability": 1.0 + }, + { + "word": " back", + "start": 2125.32, + "end": 2125.6, + "probability": 0.9990234375 + }, + { + "word": " right", + "start": 2125.6, + "end": 2125.82, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 2125.82, + "end": 2125.96, + "probability": 1.0 + }, + { + "word": " these", + "start": 2125.96, + "end": 2126.14, + "probability": 0.99951171875 + }, + { + "word": " messages.", + "start": 2126.14, + "end": 2126.46, + "probability": 1.0 + } + ] + }, + { + "id": 981, + "text": "Bye.", + "start": 2129.12, + "end": 2129.48, + "words": [ + { + "word": " Bye.", + "start": 2129.12, + "end": 2129.48, + "probability": 0.1572265625 + } + ] + }, + { + "id": 982, + "text": "Bye.", + "start": 2131.14, + "end": 2131.5, + "words": [ + { + "word": " Bye.", + "start": 2131.14, + "end": 2131.5, + "probability": 0.990234375 + } + ] + }, + { + "id": 983, + "text": "Bye.", + "start": 2132.88, + "end": 2133.24, + "words": [ + { + "word": " Bye.", + "start": 2132.88, + "end": 2133.24, + "probability": 0.99365234375 + } + ] + }, + { + "id": 984, + "text": "Bye.", + "start": 2133.52, + "end": 2133.88, + "words": [ + { + "word": " Bye.", + "start": 2133.52, + "end": 2133.88, + "probability": 0.99267578125 + } + ] + }, + { + "id": 985, + "text": "Bye.", + "start": 2134.5, + "end": 2134.86, + "words": [ + { + "word": " Bye.", + "start": 2134.5, + "end": 2134.86, + "probability": 0.99169921875 + } + ] + }, + { + "id": 986, + "text": "Bye.", + "start": 2134.96, + "end": 2135.32, + "words": [ + { + "word": " Bye.", + "start": 2134.96, + "end": 2135.32, + "probability": 0.99072265625 + } + ] + }, + { + "id": 987, + "text": "Bye.", + "start": 2135.32, + "end": 2135.5, + "words": [ + { + "word": " Bye.", + "start": 2135.32, + "end": 2135.5, + "probability": 0.98974609375 + } + ] + }, + { + "id": 988, + "text": "Bye.", + "start": 2136.3, + "end": 2136.66, + "words": [ + { + "word": " Bye.", + "start": 2136.3, + "end": 2136.66, + "probability": 0.9892578125 + } + ] + }, + { + "id": 989, + "text": "Bye.", + "start": 2136.76, + "end": 2136.96, + "words": [ + { + "word": " Bye.", + "start": 2136.76, + "end": 2136.96, + "probability": 0.98876953125 + } + ] + }, + { + "id": 990, + "text": "Bye.", + "start": 2136.96, + "end": 2137.0, + "words": [ + { + "word": " Bye.", + "start": 2136.96, + "end": 2137.0, + "probability": 0.98828125 + } + ] + }, + { + "id": 991, + "text": "Bye.", + "start": 2137.0, + "end": 2137.04, + "words": [ + { + "word": " Bye.", + "start": 2137.0, + "end": 2137.04, + "probability": 0.98779296875 + } + ] + }, + { + "id": 992, + "text": "", + "start": 2137.08, + "end": 2137.08, + "words": [] + }, + { + "id": 993, + "text": "Bye.", + "start": 2137.56, + "end": 2137.92, + "words": [ + { + "word": " Bye.", + "start": 2137.56, + "end": 2137.92, + "probability": 0.98779296875 + } + ] + }, + { + "id": 994, + "text": "", + "start": 2138.04, + "end": 2138.04, + "words": [] + }, + { + "id": 995, + "text": "Bye.", + "start": 2139.04, + "end": 2139.4, + "words": [ + { + "word": " Bye.", + "start": 2139.04, + "end": 2139.4, + "probability": 0.9873046875 + } + ] + }, + { + "id": 996, + "text": "Bye.", + "start": 2139.66, + "end": 2139.84, + "words": [ + { + "word": " Bye.", + "start": 2139.66, + "end": 2139.84, + "probability": 0.9873046875 + } + ] + }, + { + "id": 997, + "text": "Bye.", + "start": 2140.76, + "end": 2141.12, + "words": [ + { + "word": " Bye.", + "start": 2140.76, + "end": 2141.12, + "probability": 0.9873046875 + } + ] + }, + { + "id": 998, + "text": "Bye.", + "start": 2141.12, + "end": 2141.48, + "words": [ + { + "word": " Bye.", + "start": 2141.12, + "end": 2141.48, + "probability": 0.9873046875 + } + ] + }, + { + "id": 999, + "text": "", + "start": 2141.48, + "end": 2141.48, + "words": [] + }, + { + "id": 1000, + "text": "", + "start": 2141.48, + "end": 2141.48, + "words": [] + }, + { + "id": 1001, + "text": "Bye.", + "start": 2141.48, + "end": 2141.58, + "words": [ + { + "word": " Bye.", + "start": 2141.48, + "end": 2141.58, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1002, + "text": "Bye.", + "start": 2142.0, + "end": 2142.36, + "words": [ + { + "word": " Bye.", + "start": 2142.0, + "end": 2142.36, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1003, + "text": "Bye.", + "start": 2142.66, + "end": 2143.02, + "words": [ + { + "word": " Bye.", + "start": 2142.66, + "end": 2143.02, + "probability": 0.986328125 + } + ] + }, + { + "id": 1004, + "text": "Bye.", + "start": 2143.56, + "end": 2143.92, + "words": [ + { + "word": " Bye.", + "start": 2143.56, + "end": 2143.92, + "probability": 0.986328125 + } + ] + }, + { + "id": 1005, + "text": "", + "start": 2143.92, + "end": 2143.92, + "words": [] + }, + { + "id": 1006, + "text": "", + "start": 2143.92, + "end": 2143.92, + "words": [] + }, + { + "id": 1007, + "text": "", + "start": 2143.92, + "end": 2143.92, + "words": [] + }, + { + "id": 1008, + "text": "", + "start": 2143.92, + "end": 2143.92, + "words": [] + }, + { + "id": 1009, + "text": "Bye.", + "start": 2146.6, + "end": 2146.68, + "words": [ + { + "word": " Bye.", + "start": 2146.6, + "end": 2146.68, + "probability": 0.0018339157104492188 + } + ] + }, + { + "id": 1010, + "text": "Bye.", + "start": 2152.58, + "end": 2152.66, + "words": [ + { + "word": " Bye.", + "start": 2152.58, + "end": 2152.66, + "probability": 0.85302734375 + } + ] + }, + { + "id": 1011, + "text": "", + "start": 2155.54, + "end": 2155.54, + "words": [] + }, + { + "id": 1012, + "text": "Bye.", + "start": 2156.56, + "end": 2156.64, + "words": [ + { + "word": " Bye.", + "start": 2156.56, + "end": 2156.64, + "probability": 0.92041015625 + } + ] + }, + { + "id": 1013, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1014, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1015, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1016, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1017, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1018, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1019, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1020, + "text": "", + "start": 2156.64, + "end": 2156.64, + "words": [] + }, + { + "id": 1021, + "text": "Bye.", + "start": 2157.02, + "end": 2157.1, + "words": [ + { + "word": " Bye.", + "start": 2157.02, + "end": 2157.1, + "probability": 0.95654296875 + } + ] + }, + { + "id": 1022, + "text": "", + "start": 2157.1, + "end": 2157.1, + "words": [] + }, + { + "id": 1023, + "text": "", + "start": 2157.1, + "end": 2157.1, + "words": [] + }, + { + "id": 1024, + "text": "Bye.", + "start": 2157.1, + "end": 2157.14, + "words": [ + { + "word": " Bye.", + "start": 2157.1, + "end": 2157.14, + "probability": 0.9580078125 + } + ] + }, + { + "id": 1025, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1026, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1027, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1028, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1029, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1030, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1031, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1032, + "text": "", + "start": 2157.14, + "end": 2157.14, + "words": [] + }, + { + "id": 1033, + "text": "Bye.", + "start": 2157.14, + "end": 2157.2, + "words": [ + { + "word": " Bye.", + "start": 2157.14, + "end": 2157.2, + "probability": 0.95703125 + } + ] + }, + { + "id": 1034, + "text": "", + "start": 2157.22, + "end": 2157.22, + "words": [] + }, + { + "id": 1035, + "text": "Bye.", + "start": 2157.24, + "end": 2157.26, + "words": [ + { + "word": " Bye.", + "start": 2157.24, + "end": 2157.26, + "probability": 0.9560546875 + } + ] + }, + { + "id": 1036, + "text": "Bye.", + "start": 2157.28, + "end": 2157.3, + "words": [ + { + "word": " Bye.", + "start": 2157.28, + "end": 2157.3, + "probability": 0.955078125 + } + ] + }, + { + "id": 1037, + "text": "Bye.", + "start": 2157.32, + "end": 2157.34, + "words": [ + { + "word": " Bye.", + "start": 2157.32, + "end": 2157.34, + "probability": 0.955078125 + } + ] + }, + { + "id": 1038, + "text": "Bye.", + "start": 2157.34, + "end": 2157.36, + "words": [ + { + "word": " Bye.", + "start": 2157.34, + "end": 2157.36, + "probability": 0.95458984375 + } + ] + }, + { + "id": 1039, + "text": "Bye.", + "start": 2157.36, + "end": 2157.38, + "words": [ + { + "word": " Bye.", + "start": 2157.36, + "end": 2157.38, + "probability": 0.95361328125 + } + ] + }, + { + "id": 1040, + "text": "Bye.", + "start": 2157.4, + "end": 2157.42, + "words": [ + { + "word": " Bye.", + "start": 2157.4, + "end": 2157.42, + "probability": 0.95361328125 + } + ] + }, + { + "id": 1041, + "text": "Bye.", + "start": 2157.44, + "end": 2157.48, + "words": [ + { + "word": " Bye.", + "start": 2157.44, + "end": 2157.48, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1042, + "text": "Bye.", + "start": 2157.5, + "end": 2157.52, + "words": [ + { + "word": " Bye.", + "start": 2157.5, + "end": 2157.52, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1043, + "text": "Bye.", + "start": 2157.54, + "end": 2157.56, + "words": [ + { + "word": " Bye.", + "start": 2157.54, + "end": 2157.56, + "probability": 0.9521484375 + } + ] + }, + { + "id": 1044, + "text": "Bye.", + "start": 2157.6, + "end": 2157.62, + "words": [ + { + "word": " Bye.", + "start": 2157.6, + "end": 2157.62, + "probability": 0.951171875 + } + ] + }, + { + "id": 1045, + "text": "", + "start": 2157.66, + "end": 2157.66, + "words": [] + }, + { + "id": 1046, + "text": "", + "start": 2157.66, + "end": 2157.66, + "words": [] + }, + { + "id": 1047, + "text": "", + "start": 2157.68, + "end": 2157.68, + "words": [] + }, + { + "id": 1048, + "text": "Bye.", + "start": 2157.7, + "end": 2157.76, + "words": [ + { + "word": " Bye.", + "start": 2157.7, + "end": 2157.76, + "probability": 0.95068359375 + } + ] + }, + { + "id": 1049, + "text": "Bye.", + "start": 2157.78, + "end": 2157.8, + "words": [ + { + "word": " Bye.", + "start": 2157.78, + "end": 2157.8, + "probability": 0.9501953125 + } + ] + }, + { + "id": 1050, + "text": "", + "start": 2157.96, + "end": 2157.96, + "words": [] + }, + { + "id": 1051, + "text": "Bye.", + "start": 2157.98, + "end": 2158.0, + "words": [ + { + "word": " Bye.", + "start": 2157.98, + "end": 2158.0, + "probability": 0.9501953125 + } + ] + }, + { + "id": 1052, + "text": "Bye.", + "start": 2158.02, + "end": 2158.04, + "words": [ + { + "word": " Bye.", + "start": 2158.02, + "end": 2158.04, + "probability": 0.94873046875 + } + ] + }, + { + "id": 1053, + "text": "", + "start": 2158.16, + "end": 2158.16, + "words": [] + }, + { + "id": 1054, + "text": "", + "start": 2158.16, + "end": 2158.16, + "words": [] + }, + { + "id": 1055, + "text": "", + "start": 2158.16, + "end": 2158.16, + "words": [] + }, + { + "id": 1056, + "text": "", + "start": 2158.16, + "end": 2158.16, + "words": [] + }, + { + "id": 1057, + "text": "", + "start": 2158.16, + "end": 2158.16, + "words": [] + }, + { + "id": 1058, + "text": "", + "start": 2158.16, + "end": 2158.16, + "words": [] + }, + { + "id": 1059, + "text": "Bye.", + "start": 2158.16, + "end": 2158.22, + "words": [ + { + "word": " Bye.", + "start": 2158.16, + "end": 2158.22, + "probability": 0.94775390625 + } + ] + }, + { + "id": 1060, + "text": "Bye.", + "start": 2158.84, + "end": 2158.92, + "words": [ + { + "word": " Bye.", + "start": 2158.84, + "end": 2158.92, + "probability": 0.947265625 + } + ] + }, + { + "id": 1061, + "text": "Bye.", + "start": 2160.1800000000003, + "end": 2160.26, + "words": [ + { + "word": " Bye.", + "start": 2160.1800000000003, + "end": 2160.26, + "probability": 0.947265625 + } + ] + }, + { + "id": 1062, + "text": "Bye.", + "start": 2167.46, + "end": 2167.54, + "words": [ + { + "word": " Bye.", + "start": 2167.46, + "end": 2167.54, + "probability": 0.947265625 + } + ] + }, + { + "id": 1063, + "text": "Bye.", + "start": 2168.9, + "end": 2168.98, + "words": [ + { + "word": " Bye.", + "start": 2168.9, + "end": 2168.98, + "probability": 0.94677734375 + } + ] + }, + { + "id": 1064, + "text": "On AM 1030, KVOY The Voice.", + "start": 2168.98, + "end": 2171.5, + "words": [ + { + "word": " On", + "start": 2168.98, + "end": 2169.12, + "probability": 0.513671875 + }, + { + "word": " AM", + "start": 2169.12, + "end": 2169.38, + "probability": 0.99658203125 + }, + { + "word": " 1030,", + "start": 2169.38, + "end": 2169.98, + "probability": 0.92431640625 + }, + { + "word": " KVOY", + "start": 2170.18, + "end": 2170.86, + "probability": 0.82080078125 + }, + { + "word": " The", + "start": 2170.86, + "end": 2171.24, + "probability": 0.5712890625 + }, + { + "word": " Voice.", + "start": 2171.24, + "end": 2171.5, + "probability": 1.0 + } + ] + }, + { + "id": 1065, + "text": "Mike Swanson, your computer guru, is just a click away.", + "start": 2182.96, + "end": 2185.96, + "words": [ + { + "word": " Mike", + "start": 2182.96, + "end": 2183.4, + "probability": 0.87353515625 + }, + { + "word": " Swanson,", + "start": 2183.4, + "end": 2183.82, + "probability": 0.994140625 + }, + { + "word": " your", + "start": 2183.94, + "end": 2184.1, + "probability": 0.9853515625 + }, + { + "word": " computer", + "start": 2184.1, + "end": 2184.48, + "probability": 0.97900390625 + }, + { + "word": " guru,", + "start": 2184.48, + "end": 2184.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 2184.96, + "end": 2185.18, + "probability": 1.0 + }, + { + "word": " just", + "start": 2185.18, + "end": 2185.42, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2185.42, + "end": 2185.58, + "probability": 1.0 + }, + { + "word": " click", + "start": 2185.58, + "end": 2185.74, + "probability": 0.99951171875 + }, + { + "word": " away.", + "start": 2185.74, + "end": 2185.96, + "probability": 1.0 + } + ] + }, + { + "id": 1066, + "text": "Listen and watch at gurushow.com.", + "start": 2186.24, + "end": 2188.48, + "words": [ + { + "word": " Listen", + "start": 2186.24, + "end": 2186.68, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2186.68, + "end": 2186.84, + "probability": 1.0 + }, + { + "word": " watch", + "start": 2186.84, + "end": 2187.12, + "probability": 1.0 + }, + { + "word": " at", + "start": 2187.12, + "end": 2187.28, + "probability": 0.97314453125 + }, + { + "word": " gurushow", + "start": 2187.28, + "end": 2187.86, + "probability": 0.85107421875 + }, + { + "word": ".com.", + "start": 2187.86, + "end": 2188.48, + "probability": 1.0 + } + ] + }, + { + "id": 1067, + "text": "This is the Computer Guru Show.", + "start": 2188.88, + "end": 2190.74, + "words": [ + { + "word": " This", + "start": 2188.88, + "end": 2189.32, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2189.32, + "end": 2189.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 2189.64, + "end": 2189.82, + "probability": 0.70556640625 + }, + { + "word": " Computer", + "start": 2189.82, + "end": 2190.02, + "probability": 0.99365234375 + }, + { + "word": " Guru", + "start": 2190.02, + "end": 2190.38, + "probability": 0.99755859375 + }, + { + "word": " Show.", + "start": 2190.38, + "end": 2190.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1068, + "text": "Welcome to the Computer Guru Show.", + "start": 2191.34, + "end": 2193.96, + "words": [ + { + "word": " Welcome", + "start": 2191.34, + "end": 2191.78, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2191.78, + "end": 2192.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 2192.12, + "end": 2192.3, + "probability": 0.994140625 + }, + { + "word": " Computer", + "start": 2192.3, + "end": 2193.46, + "probability": 0.99267578125 + }, + { + "word": " Guru", + "start": 2193.46, + "end": 2193.74, + "probability": 1.0 + }, + { + "word": " Show.", + "start": 2193.74, + "end": 2193.96, + "probability": 1.0 + } + ] + }, + { + "id": 1069, + "text": "Give us a call if you'd like to be part of the show.", + "start": 2194.22, + "end": 2195.9, + "words": [ + { + "word": " Give", + "start": 2194.22, + "end": 2194.66, + "probability": 0.99658203125 + }, + { + "word": " us", + "start": 2194.66, + "end": 2194.8, + "probability": 1.0 + }, + { + "word": " a", + "start": 2194.8, + "end": 2194.84, + "probability": 1.0 + }, + { + "word": " call", + "start": 2194.84, + "end": 2194.98, + "probability": 1.0 + }, + { + "word": " if", + "start": 2194.98, + "end": 2195.12, + "probability": 0.99951171875 + }, + { + "word": " you'd", + "start": 2195.12, + "end": 2195.22, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 2195.22, + "end": 2195.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2195.28, + "end": 2195.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 2195.38, + "end": 2195.42, + "probability": 1.0 + }, + { + "word": " part", + "start": 2195.42, + "end": 2195.58, + "probability": 0.95263671875 + }, + { + "word": " of", + "start": 2195.58, + "end": 2195.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 2195.7, + "end": 2195.72, + "probability": 0.99951171875 + }, + { + "word": " show.", + "start": 2195.72, + "end": 2195.9, + "probability": 1.0 + } + ] + }, + { + "id": 1070, + "text": "Radio 79024, we talked about being scammed, or if you have any experience with that.", + "start": 2195.9, + "end": 2201.86, + "words": [ + { + "word": " Radio", + "start": 2195.9, + "end": 2196.04, + "probability": 0.01104736328125 + }, + { + "word": " 79024,", + "start": 2196.04, + "end": 2197.22, + "probability": 0.92236328125 + }, + { + "word": " we", + "start": 2197.38, + "end": 2197.44, + "probability": 0.278076171875 + }, + { + "word": " talked", + "start": 2197.44, + "end": 2197.58, + "probability": 0.9365234375 + }, + { + "word": " about", + "start": 2197.58, + "end": 2197.8, + "probability": 1.0 + }, + { + "word": " being", + "start": 2197.8, + "end": 2198.24, + "probability": 1.0 + }, + { + "word": " scammed,", + "start": 2198.24, + "end": 2199.12, + "probability": 1.0 + }, + { + "word": " or", + "start": 2199.16, + "end": 2199.52, + "probability": 1.0 + }, + { + "word": " if", + "start": 2199.52, + "end": 2200.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2200.42, + "end": 2200.54, + "probability": 1.0 + }, + { + "word": " have", + "start": 2200.54, + "end": 2200.64, + "probability": 1.0 + }, + { + "word": " any", + "start": 2200.64, + "end": 2200.76, + "probability": 1.0 + }, + { + "word": " experience", + "start": 2200.76, + "end": 2201.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 2201.14, + "end": 2201.6, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2201.6, + "end": 2201.86, + "probability": 1.0 + } + ] + }, + { + "id": 1071, + "text": "But if there's ways that you can sort of passively protect yourself,", + "start": 2201.96, + "end": 2205.1, + "words": [ + { + "word": " But", + "start": 2201.96, + "end": 2202.12, + "probability": 0.99462890625 + }, + { + "word": " if", + "start": 2202.12, + "end": 2202.34, + "probability": 0.99267578125 + }, + { + "word": " there's", + "start": 2202.34, + "end": 2202.64, + "probability": 0.99609375 + }, + { + "word": " ways", + "start": 2202.64, + "end": 2203.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 2203.12, + "end": 2203.28, + "probability": 1.0 + }, + { + "word": " you", + "start": 2203.28, + "end": 2203.38, + "probability": 1.0 + }, + { + "word": " can", + "start": 2203.38, + "end": 2203.58, + "probability": 1.0 + }, + { + "word": " sort", + "start": 2203.58, + "end": 2203.78, + "probability": 0.85888671875 + }, + { + "word": " of", + "start": 2203.78, + "end": 2203.88, + "probability": 1.0 + }, + { + "word": " passively", + "start": 2203.88, + "end": 2204.38, + "probability": 1.0 + }, + { + "word": " protect", + "start": 2204.38, + "end": 2204.64, + "probability": 1.0 + }, + { + "word": " yourself,", + "start": 2204.64, + "end": 2205.1, + "probability": 1.0 + } + ] + }, + { + "id": 1072, + "text": "one of which is please stop using Internet Explorer or Edge immediately.", + "start": 2205.94, + "end": 2212.92, + "words": [ + { + "word": " one", + "start": 2205.94, + "end": 2206.38, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2206.38, + "end": 2206.52, + "probability": 1.0 + }, + { + "word": " which", + "start": 2206.52, + "end": 2206.72, + "probability": 1.0 + }, + { + "word": " is", + "start": 2206.72, + "end": 2207.2, + "probability": 1.0 + }, + { + "word": " please", + "start": 2207.2, + "end": 2208.02, + "probability": 0.92919921875 + }, + { + "word": " stop", + "start": 2208.02, + "end": 2208.6, + "probability": 1.0 + }, + { + "word": " using", + "start": 2208.6, + "end": 2209.08, + "probability": 1.0 + }, + { + "word": " Internet", + "start": 2209.08, + "end": 2209.42, + "probability": 0.99951171875 + }, + { + "word": " Explorer", + "start": 2209.42, + "end": 2209.88, + "probability": 1.0 + }, + { + "word": " or", + "start": 2209.88, + "end": 2211.08, + "probability": 0.9990234375 + }, + { + "word": " Edge", + "start": 2211.08, + "end": 2211.44, + "probability": 0.99853515625 + }, + { + "word": " immediately.", + "start": 2211.44, + "end": 2212.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1073, + "text": "And if you're going to use another browser, such as any of the WebKit browsers,", + "start": 2213.48, + "end": 2216.9, + "words": [ + { + "word": " And", + "start": 2213.48, + "end": 2213.92, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 2213.92, + "end": 2214.14, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 2214.14, + "end": 2214.24, + "probability": 1.0 + }, + { + "word": " going", + "start": 2214.24, + "end": 2214.32, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 2214.32, + "end": 2214.34, + "probability": 1.0 + }, + { + "word": " use", + "start": 2214.34, + "end": 2214.48, + "probability": 1.0 + }, + { + "word": " another", + "start": 2214.48, + "end": 2214.64, + "probability": 1.0 + }, + { + "word": " browser,", + "start": 2214.64, + "end": 2215.04, + "probability": 1.0 + }, + { + "word": " such", + "start": 2215.12, + "end": 2215.32, + "probability": 1.0 + }, + { + "word": " as", + "start": 2215.32, + "end": 2215.5, + "probability": 1.0 + }, + { + "word": " any", + "start": 2215.5, + "end": 2215.8, + "probability": 1.0 + }, + { + "word": " of", + "start": 2215.8, + "end": 2215.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2215.92, + "end": 2216.04, + "probability": 1.0 + }, + { + "word": " WebKit", + "start": 2216.04, + "end": 2216.62, + "probability": 0.94921875 + }, + { + "word": " browsers,", + "start": 2216.62, + "end": 2216.9, + "probability": 1.0 + } + ] + }, + { + "id": 1074, + "text": "that would be Chrome, Firefox, Opera, any of those, please install an ad blocker.", + "start": 2217.04, + "end": 2222.26, + "words": [ + { + "word": " that", + "start": 2217.04, + "end": 2217.22, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 2217.22, + "end": 2217.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 2217.34, + "end": 2217.48, + "probability": 1.0 + }, + { + "word": " Chrome,", + "start": 2217.48, + "end": 2217.84, + "probability": 1.0 + }, + { + "word": " Firefox,", + "start": 2218.08, + "end": 2218.42, + "probability": 0.9990234375 + }, + { + "word": " Opera,", + "start": 2218.88, + "end": 2219.18, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 2219.36, + "end": 2220.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 2220.02, + "end": 2220.16, + "probability": 1.0 + }, + { + "word": " those,", + "start": 2220.16, + "end": 2220.4, + "probability": 1.0 + }, + { + "word": " please", + "start": 2220.52, + "end": 2220.92, + "probability": 1.0 + }, + { + "word": " install", + "start": 2220.92, + "end": 2221.48, + "probability": 1.0 + }, + { + "word": " an", + "start": 2221.48, + "end": 2221.66, + "probability": 0.99951171875 + }, + { + "word": " ad", + "start": 2221.66, + "end": 2221.8, + "probability": 0.9482421875 + }, + { + "word": " blocker.", + "start": 2221.8, + "end": 2222.26, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1075, + "text": "We like uBlock Origin.", + "start": 2222.32, + "end": 2223.6, + "words": [ + { + "word": " We", + "start": 2222.32, + "end": 2222.7, + "probability": 0.9931640625 + }, + { + "word": " like", + "start": 2222.7, + "end": 2222.96, + "probability": 0.994140625 + }, + { + "word": " uBlock", + "start": 2222.96, + "end": 2223.38, + "probability": 0.86572265625 + }, + { + "word": " Origin.", + "start": 2223.38, + "end": 2223.6, + "probability": 0.61083984375 + } + ] + }, + { + "id": 1076, + "text": "That's the letter U, B-L-O-C-K.", + "start": 2223.84, + "end": 2225.7, + "words": [ + { + "word": " That's", + "start": 2223.84, + "end": 2224.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 2224.28, + "end": 2224.32, + "probability": 0.98779296875 + }, + { + "word": " letter", + "start": 2224.32, + "end": 2224.48, + "probability": 0.9990234375 + }, + { + "word": " U,", + "start": 2224.48, + "end": 2224.76, + "probability": 0.99462890625 + }, + { + "word": " B", + "start": 2224.88, + "end": 2225.2, + "probability": 0.994140625 + }, + { + "word": "-L", + "start": 2225.2, + "end": 2225.36, + "probability": 0.9970703125 + }, + { + "word": "-O", + "start": 2225.36, + "end": 2225.46, + "probability": 1.0 + }, + { + "word": "-C", + "start": 2225.46, + "end": 2225.52, + "probability": 0.99951171875 + }, + { + "word": "-K.", + "start": 2225.52, + "end": 2225.7, + "probability": 1.0 + } + ] + }, + { + "id": 1077, + "text": "Second word, Origin.", + "start": 2225.9, + "end": 2227.08, + "words": [ + { + "word": " Second", + "start": 2225.9, + "end": 2226.44, + "probability": 0.4716796875 + }, + { + "word": " word,", + "start": 2226.44, + "end": 2226.72, + "probability": 0.9912109375 + }, + { + "word": " Origin.", + "start": 2226.76, + "end": 2227.08, + "probability": 0.55322265625 + } + ] + }, + { + "id": 1078, + "text": "It is a beautiful plug-in for the WebKit-style browsers, the Mozilla-style browsers,", + "start": 2227.7, + "end": 2233.28, + "words": [ + { + "word": " It", + "start": 2227.7, + "end": 2228.1, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2228.1, + "end": 2228.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2228.34, + "end": 2228.48, + "probability": 1.0 + }, + { + "word": " beautiful", + "start": 2228.48, + "end": 2229.0, + "probability": 1.0 + }, + { + "word": " plug", + "start": 2229.0, + "end": 2229.38, + "probability": 0.83544921875 + }, + { + "word": "-in", + "start": 2229.38, + "end": 2229.58, + "probability": 0.9951171875 + }, + { + "word": " for", + "start": 2229.58, + "end": 2229.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2229.88, + "end": 2230.8, + "probability": 0.99951171875 + }, + { + "word": " WebKit", + "start": 2230.8, + "end": 2231.12, + "probability": 0.99560546875 + }, + { + "word": "-style", + "start": 2231.12, + "end": 2231.36, + "probability": 0.923828125 + }, + { + "word": " browsers,", + "start": 2231.36, + "end": 2231.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 2231.96, + "end": 2232.28, + "probability": 1.0 + }, + { + "word": " Mozilla", + "start": 2232.28, + "end": 2232.58, + "probability": 0.9990234375 + }, + { + "word": "-style", + "start": 2232.58, + "end": 2232.86, + "probability": 0.99951171875 + }, + { + "word": " browsers,", + "start": 2232.86, + "end": 2233.28, + "probability": 1.0 + } + ] + }, + { + "id": 1079, + "text": "so that that way you're just way less likely to see any of those pop-ups on your screen to begin with,", + "start": 2233.44, + "end": 2239.5, + "words": [ + { + "word": " so", + "start": 2233.44, + "end": 2233.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 2233.98, + "end": 2234.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 2234.16, + "end": 2234.7, + "probability": 0.92626953125 + }, + { + "word": " way", + "start": 2234.7, + "end": 2235.04, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2235.04, + "end": 2235.84, + "probability": 0.96435546875 + }, + { + "word": " just", + "start": 2235.84, + "end": 2236.12, + "probability": 1.0 + }, + { + "word": " way", + "start": 2236.12, + "end": 2236.58, + "probability": 1.0 + }, + { + "word": " less", + "start": 2236.58, + "end": 2236.84, + "probability": 1.0 + }, + { + "word": " likely", + "start": 2236.84, + "end": 2237.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 2237.18, + "end": 2237.38, + "probability": 1.0 + }, + { + "word": " see", + "start": 2237.38, + "end": 2237.6, + "probability": 1.0 + }, + { + "word": " any", + "start": 2237.6, + "end": 2237.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 2237.96, + "end": 2238.06, + "probability": 1.0 + }, + { + "word": " those", + "start": 2238.06, + "end": 2238.22, + "probability": 1.0 + }, + { + "word": " pop", + "start": 2238.22, + "end": 2238.46, + "probability": 1.0 + }, + { + "word": "-ups", + "start": 2238.46, + "end": 2238.6, + "probability": 0.99609375 + }, + { + "word": " on", + "start": 2238.6, + "end": 2238.74, + "probability": 1.0 + }, + { + "word": " your", + "start": 2238.74, + "end": 2238.82, + "probability": 1.0 + }, + { + "word": " screen", + "start": 2238.82, + "end": 2239.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 2239.04, + "end": 2239.16, + "probability": 0.99951171875 + }, + { + "word": " begin", + "start": 2239.16, + "end": 2239.32, + "probability": 1.0 + }, + { + "word": " with,", + "start": 2239.32, + "end": 2239.5, + "probability": 1.0 + } + ] + }, + { + "id": 1080, + "text": "especially ones that lock your computer and talk to you and tell you,", + "start": 2239.54, + "end": 2242.56, + "words": [ + { + "word": " especially", + "start": 2239.54, + "end": 2239.74, + "probability": 0.99951171875 + }, + { + "word": " ones", + "start": 2239.74, + "end": 2240.02, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2240.02, + "end": 2240.12, + "probability": 1.0 + }, + { + "word": " lock", + "start": 2240.12, + "end": 2240.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 2240.32, + "end": 2240.5, + "probability": 1.0 + }, + { + "word": " computer", + "start": 2240.5, + "end": 2240.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 2240.84, + "end": 2241.18, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 2241.18, + "end": 2241.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2241.64, + "end": 2241.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 2241.82, + "end": 2241.98, + "probability": 1.0 + }, + { + "word": " and", + "start": 2241.98, + "end": 2242.16, + "probability": 0.998046875 + }, + { + "word": " tell", + "start": 2242.16, + "end": 2242.32, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2242.32, + "end": 2242.56, + "probability": 1.0 + } + ] + }, + { + "id": 1081, + "text": "hey, your machine is at risk or it's been compromised.", + "start": 2243.42, + "end": 2247.16, + "words": [ + { + "word": " hey,", + "start": 2243.42, + "end": 2243.82, + "probability": 0.99365234375 + }, + { + "word": " your", + "start": 2243.94, + "end": 2244.32, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2244.32, + "end": 2245.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 2245.18, + "end": 2245.38, + "probability": 1.0 + }, + { + "word": " at", + "start": 2245.38, + "end": 2245.48, + "probability": 1.0 + }, + { + "word": " risk", + "start": 2245.48, + "end": 2245.76, + "probability": 1.0 + }, + { + "word": " or", + "start": 2245.76, + "end": 2245.92, + "probability": 0.9853515625 + }, + { + "word": " it's", + "start": 2245.92, + "end": 2246.08, + "probability": 1.0 + }, + { + "word": " been", + "start": 2246.08, + "end": 2246.22, + "probability": 1.0 + }, + { + "word": " compromised.", + "start": 2246.22, + "end": 2247.16, + "probability": 1.0 + } + ] + }, + { + "id": 1082, + "text": "And by the way, if you do see one of those compromised web pages that come up that starts talking at you,", + "start": 2247.6, + "end": 2252.96, + "words": [ + { + "word": " And", + "start": 2247.6, + "end": 2248.0, + "probability": 0.94873046875 + }, + { + "word": " by", + "start": 2248.0, + "end": 2248.1, + "probability": 0.85791015625 + }, + { + "word": " the", + "start": 2248.1, + "end": 2248.22, + "probability": 1.0 + }, + { + "word": " way,", + "start": 2248.22, + "end": 2248.34, + "probability": 1.0 + }, + { + "word": " if", + "start": 2248.36, + "end": 2248.42, + "probability": 1.0 + }, + { + "word": " you", + "start": 2248.42, + "end": 2248.52, + "probability": 1.0 + }, + { + "word": " do", + "start": 2248.52, + "end": 2248.66, + "probability": 1.0 + }, + { + "word": " see", + "start": 2248.66, + "end": 2248.94, + "probability": 1.0 + }, + { + "word": " one", + "start": 2248.94, + "end": 2249.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 2249.12, + "end": 2249.28, + "probability": 1.0 + }, + { + "word": " those", + "start": 2249.28, + "end": 2249.52, + "probability": 1.0 + }, + { + "word": " compromised", + "start": 2249.52, + "end": 2249.94, + "probability": 1.0 + }, + { + "word": " web", + "start": 2249.94, + "end": 2251.08, + "probability": 0.93115234375 + }, + { + "word": " pages", + "start": 2251.08, + "end": 2251.34, + "probability": 0.724609375 + }, + { + "word": " that", + "start": 2251.34, + "end": 2251.52, + "probability": 1.0 + }, + { + "word": " come", + "start": 2251.52, + "end": 2251.68, + "probability": 0.998046875 + }, + { + "word": " up", + "start": 2251.68, + "end": 2251.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 2251.82, + "end": 2251.96, + "probability": 0.998046875 + }, + { + "word": " starts", + "start": 2251.96, + "end": 2252.14, + "probability": 1.0 + }, + { + "word": " talking", + "start": 2252.14, + "end": 2252.48, + "probability": 1.0 + }, + { + "word": " at", + "start": 2252.48, + "end": 2252.72, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2252.72, + "end": 2252.96, + "probability": 1.0 + } + ] + }, + { + "id": 1083, + "text": "just close it.", + "start": 2253.46, + "end": 2254.34, + "words": [ + { + "word": " just", + "start": 2253.46, + "end": 2253.86, + "probability": 1.0 + }, + { + "word": " close", + "start": 2253.86, + "end": 2254.14, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2254.14, + "end": 2254.34, + "probability": 1.0 + } + ] + }, + { + "id": 1084, + "text": "All right?", + "start": 2254.56, + "end": 2255.04, + "words": [ + { + "word": " All", + "start": 2254.56, + "end": 2254.96, + "probability": 0.8095703125 + }, + { + "word": " right?", + "start": 2254.96, + "end": 2255.04, + "probability": 1.0 + } + ] + }, + { + "id": 1085, + "text": "And a lot of times...", + "start": 2255.14, + "end": 2255.88, + "words": [ + { + "word": " And", + "start": 2255.14, + "end": 2255.5, + "probability": 0.9208984375 + }, + { + "word": " a", + "start": 2255.5, + "end": 2255.68, + "probability": 0.9951171875 + }, + { + "word": " lot", + "start": 2255.68, + "end": 2255.78, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2255.78, + "end": 2255.86, + "probability": 0.96337890625 + }, + { + "word": " times...", + "start": 2255.86, + "end": 2255.88, + "probability": 0.446044921875 + } + ] + }, + { + "id": 1086, + "text": "Sometimes they'll say, well, if you're in Internet Explorer, you can't close it, which is true.", + "start": 2255.9, + "end": 2260.14, + "words": [ + { + "word": " Sometimes", + "start": 2255.9, + "end": 2256.02, + "probability": 0.337158203125 + }, + { + "word": " they'll", + "start": 2256.02, + "end": 2256.12, + "probability": 0.8896484375 + }, + { + "word": " say,", + "start": 2256.12, + "end": 2256.26, + "probability": 0.9951171875 + }, + { + "word": " well,", + "start": 2256.34, + "end": 2256.4, + "probability": 0.367919921875 + }, + { + "word": " if", + "start": 2256.5, + "end": 2256.92, + "probability": 0.9765625 + }, + { + "word": " you're", + "start": 2256.92, + "end": 2257.4, + "probability": 0.9951171875 + }, + { + "word": " in", + "start": 2257.4, + "end": 2257.6, + "probability": 0.84423828125 + }, + { + "word": " Internet", + "start": 2257.6, + "end": 2257.84, + "probability": 0.95849609375 + }, + { + "word": " Explorer,", + "start": 2257.84, + "end": 2258.18, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2258.44, + "end": 2258.62, + "probability": 0.9990234375 + }, + { + "word": " can't", + "start": 2258.62, + "end": 2259.04, + "probability": 0.99951171875 + }, + { + "word": " close", + "start": 2259.04, + "end": 2259.26, + "probability": 0.9990234375 + }, + { + "word": " it,", + "start": 2259.26, + "end": 2259.5, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 2259.54, + "end": 2259.84, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2259.84, + "end": 2259.96, + "probability": 0.99951171875 + }, + { + "word": " true.", + "start": 2259.96, + "end": 2260.14, + "probability": 1.0 + } + ] + }, + { + "id": 1087, + "text": "You just cannot, can't stop it if you're in Internet Explorer.", + "start": 2260.24, + "end": 2263.92, + "words": [ + { + "word": " You", + "start": 2260.24, + "end": 2260.46, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2260.46, + "end": 2260.68, + "probability": 0.99658203125 + }, + { + "word": " cannot,", + "start": 2260.68, + "end": 2261.22, + "probability": 0.69482421875 + }, + { + "word": " can't", + "start": 2261.34, + "end": 2262.42, + "probability": 0.9970703125 + }, + { + "word": " stop", + "start": 2262.42, + "end": 2262.82, + "probability": 0.986328125 + }, + { + "word": " it", + "start": 2262.82, + "end": 2263.02, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2263.02, + "end": 2263.18, + "probability": 0.98388671875 + }, + { + "word": " you're", + "start": 2263.18, + "end": 2263.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 2263.3, + "end": 2263.4, + "probability": 0.958984375 + }, + { + "word": " Internet", + "start": 2263.4, + "end": 2263.6, + "probability": 0.99951171875 + }, + { + "word": " Explorer.", + "start": 2263.6, + "end": 2263.92, + "probability": 1.0 + } + ] + }, + { + "id": 1088, + "text": "But if you're in the other browsers, when you close it, it'll pop back up again,", + "start": 2264.6, + "end": 2269.34, + "words": [ + { + "word": " But", + "start": 2264.6, + "end": 2264.96, + "probability": 0.994140625 + }, + { + "word": " if", + "start": 2264.96, + "end": 2265.2, + "probability": 0.94384765625 + }, + { + "word": " you're", + "start": 2265.2, + "end": 2265.36, + "probability": 1.0 + }, + { + "word": " in", + "start": 2265.36, + "end": 2265.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2265.46, + "end": 2265.54, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 2265.54, + "end": 2265.74, + "probability": 0.9990234375 + }, + { + "word": " browsers,", + "start": 2265.74, + "end": 2266.2, + "probability": 0.99853515625 + }, + { + "word": " when", + "start": 2266.42, + "end": 2267.62, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 2267.62, + "end": 2267.82, + "probability": 1.0 + }, + { + "word": " close", + "start": 2267.82, + "end": 2268.08, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2268.08, + "end": 2268.28, + "probability": 0.99951171875 + }, + { + "word": " it'll", + "start": 2268.34, + "end": 2268.52, + "probability": 0.94775390625 + }, + { + "word": " pop", + "start": 2268.52, + "end": 2268.66, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 2268.66, + "end": 2268.9, + "probability": 0.99755859375 + }, + { + "word": " up", + "start": 2268.9, + "end": 2269.1, + "probability": 1.0 + }, + { + "word": " again,", + "start": 2269.1, + "end": 2269.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1089, + "text": "and then there'll be a checkbox that says, don't show me this message again.", + "start": 2269.44, + "end": 2272.46, + "words": [ + { + "word": " and", + "start": 2269.44, + "end": 2269.58, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 2269.58, + "end": 2269.76, + "probability": 0.99951171875 + }, + { + "word": " there'll", + "start": 2269.76, + "end": 2269.94, + "probability": 0.9267578125 + }, + { + "word": " be", + "start": 2269.94, + "end": 2270.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2270.08, + "end": 2270.18, + "probability": 1.0 + }, + { + "word": " checkbox", + "start": 2270.18, + "end": 2270.68, + "probability": 0.9501953125 + }, + { + "word": " that", + "start": 2270.68, + "end": 2270.84, + "probability": 0.9990234375 + }, + { + "word": " says,", + "start": 2270.84, + "end": 2271.08, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2271.2, + "end": 2271.48, + "probability": 0.9921875 + }, + { + "word": " show", + "start": 2271.48, + "end": 2271.62, + "probability": 1.0 + }, + { + "word": " me", + "start": 2271.62, + "end": 2271.78, + "probability": 1.0 + }, + { + "word": " this", + "start": 2271.78, + "end": 2271.92, + "probability": 1.0 + }, + { + "word": " message", + "start": 2271.92, + "end": 2272.2, + "probability": 1.0 + }, + { + "word": " again.", + "start": 2272.2, + "end": 2272.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1090, + "text": "And if you put the little checkbox in there and close it, it's gone.", + "start": 2273.06, + "end": 2275.72, + "words": [ + { + "word": " And", + "start": 2273.06, + "end": 2273.42, + "probability": 0.97705078125 + }, + { + "word": " if", + "start": 2273.42, + "end": 2273.78, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2273.78, + "end": 2273.88, + "probability": 1.0 + }, + { + "word": " put", + "start": 2273.88, + "end": 2274.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 2274.04, + "end": 2274.12, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 2274.12, + "end": 2274.18, + "probability": 0.99462890625 + }, + { + "word": " checkbox", + "start": 2274.18, + "end": 2274.56, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2274.56, + "end": 2274.78, + "probability": 1.0 + }, + { + "word": " there", + "start": 2274.78, + "end": 2274.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2274.88, + "end": 2274.96, + "probability": 0.99951171875 + }, + { + "word": " close", + "start": 2274.96, + "end": 2275.14, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2275.14, + "end": 2275.34, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2275.38, + "end": 2275.54, + "probability": 1.0 + }, + { + "word": " gone.", + "start": 2275.54, + "end": 2275.72, + "probability": 1.0 + } + ] + }, + { + "id": 1091, + "text": "Just close the browser or reboot the computer, and you won't have to deal with that anymore.", + "start": 2275.92, + "end": 2279.58, + "words": [ + { + "word": " Just", + "start": 2275.92, + "end": 2276.24, + "probability": 0.98486328125 + }, + { + "word": " close", + "start": 2276.24, + "end": 2276.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 2276.48, + "end": 2276.62, + "probability": 1.0 + }, + { + "word": " browser", + "start": 2276.62, + "end": 2276.96, + "probability": 1.0 + }, + { + "word": " or", + "start": 2276.96, + "end": 2277.18, + "probability": 0.99267578125 + }, + { + "word": " reboot", + "start": 2277.18, + "end": 2277.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 2277.44, + "end": 2277.66, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 2277.66, + "end": 2278.0, + "probability": 1.0 + }, + { + "word": " and", + "start": 2278.18, + "end": 2278.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 2278.52, + "end": 2278.62, + "probability": 1.0 + }, + { + "word": " won't", + "start": 2278.62, + "end": 2278.76, + "probability": 1.0 + }, + { + "word": " have", + "start": 2278.76, + "end": 2278.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 2278.86, + "end": 2278.98, + "probability": 1.0 + }, + { + "word": " deal", + "start": 2278.98, + "end": 2279.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 2279.1, + "end": 2279.18, + "probability": 1.0 + }, + { + "word": " that", + "start": 2279.18, + "end": 2279.32, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 2279.32, + "end": 2279.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1092, + "text": "And also, pay attention to what you're going to as far as the site.", + "start": 2280.72, + "end": 2284.64, + "words": [ + { + "word": " And", + "start": 2280.72, + "end": 2281.08, + "probability": 0.9609375 + }, + { + "word": " also,", + "start": 2281.08, + "end": 2281.44, + "probability": 0.99658203125 + }, + { + "word": " pay", + "start": 2281.56, + "end": 2282.22, + "probability": 0.99951171875 + }, + { + "word": " attention", + "start": 2282.22, + "end": 2282.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 2282.74, + "end": 2282.92, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 2282.92, + "end": 2283.0, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2283.0, + "end": 2283.14, + "probability": 1.0 + }, + { + "word": " going", + "start": 2283.14, + "end": 2283.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 2283.26, + "end": 2283.44, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 2283.44, + "end": 2283.9, + "probability": 0.8642578125 + }, + { + "word": " far", + "start": 2283.9, + "end": 2284.12, + "probability": 1.0 + }, + { + "word": " as", + "start": 2284.12, + "end": 2284.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 2284.28, + "end": 2284.42, + "probability": 1.0 + }, + { + "word": " site.", + "start": 2284.42, + "end": 2284.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1093, + "text": "Most of the time that you see...", + "start": 2284.74, + "end": 2285.88, + "words": [ + { + "word": " Most", + "start": 2284.74, + "end": 2285.06, + "probability": 0.98876953125 + }, + { + "word": " of", + "start": 2285.06, + "end": 2285.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 2285.18, + "end": 2285.22, + "probability": 1.0 + }, + { + "word": " time", + "start": 2285.22, + "end": 2285.44, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2285.44, + "end": 2285.56, + "probability": 0.857421875 + }, + { + "word": " you", + "start": 2285.56, + "end": 2285.64, + "probability": 1.0 + }, + { + "word": " see...", + "start": 2285.64, + "end": 2285.88, + "probability": 0.50048828125 + } + ] + }, + { + "id": 1094, + "text": "Most of the time that you see those type of lock screens are because of a malformed address.", + "start": 2285.9, + "end": 2289.16, + "words": [ + { + "word": " Most", + "start": 2285.9, + "end": 2285.92, + "probability": 0.0002880096435546875 + }, + { + "word": " of", + "start": 2285.92, + "end": 2285.92, + "probability": 0.7802734375 + }, + { + "word": " the", + "start": 2285.92, + "end": 2285.92, + "probability": 0.5810546875 + }, + { + "word": " time", + "start": 2285.92, + "end": 2285.92, + "probability": 0.28173828125 + }, + { + "word": " that", + "start": 2285.92, + "end": 2285.92, + "probability": 0.0146636962890625 + }, + { + "word": " you", + "start": 2285.92, + "end": 2285.92, + "probability": 0.69140625 + }, + { + "word": " see", + "start": 2285.92, + "end": 2285.92, + "probability": 0.7158203125 + }, + { + "word": " those", + "start": 2285.92, + "end": 2285.96, + "probability": 0.98193359375 + }, + { + "word": " type", + "start": 2285.96, + "end": 2286.18, + "probability": 0.900390625 + }, + { + "word": " of", + "start": 2286.18, + "end": 2286.34, + "probability": 0.9990234375 + }, + { + "word": " lock", + "start": 2286.34, + "end": 2286.54, + "probability": 0.90869140625 + }, + { + "word": " screens", + "start": 2286.54, + "end": 2286.88, + "probability": 0.93408203125 + }, + { + "word": " are", + "start": 2286.88, + "end": 2287.22, + "probability": 0.97509765625 + }, + { + "word": " because", + "start": 2287.22, + "end": 2287.54, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2287.54, + "end": 2287.86, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2287.86, + "end": 2288.02, + "probability": 0.99755859375 + }, + { + "word": " malformed", + "start": 2288.02, + "end": 2288.7, + "probability": 0.9775390625 + }, + { + "word": " address.", + "start": 2288.7, + "end": 2289.16, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1095, + "text": "Like you inadvertently typed Googled or you mistyped a domain", + "start": 2289.46, + "end": 2296.78, + "words": [ + { + "word": " Like", + "start": 2289.46, + "end": 2290.02, + "probability": 0.970703125 + }, + { + "word": " you", + "start": 2290.02, + "end": 2290.2, + "probability": 0.9404296875 + }, + { + "word": " inadvertently", + "start": 2290.2, + "end": 2291.66, + "probability": 0.9873046875 + }, + { + "word": " typed", + "start": 2291.66, + "end": 2292.02, + "probability": 0.99560546875 + }, + { + "word": " Googled", + "start": 2292.02, + "end": 2293.14, + "probability": 0.896484375 + }, + { + "word": " or", + "start": 2293.14, + "end": 2293.72, + "probability": 0.91650390625 + }, + { + "word": " you", + "start": 2293.72, + "end": 2294.26, + "probability": 0.6591796875 + }, + { + "word": " mistyped", + "start": 2294.26, + "end": 2295.18, + "probability": 0.95166015625 + }, + { + "word": " a", + "start": 2295.18, + "end": 2295.42, + "probability": 0.99951171875 + }, + { + "word": " domain", + "start": 2295.42, + "end": 2296.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1096, + "text": "because they will go and buy all of these common mistyping of domains.", + "start": 2296.78, + "end": 2301.38, + "words": [ + { + "word": " because", + "start": 2296.78, + "end": 2297.22, + "probability": 0.974609375 + }, + { + "word": " they", + "start": 2297.22, + "end": 2297.46, + "probability": 0.97705078125 + }, + { + "word": " will", + "start": 2297.46, + "end": 2297.6, + "probability": 0.78515625 + }, + { + "word": " go", + "start": 2297.6, + "end": 2297.84, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2297.84, + "end": 2298.0, + "probability": 0.99951171875 + }, + { + "word": " buy", + "start": 2298.0, + "end": 2298.24, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 2298.24, + "end": 2298.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2298.56, + "end": 2298.74, + "probability": 0.9990234375 + }, + { + "word": " these", + "start": 2298.74, + "end": 2299.08, + "probability": 1.0 + }, + { + "word": " common", + "start": 2299.08, + "end": 2299.96, + "probability": 0.99951171875 + }, + { + "word": " mistyping", + "start": 2299.96, + "end": 2300.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 2300.82, + "end": 2301.08, + "probability": 0.99951171875 + }, + { + "word": " domains.", + "start": 2301.08, + "end": 2301.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1097, + "text": "Yahoo is one of the bigger ones.", + "start": 2301.96, + "end": 2304.44, + "words": [ + { + "word": " Yahoo", + "start": 2301.96, + "end": 2302.46, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 2302.46, + "end": 2302.7, + "probability": 0.9833984375 + }, + { + "word": " one", + "start": 2302.7, + "end": 2303.74, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2303.74, + "end": 2303.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 2303.98, + "end": 2304.04, + "probability": 1.0 + }, + { + "word": " bigger", + "start": 2304.04, + "end": 2304.22, + "probability": 0.99951171875 + }, + { + "word": " ones.", + "start": 2304.22, + "end": 2304.44, + "probability": 1.0 + } + ] + }, + { + "id": 1098, + "text": "Like if you mistype one of the O's or you're like Y-A-H-O instead of the two O's,", + "start": 2304.9, + "end": 2312.98, + "words": [ + { + "word": " Like", + "start": 2304.9, + "end": 2305.46, + "probability": 0.68212890625 + }, + { + "word": " if", + "start": 2305.46, + "end": 2305.64, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 2305.64, + "end": 2305.82, + "probability": 1.0 + }, + { + "word": " mistype", + "start": 2305.82, + "end": 2307.54, + "probability": 0.96337890625 + }, + { + "word": " one", + "start": 2307.54, + "end": 2307.86, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2307.86, + "end": 2307.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 2307.96, + "end": 2308.04, + "probability": 0.99951171875 + }, + { + "word": " O's", + "start": 2308.04, + "end": 2308.3, + "probability": 0.9736328125 + }, + { + "word": " or", + "start": 2308.3, + "end": 2308.46, + "probability": 0.896484375 + }, + { + "word": " you're", + "start": 2308.46, + "end": 2308.52, + "probability": 0.794921875 + }, + { + "word": " like", + "start": 2308.52, + "end": 2308.66, + "probability": 0.99951171875 + }, + { + "word": " Y", + "start": 2308.66, + "end": 2309.08, + "probability": 0.9951171875 + }, + { + "word": "-A", + "start": 2309.08, + "end": 2309.44, + "probability": 0.9912109375 + }, + { + "word": "-H", + "start": 2309.44, + "end": 2309.82, + "probability": 1.0 + }, + { + "word": "-O", + "start": 2309.82, + "end": 2310.78, + "probability": 0.9990234375 + }, + { + "word": " instead", + "start": 2310.78, + "end": 2311.66, + "probability": 0.994140625 + }, + { + "word": " of", + "start": 2311.66, + "end": 2312.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 2312.32, + "end": 2312.44, + "probability": 1.0 + }, + { + "word": " two", + "start": 2312.44, + "end": 2312.66, + "probability": 0.99951171875 + }, + { + "word": " O's,", + "start": 2312.66, + "end": 2312.98, + "probability": 1.0 + } + ] + }, + { + "id": 1099, + "text": "you'll likely end up at a scam site.", + "start": 2313.08, + "end": 2315.14, + "words": [ + { + "word": " you'll", + "start": 2313.08, + "end": 2313.66, + "probability": 1.0 + }, + { + "word": " likely", + "start": 2313.66, + "end": 2314.2, + "probability": 1.0 + }, + { + "word": " end", + "start": 2314.2, + "end": 2314.38, + "probability": 1.0 + }, + { + "word": " up", + "start": 2314.38, + "end": 2314.48, + "probability": 1.0 + }, + { + "word": " at", + "start": 2314.48, + "end": 2314.6, + "probability": 0.9931640625 + }, + { + "word": " a", + "start": 2314.6, + "end": 2314.64, + "probability": 1.0 + }, + { + "word": " scam", + "start": 2314.64, + "end": 2314.84, + "probability": 0.99951171875 + }, + { + "word": " site.", + "start": 2314.84, + "end": 2315.14, + "probability": 1.0 + } + ] + }, + { + "id": 1100, + "text": "Yep.", + "start": 2315.26, + "end": 2315.54, + "words": [ + { + "word": " Yep.", + "start": 2315.26, + "end": 2315.54, + "probability": 0.66357421875 + } + ] + }, + { + "id": 1101, + "text": "So just be careful and put an ad blocker on your machine.", + "start": 2315.9, + "end": 2319.28, + "words": [ + { + "word": " So", + "start": 2315.9, + "end": 2316.0, + "probability": 0.94677734375 + }, + { + "word": " just", + "start": 2316.0, + "end": 2316.28, + "probability": 0.89306640625 + }, + { + "word": " be", + "start": 2316.28, + "end": 2316.76, + "probability": 0.96142578125 + }, + { + "word": " careful", + "start": 2316.76, + "end": 2317.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 2317.2, + "end": 2317.76, + "probability": 0.73828125 + }, + { + "word": " put", + "start": 2317.76, + "end": 2318.32, + "probability": 1.0 + }, + { + "word": " an", + "start": 2318.32, + "end": 2318.44, + "probability": 0.9970703125 + }, + { + "word": " ad", + "start": 2318.44, + "end": 2318.56, + "probability": 0.96533203125 + }, + { + "word": " blocker", + "start": 2318.56, + "end": 2318.92, + "probability": 0.82421875 + }, + { + "word": " on", + "start": 2318.92, + "end": 2318.96, + "probability": 0.93701171875 + }, + { + "word": " your", + "start": 2318.96, + "end": 2319.04, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 2319.04, + "end": 2319.28, + "probability": 1.0 + } + ] + }, + { + "id": 1102, + "text": "Make sure you have...", + "start": 2319.38, + "end": 2320.02, + "words": [ + { + "word": " Make", + "start": 2319.38, + "end": 2319.5, + "probability": 0.77783203125 + }, + { + "word": " sure", + "start": 2319.5, + "end": 2319.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 2319.64, + "end": 2319.72, + "probability": 0.99951171875 + }, + { + "word": " have...", + "start": 2319.72, + "end": 2320.02, + "probability": 0.5224609375 + } + ] + }, + { + "id": 1103, + "text": "We like the paid version of Malwarebytes and any free antivirus that is reputable,", + "start": 2320.7400000000002, + "end": 2325.1, + "words": [ + { + "word": " We", + "start": 2320.6600000000003, + "end": 2320.88, + "probability": 0.93505859375 + }, + { + "word": " like", + "start": 2320.88, + "end": 2321.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2321.3, + "end": 2321.42, + "probability": 0.99951171875 + }, + { + "word": " paid", + "start": 2321.42, + "end": 2321.58, + "probability": 1.0 + }, + { + "word": " version", + "start": 2321.58, + "end": 2321.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2321.8, + "end": 2321.94, + "probability": 0.9970703125 + }, + { + "word": " Malwarebytes", + "start": 2321.94, + "end": 2322.42, + "probability": 0.9619140625 + }, + { + "word": " and", + "start": 2322.42, + "end": 2322.74, + "probability": 0.77587890625 + }, + { + "word": " any", + "start": 2322.74, + "end": 2323.1, + "probability": 0.99951171875 + }, + { + "word": " free", + "start": 2323.1, + "end": 2323.44, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 2323.44, + "end": 2324.06, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2324.06, + "end": 2324.26, + "probability": 1.0 + }, + { + "word": " is", + "start": 2324.26, + "end": 2324.48, + "probability": 1.0 + }, + { + "word": " reputable,", + "start": 2324.48, + "end": 2325.1, + "probability": 1.0 + } + ] + }, + { + "id": 1104, + "text": "usually something like Avast or something along those lines,", + "start": 2325.66, + "end": 2328.96, + "words": [ + { + "word": " usually", + "start": 2325.66, + "end": 2326.1, + "probability": 1.0 + }, + { + "word": " something", + "start": 2326.1, + "end": 2326.54, + "probability": 1.0 + }, + { + "word": " like", + "start": 2326.54, + "end": 2326.88, + "probability": 1.0 + }, + { + "word": " Avast", + "start": 2326.88, + "end": 2327.44, + "probability": 0.9970703125 + }, + { + "word": " or", + "start": 2327.44, + "end": 2327.76, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2327.76, + "end": 2328.24, + "probability": 1.0 + }, + { + "word": " along", + "start": 2328.24, + "end": 2328.48, + "probability": 1.0 + }, + { + "word": " those", + "start": 2328.48, + "end": 2328.7, + "probability": 1.0 + }, + { + "word": " lines,", + "start": 2328.7, + "end": 2328.96, + "probability": 1.0 + } + ] + }, + { + "id": 1105, + "text": "then you're much more likely to keep yourself safe.", + "start": 2329.1, + "end": 2331.5, + "words": [ + { + "word": " then", + "start": 2329.1, + "end": 2329.64, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 2329.64, + "end": 2329.92, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 2329.92, + "end": 2330.2, + "probability": 1.0 + }, + { + "word": " more", + "start": 2330.2, + "end": 2330.4, + "probability": 1.0 + }, + { + "word": " likely", + "start": 2330.4, + "end": 2330.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 2330.7, + "end": 2330.84, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2330.84, + "end": 2330.98, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 2330.98, + "end": 2331.16, + "probability": 0.99951171875 + }, + { + "word": " safe.", + "start": 2331.16, + "end": 2331.5, + "probability": 1.0 + } + ] + }, + { + "id": 1106, + "text": "Also, just stay on top of this stuff.", + "start": 2333.56, + "end": 2335.74, + "words": [ + { + "word": " Also,", + "start": 2333.56, + "end": 2334.0, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 2334.0, + "end": 2334.44, + "probability": 0.72802734375 + }, + { + "word": " stay", + "start": 2334.44, + "end": 2335.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 2335.12, + "end": 2335.24, + "probability": 1.0 + }, + { + "word": " top", + "start": 2335.24, + "end": 2335.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 2335.4, + "end": 2335.54, + "probability": 1.0 + }, + { + "word": " this", + "start": 2335.54, + "end": 2335.6, + "probability": 0.81494140625 + }, + { + "word": " stuff.", + "start": 2335.6, + "end": 2335.74, + "probability": 1.0 + } + ] + }, + { + "id": 1107, + "text": "You can, like Jay was talking about before,", + "start": 2335.84, + "end": 2337.96, + "words": [ + { + "word": " You", + "start": 2335.84, + "end": 2335.88, + "probability": 0.19140625 + }, + { + "word": " can,", + "start": 2335.88, + "end": 2335.98, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2336.08, + "end": 2336.58, + "probability": 1.0 + }, + { + "word": " Jay", + "start": 2336.58, + "end": 2337.32, + "probability": 0.970703125 + }, + { + "word": " was", + "start": 2337.32, + "end": 2337.42, + "probability": 1.0 + }, + { + "word": " talking", + "start": 2337.42, + "end": 2337.6, + "probability": 1.0 + }, + { + "word": " about", + "start": 2337.6, + "end": 2337.76, + "probability": 1.0 + }, + { + "word": " before,", + "start": 2337.76, + "end": 2337.96, + "probability": 1.0 + } + ] + }, + { + "id": 1108, + "text": "you can view a lot of these types of scams to see how they operate,", + "start": 2338.06, + "end": 2341.44, + "words": [ + { + "word": " you", + "start": 2338.06, + "end": 2338.16, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2338.16, + "end": 2338.34, + "probability": 1.0 + }, + { + "word": " view", + "start": 2338.34, + "end": 2338.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 2338.7, + "end": 2338.9, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2338.9, + "end": 2339.1, + "probability": 1.0 + }, + { + "word": " of", + "start": 2339.1, + "end": 2339.24, + "probability": 1.0 + }, + { + "word": " these", + "start": 2339.24, + "end": 2339.42, + "probability": 1.0 + }, + { + "word": " types", + "start": 2339.42, + "end": 2339.7, + "probability": 1.0 + }, + { + "word": " of", + "start": 2339.7, + "end": 2339.86, + "probability": 1.0 + }, + { + "word": " scams", + "start": 2339.86, + "end": 2340.08, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 2340.08, + "end": 2340.28, + "probability": 0.99951171875 + }, + { + "word": " see", + "start": 2340.28, + "end": 2340.5, + "probability": 1.0 + }, + { + "word": " how", + "start": 2340.5, + "end": 2340.72, + "probability": 1.0 + }, + { + "word": " they", + "start": 2340.72, + "end": 2340.98, + "probability": 1.0 + }, + { + "word": " operate,", + "start": 2340.98, + "end": 2341.44, + "probability": 1.0 + } + ] + }, + { + "id": 1109, + "text": "and you might actually get some entertainment value out of it,", + "start": 2341.62, + "end": 2345.28, + "words": [ + { + "word": " and", + "start": 2341.62, + "end": 2341.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 2341.84, + "end": 2342.42, + "probability": 1.0 + }, + { + "word": " might", + "start": 2342.42, + "end": 2342.72, + "probability": 1.0 + }, + { + "word": " actually", + "start": 2342.72, + "end": 2343.06, + "probability": 1.0 + }, + { + "word": " get", + "start": 2343.06, + "end": 2343.52, + "probability": 1.0 + }, + { + "word": " some", + "start": 2343.52, + "end": 2344.08, + "probability": 1.0 + }, + { + "word": " entertainment", + "start": 2344.08, + "end": 2344.38, + "probability": 1.0 + }, + { + "word": " value", + "start": 2344.38, + "end": 2344.84, + "probability": 1.0 + }, + { + "word": " out", + "start": 2344.84, + "end": 2345.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 2345.08, + "end": 2345.2, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2345.2, + "end": 2345.28, + "probability": 1.0 + } + ] + }, + { + "id": 1110, + "text": "because they are kind of funny.", + "start": 2345.28, + "end": 2346.22, + "words": [ + { + "word": " because", + "start": 2345.28, + "end": 2345.42, + "probability": 0.93310546875 + }, + { + "word": " they", + "start": 2345.42, + "end": 2345.6, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2345.6, + "end": 2345.72, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 2345.72, + "end": 2345.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2345.9, + "end": 2346.0, + "probability": 1.0 + }, + { + "word": " funny.", + "start": 2346.0, + "end": 2346.22, + "probability": 1.0 + } + ] + }, + { + "id": 1111, + "text": "By searching for scam baiting on YouTube,", + "start": 2347.58, + "end": 2350.32, + "words": [ + { + "word": " By", + "start": 2347.58, + "end": 2348.02, + "probability": 0.95166015625 + }, + { + "word": " searching", + "start": 2348.02, + "end": 2348.46, + "probability": 0.9755859375 + }, + { + "word": " for", + "start": 2348.46, + "end": 2348.88, + "probability": 1.0 + }, + { + "word": " scam", + "start": 2348.88, + "end": 2349.16, + "probability": 0.483642578125 + }, + { + "word": " baiting", + "start": 2349.16, + "end": 2349.52, + "probability": 0.9833984375 + }, + { + "word": " on", + "start": 2349.52, + "end": 2349.72, + "probability": 0.9990234375 + }, + { + "word": " YouTube,", + "start": 2349.72, + "end": 2350.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1112, + "text": "it's not a bad way to at least educate yourself in some way or another.", + "start": 2350.56, + "end": 2355.28, + "words": [ + { + "word": " it's", + "start": 2350.56, + "end": 2351.12, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2351.12, + "end": 2351.72, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2351.72, + "end": 2351.88, + "probability": 1.0 + }, + { + "word": " bad", + "start": 2351.88, + "end": 2352.06, + "probability": 1.0 + }, + { + "word": " way", + "start": 2352.06, + "end": 2352.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 2352.28, + "end": 2352.46, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2352.46, + "end": 2352.84, + "probability": 0.99755859375 + }, + { + "word": " least", + "start": 2352.84, + "end": 2353.14, + "probability": 0.99951171875 + }, + { + "word": " educate", + "start": 2353.14, + "end": 2353.56, + "probability": 0.99951171875 + }, + { + "word": " yourself", + "start": 2353.56, + "end": 2354.02, + "probability": 1.0 + }, + { + "word": " in", + "start": 2354.02, + "end": 2354.38, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 2354.38, + "end": 2354.58, + "probability": 0.9990234375 + }, + { + "word": " way", + "start": 2354.58, + "end": 2354.84, + "probability": 1.0 + }, + { + "word": " or", + "start": 2354.84, + "end": 2355.06, + "probability": 0.99951171875 + }, + { + "word": " another.", + "start": 2355.06, + "end": 2355.28, + "probability": 1.0 + } + ] + }, + { + "id": 1113, + "text": "And you wanted to mention the sites,", + "start": 2356.1, + "end": 2357.82, + "words": [ + { + "word": " And", + "start": 2356.1, + "end": 2356.54, + "probability": 0.8662109375 + }, + { + "word": " you", + "start": 2356.54, + "end": 2356.92, + "probability": 0.99853515625 + }, + { + "word": " wanted", + "start": 2356.92, + "end": 2357.1, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2357.1, + "end": 2357.2, + "probability": 1.0 + }, + { + "word": " mention", + "start": 2357.2, + "end": 2357.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 2357.42, + "end": 2357.56, + "probability": 0.99951171875 + }, + { + "word": " sites,", + "start": 2357.56, + "end": 2357.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 1114, + "text": "the scamicide.com, badnumbers.info, and scammer.info,", + "start": 2357.96, + "end": 2364.24, + "words": [ + { + "word": " the", + "start": 2357.96, + "end": 2358.06, + "probability": 0.984375 + }, + { + "word": " scamicide", + "start": 2358.06, + "end": 2359.0, + "probability": 0.755859375 + }, + { + "word": ".com,", + "start": 2359.0, + "end": 2359.86, + "probability": 1.0 + }, + { + "word": " badnumbers", + "start": 2360.16, + "end": 2361.62, + "probability": 0.99951171875 + }, + { + "word": ".info,", + "start": 2361.62, + "end": 2362.28, + "probability": 1.0 + }, + { + "word": " and", + "start": 2362.44, + "end": 2363.06, + "probability": 0.99951171875 + }, + { + "word": " scammer", + "start": 2363.06, + "end": 2363.74, + "probability": 0.9990234375 + }, + { + "word": ".info,", + "start": 2363.74, + "end": 2364.24, + "probability": 1.0 + } + ] + }, + { + "id": 1115, + "text": "where you can go and get more information about other current scams that are out there.", + "start": 2364.34, + "end": 2369.26, + "words": [ + { + "word": " where", + "start": 2364.34, + "end": 2364.58, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2364.58, + "end": 2364.8, + "probability": 1.0 + }, + { + "word": " can", + "start": 2364.8, + "end": 2364.92, + "probability": 1.0 + }, + { + "word": " go", + "start": 2364.92, + "end": 2365.06, + "probability": 1.0 + }, + { + "word": " and", + "start": 2365.06, + "end": 2365.2, + "probability": 1.0 + }, + { + "word": " get", + "start": 2365.2, + "end": 2365.42, + "probability": 1.0 + }, + { + "word": " more", + "start": 2365.42, + "end": 2365.6, + "probability": 1.0 + }, + { + "word": " information", + "start": 2365.6, + "end": 2366.02, + "probability": 1.0 + }, + { + "word": " about", + "start": 2366.02, + "end": 2366.34, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 2366.34, + "end": 2366.74, + "probability": 0.99951171875 + }, + { + "word": " current", + "start": 2366.74, + "end": 2367.96, + "probability": 0.9990234375 + }, + { + "word": " scams", + "start": 2367.96, + "end": 2368.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 2368.7, + "end": 2368.84, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2368.84, + "end": 2368.9, + "probability": 1.0 + }, + { + "word": " out", + "start": 2368.9, + "end": 2369.06, + "probability": 1.0 + }, + { + "word": " there.", + "start": 2369.06, + "end": 2369.26, + "probability": 1.0 + } + ] + }, + { + "id": 1116, + "text": "And the one thing I wanted to add that you add,", + "start": 2369.44, + "end": 2371.46, + "words": [ + { + "word": " And", + "start": 2369.44, + "end": 2369.64, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 2369.64, + "end": 2369.74, + "probability": 1.0 + }, + { + "word": " one", + "start": 2369.74, + "end": 2369.86, + "probability": 1.0 + }, + { + "word": " thing", + "start": 2369.86, + "end": 2370.04, + "probability": 1.0 + }, + { + "word": " I", + "start": 2370.04, + "end": 2370.18, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 2370.18, + "end": 2370.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2370.4, + "end": 2370.56, + "probability": 0.99951171875 + }, + { + "word": " add", + "start": 2370.56, + "end": 2370.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 2370.76, + "end": 2370.98, + "probability": 0.98388671875 + }, + { + "word": " you", + "start": 2370.98, + "end": 2371.18, + "probability": 1.0 + }, + { + "word": " add,", + "start": 2371.18, + "end": 2371.46, + "probability": 0.51806640625 + } + ] + }, + { + "id": 1117, + "text": "you said about rebooting,", + "start": 2371.6, + "end": 2373.8, + "words": [ + { + "word": " you", + "start": 2371.6, + "end": 2371.92, + "probability": 0.994140625 + }, + { + "word": " said", + "start": 2371.92, + "end": 2372.48, + "probability": 1.0 + }, + { + "word": " about", + "start": 2372.48, + "end": 2372.78, + "probability": 1.0 + }, + { + "word": " rebooting,", + "start": 2372.78, + "end": 2373.8, + "probability": 1.0 + } + ] + }, + { + "id": 1118, + "text": "make sure you're not...", + "start": 2373.86, + "end": 2375.1, + "words": [ + { + "word": " make", + "start": 2373.86, + "end": 2374.34, + "probability": 0.9970703125 + }, + { + "word": " sure", + "start": 2374.34, + "end": 2374.6, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2374.6, + "end": 2374.86, + "probability": 0.9990234375 + }, + { + "word": " not...", + "start": 2374.86, + "end": 2375.1, + "probability": 0.51171875 + } + ] + }, + { + "id": 1119, + "text": "putting your computer to sleep,", + "start": 2375.28, + "end": 2377.24, + "words": [ + { + "word": " putting", + "start": 2375.28, + "end": 2375.86, + "probability": 0.67578125 + }, + { + "word": " your", + "start": 2375.86, + "end": 2376.16, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 2376.16, + "end": 2376.58, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2376.58, + "end": 2376.84, + "probability": 1.0 + }, + { + "word": " sleep,", + "start": 2376.84, + "end": 2377.24, + "probability": 1.0 + } + ] + }, + { + "id": 1120, + "text": "because that won't kill it.", + "start": 2377.36, + "end": 2378.9, + "words": [ + { + "word": " because", + "start": 2377.36, + "end": 2377.66, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2377.66, + "end": 2377.94, + "probability": 0.99951171875 + }, + { + "word": " won't", + "start": 2377.94, + "end": 2378.4, + "probability": 1.0 + }, + { + "word": " kill", + "start": 2378.4, + "end": 2378.72, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2378.72, + "end": 2378.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1121, + "text": "You have to actually...", + "start": 2379.0, + "end": 2380.28, + "words": [ + { + "word": " You", + "start": 2379.0, + "end": 2379.3, + "probability": 0.87548828125 + }, + { + "word": " have", + "start": 2379.3, + "end": 2379.44, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2379.44, + "end": 2379.52, + "probability": 0.99951171875 + }, + { + "word": " actually...", + "start": 2379.52, + "end": 2380.28, + "probability": 0.54736328125 + } + ] + }, + { + "id": 1122, + "text": "What we have found is you put the finger down on the power for 15 seconds", + "start": 2380.28, + "end": 2384.96, + "words": [ + { + "word": " What", + "start": 2380.28, + "end": 2380.5, + "probability": 0.89892578125 + }, + { + "word": " we", + "start": 2380.5, + "end": 2380.74, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2380.74, + "end": 2380.88, + "probability": 0.99951171875 + }, + { + "word": " found", + "start": 2380.88, + "end": 2381.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2381.16, + "end": 2381.92, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 2381.92, + "end": 2382.4, + "probability": 0.97021484375 + }, + { + "word": " put", + "start": 2382.4, + "end": 2382.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 2382.64, + "end": 2382.8, + "probability": 0.99951171875 + }, + { + "word": " finger", + "start": 2382.8, + "end": 2383.04, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 2383.04, + "end": 2383.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 2383.26, + "end": 2383.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2383.48, + "end": 2383.58, + "probability": 0.99951171875 + }, + { + "word": " power", + "start": 2383.58, + "end": 2383.86, + "probability": 0.99755859375 + }, + { + "word": " for", + "start": 2383.86, + "end": 2384.1, + "probability": 0.99853515625 + }, + { + "word": " 15", + "start": 2384.1, + "end": 2384.52, + "probability": 0.9990234375 + }, + { + "word": " seconds", + "start": 2384.52, + "end": 2384.96, + "probability": 1.0 + } + ] + }, + { + "id": 1123, + "text": "to make sure it's all the way down.", + "start": 2384.96, + "end": 2386.64, + "words": [ + { + "word": " to", + "start": 2384.96, + "end": 2385.16, + "probability": 0.94091796875 + }, + { + "word": " make", + "start": 2385.16, + "end": 2385.3, + "probability": 1.0 + }, + { + "word": " sure", + "start": 2385.3, + "end": 2385.46, + "probability": 1.0 + }, + { + "word": " it's", + "start": 2385.46, + "end": 2385.68, + "probability": 1.0 + }, + { + "word": " all", + "start": 2385.68, + "end": 2386.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 2386.02, + "end": 2386.18, + "probability": 1.0 + }, + { + "word": " way", + "start": 2386.18, + "end": 2386.36, + "probability": 1.0 + }, + { + "word": " down.", + "start": 2386.36, + "end": 2386.64, + "probability": 1.0 + } + ] + }, + { + "id": 1124, + "text": "Yeah, because sleep definitely is not going to solve the problem.", + "start": 2387.56, + "end": 2390.12, + "words": [ + { + "word": " Yeah,", + "start": 2387.56, + "end": 2387.96, + "probability": 0.9462890625 + }, + { + "word": " because", + "start": 2387.96, + "end": 2388.36, + "probability": 0.99755859375 + }, + { + "word": " sleep", + "start": 2388.36, + "end": 2388.92, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 2388.92, + "end": 2389.22, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 2389.22, + "end": 2389.38, + "probability": 0.99853515625 + }, + { + "word": " not", + "start": 2389.38, + "end": 2389.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 2389.48, + "end": 2389.58, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 2389.58, + "end": 2389.66, + "probability": 1.0 + }, + { + "word": " solve", + "start": 2389.66, + "end": 2389.82, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2389.82, + "end": 2389.98, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 2389.98, + "end": 2390.12, + "probability": 1.0 + } + ] + }, + { + "id": 1125, + "text": "No, no.", + "start": 2390.52, + "end": 2390.82, + "words": [ + { + "word": " No,", + "start": 2390.52, + "end": 2390.64, + "probability": 0.373779296875 + }, + { + "word": " no.", + "start": 2390.64, + "end": 2390.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1126, + "text": "And if you're in a situation where you're an Internet explorer", + "start": 2391.28, + "end": 2394.28, + "words": [ + { + "word": " And", + "start": 2391.28, + "end": 2391.68, + "probability": 0.95361328125 + }, + { + "word": " if", + "start": 2391.68, + "end": 2391.92, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 2391.92, + "end": 2392.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 2392.08, + "end": 2392.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 2392.18, + "end": 2392.28, + "probability": 1.0 + }, + { + "word": " situation", + "start": 2392.28, + "end": 2392.86, + "probability": 0.99951171875 + }, + { + "word": " where", + "start": 2392.86, + "end": 2393.16, + "probability": 1.0 + }, + { + "word": " you're", + "start": 2393.16, + "end": 2393.56, + "probability": 1.0 + }, + { + "word": " an", + "start": 2393.56, + "end": 2393.68, + "probability": 0.9873046875 + }, + { + "word": " Internet", + "start": 2393.68, + "end": 2393.92, + "probability": 0.72802734375 + }, + { + "word": " explorer", + "start": 2393.92, + "end": 2394.28, + "probability": 0.59619140625 + } + ] + }, + { + "id": 1127, + "text": "and you want a quick way out of it,", + "start": 2394.28, + "end": 2395.68, + "words": [ + { + "word": " and", + "start": 2394.28, + "end": 2394.46, + "probability": 0.94091796875 + }, + { + "word": " you", + "start": 2394.46, + "end": 2394.48, + "probability": 1.0 + }, + { + "word": " want", + "start": 2394.48, + "end": 2394.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 2394.66, + "end": 2394.76, + "probability": 0.9794921875 + }, + { + "word": " quick", + "start": 2394.76, + "end": 2395.0, + "probability": 1.0 + }, + { + "word": " way", + "start": 2395.0, + "end": 2395.2, + "probability": 1.0 + }, + { + "word": " out", + "start": 2395.2, + "end": 2395.4, + "probability": 1.0 + }, + { + "word": " of", + "start": 2395.4, + "end": 2395.52, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 2395.52, + "end": 2395.68, + "probability": 1.0 + } + ] + }, + { + "id": 1128, + "text": "if you hold down the Alt key on your keyboard and press F4,", + "start": 2395.72, + "end": 2398.24, + "words": [ + { + "word": " if", + "start": 2395.72, + "end": 2396.04, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2396.04, + "end": 2396.14, + "probability": 1.0 + }, + { + "word": " hold", + "start": 2396.14, + "end": 2396.28, + "probability": 1.0 + }, + { + "word": " down", + "start": 2396.28, + "end": 2396.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 2396.44, + "end": 2396.58, + "probability": 1.0 + }, + { + "word": " Alt", + "start": 2396.58, + "end": 2396.72, + "probability": 0.9091796875 + }, + { + "word": " key", + "start": 2396.72, + "end": 2396.88, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 2396.88, + "end": 2397.04, + "probability": 1.0 + }, + { + "word": " your", + "start": 2397.04, + "end": 2397.16, + "probability": 1.0 + }, + { + "word": " keyboard", + "start": 2397.16, + "end": 2397.46, + "probability": 1.0 + }, + { + "word": " and", + "start": 2397.46, + "end": 2397.64, + "probability": 0.99072265625 + }, + { + "word": " press", + "start": 2397.64, + "end": 2397.8, + "probability": 0.99951171875 + }, + { + "word": " F4,", + "start": 2397.8, + "end": 2398.24, + "probability": 1.0 + } + ] + }, + { + "id": 1129, + "text": "that will close the browser and make it go away.", + "start": 2398.38, + "end": 2400.66, + "words": [ + { + "word": " that", + "start": 2398.38, + "end": 2398.54, + "probability": 0.9990234375 + }, + { + "word": " will", + "start": 2398.54, + "end": 2398.7, + "probability": 1.0 + }, + { + "word": " close", + "start": 2398.7, + "end": 2399.08, + "probability": 1.0 + }, + { + "word": " the", + "start": 2399.08, + "end": 2399.32, + "probability": 1.0 + }, + { + "word": " browser", + "start": 2399.32, + "end": 2399.7, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2399.7, + "end": 2400.02, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 2400.02, + "end": 2400.2, + "probability": 1.0 + }, + { + "word": " it", + "start": 2400.2, + "end": 2400.3, + "probability": 1.0 + }, + { + "word": " go", + "start": 2400.3, + "end": 2400.44, + "probability": 1.0 + }, + { + "word": " away.", + "start": 2400.44, + "end": 2400.66, + "probability": 1.0 + } + ] + }, + { + "id": 1130, + "text": "And then you can properly reboot your computer, if you like,", + "start": 2401.94, + "end": 2404.68, + "words": [ + { + "word": " And", + "start": 2401.94, + "end": 2402.34, + "probability": 0.99755859375 + }, + { + "word": " then", + "start": 2402.34, + "end": 2402.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 2402.6, + "end": 2402.72, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2402.72, + "end": 2402.88, + "probability": 1.0 + }, + { + "word": " properly", + "start": 2402.88, + "end": 2403.38, + "probability": 0.9990234375 + }, + { + "word": " reboot", + "start": 2403.38, + "end": 2403.82, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 2403.82, + "end": 2404.06, + "probability": 1.0 + }, + { + "word": " computer,", + "start": 2404.06, + "end": 2404.34, + "probability": 1.0 + }, + { + "word": " if", + "start": 2404.38, + "end": 2404.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 2404.5, + "end": 2404.5, + "probability": 1.0 + }, + { + "word": " like,", + "start": 2404.5, + "end": 2404.68, + "probability": 0.998046875 + } + ] + }, + { + "id": 1131, + "text": "by doing...", + "start": 2404.76, + "end": 2405.16, + "words": [ + { + "word": " by", + "start": 2404.76, + "end": 2404.92, + "probability": 0.9990234375 + }, + { + "word": " doing...", + "start": 2404.92, + "end": 2405.16, + "probability": 0.7451171875 + } + ] + }, + { + "id": 1132, + "text": "you know, start the power icon and reboot.", + "start": 2405.16, + "end": 2408.28, + "words": [ + { + "word": " you", + "start": 2405.16, + "end": 2405.26, + "probability": 0.05743408203125 + }, + { + "word": " know,", + "start": 2405.26, + "end": 2405.48, + "probability": 0.9130859375 + }, + { + "word": " start", + "start": 2405.48, + "end": 2405.68, + "probability": 0.96484375 + }, + { + "word": " the", + "start": 2405.68, + "end": 2406.76, + "probability": 0.943359375 + }, + { + "word": " power", + "start": 2406.76, + "end": 2407.38, + "probability": 0.982421875 + }, + { + "word": " icon", + "start": 2407.38, + "end": 2407.78, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2407.78, + "end": 2408.06, + "probability": 0.97705078125 + }, + { + "word": " reboot.", + "start": 2408.06, + "end": 2408.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1133, + "text": "If you're in Windows 10, if you're in Windows 7,", + "start": 2408.42, + "end": 2410.06, + "words": [ + { + "word": " If", + "start": 2408.42, + "end": 2408.52, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 2408.52, + "end": 2408.62, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 2408.62, + "end": 2408.68, + "probability": 0.99609375 + }, + { + "word": " Windows", + "start": 2408.68, + "end": 2408.86, + "probability": 0.98046875 + }, + { + "word": " 10,", + "start": 2408.86, + "end": 2409.1, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2409.16, + "end": 2409.32, + "probability": 0.99853515625 + }, + { + "word": " you're", + "start": 2409.32, + "end": 2409.42, + "probability": 1.0 + }, + { + "word": " in", + "start": 2409.42, + "end": 2409.44, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 2409.44, + "end": 2409.68, + "probability": 0.9990234375 + }, + { + "word": " 7,", + "start": 2409.68, + "end": 2410.06, + "probability": 0.9921875 + } + ] + }, + { + "id": 1134, + "text": "start, shut down, restart.", + "start": 2410.1, + "end": 2411.04, + "words": [ + { + "word": " start,", + "start": 2410.1, + "end": 2410.38, + "probability": 0.9892578125 + }, + { + "word": " shut", + "start": 2410.52, + "end": 2410.62, + "probability": 0.85546875 + }, + { + "word": " down,", + "start": 2410.62, + "end": 2410.82, + "probability": 1.0 + }, + { + "word": " restart.", + "start": 2410.86, + "end": 2411.04, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1135, + "text": "Or, you know, just hold the power button down until it shuts off.", + "start": 2412.9, + "end": 2415.96, + "words": [ + { + "word": " Or,", + "start": 2412.9, + "end": 2413.3, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 2413.44, + "end": 2413.68, + "probability": 0.833984375 + }, + { + "word": " know,", + "start": 2413.68, + "end": 2413.86, + "probability": 1.0 + }, + { + "word": " just", + "start": 2413.86, + "end": 2414.12, + "probability": 1.0 + }, + { + "word": " hold", + "start": 2414.12, + "end": 2414.38, + "probability": 0.86669921875 + }, + { + "word": " the", + "start": 2414.38, + "end": 2414.48, + "probability": 1.0 + }, + { + "word": " power", + "start": 2414.48, + "end": 2414.6, + "probability": 0.99755859375 + }, + { + "word": " button", + "start": 2414.6, + "end": 2414.8, + "probability": 1.0 + }, + { + "word": " down", + "start": 2414.8, + "end": 2414.96, + "probability": 0.998046875 + }, + { + "word": " until", + "start": 2414.96, + "end": 2415.18, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2415.18, + "end": 2415.32, + "probability": 1.0 + }, + { + "word": " shuts", + "start": 2415.32, + "end": 2415.72, + "probability": 1.0 + }, + { + "word": " off.", + "start": 2415.72, + "end": 2415.96, + "probability": 1.0 + } + ] + }, + { + "id": 1136, + "text": "Or if you're on a desktop, just unplug it.", + "start": 2416.04, + "end": 2417.9, + "words": [ + { + "word": " Or", + "start": 2416.04, + "end": 2416.18, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2416.18, + "end": 2416.32, + "probability": 0.91357421875 + }, + { + "word": " you're", + "start": 2416.32, + "end": 2416.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 2416.5, + "end": 2416.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 2416.62, + "end": 2416.72, + "probability": 1.0 + }, + { + "word": " desktop,", + "start": 2416.72, + "end": 2417.0, + "probability": 1.0 + }, + { + "word": " just", + "start": 2417.12, + "end": 2417.28, + "probability": 1.0 + }, + { + "word": " unplug", + "start": 2417.28, + "end": 2417.62, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2417.62, + "end": 2417.9, + "probability": 1.0 + } + ] + }, + { + "id": 1137, + "text": "Now, that's not a good idea to do to your machine very often,", + "start": 2418.08, + "end": 2420.76, + "words": [ + { + "word": " Now,", + "start": 2418.08, + "end": 2418.48, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2418.58, + "end": 2418.9, + "probability": 0.98974609375 + }, + { + "word": " not", + "start": 2418.9, + "end": 2419.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2419.04, + "end": 2419.16, + "probability": 1.0 + }, + { + "word": " good", + "start": 2419.16, + "end": 2419.26, + "probability": 1.0 + }, + { + "word": " idea", + "start": 2419.26, + "end": 2419.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 2419.52, + "end": 2419.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 2419.64, + "end": 2419.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 2419.78, + "end": 2419.88, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 2419.88, + "end": 2419.98, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2419.98, + "end": 2420.22, + "probability": 1.0 + }, + { + "word": " very", + "start": 2420.22, + "end": 2420.42, + "probability": 1.0 + }, + { + "word": " often,", + "start": 2420.42, + "end": 2420.76, + "probability": 1.0 + } + ] + }, + { + "id": 1138, + "text": "so please don't do that unless it's important.", + "start": 2420.82, + "end": 2423.22, + "words": [ + { + "word": " so", + "start": 2420.82, + "end": 2421.08, + "probability": 1.0 + }, + { + "word": " please", + "start": 2421.08, + "end": 2421.78, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2421.78, + "end": 2421.94, + "probability": 1.0 + }, + { + "word": " do", + "start": 2421.94, + "end": 2422.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 2422.04, + "end": 2422.18, + "probability": 1.0 + }, + { + "word": " unless", + "start": 2422.18, + "end": 2422.34, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2422.34, + "end": 2422.74, + "probability": 1.0 + }, + { + "word": " important.", + "start": 2422.74, + "end": 2423.22, + "probability": 1.0 + } + ] + }, + { + "id": 1139, + "text": "You know, like you're stuck in some way.", + "start": 2424.1, + "end": 2426.08, + "words": [ + { + "word": " You", + "start": 2424.1, + "end": 2424.5, + "probability": 0.998046875 + }, + { + "word": " know,", + "start": 2424.5, + "end": 2424.66, + "probability": 1.0 + }, + { + "word": " like", + "start": 2424.66, + "end": 2424.82, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 2424.82, + "end": 2424.98, + "probability": 0.9990234375 + }, + { + "word": " stuck", + "start": 2424.98, + "end": 2425.28, + "probability": 1.0 + }, + { + "word": " in", + "start": 2425.28, + "end": 2425.56, + "probability": 1.0 + }, + { + "word": " some", + "start": 2425.56, + "end": 2425.82, + "probability": 1.0 + }, + { + "word": " way.", + "start": 2425.82, + "end": 2426.08, + "probability": 1.0 + } + ] + }, + { + "id": 1140, + "text": "But then, if you need a second opinion on whether or not", + "start": 2427.18, + "end": 2430.46, + "words": [ + { + "word": " But", + "start": 2427.18, + "end": 2427.58, + "probability": 1.0 + }, + { + "word": " then,", + "start": 2427.58, + "end": 2427.88, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2427.96, + "end": 2428.18, + "probability": 1.0 + }, + { + "word": " you", + "start": 2428.18, + "end": 2428.28, + "probability": 1.0 + }, + { + "word": " need", + "start": 2428.28, + "end": 2428.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 2428.4, + "end": 2428.48, + "probability": 1.0 + }, + { + "word": " second", + "start": 2428.48, + "end": 2428.68, + "probability": 1.0 + }, + { + "word": " opinion", + "start": 2428.68, + "end": 2428.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 2428.88, + "end": 2429.28, + "probability": 0.99951171875 + }, + { + "word": " whether", + "start": 2429.28, + "end": 2430.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 2430.0, + "end": 2430.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 2430.2, + "end": 2430.46, + "probability": 1.0 + } + ] + }, + { + "id": 1141, + "text": "something harmful has happened to your computer", + "start": 2431.16, + "end": 2432.88, + "words": [ + { + "word": " something", + "start": 2431.16, + "end": 2431.56, + "probability": 1.0 + }, + { + "word": " harmful", + "start": 2431.56, + "end": 2431.94, + "probability": 1.0 + }, + { + "word": " has", + "start": 2431.94, + "end": 2432.2, + "probability": 0.98974609375 + }, + { + "word": " happened", + "start": 2432.2, + "end": 2432.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 2432.4, + "end": 2432.5, + "probability": 0.998046875 + }, + { + "word": " your", + "start": 2432.5, + "end": 2432.54, + "probability": 1.0 + }, + { + "word": " computer", + "start": 2432.54, + "end": 2432.88, + "probability": 1.0 + } + ] + }, + { + "id": 1142, + "text": "or you suspect that there is other bad things,", + "start": 2432.88, + "end": 2435.14, + "words": [ + { + "word": " or", + "start": 2432.88, + "end": 2433.02, + "probability": 0.303955078125 + }, + { + "word": " you", + "start": 2433.02, + "end": 2433.1, + "probability": 0.98681640625 + }, + { + "word": " suspect", + "start": 2433.1, + "end": 2433.28, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 2433.28, + "end": 2433.64, + "probability": 1.0 + }, + { + "word": " there", + "start": 2433.64, + "end": 2433.84, + "probability": 1.0 + }, + { + "word": " is", + "start": 2433.84, + "end": 2434.04, + "probability": 0.642578125 + }, + { + "word": " other", + "start": 2434.04, + "end": 2434.74, + "probability": 0.998046875 + }, + { + "word": " bad", + "start": 2434.74, + "end": 2435.08, + "probability": 0.72998046875 + }, + { + "word": " things,", + "start": 2435.08, + "end": 2435.14, + "probability": 0.1612548828125 + } + ] + }, + { + "id": 1143, + "text": "bad stuff going on,", + "start": 2435.16, + "end": 2435.84, + "words": [ + { + "word": " bad", + "start": 2435.16, + "end": 2435.24, + "probability": 0.00926971435546875 + }, + { + "word": " stuff", + "start": 2435.24, + "end": 2435.36, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 2435.36, + "end": 2435.62, + "probability": 0.99560546875 + }, + { + "word": " on,", + "start": 2435.62, + "end": 2435.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1144, + "text": "give us a call down at the shop at 304-8300.", + "start": 2435.9, + "end": 2437.64, + "words": [ + { + "word": " give", + "start": 2435.9, + "end": 2435.96, + "probability": 0.99560546875 + }, + { + "word": " us", + "start": 2435.96, + "end": 2436.08, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2436.08, + "end": 2436.1, + "probability": 0.9970703125 + }, + { + "word": " call", + "start": 2436.1, + "end": 2436.22, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 2436.22, + "end": 2436.34, + "probability": 0.9814453125 + }, + { + "word": " at", + "start": 2436.34, + "end": 2436.44, + "probability": 0.95458984375 + }, + { + "word": " the", + "start": 2436.44, + "end": 2436.48, + "probability": 0.984375 + }, + { + "word": " shop", + "start": 2436.48, + "end": 2436.6, + "probability": 0.9931640625 + }, + { + "word": " at", + "start": 2436.6, + "end": 2436.78, + "probability": 0.98828125 + }, + { + "word": " 304", + "start": 2436.78, + "end": 2437.26, + "probability": 0.9912109375 + }, + { + "word": "-8300.", + "start": 2437.26, + "end": 2437.64, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1145, + "text": "We will happily talk you through it and get some more information.", + "start": 2437.86, + "end": 2439.84, + "words": [ + { + "word": " We", + "start": 2437.86, + "end": 2438.02, + "probability": 0.99755859375 + }, + { + "word": " will", + "start": 2438.02, + "end": 2438.12, + "probability": 0.9931640625 + }, + { + "word": " happily", + "start": 2438.12, + "end": 2438.4, + "probability": 0.998046875 + }, + { + "word": " talk", + "start": 2438.4, + "end": 2438.66, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2438.66, + "end": 2438.78, + "probability": 0.998046875 + }, + { + "word": " through", + "start": 2438.78, + "end": 2438.92, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2438.92, + "end": 2439.08, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2439.08, + "end": 2439.16, + "probability": 0.9931640625 + }, + { + "word": " get", + "start": 2439.16, + "end": 2439.28, + "probability": 0.998046875 + }, + { + "word": " some", + "start": 2439.28, + "end": 2439.38, + "probability": 0.99658203125 + }, + { + "word": " more", + "start": 2439.38, + "end": 2439.48, + "probability": 0.99951171875 + }, + { + "word": " information.", + "start": 2439.48, + "end": 2439.84, + "probability": 1.0 + } + ] + }, + { + "id": 1146, + "text": "And if nothing's wrong, we'll just tell you,", + "start": 2440.72, + "end": 2442.38, + "words": [ + { + "word": " And", + "start": 2440.72, + "end": 2441.0, + "probability": 0.90478515625 + }, + { + "word": " if", + "start": 2441.0, + "end": 2441.28, + "probability": 0.9765625 + }, + { + "word": " nothing's", + "start": 2441.28, + "end": 2441.76, + "probability": 0.9912109375 + }, + { + "word": " wrong,", + "start": 2441.76, + "end": 2441.9, + "probability": 1.0 + }, + { + "word": " we'll", + "start": 2441.96, + "end": 2442.08, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 2442.08, + "end": 2442.18, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 2442.18, + "end": 2442.32, + "probability": 0.95556640625 + }, + { + "word": " you,", + "start": 2442.32, + "end": 2442.38, + "probability": 1.0 + } + ] + }, + { + "id": 1147, + "text": "hey, nothing's wrong, no big deal.", + "start": 2442.44, + "end": 2443.5, + "words": [ + { + "word": " hey,", + "start": 2442.44, + "end": 2442.52, + "probability": 0.93896484375 + }, + { + "word": " nothing's", + "start": 2442.52, + "end": 2442.82, + "probability": 0.99951171875 + }, + { + "word": " wrong,", + "start": 2442.82, + "end": 2442.94, + "probability": 1.0 + }, + { + "word": " no", + "start": 2443.0, + "end": 2443.14, + "probability": 0.99951171875 + }, + { + "word": " big", + "start": 2443.14, + "end": 2443.28, + "probability": 1.0 + }, + { + "word": " deal.", + "start": 2443.28, + "end": 2443.5, + "probability": 1.0 + } + ] + }, + { + "id": 1148, + "text": "But if you need to bring it in, we're always here to help.", + "start": 2443.68, + "end": 2445.9, + "words": [ + { + "word": " But", + "start": 2443.68, + "end": 2443.96, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 2443.96, + "end": 2444.06, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2444.06, + "end": 2444.14, + "probability": 1.0 + }, + { + "word": " need", + "start": 2444.14, + "end": 2444.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 2444.26, + "end": 2444.36, + "probability": 1.0 + }, + { + "word": " bring", + "start": 2444.36, + "end": 2444.5, + "probability": 1.0 + }, + { + "word": " it", + "start": 2444.5, + "end": 2444.62, + "probability": 1.0 + }, + { + "word": " in,", + "start": 2444.62, + "end": 2444.78, + "probability": 1.0 + }, + { + "word": " we're", + "start": 2444.94, + "end": 2445.24, + "probability": 0.99951171875 + }, + { + "word": " always", + "start": 2445.24, + "end": 2445.42, + "probability": 1.0 + }, + { + "word": " here", + "start": 2445.42, + "end": 2445.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2445.64, + "end": 2445.76, + "probability": 1.0 + }, + { + "word": " help.", + "start": 2445.76, + "end": 2445.9, + "probability": 1.0 + } + ] + }, + { + "id": 1149, + "text": "Did you have any other information you wanted to hand out", + "start": 2447.1, + "end": 2448.74, + "words": [ + { + "word": " Did", + "start": 2447.1, + "end": 2447.38, + "probability": 0.88525390625 + }, + { + "word": " you", + "start": 2447.38, + "end": 2447.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 2447.48, + "end": 2447.56, + "probability": 1.0 + }, + { + "word": " any", + "start": 2447.56, + "end": 2447.64, + "probability": 1.0 + }, + { + "word": " other", + "start": 2447.64, + "end": 2447.78, + "probability": 1.0 + }, + { + "word": " information", + "start": 2447.78, + "end": 2448.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 2448.08, + "end": 2448.32, + "probability": 0.99951171875 + }, + { + "word": " wanted", + "start": 2448.32, + "end": 2448.42, + "probability": 0.9150390625 + }, + { + "word": " to", + "start": 2448.42, + "end": 2448.54, + "probability": 1.0 + }, + { + "word": " hand", + "start": 2448.54, + "end": 2448.64, + "probability": 0.84033203125 + }, + { + "word": " out", + "start": 2448.64, + "end": 2448.74, + "probability": 0.9541015625 + } + ] + }, + { + "id": 1150, + "text": "before we end the show here?", + "start": 2448.74, + "end": 2449.82, + "words": [ + { + "word": " before", + "start": 2448.74, + "end": 2448.98, + "probability": 0.8779296875 + }, + { + "word": " we", + "start": 2448.98, + "end": 2449.06, + "probability": 1.0 + }, + { + "word": " end", + "start": 2449.06, + "end": 2449.3, + "probability": 0.98974609375 + }, + { + "word": " the", + "start": 2449.3, + "end": 2449.42, + "probability": 0.99853515625 + }, + { + "word": " show", + "start": 2449.42, + "end": 2449.6, + "probability": 1.0 + }, + { + "word": " here?", + "start": 2449.6, + "end": 2449.82, + "probability": 0.98681640625 + } + ] + }, + { + "id": 1151, + "text": "No, you covered it up and down.", + "start": 2450.0, + "end": 2452.18, + "words": [ + { + "word": " No,", + "start": 2450.0, + "end": 2450.2, + "probability": 0.92138671875 + }, + { + "word": " you", + "start": 2450.32, + "end": 2450.4, + "probability": 0.5859375 + }, + { + "word": " covered", + "start": 2450.4, + "end": 2450.78, + "probability": 0.5712890625 + }, + { + "word": " it", + "start": 2450.78, + "end": 2450.96, + "probability": 0.99755859375 + }, + { + "word": " up", + "start": 2450.96, + "end": 2451.84, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2451.84, + "end": 2451.98, + "probability": 0.98388671875 + }, + { + "word": " down.", + "start": 2451.98, + "end": 2452.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 1152, + "text": "All right, well, thank you very much for coming in, Jay.", + "start": 2452.6, + "end": 2454.52, + "words": [ + { + "word": " All", + "start": 2452.6, + "end": 2452.86, + "probability": 0.96875 + }, + { + "word": " right,", + "start": 2452.86, + "end": 2452.98, + "probability": 1.0 + }, + { + "word": " well,", + "start": 2453.02, + "end": 2453.12, + "probability": 0.99951171875 + }, + { + "word": " thank", + "start": 2453.18, + "end": 2453.38, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2453.38, + "end": 2453.56, + "probability": 1.0 + }, + { + "word": " very", + "start": 2453.56, + "end": 2453.72, + "probability": 1.0 + }, + { + "word": " much", + "start": 2453.72, + "end": 2453.94, + "probability": 1.0 + }, + { + "word": " for", + "start": 2453.94, + "end": 2454.08, + "probability": 0.99951171875 + }, + { + "word": " coming", + "start": 2454.08, + "end": 2454.26, + "probability": 1.0 + }, + { + "word": " in,", + "start": 2454.26, + "end": 2454.38, + "probability": 0.99609375 + }, + { + "word": " Jay.", + "start": 2454.42, + "end": 2454.52, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1153, + "text": "I very much appreciate you taking the time to do that.", + "start": 2454.58, + "end": 2456.56, + "words": [ + { + "word": " I", + "start": 2454.58, + "end": 2454.66, + "probability": 0.97265625 + }, + { + "word": " very", + "start": 2454.66, + "end": 2454.76, + "probability": 0.99951171875 + }, + { + "word": " much", + "start": 2454.76, + "end": 2454.98, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 2454.98, + "end": 2455.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 2455.34, + "end": 2455.52, + "probability": 0.99951171875 + }, + { + "word": " taking", + "start": 2455.52, + "end": 2455.74, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2455.74, + "end": 2455.88, + "probability": 0.99609375 + }, + { + "word": " time", + "start": 2455.88, + "end": 2456.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 2456.08, + "end": 2456.24, + "probability": 1.0 + }, + { + "word": " do", + "start": 2456.24, + "end": 2456.36, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2456.36, + "end": 2456.56, + "probability": 1.0 + } + ] + }, + { + "id": 1154, + "text": "And I hope that people out there have found", + "start": 2457.1199999999994, + "end": 2460.04, + "words": [ + { + "word": " And", + "start": 2457.1199999999994, + "end": 2457.3999999999996, + "probability": 0.97412109375 + }, + { + "word": " I", + "start": 2457.3999999999996, + "end": 2457.68, + "probability": 0.99951171875 + }, + { + "word": " hope", + "start": 2457.68, + "end": 2458.28, + "probability": 1.0 + }, + { + "word": " that", + "start": 2458.28, + "end": 2458.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 2458.52, + "end": 2459.28, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 2459.28, + "end": 2459.48, + "probability": 1.0 + }, + { + "word": " there", + "start": 2459.48, + "end": 2459.64, + "probability": 1.0 + }, + { + "word": " have", + "start": 2459.64, + "end": 2459.8, + "probability": 0.98681640625 + }, + { + "word": " found", + "start": 2459.8, + "end": 2460.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1155, + "text": "some type of informative information in this", + "start": 2460.04, + "end": 2462.26, + "words": [ + { + "word": " some", + "start": 2460.04, + "end": 2460.32, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 2460.32, + "end": 2460.6, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2460.6, + "end": 2460.88, + "probability": 1.0 + }, + { + "word": " informative", + "start": 2460.88, + "end": 2461.24, + "probability": 0.9990234375 + }, + { + "word": " information", + "start": 2461.24, + "end": 2461.7, + "probability": 1.0 + }, + { + "word": " in", + "start": 2461.7, + "end": 2462.1, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 2462.1, + "end": 2462.26, + "probability": 1.0 + } + ] + }, + { + "id": 1156, + "text": "and that they have an opportunity to protect themselves.", + "start": 2462.26, + "end": 2463.84, + "words": [ + { + "word": " and", + "start": 2462.26, + "end": 2462.42, + "probability": 0.95556640625 + }, + { + "word": " that", + "start": 2462.42, + "end": 2462.54, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 2462.54, + "end": 2462.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 2462.68, + "end": 2462.8, + "probability": 1.0 + }, + { + "word": " an", + "start": 2462.8, + "end": 2462.9, + "probability": 0.99951171875 + }, + { + "word": " opportunity", + "start": 2462.9, + "end": 2463.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 2463.2, + "end": 2463.36, + "probability": 0.99951171875 + }, + { + "word": " protect", + "start": 2463.36, + "end": 2463.54, + "probability": 0.9990234375 + }, + { + "word": " themselves.", + "start": 2463.54, + "end": 2463.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1157, + "text": "Or if you know somebody who's at risk,", + "start": 2463.94, + "end": 2465.12, + "words": [ + { + "word": " Or", + "start": 2463.94, + "end": 2464.14, + "probability": 0.99365234375 + }, + { + "word": " if", + "start": 2464.14, + "end": 2464.26, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 2464.26, + "end": 2464.3, + "probability": 1.0 + }, + { + "word": " know", + "start": 2464.3, + "end": 2464.44, + "probability": 0.99951171875 + }, + { + "word": " somebody", + "start": 2464.44, + "end": 2464.68, + "probability": 0.99853515625 + }, + { + "word": " who's", + "start": 2464.68, + "end": 2464.82, + "probability": 0.99609375 + }, + { + "word": " at", + "start": 2464.82, + "end": 2464.92, + "probability": 0.99169921875 + }, + { + "word": " risk,", + "start": 2464.92, + "end": 2465.12, + "probability": 0.919921875 + } + ] + }, + { + "id": 1158, + "text": "like if you do have, let's say something", + "start": 2465.16, + "end": 2467.44, + "words": [ + { + "word": " like", + "start": 2465.16, + "end": 2465.36, + "probability": 0.05670166015625 + }, + { + "word": " if", + "start": 2465.36, + "end": 2465.46, + "probability": 0.9765625 + }, + { + "word": " you", + "start": 2465.46, + "end": 2465.56, + "probability": 1.0 + }, + { + "word": " do", + "start": 2465.56, + "end": 2465.78, + "probability": 0.9990234375 + }, + { + "word": " have,", + "start": 2465.78, + "end": 2466.16, + "probability": 0.99951171875 + }, + { + "word": " let's", + "start": 2466.24, + "end": 2467.18, + "probability": 0.974609375 + }, + { + "word": " say", + "start": 2467.18, + "end": 2467.26, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 2467.26, + "end": 2467.44, + "probability": 0.82861328125 + } + ] + }, + { + "id": 1159, + "text": "that's a little bit older in your life,", + "start": 2467.44, + "end": 2468.48, + "words": [ + { + "word": " that's", + "start": 2467.44, + "end": 2467.54, + "probability": 0.9775390625 + }, + { + "word": " a", + "start": 2467.54, + "end": 2467.62, + "probability": 1.0 + }, + { + "word": " little", + "start": 2467.62, + "end": 2467.7, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2467.7, + "end": 2467.82, + "probability": 0.99951171875 + }, + { + "word": " older", + "start": 2467.82, + "end": 2468.04, + "probability": 1.0 + }, + { + "word": " in", + "start": 2468.04, + "end": 2468.22, + "probability": 0.98681640625 + }, + { + "word": " your", + "start": 2468.22, + "end": 2468.26, + "probability": 1.0 + }, + { + "word": " life,", + "start": 2468.26, + "end": 2468.48, + "probability": 1.0 + } + ] + }, + { + "id": 1160, + "text": "you know, you got a parent or grandparent that's out there", + "start": 2468.56, + "end": 2470.52, + "words": [ + { + "word": " you", + "start": 2468.56, + "end": 2468.66, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 2468.66, + "end": 2468.7, + "probability": 0.869140625 + }, + { + "word": " you", + "start": 2468.72, + "end": 2468.8, + "probability": 0.99755859375 + }, + { + "word": " got", + "start": 2468.8, + "end": 2468.88, + "probability": 0.428955078125 + }, + { + "word": " a", + "start": 2468.88, + "end": 2469.06, + "probability": 1.0 + }, + { + "word": " parent", + "start": 2469.06, + "end": 2469.48, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 2469.48, + "end": 2469.64, + "probability": 0.99462890625 + }, + { + "word": " grandparent", + "start": 2469.64, + "end": 2469.96, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2469.96, + "end": 2470.22, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 2470.22, + "end": 2470.34, + "probability": 1.0 + }, + { + "word": " there", + "start": 2470.34, + "end": 2470.52, + "probability": 1.0 + } + ] + }, + { + "id": 1161, + "text": "and needs a little watchful eye on them", + "start": 2470.52, + "end": 2473.86, + "words": [ + { + "word": " and", + "start": 2470.52, + "end": 2470.64, + "probability": 0.99462890625 + }, + { + "word": " needs", + "start": 2470.64, + "end": 2470.9, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2470.9, + "end": 2471.12, + "probability": 0.79541015625 + }, + { + "word": " little", + "start": 2471.12, + "end": 2471.94, + "probability": 0.94189453125 + }, + { + "word": " watchful", + "start": 2471.94, + "end": 2472.9, + "probability": 1.0 + }, + { + "word": " eye", + "start": 2472.9, + "end": 2473.24, + "probability": 1.0 + }, + { + "word": " on", + "start": 2473.24, + "end": 2473.64, + "probability": 1.0 + }, + { + "word": " them", + "start": 2473.64, + "end": 2473.86, + "probability": 1.0 + } + ] + }, + { + "id": 1162, + "text": "when it comes to these types of things,", + "start": 2473.86, + "end": 2475.28, + "words": [ + { + "word": " when", + "start": 2473.86, + "end": 2474.06, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 2474.06, + "end": 2474.16, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2474.16, + "end": 2474.32, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 2474.32, + "end": 2474.48, + "probability": 1.0 + }, + { + "word": " these", + "start": 2474.48, + "end": 2474.64, + "probability": 1.0 + }, + { + "word": " types", + "start": 2474.64, + "end": 2474.88, + "probability": 1.0 + }, + { + "word": " of", + "start": 2474.88, + "end": 2475.06, + "probability": 1.0 + }, + { + "word": " things,", + "start": 2475.06, + "end": 2475.28, + "probability": 1.0 + } + ] + }, + { + "id": 1163, + "text": "you know, help educate them.", + "start": 2476.0, + "end": 2477.32, + "words": [ + { + "word": " you", + "start": 2475.84, + "end": 2476.04, + "probability": 0.9873046875 + }, + { + "word": " know,", + "start": 2476.04, + "end": 2476.22, + "probability": 1.0 + }, + { + "word": " help", + "start": 2476.22, + "end": 2476.48, + "probability": 1.0 + }, + { + "word": " educate", + "start": 2476.48, + "end": 2476.88, + "probability": 1.0 + }, + { + "word": " them.", + "start": 2476.88, + "end": 2477.32, + "probability": 1.0 + } + ] + }, + { + "id": 1164, + "text": "You can either tell them to, you know,", + "start": 2477.56, + "end": 2479.48, + "words": [ + { + "word": " You", + "start": 2477.56, + "end": 2477.96, + "probability": 1.0 + }, + { + "word": " can", + "start": 2477.96, + "end": 2478.14, + "probability": 1.0 + }, + { + "word": " either", + "start": 2478.14, + "end": 2478.3, + "probability": 1.0 + }, + { + "word": " tell", + "start": 2478.3, + "end": 2478.56, + "probability": 1.0 + }, + { + "word": " them", + "start": 2478.56, + "end": 2478.78, + "probability": 1.0 + }, + { + "word": " to,", + "start": 2478.78, + "end": 2478.96, + "probability": 0.96533203125 + }, + { + "word": " you", + "start": 2479.1, + "end": 2479.32, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 2479.32, + "end": 2479.48, + "probability": 1.0 + } + ] + }, + { + "id": 1165, + "text": "the things to watch out for.", + "start": 2479.48, + "end": 2480.92, + "words": [ + { + "word": " the", + "start": 2479.48, + "end": 2479.74, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 2479.74, + "end": 2480.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2480.18, + "end": 2480.36, + "probability": 1.0 + }, + { + "word": " watch", + "start": 2480.36, + "end": 2480.52, + "probability": 1.0 + }, + { + "word": " out", + "start": 2480.52, + "end": 2480.68, + "probability": 1.0 + }, + { + "word": " for.", + "start": 2480.68, + "end": 2480.92, + "probability": 1.0 + } + ] + }, + { + "id": 1166, + "text": "You can refer them to gurushow.com", + "start": 2481.06, + "end": 2483.56, + "words": [ + { + "word": " You", + "start": 2481.06, + "end": 2481.24, + "probability": 1.0 + }, + { + "word": " can", + "start": 2481.24, + "end": 2481.48, + "probability": 1.0 + }, + { + "word": " refer", + "start": 2481.48, + "end": 2482.14, + "probability": 1.0 + }, + { + "word": " them", + "start": 2482.14, + "end": 2482.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 2482.56, + "end": 2482.78, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 2482.78, + "end": 2483.16, + "probability": 0.70263671875 + }, + { + "word": ".com", + "start": 2483.16, + "end": 2483.56, + "probability": 1.0 + } + ] + }, + { + "id": 1167, + "text": "for podcasts on this type of information.", + "start": 2483.56, + "end": 2485.2, + "words": [ + { + "word": " for", + "start": 2483.56, + "end": 2483.78, + "probability": 1.0 + }, + { + "word": " podcasts", + "start": 2483.78, + "end": 2484.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 2484.1, + "end": 2484.44, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 2484.44, + "end": 2484.62, + "probability": 1.0 + }, + { + "word": " type", + "start": 2484.62, + "end": 2484.78, + "probability": 1.0 + }, + { + "word": " of", + "start": 2484.78, + "end": 2484.92, + "probability": 1.0 + }, + { + "word": " information.", + "start": 2484.92, + "end": 2485.2, + "probability": 1.0 + } + ] + }, + { + "id": 1168, + "text": "You can give us a call down at the shop, 304-8300.", + "start": 2485.38, + "end": 2487.56, + "words": [ + { + "word": " You", + "start": 2485.38, + "end": 2485.46, + "probability": 1.0 + }, + { + "word": " can", + "start": 2485.46, + "end": 2485.54, + "probability": 1.0 + }, + { + "word": " give", + "start": 2485.54, + "end": 2485.68, + "probability": 0.8623046875 + }, + { + "word": " us", + "start": 2485.68, + "end": 2485.92, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 2485.92, + "end": 2485.92, + "probability": 1.0 + }, + { + "word": " call", + "start": 2485.92, + "end": 2486.06, + "probability": 1.0 + }, + { + "word": " down", + "start": 2486.06, + "end": 2486.2, + "probability": 1.0 + }, + { + "word": " at", + "start": 2486.2, + "end": 2486.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 2486.3, + "end": 2486.32, + "probability": 0.99951171875 + }, + { + "word": " shop,", + "start": 2486.32, + "end": 2486.54, + "probability": 0.99951171875 + }, + { + "word": " 304", + "start": 2486.66, + "end": 2487.2, + "probability": 0.99609375 + }, + { + "word": "-8300.", + "start": 2487.2, + "end": 2487.56, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1169, + "text": "We'll help you and them learn how not to", + "start": 2487.72, + "end": 2490.78, + "words": [ + { + "word": " We'll", + "start": 2487.72, + "end": 2487.86, + "probability": 1.0 + }, + { + "word": " help", + "start": 2487.86, + "end": 2488.04, + "probability": 1.0 + }, + { + "word": " you", + "start": 2488.04, + "end": 2488.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 2488.22, + "end": 2489.14, + "probability": 1.0 + }, + { + "word": " them", + "start": 2489.14, + "end": 2489.44, + "probability": 1.0 + }, + { + "word": " learn", + "start": 2489.44, + "end": 2489.84, + "probability": 1.0 + }, + { + "word": " how", + "start": 2489.84, + "end": 2490.04, + "probability": 1.0 + }, + { + "word": " not", + "start": 2490.04, + "end": 2490.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 2490.42, + "end": 2490.78, + "probability": 1.0 + } + ] + }, + { + "id": 1170, + "text": "get themselves in trouble.", + "start": 2490.78, + "end": 2492.28, + "words": [ + { + "word": " get", + "start": 2490.78, + "end": 2491.5, + "probability": 1.0 + }, + { + "word": " themselves", + "start": 2491.5, + "end": 2491.76, + "probability": 1.0 + }, + { + "word": " in", + "start": 2491.76, + "end": 2492.06, + "probability": 1.0 + }, + { + "word": " trouble.", + "start": 2492.06, + "end": 2492.28, + "probability": 1.0 + } + ] + }, + { + "id": 1171, + "text": "And we do several,", + "start": 2492.48, + "end": 2495.14, + "words": [ + { + "word": " And", + "start": 2492.48, + "end": 2492.88, + "probability": 0.9912109375 + }, + { + "word": " we", + "start": 2492.88, + "end": 2494.34, + "probability": 0.99169921875 + }, + { + "word": " do", + "start": 2494.34, + "end": 2494.72, + "probability": 1.0 + }, + { + "word": " several,", + "start": 2494.72, + "end": 2495.14, + "probability": 0.74365234375 + } + ] + }, + { + "id": 1172, + "text": "several talks out in the Green Valley area each year,", + "start": 2495.16, + "end": 2498.5, + "words": [ + { + "word": " several", + "start": 2495.16, + "end": 2495.26, + "probability": 0.052734375 + }, + { + "word": " talks", + "start": 2495.26, + "end": 2495.5, + "probability": 0.99072265625 + }, + { + "word": " out", + "start": 2495.5, + "end": 2495.9, + "probability": 0.98388671875 + }, + { + "word": " in", + "start": 2495.9, + "end": 2496.12, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 2496.12, + "end": 2496.3, + "probability": 0.9873046875 + }, + { + "word": " Green", + "start": 2496.3, + "end": 2496.48, + "probability": 0.8583984375 + }, + { + "word": " Valley", + "start": 2496.48, + "end": 2496.66, + "probability": 0.9853515625 + }, + { + "word": " area", + "start": 2496.66, + "end": 2497.04, + "probability": 0.9912109375 + }, + { + "word": " each", + "start": 2497.04, + "end": 2498.12, + "probability": 0.646484375 + }, + { + "word": " year,", + "start": 2498.12, + "end": 2498.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1173, + "text": "like at the Green Valley Computer Club.", + "start": 2498.54, + "end": 2500.08, + "words": [ + { + "word": " like", + "start": 2498.54, + "end": 2498.76, + "probability": 0.765625 + }, + { + "word": " at", + "start": 2498.76, + "end": 2499.06, + "probability": 0.72119140625 + }, + { + "word": " the", + "start": 2499.06, + "end": 2499.18, + "probability": 0.98291015625 + }, + { + "word": " Green", + "start": 2499.18, + "end": 2499.32, + "probability": 0.9794921875 + }, + { + "word": " Valley", + "start": 2499.32, + "end": 2499.52, + "probability": 0.99853515625 + }, + { + "word": " Computer", + "start": 2499.52, + "end": 2499.72, + "probability": 0.93017578125 + }, + { + "word": " Club.", + "start": 2499.72, + "end": 2500.08, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1174, + "text": "We do some at the Up and Dove Mountain.", + "start": 2500.26, + "end": 2504.38, + "words": [ + { + "word": " We", + "start": 2500.26, + "end": 2500.42, + "probability": 0.9951171875 + }, + { + "word": " do", + "start": 2500.42, + "end": 2500.62, + "probability": 0.99609375 + }, + { + "word": " some", + "start": 2500.62, + "end": 2500.86, + "probability": 0.99755859375 + }, + { + "word": " at", + "start": 2500.86, + "end": 2501.2, + "probability": 0.5703125 + }, + { + "word": " the", + "start": 2501.2, + "end": 2501.4, + "probability": 0.347900390625 + }, + { + "word": " Up", + "start": 2501.4, + "end": 2503.74, + "probability": 0.490234375 + }, + { + "word": " and", + "start": 2503.74, + "end": 2503.92, + "probability": 0.5615234375 + }, + { + "word": " Dove", + "start": 2503.92, + "end": 2504.1, + "probability": 0.9638671875 + }, + { + "word": " Mountain.", + "start": 2504.1, + "end": 2504.38, + "probability": 0.9677734375 + } + ] + }, + { + "id": 1175, + "text": "We do some other ones where this demographic", + "start": 2504.56, + "end": 2507.46, + "words": [ + { + "word": " We", + "start": 2504.56, + "end": 2504.72, + "probability": 0.9970703125 + }, + { + "word": " do", + "start": 2504.72, + "end": 2504.86, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 2504.86, + "end": 2505.2, + "probability": 0.99755859375 + }, + { + "word": " other", + "start": 2505.2, + "end": 2505.48, + "probability": 0.99853515625 + }, + { + "word": " ones", + "start": 2505.48, + "end": 2505.7, + "probability": 0.99755859375 + }, + { + "word": " where", + "start": 2505.7, + "end": 2505.96, + "probability": 0.9833984375 + }, + { + "word": " this", + "start": 2505.96, + "end": 2506.88, + "probability": 0.9970703125 + }, + { + "word": " demographic", + "start": 2506.88, + "end": 2507.46, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1176, + "text": "is likely to live.", + "start": 2507.46, + "end": 2508.86, + "words": [ + { + "word": " is", + "start": 2507.46, + "end": 2507.84, + "probability": 0.99755859375 + }, + { + "word": " likely", + "start": 2507.84, + "end": 2508.14, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2508.14, + "end": 2508.48, + "probability": 0.99951171875 + }, + { + "word": " live.", + "start": 2508.48, + "end": 2508.86, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1177, + "text": "And we'll sit and just answer questions,", + "start": 2509.08, + "end": 2511.44, + "words": [ + { + "word": " And", + "start": 2509.08, + "end": 2509.26, + "probability": 0.92138671875 + }, + { + "word": " we'll", + "start": 2509.26, + "end": 2509.68, + "probability": 0.986328125 + }, + { + "word": " sit", + "start": 2509.68, + "end": 2509.88, + "probability": 0.96923828125 + }, + { + "word": " and", + "start": 2509.88, + "end": 2510.1, + "probability": 0.982421875 + }, + { + "word": " just", + "start": 2510.1, + "end": 2510.48, + "probability": 0.96240234375 + }, + { + "word": " answer", + "start": 2510.48, + "end": 2510.96, + "probability": 0.99853515625 + }, + { + "word": " questions,", + "start": 2510.96, + "end": 2511.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1178, + "text": "usually for two to three hours.", + "start": 2511.58, + "end": 2513.06, + "words": [ + { + "word": " usually", + "start": 2511.58, + "end": 2512.08, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 2512.08, + "end": 2512.3, + "probability": 0.9833984375 + }, + { + "word": " two", + "start": 2512.3, + "end": 2512.46, + "probability": 0.95654296875 + }, + { + "word": " to", + "start": 2512.46, + "end": 2512.58, + "probability": 0.99462890625 + }, + { + "word": " three", + "start": 2512.58, + "end": 2512.72, + "probability": 0.9990234375 + }, + { + "word": " hours.", + "start": 2512.72, + "end": 2513.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1179, + "text": "I will sit out there and answer questions", + "start": 2513.16, + "end": 2515.9, + "words": [ + { + "word": " I", + "start": 2513.16, + "end": 2513.3, + "probability": 0.998046875 + }, + { + "word": " will", + "start": 2513.3, + "end": 2513.4, + "probability": 0.99658203125 + }, + { + "word": " sit", + "start": 2513.4, + "end": 2513.58, + "probability": 0.998046875 + }, + { + "word": " out", + "start": 2513.58, + "end": 2513.68, + "probability": 0.9970703125 + }, + { + "word": " there", + "start": 2513.68, + "end": 2513.86, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2513.86, + "end": 2514.18, + "probability": 0.9921875 + }, + { + "word": " answer", + "start": 2514.18, + "end": 2515.08, + "probability": 0.94140625 + }, + { + "word": " questions", + "start": 2515.08, + "end": 2515.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1180, + "text": "about how to keep yourself safe online,", + "start": 2515.9, + "end": 2517.6, + "words": [ + { + "word": " about", + "start": 2515.9, + "end": 2516.28, + "probability": 0.9970703125 + }, + { + "word": " how", + "start": 2516.28, + "end": 2516.48, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 2516.48, + "end": 2516.56, + "probability": 0.998046875 + }, + { + "word": " keep", + "start": 2516.56, + "end": 2516.74, + "probability": 0.998046875 + }, + { + "word": " yourself", + "start": 2516.74, + "end": 2517.02, + "probability": 0.99853515625 + }, + { + "word": " safe", + "start": 2517.02, + "end": 2517.28, + "probability": 0.9990234375 + }, + { + "word": " online,", + "start": 2517.28, + "end": 2517.6, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1181, + "text": "how to make sure that you are not putting yourself", + "start": 2517.78, + "end": 2519.52, + "words": [ + { + "word": " how", + "start": 2517.78, + "end": 2517.88, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2517.88, + "end": 2518.0, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 2518.0, + "end": 2518.16, + "probability": 0.99951171875 + }, + { + "word": " sure", + "start": 2518.16, + "end": 2518.34, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2518.34, + "end": 2518.5, + "probability": 0.9892578125 + }, + { + "word": " you", + "start": 2518.5, + "end": 2518.64, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 2518.64, + "end": 2518.84, + "probability": 0.99755859375 + }, + { + "word": " not", + "start": 2518.84, + "end": 2519.06, + "probability": 0.9990234375 + }, + { + "word": " putting", + "start": 2519.06, + "end": 2519.26, + "probability": 0.99951171875 + }, + { + "word": " yourself", + "start": 2519.26, + "end": 2519.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1182, + "text": "at additional risk,", + "start": 2519.52, + "end": 2520.44, + "words": [ + { + "word": " at", + "start": 2519.52, + "end": 2519.74, + "probability": 0.9990234375 + }, + { + "word": " additional", + "start": 2519.74, + "end": 2520.0, + "probability": 0.994140625 + }, + { + "word": " risk,", + "start": 2520.0, + "end": 2520.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1183, + "text": "and answering just various technology questions", + "start": 2520.58, + "end": 2523.1, + "words": [ + { + "word": " and", + "start": 2520.58, + "end": 2521.08, + "probability": 0.99951171875 + }, + { + "word": " answering", + "start": 2521.08, + "end": 2521.68, + "probability": 0.9951171875 + }, + { + "word": " just", + "start": 2521.68, + "end": 2521.84, + "probability": 0.9912109375 + }, + { + "word": " various", + "start": 2521.84, + "end": 2522.14, + "probability": 0.99951171875 + }, + { + "word": " technology", + "start": 2522.14, + "end": 2522.56, + "probability": 0.9990234375 + }, + { + "word": " questions", + "start": 2522.56, + "end": 2523.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1184, + "text": "in the process,", + "start": 2523.1, + "end": 2524.14, + "words": [ + { + "word": " in", + "start": 2523.1, + "end": 2523.74, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 2523.74, + "end": 2523.82, + "probability": 1.0 + }, + { + "word": " process,", + "start": 2523.82, + "end": 2524.14, + "probability": 1.0 + } + ] + }, + { + "id": 1185, + "text": "making sure that we keep you educated.", + "start": 2524.14, + "end": 2527.06, + "words": [ + { + "word": " making", + "start": 2524.14, + "end": 2524.4, + "probability": 0.49072265625 + }, + { + "word": " sure", + "start": 2524.4, + "end": 2525.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 2525.2, + "end": 2525.5, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2525.5, + "end": 2525.66, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2525.66, + "end": 2526.4, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2526.4, + "end": 2526.62, + "probability": 1.0 + }, + { + "word": " educated.", + "start": 2526.62, + "end": 2527.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1186, + "text": "Because a little bit of education can go a long way", + "start": 2527.28, + "end": 2530.12, + "words": [ + { + "word": " Because", + "start": 2527.28, + "end": 2527.68, + "probability": 0.9267578125 + }, + { + "word": " a", + "start": 2527.68, + "end": 2528.32, + "probability": 0.998046875 + }, + { + "word": " little", + "start": 2528.32, + "end": 2528.48, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2528.48, + "end": 2528.62, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2528.62, + "end": 2528.64, + "probability": 0.9990234375 + }, + { + "word": " education", + "start": 2528.64, + "end": 2528.98, + "probability": 1.0 + }, + { + "word": " can", + "start": 2528.98, + "end": 2529.3, + "probability": 0.76025390625 + }, + { + "word": " go", + "start": 2529.3, + "end": 2529.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 2529.5, + "end": 2529.6, + "probability": 1.0 + }, + { + "word": " long", + "start": 2529.6, + "end": 2529.88, + "probability": 1.0 + }, + { + "word": " way", + "start": 2529.88, + "end": 2530.12, + "probability": 0.81494140625 + } + ] + }, + { + "id": 1187, + "text": "towards saving you, what, $54,000 like that later?", + "start": 2530.12, + "end": 2532.88, + "words": [ + { + "word": " towards", + "start": 2530.12, + "end": 2530.3, + "probability": 0.484130859375 + }, + { + "word": " saving", + "start": 2530.3, + "end": 2530.62, + "probability": 0.99951171875 + }, + { + "word": " you,", + "start": 2530.62, + "end": 2530.86, + "probability": 1.0 + }, + { + "word": " what,", + "start": 2530.9, + "end": 2531.26, + "probability": 0.99853515625 + }, + { + "word": " $54", + "start": 2531.3, + "end": 2531.68, + "probability": 0.9990234375 + }, + { + "word": ",000", + "start": 2531.68, + "end": 2532.18, + "probability": 1.0 + }, + { + "word": " like", + "start": 2532.18, + "end": 2532.54, + "probability": 0.74072265625 + }, + { + "word": " that", + "start": 2532.54, + "end": 2532.7, + "probability": 1.0 + }, + { + "word": " later?", + "start": 2532.7, + "end": 2532.88, + "probability": 0.81201171875 + } + ] + }, + { + "id": 1188, + "text": "Oh, 54, 50, yeah.", + "start": 2532.94, + "end": 2534.3, + "words": [ + { + "word": " Oh,", + "start": 2532.94, + "end": 2533.18, + "probability": 0.98388671875 + }, + { + "word": " 54,", + "start": 2533.18, + "end": 2533.56, + "probability": 0.340087890625 + }, + { + "word": " 50,", + "start": 2533.58, + "end": 2534.0, + "probability": 0.94140625 + }, + { + "word": " yeah.", + "start": 2534.14, + "end": 2534.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1189, + "text": "So if you, I mean, if you've got 50 grand,", + "start": 2534.62, + "end": 2538.26, + "words": [ + { + "word": " So", + "start": 2534.62, + "end": 2535.06, + "probability": 0.95556640625 + }, + { + "word": " if", + "start": 2535.06, + "end": 2535.86, + "probability": 0.5322265625 + }, + { + "word": " you,", + "start": 2535.86, + "end": 2536.24, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2536.26, + "end": 2536.78, + "probability": 0.97900390625 + }, + { + "word": " mean,", + "start": 2536.78, + "end": 2537.22, + "probability": 1.0 + }, + { + "word": " if", + "start": 2537.24, + "end": 2537.36, + "probability": 1.0 + }, + { + "word": " you've", + "start": 2537.36, + "end": 2537.5, + "probability": 1.0 + }, + { + "word": " got", + "start": 2537.5, + "end": 2537.7, + "probability": 1.0 + }, + { + "word": " 50", + "start": 2537.7, + "end": 2538.04, + "probability": 0.9755859375 + }, + { + "word": " grand,", + "start": 2538.04, + "end": 2538.26, + "probability": 1.0 + } + ] + }, + { + "id": 1190, + "text": "you just want to throw away on scammers, that's fine.", + "start": 2538.32, + "end": 2540.46, + "words": [ + { + "word": " you", + "start": 2538.32, + "end": 2538.44, + "probability": 0.9697265625 + }, + { + "word": " just", + "start": 2538.44, + "end": 2538.56, + "probability": 1.0 + }, + { + "word": " want", + "start": 2538.56, + "end": 2538.74, + "probability": 0.97802734375 + }, + { + "word": " to", + "start": 2538.74, + "end": 2538.84, + "probability": 1.0 + }, + { + "word": " throw", + "start": 2538.84, + "end": 2538.98, + "probability": 1.0 + }, + { + "word": " away", + "start": 2538.98, + "end": 2539.22, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 2539.22, + "end": 2539.56, + "probability": 0.99560546875 + }, + { + "word": " scammers,", + "start": 2539.56, + "end": 2539.96, + "probability": 0.9990234375 + }, + { + "word": " that's", + "start": 2540.06, + "end": 2540.3, + "probability": 1.0 + }, + { + "word": " fine.", + "start": 2540.3, + "end": 2540.46, + "probability": 1.0 + } + ] + }, + { + "id": 1191, + "text": "But I would say there's probably better uses for that money.", + "start": 2540.62, + "end": 2543.94, + "words": [ + { + "word": " But", + "start": 2540.62, + "end": 2540.82, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2540.82, + "end": 2541.06, + "probability": 1.0 + }, + { + "word": " would", + "start": 2541.06, + "end": 2541.3, + "probability": 1.0 + }, + { + "word": " say", + "start": 2541.3, + "end": 2541.54, + "probability": 1.0 + }, + { + "word": " there's", + "start": 2541.54, + "end": 2542.4, + "probability": 0.998046875 + }, + { + "word": " probably", + "start": 2542.4, + "end": 2542.56, + "probability": 1.0 + }, + { + "word": " better", + "start": 2542.56, + "end": 2542.82, + "probability": 1.0 + }, + { + "word": " uses", + "start": 2542.82, + "end": 2543.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 2543.18, + "end": 2543.48, + "probability": 1.0 + }, + { + "word": " that", + "start": 2543.48, + "end": 2543.66, + "probability": 1.0 + }, + { + "word": " money.", + "start": 2543.66, + "end": 2543.94, + "probability": 1.0 + } + ] + }, + { + "id": 1192, + "text": "And you don't want to get yourself into trouble", + "start": 2545.92, + "end": 2547.94, + "words": [ + { + "word": " And", + "start": 2545.92, + "end": 2546.36, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 2546.36, + "end": 2546.8, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 2546.8, + "end": 2547.06, + "probability": 0.9990234375 + }, + { + "word": " want", + "start": 2547.06, + "end": 2547.14, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 2547.14, + "end": 2547.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 2547.18, + "end": 2547.28, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 2547.28, + "end": 2547.5, + "probability": 1.0 + }, + { + "word": " into", + "start": 2547.5, + "end": 2547.72, + "probability": 0.9990234375 + }, + { + "word": " trouble", + "start": 2547.72, + "end": 2547.94, + "probability": 1.0 + } + ] + }, + { + "id": 1193, + "text": "with that type of stuff.", + "start": 2547.94, + "end": 2548.72, + "words": [ + { + "word": " with", + "start": 2547.94, + "end": 2548.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 2548.12, + "end": 2548.24, + "probability": 1.0 + }, + { + "word": " type", + "start": 2548.24, + "end": 2548.4, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2548.4, + "end": 2548.56, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2548.56, + "end": 2548.72, + "probability": 1.0 + } + ] + }, + { + "id": 1194, + "text": "So just keep yourself safe online, people.", + "start": 2548.84, + "end": 2550.68, + "words": [ + { + "word": " So", + "start": 2548.84, + "end": 2548.92, + "probability": 0.99462890625 + }, + { + "word": " just", + "start": 2548.92, + "end": 2549.1, + "probability": 1.0 + }, + { + "word": " keep", + "start": 2549.1, + "end": 2549.56, + "probability": 1.0 + }, + { + "word": " yourself", + "start": 2549.56, + "end": 2549.8, + "probability": 1.0 + }, + { + "word": " safe", + "start": 2549.8, + "end": 2550.06, + "probability": 1.0 + }, + { + "word": " online,", + "start": 2550.06, + "end": 2550.3, + "probability": 0.99951171875 + }, + { + "word": " people.", + "start": 2550.38, + "end": 2550.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1195, + "text": "And be very, very skeptical.", + "start": 2551.18, + "end": 2553.4, + "words": [ + { + "word": " And", + "start": 2551.18, + "end": 2551.62, + "probability": 0.9990234375 + }, + { + "word": " be", + "start": 2551.62, + "end": 2552.06, + "probability": 0.99951171875 + }, + { + "word": " very,", + "start": 2552.06, + "end": 2552.78, + "probability": 1.0 + }, + { + "word": " very", + "start": 2552.84, + "end": 2553.0, + "probability": 1.0 + }, + { + "word": " skeptical.", + "start": 2553.0, + "end": 2553.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1196, + "text": "Right?", + "start": 2554.66, + "end": 2555.02, + "words": [ + { + "word": " Right?", + "start": 2554.66, + "end": 2555.02, + "probability": 0.86474609375 + } + ] + }, + { + "id": 1197, + "text": "Right.", + "start": 2555.26, + "end": 2555.62, + "words": [ + { + "word": " Right.", + "start": 2555.26, + "end": 2555.62, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1198, + "text": "Right.", + "start": 2555.82, + "end": 2555.96, + "words": [ + { + "word": " Right.", + "start": 2555.82, + "end": 2555.96, + "probability": 0.416259765625 + } + ] + }, + { + "id": 1199, + "text": "Stay informed.", + "start": 2556.06, + "end": 2556.68, + "words": [ + { + "word": " Stay", + "start": 2556.06, + "end": 2556.42, + "probability": 0.99755859375 + }, + { + "word": " informed.", + "start": 2556.42, + "end": 2556.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1200, + "text": "Oh, you're still here, Tara?", + "start": 2557.02, + "end": 2557.66, + "words": [ + { + "word": " Oh,", + "start": 2557.02, + "end": 2557.12, + "probability": 0.9755859375 + }, + { + "word": " you're", + "start": 2557.14, + "end": 2557.22, + "probability": 1.0 + }, + { + "word": " still", + "start": 2557.22, + "end": 2557.32, + "probability": 1.0 + }, + { + "word": " here,", + "start": 2557.32, + "end": 2557.46, + "probability": 0.9482421875 + }, + { + "word": " Tara?", + "start": 2557.48, + "end": 2557.66, + "probability": 0.83544921875 + } + ] + }, + { + "id": 1201, + "text": "Yeah.", + "start": 2557.76, + "end": 2558.02, + "words": [ + { + "word": " Yeah.", + "start": 2557.76, + "end": 2558.02, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1202, + "text": "Oh, okay.", + "start": 2558.14, + "end": 2558.52, + "words": [ + { + "word": " Oh,", + "start": 2558.14, + "end": 2558.34, + "probability": 0.98974609375 + }, + { + "word": " okay.", + "start": 2558.34, + "end": 2558.52, + "probability": 0.97802734375 + } + ] + }, + { + "id": 1203, + "text": "Just making sure.", + "start": 2558.58, + "end": 2559.18, + "words": [ + { + "word": " Just", + "start": 2558.58, + "end": 2558.76, + "probability": 0.99951171875 + }, + { + "word": " making", + "start": 2558.76, + "end": 2558.98, + "probability": 0.99951171875 + }, + { + "word": " sure.", + "start": 2558.98, + "end": 2559.18, + "probability": 1.0 + } + ] + }, + { + "id": 1204, + "text": "Just chilling.", + "start": 2559.3, + "end": 2559.8, + "words": [ + { + "word": " Just", + "start": 2559.3, + "end": 2559.44, + "probability": 0.998046875 + }, + { + "word": " chilling.", + "start": 2559.44, + "end": 2559.8, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1205, + "text": "I'm listening to the conversation.", + "start": 2560.04, + "end": 2561.32, + "words": [ + { + "word": " I'm", + "start": 2560.04, + "end": 2560.4, + "probability": 0.50439453125 + }, + { + "word": " listening", + "start": 2560.4, + "end": 2560.62, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2560.62, + "end": 2560.86, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2560.86, + "end": 2560.96, + "probability": 0.99609375 + }, + { + "word": " conversation.", + "start": 2560.96, + "end": 2561.32, + "probability": 1.0 + } + ] + }, + { + "id": 1206, + "text": "And once again, thanks to Jay for coming in.", + "start": 2561.62, + "end": 2563.44, + "words": [ + { + "word": " And", + "start": 2561.62, + "end": 2561.88, + "probability": 0.97998046875 + }, + { + "word": " once", + "start": 2561.88, + "end": 2562.14, + "probability": 0.9580078125 + }, + { + "word": " again,", + "start": 2562.14, + "end": 2562.32, + "probability": 1.0 + }, + { + "word": " thanks", + "start": 2562.38, + "end": 2562.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 2562.62, + "end": 2562.76, + "probability": 0.99853515625 + }, + { + "word": " Jay", + "start": 2562.76, + "end": 2562.9, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 2562.9, + "end": 2563.02, + "probability": 1.0 + }, + { + "word": " coming", + "start": 2563.02, + "end": 2563.24, + "probability": 1.0 + }, + { + "word": " in.", + "start": 2563.24, + "end": 2563.44, + "probability": 1.0 + } + ] + }, + { + "id": 1207, + "text": "Is there a place that people can see your work", + "start": 2563.52, + "end": 2565.54, + "words": [ + { + "word": " Is", + "start": 2563.52, + "end": 2563.7, + "probability": 0.986328125 + }, + { + "word": " there", + "start": 2563.7, + "end": 2563.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 2563.88, + "end": 2564.08, + "probability": 0.857421875 + }, + { + "word": " place", + "start": 2564.08, + "end": 2564.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 2564.74, + "end": 2564.84, + "probability": 0.51220703125 + }, + { + "word": " people", + "start": 2564.84, + "end": 2565.0, + "probability": 1.0 + }, + { + "word": " can", + "start": 2565.0, + "end": 2565.14, + "probability": 1.0 + }, + { + "word": " see", + "start": 2565.14, + "end": 2565.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 2565.3, + "end": 2565.38, + "probability": 0.99951171875 + }, + { + "word": " work", + "start": 2565.38, + "end": 2565.54, + "probability": 1.0 + } + ] + }, + { + "id": 1208, + "text": "or anything like that?", + "start": 2565.54, + "end": 2566.16, + "words": [ + { + "word": " or", + "start": 2565.54, + "end": 2565.64, + "probability": 0.9990234375 + }, + { + "word": " anything", + "start": 2565.64, + "end": 2565.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 2565.78, + "end": 2566.0, + "probability": 1.0 + }, + { + "word": " that?", + "start": 2566.0, + "end": 2566.16, + "probability": 1.0 + } + ] + }, + { + "id": 1209, + "text": "Are you interested?", + "start": 2566.22, + "end": 2567.14, + "words": [ + { + "word": " Are", + "start": 2566.22, + "end": 2566.32, + "probability": 0.53662109375 + }, + { + "word": " you", + "start": 2566.32, + "end": 2566.48, + "probability": 1.0 + }, + { + "word": " interested?", + "start": 2566.48, + "end": 2567.14, + "probability": 0.994140625 + } + ] + }, + { + "id": 1210, + "text": "SoundCloud.", + "start": 2567.66, + "end": 2568.02, + "words": [ + { + "word": " SoundCloud.", + "start": 2567.66, + "end": 2568.02, + "probability": 0.998046875 + } + ] + }, + { + "id": 1211, + "text": "SoundCloud?", + "start": 2568.5, + "end": 2568.86, + "words": [ + { + "word": " SoundCloud?", + "start": 2568.5, + "end": 2568.86, + "probability": 1.0 + } + ] + }, + { + "id": 1212, + "text": "SoundCloud.", + "start": 2569.04, + "end": 2569.4, + "words": [ + { + "word": " SoundCloud.", + "start": 2569.04, + "end": 2569.4, + "probability": 0.998046875 + } + ] + }, + { + "id": 1213, + "text": "Go to your call radio, C-O-L-O-R-A-D-I-O, SoundCloud.", + "start": 2569.4, + "end": 2574.12, + "words": [ + { + "word": " Go", + "start": 2569.4, + "end": 2569.66, + "probability": 0.9658203125 + }, + { + "word": " to", + "start": 2569.66, + "end": 2569.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 2569.92, + "end": 2570.24, + "probability": 0.259521484375 + }, + { + "word": " call", + "start": 2570.24, + "end": 2570.58, + "probability": 0.415283203125 + }, + { + "word": " radio,", + "start": 2570.58, + "end": 2571.1, + "probability": 0.5419921875 + }, + { + "word": " C", + "start": 2571.42, + "end": 2572.06, + "probability": 0.99365234375 + }, + { + "word": "-O", + "start": 2572.06, + "end": 2572.28, + "probability": 0.9990234375 + }, + { + "word": "-L", + "start": 2572.28, + "end": 2572.4, + "probability": 1.0 + }, + { + "word": "-O", + "start": 2572.4, + "end": 2572.52, + "probability": 0.89453125 + }, + { + "word": "-R", + "start": 2572.52, + "end": 2572.74, + "probability": 1.0 + }, + { + "word": "-A", + "start": 2572.74, + "end": 2572.96, + "probability": 0.9970703125 + }, + { + "word": "-D", + "start": 2572.96, + "end": 2573.06, + "probability": 0.9990234375 + }, + { + "word": "-I", + "start": 2573.06, + "end": 2573.24, + "probability": 0.998046875 + }, + { + "word": "-O,", + "start": 2573.24, + "end": 2573.34, + "probability": 0.998046875 + }, + { + "word": " SoundCloud.", + "start": 2573.54, + "end": 2574.12, + "probability": 1.0 + } + ] + }, + { + "id": 1214, + "text": "Also on anchor.fm.", + "start": 2574.8599999999997, + "end": 2577.16, + "words": [ + { + "word": " Also", + "start": 2574.8599999999997, + "end": 2575.22, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 2575.22, + "end": 2575.58, + "probability": 0.98681640625 + }, + { + "word": " anchor", + "start": 2575.58, + "end": 2576.1, + "probability": 0.77392578125 + }, + { + "word": ".fm.", + "start": 2576.1, + "end": 2577.16, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1215, + "text": "Right on.", + "start": 2577.56, + "end": 2578.14, + "words": [ + { + "word": " Right", + "start": 2577.56, + "end": 2577.92, + "probability": 0.9990234375 + }, + { + "word": " on.", + "start": 2577.92, + "end": 2578.14, + "probability": 1.0 + } + ] + }, + { + "id": 1216, + "text": "All right.", + "start": 2578.3, + "end": 2578.8, + "words": [ + { + "word": " All", + "start": 2578.3, + "end": 2578.64, + "probability": 0.994140625 + }, + { + "word": " right.", + "start": 2578.64, + "end": 2578.8, + "probability": 1.0 + } + ] + }, + { + "id": 1217, + "text": "So if you want any more information,", + "start": 2579.24, + "end": 2580.72, + "words": [ + { + "word": " So", + "start": 2579.24, + "end": 2579.6, + "probability": 0.99169921875 + }, + { + "word": " if", + "start": 2579.6, + "end": 2579.82, + "probability": 0.91845703125 + }, + { + "word": " you", + "start": 2579.82, + "end": 2579.92, + "probability": 1.0 + }, + { + "word": " want", + "start": 2579.92, + "end": 2580.1, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 2580.1, + "end": 2580.22, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 2580.22, + "end": 2580.4, + "probability": 1.0 + }, + { + "word": " information,", + "start": 2580.4, + "end": 2580.72, + "probability": 1.0 + } + ] + }, + { + "id": 1218, + "text": "I'll get your links from your card", + "start": 2580.86, + "end": 2582.88, + "words": [ + { + "word": " I'll", + "start": 2580.86, + "end": 2581.0, + "probability": 0.9541015625 + }, + { + "word": " get", + "start": 2581.0, + "end": 2581.32, + "probability": 1.0 + }, + { + "word": " your", + "start": 2581.32, + "end": 2581.48, + "probability": 0.96435546875 + }, + { + "word": " links", + "start": 2581.48, + "end": 2582.38, + "probability": 0.9990234375 + }, + { + "word": " from", + "start": 2582.38, + "end": 2582.54, + "probability": 1.0 + }, + { + "word": " your", + "start": 2582.54, + "end": 2582.68, + "probability": 1.0 + }, + { + "word": " card", + "start": 2582.68, + "end": 2582.88, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1219, + "text": "and put them on the podcast.", + "start": 2582.88, + "end": 2584.12, + "words": [ + { + "word": " and", + "start": 2582.88, + "end": 2583.0, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 2583.0, + "end": 2583.1, + "probability": 1.0 + }, + { + "word": " them", + "start": 2583.1, + "end": 2583.18, + "probability": 1.0 + }, + { + "word": " on", + "start": 2583.18, + "end": 2583.3, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2583.3, + "end": 2583.44, + "probability": 0.99853515625 + }, + { + "word": " podcast.", + "start": 2583.44, + "end": 2584.12, + "probability": 0.92822265625 + } + ] + }, + { + "id": 1220, + "text": "I'll get your podcast notes.", + "start": 2584.14, + "end": 2584.5, + "words": [ + { + "word": " I'll", + "start": 2584.14, + "end": 2584.28, + "probability": 0.1688232421875 + }, + { + "word": " get", + "start": 2584.28, + "end": 2584.28, + "probability": 0.01003265380859375 + }, + { + "word": " your", + "start": 2584.28, + "end": 2584.28, + "probability": 0.02227783203125 + }, + { + "word": " podcast", + "start": 2584.28, + "end": 2584.28, + "probability": 0.279296875 + }, + { + "word": " notes.", + "start": 2584.28, + "end": 2584.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1221, + "text": "So if people want to check you out,", + "start": 2584.72, + "end": 2587.32, + "words": [ + { + "word": " So", + "start": 2584.72, + "end": 2584.96, + "probability": 0.54931640625 + }, + { + "word": " if", + "start": 2584.96, + "end": 2585.26, + "probability": 0.841796875 + }, + { + "word": " people", + "start": 2585.26, + "end": 2585.42, + "probability": 0.99560546875 + }, + { + "word": " want", + "start": 2585.42, + "end": 2585.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 2585.66, + "end": 2586.0, + "probability": 1.0 + }, + { + "word": " check", + "start": 2586.0, + "end": 2587.0, + "probability": 0.9931640625 + }, + { + "word": " you", + "start": 2587.0, + "end": 2587.18, + "probability": 1.0 + }, + { + "word": " out,", + "start": 2587.18, + "end": 2587.32, + "probability": 1.0 + } + ] + }, + { + "id": 1222, + "text": "they definitely can.", + "start": 2587.36, + "end": 2588.18, + "words": [ + { + "word": " they", + "start": 2587.36, + "end": 2587.5, + "probability": 0.99951171875 + }, + { + "word": " definitely", + "start": 2587.5, + "end": 2587.76, + "probability": 1.0 + }, + { + "word": " can.", + "start": 2587.76, + "end": 2588.18, + "probability": 1.0 + } + ] + }, + { + "id": 1223, + "text": "Thanks again for listening to the first hour", + "start": 2588.7, + "end": 2590.12, + "words": [ + { + "word": " Thanks", + "start": 2588.7, + "end": 2589.06, + "probability": 0.9990234375 + }, + { + "word": " again", + "start": 2589.06, + "end": 2589.22, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 2589.22, + "end": 2589.36, + "probability": 0.99951171875 + }, + { + "word": " listening", + "start": 2589.36, + "end": 2589.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 2589.56, + "end": 2589.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 2589.7, + "end": 2589.74, + "probability": 0.98193359375 + }, + { + "word": " first", + "start": 2589.74, + "end": 2589.94, + "probability": 0.84130859375 + }, + { + "word": " hour", + "start": 2589.94, + "end": 2590.12, + "probability": 1.0 + } + ] + }, + { + "id": 1224, + "text": "of the Computer Guru Show.", + "start": 2590.12, + "end": 2591.04, + "words": [ + { + "word": " of", + "start": 2590.12, + "end": 2590.24, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 2590.24, + "end": 2590.28, + "probability": 0.80029296875 + }, + { + "word": " Computer", + "start": 2590.28, + "end": 2590.52, + "probability": 0.97021484375 + }, + { + "word": " Guru", + "start": 2590.52, + "end": 2590.8, + "probability": 0.99462890625 + }, + { + "word": " Show.", + "start": 2590.8, + "end": 2591.04, + "probability": 0.8837890625 + } + ] + }, + { + "id": 1225, + "text": "Let's go ahead and talk about", + "start": 2591.18, + "end": 2592.98, + "words": [ + { + "word": " Let's", + "start": 2591.18, + "end": 2591.5, + "probability": 1.0 + }, + { + "word": " go", + "start": 2591.5, + "end": 2591.6, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 2591.6, + "end": 2591.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 2591.74, + "end": 2592.14, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2592.14, + "end": 2592.62, + "probability": 1.0 + }, + { + "word": " about", + "start": 2592.62, + "end": 2592.98, + "probability": 1.0 + } + ] + }, + { + "id": 1226, + "text": "the ultimate sponsor for the show,", + "start": 2593.8199999999997, + "end": 2595.42, + "words": [ + { + "word": " the", + "start": 2593.8199999999997, + "end": 2594.18, + "probability": 0.99951171875 + }, + { + "word": " ultimate", + "start": 2594.18, + "end": 2594.54, + "probability": 1.0 + }, + { + "word": " sponsor", + "start": 2594.54, + "end": 2594.84, + "probability": 1.0 + }, + { + "word": " for", + "start": 2594.84, + "end": 2595.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2595.14, + "end": 2595.22, + "probability": 0.97021484375 + }, + { + "word": " show,", + "start": 2595.22, + "end": 2595.42, + "probability": 1.0 + } + ] + }, + { + "id": 1227, + "text": "which is Arizona Computer Guru.", + "start": 2595.48, + "end": 2596.96, + "words": [ + { + "word": " which", + "start": 2595.48, + "end": 2595.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 2595.62, + "end": 2595.84, + "probability": 1.0 + }, + { + "word": " Arizona", + "start": 2595.84, + "end": 2596.36, + "probability": 1.0 + }, + { + "word": " Computer", + "start": 2596.36, + "end": 2596.66, + "probability": 1.0 + }, + { + "word": " Guru.", + "start": 2596.66, + "end": 2596.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1228, + "text": "You can come see us down at 510 East Fort Wool", + "start": 2597.32, + "end": 2599.42, + "words": [ + { + "word": " You", + "start": 2597.32, + "end": 2597.68, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2597.68, + "end": 2597.78, + "probability": 1.0 + }, + { + "word": " come", + "start": 2597.78, + "end": 2597.94, + "probability": 1.0 + }, + { + "word": " see", + "start": 2597.94, + "end": 2598.1, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 2598.1, + "end": 2598.24, + "probability": 1.0 + }, + { + "word": " down", + "start": 2598.24, + "end": 2598.38, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2598.38, + "end": 2598.52, + "probability": 1.0 + }, + { + "word": " 510", + "start": 2598.52, + "end": 2598.82, + "probability": 0.99951171875 + }, + { + "word": " East", + "start": 2598.82, + "end": 2599.04, + "probability": 1.0 + }, + { + "word": " Fort", + "start": 2599.04, + "end": 2599.28, + "probability": 0.9853515625 + }, + { + "word": " Wool", + "start": 2599.28, + "end": 2599.42, + "probability": 0.2125244140625 + } + ] + }, + { + "id": 1229, + "text": "or 64 North Harrison,", + "start": 2599.42, + "end": 2600.64, + "words": [ + { + "word": " or", + "start": 2599.42, + "end": 2599.64, + "probability": 0.98095703125 + }, + { + "word": " 64", + "start": 2599.64, + "end": 2600.02, + "probability": 0.9990234375 + }, + { + "word": " North", + "start": 2600.02, + "end": 2600.3, + "probability": 1.0 + }, + { + "word": " Harrison,", + "start": 2600.3, + "end": 2600.64, + "probability": 1.0 + } + ] + }, + { + "id": 1230, + "text": "or give us a call at 520-304-8300,", + "start": 2600.76, + "end": 2603.2, + "words": [ + { + "word": " or", + "start": 2600.76, + "end": 2600.9, + "probability": 1.0 + }, + { + "word": " give", + "start": 2600.9, + "end": 2600.98, + "probability": 0.9990234375 + }, + { + "word": " us", + "start": 2600.98, + "end": 2601.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 2601.12, + "end": 2601.14, + "probability": 1.0 + }, + { + "word": " call", + "start": 2601.14, + "end": 2601.28, + "probability": 1.0 + }, + { + "word": " at", + "start": 2601.28, + "end": 2601.4, + "probability": 1.0 + }, + { + "word": " 520", + "start": 2601.4, + "end": 2601.78, + "probability": 0.98486328125 + }, + { + "word": "-304", + "start": 2601.78, + "end": 2602.68, + "probability": 0.99951171875 + }, + { + "word": "-8300,", + "start": 2602.68, + "end": 2603.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1231, + "text": "or visit the website azcomputerguru.com", + "start": 2603.44, + "end": 2606.26, + "words": [ + { + "word": " or", + "start": 2603.44, + "end": 2603.58, + "probability": 1.0 + }, + { + "word": " visit", + "start": 2603.58, + "end": 2603.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 2603.7, + "end": 2603.88, + "probability": 0.99951171875 + }, + { + "word": " website", + "start": 2603.88, + "end": 2604.14, + "probability": 0.9990234375 + }, + { + "word": " azcomputerguru", + "start": 2604.14, + "end": 2605.72, + "probability": 0.97607421875 + }, + { + "word": ".com", + "start": 2605.72, + "end": 2606.26, + "probability": 1.0 + } + ] + }, + { + "id": 1232, + "text": "if you have any problems with your technology", + "start": 2606.26, + "end": 2608.56, + "words": [ + { + "word": " if", + "start": 2606.26, + "end": 2606.54, + "probability": 0.3662109375 + }, + { + "word": " you", + "start": 2606.54, + "end": 2606.66, + "probability": 1.0 + }, + { + "word": " have", + "start": 2606.66, + "end": 2606.8, + "probability": 1.0 + }, + { + "word": " any", + "start": 2606.8, + "end": 2606.98, + "probability": 1.0 + }, + { + "word": " problems", + "start": 2606.98, + "end": 2607.78, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2607.78, + "end": 2607.96, + "probability": 1.0 + }, + { + "word": " your", + "start": 2607.96, + "end": 2608.12, + "probability": 1.0 + }, + { + "word": " technology", + "start": 2608.12, + "end": 2608.56, + "probability": 1.0 + } + ] + }, + { + "id": 1233, + "text": "in any form,", + "start": 2608.56, + "end": 2610.0, + "words": [ + { + "word": " in", + "start": 2608.56, + "end": 2609.14, + "probability": 0.998046875 + }, + { + "word": " any", + "start": 2609.14, + "end": 2609.76, + "probability": 1.0 + }, + { + "word": " form,", + "start": 2609.76, + "end": 2610.0, + "probability": 1.0 + } + ] + }, + { + "id": 1234, + "text": "whether or not it be your residential", + "start": 2610.06, + "end": 2611.08, + "words": [ + { + "word": " whether", + "start": 2610.06, + "end": 2610.22, + "probability": 1.0 + }, + { + "word": " or", + "start": 2610.22, + "end": 2610.36, + "probability": 0.62060546875 + }, + { + "word": " not", + "start": 2610.36, + "end": 2610.46, + "probability": 1.0 + }, + { + "word": " it", + "start": 2610.46, + "end": 2610.52, + "probability": 0.8623046875 + }, + { + "word": " be", + "start": 2610.52, + "end": 2610.6, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 2610.6, + "end": 2610.74, + "probability": 0.875 + }, + { + "word": " residential", + "start": 2610.74, + "end": 2611.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1235, + "text": "or for your business.", + "start": 2611.08, + "end": 2612.26, + "words": [ + { + "word": " or", + "start": 2611.08, + "end": 2611.52, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 2611.52, + "end": 2611.76, + "probability": 1.0 + }, + { + "word": " your", + "start": 2611.76, + "end": 2611.92, + "probability": 1.0 + }, + { + "word": " business.", + "start": 2611.92, + "end": 2612.26, + "probability": 1.0 + } + ] + }, + { + "id": 1236, + "text": "You need a new website?", + "start": 2612.38, + "end": 2613.32, + "words": [ + { + "word": " You", + "start": 2612.38, + "end": 2612.64, + "probability": 0.84912109375 + }, + { + "word": " need", + "start": 2612.64, + "end": 2612.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 2612.78, + "end": 2612.88, + "probability": 1.0 + }, + { + "word": " new", + "start": 2612.88, + "end": 2613.02, + "probability": 1.0 + }, + { + "word": " website?", + "start": 2613.02, + "end": 2613.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1237, + "text": "That's what we're here for.", + "start": 2613.4, + "end": 2614.12, + "words": [ + { + "word": " That's", + "start": 2613.4, + "end": 2613.72, + "probability": 0.9970703125 + }, + { + "word": " what", + "start": 2613.72, + "end": 2613.82, + "probability": 0.87451171875 + }, + { + "word": " we're", + "start": 2613.82, + "end": 2613.96, + "probability": 0.9990234375 + }, + { + "word": " here", + "start": 2613.96, + "end": 2614.06, + "probability": 0.99658203125 + }, + { + "word": " for.", + "start": 2614.06, + "end": 2614.12, + "probability": 0.9921875 + } + ] + }, + { + "id": 1238, + "text": "We do everything under the sun,", + "start": 2614.12, + "end": 2616.8, + "words": [ + { + "word": " We", + "start": 2614.12, + "end": 2614.4, + "probability": 0.01383209228515625 + }, + { + "word": " do", + "start": 2614.4, + "end": 2615.1, + "probability": 0.974609375 + }, + { + "word": " everything", + "start": 2615.1, + "end": 2615.68, + "probability": 0.998046875 + }, + { + "word": " under", + "start": 2615.68, + "end": 2616.24, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 2616.24, + "end": 2616.44, + "probability": 0.9990234375 + }, + { + "word": " sun,", + "start": 2616.44, + "end": 2616.8, + "probability": 0.998046875 + } + ] + }, + { + "id": 1239, + "text": "effectively,", + "start": 2616.94, + "end": 2617.48, + "words": [ + { + "word": " effectively,", + "start": 2616.94, + "end": 2617.48, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1240, + "text": "when it comes to computers,", + "start": 2617.56, + "end": 2618.52, + "words": [ + { + "word": " when", + "start": 2617.56, + "end": 2617.92, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2617.92, + "end": 2618.02, + "probability": 1.0 + }, + { + "word": " comes", + "start": 2618.02, + "end": 2618.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 2618.2, + "end": 2618.28, + "probability": 1.0 + }, + { + "word": " computers,", + "start": 2618.28, + "end": 2618.52, + "probability": 1.0 + } + ] + }, + { + "id": 1241, + "text": "except for development,", + "start": 2618.6, + "end": 2619.6, + "words": [ + { + "word": " except", + "start": 2618.6, + "end": 2618.8, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 2618.8, + "end": 2619.02, + "probability": 1.0 + }, + { + "word": " development,", + "start": 2619.02, + "end": 2619.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1242, + "text": "because nobody has time for that.", + "start": 2619.82, + "end": 2621.78, + "words": [ + { + "word": " because", + "start": 2619.82, + "end": 2620.18, + "probability": 1.0 + }, + { + "word": " nobody", + "start": 2620.18, + "end": 2621.04, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 2621.04, + "end": 2621.24, + "probability": 1.0 + }, + { + "word": " time", + "start": 2621.24, + "end": 2621.46, + "probability": 1.0 + }, + { + "word": " for", + "start": 2621.46, + "end": 2621.62, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2621.62, + "end": 2621.78, + "probability": 1.0 + } + ] + }, + { + "id": 1243, + "text": "Ain't nobody got time for that.", + "start": 2622.08, + "end": 2623.5, + "words": [ + { + "word": " Ain't", + "start": 2622.08, + "end": 2622.52, + "probability": 0.779296875 + }, + { + "word": " nobody", + "start": 2622.52, + "end": 2622.72, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2622.72, + "end": 2622.94, + "probability": 1.0 + }, + { + "word": " time", + "start": 2622.94, + "end": 2623.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 2623.22, + "end": 2623.4, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2623.4, + "end": 2623.5, + "probability": 1.0 + } + ] + }, + { + "id": 1244, + "text": "Nobody's got time for development.", + "start": 2623.58, + "end": 2624.7, + "words": [ + { + "word": " Nobody's", + "start": 2623.58, + "end": 2623.9, + "probability": 0.994140625 + }, + { + "word": " got", + "start": 2623.9, + "end": 2624.02, + "probability": 1.0 + }, + { + "word": " time", + "start": 2624.02, + "end": 2624.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 2624.24, + "end": 2624.38, + "probability": 1.0 + }, + { + "word": " development.", + "start": 2624.38, + "end": 2624.7, + "probability": 1.0 + } + ] + }, + { + "id": 1245, + "text": "To me, I see development", + "start": 2625.64, + "end": 2627.1, + "words": [ + { + "word": " To", + "start": 2625.64, + "end": 2626.08, + "probability": 0.92724609375 + }, + { + "word": " me,", + "start": 2626.08, + "end": 2626.48, + "probability": 1.0 + }, + { + "word": " I", + "start": 2626.52, + "end": 2626.62, + "probability": 1.0 + }, + { + "word": " see", + "start": 2626.62, + "end": 2626.78, + "probability": 1.0 + }, + { + "word": " development", + "start": 2626.78, + "end": 2627.1, + "probability": 1.0 + } + ] + }, + { + "id": 1246, + "text": "much like interior decorating.", + "start": 2627.1, + "end": 2628.28, + "words": [ + { + "word": " much", + "start": 2627.1, + "end": 2627.42, + "probability": 0.99853515625 + }, + { + "word": " like", + "start": 2627.42, + "end": 2627.58, + "probability": 1.0 + }, + { + "word": " interior", + "start": 2627.58, + "end": 2627.9, + "probability": 1.0 + }, + { + "word": " decorating.", + "start": 2627.9, + "end": 2628.28, + "probability": 1.0 + } + ] + }, + { + "id": 1247, + "text": "No, I will not move the curtains", + "start": 2628.7, + "end": 2630.08, + "words": [ + { + "word": " No,", + "start": 2628.7, + "end": 2629.1, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2629.14, + "end": 2629.24, + "probability": 1.0 + }, + { + "word": " will", + "start": 2629.24, + "end": 2629.4, + "probability": 1.0 + }, + { + "word": " not", + "start": 2629.4, + "end": 2629.58, + "probability": 1.0 + }, + { + "word": " move", + "start": 2629.58, + "end": 2629.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 2629.74, + "end": 2629.88, + "probability": 1.0 + }, + { + "word": " curtains", + "start": 2629.88, + "end": 2630.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1248, + "text": "three inches to the left.", + "start": 2630.08, + "end": 2631.12, + "words": [ + { + "word": " three", + "start": 2630.08, + "end": 2630.3, + "probability": 0.974609375 + }, + { + "word": " inches", + "start": 2630.3, + "end": 2630.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 2630.5, + "end": 2630.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2630.72, + "end": 2630.8, + "probability": 1.0 + }, + { + "word": " left.", + "start": 2630.8, + "end": 2631.12, + "probability": 1.0 + } + ] + }, + { + "id": 1249, + "text": "No, I will not.", + "start": 2631.24, + "end": 2632.06, + "words": [ + { + "word": " No,", + "start": 2631.24, + "end": 2631.68, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2631.7, + "end": 2631.76, + "probability": 1.0 + }, + { + "word": " will", + "start": 2631.76, + "end": 2631.88, + "probability": 1.0 + }, + { + "word": " not.", + "start": 2631.88, + "end": 2632.06, + "probability": 1.0 + } + ] + }, + { + "id": 1250, + "text": "So I'm just not going to do development.", + "start": 2632.38, + "end": 2634.4, + "words": [ + { + "word": " So", + "start": 2632.38, + "end": 2632.82, + "probability": 0.97216796875 + }, + { + "word": " I'm", + "start": 2632.82, + "end": 2633.08, + "probability": 0.9453125 + }, + { + "word": " just", + "start": 2633.08, + "end": 2633.2, + "probability": 1.0 + }, + { + "word": " not", + "start": 2633.2, + "end": 2633.5, + "probability": 1.0 + }, + { + "word": " going", + "start": 2633.5, + "end": 2633.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 2633.76, + "end": 2633.96, + "probability": 1.0 + }, + { + "word": " do", + "start": 2633.96, + "end": 2634.04, + "probability": 1.0 + }, + { + "word": " development.", + "start": 2634.04, + "end": 2634.4, + "probability": 1.0 + } + ] + }, + { + "id": 1251, + "text": "But everything else that you can think of,", + "start": 2635.64, + "end": 2638.0, + "words": [ + { + "word": " But", + "start": 2635.64, + "end": 2636.08, + "probability": 0.99853515625 + }, + { + "word": " everything", + "start": 2636.08, + "end": 2636.52, + "probability": 0.99951171875 + }, + { + "word": " else", + "start": 2636.52, + "end": 2637.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 2637.36, + "end": 2637.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 2637.48, + "end": 2637.52, + "probability": 1.0 + }, + { + "word": " can", + "start": 2637.52, + "end": 2637.64, + "probability": 1.0 + }, + { + "word": " think", + "start": 2637.64, + "end": 2637.8, + "probability": 1.0 + }, + { + "word": " of,", + "start": 2637.8, + "end": 2638.0, + "probability": 1.0 + } + ] + }, + { + "id": 1252, + "text": "it's very likely that I have someone", + "start": 2638.08, + "end": 2639.72, + "words": [ + { + "word": " it's", + "start": 2638.08, + "end": 2638.5, + "probability": 1.0 + }, + { + "word": " very", + "start": 2638.5, + "end": 2638.66, + "probability": 1.0 + }, + { + "word": " likely", + "start": 2638.66, + "end": 2639.0, + "probability": 1.0 + }, + { + "word": " that", + "start": 2639.0, + "end": 2639.22, + "probability": 1.0 + }, + { + "word": " I", + "start": 2639.22, + "end": 2639.34, + "probability": 1.0 + }, + { + "word": " have", + "start": 2639.34, + "end": 2639.48, + "probability": 1.0 + }, + { + "word": " someone", + "start": 2639.48, + "end": 2639.72, + "probability": 1.0 + } + ] + }, + { + "id": 1253, + "text": "that specializes in just that", + "start": 2639.72, + "end": 2641.14, + "words": [ + { + "word": " that", + "start": 2639.72, + "end": 2639.94, + "probability": 1.0 + }, + { + "word": " specializes", + "start": 2639.94, + "end": 2640.52, + "probability": 1.0 + }, + { + "word": " in", + "start": 2640.52, + "end": 2640.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 2640.7, + "end": 2640.92, + "probability": 1.0 + }, + { + "word": " that", + "start": 2640.92, + "end": 2641.14, + "probability": 1.0 + } + ] + }, + { + "id": 1254, + "text": "working for me over at Computer Guru.", + "start": 2641.14, + "end": 2642.48, + "words": [ + { + "word": " working", + "start": 2641.14, + "end": 2641.4, + "probability": 0.84521484375 + }, + { + "word": " for", + "start": 2641.4, + "end": 2641.66, + "probability": 1.0 + }, + { + "word": " me", + "start": 2641.66, + "end": 2641.78, + "probability": 1.0 + }, + { + "word": " over", + "start": 2641.78, + "end": 2641.92, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 2641.92, + "end": 2642.02, + "probability": 0.88671875 + }, + { + "word": " Computer", + "start": 2642.02, + "end": 2642.26, + "probability": 0.99169921875 + }, + { + "word": " Guru.", + "start": 2642.26, + "end": 2642.48, + "probability": 0.0794677734375 + } + ] + }, + { + "id": 1255, + "text": "Thanks again for listening", + "start": 2642.84, + "end": 2643.84, + "words": [ + { + "word": " Thanks", + "start": 2642.84, + "end": 2643.28, + "probability": 0.99560546875 + }, + { + "word": " again", + "start": 2643.28, + "end": 2643.46, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 2643.46, + "end": 2643.58, + "probability": 0.99951171875 + }, + { + "word": " listening", + "start": 2643.58, + "end": 2643.84, + "probability": 1.0 + } + ] + }, + { + "id": 1256, + "text": "to the first hour.", + "start": 2643.84, + "end": 2644.38, + "words": [ + { + "word": " to", + "start": 2643.84, + "end": 2643.88, + "probability": 0.1240234375 + }, + { + "word": " the", + "start": 2643.88, + "end": 2644.02, + "probability": 0.97705078125 + }, + { + "word": " first", + "start": 2644.02, + "end": 2644.2, + "probability": 0.84716796875 + }, + { + "word": " hour.", + "start": 2644.2, + "end": 2644.38, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1257, + "text": "Stick around for the second hour", + "start": 2644.44, + "end": 2645.28, + "words": [ + { + "word": " Stick", + "start": 2644.44, + "end": 2644.56, + "probability": 0.99267578125 + }, + { + "word": " around", + "start": 2644.56, + "end": 2644.74, + "probability": 1.0 + }, + { + "word": " for", + "start": 2644.74, + "end": 2644.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2644.88, + "end": 2644.96, + "probability": 1.0 + }, + { + "word": " second", + "start": 2644.96, + "end": 2645.14, + "probability": 0.99951171875 + }, + { + "word": " hour", + "start": 2645.14, + "end": 2645.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1258, + "text": "of the Computer Guru", + "start": 2645.28, + "end": 2645.8, + "words": [ + { + "word": " of", + "start": 2645.28, + "end": 2645.36, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 2645.36, + "end": 2645.36, + "probability": 0.537109375 + }, + { + "word": " Computer", + "start": 2645.36, + "end": 2645.58, + "probability": 0.94189453125 + }, + { + "word": " Guru", + "start": 2645.58, + "end": 2645.8, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1259, + "text": "coming up next right here on KVOI.", + "start": 2645.8, + "end": 2648.22, + "words": [ + { + "word": " coming", + "start": 2645.8, + "end": 2646.26, + "probability": 0.87744140625 + }, + { + "word": " up", + "start": 2646.26, + "end": 2646.56, + "probability": 0.9990234375 + }, + { + "word": " next", + "start": 2646.56, + "end": 2646.84, + "probability": 1.0 + }, + { + "word": " right", + "start": 2646.84, + "end": 2647.08, + "probability": 0.99462890625 + }, + { + "word": " here", + "start": 2647.08, + "end": 2647.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 2647.26, + "end": 2647.44, + "probability": 1.0 + }, + { + "word": " KVOI.", + "start": 2647.44, + "end": 2648.22, + "probability": 0.986328125 + } + ] + }, + { + "id": 1260, + "text": "And if you'd like to be part of the show,", + "start": 2648.4, + "end": 2649.76, + "words": [ + { + "word": " And", + "start": 2648.4, + "end": 2648.82, + "probability": 0.91650390625 + }, + { + "word": " if", + "start": 2648.82, + "end": 2648.98, + "probability": 0.9990234375 + }, + { + "word": " you'd", + "start": 2648.98, + "end": 2649.08, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 2649.08, + "end": 2649.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2649.16, + "end": 2649.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 2649.26, + "end": 2649.28, + "probability": 1.0 + }, + { + "word": " part", + "start": 2649.28, + "end": 2649.44, + "probability": 0.9873046875 + }, + { + "word": " of", + "start": 2649.44, + "end": 2649.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 2649.5, + "end": 2649.56, + "probability": 0.9990234375 + }, + { + "word": " show,", + "start": 2649.56, + "end": 2649.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1261, + "text": "give us a call, 790-2040.", + "start": 2650.38, + "end": 2652.04, + "words": [ + { + "word": " give", + "start": 2650.1800000000003, + "end": 2650.4, + "probability": 0.99853515625 + }, + { + "word": " us", + "start": 2650.4, + "end": 2650.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 2650.56, + "end": 2650.6, + "probability": 1.0 + }, + { + "word": " call,", + "start": 2650.6, + "end": 2650.72, + "probability": 1.0 + }, + { + "word": " 790", + "start": 2650.8, + "end": 2651.24, + "probability": 0.998046875 + }, + { + "word": "-2040.", + "start": 2651.24, + "end": 2652.04, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1262, + "text": "We'll be right back.", + "start": 2652.16, + "end": 2652.98, + "words": [ + { + "word": " We'll", + "start": 2652.16, + "end": 2652.5, + "probability": 1.0 + }, + { + "word": " be", + "start": 2652.5, + "end": 2652.58, + "probability": 1.0 + }, + { + "word": " right", + "start": 2652.58, + "end": 2652.72, + "probability": 1.0 + }, + { + "word": " back.", + "start": 2652.72, + "end": 2652.98, + "probability": 1.0 + } + ] + }, + { + "id": 1263, + "text": "I say a warning", + "start": 2654.9, + "end": 2656.94, + "words": [ + { + "word": " I", + "start": 2654.9, + "end": 2655.34, + "probability": 0.302978515625 + }, + { + "word": " say", + "start": 2655.34, + "end": 2655.7, + "probability": 0.5751953125 + }, + { + "word": " a", + "start": 2655.7, + "end": 2655.92, + "probability": 0.7978515625 + }, + { + "word": " warning", + "start": 2655.92, + "end": 2656.94, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1264, + "text": "Live without warning", + "start": 2657.8199999999997, + "end": 2659.68, + "words": [ + { + "word": " Live", + "start": 2657.8199999999997, + "end": 2658.2599999999998, + "probability": 0.0191650390625 + }, + { + "word": " without", + "start": 2658.2599999999998, + "end": 2658.7, + "probability": 0.994140625 + }, + { + "word": " warning", + "start": 2658.7, + "end": 2659.68, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1265, + "text": "I say a warning", + "start": 2662.74, + "end": 2664.64, + "words": [ + { + "word": " I", + "start": 2662.74, + "end": 2663.18, + "probability": 0.99609375 + }, + { + "word": " say", + "start": 2663.18, + "end": 2663.62, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2663.62, + "end": 2663.92, + "probability": 0.9990234375 + }, + { + "word": " warning", + "start": 2663.92, + "end": 2664.64, + "probability": 1.0 + } + ] + }, + { + "id": 1266, + "text": "Live without warning", + "start": 2665.52, + "end": 2667.1400000000003, + "words": [ + { + "word": " Live", + "start": 2665.52, + "end": 2665.96, + "probability": 0.9931640625 + }, + { + "word": " without", + "start": 2665.96, + "end": 2666.4, + "probability": 0.5390625 + }, + { + "word": " warning", + "start": 2666.4, + "end": 2667.1400000000003, + "probability": 0.27587890625 + } + ] + }, + { + "id": 1267, + "text": "From my heart and from my hand", + "start": 2668.96, + "end": 2671.0, + "words": [ + { + "word": " From", + "start": 2668.96, + "end": 2669.4, + "probability": 0.97607421875 + }, + { + "word": " my", + "start": 2669.4, + "end": 2669.72, + "probability": 0.99951171875 + }, + { + "word": " heart", + "start": 2669.72, + "end": 2670.04, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 2670.04, + "end": 2670.2, + "probability": 0.953125 + }, + { + "word": " from", + "start": 2670.2, + "end": 2670.4, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 2670.4, + "end": 2670.7, + "probability": 1.0 + }, + { + "word": " hand", + "start": 2670.7, + "end": 2671.0, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1268, + "text": "Why don't people understand", + "start": 2671.0, + "end": 2672.54, + "words": [ + { + "word": " Why", + "start": 2671.0, + "end": 2671.3, + "probability": 0.9189453125 + }, + { + "word": " don't", + "start": 2671.3, + "end": 2671.64, + "probability": 1.0 + }, + { + "word": " people", + "start": 2671.64, + "end": 2671.96, + "probability": 1.0 + }, + { + "word": " understand", + "start": 2671.96, + "end": 2672.54, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1269, + "text": "My intentions?", + "start": 2672.54, + "end": 2673.68, + "words": [ + { + "word": " My", + "start": 2672.54, + "end": 2673.2, + "probability": 0.4443359375 + }, + { + "word": " intentions?", + "start": 2673.2, + "end": 2673.68, + "probability": 0.755859375 + } + ] + }, + { + "id": 1270, + "text": "My intentions?", + "start": 2673.84, + "end": 2673.92, + "words": [ + { + "word": " My", + "start": 2673.84, + "end": 2673.92, + "probability": 0.0011663436889648438 + }, + { + "word": " intentions?", + "start": 2673.92, + "end": 2673.92, + "probability": 1.7881393432617188e-07 + } + ] + }, + { + "id": 1271, + "text": "Computer running slow?", + "start": 2674.26, + "end": 2675.52, + "words": [ + { + "word": " Computer", + "start": 2674.26, + "end": 2674.74, + "probability": 0.8798828125 + }, + { + "word": " running", + "start": 2674.74, + "end": 2675.14, + "probability": 0.99560546875 + }, + { + "word": " slow?", + "start": 2675.14, + "end": 2675.52, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1272, + "text": "Avoiding.", + "start": 2675.68, + "end": 2675.98, + "words": [ + { + "word": " Avoiding.", + "start": 2675.68, + "end": 2675.98, + "probability": 0.8583984375 + } + ] + }, + { + "id": 1273, + "text": "Caught a virus?", + "start": 2676.2, + "end": 2676.96, + "words": [ + { + "word": " Caught", + "start": 2676.2, + "end": 2676.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 2676.6, + "end": 2676.64, + "probability": 1.0 + }, + { + "word": " virus?", + "start": 2676.64, + "end": 2676.96, + "probability": 1.0 + } + ] + }, + { + "id": 1274, + "text": "What?", + "start": 2677.26, + "end": 2677.44, + "words": [ + { + "word": " What?", + "start": 2677.26, + "end": 2677.44, + "probability": 0.053955078125 + } + ] + }, + { + "id": 1275, + "text": "No!", + "start": 2677.52, + "end": 2677.98, + "words": [ + { + "word": " No!", + "start": 2677.52, + "end": 2677.98, + "probability": 0.361328125 + } + ] + }, + { + "id": 1276, + "text": "When?", + "start": 2678.42, + "end": 2678.76, + "words": [ + { + "word": " When?", + "start": 2678.42, + "end": 2678.76, + "probability": 0.409912109375 + } + ] + }, + { + "id": 1277, + "text": "Does your computer seem to have", + "start": 2679.02, + "end": 2681.38, + "words": [ + { + "word": " Does", + "start": 2679.02, + "end": 2679.5, + "probability": 0.7353515625 + }, + { + "word": " your", + "start": 2679.5, + "end": 2680.06, + "probability": 1.0 + }, + { + "word": " computer", + "start": 2680.06, + "end": 2680.54, + "probability": 1.0 + }, + { + "word": " seem", + "start": 2680.54, + "end": 2680.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 2680.96, + "end": 2681.14, + "probability": 1.0 + }, + { + "word": " have", + "start": 2681.14, + "end": 2681.38, + "probability": 1.0 + } + ] + }, + { + "id": 1278, + "text": "a life of its own?", + "start": 2681.38, + "end": 2682.44, + "words": [ + { + "word": " a", + "start": 2681.38, + "end": 2681.54, + "probability": 1.0 + }, + { + "word": " life", + "start": 2681.54, + "end": 2681.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 2681.86, + "end": 2682.04, + "probability": 1.0 + }, + { + "word": " its", + "start": 2682.04, + "end": 2682.2, + "probability": 0.99951171875 + }, + { + "word": " own?", + "start": 2682.2, + "end": 2682.44, + "probability": 1.0 + } + ] + }, + { + "id": 1279, + "text": "Malfunction.", + "start": 2682.9, + "end": 2683.38, + "words": [ + { + "word": " Malfunction.", + "start": 2682.9, + "end": 2683.38, + "probability": 0.90576171875 + } + ] + }, + { + "id": 1280, + "text": "Need input.", + "start": 2683.98, + "end": 2684.94, + "words": [ + { + "word": " Need", + "start": 2683.98, + "end": 2684.46, + "probability": 0.97314453125 + }, + { + "word": " input.", + "start": 2684.46, + "end": 2684.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1281, + "text": "The Computer Guru is here.", + "start": 2685.22, + "end": 2686.88, + "words": [ + { + "word": " The", + "start": 2685.22, + "end": 2685.38, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 2685.38, + "end": 2685.7, + "probability": 0.53564453125 + }, + { + "word": " Guru", + "start": 2685.7, + "end": 2686.12, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2686.12, + "end": 2686.56, + "probability": 1.0 + }, + { + "word": " here.", + "start": 2686.56, + "end": 2686.88, + "probability": 1.0 + } + ] + }, + { + "id": 1282, + "text": "Thank God you're here!", + "start": 2687.04, + "end": 2687.94, + "words": [ + { + "word": " Thank", + "start": 2687.04, + "end": 2687.2, + "probability": 0.6201171875 + }, + { + "word": " God", + "start": 2687.2, + "end": 2687.54, + "probability": 0.99658203125 + }, + { + "word": " you're", + "start": 2687.54, + "end": 2687.82, + "probability": 0.994140625 + }, + { + "word": " here!", + "start": 2687.82, + "end": 2687.94, + "probability": 1.0 + } + ] + }, + { + "id": 1283, + "text": "Call in now.", + "start": 2688.32, + "end": 2689.2, + "words": [ + { + "word": " Call", + "start": 2688.32, + "end": 2688.64, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 2688.64, + "end": 2688.88, + "probability": 0.998046875 + }, + { + "word": " now.", + "start": 2688.88, + "end": 2689.2, + "probability": 1.0 + } + ] + }, + { + "id": 1284, + "text": "Now, it's Mike Swanson,", + "start": 2689.52, + "end": 2690.9, + "words": [ + { + "word": " Now,", + "start": 2689.52, + "end": 2689.96, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 2689.96, + "end": 2690.3, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 2690.3, + "end": 2690.52, + "probability": 1.0 + }, + { + "word": " Swanson,", + "start": 2690.52, + "end": 2690.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1285, + "text": "your Computer Guru.", + "start": 2691.16, + "end": 2692.44, + "words": [ + { + "word": " your", + "start": 2691.16, + "end": 2691.42, + "probability": 0.9833984375 + }, + { + "word": " Computer", + "start": 2691.42, + "end": 2691.92, + "probability": 0.9892578125 + }, + { + "word": " Guru.", + "start": 2691.92, + "end": 2692.44, + "probability": 1.0 + } + ] + }, + { + "id": 1286, + "text": "Hello and welcome to the Computer Guru Show.", + "start": 2693.14, + "end": 2694.84, + "words": [ + { + "word": " Hello", + "start": 2693.14, + "end": 2693.62, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2693.62, + "end": 2693.82, + "probability": 0.70556640625 + }, + { + "word": " welcome", + "start": 2693.82, + "end": 2694.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 2694.0, + "end": 2694.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 2694.14, + "end": 2694.22, + "probability": 0.859375 + }, + { + "word": " Computer", + "start": 2694.22, + "end": 2694.42, + "probability": 1.0 + }, + { + "word": " Guru", + "start": 2694.42, + "end": 2694.64, + "probability": 0.99951171875 + }, + { + "word": " Show.", + "start": 2694.64, + "end": 2694.84, + "probability": 0.916015625 + } + ] + }, + { + "id": 1287, + "text": "My name's Mike.", + "start": 2694.88, + "end": 2695.38, + "words": [ + { + "word": " My", + "start": 2694.88, + "end": 2694.96, + "probability": 0.998046875 + }, + { + "word": " name's", + "start": 2694.96, + "end": 2695.16, + "probability": 0.79052734375 + }, + { + "word": " Mike.", + "start": 2695.16, + "end": 2695.38, + "probability": 1.0 + } + ] + }, + { + "id": 1288, + "text": "Here to deal with your technology needs", + "start": 2695.38, + "end": 2696.54, + "words": [ + { + "word": " Here", + "start": 2695.38, + "end": 2695.54, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 2695.54, + "end": 2695.66, + "probability": 0.99951171875 + }, + { + "word": " deal", + "start": 2695.66, + "end": 2695.78, + "probability": 0.853515625 + }, + { + "word": " with", + "start": 2695.78, + "end": 2695.88, + "probability": 1.0 + }, + { + "word": " your", + "start": 2695.88, + "end": 2695.96, + "probability": 0.9990234375 + }, + { + "word": " technology", + "start": 2695.96, + "end": 2696.26, + "probability": 1.0 + }, + { + "word": " needs", + "start": 2696.26, + "end": 2696.54, + "probability": 1.0 + } + ] + }, + { + "id": 1289, + "text": "and treat you like a person in the process.", + "start": 2696.54, + "end": 2698.38, + "words": [ + { + "word": " and", + "start": 2696.54, + "end": 2696.9, + "probability": 0.99755859375 + }, + { + "word": " treat", + "start": 2696.9, + "end": 2697.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 2697.22, + "end": 2697.4, + "probability": 1.0 + }, + { + "word": " like", + "start": 2697.4, + "end": 2697.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 2697.52, + "end": 2697.66, + "probability": 1.0 + }, + { + "word": " person", + "start": 2697.66, + "end": 2697.96, + "probability": 1.0 + }, + { + "word": " in", + "start": 2697.96, + "end": 2698.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2698.1, + "end": 2698.12, + "probability": 1.0 + }, + { + "word": " process.", + "start": 2698.12, + "end": 2698.38, + "probability": 1.0 + } + ] + }, + { + "id": 1290, + "text": "790-2040 if you'd like to be part of the show.", + "start": 2698.46, + "end": 2700.5, + "words": [ + { + "word": " 790", + "start": 2698.46, + "end": 2698.94, + "probability": 0.84033203125 + }, + { + "word": "-2040", + "start": 2698.94, + "end": 2699.48, + "probability": 0.77685546875 + }, + { + "word": " if", + "start": 2699.48, + "end": 2699.58, + "probability": 0.9833984375 + }, + { + "word": " you'd", + "start": 2699.58, + "end": 2699.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 2699.7, + "end": 2699.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 2699.8, + "end": 2699.88, + "probability": 1.0 + }, + { + "word": " be", + "start": 2699.88, + "end": 2699.98, + "probability": 1.0 + }, + { + "word": " part", + "start": 2699.98, + "end": 2700.12, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 2700.12, + "end": 2700.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 2700.24, + "end": 2700.3, + "probability": 1.0 + }, + { + "word": " show.", + "start": 2700.3, + "end": 2700.5, + "probability": 1.0 + } + ] + }, + { + "id": 1291, + "text": "That's 520-790-2040.", + "start": 2700.6, + "end": 2702.9, + "words": [ + { + "word": " That's", + "start": 2700.6, + "end": 2700.84, + "probability": 0.99951171875 + }, + { + "word": " 520", + "start": 2700.84, + "end": 2701.3, + "probability": 0.99560546875 + }, + { + "word": "-790", + "start": 2701.3, + "end": 2702.18, + "probability": 0.99951171875 + }, + { + "word": "-2040.", + "start": 2702.18, + "end": 2702.9, + "probability": 1.0 + } + ] + }, + { + "id": 1292, + "text": "Thank you.", + "start": 2702.96, + "end": 2703.7, + "words": [ + { + "word": " Thank", + "start": 2702.96, + "end": 2703.4, + "probability": 0.0305938720703125 + }, + { + "word": " you.", + "start": 2703.4, + "end": 2703.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1293, + "text": "And so we're going to make an announcement here,", + "start": 2703.84, + "end": 2706.14, + "words": [ + { + "word": " And", + "start": 2703.84, + "end": 2704.16, + "probability": 0.9345703125 + }, + { + "word": " so", + "start": 2704.16, + "end": 2704.84, + "probability": 0.97900390625 + }, + { + "word": " we're", + "start": 2704.84, + "end": 2705.26, + "probability": 0.9521484375 + }, + { + "word": " going", + "start": 2705.26, + "end": 2705.32, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 2705.32, + "end": 2705.42, + "probability": 1.0 + }, + { + "word": " make", + "start": 2705.42, + "end": 2705.56, + "probability": 1.0 + }, + { + "word": " an", + "start": 2705.56, + "end": 2705.62, + "probability": 1.0 + }, + { + "word": " announcement", + "start": 2705.62, + "end": 2705.88, + "probability": 1.0 + }, + { + "word": " here,", + "start": 2705.88, + "end": 2706.14, + "probability": 1.0 + } + ] + }, + { + "id": 1294, + "text": "which is today is the last Computer Guru Show", + "start": 2706.18, + "end": 2710.26, + "words": [ + { + "word": " which", + "start": 2706.18, + "end": 2706.42, + "probability": 1.0 + }, + { + "word": " is", + "start": 2706.42, + "end": 2706.72, + "probability": 1.0 + }, + { + "word": " today", + "start": 2706.72, + "end": 2707.84, + "probability": 0.96728515625 + }, + { + "word": " is", + "start": 2707.84, + "end": 2708.7, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 2708.7, + "end": 2708.96, + "probability": 0.99951171875 + }, + { + "word": " last", + "start": 2708.96, + "end": 2709.4, + "probability": 0.99951171875 + }, + { + "word": " Computer", + "start": 2709.4, + "end": 2709.72, + "probability": 0.90576171875 + }, + { + "word": " Guru", + "start": 2709.72, + "end": 2710.02, + "probability": 0.9931640625 + }, + { + "word": " Show", + "start": 2710.02, + "end": 2710.26, + "probability": 0.09942626953125 + } + ] + }, + { + "id": 1295, + "text": "that's going to be on for probably a while.", + "start": 2710.26, + "end": 2713.12, + "words": [ + { + "word": " that's", + "start": 2710.26, + "end": 2710.6, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 2710.6, + "end": 2710.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 2710.72, + "end": 2710.86, + "probability": 1.0 + }, + { + "word": " be", + "start": 2710.86, + "end": 2710.92, + "probability": 1.0 + }, + { + "word": " on", + "start": 2710.92, + "end": 2711.16, + "probability": 1.0 + }, + { + "word": " for", + "start": 2711.16, + "end": 2711.44, + "probability": 1.0 + }, + { + "word": " probably", + "start": 2711.44, + "end": 2712.58, + "probability": 0.96923828125 + }, + { + "word": " a", + "start": 2712.58, + "end": 2712.84, + "probability": 1.0 + }, + { + "word": " while.", + "start": 2712.84, + "end": 2713.12, + "probability": 1.0 + } + ] + }, + { + "id": 1296, + "text": "I'm going to take a bit of a hiatus,", + "start": 2713.52, + "end": 2714.9, + "words": [ + { + "word": " I'm", + "start": 2713.52, + "end": 2713.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 2713.92, + "end": 2713.96, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2713.96, + "end": 2713.98, + "probability": 1.0 + }, + { + "word": " take", + "start": 2713.98, + "end": 2714.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 2714.1, + "end": 2714.18, + "probability": 1.0 + }, + { + "word": " bit", + "start": 2714.18, + "end": 2714.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 2714.3, + "end": 2714.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 2714.4, + "end": 2714.42, + "probability": 1.0 + }, + { + "word": " hiatus,", + "start": 2714.42, + "end": 2714.9, + "probability": 1.0 + } + ] + }, + { + "id": 1297, + "text": "mainly because I've got a bunch of reasons for it.", + "start": 2715.9199999999996, + "end": 2719.18, + "words": [ + { + "word": " mainly", + "start": 2715.9199999999996, + "end": 2716.3199999999997, + "probability": 0.9990234375 + }, + { + "word": " because", + "start": 2716.3199999999997, + "end": 2716.72, + "probability": 1.0 + }, + { + "word": " I've", + "start": 2716.72, + "end": 2717.96, + "probability": 0.994140625 + }, + { + "word": " got", + "start": 2717.96, + "end": 2718.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 2718.04, + "end": 2718.16, + "probability": 1.0 + }, + { + "word": " bunch", + "start": 2718.16, + "end": 2718.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2718.32, + "end": 2718.42, + "probability": 1.0 + }, + { + "word": " reasons", + "start": 2718.42, + "end": 2718.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 2718.64, + "end": 2718.98, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2718.98, + "end": 2719.18, + "probability": 1.0 + } + ] + }, + { + "id": 1298, + "text": "But if you want your opportunity to have your", + "start": 2719.44, + "end": 2721.42, + "words": [ + { + "word": " But", + "start": 2719.44, + "end": 2719.84, + "probability": 1.0 + }, + { + "word": " if", + "start": 2719.84, + "end": 2719.94, + "probability": 1.0 + }, + { + "word": " you", + "start": 2719.94, + "end": 2720.04, + "probability": 1.0 + }, + { + "word": " want", + "start": 2720.04, + "end": 2720.16, + "probability": 1.0 + }, + { + "word": " your", + "start": 2720.16, + "end": 2720.28, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 2720.28, + "end": 2720.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 2720.64, + "end": 2720.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 2720.98, + "end": 2721.18, + "probability": 1.0 + }, + { + "word": " your", + "start": 2721.18, + "end": 2721.42, + "probability": 1.0 + } + ] + }, + { + "id": 1299, + "text": "sort of last tech support weekend", + "start": 2721.42, + "end": 2723.66, + "words": [ + { + "word": " sort", + "start": 2721.42, + "end": 2721.8, + "probability": 0.9755859375 + }, + { + "word": " of", + "start": 2721.8, + "end": 2721.92, + "probability": 1.0 + }, + { + "word": " last", + "start": 2721.92, + "end": 2722.18, + "probability": 1.0 + }, + { + "word": " tech", + "start": 2722.18, + "end": 2722.48, + "probability": 0.9921875 + }, + { + "word": " support", + "start": 2722.48, + "end": 2722.72, + "probability": 1.0 + }, + { + "word": " weekend", + "start": 2722.72, + "end": 2723.66, + "probability": 1.0 + } + ] + }, + { + "id": 1300, + "text": "that's available to you, at least on this show,", + "start": 2724.6, + "end": 2726.34, + "words": [ + { + "word": " that's", + "start": 2724.6, + "end": 2725.0, + "probability": 0.9951171875 + }, + { + "word": " available", + "start": 2725.0, + "end": 2725.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2725.18, + "end": 2725.46, + "probability": 1.0 + }, + { + "word": " you,", + "start": 2725.46, + "end": 2725.62, + "probability": 1.0 + }, + { + "word": " at", + "start": 2725.64, + "end": 2725.74, + "probability": 0.99853515625 + }, + { + "word": " least", + "start": 2725.74, + "end": 2725.84, + "probability": 1.0 + }, + { + "word": " on", + "start": 2725.84, + "end": 2726.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 2726.0, + "end": 2726.14, + "probability": 1.0 + }, + { + "word": " show,", + "start": 2726.14, + "end": 2726.34, + "probability": 1.0 + } + ] + }, + { + "id": 1301, + "text": "you will give us a call, 790-2040.", + "start": 2726.5, + "end": 2728.86, + "words": [ + { + "word": " you", + "start": 2726.5, + "end": 2727.12, + "probability": 1.0 + }, + { + "word": " will", + "start": 2727.12, + "end": 2727.26, + "probability": 1.0 + }, + { + "word": " give", + "start": 2727.26, + "end": 2727.4, + "probability": 1.0 + }, + { + "word": " us", + "start": 2727.4, + "end": 2727.54, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 2727.54, + "end": 2727.56, + "probability": 0.99853515625 + }, + { + "word": " call,", + "start": 2727.56, + "end": 2727.7, + "probability": 1.0 + }, + { + "word": " 790", + "start": 2727.8, + "end": 2728.22, + "probability": 0.9990234375 + }, + { + "word": "-2040.", + "start": 2728.22, + "end": 2728.86, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1302, + "text": "And there will be plenty of information,", + "start": 2730.24, + "end": 2732.54, + "words": [ + { + "word": " And", + "start": 2730.24, + "end": 2730.64, + "probability": 0.99755859375 + }, + { + "word": " there", + "start": 2730.64, + "end": 2731.04, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 2731.04, + "end": 2731.2, + "probability": 0.99658203125 + }, + { + "word": " be", + "start": 2731.2, + "end": 2731.38, + "probability": 1.0 + }, + { + "word": " plenty", + "start": 2731.38, + "end": 2731.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 2731.96, + "end": 2732.2, + "probability": 1.0 + }, + { + "word": " information,", + "start": 2732.2, + "end": 2732.54, + "probability": 1.0 + } + ] + }, + { + "id": 1303, + "text": "plenty of updates about,", + "start": 2732.72, + "end": 2733.52, + "words": [ + { + "word": " plenty", + "start": 2732.72, + "end": 2732.86, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2732.86, + "end": 2733.02, + "probability": 1.0 + }, + { + "word": " updates", + "start": 2733.02, + "end": 2733.24, + "probability": 1.0 + }, + { + "word": " about,", + "start": 2733.24, + "end": 2733.52, + "probability": 0.80517578125 + } + ] + }, + { + "id": 1304, + "text": "what's happening.", + "start": 2733.52, + "end": 2734.64, + "words": [ + { + "word": " what's", + "start": 2733.52, + "end": 2734.36, + "probability": 0.51806640625 + }, + { + "word": " happening.", + "start": 2734.36, + "end": 2734.64, + "probability": 0.994140625 + } + ] + }, + { + "id": 1305, + "text": "There's actually going to be a,", + "start": 2734.68, + "end": 2735.64, + "words": [ + { + "word": " There's", + "start": 2734.68, + "end": 2734.8, + "probability": 0.9892578125 + }, + { + "word": " actually", + "start": 2734.8, + "end": 2735.0, + "probability": 0.9951171875 + }, + { + "word": " going", + "start": 2735.0, + "end": 2735.22, + "probability": 0.96533203125 + }, + { + "word": " to", + "start": 2735.22, + "end": 2735.26, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 2735.26, + "end": 2735.42, + "probability": 1.0 + }, + { + "word": " a,", + "start": 2735.42, + "end": 2735.64, + "probability": 0.41845703125 + } + ] + }, + { + "id": 1306, + "text": "another version of the show next week.", + "start": 2735.76, + "end": 2739.42, + "words": [ + { + "word": " another", + "start": 2735.76, + "end": 2736.48, + "probability": 0.1932373046875 + }, + { + "word": " version", + "start": 2736.48, + "end": 2737.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2737.32, + "end": 2737.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 2737.72, + "end": 2737.84, + "probability": 1.0 + }, + { + "word": " show", + "start": 2737.84, + "end": 2738.12, + "probability": 0.99951171875 + }, + { + "word": " next", + "start": 2738.12, + "end": 2739.18, + "probability": 0.99169921875 + }, + { + "word": " week.", + "start": 2739.18, + "end": 2739.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1307, + "text": "That's podcast only.", + "start": 2739.46, + "end": 2740.42, + "words": [ + { + "word": " That's", + "start": 2739.46, + "end": 2739.62, + "probability": 0.99951171875 + }, + { + "word": " podcast", + "start": 2739.62, + "end": 2739.96, + "probability": 0.99658203125 + }, + { + "word": " only.", + "start": 2739.96, + "end": 2740.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1308, + "text": "Just, it'll give it more of a detailed update", + "start": 2740.76, + "end": 2743.42, + "words": [ + { + "word": " Just,", + "start": 2740.76, + "end": 2741.24, + "probability": 0.92626953125 + }, + { + "word": " it'll", + "start": 2741.34, + "end": 2741.86, + "probability": 0.9990234375 + }, + { + "word": " give", + "start": 2741.86, + "end": 2742.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 2742.04, + "end": 2742.16, + "probability": 0.994140625 + }, + { + "word": " more", + "start": 2742.16, + "end": 2742.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 2742.36, + "end": 2742.54, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2742.54, + "end": 2742.64, + "probability": 1.0 + }, + { + "word": " detailed", + "start": 2742.64, + "end": 2743.06, + "probability": 0.99755859375 + }, + { + "word": " update", + "start": 2743.06, + "end": 2743.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1309, + "text": "as far as what's happening,", + "start": 2743.42, + "end": 2744.48, + "words": [ + { + "word": " as", + "start": 2743.42, + "end": 2743.68, + "probability": 0.99755859375 + }, + { + "word": " far", + "start": 2743.68, + "end": 2743.8, + "probability": 1.0 + }, + { + "word": " as", + "start": 2743.8, + "end": 2743.94, + "probability": 1.0 + }, + { + "word": " what's", + "start": 2743.94, + "end": 2744.2, + "probability": 1.0 + }, + { + "word": " happening,", + "start": 2744.2, + "end": 2744.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1310, + "text": "what projects are happening.", + "start": 2744.56, + "end": 2745.48, + "words": [ + { + "word": " what", + "start": 2744.56, + "end": 2744.68, + "probability": 0.99951171875 + }, + { + "word": " projects", + "start": 2744.68, + "end": 2745.04, + "probability": 1.0 + }, + { + "word": " are", + "start": 2745.04, + "end": 2745.2, + "probability": 1.0 + }, + { + "word": " happening.", + "start": 2745.2, + "end": 2745.48, + "probability": 1.0 + } + ] + }, + { + "id": 1311, + "text": "But you'll have to either pick that up on iTunes,", + "start": 2745.9, + "end": 2748.82, + "words": [ + { + "word": " But", + "start": 2745.9, + "end": 2746.38, + "probability": 0.9921875 + }, + { + "word": " you'll", + "start": 2746.38, + "end": 2746.76, + "probability": 0.998046875 + }, + { + "word": " have", + "start": 2746.76, + "end": 2746.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 2746.88, + "end": 2747.1, + "probability": 1.0 + }, + { + "word": " either", + "start": 2747.1, + "end": 2747.82, + "probability": 0.99658203125 + }, + { + "word": " pick", + "start": 2747.82, + "end": 2748.04, + "probability": 1.0 + }, + { + "word": " that", + "start": 2748.04, + "end": 2748.22, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2748.22, + "end": 2748.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 2748.36, + "end": 2748.52, + "probability": 1.0 + }, + { + "word": " iTunes,", + "start": 2748.52, + "end": 2748.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1312, + "text": "YouTube, or one of the other podcasting platforms,", + "start": 2749.18, + "end": 2752.36, + "words": [ + { + "word": " YouTube,", + "start": 2749.18, + "end": 2749.7, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2749.78, + "end": 2750.86, + "probability": 0.9970703125 + }, + { + "word": " one", + "start": 2750.86, + "end": 2751.12, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 2751.12, + "end": 2751.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 2751.22, + "end": 2751.3, + "probability": 1.0 + }, + { + "word": " other", + "start": 2751.3, + "end": 2751.44, + "probability": 0.99951171875 + }, + { + "word": " podcasting", + "start": 2751.44, + "end": 2752.06, + "probability": 0.99951171875 + }, + { + "word": " platforms,", + "start": 2752.06, + "end": 2752.36, + "probability": 1.0 + } + ] + }, + { + "id": 1313, + "text": "or you can go to gurushow.com to get that information.", + "start": 2752.52, + "end": 2755.48, + "words": [ + { + "word": " or", + "start": 2752.52, + "end": 2752.68, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2752.68, + "end": 2752.82, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 2752.82, + "end": 2752.88, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 2752.88, + "end": 2752.92, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2752.92, + "end": 2753.02, + "probability": 1.0 + }, + { + "word": " gurushow", + "start": 2753.02, + "end": 2753.34, + "probability": 0.5302734375 + }, + { + "word": ".com", + "start": 2753.34, + "end": 2753.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 2753.66, + "end": 2753.98, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 2753.98, + "end": 2754.8, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 2754.8, + "end": 2755.04, + "probability": 1.0 + }, + { + "word": " information.", + "start": 2755.04, + "end": 2755.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1314, + "text": "It's, there's a bunch of things going on that,", + "start": 2757.7, + "end": 2760.52, + "words": [ + { + "word": " It's,", + "start": 2757.7, + "end": 2758.18, + "probability": 0.97998046875 + }, + { + "word": " there's", + "start": 2758.18, + "end": 2758.66, + "probability": 0.98828125 + }, + { + "word": " a", + "start": 2758.66, + "end": 2758.78, + "probability": 0.2445068359375 + }, + { + "word": " bunch", + "start": 2758.78, + "end": 2759.26, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 2759.26, + "end": 2759.36, + "probability": 1.0 + }, + { + "word": " things", + "start": 2759.36, + "end": 2759.52, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 2759.52, + "end": 2759.74, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 2759.74, + "end": 2760.0, + "probability": 1.0 + }, + { + "word": " that,", + "start": 2760.0, + "end": 2760.52, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1315, + "text": "as an example, my, I mean,", + "start": 2760.52, + "end": 2763.2, + "words": [ + { + "word": " as", + "start": 2760.52, + "end": 2761.28, + "probability": 0.998046875 + }, + { + "word": " an", + "start": 2761.28, + "end": 2761.52, + "probability": 0.99951171875 + }, + { + "word": " example,", + "start": 2761.52, + "end": 2761.86, + "probability": 1.0 + }, + { + "word": " my,", + "start": 2761.96, + "end": 2762.62, + "probability": 0.982421875 + }, + { + "word": " I", + "start": 2762.62, + "end": 2762.9, + "probability": 0.98046875 + }, + { + "word": " mean,", + "start": 2762.9, + "end": 2763.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1316, + "text": "I have my daughter living with me full time.", + "start": 2763.52, + "end": 2764.86, + "words": [ + { + "word": " I", + "start": 2763.52, + "end": 2763.54, + "probability": 0.6982421875 + }, + { + "word": " have", + "start": 2763.54, + "end": 2763.54, + "probability": 0.90673828125 + }, + { + "word": " my", + "start": 2763.54, + "end": 2763.68, + "probability": 0.99951171875 + }, + { + "word": " daughter", + "start": 2763.68, + "end": 2763.92, + "probability": 1.0 + }, + { + "word": " living", + "start": 2763.92, + "end": 2764.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 2764.14, + "end": 2764.32, + "probability": 1.0 + }, + { + "word": " me", + "start": 2764.32, + "end": 2764.46, + "probability": 1.0 + }, + { + "word": " full", + "start": 2764.46, + "end": 2764.62, + "probability": 1.0 + }, + { + "word": " time.", + "start": 2764.62, + "end": 2764.86, + "probability": 0.59228515625 + } + ] + }, + { + "id": 1317, + "text": "And I would like to free up some weekend time for,", + "start": 2765.02, + "end": 2768.78, + "words": [ + { + "word": " And", + "start": 2765.02, + "end": 2765.46, + "probability": 0.91552734375 + }, + { + "word": " I", + "start": 2765.46, + "end": 2766.02, + "probability": 0.9482421875 + }, + { + "word": " would", + "start": 2766.02, + "end": 2766.5, + "probability": 1.0 + }, + { + "word": " like", + "start": 2766.5, + "end": 2766.66, + "probability": 1.0 + }, + { + "word": " to", + "start": 2766.66, + "end": 2766.86, + "probability": 1.0 + }, + { + "word": " free", + "start": 2766.86, + "end": 2767.44, + "probability": 0.99853515625 + }, + { + "word": " up", + "start": 2767.44, + "end": 2767.64, + "probability": 1.0 + }, + { + "word": " some", + "start": 2767.64, + "end": 2767.84, + "probability": 0.99951171875 + }, + { + "word": " weekend", + "start": 2767.84, + "end": 2768.14, + "probability": 1.0 + }, + { + "word": " time", + "start": 2768.14, + "end": 2768.44, + "probability": 1.0 + }, + { + "word": " for,", + "start": 2768.44, + "end": 2768.78, + "probability": 0.97802734375 + } + ] + }, + { + "id": 1318, + "text": "yeah, I've never really done the whole like family", + "start": 2769.58, + "end": 2772.62, + "words": [ + { + "word": " yeah,", + "start": 2769.58, + "end": 2770.02, + "probability": 0.0360107421875 + }, + { + "word": " I've", + "start": 2770.06, + "end": 2770.34, + "probability": 1.0 + }, + { + "word": " never", + "start": 2770.34, + "end": 2770.66, + "probability": 0.99267578125 + }, + { + "word": " really", + "start": 2770.66, + "end": 2771.0, + "probability": 1.0 + }, + { + "word": " done", + "start": 2771.0, + "end": 2771.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 2771.28, + "end": 2771.46, + "probability": 0.99951171875 + }, + { + "word": " whole", + "start": 2771.46, + "end": 2771.58, + "probability": 1.0 + }, + { + "word": " like", + "start": 2771.58, + "end": 2771.9, + "probability": 0.488525390625 + }, + { + "word": " family", + "start": 2771.9, + "end": 2772.62, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1319, + "text": "weekend stuff.", + "start": 2772.62, + "end": 2773.34, + "words": [ + { + "word": " weekend", + "start": 2772.62, + "end": 2773.0, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 2773.0, + "end": 2773.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1320, + "text": "So, and I'd like to do that.", + "start": 2773.52, + "end": 2774.6, + "words": [ + { + "word": " So,", + "start": 2773.52, + "end": 2773.74, + "probability": 0.87255859375 + }, + { + "word": " and", + "start": 2773.76, + "end": 2773.88, + "probability": 0.99951171875 + }, + { + "word": " I'd", + "start": 2773.88, + "end": 2774.02, + "probability": 1.0 + }, + { + "word": " like", + "start": 2774.02, + "end": 2774.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 2774.16, + "end": 2774.26, + "probability": 1.0 + }, + { + "word": " do", + "start": 2774.26, + "end": 2774.4, + "probability": 1.0 + }, + { + "word": " that.", + "start": 2774.4, + "end": 2774.6, + "probability": 1.0 + } + ] + }, + { + "id": 1321, + "text": "You need room for activities.", + "start": 2774.76, + "end": 2776.08, + "words": [ + { + "word": " You", + "start": 2774.76, + "end": 2775.08, + "probability": 0.99853515625 + }, + { + "word": " need", + "start": 2775.08, + "end": 2775.22, + "probability": 1.0 + }, + { + "word": " room", + "start": 2775.22, + "end": 2775.4, + "probability": 1.0 + }, + { + "word": " for", + "start": 2775.4, + "end": 2775.66, + "probability": 1.0 + }, + { + "word": " activities.", + "start": 2775.66, + "end": 2776.08, + "probability": 1.0 + } + ] + }, + { + "id": 1322, + "text": "Yes.", + "start": 2777.0, + "end": 2777.44, + "words": [ + { + "word": " Yes.", + "start": 2777.0, + "end": 2777.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1323, + "text": "And there's just a lot of things going on and I", + "start": 2778.0, + "end": 2780.44, + "words": [ + { + "word": " And", + "start": 2778.0, + "end": 2778.44, + "probability": 0.99462890625 + }, + { + "word": " there's", + "start": 2778.44, + "end": 2778.72, + "probability": 1.0 + }, + { + "word": " just", + "start": 2778.72, + "end": 2778.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 2778.88, + "end": 2779.02, + "probability": 1.0 + }, + { + "word": " lot", + "start": 2779.02, + "end": 2779.14, + "probability": 1.0 + }, + { + "word": " of", + "start": 2779.14, + "end": 2779.2, + "probability": 1.0 + }, + { + "word": " things", + "start": 2779.2, + "end": 2779.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 2779.36, + "end": 2779.6, + "probability": 1.0 + }, + { + "word": " on", + "start": 2779.6, + "end": 2779.88, + "probability": 1.0 + }, + { + "word": " and", + "start": 2779.88, + "end": 2780.12, + "probability": 0.1983642578125 + }, + { + "word": " I", + "start": 2780.12, + "end": 2780.44, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1324, + "text": "haven't really had more than a couple of Saturdays off", + "start": 2780.44, + "end": 2783.12, + "words": [ + { + "word": " haven't", + "start": 2780.44, + "end": 2780.78, + "probability": 1.0 + }, + { + "word": " really", + "start": 2780.78, + "end": 2781.3, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 2781.3, + "end": 2781.62, + "probability": 0.99951171875 + }, + { + "word": " more", + "start": 2781.62, + "end": 2781.82, + "probability": 0.99951171875 + }, + { + "word": " than", + "start": 2781.82, + "end": 2782.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2782.0, + "end": 2782.12, + "probability": 1.0 + }, + { + "word": " couple", + "start": 2782.12, + "end": 2782.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2782.36, + "end": 2782.44, + "probability": 0.99951171875 + }, + { + "word": " Saturdays", + "start": 2782.44, + "end": 2782.98, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 2782.98, + "end": 2783.12, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1325, + "text": "in almost 11 years.", + "start": 2783.12, + "end": 2784.46, + "words": [ + { + "word": " in", + "start": 2783.12, + "end": 2783.34, + "probability": 0.8369140625 + }, + { + "word": " almost", + "start": 2783.34, + "end": 2783.84, + "probability": 1.0 + }, + { + "word": " 11", + "start": 2783.84, + "end": 2784.12, + "probability": 1.0 + }, + { + "word": " years.", + "start": 2784.12, + "end": 2784.46, + "probability": 1.0 + } + ] + }, + { + "id": 1326, + "text": "So I would like an opportunity to,", + "start": 2785.5, + "end": 2787.68, + "words": [ + { + "word": " So", + "start": 2785.5, + "end": 2785.94, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 2785.94, + "end": 2786.18, + "probability": 0.90185546875 + }, + { + "word": " would", + "start": 2786.18, + "end": 2786.36, + "probability": 1.0 + }, + { + "word": " like", + "start": 2786.36, + "end": 2786.56, + "probability": 1.0 + }, + { + "word": " an", + "start": 2786.56, + "end": 2786.7, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 2786.7, + "end": 2787.06, + "probability": 1.0 + }, + { + "word": " to,", + "start": 2787.06, + "end": 2787.68, + "probability": 1.0 + } + ] + }, + { + "id": 1327, + "text": "you know, work on some of the projects,", + "start": 2788.14, + "end": 2790.16, + "words": [ + { + "word": " you", + "start": 2788.14, + "end": 2788.58, + "probability": 0.99755859375 + }, + { + "word": " know,", + "start": 2788.58, + "end": 2788.76, + "probability": 1.0 + }, + { + "word": " work", + "start": 2788.76, + "end": 2789.38, + "probability": 1.0 + }, + { + "word": " on", + "start": 2789.38, + "end": 2789.52, + "probability": 1.0 + }, + { + "word": " some", + "start": 2789.52, + "end": 2789.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 2789.64, + "end": 2789.72, + "probability": 0.80322265625 + }, + { + "word": " the", + "start": 2789.72, + "end": 2789.8, + "probability": 1.0 + }, + { + "word": " projects,", + "start": 2789.8, + "end": 2790.16, + "probability": 1.0 + } + ] + }, + { + "id": 1328, + "text": "have some family time and,", + "start": 2790.2, + "end": 2792.0, + "words": [ + { + "word": " have", + "start": 2790.2, + "end": 2790.42, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 2790.42, + "end": 2790.62, + "probability": 1.0 + }, + { + "word": " family", + "start": 2790.62, + "end": 2791.0, + "probability": 1.0 + }, + { + "word": " time", + "start": 2791.0, + "end": 2791.36, + "probability": 1.0 + }, + { + "word": " and,", + "start": 2791.36, + "end": 2792.0, + "probability": 0.95361328125 + } + ] + }, + { + "id": 1329, + "text": "you know,", + "start": 2792.7599999999998, + "end": 2793.38, + "words": [ + { + "word": " you", + "start": 2792.7599999999998, + "end": 2793.2, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 2793.2, + "end": 2793.38, + "probability": 1.0 + } + ] + }, + { + "id": 1330, + "text": "just, you know,", + "start": 2793.38, + "end": 2793.5, + "words": [ + { + "word": " just,", + "start": 2793.38, + "end": 2793.5, + "probability": 0.984375 + }, + { + "word": " you", + "start": 2793.5, + "end": 2793.5, + "probability": 0.86328125 + }, + { + "word": " know,", + "start": 2793.5, + "end": 2793.5, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1331, + "text": "", + "start": 2793.5, + "end": 2793.5, + "words": [] + }, + { + "id": 1332, + "text": "just to refocus.", + "start": 2793.5, + "end": 2794.74, + "words": [ + { + "word": " just", + "start": 2793.5, + "end": 2793.58, + "probability": 0.2340087890625 + }, + { + "word": " to", + "start": 2793.58, + "end": 2793.84, + "probability": 0.29296875 + }, + { + "word": " refocus.", + "start": 2793.84, + "end": 2794.74, + "probability": 0.998046875 + } + ] + }, + { + "id": 1333, + "text": "Also, I've, the show's sort of been suffering due to me", + "start": 2794.8, + "end": 2799.4, + "words": [ + { + "word": " Also,", + "start": 2794.8, + "end": 2795.06, + "probability": 0.9931640625 + }, + { + "word": " I've,", + "start": 2795.14, + "end": 2795.26, + "probability": 0.7431640625 + }, + { + "word": " the", + "start": 2795.32, + "end": 2795.84, + "probability": 0.9990234375 + }, + { + "word": " show's", + "start": 2795.84, + "end": 2796.14, + "probability": 0.9501953125 + }, + { + "word": " sort", + "start": 2796.14, + "end": 2796.28, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2796.28, + "end": 2796.4, + "probability": 1.0 + }, + { + "word": " been", + "start": 2796.4, + "end": 2796.6, + "probability": 1.0 + }, + { + "word": " suffering", + "start": 2796.6, + "end": 2797.72, + "probability": 0.99755859375 + }, + { + "word": " due", + "start": 2797.72, + "end": 2798.32, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 2798.32, + "end": 2798.62, + "probability": 1.0 + }, + { + "word": " me", + "start": 2798.62, + "end": 2799.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1334, + "text": "not having time to properly prepare for it,", + "start": 2799.4, + "end": 2801.92, + "words": [ + { + "word": " not", + "start": 2799.4, + "end": 2799.66, + "probability": 0.96435546875 + }, + { + "word": " having", + "start": 2799.66, + "end": 2799.9, + "probability": 1.0 + }, + { + "word": " time", + "start": 2799.9, + "end": 2800.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2800.28, + "end": 2800.66, + "probability": 0.998046875 + }, + { + "word": " properly", + "start": 2800.66, + "end": 2801.0, + "probability": 0.9990234375 + }, + { + "word": " prepare", + "start": 2801.0, + "end": 2801.3, + "probability": 1.0 + }, + { + "word": " for", + "start": 2801.3, + "end": 2801.62, + "probability": 1.0 + }, + { + "word": " it,", + "start": 2801.62, + "end": 2801.92, + "probability": 1.0 + } + ] + }, + { + "id": 1335, + "text": "to stay on top of the subject,", + "start": 2801.94, + "end": 2804.0, + "words": [ + { + "word": " to", + "start": 2801.94, + "end": 2802.08, + "probability": 0.99951171875 + }, + { + "word": " stay", + "start": 2802.08, + "end": 2802.94, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2802.94, + "end": 2803.14, + "probability": 1.0 + }, + { + "word": " top", + "start": 2803.14, + "end": 2803.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 2803.36, + "end": 2803.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 2803.56, + "end": 2803.62, + "probability": 0.99951171875 + }, + { + "word": " subject,", + "start": 2803.62, + "end": 2804.0, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1336, + "text": "like, like I would like.", + "start": 2804.1, + "end": 2805.34, + "words": [ + { + "word": " like,", + "start": 2804.1, + "end": 2804.36, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 2804.36, + "end": 2804.7, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 2804.7, + "end": 2805.0, + "probability": 0.998046875 + }, + { + "word": " would", + "start": 2805.0, + "end": 2805.1, + "probability": 1.0 + }, + { + "word": " like.", + "start": 2805.1, + "end": 2805.34, + "probability": 1.0 + } + ] + }, + { + "id": 1337, + "text": "And I feel like the quality of,", + "start": 2805.74, + "end": 2808.76, + "words": [ + { + "word": " And", + "start": 2805.74, + "end": 2806.22, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 2806.22, + "end": 2806.8, + "probability": 0.14990234375 + }, + { + "word": " feel", + "start": 2806.8, + "end": 2807.42, + "probability": 1.0 + }, + { + "word": " like", + "start": 2807.42, + "end": 2807.68, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2807.68, + "end": 2807.86, + "probability": 1.0 + }, + { + "word": " quality", + "start": 2807.86, + "end": 2808.38, + "probability": 0.99951171875 + }, + { + "word": " of,", + "start": 2808.38, + "end": 2808.76, + "probability": 1.0 + } + ] + }, + { + "id": 1338, + "text": "of the show has,", + "start": 2808.86, + "end": 2809.98, + "words": [ + { + "word": " of", + "start": 2808.86, + "end": 2809.08, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2809.08, + "end": 2809.28, + "probability": 1.0 + }, + { + "word": " show", + "start": 2809.28, + "end": 2809.56, + "probability": 0.99951171875 + }, + { + "word": " has,", + "start": 2809.56, + "end": 2809.98, + "probability": 1.0 + } + ] + }, + { + "id": 1339, + "text": "has slipped just because,", + "start": 2810.06, + "end": 2812.0, + "words": [ + { + "word": " has", + "start": 2810.06, + "end": 2810.4, + "probability": 1.0 + }, + { + "word": " slipped", + "start": 2810.4, + "end": 2811.34, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 2811.34, + "end": 2811.62, + "probability": 0.9990234375 + }, + { + "word": " because,", + "start": 2811.62, + "end": 2812.0, + "probability": 1.0 + } + ] + }, + { + "id": 1340, + "text": "and it's my fault,", + "start": 2812.08, + "end": 2813.0, + "words": [ + { + "word": " and", + "start": 2812.08, + "end": 2812.3, + "probability": 0.98779296875 + }, + { + "word": " it's", + "start": 2812.3, + "end": 2812.56, + "probability": 1.0 + }, + { + "word": " my", + "start": 2812.56, + "end": 2812.68, + "probability": 1.0 + }, + { + "word": " fault,", + "start": 2812.68, + "end": 2813.0, + "probability": 1.0 + } + ] + }, + { + "id": 1341, + "text": "right? It's, I haven't had the time to put into it.", + "start": 2813.0, + "end": 2814.88, + "words": [ + { + "word": " right?", + "start": 2813.0, + "end": 2813.18, + "probability": 0.998046875 + }, + { + "word": " It's,", + "start": 2813.28, + "end": 2813.5, + "probability": 0.994140625 + }, + { + "word": " I", + "start": 2813.5, + "end": 2813.66, + "probability": 0.99951171875 + }, + { + "word": " haven't", + "start": 2813.66, + "end": 2813.92, + "probability": 1.0 + }, + { + "word": " had", + "start": 2813.92, + "end": 2814.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 2814.04, + "end": 2814.14, + "probability": 1.0 + }, + { + "word": " time", + "start": 2814.14, + "end": 2814.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 2814.3, + "end": 2814.4, + "probability": 1.0 + }, + { + "word": " put", + "start": 2814.4, + "end": 2814.52, + "probability": 1.0 + }, + { + "word": " into", + "start": 2814.52, + "end": 2814.68, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 2814.68, + "end": 2814.88, + "probability": 1.0 + } + ] + }, + { + "id": 1342, + "text": "And so I would be,", + "start": 2815.5, + "end": 2817.46, + "words": [ + { + "word": " And", + "start": 2815.5, + "end": 2815.98, + "probability": 1.0 + }, + { + "word": " so", + "start": 2815.98, + "end": 2816.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 2816.28, + "end": 2816.98, + "probability": 0.9873046875 + }, + { + "word": " would", + "start": 2816.98, + "end": 2817.24, + "probability": 1.0 + }, + { + "word": " be,", + "start": 2817.24, + "end": 2817.46, + "probability": 1.0 + } + ] + }, + { + "id": 1343, + "text": "I don't want to be disappointed with my own product.", + "start": 2817.48, + "end": 2820.1, + "words": [ + { + "word": " I", + "start": 2817.48, + "end": 2818.06, + "probability": 1.0 + }, + { + "word": " don't", + "start": 2818.06, + "end": 2818.24, + "probability": 1.0 + }, + { + "word": " want", + "start": 2818.24, + "end": 2818.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2818.28, + "end": 2818.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 2818.4, + "end": 2818.5, + "probability": 1.0 + }, + { + "word": " disappointed", + "start": 2818.5, + "end": 2818.92, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2818.92, + "end": 2819.28, + "probability": 1.0 + }, + { + "word": " my", + "start": 2819.28, + "end": 2819.44, + "probability": 1.0 + }, + { + "word": " own", + "start": 2819.44, + "end": 2819.64, + "probability": 1.0 + }, + { + "word": " product.", + "start": 2819.64, + "end": 2820.1, + "probability": 1.0 + } + ] + }, + { + "id": 1344, + "text": "And so that's,", + "start": 2820.58, + "end": 2821.86, + "words": [ + { + "word": " And", + "start": 2820.58, + "end": 2821.06, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 2821.06, + "end": 2821.44, + "probability": 0.99951171875 + }, + { + "word": " that's,", + "start": 2821.44, + "end": 2821.86, + "probability": 1.0 + } + ] + }, + { + "id": 1345, + "text": "that's a,", + "start": 2821.86, + "end": 2822.24, + "words": [ + { + "word": " that's", + "start": 2821.86, + "end": 2822.16, + "probability": 1.0 + }, + { + "word": " a,", + "start": 2822.16, + "end": 2822.24, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1346, + "text": "that's a big consideration.", + "start": 2822.24, + "end": 2823.48, + "words": [ + { + "word": " that's", + "start": 2822.24, + "end": 2822.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 2822.78, + "end": 2822.84, + "probability": 1.0 + }, + { + "word": " big", + "start": 2822.84, + "end": 2823.04, + "probability": 0.99951171875 + }, + { + "word": " consideration.", + "start": 2823.04, + "end": 2823.48, + "probability": 0.83447265625 + } + ] + }, + { + "id": 1347, + "text": "As far as what's going on with that type of stuff.", + "start": 2823.48, + "end": 2825.66, + "words": [ + { + "word": " As", + "start": 2823.48, + "end": 2823.82, + "probability": 0.0618896484375 + }, + { + "word": " far", + "start": 2823.82, + "end": 2823.98, + "probability": 0.99560546875 + }, + { + "word": " as", + "start": 2823.98, + "end": 2824.14, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 2824.14, + "end": 2824.38, + "probability": 0.99609375 + }, + { + "word": " going", + "start": 2824.38, + "end": 2824.52, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 2824.52, + "end": 2824.78, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 2824.78, + "end": 2824.96, + "probability": 0.96484375 + }, + { + "word": " that", + "start": 2824.96, + "end": 2825.14, + "probability": 1.0 + }, + { + "word": " type", + "start": 2825.14, + "end": 2825.36, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2825.36, + "end": 2825.46, + "probability": 0.99951171875 + }, + { + "word": " stuff.", + "start": 2825.46, + "end": 2825.66, + "probability": 1.0 + } + ] + }, + { + "id": 1348, + "text": "But, you know,", + "start": 2827.0, + "end": 2828.0, + "words": [ + { + "word": " But,", + "start": 2827.0, + "end": 2827.4, + "probability": 0.9765625 + }, + { + "word": " you", + "start": 2827.4, + "end": 2827.8, + "probability": 0.92626953125 + }, + { + "word": " know,", + "start": 2827.8, + "end": 2828.0, + "probability": 1.0 + } + ] + }, + { + "id": 1349, + "text": "we're here today and so we should probably help people.", + "start": 2828.0, + "end": 2830.64, + "words": [ + { + "word": " we're", + "start": 2828.0, + "end": 2828.4, + "probability": 1.0 + }, + { + "word": " here", + "start": 2828.4, + "end": 2828.52, + "probability": 1.0 + }, + { + "word": " today", + "start": 2828.52, + "end": 2828.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 2828.76, + "end": 2829.18, + "probability": 0.0860595703125 + }, + { + "word": " so", + "start": 2829.18, + "end": 2829.52, + "probability": 0.99951171875 + }, + { + "word": " we", + "start": 2829.52, + "end": 2829.66, + "probability": 1.0 + }, + { + "word": " should", + "start": 2829.66, + "end": 2829.8, + "probability": 1.0 + }, + { + "word": " probably", + "start": 2829.8, + "end": 2830.04, + "probability": 1.0 + }, + { + "word": " help", + "start": 2830.04, + "end": 2830.3, + "probability": 1.0 + }, + { + "word": " people.", + "start": 2830.3, + "end": 2830.64, + "probability": 1.0 + } + ] + }, + { + "id": 1350, + "text": "And we'll go ahead and talk to Annette.", + "start": 2830.76, + "end": 2832.14, + "words": [ + { + "word": " And", + "start": 2830.76, + "end": 2831.16, + "probability": 0.7724609375 + }, + { + "word": " we'll", + "start": 2831.16, + "end": 2831.4, + "probability": 0.9951171875 + }, + { + "word": " go", + "start": 2831.4, + "end": 2831.5, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 2831.5, + "end": 2831.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 2831.64, + "end": 2831.7, + "probability": 1.0 + }, + { + "word": " talk", + "start": 2831.7, + "end": 2831.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 2831.86, + "end": 2831.98, + "probability": 1.0 + }, + { + "word": " Annette.", + "start": 2831.98, + "end": 2832.14, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1351, + "text": "Hello, Annette.", + "start": 2832.24, + "end": 2832.6, + "words": [ + { + "word": " Hello,", + "start": 2832.24, + "end": 2832.4, + "probability": 0.99951171875 + }, + { + "word": " Annette.", + "start": 2832.46, + "end": 2832.6, + "probability": 1.0 + } + ] + }, + { + "id": 1352, + "text": "How are you?", + "start": 2832.66, + "end": 2832.94, + "words": [ + { + "word": " How", + "start": 2832.66, + "end": 2832.74, + "probability": 1.0 + }, + { + "word": " are", + "start": 2832.74, + "end": 2832.82, + "probability": 1.0 + }, + { + "word": " you?", + "start": 2832.82, + "end": 2832.94, + "probability": 1.0 + } + ] + }, + { + "id": 1353, + "text": "How are you doing today,", + "start": 2833.88, + "end": 2834.98, + "words": [ + { + "word": " How", + "start": 2833.88, + "end": 2834.28, + "probability": 0.8251953125 + }, + { + "word": " are", + "start": 2834.28, + "end": 2834.46, + "probability": 0.9970703125 + }, + { + "word": " you", + "start": 2834.46, + "end": 2834.56, + "probability": 1.0 + }, + { + "word": " doing", + "start": 2834.56, + "end": 2834.78, + "probability": 1.0 + }, + { + "word": " today,", + "start": 2834.78, + "end": 2834.98, + "probability": 1.0 + } + ] + }, + { + "id": 1354, + "text": "Mike? I'm glad I caught you before you went on vacation.", + "start": 2835.1, + "end": 2837.26, + "words": [ + { + "word": " Mike?", + "start": 2835.1, + "end": 2835.26, + "probability": 0.98388671875 + }, + { + "word": " I'm", + "start": 2835.38, + "end": 2835.54, + "probability": 1.0 + }, + { + "word": " glad", + "start": 2835.54, + "end": 2835.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 2835.72, + "end": 2835.88, + "probability": 1.0 + }, + { + "word": " caught", + "start": 2835.88, + "end": 2836.08, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 2836.08, + "end": 2836.26, + "probability": 1.0 + }, + { + "word": " before", + "start": 2836.26, + "end": 2836.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 2836.46, + "end": 2836.68, + "probability": 1.0 + }, + { + "word": " went", + "start": 2836.68, + "end": 2836.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 2836.82, + "end": 2836.96, + "probability": 1.0 + }, + { + "word": " vacation.", + "start": 2836.96, + "end": 2837.26, + "probability": 1.0 + } + ] + }, + { + "id": 1355, + "text": "Yeah.", + "start": 2837.88, + "end": 2838.28, + "words": [ + { + "word": " Yeah.", + "start": 2837.88, + "end": 2838.28, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1356, + "text": "Or hiatus, excuse me.", + "start": 2838.36, + "end": 2839.62, + "words": [ + { + "word": " Or", + "start": 2838.36, + "end": 2838.44, + "probability": 0.31005859375 + }, + { + "word": " hiatus,", + "start": 2838.44, + "end": 2838.9, + "probability": 0.9921875 + }, + { + "word": " excuse", + "start": 2838.92, + "end": 2839.28, + "probability": 0.994140625 + }, + { + "word": " me.", + "start": 2839.28, + "end": 2839.62, + "probability": 1.0 + } + ] + }, + { + "id": 1357, + "text": "Yeah. It's,", + "start": 2839.94, + "end": 2840.68, + "words": [ + { + "word": " Yeah.", + "start": 2839.94, + "end": 2840.34, + "probability": 0.9990234375 + }, + { + "word": " It's,", + "start": 2840.4, + "end": 2840.68, + "probability": 0.724609375 + } + ] + }, + { + "id": 1358, + "text": "we're probably going to take like five or six months off before", + "start": 2840.68, + "end": 2843.22, + "words": [ + { + "word": " we're", + "start": 2840.68, + "end": 2841.22, + "probability": 1.0 + }, + { + "word": " probably", + "start": 2841.22, + "end": 2841.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 2841.48, + "end": 2841.58, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 2841.58, + "end": 2841.7, + "probability": 1.0 + }, + { + "word": " take", + "start": 2841.7, + "end": 2841.88, + "probability": 1.0 + }, + { + "word": " like", + "start": 2841.88, + "end": 2842.06, + "probability": 0.99609375 + }, + { + "word": " five", + "start": 2842.06, + "end": 2842.28, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 2842.28, + "end": 2842.4, + "probability": 1.0 + }, + { + "word": " six", + "start": 2842.4, + "end": 2842.5, + "probability": 1.0 + }, + { + "word": " months", + "start": 2842.5, + "end": 2842.72, + "probability": 1.0 + }, + { + "word": " off", + "start": 2842.72, + "end": 2842.94, + "probability": 1.0 + }, + { + "word": " before", + "start": 2842.94, + "end": 2843.22, + "probability": 1.0 + } + ] + }, + { + "id": 1359, + "text": "we put out more shows.", + "start": 2843.22, + "end": 2845.16, + "words": [ + { + "word": " we", + "start": 2843.22, + "end": 2843.44, + "probability": 1.0 + }, + { + "word": " put", + "start": 2843.44, + "end": 2843.72, + "probability": 1.0 + }, + { + "word": " out", + "start": 2843.72, + "end": 2843.94, + "probability": 1.0 + }, + { + "word": " more", + "start": 2843.94, + "end": 2844.24, + "probability": 1.0 + }, + { + "word": " shows.", + "start": 2844.24, + "end": 2845.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1360, + "text": "But we don't know how or where that's going to be,", + "start": 2846.22, + "end": 2848.82, + "words": [ + { + "word": " But", + "start": 2846.22, + "end": 2846.62, + "probability": 0.79052734375 + }, + { + "word": " we", + "start": 2846.62, + "end": 2847.02, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 2847.02, + "end": 2847.22, + "probability": 1.0 + }, + { + "word": " know", + "start": 2847.22, + "end": 2847.34, + "probability": 1.0 + }, + { + "word": " how", + "start": 2847.34, + "end": 2847.8, + "probability": 1.0 + }, + { + "word": " or", + "start": 2847.8, + "end": 2848.02, + "probability": 1.0 + }, + { + "word": " where", + "start": 2848.02, + "end": 2848.2, + "probability": 1.0 + }, + { + "word": " that's", + "start": 2848.2, + "end": 2848.48, + "probability": 1.0 + }, + { + "word": " going", + "start": 2848.48, + "end": 2848.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 2848.58, + "end": 2848.68, + "probability": 1.0 + }, + { + "word": " be,", + "start": 2848.68, + "end": 2848.82, + "probability": 1.0 + } + ] + }, + { + "id": 1361, + "text": "but if you go to goodreshow.com,", + "start": 2848.9, + "end": 2851.22, + "words": [ + { + "word": " but", + "start": 2848.9, + "end": 2849.3, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 2849.3, + "end": 2849.72, + "probability": 0.60986328125 + }, + { + "word": " you", + "start": 2849.72, + "end": 2849.94, + "probability": 1.0 + }, + { + "word": " go", + "start": 2849.94, + "end": 2850.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2850.18, + "end": 2850.5, + "probability": 1.0 + }, + { + "word": " goodreshow", + "start": 2850.5, + "end": 2850.78, + "probability": 0.323974609375 + }, + { + "word": ".com,", + "start": 2850.78, + "end": 2851.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1362, + "text": "you'll get the information.", + "start": 2851.22, + "end": 2851.86, + "words": [ + { + "word": " you'll", + "start": 2851.22, + "end": 2851.38, + "probability": 0.9716796875 + }, + { + "word": " get", + "start": 2851.38, + "end": 2851.4, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2851.4, + "end": 2851.56, + "probability": 1.0 + }, + { + "word": " information.", + "start": 2851.56, + "end": 2851.86, + "probability": 1.0 + } + ] + }, + { + "id": 1363, + "text": "Just make sure you get the information.", + "start": 2852.5, + "end": 2853.46, + "words": [ + { + "word": " Just", + "start": 2852.5, + "end": 2852.9, + "probability": 0.66650390625 + }, + { + "word": " make", + "start": 2852.9, + "end": 2853.18, + "probability": 0.84716796875 + }, + { + "word": " sure", + "start": 2853.18, + "end": 2853.36, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 2853.36, + "end": 2853.46, + "probability": 0.098388671875 + }, + { + "word": " get", + "start": 2853.46, + "end": 2853.46, + "probability": 0.1396484375 + }, + { + "word": " the", + "start": 2853.46, + "end": 2853.46, + "probability": 0.469482421875 + }, + { + "word": " information.", + "start": 2853.46, + "end": 2853.46, + "probability": 0.9404296875 + } + ] + }, + { + "id": 1364, + "text": "We'll probably come back at some point.", + "start": 2853.46, + "end": 2854.52, + "words": [ + { + "word": " We'll", + "start": 2853.46, + "end": 2853.56, + "probability": 0.4697265625 + }, + { + "word": " probably", + "start": 2853.56, + "end": 2853.56, + "probability": 0.047698974609375 + }, + { + "word": " come", + "start": 2853.56, + "end": 2853.58, + "probability": 0.978515625 + }, + { + "word": " back", + "start": 2853.58, + "end": 2853.88, + "probability": 1.0 + }, + { + "word": " at", + "start": 2853.88, + "end": 2854.02, + "probability": 0.99853515625 + }, + { + "word": " some", + "start": 2854.02, + "end": 2854.2, + "probability": 1.0 + }, + { + "word": " point.", + "start": 2854.2, + "end": 2854.52, + "probability": 1.0 + } + ] + }, + { + "id": 1365, + "text": "I'll give it a shot.", + "start": 2855.04, + "end": 2855.98, + "words": [ + { + "word": " I'll", + "start": 2855.04, + "end": 2855.6, + "probability": 0.90380859375 + }, + { + "word": " give", + "start": 2855.6, + "end": 2855.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 2855.68, + "end": 2855.82, + "probability": 0.9736328125 + }, + { + "word": " a", + "start": 2855.82, + "end": 2855.86, + "probability": 1.0 + }, + { + "word": " shot.", + "start": 2855.86, + "end": 2855.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1366, + "text": "Cause I'm, I'm running out of gurus here.", + "start": 2856.14, + "end": 2858.06, + "words": [ + { + "word": " Cause", + "start": 2856.14, + "end": 2856.22, + "probability": 6.73532485961914e-05 + }, + { + "word": " I'm,", + "start": 2856.22, + "end": 2856.44, + "probability": 0.9970703125 + }, + { + "word": " I'm", + "start": 2856.44, + "end": 2856.9, + "probability": 1.0 + }, + { + "word": " running", + "start": 2856.9, + "end": 2857.02, + "probability": 0.98876953125 + }, + { + "word": " out", + "start": 2857.02, + "end": 2857.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 2857.32, + "end": 2857.46, + "probability": 1.0 + }, + { + "word": " gurus", + "start": 2857.46, + "end": 2857.8, + "probability": 0.9873046875 + }, + { + "word": " here.", + "start": 2857.8, + "end": 2858.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1367, + "text": "Okay.", + "start": 2858.62, + "end": 2859.18, + "words": [ + { + "word": " Okay.", + "start": 2858.62, + "end": 2859.18, + "probability": 0.42919921875 + } + ] + }, + { + "id": 1368, + "text": "I have a interesting problem and you've probably heard a", + "start": 2860.0, + "end": 2864.02, + "words": [ + { + "word": " I", + "start": 2860.0, + "end": 2860.56, + "probability": 0.9951171875 + }, + { + "word": " have", + "start": 2860.56, + "end": 2861.02, + "probability": 0.73681640625 + }, + { + "word": " a", + "start": 2861.02, + "end": 2861.3, + "probability": 0.97314453125 + }, + { + "word": " interesting", + "start": 2861.3, + "end": 2862.26, + "probability": 0.93359375 + }, + { + "word": " problem", + "start": 2862.26, + "end": 2862.92, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2862.92, + "end": 2863.16, + "probability": 0.900390625 + }, + { + "word": " you've", + "start": 2863.16, + "end": 2863.32, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 2863.32, + "end": 2863.58, + "probability": 1.0 + }, + { + "word": " heard", + "start": 2863.58, + "end": 2863.86, + "probability": 1.0 + }, + { + "word": " a", + "start": 2863.86, + "end": 2864.02, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1369, + "text": "variation of this before.", + "start": 2864.02, + "end": 2865.32, + "words": [ + { + "word": " variation", + "start": 2864.02, + "end": 2864.44, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2864.44, + "end": 2864.76, + "probability": 0.9990234375 + }, + { + "word": " this", + "start": 2864.76, + "end": 2864.94, + "probability": 1.0 + }, + { + "word": " before.", + "start": 2864.94, + "end": 2865.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1370, + "text": "Give you a little background.", + "start": 2865.72, + "end": 2867.04, + "words": [ + { + "word": " Give", + "start": 2865.72, + "end": 2866.28, + "probability": 0.08062744140625 + }, + { + "word": " you", + "start": 2866.28, + "end": 2866.48, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2866.48, + "end": 2866.54, + "probability": 1.0 + }, + { + "word": " little", + "start": 2866.54, + "end": 2866.64, + "probability": 1.0 + }, + { + "word": " background.", + "start": 2866.64, + "end": 2867.04, + "probability": 1.0 + } + ] + }, + { + "id": 1371, + "text": "My, my primary computer is a windows 10 machine.", + "start": 2868.6600000000003, + "end": 2872.1, + "words": [ + { + "word": " My,", + "start": 2868.6600000000003, + "end": 2869.2200000000003, + "probability": 0.986328125 + }, + { + "word": " my", + "start": 2869.2200000000003, + "end": 2869.78, + "probability": 0.99609375 + }, + { + "word": " primary", + "start": 2869.78, + "end": 2870.26, + "probability": 0.99853515625 + }, + { + "word": " computer", + "start": 2870.26, + "end": 2870.68, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 2870.68, + "end": 2871.08, + "probability": 1.0 + }, + { + "word": " a", + "start": 2871.08, + "end": 2871.14, + "probability": 0.9921875 + }, + { + "word": " windows", + "start": 2871.14, + "end": 2871.44, + "probability": 0.55322265625 + }, + { + "word": " 10", + "start": 2871.44, + "end": 2871.74, + "probability": 0.91064453125 + }, + { + "word": " machine.", + "start": 2871.74, + "end": 2872.1, + "probability": 1.0 + } + ] + }, + { + "id": 1372, + "text": "And about a year ago,", + "start": 2874.04, + "end": 2876.5, + "words": [ + { + "word": " And", + "start": 2874.04, + "end": 2874.6, + "probability": 0.91845703125 + }, + { + "word": " about", + "start": 2874.6, + "end": 2875.16, + "probability": 0.970703125 + }, + { + "word": " a", + "start": 2875.16, + "end": 2875.84, + "probability": 1.0 + }, + { + "word": " year", + "start": 2875.84, + "end": 2876.12, + "probability": 1.0 + }, + { + "word": " ago,", + "start": 2876.12, + "end": 2876.5, + "probability": 1.0 + } + ] + }, + { + "id": 1373, + "text": "I had a strange issue surface where one of my hard drives,", + "start": 2876.58, + "end": 2881.5, + "words": [ + { + "word": " I", + "start": 2876.58, + "end": 2877.02, + "probability": 0.99951171875 + }, + { + "word": " had", + "start": 2877.02, + "end": 2877.5, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 2877.5, + "end": 2877.68, + "probability": 0.9921875 + }, + { + "word": " strange", + "start": 2877.68, + "end": 2877.94, + "probability": 0.99658203125 + }, + { + "word": " issue", + "start": 2877.94, + "end": 2878.3, + "probability": 1.0 + }, + { + "word": " surface", + "start": 2878.3, + "end": 2878.78, + "probability": 0.99560546875 + }, + { + "word": " where", + "start": 2878.78, + "end": 2879.3, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 2879.3, + "end": 2880.34, + "probability": 0.98828125 + }, + { + "word": " of", + "start": 2880.34, + "end": 2880.62, + "probability": 1.0 + }, + { + "word": " my", + "start": 2880.62, + "end": 2880.86, + "probability": 1.0 + }, + { + "word": " hard", + "start": 2880.86, + "end": 2881.16, + "probability": 0.9990234375 + }, + { + "word": " drives,", + "start": 2881.16, + "end": 2881.5, + "probability": 0.99609375 + } + ] + }, + { + "id": 1374, + "text": "not the system drive,", + "start": 2881.56, + "end": 2882.72, + "words": [ + { + "word": " not", + "start": 2881.56, + "end": 2881.76, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 2881.76, + "end": 2881.98, + "probability": 0.99951171875 + }, + { + "word": " system", + "start": 2881.98, + "end": 2882.32, + "probability": 0.99853515625 + }, + { + "word": " drive,", + "start": 2882.32, + "end": 2882.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 1375, + "text": "but the drive,", + "start": 2882.78, + "end": 2883.34, + "words": [ + { + "word": " but", + "start": 2882.78, + "end": 2882.96, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2882.96, + "end": 2883.08, + "probability": 0.9990234375 + }, + { + "word": " drive,", + "start": 2883.08, + "end": 2883.34, + "probability": 0.37646484375 + } + ] + }, + { + "id": 1376, + "text": "I keep most of my data on because I'm using a solid,", + "start": 2883.46, + "end": 2885.98, + "words": [ + { + "word": " I", + "start": 2883.46, + "end": 2883.5, + "probability": 0.75537109375 + }, + { + "word": " keep", + "start": 2883.5, + "end": 2883.68, + "probability": 0.99560546875 + }, + { + "word": " most", + "start": 2883.68, + "end": 2884.0, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2884.0, + "end": 2884.1, + "probability": 1.0 + }, + { + "word": " my", + "start": 2884.1, + "end": 2884.22, + "probability": 1.0 + }, + { + "word": " data", + "start": 2884.22, + "end": 2884.5, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2884.5, + "end": 2884.76, + "probability": 0.99658203125 + }, + { + "word": " because", + "start": 2884.76, + "end": 2885.08, + "probability": 0.73486328125 + }, + { + "word": " I'm", + "start": 2885.08, + "end": 2885.32, + "probability": 0.955078125 + }, + { + "word": " using", + "start": 2885.32, + "end": 2885.46, + "probability": 0.9501953125 + }, + { + "word": " a", + "start": 2885.46, + "end": 2885.72, + "probability": 0.86376953125 + }, + { + "word": " solid,", + "start": 2885.72, + "end": 2885.98, + "probability": 0.9072265625 + } + ] + }, + { + "id": 1377, + "text": "an SSD for a boot drive.", + "start": 2886.02, + "end": 2887.6, + "words": [ + { + "word": " an", + "start": 2886.02, + "end": 2886.26, + "probability": 0.994140625 + }, + { + "word": " SSD", + "start": 2886.26, + "end": 2886.62, + "probability": 0.9921875 + }, + { + "word": " for", + "start": 2886.62, + "end": 2887.06, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 2887.06, + "end": 2887.18, + "probability": 0.9912109375 + }, + { + "word": " boot", + "start": 2887.18, + "end": 2887.32, + "probability": 0.9990234375 + }, + { + "word": " drive.", + "start": 2887.32, + "end": 2887.6, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1378, + "text": "Okay.", + "start": 2887.78, + "end": 2888.1, + "words": [ + { + "word": " Okay.", + "start": 2887.78, + "end": 2888.1, + "probability": 0.93798828125 + } + ] + }, + { + "id": 1379, + "text": "Okay.", + "start": 2889.04, + "end": 2889.58, + "words": [ + { + "word": " Okay.", + "start": 2889.04, + "end": 2889.58, + "probability": 0.4951171875 + } + ] + }, + { + "id": 1380, + "text": "So my E drive,", + "start": 2889.74, + "end": 2890.76, + "words": [ + { + "word": " So", + "start": 2889.74, + "end": 2889.9, + "probability": 0.99169921875 + }, + { + "word": " my", + "start": 2889.9, + "end": 2890.22, + "probability": 0.80224609375 + }, + { + "word": " E", + "start": 2890.22, + "end": 2890.42, + "probability": 0.59912109375 + }, + { + "word": " drive,", + "start": 2890.42, + "end": 2890.76, + "probability": 0.9208984375 + } + ] + }, + { + "id": 1381, + "text": "I started to have it a hundred percent disc usage all the", + "start": 2892.52, + "end": 2896.92, + "words": [ + { + "word": " I", + "start": 2892.52, + "end": 2893.06, + "probability": 0.966796875 + }, + { + "word": " started", + "start": 2893.06, + "end": 2893.6, + "probability": 1.0 + }, + { + "word": " to", + "start": 2893.6, + "end": 2893.72, + "probability": 1.0 + }, + { + "word": " have", + "start": 2893.72, + "end": 2894.02, + "probability": 1.0 + }, + { + "word": " it", + "start": 2894.02, + "end": 2894.12, + "probability": 0.97509765625 + }, + { + "word": " a", + "start": 2894.12, + "end": 2894.44, + "probability": 0.5439453125 + }, + { + "word": " hundred", + "start": 2894.44, + "end": 2894.76, + "probability": 0.99755859375 + }, + { + "word": " percent", + "start": 2894.76, + "end": 2895.28, + "probability": 1.0 + }, + { + "word": " disc", + "start": 2895.28, + "end": 2895.64, + "probability": 0.2117919921875 + }, + { + "word": " usage", + "start": 2895.64, + "end": 2896.14, + "probability": 1.0 + }, + { + "word": " all", + "start": 2896.14, + "end": 2896.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2896.7, + "end": 2896.92, + "probability": 1.0 + } + ] + }, + { + "id": 1382, + "text": "time.", + "start": 2896.92, + "end": 2897.32, + "words": [ + { + "word": " time.", + "start": 2896.92, + "end": 2897.32, + "probability": 1.0 + } + ] + }, + { + "id": 1383, + "text": "Okay.", + "start": 2897.42, + "end": 2897.88, + "words": [ + { + "word": " Okay.", + "start": 2897.42, + "end": 2897.88, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1384, + "text": "Even when nothing was accessing it.", + "start": 2898.2, + "end": 2900.28, + "words": [ + { + "word": " Even", + "start": 2898.2, + "end": 2898.74, + "probability": 0.84375 + }, + { + "word": " when", + "start": 2898.74, + "end": 2898.96, + "probability": 1.0 + }, + { + "word": " nothing", + "start": 2898.96, + "end": 2899.18, + "probability": 1.0 + }, + { + "word": " was", + "start": 2899.18, + "end": 2899.48, + "probability": 1.0 + }, + { + "word": " accessing", + "start": 2899.48, + "end": 2899.96, + "probability": 1.0 + }, + { + "word": " it.", + "start": 2899.96, + "end": 2900.28, + "probability": 1.0 + } + ] + }, + { + "id": 1385, + "text": "After a fair amount of hair pulling and head scratching,", + "start": 2901.26, + "end": 2904.46, + "words": [ + { + "word": " After", + "start": 2901.26, + "end": 2901.8, + "probability": 0.9912109375 + }, + { + "word": " a", + "start": 2901.8, + "end": 2902.28, + "probability": 1.0 + }, + { + "word": " fair", + "start": 2902.28, + "end": 2902.5, + "probability": 1.0 + }, + { + "word": " amount", + "start": 2902.5, + "end": 2902.76, + "probability": 1.0 + }, + { + "word": " of", + "start": 2902.76, + "end": 2903.08, + "probability": 1.0 + }, + { + "word": " hair", + "start": 2903.08, + "end": 2903.32, + "probability": 0.99951171875 + }, + { + "word": " pulling", + "start": 2903.32, + "end": 2903.62, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 2903.62, + "end": 2903.9, + "probability": 1.0 + }, + { + "word": " head", + "start": 2903.9, + "end": 2904.08, + "probability": 0.99951171875 + }, + { + "word": " scratching,", + "start": 2904.08, + "end": 2904.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1386, + "text": "I replaced the SATA cable and it worked perfectly fine.", + "start": 2905.3, + "end": 2909.02, + "words": [ + { + "word": " I", + "start": 2905.05, + "end": 2905.32, + "probability": 1.0 + }, + { + "word": " replaced", + "start": 2905.32, + "end": 2905.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 2905.92, + "end": 2906.26, + "probability": 1.0 + }, + { + "word": " SATA", + "start": 2906.26, + "end": 2906.7, + "probability": 0.84765625 + }, + { + "word": " cable", + "start": 2906.7, + "end": 2907.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 2907.04, + "end": 2907.68, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 2907.68, + "end": 2908.04, + "probability": 1.0 + }, + { + "word": " worked", + "start": 2908.04, + "end": 2908.26, + "probability": 1.0 + }, + { + "word": " perfectly", + "start": 2908.26, + "end": 2908.68, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 2908.68, + "end": 2909.02, + "probability": 1.0 + } + ] + }, + { + "id": 1387, + "text": "Okay.", + "start": 2909.54, + "end": 2910.08, + "words": [ + { + "word": " Okay.", + "start": 2909.54, + "end": 2910.08, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1388, + "text": "Which I thought was a bit of a little,", + "start": 2910.84, + "end": 2912.12, + "words": [ + { + "word": " Which", + "start": 2910.59, + "end": 2910.86, + "probability": 0.9677734375 + }, + { + "word": " I", + "start": 2910.86, + "end": 2911.0, + "probability": 0.99951171875 + }, + { + "word": " thought", + "start": 2911.0, + "end": 2911.12, + "probability": 1.0 + }, + { + "word": " was", + "start": 2911.12, + "end": 2911.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 2911.34, + "end": 2911.46, + "probability": 0.9990234375 + }, + { + "word": " bit", + "start": 2911.46, + "end": 2911.6, + "probability": 0.9912109375 + }, + { + "word": " of", + "start": 2911.6, + "end": 2911.7, + "probability": 0.701171875 + }, + { + "word": " a", + "start": 2911.7, + "end": 2911.8, + "probability": 0.78369140625 + }, + { + "word": " little,", + "start": 2911.8, + "end": 2912.12, + "probability": 0.59375 + } + ] + }, + { + "id": 1389, + "text": "but now I'm having a similar problem with the same drive,", + "start": 2913.46, + "end": 2916.44, + "words": [ + { + "word": " but", + "start": 2913.46, + "end": 2913.48, + "probability": 0.0004968643188476562 + }, + { + "word": " now", + "start": 2913.48, + "end": 2913.7, + "probability": 0.78076171875 + }, + { + "word": " I'm", + "start": 2913.7, + "end": 2914.06, + "probability": 0.9794921875 + }, + { + "word": " having", + "start": 2914.06, + "end": 2914.3, + "probability": 0.99609375 + }, + { + "word": " a", + "start": 2914.3, + "end": 2914.52, + "probability": 0.98583984375 + }, + { + "word": " similar", + "start": 2914.52, + "end": 2914.86, + "probability": 0.99853515625 + }, + { + "word": " problem", + "start": 2914.86, + "end": 2915.3, + "probability": 0.99658203125 + }, + { + "word": " with", + "start": 2915.3, + "end": 2915.64, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 2915.64, + "end": 2915.82, + "probability": 0.99853515625 + }, + { + "word": " same", + "start": 2915.82, + "end": 2916.02, + "probability": 0.951171875 + }, + { + "word": " drive,", + "start": 2916.02, + "end": 2916.44, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1390, + "text": "the exact same drive.", + "start": 2916.56, + "end": 2917.88, + "words": [ + { + "word": " the", + "start": 2916.56, + "end": 2916.74, + "probability": 0.990234375 + }, + { + "word": " exact", + "start": 2916.74, + "end": 2917.14, + "probability": 0.99951171875 + }, + { + "word": " same", + "start": 2917.14, + "end": 2917.48, + "probability": 0.99951171875 + }, + { + "word": " drive.", + "start": 2917.48, + "end": 2917.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1391, + "text": "Okay.", + "start": 2918.06, + "end": 2918.38, + "words": [ + { + "word": " Okay.", + "start": 2918.06, + "end": 2918.38, + "probability": 0.215087890625 + } + ] + }, + { + "id": 1392, + "text": "I now get a hundred percent drive usage only when I access", + "start": 2918.98, + "end": 2923.72, + "words": [ + { + "word": " I", + "start": 2918.98, + "end": 2919.56, + "probability": 0.83154296875 + }, + { + "word": " now", + "start": 2919.56, + "end": 2920.1, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 2920.1, + "end": 2920.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 2920.4, + "end": 2920.54, + "probability": 0.27490234375 + }, + { + "word": " hundred", + "start": 2920.54, + "end": 2920.74, + "probability": 0.95751953125 + }, + { + "word": " percent", + "start": 2920.74, + "end": 2921.22, + "probability": 1.0 + }, + { + "word": " drive", + "start": 2921.22, + "end": 2921.62, + "probability": 0.994140625 + }, + { + "word": " usage", + "start": 2921.62, + "end": 2921.94, + "probability": 0.99609375 + }, + { + "word": " only", + "start": 2921.94, + "end": 2922.74, + "probability": 0.9912109375 + }, + { + "word": " when", + "start": 2922.74, + "end": 2923.04, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 2923.04, + "end": 2923.22, + "probability": 1.0 + }, + { + "word": " access", + "start": 2923.22, + "end": 2923.72, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1393, + "text": "the drive,", + "start": 2923.72, + "end": 2924.26, + "words": [ + { + "word": " the", + "start": 2923.72, + "end": 2924.0, + "probability": 0.9990234375 + }, + { + "word": " drive,", + "start": 2924.0, + "end": 2924.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1394, + "text": "which of course is frequently because that's where my", + "start": 2924.34, + "end": 2926.54, + "words": [ + { + "word": " which", + "start": 2924.34, + "end": 2924.52, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 2924.52, + "end": 2924.7, + "probability": 0.96142578125 + }, + { + "word": " course", + "start": 2924.7, + "end": 2925.04, + "probability": 1.0 + }, + { + "word": " is", + "start": 2925.04, + "end": 2925.18, + "probability": 0.99853515625 + }, + { + "word": " frequently", + "start": 2925.18, + "end": 2925.5, + "probability": 1.0 + }, + { + "word": " because", + "start": 2925.5, + "end": 2925.92, + "probability": 0.87890625 + }, + { + "word": " that's", + "start": 2925.92, + "end": 2926.26, + "probability": 1.0 + }, + { + "word": " where", + "start": 2926.26, + "end": 2926.36, + "probability": 0.93408203125 + }, + { + "word": " my", + "start": 2926.36, + "end": 2926.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1395, + "text": "documents and everything else,", + "start": 2926.54, + "end": 2928.04, + "words": [ + { + "word": " documents", + "start": 2926.54, + "end": 2927.02, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 2927.02, + "end": 2927.3, + "probability": 0.99951171875 + }, + { + "word": " everything", + "start": 2927.3, + "end": 2927.58, + "probability": 1.0 + }, + { + "word": " else,", + "start": 2927.58, + "end": 2928.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1396, + "text": "which as you can imagine,", + "start": 2928.04, + "end": 2930.96, + "words": [ + { + "word": " which", + "start": 2928.04, + "end": 2928.38, + "probability": 0.9892578125 + }, + { + "word": " as", + "start": 2928.38, + "end": 2930.12, + "probability": 0.9638671875 + }, + { + "word": " you", + "start": 2930.12, + "end": 2930.32, + "probability": 1.0 + }, + { + "word": " can", + "start": 2930.32, + "end": 2930.46, + "probability": 0.9990234375 + }, + { + "word": " imagine,", + "start": 2930.46, + "end": 2930.96, + "probability": 1.0 + } + ] + }, + { + "id": 1397, + "text": "that brings the computer to its knees.", + "start": 2931.0, + "end": 2933.32, + "words": [ + { + "word": " that", + "start": 2931.0, + "end": 2931.62, + "probability": 0.95654296875 + }, + { + "word": " brings", + "start": 2931.62, + "end": 2931.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 2931.9, + "end": 2932.1, + "probability": 0.984375 + }, + { + "word": " computer", + "start": 2932.1, + "end": 2932.5, + "probability": 0.99365234375 + }, + { + "word": " to", + "start": 2932.5, + "end": 2932.78, + "probability": 0.99755859375 + }, + { + "word": " its", + "start": 2932.78, + "end": 2932.98, + "probability": 0.935546875 + }, + { + "word": " knees.", + "start": 2932.98, + "end": 2933.32, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1398, + "text": "Right.", + "start": 2934.2, + "end": 2934.24, + "words": [ + { + "word": " Right.", + "start": 2933.95, + "end": 2934.24, + "probability": 0.319580078125 + } + ] + }, + { + "id": 1399, + "text": "And I'm wondering if there may be something wrong with the", + "start": 2934.32, + "end": 2939.4, + "words": [ + { + "word": " And", + "start": 2934.32, + "end": 2934.6, + "probability": 0.9921875 + }, + { + "word": " I'm", + "start": 2934.6, + "end": 2935.38, + "probability": 0.986328125 + }, + { + "word": " wondering", + "start": 2935.38, + "end": 2935.9, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 2935.9, + "end": 2937.44, + "probability": 0.99609375 + }, + { + "word": " there", + "start": 2937.44, + "end": 2937.8, + "probability": 0.99951171875 + }, + { + "word": " may", + "start": 2937.8, + "end": 2937.96, + "probability": 1.0 + }, + { + "word": " be", + "start": 2937.96, + "end": 2938.12, + "probability": 1.0 + }, + { + "word": " something", + "start": 2938.12, + "end": 2938.38, + "probability": 0.99951171875 + }, + { + "word": " wrong", + "start": 2938.38, + "end": 2938.9, + "probability": 1.0 + }, + { + "word": " with", + "start": 2938.9, + "end": 2939.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 2939.2, + "end": 2939.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1400, + "text": "drive that's not showing up in the smart report,", + "start": 2939.4, + "end": 2942.26, + "words": [ + { + "word": " drive", + "start": 2939.4, + "end": 2939.86, + "probability": 0.99853515625 + }, + { + "word": " that's", + "start": 2939.86, + "end": 2940.28, + "probability": 0.9013671875 + }, + { + "word": " not", + "start": 2940.28, + "end": 2940.54, + "probability": 1.0 + }, + { + "word": " showing", + "start": 2940.54, + "end": 2940.96, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 2940.96, + "end": 2941.34, + "probability": 1.0 + }, + { + "word": " in", + "start": 2941.34, + "end": 2941.48, + "probability": 0.9423828125 + }, + { + "word": " the", + "start": 2941.48, + "end": 2941.6, + "probability": 1.0 + }, + { + "word": " smart", + "start": 2941.6, + "end": 2941.9, + "probability": 0.98486328125 + }, + { + "word": " report,", + "start": 2941.9, + "end": 2942.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1401, + "text": "every drive test,", + "start": 2942.42, + "end": 2943.24, + "words": [ + { + "word": " every", + "start": 2942.42, + "end": 2942.62, + "probability": 0.9970703125 + }, + { + "word": " drive", + "start": 2942.62, + "end": 2942.96, + "probability": 0.9990234375 + }, + { + "word": " test,", + "start": 2942.96, + "end": 2943.24, + "probability": 0.96044921875 + } + ] + }, + { + "id": 1402, + "text": "that I've run on it,", + "start": 2943.24, + "end": 2944.4, + "words": [ + { + "word": " that", + "start": 2943.24, + "end": 2943.5, + "probability": 0.85205078125 + }, + { + "word": " I've", + "start": 2943.5, + "end": 2943.72, + "probability": 0.9501953125 + }, + { + "word": " run", + "start": 2943.72, + "end": 2943.92, + "probability": 0.998046875 + }, + { + "word": " on", + "start": 2943.92, + "end": 2944.18, + "probability": 0.99951171875 + }, + { + "word": " it,", + "start": 2944.18, + "end": 2944.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1403, + "text": "doesn't find any problems,", + "start": 2946.32, + "end": 2947.88, + "words": [ + { + "word": " doesn't", + "start": 2946.32, + "end": 2946.84, + "probability": 0.76611328125 + }, + { + "word": " find", + "start": 2946.84, + "end": 2947.36, + "probability": 0.92626953125 + }, + { + "word": " any", + "start": 2947.36, + "end": 2947.58, + "probability": 0.9990234375 + }, + { + "word": " problems,", + "start": 2947.58, + "end": 2947.88, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1404, + "text": "but I find it hard to believe that I have another bad SATA", + "start": 2948.7400000000002, + "end": 2952.32, + "words": [ + { + "word": " but", + "start": 2948.7400000000002, + "end": 2949.26, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 2949.26, + "end": 2949.48, + "probability": 0.99951171875 + }, + { + "word": " find", + "start": 2949.48, + "end": 2949.78, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 2949.78, + "end": 2949.94, + "probability": 1.0 + }, + { + "word": " hard", + "start": 2949.94, + "end": 2950.1, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 2950.1, + "end": 2950.3, + "probability": 0.9990234375 + }, + { + "word": " believe", + "start": 2950.3, + "end": 2950.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 2950.6, + "end": 2950.8, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 2950.8, + "end": 2950.92, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2950.92, + "end": 2951.12, + "probability": 1.0 + }, + { + "word": " another", + "start": 2951.12, + "end": 2951.58, + "probability": 0.9990234375 + }, + { + "word": " bad", + "start": 2951.58, + "end": 2951.8, + "probability": 0.1392822265625 + }, + { + "word": " SATA", + "start": 2951.8, + "end": 2952.32, + "probability": 0.65625 + } + ] + }, + { + "id": 1405, + "text": "cable too.", + "start": 2952.32, + "end": 2952.92, + "words": [ + { + "word": " cable", + "start": 2952.32, + "end": 2952.6, + "probability": 0.99658203125 + }, + { + "word": " too.", + "start": 2952.6, + "end": 2952.92, + "probability": 0.344482421875 + } + ] + }, + { + "id": 1406, + "text": "The drive's fairly old.", + "start": 2953.44, + "end": 2955.0, + "words": [ + { + "word": " The", + "start": 2953.44, + "end": 2953.96, + "probability": 0.6025390625 + }, + { + "word": " drive's", + "start": 2953.96, + "end": 2954.26, + "probability": 0.9365234375 + }, + { + "word": " fairly", + "start": 2954.26, + "end": 2954.56, + "probability": 0.99951171875 + }, + { + "word": " old.", + "start": 2954.56, + "end": 2955.0, + "probability": 1.0 + } + ] + }, + { + "id": 1407, + "text": "It's got about over 600 days of usage on it,", + "start": 2955.1, + "end": 2958.06, + "words": [ + { + "word": " It's", + "start": 2955.1, + "end": 2955.44, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 2955.44, + "end": 2955.58, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 2955.58, + "end": 2955.82, + "probability": 0.9951171875 + }, + { + "word": " over", + "start": 2955.82, + "end": 2956.16, + "probability": 0.99951171875 + }, + { + "word": " 600", + "start": 2956.16, + "end": 2956.58, + "probability": 0.9990234375 + }, + { + "word": " days", + "start": 2956.58, + "end": 2957.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 2957.02, + "end": 2957.24, + "probability": 0.99951171875 + }, + { + "word": " usage", + "start": 2957.24, + "end": 2957.5, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 2957.5, + "end": 2957.9, + "probability": 0.998046875 + }, + { + "word": " it,", + "start": 2957.9, + "end": 2958.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1408, + "text": "according to the smart report.", + "start": 2958.08, + "end": 2959.24, + "words": [ + { + "word": " according", + "start": 2958.08, + "end": 2958.4, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 2958.4, + "end": 2958.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 2958.56, + "end": 2958.68, + "probability": 1.0 + }, + { + "word": " smart", + "start": 2958.68, + "end": 2958.9, + "probability": 0.357421875 + }, + { + "word": " report.", + "start": 2958.9, + "end": 2959.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1409, + "text": "So any thoughts on that?", + "start": 2959.66, + "end": 2961.72, + "words": [ + { + "word": " So", + "start": 2959.66, + "end": 2960.18, + "probability": 0.8017578125 + }, + { + "word": " any", + "start": 2960.18, + "end": 2960.94, + "probability": 0.671875 + }, + { + "word": " thoughts", + "start": 2960.94, + "end": 2961.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 2961.26, + "end": 2961.54, + "probability": 1.0 + }, + { + "word": " that?", + "start": 2961.54, + "end": 2961.72, + "probability": 1.0 + } + ] + }, + { + "id": 1410, + "text": "Well, 600 days,", + "start": 2963.1, + "end": 2964.5, + "words": [ + { + "word": " Well,", + "start": 2963.1, + "end": 2963.62, + "probability": 0.99609375 + }, + { + "word": " 600", + "start": 2963.62, + "end": 2964.14, + "probability": 0.8310546875 + }, + { + "word": " days,", + "start": 2964.14, + "end": 2964.5, + "probability": 1.0 + } + ] + }, + { + "id": 1411, + "text": "especially if the machine is on all the time,", + "start": 2964.54, + "end": 2966.14, + "words": [ + { + "word": " especially", + "start": 2964.54, + "end": 2964.82, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 2964.82, + "end": 2965.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2965.0, + "end": 2965.04, + "probability": 1.0 + }, + { + "word": " machine", + "start": 2965.04, + "end": 2965.24, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 2965.24, + "end": 2965.38, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 2965.38, + "end": 2965.5, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 2965.5, + "end": 2965.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 2965.64, + "end": 2965.76, + "probability": 1.0 + }, + { + "word": " time,", + "start": 2965.76, + "end": 2966.14, + "probability": 1.0 + } + ] + }, + { + "id": 1412, + "text": "then that's,", + "start": 2966.18, + "end": 2966.58, + "words": [ + { + "word": " then", + "start": 2966.18, + "end": 2966.28, + "probability": 0.92578125 + }, + { + "word": " that's,", + "start": 2966.28, + "end": 2966.58, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1413, + "text": "that's not a terrible,", + "start": 2966.58, + "end": 2967.84, + "words": [ + { + "word": " that's", + "start": 2966.58, + "end": 2966.9, + "probability": 0.9990234375 + }, + { + "word": " not", + "start": 2966.9, + "end": 2967.18, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 2967.18, + "end": 2967.32, + "probability": 0.99609375 + }, + { + "word": " terrible,", + "start": 2967.32, + "end": 2967.84, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1414, + "text": "you know,", + "start": 2967.9, + "end": 2968.18, + "words": [ + { + "word": " you", + "start": 2967.9, + "end": 2968.1, + "probability": 0.96826171875 + }, + { + "word": " know,", + "start": 2968.1, + "end": 2968.18, + "probability": 1.0 + } + ] + }, + { + "id": 1415, + "text": "it's not terribly high usage.", + "start": 2968.22, + "end": 2969.42, + "words": [ + { + "word": " it's", + "start": 2968.22, + "end": 2968.3, + "probability": 0.990234375 + }, + { + "word": " not", + "start": 2968.3, + "end": 2968.36, + "probability": 1.0 + }, + { + "word": " terribly", + "start": 2968.36, + "end": 2968.8, + "probability": 0.99951171875 + }, + { + "word": " high", + "start": 2968.8, + "end": 2969.04, + "probability": 0.99951171875 + }, + { + "word": " usage.", + "start": 2969.04, + "end": 2969.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1416, + "text": "It's on during the daytime.", + "start": 2970.22, + "end": 2971.88, + "words": [ + { + "word": " It's", + "start": 2970.22, + "end": 2970.74, + "probability": 0.994140625 + }, + { + "word": " on", + "start": 2970.74, + "end": 2970.86, + "probability": 0.99853515625 + }, + { + "word": " during", + "start": 2970.86, + "end": 2971.3, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 2971.3, + "end": 2971.56, + "probability": 1.0 + }, + { + "word": " daytime.", + "start": 2971.56, + "end": 2971.88, + "probability": 0.998046875 + } + ] + }, + { + "id": 1417, + "text": "Most of the time,", + "start": 2971.98, + "end": 2972.82, + "words": [ + { + "word": " Most", + "start": 2971.98, + "end": 2972.34, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 2972.34, + "end": 2972.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 2972.5, + "end": 2972.58, + "probability": 1.0 + }, + { + "word": " time,", + "start": 2972.58, + "end": 2972.82, + "probability": 1.0 + } + ] + }, + { + "id": 1418, + "text": "it gets turned off at night.", + "start": 2972.82, + "end": 2973.94, + "words": [ + { + "word": " it", + "start": 2972.82, + "end": 2972.92, + "probability": 0.377197265625 + }, + { + "word": " gets", + "start": 2972.92, + "end": 2973.06, + "probability": 0.9970703125 + }, + { + "word": " turned", + "start": 2973.06, + "end": 2973.3, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 2973.3, + "end": 2973.6, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 2973.6, + "end": 2973.76, + "probability": 0.97607421875 + }, + { + "word": " night.", + "start": 2973.76, + "end": 2973.94, + "probability": 0.97412109375 + } + ] + }, + { + "id": 1419, + "text": "Okay.", + "start": 2974.26, + "end": 2974.74, + "words": [ + { + "word": " Okay.", + "start": 2974.26, + "end": 2974.74, + "probability": 0.841796875 + } + ] + }, + { + "id": 1420, + "text": "So yeah,", + "start": 2974.84, + "end": 2975.34, + "words": [ + { + "word": " So", + "start": 2974.84, + "end": 2975.06, + "probability": 0.912109375 + }, + { + "word": " yeah,", + "start": 2975.06, + "end": 2975.34, + "probability": 0.1661376953125 + } + ] + }, + { + "id": 1421, + "text": "you're probably at the,", + "start": 2975.38, + "end": 2976.06, + "words": [ + { + "word": " you're", + "start": 2975.38, + "end": 2975.54, + "probability": 0.99609375 + }, + { + "word": " probably", + "start": 2975.54, + "end": 2975.78, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 2975.78, + "end": 2975.96, + "probability": 0.80712890625 + }, + { + "word": " the,", + "start": 2975.96, + "end": 2976.06, + "probability": 0.287109375 + } + ] + }, + { + "id": 1422, + "text": "about the end of the lifespan of that machine,", + "start": 2976.08, + "end": 2978.02, + "words": [ + { + "word": " about", + "start": 2976.08, + "end": 2976.42, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 2976.42, + "end": 2976.76, + "probability": 0.9990234375 + }, + { + "word": " end", + "start": 2976.76, + "end": 2977.0, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 2977.0, + "end": 2977.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2977.1, + "end": 2977.18, + "probability": 0.9990234375 + }, + { + "word": " lifespan", + "start": 2977.18, + "end": 2977.48, + "probability": 0.951171875 + }, + { + "word": " of", + "start": 2977.48, + "end": 2977.66, + "probability": 0.9931640625 + }, + { + "word": " that", + "start": 2977.66, + "end": 2977.78, + "probability": 0.9990234375 + }, + { + "word": " machine,", + "start": 2977.78, + "end": 2978.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1423, + "text": "if that's the case,", + "start": 2978.1, + "end": 2978.68, + "words": [ + { + "word": " if", + "start": 2978.1, + "end": 2978.2, + "probability": 0.9970703125 + }, + { + "word": " that's", + "start": 2978.2, + "end": 2978.42, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2978.42, + "end": 2978.42, + "probability": 0.95703125 + }, + { + "word": " case,", + "start": 2978.42, + "end": 2978.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1424, + "text": "cause you'd be at about four years there as far as age of", + "start": 2978.78, + "end": 2982.5, + "words": [ + { + "word": " cause", + "start": 2978.78, + "end": 2978.9, + "probability": 0.372314453125 + }, + { + "word": " you'd", + "start": 2978.9, + "end": 2979.1, + "probability": 0.775390625 + }, + { + "word": " be", + "start": 2979.1, + "end": 2979.28, + "probability": 0.99560546875 + }, + { + "word": " at", + "start": 2979.28, + "end": 2979.38, + "probability": 0.9853515625 + }, + { + "word": " about", + "start": 2979.38, + "end": 2979.54, + "probability": 0.9970703125 + }, + { + "word": " four", + "start": 2979.54, + "end": 2979.82, + "probability": 0.98876953125 + }, + { + "word": " years", + "start": 2979.82, + "end": 2980.2, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 2980.2, + "end": 2980.5, + "probability": 0.99365234375 + }, + { + "word": " as", + "start": 2980.5, + "end": 2980.76, + "probability": 0.80615234375 + }, + { + "word": " far", + "start": 2980.76, + "end": 2980.86, + "probability": 0.9873046875 + }, + { + "word": " as", + "start": 2980.86, + "end": 2981.12, + "probability": 0.99462890625 + }, + { + "word": " age", + "start": 2981.12, + "end": 2982.08, + "probability": 0.481689453125 + }, + { + "word": " of", + "start": 2982.08, + "end": 2982.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 1425, + "text": "the drive.", + "start": 2982.5, + "end": 2982.84, + "words": [ + { + "word": " the", + "start": 2982.5, + "end": 2982.58, + "probability": 0.99853515625 + }, + { + "word": " drive.", + "start": 2982.58, + "end": 2982.84, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1426, + "text": "The a hundred percent usage is likely not,", + "start": 2984.54, + "end": 2987.04, + "words": [ + { + "word": " The", + "start": 2984.54, + "end": 2985.02, + "probability": 0.7939453125 + }, + { + "word": " a", + "start": 2985.02, + "end": 2985.46, + "probability": 0.53076171875 + }, + { + "word": " hundred", + "start": 2985.46, + "end": 2985.6, + "probability": 0.9658203125 + }, + { + "word": " percent", + "start": 2985.6, + "end": 2985.78, + "probability": 0.98876953125 + }, + { + "word": " usage", + "start": 2985.78, + "end": 2986.16, + "probability": 0.990234375 + }, + { + "word": " is", + "start": 2986.16, + "end": 2986.36, + "probability": 0.97216796875 + }, + { + "word": " likely", + "start": 2986.36, + "end": 2986.62, + "probability": 0.99755859375 + }, + { + "word": " not,", + "start": 2986.62, + "end": 2987.04, + "probability": 0.94384765625 + } + ] + }, + { + "id": 1427, + "text": "wasn't the SATA cable in the first place.", + "start": 2987.14, + "end": 2989.32, + "words": [ + { + "word": " wasn't", + "start": 2987.14, + "end": 2987.58, + "probability": 0.8583984375 + }, + { + "word": " the", + "start": 2987.58, + "end": 2988.04, + "probability": 0.57568359375 + }, + { + "word": " SATA", + "start": 2988.04, + "end": 2988.28, + "probability": 0.97705078125 + }, + { + "word": " cable", + "start": 2988.28, + "end": 2988.5, + "probability": 0.9013671875 + }, + { + "word": " in", + "start": 2988.5, + "end": 2988.76, + "probability": 0.9912109375 + }, + { + "word": " the", + "start": 2988.76, + "end": 2988.84, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 2988.84, + "end": 2989.0, + "probability": 0.99951171875 + }, + { + "word": " place.", + "start": 2989.0, + "end": 2989.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1428, + "text": "It just is probably more coincidental that it started behaving", + "start": 2990.22, + "end": 2993.5, + "words": [ + { + "word": " It", + "start": 2990.22, + "end": 2990.7, + "probability": 0.95458984375 + }, + { + "word": " just", + "start": 2990.7, + "end": 2990.96, + "probability": 0.91796875 + }, + { + "word": " is", + "start": 2990.96, + "end": 2991.46, + "probability": 0.8310546875 + }, + { + "word": " probably", + "start": 2991.46, + "end": 2991.72, + "probability": 0.9990234375 + }, + { + "word": " more", + "start": 2991.72, + "end": 2991.98, + "probability": 0.99951171875 + }, + { + "word": " coincidental", + "start": 2991.98, + "end": 2992.52, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 2992.52, + "end": 2992.84, + "probability": 0.9921875 + }, + { + "word": " it", + "start": 2992.84, + "end": 2992.98, + "probability": 0.99169921875 + }, + { + "word": " started", + "start": 2992.98, + "end": 2993.2, + "probability": 0.95947265625 + }, + { + "word": " behaving", + "start": 2993.2, + "end": 2993.5, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1429, + "text": "afterwards.", + "start": 2993.5, + "end": 2994.12, + "words": [ + { + "word": " afterwards.", + "start": 2993.5, + "end": 2994.12, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1430, + "text": "You could have though a problem with the drive controller,", + "start": 2996.46, + "end": 2999.64, + "words": [ + { + "word": " You", + "start": 2996.46, + "end": 2996.94, + "probability": 0.98095703125 + }, + { + "word": " could", + "start": 2996.94, + "end": 2997.34, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 2997.34, + "end": 2997.58, + "probability": 0.99951171875 + }, + { + "word": " though", + "start": 2997.58, + "end": 2997.92, + "probability": 0.96044921875 + }, + { + "word": " a", + "start": 2997.92, + "end": 2998.32, + "probability": 0.60009765625 + }, + { + "word": " problem", + "start": 2998.32, + "end": 2998.78, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 2998.78, + "end": 2999.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 2999.0, + "end": 2999.12, + "probability": 0.9990234375 + }, + { + "word": " drive", + "start": 2999.12, + "end": 2999.3, + "probability": 0.9931640625 + }, + { + "word": " controller,", + "start": 2999.3, + "end": 2999.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1431, + "text": "which would be a motherboard issue or,", + "start": 2999.88, + "end": 3001.84, + "words": [ + { + "word": " which", + "start": 2999.88, + "end": 3000.22, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 3000.22, + "end": 3000.36, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 3000.36, + "end": 3000.52, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3000.52, + "end": 3000.6, + "probability": 0.9990234375 + }, + { + "word": " motherboard", + "start": 3000.6, + "end": 3000.98, + "probability": 0.99267578125 + }, + { + "word": " issue", + "start": 3000.98, + "end": 3001.36, + "probability": 0.99951171875 + }, + { + "word": " or,", + "start": 3001.36, + "end": 3001.84, + "probability": 0.8759765625 + } + ] + }, + { + "id": 1432, + "text": "you know,", + "start": 3001.84, + "end": 3002.36, + "words": [ + { + "word": " you", + "start": 3001.84, + "end": 3001.94, + "probability": 0.0003991127014160156 + }, + { + "word": " know,", + "start": 3001.94, + "end": 3002.36, + "probability": 0.990234375 + } + ] + }, + { + "id": 1433, + "text": "if you're plugged into some type of a SATA card,", + "start": 3002.4, + "end": 3004.98, + "words": [ + { + "word": " if", + "start": 3002.4, + "end": 3002.6, + "probability": 0.994140625 + }, + { + "word": " you're", + "start": 3002.6, + "end": 3003.06, + "probability": 0.99609375 + }, + { + "word": " plugged", + "start": 3003.06, + "end": 3003.28, + "probability": 0.99853515625 + }, + { + "word": " into", + "start": 3003.28, + "end": 3003.52, + "probability": 0.99462890625 + }, + { + "word": " some", + "start": 3003.52, + "end": 3004.1, + "probability": 0.9384765625 + }, + { + "word": " type", + "start": 3004.1, + "end": 3004.3, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3004.3, + "end": 3004.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 3004.44, + "end": 3004.54, + "probability": 0.9140625 + }, + { + "word": " SATA", + "start": 3004.54, + "end": 3004.76, + "probability": 0.89697265625 + }, + { + "word": " card,", + "start": 3004.76, + "end": 3004.98, + "probability": 0.998046875 + } + ] + }, + { + "id": 1434, + "text": "that could be the problem there.", + "start": 3005.12, + "end": 3006.24, + "words": [ + { + "word": " that", + "start": 3005.12, + "end": 3005.4, + "probability": 0.9990234375 + }, + { + "word": " could", + "start": 3005.4, + "end": 3005.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 3005.58, + "end": 3005.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 3005.7, + "end": 3005.8, + "probability": 0.994140625 + }, + { + "word": " problem", + "start": 3005.8, + "end": 3006.06, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3006.06, + "end": 3006.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 1435, + "text": "But if you look at,", + "start": 3007.32, + "end": 3008.6, + "words": [ + { + "word": " But", + "start": 3007.32, + "end": 3007.76, + "probability": 0.9521484375 + }, + { + "word": " if", + "start": 3007.76, + "end": 3008.06, + "probability": 0.95751953125 + }, + { + "word": " you", + "start": 3008.06, + "end": 3008.24, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 3008.24, + "end": 3008.46, + "probability": 0.99951171875 + }, + { + "word": " at,", + "start": 3008.46, + "end": 3008.6, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1436, + "text": "you said this one does 10 on this machine.", + "start": 3008.64, + "end": 3010.22, + "words": [ + { + "word": " you", + "start": 3008.64, + "end": 3009.02, + "probability": 0.99951171875 + }, + { + "word": " said", + "start": 3009.02, + "end": 3009.2, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 3009.2, + "end": 3009.32, + "probability": 0.20361328125 + }, + { + "word": " one", + "start": 3009.32, + "end": 3009.46, + "probability": 0.355712890625 + }, + { + "word": " does", + "start": 3009.46, + "end": 3009.56, + "probability": 0.43798828125 + }, + { + "word": " 10", + "start": 3009.56, + "end": 3009.72, + "probability": 0.880859375 + }, + { + "word": " on", + "start": 3009.72, + "end": 3009.86, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 3009.86, + "end": 3009.98, + "probability": 0.99951171875 + }, + { + "word": " machine.", + "start": 3009.98, + "end": 3010.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1437, + "text": "Yeah.", + "start": 3010.78, + "end": 3011.22, + "words": [ + { + "word": " Yeah.", + "start": 3010.78, + "end": 3011.22, + "probability": 0.8955078125 + } + ] + }, + { + "id": 1438, + "text": "If you look at the performance monitor and you look under disk usage,", + "start": 3011.3, + "end": 3013.94, + "words": [ + { + "word": " If", + "start": 3011.3, + "end": 3011.54, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 3011.54, + "end": 3011.64, + "probability": 1.0 + }, + { + "word": " look", + "start": 3011.64, + "end": 3011.76, + "probability": 1.0 + }, + { + "word": " at", + "start": 3011.76, + "end": 3011.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 3011.86, + "end": 3011.9, + "probability": 0.9990234375 + }, + { + "word": " performance", + "start": 3011.9, + "end": 3012.16, + "probability": 0.99658203125 + }, + { + "word": " monitor", + "start": 3012.16, + "end": 3012.54, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3012.54, + "end": 3012.88, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 3012.88, + "end": 3012.96, + "probability": 1.0 + }, + { + "word": " look", + "start": 3012.96, + "end": 3013.1, + "probability": 0.9990234375 + }, + { + "word": " under", + "start": 3013.1, + "end": 3013.28, + "probability": 0.99951171875 + }, + { + "word": " disk", + "start": 3013.28, + "end": 3013.56, + "probability": 0.38232421875 + }, + { + "word": " usage,", + "start": 3013.56, + "end": 3013.94, + "probability": 1.0 + } + ] + }, + { + "id": 1439, + "text": "does it tell you what is using your,", + "start": 3013.98, + "end": 3015.78, + "words": [ + { + "word": " does", + "start": 3013.98, + "end": 3014.24, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3014.24, + "end": 3014.36, + "probability": 1.0 + }, + { + "word": " tell", + "start": 3014.36, + "end": 3014.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 3014.52, + "end": 3014.68, + "probability": 1.0 + }, + { + "word": " what", + "start": 3014.68, + "end": 3014.98, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3014.98, + "end": 3015.2, + "probability": 1.0 + }, + { + "word": " using", + "start": 3015.2, + "end": 3015.5, + "probability": 0.99951171875 + }, + { + "word": " your,", + "start": 3015.5, + "end": 3015.78, + "probability": 1.0 + } + ] + }, + { + "id": 1440, + "text": "your disc?", + "start": 3015.8, + "end": 3016.4, + "words": [ + { + "word": " your", + "start": 3015.8, + "end": 3016.1, + "probability": 1.0 + }, + { + "word": " disc?", + "start": 3016.1, + "end": 3016.4, + "probability": 0.21630859375 + } + ] + }, + { + "id": 1441, + "text": "Have you been into the performance monitor?", + "start": 3018.54, + "end": 3020.48, + "words": [ + { + "word": " Have", + "start": 3018.54, + "end": 3018.98, + "probability": 0.966796875 + }, + { + "word": " you", + "start": 3018.98, + "end": 3019.36, + "probability": 1.0 + }, + { + "word": " been", + "start": 3019.36, + "end": 3019.5, + "probability": 0.99609375 + }, + { + "word": " into", + "start": 3019.5, + "end": 3019.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3019.72, + "end": 3019.86, + "probability": 1.0 + }, + { + "word": " performance", + "start": 3019.86, + "end": 3020.12, + "probability": 0.994140625 + }, + { + "word": " monitor?", + "start": 3020.12, + "end": 3020.48, + "probability": 1.0 + } + ] + }, + { + "id": 1442, + "text": "Yeah.", + "start": 3020.66, + "end": 3020.88, + "words": [ + { + "word": " Yeah.", + "start": 3020.66, + "end": 3020.88, + "probability": 0.9013671875 + } + ] + }, + { + "id": 1443, + "text": "I've looked at the resource monitor and the performance monitor,", + "start": 3020.94, + "end": 3023.9, + "words": [ + { + "word": " I've", + "start": 3020.94, + "end": 3021.34, + "probability": 0.99560546875 + }, + { + "word": " looked", + "start": 3021.34, + "end": 3021.52, + "probability": 0.99853515625 + }, + { + "word": " at", + "start": 3021.52, + "end": 3021.72, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3021.72, + "end": 3021.86, + "probability": 0.998046875 + }, + { + "word": " resource", + "start": 3021.86, + "end": 3022.1, + "probability": 0.96142578125 + }, + { + "word": " monitor", + "start": 3022.1, + "end": 3022.66, + "probability": 1.0 + }, + { + "word": " and", + "start": 3022.66, + "end": 3022.92, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 3022.92, + "end": 3022.98, + "probability": 1.0 + }, + { + "word": " performance", + "start": 3022.98, + "end": 3023.34, + "probability": 1.0 + }, + { + "word": " monitor,", + "start": 3023.34, + "end": 3023.9, + "probability": 1.0 + } + ] + }, + { + "id": 1444, + "text": "and there's a lot of things that use the disc.", + "start": 3023.94, + "end": 3027.28, + "words": [ + { + "word": " and", + "start": 3023.94, + "end": 3024.66, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3024.66, + "end": 3025.74, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 3025.74, + "end": 3025.84, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3025.84, + "end": 3026.04, + "probability": 1.0 + }, + { + "word": " of", + "start": 3026.04, + "end": 3026.16, + "probability": 1.0 + }, + { + "word": " things", + "start": 3026.16, + "end": 3026.46, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3026.46, + "end": 3026.66, + "probability": 0.9267578125 + }, + { + "word": " use", + "start": 3026.66, + "end": 3026.84, + "probability": 0.9697265625 + }, + { + "word": " the", + "start": 3026.84, + "end": 3027.1, + "probability": 0.9853515625 + }, + { + "word": " disc.", + "start": 3027.1, + "end": 3027.28, + "probability": 0.52197265625 + } + ] + }, + { + "id": 1445, + "text": "But basically anything at the moment that's using the disc,", + "start": 3028.06, + "end": 3031.68, + "words": [ + { + "word": " But", + "start": 3028.06, + "end": 3028.5, + "probability": 0.99365234375 + }, + { + "word": " basically", + "start": 3028.5, + "end": 3028.94, + "probability": 1.0 + }, + { + "word": " anything", + "start": 3028.94, + "end": 3029.54, + "probability": 0.99658203125 + }, + { + "word": " at", + "start": 3029.54, + "end": 3029.98, + "probability": 0.826171875 + }, + { + "word": " the", + "start": 3029.98, + "end": 3030.12, + "probability": 1.0 + }, + { + "word": " moment", + "start": 3030.12, + "end": 3030.42, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3030.42, + "end": 3030.72, + "probability": 0.908203125 + }, + { + "word": " using", + "start": 3030.72, + "end": 3030.98, + "probability": 0.98876953125 + }, + { + "word": " the", + "start": 3030.98, + "end": 3031.4, + "probability": 0.998046875 + }, + { + "word": " disc,", + "start": 3031.4, + "end": 3031.68, + "probability": 0.828125 + } + ] + }, + { + "id": 1446, + "text": "it seems to be hogging a hundred percent of the disc.", + "start": 3031.68, + "end": 3033.82, + "words": [ + { + "word": " it", + "start": 3031.68, + "end": 3031.72, + "probability": 0.030670166015625 + }, + { + "word": " seems", + "start": 3031.72, + "end": 3031.96, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 3031.96, + "end": 3032.14, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 3032.14, + "end": 3032.34, + "probability": 1.0 + }, + { + "word": " hogging", + "start": 3032.34, + "end": 3032.68, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3032.68, + "end": 3032.76, + "probability": 0.008575439453125 + }, + { + "word": " hundred", + "start": 3032.76, + "end": 3032.98, + "probability": 0.97802734375 + }, + { + "word": " percent", + "start": 3032.98, + "end": 3033.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 3033.38, + "end": 3033.56, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 3033.56, + "end": 3033.66, + "probability": 0.96826171875 + }, + { + "word": " disc.", + "start": 3033.66, + "end": 3033.82, + "probability": 0.196044921875 + } + ] + }, + { + "id": 1447, + "text": "Some of the things that are using the disc periodically is the page", + "start": 3035.2, + "end": 3038.86, + "words": [ + { + "word": " Some", + "start": 3035.2, + "end": 3035.6, + "probability": 0.501953125 + }, + { + "word": " of", + "start": 3035.6, + "end": 3035.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 3035.84, + "end": 3035.92, + "probability": 1.0 + }, + { + "word": " things", + "start": 3035.92, + "end": 3036.22, + "probability": 1.0 + }, + { + "word": " that", + "start": 3036.22, + "end": 3036.46, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3036.46, + "end": 3036.58, + "probability": 0.99951171875 + }, + { + "word": " using", + "start": 3036.58, + "end": 3036.96, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3036.96, + "end": 3037.18, + "probability": 0.9990234375 + }, + { + "word": " disc", + "start": 3037.18, + "end": 3037.38, + "probability": 0.96533203125 + }, + { + "word": " periodically", + "start": 3037.38, + "end": 3038.0, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3038.0, + "end": 3038.48, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 3038.48, + "end": 3038.62, + "probability": 0.97509765625 + }, + { + "word": " page", + "start": 3038.62, + "end": 3038.86, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1448, + "text": "file.", + "start": 3038.86, + "end": 3039.22, + "words": [ + { + "word": " file.", + "start": 3038.86, + "end": 3039.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1449, + "text": "And I expanded the size of the page file.", + "start": 3039.32, + "end": 3041.46, + "words": [ + { + "word": " And", + "start": 3039.32, + "end": 3039.5, + "probability": 0.97216796875 + }, + { + "word": " I", + "start": 3039.5, + "end": 3039.6, + "probability": 0.99951171875 + }, + { + "word": " expanded", + "start": 3039.6, + "end": 3040.12, + "probability": 0.94140625 + }, + { + "word": " the", + "start": 3040.12, + "end": 3040.28, + "probability": 0.94873046875 + }, + { + "word": " size", + "start": 3040.28, + "end": 3040.58, + "probability": 0.9130859375 + }, + { + "word": " of", + "start": 3040.58, + "end": 3040.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 3040.74, + "end": 3040.86, + "probability": 1.0 + }, + { + "word": " page", + "start": 3040.86, + "end": 3041.08, + "probability": 0.99951171875 + }, + { + "word": " file.", + "start": 3041.08, + "end": 3041.46, + "probability": 1.0 + } + ] + }, + { + "id": 1450, + "text": "How much memory do you have on the computer?", + "start": 3041.94, + "end": 3043.4, + "words": [ + { + "word": " How", + "start": 3041.94, + "end": 3042.34, + "probability": 0.99462890625 + }, + { + "word": " much", + "start": 3042.34, + "end": 3042.5, + "probability": 0.99951171875 + }, + { + "word": " memory", + "start": 3042.5, + "end": 3042.7, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 3042.7, + "end": 3042.84, + "probability": 1.0 + }, + { + "word": " you", + "start": 3042.84, + "end": 3042.92, + "probability": 1.0 + }, + { + "word": " have", + "start": 3042.92, + "end": 3043.02, + "probability": 1.0 + }, + { + "word": " on", + "start": 3043.02, + "end": 3043.1, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3043.1, + "end": 3043.18, + "probability": 0.99853515625 + }, + { + "word": " computer?", + "start": 3043.18, + "end": 3043.4, + "probability": 1.0 + } + ] + }, + { + "id": 1451, + "text": "I got six,", + "start": 3043.8, + "end": 3044.7, + "words": [ + { + "word": " I", + "start": 3043.8, + "end": 3044.2, + "probability": 0.9990234375 + }, + { + "word": " got", + "start": 3044.2, + "end": 3044.38, + "probability": 0.98974609375 + }, + { + "word": " six,", + "start": 3044.38, + "end": 3044.7, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1452, + "text": "six gigs of RAM on it.", + "start": 3044.7, + "end": 3046.28, + "words": [ + { + "word": " six", + "start": 3044.7, + "end": 3045.1, + "probability": 0.9990234375 + }, + { + "word": " gigs", + "start": 3045.1, + "end": 3045.46, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3045.46, + "end": 3045.66, + "probability": 0.9951171875 + }, + { + "word": " RAM", + "start": 3045.66, + "end": 3045.86, + "probability": 0.82080078125 + }, + { + "word": " on", + "start": 3045.86, + "end": 3046.06, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 3046.06, + "end": 3046.28, + "probability": 1.0 + } + ] + }, + { + "id": 1453, + "text": "Okay.", + "start": 3046.3, + "end": 3046.62, + "words": [ + { + "word": " Okay.", + "start": 3046.3, + "end": 3046.62, + "probability": 0.880859375 + } + ] + }, + { + "id": 1454, + "text": "And that's a windows 10 64 bit.", + "start": 3047.06, + "end": 3049.44, + "words": [ + { + "word": " And", + "start": 3047.06, + "end": 3047.46, + "probability": 0.9853515625 + }, + { + "word": " that's", + "start": 3047.46, + "end": 3047.86, + "probability": 0.9404296875 + }, + { + "word": " a", + "start": 3047.86, + "end": 3047.86, + "probability": 0.990234375 + }, + { + "word": " windows", + "start": 3047.86, + "end": 3048.26, + "probability": 0.51953125 + }, + { + "word": " 10", + "start": 3048.26, + "end": 3048.54, + "probability": 0.99951171875 + }, + { + "word": " 64", + "start": 3048.54, + "end": 3049.08, + "probability": 0.822265625 + }, + { + "word": " bit.", + "start": 3049.08, + "end": 3049.44, + "probability": 0.95263671875 + } + ] + }, + { + "id": 1455, + "text": "Okay.", + "start": 3049.86, + "end": 3050.26, + "words": [ + { + "word": " Okay.", + "start": 3049.86, + "end": 3050.26, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1456, + "text": "So what are you using to test the drive as far as whether or", + "start": 3050.66, + "end": 3054.58, + "words": [ + { + "word": " So", + "start": 3050.66, + "end": 3051.06, + "probability": 0.99609375 + }, + { + "word": " what", + "start": 3051.06, + "end": 3052.24, + "probability": 0.99462890625 + }, + { + "word": " are", + "start": 3052.24, + "end": 3052.38, + "probability": 1.0 + }, + { + "word": " you", + "start": 3052.38, + "end": 3052.5, + "probability": 1.0 + }, + { + "word": " using", + "start": 3052.5, + "end": 3052.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 3052.76, + "end": 3052.92, + "probability": 1.0 + }, + { + "word": " test", + "start": 3052.92, + "end": 3053.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 3053.24, + "end": 3053.4, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3053.4, + "end": 3053.62, + "probability": 0.998046875 + }, + { + "word": " as", + "start": 3053.62, + "end": 3053.82, + "probability": 0.99755859375 + }, + { + "word": " far", + "start": 3053.82, + "end": 3053.94, + "probability": 1.0 + }, + { + "word": " as", + "start": 3053.94, + "end": 3054.18, + "probability": 1.0 + }, + { + "word": " whether", + "start": 3054.18, + "end": 3054.46, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 3054.46, + "end": 3054.58, + "probability": 1.0 + } + ] + }, + { + "id": 1457, + "text": "not it's good or not?", + "start": 3054.58, + "end": 3055.26, + "words": [ + { + "word": " not", + "start": 3054.58, + "end": 3054.68, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3054.68, + "end": 3054.82, + "probability": 1.0 + }, + { + "word": " good", + "start": 3054.82, + "end": 3054.96, + "probability": 1.0 + }, + { + "word": " or", + "start": 3054.96, + "end": 3055.08, + "probability": 0.99951171875 + }, + { + "word": " not?", + "start": 3055.08, + "end": 3055.26, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1458, + "text": "Well,", + "start": 3056.0, + "end": 3056.4, + "words": [ + { + "word": " Well,", + "start": 3056.0, + "end": 3056.4, + "probability": 0.93212890625 + } + ] + }, + { + "id": 1459, + "text": "I use,", + "start": 3056.6, + "end": 3057.14, + "words": [ + { + "word": " I", + "start": 3056.6, + "end": 3056.76, + "probability": 1.0 + }, + { + "word": " use,", + "start": 3056.76, + "end": 3057.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1460, + "text": "I've used crystal disc info.", + "start": 3058.16, + "end": 3059.92, + "words": [ + { + "word": " I've", + "start": 3058.16, + "end": 3058.56, + "probability": 0.943359375 + }, + { + "word": " used", + "start": 3058.56, + "end": 3058.7, + "probability": 1.0 + }, + { + "word": " crystal", + "start": 3058.7, + "end": 3059.18, + "probability": 0.94189453125 + }, + { + "word": " disc", + "start": 3059.18, + "end": 3059.42, + "probability": 0.75 + }, + { + "word": " info.", + "start": 3059.42, + "end": 3059.92, + "probability": 1.0 + } + ] + }, + { + "id": 1461, + "text": "I use,", + "start": 3060.7599999999998, + "end": 3061.56, + "words": [ + { + "word": " I", + "start": 3060.7599999999998, + "end": 3061.16, + "probability": 0.9853515625 + }, + { + "word": " use,", + "start": 3061.16, + "end": 3061.56, + "probability": 0.9443359375 + } + ] + }, + { + "id": 1462, + "text": "I use the Western digital data life card,", + "start": 3061.56, + "end": 3064.46, + "words": [ + { + "word": " I", + "start": 3061.56, + "end": 3061.7, + "probability": 0.08819580078125 + }, + { + "word": " use", + "start": 3061.7, + "end": 3061.7, + "probability": 0.52001953125 + }, + { + "word": " the", + "start": 3061.7, + "end": 3061.88, + "probability": 0.9970703125 + }, + { + "word": " Western", + "start": 3061.88, + "end": 3062.74, + "probability": 0.9912109375 + }, + { + "word": " digital", + "start": 3062.74, + "end": 3063.18, + "probability": 0.0084381103515625 + }, + { + "word": " data", + "start": 3063.18, + "end": 3063.74, + "probability": 0.9248046875 + }, + { + "word": " life", + "start": 3063.74, + "end": 3064.02, + "probability": 0.9609375 + }, + { + "word": " card,", + "start": 3064.02, + "end": 3064.46, + "probability": 0.90771484375 + } + ] + }, + { + "id": 1463, + "text": "both of which reads the smart and smart data.", + "start": 3065.48, + "end": 3067.82, + "words": [ + { + "word": " both", + "start": 3065.22, + "end": 3065.52, + "probability": 0.93212890625 + }, + { + "word": " of", + "start": 3065.52, + "end": 3065.8, + "probability": 0.99755859375 + }, + { + "word": " which", + "start": 3065.8, + "end": 3066.02, + "probability": 0.99853515625 + }, + { + "word": " reads", + "start": 3066.02, + "end": 3066.3, + "probability": 0.2388916015625 + }, + { + "word": " the", + "start": 3066.3, + "end": 3066.5, + "probability": 0.8076171875 + }, + { + "word": " smart", + "start": 3066.5, + "end": 3066.76, + "probability": 0.91748046875 + }, + { + "word": " and", + "start": 3066.76, + "end": 3066.94, + "probability": 0.09625244140625 + }, + { + "word": " smart", + "start": 3066.94, + "end": 3067.46, + "probability": 0.96484375 + }, + { + "word": " data.", + "start": 3067.46, + "end": 3067.82, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1464, + "text": "And then I've looked at,", + "start": 3068.14, + "end": 3070.34, + "words": [ + { + "word": " And", + "start": 3068.14, + "end": 3068.74, + "probability": 0.7998046875 + }, + { + "word": " then", + "start": 3068.74, + "end": 3069.3, + "probability": 0.99853515625 + }, + { + "word": " I've", + "start": 3069.3, + "end": 3069.62, + "probability": 0.99462890625 + }, + { + "word": " looked", + "start": 3069.62, + "end": 3069.94, + "probability": 0.99951171875 + }, + { + "word": " at,", + "start": 3069.94, + "end": 3070.34, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1465, + "text": "I've looked at the resource monitor and noticed that the access times tend", + "start": 3071.06, + "end": 3075.44, + "words": [ + { + "word": " I've", + "start": 3070.8799999999997, + "end": 3071.18, + "probability": 0.9912109375 + }, + { + "word": " looked", + "start": 3071.18, + "end": 3071.42, + "probability": 1.0 + }, + { + "word": " at", + "start": 3071.42, + "end": 3071.64, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3071.64, + "end": 3071.74, + "probability": 0.99951171875 + }, + { + "word": " resource", + "start": 3071.74, + "end": 3072.04, + "probability": 0.9970703125 + }, + { + "word": " monitor", + "start": 3072.04, + "end": 3072.64, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3072.64, + "end": 3072.92, + "probability": 0.99755859375 + }, + { + "word": " noticed", + "start": 3072.92, + "end": 3073.22, + "probability": 0.90576171875 + }, + { + "word": " that", + "start": 3073.22, + "end": 3073.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3073.46, + "end": 3073.62, + "probability": 1.0 + }, + { + "word": " access", + "start": 3073.62, + "end": 3073.98, + "probability": 0.9970703125 + }, + { + "word": " times", + "start": 3073.98, + "end": 3074.46, + "probability": 1.0 + }, + { + "word": " tend", + "start": 3074.46, + "end": 3075.44, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1466, + "text": "to be very high.", + "start": 3076.2599999999998, + "end": 3077.02, + "words": [ + { + "word": " to", + "start": 3075.96, + "end": 3076.26, + "probability": 1.0 + }, + { + "word": " be", + "start": 3076.26, + "end": 3076.42, + "probability": 1.0 + }, + { + "word": " very", + "start": 3076.42, + "end": 3076.66, + "probability": 1.0 + }, + { + "word": " high.", + "start": 3076.66, + "end": 3077.02, + "probability": 1.0 + } + ] + }, + { + "id": 1467, + "text": "And I also looked at the error logs and the error logs had a", + "start": 3077.18, + "end": 3082.02, + "words": [ + { + "word": " And", + "start": 3077.18, + "end": 3077.72, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3077.72, + "end": 3077.96, + "probability": 1.0 + }, + { + "word": " also", + "start": 3077.96, + "end": 3078.3, + "probability": 1.0 + }, + { + "word": " looked", + "start": 3078.3, + "end": 3078.7, + "probability": 1.0 + }, + { + "word": " at", + "start": 3078.7, + "end": 3078.96, + "probability": 1.0 + }, + { + "word": " the", + "start": 3078.96, + "end": 3079.16, + "probability": 1.0 + }, + { + "word": " error", + "start": 3079.16, + "end": 3079.5, + "probability": 0.9990234375 + }, + { + "word": " logs", + "start": 3079.5, + "end": 3079.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 3079.86, + "end": 3080.18, + "probability": 0.98486328125 + }, + { + "word": " the", + "start": 3080.18, + "end": 3080.32, + "probability": 1.0 + }, + { + "word": " error", + "start": 3080.32, + "end": 3080.58, + "probability": 0.99951171875 + }, + { + "word": " logs", + "start": 3080.58, + "end": 3081.04, + "probability": 1.0 + }, + { + "word": " had", + "start": 3081.04, + "end": 3081.8, + "probability": 0.94970703125 + }, + { + "word": " a", + "start": 3081.8, + "end": 3082.02, + "probability": 1.0 + } + ] + }, + { + "id": 1468, + "text": "lot of caution,", + "start": 3082.02, + "end": 3083.48, + "words": [ + { + "word": " lot", + "start": 3082.02, + "end": 3082.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 3082.34, + "end": 3082.64, + "probability": 1.0 + }, + { + "word": " caution,", + "start": 3082.64, + "end": 3083.48, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1469, + "text": "caution symbols.", + "start": 3084.32, + "end": 3085.02, + "words": [ + { + "word": " caution", + "start": 3084.16, + "end": 3084.46, + "probability": 0.99755859375 + }, + { + "word": " symbols.", + "start": 3084.46, + "end": 3085.02, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1470, + "text": "And they're saying address was,", + "start": 3085.08, + "end": 3087.24, + "words": [ + { + "word": " And", + "start": 3085.08, + "end": 3085.38, + "probability": 0.990234375 + }, + { + "word": " they're", + "start": 3085.38, + "end": 3085.58, + "probability": 0.9912109375 + }, + { + "word": " saying", + "start": 3085.58, + "end": 3085.92, + "probability": 1.0 + }, + { + "word": " address", + "start": 3085.92, + "end": 3086.76, + "probability": 0.82080078125 + }, + { + "word": " was,", + "start": 3086.76, + "end": 3087.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1471, + "text": "we tried something along those lines.", + "start": 3087.28, + "end": 3089.24, + "words": [ + { + "word": " we", + "start": 3087.28, + "end": 3087.4, + "probability": 0.99267578125 + }, + { + "word": " tried", + "start": 3087.4, + "end": 3087.74, + "probability": 0.99853515625 + }, + { + "word": " something", + "start": 3087.74, + "end": 3088.02, + "probability": 0.96875 + }, + { + "word": " along", + "start": 3088.02, + "end": 3088.6, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 3088.6, + "end": 3088.88, + "probability": 0.9990234375 + }, + { + "word": " lines.", + "start": 3088.88, + "end": 3089.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1472, + "text": "Okay.", + "start": 3089.92, + "end": 3090.52, + "words": [ + { + "word": " Okay.", + "start": 3089.92, + "end": 3090.52, + "probability": 0.0321044921875 + } + ] + }, + { + "id": 1473, + "text": "I remember the exact,", + "start": 3090.52, + "end": 3091.34, + "words": [ + { + "word": " I", + "start": 3090.52, + "end": 3090.52, + "probability": 0.90771484375 + }, + { + "word": " remember", + "start": 3090.52, + "end": 3090.74, + "probability": 0.1512451171875 + }, + { + "word": " the", + "start": 3090.74, + "end": 3091.04, + "probability": 0.99755859375 + }, + { + "word": " exact,", + "start": 3091.04, + "end": 3091.34, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1474, + "text": "the exact wording,", + "start": 3091.34, + "end": 3091.64, + "words": [ + { + "word": " the", + "start": 3091.34, + "end": 3091.44, + "probability": 0.0035858154296875 + }, + { + "word": " exact", + "start": 3091.44, + "end": 3091.44, + "probability": 0.8828125 + }, + { + "word": " wording,", + "start": 3091.44, + "end": 3091.64, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1475, + "text": "but it was,", + "start": 3091.78, + "end": 3092.26, + "words": [ + { + "word": " but", + "start": 3091.78, + "end": 3091.86, + "probability": 0.9912109375 + }, + { + "word": " it", + "start": 3091.86, + "end": 3092.02, + "probability": 0.99609375 + }, + { + "word": " was,", + "start": 3092.02, + "end": 3092.26, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1476, + "text": "it was a desk issue in the,", + "start": 3092.26, + "end": 3094.5, + "words": [ + { + "word": " it", + "start": 3092.26, + "end": 3092.48, + "probability": 0.96533203125 + }, + { + "word": " was", + "start": 3092.48, + "end": 3092.98, + "probability": 0.67041015625 + }, + { + "word": " a", + "start": 3092.98, + "end": 3093.38, + "probability": 0.96533203125 + }, + { + "word": " desk", + "start": 3093.38, + "end": 3093.6, + "probability": 0.0662841796875 + }, + { + "word": " issue", + "start": 3093.6, + "end": 3094.1, + "probability": 0.99462890625 + }, + { + "word": " in", + "start": 3094.1, + "end": 3094.38, + "probability": 0.83544921875 + }, + { + "word": " the,", + "start": 3094.38, + "end": 3094.5, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1477, + "text": "in the,", + "start": 3094.58, + "end": 3095.08, + "words": [ + { + "word": " in", + "start": 3094.58, + "end": 3094.84, + "probability": 0.97900390625 + }, + { + "word": " the,", + "start": 3094.84, + "end": 3095.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1478, + "text": "in the error logs and it had the word we tried in it.", + "start": 3095.08, + "end": 3098.88, + "words": [ + { + "word": " in", + "start": 3095.08, + "end": 3095.26, + "probability": 0.98876953125 + }, + { + "word": " the", + "start": 3095.26, + "end": 3095.66, + "probability": 0.99951171875 + }, + { + "word": " error", + "start": 3095.66, + "end": 3096.54, + "probability": 0.07049560546875 + }, + { + "word": " logs", + "start": 3096.54, + "end": 3096.88, + "probability": 0.97412109375 + }, + { + "word": " and", + "start": 3096.88, + "end": 3097.16, + "probability": 0.4775390625 + }, + { + "word": " it", + "start": 3097.16, + "end": 3097.28, + "probability": 0.80419921875 + }, + { + "word": " had", + "start": 3097.28, + "end": 3097.6, + "probability": 0.763671875 + }, + { + "word": " the", + "start": 3097.6, + "end": 3097.84, + "probability": 0.99609375 + }, + { + "word": " word", + "start": 3097.84, + "end": 3098.04, + "probability": 0.9404296875 + }, + { + "word": " we", + "start": 3098.04, + "end": 3098.22, + "probability": 0.2568359375 + }, + { + "word": " tried", + "start": 3098.22, + "end": 3098.5, + "probability": 0.71337890625 + }, + { + "word": " in", + "start": 3098.5, + "end": 3098.76, + "probability": 0.58837890625 + }, + { + "word": " it.", + "start": 3098.76, + "end": 3098.88, + "probability": 0.95361328125 + } + ] + }, + { + "id": 1479, + "text": "Right.", + "start": 3099.46, + "end": 3099.9, + "words": [ + { + "word": " Right.", + "start": 3099.46, + "end": 3099.9, + "probability": 0.8828125 + } + ] + }, + { + "id": 1480, + "text": "So when you're looking at something like crystal desk,", + "start": 3100.88, + "end": 3103.26, + "words": [ + { + "word": " So", + "start": 3100.88, + "end": 3101.32, + "probability": 0.9873046875 + }, + { + "word": " when", + "start": 3101.32, + "end": 3101.76, + "probability": 0.93310546875 + }, + { + "word": " you're", + "start": 3101.76, + "end": 3101.92, + "probability": 0.9990234375 + }, + { + "word": " looking", + "start": 3101.92, + "end": 3102.18, + "probability": 1.0 + }, + { + "word": " at", + "start": 3102.18, + "end": 3102.34, + "probability": 1.0 + }, + { + "word": " something", + "start": 3102.34, + "end": 3102.48, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 3102.48, + "end": 3102.74, + "probability": 0.99951171875 + }, + { + "word": " crystal", + "start": 3102.74, + "end": 3102.98, + "probability": 0.53076171875 + }, + { + "word": " desk,", + "start": 3102.98, + "end": 3103.26, + "probability": 0.7822265625 + } + ] + }, + { + "id": 1481, + "text": "because that's the one that I would recommend that you use,", + "start": 3103.44, + "end": 3105.46, + "words": [ + { + "word": " because", + "start": 3103.44, + "end": 3103.76, + "probability": 0.9970703125 + }, + { + "word": " that's", + "start": 3103.76, + "end": 3104.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 3104.02, + "end": 3104.06, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 3104.06, + "end": 3104.2, + "probability": 1.0 + }, + { + "word": " that", + "start": 3104.2, + "end": 3104.3, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3104.3, + "end": 3104.44, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 3104.44, + "end": 3104.58, + "probability": 0.99951171875 + }, + { + "word": " recommend", + "start": 3104.58, + "end": 3104.88, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3104.88, + "end": 3105.04, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3105.04, + "end": 3105.14, + "probability": 0.99951171875 + }, + { + "word": " use,", + "start": 3105.14, + "end": 3105.46, + "probability": 1.0 + } + ] + }, + { + "id": 1482, + "text": "it's one that's easiest,", + "start": 3105.48, + "end": 3106.14, + "words": [ + { + "word": " it's", + "start": 3105.48, + "end": 3105.58, + "probability": 0.9443359375 + }, + { + "word": " one", + "start": 3105.58, + "end": 3105.72, + "probability": 0.76171875 + }, + { + "word": " that's", + "start": 3105.72, + "end": 3105.94, + "probability": 0.8955078125 + }, + { + "word": " easiest,", + "start": 3105.94, + "end": 3106.14, + "probability": 0.93017578125 + } + ] + }, + { + "id": 1483, + "text": "easiest to work with.", + "start": 3106.7400000000002, + "end": 3107.62, + "words": [ + { + "word": " easiest", + "start": 3106.5800000000004, + "end": 3106.8, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 3106.8, + "end": 3107.22, + "probability": 0.9990234375 + }, + { + "word": " work", + "start": 3107.22, + "end": 3107.4, + "probability": 1.0 + }, + { + "word": " with.", + "start": 3107.4, + "end": 3107.62, + "probability": 1.0 + } + ] + }, + { + "id": 1484, + "text": "But,", + "start": 3108.02, + "end": 3108.46, + "words": [ + { + "word": " But,", + "start": 3108.02, + "end": 3108.46, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1485, + "text": "um,", + "start": 3108.64, + "end": 3109.02, + "words": [ + { + "word": " um,", + "start": 3108.64, + "end": 3109.02, + "probability": 0.9580078125 + } + ] + }, + { + "id": 1486, + "text": "when you're using crystal disc,", + "start": 3109.28, + "end": 3110.46, + "words": [ + { + "word": " when", + "start": 3109.28, + "end": 3109.66, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 3109.66, + "end": 3109.8, + "probability": 1.0 + }, + { + "word": " using", + "start": 3109.8, + "end": 3109.98, + "probability": 1.0 + }, + { + "word": " crystal", + "start": 3109.98, + "end": 3110.2, + "probability": 0.99853515625 + }, + { + "word": " disc,", + "start": 3110.2, + "end": 3110.46, + "probability": 0.059906005859375 + } + ] + }, + { + "id": 1487, + "text": "are you using that while the system is under load or while", + "start": 3110.56, + "end": 3113.58, + "words": [ + { + "word": " are", + "start": 3110.56, + "end": 3110.74, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3110.74, + "end": 3110.9, + "probability": 0.9931640625 + }, + { + "word": " using", + "start": 3110.9, + "end": 3111.16, + "probability": 1.0 + }, + { + "word": " that", + "start": 3111.16, + "end": 3111.46, + "probability": 1.0 + }, + { + "word": " while", + "start": 3111.46, + "end": 3111.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 3111.82, + "end": 3112.02, + "probability": 1.0 + }, + { + "word": " system", + "start": 3112.02, + "end": 3112.3, + "probability": 1.0 + }, + { + "word": " is", + "start": 3112.3, + "end": 3112.44, + "probability": 1.0 + }, + { + "word": " under", + "start": 3112.44, + "end": 3112.62, + "probability": 1.0 + }, + { + "word": " load", + "start": 3112.62, + "end": 3112.96, + "probability": 0.9990234375 + }, + { + "word": " or", + "start": 3112.96, + "end": 3113.36, + "probability": 0.9931640625 + }, + { + "word": " while", + "start": 3113.36, + "end": 3113.58, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1488, + "text": "it's doing the a hundred percent thing,", + "start": 3113.58, + "end": 3114.68, + "words": [ + { + "word": " it's", + "start": 3113.58, + "end": 3113.78, + "probability": 1.0 + }, + { + "word": " doing", + "start": 3113.78, + "end": 3113.9, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 3113.9, + "end": 3114.06, + "probability": 0.99560546875 + }, + { + "word": " a", + "start": 3114.06, + "end": 3114.06, + "probability": 0.92041015625 + }, + { + "word": " hundred", + "start": 3114.06, + "end": 3114.14, + "probability": 0.9990234375 + }, + { + "word": " percent", + "start": 3114.14, + "end": 3114.36, + "probability": 1.0 + }, + { + "word": " thing,", + "start": 3114.36, + "end": 3114.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1489, + "text": "or are you just doing that like every so often?", + "start": 3114.76, + "end": 3117.54, + "words": [ + { + "word": " or", + "start": 3114.76, + "end": 3115.04, + "probability": 1.0 + }, + { + "word": " are", + "start": 3115.04, + "end": 3115.38, + "probability": 0.97216796875 + }, + { + "word": " you", + "start": 3115.38, + "end": 3115.7, + "probability": 1.0 + }, + { + "word": " just", + "start": 3115.7, + "end": 3116.2, + "probability": 0.994140625 + }, + { + "word": " doing", + "start": 3116.2, + "end": 3116.38, + "probability": 1.0 + }, + { + "word": " that", + "start": 3116.38, + "end": 3116.58, + "probability": 1.0 + }, + { + "word": " like", + "start": 3116.58, + "end": 3116.84, + "probability": 0.96484375 + }, + { + "word": " every", + "start": 3116.84, + "end": 3117.1, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 3117.1, + "end": 3117.22, + "probability": 0.99951171875 + }, + { + "word": " often?", + "start": 3117.22, + "end": 3117.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1490, + "text": "I'm just,", + "start": 3118.22, + "end": 3118.86, + "words": [ + { + "word": " I'm", + "start": 3118.22, + "end": 3118.66, + "probability": 0.94873046875 + }, + { + "word": " just,", + "start": 3118.66, + "end": 3118.86, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1491, + "text": "you're doing it every so often.", + "start": 3118.9, + "end": 3120.5, + "words": [ + { + "word": " you're", + "start": 3118.9, + "end": 3119.08, + "probability": 0.583984375 + }, + { + "word": " doing", + "start": 3119.08, + "end": 3119.44, + "probability": 0.9091796875 + }, + { + "word": " it", + "start": 3119.44, + "end": 3119.66, + "probability": 0.99609375 + }, + { + "word": " every", + "start": 3119.66, + "end": 3119.88, + "probability": 0.99853515625 + }, + { + "word": " so", + "start": 3119.88, + "end": 3120.08, + "probability": 0.9990234375 + }, + { + "word": " often.", + "start": 3120.08, + "end": 3120.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1492, + "text": "I would say,", + "start": 3120.58, + "end": 3121.32, + "words": [ + { + "word": " I", + "start": 3120.58, + "end": 3120.96, + "probability": 0.994140625 + }, + { + "word": " would", + "start": 3120.96, + "end": 3121.1, + "probability": 0.99951171875 + }, + { + "word": " say,", + "start": 3121.1, + "end": 3121.32, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1493, + "text": "do that,", + "start": 3121.34, + "end": 3121.74, + "words": [ + { + "word": " do", + "start": 3121.34, + "end": 3121.48, + "probability": 0.0007634162902832031 + }, + { + "word": " that,", + "start": 3121.48, + "end": 3121.74, + "probability": 0.89208984375 + } + ] + }, + { + "id": 1494, + "text": "run that test because it is that the way that crystal disc works is", + "start": 3121.76, + "end": 3126.9, + "words": [ + { + "word": " run", + "start": 3121.76, + "end": 3121.98, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 3121.98, + "end": 3122.26, + "probability": 1.0 + }, + { + "word": " test", + "start": 3122.26, + "end": 3122.5, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 3122.5, + "end": 3122.76, + "probability": 0.87109375 + }, + { + "word": " it", + "start": 3122.76, + "end": 3122.94, + "probability": 0.95654296875 + }, + { + "word": " is", + "start": 3122.94, + "end": 3123.24, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 3123.24, + "end": 3124.44, + "probability": 0.8515625 + }, + { + "word": " the", + "start": 3124.44, + "end": 3125.08, + "probability": 0.443603515625 + }, + { + "word": " way", + "start": 3125.08, + "end": 3125.9, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3125.9, + "end": 3126.06, + "probability": 0.95947265625 + }, + { + "word": " crystal", + "start": 3126.06, + "end": 3126.3, + "probability": 0.1834716796875 + }, + { + "word": " disc", + "start": 3126.3, + "end": 3126.48, + "probability": 0.397216796875 + }, + { + "word": " works", + "start": 3126.48, + "end": 3126.76, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3126.76, + "end": 3126.9, + "probability": 0.98193359375 + } + ] + }, + { + "id": 1495, + "text": "it gives you a periodic result as opposed to a longterm result or", + "start": 3126.9, + "end": 3130.42, + "words": [ + { + "word": " it", + "start": 3126.9, + "end": 3126.98, + "probability": 0.99755859375 + }, + { + "word": " gives", + "start": 3126.98, + "end": 3127.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 3127.14, + "end": 3127.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 3127.26, + "end": 3127.38, + "probability": 0.99951171875 + }, + { + "word": " periodic", + "start": 3127.38, + "end": 3127.76, + "probability": 0.95751953125 + }, + { + "word": " result", + "start": 3127.76, + "end": 3128.18, + "probability": 0.9892578125 + }, + { + "word": " as", + "start": 3128.18, + "end": 3128.58, + "probability": 0.9892578125 + }, + { + "word": " opposed", + "start": 3128.58, + "end": 3128.88, + "probability": 1.0 + }, + { + "word": " to", + "start": 3128.88, + "end": 3129.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 3129.22, + "end": 3129.44, + "probability": 0.99951171875 + }, + { + "word": " longterm", + "start": 3129.44, + "end": 3129.86, + "probability": 0.5947265625 + }, + { + "word": " result", + "start": 3129.86, + "end": 3130.18, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 3130.18, + "end": 3130.42, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1496, + "text": "a historical result.", + "start": 3130.42, + "end": 3131.46, + "words": [ + { + "word": " a", + "start": 3130.42, + "end": 3130.6, + "probability": 0.99951171875 + }, + { + "word": " historical", + "start": 3130.6, + "end": 3131.02, + "probability": 0.9990234375 + }, + { + "word": " result.", + "start": 3131.02, + "end": 3131.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1497, + "text": "So it's looking at what time,", + "start": 3132.04, + "end": 3134.46, + "words": [ + { + "word": " So", + "start": 3132.04, + "end": 3132.52, + "probability": 0.994140625 + }, + { + "word": " it's", + "start": 3132.52, + "end": 3132.98, + "probability": 0.9970703125 + }, + { + "word": " looking", + "start": 3132.98, + "end": 3133.24, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3133.24, + "end": 3133.64, + "probability": 1.0 + }, + { + "word": " what", + "start": 3133.64, + "end": 3134.16, + "probability": 0.9833984375 + }, + { + "word": " time,", + "start": 3134.16, + "end": 3134.46, + "probability": 0.489501953125 + } + ] + }, + { + "id": 1498, + "text": "how the drive is behaving at that very moment that you are looking", + "start": 3134.48, + "end": 3137.96, + "words": [ + { + "word": " how", + "start": 3134.48, + "end": 3134.68, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3134.68, + "end": 3134.86, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3134.86, + "end": 3135.06, + "probability": 0.900390625 + }, + { + "word": " is", + "start": 3135.06, + "end": 3135.16, + "probability": 1.0 + }, + { + "word": " behaving", + "start": 3135.16, + "end": 3135.42, + "probability": 0.99951171875 + }, + { + "word": " at", + "start": 3135.42, + "end": 3135.76, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3135.76, + "end": 3135.96, + "probability": 1.0 + }, + { + "word": " very", + "start": 3135.96, + "end": 3136.24, + "probability": 1.0 + }, + { + "word": " moment", + "start": 3136.24, + "end": 3136.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 3136.76, + "end": 3137.16, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 3137.16, + "end": 3137.44, + "probability": 1.0 + }, + { + "word": " are", + "start": 3137.44, + "end": 3137.62, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3137.62, + "end": 3137.96, + "probability": 1.0 + } + ] + }, + { + "id": 1499, + "text": "at it.", + "start": 3137.96, + "end": 3138.46, + "words": [ + { + "word": " at", + "start": 3137.96, + "end": 3138.24, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3138.24, + "end": 3138.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1500, + "text": "So if the machine is under load and doing the a hundred percent", + "start": 3138.72, + "end": 3142.1, + "words": [ + { + "word": " So", + "start": 3138.72, + "end": 3139.2, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 3139.2, + "end": 3139.48, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3139.48, + "end": 3139.64, + "probability": 1.0 + }, + { + "word": " machine", + "start": 3139.64, + "end": 3139.9, + "probability": 1.0 + }, + { + "word": " is", + "start": 3139.9, + "end": 3140.16, + "probability": 1.0 + }, + { + "word": " under", + "start": 3140.16, + "end": 3140.5, + "probability": 1.0 + }, + { + "word": " load", + "start": 3140.5, + "end": 3140.94, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3140.94, + "end": 3141.24, + "probability": 0.84619140625 + }, + { + "word": " doing", + "start": 3141.24, + "end": 3141.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3141.62, + "end": 3141.78, + "probability": 0.625 + }, + { + "word": " a", + "start": 3141.78, + "end": 3141.78, + "probability": 0.94384765625 + }, + { + "word": " hundred", + "start": 3141.78, + "end": 3141.88, + "probability": 0.9990234375 + }, + { + "word": " percent", + "start": 3141.88, + "end": 3142.1, + "probability": 1.0 + } + ] + }, + { + "id": 1501, + "text": "thing,", + "start": 3142.1, + "end": 3142.38, + "words": [ + { + "word": " thing,", + "start": 3142.1, + "end": 3142.38, + "probability": 1.0 + } + ] + }, + { + "id": 1502, + "text": "I would check it then just to see what it does.", + "start": 3142.48, + "end": 3144.88, + "words": [ + { + "word": " I", + "start": 3142.48, + "end": 3142.6, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 3142.6, + "end": 3142.74, + "probability": 1.0 + }, + { + "word": " check", + "start": 3142.74, + "end": 3143.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 3143.04, + "end": 3143.2, + "probability": 1.0 + }, + { + "word": " then", + "start": 3143.2, + "end": 3143.44, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3143.44, + "end": 3143.82, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3143.82, + "end": 3143.96, + "probability": 1.0 + }, + { + "word": " see", + "start": 3143.96, + "end": 3144.18, + "probability": 1.0 + }, + { + "word": " what", + "start": 3144.18, + "end": 3144.36, + "probability": 1.0 + }, + { + "word": " it", + "start": 3144.36, + "end": 3144.54, + "probability": 1.0 + }, + { + "word": " does.", + "start": 3144.54, + "end": 3144.88, + "probability": 1.0 + } + ] + }, + { + "id": 1503, + "text": "Um,", + "start": 3145.26, + "end": 3145.74, + "words": [ + { + "word": " Um,", + "start": 3145.26, + "end": 3145.74, + "probability": 0.64404296875 + } + ] + }, + { + "id": 1504, + "text": "because oftentimes a,", + "start": 3145.9, + "end": 3146.96, + "words": [ + { + "word": " because", + "start": 3145.9, + "end": 3146.22, + "probability": 0.998046875 + }, + { + "word": " oftentimes", + "start": 3146.22, + "end": 3146.62, + "probability": 1.0 + }, + { + "word": " a,", + "start": 3146.62, + "end": 3146.96, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1505, + "text": "a drive will test is good as opposed to smart data because it's", + "start": 3146.96, + "end": 3150.06, + "words": [ + { + "word": " a", + "start": 3146.96, + "end": 3147.2, + "probability": 0.9990234375 + }, + { + "word": " drive", + "start": 3147.2, + "end": 3147.42, + "probability": 0.414794921875 + }, + { + "word": " will", + "start": 3147.42, + "end": 3147.56, + "probability": 0.93798828125 + }, + { + "word": " test", + "start": 3147.56, + "end": 3147.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 3147.78, + "end": 3148.0, + "probability": 0.87744140625 + }, + { + "word": " good", + "start": 3148.0, + "end": 3148.32, + "probability": 1.0 + }, + { + "word": " as", + "start": 3148.32, + "end": 3148.86, + "probability": 0.99853515625 + }, + { + "word": " opposed", + "start": 3148.86, + "end": 3149.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 3149.06, + "end": 3149.24, + "probability": 1.0 + }, + { + "word": " smart", + "start": 3149.24, + "end": 3149.4, + "probability": 0.99755859375 + }, + { + "word": " data", + "start": 3149.4, + "end": 3149.6, + "probability": 1.0 + }, + { + "word": " because", + "start": 3149.6, + "end": 3149.84, + "probability": 0.86865234375 + }, + { + "word": " it's", + "start": 3149.84, + "end": 3150.06, + "probability": 1.0 + } + ] + }, + { + "id": 1506, + "text": "a rolling window.", + "start": 3150.06, + "end": 3150.96, + "words": [ + { + "word": " a", + "start": 3150.06, + "end": 3150.12, + "probability": 0.99951171875 + }, + { + "word": " rolling", + "start": 3150.12, + "end": 3150.42, + "probability": 0.998046875 + }, + { + "word": " window.", + "start": 3150.42, + "end": 3150.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1507, + "text": "When it comes to smart data,", + "start": 3151.34, + "end": 3152.34, + "words": [ + { + "word": " When", + "start": 3151.34, + "end": 3151.42, + "probability": 0.055267333984375 + }, + { + "word": " it", + "start": 3151.42, + "end": 3151.5, + "probability": 1.0 + }, + { + "word": " comes", + "start": 3151.5, + "end": 3151.66, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3151.66, + "end": 3151.84, + "probability": 0.99951171875 + }, + { + "word": " smart", + "start": 3151.84, + "end": 3152.06, + "probability": 0.94384765625 + }, + { + "word": " data,", + "start": 3152.06, + "end": 3152.34, + "probability": 1.0 + } + ] + }, + { + "id": 1508, + "text": "or at least a majority of the smart data.", + "start": 3152.46, + "end": 3154.18, + "words": [ + { + "word": " or", + "start": 3152.46, + "end": 3152.74, + "probability": 0.990234375 + }, + { + "word": " at", + "start": 3152.74, + "end": 3152.98, + "probability": 1.0 + }, + { + "word": " least", + "start": 3152.98, + "end": 3153.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 3153.12, + "end": 3153.22, + "probability": 0.97216796875 + }, + { + "word": " majority", + "start": 3153.22, + "end": 3153.48, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3153.48, + "end": 3153.7, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3153.7, + "end": 3153.76, + "probability": 1.0 + }, + { + "word": " smart", + "start": 3153.76, + "end": 3153.94, + "probability": 0.99951171875 + }, + { + "word": " data.", + "start": 3153.94, + "end": 3154.18, + "probability": 1.0 + } + ] + }, + { + "id": 1509, + "text": "Um,", + "start": 3154.74, + "end": 3155.22, + "words": [ + { + "word": " Um,", + "start": 3154.74, + "end": 3155.22, + "probability": 0.032073974609375 + } + ] + }, + { + "id": 1510, + "text": "that way you can look at that very instance of what's happening", + "start": 3155.46, + "end": 3159.6, + "words": [ + { + "word": " that", + "start": 3155.46, + "end": 3155.86, + "probability": 0.99853515625 + }, + { + "word": " way", + "start": 3155.86, + "end": 3156.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 3156.2, + "end": 3156.58, + "probability": 0.984375 + }, + { + "word": " can", + "start": 3156.58, + "end": 3156.8, + "probability": 1.0 + }, + { + "word": " look", + "start": 3156.8, + "end": 3157.04, + "probability": 1.0 + }, + { + "word": " at", + "start": 3157.04, + "end": 3157.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 3157.26, + "end": 3157.5, + "probability": 1.0 + }, + { + "word": " very", + "start": 3157.5, + "end": 3157.74, + "probability": 0.99951171875 + }, + { + "word": " instance", + "start": 3157.74, + "end": 3158.5, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 3158.5, + "end": 3158.94, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 3158.94, + "end": 3159.26, + "probability": 1.0 + }, + { + "word": " happening", + "start": 3159.26, + "end": 3159.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1511, + "text": "and find out what's going on there.", + "start": 3159.6, + "end": 3160.94, + "words": [ + { + "word": " and", + "start": 3159.6, + "end": 3159.82, + "probability": 0.99169921875 + }, + { + "word": " find", + "start": 3159.82, + "end": 3160.04, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 3160.04, + "end": 3160.14, + "probability": 1.0 + }, + { + "word": " what's", + "start": 3160.14, + "end": 3160.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 3160.36, + "end": 3160.44, + "probability": 1.0 + }, + { + "word": " on", + "start": 3160.44, + "end": 3160.72, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3160.72, + "end": 3160.94, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1512, + "text": "I would probably guess that you're most likely having some type of", + "start": 3161.02, + "end": 3164.58, + "words": [ + { + "word": " I", + "start": 3161.02, + "end": 3161.48, + "probability": 0.9921875 + }, + { + "word": " would", + "start": 3161.48, + "end": 3161.7, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3161.7, + "end": 3162.06, + "probability": 1.0 + }, + { + "word": " guess", + "start": 3162.06, + "end": 3162.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 3162.52, + "end": 3162.66, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 3162.66, + "end": 3162.84, + "probability": 1.0 + }, + { + "word": " most", + "start": 3162.84, + "end": 3163.4, + "probability": 0.9990234375 + }, + { + "word": " likely", + "start": 3163.4, + "end": 3163.72, + "probability": 1.0 + }, + { + "word": " having", + "start": 3163.72, + "end": 3164.02, + "probability": 1.0 + }, + { + "word": " some", + "start": 3164.02, + "end": 3164.26, + "probability": 1.0 + }, + { + "word": " type", + "start": 3164.26, + "end": 3164.42, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3164.42, + "end": 3164.58, + "probability": 1.0 + } + ] + }, + { + "id": 1513, + "text": "a controller issue though,", + "start": 3164.58, + "end": 3165.78, + "words": [ + { + "word": " a", + "start": 3164.58, + "end": 3164.66, + "probability": 0.99951171875 + }, + { + "word": " controller", + "start": 3164.66, + "end": 3165.0, + "probability": 0.99951171875 + }, + { + "word": " issue", + "start": 3165.0, + "end": 3165.48, + "probability": 0.99951171875 + }, + { + "word": " though,", + "start": 3165.48, + "end": 3165.78, + "probability": 0.857421875 + } + ] + }, + { + "id": 1514, + "text": "even though your drive is probably too old to,", + "start": 3165.84, + "end": 3168.72, + "words": [ + { + "word": " even", + "start": 3165.84, + "end": 3166.0, + "probability": 0.99951171875 + }, + { + "word": " though", + "start": 3166.0, + "end": 3166.18, + "probability": 1.0 + }, + { + "word": " your", + "start": 3166.18, + "end": 3166.36, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3166.36, + "end": 3166.66, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3166.66, + "end": 3166.88, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3166.88, + "end": 3167.2, + "probability": 1.0 + }, + { + "word": " too", + "start": 3167.2, + "end": 3167.9, + "probability": 0.99951171875 + }, + { + "word": " old", + "start": 3167.9, + "end": 3168.26, + "probability": 1.0 + }, + { + "word": " to,", + "start": 3168.26, + "end": 3168.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1515, + "text": "uh,", + "start": 3168.82, + "end": 3169.14, + "words": [ + { + "word": " uh,", + "start": 3168.82, + "end": 3169.14, + "probability": 0.9892578125 + } + ] + }, + { + "id": 1516, + "text": "really identify that problem.", + "start": 3169.2, + "end": 3170.6, + "words": [ + { + "word": " really", + "start": 3169.2, + "end": 3169.52, + "probability": 0.990234375 + }, + { + "word": " identify", + "start": 3169.52, + "end": 3169.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 3169.94, + "end": 3170.24, + "probability": 1.0 + }, + { + "word": " problem.", + "start": 3170.24, + "end": 3170.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1517, + "text": "Okay.", + "start": 3171.62, + "end": 3172.1, + "words": [ + { + "word": " Okay.", + "start": 3171.62, + "end": 3172.1, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1518, + "text": "Um,", + "start": 3172.5, + "end": 3172.98, + "words": [ + { + "word": " Um,", + "start": 3172.5, + "end": 3172.98, + "probability": 0.9326171875 + } + ] + }, + { + "id": 1519, + "text": "well,", + "start": 3173.08, + "end": 3173.46, + "words": [ + { + "word": " well,", + "start": 3173.08, + "end": 3173.46, + "probability": 0.73046875 + } + ] + }, + { + "id": 1520, + "text": "unfortunately I've got a lot of state of course on that motherboard.", + "start": 3173.58, + "end": 3176.64, + "words": [ + { + "word": " unfortunately", + "start": 3173.58, + "end": 3173.92, + "probability": 0.11090087890625 + }, + { + "word": " I've", + "start": 3173.92, + "end": 3174.5, + "probability": 0.9775390625 + }, + { + "word": " got", + "start": 3174.5, + "end": 3174.7, + "probability": 1.0 + }, + { + "word": " a", + "start": 3174.7, + "end": 3174.84, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 3174.84, + "end": 3175.06, + "probability": 1.0 + }, + { + "word": " of", + "start": 3175.06, + "end": 3175.2, + "probability": 1.0 + }, + { + "word": " state", + "start": 3175.2, + "end": 3175.4, + "probability": 0.043701171875 + }, + { + "word": " of", + "start": 3175.4, + "end": 3175.54, + "probability": 0.7587890625 + }, + { + "word": " course", + "start": 3175.54, + "end": 3175.8, + "probability": 0.419677734375 + }, + { + "word": " on", + "start": 3175.8, + "end": 3176.04, + "probability": 0.87939453125 + }, + { + "word": " that", + "start": 3176.04, + "end": 3176.24, + "probability": 1.0 + }, + { + "word": " motherboard.", + "start": 3176.24, + "end": 3176.64, + "probability": 0.9619140625 + } + ] + }, + { + "id": 1521, + "text": "So my,", + "start": 3176.88, + "end": 3177.92, + "words": [ + { + "word": " So", + "start": 3176.88, + "end": 3177.2, + "probability": 0.994140625 + }, + { + "word": " my,", + "start": 3177.2, + "end": 3177.92, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1522, + "text": "my,", + "start": 3178.1, + "end": 3178.62, + "words": [ + { + "word": " my,", + "start": 3178.1, + "end": 3178.62, + "probability": 1.0 + } + ] + }, + { + "id": 1523, + "text": "my theory at the moment,", + "start": 3178.66, + "end": 3180.52, + "words": [ + { + "word": " my", + "start": 3178.66, + "end": 3179.2, + "probability": 0.99951171875 + }, + { + "word": " theory", + "start": 3179.2, + "end": 3179.62, + "probability": 0.9990234375 + }, + { + "word": " at", + "start": 3179.62, + "end": 3180.0, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 3180.0, + "end": 3180.12, + "probability": 1.0 + }, + { + "word": " moment,", + "start": 3180.12, + "end": 3180.52, + "probability": 1.0 + } + ] + }, + { + "id": 1524, + "text": "um,", + "start": 3181.6, + "end": 3182.0, + "words": [ + { + "word": " um,", + "start": 3181.6, + "end": 3182.0, + "probability": 0.007656097412109375 + } + ] + }, + { + "id": 1525, + "text": "you know,", + "start": 3182.94, + "end": 3183.48, + "words": [ + { + "word": " you", + "start": 3182.94, + "end": 3183.34, + "probability": 0.9970703125 + }, + { + "word": " know,", + "start": 3183.34, + "end": 3183.48, + "probability": 1.0 + } + ] + }, + { + "id": 1526, + "text": "my low budget theory is probably going to be,", + "start": 3183.52, + "end": 3185.96, + "words": [ + { + "word": " my", + "start": 3183.52, + "end": 3183.6, + "probability": 0.99755859375 + }, + { + "word": " low", + "start": 3183.6, + "end": 3183.78, + "probability": 0.97314453125 + }, + { + "word": " budget", + "start": 3183.78, + "end": 3184.18, + "probability": 0.9404296875 + }, + { + "word": " theory", + "start": 3184.18, + "end": 3184.54, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3184.54, + "end": 3184.9, + "probability": 0.998046875 + }, + { + "word": " probably", + "start": 3184.9, + "end": 3185.14, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 3185.14, + "end": 3185.48, + "probability": 0.94775390625 + }, + { + "word": " to", + "start": 3185.48, + "end": 3185.68, + "probability": 1.0 + }, + { + "word": " be,", + "start": 3185.68, + "end": 3185.96, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1527, + "text": "uh,", + "start": 3185.96, + "end": 3186.14, + "words": [ + { + "word": " uh,", + "start": 3185.96, + "end": 3186.14, + "probability": 0.94287109375 + } + ] + }, + { + "id": 1528, + "text": "try a different state of Porter replaced the theta cable as well.", + "start": 3186.22, + "end": 3189.34, + "words": [ + { + "word": " try", + "start": 3186.22, + "end": 3186.46, + "probability": 0.97021484375 + }, + { + "word": " a", + "start": 3186.46, + "end": 3186.56, + "probability": 0.99755859375 + }, + { + "word": " different", + "start": 3186.56, + "end": 3186.82, + "probability": 0.998046875 + }, + { + "word": " state", + "start": 3186.82, + "end": 3187.12, + "probability": 0.0419921875 + }, + { + "word": " of", + "start": 3187.12, + "end": 3187.28, + "probability": 0.96142578125 + }, + { + "word": " Porter", + "start": 3187.28, + "end": 3187.58, + "probability": 0.0145111083984375 + }, + { + "word": " replaced", + "start": 3187.58, + "end": 3187.94, + "probability": 0.5810546875 + }, + { + "word": " the", + "start": 3187.94, + "end": 3188.34, + "probability": 0.7919921875 + }, + { + "word": " theta", + "start": 3188.34, + "end": 3188.54, + "probability": 0.2705078125 + }, + { + "word": " cable", + "start": 3188.54, + "end": 3189.0, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3189.0, + "end": 3189.16, + "probability": 0.436279296875 + }, + { + "word": " well.", + "start": 3189.16, + "end": 3189.34, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1529, + "text": "Well,", + "start": 3189.72, + "end": 3190.12, + "words": [ + { + "word": " Well,", + "start": 3189.72, + "end": 3190.12, + "probability": 0.81689453125 + } + ] + }, + { + "id": 1530, + "text": "you can try that.", + "start": 3190.3, + "end": 3191.16, + "words": [ + { + "word": " you", + "start": 3190.3, + "end": 3190.56, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 3190.56, + "end": 3190.78, + "probability": 1.0 + }, + { + "word": " try", + "start": 3190.78, + "end": 3190.98, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3190.98, + "end": 3191.16, + "probability": 1.0 + } + ] + }, + { + "id": 1531, + "text": "However,", + "start": 3191.26, + "end": 3191.54, + "words": [ + { + "word": " However,", + "start": 3191.26, + "end": 3191.54, + "probability": 0.998046875 + } + ] + }, + { + "id": 1532, + "text": "all of those ports are going to be run.", + "start": 3191.66, + "end": 3193.68, + "words": [ + { + "word": " all", + "start": 3191.66, + "end": 3192.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 3192.32, + "end": 3192.56, + "probability": 0.9990234375 + }, + { + "word": " those", + "start": 3192.56, + "end": 3192.7, + "probability": 1.0 + }, + { + "word": " ports", + "start": 3192.7, + "end": 3192.98, + "probability": 0.99755859375 + }, + { + "word": " are", + "start": 3192.98, + "end": 3193.18, + "probability": 1.0 + }, + { + "word": " going", + "start": 3193.18, + "end": 3193.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 3193.28, + "end": 3193.34, + "probability": 1.0 + }, + { + "word": " be", + "start": 3193.34, + "end": 3193.42, + "probability": 0.99951171875 + }, + { + "word": " run.", + "start": 3193.42, + "end": 3193.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1533, + "text": "Uh,", + "start": 3193.84, + "end": 3194.24, + "words": [ + { + "word": " Uh,", + "start": 3193.84, + "end": 3194.24, + "probability": 0.96875 + } + ] + }, + { + "id": 1534, + "text": "I mean,", + "start": 3194.32, + "end": 3194.62, + "words": [ + { + "word": " I", + "start": 3194.32, + "end": 3194.42, + "probability": 0.99853515625 + }, + { + "word": " mean,", + "start": 3194.42, + "end": 3194.62, + "probability": 1.0 + } + ] + }, + { + "id": 1535, + "text": "depending on how many you have,", + "start": 3194.62, + "end": 3195.94, + "words": [ + { + "word": " depending", + "start": 3194.62, + "end": 3194.94, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 3194.94, + "end": 3195.18, + "probability": 1.0 + }, + { + "word": " how", + "start": 3195.18, + "end": 3195.38, + "probability": 1.0 + }, + { + "word": " many", + "start": 3195.38, + "end": 3195.54, + "probability": 1.0 + }, + { + "word": " you", + "start": 3195.54, + "end": 3195.68, + "probability": 0.9990234375 + }, + { + "word": " have,", + "start": 3195.68, + "end": 3195.94, + "probability": 1.0 + } + ] + }, + { + "id": 1536, + "text": "uh,", + "start": 3196.46, + "end": 3196.86, + "words": [ + { + "word": " uh,", + "start": 3196.46, + "end": 3196.86, + "probability": 0.75341796875 + } + ] + }, + { + "id": 1537, + "text": "all of those ports are not eight.", + "start": 3197.68, + "end": 3199.22, + "words": [ + { + "word": " all", + "start": 3197.68, + "end": 3198.08, + "probability": 0.9970703125 + }, + { + "word": " of", + "start": 3198.08, + "end": 3198.26, + "probability": 0.9912109375 + }, + { + "word": " those", + "start": 3198.26, + "end": 3198.34, + "probability": 0.99951171875 + }, + { + "word": " ports", + "start": 3198.34, + "end": 3198.58, + "probability": 0.86083984375 + }, + { + "word": " are", + "start": 3198.58, + "end": 3198.76, + "probability": 0.62109375 + }, + { + "word": " not", + "start": 3198.76, + "end": 3198.9, + "probability": 0.15234375 + }, + { + "word": " eight.", + "start": 3198.9, + "end": 3199.22, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1538, + "text": "All right.", + "start": 3199.52, + "end": 3200.04, + "words": [ + { + "word": " All", + "start": 3199.52, + "end": 3199.92, + "probability": 0.99365234375 + }, + { + "word": " right.", + "start": 3199.92, + "end": 3200.04, + "probability": 1.0 + } + ] + }, + { + "id": 1539, + "text": "So if you've got eight,", + "start": 3200.04, + "end": 3200.82, + "words": [ + { + "word": " So", + "start": 3200.04, + "end": 3200.12, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 3200.12, + "end": 3200.22, + "probability": 0.99951171875 + }, + { + "word": " you've", + "start": 3200.22, + "end": 3200.36, + "probability": 1.0 + }, + { + "word": " got", + "start": 3200.36, + "end": 3200.54, + "probability": 1.0 + }, + { + "word": " eight,", + "start": 3200.54, + "end": 3200.82, + "probability": 1.0 + } + ] + }, + { + "id": 1540, + "text": "you likely have two controllers on that board.", + "start": 3200.88, + "end": 3202.84, + "words": [ + { + "word": " you", + "start": 3200.88, + "end": 3201.0, + "probability": 1.0 + }, + { + "word": " likely", + "start": 3201.0, + "end": 3201.24, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3201.24, + "end": 3201.44, + "probability": 1.0 + }, + { + "word": " two", + "start": 3201.44, + "end": 3201.64, + "probability": 0.99951171875 + }, + { + "word": " controllers", + "start": 3201.64, + "end": 3202.12, + "probability": 1.0 + }, + { + "word": " on", + "start": 3202.12, + "end": 3202.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 3202.36, + "end": 3202.52, + "probability": 1.0 + }, + { + "word": " board.", + "start": 3202.52, + "end": 3202.84, + "probability": 1.0 + } + ] + }, + { + "id": 1541, + "text": "Okay.", + "start": 3203.46, + "end": 3203.86, + "words": [ + { + "word": " Okay.", + "start": 3203.46, + "end": 3203.86, + "probability": 0.75927734375 + } + ] + }, + { + "id": 1542, + "text": "And,", + "start": 3203.9, + "end": 3204.2, + "words": [ + { + "word": " And,", + "start": 3203.9, + "end": 3204.2, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1543, + "text": "uh,", + "start": 3204.28, + "end": 3204.52, + "words": [ + { + "word": " uh,", + "start": 3204.28, + "end": 3204.52, + "probability": 0.69482421875 + } + ] + }, + { + "id": 1544, + "text": "one of those controllers is probably bad.", + "start": 3204.68, + "end": 3206.48, + "words": [ + { + "word": " one", + "start": 3204.68, + "end": 3204.88, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3204.88, + "end": 3205.02, + "probability": 1.0 + }, + { + "word": " those", + "start": 3205.02, + "end": 3205.16, + "probability": 1.0 + }, + { + "word": " controllers", + "start": 3205.16, + "end": 3205.56, + "probability": 1.0 + }, + { + "word": " is", + "start": 3205.56, + "end": 3205.74, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3205.74, + "end": 3206.0, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 3206.0, + "end": 3206.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1545, + "text": "And in which case you have a 50% chance of being on the same", + "start": 3206.78, + "end": 3211.08, + "words": [ + { + "word": " And", + "start": 3206.78, + "end": 3207.18, + "probability": 0.86083984375 + }, + { + "word": " in", + "start": 3207.18, + "end": 3207.66, + "probability": 0.998046875 + }, + { + "word": " which", + "start": 3207.66, + "end": 3207.98, + "probability": 1.0 + }, + { + "word": " case", + "start": 3207.98, + "end": 3208.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 3208.3, + "end": 3208.6, + "probability": 0.99609375 + }, + { + "word": " have", + "start": 3208.6, + "end": 3208.88, + "probability": 1.0 + }, + { + "word": " a", + "start": 3208.88, + "end": 3209.08, + "probability": 0.99951171875 + }, + { + "word": " 50", + "start": 3209.08, + "end": 3209.38, + "probability": 1.0 + }, + { + "word": "%", + "start": 3209.38, + "end": 3209.68, + "probability": 0.99951171875 + }, + { + "word": " chance", + "start": 3209.68, + "end": 3209.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3209.94, + "end": 3210.26, + "probability": 0.9990234375 + }, + { + "word": " being", + "start": 3210.26, + "end": 3210.54, + "probability": 0.99462890625 + }, + { + "word": " on", + "start": 3210.54, + "end": 3210.7, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3210.7, + "end": 3210.8, + "probability": 0.99951171875 + }, + { + "word": " same", + "start": 3210.8, + "end": 3211.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1546, + "text": "controller.", + "start": 3211.08, + "end": 3211.32, + "words": [ + { + "word": " controller.", + "start": 3211.08, + "end": 3211.32, + "probability": 0.86376953125 + } + ] + }, + { + "id": 1547, + "text": "", + "start": 3211.32, + "end": 3211.32, + "words": [] + }, + { + "id": 1548, + "text": "", + "start": 3211.32, + "end": 3211.32, + "words": [] + }, + { + "id": 1549, + "text": "", + "start": 3211.32, + "end": 3211.32, + "words": [] + }, + { + "id": 1550, + "text": "", + "start": 3211.32, + "end": 3211.32, + "words": [] + }, + { + "id": 1551, + "text": "Even if you're on a different port.", + "start": 3211.32, + "end": 3212.7, + "words": [ + { + "word": " Even", + "start": 3211.32, + "end": 3211.6, + "probability": 0.0090179443359375 + }, + { + "word": " if", + "start": 3211.6, + "end": 3211.94, + "probability": 0.9990234375 + }, + { + "word": " you're", + "start": 3211.94, + "end": 3212.1, + "probability": 0.99658203125 + }, + { + "word": " on", + "start": 3212.1, + "end": 3212.18, + "probability": 0.9814453125 + }, + { + "word": " a", + "start": 3212.18, + "end": 3212.26, + "probability": 0.99853515625 + }, + { + "word": " different", + "start": 3212.26, + "end": 3212.42, + "probability": 0.99951171875 + }, + { + "word": " port.", + "start": 3212.42, + "end": 3212.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1552, + "text": "Right.", + "start": 3213.22, + "end": 3213.66, + "words": [ + { + "word": " Right.", + "start": 3213.22, + "end": 3213.66, + "probability": 0.84765625 + } + ] + }, + { + "id": 1553, + "text": "So the other interesting thing is of course,", + "start": 3213.84, + "end": 3216.24, + "words": [ + { + "word": " So", + "start": 3213.84, + "end": 3214.14, + "probability": 0.198974609375 + }, + { + "word": " the", + "start": 3214.14, + "end": 3214.46, + "probability": 0.8291015625 + }, + { + "word": " other", + "start": 3214.46, + "end": 3214.68, + "probability": 1.0 + }, + { + "word": " interesting", + "start": 3214.68, + "end": 3215.18, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3215.18, + "end": 3215.58, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3215.58, + "end": 3215.8, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3215.8, + "end": 3215.92, + "probability": 0.08984375 + }, + { + "word": " course,", + "start": 3215.92, + "end": 3216.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1554, + "text": "is my boot drive is theta.", + "start": 3216.3, + "end": 3219.1, + "words": [ + { + "word": " is", + "start": 3216.3, + "end": 3216.46, + "probability": 0.99609375 + }, + { + "word": " my", + "start": 3216.46, + "end": 3216.76, + "probability": 1.0 + }, + { + "word": " boot", + "start": 3216.76, + "end": 3217.06, + "probability": 0.99951171875 + }, + { + "word": " drive", + "start": 3217.06, + "end": 3217.36, + "probability": 0.99853515625 + }, + { + "word": " is", + "start": 3217.36, + "end": 3218.48, + "probability": 0.98046875 + }, + { + "word": " theta.", + "start": 3218.48, + "end": 3219.1, + "probability": 0.334716796875 + } + ] + }, + { + "id": 1555, + "text": "My,", + "start": 3219.28, + "end": 3219.68, + "words": [ + { + "word": " My,", + "start": 3219.28, + "end": 3219.68, + "probability": 0.986328125 + } + ] + }, + { + "id": 1556, + "text": "I have another data drive drive F,", + "start": 3219.8, + "end": 3222.22, + "words": [ + { + "word": " I", + "start": 3219.8, + "end": 3220.02, + "probability": 1.0 + }, + { + "word": " have", + "start": 3220.02, + "end": 3220.34, + "probability": 1.0 + }, + { + "word": " another", + "start": 3220.34, + "end": 3220.68, + "probability": 1.0 + }, + { + "word": " data", + "start": 3220.68, + "end": 3221.22, + "probability": 0.99951171875 + }, + { + "word": " drive", + "start": 3221.22, + "end": 3221.56, + "probability": 1.0 + }, + { + "word": " drive", + "start": 3221.56, + "end": 3222.0, + "probability": 0.28076171875 + }, + { + "word": " F,", + "start": 3222.0, + "end": 3222.22, + "probability": 0.8173828125 + } + ] + }, + { + "id": 1557, + "text": "which is theta.", + "start": 3222.42, + "end": 3223.06, + "words": [ + { + "word": " which", + "start": 3222.42, + "end": 3222.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 3222.62, + "end": 3222.8, + "probability": 1.0 + }, + { + "word": " theta.", + "start": 3222.8, + "end": 3223.06, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1558, + "text": "And I've never had a problem with either one of those.", + "start": 3223.34, + "end": 3226.18, + "words": [ + { + "word": " And", + "start": 3223.34, + "end": 3223.78, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 3223.78, + "end": 3224.02, + "probability": 1.0 + }, + { + "word": " never", + "start": 3224.02, + "end": 3224.24, + "probability": 1.0 + }, + { + "word": " had", + "start": 3224.24, + "end": 3224.58, + "probability": 1.0 + }, + { + "word": " a", + "start": 3224.58, + "end": 3224.72, + "probability": 1.0 + }, + { + "word": " problem", + "start": 3224.72, + "end": 3225.08, + "probability": 1.0 + }, + { + "word": " with", + "start": 3225.08, + "end": 3225.38, + "probability": 1.0 + }, + { + "word": " either", + "start": 3225.38, + "end": 3225.6, + "probability": 1.0 + }, + { + "word": " one", + "start": 3225.6, + "end": 3225.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 3225.86, + "end": 3226.0, + "probability": 1.0 + }, + { + "word": " those.", + "start": 3226.0, + "end": 3226.18, + "probability": 1.0 + } + ] + }, + { + "id": 1559, + "text": "Only the E drive.", + "start": 3226.24, + "end": 3227.12, + "words": [ + { + "word": " Only", + "start": 3226.24, + "end": 3226.56, + "probability": 0.98583984375 + }, + { + "word": " the", + "start": 3226.56, + "end": 3226.72, + "probability": 1.0 + }, + { + "word": " E", + "start": 3226.72, + "end": 3226.86, + "probability": 0.68408203125 + }, + { + "word": " drive.", + "start": 3226.86, + "end": 3227.12, + "probability": 0.96630859375 + } + ] + }, + { + "id": 1560, + "text": "Well,", + "start": 3228.12, + "end": 3228.56, + "words": [ + { + "word": " Well,", + "start": 3228.12, + "end": 3228.56, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1561, + "text": "you can try a different port.", + "start": 3229.38, + "end": 3230.82, + "words": [ + { + "word": " you", + "start": 3229.38, + "end": 3229.82, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 3229.82, + "end": 3230.12, + "probability": 1.0 + }, + { + "word": " try", + "start": 3230.12, + "end": 3230.3, + "probability": 0.9970703125 + }, + { + "word": " a", + "start": 3230.3, + "end": 3230.38, + "probability": 0.99951171875 + }, + { + "word": " different", + "start": 3230.38, + "end": 3230.5, + "probability": 1.0 + }, + { + "word": " port.", + "start": 3230.5, + "end": 3230.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1562, + "text": "That's your low budget.", + "start": 3230.9, + "end": 3231.64, + "words": [ + { + "word": " That's", + "start": 3230.9, + "end": 3231.1, + "probability": 0.998046875 + }, + { + "word": " your", + "start": 3231.1, + "end": 3231.16, + "probability": 1.0 + }, + { + "word": " low", + "start": 3231.16, + "end": 3231.34, + "probability": 1.0 + }, + { + "word": " budget.", + "start": 3231.34, + "end": 3231.64, + "probability": 1.0 + } + ] + }, + { + "id": 1563, + "text": "I mean,", + "start": 3231.68, + "end": 3231.84, + "words": [ + { + "word": " I", + "start": 3231.68, + "end": 3231.78, + "probability": 0.9736328125 + }, + { + "word": " mean,", + "start": 3231.78, + "end": 3231.84, + "probability": 1.0 + } + ] + }, + { + "id": 1564, + "text": "but replacements,", + "start": 3231.86, + "end": 3232.0800000000004, + "words": [ + { + "word": " but", + "start": 3231.86, + "end": 3231.94, + "probability": 0.98046875 + }, + { + "word": " replacements,", + "start": 3231.94, + "end": 3232.16, + "probability": 0.986328125 + } + ] + }, + { + "id": 1565, + "text": "you know,", + "start": 3233.14, + "end": 3233.7, + "words": [ + { + "word": " you", + "start": 3233.14, + "end": 3233.56, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3233.56, + "end": 3233.7, + "probability": 1.0 + } + ] + }, + { + "id": 1566, + "text": "conventional drives are cheap.", + "start": 3233.7, + "end": 3235.18, + "words": [ + { + "word": " conventional", + "start": 3233.7, + "end": 3234.04, + "probability": 0.99951171875 + }, + { + "word": " drives", + "start": 3234.04, + "end": 3234.34, + "probability": 1.0 + }, + { + "word": " are", + "start": 3234.34, + "end": 3234.64, + "probability": 1.0 + }, + { + "word": " cheap.", + "start": 3234.64, + "end": 3235.18, + "probability": 1.0 + } + ] + }, + { + "id": 1567, + "text": "Yeah.", + "start": 3235.84, + "end": 3236.28, + "words": [ + { + "word": " Yeah.", + "start": 3235.84, + "end": 3236.28, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1568, + "text": "So,", + "start": 3236.4, + "end": 3236.68, + "words": [ + { + "word": " So,", + "start": 3236.4, + "end": 3236.68, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1569, + "text": "yeah,", + "start": 3236.78, + "end": 3237.04, + "words": [ + { + "word": " yeah,", + "start": 3236.78, + "end": 3237.04, + "probability": 0.97802734375 + } + ] + }, + { + "id": 1570, + "text": "I may wind up just buying another drive.", + "start": 3237.14, + "end": 3239.22, + "words": [ + { + "word": " I", + "start": 3237.14, + "end": 3237.32, + "probability": 0.998046875 + }, + { + "word": " may", + "start": 3237.32, + "end": 3237.6, + "probability": 0.9658203125 + }, + { + "word": " wind", + "start": 3237.6, + "end": 3237.88, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 3237.88, + "end": 3238.1, + "probability": 1.0 + }, + { + "word": " just", + "start": 3238.1, + "end": 3238.26, + "probability": 1.0 + }, + { + "word": " buying", + "start": 3238.26, + "end": 3238.52, + "probability": 1.0 + }, + { + "word": " another", + "start": 3238.52, + "end": 3238.78, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 3238.78, + "end": 3239.22, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1571, + "text": "Cause,", + "start": 3239.3, + "end": 3239.54, + "words": [ + { + "word": " Cause,", + "start": 3239.3, + "end": 3239.54, + "probability": 0.8505859375 + } + ] + }, + { + "id": 1572, + "text": "uh,", + "start": 3239.56, + "end": 3239.74, + "words": [ + { + "word": " uh,", + "start": 3239.56, + "end": 3239.74, + "probability": 0.90673828125 + } + ] + }, + { + "id": 1573, + "text": "like you said,", + "start": 3239.86, + "end": 3240.44, + "words": [ + { + "word": " like", + "start": 3239.86, + "end": 3240.12, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3240.12, + "end": 3240.26, + "probability": 0.9990234375 + }, + { + "word": " said,", + "start": 3240.26, + "end": 3240.44, + "probability": 1.0 + } + ] + }, + { + "id": 1574, + "text": "600,", + "start": 3240.58, + "end": 3241.02, + "words": [ + { + "word": " 600,", + "start": 3240.58, + "end": 3241.02, + "probability": 0.92822265625 + } + ] + }, + { + "id": 1575, + "text": "650 days is quite a lot of time on the drive.", + "start": 3241.02, + "end": 3244.82, + "words": [ + { + "word": " 650", + "start": 3241.02, + "end": 3241.78, + "probability": 0.58447265625 + }, + { + "word": " days", + "start": 3241.78, + "end": 3242.92, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 3242.92, + "end": 3243.26, + "probability": 0.9970703125 + }, + { + "word": " quite", + "start": 3243.26, + "end": 3243.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 3243.5, + "end": 3243.72, + "probability": 1.0 + }, + { + "word": " lot", + "start": 3243.72, + "end": 3243.88, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3243.88, + "end": 3244.0, + "probability": 0.9990234375 + }, + { + "word": " time", + "start": 3244.0, + "end": 3244.26, + "probability": 1.0 + }, + { + "word": " on", + "start": 3244.26, + "end": 3244.46, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 3244.46, + "end": 3244.58, + "probability": 0.99951171875 + }, + { + "word": " drive.", + "start": 3244.58, + "end": 3244.82, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1576, + "text": "Yes,", + "start": 3245.08, + "end": 3245.4, + "words": [ + { + "word": " Yes,", + "start": 3245.08, + "end": 3245.4, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1577, + "text": "it is.", + "start": 3245.4, + "end": 3245.66, + "words": [ + { + "word": " it", + "start": 3245.4, + "end": 3245.5, + "probability": 1.0 + }, + { + "word": " is.", + "start": 3245.5, + "end": 3245.66, + "probability": 1.0 + } + ] + }, + { + "id": 1578, + "text": "Well,", + "start": 3245.96, + "end": 3246.36, + "words": [ + { + "word": " Well,", + "start": 3245.96, + "end": 3246.36, + "probability": 0.9921875 + } + ] + }, + { + "id": 1579, + "text": "good luck with that.", + "start": 3246.4, + "end": 3247.04, + "words": [ + { + "word": " good", + "start": 3246.4, + "end": 3246.52, + "probability": 1.0 + }, + { + "word": " luck", + "start": 3246.52, + "end": 3246.72, + "probability": 1.0 + }, + { + "word": " with", + "start": 3246.72, + "end": 3246.86, + "probability": 0.99951171875 + }, + { + "word": " that.", + "start": 3246.86, + "end": 3247.04, + "probability": 1.0 + } + ] + }, + { + "id": 1580, + "text": "And that I appreciate you.", + "start": 3247.08, + "end": 3248.06, + "words": [ + { + "word": " And", + "start": 3247.08, + "end": 3247.2, + "probability": 0.77783203125 + }, + { + "word": " that", + "start": 3247.2, + "end": 3247.3, + "probability": 0.0207061767578125 + }, + { + "word": " I", + "start": 3247.3, + "end": 3247.42, + "probability": 0.82177734375 + }, + { + "word": " appreciate", + "start": 3247.42, + "end": 3247.76, + "probability": 1.0 + }, + { + "word": " you.", + "start": 3247.76, + "end": 3248.06, + "probability": 0.69287109375 + } + ] + }, + { + "id": 1581, + "text": "Well,", + "start": 3248.32, + "end": 3248.72, + "words": [ + { + "word": " Well,", + "start": 3248.32, + "end": 3248.72, + "probability": 0.79345703125 + } + ] + }, + { + "id": 1582, + "text": "thanks very much for your input and I hope you enjoy your family.", + "start": 3248.82, + "end": 3251.76, + "words": [ + { + "word": " thanks", + "start": 3248.82, + "end": 3249.02, + "probability": 0.98046875 + }, + { + "word": " very", + "start": 3249.02, + "end": 3249.24, + "probability": 1.0 + }, + { + "word": " much", + "start": 3249.24, + "end": 3249.5, + "probability": 1.0 + }, + { + "word": " for", + "start": 3249.5, + "end": 3249.68, + "probability": 1.0 + }, + { + "word": " your", + "start": 3249.68, + "end": 3249.82, + "probability": 1.0 + }, + { + "word": " input", + "start": 3249.82, + "end": 3250.16, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 3250.16, + "end": 3250.38, + "probability": 0.45556640625 + }, + { + "word": " I", + "start": 3250.38, + "end": 3250.52, + "probability": 1.0 + }, + { + "word": " hope", + "start": 3250.52, + "end": 3250.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 3250.72, + "end": 3250.86, + "probability": 0.978515625 + }, + { + "word": " enjoy", + "start": 3250.86, + "end": 3251.1, + "probability": 1.0 + }, + { + "word": " your", + "start": 3251.1, + "end": 3251.46, + "probability": 1.0 + }, + { + "word": " family.", + "start": 3251.46, + "end": 3251.76, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1583, + "text": "Thank you very much.", + "start": 3251.8, + "end": 3253.34, + "words": [ + { + "word": " Thank", + "start": 3251.8, + "end": 3252.18, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3252.18, + "end": 3252.72, + "probability": 1.0 + }, + { + "word": " very", + "start": 3252.72, + "end": 3252.94, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 3252.94, + "end": 3253.34, + "probability": 1.0 + } + ] + }, + { + "id": 1584, + "text": "So we're going to take a break.", + "start": 3253.44, + "end": 3254.4, + "words": [ + { + "word": " So", + "start": 3253.44, + "end": 3253.84, + "probability": 0.998046875 + }, + { + "word": " we're", + "start": 3253.84, + "end": 3253.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 3253.96, + "end": 3254.02, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 3254.02, + "end": 3254.04, + "probability": 1.0 + }, + { + "word": " take", + "start": 3254.04, + "end": 3254.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 3254.16, + "end": 3254.24, + "probability": 1.0 + }, + { + "word": " break.", + "start": 3254.24, + "end": 3254.4, + "probability": 1.0 + } + ] + }, + { + "id": 1585, + "text": "If you'd like to be part of the computer guru show for the last", + "start": 3254.44, + "end": 3257.68, + "words": [ + { + "word": " If", + "start": 3254.44, + "end": 3254.74, + "probability": 0.99853515625 + }, + { + "word": " you'd", + "start": 3254.74, + "end": 3254.96, + "probability": 1.0 + }, + { + "word": " like", + "start": 3254.96, + "end": 3255.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 3255.08, + "end": 3255.18, + "probability": 1.0 + }, + { + "word": " be", + "start": 3255.18, + "end": 3255.2, + "probability": 1.0 + }, + { + "word": " part", + "start": 3255.2, + "end": 3255.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 3255.38, + "end": 3255.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3255.54, + "end": 3255.66, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 3255.66, + "end": 3256.0, + "probability": 0.9716796875 + }, + { + "word": " guru", + "start": 3256.0, + "end": 3256.2, + "probability": 0.9462890625 + }, + { + "word": " show", + "start": 3256.2, + "end": 3256.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 3256.42, + "end": 3256.64, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3256.64, + "end": 3256.82, + "probability": 1.0 + }, + { + "word": " last", + "start": 3256.82, + "end": 3257.68, + "probability": 0.88671875 + } + ] + }, + { + "id": 1586, + "text": "episode,", + "start": 3257.68, + "end": 3258.28, + "words": [ + { + "word": " episode,", + "start": 3257.68, + "end": 3258.28, + "probability": 0.9951171875 + } + ] + }, + { + "id": 1587, + "text": "you can give us a call 790-2040.", + "start": 3258.48, + "end": 3260.46, + "words": [ + { + "word": " you", + "start": 3258.48, + "end": 3258.72, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 3258.72, + "end": 3258.88, + "probability": 1.0 + }, + { + "word": " give", + "start": 3258.88, + "end": 3259.06, + "probability": 1.0 + }, + { + "word": " us", + "start": 3259.06, + "end": 3259.22, + "probability": 0.9599609375 + }, + { + "word": " a", + "start": 3259.22, + "end": 3259.22, + "probability": 0.970703125 + }, + { + "word": " call", + "start": 3259.22, + "end": 3259.38, + "probability": 0.9990234375 + }, + { + "word": " 790", + "start": 3259.38, + "end": 3259.9, + "probability": 0.384033203125 + }, + { + "word": "-2040.", + "start": 3259.9, + "end": 3260.46, + "probability": 0.94287109375 + } + ] + }, + { + "id": 1588, + "text": "That's 5 T 0 7 9 0 20 40.", + "start": 3260.82, + "end": 3262.74, + "words": [ + { + "word": " That's", + "start": 3260.82, + "end": 3261.22, + "probability": 0.99951171875 + }, + { + "word": " 5", + "start": 3261.22, + "end": 3261.34, + "probability": 0.9501953125 + }, + { + "word": " T", + "start": 3261.34, + "end": 3261.44, + "probability": 0.146728515625 + }, + { + "word": " 0", + "start": 3261.44, + "end": 3261.62, + "probability": 0.8681640625 + }, + { + "word": " 7", + "start": 3261.62, + "end": 3261.94, + "probability": 0.99951171875 + }, + { + "word": " 9", + "start": 3261.94, + "end": 3262.16, + "probability": 0.1956787109375 + }, + { + "word": " 0", + "start": 3262.16, + "end": 3262.32, + "probability": 0.9990234375 + }, + { + "word": " 20", + "start": 3262.32, + "end": 3262.54, + "probability": 0.9921875 + }, + { + "word": " 40.", + "start": 3262.54, + "end": 3262.74, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1589, + "text": "We'll be right back.", + "start": 3262.82, + "end": 3263.6, + "words": [ + { + "word": " We'll", + "start": 3262.82, + "end": 3263.14, + "probability": 1.0 + }, + { + "word": " be", + "start": 3263.14, + "end": 3263.22, + "probability": 1.0 + }, + { + "word": " right", + "start": 3263.22, + "end": 3263.36, + "probability": 1.0 + }, + { + "word": " back.", + "start": 3263.36, + "end": 3263.6, + "probability": 1.0 + } + ] + }, + { + "id": 1590, + "text": "Cause I'm dynamite.", + "start": 3263.8, + "end": 3267.44, + "words": [ + { + "word": " Cause", + "start": 3263.8, + "end": 3263.86, + "probability": 0.026153564453125 + }, + { + "word": " I'm", + "start": 3263.86, + "end": 3264.32, + "probability": 1.0 + }, + { + "word": " dynamite.", + "start": 3264.32, + "end": 3267.44, + "probability": 0.5517578125 + } + ] + }, + { + "id": 1591, + "text": "And I'll win that.", + "start": 3269.5, + "end": 3270.7, + "words": [ + { + "word": " And", + "start": 3269.5, + "end": 3269.9, + "probability": 0.5966796875 + }, + { + "word": " I'll", + "start": 3269.9, + "end": 3270.16, + "probability": 0.61962890625 + }, + { + "word": " win", + "start": 3270.16, + "end": 3270.36, + "probability": 0.9873046875 + }, + { + "word": " that.", + "start": 3270.36, + "end": 3270.7, + "probability": 0.75634765625 + } + ] + }, + { + "id": 1592, + "text": "I'm a power load.", + "start": 3273.18, + "end": 3274.96, + "words": [ + { + "word": " I'm", + "start": 3273.18, + "end": 3273.72, + "probability": 0.442626953125 + }, + { + "word": " a", + "start": 3273.72, + "end": 3273.88, + "probability": 0.80322265625 + }, + { + "word": " power", + "start": 3273.88, + "end": 3274.22, + "probability": 0.88134765625 + }, + { + "word": " load.", + "start": 3274.22, + "end": 3274.96, + "probability": 0.98486328125 + } + ] + }, + { + "id": 1593, + "text": "Your computer guru,", + "start": 3284.48, + "end": 3285.98, + "words": [ + { + "word": " Your", + "start": 3284.48, + "end": 3285.02, + "probability": 0.5625 + }, + { + "word": " computer", + "start": 3285.02, + "end": 3285.56, + "probability": 0.99462890625 + }, + { + "word": " guru,", + "start": 3285.56, + "end": 3285.98, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1594, + "text": "Mike Swanson is here to help you tame that beast of a machine.", + "start": 3286.06, + "end": 3288.86, + "words": [ + { + "word": " Mike", + "start": 3286.06, + "end": 3286.3, + "probability": 0.9990234375 + }, + { + "word": " Swanson", + "start": 3286.3, + "end": 3286.62, + "probability": 0.77587890625 + }, + { + "word": " is", + "start": 3286.62, + "end": 3286.86, + "probability": 0.275146484375 + }, + { + "word": " here", + "start": 3286.86, + "end": 3287.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 3287.04, + "end": 3287.18, + "probability": 1.0 + }, + { + "word": " help", + "start": 3287.18, + "end": 3287.4, + "probability": 1.0 + }, + { + "word": " you", + "start": 3287.4, + "end": 3287.58, + "probability": 1.0 + }, + { + "word": " tame", + "start": 3287.58, + "end": 3287.76, + "probability": 0.99072265625 + }, + { + "word": " that", + "start": 3287.76, + "end": 3287.96, + "probability": 1.0 + }, + { + "word": " beast", + "start": 3287.96, + "end": 3288.26, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3288.26, + "end": 3288.5, + "probability": 1.0 + }, + { + "word": " a", + "start": 3288.5, + "end": 3288.58, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 3288.58, + "end": 3288.86, + "probability": 1.0 + } + ] + }, + { + "id": 1595, + "text": "Join the chat right now at guru show.com or call in.", + "start": 3289.08, + "end": 3292.72, + "words": [ + { + "word": " Join", + "start": 3289.08, + "end": 3289.62, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3289.62, + "end": 3289.8, + "probability": 1.0 + }, + { + "word": " chat", + "start": 3289.8, + "end": 3289.98, + "probability": 1.0 + }, + { + "word": " right", + "start": 3289.98, + "end": 3290.24, + "probability": 1.0 + }, + { + "word": " now", + "start": 3290.24, + "end": 3290.54, + "probability": 1.0 + }, + { + "word": " at", + "start": 3290.54, + "end": 3290.8, + "probability": 0.99560546875 + }, + { + "word": " guru", + "start": 3290.8, + "end": 3291.08, + "probability": 0.56396484375 + }, + { + "word": " show", + "start": 3291.08, + "end": 3291.34, + "probability": 0.994140625 + }, + { + "word": ".com", + "start": 3291.34, + "end": 3291.94, + "probability": 0.99658203125 + }, + { + "word": " or", + "start": 3291.94, + "end": 3292.24, + "probability": 0.998046875 + }, + { + "word": " call", + "start": 3292.24, + "end": 3292.46, + "probability": 0.99853515625 + }, + { + "word": " in.", + "start": 3292.46, + "end": 3292.72, + "probability": 0.998046875 + } + ] + }, + { + "id": 1596, + "text": "This is a computer guru show on KVO.", + "start": 3292.78, + "end": 3295.36, + "words": [ + { + "word": " This", + "start": 3292.78, + "end": 3293.08, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3293.08, + "end": 3293.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 3293.4, + "end": 3293.52, + "probability": 0.8837890625 + }, + { + "word": " computer", + "start": 3293.52, + "end": 3293.8, + "probability": 0.99951171875 + }, + { + "word": " guru", + "start": 3293.8, + "end": 3294.14, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 3294.14, + "end": 3294.5, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 3294.5, + "end": 3294.92, + "probability": 0.9931640625 + }, + { + "word": " KVO.", + "start": 3294.92, + "end": 3295.36, + "probability": 0.58349609375 + } + ] + }, + { + "id": 1597, + "text": "Why the voice.", + "start": 3295.42, + "end": 3296.26, + "words": [ + { + "word": " Why", + "start": 3295.42, + "end": 3295.72, + "probability": 0.9765625 + }, + { + "word": " the", + "start": 3295.72, + "end": 3295.98, + "probability": 0.99072265625 + }, + { + "word": " voice.", + "start": 3295.98, + "end": 3296.26, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1598, + "text": "I'm dirty.", + "start": 3300.12, + "end": 3300.88, + "words": [ + { + "word": " I'm", + "start": 3300.12, + "end": 3300.66, + "probability": 0.470947265625 + }, + { + "word": " dirty.", + "start": 3300.66, + "end": 3300.88, + "probability": 0.60009765625 + } + ] + }, + { + "id": 1599, + "text": "I'm a machine.", + "start": 3300.88, + "end": 3301.0, + "words": [ + { + "word": " I'm", + "start": 3300.88, + "end": 3301.0, + "probability": 0.912109375 + }, + { + "word": " a", + "start": 3301.0, + "end": 3301.0, + "probability": 0.050872802734375 + }, + { + "word": " machine.", + "start": 3301.0, + "end": 3301.0, + "probability": 0.008392333984375 + } + ] + }, + { + "id": 1600, + "text": "", + "start": 3301.0, + "end": 3301.0, + "words": [] + }, + { + "id": 1601, + "text": "", + "start": 3301.0, + "end": 3301.0, + "words": [] + }, + { + "id": 1602, + "text": "", + "start": 3301.0, + "end": 3301.0, + "words": [] + }, + { + "id": 1603, + "text": "I was in a V club and Glee club and even the chess team.", + "start": 3301.02, + "end": 3306.6, + "words": [ + { + "word": " I", + "start": 3301.02, + "end": 3301.52, + "probability": 0.0765380859375 + }, + { + "word": " was", + "start": 3301.52, + "end": 3302.72, + "probability": 0.30517578125 + }, + { + "word": " in", + "start": 3302.72, + "end": 3304.14, + "probability": 0.96875 + }, + { + "word": " a", + "start": 3304.14, + "end": 3304.3, + "probability": 0.62890625 + }, + { + "word": " V", + "start": 3304.3, + "end": 3304.46, + "probability": 0.081787109375 + }, + { + "word": " club", + "start": 3304.46, + "end": 3304.74, + "probability": 0.1480712890625 + }, + { + "word": " and", + "start": 3304.74, + "end": 3304.98, + "probability": 0.97314453125 + }, + { + "word": " Glee", + "start": 3304.98, + "end": 3305.2, + "probability": 0.9228515625 + }, + { + "word": " club", + "start": 3305.2, + "end": 3305.4, + "probability": 0.82421875 + }, + { + "word": " and", + "start": 3305.4, + "end": 3305.6, + "probability": 0.97021484375 + }, + { + "word": " even", + "start": 3305.6, + "end": 3305.86, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3305.86, + "end": 3306.04, + "probability": 0.99658203125 + }, + { + "word": " chess", + "start": 3306.04, + "end": 3306.2, + "probability": 0.78564453125 + }, + { + "word": " team.", + "start": 3306.2, + "end": 3306.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1604, + "text": "Only question.", + "start": 3306.68, + "end": 3307.2, + "words": [ + { + "word": " Only", + "start": 3306.68, + "end": 3306.84, + "probability": 0.93359375 + }, + { + "word": " question.", + "start": 3306.84, + "end": 3307.2, + "probability": 1.0 + } + ] + }, + { + "id": 1605, + "text": "I never thought was hard.", + "start": 3307.24, + "end": 3308.3, + "words": [ + { + "word": " I", + "start": 3307.24, + "end": 3307.46, + "probability": 0.9990234375 + }, + { + "word": " never", + "start": 3307.46, + "end": 3307.72, + "probability": 0.91650390625 + }, + { + "word": " thought", + "start": 3307.72, + "end": 3307.9, + "probability": 1.0 + }, + { + "word": " was", + "start": 3307.9, + "end": 3308.06, + "probability": 0.318115234375 + }, + { + "word": " hard.", + "start": 3308.06, + "end": 3308.3, + "probability": 1.0 + } + ] + }, + { + "id": 1606, + "text": "What do I like her?", + "start": 3308.38, + "end": 3309.0, + "words": [ + { + "word": " What", + "start": 3308.38, + "end": 3308.46, + "probability": 0.9931640625 + }, + { + "word": " do", + "start": 3308.46, + "end": 3308.58, + "probability": 0.99609375 + }, + { + "word": " I", + "start": 3308.58, + "end": 3308.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 3308.7, + "end": 3308.88, + "probability": 1.0 + }, + { + "word": " her?", + "start": 3308.88, + "end": 3309.0, + "probability": 0.591796875 + } + ] + }, + { + "id": 1607, + "text": "Or do I like my card?", + "start": 3309.08, + "end": 3310.0, + "words": [ + { + "word": " Or", + "start": 3309.08, + "end": 3309.22, + "probability": 0.99462890625 + }, + { + "word": " do", + "start": 3309.22, + "end": 3309.3, + "probability": 1.0 + }, + { + "word": " I", + "start": 3309.3, + "end": 3309.42, + "probability": 1.0 + }, + { + "word": " like", + "start": 3309.42, + "end": 3309.62, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 3309.62, + "end": 3309.76, + "probability": 0.833984375 + }, + { + "word": " card?", + "start": 3309.76, + "end": 3310.0, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1608, + "text": "Spend every weekend at the Renaissance fair.", + "start": 3310.08, + "end": 3312.0, + "words": [ + { + "word": " Spend", + "start": 3310.08, + "end": 3310.4, + "probability": 0.9970703125 + }, + { + "word": " every", + "start": 3310.4, + "end": 3310.58, + "probability": 1.0 + }, + { + "word": " weekend", + "start": 3310.58, + "end": 3310.92, + "probability": 0.97998046875 + }, + { + "word": " at", + "start": 3310.92, + "end": 3311.06, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3311.06, + "end": 3311.1, + "probability": 1.0 + }, + { + "word": " Renaissance", + "start": 3311.1, + "end": 3311.44, + "probability": 0.97314453125 + }, + { + "word": " fair.", + "start": 3311.44, + "end": 3312.0, + "probability": 0.953125 + } + ] + }, + { + "id": 1609, + "text": "Got my name on my underwear.", + "start": 3312.08, + "end": 3313.2, + "words": [ + { + "word": " Got", + "start": 3312.08, + "end": 3312.18, + "probability": 0.9697265625 + }, + { + "word": " my", + "start": 3312.18, + "end": 3312.3, + "probability": 1.0 + }, + { + "word": " name", + "start": 3312.3, + "end": 3312.52, + "probability": 1.0 + }, + { + "word": " on", + "start": 3312.52, + "end": 3312.66, + "probability": 1.0 + }, + { + "word": " my", + "start": 3312.66, + "end": 3312.8, + "probability": 0.99658203125 + }, + { + "word": " underwear.", + "start": 3312.8, + "end": 3313.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1610, + "text": "Welcome back to the computer guru show 790-2040.", + "start": 3314.54, + "end": 3317.28, + "words": [ + { + "word": " Welcome", + "start": 3314.54, + "end": 3314.9, + "probability": 0.9921875 + }, + { + "word": " back", + "start": 3314.9, + "end": 3315.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 3315.26, + "end": 3315.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 3315.42, + "end": 3315.54, + "probability": 0.99755859375 + }, + { + "word": " computer", + "start": 3315.54, + "end": 3315.78, + "probability": 0.966796875 + }, + { + "word": " guru", + "start": 3315.78, + "end": 3316.0, + "probability": 0.04949951171875 + }, + { + "word": " show", + "start": 3316.0, + "end": 3316.2, + "probability": 0.99951171875 + }, + { + "word": " 790", + "start": 3316.2, + "end": 3316.72, + "probability": 0.186767578125 + }, + { + "word": "-2040.", + "start": 3316.72, + "end": 3317.28, + "probability": 0.67333984375 + } + ] + }, + { + "id": 1611, + "text": "If you'd like to be part of the show,", + "start": 3317.34, + "end": 3318.4, + "words": [ + { + "word": " If", + "start": 3317.34, + "end": 3317.44, + "probability": 0.99853515625 + }, + { + "word": " you'd", + "start": 3317.44, + "end": 3317.52, + "probability": 1.0 + }, + { + "word": " like", + "start": 3317.52, + "end": 3317.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 3317.56, + "end": 3317.68, + "probability": 1.0 + }, + { + "word": " be", + "start": 3317.68, + "end": 3317.72, + "probability": 1.0 + }, + { + "word": " part", + "start": 3317.72, + "end": 3317.9, + "probability": 1.0 + }, + { + "word": " of", + "start": 3317.9, + "end": 3318.02, + "probability": 1.0 + }, + { + "word": " the", + "start": 3318.02, + "end": 3318.08, + "probability": 0.99951171875 + }, + { + "word": " show,", + "start": 3318.08, + "end": 3318.4, + "probability": 1.0 + } + ] + }, + { + "id": 1612, + "text": "we'd love to hear from you.", + "start": 3319.02, + "end": 3320.18, + "words": [ + { + "word": " we'd", + "start": 3319.02, + "end": 3319.38, + "probability": 0.99951171875 + }, + { + "word": " love", + "start": 3319.38, + "end": 3319.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3319.54, + "end": 3319.68, + "probability": 1.0 + }, + { + "word": " hear", + "start": 3319.68, + "end": 3319.86, + "probability": 1.0 + }, + { + "word": " from", + "start": 3319.86, + "end": 3320.06, + "probability": 1.0 + }, + { + "word": " you.", + "start": 3320.06, + "end": 3320.18, + "probability": 1.0 + } + ] + }, + { + "id": 1613, + "text": "We have a caller called Paul.", + "start": 3320.22, + "end": 3321.72, + "words": [ + { + "word": " We", + "start": 3320.22, + "end": 3320.3, + "probability": 0.9892578125 + }, + { + "word": " have", + "start": 3320.3, + "end": 3320.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 3320.46, + "end": 3320.6, + "probability": 1.0 + }, + { + "word": " caller", + "start": 3320.6, + "end": 3320.9, + "probability": 0.99609375 + }, + { + "word": " called", + "start": 3320.9, + "end": 3321.2, + "probability": 0.99853515625 + }, + { + "word": " Paul.", + "start": 3321.2, + "end": 3321.72, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1614, + "text": "Hello,", + "start": 3321.86, + "end": 3322.08, + "words": [ + { + "word": " Hello,", + "start": 3321.86, + "end": 3322.08, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1615, + "text": "Paul.", + "start": 3322.12, + "end": 3322.32, + "words": [ + { + "word": " Paul.", + "start": 3322.12, + "end": 3322.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1616, + "text": "How are you?", + "start": 3322.44, + "end": 3322.84, + "words": [ + { + "word": " How", + "start": 3322.44, + "end": 3322.52, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3322.52, + "end": 3322.66, + "probability": 1.0 + }, + { + "word": " you?", + "start": 3322.66, + "end": 3322.84, + "probability": 1.0 + } + ] + }, + { + "id": 1617, + "text": "Yes.", + "start": 3324.54, + "end": 3324.9, + "words": [ + { + "word": " Yes.", + "start": 3324.54, + "end": 3324.9, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1618, + "text": "Hello.", + "start": 3324.9, + "end": 3325.12, + "words": [ + { + "word": " Hello.", + "start": 3324.9, + "end": 3325.12, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1619, + "text": "Um,", + "start": 3325.22, + "end": 3325.54, + "words": [ + { + "word": " Um,", + "start": 3325.22, + "end": 3325.54, + "probability": 0.3642578125 + } + ] + }, + { + "id": 1620, + "text": "I had called before and asked about some error codes and you asked me to email you", + "start": 3326.06, + "end": 3331.0, + "words": [ + { + "word": " I", + "start": 3326.06, + "end": 3326.42, + "probability": 0.99853515625 + }, + { + "word": " had", + "start": 3326.42, + "end": 3326.6, + "probability": 0.99365234375 + }, + { + "word": " called", + "start": 3326.6, + "end": 3326.78, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 3326.78, + "end": 3327.1, + "probability": 0.927734375 + }, + { + "word": " and", + "start": 3327.1, + "end": 3328.1, + "probability": 0.98193359375 + }, + { + "word": " asked", + "start": 3328.1, + "end": 3328.44, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 3328.44, + "end": 3328.66, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 3328.66, + "end": 3328.82, + "probability": 0.99755859375 + }, + { + "word": " error", + "start": 3328.82, + "end": 3329.02, + "probability": 0.98974609375 + }, + { + "word": " codes", + "start": 3329.02, + "end": 3329.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 3329.48, + "end": 3330.18, + "probability": 0.7685546875 + }, + { + "word": " you", + "start": 3330.18, + "end": 3330.38, + "probability": 0.9990234375 + }, + { + "word": " asked", + "start": 3330.38, + "end": 3330.58, + "probability": 0.998046875 + }, + { + "word": " me", + "start": 3330.58, + "end": 3330.72, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3330.72, + "end": 3330.84, + "probability": 0.82666015625 + }, + { + "word": " email", + "start": 3330.84, + "end": 3331.0, + "probability": 0.8984375 + }, + { + "word": " you", + "start": 3331.0, + "end": 3331.0, + "probability": 0.9326171875 + } + ] + }, + { + "id": 1621, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1622, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1623, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1624, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1625, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1626, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1627, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1628, + "text": "", + "start": 3331.0, + "end": 3331.0, + "words": [] + }, + { + "id": 1629, + "text": "so you can explain to me what they meant.", + "start": 3331.0, + "end": 3333.94, + "words": [ + { + "word": " so", + "start": 3331.0, + "end": 3331.36, + "probability": 0.0221099853515625 + }, + { + "word": " you", + "start": 3331.36, + "end": 3332.54, + "probability": 0.7998046875 + }, + { + "word": " can", + "start": 3332.54, + "end": 3332.64, + "probability": 0.86181640625 + }, + { + "word": " explain", + "start": 3332.64, + "end": 3333.22, + "probability": 0.98486328125 + }, + { + "word": " to", + "start": 3333.22, + "end": 3333.36, + "probability": 0.9609375 + }, + { + "word": " me", + "start": 3333.36, + "end": 3333.42, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 3333.42, + "end": 3333.54, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 3333.54, + "end": 3333.68, + "probability": 0.99755859375 + }, + { + "word": " meant.", + "start": 3333.68, + "end": 3333.94, + "probability": 0.9814453125 + } + ] + }, + { + "id": 1630, + "text": "And I did that.", + "start": 3334.46, + "end": 3336.1, + "words": [ + { + "word": " And", + "start": 3334.46, + "end": 3334.86, + "probability": 0.8203125 + }, + { + "word": " I", + "start": 3334.86, + "end": 3335.26, + "probability": 0.9892578125 + }, + { + "word": " did", + "start": 3335.26, + "end": 3335.9, + "probability": 0.994140625 + }, + { + "word": " that.", + "start": 3335.9, + "end": 3336.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1631, + "text": "I emailed him twice.", + "start": 3336.18, + "end": 3337.32, + "words": [ + { + "word": " I", + "start": 3336.18, + "end": 3336.3, + "probability": 0.998046875 + }, + { + "word": " emailed", + "start": 3336.3, + "end": 3336.92, + "probability": 0.9482421875 + }, + { + "word": " him", + "start": 3336.92, + "end": 3337.08, + "probability": 0.0863037109375 + }, + { + "word": " twice.", + "start": 3337.08, + "end": 3337.32, + "probability": 1.0 + } + ] + }, + { + "id": 1632, + "text": "Actually,", + "start": 3337.32, + "end": 3337.64, + "words": [ + { + "word": " Actually,", + "start": 3337.32, + "end": 3337.64, + "probability": 0.67431640625 + } + ] + }, + { + "id": 1633, + "text": "I never got a response.", + "start": 3337.68, + "end": 3338.42, + "words": [ + { + "word": " I", + "start": 3337.68, + "end": 3337.76, + "probability": 0.98974609375 + }, + { + "word": " never", + "start": 3337.76, + "end": 3337.86, + "probability": 1.0 + }, + { + "word": " got", + "start": 3337.86, + "end": 3338.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 3338.06, + "end": 3338.12, + "probability": 1.0 + }, + { + "word": " response.", + "start": 3338.12, + "end": 3338.42, + "probability": 1.0 + } + ] + }, + { + "id": 1634, + "text": "Oh,", + "start": 3338.78, + "end": 3339.06, + "words": [ + { + "word": " Oh,", + "start": 3338.78, + "end": 3339.06, + "probability": 0.95361328125 + } + ] + }, + { + "id": 1635, + "text": "really?", + "start": 3339.1, + "end": 3339.24, + "words": [ + { + "word": " really?", + "start": 3339.1, + "end": 3339.24, + "probability": 1.0 + } + ] + }, + { + "id": 1636, + "text": "What was it?", + "start": 3339.34, + "end": 3339.66, + "words": [ + { + "word": " What", + "start": 3339.34, + "end": 3339.44, + "probability": 0.9990234375 + }, + { + "word": " was", + "start": 3339.44, + "end": 3339.62, + "probability": 1.0 + }, + { + "word": " it?", + "start": 3339.62, + "end": 3339.66, + "probability": 0.56005859375 + } + ] + }, + { + "id": 1637, + "text": "Well,", + "start": 3339.92, + "end": 3340.32, + "words": [ + { + "word": " Well,", + "start": 3339.92, + "end": 3340.32, + "probability": 0.98779296875 + } + ] + }, + { + "id": 1638, + "text": "they're kind of long.", + "start": 3341.92, + "end": 3342.64, + "words": [ + { + "word": " they're", + "start": 3341.92, + "end": 3342.06, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 3342.06, + "end": 3342.2, + "probability": 1.0 + }, + { + "word": " of", + "start": 3342.2, + "end": 3342.32, + "probability": 1.0 + }, + { + "word": " long.", + "start": 3342.32, + "end": 3342.64, + "probability": 1.0 + } + ] + }, + { + "id": 1639, + "text": "Um,", + "start": 3342.94, + "end": 3343.18, + "words": [ + { + "word": " Um,", + "start": 3342.94, + "end": 3343.18, + "probability": 0.0008549690246582031 + } + ] + }, + { + "id": 1640, + "text": "if they start with zero X,", + "start": 3343.44, + "end": 3345.16, + "words": [ + { + "word": " if", + "start": 3343.44, + "end": 3343.9, + "probability": 0.9921875 + }, + { + "word": " they", + "start": 3343.9, + "end": 3344.1, + "probability": 1.0 + }, + { + "word": " start", + "start": 3344.1, + "end": 3344.34, + "probability": 1.0 + }, + { + "word": " with", + "start": 3344.34, + "end": 3344.52, + "probability": 1.0 + }, + { + "word": " zero", + "start": 3344.52, + "end": 3344.82, + "probability": 0.9697265625 + }, + { + "word": " X,", + "start": 3344.82, + "end": 3345.16, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1641, + "text": "just give me that part.", + "start": 3345.32, + "end": 3346.22, + "words": [ + { + "word": " just", + "start": 3345.32, + "end": 3345.5, + "probability": 0.99951171875 + }, + { + "word": " give", + "start": 3345.5, + "end": 3345.7, + "probability": 1.0 + }, + { + "word": " me", + "start": 3345.7, + "end": 3345.86, + "probability": 1.0 + }, + { + "word": " that", + "start": 3345.86, + "end": 3345.98, + "probability": 1.0 + }, + { + "word": " part.", + "start": 3345.98, + "end": 3346.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1642, + "text": "Yes.", + "start": 3346.36, + "end": 3346.6, + "words": [ + { + "word": " Yes.", + "start": 3346.36, + "end": 3346.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1643, + "text": "Yes.", + "start": 3347.76, + "end": 3348.16, + "words": [ + { + "word": " Yes.", + "start": 3347.76, + "end": 3348.16, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1644, + "text": "He started with zero X and then there's a six zeros and then eight and E Edward.", + "start": 3348.24, + "end": 3353.78, + "words": [ + { + "word": " He", + "start": 3348.24, + "end": 3348.34, + "probability": 0.2998046875 + }, + { + "word": " started", + "start": 3348.34, + "end": 3348.44, + "probability": 0.75634765625 + }, + { + "word": " with", + "start": 3348.44, + "end": 3348.58, + "probability": 0.99755859375 + }, + { + "word": " zero", + "start": 3348.58, + "end": 3348.74, + "probability": 0.99951171875 + }, + { + "word": " X", + "start": 3348.74, + "end": 3349.04, + "probability": 1.0 + }, + { + "word": " and", + "start": 3349.04, + "end": 3349.34, + "probability": 0.74755859375 + }, + { + "word": " then", + "start": 3349.34, + "end": 3349.76, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3349.76, + "end": 3350.1, + "probability": 1.0 + }, + { + "word": " a", + "start": 3350.1, + "end": 3350.22, + "probability": 0.39990234375 + }, + { + "word": " six", + "start": 3350.22, + "end": 3351.14, + "probability": 0.9990234375 + }, + { + "word": " zeros", + "start": 3351.14, + "end": 3351.54, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 3351.54, + "end": 3351.96, + "probability": 0.97509765625 + }, + { + "word": " then", + "start": 3351.96, + "end": 3352.1, + "probability": 0.97412109375 + }, + { + "word": " eight", + "start": 3352.1, + "end": 3352.4, + "probability": 0.9697265625 + }, + { + "word": " and", + "start": 3352.4, + "end": 3352.8, + "probability": 0.998046875 + }, + { + "word": " E", + "start": 3352.8, + "end": 3353.04, + "probability": 0.99560546875 + }, + { + "word": " Edward.", + "start": 3353.04, + "end": 3353.78, + "probability": 0.9873046875 + } + ] + }, + { + "id": 1645, + "text": "And then there's in parentheses,", + "start": 3354.16, + "end": 3355.42, + "words": [ + { + "word": " And", + "start": 3354.16, + "end": 3354.56, + "probability": 1.0 + }, + { + "word": " then", + "start": 3354.56, + "end": 3354.7, + "probability": 1.0 + }, + { + "word": " there's", + "start": 3354.7, + "end": 3354.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 3354.94, + "end": 3355.0, + "probability": 0.99755859375 + }, + { + "word": " parentheses,", + "start": 3355.0, + "end": 3355.42, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1646, + "text": "a whole set of more of these zero X codes and they all end in different numbers.", + "start": 3355.42, + "end": 3360.74, + "words": [ + { + "word": " a", + "start": 3355.42, + "end": 3355.86, + "probability": 0.99462890625 + }, + { + "word": " whole", + "start": 3355.86, + "end": 3356.04, + "probability": 1.0 + }, + { + "word": " set", + "start": 3356.04, + "end": 3356.3, + "probability": 1.0 + }, + { + "word": " of", + "start": 3356.3, + "end": 3356.42, + "probability": 1.0 + }, + { + "word": " more", + "start": 3356.42, + "end": 3356.6, + "probability": 1.0 + }, + { + "word": " of", + "start": 3356.6, + "end": 3356.78, + "probability": 1.0 + }, + { + "word": " these", + "start": 3356.78, + "end": 3357.04, + "probability": 1.0 + }, + { + "word": " zero", + "start": 3357.04, + "end": 3357.76, + "probability": 0.96923828125 + }, + { + "word": " X", + "start": 3357.76, + "end": 3357.98, + "probability": 1.0 + }, + { + "word": " codes", + "start": 3357.98, + "end": 3358.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 3358.38, + "end": 3359.22, + "probability": 0.83544921875 + }, + { + "word": " they", + "start": 3359.22, + "end": 3359.48, + "probability": 0.93212890625 + }, + { + "word": " all", + "start": 3359.48, + "end": 3359.6, + "probability": 0.998046875 + }, + { + "word": " end", + "start": 3359.6, + "end": 3359.8, + "probability": 0.64892578125 + }, + { + "word": " in", + "start": 3359.8, + "end": 3359.92, + "probability": 0.99853515625 + }, + { + "word": " different", + "start": 3359.92, + "end": 3360.14, + "probability": 0.99609375 + }, + { + "word": " numbers.", + "start": 3360.14, + "end": 3360.74, + "probability": 0.9921875 + } + ] + }, + { + "id": 1647, + "text": "Um,", + "start": 3360.8, + "end": 3360.98, + "words": [ + { + "word": " Um,", + "start": 3360.8, + "end": 3360.98, + "probability": 0.39599609375 + } + ] + }, + { + "id": 1648, + "text": "and then there's like the first set is in zero five,", + "start": 3361.0, + "end": 3362.76, + "words": [ + { + "word": " and", + "start": 3361.0, + "end": 3361.28, + "probability": 0.0003070831298828125 + }, + { + "word": " then", + "start": 3361.28, + "end": 3361.28, + "probability": 0.269775390625 + }, + { + "word": " there's", + "start": 3361.28, + "end": 3361.28, + "probability": 0.265869140625 + }, + { + "word": " like", + "start": 3361.28, + "end": 3361.28, + "probability": 0.224365234375 + }, + { + "word": " the", + "start": 3361.28, + "end": 3361.38, + "probability": 0.876953125 + }, + { + "word": " first", + "start": 3361.38, + "end": 3361.6, + "probability": 0.990234375 + }, + { + "word": " set", + "start": 3361.6, + "end": 3361.82, + "probability": 0.9541015625 + }, + { + "word": " is", + "start": 3361.82, + "end": 3362.14, + "probability": 0.5615234375 + }, + { + "word": " in", + "start": 3362.14, + "end": 3362.32, + "probability": 0.96728515625 + }, + { + "word": " zero", + "start": 3362.32, + "end": 3362.48, + "probability": 0.1846923828125 + }, + { + "word": " five,", + "start": 3362.48, + "end": 3362.76, + "probability": 0.845703125 + } + ] + }, + { + "id": 1649, + "text": "right?", + "start": 3363.1, + "end": 3363.58, + "words": [ + { + "word": " right?", + "start": 3363.1, + "end": 3363.58, + "probability": 0.073974609375 + } + ] + }, + { + "id": 1650, + "text": "The same,", + "start": 3363.72, + "end": 3364.12, + "words": [ + { + "word": " The", + "start": 3363.72, + "end": 3363.82, + "probability": 0.7177734375 + }, + { + "word": " same,", + "start": 3363.82, + "end": 3364.12, + "probability": 0.99609375 + } + ] + }, + { + "id": 1651, + "text": "you know,", + "start": 3364.12, + "end": 3364.4, + "words": [ + { + "word": " you", + "start": 3364.12, + "end": 3364.22, + "probability": 0.98828125 + }, + { + "word": " know,", + "start": 3364.22, + "end": 3364.4, + "probability": 1.0 + } + ] + }, + { + "id": 1652, + "text": "64.", + "start": 3364.4, + "end": 3364.68, + "words": [ + { + "word": " 64.", + "start": 3364.4, + "end": 3364.68, + "probability": 0.57861328125 + } + ] + }, + { + "id": 1653, + "text": "Those parts are more of the,", + "start": 3365.2, + "end": 3366.46, + "words": [ + { + "word": " Those", + "start": 3365.2, + "end": 3365.68, + "probability": 0.8212890625 + }, + { + "word": " parts", + "start": 3365.68, + "end": 3365.92, + "probability": 0.99609375 + }, + { + "word": " are", + "start": 3365.92, + "end": 3366.12, + "probability": 0.99560546875 + }, + { + "word": " more", + "start": 3366.12, + "end": 3366.28, + "probability": 0.99560546875 + }, + { + "word": " of", + "start": 3366.28, + "end": 3366.34, + "probability": 0.8251953125 + }, + { + "word": " the,", + "start": 3366.34, + "end": 3366.46, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1654, + "text": "the specifics.", + "start": 3366.54, + "end": 3367.8, + "words": [ + { + "word": " the", + "start": 3366.54, + "end": 3366.86, + "probability": 0.9931640625 + }, + { + "word": " specifics.", + "start": 3366.86, + "end": 3367.8, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1655, + "text": "It's that first part that's really important.", + "start": 3368.02, + "end": 3369.74, + "words": [ + { + "word": " It's", + "start": 3368.02, + "end": 3368.36, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3368.36, + "end": 3368.5, + "probability": 0.9990234375 + }, + { + "word": " first", + "start": 3368.5, + "end": 3368.78, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 3368.78, + "end": 3368.98, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 3368.98, + "end": 3369.28, + "probability": 0.7802734375 + }, + { + "word": " really", + "start": 3369.28, + "end": 3369.44, + "probability": 0.99951171875 + }, + { + "word": " important.", + "start": 3369.44, + "end": 3369.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1656, + "text": "It kind of gives you the what's happening part.", + "start": 3369.88, + "end": 3372.76, + "words": [ + { + "word": " It", + "start": 3369.88, + "end": 3369.92, + "probability": 0.99169921875 + }, + { + "word": " kind", + "start": 3369.92, + "end": 3370.02, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3370.02, + "end": 3370.04, + "probability": 1.0 + }, + { + "word": " gives", + "start": 3370.04, + "end": 3370.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 3370.24, + "end": 3370.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 3370.34, + "end": 3370.48, + "probability": 0.99951171875 + }, + { + "word": " what's", + "start": 3370.48, + "end": 3371.7, + "probability": 0.9326171875 + }, + { + "word": " happening", + "start": 3371.7, + "end": 3372.12, + "probability": 0.99951171875 + }, + { + "word": " part.", + "start": 3372.12, + "end": 3372.76, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1657, + "text": "Oh,", + "start": 3373.16, + "end": 3373.64, + "words": [ + { + "word": " Oh,", + "start": 3373.16, + "end": 3373.64, + "probability": 0.94140625 + } + ] + }, + { + "id": 1658, + "text": "okay.", + "start": 3373.74, + "end": 3374.04, + "words": [ + { + "word": " okay.", + "start": 3373.74, + "end": 3374.04, + "probability": 0.97900390625 + } + ] + }, + { + "id": 1659, + "text": "Zero eight.", + "start": 3374.28, + "end": 3375.24, + "words": [ + { + "word": " Zero", + "start": 3374.28, + "end": 3374.76, + "probability": 0.91650390625 + }, + { + "word": " eight.", + "start": 3374.76, + "end": 3375.24, + "probability": 0.998046875 + } + ] + }, + { + "id": 1660, + "text": "Um,", + "start": 3375.6, + "end": 3376.08, + "words": [ + { + "word": " Um,", + "start": 3375.6, + "end": 3376.08, + "probability": 0.755859375 + } + ] + }, + { + "id": 1661, + "text": "so zero eight E is Colonel mode exception not handled.", + "start": 3376.26, + "end": 3379.68, + "words": [ + { + "word": " so", + "start": 3376.26, + "end": 3376.52, + "probability": 0.99755859375 + }, + { + "word": " zero", + "start": 3376.52, + "end": 3376.8, + "probability": 0.98046875 + }, + { + "word": " eight", + "start": 3376.8, + "end": 3377.06, + "probability": 0.9736328125 + }, + { + "word": " E", + "start": 3377.06, + "end": 3377.22, + "probability": 0.923828125 + }, + { + "word": " is", + "start": 3377.22, + "end": 3377.84, + "probability": 1.0 + }, + { + "word": " Colonel", + "start": 3377.84, + "end": 3378.44, + "probability": 0.06378173828125 + }, + { + "word": " mode", + "start": 3378.44, + "end": 3378.72, + "probability": 0.9990234375 + }, + { + "word": " exception", + "start": 3378.72, + "end": 3379.06, + "probability": 0.92333984375 + }, + { + "word": " not", + "start": 3379.06, + "end": 3379.32, + "probability": 0.240234375 + }, + { + "word": " handled.", + "start": 3379.32, + "end": 3379.68, + "probability": 1.0 + } + ] + }, + { + "id": 1662, + "text": "And it usually means that either a driver has called to a spot within windows that is", + "start": 3380.0, + "end": 3386.22, + "words": [ + { + "word": " And", + "start": 3380.0, + "end": 3380.48, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 3380.48, + "end": 3380.56, + "probability": 0.92919921875 + }, + { + "word": " usually", + "start": 3380.56, + "end": 3380.8, + "probability": 1.0 + }, + { + "word": " means", + "start": 3380.8, + "end": 3381.08, + "probability": 1.0 + }, + { + "word": " that", + "start": 3381.08, + "end": 3381.36, + "probability": 1.0 + }, + { + "word": " either", + "start": 3381.36, + "end": 3381.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 3381.66, + "end": 3381.84, + "probability": 0.9990234375 + }, + { + "word": " driver", + "start": 3381.84, + "end": 3382.34, + "probability": 0.99951171875 + }, + { + "word": " has", + "start": 3382.34, + "end": 3383.18, + "probability": 0.99853515625 + }, + { + "word": " called", + "start": 3383.18, + "end": 3383.9, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3383.9, + "end": 3384.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 3384.18, + "end": 3384.4, + "probability": 0.99951171875 + }, + { + "word": " spot", + "start": 3384.4, + "end": 3384.74, + "probability": 0.99951171875 + }, + { + "word": " within", + "start": 3384.74, + "end": 3385.04, + "probability": 0.99951171875 + }, + { + "word": " windows", + "start": 3385.04, + "end": 3385.5, + "probability": 0.978515625 + }, + { + "word": " that", + "start": 3385.5, + "end": 3385.88, + "probability": 0.998046875 + }, + { + "word": " is", + "start": 3385.88, + "end": 3386.22, + "probability": 1.0 + } + ] + }, + { + "id": 1663, + "text": "failing in some way.", + "start": 3386.22, + "end": 3387.48, + "words": [ + { + "word": " failing", + "start": 3386.22, + "end": 3386.86, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 3386.86, + "end": 3387.08, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 3387.08, + "end": 3387.26, + "probability": 1.0 + }, + { + "word": " way.", + "start": 3387.26, + "end": 3387.48, + "probability": 1.0 + } + ] + }, + { + "id": 1664, + "text": "I mean,", + "start": 3387.58, + "end": 3387.96, + "words": [ + { + "word": " I", + "start": 3387.58, + "end": 3387.82, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 3387.82, + "end": 3387.96, + "probability": 1.0 + } + ] + }, + { + "id": 1665, + "text": "most often it's going to be a driver failure of some type.", + "start": 3387.96, + "end": 3390.2, + "words": [ + { + "word": " most", + "start": 3387.96, + "end": 3388.1, + "probability": 0.99609375 + }, + { + "word": " often", + "start": 3388.1, + "end": 3388.34, + "probability": 0.97412109375 + }, + { + "word": " it's", + "start": 3388.34, + "end": 3388.52, + "probability": 0.998046875 + }, + { + "word": " going", + "start": 3388.52, + "end": 3388.6, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 3388.6, + "end": 3388.68, + "probability": 1.0 + }, + { + "word": " be", + "start": 3388.68, + "end": 3388.72, + "probability": 1.0 + }, + { + "word": " a", + "start": 3388.72, + "end": 3388.78, + "probability": 1.0 + }, + { + "word": " driver", + "start": 3388.78, + "end": 3389.12, + "probability": 0.99951171875 + }, + { + "word": " failure", + "start": 3389.12, + "end": 3389.46, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 3389.46, + "end": 3389.84, + "probability": 0.85986328125 + }, + { + "word": " some", + "start": 3389.84, + "end": 3389.92, + "probability": 1.0 + }, + { + "word": " type.", + "start": 3389.92, + "end": 3390.2, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1666, + "text": "Like if you have some,", + "start": 3390.24, + "end": 3390.96, + "words": [ + { + "word": " Like", + "start": 3390.24, + "end": 3390.46, + "probability": 0.9931640625 + }, + { + "word": " if", + "start": 3390.46, + "end": 3390.6, + "probability": 0.990234375 + }, + { + "word": " you", + "start": 3390.6, + "end": 3390.68, + "probability": 1.0 + }, + { + "word": " have", + "start": 3390.68, + "end": 3390.78, + "probability": 0.99951171875 + }, + { + "word": " some,", + "start": 3390.78, + "end": 3390.96, + "probability": 0.95703125 + } + ] + }, + { + "id": 1667, + "text": "some old hardware that's on there and the driver's no good anymore,", + "start": 3391.0, + "end": 3394.02, + "words": [ + { + "word": " some", + "start": 3391.0, + "end": 3391.06, + "probability": 0.00033020973205566406 + }, + { + "word": " old", + "start": 3391.06, + "end": 3391.06, + "probability": 0.98828125 + }, + { + "word": " hardware", + "start": 3391.06, + "end": 3391.56, + "probability": 0.994140625 + }, + { + "word": " that's", + "start": 3391.56, + "end": 3391.96, + "probability": 0.97314453125 + }, + { + "word": " on", + "start": 3391.96, + "end": 3392.12, + "probability": 0.99755859375 + }, + { + "word": " there", + "start": 3392.12, + "end": 3392.34, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 3392.34, + "end": 3392.96, + "probability": 0.62158203125 + }, + { + "word": " the", + "start": 3392.96, + "end": 3393.14, + "probability": 0.998046875 + }, + { + "word": " driver's", + "start": 3393.14, + "end": 3393.52, + "probability": 0.7900390625 + }, + { + "word": " no", + "start": 3393.52, + "end": 3393.6, + "probability": 0.99072265625 + }, + { + "word": " good", + "start": 3393.6, + "end": 3393.78, + "probability": 0.99560546875 + }, + { + "word": " anymore,", + "start": 3393.78, + "end": 3394.02, + "probability": 0.9736328125 + } + ] + }, + { + "id": 1668, + "text": "or it's going to be a Ram problem.", + "start": 3394.92, + "end": 3396.68, + "words": [ + { + "word": " or", + "start": 3394.92, + "end": 3395.4, + "probability": 0.99755859375 + }, + { + "word": " it's", + "start": 3395.4, + "end": 3395.88, + "probability": 0.9951171875 + }, + { + "word": " going", + "start": 3395.88, + "end": 3395.94, + "probability": 0.96142578125 + }, + { + "word": " to", + "start": 3395.94, + "end": 3396.04, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 3396.04, + "end": 3396.08, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 3396.08, + "end": 3396.16, + "probability": 0.99755859375 + }, + { + "word": " Ram", + "start": 3396.16, + "end": 3396.34, + "probability": 0.006465911865234375 + }, + { + "word": " problem.", + "start": 3396.34, + "end": 3396.68, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1669, + "text": "So,", + "start": 3397.54, + "end": 3398.02, + "words": [ + { + "word": " So,", + "start": 3397.54, + "end": 3398.02, + "probability": 0.849609375 + } + ] + }, + { + "id": 1670, + "text": "uh,", + "start": 3398.04, + "end": 3398.54, + "words": [ + { + "word": " uh,", + "start": 3398.04, + "end": 3398.54, + "probability": 0.61767578125 + } + ] + }, + { + "id": 1671, + "text": "almost always with eights of any type.", + "start": 3399.2, + "end": 3401.56, + "words": [ + { + "word": " almost", + "start": 3399.2, + "end": 3399.68, + "probability": 0.99755859375 + }, + { + "word": " always", + "start": 3399.68, + "end": 3400.06, + "probability": 0.99951171875 + }, + { + "word": " with", + "start": 3400.06, + "end": 3400.44, + "probability": 0.9990234375 + }, + { + "word": " eights", + "start": 3400.44, + "end": 3400.94, + "probability": 0.9873046875 + }, + { + "word": " of", + "start": 3400.94, + "end": 3401.02, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 3401.02, + "end": 3401.26, + "probability": 1.0 + }, + { + "word": " type.", + "start": 3401.26, + "end": 3401.56, + "probability": 1.0 + } + ] + }, + { + "id": 1672, + "text": "So zero X eight is somehow their memory is faulted in one way or another,", + "start": 3401.66, + "end": 3407.14, + "words": [ + { + "word": " So", + "start": 3401.66, + "end": 3401.92, + "probability": 0.9990234375 + }, + { + "word": " zero", + "start": 3401.92, + "end": 3402.3, + "probability": 0.97607421875 + }, + { + "word": " X", + "start": 3402.3, + "end": 3402.62, + "probability": 0.98486328125 + }, + { + "word": " eight", + "start": 3402.62, + "end": 3402.96, + "probability": 0.9775390625 + }, + { + "word": " is", + "start": 3402.96, + "end": 3403.48, + "probability": 0.99951171875 + }, + { + "word": " somehow", + "start": 3403.48, + "end": 3404.78, + "probability": 0.99609375 + }, + { + "word": " their", + "start": 3404.78, + "end": 3405.2, + "probability": 0.89453125 + }, + { + "word": " memory", + "start": 3405.2, + "end": 3405.78, + "probability": 1.0 + }, + { + "word": " is", + "start": 3405.78, + "end": 3406.0, + "probability": 0.99609375 + }, + { + "word": " faulted", + "start": 3406.0, + "end": 3406.5, + "probability": 0.9970703125 + }, + { + "word": " in", + "start": 3406.5, + "end": 3406.56, + "probability": 0.98681640625 + }, + { + "word": " one", + "start": 3406.56, + "end": 3406.68, + "probability": 1.0 + }, + { + "word": " way", + "start": 3406.68, + "end": 3406.84, + "probability": 1.0 + }, + { + "word": " or", + "start": 3406.84, + "end": 3406.96, + "probability": 1.0 + }, + { + "word": " another,", + "start": 3406.96, + "end": 3407.14, + "probability": 1.0 + } + ] + }, + { + "id": 1673, + "text": "either because of a driver or some bad hardware.", + "start": 3407.28, + "end": 3409.5, + "words": [ + { + "word": " either", + "start": 3407.28, + "end": 3407.56, + "probability": 0.99951171875 + }, + { + "word": " because", + "start": 3407.56, + "end": 3407.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 3407.82, + "end": 3408.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 3408.02, + "end": 3408.06, + "probability": 1.0 + }, + { + "word": " driver", + "start": 3408.06, + "end": 3408.36, + "probability": 1.0 + }, + { + "word": " or", + "start": 3408.36, + "end": 3408.66, + "probability": 1.0 + }, + { + "word": " some", + "start": 3408.66, + "end": 3408.92, + "probability": 1.0 + }, + { + "word": " bad", + "start": 3408.92, + "end": 3409.14, + "probability": 1.0 + }, + { + "word": " hardware.", + "start": 3409.14, + "end": 3409.5, + "probability": 0.98876953125 + } + ] + }, + { + "id": 1674, + "text": "So you're,", + "start": 3410.42, + "end": 3411.1, + "words": [ + { + "word": " So", + "start": 3410.42, + "end": 3410.9, + "probability": 0.79150390625 + }, + { + "word": " you're,", + "start": 3410.9, + "end": 3411.1, + "probability": 0.740234375 + } + ] + }, + { + "id": 1675, + "text": "is there any way if,", + "start": 3411.1, + "end": 3412.32, + "words": [ + { + "word": " is", + "start": 3411.1, + "end": 3411.54, + "probability": 0.99169921875 + }, + { + "word": " there", + "start": 3411.54, + "end": 3411.64, + "probability": 1.0 + }, + { + "word": " any", + "start": 3411.64, + "end": 3411.76, + "probability": 1.0 + }, + { + "word": " way", + "start": 3411.76, + "end": 3411.96, + "probability": 1.0 + }, + { + "word": " if,", + "start": 3411.96, + "end": 3412.32, + "probability": 0.94873046875 + } + ] + }, + { + "id": 1676, + "text": "if it is,", + "start": 3412.46, + "end": 3413.52, + "words": [ + { + "word": " if", + "start": 3412.46, + "end": 3412.98, + "probability": 1.0 + }, + { + "word": " it", + "start": 3412.98, + "end": 3413.14, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 3413.14, + "end": 3413.52, + "probability": 1.0 + } + ] + }, + { + "id": 1677, + "text": "is there any way to narrow it down to which hardware or what part of the Ram or whatever?", + "start": 3414.36, + "end": 3419.76, + "words": [ + { + "word": " is", + "start": 3414.36, + "end": 3414.84, + "probability": 0.87158203125 + }, + { + "word": " there", + "start": 3414.84, + "end": 3415.04, + "probability": 1.0 + }, + { + "word": " any", + "start": 3415.04, + "end": 3415.14, + "probability": 1.0 + }, + { + "word": " way", + "start": 3415.14, + "end": 3415.3, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3415.3, + "end": 3415.56, + "probability": 1.0 + }, + { + "word": " narrow", + "start": 3415.56, + "end": 3416.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 3416.0, + "end": 3416.16, + "probability": 1.0 + }, + { + "word": " down", + "start": 3416.16, + "end": 3416.42, + "probability": 1.0 + }, + { + "word": " to", + "start": 3416.42, + "end": 3416.58, + "probability": 1.0 + }, + { + "word": " which", + "start": 3416.58, + "end": 3416.84, + "probability": 0.99951171875 + }, + { + "word": " hardware", + "start": 3416.84, + "end": 3417.68, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 3417.68, + "end": 3418.16, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 3418.16, + "end": 3418.6, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 3418.6, + "end": 3418.84, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3418.84, + "end": 3418.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 3418.98, + "end": 3419.04, + "probability": 1.0 + }, + { + "word": " Ram", + "start": 3419.04, + "end": 3419.28, + "probability": 0.99462890625 + }, + { + "word": " or", + "start": 3419.28, + "end": 3419.54, + "probability": 0.99951171875 + }, + { + "word": " whatever?", + "start": 3419.54, + "end": 3419.76, + "probability": 0.998046875 + } + ] + }, + { + "id": 1678, + "text": "So how often do you see in this message?", + "start": 3419.76, + "end": 3421.54, + "words": [ + { + "word": " So", + "start": 3419.76, + "end": 3420.3, + "probability": 0.97216796875 + }, + { + "word": " how", + "start": 3420.3, + "end": 3420.48, + "probability": 0.908203125 + }, + { + "word": " often", + "start": 3420.48, + "end": 3420.72, + "probability": 1.0 + }, + { + "word": " do", + "start": 3420.72, + "end": 3420.8, + "probability": 0.21728515625 + }, + { + "word": " you", + "start": 3420.8, + "end": 3420.86, + "probability": 1.0 + }, + { + "word": " see", + "start": 3420.86, + "end": 3421.02, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 3421.02, + "end": 3421.12, + "probability": 0.97216796875 + }, + { + "word": " this", + "start": 3421.12, + "end": 3421.26, + "probability": 1.0 + }, + { + "word": " message?", + "start": 3421.26, + "end": 3421.54, + "probability": 1.0 + } + ] + }, + { + "id": 1679, + "text": "How often do you get it?", + "start": 3421.6, + "end": 3422.32, + "words": [ + { + "word": " How", + "start": 3421.6, + "end": 3421.72, + "probability": 0.9970703125 + }, + { + "word": " often", + "start": 3421.72, + "end": 3421.9, + "probability": 1.0 + }, + { + "word": " do", + "start": 3421.9, + "end": 3422.02, + "probability": 1.0 + }, + { + "word": " you", + "start": 3422.02, + "end": 3422.1, + "probability": 1.0 + }, + { + "word": " get", + "start": 3422.1, + "end": 3422.2, + "probability": 1.0 + }, + { + "word": " it?", + "start": 3422.2, + "end": 3422.32, + "probability": 1.0 + } + ] + }, + { + "id": 1680, + "text": "Every time that I start my laptop,", + "start": 3422.86, + "end": 3425.84, + "words": [ + { + "word": " Every", + "start": 3422.86, + "end": 3423.38, + "probability": 0.994140625 + }, + { + "word": " time", + "start": 3423.38, + "end": 3423.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 3423.62, + "end": 3423.8, + "probability": 1.0 + }, + { + "word": " I", + "start": 3423.8, + "end": 3423.98, + "probability": 1.0 + }, + { + "word": " start", + "start": 3423.98, + "end": 3424.9, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 3424.9, + "end": 3425.14, + "probability": 1.0 + }, + { + "word": " laptop,", + "start": 3425.14, + "end": 3425.84, + "probability": 1.0 + } + ] + }, + { + "id": 1681, + "text": "um,", + "start": 3426.58, + "end": 3427.1, + "words": [ + { + "word": " um,", + "start": 3426.58, + "end": 3427.1, + "probability": 0.005298614501953125 + } + ] + }, + { + "id": 1682, + "text": "after it loads,", + "start": 3427.92, + "end": 3429.26, + "words": [ + { + "word": " after", + "start": 3427.92, + "end": 3428.44, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 3428.44, + "end": 3428.78, + "probability": 1.0 + }, + { + "word": " loads,", + "start": 3428.78, + "end": 3429.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1683, + "text": "uh,", + "start": 3430.16, + "end": 3430.68, + "words": [ + { + "word": " uh,", + "start": 3430.16, + "end": 3430.68, + "probability": 0.99169921875 + } + ] + }, + { + "id": 1684, + "text": "well,", + "start": 3432.46, + "end": 3432.98, + "words": [ + { + "word": " well,", + "start": 3432.46, + "end": 3432.98, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1685, + "text": "for lots of after it loads windows,", + "start": 3433.24, + "end": 3436.58, + "words": [ + { + "word": " for", + "start": 3433.24, + "end": 3433.86, + "probability": 0.32177734375 + }, + { + "word": " lots", + "start": 3433.86, + "end": 3434.38, + "probability": 0.498291015625 + }, + { + "word": " of", + "start": 3434.38, + "end": 3434.42, + "probability": 0.99951171875 + }, + { + "word": " after", + "start": 3434.42, + "end": 3435.9, + "probability": 0.28271484375 + }, + { + "word": " it", + "start": 3435.9, + "end": 3436.02, + "probability": 0.55712890625 + }, + { + "word": " loads", + "start": 3436.02, + "end": 3436.2, + "probability": 0.9833984375 + }, + { + "word": " windows,", + "start": 3436.2, + "end": 3436.58, + "probability": 0.958984375 + } + ] + }, + { + "id": 1686, + "text": "it's okay for about,", + "start": 3436.68, + "end": 3438.28, + "words": [ + { + "word": " it's", + "start": 3436.68, + "end": 3437.42, + "probability": 1.0 + }, + { + "word": " okay", + "start": 3437.42, + "end": 3437.62, + "probability": 0.98876953125 + }, + { + "word": " for", + "start": 3437.62, + "end": 3437.88, + "probability": 0.9853515625 + }, + { + "word": " about,", + "start": 3437.88, + "end": 3438.28, + "probability": 1.0 + } + ] + }, + { + "id": 1687, + "text": "I don't know,", + "start": 3438.28, + "end": 3438.72, + "words": [ + { + "word": " I", + "start": 3438.28, + "end": 3438.52, + "probability": 0.998046875 + }, + { + "word": " don't", + "start": 3438.52, + "end": 3438.68, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3438.68, + "end": 3438.72, + "probability": 1.0 + } + ] + }, + { + "id": 1688, + "text": "four minutes.", + "start": 3438.78, + "end": 3439.2, + "words": [ + { + "word": " four", + "start": 3438.78, + "end": 3438.88, + "probability": 0.998046875 + }, + { + "word": " minutes.", + "start": 3438.88, + "end": 3439.2, + "probability": 1.0 + } + ] + }, + { + "id": 1689, + "text": "Okay.", + "start": 3439.76, + "end": 3440.28, + "words": [ + { + "word": " Okay.", + "start": 3439.76, + "end": 3440.28, + "probability": 0.9755859375 + } + ] + }, + { + "id": 1690, + "text": "And then it does,", + "start": 3440.84, + "end": 3442.04, + "words": [ + { + "word": " And", + "start": 3440.84, + "end": 3441.36, + "probability": 0.99853515625 + }, + { + "word": " then", + "start": 3441.36, + "end": 3441.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 3441.6, + "end": 3441.74, + "probability": 1.0 + }, + { + "word": " does,", + "start": 3441.74, + "end": 3442.04, + "probability": 1.0 + } + ] + }, + { + "id": 1691, + "text": "it does this,", + "start": 3442.04, + "end": 3443.12, + "words": [ + { + "word": " it", + "start": 3442.04, + "end": 3442.26, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 3442.26, + "end": 3442.74, + "probability": 0.998046875 + }, + { + "word": " this,", + "start": 3442.74, + "end": 3443.12, + "probability": 1.0 + } + ] + }, + { + "id": 1692, + "text": "um,", + "start": 3443.24, + "end": 3443.6, + "words": [ + { + "word": " um,", + "start": 3443.24, + "end": 3443.6, + "probability": 0.955078125 + } + ] + }, + { + "id": 1693, + "text": "blue screen thing where it shows these codes and then it shuts off.", + "start": 3444.18, + "end": 3449.2, + "words": [ + { + "word": " blue", + "start": 3444.18, + "end": 3444.64, + "probability": 0.9716796875 + }, + { + "word": " screen", + "start": 3444.64, + "end": 3444.9, + "probability": 1.0 + }, + { + "word": " thing", + "start": 3444.9, + "end": 3445.52, + "probability": 0.9990234375 + }, + { + "word": " where", + "start": 3445.52, + "end": 3446.5, + "probability": 0.97021484375 + }, + { + "word": " it", + "start": 3446.5, + "end": 3446.62, + "probability": 0.98681640625 + }, + { + "word": " shows", + "start": 3446.62, + "end": 3446.94, + "probability": 0.98681640625 + }, + { + "word": " these", + "start": 3446.94, + "end": 3447.26, + "probability": 0.9990234375 + }, + { + "word": " codes", + "start": 3447.26, + "end": 3447.68, + "probability": 1.0 + }, + { + "word": " and", + "start": 3447.68, + "end": 3448.44, + "probability": 0.982421875 + }, + { + "word": " then", + "start": 3448.44, + "end": 3448.58, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3448.58, + "end": 3448.7, + "probability": 1.0 + }, + { + "word": " shuts", + "start": 3448.7, + "end": 3448.86, + "probability": 1.0 + }, + { + "word": " off.", + "start": 3448.86, + "end": 3449.2, + "probability": 1.0 + } + ] + }, + { + "id": 1694, + "text": "Okay.", + "start": 3449.32, + "end": 3449.74, + "words": [ + { + "word": " Okay.", + "start": 3449.32, + "end": 3449.74, + "probability": 0.671875 + } + ] + }, + { + "id": 1695, + "text": "And then it just,", + "start": 3449.76, + "end": 3449.84, + "words": [ + { + "word": " And", + "start": 3449.76, + "end": 3449.84, + "probability": 0.005046844482421875 + }, + { + "word": " then", + "start": 3449.84, + "end": 3449.84, + "probability": 0.049163818359375 + }, + { + "word": " it", + "start": 3449.84, + "end": 3449.84, + "probability": 0.5732421875 + }, + { + "word": " just,", + "start": 3449.84, + "end": 3449.84, + "probability": 0.57568359375 + } + ] + }, + { + "id": 1696, + "text": "or it will actually restart.", + "start": 3449.84, + "end": 3450.62, + "words": [ + { + "word": " or", + "start": 3449.84, + "end": 3449.84, + "probability": 0.11669921875 + }, + { + "word": " it", + "start": 3449.84, + "end": 3449.88, + "probability": 0.87060546875 + }, + { + "word": " will", + "start": 3449.88, + "end": 3449.96, + "probability": 0.884765625 + }, + { + "word": " actually", + "start": 3449.96, + "end": 3450.24, + "probability": 0.9970703125 + }, + { + "word": " restart.", + "start": 3450.24, + "end": 3450.62, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1697, + "text": "And just regular,", + "start": 3451.4, + "end": 3452.12, + "words": [ + { + "word": " And", + "start": 3451.4, + "end": 3451.76, + "probability": 0.640625 + }, + { + "word": " just", + "start": 3451.76, + "end": 3451.92, + "probability": 0.256103515625 + }, + { + "word": " regular,", + "start": 3451.92, + "end": 3452.12, + "probability": 0.916015625 + } + ] + }, + { + "id": 1698, + "text": "it just reboots,", + "start": 3452.26, + "end": 3453.12, + "words": [ + { + "word": " it", + "start": 3452.26, + "end": 3452.44, + "probability": 0.99658203125 + }, + { + "word": " just", + "start": 3452.44, + "end": 3452.58, + "probability": 0.99951171875 + }, + { + "word": " reboots,", + "start": 3452.58, + "end": 3453.12, + "probability": 1.0 + } + ] + }, + { + "id": 1699, + "text": "right?", + "start": 3453.12, + "end": 3453.3, + "words": [ + { + "word": " right?", + "start": 3453.12, + "end": 3453.3, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1700, + "text": "It comes back up again.", + "start": 3453.4, + "end": 3454.2, + "words": [ + { + "word": " It", + "start": 3453.4, + "end": 3453.46, + "probability": 0.7236328125 + }, + { + "word": " comes", + "start": 3453.46, + "end": 3453.64, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 3453.64, + "end": 3453.86, + "probability": 1.0 + }, + { + "word": " up", + "start": 3453.86, + "end": 3454.04, + "probability": 1.0 + }, + { + "word": " again.", + "start": 3454.04, + "end": 3454.2, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1701, + "text": "Yes.", + "start": 3454.24, + "end": 3454.48, + "words": [ + { + "word": " Yes.", + "start": 3454.24, + "end": 3454.48, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1702, + "text": "Every single time that I turn the laptop on.", + "start": 3454.48, + "end": 3457.4, + "words": [ + { + "word": " Every", + "start": 3454.48, + "end": 3454.78, + "probability": 0.98828125 + }, + { + "word": " single", + "start": 3454.78, + "end": 3455.1, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 3455.1, + "end": 3455.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 3455.44, + "end": 3455.56, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3455.56, + "end": 3455.62, + "probability": 1.0 + }, + { + "word": " turn", + "start": 3455.62, + "end": 3455.82, + "probability": 0.99560546875 + }, + { + "word": " the", + "start": 3455.82, + "end": 3456.02, + "probability": 0.9990234375 + }, + { + "word": " laptop", + "start": 3456.02, + "end": 3457.0, + "probability": 0.92822265625 + }, + { + "word": " on.", + "start": 3457.0, + "end": 3457.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1703, + "text": "And so I have to reboot into,", + "start": 3457.54, + "end": 3459.04, + "words": [ + { + "word": " And", + "start": 3457.54, + "end": 3457.9, + "probability": 0.99658203125 + }, + { + "word": " so", + "start": 3457.9, + "end": 3458.02, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3458.02, + "end": 3458.12, + "probability": 0.8916015625 + }, + { + "word": " have", + "start": 3458.12, + "end": 3458.28, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3458.28, + "end": 3458.4, + "probability": 1.0 + }, + { + "word": " reboot", + "start": 3458.4, + "end": 3458.7, + "probability": 1.0 + }, + { + "word": " into,", + "start": 3458.7, + "end": 3459.04, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1704, + "text": "um,", + "start": 3459.12, + "end": 3459.52, + "words": [ + { + "word": " um,", + "start": 3459.12, + "end": 3459.52, + "probability": 0.953125 + } + ] + }, + { + "id": 1705, + "text": "safe mode in order for it to work.", + "start": 3459.52, + "end": 3462.18, + "words": [ + { + "word": " safe", + "start": 3459.52, + "end": 3460.14, + "probability": 0.9921875 + }, + { + "word": " mode", + "start": 3460.14, + "end": 3460.48, + "probability": 1.0 + }, + { + "word": " in", + "start": 3460.48, + "end": 3460.94, + "probability": 0.97314453125 + }, + { + "word": " order", + "start": 3460.94, + "end": 3461.44, + "probability": 1.0 + }, + { + "word": " for", + "start": 3461.44, + "end": 3461.56, + "probability": 1.0 + }, + { + "word": " it", + "start": 3461.56, + "end": 3461.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 3461.7, + "end": 3461.78, + "probability": 0.99951171875 + }, + { + "word": " work.", + "start": 3461.78, + "end": 3462.18, + "probability": 1.0 + } + ] + }, + { + "id": 1706, + "text": "And then it works fine.", + "start": 3462.46, + "end": 3463.38, + "words": [ + { + "word": " And", + "start": 3462.46, + "end": 3462.82, + "probability": 0.9921875 + }, + { + "word": " then", + "start": 3462.82, + "end": 3462.9, + "probability": 0.5908203125 + }, + { + "word": " it", + "start": 3462.9, + "end": 3462.96, + "probability": 0.99951171875 + }, + { + "word": " works", + "start": 3462.96, + "end": 3463.14, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 3463.14, + "end": 3463.38, + "probability": 1.0 + } + ] + }, + { + "id": 1707, + "text": "Okay.", + "start": 3464.32, + "end": 3464.68, + "words": [ + { + "word": " Okay.", + "start": 3464.32, + "end": 3464.68, + "probability": 0.96630859375 + } + ] + }, + { + "id": 1708, + "text": "And what type of antivirus do you have on the machine?", + "start": 3465.9399999999996, + "end": 3467.88, + "words": [ + { + "word": " And", + "start": 3465.9399999999996, + "end": 3466.2999999999997, + "probability": 0.974609375 + }, + { + "word": " what", + "start": 3466.2999999999997, + "end": 3466.66, + "probability": 0.98974609375 + }, + { + "word": " type", + "start": 3466.66, + "end": 3466.84, + "probability": 1.0 + }, + { + "word": " of", + "start": 3466.84, + "end": 3466.96, + "probability": 1.0 + }, + { + "word": " antivirus", + "start": 3466.96, + "end": 3467.28, + "probability": 0.95751953125 + }, + { + "word": " do", + "start": 3467.28, + "end": 3467.4, + "probability": 0.9912109375 + }, + { + "word": " you", + "start": 3467.4, + "end": 3467.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 3467.48, + "end": 3467.56, + "probability": 1.0 + }, + { + "word": " on", + "start": 3467.56, + "end": 3467.6, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3467.6, + "end": 3467.66, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 3467.66, + "end": 3467.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1709, + "text": "Uh,", + "start": 3469.32, + "end": 3469.68, + "words": [ + { + "word": " Uh,", + "start": 3469.32, + "end": 3469.68, + "probability": 0.0909423828125 + } + ] + }, + { + "id": 1710, + "text": "I'm sorry.", + "start": 3469.7, + "end": 3470.18, + "words": [ + { + "word": " I'm", + "start": 3469.7, + "end": 3469.98, + "probability": 0.794921875 + }, + { + "word": " sorry.", + "start": 3469.98, + "end": 3470.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 1711, + "text": "And it seems pretty good.", + "start": 3471.64, + "end": 3473.1, + "words": [ + { + "word": " And", + "start": 3471.64, + "end": 3472.0, + "probability": 0.39892578125 + }, + { + "word": " it", + "start": 3472.0, + "end": 3472.14, + "probability": 0.966796875 + }, + { + "word": " seems", + "start": 3472.14, + "end": 3472.48, + "probability": 0.6796875 + }, + { + "word": " pretty", + "start": 3472.48, + "end": 3472.84, + "probability": 0.986328125 + }, + { + "word": " good.", + "start": 3472.84, + "end": 3473.1, + "probability": 1.0 + } + ] + }, + { + "id": 1712, + "text": "I couldn't hear you broke up there.", + "start": 3473.4, + "end": 3474.98, + "words": [ + { + "word": " I", + "start": 3473.4, + "end": 3473.76, + "probability": 0.998046875 + }, + { + "word": " couldn't", + "start": 3473.76, + "end": 3474.2, + "probability": 0.99609375 + }, + { + "word": " hear", + "start": 3474.2, + "end": 3474.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 3474.3, + "end": 3474.44, + "probability": 0.99755859375 + }, + { + "word": " broke", + "start": 3474.44, + "end": 3474.62, + "probability": 0.314208984375 + }, + { + "word": " up", + "start": 3474.62, + "end": 3474.82, + "probability": 0.9990234375 + }, + { + "word": " there.", + "start": 3474.82, + "end": 3474.98, + "probability": 1.0 + } + ] + }, + { + "id": 1713, + "text": "What'd you say?", + "start": 3475.1, + "end": 3475.64, + "words": [ + { + "word": " What'd", + "start": 3475.1, + "end": 3475.46, + "probability": 0.96484375 + }, + { + "word": " you", + "start": 3475.46, + "end": 3475.52, + "probability": 1.0 + }, + { + "word": " say?", + "start": 3475.52, + "end": 3475.64, + "probability": 1.0 + } + ] + }, + { + "id": 1714, + "text": "Uh,", + "start": 3475.76, + "end": 3476.02, + "words": [ + { + "word": " Uh,", + "start": 3475.76, + "end": 3476.02, + "probability": 0.845703125 + } + ] + }, + { + "id": 1715, + "text": "Panda.", + "start": 3476.72, + "end": 3477.08, + "words": [ + { + "word": " Panda.", + "start": 3476.72, + "end": 3477.08, + "probability": 0.8466796875 + } + ] + }, + { + "id": 1716, + "text": "He's in Panda.", + "start": 3477.5, + "end": 3478.16, + "words": [ + { + "word": " He's", + "start": 3477.5, + "end": 3477.86, + "probability": 0.63720703125 + }, + { + "word": " in", + "start": 3477.86, + "end": 3477.92, + "probability": 0.9970703125 + }, + { + "word": " Panda.", + "start": 3477.92, + "end": 3478.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1717, + "text": "Okay.", + "start": 3478.34, + "end": 3478.7, + "words": [ + { + "word": " Okay.", + "start": 3478.34, + "end": 3478.7, + "probability": 0.97802734375 + } + ] + }, + { + "id": 1718, + "text": "Yes.", + "start": 3479.08, + "end": 3479.44, + "words": [ + { + "word": " Yes.", + "start": 3479.08, + "end": 3479.44, + "probability": 0.99560546875 + } + ] + }, + { + "id": 1719, + "text": "Okay.", + "start": 3479.54, + "end": 3479.74, + "words": [ + { + "word": " Okay.", + "start": 3479.54, + "end": 3479.74, + "probability": 0.404296875 + } + ] + }, + { + "id": 1720, + "text": "", + "start": 3479.74, + "end": 3479.74, + "words": [] + }, + { + "id": 1721, + "text": "", + "start": 3479.74, + "end": 3479.74, + "words": [] + }, + { + "id": 1722, + "text": "", + "start": 3479.74, + "end": 3479.74, + "words": [] + }, + { + "id": 1723, + "text": "", + "start": 3479.74, + "end": 3479.74, + "words": [] + }, + { + "id": 1724, + "text": "So I'm guessing that,", + "start": 3481.4, + "end": 3483.54, + "words": [ + { + "word": " So", + "start": 3481.4, + "end": 3481.92, + "probability": 0.050079345703125 + }, + { + "word": " I'm", + "start": 3481.92, + "end": 3482.44, + "probability": 0.814453125 + }, + { + "word": " guessing", + "start": 3482.44, + "end": 3482.9, + "probability": 0.99951171875 + }, + { + "word": " that,", + "start": 3482.9, + "end": 3483.54, + "probability": 0.7470703125 + } + ] + }, + { + "id": 1725, + "text": "and what kind of machine is this by the way?", + "start": 3483.58, + "end": 3484.82, + "words": [ + { + "word": " and", + "start": 3483.58, + "end": 3483.7, + "probability": 0.88916015625 + }, + { + "word": " what", + "start": 3483.7, + "end": 3483.78, + "probability": 0.99951171875 + }, + { + "word": " kind", + "start": 3483.78, + "end": 3483.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3483.94, + "end": 3484.0, + "probability": 1.0 + }, + { + "word": " machine", + "start": 3484.0, + "end": 3484.14, + "probability": 1.0 + }, + { + "word": " is", + "start": 3484.14, + "end": 3484.28, + "probability": 1.0 + }, + { + "word": " this", + "start": 3484.28, + "end": 3484.4, + "probability": 1.0 + }, + { + "word": " by", + "start": 3484.4, + "end": 3484.56, + "probability": 0.320068359375 + }, + { + "word": " the", + "start": 3484.56, + "end": 3484.68, + "probability": 1.0 + }, + { + "word": " way?", + "start": 3484.68, + "end": 3484.82, + "probability": 1.0 + } + ] + }, + { + "id": 1726, + "text": "It's a Sony Vail.", + "start": 3485.7, + "end": 3486.96, + "words": [ + { + "word": " It's", + "start": 3485.7, + "end": 3486.08, + "probability": 0.9404296875 + }, + { + "word": " a", + "start": 3486.08, + "end": 3486.08, + "probability": 1.0 + }, + { + "word": " Sony", + "start": 3486.08, + "end": 3486.4, + "probability": 0.998046875 + }, + { + "word": " Vail.", + "start": 3486.4, + "end": 3486.96, + "probability": 0.300048828125 + } + ] + }, + { + "id": 1727, + "text": "I own.", + "start": 3486.98, + "end": 3487.66, + "words": [ + { + "word": " I", + "start": 3486.98, + "end": 3487.4, + "probability": 0.013763427734375 + }, + { + "word": " own.", + "start": 3487.4, + "end": 3487.66, + "probability": 0.437255859375 + } + ] + }, + { + "id": 1728, + "text": "Huh?", + "start": 3487.7, + "end": 3487.9, + "words": [ + { + "word": " Huh?", + "start": 3487.7, + "end": 3487.9, + "probability": 0.4404296875 + } + ] + }, + { + "id": 1729, + "text": "Okay.", + "start": 3488.02, + "end": 3488.46, + "words": [ + { + "word": " Okay.", + "start": 3488.02, + "end": 3488.46, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1730, + "text": "All right.", + "start": 3488.56, + "end": 3489.12, + "words": [ + { + "word": " All", + "start": 3488.56, + "end": 3488.98, + "probability": 0.998046875 + }, + { + "word": " right.", + "start": 3488.98, + "end": 3489.12, + "probability": 1.0 + } + ] + }, + { + "id": 1731, + "text": "So 80 on a bio is,", + "start": 3489.16, + "end": 3493.58, + "words": [ + { + "word": " So", + "start": 3489.16, + "end": 3489.64, + "probability": 0.99560546875 + }, + { + "word": " 80", + "start": 3489.64, + "end": 3492.5, + "probability": 0.94775390625 + }, + { + "word": " on", + "start": 3492.5, + "end": 3492.8, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3492.8, + "end": 3492.92, + "probability": 0.98974609375 + }, + { + "word": " bio", + "start": 3492.92, + "end": 3493.18, + "probability": 0.55615234375 + }, + { + "word": " is,", + "start": 3493.18, + "end": 3493.58, + "probability": 1.0 + } + ] + }, + { + "id": 1732, + "text": "is,", + "start": 3493.58, + "end": 3493.9, + "words": [ + { + "word": " is,", + "start": 3493.58, + "end": 3493.9, + "probability": 1.0 + } + ] + }, + { + "id": 1733, + "text": "is its own animal.", + "start": 3493.96, + "end": 3495.42, + "words": [ + { + "word": " is", + "start": 3493.96, + "end": 3494.58, + "probability": 1.0 + }, + { + "word": " its", + "start": 3494.58, + "end": 3494.82, + "probability": 0.9833984375 + }, + { + "word": " own", + "start": 3494.82, + "end": 3495.02, + "probability": 1.0 + }, + { + "word": " animal.", + "start": 3495.02, + "end": 3495.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1734, + "text": "And I am going to take a wild stab in the dark here that your video cards overheating.", + "start": 3495.76, + "end": 3501.76, + "words": [ + { + "word": " And", + "start": 3495.76, + "end": 3496.28, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3496.28, + "end": 3496.9, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 3496.9, + "end": 3497.28, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 3497.28, + "end": 3497.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 3497.52, + "end": 3497.8, + "probability": 1.0 + }, + { + "word": " take", + "start": 3497.8, + "end": 3498.12, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3498.12, + "end": 3498.26, + "probability": 0.9990234375 + }, + { + "word": " wild", + "start": 3498.26, + "end": 3498.6, + "probability": 1.0 + }, + { + "word": " stab", + "start": 3498.6, + "end": 3498.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 3498.92, + "end": 3499.18, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3499.18, + "end": 3499.24, + "probability": 1.0 + }, + { + "word": " dark", + "start": 3499.24, + "end": 3499.48, + "probability": 0.99951171875 + }, + { + "word": " here", + "start": 3499.48, + "end": 3499.72, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 3499.72, + "end": 3500.6, + "probability": 0.97509765625 + }, + { + "word": " your", + "start": 3500.6, + "end": 3500.8, + "probability": 0.99951171875 + }, + { + "word": " video", + "start": 3500.8, + "end": 3501.0, + "probability": 0.998046875 + }, + { + "word": " cards", + "start": 3501.0, + "end": 3501.24, + "probability": 0.95703125 + }, + { + "word": " overheating.", + "start": 3501.24, + "end": 3501.76, + "probability": 0.986328125 + } + ] + }, + { + "id": 1735, + "text": "Cause first of all,", + "start": 3503.0, + "end": 3504.24, + "words": [ + { + "word": " Cause", + "start": 3503.0, + "end": 3503.52, + "probability": 0.8671875 + }, + { + "word": " first", + "start": 3503.52, + "end": 3504.02, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3504.02, + "end": 3504.16, + "probability": 1.0 + }, + { + "word": " all,", + "start": 3504.16, + "end": 3504.24, + "probability": 1.0 + } + ] + }, + { + "id": 1736, + "text": "bios always have overheating problems.", + "start": 3504.26, + "end": 3506.12, + "words": [ + { + "word": " bios", + "start": 3504.26, + "end": 3504.62, + "probability": 0.73828125 + }, + { + "word": " always", + "start": 3504.62, + "end": 3505.0, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 3505.0, + "end": 3505.36, + "probability": 0.99951171875 + }, + { + "word": " overheating", + "start": 3505.36, + "end": 3505.86, + "probability": 1.0 + }, + { + "word": " problems.", + "start": 3505.86, + "end": 3506.12, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1737, + "text": "It's like that is part and parcel of the owning of iOS.", + "start": 3506.34, + "end": 3509.72, + "words": [ + { + "word": " It's", + "start": 3506.34, + "end": 3506.6, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 3506.6, + "end": 3506.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 3506.78, + "end": 3507.14, + "probability": 0.219970703125 + }, + { + "word": " is", + "start": 3507.14, + "end": 3507.44, + "probability": 0.9990234375 + }, + { + "word": " part", + "start": 3507.44, + "end": 3508.24, + "probability": 0.9970703125 + }, + { + "word": " and", + "start": 3508.24, + "end": 3508.38, + "probability": 0.9990234375 + }, + { + "word": " parcel", + "start": 3508.38, + "end": 3508.72, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3508.72, + "end": 3508.82, + "probability": 0.841796875 + }, + { + "word": " the", + "start": 3508.82, + "end": 3508.9, + "probability": 0.9140625 + }, + { + "word": " owning", + "start": 3508.9, + "end": 3509.26, + "probability": 0.9755859375 + }, + { + "word": " of", + "start": 3509.26, + "end": 3509.5, + "probability": 0.442138671875 + }, + { + "word": " iOS.", + "start": 3509.5, + "end": 3509.72, + "probability": 0.1002197265625 + } + ] + }, + { + "id": 1738, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1739, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1740, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1741, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1742, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1743, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1744, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1745, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1746, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1747, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1748, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1749, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1750, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1751, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1752, + "text": "", + "start": 3509.72, + "end": 3509.72, + "words": [] + }, + { + "id": 1753, + "text": "So it's like a VIO is that it's overheating because Sony didn't make a VIO that didn't", + "start": 3509.72, + "end": 3513.42, + "words": [ + { + "word": " So", + "start": 3509.72, + "end": 3509.82, + "probability": 0.00261688232421875 + }, + { + "word": " it's", + "start": 3509.82, + "end": 3509.82, + "probability": 0.392822265625 + }, + { + "word": " like", + "start": 3509.82, + "end": 3509.82, + "probability": 0.0775146484375 + }, + { + "word": " a", + "start": 3509.82, + "end": 3509.82, + "probability": 0.327392578125 + }, + { + "word": " VIO", + "start": 3509.82, + "end": 3509.82, + "probability": 0.328369140625 + }, + { + "word": " is", + "start": 3509.82, + "end": 3510.12, + "probability": 0.6025390625 + }, + { + "word": " that", + "start": 3510.12, + "end": 3510.36, + "probability": 0.9931640625 + }, + { + "word": " it's", + "start": 3510.36, + "end": 3510.5, + "probability": 0.99951171875 + }, + { + "word": " overheating", + "start": 3510.5, + "end": 3510.94, + "probability": 1.0 + }, + { + "word": " because", + "start": 3510.94, + "end": 3511.5, + "probability": 0.888671875 + }, + { + "word": " Sony", + "start": 3511.5, + "end": 3512.08, + "probability": 0.990234375 + }, + { + "word": " didn't", + "start": 3512.08, + "end": 3512.38, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 3512.38, + "end": 3512.62, + "probability": 1.0 + }, + { + "word": " a", + "start": 3512.62, + "end": 3512.74, + "probability": 0.99951171875 + }, + { + "word": " VIO", + "start": 3512.74, + "end": 3513.02, + "probability": 0.9619140625 + }, + { + "word": " that", + "start": 3513.02, + "end": 3513.16, + "probability": 0.859375 + }, + { + "word": " didn't", + "start": 3513.16, + "end": 3513.42, + "probability": 1.0 + } + ] + }, + { + "id": 1754, + "text": "overheat.", + "start": 3513.42, + "end": 3513.94, + "words": [ + { + "word": " overheat.", + "start": 3513.42, + "end": 3513.94, + "probability": 1.0 + } + ] + }, + { + "id": 1755, + "text": "Um,", + "start": 3514.54, + "end": 3514.94, + "words": [ + { + "word": " Um,", + "start": 3514.54, + "end": 3514.94, + "probability": 0.1981201171875 + } + ] + }, + { + "id": 1756, + "text": "and given that the time delay that you're talking about,", + "start": 3515.94, + "end": 3518.3, + "words": [ + { + "word": " and", + "start": 3515.94, + "end": 3516.34, + "probability": 0.9990234375 + }, + { + "word": " given", + "start": 3516.34, + "end": 3516.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 3516.62, + "end": 3516.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 3516.84, + "end": 3516.96, + "probability": 0.9990234375 + }, + { + "word": " time", + "start": 3516.96, + "end": 3517.28, + "probability": 1.0 + }, + { + "word": " delay", + "start": 3517.28, + "end": 3517.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 3517.58, + "end": 3517.78, + "probability": 1.0 + }, + { + "word": " you're", + "start": 3517.78, + "end": 3517.9, + "probability": 1.0 + }, + { + "word": " talking", + "start": 3517.9, + "end": 3518.08, + "probability": 1.0 + }, + { + "word": " about,", + "start": 3518.08, + "end": 3518.3, + "probability": 1.0 + } + ] + }, + { + "id": 1757, + "text": "like four minutes or so,", + "start": 3518.38, + "end": 3519.38, + "words": [ + { + "word": " like", + "start": 3518.38, + "end": 3518.5, + "probability": 0.99951171875 + }, + { + "word": " four", + "start": 3518.5, + "end": 3518.72, + "probability": 0.9990234375 + }, + { + "word": " minutes", + "start": 3518.72, + "end": 3519.02, + "probability": 1.0 + }, + { + "word": " or", + "start": 3519.02, + "end": 3519.18, + "probability": 1.0 + }, + { + "word": " so,", + "start": 3519.18, + "end": 3519.38, + "probability": 1.0 + } + ] + }, + { + "id": 1758, + "text": "I'm guessing your video cards overheating and that's causing the machine to shut down.", + "start": 3520.2, + "end": 3523.58, + "words": [ + { + "word": " I'm", + "start": 3520.2, + "end": 3520.6, + "probability": 0.931640625 + }, + { + "word": " guessing", + "start": 3520.6, + "end": 3520.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 3520.92, + "end": 3521.1, + "probability": 1.0 + }, + { + "word": " video", + "start": 3521.1, + "end": 3521.28, + "probability": 0.99951171875 + }, + { + "word": " cards", + "start": 3521.28, + "end": 3521.52, + "probability": 0.76318359375 + }, + { + "word": " overheating", + "start": 3521.52, + "end": 3522.06, + "probability": 0.98681640625 + }, + { + "word": " and", + "start": 3522.06, + "end": 3522.36, + "probability": 0.98779296875 + }, + { + "word": " that's", + "start": 3522.36, + "end": 3522.58, + "probability": 0.77734375 + }, + { + "word": " causing", + "start": 3522.58, + "end": 3522.82, + "probability": 1.0 + }, + { + "word": " the", + "start": 3522.82, + "end": 3522.92, + "probability": 0.9970703125 + }, + { + "word": " machine", + "start": 3522.92, + "end": 3523.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 3523.1, + "end": 3523.26, + "probability": 0.955078125 + }, + { + "word": " shut", + "start": 3523.26, + "end": 3523.4, + "probability": 0.98974609375 + }, + { + "word": " down.", + "start": 3523.4, + "end": 3523.58, + "probability": 1.0 + } + ] + }, + { + "id": 1759, + "text": "Now if your CPU were overheating,", + "start": 3524.34, + "end": 3525.84, + "words": [ + { + "word": " Now", + "start": 3524.34, + "end": 3524.74, + "probability": 0.99853515625 + }, + { + "word": " if", + "start": 3524.74, + "end": 3524.88, + "probability": 0.011688232421875 + }, + { + "word": " your", + "start": 3524.88, + "end": 3524.96, + "probability": 0.99658203125 + }, + { + "word": " CPU", + "start": 3524.96, + "end": 3525.32, + "probability": 0.99755859375 + }, + { + "word": " were", + "start": 3525.32, + "end": 3525.5, + "probability": 0.69873046875 + }, + { + "word": " overheating,", + "start": 3525.5, + "end": 3525.84, + "probability": 1.0 + } + ] + }, + { + "id": 1760, + "text": "that would be a different thing.", + "start": 3525.86, + "end": 3526.64, + "words": [ + { + "word": " that", + "start": 3525.86, + "end": 3525.96, + "probability": 0.99951171875 + }, + { + "word": " would", + "start": 3525.96, + "end": 3526.04, + "probability": 1.0 + }, + { + "word": " be", + "start": 3526.04, + "end": 3526.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 3526.14, + "end": 3526.24, + "probability": 1.0 + }, + { + "word": " different", + "start": 3526.24, + "end": 3526.4, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 3526.4, + "end": 3526.64, + "probability": 1.0 + } + ] + }, + { + "id": 1761, + "text": "It would give you a different message,", + "start": 3526.72, + "end": 3527.9, + "words": [ + { + "word": " It", + "start": 3526.72, + "end": 3526.84, + "probability": 1.0 + }, + { + "word": " would", + "start": 3526.84, + "end": 3526.92, + "probability": 1.0 + }, + { + "word": " give", + "start": 3526.92, + "end": 3527.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 3527.08, + "end": 3527.2, + "probability": 1.0 + }, + { + "word": " a", + "start": 3527.2, + "end": 3527.24, + "probability": 1.0 + }, + { + "word": " different", + "start": 3527.24, + "end": 3527.5, + "probability": 1.0 + }, + { + "word": " message,", + "start": 3527.5, + "end": 3527.9, + "probability": 1.0 + } + ] + }, + { + "id": 1762, + "text": "but I'm betting that the video cards overheating and it's causing the machine to throw an error", + "start": 3528.48, + "end": 3532.24, + "words": [ + { + "word": " but", + "start": 3528.48, + "end": 3528.88, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3528.88, + "end": 3529.08, + "probability": 1.0 + }, + { + "word": " betting", + "start": 3529.08, + "end": 3529.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3529.3, + "end": 3529.5, + "probability": 0.9853515625 + }, + { + "word": " the", + "start": 3529.5, + "end": 3529.58, + "probability": 1.0 + }, + { + "word": " video", + "start": 3529.58, + "end": 3529.78, + "probability": 1.0 + }, + { + "word": " cards", + "start": 3529.78, + "end": 3530.04, + "probability": 0.9609375 + }, + { + "word": " overheating", + "start": 3530.04, + "end": 3530.58, + "probability": 1.0 + }, + { + "word": " and", + "start": 3530.58, + "end": 3530.8, + "probability": 0.998046875 + }, + { + "word": " it's", + "start": 3530.8, + "end": 3530.9, + "probability": 1.0 + }, + { + "word": " causing", + "start": 3530.9, + "end": 3531.16, + "probability": 1.0 + }, + { + "word": " the", + "start": 3531.16, + "end": 3531.32, + "probability": 1.0 + }, + { + "word": " machine", + "start": 3531.32, + "end": 3531.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3531.54, + "end": 3531.74, + "probability": 1.0 + }, + { + "word": " throw", + "start": 3531.74, + "end": 3531.92, + "probability": 0.99951171875 + }, + { + "word": " an", + "start": 3531.92, + "end": 3532.02, + "probability": 0.9951171875 + }, + { + "word": " error", + "start": 3532.02, + "end": 3532.24, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1763, + "text": "and reboot.", + "start": 3532.24, + "end": 3532.9, + "words": [ + { + "word": " and", + "start": 3532.24, + "end": 3532.58, + "probability": 0.9970703125 + }, + { + "word": " reboot.", + "start": 3532.58, + "end": 3532.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1764, + "text": "Now,", + "start": 3534.02, + "end": 3534.42, + "words": [ + { + "word": " Now,", + "start": 3534.02, + "end": 3534.42, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1765, + "text": "after it comes back,", + "start": 3534.52, + "end": 3536.02, + "words": [ + { + "word": " after", + "start": 3534.52, + "end": 3535.18, + "probability": 0.99609375 + }, + { + "word": " it", + "start": 3535.18, + "end": 3535.56, + "probability": 1.0 + }, + { + "word": " comes", + "start": 3535.56, + "end": 3535.82, + "probability": 1.0 + }, + { + "word": " back,", + "start": 3535.82, + "end": 3536.02, + "probability": 1.0 + } + ] + }, + { + "id": 1766, + "text": "if can you get back into regular mode after that four minutes?", + "start": 3536.04, + "end": 3538.7, + "words": [ + { + "word": " if", + "start": 3536.04, + "end": 3536.46, + "probability": 0.97314453125 + }, + { + "word": " can", + "start": 3536.46, + "end": 3536.68, + "probability": 0.38623046875 + }, + { + "word": " you", + "start": 3536.68, + "end": 3536.86, + "probability": 0.99609375 + }, + { + "word": " get", + "start": 3536.86, + "end": 3536.98, + "probability": 1.0 + }, + { + "word": " back", + "start": 3536.98, + "end": 3537.16, + "probability": 1.0 + }, + { + "word": " into", + "start": 3537.16, + "end": 3537.32, + "probability": 1.0 + }, + { + "word": " regular", + "start": 3537.32, + "end": 3537.52, + "probability": 0.99951171875 + }, + { + "word": " mode", + "start": 3537.52, + "end": 3537.76, + "probability": 0.998046875 + }, + { + "word": " after", + "start": 3537.76, + "end": 3538.08, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 3538.08, + "end": 3538.28, + "probability": 0.99951171875 + }, + { + "word": " four", + "start": 3538.28, + "end": 3538.42, + "probability": 0.984375 + }, + { + "word": " minutes?", + "start": 3538.42, + "end": 3538.7, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1767, + "text": "No,", + "start": 3540.44, + "end": 3540.8, + "words": [ + { + "word": " No,", + "start": 3540.44, + "end": 3540.8, + "probability": 0.440185546875 + } + ] + }, + { + "id": 1768, + "text": "I can.", + "start": 3540.88, + "end": 3541.14, + "words": [ + { + "word": " I", + "start": 3540.88, + "end": 3540.98, + "probability": 0.5625 + }, + { + "word": " can.", + "start": 3540.98, + "end": 3541.14, + "probability": 0.7421875 + } + ] + }, + { + "id": 1769, + "text": "Well,", + "start": 3541.16, + "end": 3541.42, + "words": [ + { + "word": " Well,", + "start": 3541.16, + "end": 3541.42, + "probability": 0.9365234375 + } + ] + }, + { + "id": 1770, + "text": "I can,", + "start": 3541.66, + "end": 3542.18, + "words": [ + { + "word": " I", + "start": 3541.66, + "end": 3541.9, + "probability": 0.99951171875 + }, + { + "word": " can,", + "start": 3541.9, + "end": 3542.18, + "probability": 1.0 + } + ] + }, + { + "id": 1771, + "text": "but it just shuts down again.", + "start": 3542.4, + "end": 3544.24, + "words": [ + { + "word": " but", + "start": 3542.4, + "end": 3542.68, + "probability": 1.0 + }, + { + "word": " it", + "start": 3542.68, + "end": 3543.32, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 3543.32, + "end": 3543.46, + "probability": 0.99951171875 + }, + { + "word": " shuts", + "start": 3543.46, + "end": 3543.7, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 3543.7, + "end": 3543.96, + "probability": 0.99755859375 + }, + { + "word": " again.", + "start": 3543.96, + "end": 3544.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1772, + "text": "It restarts.", + "start": 3544.32, + "end": 3545.08, + "words": [ + { + "word": " It", + "start": 3544.32, + "end": 3544.5, + "probability": 0.99365234375 + }, + { + "word": " restarts.", + "start": 3544.5, + "end": 3545.08, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1773, + "text": "So I have to choose the,", + "start": 3545.1, + "end": 3547.08, + "words": [ + { + "word": " So", + "start": 3545.1, + "end": 3545.26, + "probability": 0.986328125 + }, + { + "word": " I", + "start": 3545.26, + "end": 3545.34, + "probability": 0.921875 + }, + { + "word": " have", + "start": 3545.34, + "end": 3545.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 3545.56, + "end": 3545.78, + "probability": 1.0 + }, + { + "word": " choose", + "start": 3545.78, + "end": 3546.82, + "probability": 0.99951171875 + }, + { + "word": " the,", + "start": 3546.82, + "end": 3547.08, + "probability": 0.91796875 + } + ] + }, + { + "id": 1774, + "text": "cause it gives you the options on screen.", + "start": 3547.2, + "end": 3548.48, + "words": [ + { + "word": " cause", + "start": 3547.2, + "end": 3547.44, + "probability": 0.0031528472900390625 + }, + { + "word": " it", + "start": 3547.44, + "end": 3547.52, + "probability": 0.9990234375 + }, + { + "word": " gives", + "start": 3547.52, + "end": 3547.62, + "probability": 1.0 + }, + { + "word": " you", + "start": 3547.62, + "end": 3547.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 3547.72, + "end": 3547.78, + "probability": 1.0 + }, + { + "word": " options", + "start": 3547.78, + "end": 3548.1, + "probability": 1.0 + }, + { + "word": " on", + "start": 3548.1, + "end": 3548.26, + "probability": 0.99951171875 + }, + { + "word": " screen.", + "start": 3548.26, + "end": 3548.48, + "probability": 0.93017578125 + } + ] + }, + { + "id": 1775, + "text": "Once it restarts,", + "start": 3549.1, + "end": 3550.64, + "words": [ + { + "word": " Once", + "start": 3549.1, + "end": 3549.46, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3549.46, + "end": 3549.66, + "probability": 1.0 + }, + { + "word": " restarts,", + "start": 3549.66, + "end": 3550.64, + "probability": 1.0 + } + ] + }, + { + "id": 1776, + "text": "what mode you want to start back into.", + "start": 3551.0, + "end": 3553.18, + "words": [ + { + "word": " what", + "start": 3551.0, + "end": 3551.36, + "probability": 0.86962890625 + }, + { + "word": " mode", + "start": 3551.36, + "end": 3551.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 3551.64, + "end": 3551.84, + "probability": 0.5078125 + }, + { + "word": " want", + "start": 3551.84, + "end": 3551.94, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 3551.94, + "end": 3552.04, + "probability": 1.0 + }, + { + "word": " start", + "start": 3552.04, + "end": 3552.46, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 3552.46, + "end": 3552.88, + "probability": 0.8896484375 + }, + { + "word": " into.", + "start": 3552.88, + "end": 3553.18, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1777, + "text": "And I can do regular mode.", + "start": 3553.42, + "end": 3554.72, + "words": [ + { + "word": " And", + "start": 3553.42, + "end": 3553.78, + "probability": 0.97802734375 + }, + { + "word": " I", + "start": 3553.78, + "end": 3553.86, + "probability": 1.0 + }, + { + "word": " can", + "start": 3553.86, + "end": 3553.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 3553.98, + "end": 3554.12, + "probability": 1.0 + }, + { + "word": " regular", + "start": 3554.12, + "end": 3554.28, + "probability": 0.9990234375 + }, + { + "word": " mode.", + "start": 3554.28, + "end": 3554.72, + "probability": 1.0 + } + ] + }, + { + "id": 1778, + "text": "It'll just load like it normally does.", + "start": 3555.18, + "end": 3556.6, + "words": [ + { + "word": " It'll", + "start": 3555.18, + "end": 3555.54, + "probability": 0.5859375 + }, + { + "word": " just", + "start": 3555.54, + "end": 3555.64, + "probability": 0.99755859375 + }, + { + "word": " load", + "start": 3555.64, + "end": 3555.82, + "probability": 0.96875 + }, + { + "word": " like", + "start": 3555.82, + "end": 3556.0, + "probability": 0.98681640625 + }, + { + "word": " it", + "start": 3556.0, + "end": 3556.08, + "probability": 1.0 + }, + { + "word": " normally", + "start": 3556.08, + "end": 3556.34, + "probability": 0.9990234375 + }, + { + "word": " does.", + "start": 3556.34, + "end": 3556.6, + "probability": 1.0 + } + ] + }, + { + "id": 1779, + "text": "It'll start up and then it'll load up and go into screen where you log in.", + "start": 3556.72, + "end": 3559.5, + "words": [ + { + "word": " It'll", + "start": 3556.72, + "end": 3556.84, + "probability": 0.998046875 + }, + { + "word": " start", + "start": 3556.84, + "end": 3557.3, + "probability": 0.87548828125 + }, + { + "word": " up", + "start": 3557.3, + "end": 3557.52, + "probability": 0.994140625 + }, + { + "word": " and", + "start": 3557.52, + "end": 3557.64, + "probability": 0.90478515625 + }, + { + "word": " then", + "start": 3557.64, + "end": 3557.74, + "probability": 0.779296875 + }, + { + "word": " it'll", + "start": 3557.74, + "end": 3557.84, + "probability": 1.0 + }, + { + "word": " load", + "start": 3557.84, + "end": 3558.04, + "probability": 1.0 + }, + { + "word": " up", + "start": 3558.04, + "end": 3558.2, + "probability": 1.0 + }, + { + "word": " and", + "start": 3558.2, + "end": 3558.28, + "probability": 1.0 + }, + { + "word": " go", + "start": 3558.28, + "end": 3558.38, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 3558.38, + "end": 3558.5, + "probability": 0.9462890625 + }, + { + "word": " screen", + "start": 3558.5, + "end": 3558.74, + "probability": 0.97216796875 + }, + { + "word": " where", + "start": 3558.74, + "end": 3559.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3559.0, + "end": 3559.08, + "probability": 1.0 + }, + { + "word": " log", + "start": 3559.08, + "end": 3559.28, + "probability": 0.99853515625 + }, + { + "word": " in.", + "start": 3559.28, + "end": 3559.5, + "probability": 1.0 + } + ] + }, + { + "id": 1780, + "text": "But then eventually it'll just,", + "start": 3559.78, + "end": 3561.24, + "words": [ + { + "word": " But", + "start": 3559.78, + "end": 3560.14, + "probability": 0.99951171875 + }, + { + "word": " then", + "start": 3560.14, + "end": 3560.3, + "probability": 1.0 + }, + { + "word": " eventually", + "start": 3560.3, + "end": 3560.64, + "probability": 1.0 + }, + { + "word": " it'll", + "start": 3560.64, + "end": 3561.04, + "probability": 0.67138671875 + }, + { + "word": " just,", + "start": 3561.04, + "end": 3561.24, + "probability": 1.0 + } + ] + }, + { + "id": 1781, + "text": "few minutes later,", + "start": 3561.34, + "end": 3562.18, + "words": [ + { + "word": " few", + "start": 3561.34, + "end": 3561.78, + "probability": 0.038421630859375 + }, + { + "word": " minutes", + "start": 3561.78, + "end": 3561.98, + "probability": 0.9990234375 + }, + { + "word": " later,", + "start": 3561.98, + "end": 3562.18, + "probability": 1.0 + } + ] + }, + { + "id": 1782, + "text": "it'll just do the same thing.", + "start": 3562.28, + "end": 3563.18, + "words": [ + { + "word": " it'll", + "start": 3562.28, + "end": 3562.4, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3562.4, + "end": 3562.62, + "probability": 0.85009765625 + }, + { + "word": " do", + "start": 3562.62, + "end": 3562.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 3562.76, + "end": 3562.8, + "probability": 1.0 + }, + { + "word": " same", + "start": 3562.8, + "end": 3562.98, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 3562.98, + "end": 3563.18, + "probability": 1.0 + } + ] + }, + { + "id": 1783, + "text": "So I go ahead and I choose start,", + "start": 3563.26, + "end": 3565.22, + "words": [ + { + "word": " So", + "start": 3563.26, + "end": 3563.36, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 3563.36, + "end": 3563.52, + "probability": 1.0 + }, + { + "word": " go", + "start": 3563.52, + "end": 3563.66, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 3563.66, + "end": 3563.86, + "probability": 1.0 + }, + { + "word": " and", + "start": 3563.86, + "end": 3564.0, + "probability": 1.0 + }, + { + "word": " I", + "start": 3564.0, + "end": 3564.1, + "probability": 1.0 + }, + { + "word": " choose", + "start": 3564.1, + "end": 3564.46, + "probability": 1.0 + }, + { + "word": " start,", + "start": 3564.46, + "end": 3565.22, + "probability": 0.9794921875 + } + ] + }, + { + "id": 1784, + "text": "I mean,", + "start": 3565.3, + "end": 3565.58, + "words": [ + { + "word": " I", + "start": 3565.3, + "end": 3565.44, + "probability": 0.9990234375 + }, + { + "word": " mean,", + "start": 3565.44, + "end": 3565.58, + "probability": 1.0 + } + ] + }, + { + "id": 1785, + "text": "safe mode and then it works just fine.", + "start": 3566.24, + "end": 3568.14, + "words": [ + { + "word": " safe", + "start": 3566.24, + "end": 3566.6, + "probability": 0.85595703125 + }, + { + "word": " mode", + "start": 3566.6, + "end": 3566.96, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3566.96, + "end": 3567.22, + "probability": 0.1947021484375 + }, + { + "word": " then", + "start": 3567.22, + "end": 3567.3, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 3567.3, + "end": 3567.38, + "probability": 1.0 + }, + { + "word": " works", + "start": 3567.38, + "end": 3567.6, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3567.6, + "end": 3567.76, + "probability": 0.99951171875 + }, + { + "word": " fine.", + "start": 3567.76, + "end": 3568.14, + "probability": 1.0 + } + ] + }, + { + "id": 1786, + "text": "As far as safe mode.", + "start": 3568.26, + "end": 3569.64, + "words": [ + { + "word": " As", + "start": 3568.26, + "end": 3568.62, + "probability": 0.55712890625 + }, + { + "word": " far", + "start": 3568.62, + "end": 3569.02, + "probability": 1.0 + }, + { + "word": " as", + "start": 3569.02, + "end": 3569.18, + "probability": 0.99951171875 + }, + { + "word": " safe", + "start": 3569.18, + "end": 3569.4, + "probability": 0.99951171875 + }, + { + "word": " mode.", + "start": 3569.4, + "end": 3569.64, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1787, + "text": "Right.", + "start": 3569.72, + "end": 3570.26, + "words": [ + { + "word": " Right.", + "start": 3569.72, + "end": 3570.26, + "probability": 0.325439453125 + } + ] + }, + { + "id": 1788, + "text": "There's no problems as far as it shutting down or anything else.", + "start": 3570.62, + "end": 3573.36, + "words": [ + { + "word": " There's", + "start": 3570.62, + "end": 3571.02, + "probability": 0.9775390625 + }, + { + "word": " no", + "start": 3571.02, + "end": 3571.06, + "probability": 1.0 + }, + { + "word": " problems", + "start": 3571.06, + "end": 3571.5, + "probability": 0.91552734375 + }, + { + "word": " as", + "start": 3571.5, + "end": 3571.64, + "probability": 0.9970703125 + }, + { + "word": " far", + "start": 3571.64, + "end": 3571.86, + "probability": 1.0 + }, + { + "word": " as", + "start": 3571.86, + "end": 3572.08, + "probability": 1.0 + }, + { + "word": " it", + "start": 3572.08, + "end": 3572.16, + "probability": 0.30419921875 + }, + { + "word": " shutting", + "start": 3572.16, + "end": 3572.42, + "probability": 0.85205078125 + }, + { + "word": " down", + "start": 3572.42, + "end": 3572.7, + "probability": 0.998046875 + }, + { + "word": " or", + "start": 3572.7, + "end": 3572.84, + "probability": 0.99853515625 + }, + { + "word": " anything", + "start": 3572.84, + "end": 3572.98, + "probability": 1.0 + }, + { + "word": " else.", + "start": 3572.98, + "end": 3573.36, + "probability": 1.0 + } + ] + }, + { + "id": 1789, + "text": "Yep.", + "start": 3573.88, + "end": 3574.28, + "words": [ + { + "word": " Yep.", + "start": 3573.88, + "end": 3574.28, + "probability": 0.9853515625 + } + ] + }, + { + "id": 1790, + "text": "I think it's your video card.", + "start": 3574.44, + "end": 3575.94, + "words": [ + { + "word": " I", + "start": 3574.44, + "end": 3574.84, + "probability": 0.9912109375 + }, + { + "word": " think", + "start": 3574.84, + "end": 3575.34, + "probability": 0.97607421875 + }, + { + "word": " it's", + "start": 3575.34, + "end": 3575.54, + "probability": 1.0 + }, + { + "word": " your", + "start": 3575.54, + "end": 3575.54, + "probability": 0.9853515625 + }, + { + "word": " video", + "start": 3575.54, + "end": 3575.72, + "probability": 0.9814453125 + }, + { + "word": " card.", + "start": 3575.72, + "end": 3575.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1791, + "text": "So I,", + "start": 3576.56, + "end": 3577.36, + "words": [ + { + "word": " So", + "start": 3576.56, + "end": 3576.96, + "probability": 0.833984375 + }, + { + "word": " I,", + "start": 3576.96, + "end": 3577.36, + "probability": 0.053558349609375 + } + ] + }, + { + "id": 1792, + "text": "the driver for your video card could probably used to be updated,", + "start": 3577.5, + "end": 3580.38, + "words": [ + { + "word": " the", + "start": 3577.5, + "end": 3577.88, + "probability": 0.998046875 + }, + { + "word": " driver", + "start": 3577.88, + "end": 3578.26, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 3578.26, + "end": 3578.44, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3578.44, + "end": 3578.56, + "probability": 0.994140625 + }, + { + "word": " video", + "start": 3578.56, + "end": 3578.78, + "probability": 0.9912109375 + }, + { + "word": " card", + "start": 3578.78, + "end": 3579.04, + "probability": 1.0 + }, + { + "word": " could", + "start": 3579.04, + "end": 3579.18, + "probability": 0.9990234375 + }, + { + "word": " probably", + "start": 3579.18, + "end": 3579.44, + "probability": 1.0 + }, + { + "word": " used", + "start": 3579.44, + "end": 3579.82, + "probability": 0.281494140625 + }, + { + "word": " to", + "start": 3579.82, + "end": 3580.0, + "probability": 1.0 + }, + { + "word": " be", + "start": 3580.0, + "end": 3580.1, + "probability": 1.0 + }, + { + "word": " updated,", + "start": 3580.1, + "end": 3580.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1793, + "text": "but I bet it's overheating.", + "start": 3580.54, + "end": 3581.56, + "words": [ + { + "word": " but", + "start": 3580.54, + "end": 3580.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 3580.66, + "end": 3580.8, + "probability": 0.99951171875 + }, + { + "word": " bet", + "start": 3580.8, + "end": 3580.94, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3580.94, + "end": 3581.1, + "probability": 1.0 + }, + { + "word": " overheating.", + "start": 3581.1, + "end": 3581.56, + "probability": 1.0 + } + ] + }, + { + "id": 1794, + "text": "And have you like,", + "start": 3582.52, + "end": 3583.86, + "words": [ + { + "word": " And", + "start": 3582.52, + "end": 3582.92, + "probability": 0.994140625 + }, + { + "word": " have", + "start": 3582.92, + "end": 3583.32, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 3583.32, + "end": 3583.5, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3583.5, + "end": 3583.86, + "probability": 0.9453125 + } + ] + }, + { + "id": 1795, + "text": "you know,", + "start": 3583.92, + "end": 3584.14, + "words": [ + { + "word": " you", + "start": 3583.92, + "end": 3584.02, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 3584.02, + "end": 3584.14, + "probability": 1.0 + } + ] + }, + { + "id": 1796, + "text": "taken an air compressor to the second blown out the fan?", + "start": 3584.14, + "end": 3586.38, + "words": [ + { + "word": " taken", + "start": 3584.14, + "end": 3584.34, + "probability": 0.88134765625 + }, + { + "word": " an", + "start": 3584.34, + "end": 3584.52, + "probability": 0.99365234375 + }, + { + "word": " air", + "start": 3584.52, + "end": 3584.68, + "probability": 0.99951171875 + }, + { + "word": " compressor", + "start": 3584.68, + "end": 3584.9, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3584.9, + "end": 3585.12, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 3585.12, + "end": 3585.18, + "probability": 0.91357421875 + }, + { + "word": " second", + "start": 3585.18, + "end": 3585.42, + "probability": 0.599609375 + }, + { + "word": " blown", + "start": 3585.42, + "end": 3585.84, + "probability": 0.73974609375 + }, + { + "word": " out", + "start": 3585.84, + "end": 3586.06, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 3586.06, + "end": 3586.2, + "probability": 0.99951171875 + }, + { + "word": " fan?", + "start": 3586.2, + "end": 3586.38, + "probability": 1.0 + } + ] + }, + { + "id": 1797, + "text": "No,", + "start": 3588.52, + "end": 3588.92, + "words": [ + { + "word": " No,", + "start": 3588.52, + "end": 3588.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1798, + "text": "I've,", + "start": 3589.06, + "end": 3589.54, + "words": [ + { + "word": " I've,", + "start": 3589.06, + "end": 3589.54, + "probability": 1.0 + } + ] + }, + { + "id": 1799, + "text": "I've taken a fan to it.", + "start": 3589.54, + "end": 3591.0, + "words": [ + { + "word": " I've", + "start": 3589.54, + "end": 3589.74, + "probability": 1.0 + }, + { + "word": " taken", + "start": 3589.74, + "end": 3590.06, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 3590.06, + "end": 3590.2, + "probability": 1.0 + }, + { + "word": " fan", + "start": 3590.2, + "end": 3590.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 3590.46, + "end": 3590.74, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 3590.74, + "end": 3591.0, + "probability": 1.0 + } + ] + }, + { + "id": 1800, + "text": "It was total fan.", + "start": 3591.02, + "end": 3591.78, + "words": [ + { + "word": " It", + "start": 3591.02, + "end": 3591.26, + "probability": 0.75390625 + }, + { + "word": " was", + "start": 3591.26, + "end": 3591.36, + "probability": 0.69873046875 + }, + { + "word": " total", + "start": 3591.36, + "end": 3591.48, + "probability": 0.94140625 + }, + { + "word": " fan.", + "start": 3591.48, + "end": 3591.78, + "probability": 0.81201171875 + } + ] + }, + { + "id": 1801, + "text": "I'm blowing in,", + "start": 3591.92, + "end": 3592.54, + "words": [ + { + "word": " I'm", + "start": 3591.92, + "end": 3592.08, + "probability": 1.0 + }, + { + "word": " blowing", + "start": 3592.08, + "end": 3592.3, + "probability": 0.83837890625 + }, + { + "word": " in,", + "start": 3592.3, + "end": 3592.54, + "probability": 0.98046875 + } + ] + }, + { + "id": 1802, + "text": "you know,", + "start": 3592.58, + "end": 3592.8, + "words": [ + { + "word": " you", + "start": 3592.58, + "end": 3592.68, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 3592.68, + "end": 3592.8, + "probability": 1.0 + } + ] + }, + { + "id": 1803, + "text": "put it on it.", + "start": 3592.8, + "end": 3593.52, + "words": [ + { + "word": " put", + "start": 3592.8, + "end": 3593.04, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 3593.04, + "end": 3593.22, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3593.22, + "end": 3593.34, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3593.34, + "end": 3593.52, + "probability": 0.8466796875 + } + ] + }, + { + "id": 1804, + "text": "It does.", + "start": 3593.66, + "end": 3594.3, + "words": [ + { + "word": " It", + "start": 3593.66, + "end": 3594.06, + "probability": 0.99951171875 + }, + { + "word": " does.", + "start": 3594.06, + "end": 3594.3, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1805, + "text": "It does run hot actually.", + "start": 3594.38, + "end": 3595.74, + "words": [ + { + "word": " It", + "start": 3594.38, + "end": 3594.74, + "probability": 0.99951171875 + }, + { + "word": " does", + "start": 3594.74, + "end": 3594.9, + "probability": 1.0 + }, + { + "word": " run", + "start": 3594.9, + "end": 3595.08, + "probability": 0.9990234375 + }, + { + "word": " hot", + "start": 3595.08, + "end": 3595.32, + "probability": 0.9931640625 + }, + { + "word": " actually.", + "start": 3595.32, + "end": 3595.74, + "probability": 0.86669921875 + } + ] + }, + { + "id": 1806, + "text": "Yeah.", + "start": 3596.16, + "end": 3596.56, + "words": [ + { + "word": " Yeah.", + "start": 3596.16, + "end": 3596.56, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1807, + "text": "Well,", + "start": 3596.64, + "end": 3597.0, + "words": [ + { + "word": " Well,", + "start": 3596.64, + "end": 3597.0, + "probability": 0.98388671875 + } + ] + }, + { + "id": 1808, + "text": "you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be", + "start": 3599.72, + "end": 3629.7, + "words": [ + { + "word": " you", + "start": 3599.72, + "end": 3599.72, + "probability": 5.364418029785156e-07 + }, + { + "word": " couldn't", + "start": 3599.72, + "end": 3600.46, + "probability": 0.498291015625 + }, + { + "word": " be", + "start": 3600.46, + "end": 3600.58, + "probability": 0.00830841064453125 + }, + { + "word": " more", + "start": 3600.58, + "end": 3600.94, + "probability": 0.040771484375 + }, + { + "word": " secure", + "start": 3600.94, + "end": 3601.08, + "probability": 0.0013475418090820312 + }, + { + "word": " than", + "start": 3601.08, + "end": 3601.08, + "probability": 0.09527587890625 + }, + { + "word": " you", + "start": 3601.08, + "end": 3601.14, + "probability": 0.12353515625 + }, + { + "word": " couldn't", + "start": 3601.14, + "end": 3601.14, + "probability": 0.499755859375 + }, + { + "word": " be", + "start": 3601.14, + "end": 3601.14, + "probability": 0.71337890625 + }, + { + "word": " more", + "start": 3601.14, + "end": 3601.16, + "probability": 0.3994140625 + }, + { + "word": " secure", + "start": 3601.16, + "end": 3602.08, + "probability": 0.8212890625 + }, + { + "word": " than", + "start": 3602.08, + "end": 3602.22, + "probability": 0.76513671875 + }, + { + "word": " you", + "start": 3602.22, + "end": 3602.52, + "probability": 0.411865234375 + }, + { + "word": " couldn't", + "start": 3602.52, + "end": 3603.06, + "probability": 0.52099609375 + }, + { + "word": " be", + "start": 3603.06, + "end": 3603.08, + "probability": 0.88525390625 + }, + { + "word": " more", + "start": 3603.08, + "end": 3604.08, + "probability": 0.76513671875 + }, + { + "word": " secure", + "start": 3604.08, + "end": 3604.22, + "probability": 0.91162109375 + }, + { + "word": " than", + "start": 3604.22, + "end": 3605.62, + "probability": 0.72607421875 + }, + { + "word": " you", + "start": 3605.62, + "end": 3606.08, + "probability": 0.486572265625 + }, + { + "word": " couldn't", + "start": 3606.08, + "end": 3606.08, + "probability": 0.52783203125 + }, + { + "word": " be", + "start": 3606.08, + "end": 3606.1, + "probability": 0.888671875 + }, + { + "word": " more", + "start": 3606.1, + "end": 3607.0, + "probability": 0.814453125 + }, + { + "word": " secure", + "start": 3607.0, + "end": 3607.72, + "probability": 0.9228515625 + }, + { + "word": " than", + "start": 3607.72, + "end": 3607.8, + "probability": 0.84033203125 + }, + { + "word": " you", + "start": 3607.8, + "end": 3608.06, + "probability": 0.82421875 + }, + { + "word": " couldn't", + "start": 3608.06, + "end": 3608.78, + "probability": 0.5966796875 + }, + { + "word": " be", + "start": 3608.78, + "end": 3608.78, + "probability": 0.94970703125 + }, + { + "word": " more", + "start": 3608.78, + "end": 3608.78, + "probability": 0.91357421875 + }, + { + "word": " secure", + "start": 3608.78, + "end": 3608.78, + "probability": 0.93505859375 + }, + { + "word": " than", + "start": 3608.78, + "end": 3609.3, + "probability": 0.927734375 + }, + { + "word": " you", + "start": 3609.3, + "end": 3609.32, + "probability": 0.96435546875 + }, + { + "word": " couldn't", + "start": 3609.32, + "end": 3610.4, + "probability": 0.73828125 + }, + { + "word": " be", + "start": 3610.4, + "end": 3610.4, + "probability": 0.9794921875 + }, + { + "word": " more", + "start": 3610.4, + "end": 3610.4, + "probability": 0.9580078125 + }, + { + "word": " secure", + "start": 3610.4, + "end": 3610.68, + "probability": 0.9482421875 + }, + { + "word": " than", + "start": 3610.68, + "end": 3610.84, + "probability": 0.95654296875 + }, + { + "word": " you", + "start": 3610.84, + "end": 3610.96, + "probability": 0.98876953125 + }, + { + "word": " couldn't", + "start": 3610.96, + "end": 3611.1, + "probability": 0.849609375 + }, + { + "word": " be", + "start": 3611.1, + "end": 3611.1, + "probability": 0.98876953125 + }, + { + "word": " more", + "start": 3611.1, + "end": 3611.28, + "probability": 0.9716796875 + }, + { + "word": " secure", + "start": 3611.28, + "end": 3611.36, + "probability": 0.95703125 + }, + { + "word": " than", + "start": 3611.36, + "end": 3611.68, + "probability": 0.96728515625 + }, + { + "word": " you", + "start": 3611.68, + "end": 3611.7, + "probability": 0.99267578125 + }, + { + "word": " couldn't", + "start": 3611.7, + "end": 3612.62, + "probability": 0.89794921875 + }, + { + "word": " be", + "start": 3612.62, + "end": 3612.62, + "probability": 0.99169921875 + }, + { + "word": " more", + "start": 3612.62, + "end": 3613.02, + "probability": 0.97607421875 + }, + { + "word": " secure", + "start": 3613.02, + "end": 3613.4, + "probability": 0.96240234375 + }, + { + "word": " than", + "start": 3613.4, + "end": 3614.08, + "probability": 0.97119140625 + }, + { + "word": " you", + "start": 3614.08, + "end": 3614.08, + "probability": 0.99365234375 + }, + { + "word": " couldn't", + "start": 3614.08, + "end": 3614.38, + "probability": 0.9208984375 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99267578125 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9775390625 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.966796875 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9736328125 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9345703125 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99365234375 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97900390625 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.96923828125 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.974609375 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.943359375 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9794921875 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9716796875 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.974609375 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9501953125 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99462890625 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.98095703125 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97216796875 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97509765625 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9560546875 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9951171875 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.982421875 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97314453125 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97509765625 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9619140625 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99560546875 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.98388671875 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97265625 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97509765625 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.966796875 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99560546875 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9853515625 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9716796875 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97509765625 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.970703125 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99609375 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.986328125 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.9716796875 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 3614.38, + "end": 3614.38, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.38, + "end": 3614.38, + "probability": 0.97412109375 + }, + { + "word": " be", + "start": 3614.38, + "end": 3614.38, + "probability": 0.99609375 + }, + { + "word": " more", + "start": 3614.38, + "end": 3614.38, + "probability": 0.98779296875 + }, + { + "word": " secure", + "start": 3614.38, + "end": 3614.38, + "probability": 0.970703125 + }, + { + "word": " than", + "start": 3614.38, + "end": 3614.44, + "probability": 0.97607421875 + }, + { + "word": " you", + "start": 3614.44, + "end": 3614.44, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.44, + "end": 3614.44, + "probability": 0.97705078125 + }, + { + "word": " be", + "start": 3614.44, + "end": 3614.44, + "probability": 0.99658203125 + }, + { + "word": " more", + "start": 3614.44, + "end": 3614.44, + "probability": 0.9892578125 + }, + { + "word": " secure", + "start": 3614.44, + "end": 3614.44, + "probability": 0.97119140625 + }, + { + "word": " than", + "start": 3614.44, + "end": 3614.44, + "probability": 0.9765625 + }, + { + "word": " you", + "start": 3614.44, + "end": 3614.44, + "probability": 0.994140625 + }, + { + "word": " couldn't", + "start": 3614.44, + "end": 3614.44, + "probability": 0.978515625 + }, + { + "word": " be", + "start": 3614.44, + "end": 3614.44, + "probability": 0.9970703125 + }, + { + "word": " more", + "start": 3614.44, + "end": 3614.44, + "probability": 0.990234375 + }, + { + "word": " secure", + "start": 3614.44, + "end": 3614.44, + "probability": 0.970703125 + }, + { + "word": " than", + "start": 3614.44, + "end": 3614.44, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3614.44, + "end": 3614.48, + "probability": 0.99462890625 + }, + { + "word": " couldn't", + "start": 3614.48, + "end": 3615.06, + "probability": 0.98046875 + }, + { + "word": " be", + "start": 3615.06, + "end": 3615.06, + "probability": 0.9970703125 + }, + { + "word": " more", + "start": 3615.06, + "end": 3615.74, + "probability": 0.99072265625 + }, + { + "word": " secure", + "start": 3615.74, + "end": 3616.14, + "probability": 0.9697265625 + }, + { + "word": " than", + "start": 3616.14, + "end": 3616.36, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3616.36, + "end": 3616.38, + "probability": 0.99462890625 + }, + { + "word": " couldn't", + "start": 3616.38, + "end": 3616.38, + "probability": 0.9814453125 + }, + { + "word": " be", + "start": 3616.38, + "end": 3616.38, + "probability": 0.99755859375 + }, + { + "word": " more", + "start": 3616.38, + "end": 3617.98, + "probability": 0.9912109375 + }, + { + "word": " secure", + "start": 3617.98, + "end": 3618.7, + "probability": 0.97021484375 + }, + { + "word": " than", + "start": 3618.7, + "end": 3618.9, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3618.9, + "end": 3618.9, + "probability": 0.99462890625 + }, + { + "word": " couldn't", + "start": 3618.9, + "end": 3618.9, + "probability": 0.982421875 + }, + { + "word": " be", + "start": 3618.9, + "end": 3618.9, + "probability": 0.99755859375 + }, + { + "word": " more", + "start": 3618.9, + "end": 3619.62, + "probability": 0.9912109375 + }, + { + "word": " secure", + "start": 3619.62, + "end": 3620.08, + "probability": 0.97021484375 + }, + { + "word": " than", + "start": 3620.08, + "end": 3620.1, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3620.1, + "end": 3620.1, + "probability": 0.99462890625 + }, + { + "word": " couldn't", + "start": 3620.1, + "end": 3620.24, + "probability": 0.982421875 + }, + { + "word": " be", + "start": 3620.24, + "end": 3620.24, + "probability": 0.99755859375 + }, + { + "word": " more", + "start": 3620.24, + "end": 3620.24, + "probability": 0.99169921875 + }, + { + "word": " secure", + "start": 3620.24, + "end": 3620.36, + "probability": 0.97021484375 + }, + { + "word": " than", + "start": 3620.36, + "end": 3620.5, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3620.5, + "end": 3620.5, + "probability": 0.99462890625 + }, + { + "word": " couldn't", + "start": 3620.5, + "end": 3620.5, + "probability": 0.9833984375 + }, + { + "word": " be", + "start": 3620.5, + "end": 3620.5, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 3620.5, + "end": 3620.52, + "probability": 0.9921875 + }, + { + "word": " secure", + "start": 3620.52, + "end": 3620.74, + "probability": 0.9716796875 + }, + { + "word": " than", + "start": 3620.74, + "end": 3620.74, + "probability": 0.97705078125 + }, + { + "word": " you", + "start": 3620.74, + "end": 3620.74, + "probability": 0.99462890625 + }, + { + "word": " couldn't", + "start": 3620.74, + "end": 3620.74, + "probability": 0.9833984375 + }, + { + "word": " be", + "start": 3620.74, + "end": 3620.86, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 3620.86, + "end": 3621.34, + "probability": 0.99267578125 + }, + { + "word": " secure", + "start": 3621.34, + "end": 3621.82, + "probability": 0.97216796875 + }, + { + "word": " than", + "start": 3621.82, + "end": 3621.94, + "probability": 0.9775390625 + }, + { + "word": " you", + "start": 3621.94, + "end": 3621.96, + "probability": 0.9951171875 + }, + { + "word": " couldn't", + "start": 3621.96, + "end": 3621.96, + "probability": 0.984375 + }, + { + "word": " be", + "start": 3621.96, + "end": 3621.96, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 3621.96, + "end": 3622.42, + "probability": 0.9931640625 + }, + { + "word": " secure", + "start": 3622.42, + "end": 3622.42, + "probability": 0.9736328125 + }, + { + "word": " than", + "start": 3622.42, + "end": 3622.42, + "probability": 0.9775390625 + }, + { + "word": " you", + "start": 3622.42, + "end": 3622.42, + "probability": 0.9951171875 + }, + { + "word": " couldn't", + "start": 3622.42, + "end": 3622.54, + "probability": 0.9853515625 + }, + { + "word": " be", + "start": 3622.54, + "end": 3622.68, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 3622.68, + "end": 3622.86, + "probability": 0.99365234375 + }, + { + "word": " secure", + "start": 3622.86, + "end": 3623.14, + "probability": 0.974609375 + }, + { + "word": " than", + "start": 3623.14, + "end": 3623.22, + "probability": 0.978515625 + }, + { + "word": " you", + "start": 3623.22, + "end": 3623.48, + "probability": 0.9951171875 + }, + { + "word": " couldn't", + "start": 3623.48, + "end": 3624.26, + "probability": 0.986328125 + }, + { + "word": " be", + "start": 3624.26, + "end": 3624.26, + "probability": 0.998046875 + }, + { + "word": " more", + "start": 3624.26, + "end": 3624.26, + "probability": 0.994140625 + }, + { + "word": " secure", + "start": 3624.26, + "end": 3624.26, + "probability": 0.9755859375 + }, + { + "word": " than", + "start": 3624.26, + "end": 3624.26, + "probability": 0.97900390625 + }, + { + "word": " you", + "start": 3624.26, + "end": 3624.5, + "probability": 0.99560546875 + }, + { + "word": " couldn't", + "start": 3624.5, + "end": 3624.92, + "probability": 0.98681640625 + }, + { + "word": " be", + "start": 3624.92, + "end": 3625.0, + "probability": 0.99755859375 + }, + { + "word": " more", + "start": 3625.0, + "end": 3625.0, + "probability": 0.99462890625 + }, + { + "word": " secure", + "start": 3625.0, + "end": 3625.34, + "probability": 0.9765625 + }, + { + "word": " than", + "start": 3625.34, + "end": 3625.34, + "probability": 0.97998046875 + }, + { + "word": " you", + "start": 3625.34, + "end": 3626.24, + "probability": 0.99609375 + }, + { + "word": " couldn't", + "start": 3626.24, + "end": 3626.62, + "probability": 0.98779296875 + }, + { + "word": " be", + "start": 3626.62, + "end": 3626.62, + "probability": 0.99755859375 + }, + { + "word": " more", + "start": 3626.62, + "end": 3626.62, + "probability": 0.9951171875 + }, + { + "word": " secure", + "start": 3626.62, + "end": 3626.94, + "probability": 0.97802734375 + }, + { + "word": " than", + "start": 3626.94, + "end": 3626.96, + "probability": 0.98046875 + }, + { + "word": " you", + "start": 3626.96, + "end": 3627.36, + "probability": 0.99609375 + }, + { + "word": " couldn't", + "start": 3627.36, + "end": 3627.6, + "probability": 0.98828125 + }, + { + "word": " be", + "start": 3627.6, + "end": 3627.6, + "probability": 0.99755859375 + }, + { + "word": " more", + "start": 3627.6, + "end": 3627.64, + "probability": 0.9951171875 + }, + { + "word": " secure", + "start": 3627.64, + "end": 3629.7, + "probability": 0.97900390625 + }, + { + "word": " than", + "start": 3629.7, + "end": 3629.7, + "probability": 0.98095703125 + }, + { + "word": " you", + "start": 3629.7, + "end": 3629.7, + "probability": 0.99658203125 + }, + { + "word": " couldn't", + "start": 3629.7, + "end": 3629.7, + "probability": 0.9892578125 + }, + { + "word": " be", + "start": 3629.7, + "end": 3629.7, + "probability": 0.9970703125 + } + ] + }, + { + "id": 1809, + "text": "and causes the kernel panic.", + "start": 3629.7, + "end": 3631.08, + "words": [ + { + "word": " and", + "start": 3629.7, + "end": 3629.8, + "probability": 0.6474609375 + }, + { + "word": " causes", + "start": 3629.8, + "end": 3630.1, + "probability": 0.9931640625 + }, + { + "word": " the", + "start": 3630.1, + "end": 3630.26, + "probability": 0.99072265625 + }, + { + "word": " kernel", + "start": 3630.26, + "end": 3630.46, + "probability": 0.98681640625 + }, + { + "word": " panic.", + "start": 3630.46, + "end": 3631.08, + "probability": 0.89013671875 + } + ] + }, + { + "id": 1810, + "text": "The other weird thing about this is it has a sticker on it,", + "start": 3633.5, + "end": 3636.82, + "words": [ + { + "word": " The", + "start": 3633.5, + "end": 3634.02, + "probability": 0.564453125 + }, + { + "word": " other", + "start": 3634.02, + "end": 3634.54, + "probability": 0.87060546875 + }, + { + "word": " weird", + "start": 3634.54, + "end": 3634.74, + "probability": 0.99560546875 + }, + { + "word": " thing", + "start": 3634.74, + "end": 3634.98, + "probability": 0.99951171875 + }, + { + "word": " about", + "start": 3634.98, + "end": 3635.2, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 3635.2, + "end": 3635.48, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3635.48, + "end": 3635.76, + "probability": 0.99462890625 + }, + { + "word": " it", + "start": 3635.76, + "end": 3635.9, + "probability": 0.99072265625 + }, + { + "word": " has", + "start": 3635.9, + "end": 3636.04, + "probability": 1.0 + }, + { + "word": " a", + "start": 3636.04, + "end": 3636.14, + "probability": 0.99951171875 + }, + { + "word": " sticker", + "start": 3636.14, + "end": 3636.4, + "probability": 1.0 + }, + { + "word": " on", + "start": 3636.4, + "end": 3636.6, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3636.6, + "end": 3636.82, + "probability": 0.998046875 + } + ] + }, + { + "id": 1811, + "text": "on the external shell of the laptop.", + "start": 3637.6, + "end": 3639.88, + "words": [ + { + "word": " on", + "start": 3637.4599999999996, + "end": 3637.72, + "probability": 0.99658203125 + }, + { + "word": " the", + "start": 3637.72, + "end": 3638.0, + "probability": 0.98876953125 + }, + { + "word": " external", + "start": 3638.0, + "end": 3638.32, + "probability": 0.99951171875 + }, + { + "word": " shell", + "start": 3638.32, + "end": 3638.64, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 3638.64, + "end": 3638.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3638.88, + "end": 3639.0, + "probability": 1.0 + }, + { + "word": " laptop.", + "start": 3639.0, + "end": 3639.88, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1812, + "text": "It says NVIDIA.", + "start": 3639.94, + "end": 3641.54, + "words": [ + { + "word": " It", + "start": 3639.94, + "end": 3640.14, + "probability": 0.998046875 + }, + { + "word": " says", + "start": 3640.14, + "end": 3640.42, + "probability": 1.0 + }, + { + "word": " NVIDIA.", + "start": 3640.42, + "end": 3641.54, + "probability": 0.9716796875 + } + ] + }, + { + "id": 1813, + "text": "Yeah.", + "start": 3642.26, + "end": 3642.78, + "words": [ + { + "word": " Yeah.", + "start": 3642.26, + "end": 3642.78, + "probability": 0.607421875 + } + ] + }, + { + "id": 1814, + "text": "But when I checked in through the programs and so forth,", + "start": 3642.88, + "end": 3647.76, + "words": [ + { + "word": " But", + "start": 3642.88, + "end": 3643.3, + "probability": 0.93017578125 + }, + { + "word": " when", + "start": 3643.3, + "end": 3644.0, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 3644.0, + "end": 3644.08, + "probability": 1.0 + }, + { + "word": " checked", + "start": 3644.08, + "end": 3644.36, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 3644.36, + "end": 3644.56, + "probability": 0.95068359375 + }, + { + "word": " through", + "start": 3644.56, + "end": 3645.24, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 3645.24, + "end": 3645.46, + "probability": 1.0 + }, + { + "word": " programs", + "start": 3645.46, + "end": 3647.0, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 3647.0, + "end": 3647.36, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 3647.36, + "end": 3647.5, + "probability": 1.0 + }, + { + "word": " forth,", + "start": 3647.5, + "end": 3647.76, + "probability": 1.0 + } + ] + }, + { + "id": 1815, + "text": "I couldn't find NVIDIA anywhere inside the machine.", + "start": 3647.84, + "end": 3650.5, + "words": [ + { + "word": " I", + "start": 3647.84, + "end": 3648.0, + "probability": 0.99951171875 + }, + { + "word": " couldn't", + "start": 3648.0, + "end": 3648.42, + "probability": 0.99951171875 + }, + { + "word": " find", + "start": 3648.42, + "end": 3648.58, + "probability": 1.0 + }, + { + "word": " NVIDIA", + "start": 3648.58, + "end": 3649.14, + "probability": 0.9013671875 + }, + { + "word": " anywhere", + "start": 3649.14, + "end": 3649.38, + "probability": 0.99951171875 + }, + { + "word": " inside", + "start": 3649.38, + "end": 3649.72, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 3649.72, + "end": 3649.96, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 3649.96, + "end": 3650.5, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1816, + "text": "You couldn't find it, like, in the device manager under graphics adapters?", + "start": 3651.76, + "end": 3655.18, + "words": [ + { + "word": " You", + "start": 3651.76, + "end": 3652.28, + "probability": 0.99853515625 + }, + { + "word": " couldn't", + "start": 3652.28, + "end": 3652.5, + "probability": 1.0 + }, + { + "word": " find", + "start": 3652.5, + "end": 3652.76, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3652.76, + "end": 3652.9, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3652.96, + "end": 3653.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 3653.18, + "end": 3653.3, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3653.3, + "end": 3653.36, + "probability": 1.0 + }, + { + "word": " device", + "start": 3653.36, + "end": 3653.62, + "probability": 0.96484375 + }, + { + "word": " manager", + "start": 3653.62, + "end": 3653.94, + "probability": 1.0 + }, + { + "word": " under", + "start": 3653.94, + "end": 3654.28, + "probability": 0.9951171875 + }, + { + "word": " graphics", + "start": 3654.28, + "end": 3654.7, + "probability": 0.916015625 + }, + { + "word": " adapters?", + "start": 3654.7, + "end": 3655.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 1817, + "text": "No.", + "start": 3656.06, + "end": 3656.58, + "words": [ + { + "word": " No.", + "start": 3656.06, + "end": 3656.58, + "probability": 0.83935546875 + } + ] + }, + { + "id": 1818, + "text": "It wasn't in there either.", + "start": 3656.88, + "end": 3658.28, + "words": [ + { + "word": " It", + "start": 3656.88, + "end": 3657.4, + "probability": 0.99951171875 + }, + { + "word": " wasn't", + "start": 3657.4, + "end": 3657.74, + "probability": 1.0 + }, + { + "word": " in", + "start": 3657.74, + "end": 3657.84, + "probability": 1.0 + }, + { + "word": " there", + "start": 3657.84, + "end": 3658.02, + "probability": 1.0 + }, + { + "word": " either.", + "start": 3658.02, + "end": 3658.28, + "probability": 0.9560546875 + } + ] + }, + { + "id": 1819, + "text": "So under display adapter, I mean, are you in front of the machine now?", + "start": 3658.28, + "end": 3661.44, + "words": [ + { + "word": " So", + "start": 3658.28, + "end": 3658.82, + "probability": 0.9306640625 + }, + { + "word": " under", + "start": 3658.82, + "end": 3659.14, + "probability": 0.859375 + }, + { + "word": " display", + "start": 3659.14, + "end": 3659.44, + "probability": 0.58251953125 + }, + { + "word": " adapter,", + "start": 3659.44, + "end": 3659.74, + "probability": 0.99169921875 + }, + { + "word": " I", + "start": 3660.12, + "end": 3660.14, + "probability": 0.8330078125 + }, + { + "word": " mean,", + "start": 3660.14, + "end": 3660.54, + "probability": 1.0 + }, + { + "word": " are", + "start": 3660.56, + "end": 3660.7, + "probability": 1.0 + }, + { + "word": " you", + "start": 3660.7, + "end": 3660.82, + "probability": 1.0 + }, + { + "word": " in", + "start": 3660.82, + "end": 3660.86, + "probability": 0.99951171875 + }, + { + "word": " front", + "start": 3660.86, + "end": 3660.96, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3660.96, + "end": 3661.04, + "probability": 1.0 + }, + { + "word": " the", + "start": 3661.04, + "end": 3661.08, + "probability": 1.0 + }, + { + "word": " machine", + "start": 3661.08, + "end": 3661.26, + "probability": 0.99951171875 + }, + { + "word": " now?", + "start": 3661.26, + "end": 3661.44, + "probability": 1.0 + } + ] + }, + { + "id": 1820, + "text": "Yes, I am.", + "start": 3662.44, + "end": 3663.12, + "words": [ + { + "word": " Yes,", + "start": 3662.44, + "end": 3662.8, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3662.8, + "end": 3662.94, + "probability": 1.0 + }, + { + "word": " am.", + "start": 3662.94, + "end": 3663.12, + "probability": 1.0 + } + ] + }, + { + "id": 1821, + "text": "So do you know how to get to the device manager?", + "start": 3663.22, + "end": 3665.16, + "words": [ + { + "word": " So", + "start": 3663.22, + "end": 3663.54, + "probability": 0.97607421875 + }, + { + "word": " do", + "start": 3663.54, + "end": 3663.82, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 3663.82, + "end": 3664.04, + "probability": 1.0 + }, + { + "word": " know", + "start": 3664.04, + "end": 3664.1, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 3664.1, + "end": 3664.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 3664.18, + "end": 3664.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 3664.18, + "end": 3664.32, + "probability": 0.75732421875 + }, + { + "word": " to", + "start": 3664.32, + "end": 3664.44, + "probability": 0.9736328125 + }, + { + "word": " the", + "start": 3664.44, + "end": 3664.56, + "probability": 1.0 + }, + { + "word": " device", + "start": 3664.56, + "end": 3664.92, + "probability": 0.99658203125 + }, + { + "word": " manager?", + "start": 3664.92, + "end": 3665.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1822, + "text": "Yes, I can get to it in the control panel.", + "start": 3666.46, + "end": 3669.38, + "words": [ + { + "word": " Yes,", + "start": 3666.46, + "end": 3666.82, + "probability": 0.787109375 + }, + { + "word": " I", + "start": 3666.96, + "end": 3667.08, + "probability": 1.0 + }, + { + "word": " can", + "start": 3667.08, + "end": 3667.22, + "probability": 1.0 + }, + { + "word": " get", + "start": 3667.22, + "end": 3667.8, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 3667.8, + "end": 3668.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 3668.0, + "end": 3668.12, + "probability": 1.0 + }, + { + "word": " in", + "start": 3668.12, + "end": 3668.68, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 3668.68, + "end": 3668.78, + "probability": 1.0 + }, + { + "word": " control", + "start": 3668.78, + "end": 3669.1, + "probability": 0.99853515625 + }, + { + "word": " panel.", + "start": 3669.1, + "end": 3669.38, + "probability": 0.99462890625 + } + ] + }, + { + "id": 1823, + "text": "All right.", + "start": 3669.64, + "end": 3669.92, + "words": [ + { + "word": " All", + "start": 3669.64, + "end": 3669.86, + "probability": 0.96728515625 + }, + { + "word": " right.", + "start": 3669.86, + "end": 3669.92, + "probability": 1.0 + } + ] + }, + { + "id": 1824, + "text": "So go to the device manager and then look under display adapters", + "start": 3669.94, + "end": 3672.98, + "words": [ + { + "word": " So", + "start": 3669.94, + "end": 3670.12, + "probability": 0.99609375 + }, + { + "word": " go", + "start": 3670.12, + "end": 3670.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 3670.5, + "end": 3670.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 3670.6, + "end": 3670.66, + "probability": 1.0 + }, + { + "word": " device", + "start": 3670.66, + "end": 3670.88, + "probability": 1.0 + }, + { + "word": " manager", + "start": 3670.88, + "end": 3671.22, + "probability": 1.0 + }, + { + "word": " and", + "start": 3671.22, + "end": 3671.56, + "probability": 0.72265625 + }, + { + "word": " then", + "start": 3671.56, + "end": 3671.7, + "probability": 0.99658203125 + }, + { + "word": " look", + "start": 3671.7, + "end": 3671.88, + "probability": 1.0 + }, + { + "word": " under", + "start": 3671.88, + "end": 3672.04, + "probability": 1.0 + }, + { + "word": " display", + "start": 3672.04, + "end": 3672.4, + "probability": 0.9140625 + }, + { + "word": " adapters", + "start": 3672.4, + "end": 3672.98, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1825, + "text": "and let's see what you've got in there.", + "start": 3672.98, + "end": 3674.28, + "words": [ + { + "word": " and", + "start": 3672.98, + "end": 3673.16, + "probability": 0.83544921875 + }, + { + "word": " let's", + "start": 3673.16, + "end": 3673.36, + "probability": 0.9375 + }, + { + "word": " see", + "start": 3673.36, + "end": 3673.48, + "probability": 1.0 + }, + { + "word": " what", + "start": 3673.48, + "end": 3673.6, + "probability": 1.0 + }, + { + "word": " you've", + "start": 3673.6, + "end": 3673.78, + "probability": 1.0 + }, + { + "word": " got", + "start": 3673.78, + "end": 3673.94, + "probability": 1.0 + }, + { + "word": " in", + "start": 3673.94, + "end": 3674.06, + "probability": 1.0 + }, + { + "word": " there.", + "start": 3674.06, + "end": 3674.28, + "probability": 1.0 + } + ] + }, + { + "id": 1826, + "text": "Because I'm curious.", + "start": 3675.22, + "end": 3676.16, + "words": [ + { + "word": " Because", + "start": 3675.22, + "end": 3675.58, + "probability": 0.377197265625 + }, + { + "word": " I'm", + "start": 3675.58, + "end": 3675.9, + "probability": 0.994140625 + }, + { + "word": " curious.", + "start": 3675.9, + "end": 3676.16, + "probability": 1.0 + } + ] + }, + { + "id": 1827, + "text": "All right, device manager.", + "start": 3677.86, + "end": 3679.3, + "words": [ + { + "word": " All", + "start": 3677.86, + "end": 3678.22, + "probability": 0.78076171875 + }, + { + "word": " right,", + "start": 3678.22, + "end": 3678.44, + "probability": 1.0 + }, + { + "word": " device", + "start": 3678.5, + "end": 3678.76, + "probability": 1.0 + }, + { + "word": " manager.", + "start": 3678.76, + "end": 3679.3, + "probability": 1.0 + } + ] + }, + { + "id": 1828, + "text": "Are you in safe mode right now or normal mode?", + "start": 3679.86, + "end": 3681.7, + "words": [ + { + "word": " Are", + "start": 3679.86, + "end": 3680.22, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3680.22, + "end": 3680.3, + "probability": 1.0 + }, + { + "word": " in", + "start": 3680.3, + "end": 3680.38, + "probability": 1.0 + }, + { + "word": " safe", + "start": 3680.38, + "end": 3680.6, + "probability": 0.9990234375 + }, + { + "word": " mode", + "start": 3680.6, + "end": 3680.74, + "probability": 1.0 + }, + { + "word": " right", + "start": 3680.74, + "end": 3680.92, + "probability": 1.0 + }, + { + "word": " now", + "start": 3680.92, + "end": 3681.04, + "probability": 1.0 + }, + { + "word": " or", + "start": 3681.04, + "end": 3681.22, + "probability": 0.99951171875 + }, + { + "word": " normal", + "start": 3681.22, + "end": 3681.42, + "probability": 0.98779296875 + }, + { + "word": " mode?", + "start": 3681.42, + "end": 3681.7, + "probability": 1.0 + } + ] + }, + { + "id": 1829, + "text": "I'm in safe mode.", + "start": 3682.18, + "end": 3683.02, + "words": [ + { + "word": " I'm", + "start": 3682.18, + "end": 3682.54, + "probability": 1.0 + }, + { + "word": " in", + "start": 3682.54, + "end": 3682.54, + "probability": 1.0 + }, + { + "word": " safe", + "start": 3682.54, + "end": 3682.82, + "probability": 1.0 + }, + { + "word": " mode.", + "start": 3682.82, + "end": 3683.02, + "probability": 1.0 + } + ] + }, + { + "id": 1830, + "text": "Okay.", + "start": 3683.2, + "end": 3683.46, + "words": [ + { + "word": " Okay.", + "start": 3683.2, + "end": 3683.46, + "probability": 0.97021484375 + } + ] + }, + { + "id": 1831, + "text": "It's the only way I can, and it won't let me do it,", + "start": 3683.8, + "end": 3686.08, + "words": [ + { + "word": " It's", + "start": 3683.8, + "end": 3684.16, + "probability": 0.703125 + }, + { + "word": " the", + "start": 3684.16, + "end": 3684.22, + "probability": 1.0 + }, + { + "word": " only", + "start": 3684.22, + "end": 3684.36, + "probability": 1.0 + }, + { + "word": " way", + "start": 3684.36, + "end": 3684.6, + "probability": 1.0 + }, + { + "word": " I", + "start": 3684.6, + "end": 3684.72, + "probability": 0.6806640625 + }, + { + "word": " can,", + "start": 3684.72, + "end": 3684.9, + "probability": 1.0 + }, + { + "word": " and", + "start": 3685.0, + "end": 3685.28, + "probability": 0.93701171875 + }, + { + "word": " it", + "start": 3685.28, + "end": 3685.38, + "probability": 0.98486328125 + }, + { + "word": " won't", + "start": 3685.38, + "end": 3685.54, + "probability": 1.0 + }, + { + "word": " let", + "start": 3685.54, + "end": 3685.68, + "probability": 1.0 + }, + { + "word": " me", + "start": 3685.68, + "end": 3685.82, + "probability": 1.0 + }, + { + "word": " do", + "start": 3685.82, + "end": 3685.96, + "probability": 1.0 + }, + { + "word": " it,", + "start": 3685.96, + "end": 3686.08, + "probability": 0.7392578125 + } + ] + }, + { + "id": 1832, + "text": "because I'm logged in as, oh, wait.", + "start": 3686.1, + "end": 3688.06, + "words": [ + { + "word": " because", + "start": 3686.1, + "end": 3686.2, + "probability": 0.2841796875 + }, + { + "word": " I'm", + "start": 3686.2, + "end": 3686.66, + "probability": 1.0 + }, + { + "word": " logged", + "start": 3686.66, + "end": 3686.84, + "probability": 0.99609375 + }, + { + "word": " in", + "start": 3686.84, + "end": 3687.04, + "probability": 0.9931640625 + }, + { + "word": " as,", + "start": 3687.04, + "end": 3687.22, + "probability": 0.533203125 + }, + { + "word": " oh,", + "start": 3687.34, + "end": 3687.9, + "probability": 0.9990234375 + }, + { + "word": " wait.", + "start": 3687.92, + "end": 3688.06, + "probability": 1.0 + } + ] + }, + { + "id": 1833, + "text": "Standard user.", + "start": 3688.8399999999997, + "end": 3689.5, + "words": [ + { + "word": " Standard", + "start": 3688.8399999999997, + "end": 3689.24, + "probability": 0.485107421875 + }, + { + "word": " user.", + "start": 3689.24, + "end": 3689.5, + "probability": 0.91650390625 + } + ] + }, + { + "id": 1834, + "text": "Okay.", + "start": 3693.1, + "end": 3693.5, + "words": [ + { + "word": " Okay.", + "start": 3693.1, + "end": 3693.5, + "probability": 0.6796875 + } + ] + }, + { + "id": 1835, + "text": "I just got logged in as administrator.", + "start": 3693.82, + "end": 3695.08, + "words": [ + { + "word": " I", + "start": 3693.82, + "end": 3694.22, + "probability": 0.34423828125 + }, + { + "word": " just", + "start": 3694.22, + "end": 3694.38, + "probability": 0.9453125 + }, + { + "word": " got", + "start": 3694.38, + "end": 3694.5, + "probability": 0.98828125 + }, + { + "word": " logged", + "start": 3694.5, + "end": 3694.66, + "probability": 0.1865234375 + }, + { + "word": " in", + "start": 3694.66, + "end": 3694.78, + "probability": 0.9990234375 + }, + { + "word": " as", + "start": 3694.78, + "end": 3694.88, + "probability": 0.99853515625 + }, + { + "word": " administrator.", + "start": 3694.88, + "end": 3695.08, + "probability": 0.31298828125 + } + ] + }, + { + "id": 1836, + "text": "Oh, I see.", + "start": 3695.7, + "end": 3696.34, + "words": [ + { + "word": " Oh,", + "start": 3695.7, + "end": 3696.1, + "probability": 0.99267578125 + }, + { + "word": " I", + "start": 3696.1, + "end": 3696.18, + "probability": 0.99951171875 + }, + { + "word": " see.", + "start": 3696.18, + "end": 3696.34, + "probability": 1.0 + } + ] + }, + { + "id": 1837, + "text": "Okay, so I'm in here now, device manager.", + "start": 3696.64, + "end": 3699.48, + "words": [ + { + "word": " Okay,", + "start": 3696.64, + "end": 3697.04, + "probability": 0.947265625 + }, + { + "word": " so", + "start": 3697.12, + "end": 3697.2, + "probability": 0.99755859375 + }, + { + "word": " I'm", + "start": 3697.2, + "end": 3697.74, + "probability": 0.9833984375 + }, + { + "word": " in", + "start": 3697.74, + "end": 3697.76, + "probability": 1.0 + }, + { + "word": " here", + "start": 3697.76, + "end": 3697.9, + "probability": 1.0 + }, + { + "word": " now,", + "start": 3697.9, + "end": 3698.12, + "probability": 0.99951171875 + }, + { + "word": " device", + "start": 3698.24, + "end": 3698.72, + "probability": 0.93408203125 + }, + { + "word": " manager.", + "start": 3698.72, + "end": 3699.48, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1838, + "text": "All right.", + "start": 3699.82, + "end": 3700.2, + "words": [ + { + "word": " All", + "start": 3699.82, + "end": 3700.08, + "probability": 0.9794921875 + }, + { + "word": " right.", + "start": 3700.08, + "end": 3700.2, + "probability": 1.0 + } + ] + }, + { + "id": 1839, + "text": "Under display adapters, what do you have?", + "start": 3700.28, + "end": 3701.8, + "words": [ + { + "word": " Under", + "start": 3700.28, + "end": 3700.56, + "probability": 0.99560546875 + }, + { + "word": " display", + "start": 3700.56, + "end": 3700.88, + "probability": 0.9072265625 + }, + { + "word": " adapters,", + "start": 3700.88, + "end": 3701.32, + "probability": 0.9970703125 + }, + { + "word": " what", + "start": 3701.44, + "end": 3701.58, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 3701.58, + "end": 3701.64, + "probability": 1.0 + }, + { + "word": " you", + "start": 3701.64, + "end": 3701.66, + "probability": 1.0 + }, + { + "word": " have?", + "start": 3701.66, + "end": 3701.8, + "probability": 1.0 + } + ] + }, + { + "id": 1840, + "text": "Display adapters.", + "start": 3703.8199999999997, + "end": 3704.62, + "words": [ + { + "word": " Display", + "start": 3703.8199999999997, + "end": 3704.22, + "probability": 0.99755859375 + }, + { + "word": " adapters.", + "start": 3704.22, + "end": 3704.62, + "probability": 1.0 + } + ] + }, + { + "id": 1841, + "text": "It says mobile Intel 945 Express chipset.", + "start": 3705.7, + "end": 3710.2, + "words": [ + { + "word": " It", + "start": 3705.7, + "end": 3706.1, + "probability": 0.99853515625 + }, + { + "word": " says", + "start": 3706.1, + "end": 3706.38, + "probability": 1.0 + }, + { + "word": " mobile", + "start": 3706.38, + "end": 3706.72, + "probability": 0.95068359375 + }, + { + "word": " Intel", + "start": 3706.72, + "end": 3707.18, + "probability": 0.919921875 + }, + { + "word": " 945", + "start": 3707.18, + "end": 3708.62, + "probability": 0.998046875 + }, + { + "word": " Express", + "start": 3708.62, + "end": 3709.24, + "probability": 0.79150390625 + }, + { + "word": " chipset.", + "start": 3709.24, + "end": 3710.2, + "probability": 0.99365234375 + } + ] + }, + { + "id": 1842, + "text": "Okay.", + "start": 3710.54, + "end": 3710.94, + "words": [ + { + "word": " Okay.", + "start": 3710.54, + "end": 3710.94, + "probability": 0.98583984375 + } + ] + }, + { + "id": 1843, + "text": "Is that it?", + "start": 3710.98, + "end": 3711.48, + "words": [ + { + "word": " Is", + "start": 3710.98, + "end": 3711.18, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 3711.18, + "end": 3711.3, + "probability": 1.0 + }, + { + "word": " it?", + "start": 3711.3, + "end": 3711.48, + "probability": 1.0 + } + ] + }, + { + "id": 1844, + "text": "Nothing else in there?", + "start": 3711.52, + "end": 3712.08, + "words": [ + { + "word": " Nothing", + "start": 3711.52, + "end": 3711.74, + "probability": 0.9970703125 + }, + { + "word": " else", + "start": 3711.74, + "end": 3711.92, + "probability": 1.0 + }, + { + "word": " in", + "start": 3711.92, + "end": 3712.02, + "probability": 0.99951171875 + }, + { + "word": " there?", + "start": 3712.02, + "end": 3712.08, + "probability": 1.0 + } + ] + }, + { + "id": 1845, + "text": "By Windows.", + "start": 3712.3, + "end": 3712.88, + "words": [ + { + "word": " By", + "start": 3712.3, + "end": 3712.46, + "probability": 0.74365234375 + }, + { + "word": " Windows.", + "start": 3712.46, + "end": 3712.88, + "probability": 0.8046875 + } + ] + }, + { + "id": 1846, + "text": "There's two of those, and that's it.", + "start": 3712.92, + "end": 3714.74, + "words": [ + { + "word": " There's", + "start": 3712.92, + "end": 3713.16, + "probability": 0.99658203125 + }, + { + "word": " two", + "start": 3713.16, + "end": 3713.36, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 3713.36, + "end": 3713.48, + "probability": 1.0 + }, + { + "word": " those,", + "start": 3713.48, + "end": 3713.76, + "probability": 1.0 + }, + { + "word": " and", + "start": 3713.84, + "end": 3714.02, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3714.02, + "end": 3714.64, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3714.64, + "end": 3714.74, + "probability": 1.0 + } + ] + }, + { + "id": 1847, + "text": "Okay.", + "start": 3715.32, + "end": 3715.72, + "words": [ + { + "word": " Okay.", + "start": 3715.32, + "end": 3715.72, + "probability": 0.994140625 + } + ] + }, + { + "id": 1848, + "text": "Okay.", + "start": 3715.76, + "end": 3716.1, + "words": [ + { + "word": " Okay.", + "start": 3715.76, + "end": 3716.1, + "probability": 0.09228515625 + } + ] + }, + { + "id": 1849, + "text": "So you're doing it.", + "start": 3716.14, + "end": 3717.92, + "words": [ + { + "word": " So", + "start": 3716.14, + "end": 3716.24, + "probability": 0.9765625 + }, + { + "word": " you're", + "start": 3716.24, + "end": 3717.46, + "probability": 0.90625 + }, + { + "word": " doing", + "start": 3717.46, + "end": 3717.8, + "probability": 0.505859375 + }, + { + "word": " it.", + "start": 3717.8, + "end": 3717.92, + "probability": 0.203125 + } + ] + }, + { + "id": 1850, + "text": "Your machine uses something like some of the Alienwares do,", + "start": 3717.92, + "end": 3720.82, + "words": [ + { + "word": " Your", + "start": 3717.92, + "end": 3718.0, + "probability": 0.24951171875 + }, + { + "word": " machine", + "start": 3718.0, + "end": 3718.28, + "probability": 0.99853515625 + }, + { + "word": " uses", + "start": 3718.28, + "end": 3718.64, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 3718.64, + "end": 3718.96, + "probability": 0.9990234375 + }, + { + "word": " like", + "start": 3718.96, + "end": 3719.32, + "probability": 0.99609375 + }, + { + "word": " some", + "start": 3719.32, + "end": 3719.56, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 3719.56, + "end": 3719.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 3719.7, + "end": 3719.74, + "probability": 1.0 + }, + { + "word": " Alienwares", + "start": 3719.74, + "end": 3720.5, + "probability": 0.96826171875 + }, + { + "word": " do,", + "start": 3720.5, + "end": 3720.82, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1851, + "text": "which is that they use a video hybrid pass-through.", + "start": 3721.54, + "end": 3724.32, + "words": [ + { + "word": " which", + "start": 3721.43, + "end": 3721.72, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 3721.72, + "end": 3721.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 3721.9, + "end": 3722.02, + "probability": 0.98974609375 + }, + { + "word": " they", + "start": 3722.02, + "end": 3722.18, + "probability": 1.0 + }, + { + "word": " use", + "start": 3722.18, + "end": 3722.38, + "probability": 1.0 + }, + { + "word": " a", + "start": 3722.38, + "end": 3722.56, + "probability": 1.0 + }, + { + "word": " video", + "start": 3722.56, + "end": 3723.06, + "probability": 0.994140625 + }, + { + "word": " hybrid", + "start": 3723.06, + "end": 3723.44, + "probability": 0.96533203125 + }, + { + "word": " pass", + "start": 3723.44, + "end": 3724.0, + "probability": 0.85986328125 + }, + { + "word": "-through.", + "start": 3724.0, + "end": 3724.32, + "probability": 0.9921875 + } + ] + }, + { + "id": 1852, + "text": "So it has an onboard graphics adapter,", + "start": 3724.7, + "end": 3726.94, + "words": [ + { + "word": " So", + "start": 3724.7, + "end": 3725.28, + "probability": 0.78759765625 + }, + { + "word": " it", + "start": 3725.28, + "end": 3725.6, + "probability": 0.8720703125 + }, + { + "word": " has", + "start": 3725.6, + "end": 3725.8, + "probability": 1.0 + }, + { + "word": " an", + "start": 3725.8, + "end": 3725.96, + "probability": 1.0 + }, + { + "word": " onboard", + "start": 3725.96, + "end": 3726.22, + "probability": 0.95654296875 + }, + { + "word": " graphics", + "start": 3726.22, + "end": 3726.62, + "probability": 1.0 + }, + { + "word": " adapter,", + "start": 3726.62, + "end": 3726.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1853, + "text": "and it will have like an NVIDIA sort of co-graphics processor.", + "start": 3727.26, + "end": 3730.8, + "words": [ + { + "word": " and", + "start": 3727.26, + "end": 3727.58, + "probability": 1.0 + }, + { + "word": " it", + "start": 3727.58, + "end": 3727.66, + "probability": 1.0 + }, + { + "word": " will", + "start": 3727.66, + "end": 3727.72, + "probability": 0.888671875 + }, + { + "word": " have", + "start": 3727.72, + "end": 3727.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 3727.94, + "end": 3728.16, + "probability": 0.724609375 + }, + { + "word": " an", + "start": 3728.16, + "end": 3728.28, + "probability": 0.99951171875 + }, + { + "word": " NVIDIA", + "start": 3728.28, + "end": 3728.86, + "probability": 0.98974609375 + }, + { + "word": " sort", + "start": 3728.86, + "end": 3729.14, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 3729.14, + "end": 3729.3, + "probability": 1.0 + }, + { + "word": " co", + "start": 3729.3, + "end": 3729.62, + "probability": 0.984375 + }, + { + "word": "-graphics", + "start": 3729.62, + "end": 3730.36, + "probability": 0.99658203125 + }, + { + "word": " processor.", + "start": 3730.36, + "end": 3730.8, + "probability": 1.0 + } + ] + }, + { + "id": 1854, + "text": "And what will happen there is when everything's working the way that it's supposed to,", + "start": 3731.98, + "end": 3736.82, + "words": [ + { + "word": " And", + "start": 3731.98, + "end": 3732.56, + "probability": 0.99072265625 + }, + { + "word": " what", + "start": 3732.56, + "end": 3733.14, + "probability": 0.99951171875 + }, + { + "word": " will", + "start": 3733.14, + "end": 3733.28, + "probability": 0.9853515625 + }, + { + "word": " happen", + "start": 3733.28, + "end": 3733.66, + "probability": 1.0 + }, + { + "word": " there", + "start": 3733.66, + "end": 3733.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 3733.88, + "end": 3734.12, + "probability": 1.0 + }, + { + "word": " when", + "start": 3734.12, + "end": 3734.7, + "probability": 0.94482421875 + }, + { + "word": " everything's", + "start": 3734.7, + "end": 3735.36, + "probability": 0.8525390625 + }, + { + "word": " working", + "start": 3735.36, + "end": 3735.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 3735.58, + "end": 3735.8, + "probability": 1.0 + }, + { + "word": " way", + "start": 3735.8, + "end": 3735.96, + "probability": 1.0 + }, + { + "word": " that", + "start": 3735.96, + "end": 3736.1, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3736.1, + "end": 3736.26, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 3736.26, + "end": 3736.52, + "probability": 1.0 + }, + { + "word": " to,", + "start": 3736.52, + "end": 3736.82, + "probability": 1.0 + } + ] + }, + { + "id": 1855, + "text": "your onboard graphics will handle like the 2D stuff,", + "start": 3736.96, + "end": 3740.34, + "words": [ + { + "word": " your", + "start": 3736.96, + "end": 3737.56, + "probability": 0.99951171875 + }, + { + "word": " onboard", + "start": 3737.56, + "end": 3737.88, + "probability": 0.99951171875 + }, + { + "word": " graphics", + "start": 3737.88, + "end": 3738.34, + "probability": 1.0 + }, + { + "word": " will", + "start": 3738.34, + "end": 3738.5, + "probability": 1.0 + }, + { + "word": " handle", + "start": 3738.5, + "end": 3738.8, + "probability": 1.0 + }, + { + "word": " like", + "start": 3738.8, + "end": 3739.1, + "probability": 0.9638671875 + }, + { + "word": " the", + "start": 3739.1, + "end": 3739.28, + "probability": 1.0 + }, + { + "word": " 2D", + "start": 3739.28, + "end": 3740.0, + "probability": 0.99951171875 + }, + { + "word": " stuff,", + "start": 3740.0, + "end": 3740.34, + "probability": 1.0 + } + ] + }, + { + "id": 1856, + "text": "and then it will use the additional NVIDIA adapter as a 3D adapter,", + "start": 3740.5, + "end": 3745.56, + "words": [ + { + "word": " and", + "start": 3740.5, + "end": 3740.88, + "probability": 1.0 + }, + { + "word": " then", + "start": 3740.88, + "end": 3741.04, + "probability": 1.0 + }, + { + "word": " it", + "start": 3741.04, + "end": 3741.14, + "probability": 1.0 + }, + { + "word": " will", + "start": 3741.14, + "end": 3741.22, + "probability": 0.59619140625 + }, + { + "word": " use", + "start": 3741.22, + "end": 3741.66, + "probability": 1.0 + }, + { + "word": " the", + "start": 3741.66, + "end": 3742.04, + "probability": 1.0 + }, + { + "word": " additional", + "start": 3742.04, + "end": 3743.18, + "probability": 0.99951171875 + }, + { + "word": " NVIDIA", + "start": 3743.18, + "end": 3743.9, + "probability": 1.0 + }, + { + "word": " adapter", + "start": 3743.9, + "end": 3744.1, + "probability": 0.99853515625 + }, + { + "word": " as", + "start": 3744.1, + "end": 3744.56, + "probability": 1.0 + }, + { + "word": " a", + "start": 3744.56, + "end": 3744.64, + "probability": 1.0 + }, + { + "word": " 3D", + "start": 3744.64, + "end": 3745.1, + "probability": 1.0 + }, + { + "word": " adapter,", + "start": 3745.1, + "end": 3745.56, + "probability": 1.0 + } + ] + }, + { + "id": 1857, + "text": "and it just basically injects.", + "start": 3745.72, + "end": 3747.9, + "words": [ + { + "word": " and", + "start": 3745.72, + "end": 3745.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 3745.88, + "end": 3746.16, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 3746.16, + "end": 3746.36, + "probability": 0.99267578125 + }, + { + "word": " basically", + "start": 3746.36, + "end": 3746.8, + "probability": 1.0 + }, + { + "word": " injects.", + "start": 3746.8, + "end": 3747.9, + "probability": 0.69482421875 + } + ] + }, + { + "id": 1858, + "text": "That video into the stream.", + "start": 3747.92, + "end": 3749.4, + "words": [ + { + "word": " That", + "start": 3747.92, + "end": 3748.2, + "probability": 0.060394287109375 + }, + { + "word": " video", + "start": 3748.2, + "end": 3748.64, + "probability": 0.336181640625 + }, + { + "word": " into", + "start": 3748.64, + "end": 3749.02, + "probability": 0.951171875 + }, + { + "word": " the", + "start": 3749.02, + "end": 3749.18, + "probability": 0.9990234375 + }, + { + "word": " stream.", + "start": 3749.18, + "end": 3749.4, + "probability": 0.7705078125 + } + ] + }, + { + "id": 1859, + "text": "So Alienwares do that.", + "start": 3751.3399999999997, + "end": 3752.62, + "words": [ + { + "word": " So", + "start": 3751.3399999999997, + "end": 3751.7799999999997, + "probability": 0.93603515625 + }, + { + "word": " Alienwares", + "start": 3751.7799999999997, + "end": 3752.22, + "probability": 0.66796875 + }, + { + "word": " do", + "start": 3752.22, + "end": 3752.4, + "probability": 0.98779296875 + }, + { + "word": " that.", + "start": 3752.4, + "end": 3752.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1860, + "text": "Sony Vios are the first ones to do that.", + "start": 3753.02, + "end": 3754.94, + "words": [ + { + "word": " Sony", + "start": 3753.02, + "end": 3753.46, + "probability": 0.99072265625 + }, + { + "word": " Vios", + "start": 3753.46, + "end": 3753.7, + "probability": 0.5888671875 + }, + { + "word": " are", + "start": 3753.7, + "end": 3753.86, + "probability": 0.481201171875 + }, + { + "word": " the", + "start": 3753.86, + "end": 3753.9, + "probability": 0.99951171875 + }, + { + "word": " first", + "start": 3753.9, + "end": 3754.18, + "probability": 0.9990234375 + }, + { + "word": " ones", + "start": 3754.18, + "end": 3754.42, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 3754.42, + "end": 3754.58, + "probability": 0.984375 + }, + { + "word": " do", + "start": 3754.58, + "end": 3754.72, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3754.72, + "end": 3754.94, + "probability": 1.0 + } + ] + }, + { + "id": 1861, + "text": "I don't know how long you've been using computers,", + "start": 3755.04, + "end": 3756.82, + "words": [ + { + "word": " I", + "start": 3755.04, + "end": 3755.32, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3755.32, + "end": 3755.5, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 3755.5, + "end": 3755.64, + "probability": 1.0 + }, + { + "word": " how", + "start": 3755.64, + "end": 3755.92, + "probability": 0.98486328125 + }, + { + "word": " long", + "start": 3755.92, + "end": 3756.12, + "probability": 1.0 + }, + { + "word": " you've", + "start": 3756.12, + "end": 3756.26, + "probability": 0.994140625 + }, + { + "word": " been", + "start": 3756.26, + "end": 3756.34, + "probability": 1.0 + }, + { + "word": " using", + "start": 3756.34, + "end": 3756.54, + "probability": 0.99853515625 + }, + { + "word": " computers,", + "start": 3756.54, + "end": 3756.82, + "probability": 0.99853515625 + } + ] + }, + { + "id": 1862, + "text": "but way back in the day, you used to have a video card,", + "start": 3756.96, + "end": 3759.3, + "words": [ + { + "word": " but", + "start": 3756.96, + "end": 3757.06, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 3757.06, + "end": 3757.3, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 3757.3, + "end": 3757.5, + "probability": 1.0 + }, + { + "word": " in", + "start": 3757.5, + "end": 3757.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 3757.74, + "end": 3757.82, + "probability": 1.0 + }, + { + "word": " day,", + "start": 3757.82, + "end": 3758.06, + "probability": 1.0 + }, + { + "word": " you", + "start": 3758.1, + "end": 3758.2, + "probability": 0.99951171875 + }, + { + "word": " used", + "start": 3758.2, + "end": 3758.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 3758.4, + "end": 3758.48, + "probability": 1.0 + }, + { + "word": " have", + "start": 3758.48, + "end": 3758.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 3758.64, + "end": 3758.82, + "probability": 1.0 + }, + { + "word": " video", + "start": 3758.82, + "end": 3759.02, + "probability": 0.9990234375 + }, + { + "word": " card,", + "start": 3759.02, + "end": 3759.3, + "probability": 1.0 + } + ] + }, + { + "id": 1863, + "text": "and then you'd have this other sort of loop adapter", + "start": 3759.38, + "end": 3762.02, + "words": [ + { + "word": " and", + "start": 3759.38, + "end": 3759.48, + "probability": 0.99462890625 + }, + { + "word": " then", + "start": 3759.48, + "end": 3759.52, + "probability": 1.0 + }, + { + "word": " you'd", + "start": 3759.52, + "end": 3759.7, + "probability": 0.91455078125 + }, + { + "word": " have", + "start": 3759.7, + "end": 3759.86, + "probability": 1.0 + }, + { + "word": " this", + "start": 3759.86, + "end": 3760.08, + "probability": 1.0 + }, + { + "word": " other", + "start": 3760.08, + "end": 3760.36, + "probability": 1.0 + }, + { + "word": " sort", + "start": 3760.36, + "end": 3761.12, + "probability": 0.99267578125 + }, + { + "word": " of", + "start": 3761.12, + "end": 3761.24, + "probability": 1.0 + }, + { + "word": " loop", + "start": 3761.24, + "end": 3761.64, + "probability": 1.0 + }, + { + "word": " adapter", + "start": 3761.64, + "end": 3762.02, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1864, + "text": "where you'd add a secondary graphics card for 3D graphics.", + "start": 3762.02, + "end": 3765.14, + "words": [ + { + "word": " where", + "start": 3762.02, + "end": 3762.56, + "probability": 0.88671875 + }, + { + "word": " you'd", + "start": 3762.56, + "end": 3762.78, + "probability": 1.0 + }, + { + "word": " add", + "start": 3762.78, + "end": 3763.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 3763.0, + "end": 3763.14, + "probability": 1.0 + }, + { + "word": " secondary", + "start": 3763.14, + "end": 3763.54, + "probability": 0.99951171875 + }, + { + "word": " graphics", + "start": 3763.54, + "end": 3763.88, + "probability": 1.0 + }, + { + "word": " card", + "start": 3763.88, + "end": 3764.24, + "probability": 1.0 + }, + { + "word": " for", + "start": 3764.24, + "end": 3764.48, + "probability": 1.0 + }, + { + "word": " 3D", + "start": 3764.48, + "end": 3764.76, + "probability": 0.99853515625 + }, + { + "word": " graphics.", + "start": 3764.76, + "end": 3765.14, + "probability": 1.0 + } + ] + }, + { + "id": 1865, + "text": "And that's sort of how these laptops work.", + "start": 3765.38, + "end": 3766.92, + "words": [ + { + "word": " And", + "start": 3765.38, + "end": 3765.6, + "probability": 0.87744140625 + }, + { + "word": " that's", + "start": 3765.6, + "end": 3765.78, + "probability": 1.0 + }, + { + "word": " sort", + "start": 3765.78, + "end": 3765.92, + "probability": 1.0 + }, + { + "word": " of", + "start": 3765.92, + "end": 3766.02, + "probability": 1.0 + }, + { + "word": " how", + "start": 3766.02, + "end": 3766.12, + "probability": 1.0 + }, + { + "word": " these", + "start": 3766.12, + "end": 3766.28, + "probability": 1.0 + }, + { + "word": " laptops", + "start": 3766.28, + "end": 3766.58, + "probability": 1.0 + }, + { + "word": " work.", + "start": 3766.58, + "end": 3766.92, + "probability": 1.0 + } + ] + }, + { + "id": 1866, + "text": "So I'm sticking with my original hypothesis here,", + "start": 3769.3399999999997, + "end": 3772.38, + "words": [ + { + "word": " So", + "start": 3769.3399999999997, + "end": 3769.7799999999997, + "probability": 0.984375 + }, + { + "word": " I'm", + "start": 3769.7799999999997, + "end": 3770.22, + "probability": 0.99267578125 + }, + { + "word": " sticking", + "start": 3770.22, + "end": 3770.44, + "probability": 1.0 + }, + { + "word": " with", + "start": 3770.44, + "end": 3770.62, + "probability": 1.0 + }, + { + "word": " my", + "start": 3770.62, + "end": 3770.78, + "probability": 1.0 + }, + { + "word": " original", + "start": 3770.78, + "end": 3771.14, + "probability": 1.0 + }, + { + "word": " hypothesis", + "start": 3771.14, + "end": 3771.76, + "probability": 1.0 + }, + { + "word": " here,", + "start": 3771.76, + "end": 3772.38, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1867, + "text": "is that you've got a video card overheat problem,", + "start": 3772.46, + "end": 3774.68, + "words": [ + { + "word": " is", + "start": 3772.46, + "end": 3772.66, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 3772.66, + "end": 3772.88, + "probability": 1.0 + }, + { + "word": " you've", + "start": 3772.88, + "end": 3773.38, + "probability": 1.0 + }, + { + "word": " got", + "start": 3773.38, + "end": 3773.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 3773.52, + "end": 3773.6, + "probability": 1.0 + }, + { + "word": " video", + "start": 3773.6, + "end": 3773.74, + "probability": 0.9990234375 + }, + { + "word": " card", + "start": 3773.74, + "end": 3773.98, + "probability": 0.99951171875 + }, + { + "word": " overheat", + "start": 3773.98, + "end": 3774.38, + "probability": 0.99169921875 + }, + { + "word": " problem,", + "start": 3774.38, + "end": 3774.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1868, + "text": "and it can't initialize the second card.", + "start": 3775.22, + "end": 3777.62, + "words": [ + { + "word": " and", + "start": 3775.22, + "end": 3775.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 3775.66, + "end": 3775.92, + "probability": 1.0 + }, + { + "word": " can't", + "start": 3775.92, + "end": 3776.36, + "probability": 1.0 + }, + { + "word": " initialize", + "start": 3776.36, + "end": 3776.92, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 3776.92, + "end": 3777.06, + "probability": 0.99658203125 + }, + { + "word": " second", + "start": 3777.06, + "end": 3777.28, + "probability": 0.998046875 + }, + { + "word": " card.", + "start": 3777.28, + "end": 3777.62, + "probability": 0.99658203125 + } + ] + }, + { + "id": 1869, + "text": "Okay.", + "start": 3777.68, + "end": 3777.9, + "words": [ + { + "word": " Okay.", + "start": 3777.68, + "end": 3777.9, + "probability": 0.01476287841796875 + } + ] + }, + { + "id": 1870, + "text": "", + "start": 3777.9, + "end": 3777.9, + "words": [] + }, + { + "id": 1871, + "text": "And it's hot, and it throws a fit.", + "start": 3777.9, + "end": 3779.64, + "words": [ + { + "word": " And", + "start": 3777.9, + "end": 3777.98, + "probability": 0.06304931640625 + }, + { + "word": " it's", + "start": 3777.98, + "end": 3777.98, + "probability": 0.8984375 + }, + { + "word": " hot,", + "start": 3777.98, + "end": 3778.22, + "probability": 0.99267578125 + }, + { + "word": " and", + "start": 3778.38, + "end": 3778.74, + "probability": 0.98095703125 + }, + { + "word": " it", + "start": 3778.74, + "end": 3778.9, + "probability": 0.9912109375 + }, + { + "word": " throws", + "start": 3778.9, + "end": 3779.24, + "probability": 0.99755859375 + }, + { + "word": " a", + "start": 3779.24, + "end": 3779.4, + "probability": 0.99853515625 + }, + { + "word": " fit.", + "start": 3779.4, + "end": 3779.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1872, + "text": "So I would say get the machine cleaned out.", + "start": 3780.66, + "end": 3784.52, + "words": [ + { + "word": " So", + "start": 3780.66, + "end": 3781.18, + "probability": 0.92919921875 + }, + { + "word": " I", + "start": 3781.18, + "end": 3781.7, + "probability": 0.77099609375 + }, + { + "word": " would", + "start": 3781.7, + "end": 3783.44, + "probability": 0.99951171875 + }, + { + "word": " say", + "start": 3783.44, + "end": 3783.58, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 3783.58, + "end": 3783.7, + "probability": 0.986328125 + }, + { + "word": " the", + "start": 3783.7, + "end": 3783.82, + "probability": 0.99951171875 + }, + { + "word": " machine", + "start": 3783.82, + "end": 3784.0, + "probability": 0.99951171875 + }, + { + "word": " cleaned", + "start": 3784.0, + "end": 3784.24, + "probability": 0.9990234375 + }, + { + "word": " out.", + "start": 3784.24, + "end": 3784.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1873, + "text": "After about five years or so,", + "start": 3785.4, + "end": 3787.66, + "words": [ + { + "word": " After", + "start": 3785.4, + "end": 3785.92, + "probability": 0.998046875 + }, + { + "word": " about", + "start": 3785.92, + "end": 3786.34, + "probability": 0.99951171875 + }, + { + "word": " five", + "start": 3786.34, + "end": 3786.88, + "probability": 0.9736328125 + }, + { + "word": " years", + "start": 3786.88, + "end": 3787.32, + "probability": 1.0 + }, + { + "word": " or", + "start": 3787.32, + "end": 3787.52, + "probability": 0.99951171875 + }, + { + "word": " so,", + "start": 3787.52, + "end": 3787.66, + "probability": 1.0 + } + ] + }, + { + "id": 1874, + "text": "you should probably replace the thermal compound that's under all the chips on the machine.", + "start": 3787.72, + "end": 3793.5, + "words": [ + { + "word": " you", + "start": 3787.72, + "end": 3787.84, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 3787.84, + "end": 3787.98, + "probability": 0.99951171875 + }, + { + "word": " probably", + "start": 3787.98, + "end": 3788.2, + "probability": 0.99951171875 + }, + { + "word": " replace", + "start": 3788.2, + "end": 3788.58, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3788.58, + "end": 3788.94, + "probability": 1.0 + }, + { + "word": " thermal", + "start": 3788.94, + "end": 3789.44, + "probability": 0.99951171875 + }, + { + "word": " compound", + "start": 3789.44, + "end": 3789.98, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3789.98, + "end": 3790.54, + "probability": 0.99462890625 + }, + { + "word": " under", + "start": 3790.54, + "end": 3790.96, + "probability": 0.99853515625 + }, + { + "word": " all", + "start": 3790.96, + "end": 3791.28, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3791.28, + "end": 3791.4, + "probability": 0.99951171875 + }, + { + "word": " chips", + "start": 3791.4, + "end": 3791.68, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3791.68, + "end": 3792.74, + "probability": 0.99169921875 + }, + { + "word": " the", + "start": 3792.74, + "end": 3793.32, + "probability": 1.0 + }, + { + "word": " machine.", + "start": 3793.32, + "end": 3793.5, + "probability": 1.0 + } + ] + }, + { + "id": 1875, + "text": "So under each of the heat sinks,", + "start": 3793.58, + "end": 3795.62, + "words": [ + { + "word": " So", + "start": 3793.58, + "end": 3793.74, + "probability": 0.990234375 + }, + { + "word": " under", + "start": 3793.74, + "end": 3793.98, + "probability": 0.99853515625 + }, + { + "word": " each", + "start": 3793.98, + "end": 3794.38, + "probability": 0.98095703125 + }, + { + "word": " of", + "start": 3794.38, + "end": 3795.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 3795.18, + "end": 3795.26, + "probability": 0.99951171875 + }, + { + "word": " heat", + "start": 3795.26, + "end": 3795.42, + "probability": 0.986328125 + }, + { + "word": " sinks,", + "start": 3795.42, + "end": 3795.62, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1876, + "text": "there's a thermal compound that helps transfer heat from the chip to the copper cooling tubes.", + "start": 3795.76, + "end": 3801.68, + "words": [ + { + "word": " there's", + "start": 3795.76, + "end": 3795.98, + "probability": 1.0 + }, + { + "word": " a", + "start": 3795.98, + "end": 3796.06, + "probability": 1.0 + }, + { + "word": " thermal", + "start": 3796.06, + "end": 3796.32, + "probability": 0.99951171875 + }, + { + "word": " compound", + "start": 3796.32, + "end": 3796.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 3796.7, + "end": 3796.9, + "probability": 0.99951171875 + }, + { + "word": " helps", + "start": 3796.9, + "end": 3797.14, + "probability": 1.0 + }, + { + "word": " transfer", + "start": 3797.14, + "end": 3797.58, + "probability": 0.99951171875 + }, + { + "word": " heat", + "start": 3797.58, + "end": 3798.12, + "probability": 1.0 + }, + { + "word": " from", + "start": 3798.12, + "end": 3798.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 3798.46, + "end": 3798.62, + "probability": 1.0 + }, + { + "word": " chip", + "start": 3798.62, + "end": 3798.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 3798.86, + "end": 3799.16, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3799.16, + "end": 3799.44, + "probability": 1.0 + }, + { + "word": " copper", + "start": 3799.44, + "end": 3799.98, + "probability": 1.0 + }, + { + "word": " cooling", + "start": 3799.98, + "end": 3801.18, + "probability": 0.9990234375 + }, + { + "word": " tubes.", + "start": 3801.18, + "end": 3801.68, + "probability": 1.0 + } + ] + }, + { + "id": 1877, + "text": "And that stuff breaks down over time and becomes less effective,", + "start": 3802.36, + "end": 3805.6, + "words": [ + { + "word": " And", + "start": 3802.36, + "end": 3802.88, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 3802.88, + "end": 3803.38, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 3803.38, + "end": 3803.52, + "probability": 1.0 + }, + { + "word": " breaks", + "start": 3803.52, + "end": 3803.8, + "probability": 1.0 + }, + { + "word": " down", + "start": 3803.8, + "end": 3804.08, + "probability": 1.0 + }, + { + "word": " over", + "start": 3804.08, + "end": 3804.28, + "probability": 1.0 + }, + { + "word": " time", + "start": 3804.28, + "end": 3804.62, + "probability": 1.0 + }, + { + "word": " and", + "start": 3804.62, + "end": 3804.78, + "probability": 0.90185546875 + }, + { + "word": " becomes", + "start": 3804.78, + "end": 3804.96, + "probability": 1.0 + }, + { + "word": " less", + "start": 3804.96, + "end": 3805.22, + "probability": 1.0 + }, + { + "word": " effective,", + "start": 3805.22, + "end": 3805.6, + "probability": 1.0 + } + ] + }, + { + "id": 1878, + "text": "meaning that the cards,", + "start": 3805.76, + "end": 3807.78, + "words": [ + { + "word": " meaning", + "start": 3805.76, + "end": 3806.22, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 3806.22, + "end": 3806.42, + "probability": 0.9814453125 + }, + { + "word": " the", + "start": 3806.42, + "end": 3806.64, + "probability": 0.9990234375 + }, + { + "word": " cards,", + "start": 3806.64, + "end": 3807.78, + "probability": 0.91845703125 + } + ] + }, + { + "id": 1879, + "text": "the cards run way hotter than they should.", + "start": 3807.78, + "end": 3809.4, + "words": [ + { + "word": " the", + "start": 3807.78, + "end": 3807.78, + "probability": 0.00792694091796875 + }, + { + "word": " cards", + "start": 3807.78, + "end": 3807.78, + "probability": 0.421875 + }, + { + "word": " run", + "start": 3807.78, + "end": 3808.06, + "probability": 0.9892578125 + }, + { + "word": " way", + "start": 3808.06, + "end": 3808.46, + "probability": 0.99169921875 + }, + { + "word": " hotter", + "start": 3808.46, + "end": 3808.74, + "probability": 0.98193359375 + }, + { + "word": " than", + "start": 3808.74, + "end": 3809.0, + "probability": 0.984375 + }, + { + "word": " they", + "start": 3809.0, + "end": 3809.16, + "probability": 0.99755859375 + }, + { + "word": " should.", + "start": 3809.16, + "end": 3809.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1880, + "text": "And so I would say, you know,", + "start": 3810.2, + "end": 3812.58, + "words": [ + { + "word": " And", + "start": 3810.2, + "end": 3810.6, + "probability": 0.70556640625 + }, + { + "word": " so", + "start": 3810.6, + "end": 3811.0, + "probability": 0.9697265625 + }, + { + "word": " I", + "start": 3811.0, + "end": 3811.66, + "probability": 0.66015625 + }, + { + "word": " would", + "start": 3811.66, + "end": 3811.84, + "probability": 0.998046875 + }, + { + "word": " say,", + "start": 3811.84, + "end": 3812.06, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 3812.08, + "end": 3812.44, + "probability": 0.86962890625 + }, + { + "word": " know,", + "start": 3812.44, + "end": 3812.58, + "probability": 0.9833984375 + } + ] + }, + { + "id": 1881, + "text": "either take the machine apart and fix that up,", + "start": 3812.58, + "end": 3814.12, + "words": [ + { + "word": " either", + "start": 3812.58, + "end": 3812.72, + "probability": 0.95166015625 + }, + { + "word": " take", + "start": 3812.72, + "end": 3812.9, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 3812.9, + "end": 3813.04, + "probability": 0.99755859375 + }, + { + "word": " machine", + "start": 3813.04, + "end": 3813.16, + "probability": 0.998046875 + }, + { + "word": " apart", + "start": 3813.16, + "end": 3813.38, + "probability": 0.99755859375 + }, + { + "word": " and", + "start": 3813.38, + "end": 3813.6, + "probability": 0.9248046875 + }, + { + "word": " fix", + "start": 3813.6, + "end": 3813.8, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 3813.8, + "end": 3813.94, + "probability": 0.9990234375 + }, + { + "word": " up,", + "start": 3813.94, + "end": 3814.12, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1882, + "text": "or it may be time to look into a different machine.", + "start": 3814.2, + "end": 3816.9, + "words": [ + { + "word": " or", + "start": 3814.2, + "end": 3814.74, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 3814.74, + "end": 3815.48, + "probability": 0.9462890625 + }, + { + "word": " may", + "start": 3815.48, + "end": 3815.62, + "probability": 0.9921875 + }, + { + "word": " be", + "start": 3815.62, + "end": 3815.78, + "probability": 0.99951171875 + }, + { + "word": " time", + "start": 3815.78, + "end": 3815.94, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 3815.94, + "end": 3816.1, + "probability": 0.99951171875 + }, + { + "word": " look", + "start": 3816.1, + "end": 3816.22, + "probability": 0.99951171875 + }, + { + "word": " into", + "start": 3816.22, + "end": 3816.36, + "probability": 0.99853515625 + }, + { + "word": " a", + "start": 3816.36, + "end": 3816.48, + "probability": 0.9990234375 + }, + { + "word": " different", + "start": 3816.48, + "end": 3816.64, + "probability": 0.99951171875 + }, + { + "word": " machine.", + "start": 3816.64, + "end": 3816.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1883, + "text": "Okay.", + "start": 3818.12, + "end": 3818.52, + "words": [ + { + "word": " Okay.", + "start": 3818.12, + "end": 3818.52, + "probability": 0.74560546875 + } + ] + }, + { + "id": 1884, + "text": "I could probably go online and find how to...", + "start": 3818.82, + "end": 3822.42, + "words": [ + { + "word": " I", + "start": 3818.82, + "end": 3819.22, + "probability": 0.9990234375 + }, + { + "word": " could", + "start": 3819.22, + "end": 3819.38, + "probability": 0.99658203125 + }, + { + "word": " probably", + "start": 3819.38, + "end": 3819.58, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 3819.58, + "end": 3819.72, + "probability": 0.99951171875 + }, + { + "word": " online", + "start": 3819.72, + "end": 3819.94, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 3819.94, + "end": 3820.3, + "probability": 0.998046875 + }, + { + "word": " find", + "start": 3820.3, + "end": 3820.8, + "probability": 0.98974609375 + }, + { + "word": " how", + "start": 3820.8, + "end": 3821.86, + "probability": 0.90576171875 + }, + { + "word": " to...", + "start": 3821.86, + "end": 3822.42, + "probability": 0.65234375 + } + ] + }, + { + "id": 1885, + "text": "There's plenty of breakdown videos for those, right?", + "start": 3823.3199999999997, + "end": 3825.54, + "words": [ + { + "word": " There's", + "start": 3823.3199999999997, + "end": 3823.72, + "probability": 0.99755859375 + }, + { + "word": " plenty", + "start": 3823.72, + "end": 3823.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 3823.96, + "end": 3824.16, + "probability": 1.0 + }, + { + "word": " breakdown", + "start": 3824.16, + "end": 3824.36, + "probability": 0.990234375 + }, + { + "word": " videos", + "start": 3824.36, + "end": 3824.84, + "probability": 0.98828125 + }, + { + "word": " for", + "start": 3824.84, + "end": 3825.12, + "probability": 0.9990234375 + }, + { + "word": " those,", + "start": 3825.12, + "end": 3825.32, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 3825.34, + "end": 3825.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1886, + "text": "Too hot, right.", + "start": 3825.76, + "end": 3826.64, + "words": [ + { + "word": " Too", + "start": 3825.76, + "end": 3825.94, + "probability": 0.228759765625 + }, + { + "word": " hot,", + "start": 3825.94, + "end": 3826.06, + "probability": 0.9658203125 + }, + { + "word": " right.", + "start": 3826.12, + "end": 3826.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1887, + "text": "So if you're going to do a YouTube search,", + "start": 3827.42, + "end": 3829.8, + "words": [ + { + "word": " So", + "start": 3827.42, + "end": 3827.82, + "probability": 0.99169921875 + }, + { + "word": " if", + "start": 3827.82, + "end": 3828.14, + "probability": 0.84033203125 + }, + { + "word": " you're", + "start": 3828.14, + "end": 3828.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 3828.96, + "end": 3829.02, + "probability": 0.98876953125 + }, + { + "word": " to", + "start": 3829.02, + "end": 3829.12, + "probability": 1.0 + }, + { + "word": " do", + "start": 3829.12, + "end": 3829.24, + "probability": 1.0 + }, + { + "word": " a", + "start": 3829.24, + "end": 3829.34, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 3829.34, + "end": 3829.52, + "probability": 1.0 + }, + { + "word": " search,", + "start": 3829.52, + "end": 3829.8, + "probability": 1.0 + } + ] + }, + { + "id": 1888, + "text": "which is probably the way that I recommend most people do it,", + "start": 3829.98, + "end": 3831.9, + "words": [ + { + "word": " which", + "start": 3829.98, + "end": 3830.22, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3830.22, + "end": 3830.36, + "probability": 1.0 + }, + { + "word": " probably", + "start": 3830.36, + "end": 3830.54, + "probability": 1.0 + }, + { + "word": " the", + "start": 3830.54, + "end": 3830.7, + "probability": 1.0 + }, + { + "word": " way", + "start": 3830.7, + "end": 3830.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 3830.82, + "end": 3830.94, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 3830.94, + "end": 3830.98, + "probability": 1.0 + }, + { + "word": " recommend", + "start": 3830.98, + "end": 3831.22, + "probability": 1.0 + }, + { + "word": " most", + "start": 3831.22, + "end": 3831.44, + "probability": 1.0 + }, + { + "word": " people", + "start": 3831.44, + "end": 3831.64, + "probability": 1.0 + }, + { + "word": " do", + "start": 3831.64, + "end": 3831.76, + "probability": 0.99658203125 + }, + { + "word": " it,", + "start": 3831.76, + "end": 3831.9, + "probability": 1.0 + } + ] + }, + { + "id": 1889, + "text": "you'll be looking for a, like, your Sony VAIO,", + "start": 3832.0, + "end": 3835.48, + "words": [ + { + "word": " you'll", + "start": 3832.0, + "end": 3832.18, + "probability": 0.998046875 + }, + { + "word": " be", + "start": 3832.18, + "end": 3832.32, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3832.32, + "end": 3832.64, + "probability": 1.0 + }, + { + "word": " for", + "start": 3832.64, + "end": 3833.1, + "probability": 1.0 + }, + { + "word": " a,", + "start": 3833.1, + "end": 3833.44, + "probability": 0.53515625 + }, + { + "word": " like,", + "start": 3833.66, + "end": 3834.14, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3834.22, + "end": 3834.68, + "probability": 0.9990234375 + }, + { + "word": " Sony", + "start": 3834.68, + "end": 3835.0, + "probability": 0.9990234375 + }, + { + "word": " VAIO,", + "start": 3835.0, + "end": 3835.48, + "probability": 0.74072265625 + } + ] + }, + { + "id": 1890, + "text": "and then hopefully a...", + "start": 3835.66, + "end": 3837.42, + "words": [ + { + "word": " and", + "start": 3835.66, + "end": 3835.9, + "probability": 1.0 + }, + { + "word": " then", + "start": 3835.9, + "end": 3836.04, + "probability": 0.99462890625 + }, + { + "word": " hopefully", + "start": 3836.04, + "end": 3837.02, + "probability": 0.97412109375 + }, + { + "word": " a...", + "start": 3837.02, + "end": 3837.42, + "probability": 0.477294921875 + } + ] + }, + { + "id": 1891, + "text": "similar model number breakdown.", + "start": 3837.42, + "end": 3839.18, + "words": [ + { + "word": " similar", + "start": 3837.42, + "end": 3837.72, + "probability": 0.9501953125 + }, + { + "word": " model", + "start": 3837.72, + "end": 3838.06, + "probability": 0.9990234375 + }, + { + "word": " number", + "start": 3838.06, + "end": 3838.4, + "probability": 0.99951171875 + }, + { + "word": " breakdown.", + "start": 3838.4, + "end": 3839.18, + "probability": 0.71728515625 + } + ] + }, + { + "id": 1892, + "text": "And it'll tell you how to take the machine apart.", + "start": 3839.6, + "end": 3841.38, + "words": [ + { + "word": " And", + "start": 3839.6, + "end": 3839.96, + "probability": 0.80224609375 + }, + { + "word": " it'll", + "start": 3839.96, + "end": 3840.14, + "probability": 0.935546875 + }, + { + "word": " tell", + "start": 3840.14, + "end": 3840.3, + "probability": 1.0 + }, + { + "word": " you", + "start": 3840.3, + "end": 3840.38, + "probability": 1.0 + }, + { + "word": " how", + "start": 3840.38, + "end": 3840.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3840.48, + "end": 3840.56, + "probability": 1.0 + }, + { + "word": " take", + "start": 3840.56, + "end": 3840.78, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3840.78, + "end": 3840.92, + "probability": 0.9990234375 + }, + { + "word": " machine", + "start": 3840.92, + "end": 3841.14, + "probability": 0.9990234375 + }, + { + "word": " apart.", + "start": 3841.14, + "end": 3841.38, + "probability": 1.0 + } + ] + }, + { + "id": 1893, + "text": "Okay.", + "start": 3842.38, + "end": 3842.74, + "words": [ + { + "word": " Okay.", + "start": 3842.38, + "end": 3842.74, + "probability": 0.71533203125 + } + ] + }, + { + "id": 1894, + "text": "The VAIOs are nice and easy, though.", + "start": 3842.88, + "end": 3844.08, + "words": [ + { + "word": " The", + "start": 3842.88, + "end": 3843.06, + "probability": 0.98486328125 + }, + { + "word": " VAIOs", + "start": 3843.06, + "end": 3843.3, + "probability": 0.5634765625 + }, + { + "word": " are", + "start": 3843.3, + "end": 3843.38, + "probability": 1.0 + }, + { + "word": " nice", + "start": 3843.38, + "end": 3843.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 3843.6, + "end": 3843.64, + "probability": 1.0 + }, + { + "word": " easy,", + "start": 3843.64, + "end": 3843.88, + "probability": 1.0 + }, + { + "word": " though.", + "start": 3843.92, + "end": 3844.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1895, + "text": "So.", + "start": 3844.22, + "end": 3844.58, + "words": [ + { + "word": " So.", + "start": 3844.22, + "end": 3844.58, + "probability": 0.16796875 + } + ] + }, + { + "id": 1896, + "text": "Okay.", + "start": 3845.4, + "end": 3845.76, + "words": [ + { + "word": " Okay.", + "start": 3845.4, + "end": 3845.76, + "probability": 0.4931640625 + } + ] + }, + { + "id": 1897, + "text": "All right.", + "start": 3845.92, + "end": 3846.36, + "words": [ + { + "word": " All", + "start": 3845.92, + "end": 3846.28, + "probability": 0.90771484375 + }, + { + "word": " right.", + "start": 3846.28, + "end": 3846.36, + "probability": 1.0 + } + ] + }, + { + "id": 1898, + "text": "Well, thanks for the call, Paul.", + "start": 3846.38, + "end": 3847.02, + "words": [ + { + "word": " Well,", + "start": 3846.38, + "end": 3846.48, + "probability": 0.9970703125 + }, + { + "word": " thanks", + "start": 3846.48, + "end": 3846.58, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 3846.58, + "end": 3846.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 3846.66, + "end": 3846.74, + "probability": 0.99951171875 + }, + { + "word": " call,", + "start": 3846.74, + "end": 3846.9, + "probability": 1.0 + }, + { + "word": " Paul.", + "start": 3846.92, + "end": 3847.02, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1899, + "text": "I appreciate it.", + "start": 3847.12, + "end": 3847.62, + "words": [ + { + "word": " I", + "start": 3847.12, + "end": 3847.18, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 3847.18, + "end": 3847.4, + "probability": 1.0 + }, + { + "word": " it.", + "start": 3847.4, + "end": 3847.62, + "probability": 1.0 + } + ] + }, + { + "id": 1900, + "text": "And sorry I didn't get back to you.", + "start": 3847.66, + "end": 3848.46, + "words": [ + { + "word": " And", + "start": 3847.66, + "end": 3847.74, + "probability": 0.9306640625 + }, + { + "word": " sorry", + "start": 3847.74, + "end": 3847.86, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 3847.86, + "end": 3848.0, + "probability": 0.9970703125 + }, + { + "word": " didn't", + "start": 3848.0, + "end": 3848.1, + "probability": 1.0 + }, + { + "word": " get", + "start": 3848.1, + "end": 3848.12, + "probability": 1.0 + }, + { + "word": " back", + "start": 3848.12, + "end": 3848.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 3848.32, + "end": 3848.44, + "probability": 1.0 + }, + { + "word": " you.", + "start": 3848.44, + "end": 3848.46, + "probability": 1.0 + } + ] + }, + { + "id": 1901, + "text": "A lot of times I don't see those things,", + "start": 3848.5, + "end": 3850.22, + "words": [ + { + "word": " A", + "start": 3848.5, + "end": 3848.76, + "probability": 0.93798828125 + }, + { + "word": " lot", + "start": 3848.76, + "end": 3849.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 3849.0, + "end": 3849.06, + "probability": 1.0 + }, + { + "word": " times", + "start": 3849.06, + "end": 3849.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 3849.28, + "end": 3849.46, + "probability": 0.7978515625 + }, + { + "word": " don't", + "start": 3849.46, + "end": 3849.72, + "probability": 1.0 + }, + { + "word": " see", + "start": 3849.72, + "end": 3849.92, + "probability": 1.0 + }, + { + "word": " those", + "start": 3849.92, + "end": 3850.08, + "probability": 0.99755859375 + }, + { + "word": " things,", + "start": 3850.08, + "end": 3850.22, + "probability": 0.98974609375 + } + ] + }, + { + "id": 1902, + "text": "so they end up in spam or something,", + "start": 3850.3, + "end": 3851.58, + "words": [ + { + "word": " so", + "start": 3850.3, + "end": 3850.4, + "probability": 0.57763671875 + }, + { + "word": " they", + "start": 3850.4, + "end": 3850.48, + "probability": 0.99951171875 + }, + { + "word": " end", + "start": 3850.48, + "end": 3850.6, + "probability": 1.0 + }, + { + "word": " up", + "start": 3850.6, + "end": 3850.66, + "probability": 1.0 + }, + { + "word": " in", + "start": 3850.66, + "end": 3850.76, + "probability": 1.0 + }, + { + "word": " spam", + "start": 3850.76, + "end": 3851.0, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 3851.0, + "end": 3851.32, + "probability": 0.99951171875 + }, + { + "word": " something,", + "start": 3851.32, + "end": 3851.58, + "probability": 1.0 + } + ] + }, + { + "id": 1903, + "text": "and I apologize.", + "start": 3851.66, + "end": 3852.38, + "words": [ + { + "word": " and", + "start": 3851.66, + "end": 3851.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 3851.84, + "end": 3852.08, + "probability": 1.0 + }, + { + "word": " apologize.", + "start": 3852.08, + "end": 3852.38, + "probability": 1.0 + } + ] + }, + { + "id": 1904, + "text": "Okay.", + "start": 3853.4, + "end": 3853.76, + "words": [ + { + "word": " Okay.", + "start": 3853.4, + "end": 3853.76, + "probability": 0.95654296875 + } + ] + }, + { + "id": 1905, + "text": "Well, I set the error codes as attachments.", + "start": 3854.06, + "end": 3857.34, + "words": [ + { + "word": " Well,", + "start": 3854.06, + "end": 3854.42, + "probability": 0.9912109375 + }, + { + "word": " I", + "start": 3854.5, + "end": 3854.58, + "probability": 1.0 + }, + { + "word": " set", + "start": 3854.58, + "end": 3854.78, + "probability": 0.7138671875 + }, + { + "word": " the", + "start": 3854.78, + "end": 3855.02, + "probability": 1.0 + }, + { + "word": " error", + "start": 3855.02, + "end": 3855.88, + "probability": 0.99853515625 + }, + { + "word": " codes", + "start": 3855.88, + "end": 3856.14, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 3856.14, + "end": 3856.5, + "probability": 1.0 + }, + { + "word": " attachments.", + "start": 3856.5, + "end": 3857.34, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1906, + "text": "Maybe you thought it was a, you know, scam or something.", + "start": 3857.46, + "end": 3859.9, + "words": [ + { + "word": " Maybe", + "start": 3857.46, + "end": 3857.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 3857.72, + "end": 3857.86, + "probability": 1.0 + }, + { + "word": " thought", + "start": 3857.86, + "end": 3858.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 3858.0, + "end": 3858.12, + "probability": 1.0 + }, + { + "word": " was", + "start": 3858.12, + "end": 3858.24, + "probability": 1.0 + }, + { + "word": " a,", + "start": 3858.24, + "end": 3858.46, + "probability": 0.72607421875 + }, + { + "word": " you", + "start": 3858.46, + "end": 3858.94, + "probability": 1.0 + }, + { + "word": " know,", + "start": 3858.94, + "end": 3859.1, + "probability": 1.0 + }, + { + "word": " scam", + "start": 3859.1, + "end": 3859.36, + "probability": 0.9814453125 + }, + { + "word": " or", + "start": 3859.36, + "end": 3859.64, + "probability": 0.9990234375 + }, + { + "word": " something.", + "start": 3859.64, + "end": 3859.9, + "probability": 1.0 + } + ] + }, + { + "id": 1907, + "text": "I don't know.", + "start": 3860.08, + "end": 3860.58, + "words": [ + { + "word": " I", + "start": 3860.08, + "end": 3860.3, + "probability": 1.0 + }, + { + "word": " don't", + "start": 3860.3, + "end": 3860.48, + "probability": 1.0 + }, + { + "word": " know.", + "start": 3860.48, + "end": 3860.58, + "probability": 1.0 + } + ] + }, + { + "id": 1908, + "text": "My spam filter is set to absurd.", + "start": 3861.4599999999996, + "end": 3863.42, + "words": [ + { + "word": " My", + "start": 3861.4599999999996, + "end": 3861.8199999999997, + "probability": 0.990234375 + }, + { + "word": " spam", + "start": 3861.8199999999997, + "end": 3862.18, + "probability": 0.9931640625 + }, + { + "word": " filter", + "start": 3862.18, + "end": 3862.5, + "probability": 0.9462890625 + }, + { + "word": " is", + "start": 3862.5, + "end": 3862.72, + "probability": 1.0 + }, + { + "word": " set", + "start": 3862.72, + "end": 3862.9, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 3862.9, + "end": 3863.02, + "probability": 1.0 + }, + { + "word": " absurd.", + "start": 3863.02, + "end": 3863.42, + "probability": 0.99609375 + } + ] + }, + { + "id": 1909, + "text": "So I apologize if I didn't see your email.", + "start": 3864.24, + "end": 3866.82, + "words": [ + { + "word": " So", + "start": 3864.24, + "end": 3864.6, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 3864.6, + "end": 3864.96, + "probability": 0.7626953125 + }, + { + "word": " apologize", + "start": 3864.96, + "end": 3865.9, + "probability": 1.0 + }, + { + "word": " if", + "start": 3865.9, + "end": 3866.18, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3866.18, + "end": 3866.24, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 3866.24, + "end": 3866.42, + "probability": 1.0 + }, + { + "word": " see", + "start": 3866.42, + "end": 3866.54, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 3866.54, + "end": 3866.6, + "probability": 0.99951171875 + }, + { + "word": " email.", + "start": 3866.6, + "end": 3866.82, + "probability": 0.83837890625 + } + ] + }, + { + "id": 1910, + "text": "Okay.", + "start": 3867.66, + "end": 3868.06, + "words": [ + { + "word": " Okay.", + "start": 3867.66, + "end": 3868.06, + "probability": 0.76220703125 + } + ] + }, + { + "id": 1911, + "text": "Well, thank you for telling me now.", + "start": 3868.06, + "end": 3869.68, + "words": [ + { + "word": " Well,", + "start": 3868.06, + "end": 3868.28, + "probability": 0.99560546875 + }, + { + "word": " thank", + "start": 3868.3, + "end": 3868.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 3868.44, + "end": 3868.54, + "probability": 1.0 + }, + { + "word": " for", + "start": 3868.54, + "end": 3868.72, + "probability": 1.0 + }, + { + "word": " telling", + "start": 3868.72, + "end": 3869.4, + "probability": 0.892578125 + }, + { + "word": " me", + "start": 3869.4, + "end": 3869.54, + "probability": 0.9990234375 + }, + { + "word": " now.", + "start": 3869.54, + "end": 3869.68, + "probability": 0.501953125 + } + ] + }, + { + "id": 1912, + "text": "No problem.", + "start": 3869.82, + "end": 3870.46, + "words": [ + { + "word": " No", + "start": 3869.82, + "end": 3870.14, + "probability": 0.99951171875 + }, + { + "word": " problem.", + "start": 3870.14, + "end": 3870.46, + "probability": 0.97265625 + } + ] + }, + { + "id": 1913, + "text": "Let's move on to Claudia.", + "start": 3870.76, + "end": 3871.9, + "words": [ + { + "word": " Let's", + "start": 3870.76, + "end": 3871.16, + "probability": 0.98828125 + }, + { + "word": " move", + "start": 3871.16, + "end": 3871.3, + "probability": 1.0 + }, + { + "word": " on", + "start": 3871.3, + "end": 3871.52, + "probability": 1.0 + }, + { + "word": " to", + "start": 3871.52, + "end": 3871.66, + "probability": 1.0 + }, + { + "word": " Claudia.", + "start": 3871.66, + "end": 3871.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1914, + "text": "Hello, Claudia.", + "start": 3872.04, + "end": 3872.42, + "words": [ + { + "word": " Hello,", + "start": 3872.04, + "end": 3872.22, + "probability": 0.9990234375 + }, + { + "word": " Claudia.", + "start": 3872.26, + "end": 3872.42, + "probability": 1.0 + } + ] + }, + { + "id": 1915, + "text": "How are you?", + "start": 3872.52, + "end": 3872.88, + "words": [ + { + "word": " How", + "start": 3872.52, + "end": 3872.64, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 3872.64, + "end": 3872.76, + "probability": 1.0 + }, + { + "word": " you?", + "start": 3872.76, + "end": 3872.88, + "probability": 1.0 + } + ] + }, + { + "id": 1916, + "text": "I'm good, Mike.", + "start": 3873.48, + "end": 3874.32, + "words": [ + { + "word": " I'm", + "start": 3873.48, + "end": 3873.88, + "probability": 1.0 + }, + { + "word": " good,", + "start": 3873.88, + "end": 3874.14, + "probability": 1.0 + }, + { + "word": " Mike.", + "start": 3874.14, + "end": 3874.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1917, + "text": "How are you doing?", + "start": 3874.42, + "end": 3874.98, + "words": [ + { + "word": " How", + "start": 3874.42, + "end": 3874.58, + "probability": 1.0 + }, + { + "word": " are", + "start": 3874.58, + "end": 3874.66, + "probability": 1.0 + }, + { + "word": " you", + "start": 3874.66, + "end": 3874.8, + "probability": 1.0 + }, + { + "word": " doing?", + "start": 3874.8, + "end": 3874.98, + "probability": 1.0 + } + ] + }, + { + "id": 1918, + "text": "I'm doing great.", + "start": 3875.1, + "end": 3875.94, + "words": [ + { + "word": " I'm", + "start": 3875.1, + "end": 3875.42, + "probability": 0.94189453125 + }, + { + "word": " doing", + "start": 3875.42, + "end": 3875.6, + "probability": 1.0 + }, + { + "word": " great.", + "start": 3875.6, + "end": 3875.94, + "probability": 1.0 + } + ] + }, + { + "id": 1919, + "text": "Great.", + "start": 3876.38, + "end": 3876.78, + "words": [ + { + "word": " Great.", + "start": 3876.38, + "end": 3876.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1920, + "text": "I had a question.", + "start": 3877.16, + "end": 3878.12, + "words": [ + { + "word": " I", + "start": 3877.16, + "end": 3877.56, + "probability": 0.99853515625 + }, + { + "word": " had", + "start": 3877.56, + "end": 3877.78, + "probability": 0.98291015625 + }, + { + "word": " a", + "start": 3877.78, + "end": 3877.86, + "probability": 1.0 + }, + { + "word": " question.", + "start": 3877.86, + "end": 3878.12, + "probability": 1.0 + } + ] + }, + { + "id": 1921, + "text": "I know you were covering security for us and our machines", + "start": 3878.24, + "end": 3880.76, + "words": [ + { + "word": " I", + "start": 3878.24, + "end": 3878.36, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 3878.36, + "end": 3878.48, + "probability": 1.0 + }, + { + "word": " you", + "start": 3878.48, + "end": 3878.6, + "probability": 1.0 + }, + { + "word": " were", + "start": 3878.6, + "end": 3878.68, + "probability": 0.87744140625 + }, + { + "word": " covering", + "start": 3878.68, + "end": 3878.98, + "probability": 1.0 + }, + { + "word": " security", + "start": 3878.98, + "end": 3879.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 3879.42, + "end": 3879.96, + "probability": 1.0 + }, + { + "word": " us", + "start": 3879.96, + "end": 3880.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 3880.18, + "end": 3880.34, + "probability": 0.99365234375 + }, + { + "word": " our", + "start": 3880.34, + "end": 3880.42, + "probability": 0.99951171875 + }, + { + "word": " machines", + "start": 3880.42, + "end": 3880.76, + "probability": 1.0 + } + ] + }, + { + "id": 1922, + "text": "in the previous hour,", + "start": 3880.76, + "end": 3881.7, + "words": [ + { + "word": " in", + "start": 3880.76, + "end": 3881.0, + "probability": 0.970703125 + }, + { + "word": " the", + "start": 3881.0, + "end": 3881.06, + "probability": 1.0 + }, + { + "word": " previous", + "start": 3881.06, + "end": 3881.36, + "probability": 1.0 + }, + { + "word": " hour,", + "start": 3881.36, + "end": 3881.7, + "probability": 0.99267578125 + } + ] + }, + { + "id": 1923, + "text": "but I didn't hear anything about clickbait.", + "start": 3881.78, + "end": 3884.24, + "words": [ + { + "word": " but", + "start": 3881.78, + "end": 3882.28, + "probability": 1.0 + }, + { + "word": " I", + "start": 3882.28, + "end": 3882.42, + "probability": 1.0 + }, + { + "word": " didn't", + "start": 3882.42, + "end": 3882.64, + "probability": 1.0 + }, + { + "word": " hear", + "start": 3882.64, + "end": 3882.8, + "probability": 1.0 + }, + { + "word": " anything", + "start": 3882.8, + "end": 3883.06, + "probability": 1.0 + }, + { + "word": " about", + "start": 3883.06, + "end": 3883.5, + "probability": 1.0 + }, + { + "word": " clickbait.", + "start": 3883.5, + "end": 3884.24, + "probability": 0.88134765625 + } + ] + }, + { + "id": 1924, + "text": "Could you tell us a little bit about what we should", + "start": 3884.52, + "end": 3886.84, + "words": [ + { + "word": " Could", + "start": 3884.52, + "end": 3884.92, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 3884.92, + "end": 3885.12, + "probability": 1.0 + }, + { + "word": " tell", + "start": 3885.12, + "end": 3885.34, + "probability": 1.0 + }, + { + "word": " us", + "start": 3885.34, + "end": 3885.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 3885.52, + "end": 3885.64, + "probability": 1.0 + }, + { + "word": " little", + "start": 3885.64, + "end": 3885.76, + "probability": 1.0 + }, + { + "word": " bit", + "start": 3885.76, + "end": 3885.96, + "probability": 1.0 + }, + { + "word": " about", + "start": 3885.96, + "end": 3886.2, + "probability": 1.0 + }, + { + "word": " what", + "start": 3886.2, + "end": 3886.44, + "probability": 1.0 + }, + { + "word": " we", + "start": 3886.44, + "end": 3886.62, + "probability": 1.0 + }, + { + "word": " should", + "start": 3886.62, + "end": 3886.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1925, + "text": "and shouldn't click on when we're on, say, for instance,", + "start": 3886.84, + "end": 3889.82, + "words": [ + { + "word": " and", + "start": 3886.84, + "end": 3887.0, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 3887.0, + "end": 3887.4, + "probability": 1.0 + }, + { + "word": " click", + "start": 3887.4, + "end": 3887.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 3887.64, + "end": 3887.92, + "probability": 1.0 + }, + { + "word": " when", + "start": 3887.92, + "end": 3888.66, + "probability": 0.9990234375 + }, + { + "word": " we're", + "start": 3888.66, + "end": 3888.86, + "probability": 1.0 + }, + { + "word": " on,", + "start": 3888.86, + "end": 3888.92, + "probability": 0.98583984375 + }, + { + "word": " say,", + "start": 3889.06, + "end": 3889.34, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 3889.44, + "end": 3889.6, + "probability": 1.0 + }, + { + "word": " instance,", + "start": 3889.6, + "end": 3889.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1926, + "text": "reading news online and we scroll down and, oh,", + "start": 3889.92, + "end": 3892.98, + "words": [ + { + "word": " reading", + "start": 3889.92, + "end": 3890.2, + "probability": 0.9990234375 + }, + { + "word": " news", + "start": 3890.2, + "end": 3890.52, + "probability": 1.0 + }, + { + "word": " online", + "start": 3890.52, + "end": 3890.94, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 3890.94, + "end": 3891.26, + "probability": 0.81494140625 + }, + { + "word": " we", + "start": 3891.26, + "end": 3891.36, + "probability": 1.0 + }, + { + "word": " scroll", + "start": 3891.36, + "end": 3891.58, + "probability": 1.0 + }, + { + "word": " down", + "start": 3891.58, + "end": 3891.84, + "probability": 1.0 + }, + { + "word": " and,", + "start": 3891.84, + "end": 3892.28, + "probability": 0.91650390625 + }, + { + "word": " oh,", + "start": 3892.3, + "end": 3892.98, + "probability": 0.982421875 + } + ] + }, + { + "id": 1927, + "text": "drivers in Tucson, Arizona need to know about this", + "start": 3893.12, + "end": 3895.78, + "words": [ + { + "word": " drivers", + "start": 3893.12, + "end": 3893.5, + "probability": 0.9873046875 + }, + { + "word": " in", + "start": 3893.5, + "end": 3893.68, + "probability": 1.0 + }, + { + "word": " Tucson,", + "start": 3893.68, + "end": 3893.9, + "probability": 0.99951171875 + }, + { + "word": " Arizona", + "start": 3894.1, + "end": 3894.3, + "probability": 1.0 + }, + { + "word": " need", + "start": 3894.3, + "end": 3894.7, + "probability": 0.9033203125 + }, + { + "word": " to", + "start": 3894.7, + "end": 3894.88, + "probability": 1.0 + }, + { + "word": " know", + "start": 3894.88, + "end": 3895.06, + "probability": 1.0 + }, + { + "word": " about", + "start": 3895.06, + "end": 3895.46, + "probability": 1.0 + }, + { + "word": " this", + "start": 3895.46, + "end": 3895.78, + "probability": 1.0 + } + ] + }, + { + "id": 1928, + "text": "or whatever it may be.", + "start": 3895.78, + "end": 3897.2, + "words": [ + { + "word": " or", + "start": 3895.78, + "end": 3896.12, + "probability": 0.96337890625 + }, + { + "word": " whatever", + "start": 3896.12, + "end": 3896.66, + "probability": 1.0 + }, + { + "word": " it", + "start": 3896.66, + "end": 3896.86, + "probability": 0.998046875 + }, + { + "word": " may", + "start": 3896.86, + "end": 3896.98, + "probability": 1.0 + }, + { + "word": " be.", + "start": 3896.98, + "end": 3897.2, + "probability": 1.0 + } + ] + }, + { + "id": 1929, + "text": "Well, if you have an appropriate ad blocker,", + "start": 3897.42, + "end": 3899.74, + "words": [ + { + "word": " Well,", + "start": 3897.42, + "end": 3897.8, + "probability": 0.98291015625 + }, + { + "word": " if", + "start": 3897.88, + "end": 3898.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 3898.0, + "end": 3898.1, + "probability": 1.0 + }, + { + "word": " have", + "start": 3898.1, + "end": 3898.22, + "probability": 1.0 + }, + { + "word": " an", + "start": 3898.22, + "end": 3898.76, + "probability": 0.99755859375 + }, + { + "word": " appropriate", + "start": 3898.76, + "end": 3899.08, + "probability": 0.99755859375 + }, + { + "word": " ad", + "start": 3899.08, + "end": 3899.34, + "probability": 0.9453125 + }, + { + "word": " blocker,", + "start": 3899.34, + "end": 3899.74, + "probability": 0.9912109375 + } + ] + }, + { + "id": 1930, + "text": "you won't even see those.", + "start": 3899.74, + "end": 3900.5, + "words": [ + { + "word": " you", + "start": 3899.74, + "end": 3899.8, + "probability": 1.0 + }, + { + "word": " won't", + "start": 3899.8, + "end": 3899.92, + "probability": 1.0 + }, + { + "word": " even", + "start": 3899.92, + "end": 3900.02, + "probability": 1.0 + }, + { + "word": " see", + "start": 3900.02, + "end": 3900.26, + "probability": 1.0 + }, + { + "word": " those.", + "start": 3900.26, + "end": 3900.5, + "probability": 1.0 + } + ] + }, + { + "id": 1931, + "text": "I do.", + "start": 3901.1, + "end": 3901.82, + "words": [ + { + "word": " I", + "start": 3901.1, + "end": 3901.48, + "probability": 0.99951171875 + }, + { + "word": " do.", + "start": 3901.48, + "end": 3901.82, + "probability": 1.0 + } + ] + }, + { + "id": 1932, + "text": "I've got, let's see, AdBlock Plus on there", + "start": 3901.98, + "end": 3905.1, + "words": [ + { + "word": " I've", + "start": 3901.98, + "end": 3902.38, + "probability": 1.0 + }, + { + "word": " got,", + "start": 3902.38, + "end": 3902.7, + "probability": 1.0 + }, + { + "word": " let's", + "start": 3902.72, + "end": 3903.56, + "probability": 1.0 + }, + { + "word": " see,", + "start": 3903.56, + "end": 3903.66, + "probability": 1.0 + }, + { + "word": " AdBlock", + "start": 3903.76, + "end": 3904.24, + "probability": 0.79931640625 + }, + { + "word": " Plus", + "start": 3904.24, + "end": 3904.46, + "probability": 0.97412109375 + }, + { + "word": " on", + "start": 3904.46, + "end": 3904.82, + "probability": 1.0 + }, + { + "word": " there", + "start": 3904.82, + "end": 3905.1, + "probability": 1.0 + } + ] + }, + { + "id": 1933, + "text": "from the Mozilla website.", + "start": 3905.1, + "end": 3906.42, + "words": [ + { + "word": " from", + "start": 3905.1, + "end": 3905.42, + "probability": 1.0 + }, + { + "word": " the", + "start": 3905.42, + "end": 3905.72, + "probability": 1.0 + }, + { + "word": " Mozilla", + "start": 3905.72, + "end": 3906.1, + "probability": 1.0 + }, + { + "word": " website.", + "start": 3906.1, + "end": 3906.42, + "probability": 1.0 + } + ] + }, + { + "id": 1934, + "text": "All right.", + "start": 3906.86, + "end": 3907.06, + "words": [ + { + "word": " All", + "start": 3906.86, + "end": 3906.96, + "probability": 0.560546875 + }, + { + "word": " right.", + "start": 3906.96, + "end": 3907.06, + "probability": 1.0 + } + ] + }, + { + "id": 1935, + "text": "Well, get rid of that one.", + "start": 3907.14, + "end": 3907.98, + "words": [ + { + "word": " Well,", + "start": 3907.14, + "end": 3907.36, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 3907.38, + "end": 3907.5, + "probability": 1.0 + }, + { + "word": " rid", + "start": 3907.5, + "end": 3907.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 3907.68, + "end": 3907.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 3907.72, + "end": 3907.8, + "probability": 1.0 + }, + { + "word": " one.", + "start": 3907.8, + "end": 3907.98, + "probability": 1.0 + } + ] + }, + { + "id": 1936, + "text": "Put Ublock Origin on, and that'll help.", + "start": 3908.02, + "end": 3910.22, + "words": [ + { + "word": " Put", + "start": 3908.02, + "end": 3908.14, + "probability": 0.99658203125 + }, + { + "word": " Ublock", + "start": 3908.14, + "end": 3908.52, + "probability": 0.40380859375 + }, + { + "word": " Origin", + "start": 3908.52, + "end": 3908.8, + "probability": 0.99169921875 + }, + { + "word": " on,", + "start": 3908.8, + "end": 3909.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 3909.28, + "end": 3909.94, + "probability": 1.0 + }, + { + "word": " that'll", + "start": 3909.94, + "end": 3910.1, + "probability": 0.81494140625 + }, + { + "word": " help.", + "start": 3910.1, + "end": 3910.22, + "probability": 1.0 + } + ] + }, + { + "id": 1937, + "text": "Oh, okay.", + "start": 3910.24, + "end": 3911.14, + "words": [ + { + "word": " Oh,", + "start": 3910.24, + "end": 3910.48, + "probability": 0.869140625 + }, + { + "word": " okay.", + "start": 3910.5, + "end": 3911.14, + "probability": 0.982421875 + } + ] + }, + { + "id": 1938, + "text": "AdBlock Plus is fine, but they have a rather extensive", + "start": 3911.62, + "end": 3914.92, + "words": [ + { + "word": " AdBlock", + "start": 3911.62, + "end": 3912.02, + "probability": 0.9990234375 + }, + { + "word": " Plus", + "start": 3912.02, + "end": 3912.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 3912.2, + "end": 3912.42, + "probability": 1.0 + }, + { + "word": " fine,", + "start": 3912.42, + "end": 3912.66, + "probability": 1.0 + }, + { + "word": " but", + "start": 3912.8, + "end": 3913.0, + "probability": 1.0 + }, + { + "word": " they", + "start": 3913.0, + "end": 3913.2, + "probability": 1.0 + }, + { + "word": " have", + "start": 3913.2, + "end": 3913.66, + "probability": 1.0 + }, + { + "word": " a", + "start": 3913.66, + "end": 3913.92, + "probability": 1.0 + }, + { + "word": " rather", + "start": 3913.92, + "end": 3914.48, + "probability": 1.0 + }, + { + "word": " extensive", + "start": 3914.48, + "end": 3914.92, + "probability": 1.0 + } + ] + }, + { + "id": 1939, + "text": "whitelist where they allow plenty of ads through.", + "start": 3914.92, + "end": 3917.12, + "words": [ + { + "word": " whitelist", + "start": 3914.92, + "end": 3915.52, + "probability": 0.96044921875 + }, + { + "word": " where", + "start": 3915.52, + "end": 3915.66, + "probability": 0.994140625 + }, + { + "word": " they", + "start": 3915.66, + "end": 3915.8, + "probability": 1.0 + }, + { + "word": " allow", + "start": 3915.8, + "end": 3915.98, + "probability": 1.0 + }, + { + "word": " plenty", + "start": 3915.98, + "end": 3916.42, + "probability": 1.0 + }, + { + "word": " of", + "start": 3916.42, + "end": 3916.64, + "probability": 1.0 + }, + { + "word": " ads", + "start": 3916.64, + "end": 3916.88, + "probability": 0.99853515625 + }, + { + "word": " through.", + "start": 3916.88, + "end": 3917.12, + "probability": 0.99755859375 + } + ] + }, + { + "id": 1940, + "text": "And basically, if you have a decent ad blocker", + "start": 3918.7, + "end": 3921.7, + "words": [ + { + "word": " And", + "start": 3918.7, + "end": 3919.1, + "probability": 0.5634765625 + }, + { + "word": " basically,", + "start": 3919.1, + "end": 3919.5, + "probability": 0.970703125 + }, + { + "word": " if", + "start": 3919.94, + "end": 3920.12, + "probability": 1.0 + }, + { + "word": " you", + "start": 3920.12, + "end": 3920.2, + "probability": 1.0 + }, + { + "word": " have", + "start": 3920.2, + "end": 3920.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 3920.36, + "end": 3920.46, + "probability": 1.0 + }, + { + "word": " decent", + "start": 3920.46, + "end": 3920.88, + "probability": 1.0 + }, + { + "word": " ad", + "start": 3920.88, + "end": 3921.22, + "probability": 0.99951171875 + }, + { + "word": " blocker", + "start": 3921.22, + "end": 3921.7, + "probability": 1.0 + } + ] + }, + { + "id": 1941, + "text": "on your machine, right, and AdBlock Plus isn't that bad.", + "start": 3921.7, + "end": 3924.14, + "words": [ + { + "word": " on", + "start": 3921.7, + "end": 3921.86, + "probability": 1.0 + }, + { + "word": " your", + "start": 3921.86, + "end": 3922.02, + "probability": 1.0 + }, + { + "word": " machine,", + "start": 3922.02, + "end": 3922.32, + "probability": 1.0 + }, + { + "word": " right,", + "start": 3922.52, + "end": 3922.94, + "probability": 0.2330322265625 + }, + { + "word": " and", + "start": 3923.0, + "end": 3923.08, + "probability": 0.994140625 + }, + { + "word": " AdBlock", + "start": 3923.08, + "end": 3923.38, + "probability": 1.0 + }, + { + "word": " Plus", + "start": 3923.38, + "end": 3923.54, + "probability": 1.0 + }, + { + "word": " isn't", + "start": 3923.54, + "end": 3923.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 3923.82, + "end": 3923.94, + "probability": 1.0 + }, + { + "word": " bad.", + "start": 3923.94, + "end": 3924.14, + "probability": 1.0 + } + ] + }, + { + "id": 1942, + "text": "I still think that people should be using Ublock Origin,", + "start": 3924.24, + "end": 3926.16, + "words": [ + { + "word": " I", + "start": 3924.24, + "end": 3924.36, + "probability": 0.99560546875 + }, + { + "word": " still", + "start": 3924.36, + "end": 3924.52, + "probability": 1.0 + }, + { + "word": " think", + "start": 3924.52, + "end": 3924.76, + "probability": 1.0 + }, + { + "word": " that", + "start": 3924.76, + "end": 3924.86, + "probability": 1.0 + }, + { + "word": " people", + "start": 3924.86, + "end": 3925.02, + "probability": 1.0 + }, + { + "word": " should", + "start": 3925.02, + "end": 3925.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 3925.16, + "end": 3925.28, + "probability": 1.0 + }, + { + "word": " using", + "start": 3925.28, + "end": 3925.46, + "probability": 1.0 + }, + { + "word": " Ublock", + "start": 3925.46, + "end": 3925.8, + "probability": 0.99609375 + }, + { + "word": " Origin,", + "start": 3925.8, + "end": 3926.16, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1943, + "text": "which is a good thing.", + "start": 3926.58, + "end": 3927.2, + "words": [ + { + "word": " which", + "start": 3926.58, + "end": 3926.98, + "probability": 0.9560546875 + }, + { + "word": " is", + "start": 3926.98, + "end": 3927.16, + "probability": 0.36083984375 + }, + { + "word": " a", + "start": 3927.16, + "end": 3927.16, + "probability": 0.040191650390625 + }, + { + "word": " good", + "start": 3927.16, + "end": 3927.2, + "probability": 0.37451171875 + }, + { + "word": " thing.", + "start": 3927.2, + "end": 3927.2, + "probability": 0.50634765625 + } + ] + }, + { + "id": 1944, + "text": "Right.", + "start": 3927.2, + "end": 3927.24, + "words": [ + { + "word": " Right.", + "start": 3927.2, + "end": 3927.24, + "probability": 0.95947265625 + } + ] + }, + { + "id": 1945, + "text": "Yeah.", + "start": 3927.24, + "end": 3927.4, + "words": [ + { + "word": " Yeah.", + "start": 3927.24, + "end": 3927.4, + "probability": 0.15478515625 + } + ] + }, + { + "id": 1946, + "text": "In my opinion, it's a better ad block.", + "start": 3927.42, + "end": 3928.76, + "words": [ + { + "word": " In", + "start": 3927.42, + "end": 3927.46, + "probability": 0.10174560546875 + }, + { + "word": " my", + "start": 3927.46, + "end": 3927.58, + "probability": 1.0 + }, + { + "word": " opinion,", + "start": 3927.58, + "end": 3927.84, + "probability": 1.0 + }, + { + "word": " it's", + "start": 3927.86, + "end": 3928.02, + "probability": 0.9892578125 + }, + { + "word": " a", + "start": 3928.02, + "end": 3928.04, + "probability": 1.0 + }, + { + "word": " better", + "start": 3928.04, + "end": 3928.36, + "probability": 1.0 + }, + { + "word": " ad", + "start": 3928.36, + "end": 3928.54, + "probability": 0.94384765625 + }, + { + "word": " block.", + "start": 3928.54, + "end": 3928.76, + "probability": 0.90966796875 + } + ] + }, + { + "id": 1947, + "text": "Okay.", + "start": 3929.44, + "end": 3929.88, + "words": [ + { + "word": " Okay.", + "start": 3929.44, + "end": 3929.88, + "probability": 0.399658203125 + } + ] + }, + { + "id": 1948, + "text": "You're not going to see much, if at all,", + "start": 3929.96, + "end": 3932.58, + "words": [ + { + "word": " You're", + "start": 3929.96, + "end": 3930.22, + "probability": 0.99609375 + }, + { + "word": " not", + "start": 3930.22, + "end": 3930.36, + "probability": 1.0 + }, + { + "word": " going", + "start": 3930.36, + "end": 3930.46, + "probability": 0.99560546875 + }, + { + "word": " to", + "start": 3930.46, + "end": 3930.58, + "probability": 1.0 + }, + { + "word": " see", + "start": 3930.58, + "end": 3930.78, + "probability": 1.0 + }, + { + "word": " much,", + "start": 3930.78, + "end": 3931.7, + "probability": 1.0 + }, + { + "word": " if", + "start": 3931.88, + "end": 3932.2, + "probability": 1.0 + }, + { + "word": " at", + "start": 3932.2, + "end": 3932.3, + "probability": 1.0 + }, + { + "word": " all,", + "start": 3932.3, + "end": 3932.58, + "probability": 1.0 + } + ] + }, + { + "id": 1949, + "text": "anything that's going to hurt you in that particular instance.", + "start": 3932.62, + "end": 3936.12, + "words": [ + { + "word": " anything", + "start": 3932.62, + "end": 3932.94, + "probability": 0.99951171875 + }, + { + "word": " that's", + "start": 3932.94, + "end": 3933.34, + "probability": 1.0 + }, + { + "word": " going", + "start": 3933.34, + "end": 3933.54, + "probability": 1.0 + }, + { + "word": " to", + "start": 3933.54, + "end": 3933.74, + "probability": 1.0 + }, + { + "word": " hurt", + "start": 3933.74, + "end": 3933.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 3933.96, + "end": 3934.22, + "probability": 1.0 + }, + { + "word": " in", + "start": 3934.22, + "end": 3934.92, + "probability": 0.9951171875 + }, + { + "word": " that", + "start": 3934.92, + "end": 3935.06, + "probability": 1.0 + }, + { + "word": " particular", + "start": 3935.06, + "end": 3935.38, + "probability": 1.0 + }, + { + "word": " instance.", + "start": 3935.38, + "end": 3936.12, + "probability": 1.0 + } + ] + }, + { + "id": 1950, + "text": "All right.", + "start": 3936.86, + "end": 3937.42, + "words": [ + { + "word": " All", + "start": 3936.86, + "end": 3937.22, + "probability": 0.99365234375 + }, + { + "word": " right.", + "start": 3937.22, + "end": 3937.42, + "probability": 1.0 + } + ] + }, + { + "id": 1951, + "text": "I'll change my ad blocker.", + "start": 3937.58, + "end": 3939.18, + "words": [ + { + "word": " I'll", + "start": 3937.58, + "end": 3937.9, + "probability": 0.9599609375 + }, + { + "word": " change", + "start": 3937.9, + "end": 3938.18, + "probability": 1.0 + }, + { + "word": " my", + "start": 3938.18, + "end": 3938.42, + "probability": 1.0 + }, + { + "word": " ad", + "start": 3938.42, + "end": 3938.64, + "probability": 0.9990234375 + }, + { + "word": " blocker.", + "start": 3938.64, + "end": 3939.18, + "probability": 0.9931640625 + } + ] + }, + { + "id": 1952, + "text": "Now, as far as the other things that you shouldn't click on,", + "start": 3939.36, + "end": 3942.42, + "words": [ + { + "word": " Now,", + "start": 3939.36, + "end": 3939.76, + "probability": 0.9892578125 + }, + { + "word": " as", + "start": 3939.84, + "end": 3940.18, + "probability": 1.0 + }, + { + "word": " far", + "start": 3940.18, + "end": 3940.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 3940.5, + "end": 3940.78, + "probability": 1.0 + }, + { + "word": " the", + "start": 3940.78, + "end": 3940.94, + "probability": 1.0 + }, + { + "word": " other", + "start": 3940.94, + "end": 3941.2, + "probability": 1.0 + }, + { + "word": " things", + "start": 3941.2, + "end": 3941.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 3941.44, + "end": 3941.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 3941.56, + "end": 3941.66, + "probability": 1.0 + }, + { + "word": " shouldn't", + "start": 3941.66, + "end": 3941.98, + "probability": 1.0 + }, + { + "word": " click", + "start": 3941.98, + "end": 3942.18, + "probability": 1.0 + }, + { + "word": " on,", + "start": 3942.18, + "end": 3942.42, + "probability": 1.0 + } + ] + }, + { + "id": 1953, + "text": "well, basically, you know, if it's blinking", + "start": 3943.2599999999998, + "end": 3945.36, + "words": [ + { + "word": " well,", + "start": 3943.2599999999998, + "end": 3943.7, + "probability": 0.99072265625 + }, + { + "word": " basically,", + "start": 3943.7, + "end": 3944.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 3944.28, + "end": 3944.42, + "probability": 0.68896484375 + }, + { + "word": " know,", + "start": 3944.42, + "end": 3944.58, + "probability": 1.0 + }, + { + "word": " if", + "start": 3944.62, + "end": 3944.84, + "probability": 0.99951171875 + }, + { + "word": " it's", + "start": 3944.84, + "end": 3945.08, + "probability": 1.0 + }, + { + "word": " blinking", + "start": 3945.08, + "end": 3945.36, + "probability": 0.99609375 + } + ] + }, + { + "id": 1954, + "text": "or it's one small trick to make you learn something", + "start": 3945.36, + "end": 3948.96, + "words": [ + { + "word": " or", + "start": 3945.36, + "end": 3945.76, + "probability": 0.9814453125 + }, + { + "word": " it's", + "start": 3945.76, + "end": 3946.0, + "probability": 1.0 + }, + { + "word": " one", + "start": 3946.0, + "end": 3946.22, + "probability": 1.0 + }, + { + "word": " small", + "start": 3946.22, + "end": 3946.88, + "probability": 1.0 + }, + { + "word": " trick", + "start": 3946.88, + "end": 3947.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 3947.46, + "end": 3947.74, + "probability": 1.0 + }, + { + "word": " make", + "start": 3947.74, + "end": 3947.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 3947.92, + "end": 3948.16, + "probability": 1.0 + }, + { + "word": " learn", + "start": 3948.16, + "end": 3948.5, + "probability": 1.0 + }, + { + "word": " something", + "start": 3948.5, + "end": 3948.96, + "probability": 1.0 + } + ] + }, + { + "id": 1955, + "text": "that is obvious, painfully obvious,", + "start": 3948.96, + "end": 3951.3, + "words": [ + { + "word": " that", + "start": 3948.96, + "end": 3949.24, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 3949.24, + "end": 3949.84, + "probability": 1.0 + }, + { + "word": " obvious,", + "start": 3949.84, + "end": 3950.28, + "probability": 0.97021484375 + }, + { + "word": " painfully", + "start": 3950.5, + "end": 3951.0, + "probability": 1.0 + }, + { + "word": " obvious,", + "start": 3951.0, + "end": 3951.3, + "probability": 1.0 + } + ] + }, + { + "id": 1956, + "text": "you don't need to click on any of that stuff.", + "start": 3951.9, + "end": 3953.82, + "words": [ + { + "word": " you", + "start": 3951.9, + "end": 3952.34, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3952.34, + "end": 3952.78, + "probability": 1.0 + }, + { + "word": " need", + "start": 3952.78, + "end": 3952.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 3952.84, + "end": 3952.94, + "probability": 1.0 + }, + { + "word": " click", + "start": 3952.94, + "end": 3953.08, + "probability": 1.0 + }, + { + "word": " on", + "start": 3953.08, + "end": 3953.2, + "probability": 1.0 + }, + { + "word": " any", + "start": 3953.2, + "end": 3953.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 3953.36, + "end": 3953.44, + "probability": 1.0 + }, + { + "word": " that", + "start": 3953.44, + "end": 3953.56, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 3953.56, + "end": 3953.82, + "probability": 1.0 + } + ] + }, + { + "id": 1957, + "text": "Like I said, when I was talking to Jay,", + "start": 3954.48, + "end": 3957.14, + "words": [ + { + "word": " Like", + "start": 3954.48, + "end": 3954.92, + "probability": 0.74267578125 + }, + { + "word": " I", + "start": 3954.92, + "end": 3955.36, + "probability": 1.0 + }, + { + "word": " said,", + "start": 3955.36, + "end": 3955.58, + "probability": 1.0 + }, + { + "word": " when", + "start": 3955.66, + "end": 3955.94, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 3955.94, + "end": 3956.58, + "probability": 1.0 + }, + { + "word": " was", + "start": 3956.58, + "end": 3956.62, + "probability": 1.0 + }, + { + "word": " talking", + "start": 3956.62, + "end": 3956.82, + "probability": 1.0 + }, + { + "word": " to", + "start": 3956.82, + "end": 3956.96, + "probability": 1.0 + }, + { + "word": " Jay,", + "start": 3956.96, + "end": 3957.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1958, + "text": "I was just like, I don't even see that stuff anymore.", + "start": 3957.14, + "end": 3959.78, + "words": [ + { + "word": " I", + "start": 3957.14, + "end": 3957.32, + "probability": 0.0129547119140625 + }, + { + "word": " was", + "start": 3957.32, + "end": 3958.32, + "probability": 0.69921875 + }, + { + "word": " just", + "start": 3958.32, + "end": 3958.44, + "probability": 0.96630859375 + }, + { + "word": " like,", + "start": 3958.44, + "end": 3958.58, + "probability": 0.9921875 + }, + { + "word": " I", + "start": 3958.64, + "end": 3958.72, + "probability": 0.9912109375 + }, + { + "word": " don't", + "start": 3958.72, + "end": 3958.8, + "probability": 1.0 + }, + { + "word": " even", + "start": 3958.8, + "end": 3958.9, + "probability": 1.0 + }, + { + "word": " see", + "start": 3958.9, + "end": 3959.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 3959.12, + "end": 3959.3, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 3959.3, + "end": 3959.52, + "probability": 1.0 + }, + { + "word": " anymore.", + "start": 3959.52, + "end": 3959.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1959, + "text": "Even if it's on the screen, I've been looking at this stuff", + "start": 3959.9, + "end": 3963.12, + "words": [ + { + "word": " Even", + "start": 3959.9, + "end": 3960.08, + "probability": 0.99462890625 + }, + { + "word": " if", + "start": 3960.08, + "end": 3960.26, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 3960.26, + "end": 3960.56, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3960.56, + "end": 3960.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 3960.74, + "end": 3960.9, + "probability": 1.0 + }, + { + "word": " screen,", + "start": 3960.9, + "end": 3961.24, + "probability": 1.0 + }, + { + "word": " I've", + "start": 3961.48, + "end": 3962.22, + "probability": 1.0 + }, + { + "word": " been", + "start": 3962.22, + "end": 3962.32, + "probability": 1.0 + }, + { + "word": " looking", + "start": 3962.32, + "end": 3962.5, + "probability": 1.0 + }, + { + "word": " at", + "start": 3962.5, + "end": 3962.7, + "probability": 1.0 + }, + { + "word": " this", + "start": 3962.7, + "end": 3962.86, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 3962.86, + "end": 3963.12, + "probability": 1.0 + } + ] + }, + { + "id": 1960, + "text": "for so long that the stuff that's fake is so blatantly obvious", + "start": 3963.12, + "end": 3966.42, + "words": [ + { + "word": " for", + "start": 3963.12, + "end": 3963.28, + "probability": 1.0 + }, + { + "word": " so", + "start": 3963.28, + "end": 3963.52, + "probability": 1.0 + }, + { + "word": " long", + "start": 3963.52, + "end": 3963.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 3963.88, + "end": 3964.08, + "probability": 0.99267578125 + }, + { + "word": " the", + "start": 3964.08, + "end": 3964.18, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 3964.18, + "end": 3964.4, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3964.4, + "end": 3964.64, + "probability": 1.0 + }, + { + "word": " fake", + "start": 3964.64, + "end": 3964.92, + "probability": 1.0 + }, + { + "word": " is", + "start": 3964.92, + "end": 3965.12, + "probability": 1.0 + }, + { + "word": " so", + "start": 3965.12, + "end": 3965.38, + "probability": 1.0 + }, + { + "word": " blatantly", + "start": 3965.38, + "end": 3966.04, + "probability": 1.0 + }, + { + "word": " obvious", + "start": 3966.04, + "end": 3966.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1961, + "text": "that I feel like I'm almost underqualified to tell people", + "start": 3967.2, + "end": 3971.78, + "words": [ + { + "word": " that", + "start": 3967.2, + "end": 3967.64, + "probability": 0.97021484375 + }, + { + "word": " I", + "start": 3967.64, + "end": 3968.08, + "probability": 0.93505859375 + }, + { + "word": " feel", + "start": 3968.08, + "end": 3968.88, + "probability": 1.0 + }, + { + "word": " like", + "start": 3968.88, + "end": 3969.1, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 3969.1, + "end": 3969.42, + "probability": 1.0 + }, + { + "word": " almost", + "start": 3969.42, + "end": 3970.08, + "probability": 0.99951171875 + }, + { + "word": " underqualified", + "start": 3970.08, + "end": 3970.82, + "probability": 0.978515625 + }, + { + "word": " to", + "start": 3970.82, + "end": 3971.18, + "probability": 0.99951171875 + }, + { + "word": " tell", + "start": 3971.18, + "end": 3971.4, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 3971.4, + "end": 3971.78, + "probability": 1.0 + } + ] + }, + { + "id": 1962, + "text": "to stop clicking on stuff, right?", + "start": 3971.78, + "end": 3974.12, + "words": [ + { + "word": " to", + "start": 3971.78, + "end": 3972.08, + "probability": 0.99951171875 + }, + { + "word": " stop", + "start": 3972.08, + "end": 3972.46, + "probability": 1.0 + }, + { + "word": " clicking", + "start": 3972.46, + "end": 3973.28, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 3973.28, + "end": 3973.5, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 3973.5, + "end": 3973.74, + "probability": 0.99951171875 + }, + { + "word": " right?", + "start": 3973.94, + "end": 3974.12, + "probability": 0.97412109375 + } + ] + }, + { + "id": 1963, + "text": "Because it's one of those things where, like,", + "start": 3974.16, + "end": 3976.78, + "words": [ + { + "word": " Because", + "start": 3974.16, + "end": 3974.56, + "probability": 0.99609375 + }, + { + "word": " it's", + "start": 3974.56, + "end": 3975.42, + "probability": 0.9990234375 + }, + { + "word": " one", + "start": 3975.42, + "end": 3975.56, + "probability": 1.0 + }, + { + "word": " of", + "start": 3975.56, + "end": 3975.6, + "probability": 1.0 + }, + { + "word": " those", + "start": 3975.6, + "end": 3975.68, + "probability": 0.95849609375 + }, + { + "word": " things", + "start": 3975.68, + "end": 3975.86, + "probability": 1.0 + }, + { + "word": " where,", + "start": 3975.86, + "end": 3976.04, + "probability": 1.0 + }, + { + "word": " like,", + "start": 3976.14, + "end": 3976.78, + "probability": 0.99072265625 + } + ] + }, + { + "id": 1964, + "text": "if you do anything long enough, you get so good", + "start": 3976.86, + "end": 3979.88, + "words": [ + { + "word": " if", + "start": 3976.86, + "end": 3977.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 3977.08, + "end": 3977.2, + "probability": 1.0 + }, + { + "word": " do", + "start": 3977.2, + "end": 3977.36, + "probability": 1.0 + }, + { + "word": " anything", + "start": 3977.36, + "end": 3977.66, + "probability": 1.0 + }, + { + "word": " long", + "start": 3977.66, + "end": 3978.1, + "probability": 0.99951171875 + }, + { + "word": " enough,", + "start": 3978.1, + "end": 3978.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 3978.52, + "end": 3978.8, + "probability": 1.0 + }, + { + "word": " get", + "start": 3978.8, + "end": 3979.08, + "probability": 1.0 + }, + { + "word": " so", + "start": 3979.08, + "end": 3979.48, + "probability": 1.0 + }, + { + "word": " good", + "start": 3979.48, + "end": 3979.88, + "probability": 1.0 + } + ] + }, + { + "id": 1965, + "text": "at spotting the stuff that's wrong that you just ignore it.", + "start": 3979.88, + "end": 3983.58, + "words": [ + { + "word": " at", + "start": 3979.88, + "end": 3980.08, + "probability": 1.0 + }, + { + "word": " spotting", + "start": 3980.08, + "end": 3980.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 3980.72, + "end": 3980.86, + "probability": 0.99951171875 + }, + { + "word": " stuff", + "start": 3980.86, + "end": 3981.1, + "probability": 1.0 + }, + { + "word": " that's", + "start": 3981.1, + "end": 3981.32, + "probability": 1.0 + }, + { + "word": " wrong", + "start": 3981.32, + "end": 3981.62, + "probability": 1.0 + }, + { + "word": " that", + "start": 3981.62, + "end": 3982.1, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 3982.1, + "end": 3982.34, + "probability": 1.0 + }, + { + "word": " just", + "start": 3982.34, + "end": 3982.6, + "probability": 1.0 + }, + { + "word": " ignore", + "start": 3982.6, + "end": 3983.26, + "probability": 0.99853515625 + }, + { + "word": " it.", + "start": 3983.26, + "end": 3983.58, + "probability": 1.0 + } + ] + }, + { + "id": 1966, + "text": "Right.", + "start": 3983.66, + "end": 3984.0, + "words": [ + { + "word": " Right.", + "start": 3983.66, + "end": 3984.0, + "probability": 0.9296875 + } + ] + }, + { + "id": 1967, + "text": "You just don't see it.", + "start": 3984.04, + "end": 3984.4, + "words": [ + { + "word": " You", + "start": 3984.04, + "end": 3984.1, + "probability": 0.09088134765625 + }, + { + "word": " just", + "start": 3984.1, + "end": 3984.24, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 3984.24, + "end": 3984.38, + "probability": 1.0 + }, + { + "word": " see", + "start": 3984.38, + "end": 3984.4, + "probability": 0.9931640625 + }, + { + "word": " it.", + "start": 3984.4, + "end": 3984.4, + "probability": 0.91455078125 + } + ] + }, + { + "id": 1968, + "text": "Well, I'm aware, and I never click on those.", + "start": 3984.4, + "end": 3986.98, + "words": [ + { + "word": " Well,", + "start": 3984.4, + "end": 3984.78, + "probability": 0.78173828125 + }, + { + "word": " I'm", + "start": 3984.86, + "end": 3985.02, + "probability": 1.0 + }, + { + "word": " aware,", + "start": 3985.02, + "end": 3985.26, + "probability": 0.9912109375 + }, + { + "word": " and", + "start": 3985.44, + "end": 3985.72, + "probability": 1.0 + }, + { + "word": " I", + "start": 3985.72, + "end": 3985.88, + "probability": 1.0 + }, + { + "word": " never", + "start": 3985.88, + "end": 3986.14, + "probability": 1.0 + }, + { + "word": " click", + "start": 3986.14, + "end": 3986.5, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 3986.5, + "end": 3986.72, + "probability": 1.0 + }, + { + "word": " those.", + "start": 3986.72, + "end": 3986.98, + "probability": 0.99609375 + } + ] + }, + { + "id": 1969, + "text": "But I know there's, for instance,", + "start": 3987.14, + "end": 3988.96, + "words": [ + { + "word": " But", + "start": 3987.14, + "end": 3987.26, + "probability": 0.55078125 + }, + { + "word": " I", + "start": 3987.26, + "end": 3987.36, + "probability": 0.9990234375 + }, + { + "word": " know", + "start": 3987.36, + "end": 3987.58, + "probability": 1.0 + }, + { + "word": " there's,", + "start": 3987.58, + "end": 3988.06, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 3988.06, + "end": 3988.66, + "probability": 0.99755859375 + }, + { + "word": " instance,", + "start": 3988.66, + "end": 3988.96, + "probability": 1.0 + } + ] + }, + { + "id": 1970, + "text": "older folks around that have no idea about that.", + "start": 3989.26, + "end": 3991.88, + "words": [ + { + "word": " older", + "start": 3989.26, + "end": 3989.6, + "probability": 0.9765625 + }, + { + "word": " folks", + "start": 3989.6, + "end": 3990.0, + "probability": 1.0 + }, + { + "word": " around", + "start": 3990.0, + "end": 3990.3, + "probability": 1.0 + }, + { + "word": " that", + "start": 3990.3, + "end": 3990.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 3990.56, + "end": 3990.72, + "probability": 1.0 + }, + { + "word": " no", + "start": 3990.72, + "end": 3990.94, + "probability": 1.0 + }, + { + "word": " idea", + "start": 3990.94, + "end": 3991.24, + "probability": 1.0 + }, + { + "word": " about", + "start": 3991.24, + "end": 3991.54, + "probability": 1.0 + }, + { + "word": " that.", + "start": 3991.54, + "end": 3991.88, + "probability": 1.0 + } + ] + }, + { + "id": 1971, + "text": "And I thought maybe we'd pass that tip along.", + "start": 3992.2, + "end": 3995.0, + "words": [ + { + "word": " And", + "start": 3992.2, + "end": 3992.64, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 3992.64, + "end": 3992.82, + "probability": 1.0 + }, + { + "word": " thought", + "start": 3992.82, + "end": 3993.24, + "probability": 1.0 + }, + { + "word": " maybe", + "start": 3993.24, + "end": 3993.88, + "probability": 0.9990234375 + }, + { + "word": " we'd", + "start": 3993.88, + "end": 3994.16, + "probability": 0.998046875 + }, + { + "word": " pass", + "start": 3994.16, + "end": 3994.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 3994.34, + "end": 3994.54, + "probability": 1.0 + }, + { + "word": " tip", + "start": 3994.54, + "end": 3994.74, + "probability": 0.99951171875 + }, + { + "word": " along.", + "start": 3994.74, + "end": 3995.0, + "probability": 1.0 + } + ] + }, + { + "id": 1972, + "text": "Yeah.", + "start": 3995.18, + "end": 3995.46, + "words": [ + { + "word": " Yeah.", + "start": 3995.18, + "end": 3995.46, + "probability": 0.4443359375 + } + ] + }, + { + "id": 1973, + "text": "I don't click on those because I'm aware that they're just clickbait.", + "start": 3995.46, + "end": 3998.28, + "words": [ + { + "word": " I", + "start": 3995.46, + "end": 3995.62, + "probability": 0.89794921875 + }, + { + "word": " don't", + "start": 3995.62, + "end": 3995.84, + "probability": 0.99462890625 + }, + { + "word": " click", + "start": 3995.84, + "end": 3996.08, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 3996.08, + "end": 3996.24, + "probability": 0.99951171875 + }, + { + "word": " those", + "start": 3996.24, + "end": 3996.4, + "probability": 0.99755859375 + }, + { + "word": " because", + "start": 3996.4, + "end": 3996.62, + "probability": 0.98193359375 + }, + { + "word": " I'm", + "start": 3996.62, + "end": 3997.0, + "probability": 1.0 + }, + { + "word": " aware", + "start": 3997.0, + "end": 3997.12, + "probability": 1.0 + }, + { + "word": " that", + "start": 3997.12, + "end": 3997.42, + "probability": 1.0 + }, + { + "word": " they're", + "start": 3997.42, + "end": 3997.6, + "probability": 1.0 + }, + { + "word": " just", + "start": 3997.6, + "end": 3997.78, + "probability": 1.0 + }, + { + "word": " clickbait.", + "start": 3997.78, + "end": 3998.28, + "probability": 0.91064453125 + } + ] + }, + { + "id": 1974, + "text": "Anything that says that, any utility that says that it can fix your computer for you,", + "start": 3998.5, + "end": 4003.18, + "words": [ + { + "word": " Anything", + "start": 3998.5, + "end": 3998.94, + "probability": 0.99462890625 + }, + { + "word": " that", + "start": 3998.94, + "end": 3999.16, + "probability": 1.0 + }, + { + "word": " says", + "start": 3999.16, + "end": 3999.44, + "probability": 1.0 + }, + { + "word": " that,", + "start": 3999.44, + "end": 3999.86, + "probability": 0.99951171875 + }, + { + "word": " any", + "start": 3999.9, + "end": 4000.86, + "probability": 0.99462890625 + }, + { + "word": " utility", + "start": 4000.86, + "end": 4001.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 4001.32, + "end": 4001.66, + "probability": 1.0 + }, + { + "word": " says", + "start": 4001.66, + "end": 4001.84, + "probability": 1.0 + }, + { + "word": " that", + "start": 4001.84, + "end": 4002.02, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4002.02, + "end": 4002.08, + "probability": 0.98486328125 + }, + { + "word": " can", + "start": 4002.08, + "end": 4002.2, + "probability": 1.0 + }, + { + "word": " fix", + "start": 4002.2, + "end": 4002.4, + "probability": 1.0 + }, + { + "word": " your", + "start": 4002.4, + "end": 4002.54, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4002.54, + "end": 4002.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 4002.78, + "end": 4002.98, + "probability": 1.0 + }, + { + "word": " you,", + "start": 4002.98, + "end": 4003.18, + "probability": 1.0 + } + ] + }, + { + "id": 1975, + "text": "you should probably not click on.", + "start": 4003.64, + "end": 4005.2, + "words": [ + { + "word": " you", + "start": 4003.64, + "end": 4004.08, + "probability": 1.0 + }, + { + "word": " should", + "start": 4004.08, + "end": 4004.3, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4004.3, + "end": 4004.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 4004.54, + "end": 4004.8, + "probability": 1.0 + }, + { + "word": " click", + "start": 4004.8, + "end": 4005.02, + "probability": 1.0 + }, + { + "word": " on.", + "start": 4005.02, + "end": 4005.2, + "probability": 1.0 + } + ] + }, + { + "id": 1976, + "text": "Right.", + "start": 4005.36, + "end": 4005.78, + "words": [ + { + "word": " Right.", + "start": 4005.36, + "end": 4005.78, + "probability": 1.0 + } + ] + }, + { + "id": 1977, + "text": "Exactly.", + "start": 4005.86, + "end": 4006.16, + "words": [ + { + "word": " Exactly.", + "start": 4005.86, + "end": 4006.16, + "probability": 0.83447265625 + } + ] + }, + { + "id": 1978, + "text": "Anything that has a big green download button, don't click on that.", + "start": 4006.32, + "end": 4009.3, + "words": [ + { + "word": " Anything", + "start": 4006.32, + "end": 4006.76, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 4006.76, + "end": 4006.88, + "probability": 1.0 + }, + { + "word": " has", + "start": 4006.88, + "end": 4007.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 4007.02, + "end": 4007.14, + "probability": 1.0 + }, + { + "word": " big", + "start": 4007.14, + "end": 4007.34, + "probability": 1.0 + }, + { + "word": " green", + "start": 4007.34, + "end": 4007.56, + "probability": 0.99853515625 + }, + { + "word": " download", + "start": 4007.56, + "end": 4008.02, + "probability": 0.99951171875 + }, + { + "word": " button,", + "start": 4008.02, + "end": 4008.44, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4008.56, + "end": 4008.82, + "probability": 1.0 + }, + { + "word": " click", + "start": 4008.82, + "end": 4008.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 4008.98, + "end": 4009.12, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4009.12, + "end": 4009.3, + "probability": 1.0 + } + ] + }, + { + "id": 1979, + "text": "Okay.", + "start": 4009.76, + "end": 4010.2, + "words": [ + { + "word": " Okay.", + "start": 4009.76, + "end": 4010.2, + "probability": 0.90478515625 + } + ] + }, + { + "id": 1980, + "text": "You know, it's, stay away from anything that is a converter", + "start": 4010.26, + "end": 4016.22, + "words": [ + { + "word": " You", + "start": 4010.26, + "end": 4010.64, + "probability": 0.5419921875 + }, + { + "word": " know,", + "start": 4010.64, + "end": 4010.82, + "probability": 1.0 + }, + { + "word": " it's,", + "start": 4010.84, + "end": 4011.3, + "probability": 0.86669921875 + }, + { + "word": " stay", + "start": 4011.3, + "end": 4012.82, + "probability": 0.9912109375 + }, + { + "word": " away", + "start": 4012.82, + "end": 4013.3, + "probability": 1.0 + }, + { + "word": " from", + "start": 4013.3, + "end": 4013.72, + "probability": 1.0 + }, + { + "word": " anything", + "start": 4013.72, + "end": 4014.88, + "probability": 0.9775390625 + }, + { + "word": " that", + "start": 4014.88, + "end": 4015.24, + "probability": 1.0 + }, + { + "word": " is", + "start": 4015.24, + "end": 4015.42, + "probability": 1.0 + }, + { + "word": " a", + "start": 4015.42, + "end": 4015.58, + "probability": 1.0 + }, + { + "word": " converter", + "start": 4015.58, + "end": 4016.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1981, + "text": "of any type of software.", + "start": 4016.22, + "end": 4017.12, + "words": [ + { + "word": " of", + "start": 4016.22, + "end": 4016.68, + "probability": 0.9990234375 + }, + { + "word": " any", + "start": 4016.68, + "end": 4016.94, + "probability": 0.916015625 + }, + { + "word": " type", + "start": 4016.94, + "end": 4017.12, + "probability": 0.80859375 + }, + { + "word": " of", + "start": 4017.12, + "end": 4017.12, + "probability": 0.159423828125 + }, + { + "word": " software.", + "start": 4017.12, + "end": 4017.12, + "probability": 0.1016845703125 + } + ] + }, + { + "id": 1982, + "text": "Right.", + "start": 4017.14, + "end": 4017.76, + "words": [ + { + "word": " Right.", + "start": 4017.14, + "end": 4017.76, + "probability": 0.00048232078552246094 + } + ] + }, + { + "id": 1983, + "text": "Like, if you want to convert one type of thing to another.", + "start": 4017.76, + "end": 4020.44, + "words": [ + { + "word": " Like,", + "start": 4017.76, + "end": 4017.76, + "probability": 0.0014286041259765625 + }, + { + "word": " if", + "start": 4018.04, + "end": 4018.12, + "probability": 0.9580078125 + }, + { + "word": " you", + "start": 4018.12, + "end": 4018.22, + "probability": 0.99853515625 + }, + { + "word": " want", + "start": 4018.22, + "end": 4018.36, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 4018.36, + "end": 4018.48, + "probability": 0.99853515625 + }, + { + "word": " convert", + "start": 4018.48, + "end": 4018.76, + "probability": 0.9921875 + }, + { + "word": " one", + "start": 4018.76, + "end": 4019.22, + "probability": 0.99951171875 + }, + { + "word": " type", + "start": 4019.22, + "end": 4019.56, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4019.56, + "end": 4019.74, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4019.74, + "end": 4019.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4019.98, + "end": 4020.18, + "probability": 1.0 + }, + { + "word": " another.", + "start": 4020.18, + "end": 4020.44, + "probability": 1.0 + } + ] + }, + { + "id": 1984, + "text": "A big one that we've seen recently with people is the YouTube Downloader,", + "start": 4021.6, + "end": 4027.02, + "words": [ + { + "word": " A", + "start": 4021.6, + "end": 4022.04, + "probability": 0.90234375 + }, + { + "word": " big", + "start": 4022.04, + "end": 4022.42, + "probability": 1.0 + }, + { + "word": " one", + "start": 4022.42, + "end": 4022.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 4022.56, + "end": 4022.68, + "probability": 1.0 + }, + { + "word": " we've", + "start": 4022.68, + "end": 4022.82, + "probability": 1.0 + }, + { + "word": " seen", + "start": 4022.82, + "end": 4022.98, + "probability": 1.0 + }, + { + "word": " recently", + "start": 4022.98, + "end": 4023.54, + "probability": 1.0 + }, + { + "word": " with", + "start": 4023.54, + "end": 4023.88, + "probability": 1.0 + }, + { + "word": " people", + "start": 4023.88, + "end": 4024.12, + "probability": 1.0 + }, + { + "word": " is", + "start": 4024.12, + "end": 4024.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4024.56, + "end": 4024.98, + "probability": 0.99951171875 + }, + { + "word": " YouTube", + "start": 4024.98, + "end": 4026.1, + "probability": 1.0 + }, + { + "word": " Downloader,", + "start": 4026.1, + "end": 4027.02, + "probability": 0.98291015625 + } + ] + }, + { + "id": 1985, + "text": "where it allows you to download videos off of YouTube.", + "start": 4027.02, + "end": 4029.12, + "words": [ + { + "word": " where", + "start": 4027.02, + "end": 4027.6, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 4027.6, + "end": 4027.72, + "probability": 1.0 + }, + { + "word": " allows", + "start": 4027.72, + "end": 4027.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 4027.86, + "end": 4028.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4028.0, + "end": 4028.04, + "probability": 1.0 + }, + { + "word": " download", + "start": 4028.04, + "end": 4028.3, + "probability": 1.0 + }, + { + "word": " videos", + "start": 4028.3, + "end": 4028.6, + "probability": 0.99951171875 + }, + { + "word": " off", + "start": 4028.6, + "end": 4028.82, + "probability": 1.0 + }, + { + "word": " of", + "start": 4028.82, + "end": 4028.9, + "probability": 1.0 + }, + { + "word": " YouTube.", + "start": 4028.9, + "end": 4029.12, + "probability": 1.0 + } + ] + }, + { + "id": 1986, + "text": "I only recommend one program for that,", + "start": 4029.48, + "end": 4031.98, + "words": [ + { + "word": " I", + "start": 4029.48, + "end": 4029.92, + "probability": 0.99560546875 + }, + { + "word": " only", + "start": 4029.92, + "end": 4030.12, + "probability": 0.99951171875 + }, + { + "word": " recommend", + "start": 4030.12, + "end": 4030.72, + "probability": 0.99462890625 + }, + { + "word": " one", + "start": 4030.72, + "end": 4031.1, + "probability": 1.0 + }, + { + "word": " program", + "start": 4031.1, + "end": 4031.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 4031.56, + "end": 4031.78, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4031.78, + "end": 4031.98, + "probability": 1.0 + } + ] + }, + { + "id": 1987, + "text": "and it's definitely not called the Free YouTube Downloader.", + "start": 4032.04, + "end": 4034.6, + "words": [ + { + "word": " and", + "start": 4032.04, + "end": 4032.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4032.18, + "end": 4032.4, + "probability": 1.0 + }, + { + "word": " definitely", + "start": 4032.4, + "end": 4032.58, + "probability": 1.0 + }, + { + "word": " not", + "start": 4032.58, + "end": 4032.88, + "probability": 1.0 + }, + { + "word": " called", + "start": 4032.88, + "end": 4033.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 4033.18, + "end": 4033.36, + "probability": 0.99853515625 + }, + { + "word": " Free", + "start": 4033.36, + "end": 4033.58, + "probability": 0.93994140625 + }, + { + "word": " YouTube", + "start": 4033.58, + "end": 4033.9, + "probability": 0.99951171875 + }, + { + "word": " Downloader.", + "start": 4033.9, + "end": 4034.6, + "probability": 1.0 + } + ] + }, + { + "id": 1988, + "text": "All right.", + "start": 4036.02, + "end": 4036.9, + "words": [ + { + "word": " All", + "start": 4036.02, + "end": 4036.46, + "probability": 0.6513671875 + }, + { + "word": " right.", + "start": 4036.46, + "end": 4036.9, + "probability": 1.0 + } + ] + }, + { + "id": 1989, + "text": "The program, if you want to do that, by the way,", + "start": 4037.08, + "end": 4038.9, + "words": [ + { + "word": " The", + "start": 4037.08, + "end": 4037.28, + "probability": 0.9931640625 + }, + { + "word": " program,", + "start": 4037.28, + "end": 4037.78, + "probability": 1.0 + }, + { + "word": " if", + "start": 4037.88, + "end": 4038.0, + "probability": 1.0 + }, + { + "word": " you", + "start": 4038.0, + "end": 4038.06, + "probability": 1.0 + }, + { + "word": " want", + "start": 4038.06, + "end": 4038.2, + "probability": 1.0 + }, + { + "word": " to", + "start": 4038.2, + "end": 4038.3, + "probability": 1.0 + }, + { + "word": " do", + "start": 4038.3, + "end": 4038.38, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4038.38, + "end": 4038.52, + "probability": 1.0 + }, + { + "word": " by", + "start": 4038.56, + "end": 4038.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 4038.6, + "end": 4038.72, + "probability": 1.0 + }, + { + "word": " way,", + "start": 4038.72, + "end": 4038.9, + "probability": 1.0 + } + ] + }, + { + "id": 1990, + "text": "there's a program called Jacksta, J-A-K-S-T-A.", + "start": 4039.0, + "end": 4042.02, + "words": [ + { + "word": " there's", + "start": 4039.0, + "end": 4039.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 4039.52, + "end": 4039.56, + "probability": 1.0 + }, + { + "word": " program", + "start": 4039.56, + "end": 4039.76, + "probability": 1.0 + }, + { + "word": " called", + "start": 4039.76, + "end": 4040.0, + "probability": 1.0 + }, + { + "word": " Jacksta,", + "start": 4040.0, + "end": 4040.54, + "probability": 0.6376953125 + }, + { + "word": " J", + "start": 4040.6, + "end": 4040.84, + "probability": 0.99951171875 + }, + { + "word": "-A", + "start": 4040.84, + "end": 4041.06, + "probability": 1.0 + }, + { + "word": "-K", + "start": 4041.06, + "end": 4041.24, + "probability": 0.9951171875 + }, + { + "word": "-S", + "start": 4041.24, + "end": 4041.6, + "probability": 1.0 + }, + { + "word": "-T", + "start": 4041.6, + "end": 4041.82, + "probability": 1.0 + }, + { + "word": "-A.", + "start": 4041.82, + "end": 4042.02, + "probability": 1.0 + } + ] + }, + { + "id": 1991, + "text": "Okay.", + "start": 4042.7, + "end": 4043.14, + "words": [ + { + "word": " Okay.", + "start": 4042.7, + "end": 4043.14, + "probability": 0.89697265625 + } + ] + }, + { + "id": 1992, + "text": "They would love for you to pay for it,", + "start": 4043.14, + "end": 4045.1, + "words": [ + { + "word": " They", + "start": 4043.14, + "end": 4043.52, + "probability": 0.96435546875 + }, + { + "word": " would", + "start": 4043.52, + "end": 4043.76, + "probability": 1.0 + }, + { + "word": " love", + "start": 4043.76, + "end": 4044.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 4044.08, + "end": 4044.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 4044.22, + "end": 4044.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 4044.34, + "end": 4044.46, + "probability": 1.0 + }, + { + "word": " pay", + "start": 4044.46, + "end": 4044.6, + "probability": 1.0 + }, + { + "word": " for", + "start": 4044.6, + "end": 4044.76, + "probability": 1.0 + }, + { + "word": " it,", + "start": 4044.76, + "end": 4045.1, + "probability": 1.0 + } + ] + }, + { + "id": 1993, + "text": "but it will work indefinitely.", + "start": 4045.16, + "end": 4046.9, + "words": [ + { + "word": " but", + "start": 4045.16, + "end": 4045.38, + "probability": 1.0 + }, + { + "word": " it", + "start": 4045.38, + "end": 4045.48, + "probability": 1.0 + }, + { + "word": " will", + "start": 4045.48, + "end": 4045.64, + "probability": 1.0 + }, + { + "word": " work", + "start": 4045.64, + "end": 4046.06, + "probability": 1.0 + }, + { + "word": " indefinitely.", + "start": 4046.06, + "end": 4046.9, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1994, + "text": "It will work indefinitely without paying for it for free", + "start": 4047.14, + "end": 4049.62, + "words": [ + { + "word": " It", + "start": 4047.14, + "end": 4047.22, + "probability": 5.2809715270996094e-05 + }, + { + "word": " will", + "start": 4047.22, + "end": 4047.22, + "probability": 0.022308349609375 + }, + { + "word": " work", + "start": 4047.22, + "end": 4047.22, + "probability": 0.020294189453125 + }, + { + "word": " indefinitely", + "start": 4047.22, + "end": 4047.22, + "probability": 0.48388671875 + }, + { + "word": " without", + "start": 4047.22, + "end": 4047.42, + "probability": 0.9853515625 + }, + { + "word": " paying", + "start": 4047.42, + "end": 4047.86, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 4047.86, + "end": 4048.22, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4048.22, + "end": 4048.58, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 4048.58, + "end": 4049.18, + "probability": 0.98583984375 + }, + { + "word": " free", + "start": 4049.18, + "end": 4049.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1995, + "text": "if you download that software.", + "start": 4049.62, + "end": 4051.66, + "words": [ + { + "word": " if", + "start": 4049.62, + "end": 4050.46, + "probability": 0.97412109375 + }, + { + "word": " you", + "start": 4050.46, + "end": 4050.62, + "probability": 1.0 + }, + { + "word": " download", + "start": 4050.62, + "end": 4050.9, + "probability": 1.0 + }, + { + "word": " that", + "start": 4050.9, + "end": 4051.22, + "probability": 0.99951171875 + }, + { + "word": " software.", + "start": 4051.22, + "end": 4051.66, + "probability": 1.0 + } + ] + }, + { + "id": 1996, + "text": "Okay.", + "start": 4052.36, + "end": 4052.8, + "words": [ + { + "word": " Okay.", + "start": 4052.36, + "end": 4052.8, + "probability": 0.420166015625 + } + ] + }, + { + "id": 1997, + "text": "And that's the only piece of software that I recommend for that.", + "start": 4052.94, + "end": 4055.36, + "words": [ + { + "word": " And", + "start": 4052.94, + "end": 4053.24, + "probability": 0.8193359375 + }, + { + "word": " that's", + "start": 4053.24, + "end": 4053.4, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4053.4, + "end": 4053.5, + "probability": 0.99462890625 + }, + { + "word": " only", + "start": 4053.5, + "end": 4053.8, + "probability": 1.0 + }, + { + "word": " piece", + "start": 4053.8, + "end": 4054.12, + "probability": 1.0 + }, + { + "word": " of", + "start": 4054.12, + "end": 4054.24, + "probability": 1.0 + }, + { + "word": " software", + "start": 4054.24, + "end": 4054.52, + "probability": 1.0 + }, + { + "word": " that", + "start": 4054.52, + "end": 4054.7, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4054.7, + "end": 4054.74, + "probability": 0.99951171875 + }, + { + "word": " recommend", + "start": 4054.74, + "end": 4054.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 4054.96, + "end": 4055.2, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4055.2, + "end": 4055.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 1998, + "text": "J-A-K-S-T-A?", + "start": 4056.06, + "end": 4058.22, + "words": [ + { + "word": " J", + "start": 4056.06, + "end": 4056.5, + "probability": 0.97900390625 + }, + { + "word": "-A", + "start": 4056.5, + "end": 4056.68, + "probability": 0.9765625 + }, + { + "word": "-K", + "start": 4056.68, + "end": 4056.94, + "probability": 0.9990234375 + }, + { + "word": "-S", + "start": 4056.94, + "end": 4057.4, + "probability": 0.9921875 + }, + { + "word": "-T", + "start": 4057.4, + "end": 4057.84, + "probability": 0.92333984375 + }, + { + "word": "-A?", + "start": 4057.84, + "end": 4058.22, + "probability": 0.9990234375 + } + ] + }, + { + "id": 1999, + "text": "Yep.", + "start": 4058.54, + "end": 4058.78, + "words": [ + { + "word": " Yep.", + "start": 4058.54, + "end": 4058.78, + "probability": 0.96630859375 + } + ] + }, + { + "id": 2000, + "text": "Okay.", + "start": 4059.24, + "end": 4059.68, + "words": [ + { + "word": " Okay.", + "start": 4059.24, + "end": 4059.68, + "probability": 0.97900390625 + } + ] + }, + { + "id": 2001, + "text": "And that allows you to download YouTube videos", + "start": 4059.76, + "end": 4061.44, + "words": [ + { + "word": " And", + "start": 4059.76, + "end": 4060.0, + "probability": 0.95751953125 + }, + { + "word": " that", + "start": 4060.0, + "end": 4060.04, + "probability": 0.99853515625 + }, + { + "word": " allows", + "start": 4060.04, + "end": 4060.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 4060.24, + "end": 4060.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4060.46, + "end": 4060.52, + "probability": 1.0 + }, + { + "word": " download", + "start": 4060.52, + "end": 4060.76, + "probability": 1.0 + }, + { + "word": " YouTube", + "start": 4060.76, + "end": 4061.04, + "probability": 1.0 + }, + { + "word": " videos", + "start": 4061.04, + "end": 4061.44, + "probability": 1.0 + } + ] + }, + { + "id": 2002, + "text": "and save them to your computer if you want.", + "start": 4061.44, + "end": 4063.22, + "words": [ + { + "word": " and", + "start": 4061.44, + "end": 4061.78, + "probability": 1.0 + }, + { + "word": " save", + "start": 4061.78, + "end": 4062.12, + "probability": 1.0 + }, + { + "word": " them", + "start": 4062.12, + "end": 4062.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 4062.22, + "end": 4062.3, + "probability": 1.0 + }, + { + "word": " your", + "start": 4062.3, + "end": 4062.42, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4062.42, + "end": 4062.72, + "probability": 1.0 + }, + { + "word": " if", + "start": 4062.72, + "end": 4062.92, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4062.92, + "end": 4063.02, + "probability": 1.0 + }, + { + "word": " want.", + "start": 4063.02, + "end": 4063.22, + "probability": 1.0 + } + ] + }, + { + "id": 2003, + "text": "Nice.", + "start": 4063.72, + "end": 4064.16, + "words": [ + { + "word": " Nice.", + "start": 4063.72, + "end": 4064.16, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2004, + "text": "All right.", + "start": 4064.22, + "end": 4064.82, + "words": [ + { + "word": " All", + "start": 4064.22, + "end": 4064.52, + "probability": 0.243408203125 + }, + { + "word": " right.", + "start": 4064.52, + "end": 4064.82, + "probability": 1.0 + } + ] + }, + { + "id": 2005, + "text": "So, basically, any type of converter is going to hurt you.", + "start": 4064.9, + "end": 4071.5, + "words": [ + { + "word": " So,", + "start": 4064.9, + "end": 4065.34, + "probability": 0.9970703125 + }, + { + "word": " basically,", + "start": 4065.4, + "end": 4066.02, + "probability": 1.0 + }, + { + "word": " any", + "start": 4066.16, + "end": 4066.4, + "probability": 1.0 + }, + { + "word": " type", + "start": 4066.4, + "end": 4066.68, + "probability": 1.0 + }, + { + "word": " of", + "start": 4066.68, + "end": 4066.96, + "probability": 1.0 + }, + { + "word": " converter", + "start": 4066.96, + "end": 4070.06, + "probability": 0.96826171875 + }, + { + "word": " is", + "start": 4070.06, + "end": 4070.64, + "probability": 1.0 + }, + { + "word": " going", + "start": 4070.64, + "end": 4070.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 4070.84, + "end": 4071.06, + "probability": 1.0 + }, + { + "word": " hurt", + "start": 4071.06, + "end": 4071.26, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4071.26, + "end": 4071.5, + "probability": 1.0 + } + ] + }, + { + "id": 2006, + "text": "Like, if you want to be able to,", + "start": 4071.7, + "end": 4073.06, + "words": [ + { + "word": " Like,", + "start": 4071.7, + "end": 4072.14, + "probability": 0.6826171875 + }, + { + "word": " if", + "start": 4072.14, + "end": 4072.24, + "probability": 1.0 + }, + { + "word": " you", + "start": 4072.24, + "end": 4072.3, + "probability": 1.0 + }, + { + "word": " want", + "start": 4072.3, + "end": 4072.48, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4072.48, + "end": 4072.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 4072.58, + "end": 4072.68, + "probability": 1.0 + }, + { + "word": " able", + "start": 4072.68, + "end": 4072.82, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4072.82, + "end": 4073.06, + "probability": 1.0 + } + ] + }, + { + "id": 2007, + "text": "because a lot of people will be like,", + "start": 4073.12, + "end": 4074.46, + "words": [ + { + "word": " because", + "start": 4073.12, + "end": 4073.48, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4073.48, + "end": 4073.62, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4073.62, + "end": 4073.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 4073.74, + "end": 4073.8, + "probability": 1.0 + }, + { + "word": " people", + "start": 4073.8, + "end": 4074.02, + "probability": 1.0 + }, + { + "word": " will", + "start": 4074.02, + "end": 4074.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 4074.16, + "end": 4074.3, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4074.3, + "end": 4074.46, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2008, + "text": "well, I need to convert this so I can email,", + "start": 4074.52, + "end": 4077.0, + "words": [ + { + "word": " well,", + "start": 4074.52, + "end": 4074.64, + "probability": 0.98095703125 + }, + { + "word": " I", + "start": 4074.72, + "end": 4075.04, + "probability": 1.0 + }, + { + "word": " need", + "start": 4075.04, + "end": 4075.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 4075.26, + "end": 4075.4, + "probability": 1.0 + }, + { + "word": " convert", + "start": 4075.4, + "end": 4075.76, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4075.76, + "end": 4076.08, + "probability": 1.0 + }, + { + "word": " so", + "start": 4076.08, + "end": 4076.26, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4076.26, + "end": 4076.38, + "probability": 1.0 + }, + { + "word": " can", + "start": 4076.38, + "end": 4076.56, + "probability": 1.0 + }, + { + "word": " email,", + "start": 4076.56, + "end": 4077.0, + "probability": 0.87353515625 + } + ] + }, + { + "id": 2009, + "text": "I need to email it.", + "start": 4077.14, + "end": 4077.26, + "words": [ + { + "word": " I", + "start": 4077.14, + "end": 4077.26, + "probability": 0.00655364990234375 + }, + { + "word": " need", + "start": 4077.26, + "end": 4077.26, + "probability": 0.002712249755859375 + }, + { + "word": " to", + "start": 4077.26, + "end": 4077.26, + "probability": 0.74951171875 + }, + { + "word": " email", + "start": 4077.26, + "end": 4077.26, + "probability": 0.4814453125 + }, + { + "word": " it.", + "start": 4077.26, + "end": 4077.26, + "probability": 0.873046875 + } + ] + }, + { + "id": 2010, + "text": "No.", + "start": 4077.94, + "end": 4078.38, + "words": [ + { + "word": " No.", + "start": 4077.94, + "end": 4078.38, + "probability": 0.89306640625 + } + ] + }, + { + "id": 2011, + "text": "No, that's not how this works.", + "start": 4078.7, + "end": 4080.08, + "words": [ + { + "word": " No,", + "start": 4078.7, + "end": 4079.14, + "probability": 0.94140625 + }, + { + "word": " that's", + "start": 4079.18, + "end": 4079.4, + "probability": 0.99658203125 + }, + { + "word": " not", + "start": 4079.4, + "end": 4079.52, + "probability": 0.9990234375 + }, + { + "word": " how", + "start": 4079.52, + "end": 4079.66, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 4079.66, + "end": 4079.82, + "probability": 0.998046875 + }, + { + "word": " works.", + "start": 4079.82, + "end": 4080.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2012, + "text": "And people need to use their computers differently", + "start": 4082.38, + "end": 4085.28, + "words": [ + { + "word": " And", + "start": 4082.38, + "end": 4082.82, + "probability": 0.72607421875 + }, + { + "word": " people", + "start": 4082.82, + "end": 4083.26, + "probability": 0.9794921875 + }, + { + "word": " need", + "start": 4083.26, + "end": 4084.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4084.18, + "end": 4084.34, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 4084.34, + "end": 4084.46, + "probability": 0.99951171875 + }, + { + "word": " their", + "start": 4084.46, + "end": 4084.62, + "probability": 0.998046875 + }, + { + "word": " computers", + "start": 4084.62, + "end": 4084.9, + "probability": 0.99951171875 + }, + { + "word": " differently", + "start": 4084.9, + "end": 4085.28, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2013, + "text": "when it comes to sending large files", + "start": 4085.28, + "end": 4087.08, + "words": [ + { + "word": " when", + "start": 4085.28, + "end": 4085.58, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 4085.58, + "end": 4085.68, + "probability": 0.99951171875 + }, + { + "word": " comes", + "start": 4085.68, + "end": 4085.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4085.88, + "end": 4086.06, + "probability": 0.99951171875 + }, + { + "word": " sending", + "start": 4086.06, + "end": 4086.34, + "probability": 0.99560546875 + }, + { + "word": " large", + "start": 4086.34, + "end": 4086.64, + "probability": 0.998046875 + }, + { + "word": " files", + "start": 4086.64, + "end": 4087.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2014, + "text": "because they're like,", + "start": 4087.08, + "end": 4087.64, + "words": [ + { + "word": " because", + "start": 4087.08, + "end": 4087.34, + "probability": 0.63037109375 + }, + { + "word": " they're", + "start": 4087.34, + "end": 4087.56, + "probability": 0.994140625 + }, + { + "word": " like,", + "start": 4087.56, + "end": 4087.64, + "probability": 0.986328125 + } + ] + }, + { + "id": 2015, + "text": "I want to email 5,000 pictures to someone", + "start": 4087.72, + "end": 4091.24, + "words": [ + { + "word": " I", + "start": 4087.72, + "end": 4087.8, + "probability": 0.96435546875 + }, + { + "word": " want", + "start": 4087.8, + "end": 4087.96, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4087.96, + "end": 4088.08, + "probability": 1.0 + }, + { + "word": " email", + "start": 4088.08, + "end": 4088.36, + "probability": 0.98974609375 + }, + { + "word": " 5", + "start": 4088.36, + "end": 4088.86, + "probability": 0.759765625 + }, + { + "word": ",000", + "start": 4088.86, + "end": 4090.4, + "probability": 1.0 + }, + { + "word": " pictures", + "start": 4090.4, + "end": 4090.7, + "probability": 0.99609375 + }, + { + "word": " to", + "start": 4090.7, + "end": 4090.96, + "probability": 0.99951171875 + }, + { + "word": " someone", + "start": 4090.96, + "end": 4091.24, + "probability": 1.0 + } + ] + }, + { + "id": 2016, + "text": "all in a single email.", + "start": 4091.24, + "end": 4092.38, + "words": [ + { + "word": " all", + "start": 4091.24, + "end": 4091.52, + "probability": 0.9951171875 + }, + { + "word": " in", + "start": 4091.52, + "end": 4091.66, + "probability": 0.95458984375 + }, + { + "word": " a", + "start": 4091.66, + "end": 4091.74, + "probability": 0.9990234375 + }, + { + "word": " single", + "start": 4091.74, + "end": 4092.06, + "probability": 1.0 + }, + { + "word": " email.", + "start": 4092.06, + "end": 4092.38, + "probability": 0.986328125 + } + ] + }, + { + "id": 2017, + "text": "And so they search for some type of converter", + "start": 4092.9, + "end": 4095.8, + "words": [ + { + "word": " And", + "start": 4092.9, + "end": 4093.34, + "probability": 0.99755859375 + }, + { + "word": " so", + "start": 4093.34, + "end": 4093.6, + "probability": 1.0 + }, + { + "word": " they", + "start": 4093.6, + "end": 4093.84, + "probability": 0.96337890625 + }, + { + "word": " search", + "start": 4093.84, + "end": 4094.54, + "probability": 0.99072265625 + }, + { + "word": " for", + "start": 4094.54, + "end": 4094.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 4094.84, + "end": 4095.0, + "probability": 1.0 + }, + { + "word": " type", + "start": 4095.0, + "end": 4095.24, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4095.24, + "end": 4095.38, + "probability": 1.0 + }, + { + "word": " converter", + "start": 4095.38, + "end": 4095.8, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2018, + "text": "to make it so that they can magically make it", + "start": 4095.8, + "end": 4099.04, + "words": [ + { + "word": " to", + "start": 4095.8, + "end": 4096.1, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 4096.1, + "end": 4096.26, + "probability": 1.0 + }, + { + "word": " it", + "start": 4096.26, + "end": 4096.42, + "probability": 1.0 + }, + { + "word": " so", + "start": 4096.42, + "end": 4096.58, + "probability": 1.0 + }, + { + "word": " that", + "start": 4096.58, + "end": 4096.76, + "probability": 0.99853515625 + }, + { + "word": " they", + "start": 4096.76, + "end": 4096.94, + "probability": 1.0 + }, + { + "word": " can", + "start": 4096.94, + "end": 4097.14, + "probability": 1.0 + }, + { + "word": " magically", + "start": 4097.14, + "end": 4098.38, + "probability": 0.9990234375 + }, + { + "word": " make", + "start": 4098.38, + "end": 4098.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 4098.84, + "end": 4099.04, + "probability": 1.0 + } + ] + }, + { + "id": 2019, + "text": "so that 5,000 emails can be sent in a single email.", + "start": 4099.04, + "end": 4101.36, + "words": [ + { + "word": " so", + "start": 4099.04, + "end": 4099.2, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4099.2, + "end": 4099.38, + "probability": 1.0 + }, + { + "word": " 5", + "start": 4099.38, + "end": 4099.5, + "probability": 1.0 + }, + { + "word": ",000", + "start": 4099.5, + "end": 4099.96, + "probability": 1.0 + }, + { + "word": " emails", + "start": 4099.96, + "end": 4100.18, + "probability": 0.99853515625 + }, + { + "word": " can", + "start": 4100.18, + "end": 4100.4, + "probability": 1.0 + }, + { + "word": " be", + "start": 4100.4, + "end": 4100.5, + "probability": 1.0 + }, + { + "word": " sent", + "start": 4100.5, + "end": 4100.7, + "probability": 1.0 + }, + { + "word": " in", + "start": 4100.7, + "end": 4100.82, + "probability": 1.0 + }, + { + "word": " a", + "start": 4100.82, + "end": 4100.84, + "probability": 1.0 + }, + { + "word": " single", + "start": 4100.84, + "end": 4101.06, + "probability": 1.0 + }, + { + "word": " email.", + "start": 4101.06, + "end": 4101.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2020, + "text": "Right, compress it.", + "start": 4101.84, + "end": 4103.0, + "words": [ + { + "word": " Right,", + "start": 4101.84, + "end": 4102.28, + "probability": 0.50048828125 + }, + { + "word": " compress", + "start": 4102.28, + "end": 4102.58, + "probability": 0.6552734375 + }, + { + "word": " it.", + "start": 4102.58, + "end": 4103.0, + "probability": 1.0 + } + ] + }, + { + "id": 2021, + "text": "They're going to come back with an infection.", + "start": 4103.06, + "end": 4104.52, + "words": [ + { + "word": " They're", + "start": 4103.06, + "end": 4103.3, + "probability": 0.99609375 + }, + { + "word": " going", + "start": 4103.3, + "end": 4103.38, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4103.38, + "end": 4103.48, + "probability": 1.0 + }, + { + "word": " come", + "start": 4103.48, + "end": 4103.62, + "probability": 1.0 + }, + { + "word": " back", + "start": 4103.62, + "end": 4103.86, + "probability": 1.0 + }, + { + "word": " with", + "start": 4103.86, + "end": 4104.06, + "probability": 1.0 + }, + { + "word": " an", + "start": 4104.06, + "end": 4104.2, + "probability": 1.0 + }, + { + "word": " infection.", + "start": 4104.2, + "end": 4104.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2022, + "text": "And the only way to send,", + "start": 4105.04, + "end": 4106.56, + "words": [ + { + "word": " And", + "start": 4105.04, + "end": 4105.48, + "probability": 0.98388671875 + }, + { + "word": " the", + "start": 4105.48, + "end": 4105.64, + "probability": 0.99951171875 + }, + { + "word": " only", + "start": 4105.64, + "end": 4105.86, + "probability": 1.0 + }, + { + "word": " way", + "start": 4105.86, + "end": 4106.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 4106.12, + "end": 4106.3, + "probability": 1.0 + }, + { + "word": " send,", + "start": 4106.3, + "end": 4106.56, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2023, + "text": "like, a massive amount of data like that", + "start": 4106.56, + "end": 4109.18, + "words": [ + { + "word": " like,", + "start": 4106.56, + "end": 4107.0, + "probability": 0.377197265625 + }, + { + "word": " a", + "start": 4107.14, + "end": 4107.28, + "probability": 0.99853515625 + }, + { + "word": " massive", + "start": 4107.28, + "end": 4107.92, + "probability": 0.99951171875 + }, + { + "word": " amount", + "start": 4107.92, + "end": 4108.18, + "probability": 1.0 + }, + { + "word": " of", + "start": 4108.18, + "end": 4108.42, + "probability": 0.99951171875 + }, + { + "word": " data", + "start": 4108.42, + "end": 4108.64, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4108.64, + "end": 4108.9, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 4108.9, + "end": 4109.18, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2024, + "text": "is to use another platform,", + "start": 4109.18, + "end": 4110.54, + "words": [ + { + "word": " is", + "start": 4109.18, + "end": 4109.4, + "probability": 0.9814453125 + }, + { + "word": " to", + "start": 4109.4, + "end": 4109.58, + "probability": 0.99951171875 + }, + { + "word": " use", + "start": 4109.58, + "end": 4109.84, + "probability": 1.0 + }, + { + "word": " another", + "start": 4109.84, + "end": 4110.06, + "probability": 0.99951171875 + }, + { + "word": " platform,", + "start": 4110.06, + "end": 4110.54, + "probability": 1.0 + } + ] + }, + { + "id": 2025, + "text": "something like Dropbox or something", + "start": 4110.68, + "end": 4113.28, + "words": [ + { + "word": " something", + "start": 4110.68, + "end": 4110.92, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4110.92, + "end": 4111.38, + "probability": 0.99951171875 + }, + { + "word": " Dropbox", + "start": 4111.38, + "end": 4112.16, + "probability": 0.99755859375 + }, + { + "word": " or", + "start": 4112.16, + "end": 4112.6, + "probability": 0.77978515625 + }, + { + "word": " something", + "start": 4112.6, + "end": 4113.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2026, + "text": "where you can put all of the files", + "start": 4113.28, + "end": 4115.94, + "words": [ + { + "word": " where", + "start": 4113.28, + "end": 4113.6, + "probability": 0.93115234375 + }, + { + "word": " you", + "start": 4113.6, + "end": 4113.74, + "probability": 1.0 + }, + { + "word": " can", + "start": 4113.74, + "end": 4113.92, + "probability": 0.99951171875 + }, + { + "word": " put", + "start": 4113.92, + "end": 4114.12, + "probability": 1.0 + }, + { + "word": " all", + "start": 4114.12, + "end": 4114.28, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4114.28, + "end": 4114.52, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4114.52, + "end": 4114.76, + "probability": 1.0 + }, + { + "word": " files", + "start": 4114.76, + "end": 4115.94, + "probability": 0.9072265625 + } + ] + }, + { + "id": 2027, + "text": "that you want to send into a single folder", + "start": 4115.94, + "end": 4117.7, + "words": [ + { + "word": " that", + "start": 4115.94, + "end": 4116.26, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 4116.26, + "end": 4116.36, + "probability": 1.0 + }, + { + "word": " want", + "start": 4116.36, + "end": 4116.5, + "probability": 0.99462890625 + }, + { + "word": " to", + "start": 4116.5, + "end": 4116.58, + "probability": 1.0 + }, + { + "word": " send", + "start": 4116.58, + "end": 4116.76, + "probability": 1.0 + }, + { + "word": " into", + "start": 4116.76, + "end": 4116.94, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4116.94, + "end": 4117.1, + "probability": 1.0 + }, + { + "word": " single", + "start": 4117.1, + "end": 4117.3, + "probability": 0.99951171875 + }, + { + "word": " folder", + "start": 4117.3, + "end": 4117.7, + "probability": 1.0 + } + ] + }, + { + "id": 2028, + "text": "and then you can just send a link to that folder", + "start": 4117.7, + "end": 4119.64, + "words": [ + { + "word": " and", + "start": 4117.7, + "end": 4117.96, + "probability": 0.4443359375 + }, + { + "word": " then", + "start": 4117.96, + "end": 4118.08, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 4118.08, + "end": 4118.18, + "probability": 0.9990234375 + }, + { + "word": " can", + "start": 4118.18, + "end": 4118.28, + "probability": 0.9990234375 + }, + { + "word": " just", + "start": 4118.28, + "end": 4118.42, + "probability": 0.9970703125 + }, + { + "word": " send", + "start": 4118.42, + "end": 4118.6, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4118.6, + "end": 4118.7, + "probability": 0.99951171875 + }, + { + "word": " link", + "start": 4118.7, + "end": 4118.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 4118.9, + "end": 4119.1, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4119.1, + "end": 4119.26, + "probability": 1.0 + }, + { + "word": " folder", + "start": 4119.26, + "end": 4119.64, + "probability": 1.0 + } + ] + }, + { + "id": 2029, + "text": "that is shared specifically with someone.", + "start": 4119.64, + "end": 4122.76, + "words": [ + { + "word": " that", + "start": 4119.64, + "end": 4119.98, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 4119.98, + "end": 4120.3, + "probability": 1.0 + }, + { + "word": " shared", + "start": 4120.3, + "end": 4121.06, + "probability": 0.99951171875 + }, + { + "word": " specifically", + "start": 4121.06, + "end": 4121.66, + "probability": 0.9990234375 + }, + { + "word": " with", + "start": 4121.66, + "end": 4122.1, + "probability": 1.0 + }, + { + "word": " someone.", + "start": 4122.1, + "end": 4122.76, + "probability": 1.0 + } + ] + }, + { + "id": 2030, + "text": "So, it really comes down to just sort of", + "start": 4124.140000000001, + "end": 4126.9, + "words": [ + { + "word": " So,", + "start": 4124.140000000001, + "end": 4124.580000000001, + "probability": 0.1356201171875 + }, + { + "word": " it", + "start": 4124.580000000001, + "end": 4125.02, + "probability": 0.9990234375 + }, + { + "word": " really", + "start": 4125.02, + "end": 4125.54, + "probability": 1.0 + }, + { + "word": " comes", + "start": 4125.54, + "end": 4125.7, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 4125.7, + "end": 4125.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 4125.96, + "end": 4126.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 4126.16, + "end": 4126.38, + "probability": 0.99560546875 + }, + { + "word": " sort", + "start": 4126.38, + "end": 4126.68, + "probability": 0.875 + }, + { + "word": " of", + "start": 4126.68, + "end": 4126.9, + "probability": 1.0 + } + ] + }, + { + "id": 2031, + "text": "don't be afraid to ask for help.", + "start": 4126.9, + "end": 4128.74, + "words": [ + { + "word": " don't", + "start": 4126.9, + "end": 4127.66, + "probability": 0.810546875 + }, + { + "word": " be", + "start": 4127.66, + "end": 4127.74, + "probability": 0.99951171875 + }, + { + "word": " afraid", + "start": 4127.74, + "end": 4127.96, + "probability": 0.5888671875 + }, + { + "word": " to", + "start": 4127.96, + "end": 4128.14, + "probability": 0.99951171875 + }, + { + "word": " ask", + "start": 4128.14, + "end": 4128.32, + "probability": 1.0 + }, + { + "word": " for", + "start": 4128.32, + "end": 4128.48, + "probability": 1.0 + }, + { + "word": " help.", + "start": 4128.48, + "end": 4128.74, + "probability": 1.0 + } + ] + }, + { + "id": 2032, + "text": "Like, if you need help,", + "start": 4129.14, + "end": 4130.34, + "words": [ + { + "word": " Like,", + "start": 4129.14, + "end": 4129.58, + "probability": 0.9775390625 + }, + { + "word": " if", + "start": 4129.58, + "end": 4129.68, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4129.68, + "end": 4129.78, + "probability": 1.0 + }, + { + "word": " need", + "start": 4129.78, + "end": 4130.04, + "probability": 1.0 + }, + { + "word": " help,", + "start": 4130.04, + "end": 4130.34, + "probability": 1.0 + } + ] + }, + { + "id": 2033, + "text": "we do five-minute free phone support at Computer Guru.", + "start": 4130.4, + "end": 4134.2, + "words": [ + { + "word": " we", + "start": 4130.4, + "end": 4130.56, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4130.56, + "end": 4130.72, + "probability": 1.0 + }, + { + "word": " five", + "start": 4130.72, + "end": 4131.1, + "probability": 0.9560546875 + }, + { + "word": "-minute", + "start": 4131.1, + "end": 4131.4, + "probability": 0.86962890625 + }, + { + "word": " free", + "start": 4131.4, + "end": 4131.66, + "probability": 0.998046875 + }, + { + "word": " phone", + "start": 4131.66, + "end": 4132.1, + "probability": 0.99951171875 + }, + { + "word": " support", + "start": 4132.1, + "end": 4132.42, + "probability": 0.9423828125 + }, + { + "word": " at", + "start": 4132.42, + "end": 4133.46, + "probability": 0.99853515625 + }, + { + "word": " Computer", + "start": 4133.46, + "end": 4133.94, + "probability": 0.98779296875 + }, + { + "word": " Guru.", + "start": 4133.94, + "end": 4134.2, + "probability": 0.59765625 + } + ] + }, + { + "id": 2034, + "text": "If you call up and you have just a basic,", + "start": 4134.36, + "end": 4136.44, + "words": [ + { + "word": " If", + "start": 4134.36, + "end": 4134.74, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4134.74, + "end": 4134.82, + "probability": 1.0 + }, + { + "word": " call", + "start": 4134.82, + "end": 4135.0, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4135.0, + "end": 4135.18, + "probability": 1.0 + }, + { + "word": " and", + "start": 4135.18, + "end": 4135.3, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4135.3, + "end": 4135.4, + "probability": 1.0 + }, + { + "word": " have", + "start": 4135.4, + "end": 4135.56, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4135.56, + "end": 4135.88, + "probability": 0.986328125 + }, + { + "word": " a", + "start": 4135.88, + "end": 4136.1, + "probability": 1.0 + }, + { + "word": " basic,", + "start": 4136.1, + "end": 4136.44, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2035, + "text": "basic question on how to do something", + "start": 4136.44, + "end": 4137.68, + "words": [ + { + "word": " basic", + "start": 4136.44, + "end": 4136.52, + "probability": 0.0176849365234375 + }, + { + "word": " question", + "start": 4136.52, + "end": 4136.76, + "probability": 0.99072265625 + }, + { + "word": " on", + "start": 4136.76, + "end": 4136.92, + "probability": 0.6396484375 + }, + { + "word": " how", + "start": 4136.92, + "end": 4137.08, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4137.08, + "end": 4137.22, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4137.22, + "end": 4137.36, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 4137.36, + "end": 4137.68, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2036, + "text": "and it's five minutes or less,", + "start": 4137.68, + "end": 4140.42, + "words": [ + { + "word": " and", + "start": 4137.68, + "end": 4138.26, + "probability": 0.337646484375 + }, + { + "word": " it's", + "start": 4138.26, + "end": 4138.7, + "probability": 0.99560546875 + }, + { + "word": " five", + "start": 4138.7, + "end": 4138.92, + "probability": 0.89208984375 + }, + { + "word": " minutes", + "start": 4138.92, + "end": 4139.32, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4139.32, + "end": 4140.1, + "probability": 0.982421875 + }, + { + "word": " less,", + "start": 4140.1, + "end": 4140.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2037, + "text": "it's free.", + "start": 4140.900000000001, + "end": 4141.64, + "words": [ + { + "word": " it's", + "start": 4140.900000000001, + "end": 4141.3, + "probability": 0.9990234375 + }, + { + "word": " free.", + "start": 4141.3, + "end": 4141.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2038, + "text": "So, all you've got to do is call and ask for help.", + "start": 4141.88, + "end": 4143.84, + "words": [ + { + "word": " So,", + "start": 4141.88, + "end": 4142.28, + "probability": 0.513671875 + }, + { + "word": " all", + "start": 4142.34, + "end": 4142.4, + "probability": 0.84619140625 + }, + { + "word": " you've", + "start": 4142.4, + "end": 4142.56, + "probability": 0.67333984375 + }, + { + "word": " got", + "start": 4142.56, + "end": 4142.56, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 4142.56, + "end": 4142.66, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 4142.66, + "end": 4142.78, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4142.78, + "end": 4142.82, + "probability": 0.99853515625 + }, + { + "word": " call", + "start": 4142.82, + "end": 4143.04, + "probability": 0.99462890625 + }, + { + "word": " and", + "start": 4143.04, + "end": 4143.18, + "probability": 0.9931640625 + }, + { + "word": " ask", + "start": 4143.18, + "end": 4143.38, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 4143.38, + "end": 4143.56, + "probability": 0.99853515625 + }, + { + "word": " help.", + "start": 4143.56, + "end": 4143.84, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2039, + "text": "I know.", + "start": 4144.16, + "end": 4144.74, + "words": [ + { + "word": " I", + "start": 4144.16, + "end": 4144.56, + "probability": 0.83251953125 + }, + { + "word": " know.", + "start": 4144.56, + "end": 4144.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2040, + "text": "You've worked on my machines before", + "start": 4144.78, + "end": 4146.4, + "words": [ + { + "word": " You've", + "start": 4144.78, + "end": 4145.18, + "probability": 0.99560546875 + }, + { + "word": " worked", + "start": 4145.18, + "end": 4145.36, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4145.36, + "end": 4145.54, + "probability": 0.99951171875 + }, + { + "word": " my", + "start": 4145.54, + "end": 4145.7, + "probability": 0.99951171875 + }, + { + "word": " machines", + "start": 4145.7, + "end": 4145.98, + "probability": 0.99951171875 + }, + { + "word": " before", + "start": 4145.98, + "end": 4146.4, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2041, + "text": "and you guys are awesome.", + "start": 4146.4, + "end": 4147.26, + "words": [ + { + "word": " and", + "start": 4146.4, + "end": 4146.6, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 4146.6, + "end": 4146.66, + "probability": 0.99951171875 + }, + { + "word": " guys", + "start": 4146.66, + "end": 4146.84, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4146.84, + "end": 4146.98, + "probability": 0.99951171875 + }, + { + "word": " awesome.", + "start": 4146.98, + "end": 4147.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2042, + "text": "So, I appreciate all the help that I get from your store.", + "start": 4147.68, + "end": 4151.46, + "words": [ + { + "word": " So,", + "start": 4147.68, + "end": 4148.08, + "probability": 0.99072265625 + }, + { + "word": " I", + "start": 4148.16, + "end": 4148.42, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 4148.42, + "end": 4148.74, + "probability": 1.0 + }, + { + "word": " all", + "start": 4148.74, + "end": 4149.0, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4149.0, + "end": 4149.14, + "probability": 0.9990234375 + }, + { + "word": " help", + "start": 4149.14, + "end": 4149.34, + "probability": 1.0 + }, + { + "word": " that", + "start": 4149.34, + "end": 4149.48, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 4149.48, + "end": 4149.6, + "probability": 1.0 + }, + { + "word": " get", + "start": 4149.6, + "end": 4149.76, + "probability": 0.99951171875 + }, + { + "word": " from", + "start": 4149.76, + "end": 4149.98, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4149.98, + "end": 4150.22, + "probability": 0.9990234375 + }, + { + "word": " store.", + "start": 4150.22, + "end": 4151.46, + "probability": 0.9423828125 + } + ] + }, + { + "id": 2043, + "text": "You guys are great.", + "start": 4151.66, + "end": 4152.4, + "words": [ + { + "word": " You", + "start": 4151.66, + "end": 4151.78, + "probability": 0.99609375 + }, + { + "word": " guys", + "start": 4151.78, + "end": 4151.98, + "probability": 1.0 + }, + { + "word": " are", + "start": 4151.98, + "end": 4152.14, + "probability": 1.0 + }, + { + "word": " great.", + "start": 4152.14, + "end": 4152.4, + "probability": 1.0 + } + ] + }, + { + "id": 2044, + "text": "Well, I appreciate that.", + "start": 4152.62, + "end": 4153.44, + "words": [ + { + "word": " Well,", + "start": 4152.62, + "end": 4152.84, + "probability": 0.93408203125 + }, + { + "word": " I", + "start": 4152.88, + "end": 4152.88, + "probability": 0.99365234375 + }, + { + "word": " appreciate", + "start": 4152.88, + "end": 4153.2, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4153.2, + "end": 4153.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2045, + "text": "Okay, well, I appreciate that.", + "start": 4153.48, + "end": 4155.18, + "words": [ + { + "word": " Okay,", + "start": 4153.48, + "end": 4153.54, + "probability": 0.56982421875 + }, + { + "word": " well,", + "start": 4153.54, + "end": 4153.56, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 4153.74, + "end": 4154.22, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 4154.22, + "end": 4154.78, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4154.78, + "end": 4155.18, + "probability": 1.0 + } + ] + }, + { + "id": 2046, + "text": "And I'll let you get back to taking some other calls", + "start": 4155.32, + "end": 4157.7, + "words": [ + { + "word": " And", + "start": 4155.32, + "end": 4155.7, + "probability": 0.98974609375 + }, + { + "word": " I'll", + "start": 4155.7, + "end": 4155.9, + "probability": 0.98291015625 + }, + { + "word": " let", + "start": 4155.9, + "end": 4156.02, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4156.02, + "end": 4156.18, + "probability": 1.0 + }, + { + "word": " get", + "start": 4156.18, + "end": 4156.34, + "probability": 0.99951171875 + }, + { + "word": " back", + "start": 4156.34, + "end": 4156.56, + "probability": 1.0 + }, + { + "word": " to", + "start": 4156.56, + "end": 4156.7, + "probability": 0.994140625 + }, + { + "word": " taking", + "start": 4156.7, + "end": 4156.94, + "probability": 0.99951171875 + }, + { + "word": " some", + "start": 4156.94, + "end": 4157.12, + "probability": 1.0 + }, + { + "word": " other", + "start": 4157.12, + "end": 4157.34, + "probability": 1.0 + }, + { + "word": " calls", + "start": 4157.34, + "end": 4157.7, + "probability": 1.0 + } + ] + }, + { + "id": 2047, + "text": "and enjoy your family time.", + "start": 4157.7, + "end": 4159.48, + "words": [ + { + "word": " and", + "start": 4157.7, + "end": 4158.24, + "probability": 0.9970703125 + }, + { + "word": " enjoy", + "start": 4158.24, + "end": 4158.68, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4158.68, + "end": 4158.88, + "probability": 1.0 + }, + { + "word": " family", + "start": 4158.88, + "end": 4159.16, + "probability": 0.9990234375 + }, + { + "word": " time.", + "start": 4159.16, + "end": 4159.48, + "probability": 1.0 + } + ] + }, + { + "id": 2048, + "text": "Thank you very much.", + "start": 4159.7, + "end": 4160.62, + "words": [ + { + "word": " Thank", + "start": 4159.7, + "end": 4159.98, + "probability": 0.998046875 + }, + { + "word": " you", + "start": 4159.98, + "end": 4160.16, + "probability": 1.0 + }, + { + "word": " very", + "start": 4160.16, + "end": 4160.34, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 4160.34, + "end": 4160.62, + "probability": 1.0 + } + ] + }, + { + "id": 2049, + "text": "I appreciate that.", + "start": 4160.74, + "end": 4161.46, + "words": [ + { + "word": " I", + "start": 4160.74, + "end": 4160.82, + "probability": 0.9921875 + }, + { + "word": " appreciate", + "start": 4160.82, + "end": 4161.12, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4161.12, + "end": 4161.46, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2050, + "text": "You're welcome.", + "start": 4161.64, + "end": 4161.66, + "words": [ + { + "word": " You're", + "start": 4161.64, + "end": 4161.66, + "probability": 0.9111328125 + }, + { + "word": " welcome.", + "start": 4161.66, + "end": 4161.66, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2051, + "text": "We're going to go ahead and take a break.", + "start": 4161.7, + "end": 4162.94, + "words": [ + { + "word": " We're", + "start": 4161.7, + "end": 4162.1, + "probability": 0.96484375 + }, + { + "word": " going", + "start": 4162.1, + "end": 4162.16, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 4162.16, + "end": 4162.2, + "probability": 1.0 + }, + { + "word": " go", + "start": 4162.2, + "end": 4162.28, + "probability": 0.9990234375 + }, + { + "word": " ahead", + "start": 4162.28, + "end": 4162.38, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 4162.38, + "end": 4162.44, + "probability": 0.99951171875 + }, + { + "word": " take", + "start": 4162.44, + "end": 4162.62, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4162.62, + "end": 4162.72, + "probability": 1.0 + }, + { + "word": " break.", + "start": 4162.72, + "end": 4162.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2052, + "text": "And if you'd like to be part of the show", + "start": 4163.0, + "end": 4164.16, + "words": [ + { + "word": " And", + "start": 4163.0, + "end": 4163.12, + "probability": 0.970703125 + }, + { + "word": " if", + "start": 4163.12, + "end": 4163.2, + "probability": 0.99658203125 + }, + { + "word": " you'd", + "start": 4163.2, + "end": 4163.38, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4163.38, + "end": 4163.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4163.46, + "end": 4163.56, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 4163.56, + "end": 4163.64, + "probability": 0.99951171875 + }, + { + "word": " part", + "start": 4163.64, + "end": 4163.78, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 4163.78, + "end": 4163.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 4163.9, + "end": 4163.94, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 4163.94, + "end": 4164.16, + "probability": 0.998046875 + } + ] + }, + { + "id": 2053, + "text": "for the last Computer Guru Show,", + "start": 4164.16, + "end": 4166.42, + "words": [ + { + "word": " for", + "start": 4164.16, + "end": 4164.48, + "probability": 0.60302734375 + }, + { + "word": " the", + "start": 4164.48, + "end": 4164.64, + "probability": 0.94287109375 + }, + { + "word": " last", + "start": 4164.64, + "end": 4165.1, + "probability": 0.96337890625 + }, + { + "word": " Computer", + "start": 4165.1, + "end": 4165.68, + "probability": 0.9267578125 + }, + { + "word": " Guru", + "start": 4165.68, + "end": 4166.04, + "probability": 0.9921875 + }, + { + "word": " Show,", + "start": 4166.04, + "end": 4166.42, + "probability": 0.765625 + } + ] + }, + { + "id": 2054, + "text": "that is going to be on air 790-2040.", + "start": 4166.44, + "end": 4169.7, + "words": [ + { + "word": " that", + "start": 4166.44, + "end": 4166.68, + "probability": 0.276123046875 + }, + { + "word": " is", + "start": 4166.68, + "end": 4166.96, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 4166.96, + "end": 4167.14, + "probability": 0.97412109375 + }, + { + "word": " to", + "start": 4167.14, + "end": 4167.28, + "probability": 1.0 + }, + { + "word": " be", + "start": 4167.28, + "end": 4167.34, + "probability": 1.0 + }, + { + "word": " on", + "start": 4167.34, + "end": 4167.54, + "probability": 1.0 + }, + { + "word": " air", + "start": 4167.54, + "end": 4167.8, + "probability": 0.99755859375 + }, + { + "word": " 790", + "start": 4167.8, + "end": 4168.94, + "probability": 0.6201171875 + }, + { + "word": "-2040.", + "start": 4168.94, + "end": 4169.7, + "probability": 0.81640625 + } + ] + }, + { + "id": 2055, + "text": "We'll be back.", + "start": 4169.8, + "end": 4170.5, + "words": [ + { + "word": " We'll", + "start": 4169.8, + "end": 4170.2, + "probability": 0.99853515625 + }, + { + "word": " be", + "start": 4170.2, + "end": 4170.28, + "probability": 1.0 + }, + { + "word": " back.", + "start": 4170.28, + "end": 4170.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 2056, + "text": "We'll be back.", + "start": 4213.420000000001, + "end": 4216.24, + "words": [ + { + "word": " We'll", + "start": 4213.420000000001, + "end": 4214.820000000001, + "probability": 0.44677734375 + }, + { + "word": " be", + "start": 4214.820000000001, + "end": 4216.22, + "probability": 0.4287109375 + }, + { + "word": " back.", + "start": 4216.22, + "end": 4216.24, + "probability": 0.022613525390625 + } + ] + }, + { + "id": 2057, + "text": "What can I do for you, Jeff?", + "start": 4226.44, + "end": 4227.06, + "words": [ + { + "word": " What", + "start": 4226.44, + "end": 4226.48, + "probability": 0.9638671875 + }, + { + "word": " can", + "start": 4226.48, + "end": 4226.58, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4226.58, + "end": 4226.66, + "probability": 0.99462890625 + }, + { + "word": " do", + "start": 4226.66, + "end": 4226.66, + "probability": 1.0 + }, + { + "word": " for", + "start": 4226.66, + "end": 4226.8, + "probability": 1.0 + }, + { + "word": " you,", + "start": 4226.8, + "end": 4226.88, + "probability": 1.0 + }, + { + "word": " Jeff?", + "start": 4226.92, + "end": 4227.06, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2058, + "text": "Jeff, what?", + "start": 4227.34, + "end": 4228.04, + "words": [ + { + "word": " Jeff,", + "start": 4227.34, + "end": 4227.9, + "probability": 0.85498046875 + }, + { + "word": " what?", + "start": 4227.9, + "end": 4228.04, + "probability": 0.1988525390625 + } + ] + }, + { + "id": 2059, + "text": "I was reading an article the other day", + "start": 4228.14, + "end": 4231.68, + "words": [ + { + "word": " I", + "start": 4228.14, + "end": 4228.66, + "probability": 0.87841796875 + }, + { + "word": " was", + "start": 4228.66, + "end": 4228.82, + "probability": 0.9990234375 + }, + { + "word": " reading", + "start": 4228.82, + "end": 4229.34, + "probability": 1.0 + }, + { + "word": " an", + "start": 4229.34, + "end": 4229.54, + "probability": 0.99853515625 + }, + { + "word": " article", + "start": 4229.54, + "end": 4230.4, + "probability": 1.0 + }, + { + "word": " the", + "start": 4230.4, + "end": 4231.0, + "probability": 0.99853515625 + }, + { + "word": " other", + "start": 4231.0, + "end": 4231.44, + "probability": 1.0 + }, + { + "word": " day", + "start": 4231.44, + "end": 4231.68, + "probability": 1.0 + } + ] + }, + { + "id": 2060, + "text": "just on one of the PC mag or sites", + "start": 4231.68, + "end": 4234.78, + "words": [ + { + "word": " just", + "start": 4231.68, + "end": 4232.02, + "probability": 0.9169921875 + }, + { + "word": " on", + "start": 4232.02, + "end": 4232.22, + "probability": 1.0 + }, + { + "word": " one", + "start": 4232.22, + "end": 4232.5, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 4232.5, + "end": 4232.64, + "probability": 1.0 + }, + { + "word": " the", + "start": 4232.64, + "end": 4232.8, + "probability": 1.0 + }, + { + "word": " PC", + "start": 4232.8, + "end": 4233.74, + "probability": 0.84765625 + }, + { + "word": " mag", + "start": 4233.74, + "end": 4234.06, + "probability": 0.72314453125 + }, + { + "word": " or", + "start": 4234.06, + "end": 4234.36, + "probability": 0.68212890625 + }, + { + "word": " sites", + "start": 4234.36, + "end": 4234.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2061, + "text": "or something like that.", + "start": 4234.78, + "end": 4235.82, + "words": [ + { + "word": " or", + "start": 4234.78, + "end": 4235.04, + "probability": 0.9990234375 + }, + { + "word": " something", + "start": 4235.04, + "end": 4235.3, + "probability": 1.0 + }, + { + "word": " like", + "start": 4235.3, + "end": 4235.54, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4235.54, + "end": 4235.82, + "probability": 1.0 + } + ] + }, + { + "id": 2062, + "text": "And they were mentioning something called", + "start": 4236.08, + "end": 4238.36, + "words": [ + { + "word": " And", + "start": 4236.08, + "end": 4236.64, + "probability": 0.88525390625 + }, + { + "word": " they", + "start": 4236.64, + "end": 4236.82, + "probability": 0.99951171875 + }, + { + "word": " were", + "start": 4236.82, + "end": 4237.04, + "probability": 1.0 + }, + { + "word": " mentioning", + "start": 4237.04, + "end": 4237.4, + "probability": 1.0 + }, + { + "word": " something", + "start": 4237.4, + "end": 4237.84, + "probability": 1.0 + }, + { + "word": " called", + "start": 4237.84, + "end": 4238.36, + "probability": 1.0 + } + ] + }, + { + "id": 2063, + "text": "Google's Name Bench.", + "start": 4238.36, + "end": 4240.34, + "words": [ + { + "word": " Google's", + "start": 4238.36, + "end": 4239.38, + "probability": 1.0 + }, + { + "word": " Name", + "start": 4239.38, + "end": 4239.74, + "probability": 0.84130859375 + }, + { + "word": " Bench.", + "start": 4239.74, + "end": 4240.34, + "probability": 0.8369140625 + } + ] + }, + { + "id": 2064, + "text": "And what it is,", + "start": 4240.96, + "end": 4242.14, + "words": [ + { + "word": " And", + "start": 4240.96, + "end": 4241.52, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 4241.52, + "end": 4241.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 4241.7, + "end": 4241.82, + "probability": 1.0 + }, + { + "word": " is,", + "start": 4241.82, + "end": 4242.14, + "probability": 1.0 + } + ] + }, + { + "id": 2065, + "text": "is a DNS optimization service or tool or something", + "start": 4242.14, + "end": 4247.86, + "words": [ + { + "word": " is", + "start": 4242.14, + "end": 4242.36, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4242.36, + "end": 4242.78, + "probability": 1.0 + }, + { + "word": " DNS", + "start": 4242.78, + "end": 4243.74, + "probability": 1.0 + }, + { + "word": " optimization", + "start": 4243.74, + "end": 4245.58, + "probability": 0.99951171875 + }, + { + "word": " service", + "start": 4245.58, + "end": 4246.46, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 4246.46, + "end": 4246.86, + "probability": 0.99951171875 + }, + { + "word": " tool", + "start": 4246.86, + "end": 4247.12, + "probability": 1.0 + }, + { + "word": " or", + "start": 4247.12, + "end": 4247.58, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 4247.58, + "end": 4247.86, + "probability": 1.0 + } + ] + }, + { + "id": 2066, + "text": "that recommends the best DNS servers to use", + "start": 4247.86, + "end": 4251.84, + "words": [ + { + "word": " that", + "start": 4247.86, + "end": 4248.48, + "probability": 0.998046875 + }, + { + "word": " recommends", + "start": 4248.48, + "end": 4249.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4249.06, + "end": 4249.5, + "probability": 1.0 + }, + { + "word": " best", + "start": 4249.5, + "end": 4249.84, + "probability": 1.0 + }, + { + "word": " DNS", + "start": 4249.84, + "end": 4250.8, + "probability": 1.0 + }, + { + "word": " servers", + "start": 4250.8, + "end": 4251.22, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4251.22, + "end": 4251.54, + "probability": 1.0 + }, + { + "word": " use", + "start": 4251.54, + "end": 4251.84, + "probability": 1.0 + } + ] + }, + { + "id": 2067, + "text": "for your home network.", + "start": 4251.84, + "end": 4253.56, + "words": [ + { + "word": " for", + "start": 4251.84, + "end": 4252.26, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4252.26, + "end": 4252.46, + "probability": 1.0 + }, + { + "word": " home", + "start": 4252.46, + "end": 4252.8, + "probability": 0.99951171875 + }, + { + "word": " network.", + "start": 4252.8, + "end": 4253.56, + "probability": 1.0 + } + ] + }, + { + "id": 2068, + "text": "Okay.", + "start": 4253.94, + "end": 4254.26, + "words": [ + { + "word": " Okay.", + "start": 4253.94, + "end": 4254.26, + "probability": 0.61376953125 + } + ] + }, + { + "id": 2069, + "text": "What do you think about that?", + "start": 4254.36, + "end": 4255.26, + "words": [ + { + "word": " What", + "start": 4254.36, + "end": 4254.52, + "probability": 0.9794921875 + }, + { + "word": " do", + "start": 4254.52, + "end": 4254.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 4254.58, + "end": 4254.64, + "probability": 1.0 + }, + { + "word": " think", + "start": 4254.64, + "end": 4254.78, + "probability": 1.0 + }, + { + "word": " about", + "start": 4254.78, + "end": 4255.04, + "probability": 1.0 + }, + { + "word": " that?", + "start": 4255.04, + "end": 4255.26, + "probability": 1.0 + } + ] + }, + { + "id": 2070, + "text": "Is that worthwhile?", + "start": 4255.32, + "end": 4255.88, + "words": [ + { + "word": " Is", + "start": 4255.32, + "end": 4255.44, + "probability": 0.990234375 + }, + { + "word": " that", + "start": 4255.44, + "end": 4255.54, + "probability": 1.0 + }, + { + "word": " worthwhile?", + "start": 4255.54, + "end": 4255.88, + "probability": 0.998046875 + } + ] + }, + { + "id": 2071, + "text": "To look into and safe and all that", + "start": 4255.88, + "end": 4258.04, + "words": [ + { + "word": " To", + "start": 4255.88, + "end": 4256.1, + "probability": 0.0123748779296875 + }, + { + "word": " look", + "start": 4256.1, + "end": 4256.38, + "probability": 0.96630859375 + }, + { + "word": " into", + "start": 4256.38, + "end": 4256.68, + "probability": 0.99853515625 + }, + { + "word": " and", + "start": 4256.68, + "end": 4257.16, + "probability": 0.93603515625 + }, + { + "word": " safe", + "start": 4257.16, + "end": 4257.46, + "probability": 0.58154296875 + }, + { + "word": " and", + "start": 4257.46, + "end": 4257.7, + "probability": 0.98486328125 + }, + { + "word": " all", + "start": 4257.7, + "end": 4257.84, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4257.84, + "end": 4258.04, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2072, + "text": "to find the best DNS server for optimizing speed?", + "start": 4258.04, + "end": 4261.22, + "words": [ + { + "word": " to", + "start": 4258.04, + "end": 4258.28, + "probability": 0.71728515625 + }, + { + "word": " find", + "start": 4258.28, + "end": 4258.96, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 4258.96, + "end": 4259.1, + "probability": 0.99951171875 + }, + { + "word": " best", + "start": 4259.1, + "end": 4259.28, + "probability": 1.0 + }, + { + "word": " DNS", + "start": 4259.28, + "end": 4259.54, + "probability": 0.95751953125 + }, + { + "word": " server", + "start": 4259.54, + "end": 4259.92, + "probability": 0.99853515625 + }, + { + "word": " for", + "start": 4259.92, + "end": 4260.22, + "probability": 0.99853515625 + }, + { + "word": " optimizing", + "start": 4260.22, + "end": 4260.78, + "probability": 0.99755859375 + }, + { + "word": " speed?", + "start": 4260.78, + "end": 4261.22, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2073, + "text": "I mean, in a home instance,", + "start": 4261.780000000001, + "end": 4264.52, + "words": [ + { + "word": " I", + "start": 4261.780000000001, + "end": 4262.26, + "probability": 0.94140625 + }, + { + "word": " mean,", + "start": 4262.26, + "end": 4262.52, + "probability": 0.9931640625 + }, + { + "word": " in", + "start": 4262.58, + "end": 4263.66, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4263.66, + "end": 4263.84, + "probability": 0.98486328125 + }, + { + "word": " home", + "start": 4263.84, + "end": 4264.1, + "probability": 0.9990234375 + }, + { + "word": " instance,", + "start": 4264.1, + "end": 4264.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2074, + "text": "I don't know how important that would really be.", + "start": 4264.66, + "end": 4266.62, + "words": [ + { + "word": " I", + "start": 4264.66, + "end": 4264.86, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4264.86, + "end": 4264.96, + "probability": 1.0 + }, + { + "word": " know", + "start": 4264.96, + "end": 4265.06, + "probability": 1.0 + }, + { + "word": " how", + "start": 4265.06, + "end": 4265.2, + "probability": 1.0 + }, + { + "word": " important", + "start": 4265.2, + "end": 4265.56, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4265.56, + "end": 4265.98, + "probability": 1.0 + }, + { + "word": " would", + "start": 4265.98, + "end": 4266.08, + "probability": 1.0 + }, + { + "word": " really", + "start": 4266.08, + "end": 4266.28, + "probability": 1.0 + }, + { + "word": " be.", + "start": 4266.28, + "end": 4266.62, + "probability": 1.0 + } + ] + }, + { + "id": 2075, + "text": "I mean, because DNS is pretty fast.", + "start": 4267.280000000001, + "end": 4269.06, + "words": [ + { + "word": " I", + "start": 4267.280000000001, + "end": 4267.76, + "probability": 0.8642578125 + }, + { + "word": " mean,", + "start": 4267.76, + "end": 4268.0, + "probability": 1.0 + }, + { + "word": " because", + "start": 4268.06, + "end": 4268.18, + "probability": 0.99072265625 + }, + { + "word": " DNS", + "start": 4268.18, + "end": 4268.44, + "probability": 1.0 + }, + { + "word": " is", + "start": 4268.44, + "end": 4268.64, + "probability": 1.0 + }, + { + "word": " pretty", + "start": 4268.64, + "end": 4268.8, + "probability": 1.0 + }, + { + "word": " fast.", + "start": 4268.8, + "end": 4269.06, + "probability": 1.0 + } + ] + }, + { + "id": 2076, + "text": "I'd usually set people to Google DNS to begin with,", + "start": 4269.16, + "end": 4271.32, + "words": [ + { + "word": " I'd", + "start": 4269.16, + "end": 4269.3, + "probability": 0.99609375 + }, + { + "word": " usually", + "start": 4269.3, + "end": 4269.48, + "probability": 1.0 + }, + { + "word": " set", + "start": 4269.48, + "end": 4269.76, + "probability": 0.99609375 + }, + { + "word": " people", + "start": 4269.76, + "end": 4270.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4270.0, + "end": 4270.12, + "probability": 0.99951171875 + }, + { + "word": " Google", + "start": 4270.12, + "end": 4270.28, + "probability": 0.99755859375 + }, + { + "word": " DNS", + "start": 4270.28, + "end": 4270.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 4270.64, + "end": 4270.9, + "probability": 1.0 + }, + { + "word": " begin", + "start": 4270.9, + "end": 4271.06, + "probability": 1.0 + }, + { + "word": " with,", + "start": 4271.06, + "end": 4271.32, + "probability": 1.0 + } + ] + }, + { + "id": 2077, + "text": "you know, using 8.8.8.8.", + "start": 4271.46, + "end": 4274.5, + "words": [ + { + "word": " you", + "start": 4271.46, + "end": 4271.92, + "probability": 0.73974609375 + }, + { + "word": " know,", + "start": 4271.92, + "end": 4272.06, + "probability": 1.0 + }, + { + "word": " using", + "start": 4272.12, + "end": 4272.4, + "probability": 0.99951171875 + }, + { + "word": " 8", + "start": 4272.4, + "end": 4272.64, + "probability": 0.63525390625 + }, + { + "word": ".8", + "start": 4272.64, + "end": 4273.0, + "probability": 0.99951171875 + }, + { + "word": ".8", + "start": 4273.0, + "end": 4273.4, + "probability": 1.0 + }, + { + "word": ".8.", + "start": 4273.4, + "end": 4274.5, + "probability": 0.6845703125 + } + ] + }, + { + "id": 2078, + "text": "But I don't know how important that would be", + "start": 4275.780000000001, + "end": 4278.7, + "words": [ + { + "word": " But", + "start": 4275.780000000001, + "end": 4276.26, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 4276.26, + "end": 4276.7, + "probability": 0.99462890625 + }, + { + "word": " don't", + "start": 4276.7, + "end": 4277.76, + "probability": 1.0 + }, + { + "word": " know", + "start": 4277.76, + "end": 4277.84, + "probability": 1.0 + }, + { + "word": " how", + "start": 4277.84, + "end": 4277.96, + "probability": 1.0 + }, + { + "word": " important", + "start": 4277.96, + "end": 4278.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 4278.26, + "end": 4278.42, + "probability": 1.0 + }, + { + "word": " would", + "start": 4278.42, + "end": 4278.52, + "probability": 1.0 + }, + { + "word": " be", + "start": 4278.52, + "end": 4278.7, + "probability": 1.0 + } + ] + }, + { + "id": 2079, + "text": "on sort of a home network.", + "start": 4278.7, + "end": 4280.7, + "words": [ + { + "word": " on", + "start": 4278.7, + "end": 4278.86, + "probability": 1.0 + }, + { + "word": " sort", + "start": 4278.86, + "end": 4279.52, + "probability": 0.9189453125 + }, + { + "word": " of", + "start": 4279.52, + "end": 4279.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 4279.92, + "end": 4280.02, + "probability": 1.0 + }, + { + "word": " home", + "start": 4280.02, + "end": 4280.28, + "probability": 1.0 + }, + { + "word": " network.", + "start": 4280.28, + "end": 4280.7, + "probability": 1.0 + } + ] + }, + { + "id": 2080, + "text": "I could see it in,", + "start": 4280.96, + "end": 4281.94, + "words": [ + { + "word": " I", + "start": 4280.96, + "end": 4281.28, + "probability": 0.99951171875 + }, + { + "word": " could", + "start": 4281.28, + "end": 4281.4, + "probability": 0.9990234375 + }, + { + "word": " see", + "start": 4281.4, + "end": 4281.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 4281.6, + "end": 4281.7, + "probability": 1.0 + }, + { + "word": " in,", + "start": 4281.7, + "end": 4281.94, + "probability": 0.91943359375 + } + ] + }, + { + "id": 2081, + "text": "if you have like a high traffic outbound,", + "start": 4281.96, + "end": 4284.88, + "words": [ + { + "word": " if", + "start": 4281.96, + "end": 4282.5, + "probability": 1.0 + }, + { + "word": " you", + "start": 4282.5, + "end": 4282.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 4282.6, + "end": 4282.7, + "probability": 1.0 + }, + { + "word": " like", + "start": 4282.7, + "end": 4282.84, + "probability": 0.88671875 + }, + { + "word": " a", + "start": 4282.84, + "end": 4282.94, + "probability": 1.0 + }, + { + "word": " high", + "start": 4282.94, + "end": 4283.22, + "probability": 1.0 + }, + { + "word": " traffic", + "start": 4283.22, + "end": 4283.76, + "probability": 0.94482421875 + }, + { + "word": " outbound,", + "start": 4283.76, + "end": 4284.88, + "probability": 0.9248046875 + } + ] + }, + { + "id": 2082, + "text": "outbound type of data center,", + "start": 4284.88, + "end": 4287.06, + "words": [ + { + "word": " outbound", + "start": 4284.88, + "end": 4285.46, + "probability": 0.65234375 + }, + { + "word": " type", + "start": 4285.46, + "end": 4286.4, + "probability": 0.97314453125 + }, + { + "word": " of", + "start": 4286.4, + "end": 4286.54, + "probability": 0.99951171875 + }, + { + "word": " data", + "start": 4286.54, + "end": 4286.68, + "probability": 0.994140625 + }, + { + "word": " center,", + "start": 4286.68, + "end": 4287.06, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2083, + "text": "that that would be super useful.", + "start": 4287.22, + "end": 4289.1, + "words": [ + { + "word": " that", + "start": 4287.22, + "end": 4287.6, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 4287.6, + "end": 4287.8, + "probability": 0.9833984375 + }, + { + "word": " would", + "start": 4287.8, + "end": 4287.94, + "probability": 1.0 + }, + { + "word": " be", + "start": 4287.94, + "end": 4288.18, + "probability": 1.0 + }, + { + "word": " super", + "start": 4288.18, + "end": 4288.74, + "probability": 1.0 + }, + { + "word": " useful.", + "start": 4288.74, + "end": 4289.1, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2084, + "text": "But I mean, we're talking about shaving milliseconds", + "start": 4289.5, + "end": 4292.68, + "words": [ + { + "word": " But", + "start": 4289.5, + "end": 4289.98, + "probability": 0.8994140625 + }, + { + "word": " I", + "start": 4289.98, + "end": 4290.24, + "probability": 0.1405029296875 + }, + { + "word": " mean,", + "start": 4290.24, + "end": 4290.42, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4290.44, + "end": 4290.7, + "probability": 0.99951171875 + }, + { + "word": " talking", + "start": 4290.7, + "end": 4291.1, + "probability": 0.98046875 + }, + { + "word": " about", + "start": 4291.1, + "end": 4291.3, + "probability": 1.0 + }, + { + "word": " shaving", + "start": 4291.3, + "end": 4291.6, + "probability": 0.9951171875 + }, + { + "word": " milliseconds", + "start": 4291.6, + "end": 4292.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2085, + "text": "off of things that take nanoseconds.", + "start": 4292.68, + "end": 4294.28, + "words": [ + { + "word": " off", + "start": 4292.68, + "end": 4293.1, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4293.1, + "end": 4293.2, + "probability": 1.0 + }, + { + "word": " things", + "start": 4293.2, + "end": 4293.38, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4293.38, + "end": 4293.52, + "probability": 1.0 + }, + { + "word": " take", + "start": 4293.52, + "end": 4293.7, + "probability": 1.0 + }, + { + "word": " nanoseconds.", + "start": 4293.7, + "end": 4294.28, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2086, + "text": "I don't know that, I don't know.", + "start": 4294.32, + "end": 4296.4, + "words": [ + { + "word": " I", + "start": 4294.32, + "end": 4294.54, + "probability": 0.99951171875 + }, + { + "word": " don't", + "start": 4294.54, + "end": 4294.7, + "probability": 1.0 + }, + { + "word": " know", + "start": 4294.7, + "end": 4294.84, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4294.84, + "end": 4295.0, + "probability": 0.5869140625 + }, + { + "word": " I", + "start": 4295.16, + "end": 4296.12, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4296.12, + "end": 4296.28, + "probability": 1.0 + }, + { + "word": " know.", + "start": 4296.28, + "end": 4296.4, + "probability": 1.0 + } + ] + }, + { + "id": 2087, + "text": "I don't know how useful that would actually be.", + "start": 4296.5, + "end": 4298.92, + "words": [ + { + "word": " I", + "start": 4296.5, + "end": 4296.98, + "probability": 0.9990234375 + }, + { + "word": " don't", + "start": 4296.98, + "end": 4297.12, + "probability": 1.0 + }, + { + "word": " know", + "start": 4297.12, + "end": 4297.22, + "probability": 1.0 + }, + { + "word": " how", + "start": 4297.22, + "end": 4297.36, + "probability": 0.99951171875 + }, + { + "word": " useful", + "start": 4297.36, + "end": 4297.88, + "probability": 1.0 + }, + { + "word": " that", + "start": 4297.88, + "end": 4298.18, + "probability": 1.0 + }, + { + "word": " would", + "start": 4298.18, + "end": 4298.32, + "probability": 1.0 + }, + { + "word": " actually", + "start": 4298.32, + "end": 4298.6, + "probability": 1.0 + }, + { + "word": " be.", + "start": 4298.6, + "end": 4298.92, + "probability": 1.0 + } + ] + }, + { + "id": 2088, + "text": "They were, the gist of it was,", + "start": 4300.4400000000005, + "end": 4302.46, + "words": [ + { + "word": " They", + "start": 4300.4400000000005, + "end": 4300.92, + "probability": 0.525390625 + }, + { + "word": " were,", + "start": 4300.92, + "end": 4301.16, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4301.24, + "end": 4301.6, + "probability": 0.99951171875 + }, + { + "word": " gist", + "start": 4301.6, + "end": 4302.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 4302.0, + "end": 4302.14, + "probability": 1.0 + }, + { + "word": " it", + "start": 4302.14, + "end": 4302.26, + "probability": 1.0 + }, + { + "word": " was,", + "start": 4302.26, + "end": 4302.46, + "probability": 1.0 + } + ] + }, + { + "id": 2089, + "text": "they were saying that, and you're probably right,", + "start": 4302.5, + "end": 4304.68, + "words": [ + { + "word": " they", + "start": 4302.5, + "end": 4302.66, + "probability": 0.99853515625 + }, + { + "word": " were", + "start": 4302.66, + "end": 4302.8, + "probability": 1.0 + }, + { + "word": " saying", + "start": 4302.8, + "end": 4303.1, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4303.1, + "end": 4303.48, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4303.52, + "end": 4303.76, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 4303.76, + "end": 4304.16, + "probability": 0.98046875 + }, + { + "word": " probably", + "start": 4304.16, + "end": 4304.4, + "probability": 1.0 + }, + { + "word": " right,", + "start": 4304.4, + "end": 4304.68, + "probability": 1.0 + } + ] + }, + { + "id": 2090, + "text": "it's probably just minuscule,", + "start": 4304.78, + "end": 4306.02, + "words": [ + { + "word": " it's", + "start": 4304.78, + "end": 4304.96, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4304.96, + "end": 4305.16, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 4305.16, + "end": 4305.44, + "probability": 1.0 + }, + { + "word": " minuscule,", + "start": 4305.44, + "end": 4306.02, + "probability": 0.984375 + } + ] + }, + { + "id": 2091, + "text": "but it analyzes the distance", + "start": 4306.1, + "end": 4308.98, + "words": [ + { + "word": " but", + "start": 4306.1, + "end": 4306.3, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 4306.3, + "end": 4307.68, + "probability": 0.99853515625 + }, + { + "word": " analyzes", + "start": 4307.68, + "end": 4308.34, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4308.34, + "end": 4308.58, + "probability": 1.0 + }, + { + "word": " distance", + "start": 4308.58, + "end": 4308.98, + "probability": 1.0 + } + ] + }, + { + "id": 2092, + "text": "and finds the best localized and fastest server", + "start": 4308.98, + "end": 4312.78, + "words": [ + { + "word": " and", + "start": 4308.98, + "end": 4309.78, + "probability": 0.978515625 + }, + { + "word": " finds", + "start": 4309.78, + "end": 4310.16, + "probability": 0.9072265625 + }, + { + "word": " the", + "start": 4310.16, + "end": 4310.8, + "probability": 1.0 + }, + { + "word": " best", + "start": 4310.8, + "end": 4311.0, + "probability": 1.0 + }, + { + "word": " localized", + "start": 4311.0, + "end": 4311.5, + "probability": 0.90966796875 + }, + { + "word": " and", + "start": 4311.5, + "end": 4311.96, + "probability": 1.0 + }, + { + "word": " fastest", + "start": 4311.96, + "end": 4312.28, + "probability": 1.0 + }, + { + "word": " server", + "start": 4312.28, + "end": 4312.78, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2093, + "text": "as kind of a tool to see,", + "start": 4312.78, + "end": 4314.68, + "words": [ + { + "word": " as", + "start": 4312.78, + "end": 4313.26, + "probability": 0.9970703125 + }, + { + "word": " kind", + "start": 4313.26, + "end": 4313.48, + "probability": 1.0 + }, + { + "word": " of", + "start": 4313.48, + "end": 4313.6, + "probability": 1.0 + }, + { + "word": " a", + "start": 4313.6, + "end": 4313.7, + "probability": 1.0 + }, + { + "word": " tool", + "start": 4313.7, + "end": 4313.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4313.98, + "end": 4314.38, + "probability": 0.99951171875 + }, + { + "word": " see,", + "start": 4314.38, + "end": 4314.68, + "probability": 0.9658203125 + } + ] + }, + { + "id": 2094, + "text": "you know, which one you should use in your network.", + "start": 4314.88, + "end": 4317.02, + "words": [ + { + "word": " you", + "start": 4314.88, + "end": 4314.88, + "probability": 0.320556640625 + }, + { + "word": " know,", + "start": 4314.88, + "end": 4315.0, + "probability": 0.99951171875 + }, + { + "word": " which", + "start": 4315.04, + "end": 4315.4, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 4315.4, + "end": 4315.6, + "probability": 1.0 + }, + { + "word": " you", + "start": 4315.6, + "end": 4315.74, + "probability": 1.0 + }, + { + "word": " should", + "start": 4315.74, + "end": 4315.9, + "probability": 1.0 + }, + { + "word": " use", + "start": 4315.9, + "end": 4316.22, + "probability": 1.0 + }, + { + "word": " in", + "start": 4316.22, + "end": 4316.36, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 4316.36, + "end": 4316.48, + "probability": 1.0 + }, + { + "word": " network.", + "start": 4316.48, + "end": 4317.02, + "probability": 1.0 + } + ] + }, + { + "id": 2095, + "text": "So it sounds like it's probably not worth", + "start": 4317.12, + "end": 4319.12, + "words": [ + { + "word": " So", + "start": 4317.12, + "end": 4317.34, + "probability": 0.99072265625 + }, + { + "word": " it", + "start": 4317.34, + "end": 4317.42, + "probability": 0.90087890625 + }, + { + "word": " sounds", + "start": 4317.42, + "end": 4317.96, + "probability": 1.0 + }, + { + "word": " like", + "start": 4317.96, + "end": 4318.1, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4318.1, + "end": 4318.26, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4318.26, + "end": 4318.54, + "probability": 1.0 + }, + { + "word": " not", + "start": 4318.54, + "end": 4318.8, + "probability": 1.0 + }, + { + "word": " worth", + "start": 4318.8, + "end": 4319.12, + "probability": 1.0 + } + ] + }, + { + "id": 2096, + "text": "the time for the speed gains that you would get, if any.", + "start": 4320.06, + "end": 4323.1, + "words": [ + { + "word": " the", + "start": 4320.06, + "end": 4320.5, + "probability": 0.99853515625 + }, + { + "word": " time", + "start": 4320.5, + "end": 4320.94, + "probability": 0.99560546875 + }, + { + "word": " for", + "start": 4320.94, + "end": 4321.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 4321.24, + "end": 4321.36, + "probability": 1.0 + }, + { + "word": " speed", + "start": 4321.36, + "end": 4321.8, + "probability": 0.98974609375 + }, + { + "word": " gains", + "start": 4321.8, + "end": 4322.1, + "probability": 0.5986328125 + }, + { + "word": " that", + "start": 4322.1, + "end": 4322.32, + "probability": 1.0 + }, + { + "word": " you", + "start": 4322.32, + "end": 4322.42, + "probability": 1.0 + }, + { + "word": " would", + "start": 4322.42, + "end": 4322.54, + "probability": 1.0 + }, + { + "word": " get,", + "start": 4322.54, + "end": 4322.72, + "probability": 1.0 + }, + { + "word": " if", + "start": 4322.78, + "end": 4322.92, + "probability": 0.99951171875 + }, + { + "word": " any.", + "start": 4322.92, + "end": 4323.1, + "probability": 1.0 + } + ] + }, + { + "id": 2097, + "text": "Yeah, I'm thinking that on a residential scale,", + "start": 4323.26, + "end": 4325.22, + "words": [ + { + "word": " Yeah,", + "start": 4323.26, + "end": 4323.54, + "probability": 0.99560546875 + }, + { + "word": " I'm", + "start": 4323.56, + "end": 4323.64, + "probability": 1.0 + }, + { + "word": " thinking", + "start": 4323.64, + "end": 4323.8, + "probability": 1.0 + }, + { + "word": " that", + "start": 4323.8, + "end": 4323.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 4323.98, + "end": 4324.12, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4324.12, + "end": 4324.22, + "probability": 0.99560546875 + }, + { + "word": " residential", + "start": 4324.22, + "end": 4324.82, + "probability": 0.994140625 + }, + { + "word": " scale,", + "start": 4324.82, + "end": 4325.22, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2098, + "text": "that probably is, it would be undecipherable", + "start": 4325.26, + "end": 4329.18, + "words": [ + { + "word": " that", + "start": 4325.26, + "end": 4325.42, + "probability": 0.89404296875 + }, + { + "word": " probably", + "start": 4325.42, + "end": 4325.84, + "probability": 0.99951171875 + }, + { + "word": " is,", + "start": 4325.84, + "end": 4326.1, + "probability": 0.1644287109375 + }, + { + "word": " it", + "start": 4326.22, + "end": 4326.96, + "probability": 0.93408203125 + }, + { + "word": " would", + "start": 4326.96, + "end": 4327.16, + "probability": 1.0 + }, + { + "word": " be", + "start": 4327.16, + "end": 4327.4, + "probability": 1.0 + }, + { + "word": " undecipherable", + "start": 4327.4, + "end": 4329.18, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2099, + "text": "as far as, you know,", + "start": 4329.18, + "end": 4330.12, + "words": [ + { + "word": " as", + "start": 4329.18, + "end": 4329.4, + "probability": 0.99560546875 + }, + { + "word": " far", + "start": 4329.4, + "end": 4329.56, + "probability": 0.99951171875 + }, + { + "word": " as,", + "start": 4329.56, + "end": 4329.88, + "probability": 1.0 + }, + { + "word": " you", + "start": 4329.9, + "end": 4330.0, + "probability": 0.9990234375 + }, + { + "word": " know,", + "start": 4330.0, + "end": 4330.12, + "probability": 0.984375 + } + ] + }, + { + "id": 2100, + "text": "you wouldn't be able to discern from one to another", + "start": 4330.12, + "end": 4333.52, + "words": [ + { + "word": " you", + "start": 4330.12, + "end": 4330.34, + "probability": 0.95849609375 + }, + { + "word": " wouldn't", + "start": 4330.34, + "end": 4330.98, + "probability": 1.0 + }, + { + "word": " be", + "start": 4330.98, + "end": 4331.04, + "probability": 1.0 + }, + { + "word": " able", + "start": 4331.04, + "end": 4331.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 4331.12, + "end": 4331.26, + "probability": 1.0 + }, + { + "word": " discern", + "start": 4331.26, + "end": 4331.68, + "probability": 1.0 + }, + { + "word": " from", + "start": 4331.68, + "end": 4332.12, + "probability": 1.0 + }, + { + "word": " one", + "start": 4332.12, + "end": 4332.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4332.46, + "end": 4333.16, + "probability": 1.0 + }, + { + "word": " another", + "start": 4333.16, + "end": 4333.52, + "probability": 1.0 + } + ] + }, + { + "id": 2101, + "text": "as far as if you were to change the DNS servers out", + "start": 4334.02, + "end": 4336.96, + "words": [ + { + "word": " as", + "start": 4334.02, + "end": 4334.46, + "probability": 0.84423828125 + }, + { + "word": " far", + "start": 4334.46, + "end": 4334.68, + "probability": 1.0 + }, + { + "word": " as", + "start": 4334.68, + "end": 4334.92, + "probability": 1.0 + }, + { + "word": " if", + "start": 4334.92, + "end": 4335.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 4335.08, + "end": 4335.16, + "probability": 1.0 + }, + { + "word": " were", + "start": 4335.16, + "end": 4335.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 4335.24, + "end": 4335.34, + "probability": 1.0 + }, + { + "word": " change", + "start": 4335.34, + "end": 4335.56, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4335.56, + "end": 4335.74, + "probability": 1.0 + }, + { + "word": " DNS", + "start": 4335.74, + "end": 4336.0, + "probability": 1.0 + }, + { + "word": " servers", + "start": 4336.0, + "end": 4336.58, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 4336.58, + "end": 4336.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2102, + "text": "and pick one that is, let's say, faster.", + "start": 4336.96, + "end": 4340.4, + "words": [ + { + "word": " and", + "start": 4336.96, + "end": 4337.34, + "probability": 0.99267578125 + }, + { + "word": " pick", + "start": 4337.34, + "end": 4338.04, + "probability": 0.994140625 + }, + { + "word": " one", + "start": 4338.04, + "end": 4338.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 4338.32, + "end": 4338.52, + "probability": 1.0 + }, + { + "word": " is,", + "start": 4338.52, + "end": 4338.84, + "probability": 1.0 + }, + { + "word": " let's", + "start": 4338.98, + "end": 4339.76, + "probability": 1.0 + }, + { + "word": " say,", + "start": 4339.76, + "end": 4339.96, + "probability": 1.0 + }, + { + "word": " faster.", + "start": 4339.96, + "end": 4340.4, + "probability": 1.0 + } + ] + }, + { + "id": 2103, + "text": "Because most of that stuff is so, I mean,", + "start": 4341.9800000000005, + "end": 4344.68, + "words": [ + { + "word": " Because", + "start": 4341.9800000000005, + "end": 4342.42, + "probability": 0.998046875 + }, + { + "word": " most", + "start": 4342.42, + "end": 4342.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4342.86, + "end": 4342.98, + "probability": 1.0 + }, + { + "word": " that", + "start": 4342.98, + "end": 4343.1, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4343.1, + "end": 4343.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 4343.36, + "end": 4343.54, + "probability": 1.0 + }, + { + "word": " so,", + "start": 4343.54, + "end": 4344.06, + "probability": 0.99853515625 + }, + { + "word": " I", + "start": 4344.06, + "end": 4344.38, + "probability": 0.99951171875 + }, + { + "word": " mean,", + "start": 4344.38, + "end": 4344.68, + "probability": 1.0 + } + ] + }, + { + "id": 2104, + "text": "so close to instant that I don't think that most people", + "start": 4344.68, + "end": 4348.22, + "words": [ + { + "word": " so", + "start": 4344.68, + "end": 4344.82, + "probability": 0.57861328125 + }, + { + "word": " close", + "start": 4344.82, + "end": 4345.38, + "probability": 1.0 + }, + { + "word": " to", + "start": 4345.38, + "end": 4345.58, + "probability": 0.99951171875 + }, + { + "word": " instant", + "start": 4345.58, + "end": 4346.02, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 4346.02, + "end": 4346.82, + "probability": 0.96435546875 + }, + { + "word": " I", + "start": 4346.82, + "end": 4347.08, + "probability": 0.927734375 + }, + { + "word": " don't", + "start": 4347.08, + "end": 4347.24, + "probability": 0.99951171875 + }, + { + "word": " think", + "start": 4347.24, + "end": 4347.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 4347.4, + "end": 4347.54, + "probability": 0.98583984375 + }, + { + "word": " most", + "start": 4347.54, + "end": 4347.9, + "probability": 0.99951171875 + }, + { + "word": " people", + "start": 4347.9, + "end": 4348.22, + "probability": 1.0 + } + ] + }, + { + "id": 2105, + "text": "are going to be able to tell the difference.", + "start": 4348.22, + "end": 4349.52, + "words": [ + { + "word": " are", + "start": 4348.22, + "end": 4348.36, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 4348.36, + "end": 4348.48, + "probability": 0.986328125 + }, + { + "word": " to", + "start": 4348.48, + "end": 4348.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 4348.58, + "end": 4348.68, + "probability": 0.99951171875 + }, + { + "word": " able", + "start": 4348.68, + "end": 4348.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 4348.8, + "end": 4348.92, + "probability": 1.0 + }, + { + "word": " tell", + "start": 4348.92, + "end": 4349.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 4349.12, + "end": 4349.26, + "probability": 1.0 + }, + { + "word": " difference.", + "start": 4349.26, + "end": 4349.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2106, + "text": "Now, as an example, if you are, like in my office, right,", + "start": 4350.54, + "end": 4354.76, + "words": [ + { + "word": " Now,", + "start": 4350.54, + "end": 4351.06, + "probability": 0.82275390625 + }, + { + "word": " as", + "start": 4351.12, + "end": 4351.22, + "probability": 1.0 + }, + { + "word": " an", + "start": 4351.22, + "end": 4351.3, + "probability": 1.0 + }, + { + "word": " example,", + "start": 4351.3, + "end": 4351.6, + "probability": 1.0 + }, + { + "word": " if", + "start": 4351.68, + "end": 4351.8, + "probability": 0.97412109375 + }, + { + "word": " you", + "start": 4351.8, + "end": 4351.92, + "probability": 1.0 + }, + { + "word": " are,", + "start": 4351.92, + "end": 4352.16, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4352.3, + "end": 4353.52, + "probability": 0.96533203125 + }, + { + "word": " in", + "start": 4353.52, + "end": 4353.74, + "probability": 0.90283203125 + }, + { + "word": " my", + "start": 4353.74, + "end": 4353.9, + "probability": 1.0 + }, + { + "word": " office,", + "start": 4353.9, + "end": 4354.28, + "probability": 1.0 + }, + { + "word": " right,", + "start": 4354.38, + "end": 4354.76, + "probability": 0.5712890625 + } + ] + }, + { + "id": 2107, + "text": "we have a couple of fairly large mail servers", + "start": 4354.82, + "end": 4358.5, + "words": [ + { + "word": " we", + "start": 4354.82, + "end": 4354.96, + "probability": 0.9990234375 + }, + { + "word": " have", + "start": 4354.96, + "end": 4355.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 4355.4, + "end": 4355.92, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 4355.92, + "end": 4356.72, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4356.72, + "end": 4357.0, + "probability": 1.0 + }, + { + "word": " fairly", + "start": 4357.0, + "end": 4357.5, + "probability": 1.0 + }, + { + "word": " large", + "start": 4357.5, + "end": 4357.92, + "probability": 1.0 + }, + { + "word": " mail", + "start": 4357.92, + "end": 4358.22, + "probability": 0.99658203125 + }, + { + "word": " servers", + "start": 4358.22, + "end": 4358.5, + "probability": 1.0 + } + ] + }, + { + "id": 2108, + "text": "that are always sending out to mail", + "start": 4358.5, + "end": 4361.96, + "words": [ + { + "word": " that", + "start": 4358.5, + "end": 4359.0, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 4359.0, + "end": 4359.16, + "probability": 1.0 + }, + { + "word": " always", + "start": 4359.16, + "end": 4359.54, + "probability": 1.0 + }, + { + "word": " sending", + "start": 4359.54, + "end": 4359.98, + "probability": 1.0 + }, + { + "word": " out", + "start": 4359.98, + "end": 4360.32, + "probability": 0.9892578125 + }, + { + "word": " to", + "start": 4360.32, + "end": 4360.62, + "probability": 0.7470703125 + }, + { + "word": " mail", + "start": 4360.62, + "end": 4361.96, + "probability": 0.75439453125 + } + ] + }, + { + "id": 2109, + "text": "to a number of different servers", + "start": 4361.96, + "end": 4364.72, + "words": [ + { + "word": " to", + "start": 4361.96, + "end": 4362.28, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4362.28, + "end": 4363.42, + "probability": 0.99951171875 + }, + { + "word": " number", + "start": 4363.42, + "end": 4363.96, + "probability": 1.0 + }, + { + "word": " of", + "start": 4363.96, + "end": 4364.18, + "probability": 1.0 + }, + { + "word": " different", + "start": 4364.18, + "end": 4364.38, + "probability": 0.99853515625 + }, + { + "word": " servers", + "start": 4364.38, + "end": 4364.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2110, + "text": "that are out there in the world.", + "start": 4364.72, + "end": 4365.54, + "words": [ + { + "word": " that", + "start": 4364.72, + "end": 4364.88, + "probability": 0.99951171875 + }, + { + "word": " are", + "start": 4364.88, + "end": 4364.94, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 4364.94, + "end": 4365.04, + "probability": 0.99951171875 + }, + { + "word": " there", + "start": 4365.04, + "end": 4365.16, + "probability": 1.0 + }, + { + "word": " in", + "start": 4365.16, + "end": 4365.26, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4365.26, + "end": 4365.28, + "probability": 1.0 + }, + { + "word": " world.", + "start": 4365.28, + "end": 4365.54, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2111, + "text": "And you start to see the delay stack up", + "start": 4366.04, + "end": 4373.72, + "words": [ + { + "word": " And", + "start": 4366.04, + "end": 4366.56, + "probability": 0.9951171875 + }, + { + "word": " you", + "start": 4366.56, + "end": 4367.58, + "probability": 0.986328125 + }, + { + "word": " start", + "start": 4367.58, + "end": 4368.04, + "probability": 0.93359375 + }, + { + "word": " to", + "start": 4368.04, + "end": 4368.34, + "probability": 1.0 + }, + { + "word": " see", + "start": 4368.34, + "end": 4368.62, + "probability": 1.0 + }, + { + "word": " the", + "start": 4368.62, + "end": 4368.98, + "probability": 0.9970703125 + }, + { + "word": " delay", + "start": 4368.98, + "end": 4371.52, + "probability": 0.97705078125 + }, + { + "word": " stack", + "start": 4371.52, + "end": 4373.28, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 4373.28, + "end": 4373.72, + "probability": 1.0 + } + ] + }, + { + "id": 2112, + "text": "when you have, you know,", + "start": 4373.72, + "end": 4374.66, + "words": [ + { + "word": " when", + "start": 4373.72, + "end": 4374.06, + "probability": 0.99658203125 + }, + { + "word": " you", + "start": 4374.06, + "end": 4374.22, + "probability": 1.0 + }, + { + "word": " have,", + "start": 4374.22, + "end": 4374.48, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 4374.56, + "end": 4374.66, + "probability": 0.71826171875 + }, + { + "word": " know,", + "start": 4374.66, + "end": 4374.66, + "probability": 0.98828125 + } + ] + }, + { + "id": 2113, + "text": "huge amounts of mail.", + "start": 4374.68, + "end": 4375.54, + "words": [ + { + "word": " huge", + "start": 4374.68, + "end": 4375.06, + "probability": 0.85009765625 + }, + { + "word": " amounts", + "start": 4375.06, + "end": 4375.32, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 4375.32, + "end": 4375.46, + "probability": 0.939453125 + }, + { + "word": " mail.", + "start": 4375.46, + "end": 4375.54, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2114, + "text": "Let's say that there's 30,000 pieces of mail", + "start": 4375.58, + "end": 4377.34, + "words": [ + { + "word": " Let's", + "start": 4375.58, + "end": 4375.7, + "probability": 0.9990234375 + }, + { + "word": " say", + "start": 4375.7, + "end": 4375.78, + "probability": 1.0 + }, + { + "word": " that", + "start": 4375.78, + "end": 4375.88, + "probability": 0.974609375 + }, + { + "word": " there's", + "start": 4375.88, + "end": 4376.04, + "probability": 0.9990234375 + }, + { + "word": " 30", + "start": 4376.04, + "end": 4376.3, + "probability": 0.998046875 + }, + { + "word": ",000", + "start": 4376.3, + "end": 4376.7, + "probability": 0.99951171875 + }, + { + "word": " pieces", + "start": 4376.7, + "end": 4376.94, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4376.94, + "end": 4377.18, + "probability": 1.0 + }, + { + "word": " mail", + "start": 4377.18, + "end": 4377.34, + "probability": 1.0 + } + ] + }, + { + "id": 2115, + "text": "waiting to go out.", + "start": 4377.34, + "end": 4378.2, + "words": [ + { + "word": " waiting", + "start": 4377.34, + "end": 4377.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 4377.62, + "end": 4377.8, + "probability": 1.0 + }, + { + "word": " go", + "start": 4377.8, + "end": 4377.94, + "probability": 1.0 + }, + { + "word": " out.", + "start": 4377.94, + "end": 4378.2, + "probability": 1.0 + } + ] + }, + { + "id": 2116, + "text": "And it has to do a DNS lookup for each of those.", + "start": 4378.32, + "end": 4380.88, + "words": [ + { + "word": " And", + "start": 4378.32, + "end": 4378.74, + "probability": 0.748046875 + }, + { + "word": " it", + "start": 4378.74, + "end": 4378.84, + "probability": 0.9990234375 + }, + { + "word": " has", + "start": 4378.84, + "end": 4379.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 4379.04, + "end": 4379.12, + "probability": 1.0 + }, + { + "word": " do", + "start": 4379.12, + "end": 4379.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 4379.26, + "end": 4379.36, + "probability": 0.8466796875 + }, + { + "word": " DNS", + "start": 4379.36, + "end": 4379.56, + "probability": 0.99658203125 + }, + { + "word": " lookup", + "start": 4379.56, + "end": 4379.98, + "probability": 0.97900390625 + }, + { + "word": " for", + "start": 4379.98, + "end": 4380.16, + "probability": 1.0 + }, + { + "word": " each", + "start": 4380.16, + "end": 4380.38, + "probability": 1.0 + }, + { + "word": " of", + "start": 4380.38, + "end": 4380.56, + "probability": 1.0 + }, + { + "word": " those.", + "start": 4380.56, + "end": 4380.88, + "probability": 1.0 + } + ] + }, + { + "id": 2117, + "text": "And there is maybe an extra 10 millisecond delay", + "start": 4381.0, + "end": 4384.48, + "words": [ + { + "word": " And", + "start": 4381.0, + "end": 4381.1, + "probability": 0.97314453125 + }, + { + "word": " there", + "start": 4381.1, + "end": 4381.56, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 4381.56, + "end": 4381.72, + "probability": 0.97265625 + }, + { + "word": " maybe", + "start": 4381.72, + "end": 4381.96, + "probability": 1.0 + }, + { + "word": " an", + "start": 4381.96, + "end": 4382.28, + "probability": 0.83740234375 + }, + { + "word": " extra", + "start": 4382.28, + "end": 4383.02, + "probability": 1.0 + }, + { + "word": " 10", + "start": 4383.02, + "end": 4383.44, + "probability": 0.99560546875 + }, + { + "word": " millisecond", + "start": 4383.44, + "end": 4384.14, + "probability": 0.97314453125 + }, + { + "word": " delay", + "start": 4384.14, + "end": 4384.48, + "probability": 1.0 + } + ] + }, + { + "id": 2118, + "text": "on each of those.", + "start": 4384.48, + "end": 4386.18, + "words": [ + { + "word": " on", + "start": 4384.48, + "end": 4385.22, + "probability": 0.99951171875 + }, + { + "word": " each", + "start": 4385.22, + "end": 4385.74, + "probability": 1.0 + }, + { + "word": " of", + "start": 4385.74, + "end": 4385.9, + "probability": 1.0 + }, + { + "word": " those.", + "start": 4385.9, + "end": 4386.18, + "probability": 1.0 + } + ] + }, + { + "id": 2119, + "text": "And yeah, you start seeing something", + "start": 4386.24, + "end": 4388.22, + "words": [ + { + "word": " And", + "start": 4386.24, + "end": 4386.32, + "probability": 0.990234375 + }, + { + "word": " yeah,", + "start": 4386.32, + "end": 4386.46, + "probability": 0.8525390625 + }, + { + "word": " you", + "start": 4386.5, + "end": 4386.6, + "probability": 1.0 + }, + { + "word": " start", + "start": 4386.6, + "end": 4386.78, + "probability": 1.0 + }, + { + "word": " seeing", + "start": 4386.78, + "end": 4387.18, + "probability": 1.0 + }, + { + "word": " something", + "start": 4387.18, + "end": 4388.22, + "probability": 0.8349609375 + } + ] + }, + { + "id": 2120, + "text": "where that would be useful.", + "start": 4388.88, + "end": 4390.12, + "words": [ + { + "word": " where", + "start": 4388.88, + "end": 4389.32, + "probability": 1.0 + }, + { + "word": " that", + "start": 4389.32, + "end": 4389.54, + "probability": 1.0 + }, + { + "word": " would", + "start": 4389.54, + "end": 4389.66, + "probability": 1.0 + }, + { + "word": " be", + "start": 4389.66, + "end": 4389.78, + "probability": 1.0 + }, + { + "word": " useful.", + "start": 4389.78, + "end": 4390.12, + "probability": 1.0 + } + ] + }, + { + "id": 2121, + "text": "But I think in the home arena,", + "start": 4391.42, + "end": 4394.08, + "words": [ + { + "word": " But", + "start": 4391.42, + "end": 4391.86, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 4391.86, + "end": 4392.06, + "probability": 0.9990234375 + }, + { + "word": " think", + "start": 4392.06, + "end": 4392.26, + "probability": 1.0 + }, + { + "word": " in", + "start": 4392.26, + "end": 4392.36, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4392.36, + "end": 4392.44, + "probability": 1.0 + }, + { + "word": " home", + "start": 4392.44, + "end": 4392.74, + "probability": 0.9990234375 + }, + { + "word": " arena,", + "start": 4392.74, + "end": 4394.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2122, + "text": "that's not going to be a thing.", + "start": 4394.3, + "end": 4395.64, + "words": [ + { + "word": " that's", + "start": 4394.3, + "end": 4394.88, + "probability": 1.0 + }, + { + "word": " not", + "start": 4394.88, + "end": 4395.02, + "probability": 1.0 + }, + { + "word": " going", + "start": 4395.02, + "end": 4395.16, + "probability": 0.9833984375 + }, + { + "word": " to", + "start": 4395.16, + "end": 4395.24, + "probability": 1.0 + }, + { + "word": " be", + "start": 4395.24, + "end": 4395.32, + "probability": 1.0 + }, + { + "word": " a", + "start": 4395.32, + "end": 4395.4, + "probability": 1.0 + }, + { + "word": " thing.", + "start": 4395.4, + "end": 4395.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2123, + "text": "Okay, real quick, what's your view of OpenDNS", + "start": 4396.68, + "end": 4399.44, + "words": [ + { + "word": " Okay,", + "start": 4396.68, + "end": 4397.12, + "probability": 0.95654296875 + }, + { + "word": " real", + "start": 4397.16, + "end": 4397.44, + "probability": 1.0 + }, + { + "word": " quick,", + "start": 4397.44, + "end": 4397.7, + "probability": 1.0 + }, + { + "word": " what's", + "start": 4397.86, + "end": 4398.1, + "probability": 1.0 + }, + { + "word": " your", + "start": 4398.1, + "end": 4398.22, + "probability": 1.0 + }, + { + "word": " view", + "start": 4398.22, + "end": 4398.44, + "probability": 1.0 + }, + { + "word": " of", + "start": 4398.44, + "end": 4398.7, + "probability": 1.0 + }, + { + "word": " OpenDNS", + "start": 4398.7, + "end": 4399.44, + "probability": 0.91015625 + } + ] + }, + { + "id": 2124, + "text": "as far as changing that?", + "start": 4399.44, + "end": 4401.4, + "words": [ + { + "word": " as", + "start": 4399.44, + "end": 4399.82, + "probability": 0.55810546875 + }, + { + "word": " far", + "start": 4399.82, + "end": 4400.26, + "probability": 0.81201171875 + }, + { + "word": " as", + "start": 4400.26, + "end": 4400.66, + "probability": 1.0 + }, + { + "word": " changing", + "start": 4400.66, + "end": 4401.06, + "probability": 1.0 + }, + { + "word": " that?", + "start": 4401.06, + "end": 4401.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2125, + "text": "Just for kind of to decipher content,", + "start": 4401.52, + "end": 4404.54, + "words": [ + { + "word": " Just", + "start": 4401.52, + "end": 4401.7, + "probability": 0.98828125 + }, + { + "word": " for", + "start": 4401.7, + "end": 4401.9, + "probability": 0.55126953125 + }, + { + "word": " kind", + "start": 4401.9, + "end": 4402.64, + "probability": 0.92578125 + }, + { + "word": " of", + "start": 4402.64, + "end": 4402.8, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4402.8, + "end": 4403.52, + "probability": 0.98779296875 + }, + { + "word": " decipher", + "start": 4403.52, + "end": 4404.02, + "probability": 0.459228515625 + }, + { + "word": " content,", + "start": 4404.02, + "end": 4404.54, + "probability": 0.93017578125 + } + ] + }, + { + "id": 2126, + "text": "and make it, you're surfing a little bit safer", + "start": 4404.68, + "end": 4407.0, + "words": [ + { + "word": " and", + "start": 4404.68, + "end": 4404.88, + "probability": 0.98779296875 + }, + { + "word": " make", + "start": 4404.88, + "end": 4405.02, + "probability": 0.8740234375 + }, + { + "word": " it,", + "start": 4405.02, + "end": 4405.2, + "probability": 0.05767822265625 + }, + { + "word": " you're", + "start": 4405.26, + "end": 4405.48, + "probability": 0.9169921875 + }, + { + "word": " surfing", + "start": 4405.48, + "end": 4406.04, + "probability": 0.432373046875 + }, + { + "word": " a", + "start": 4406.04, + "end": 4406.3, + "probability": 0.99951171875 + }, + { + "word": " little", + "start": 4406.3, + "end": 4406.48, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4406.48, + "end": 4406.6, + "probability": 1.0 + }, + { + "word": " safer", + "start": 4406.6, + "end": 4407.0, + "probability": 1.0 + } + ] + }, + { + "id": 2127, + "text": "in the home network?", + "start": 4407.0, + "end": 4407.98, + "words": [ + { + "word": " in", + "start": 4407.0, + "end": 4407.32, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4407.32, + "end": 4407.6, + "probability": 0.99853515625 + }, + { + "word": " home", + "start": 4407.6, + "end": 4407.74, + "probability": 0.99560546875 + }, + { + "word": " network?", + "start": 4407.74, + "end": 4407.98, + "probability": 1.0 + } + ] + }, + { + "id": 2128, + "text": "I'm always down for people using OpenDNS", + "start": 4408.54, + "end": 4410.46, + "words": [ + { + "word": " I'm", + "start": 4408.54, + "end": 4408.98, + "probability": 0.99951171875 + }, + { + "word": " always", + "start": 4408.98, + "end": 4409.18, + "probability": 1.0 + }, + { + "word": " down", + "start": 4409.18, + "end": 4409.38, + "probability": 1.0 + }, + { + "word": " for", + "start": 4409.38, + "end": 4409.52, + "probability": 1.0 + }, + { + "word": " people", + "start": 4409.52, + "end": 4409.7, + "probability": 1.0 + }, + { + "word": " using", + "start": 4409.7, + "end": 4409.9, + "probability": 0.99951171875 + }, + { + "word": " OpenDNS", + "start": 4409.9, + "end": 4410.46, + "probability": 0.86279296875 + } + ] + }, + { + "id": 2129, + "text": "or using some type of like a high-end firewall", + "start": 4410.46, + "end": 4412.92, + "words": [ + { + "word": " or", + "start": 4410.46, + "end": 4410.66, + "probability": 0.8662109375 + }, + { + "word": " using", + "start": 4410.66, + "end": 4410.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 4410.84, + "end": 4411.14, + "probability": 1.0 + }, + { + "word": " type", + "start": 4411.14, + "end": 4411.4, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4411.4, + "end": 4411.68, + "probability": 1.0 + }, + { + "word": " like", + "start": 4411.68, + "end": 4411.92, + "probability": 0.470458984375 + }, + { + "word": " a", + "start": 4411.92, + "end": 4412.02, + "probability": 0.99951171875 + }, + { + "word": " high", + "start": 4412.02, + "end": 4412.42, + "probability": 1.0 + }, + { + "word": "-end", + "start": 4412.42, + "end": 4412.56, + "probability": 0.9775390625 + }, + { + "word": " firewall", + "start": 4412.56, + "end": 4412.92, + "probability": 1.0 + } + ] + }, + { + "id": 2130, + "text": "where they can then manipulate their own DNS", + "start": 4412.92, + "end": 4415.64, + "words": [ + { + "word": " where", + "start": 4412.92, + "end": 4413.32, + "probability": 0.9990234375 + }, + { + "word": " they", + "start": 4413.32, + "end": 4413.52, + "probability": 1.0 + }, + { + "word": " can", + "start": 4413.52, + "end": 4413.7, + "probability": 1.0 + }, + { + "word": " then", + "start": 4413.7, + "end": 4413.92, + "probability": 0.99951171875 + }, + { + "word": " manipulate", + "start": 4413.92, + "end": 4414.78, + "probability": 1.0 + }, + { + "word": " their", + "start": 4414.78, + "end": 4415.18, + "probability": 1.0 + }, + { + "word": " own", + "start": 4415.18, + "end": 4415.36, + "probability": 0.99951171875 + }, + { + "word": " DNS", + "start": 4415.36, + "end": 4415.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2131, + "text": "to protect themselves.", + "start": 4415.64, + "end": 4416.3, + "words": [ + { + "word": " to", + "start": 4415.64, + "end": 4415.82, + "probability": 0.99951171875 + }, + { + "word": " protect", + "start": 4415.82, + "end": 4416.0, + "probability": 1.0 + }, + { + "word": " themselves.", + "start": 4416.0, + "end": 4416.3, + "probability": 1.0 + } + ] + }, + { + "id": 2132, + "text": "Are you able to get around restrictions", + "start": 4416.900000000001, + "end": 4418.48, + "words": [ + { + "word": " Are", + "start": 4416.900000000001, + "end": 4417.34, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4417.34, + "end": 4417.44, + "probability": 1.0 + }, + { + "word": " able", + "start": 4417.44, + "end": 4417.62, + "probability": 1.0 + }, + { + "word": " to", + "start": 4417.62, + "end": 4417.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 4417.7, + "end": 4417.82, + "probability": 1.0 + }, + { + "word": " around", + "start": 4417.82, + "end": 4418.0, + "probability": 1.0 + }, + { + "word": " restrictions", + "start": 4418.0, + "end": 4418.48, + "probability": 1.0 + } + ] + }, + { + "id": 2133, + "text": "if it like falsely blocks you?", + "start": 4418.48, + "end": 4420.78, + "words": [ + { + "word": " if", + "start": 4418.48, + "end": 4418.98, + "probability": 0.9990234375 + }, + { + "word": " it", + "start": 4418.98, + "end": 4419.14, + "probability": 1.0 + }, + { + "word": " like", + "start": 4419.14, + "end": 4419.46, + "probability": 0.92822265625 + }, + { + "word": " falsely", + "start": 4419.46, + "end": 4419.94, + "probability": 0.99951171875 + }, + { + "word": " blocks", + "start": 4419.94, + "end": 4420.52, + "probability": 0.99951171875 + }, + { + "word": " you?", + "start": 4420.52, + "end": 4420.78, + "probability": 1.0 + } + ] + }, + { + "id": 2134, + "text": "Sort of, depending,", + "start": 4421.860000000001, + "end": 4422.96, + "words": [ + { + "word": " Sort", + "start": 4421.860000000001, + "end": 4422.3, + "probability": 0.99951171875 + }, + { + "word": " of,", + "start": 4422.3, + "end": 4422.6, + "probability": 1.0 + }, + { + "word": " depending,", + "start": 4422.62, + "end": 4422.96, + "probability": 0.7333984375 + } + ] + }, + { + "id": 2135, + "text": "it depends on where that block is occurring.", + "start": 4423.08, + "end": 4424.88, + "words": [ + { + "word": " it", + "start": 4423.08, + "end": 4423.2, + "probability": 1.0 + }, + { + "word": " depends", + "start": 4423.2, + "end": 4423.46, + "probability": 1.0 + }, + { + "word": " on", + "start": 4423.46, + "end": 4423.62, + "probability": 1.0 + }, + { + "word": " where", + "start": 4423.62, + "end": 4423.82, + "probability": 1.0 + }, + { + "word": " that", + "start": 4423.82, + "end": 4424.04, + "probability": 1.0 + }, + { + "word": " block", + "start": 4424.04, + "end": 4424.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 4424.36, + "end": 4424.58, + "probability": 1.0 + }, + { + "word": " occurring.", + "start": 4424.58, + "end": 4424.88, + "probability": 1.0 + } + ] + }, + { + "id": 2136, + "text": "So if it's happening at the ISP level, yes.", + "start": 4425.24, + "end": 4427.26, + "words": [ + { + "word": " So", + "start": 4425.24, + "end": 4425.68, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 4425.68, + "end": 4425.78, + "probability": 0.95458984375 + }, + { + "word": " it's", + "start": 4425.78, + "end": 4425.88, + "probability": 1.0 + }, + { + "word": " happening", + "start": 4425.88, + "end": 4426.08, + "probability": 1.0 + }, + { + "word": " at", + "start": 4426.08, + "end": 4426.32, + "probability": 1.0 + }, + { + "word": " the", + "start": 4426.32, + "end": 4426.42, + "probability": 1.0 + }, + { + "word": " ISP", + "start": 4426.42, + "end": 4426.72, + "probability": 1.0 + }, + { + "word": " level,", + "start": 4426.72, + "end": 4426.92, + "probability": 1.0 + }, + { + "word": " yes.", + "start": 4427.06, + "end": 4427.26, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2137, + "text": "If it's happening at the browser level,", + "start": 4427.38, + "end": 4429.3, + "words": [ + { + "word": " If", + "start": 4427.38, + "end": 4427.64, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4427.64, + "end": 4427.82, + "probability": 1.0 + }, + { + "word": " happening", + "start": 4427.82, + "end": 4428.06, + "probability": 1.0 + }, + { + "word": " at", + "start": 4428.06, + "end": 4428.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 4428.34, + "end": 4428.5, + "probability": 1.0 + }, + { + "word": " browser", + "start": 4428.5, + "end": 4428.96, + "probability": 1.0 + }, + { + "word": " level,", + "start": 4428.96, + "end": 4429.3, + "probability": 1.0 + } + ] + }, + { + "id": 2138, + "text": "like Google is checking on you, then no.", + "start": 4429.44, + "end": 4432.1, + "words": [ + { + "word": " like", + "start": 4429.44, + "end": 4429.74, + "probability": 1.0 + }, + { + "word": " Google", + "start": 4429.74, + "end": 4430.38, + "probability": 0.97509765625 + }, + { + "word": " is", + "start": 4430.38, + "end": 4430.74, + "probability": 1.0 + }, + { + "word": " checking", + "start": 4430.74, + "end": 4431.16, + "probability": 1.0 + }, + { + "word": " on", + "start": 4431.16, + "end": 4431.38, + "probability": 1.0 + }, + { + "word": " you,", + "start": 4431.38, + "end": 4431.52, + "probability": 1.0 + }, + { + "word": " then", + "start": 4431.56, + "end": 4431.74, + "probability": 0.99609375 + }, + { + "word": " no.", + "start": 4431.74, + "end": 4432.1, + "probability": 1.0 + } + ] + }, + { + "id": 2139, + "text": "That won't help you a whole lot.", + "start": 4432.32, + "end": 4433.86, + "words": [ + { + "word": " That", + "start": 4432.32, + "end": 4432.76, + "probability": 0.9912109375 + }, + { + "word": " won't", + "start": 4432.76, + "end": 4433.18, + "probability": 1.0 + }, + { + "word": " help", + "start": 4433.18, + "end": 4433.34, + "probability": 1.0 + }, + { + "word": " you", + "start": 4433.34, + "end": 4433.44, + "probability": 1.0 + }, + { + "word": " a", + "start": 4433.44, + "end": 4433.56, + "probability": 1.0 + }, + { + "word": " whole", + "start": 4433.56, + "end": 4433.64, + "probability": 1.0 + }, + { + "word": " lot.", + "start": 4433.64, + "end": 4433.86, + "probability": 1.0 + } + ] + }, + { + "id": 2140, + "text": "The only way to get out of that type of stuff,", + "start": 4434.68, + "end": 4436.34, + "words": [ + { + "word": " The", + "start": 4434.68, + "end": 4435.0, + "probability": 0.93115234375 + }, + { + "word": " only", + "start": 4435.0, + "end": 4435.12, + "probability": 1.0 + }, + { + "word": " way", + "start": 4435.12, + "end": 4435.3, + "probability": 1.0 + }, + { + "word": " to", + "start": 4435.3, + "end": 4435.4, + "probability": 1.0 + }, + { + "word": " get", + "start": 4435.4, + "end": 4435.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 4435.48, + "end": 4435.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 4435.62, + "end": 4435.68, + "probability": 1.0 + }, + { + "word": " that", + "start": 4435.68, + "end": 4435.8, + "probability": 1.0 + }, + { + "word": " type", + "start": 4435.8, + "end": 4436.02, + "probability": 1.0 + }, + { + "word": " of", + "start": 4436.02, + "end": 4436.16, + "probability": 1.0 + }, + { + "word": " stuff,", + "start": 4436.16, + "end": 4436.34, + "probability": 1.0 + } + ] + }, + { + "id": 2141, + "text": "if you want to get around those types of blocks", + "start": 4436.4, + "end": 4437.7, + "words": [ + { + "word": " if", + "start": 4436.4, + "end": 4436.54, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4436.54, + "end": 4436.54, + "probability": 1.0 + }, + { + "word": " want", + "start": 4436.54, + "end": 4436.64, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4436.64, + "end": 4436.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 4436.7, + "end": 4436.78, + "probability": 0.99951171875 + }, + { + "word": " around", + "start": 4436.78, + "end": 4436.94, + "probability": 1.0 + }, + { + "word": " those", + "start": 4436.94, + "end": 4437.16, + "probability": 0.99951171875 + }, + { + "word": " types", + "start": 4437.16, + "end": 4437.32, + "probability": 1.0 + }, + { + "word": " of", + "start": 4437.32, + "end": 4437.48, + "probability": 1.0 + }, + { + "word": " blocks", + "start": 4437.48, + "end": 4437.7, + "probability": 0.998046875 + } + ] + }, + { + "id": 2142, + "text": "at the browser level is to use a different browser.", + "start": 4437.7, + "end": 4439.68, + "words": [ + { + "word": " at", + "start": 4437.7, + "end": 4438.12, + "probability": 0.39599609375 + }, + { + "word": " the", + "start": 4438.12, + "end": 4438.26, + "probability": 1.0 + }, + { + "word": " browser", + "start": 4438.26, + "end": 4438.58, + "probability": 1.0 + }, + { + "word": " level", + "start": 4438.58, + "end": 4438.82, + "probability": 0.76318359375 + }, + { + "word": " is", + "start": 4438.82, + "end": 4439.0, + "probability": 0.19677734375 + }, + { + "word": " to", + "start": 4439.0, + "end": 4439.1, + "probability": 0.78173828125 + }, + { + "word": " use", + "start": 4439.1, + "end": 4439.18, + "probability": 1.0 + }, + { + "word": " a", + "start": 4439.18, + "end": 4439.24, + "probability": 1.0 + }, + { + "word": " different", + "start": 4439.24, + "end": 4439.38, + "probability": 0.99951171875 + }, + { + "word": " browser.", + "start": 4439.38, + "end": 4439.68, + "probability": 1.0 + } + ] + }, + { + "id": 2143, + "text": "So instead of using like Google Chrome,", + "start": 4439.8, + "end": 4441.64, + "words": [ + { + "word": " So", + "start": 4439.8, + "end": 4439.98, + "probability": 0.89892578125 + }, + { + "word": " instead", + "start": 4439.98, + "end": 4440.34, + "probability": 0.93505859375 + }, + { + "word": " of", + "start": 4440.34, + "end": 4440.8, + "probability": 1.0 + }, + { + "word": " using", + "start": 4440.8, + "end": 4440.96, + "probability": 1.0 + }, + { + "word": " like", + "start": 4440.96, + "end": 4441.18, + "probability": 0.466796875 + }, + { + "word": " Google", + "start": 4441.18, + "end": 4441.38, + "probability": 0.99951171875 + }, + { + "word": " Chrome,", + "start": 4441.38, + "end": 4441.64, + "probability": 1.0 + } + ] + }, + { + "id": 2144, + "text": "you could use Chromium,", + "start": 4441.76, + "end": 4442.74, + "words": [ + { + "word": " you", + "start": 4441.76, + "end": 4441.9, + "probability": 1.0 + }, + { + "word": " could", + "start": 4441.9, + "end": 4442.04, + "probability": 1.0 + }, + { + "word": " use", + "start": 4442.04, + "end": 4442.22, + "probability": 1.0 + }, + { + "word": " Chromium,", + "start": 4442.22, + "end": 4442.74, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2145, + "text": "which wouldn't have that same block list involved.", + "start": 4443.16, + "end": 4445.38, + "words": [ + { + "word": " which", + "start": 4443.16, + "end": 4443.48, + "probability": 0.99951171875 + }, + { + "word": " wouldn't", + "start": 4443.48, + "end": 4443.76, + "probability": 1.0 + }, + { + "word": " have", + "start": 4443.76, + "end": 4443.94, + "probability": 1.0 + }, + { + "word": " that", + "start": 4443.94, + "end": 4444.16, + "probability": 0.99072265625 + }, + { + "word": " same", + "start": 4444.16, + "end": 4444.56, + "probability": 1.0 + }, + { + "word": " block", + "start": 4444.56, + "end": 4444.86, + "probability": 0.998046875 + }, + { + "word": " list", + "start": 4444.86, + "end": 4445.1, + "probability": 0.99755859375 + }, + { + "word": " involved.", + "start": 4445.1, + "end": 4445.38, + "probability": 1.0 + } + ] + }, + { + "id": 2146, + "text": "Gotcha.", + "start": 4447.14, + "end": 4447.46, + "words": [ + { + "word": " Gotcha.", + "start": 4447.14, + "end": 4447.46, + "probability": 0.98828125 + } + ] + }, + { + "id": 2147, + "text": "Well, thanks for all the good info as usual.", + "start": 4447.54, + "end": 4449.28, + "words": [ + { + "word": " Well,", + "start": 4447.54, + "end": 4447.8, + "probability": 0.9990234375 + }, + { + "word": " thanks", + "start": 4447.88, + "end": 4448.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 4448.08, + "end": 4448.22, + "probability": 1.0 + }, + { + "word": " all", + "start": 4448.22, + "end": 4448.36, + "probability": 1.0 + }, + { + "word": " the", + "start": 4448.36, + "end": 4448.42, + "probability": 1.0 + }, + { + "word": " good", + "start": 4448.42, + "end": 4448.54, + "probability": 1.0 + }, + { + "word": " info", + "start": 4448.54, + "end": 4448.76, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 4448.76, + "end": 4449.0, + "probability": 0.79541015625 + }, + { + "word": " usual.", + "start": 4449.0, + "end": 4449.28, + "probability": 1.0 + } + ] + }, + { + "id": 2148, + "text": "Well, right on.", + "start": 4449.56, + "end": 4450.28, + "words": [ + { + "word": " Well,", + "start": 4449.56, + "end": 4449.8, + "probability": 0.99755859375 + }, + { + "word": " right", + "start": 4449.82, + "end": 4450.0, + "probability": 0.99267578125 + }, + { + "word": " on.", + "start": 4450.0, + "end": 4450.28, + "probability": 1.0 + } + ] + }, + { + "id": 2149, + "text": "And stick around for the podcast, Jeff.", + "start": 4450.34, + "end": 4451.66, + "words": [ + { + "word": " And", + "start": 4450.34, + "end": 4450.48, + "probability": 0.998046875 + }, + { + "word": " stick", + "start": 4450.48, + "end": 4450.68, + "probability": 1.0 + }, + { + "word": " around", + "start": 4450.68, + "end": 4450.86, + "probability": 1.0 + }, + { + "word": " for", + "start": 4450.86, + "end": 4450.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 4450.98, + "end": 4451.06, + "probability": 1.0 + }, + { + "word": " podcast,", + "start": 4451.06, + "end": 4451.38, + "probability": 1.0 + }, + { + "word": " Jeff.", + "start": 4451.54, + "end": 4451.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2150, + "text": "I know you're listening from, what, Seattle?", + "start": 4451.7, + "end": 4453.22, + "words": [ + { + "word": " I", + "start": 4451.7, + "end": 4451.8, + "probability": 0.99951171875 + }, + { + "word": " know", + "start": 4451.8, + "end": 4451.86, + "probability": 1.0 + }, + { + "word": " you're", + "start": 4451.86, + "end": 4452.0, + "probability": 1.0 + }, + { + "word": " listening", + "start": 4452.0, + "end": 4452.2, + "probability": 0.99951171875 + }, + { + "word": " from,", + "start": 4452.2, + "end": 4452.44, + "probability": 1.0 + }, + { + "word": " what,", + "start": 4452.54, + "end": 4452.86, + "probability": 0.99951171875 + }, + { + "word": " Seattle?", + "start": 4452.88, + "end": 4453.22, + "probability": 1.0 + } + ] + }, + { + "id": 2151, + "text": "Is that where you're at?", + "start": 4453.36, + "end": 4454.0, + "words": [ + { + "word": " Is", + "start": 4453.36, + "end": 4453.6, + "probability": 0.896484375 + }, + { + "word": " that", + "start": 4453.6, + "end": 4453.64, + "probability": 1.0 + }, + { + "word": " where", + "start": 4453.64, + "end": 4453.78, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 4453.78, + "end": 4453.94, + "probability": 0.9609375 + }, + { + "word": " at?", + "start": 4453.94, + "end": 4454.0, + "probability": 0.994140625 + } + ] + }, + { + "id": 2152, + "text": "Yeah, you got it.", + "start": 4454.14, + "end": 4455.1, + "words": [ + { + "word": " Yeah,", + "start": 4454.14, + "end": 4454.46, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 4454.58, + "end": 4454.72, + "probability": 0.99951171875 + }, + { + "word": " got", + "start": 4454.72, + "end": 4454.94, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 4454.94, + "end": 4455.1, + "probability": 1.0 + } + ] + }, + { + "id": 2153, + "text": "Yeah, right outside of Seattle.", + "start": 4455.2, + "end": 4456.34, + "words": [ + { + "word": " Yeah,", + "start": 4455.2, + "end": 4455.44, + "probability": 0.75439453125 + }, + { + "word": " right", + "start": 4455.44, + "end": 4455.64, + "probability": 0.99951171875 + }, + { + "word": " outside", + "start": 4455.64, + "end": 4455.88, + "probability": 0.98876953125 + }, + { + "word": " of", + "start": 4455.88, + "end": 4456.04, + "probability": 1.0 + }, + { + "word": " Seattle.", + "start": 4456.04, + "end": 4456.34, + "probability": 1.0 + } + ] + }, + { + "id": 2154, + "text": "And I love the podcast.", + "start": 4456.42, + "end": 4458.24, + "words": [ + { + "word": " And", + "start": 4456.42, + "end": 4456.7, + "probability": 0.90380859375 + }, + { + "word": " I", + "start": 4456.7, + "end": 4456.98, + "probability": 0.99951171875 + }, + { + "word": " love", + "start": 4456.98, + "end": 4457.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 4457.74, + "end": 4457.86, + "probability": 1.0 + }, + { + "word": " podcast.", + "start": 4457.86, + "end": 4458.24, + "probability": 1.0 + } + ] + }, + { + "id": 2155, + "text": "The sooner they get up, the better, though.", + "start": 4458.62, + "end": 4460.1, + "words": [ + { + "word": " The", + "start": 4458.62, + "end": 4458.94, + "probability": 0.9443359375 + }, + { + "word": " sooner", + "start": 4458.94, + "end": 4459.1, + "probability": 0.99951171875 + }, + { + "word": " they", + "start": 4459.1, + "end": 4459.24, + "probability": 1.0 + }, + { + "word": " get", + "start": 4459.24, + "end": 4459.38, + "probability": 1.0 + }, + { + "word": " up,", + "start": 4459.38, + "end": 4459.56, + "probability": 1.0 + }, + { + "word": " the", + "start": 4459.58, + "end": 4459.66, + "probability": 1.0 + }, + { + "word": " better,", + "start": 4459.66, + "end": 4459.88, + "probability": 1.0 + }, + { + "word": " though.", + "start": 4459.94, + "end": 4460.1, + "probability": 1.0 + } + ] + }, + { + "id": 2156, + "text": "Yeah, well, we're working on that.", + "start": 4460.26, + "end": 4461.98, + "words": [ + { + "word": " Yeah,", + "start": 4460.26, + "end": 4460.58, + "probability": 1.0 + }, + { + "word": " well,", + "start": 4460.58, + "end": 4460.76, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4460.88, + "end": 4461.1, + "probability": 0.9990234375 + }, + { + "word": " working", + "start": 4461.1, + "end": 4461.54, + "probability": 0.68115234375 + }, + { + "word": " on", + "start": 4461.54, + "end": 4461.76, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4461.76, + "end": 4461.98, + "probability": 1.0 + } + ] + }, + { + "id": 2157, + "text": "But stick around, Jeff.", + "start": 4462.22, + "end": 4463.6, + "words": [ + { + "word": " But", + "start": 4462.22, + "end": 4462.54, + "probability": 0.9404296875 + }, + { + "word": " stick", + "start": 4462.54, + "end": 4463.06, + "probability": 1.0 + }, + { + "word": " around,", + "start": 4463.06, + "end": 4463.3, + "probability": 1.0 + }, + { + "word": " Jeff.", + "start": 4463.4, + "end": 4463.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2158, + "text": "Have a great one.", + "start": 4463.62, + "end": 4463.78, + "words": [ + { + "word": " Have", + "start": 4463.62, + "end": 4463.64, + "probability": 0.9541015625 + }, + { + "word": " a", + "start": 4463.64, + "end": 4463.64, + "probability": 1.0 + }, + { + "word": " great", + "start": 4463.64, + "end": 4463.66, + "probability": 1.0 + }, + { + "word": " one.", + "start": 4463.66, + "end": 4463.78, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2159, + "text": "Bye-bye.", + "start": 4463.84, + "end": 4464.22, + "words": [ + { + "word": " Bye", + "start": 4463.84, + "end": 4464.14, + "probability": 0.0198211669921875 + }, + { + "word": "-bye.", + "start": 4464.14, + "end": 4464.22, + "probability": 0.80078125 + } + ] + }, + { + "id": 2160, + "text": "Be around for you.", + "start": 4464.68, + "end": 4465.28, + "words": [ + { + "word": " Be", + "start": 4464.68, + "end": 4464.74, + "probability": 0.0125732421875 + }, + { + "word": " around", + "start": 4464.74, + "end": 4464.86, + "probability": 0.9873046875 + }, + { + "word": " for", + "start": 4464.86, + "end": 4465.1, + "probability": 0.99658203125 + }, + { + "word": " you.", + "start": 4465.1, + "end": 4465.28, + "probability": 0.9912109375 + } + ] + }, + { + "id": 2161, + "text": "All right, let's go ahead and move on to Jeff, too.", + "start": 4465.68, + "end": 4467.24, + "words": [ + { + "word": " All", + "start": 4465.68, + "end": 4466.0, + "probability": 0.91650390625 + }, + { + "word": " right,", + "start": 4466.0, + "end": 4466.16, + "probability": 1.0 + }, + { + "word": " let's", + "start": 4466.18, + "end": 4466.36, + "probability": 1.0 + }, + { + "word": " go", + "start": 4466.36, + "end": 4466.38, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 4466.38, + "end": 4466.5, + "probability": 0.92138671875 + }, + { + "word": " and", + "start": 4466.5, + "end": 4466.52, + "probability": 0.99951171875 + }, + { + "word": " move", + "start": 4466.52, + "end": 4466.62, + "probability": 1.0 + }, + { + "word": " on", + "start": 4466.62, + "end": 4466.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4466.76, + "end": 4466.86, + "probability": 1.0 + }, + { + "word": " Jeff,", + "start": 4466.86, + "end": 4467.06, + "probability": 0.998046875 + }, + { + "word": " too.", + "start": 4467.08, + "end": 4467.24, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2162, + "text": "Hello, Jeff, too.", + "start": 4467.3, + "end": 4468.78, + "words": [ + { + "word": " Hello,", + "start": 4467.3, + "end": 4467.48, + "probability": 0.9970703125 + }, + { + "word": " Jeff,", + "start": 4467.54, + "end": 4467.76, + "probability": 1.0 + }, + { + "word": " too.", + "start": 4467.92, + "end": 4468.78, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2163, + "text": "Hi, how you doing?", + "start": 4469.14, + "end": 4469.94, + "words": [ + { + "word": " Hi,", + "start": 4469.14, + "end": 4469.46, + "probability": 0.99169921875 + }, + { + "word": " how", + "start": 4469.48, + "end": 4469.56, + "probability": 1.0 + }, + { + "word": " you", + "start": 4469.56, + "end": 4469.68, + "probability": 0.29736328125 + }, + { + "word": " doing?", + "start": 4469.68, + "end": 4469.94, + "probability": 1.0 + } + ] + }, + { + "id": 2164, + "text": "I'm doing all right.", + "start": 4470.06, + "end": 4470.66, + "words": [ + { + "word": " I'm", + "start": 4470.06, + "end": 4470.18, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4470.18, + "end": 4470.3, + "probability": 1.0 + }, + { + "word": " all", + "start": 4470.3, + "end": 4470.46, + "probability": 0.9970703125 + }, + { + "word": " right.", + "start": 4470.46, + "end": 4470.66, + "probability": 1.0 + } + ] + }, + { + "id": 2165, + "text": "What can I do for you?", + "start": 4471.14, + "end": 4471.96, + "words": [ + { + "word": " What", + "start": 4471.14, + "end": 4471.46, + "probability": 0.99658203125 + }, + { + "word": " can", + "start": 4471.46, + "end": 4471.58, + "probability": 1.0 + }, + { + "word": " I", + "start": 4471.58, + "end": 4471.68, + "probability": 1.0 + }, + { + "word": " do", + "start": 4471.68, + "end": 4471.72, + "probability": 1.0 + }, + { + "word": " for", + "start": 4471.72, + "end": 4471.86, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4471.86, + "end": 4471.96, + "probability": 1.0 + } + ] + }, + { + "id": 2166, + "text": "Well, I'm having some problems.", + "start": 4473.18, + "end": 4475.24, + "words": [ + { + "word": " Well,", + "start": 4473.18, + "end": 4473.5, + "probability": 0.91748046875 + }, + { + "word": " I'm", + "start": 4473.5, + "end": 4473.82, + "probability": 0.7353515625 + }, + { + "word": " having", + "start": 4473.82, + "end": 4474.7, + "probability": 0.9990234375 + }, + { + "word": " some", + "start": 4474.7, + "end": 4474.86, + "probability": 0.99853515625 + }, + { + "word": " problems.", + "start": 4474.86, + "end": 4475.24, + "probability": 0.986328125 + } + ] + }, + { + "id": 2167, + "text": "It's a couple years old.", + "start": 4475.92, + "end": 4477.08, + "words": [ + { + "word": " It's", + "start": 4475.92, + "end": 4476.24, + "probability": 0.67041015625 + }, + { + "word": " a", + "start": 4476.24, + "end": 4476.32, + "probability": 0.958984375 + }, + { + "word": " couple", + "start": 4476.32, + "end": 4476.54, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 4476.54, + "end": 4476.72, + "probability": 0.80078125 + }, + { + "word": " old.", + "start": 4476.72, + "end": 4477.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2168, + "text": "It's 87.", + "start": 4477.22, + "end": 4479.5, + "words": [ + { + "word": " It's", + "start": 4477.22, + "end": 4477.4, + "probability": 0.9501953125 + }, + { + "word": " 87.", + "start": 4477.4, + "end": 4479.5, + "probability": 0.693359375 + } + ] + }, + { + "id": 2169, + "text": "Windows 10 on it.", + "start": 4480.6, + "end": 4481.64, + "words": [ + { + "word": " Windows", + "start": 4480.6, + "end": 4480.92, + "probability": 0.70166015625 + }, + { + "word": " 10", + "start": 4480.92, + "end": 4481.24, + "probability": 0.99755859375 + }, + { + "word": " on", + "start": 4481.24, + "end": 4481.46, + "probability": 0.491943359375 + }, + { + "word": " it.", + "start": 4481.46, + "end": 4481.64, + "probability": 0.73388671875 + } + ] + }, + { + "id": 2170, + "text": "All right, Jeff, I have to interrupt you here.", + "start": 4483.72, + "end": 4485.38, + "words": [ + { + "word": " All", + "start": 4483.72, + "end": 4484.04, + "probability": 0.99560546875 + }, + { + "word": " right,", + "start": 4484.04, + "end": 4484.36, + "probability": 1.0 + }, + { + "word": " Jeff,", + "start": 4484.38, + "end": 4484.52, + "probability": 1.0 + }, + { + "word": " I", + "start": 4484.6, + "end": 4484.72, + "probability": 1.0 + }, + { + "word": " have", + "start": 4484.72, + "end": 4484.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 4484.8, + "end": 4484.88, + "probability": 1.0 + }, + { + "word": " interrupt", + "start": 4484.88, + "end": 4485.08, + "probability": 1.0 + }, + { + "word": " you", + "start": 4485.08, + "end": 4485.26, + "probability": 1.0 + }, + { + "word": " here.", + "start": 4485.26, + "end": 4485.38, + "probability": 1.0 + } + ] + }, + { + "id": 2171, + "text": "You're going to have to, like, stand somewhere else", + "start": 4485.46, + "end": 4487.44, + "words": [ + { + "word": " You're", + "start": 4485.46, + "end": 4485.74, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 4485.74, + "end": 4485.82, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 4485.82, + "end": 4485.9, + "probability": 1.0 + }, + { + "word": " have", + "start": 4485.9, + "end": 4486.04, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4486.04, + "end": 4486.18, + "probability": 1.0 + }, + { + "word": " like,", + "start": 4486.18, + "end": 4486.46, + "probability": 1.0 + }, + { + "word": " stand", + "start": 4486.46, + "end": 4486.76, + "probability": 1.0 + }, + { + "word": " somewhere", + "start": 4486.76, + "end": 4487.14, + "probability": 1.0 + }, + { + "word": " else", + "start": 4487.14, + "end": 4487.44, + "probability": 1.0 + } + ] + }, + { + "id": 2172, + "text": "so I can hear you because you're breaking up badly.", + "start": 4487.44, + "end": 4489.5, + "words": [ + { + "word": " so", + "start": 4487.44, + "end": 4487.6, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 4487.6, + "end": 4487.7, + "probability": 1.0 + }, + { + "word": " can", + "start": 4487.7, + "end": 4487.82, + "probability": 1.0 + }, + { + "word": " hear", + "start": 4487.82, + "end": 4487.98, + "probability": 1.0 + }, + { + "word": " you", + "start": 4487.98, + "end": 4488.12, + "probability": 1.0 + }, + { + "word": " because", + "start": 4488.12, + "end": 4488.28, + "probability": 0.91845703125 + }, + { + "word": " you're", + "start": 4488.28, + "end": 4488.58, + "probability": 1.0 + }, + { + "word": " breaking", + "start": 4488.58, + "end": 4488.76, + "probability": 0.99951171875 + }, + { + "word": " up", + "start": 4488.76, + "end": 4488.98, + "probability": 0.99951171875 + }, + { + "word": " badly.", + "start": 4488.98, + "end": 4489.5, + "probability": 0.998046875 + } + ] + }, + { + "id": 2173, + "text": "Can you hear me, Jeff?", + "start": 4493.38, + "end": 4494.32, + "words": [ + { + "word": " Can", + "start": 4493.38, + "end": 4493.7, + "probability": 0.9921875 + }, + { + "word": " you", + "start": 4493.7, + "end": 4493.9, + "probability": 1.0 + }, + { + "word": " hear", + "start": 4493.9, + "end": 4494.04, + "probability": 1.0 + }, + { + "word": " me,", + "start": 4494.04, + "end": 4494.14, + "probability": 1.0 + }, + { + "word": " Jeff?", + "start": 4494.2, + "end": 4494.32, + "probability": 1.0 + } + ] + }, + { + "id": 2174, + "text": "", + "start": 4494.68, + "end": 4494.68, + "words": [] + }, + { + "id": 2175, + "text": "All right.", + "start": 4496.96, + "end": 4497.52, + "words": [ + { + "word": " All", + "start": 4496.96, + "end": 4497.36, + "probability": 0.6787109375 + }, + { + "word": " right.", + "start": 4497.36, + "end": 4497.52, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2176, + "text": "All right.", + "start": 4497.54, + "end": 4497.6, + "words": [ + { + "word": " All", + "start": 4497.54, + "end": 4497.6, + "probability": 0.02069091796875 + }, + { + "word": " right.", + "start": 4497.6, + "end": 4497.6, + "probability": 0.9443359375 + } + ] + }, + { + "id": 2177, + "text": "How about now?", + "start": 4497.6, + "end": 4497.9, + "words": [ + { + "word": " How", + "start": 4497.6, + "end": 4497.6, + "probability": 0.021209716796875 + }, + { + "word": " about", + "start": 4497.6, + "end": 4497.64, + "probability": 0.99658203125 + }, + { + "word": " now?", + "start": 4497.64, + "end": 4497.9, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2178, + "text": "All right, that's better.", + "start": 4498.1, + "end": 4498.78, + "words": [ + { + "word": " All", + "start": 4498.1, + "end": 4498.36, + "probability": 0.9453125 + }, + { + "word": " right,", + "start": 4498.36, + "end": 4498.44, + "probability": 1.0 + }, + { + "word": " that's", + "start": 4498.46, + "end": 4498.6, + "probability": 0.998046875 + }, + { + "word": " better.", + "start": 4498.6, + "end": 4498.78, + "probability": 1.0 + } + ] + }, + { + "id": 2179, + "text": "All right.", + "start": 4498.88, + "end": 4499.38, + "words": [ + { + "word": " All", + "start": 4498.88, + "end": 4499.16, + "probability": 0.99560546875 + }, + { + "word": " right.", + "start": 4499.16, + "end": 4499.38, + "probability": 1.0 + } + ] + }, + { + "id": 2180, + "text": "All right.", + "start": 4499.38, + "end": 4499.82, + "words": [ + { + "word": " All", + "start": 4499.38, + "end": 4499.72, + "probability": 0.93212890625 + }, + { + "word": " right.", + "start": 4499.72, + "end": 4499.82, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2181, + "text": "Okay, so I put in a solid straight drive a couple years ago and never moved Windows over.", + "start": 4500.240000000001, + "end": 4506.26, + "words": [ + { + "word": " Okay,", + "start": 4500.240000000001, + "end": 4500.64, + "probability": 0.92822265625 + }, + { + "word": " so", + "start": 4500.76, + "end": 4500.92, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4500.92, + "end": 4501.78, + "probability": 0.9814453125 + }, + { + "word": " put", + "start": 4501.78, + "end": 4502.58, + "probability": 0.970703125 + }, + { + "word": " in", + "start": 4502.58, + "end": 4502.76, + "probability": 1.0 + }, + { + "word": " a", + "start": 4502.76, + "end": 4502.88, + "probability": 1.0 + }, + { + "word": " solid", + "start": 4502.88, + "end": 4503.14, + "probability": 0.994140625 + }, + { + "word": " straight", + "start": 4503.14, + "end": 4503.38, + "probability": 0.29736328125 + }, + { + "word": " drive", + "start": 4503.38, + "end": 4503.66, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4503.66, + "end": 4503.92, + "probability": 0.99951171875 + }, + { + "word": " couple", + "start": 4503.92, + "end": 4504.12, + "probability": 1.0 + }, + { + "word": " years", + "start": 4504.12, + "end": 4504.26, + "probability": 0.9072265625 + }, + { + "word": " ago", + "start": 4504.26, + "end": 4504.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 4504.6, + "end": 4504.82, + "probability": 0.9970703125 + }, + { + "word": " never", + "start": 4504.82, + "end": 4505.24, + "probability": 1.0 + }, + { + "word": " moved", + "start": 4505.24, + "end": 4505.5, + "probability": 0.99853515625 + }, + { + "word": " Windows", + "start": 4505.5, + "end": 4505.88, + "probability": 0.464599609375 + }, + { + "word": " over.", + "start": 4505.88, + "end": 4506.26, + "probability": 1.0 + } + ] + }, + { + "id": 2182, + "text": "So anyway, to make a long story short, I ended up having to reimage the whole computer, so", + "start": 4507.06, + "end": 4510.74, + "words": [ + { + "word": " So", + "start": 4507.06, + "end": 4507.46, + "probability": 0.98583984375 + }, + { + "word": " anyway,", + "start": 4507.46, + "end": 4507.86, + "probability": 0.9599609375 + }, + { + "word": " to", + "start": 4507.92, + "end": 4508.06, + "probability": 0.55908203125 + }, + { + "word": " make", + "start": 4508.06, + "end": 4508.06, + "probability": 0.99365234375 + }, + { + "word": " a", + "start": 4508.06, + "end": 4508.1, + "probability": 0.6181640625 + }, + { + "word": " long", + "start": 4508.1, + "end": 4508.26, + "probability": 0.998046875 + }, + { + "word": " story", + "start": 4508.26, + "end": 4508.46, + "probability": 0.9990234375 + }, + { + "word": " short,", + "start": 4508.46, + "end": 4508.74, + "probability": 1.0 + }, + { + "word": " I", + "start": 4508.82, + "end": 4508.9, + "probability": 1.0 + }, + { + "word": " ended", + "start": 4508.9, + "end": 4509.02, + "probability": 0.9990234375 + }, + { + "word": " up", + "start": 4509.02, + "end": 4509.14, + "probability": 1.0 + }, + { + "word": " having", + "start": 4509.14, + "end": 4509.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 4509.28, + "end": 4509.44, + "probability": 1.0 + }, + { + "word": " reimage", + "start": 4509.44, + "end": 4509.84, + "probability": 0.8740234375 + }, + { + "word": " the", + "start": 4509.84, + "end": 4510.06, + "probability": 1.0 + }, + { + "word": " whole", + "start": 4510.06, + "end": 4510.16, + "probability": 0.9873046875 + }, + { + "word": " computer,", + "start": 4510.16, + "end": 4510.52, + "probability": 1.0 + }, + { + "word": " so", + "start": 4510.58, + "end": 4510.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2183, + "text": "I'm back to square one.", + "start": 4510.74, + "end": 4511.88, + "words": [ + { + "word": " I'm", + "start": 4510.74, + "end": 4510.88, + "probability": 1.0 + }, + { + "word": " back", + "start": 4510.88, + "end": 4511.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 4511.24, + "end": 4511.42, + "probability": 1.0 + }, + { + "word": " square", + "start": 4511.42, + "end": 4511.62, + "probability": 0.93017578125 + }, + { + "word": " one.", + "start": 4511.62, + "end": 4511.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2184, + "text": "And I wanted to go ahead and put the operating system on the solid state drive.", + "start": 4511.98, + "end": 4515.96, + "words": [ + { + "word": " And", + "start": 4511.98, + "end": 4512.14, + "probability": 0.9794921875 + }, + { + "word": " I", + "start": 4512.14, + "end": 4512.76, + "probability": 0.99951171875 + }, + { + "word": " wanted", + "start": 4512.76, + "end": 4513.04, + "probability": 0.80029296875 + }, + { + "word": " to", + "start": 4513.04, + "end": 4513.18, + "probability": 1.0 + }, + { + "word": " go", + "start": 4513.18, + "end": 4513.24, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 4513.24, + "end": 4513.36, + "probability": 1.0 + }, + { + "word": " and", + "start": 4513.36, + "end": 4513.44, + "probability": 1.0 + }, + { + "word": " put", + "start": 4513.44, + "end": 4513.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 4513.6, + "end": 4513.78, + "probability": 1.0 + }, + { + "word": " operating", + "start": 4513.78, + "end": 4514.26, + "probability": 1.0 + }, + { + "word": " system", + "start": 4514.26, + "end": 4514.54, + "probability": 1.0 + }, + { + "word": " on", + "start": 4514.54, + "end": 4514.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 4514.86, + "end": 4515.06, + "probability": 0.99853515625 + }, + { + "word": " solid", + "start": 4515.06, + "end": 4515.44, + "probability": 0.9990234375 + }, + { + "word": " state", + "start": 4515.44, + "end": 4515.64, + "probability": 0.857421875 + }, + { + "word": " drive.", + "start": 4515.64, + "end": 4515.96, + "probability": 1.0 + } + ] + }, + { + "id": 2185, + "text": "I've been able to successfully clone the operating system off my C drive over the solid state", + "start": 4516.46, + "end": 4523.2, + "words": [ + { + "word": " I've", + "start": 4516.46, + "end": 4516.86, + "probability": 0.9990234375 + }, + { + "word": " been", + "start": 4516.86, + "end": 4516.94, + "probability": 1.0 + }, + { + "word": " able", + "start": 4516.94, + "end": 4517.18, + "probability": 1.0 + }, + { + "word": " to", + "start": 4517.18, + "end": 4517.3, + "probability": 1.0 + }, + { + "word": " successfully", + "start": 4517.3, + "end": 4517.82, + "probability": 1.0 + }, + { + "word": " clone", + "start": 4517.82, + "end": 4518.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 4518.84, + "end": 4519.88, + "probability": 1.0 + }, + { + "word": " operating", + "start": 4519.88, + "end": 4520.88, + "probability": 1.0 + }, + { + "word": " system", + "start": 4520.88, + "end": 4521.2, + "probability": 1.0 + }, + { + "word": " off", + "start": 4521.2, + "end": 4521.58, + "probability": 1.0 + }, + { + "word": " my", + "start": 4521.58, + "end": 4521.76, + "probability": 0.99951171875 + }, + { + "word": " C", + "start": 4521.76, + "end": 4521.98, + "probability": 0.99853515625 + }, + { + "word": " drive", + "start": 4521.98, + "end": 4522.24, + "probability": 0.99853515625 + }, + { + "word": " over", + "start": 4522.24, + "end": 4522.5, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4522.5, + "end": 4522.68, + "probability": 0.998046875 + }, + { + "word": " solid", + "start": 4522.68, + "end": 4522.96, + "probability": 1.0 + }, + { + "word": " state", + "start": 4522.96, + "end": 4523.2, + "probability": 1.0 + } + ] + }, + { + "id": 2186, + "text": "drive.", + "start": 4523.2, + "end": 4523.62, + "words": [ + { + "word": " drive.", + "start": 4523.2, + "end": 4523.62, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2187, + "text": "I'm unable to figure out how to tell it how to boot out of that solid state drive.", + "start": 4523.62, + "end": 4527.68, + "words": [ + { + "word": " I'm", + "start": 4523.62, + "end": 4524.32, + "probability": 0.990234375 + }, + { + "word": " unable", + "start": 4524.32, + "end": 4524.58, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4524.58, + "end": 4524.94, + "probability": 1.0 + }, + { + "word": " figure", + "start": 4524.94, + "end": 4525.18, + "probability": 0.9990234375 + }, + { + "word": " out", + "start": 4525.18, + "end": 4525.38, + "probability": 1.0 + }, + { + "word": " how", + "start": 4525.38, + "end": 4525.52, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4525.52, + "end": 4525.66, + "probability": 1.0 + }, + { + "word": " tell", + "start": 4525.66, + "end": 4525.88, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4525.88, + "end": 4526.0, + "probability": 1.0 + }, + { + "word": " how", + "start": 4526.0, + "end": 4526.1, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4526.1, + "end": 4526.22, + "probability": 1.0 + }, + { + "word": " boot", + "start": 4526.22, + "end": 4526.48, + "probability": 1.0 + }, + { + "word": " out", + "start": 4526.48, + "end": 4526.66, + "probability": 1.0 + }, + { + "word": " of", + "start": 4526.66, + "end": 4526.76, + "probability": 0.9990234375 + }, + { + "word": " that", + "start": 4526.76, + "end": 4526.84, + "probability": 1.0 + }, + { + "word": " solid", + "start": 4526.84, + "end": 4527.14, + "probability": 0.9951171875 + }, + { + "word": " state", + "start": 4527.14, + "end": 4527.38, + "probability": 0.27490234375 + }, + { + "word": " drive.", + "start": 4527.38, + "end": 4527.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2188, + "text": "You said it was Windows 10 on this machine?", + "start": 4529.380000000001, + "end": 4531.32, + "words": [ + { + "word": " You", + "start": 4529.380000000001, + "end": 4529.860000000001, + "probability": 0.99072265625 + }, + { + "word": " said", + "start": 4529.860000000001, + "end": 4530.34, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 4530.34, + "end": 4530.44, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4530.44, + "end": 4530.44, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4530.44, + "end": 4530.64, + "probability": 0.99951171875 + }, + { + "word": " 10", + "start": 4530.64, + "end": 4530.84, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4530.84, + "end": 4530.98, + "probability": 1.0 + }, + { + "word": " this", + "start": 4530.98, + "end": 4531.12, + "probability": 1.0 + }, + { + "word": " machine?", + "start": 4531.12, + "end": 4531.32, + "probability": 1.0 + } + ] + }, + { + "id": 2189, + "text": "Correct.", + "start": 4532.38, + "end": 4532.86, + "words": [ + { + "word": " Correct.", + "start": 4532.38, + "end": 4532.86, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2190, + "text": "Okay.", + "start": 4533.16, + "end": 4533.64, + "words": [ + { + "word": " Okay.", + "start": 4533.16, + "end": 4533.64, + "probability": 0.9560546875 + } + ] + }, + { + "id": 2191, + "text": "So you're going to be in a weird position here because if Windows was originally installed", + "start": 4534.9400000000005, + "end": 4540.42, + "words": [ + { + "word": " So", + "start": 4534.9400000000005, + "end": 4535.42, + "probability": 0.98193359375 + }, + { + "word": " you're", + "start": 4535.42, + "end": 4535.9, + "probability": 0.931640625 + }, + { + "word": " going", + "start": 4535.9, + "end": 4536.7, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4536.7, + "end": 4537.1, + "probability": 1.0 + }, + { + "word": " be", + "start": 4537.1, + "end": 4537.16, + "probability": 1.0 + }, + { + "word": " in", + "start": 4537.16, + "end": 4537.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 4537.28, + "end": 4537.36, + "probability": 1.0 + }, + { + "word": " weird", + "start": 4537.36, + "end": 4537.58, + "probability": 1.0 + }, + { + "word": " position", + "start": 4537.58, + "end": 4538.26, + "probability": 1.0 + }, + { + "word": " here", + "start": 4538.26, + "end": 4538.6, + "probability": 1.0 + }, + { + "word": " because", + "start": 4538.6, + "end": 4538.86, + "probability": 0.56494140625 + }, + { + "word": " if", + "start": 4538.86, + "end": 4539.16, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4539.16, + "end": 4539.4, + "probability": 1.0 + }, + { + "word": " was", + "start": 4539.4, + "end": 4539.58, + "probability": 0.96337890625 + }, + { + "word": " originally", + "start": 4539.58, + "end": 4539.94, + "probability": 1.0 + }, + { + "word": " installed", + "start": 4539.94, + "end": 4540.42, + "probability": 1.0 + } + ] + }, + { + "id": 2192, + "text": "on a conventional drive and you added the solid state drive to it afterwards, the boot", + "start": 4540.42, + "end": 4545.16, + "words": [ + { + "word": " on", + "start": 4540.42, + "end": 4541.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 4541.12, + "end": 4541.22, + "probability": 1.0 + }, + { + "word": " conventional", + "start": 4541.22, + "end": 4541.48, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4541.48, + "end": 4541.84, + "probability": 1.0 + }, + { + "word": " and", + "start": 4541.84, + "end": 4542.18, + "probability": 0.990234375 + }, + { + "word": " you", + "start": 4542.18, + "end": 4542.6, + "probability": 1.0 + }, + { + "word": " added", + "start": 4542.6, + "end": 4542.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 4542.98, + "end": 4543.1, + "probability": 0.8291015625 + }, + { + "word": " solid", + "start": 4543.1, + "end": 4543.3, + "probability": 1.0 + }, + { + "word": " state", + "start": 4543.3, + "end": 4543.52, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4543.52, + "end": 4543.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 4543.72, + "end": 4543.88, + "probability": 1.0 + }, + { + "word": " it", + "start": 4543.88, + "end": 4543.94, + "probability": 1.0 + }, + { + "word": " afterwards,", + "start": 4543.94, + "end": 4544.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 4544.48, + "end": 4544.94, + "probability": 0.99951171875 + }, + { + "word": " boot", + "start": 4544.94, + "end": 4545.16, + "probability": 1.0 + } + ] + }, + { + "id": 2193, + "text": "sector is on the wrong drive at that point.", + "start": 4545.16, + "end": 4547.48, + "words": [ + { + "word": " sector", + "start": 4545.16, + "end": 4545.4, + "probability": 1.0 + }, + { + "word": " is", + "start": 4545.4, + "end": 4545.66, + "probability": 1.0 + }, + { + "word": " on", + "start": 4545.66, + "end": 4545.76, + "probability": 1.0 + }, + { + "word": " the", + "start": 4545.76, + "end": 4545.92, + "probability": 1.0 + }, + { + "word": " wrong", + "start": 4545.92, + "end": 4546.12, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4546.12, + "end": 4546.5, + "probability": 1.0 + }, + { + "word": " at", + "start": 4546.5, + "end": 4546.98, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 4546.98, + "end": 4547.16, + "probability": 1.0 + }, + { + "word": " point.", + "start": 4547.16, + "end": 4547.48, + "probability": 1.0 + } + ] + }, + { + "id": 2194, + "text": "And it's increasingly difficult to move the boot sector from one machine to another.", + "start": 4548.760000000001, + "end": 4553.4, + "words": [ + { + "word": " And", + "start": 4548.760000000001, + "end": 4549.240000000001, + "probability": 0.982421875 + }, + { + "word": " it's", + "start": 4549.240000000001, + "end": 4549.72, + "probability": 1.0 + }, + { + "word": " increasingly", + "start": 4549.72, + "end": 4550.38, + "probability": 1.0 + }, + { + "word": " difficult", + "start": 4550.38, + "end": 4550.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 4550.86, + "end": 4551.26, + "probability": 1.0 + }, + { + "word": " move", + "start": 4551.26, + "end": 4551.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4551.48, + "end": 4551.7, + "probability": 1.0 + }, + { + "word": " boot", + "start": 4551.7, + "end": 4551.88, + "probability": 1.0 + }, + { + "word": " sector", + "start": 4551.88, + "end": 4552.14, + "probability": 1.0 + }, + { + "word": " from", + "start": 4552.14, + "end": 4552.5, + "probability": 1.0 + }, + { + "word": " one", + "start": 4552.5, + "end": 4552.74, + "probability": 1.0 + }, + { + "word": " machine", + "start": 4552.74, + "end": 4553.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4553.0, + "end": 4553.18, + "probability": 1.0 + }, + { + "word": " another.", + "start": 4553.18, + "end": 4553.4, + "probability": 1.0 + } + ] + }, + { + "id": 2195, + "text": "Unless you just unplug that other drive and then boot off of some type of recovery media and fix the boot sector from there.", + "start": 4554.5599999999995, + "end": 4562.64, + "words": [ + { + "word": " Unless", + "start": 4554.5599999999995, + "end": 4555.16, + "probability": 0.16357421875 + }, + { + "word": " you", + "start": 4555.16, + "end": 4555.76, + "probability": 0.99755859375 + }, + { + "word": " just", + "start": 4555.76, + "end": 4555.96, + "probability": 0.9990234375 + }, + { + "word": " unplug", + "start": 4555.96, + "end": 4556.3, + "probability": 0.99853515625 + }, + { + "word": " that", + "start": 4556.3, + "end": 4556.66, + "probability": 0.9931640625 + }, + { + "word": " other", + "start": 4556.66, + "end": 4556.96, + "probability": 0.99658203125 + }, + { + "word": " drive", + "start": 4556.96, + "end": 4557.36, + "probability": 0.98779296875 + }, + { + "word": " and", + "start": 4557.36, + "end": 4558.04, + "probability": 0.79443359375 + }, + { + "word": " then", + "start": 4558.04, + "end": 4558.3, + "probability": 0.998046875 + }, + { + "word": " boot", + "start": 4558.3, + "end": 4558.64, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 4558.64, + "end": 4558.88, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 4558.88, + "end": 4559.2, + "probability": 0.9873046875 + }, + { + "word": " some", + "start": 4559.2, + "end": 4559.6, + "probability": 0.98779296875 + }, + { + "word": " type", + "start": 4559.6, + "end": 4559.78, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 4559.78, + "end": 4559.9, + "probability": 0.9990234375 + }, + { + "word": " recovery", + "start": 4559.9, + "end": 4560.32, + "probability": 0.9853515625 + }, + { + "word": " media", + "start": 4560.32, + "end": 4560.52, + "probability": 0.974609375 + }, + { + "word": " and", + "start": 4560.52, + "end": 4561.1, + "probability": 0.974609375 + }, + { + "word": " fix", + "start": 4561.1, + "end": 4561.62, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 4561.62, + "end": 4561.82, + "probability": 0.99951171875 + }, + { + "word": " boot", + "start": 4561.82, + "end": 4561.98, + "probability": 0.99365234375 + }, + { + "word": " sector", + "start": 4561.98, + "end": 4562.18, + "probability": 0.9951171875 + }, + { + "word": " from", + "start": 4562.18, + "end": 4562.48, + "probability": 0.9970703125 + }, + { + "word": " there.", + "start": 4562.48, + "end": 4562.64, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2196, + "text": "Basically recreate the boot sector on the solid state drive.", + "start": 4562.7, + "end": 4566.84, + "words": [ + { + "word": " Basically", + "start": 4562.7, + "end": 4562.92, + "probability": 0.9892578125 + }, + { + "word": " recreate", + "start": 4562.92, + "end": 4563.5, + "probability": 0.83349609375 + }, + { + "word": " the", + "start": 4563.5, + "end": 4563.96, + "probability": 1.0 + }, + { + "word": " boot", + "start": 4563.96, + "end": 4564.1, + "probability": 0.99951171875 + }, + { + "word": " sector", + "start": 4564.1, + "end": 4564.32, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 4564.32, + "end": 4564.72, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4564.72, + "end": 4565.04, + "probability": 1.0 + }, + { + "word": " solid", + "start": 4565.04, + "end": 4566.4, + "probability": 0.95068359375 + }, + { + "word": " state", + "start": 4566.4, + "end": 4566.62, + "probability": 0.748046875 + }, + { + "word": " drive.", + "start": 4566.62, + "end": 4566.84, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2197, + "text": "Now, the other thing is that there has to be enough partition space available for Windows to create its own little special partition for that.", + "start": 4567.6, + "end": 4575.88, + "words": [ + { + "word": " Now,", + "start": 4567.6, + "end": 4568.2, + "probability": 0.98388671875 + }, + { + "word": " the", + "start": 4568.26, + "end": 4568.74, + "probability": 0.99951171875 + }, + { + "word": " other", + "start": 4568.74, + "end": 4569.0, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4569.0, + "end": 4569.16, + "probability": 1.0 + }, + { + "word": " is", + "start": 4569.16, + "end": 4569.4, + "probability": 1.0 + }, + { + "word": " that", + "start": 4569.4, + "end": 4569.6, + "probability": 0.79052734375 + }, + { + "word": " there", + "start": 4569.6, + "end": 4569.78, + "probability": 1.0 + }, + { + "word": " has", + "start": 4569.78, + "end": 4569.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 4569.92, + "end": 4570.08, + "probability": 1.0 + }, + { + "word": " be", + "start": 4570.08, + "end": 4570.2, + "probability": 1.0 + }, + { + "word": " enough", + "start": 4570.2, + "end": 4570.36, + "probability": 1.0 + }, + { + "word": " partition", + "start": 4570.36, + "end": 4570.72, + "probability": 0.99951171875 + }, + { + "word": " space", + "start": 4570.72, + "end": 4571.0, + "probability": 1.0 + }, + { + "word": " available", + "start": 4571.0, + "end": 4571.42, + "probability": 1.0 + }, + { + "word": " for", + "start": 4571.42, + "end": 4572.52, + "probability": 0.9990234375 + }, + { + "word": " Windows", + "start": 4572.52, + "end": 4573.34, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4573.34, + "end": 4573.58, + "probability": 1.0 + }, + { + "word": " create", + "start": 4573.58, + "end": 4574.04, + "probability": 1.0 + }, + { + "word": " its", + "start": 4574.04, + "end": 4574.26, + "probability": 0.99462890625 + }, + { + "word": " own", + "start": 4574.26, + "end": 4574.4, + "probability": 1.0 + }, + { + "word": " little", + "start": 4574.4, + "end": 4574.58, + "probability": 0.99951171875 + }, + { + "word": " special", + "start": 4574.58, + "end": 4574.88, + "probability": 0.9990234375 + }, + { + "word": " partition", + "start": 4574.88, + "end": 4575.36, + "probability": 1.0 + }, + { + "word": " for", + "start": 4575.36, + "end": 4575.66, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4575.66, + "end": 4575.88, + "probability": 1.0 + } + ] + }, + { + "id": 2198, + "text": "And so if you're already starting from square one, you're going to have to do a lot of work.", + "start": 4576.74, + "end": 4583.38, + "words": [ + { + "word": " And", + "start": 4576.74, + "end": 4577.34, + "probability": 0.93310546875 + }, + { + "word": " so", + "start": 4577.34, + "end": 4577.74, + "probability": 0.998046875 + }, + { + "word": " if", + "start": 4577.74, + "end": 4578.26, + "probability": 0.56884765625 + }, + { + "word": " you're", + "start": 4578.26, + "end": 4579.72, + "probability": 0.99853515625 + }, + { + "word": " already", + "start": 4579.72, + "end": 4580.08, + "probability": 1.0 + }, + { + "word": " starting", + "start": 4580.08, + "end": 4580.52, + "probability": 1.0 + }, + { + "word": " from", + "start": 4580.52, + "end": 4580.88, + "probability": 1.0 + }, + { + "word": " square", + "start": 4580.88, + "end": 4581.16, + "probability": 0.96142578125 + }, + { + "word": " one,", + "start": 4581.16, + "end": 4581.5, + "probability": 0.9951171875 + }, + { + "word": " you're", + "start": 4581.7, + "end": 4583.38, + "probability": 0.3515625 + }, + { + "word": " going", + "start": 4583.38, + "end": 4583.38, + "probability": 0.71484375 + }, + { + "word": " to", + "start": 4583.38, + "end": 4583.38, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4583.38, + "end": 4583.38, + "probability": 0.556640625 + }, + { + "word": " to", + "start": 4583.38, + "end": 4583.38, + "probability": 0.9501953125 + }, + { + "word": " do", + "start": 4583.38, + "end": 4583.38, + "probability": 0.265625 + }, + { + "word": " a", + "start": 4583.38, + "end": 4583.38, + "probability": 0.336181640625 + }, + { + "word": " lot", + "start": 4583.38, + "end": 4583.38, + "probability": 0.66845703125 + }, + { + "word": " of", + "start": 4583.38, + "end": 4583.38, + "probability": 0.9091796875 + }, + { + "word": " work.", + "start": 4583.38, + "end": 4583.38, + "probability": 0.494384765625 + } + ] + }, + { + "id": 2199, + "text": "", + "start": 4583.38, + "end": 4583.38, + "words": [] + }, + { + "id": 2200, + "text": "And the way that I would recommend you do it, you said you had a backup or you cloned from one drive to the other.", + "start": 4583.38, + "end": 4589.2, + "words": [ + { + "word": " And", + "start": 4583.38, + "end": 4583.8, + "probability": 0.00959014892578125 + }, + { + "word": " the", + "start": 4583.8, + "end": 4583.8, + "probability": 0.84423828125 + }, + { + "word": " way", + "start": 4583.8, + "end": 4584.36, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 4584.36, + "end": 4584.56, + "probability": 0.99072265625 + }, + { + "word": " I", + "start": 4584.56, + "end": 4584.72, + "probability": 0.9990234375 + }, + { + "word": " would", + "start": 4584.72, + "end": 4584.94, + "probability": 0.9990234375 + }, + { + "word": " recommend", + "start": 4584.94, + "end": 4585.34, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 4585.34, + "end": 4585.62, + "probability": 0.99169921875 + }, + { + "word": " do", + "start": 4585.62, + "end": 4585.78, + "probability": 0.9970703125 + }, + { + "word": " it,", + "start": 4585.78, + "end": 4586.0, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4586.04, + "end": 4586.26, + "probability": 0.89404296875 + }, + { + "word": " said", + "start": 4586.26, + "end": 4586.48, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 4586.48, + "end": 4586.6, + "probability": 0.9990234375 + }, + { + "word": " had", + "start": 4586.6, + "end": 4586.68, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4586.68, + "end": 4586.74, + "probability": 0.9990234375 + }, + { + "word": " backup", + "start": 4586.74, + "end": 4587.08, + "probability": 0.98828125 + }, + { + "word": " or", + "start": 4587.08, + "end": 4587.46, + "probability": 0.69873046875 + }, + { + "word": " you", + "start": 4587.46, + "end": 4587.66, + "probability": 0.998046875 + }, + { + "word": " cloned", + "start": 4587.66, + "end": 4588.16, + "probability": 0.9990234375 + }, + { + "word": " from", + "start": 4588.16, + "end": 4588.4, + "probability": 0.99951171875 + }, + { + "word": " one", + "start": 4588.4, + "end": 4588.6, + "probability": 0.99658203125 + }, + { + "word": " drive", + "start": 4588.6, + "end": 4588.76, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 4588.76, + "end": 4588.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 4588.94, + "end": 4589.02, + "probability": 0.99951171875 + }, + { + "word": " other.", + "start": 4589.02, + "end": 4589.2, + "probability": 1.0 + } + ] + }, + { + "id": 2201, + "text": "Is that what you said?", + "start": 4589.3, + "end": 4589.82, + "words": [ + { + "word": " Is", + "start": 4589.3, + "end": 4589.48, + "probability": 0.99560546875 + }, + { + "word": " that", + "start": 4589.48, + "end": 4589.52, + "probability": 1.0 + }, + { + "word": " what", + "start": 4589.52, + "end": 4589.64, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4589.64, + "end": 4589.7, + "probability": 1.0 + }, + { + "word": " said?", + "start": 4589.7, + "end": 4589.82, + "probability": 1.0 + } + ] + }, + { + "id": 2202, + "text": "Yeah.", + "start": 4590.18, + "end": 4590.44, + "words": [ + { + "word": " Yeah.", + "start": 4590.18, + "end": 4590.44, + "probability": 0.9482421875 + } + ] + }, + { + "id": 2203, + "text": "I cloned from the C drive, which has all the operating system on to the solid state drive using the application that came with the solid state drive.", + "start": 4590.58, + "end": 4599.66, + "words": [ + { + "word": " I", + "start": 4590.58, + "end": 4590.78, + "probability": 0.998046875 + }, + { + "word": " cloned", + "start": 4590.78, + "end": 4591.4, + "probability": 0.90869140625 + }, + { + "word": " from", + "start": 4591.4, + "end": 4591.8, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4591.8, + "end": 4592.12, + "probability": 0.99560546875 + }, + { + "word": " C", + "start": 4592.12, + "end": 4592.38, + "probability": 0.998046875 + }, + { + "word": " drive,", + "start": 4592.38, + "end": 4592.66, + "probability": 0.98095703125 + }, + { + "word": " which", + "start": 4592.76, + "end": 4592.98, + "probability": 1.0 + }, + { + "word": " has", + "start": 4592.98, + "end": 4593.12, + "probability": 0.9931640625 + }, + { + "word": " all", + "start": 4593.12, + "end": 4593.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 4593.28, + "end": 4593.4, + "probability": 1.0 + }, + { + "word": " operating", + "start": 4593.4, + "end": 4593.7, + "probability": 0.9990234375 + }, + { + "word": " system", + "start": 4593.7, + "end": 4593.98, + "probability": 0.99658203125 + }, + { + "word": " on", + "start": 4593.98, + "end": 4594.34, + "probability": 0.4580078125 + }, + { + "word": " to", + "start": 4594.34, + "end": 4594.6, + "probability": 0.94091796875 + }, + { + "word": " the", + "start": 4594.6, + "end": 4594.7, + "probability": 0.98046875 + }, + { + "word": " solid", + "start": 4594.7, + "end": 4595.8, + "probability": 0.21923828125 + }, + { + "word": " state", + "start": 4595.8, + "end": 4596.1, + "probability": 0.95947265625 + }, + { + "word": " drive", + "start": 4596.1, + "end": 4596.38, + "probability": 0.9970703125 + }, + { + "word": " using", + "start": 4596.38, + "end": 4596.66, + "probability": 0.97265625 + }, + { + "word": " the", + "start": 4596.66, + "end": 4596.84, + "probability": 0.853515625 + }, + { + "word": " application", + "start": 4596.84, + "end": 4597.26, + "probability": 1.0 + }, + { + "word": " that", + "start": 4597.26, + "end": 4597.58, + "probability": 0.95458984375 + }, + { + "word": " came", + "start": 4597.58, + "end": 4597.84, + "probability": 0.5419921875 + }, + { + "word": " with", + "start": 4597.84, + "end": 4598.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 4598.26, + "end": 4598.56, + "probability": 1.0 + }, + { + "word": " solid", + "start": 4598.56, + "end": 4599.14, + "probability": 0.99951171875 + }, + { + "word": " state", + "start": 4599.14, + "end": 4599.32, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 4599.32, + "end": 4599.66, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2204, + "text": "Okay.", + "start": 4600.120000000001, + "end": 4600.56, + "words": [ + { + "word": " Okay.", + "start": 4600.120000000001, + "end": 4600.56, + "probability": 0.9248046875 + } + ] + }, + { + "id": 2205, + "text": "So here's what I would do if you wanted the simple do it yourself method of doing this at home, which would be to, unfortunately, you're going to have to reclone everything.", + "start": 4600.64, + "end": 4610.18, + "words": [ + { + "word": " So", + "start": 4600.64, + "end": 4601.08, + "probability": 0.99853515625 + }, + { + "word": " here's", + "start": 4601.08, + "end": 4601.44, + "probability": 0.97509765625 + }, + { + "word": " what", + "start": 4601.44, + "end": 4601.56, + "probability": 1.0 + }, + { + "word": " I", + "start": 4601.56, + "end": 4601.7, + "probability": 1.0 + }, + { + "word": " would", + "start": 4601.7, + "end": 4601.86, + "probability": 1.0 + }, + { + "word": " do", + "start": 4601.86, + "end": 4602.08, + "probability": 1.0 + }, + { + "word": " if", + "start": 4602.08, + "end": 4602.46, + "probability": 0.54638671875 + }, + { + "word": " you", + "start": 4602.46, + "end": 4602.66, + "probability": 1.0 + }, + { + "word": " wanted", + "start": 4602.66, + "end": 4602.94, + "probability": 1.0 + }, + { + "word": " the", + "start": 4602.94, + "end": 4603.14, + "probability": 0.99951171875 + }, + { + "word": " simple", + "start": 4603.14, + "end": 4603.48, + "probability": 1.0 + }, + { + "word": " do", + "start": 4603.48, + "end": 4603.72, + "probability": 0.998046875 + }, + { + "word": " it", + "start": 4603.72, + "end": 4603.9, + "probability": 0.51953125 + }, + { + "word": " yourself", + "start": 4603.9, + "end": 4604.14, + "probability": 1.0 + }, + { + "word": " method", + "start": 4604.14, + "end": 4604.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 4604.72, + "end": 4605.08, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4605.08, + "end": 4605.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 4605.22, + "end": 4605.4, + "probability": 1.0 + }, + { + "word": " at", + "start": 4605.4, + "end": 4605.54, + "probability": 0.99951171875 + }, + { + "word": " home,", + "start": 4605.54, + "end": 4605.78, + "probability": 0.9990234375 + }, + { + "word": " which", + "start": 4605.86, + "end": 4606.74, + "probability": 1.0 + }, + { + "word": " would", + "start": 4606.74, + "end": 4606.9, + "probability": 1.0 + }, + { + "word": " be", + "start": 4606.9, + "end": 4607.14, + "probability": 1.0 + }, + { + "word": " to,", + "start": 4607.14, + "end": 4607.38, + "probability": 0.998046875 + }, + { + "word": " unfortunately,", + "start": 4607.46, + "end": 4608.94, + "probability": 0.99755859375 + }, + { + "word": " you're", + "start": 4609.12, + "end": 4609.3, + "probability": 0.9638671875 + }, + { + "word": " going", + "start": 4609.3, + "end": 4609.36, + "probability": 0.58740234375 + }, + { + "word": " to", + "start": 4609.36, + "end": 4609.38, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 4609.38, + "end": 4609.46, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4609.46, + "end": 4609.54, + "probability": 1.0 + }, + { + "word": " reclone", + "start": 4609.54, + "end": 4609.9, + "probability": 0.97265625 + }, + { + "word": " everything.", + "start": 4609.9, + "end": 4610.18, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2206, + "text": "But.", + "start": 4610.9800000000005, + "end": 4611.42, + "words": [ + { + "word": " But.", + "start": 4610.9800000000005, + "end": 4611.42, + "probability": 0.5361328125 + } + ] + }, + { + "id": 2207, + "text": "Okay.", + "start": 4611.48, + "end": 4611.92, + "words": [ + { + "word": " Okay.", + "start": 4611.48, + "end": 4611.92, + "probability": 0.4873046875 + } + ] + }, + { + "id": 2208, + "text": "So what I would do is I would first just do a clean install of Windows on the solid state drive with no other drive plugged in.", + "start": 4613.38, + "end": 4622.88, + "words": [ + { + "word": " So", + "start": 4613.38, + "end": 4613.38, + "probability": 0.01025390625 + }, + { + "word": " what", + "start": 4613.38, + "end": 4613.38, + "probability": 0.7568359375 + }, + { + "word": " I", + "start": 4613.38, + "end": 4613.38, + "probability": 0.9951171875 + }, + { + "word": " would", + "start": 4613.38, + "end": 4613.4, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4613.4, + "end": 4613.7, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4613.7, + "end": 4614.0, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 4614.0, + "end": 4614.14, + "probability": 0.9931640625 + }, + { + "word": " would", + "start": 4614.14, + "end": 4614.42, + "probability": 1.0 + }, + { + "word": " first", + "start": 4614.42, + "end": 4615.84, + "probability": 0.9775390625 + }, + { + "word": " just", + "start": 4615.84, + "end": 4616.84, + "probability": 0.998046875 + }, + { + "word": " do", + "start": 4616.84, + "end": 4617.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 4617.06, + "end": 4617.16, + "probability": 1.0 + }, + { + "word": " clean", + "start": 4617.16, + "end": 4617.44, + "probability": 0.99951171875 + }, + { + "word": " install", + "start": 4617.44, + "end": 4617.9, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4617.9, + "end": 4618.6, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 4618.6, + "end": 4618.94, + "probability": 0.9755859375 + }, + { + "word": " on", + "start": 4618.94, + "end": 4619.36, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4619.36, + "end": 4619.62, + "probability": 1.0 + }, + { + "word": " solid", + "start": 4619.62, + "end": 4619.94, + "probability": 0.99658203125 + }, + { + "word": " state", + "start": 4619.94, + "end": 4620.24, + "probability": 0.85546875 + }, + { + "word": " drive", + "start": 4620.24, + "end": 4620.58, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 4620.58, + "end": 4621.18, + "probability": 0.986328125 + }, + { + "word": " no", + "start": 4621.18, + "end": 4621.48, + "probability": 1.0 + }, + { + "word": " other", + "start": 4621.48, + "end": 4621.84, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4621.84, + "end": 4622.18, + "probability": 0.99951171875 + }, + { + "word": " plugged", + "start": 4622.18, + "end": 4622.56, + "probability": 0.99951171875 + }, + { + "word": " in.", + "start": 4622.56, + "end": 4622.88, + "probability": 1.0 + } + ] + }, + { + "id": 2209, + "text": "So that way that it puts the boot sector on the right drive.", + "start": 4623.16, + "end": 4626.28, + "words": [ + { + "word": " So", + "start": 4623.16, + "end": 4623.68, + "probability": 0.99755859375 + }, + { + "word": " that", + "start": 4623.68, + "end": 4623.78, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 4623.78, + "end": 4624.06, + "probability": 1.0 + }, + { + "word": " that", + "start": 4624.06, + "end": 4624.22, + "probability": 0.869140625 + }, + { + "word": " it", + "start": 4624.22, + "end": 4624.3, + "probability": 1.0 + }, + { + "word": " puts", + "start": 4624.3, + "end": 4624.58, + "probability": 1.0 + }, + { + "word": " the", + "start": 4624.58, + "end": 4624.8, + "probability": 1.0 + }, + { + "word": " boot", + "start": 4624.8, + "end": 4624.96, + "probability": 0.98974609375 + }, + { + "word": " sector", + "start": 4624.96, + "end": 4625.16, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4625.16, + "end": 4625.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 4625.44, + "end": 4625.56, + "probability": 1.0 + }, + { + "word": " right", + "start": 4625.56, + "end": 4625.8, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 4625.8, + "end": 4626.28, + "probability": 1.0 + } + ] + }, + { + "id": 2210, + "text": "So you know it's all on the same drive.", + "start": 4626.5, + "end": 4628.02, + "words": [ + { + "word": " So", + "start": 4626.5, + "end": 4626.94, + "probability": 0.98974609375 + }, + { + "word": " you", + "start": 4626.94, + "end": 4627.02, + "probability": 0.9912109375 + }, + { + "word": " know", + "start": 4627.02, + "end": 4627.18, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4627.18, + "end": 4627.34, + "probability": 0.9990234375 + }, + { + "word": " all", + "start": 4627.34, + "end": 4627.42, + "probability": 1.0 + }, + { + "word": " on", + "start": 4627.42, + "end": 4627.58, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 4627.58, + "end": 4627.64, + "probability": 1.0 + }, + { + "word": " same", + "start": 4627.64, + "end": 4627.76, + "probability": 1.0 + }, + { + "word": " drive.", + "start": 4627.76, + "end": 4628.02, + "probability": 1.0 + } + ] + }, + { + "id": 2211, + "text": "Okay.", + "start": 4628.28, + "end": 4628.8, + "words": [ + { + "word": " Okay.", + "start": 4628.28, + "end": 4628.8, + "probability": 0.048980712890625 + } + ] + }, + { + "id": 2212, + "text": "And then once you've done that, then you can use your utility to move Windows from one drive to the other and then unplug the drive again.", + "start": 4628.8, + "end": 4637.46, + "words": [ + { + "word": " And", + "start": 4628.8, + "end": 4629.08, + "probability": 0.94970703125 + }, + { + "word": " then", + "start": 4629.08, + "end": 4629.3, + "probability": 0.99267578125 + }, + { + "word": " once", + "start": 4629.3, + "end": 4629.52, + "probability": 0.9970703125 + }, + { + "word": " you've", + "start": 4629.52, + "end": 4629.76, + "probability": 1.0 + }, + { + "word": " done", + "start": 4629.76, + "end": 4629.94, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4629.94, + "end": 4630.3, + "probability": 1.0 + }, + { + "word": " then", + "start": 4630.44, + "end": 4631.12, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4631.12, + "end": 4631.38, + "probability": 1.0 + }, + { + "word": " can", + "start": 4631.38, + "end": 4631.54, + "probability": 1.0 + }, + { + "word": " use", + "start": 4631.54, + "end": 4631.76, + "probability": 1.0 + }, + { + "word": " your", + "start": 4631.76, + "end": 4631.88, + "probability": 1.0 + }, + { + "word": " utility", + "start": 4631.88, + "end": 4632.18, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4632.18, + "end": 4632.68, + "probability": 1.0 + }, + { + "word": " move", + "start": 4632.68, + "end": 4633.18, + "probability": 0.9970703125 + }, + { + "word": " Windows", + "start": 4633.18, + "end": 4633.74, + "probability": 0.99658203125 + }, + { + "word": " from", + "start": 4633.74, + "end": 4634.02, + "probability": 1.0 + }, + { + "word": " one", + "start": 4634.02, + "end": 4634.26, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4634.26, + "end": 4634.48, + "probability": 1.0 + }, + { + "word": " to", + "start": 4634.48, + "end": 4634.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 4634.74, + "end": 4634.84, + "probability": 1.0 + }, + { + "word": " other", + "start": 4634.84, + "end": 4635.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 4635.14, + "end": 4636.34, + "probability": 0.5458984375 + }, + { + "word": " then", + "start": 4636.34, + "end": 4636.58, + "probability": 1.0 + }, + { + "word": " unplug", + "start": 4636.58, + "end": 4636.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 4636.84, + "end": 4637.08, + "probability": 1.0 + }, + { + "word": " drive", + "start": 4637.08, + "end": 4637.24, + "probability": 1.0 + }, + { + "word": " again.", + "start": 4637.24, + "end": 4637.46, + "probability": 1.0 + } + ] + }, + { + "id": 2213, + "text": "Okay.", + "start": 4638.46, + "end": 4638.98, + "words": [ + { + "word": " Okay.", + "start": 4638.46, + "end": 4638.98, + "probability": 0.8076171875 + } + ] + }, + { + "id": 2214, + "text": "And that'll likely get you up into where the machine will start.", + "start": 4638.98, + "end": 4643.12, + "words": [ + { + "word": " And", + "start": 4638.98, + "end": 4638.98, + "probability": 0.52197265625 + }, + { + "word": " that'll", + "start": 4638.98, + "end": 4639.96, + "probability": 0.7314453125 + }, + { + "word": " likely", + "start": 4639.96, + "end": 4640.28, + "probability": 1.0 + }, + { + "word": " get", + "start": 4640.28, + "end": 4640.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 4640.52, + "end": 4640.7, + "probability": 1.0 + }, + { + "word": " up", + "start": 4640.7, + "end": 4640.88, + "probability": 1.0 + }, + { + "word": " into", + "start": 4640.88, + "end": 4641.04, + "probability": 0.99755859375 + }, + { + "word": " where", + "start": 4641.04, + "end": 4641.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 4641.48, + "end": 4641.96, + "probability": 1.0 + }, + { + "word": " machine", + "start": 4641.96, + "end": 4642.6, + "probability": 1.0 + }, + { + "word": " will", + "start": 4642.6, + "end": 4642.82, + "probability": 1.0 + }, + { + "word": " start.", + "start": 4642.82, + "end": 4643.12, + "probability": 1.0 + } + ] + }, + { + "id": 2215, + "text": "Okay.", + "start": 4643.2, + "end": 4643.36, + "words": [ + { + "word": " Okay.", + "start": 4643.2, + "end": 4643.36, + "probability": 0.6865234375 + } + ] + }, + { + "id": 2216, + "text": "Now, after you do your clone, you'll probably have to run a utility off of the boot media off of the Windows installer.", + "start": 4643.38, + "end": 4652.48, + "words": [ + { + "word": " Now,", + "start": 4643.38, + "end": 4643.98, + "probability": 0.9765625 + }, + { + "word": " after", + "start": 4644.08, + "end": 4644.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 4644.78, + "end": 4644.98, + "probability": 1.0 + }, + { + "word": " do", + "start": 4644.98, + "end": 4645.16, + "probability": 1.0 + }, + { + "word": " your", + "start": 4645.16, + "end": 4645.38, + "probability": 1.0 + }, + { + "word": " clone,", + "start": 4645.38, + "end": 4645.76, + "probability": 0.9990234375 + }, + { + "word": " you'll", + "start": 4645.94, + "end": 4646.12, + "probability": 1.0 + }, + { + "word": " probably", + "start": 4646.12, + "end": 4646.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 4646.6, + "end": 4646.94, + "probability": 1.0 + }, + { + "word": " to", + "start": 4646.94, + "end": 4647.24, + "probability": 1.0 + }, + { + "word": " run", + "start": 4647.24, + "end": 4647.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 4647.74, + "end": 4647.88, + "probability": 1.0 + }, + { + "word": " utility", + "start": 4647.88, + "end": 4648.16, + "probability": 1.0 + }, + { + "word": " off", + "start": 4648.16, + "end": 4649.34, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4649.34, + "end": 4649.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 4649.6, + "end": 4649.92, + "probability": 1.0 + }, + { + "word": " boot", + "start": 4649.92, + "end": 4650.66, + "probability": 0.994140625 + }, + { + "word": " media", + "start": 4650.66, + "end": 4650.96, + "probability": 0.9990234375 + }, + { + "word": " off", + "start": 4650.96, + "end": 4651.32, + "probability": 0.09478759765625 + }, + { + "word": " of", + "start": 4651.32, + "end": 4651.54, + "probability": 0.99755859375 + }, + { + "word": " the", + "start": 4651.54, + "end": 4651.7, + "probability": 0.99951171875 + }, + { + "word": " Windows", + "start": 4651.7, + "end": 4652.04, + "probability": 0.927734375 + }, + { + "word": " installer.", + "start": 4652.04, + "end": 4652.48, + "probability": 0.8955078125 + } + ] + }, + { + "id": 2217, + "text": "If you can get into the command prompt from the Windows installer and there's a utility called FixBoot.", + "start": 4652.76, + "end": 4659.78, + "words": [ + { + "word": " If", + "start": 4652.76, + "end": 4653.28, + "probability": 0.9609375 + }, + { + "word": " you", + "start": 4653.28, + "end": 4653.34, + "probability": 1.0 + }, + { + "word": " can", + "start": 4653.34, + "end": 4653.44, + "probability": 0.9990234375 + }, + { + "word": " get", + "start": 4653.44, + "end": 4653.54, + "probability": 1.0 + }, + { + "word": " into", + "start": 4653.54, + "end": 4653.68, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4653.68, + "end": 4653.92, + "probability": 1.0 + }, + { + "word": " command", + "start": 4653.92, + "end": 4654.86, + "probability": 0.994140625 + }, + { + "word": " prompt", + "start": 4654.86, + "end": 4655.16, + "probability": 1.0 + }, + { + "word": " from", + "start": 4655.16, + "end": 4655.88, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4655.88, + "end": 4656.04, + "probability": 1.0 + }, + { + "word": " Windows", + "start": 4656.04, + "end": 4656.26, + "probability": 0.998046875 + }, + { + "word": " installer", + "start": 4656.26, + "end": 4656.64, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4656.64, + "end": 4657.08, + "probability": 0.4853515625 + }, + { + "word": " there's", + "start": 4657.08, + "end": 4657.68, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4657.68, + "end": 4657.76, + "probability": 1.0 + }, + { + "word": " utility", + "start": 4657.76, + "end": 4658.5, + "probability": 0.99951171875 + }, + { + "word": " called", + "start": 4658.5, + "end": 4658.88, + "probability": 1.0 + }, + { + "word": " FixBoot.", + "start": 4658.88, + "end": 4659.78, + "probability": 0.72509765625 + } + ] + }, + { + "id": 2218, + "text": "And there's three different switches you can use for that.", + "start": 4660.26, + "end": 4663.0, + "words": [ + { + "word": " And", + "start": 4660.26, + "end": 4660.78, + "probability": 0.966796875 + }, + { + "word": " there's", + "start": 4660.78, + "end": 4661.2, + "probability": 0.99853515625 + }, + { + "word": " three", + "start": 4661.2, + "end": 4661.58, + "probability": 0.99755859375 + }, + { + "word": " different", + "start": 4661.58, + "end": 4661.86, + "probability": 1.0 + }, + { + "word": " switches", + "start": 4661.86, + "end": 4662.2, + "probability": 1.0 + }, + { + "word": " you", + "start": 4662.2, + "end": 4662.46, + "probability": 0.99951171875 + }, + { + "word": " can", + "start": 4662.46, + "end": 4662.6, + "probability": 1.0 + }, + { + "word": " use", + "start": 4662.6, + "end": 4662.78, + "probability": 1.0 + }, + { + "word": " for", + "start": 4662.78, + "end": 4662.9, + "probability": 0.9990234375 + }, + { + "word": " that.", + "start": 4662.9, + "end": 4663.0, + "probability": 0.99462890625 + } + ] + }, + { + "id": 2219, + "text": "It's FixBoot slash FixMBR, FixBoot slash, I'm sorry, BootRec is what they call it now.", + "start": 4663.08, + "end": 4670.38, + "words": [ + { + "word": " It's", + "start": 4663.08, + "end": 4663.18, + "probability": 0.8408203125 + }, + { + "word": " FixBoot", + "start": 4663.18, + "end": 4663.7, + "probability": 0.9912109375 + }, + { + "word": " slash", + "start": 4663.7, + "end": 4664.42, + "probability": 0.97021484375 + }, + { + "word": " FixMBR,", + "start": 4664.42, + "end": 4665.36, + "probability": 0.9267578125 + }, + { + "word": " FixBoot", + "start": 4665.64, + "end": 4666.34, + "probability": 0.99951171875 + }, + { + "word": " slash,", + "start": 4666.34, + "end": 4666.84, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4666.98, + "end": 4668.72, + "probability": 0.998046875 + }, + { + "word": " sorry,", + "start": 4668.72, + "end": 4668.84, + "probability": 1.0 + }, + { + "word": " BootRec", + "start": 4668.96, + "end": 4669.32, + "probability": 0.9404296875 + }, + { + "word": " is", + "start": 4669.32, + "end": 4669.58, + "probability": 0.99755859375 + }, + { + "word": " what", + "start": 4669.58, + "end": 4669.82, + "probability": 1.0 + }, + { + "word": " they", + "start": 4669.82, + "end": 4669.94, + "probability": 1.0 + }, + { + "word": " call", + "start": 4669.94, + "end": 4670.1, + "probability": 1.0 + }, + { + "word": " it", + "start": 4670.1, + "end": 4670.22, + "probability": 1.0 + }, + { + "word": " now.", + "start": 4670.22, + "end": 4670.38, + "probability": 1.0 + } + ] + }, + { + "id": 2220, + "text": "B-O-O-T-R-E-C.", + "start": 4670.5, + "end": 4672.54, + "words": [ + { + "word": " B", + "start": 4670.5, + "end": 4670.88, + "probability": 0.9931640625 + }, + { + "word": "-O", + "start": 4670.88, + "end": 4671.46, + "probability": 0.998046875 + }, + { + "word": "-O", + "start": 4671.46, + "end": 4671.62, + "probability": 0.99462890625 + }, + { + "word": "-T", + "start": 4671.62, + "end": 4671.84, + "probability": 1.0 + }, + { + "word": "-R", + "start": 4671.84, + "end": 4672.28, + "probability": 0.9990234375 + }, + { + "word": "-E", + "start": 4672.28, + "end": 4672.42, + "probability": 1.0 + }, + { + "word": "-C.", + "start": 4672.42, + "end": 4672.54, + "probability": 1.0 + } + ] + }, + { + "id": 2221, + "text": "So BootRec, FixMBR, FixBoot, and then RebuildBCD, which is the boot sector.", + "start": 4673.820000000001, + "end": 4681.76, + "words": [ + { + "word": " So", + "start": 4673.820000000001, + "end": 4674.14, + "probability": 0.8642578125 + }, + { + "word": " BootRec,", + "start": 4674.14, + "end": 4674.46, + "probability": 0.1485595703125 + }, + { + "word": " FixMBR,", + "start": 4674.64, + "end": 4675.64, + "probability": 0.7109375 + }, + { + "word": " FixBoot,", + "start": 4675.98, + "end": 4676.94, + "probability": 0.99560546875 + }, + { + "word": " and", + "start": 4676.94, + "end": 4677.36, + "probability": 1.0 + }, + { + "word": " then", + "start": 4677.36, + "end": 4677.68, + "probability": 1.0 + }, + { + "word": " RebuildBCD,", + "start": 4677.68, + "end": 4679.26, + "probability": 0.98046875 + }, + { + "word": " which", + "start": 4679.42, + "end": 4680.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 4680.58, + "end": 4680.8, + "probability": 1.0 + }, + { + "word": " the", + "start": 4680.8, + "end": 4681.04, + "probability": 1.0 + }, + { + "word": " boot", + "start": 4681.04, + "end": 4681.56, + "probability": 0.9931640625 + }, + { + "word": " sector.", + "start": 4681.56, + "end": 4681.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2222, + "text": "And that should make it so the machine behaves the way it's supposed to.", + "start": 4683.320000000001, + "end": 4686.4, + "words": [ + { + "word": " And", + "start": 4683.320000000001, + "end": 4683.64, + "probability": 0.9775390625 + }, + { + "word": " that", + "start": 4683.64, + "end": 4683.96, + "probability": 0.99951171875 + }, + { + "word": " should", + "start": 4683.96, + "end": 4684.3, + "probability": 1.0 + }, + { + "word": " make", + "start": 4684.3, + "end": 4684.6, + "probability": 1.0 + }, + { + "word": " it", + "start": 4684.6, + "end": 4684.72, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 4684.72, + "end": 4684.84, + "probability": 1.0 + }, + { + "word": " the", + "start": 4684.84, + "end": 4684.94, + "probability": 0.998046875 + }, + { + "word": " machine", + "start": 4684.94, + "end": 4685.14, + "probability": 0.99951171875 + }, + { + "word": " behaves", + "start": 4685.14, + "end": 4685.46, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4685.46, + "end": 4685.68, + "probability": 1.0 + }, + { + "word": " way", + "start": 4685.68, + "end": 4685.78, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4685.78, + "end": 4685.94, + "probability": 1.0 + }, + { + "word": " supposed", + "start": 4685.94, + "end": 4686.18, + "probability": 1.0 + }, + { + "word": " to.", + "start": 4686.18, + "end": 4686.4, + "probability": 1.0 + } + ] + }, + { + "id": 2223, + "text": "Okay. I'll give that a try.", + "start": 4688.04, + "end": 4689.04, + "words": [ + { + "word": " Okay.", + "start": 4688.04, + "end": 4688.36, + "probability": 0.98486328125 + }, + { + "word": " I'll", + "start": 4688.4, + "end": 4688.5, + "probability": 0.9912109375 + }, + { + "word": " give", + "start": 4688.5, + "end": 4688.64, + "probability": 1.0 + }, + { + "word": " that", + "start": 4688.64, + "end": 4688.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 4688.78, + "end": 4688.86, + "probability": 1.0 + }, + { + "word": " try.", + "start": 4688.86, + "end": 4689.04, + "probability": 1.0 + } + ] + }, + { + "id": 2224, + "text": "Give it a shot.", + "start": 4689.6, + "end": 4690.3, + "words": [ + { + "word": " Give", + "start": 4689.6, + "end": 4689.92, + "probability": 0.9951171875 + }, + { + "word": " it", + "start": 4689.92, + "end": 4690.06, + "probability": 1.0 + }, + { + "word": " a", + "start": 4690.06, + "end": 4690.1, + "probability": 1.0 + }, + { + "word": " shot.", + "start": 4690.1, + "end": 4690.3, + "probability": 1.0 + } + ] + }, + { + "id": 2225, + "text": "And if that doesn't work, you know, give us a call down at the shop.", + "start": 4690.42, + "end": 4692.52, + "words": [ + { + "word": " And", + "start": 4690.42, + "end": 4690.62, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 4690.62, + "end": 4690.88, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4690.88, + "end": 4691.08, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 4691.08, + "end": 4691.28, + "probability": 0.9912109375 + }, + { + "word": " work,", + "start": 4691.28, + "end": 4691.44, + "probability": 1.0 + }, + { + "word": " you", + "start": 4691.62, + "end": 4691.62, + "probability": 0.344970703125 + }, + { + "word": " know,", + "start": 4691.62, + "end": 4691.7, + "probability": 1.0 + }, + { + "word": " give", + "start": 4691.7, + "end": 4691.82, + "probability": 1.0 + }, + { + "word": " us", + "start": 4691.82, + "end": 4691.92, + "probability": 1.0 + }, + { + "word": " a", + "start": 4691.92, + "end": 4691.94, + "probability": 1.0 + }, + { + "word": " call", + "start": 4691.94, + "end": 4692.06, + "probability": 1.0 + }, + { + "word": " down", + "start": 4692.06, + "end": 4692.2, + "probability": 0.9951171875 + }, + { + "word": " at", + "start": 4692.2, + "end": 4692.28, + "probability": 1.0 + }, + { + "word": " the", + "start": 4692.28, + "end": 4692.3, + "probability": 1.0 + }, + { + "word": " shop.", + "start": 4692.3, + "end": 4692.52, + "probability": 1.0 + } + ] + }, + { + "id": 2226, + "text": "We can help you out.", + "start": 4692.54, + "end": 4693.18, + "words": [ + { + "word": " We", + "start": 4692.54, + "end": 4692.68, + "probability": 1.0 + }, + { + "word": " can", + "start": 4692.68, + "end": 4692.78, + "probability": 1.0 + }, + { + "word": " help", + "start": 4692.78, + "end": 4692.96, + "probability": 1.0 + }, + { + "word": " you", + "start": 4692.96, + "end": 4693.06, + "probability": 1.0 + }, + { + "word": " out.", + "start": 4693.06, + "end": 4693.18, + "probability": 1.0 + } + ] + }, + { + "id": 2227, + "text": "Okay. Great. I appreciate it.", + "start": 4694.22, + "end": 4695.3, + "words": [ + { + "word": " Okay.", + "start": 4694.22, + "end": 4694.54, + "probability": 0.99951171875 + }, + { + "word": " Great.", + "start": 4694.58, + "end": 4694.74, + "probability": 0.6484375 + }, + { + "word": " I", + "start": 4694.74, + "end": 4694.84, + "probability": 0.94482421875 + }, + { + "word": " appreciate", + "start": 4694.84, + "end": 4695.06, + "probability": 0.998046875 + }, + { + "word": " it.", + "start": 4695.06, + "end": 4695.3, + "probability": 1.0 + } + ] + }, + { + "id": 2228, + "text": "All right. Thanks for the call, Jeff.", + "start": 4695.36, + "end": 4696.52, + "words": [ + { + "word": " All", + "start": 4695.36, + "end": 4695.52, + "probability": 0.994140625 + }, + { + "word": " right.", + "start": 4695.52, + "end": 4695.68, + "probability": 1.0 + }, + { + "word": " Thanks", + "start": 4695.72, + "end": 4695.98, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 4695.98, + "end": 4696.12, + "probability": 1.0 + }, + { + "word": " the", + "start": 4696.12, + "end": 4696.18, + "probability": 0.99951171875 + }, + { + "word": " call,", + "start": 4696.18, + "end": 4696.34, + "probability": 1.0 + }, + { + "word": " Jeff.", + "start": 4696.38, + "end": 4696.52, + "probability": 0.99609375 + } + ] + }, + { + "id": 2229, + "text": "Let's go ahead and move on to Mark.", + "start": 4696.62, + "end": 4698.14, + "words": [ + { + "word": " Let's", + "start": 4696.62, + "end": 4696.94, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 4696.94, + "end": 4696.98, + "probability": 1.0 + }, + { + "word": " ahead", + "start": 4696.98, + "end": 4697.14, + "probability": 1.0 + }, + { + "word": " and", + "start": 4697.14, + "end": 4697.3, + "probability": 1.0 + }, + { + "word": " move", + "start": 4697.3, + "end": 4697.46, + "probability": 1.0 + }, + { + "word": " on", + "start": 4697.46, + "end": 4697.64, + "probability": 1.0 + }, + { + "word": " to", + "start": 4697.64, + "end": 4697.84, + "probability": 1.0 + }, + { + "word": " Mark.", + "start": 4697.84, + "end": 4698.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2230, + "text": "Hello, Mark. How are you?", + "start": 4698.26, + "end": 4699.12, + "words": [ + { + "word": " Hello,", + "start": 4698.26, + "end": 4698.48, + "probability": 0.99853515625 + }, + { + "word": " Mark.", + "start": 4698.54, + "end": 4698.72, + "probability": 1.0 + }, + { + "word": " How", + "start": 4698.78, + "end": 4698.9, + "probability": 0.99658203125 + }, + { + "word": " are", + "start": 4698.9, + "end": 4698.98, + "probability": 1.0 + }, + { + "word": " you?", + "start": 4698.98, + "end": 4699.12, + "probability": 1.0 + } + ] + }, + { + "id": 2231, + "text": "Hello, Mike.", + "start": 4700.4400000000005, + "end": 4701.1, + "words": [ + { + "word": " Hello,", + "start": 4700.4400000000005, + "end": 4700.76, + "probability": 1.0 + }, + { + "word": " Mike.", + "start": 4700.84, + "end": 4701.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2232, + "text": "Hello, Mark.", + "start": 4701.58, + "end": 4702.16, + "words": [ + { + "word": " Hello,", + "start": 4701.58, + "end": 4701.9, + "probability": 0.99951171875 + }, + { + "word": " Mark.", + "start": 4701.96, + "end": 4702.16, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2233, + "text": "Yeah. My week and Saturdays are going to be a whole lot less fulfilling.", + "start": 4703.680000000001, + "end": 4708.76, + "words": [ + { + "word": " Yeah.", + "start": 4703.680000000001, + "end": 4704.120000000001, + "probability": 0.7119140625 + }, + { + "word": " My", + "start": 4704.120000000001, + "end": 4704.56, + "probability": 0.92431640625 + }, + { + "word": " week", + "start": 4704.56, + "end": 4706.1, + "probability": 0.92431640625 + }, + { + "word": " and", + "start": 4706.1, + "end": 4706.38, + "probability": 0.99853515625 + }, + { + "word": " Saturdays", + "start": 4706.38, + "end": 4707.1, + "probability": 0.9990234375 + }, + { + "word": " are", + "start": 4707.1, + "end": 4707.16, + "probability": 0.99853515625 + }, + { + "word": " going", + "start": 4707.16, + "end": 4707.28, + "probability": 0.9912109375 + }, + { + "word": " to", + "start": 4707.28, + "end": 4707.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 4707.38, + "end": 4707.52, + "probability": 1.0 + }, + { + "word": " a", + "start": 4707.52, + "end": 4707.62, + "probability": 0.99951171875 + }, + { + "word": " whole", + "start": 4707.62, + "end": 4707.82, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 4707.82, + "end": 4708.08, + "probability": 1.0 + }, + { + "word": " less", + "start": 4708.08, + "end": 4708.36, + "probability": 0.99951171875 + }, + { + "word": " fulfilling.", + "start": 4708.36, + "end": 4708.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2234, + "text": "Sorry to hear that.", + "start": 4710.360000000001, + "end": 4711.46, + "words": [ + { + "word": " Sorry", + "start": 4710.360000000001, + "end": 4710.8, + "probability": 0.62646484375 + }, + { + "word": " to", + "start": 4710.8, + "end": 4711.24, + "probability": 1.0 + }, + { + "word": " hear", + "start": 4711.24, + "end": 4711.34, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4711.34, + "end": 4711.46, + "probability": 1.0 + } + ] + }, + { + "id": 2235, + "text": "I'm going to miss you. I'm a whole lot smarter because of you over these years.", + "start": 4711.72, + "end": 4715.64, + "words": [ + { + "word": " I'm", + "start": 4711.72, + "end": 4711.78, + "probability": 0.9853515625 + }, + { + "word": " going", + "start": 4711.78, + "end": 4711.96, + "probability": 0.73779296875 + }, + { + "word": " to", + "start": 4711.96, + "end": 4712.24, + "probability": 1.0 + }, + { + "word": " miss", + "start": 4712.24, + "end": 4712.4, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 4712.4, + "end": 4712.68, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4712.88, + "end": 4713.32, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4713.32, + "end": 4713.4, + "probability": 0.99560546875 + }, + { + "word": " whole", + "start": 4713.4, + "end": 4713.6, + "probability": 0.99951171875 + }, + { + "word": " lot", + "start": 4713.6, + "end": 4713.82, + "probability": 1.0 + }, + { + "word": " smarter", + "start": 4713.82, + "end": 4714.16, + "probability": 1.0 + }, + { + "word": " because", + "start": 4714.16, + "end": 4714.64, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4714.64, + "end": 4714.86, + "probability": 1.0 + }, + { + "word": " you", + "start": 4714.86, + "end": 4715.0, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 4715.0, + "end": 4715.18, + "probability": 0.685546875 + }, + { + "word": " these", + "start": 4715.18, + "end": 4715.38, + "probability": 0.9638671875 + }, + { + "word": " years.", + "start": 4715.38, + "end": 4715.64, + "probability": 1.0 + } + ] + }, + { + "id": 2236, + "text": "And so I just want to thank you for all of your years on the radio, giving me all educated up.", + "start": 4716.68, + "end": 4723.48, + "words": [ + { + "word": " And", + "start": 4716.68, + "end": 4717.12, + "probability": 0.65478515625 + }, + { + "word": " so", + "start": 4717.12, + "end": 4717.42, + "probability": 0.962890625 + }, + { + "word": " I", + "start": 4717.42, + "end": 4718.52, + "probability": 0.966796875 + }, + { + "word": " just", + "start": 4718.52, + "end": 4718.64, + "probability": 1.0 + }, + { + "word": " want", + "start": 4718.64, + "end": 4718.76, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4718.76, + "end": 4718.86, + "probability": 1.0 + }, + { + "word": " thank", + "start": 4718.86, + "end": 4719.04, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4719.04, + "end": 4719.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 4719.22, + "end": 4719.4, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4719.4, + "end": 4719.8, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4719.8, + "end": 4719.92, + "probability": 1.0 + }, + { + "word": " your", + "start": 4719.92, + "end": 4720.1, + "probability": 0.998046875 + }, + { + "word": " years", + "start": 4720.1, + "end": 4720.44, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 4720.44, + "end": 4720.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4720.66, + "end": 4720.76, + "probability": 1.0 + }, + { + "word": " radio,", + "start": 4720.76, + "end": 4721.08, + "probability": 1.0 + }, + { + "word": " giving", + "start": 4721.28, + "end": 4722.16, + "probability": 0.78369140625 + }, + { + "word": " me", + "start": 4722.16, + "end": 4722.42, + "probability": 1.0 + }, + { + "word": " all", + "start": 4722.42, + "end": 4722.58, + "probability": 0.99951171875 + }, + { + "word": " educated", + "start": 4722.58, + "end": 4722.92, + "probability": 0.6904296875 + }, + { + "word": " up.", + "start": 4722.92, + "end": 4723.48, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2237, + "text": "Well, that's been the goal the whole time is to try to educate everyone, everyone that listens in some way or another,", + "start": 4724.120000000001, + "end": 4730.64, + "words": [ + { + "word": " Well,", + "start": 4724.120000000001, + "end": 4724.56, + "probability": 0.99609375 + }, + { + "word": " that's", + "start": 4724.58, + "end": 4724.78, + "probability": 1.0 + }, + { + "word": " been", + "start": 4724.78, + "end": 4724.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 4724.9, + "end": 4725.02, + "probability": 1.0 + }, + { + "word": " goal", + "start": 4725.02, + "end": 4725.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 4725.26, + "end": 4725.42, + "probability": 0.9970703125 + }, + { + "word": " whole", + "start": 4725.42, + "end": 4725.58, + "probability": 1.0 + }, + { + "word": " time", + "start": 4725.58, + "end": 4725.88, + "probability": 1.0 + }, + { + "word": " is", + "start": 4725.88, + "end": 4726.14, + "probability": 0.54150390625 + }, + { + "word": " to", + "start": 4726.14, + "end": 4726.3, + "probability": 1.0 + }, + { + "word": " try", + "start": 4726.3, + "end": 4726.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 4726.9, + "end": 4727.02, + "probability": 1.0 + }, + { + "word": " educate", + "start": 4727.02, + "end": 4727.34, + "probability": 1.0 + }, + { + "word": " everyone,", + "start": 4727.34, + "end": 4727.92, + "probability": 0.99951171875 + }, + { + "word": " everyone", + "start": 4728.06, + "end": 4728.96, + "probability": 0.998046875 + }, + { + "word": " that", + "start": 4728.96, + "end": 4729.24, + "probability": 0.99951171875 + }, + { + "word": " listens", + "start": 4729.24, + "end": 4729.52, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 4729.52, + "end": 4729.88, + "probability": 0.98779296875 + }, + { + "word": " some", + "start": 4729.88, + "end": 4730.14, + "probability": 1.0 + }, + { + "word": " way", + "start": 4730.14, + "end": 4730.36, + "probability": 1.0 + }, + { + "word": " or", + "start": 4730.36, + "end": 4730.5, + "probability": 0.99951171875 + }, + { + "word": " another,", + "start": 4730.5, + "end": 4730.64, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2238, + "text": "at least entertain them.", + "start": 4730.74, + "end": 4731.54, + "words": [ + { + "word": " at", + "start": 4730.74, + "end": 4730.88, + "probability": 0.94580078125 + }, + { + "word": " least", + "start": 4730.88, + "end": 4731.0, + "probability": 1.0 + }, + { + "word": " entertain", + "start": 4731.0, + "end": 4731.22, + "probability": 0.9970703125 + }, + { + "word": " them.", + "start": 4731.22, + "end": 4731.54, + "probability": 1.0 + } + ] + }, + { + "id": 2239, + "text": "And find a way to make it so that I can help people be less afraid of technology and hopefully keep themselves safe and enjoy it for what it is.", + "start": 4731.54, + "end": 4741.62, + "words": [ + { + "word": " And", + "start": 4731.54, + "end": 4731.7, + "probability": 0.148193359375 + }, + { + "word": " find", + "start": 4731.7, + "end": 4732.2, + "probability": 0.88916015625 + }, + { + "word": " a", + "start": 4732.2, + "end": 4732.54, + "probability": 0.99951171875 + }, + { + "word": " way", + "start": 4732.54, + "end": 4732.7, + "probability": 1.0 + }, + { + "word": " to", + "start": 4732.7, + "end": 4732.84, + "probability": 0.98388671875 + }, + { + "word": " make", + "start": 4732.84, + "end": 4732.98, + "probability": 0.99853515625 + }, + { + "word": " it", + "start": 4732.98, + "end": 4733.1, + "probability": 1.0 + }, + { + "word": " so", + "start": 4733.1, + "end": 4733.24, + "probability": 0.96337890625 + }, + { + "word": " that", + "start": 4733.24, + "end": 4733.4, + "probability": 0.9755859375 + }, + { + "word": " I", + "start": 4733.4, + "end": 4733.52, + "probability": 0.3974609375 + }, + { + "word": " can", + "start": 4733.52, + "end": 4733.66, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 4733.66, + "end": 4734.32, + "probability": 0.96337890625 + }, + { + "word": " people", + "start": 4734.32, + "end": 4734.58, + "probability": 1.0 + }, + { + "word": " be", + "start": 4734.58, + "end": 4734.74, + "probability": 0.9951171875 + }, + { + "word": " less", + "start": 4734.74, + "end": 4735.02, + "probability": 1.0 + }, + { + "word": " afraid", + "start": 4735.02, + "end": 4735.3, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4735.3, + "end": 4735.48, + "probability": 1.0 + }, + { + "word": " technology", + "start": 4735.48, + "end": 4735.74, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4735.74, + "end": 4736.96, + "probability": 0.515625 + }, + { + "word": " hopefully", + "start": 4736.96, + "end": 4738.18, + "probability": 0.94482421875 + }, + { + "word": " keep", + "start": 4738.18, + "end": 4738.4, + "probability": 0.9990234375 + }, + { + "word": " themselves", + "start": 4738.4, + "end": 4738.6, + "probability": 0.99951171875 + }, + { + "word": " safe", + "start": 4738.6, + "end": 4739.02, + "probability": 1.0 + }, + { + "word": " and", + "start": 4739.02, + "end": 4739.48, + "probability": 0.9814453125 + }, + { + "word": " enjoy", + "start": 4739.48, + "end": 4740.26, + "probability": 0.96630859375 + }, + { + "word": " it", + "start": 4740.26, + "end": 4740.66, + "probability": 1.0 + }, + { + "word": " for", + "start": 4740.66, + "end": 4740.92, + "probability": 0.99951171875 + }, + { + "word": " what", + "start": 4740.92, + "end": 4741.22, + "probability": 1.0 + }, + { + "word": " it", + "start": 4741.22, + "end": 4741.42, + "probability": 1.0 + }, + { + "word": " is.", + "start": 4741.42, + "end": 4741.62, + "probability": 1.0 + } + ] + }, + { + "id": 2240, + "text": "Because even though we do a lot of doom and gloom on this show, as far as technology is concerned, the truth is that technology isn't going anywhere.", + "start": 4741.7, + "end": 4751.14, + "words": [ + { + "word": " Because", + "start": 4741.7, + "end": 4741.9, + "probability": 0.998046875 + }, + { + "word": " even", + "start": 4741.9, + "end": 4742.26, + "probability": 0.99951171875 + }, + { + "word": " though", + "start": 4742.26, + "end": 4742.6, + "probability": 1.0 + }, + { + "word": " we", + "start": 4742.6, + "end": 4743.6, + "probability": 0.99951171875 + }, + { + "word": " do", + "start": 4743.6, + "end": 4744.02, + "probability": 1.0 + }, + { + "word": " a", + "start": 4744.02, + "end": 4744.16, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4744.16, + "end": 4744.28, + "probability": 1.0 + }, + { + "word": " of", + "start": 4744.28, + "end": 4744.36, + "probability": 1.0 + }, + { + "word": " doom", + "start": 4744.36, + "end": 4744.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 4744.52, + "end": 4744.62, + "probability": 1.0 + }, + { + "word": " gloom", + "start": 4744.62, + "end": 4744.88, + "probability": 1.0 + }, + { + "word": " on", + "start": 4744.88, + "end": 4745.02, + "probability": 1.0 + }, + { + "word": " this", + "start": 4745.02, + "end": 4745.2, + "probability": 1.0 + }, + { + "word": " show,", + "start": 4745.2, + "end": 4745.5, + "probability": 1.0 + }, + { + "word": " as", + "start": 4745.56, + "end": 4745.72, + "probability": 1.0 + }, + { + "word": " far", + "start": 4745.72, + "end": 4745.86, + "probability": 1.0 + }, + { + "word": " as", + "start": 4745.86, + "end": 4746.08, + "probability": 1.0 + }, + { + "word": " technology", + "start": 4746.08, + "end": 4746.54, + "probability": 1.0 + }, + { + "word": " is", + "start": 4746.54, + "end": 4746.9, + "probability": 1.0 + }, + { + "word": " concerned,", + "start": 4746.9, + "end": 4747.18, + "probability": 1.0 + }, + { + "word": " the", + "start": 4747.38, + "end": 4747.86, + "probability": 0.99951171875 + }, + { + "word": " truth", + "start": 4747.86, + "end": 4748.2, + "probability": 1.0 + }, + { + "word": " is", + "start": 4748.2, + "end": 4748.6, + "probability": 1.0 + }, + { + "word": " that", + "start": 4748.6, + "end": 4748.96, + "probability": 0.29638671875 + }, + { + "word": " technology", + "start": 4748.96, + "end": 4750.42, + "probability": 0.99951171875 + }, + { + "word": " isn't", + "start": 4750.42, + "end": 4750.76, + "probability": 0.9990234375 + }, + { + "word": " going", + "start": 4750.76, + "end": 4750.88, + "probability": 1.0 + }, + { + "word": " anywhere.", + "start": 4750.88, + "end": 4751.14, + "probability": 1.0 + } + ] + }, + { + "id": 2241, + "text": "And you might as well use it to the best of your ability and knowledge.", + "start": 4751.3, + "end": 4754.46, + "words": [ + { + "word": " And", + "start": 4751.3, + "end": 4751.52, + "probability": 0.99951171875 + }, + { + "word": " you", + "start": 4751.52, + "end": 4751.6, + "probability": 1.0 + }, + { + "word": " might", + "start": 4751.6, + "end": 4751.74, + "probability": 1.0 + }, + { + "word": " as", + "start": 4751.74, + "end": 4751.86, + "probability": 1.0 + }, + { + "word": " well", + "start": 4751.86, + "end": 4751.94, + "probability": 1.0 + }, + { + "word": " use", + "start": 4751.94, + "end": 4752.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 4752.12, + "end": 4752.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 4752.24, + "end": 4752.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 4752.34, + "end": 4752.42, + "probability": 1.0 + }, + { + "word": " best", + "start": 4752.42, + "end": 4752.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 4752.64, + "end": 4752.76, + "probability": 1.0 + }, + { + "word": " your", + "start": 4752.76, + "end": 4752.96, + "probability": 1.0 + }, + { + "word": " ability", + "start": 4752.96, + "end": 4753.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 4753.74, + "end": 4754.12, + "probability": 1.0 + }, + { + "word": " knowledge.", + "start": 4754.12, + "end": 4754.46, + "probability": 1.0 + } + ] + }, + { + "id": 2242, + "text": "And so hopefully people have learned something by listening to the show.", + "start": 4754.9800000000005, + "end": 4758.6, + "words": [ + { + "word": " And", + "start": 4754.9800000000005, + "end": 4755.38, + "probability": 0.9990234375 + }, + { + "word": " so", + "start": 4755.38, + "end": 4755.52, + "probability": 1.0 + }, + { + "word": " hopefully", + "start": 4755.52, + "end": 4755.86, + "probability": 0.9755859375 + }, + { + "word": " people", + "start": 4755.86, + "end": 4756.78, + "probability": 0.94873046875 + }, + { + "word": " have", + "start": 4756.78, + "end": 4756.98, + "probability": 0.99951171875 + }, + { + "word": " learned", + "start": 4756.98, + "end": 4757.18, + "probability": 1.0 + }, + { + "word": " something", + "start": 4757.18, + "end": 4757.48, + "probability": 1.0 + }, + { + "word": " by", + "start": 4757.48, + "end": 4757.72, + "probability": 1.0 + }, + { + "word": " listening", + "start": 4757.72, + "end": 4758.02, + "probability": 1.0 + }, + { + "word": " to", + "start": 4758.02, + "end": 4758.22, + "probability": 1.0 + }, + { + "word": " the", + "start": 4758.22, + "end": 4758.3, + "probability": 0.388671875 + }, + { + "word": " show.", + "start": 4758.3, + "end": 4758.6, + "probability": 1.0 + } + ] + }, + { + "id": 2243, + "text": "And hopefully I've given back to the community enough that I can.", + "start": 4758.8, + "end": 4761.32, + "words": [ + { + "word": " And", + "start": 4758.8, + "end": 4759.06, + "probability": 0.99951171875 + }, + { + "word": " hopefully", + "start": 4759.06, + "end": 4759.36, + "probability": 1.0 + }, + { + "word": " I've", + "start": 4759.36, + "end": 4759.54, + "probability": 0.99951171875 + }, + { + "word": " given", + "start": 4759.54, + "end": 4759.68, + "probability": 0.99853515625 + }, + { + "word": " back", + "start": 4759.68, + "end": 4759.88, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4759.88, + "end": 4760.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4760.06, + "end": 4760.1, + "probability": 1.0 + }, + { + "word": " community", + "start": 4760.1, + "end": 4760.34, + "probability": 1.0 + }, + { + "word": " enough", + "start": 4760.34, + "end": 4760.78, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4760.78, + "end": 4761.04, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4761.04, + "end": 4761.14, + "probability": 1.0 + }, + { + "word": " can.", + "start": 4761.14, + "end": 4761.32, + "probability": 1.0 + } + ] + }, + { + "id": 2244, + "text": "And I can feel good about myself.", + "start": 4761.32, + "end": 4762.82, + "words": [ + { + "word": " And", + "start": 4761.32, + "end": 4761.42, + "probability": 0.39599609375 + }, + { + "word": " I", + "start": 4761.42, + "end": 4761.6, + "probability": 0.970703125 + }, + { + "word": " can", + "start": 4761.6, + "end": 4762.06, + "probability": 1.0 + }, + { + "word": " feel", + "start": 4762.06, + "end": 4762.24, + "probability": 1.0 + }, + { + "word": " good", + "start": 4762.24, + "end": 4762.4, + "probability": 1.0 + }, + { + "word": " about", + "start": 4762.4, + "end": 4762.54, + "probability": 1.0 + }, + { + "word": " myself.", + "start": 4762.54, + "end": 4762.82, + "probability": 1.0 + } + ] + }, + { + "id": 2245, + "text": "So are you going to come back to the radio in your five months after five months?", + "start": 4763.72, + "end": 4768.24, + "words": [ + { + "word": " So", + "start": 4763.72, + "end": 4764.2, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 4764.2, + "end": 4764.42, + "probability": 0.908203125 + }, + { + "word": " you", + "start": 4764.42, + "end": 4764.62, + "probability": 1.0 + }, + { + "word": " going", + "start": 4764.62, + "end": 4764.7, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 4764.7, + "end": 4764.8, + "probability": 1.0 + }, + { + "word": " come", + "start": 4764.8, + "end": 4764.96, + "probability": 1.0 + }, + { + "word": " back", + "start": 4764.96, + "end": 4765.16, + "probability": 1.0 + }, + { + "word": " to", + "start": 4765.16, + "end": 4765.3, + "probability": 1.0 + }, + { + "word": " the", + "start": 4765.3, + "end": 4765.34, + "probability": 1.0 + }, + { + "word": " radio", + "start": 4765.34, + "end": 4765.7, + "probability": 1.0 + }, + { + "word": " in", + "start": 4765.7, + "end": 4766.44, + "probability": 0.80224609375 + }, + { + "word": " your", + "start": 4766.44, + "end": 4766.72, + "probability": 1.0 + }, + { + "word": " five", + "start": 4766.72, + "end": 4767.06, + "probability": 0.9912109375 + }, + { + "word": " months", + "start": 4767.06, + "end": 4767.36, + "probability": 0.9990234375 + }, + { + "word": " after", + "start": 4767.36, + "end": 4767.66, + "probability": 0.128662109375 + }, + { + "word": " five", + "start": 4767.66, + "end": 4767.86, + "probability": 0.73583984375 + }, + { + "word": " months?", + "start": 4767.86, + "end": 4768.24, + "probability": 1.0 + } + ] + }, + { + "id": 2246, + "text": "I'm not sure if we're going to do on air stuff.", + "start": 4768.820000000001, + "end": 4770.7, + "words": [ + { + "word": " I'm", + "start": 4768.820000000001, + "end": 4769.3, + "probability": 0.7998046875 + }, + { + "word": " not", + "start": 4769.3, + "end": 4769.34, + "probability": 1.0 + }, + { + "word": " sure", + "start": 4769.34, + "end": 4769.5, + "probability": 1.0 + }, + { + "word": " if", + "start": 4769.5, + "end": 4769.6, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4769.6, + "end": 4769.74, + "probability": 1.0 + }, + { + "word": " going", + "start": 4769.74, + "end": 4769.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 4769.76, + "end": 4769.86, + "probability": 1.0 + }, + { + "word": " do", + "start": 4769.86, + "end": 4769.98, + "probability": 1.0 + }, + { + "word": " on", + "start": 4769.98, + "end": 4770.24, + "probability": 1.0 + }, + { + "word": " air", + "start": 4770.24, + "end": 4770.42, + "probability": 0.70166015625 + }, + { + "word": " stuff.", + "start": 4770.42, + "end": 4770.7, + "probability": 1.0 + } + ] + }, + { + "id": 2247, + "text": "We will. We may.", + "start": 4770.92, + "end": 4772.52, + "words": [ + { + "word": " We", + "start": 4770.92, + "end": 4771.14, + "probability": 0.9990234375 + }, + { + "word": " will.", + "start": 4771.14, + "end": 4771.36, + "probability": 0.79638671875 + }, + { + "word": " We", + "start": 4771.8, + "end": 4772.28, + "probability": 0.998046875 + }, + { + "word": " may.", + "start": 4772.28, + "end": 4772.52, + "probability": 1.0 + } + ] + }, + { + "id": 2248, + "text": "But there is a plan for doing a podcast version of the show where we can do some video and have a little bit less FCC looming over us.", + "start": 4772.96, + "end": 4784.38, + "words": [ + { + "word": " But", + "start": 4772.96, + "end": 4773.44, + "probability": 0.9990234375 + }, + { + "word": " there", + "start": 4773.44, + "end": 4774.38, + "probability": 1.0 + }, + { + "word": " is", + "start": 4774.38, + "end": 4774.68, + "probability": 1.0 + }, + { + "word": " a", + "start": 4774.68, + "end": 4774.84, + "probability": 1.0 + }, + { + "word": " plan", + "start": 4774.84, + "end": 4775.18, + "probability": 1.0 + }, + { + "word": " for", + "start": 4775.18, + "end": 4775.66, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4775.66, + "end": 4776.12, + "probability": 1.0 + }, + { + "word": " a", + "start": 4776.12, + "end": 4776.62, + "probability": 1.0 + }, + { + "word": " podcast", + "start": 4776.62, + "end": 4777.24, + "probability": 1.0 + }, + { + "word": " version", + "start": 4777.24, + "end": 4777.72, + "probability": 1.0 + }, + { + "word": " of", + "start": 4777.72, + "end": 4778.0, + "probability": 1.0 + }, + { + "word": " the", + "start": 4778.0, + "end": 4778.08, + "probability": 1.0 + }, + { + "word": " show", + "start": 4778.08, + "end": 4778.34, + "probability": 1.0 + }, + { + "word": " where", + "start": 4778.34, + "end": 4779.44, + "probability": 0.98779296875 + }, + { + "word": " we", + "start": 4779.44, + "end": 4779.72, + "probability": 1.0 + }, + { + "word": " can", + "start": 4779.72, + "end": 4779.86, + "probability": 1.0 + }, + { + "word": " do", + "start": 4779.86, + "end": 4780.0, + "probability": 1.0 + }, + { + "word": " some", + "start": 4780.0, + "end": 4780.16, + "probability": 1.0 + }, + { + "word": " video", + "start": 4780.16, + "end": 4780.48, + "probability": 1.0 + }, + { + "word": " and", + "start": 4780.48, + "end": 4780.92, + "probability": 0.978515625 + }, + { + "word": " have", + "start": 4780.92, + "end": 4781.42, + "probability": 0.87646484375 + }, + { + "word": " a", + "start": 4781.42, + "end": 4781.84, + "probability": 1.0 + }, + { + "word": " little", + "start": 4781.84, + "end": 4782.08, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4782.08, + "end": 4782.22, + "probability": 1.0 + }, + { + "word": " less", + "start": 4782.22, + "end": 4782.54, + "probability": 0.99951171875 + }, + { + "word": " FCC", + "start": 4782.54, + "end": 4783.06, + "probability": 0.99853515625 + }, + { + "word": " looming", + "start": 4783.06, + "end": 4783.8, + "probability": 1.0 + }, + { + "word": " over", + "start": 4783.8, + "end": 4784.06, + "probability": 0.99951171875 + }, + { + "word": " us.", + "start": 4784.06, + "end": 4784.38, + "probability": 1.0 + } + ] + }, + { + "id": 2249, + "text": "And and just really I want to have fun with the show.", + "start": 4785.200000000001, + "end": 4789.62, + "words": [ + { + "word": " And", + "start": 4785.200000000001, + "end": 4785.68, + "probability": 0.9951171875 + }, + { + "word": " and", + "start": 4785.68, + "end": 4786.08, + "probability": 0.494873046875 + }, + { + "word": " just", + "start": 4786.08, + "end": 4787.1, + "probability": 0.658203125 + }, + { + "word": " really", + "start": 4787.1, + "end": 4787.54, + "probability": 1.0 + }, + { + "word": " I", + "start": 4787.54, + "end": 4788.46, + "probability": 0.97314453125 + }, + { + "word": " want", + "start": 4788.46, + "end": 4788.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 4788.68, + "end": 4788.78, + "probability": 1.0 + }, + { + "word": " have", + "start": 4788.78, + "end": 4788.88, + "probability": 1.0 + }, + { + "word": " fun", + "start": 4788.88, + "end": 4789.12, + "probability": 1.0 + }, + { + "word": " with", + "start": 4789.12, + "end": 4789.26, + "probability": 1.0 + }, + { + "word": " the", + "start": 4789.26, + "end": 4789.36, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4789.36, + "end": 4789.62, + "probability": 1.0 + } + ] + }, + { + "id": 2250, + "text": "I want to enjoy it again.", + "start": 4789.76, + "end": 4791.1, + "words": [ + { + "word": " I", + "start": 4789.76, + "end": 4790.08, + "probability": 0.998046875 + }, + { + "word": " want", + "start": 4790.08, + "end": 4790.26, + "probability": 1.0 + }, + { + "word": " to", + "start": 4790.26, + "end": 4790.38, + "probability": 1.0 + }, + { + "word": " enjoy", + "start": 4790.38, + "end": 4790.62, + "probability": 1.0 + }, + { + "word": " it", + "start": 4790.62, + "end": 4790.9, + "probability": 1.0 + }, + { + "word": " again.", + "start": 4790.9, + "end": 4791.1, + "probability": 1.0 + } + ] + }, + { + "id": 2251, + "text": "All right.", + "start": 4791.32, + "end": 4791.74, + "words": [ + { + "word": " All", + "start": 4791.32, + "end": 4791.66, + "probability": 0.1995849609375 + }, + { + "word": " right.", + "start": 4791.66, + "end": 4791.74, + "probability": 1.0 + } + ] + }, + { + "id": 2252, + "text": "I mean, I do enjoy helping, but there's a certain amount of I've been disappointed with the output or the results of the show.", + "start": 4791.78, + "end": 4798.0, + "words": [ + { + "word": " I", + "start": 4791.78, + "end": 4791.9, + "probability": 0.99853515625 + }, + { + "word": " mean,", + "start": 4791.9, + "end": 4792.02, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4792.04, + "end": 4792.14, + "probability": 1.0 + }, + { + "word": " do", + "start": 4792.14, + "end": 4792.26, + "probability": 1.0 + }, + { + "word": " enjoy", + "start": 4792.26, + "end": 4792.54, + "probability": 1.0 + }, + { + "word": " helping,", + "start": 4792.54, + "end": 4792.84, + "probability": 1.0 + }, + { + "word": " but", + "start": 4792.94, + "end": 4793.14, + "probability": 1.0 + }, + { + "word": " there's", + "start": 4793.14, + "end": 4793.4, + "probability": 1.0 + }, + { + "word": " a", + "start": 4793.4, + "end": 4793.46, + "probability": 1.0 + }, + { + "word": " certain", + "start": 4793.46, + "end": 4793.74, + "probability": 1.0 + }, + { + "word": " amount", + "start": 4793.74, + "end": 4793.94, + "probability": 1.0 + }, + { + "word": " of", + "start": 4793.94, + "end": 4794.18, + "probability": 1.0 + }, + { + "word": " I've", + "start": 4794.18, + "end": 4794.68, + "probability": 0.83251953125 + }, + { + "word": " been", + "start": 4794.68, + "end": 4794.82, + "probability": 1.0 + }, + { + "word": " disappointed", + "start": 4794.82, + "end": 4795.32, + "probability": 1.0 + }, + { + "word": " with", + "start": 4795.32, + "end": 4795.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 4795.7, + "end": 4795.9, + "probability": 1.0 + }, + { + "word": " output", + "start": 4795.9, + "end": 4796.26, + "probability": 1.0 + }, + { + "word": " or", + "start": 4796.26, + "end": 4796.66, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4796.66, + "end": 4796.9, + "probability": 1.0 + }, + { + "word": " results", + "start": 4796.9, + "end": 4797.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 4797.34, + "end": 4797.6, + "probability": 1.0 + }, + { + "word": " the", + "start": 4797.6, + "end": 4797.68, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4797.68, + "end": 4798.0, + "probability": 1.0 + } + ] + }, + { + "id": 2253, + "text": "And like I said, it's mostly my fault as far as I haven't had the time to put into the show to to make it the product that I want it to be.", + "start": 4798.42, + "end": 4807.48, + "words": [ + { + "word": " And", + "start": 4798.42, + "end": 4798.86, + "probability": 0.99658203125 + }, + { + "word": " like", + "start": 4798.86, + "end": 4799.28, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 4799.28, + "end": 4799.4, + "probability": 0.98974609375 + }, + { + "word": " said,", + "start": 4799.4, + "end": 4799.48, + "probability": 1.0 + }, + { + "word": " it's", + "start": 4799.56, + "end": 4799.64, + "probability": 0.9970703125 + }, + { + "word": " mostly", + "start": 4799.64, + "end": 4799.88, + "probability": 1.0 + }, + { + "word": " my", + "start": 4799.88, + "end": 4800.08, + "probability": 1.0 + }, + { + "word": " fault", + "start": 4800.08, + "end": 4800.36, + "probability": 1.0 + }, + { + "word": " as", + "start": 4800.36, + "end": 4800.84, + "probability": 0.97802734375 + }, + { + "word": " far", + "start": 4800.84, + "end": 4801.06, + "probability": 1.0 + }, + { + "word": " as", + "start": 4801.06, + "end": 4801.38, + "probability": 1.0 + }, + { + "word": " I", + "start": 4801.38, + "end": 4801.76, + "probability": 1.0 + }, + { + "word": " haven't", + "start": 4801.76, + "end": 4802.26, + "probability": 1.0 + }, + { + "word": " had", + "start": 4802.26, + "end": 4802.94, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 4802.94, + "end": 4803.16, + "probability": 1.0 + }, + { + "word": " time", + "start": 4803.16, + "end": 4803.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 4803.44, + "end": 4803.58, + "probability": 1.0 + }, + { + "word": " put", + "start": 4803.58, + "end": 4803.72, + "probability": 1.0 + }, + { + "word": " into", + "start": 4803.72, + "end": 4803.86, + "probability": 0.54638671875 + }, + { + "word": " the", + "start": 4803.86, + "end": 4804.0, + "probability": 1.0 + }, + { + "word": " show", + "start": 4804.0, + "end": 4804.18, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 4804.18, + "end": 4804.4, + "probability": 0.994140625 + }, + { + "word": " to", + "start": 4804.4, + "end": 4805.12, + "probability": 0.91162109375 + }, + { + "word": " make", + "start": 4805.12, + "end": 4805.84, + "probability": 1.0 + }, + { + "word": " it", + "start": 4805.84, + "end": 4806.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4806.06, + "end": 4806.36, + "probability": 1.0 + }, + { + "word": " product", + "start": 4806.36, + "end": 4806.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 4806.7, + "end": 4806.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 4806.86, + "end": 4806.96, + "probability": 1.0 + }, + { + "word": " want", + "start": 4806.96, + "end": 4807.12, + "probability": 0.994140625 + }, + { + "word": " it", + "start": 4807.12, + "end": 4807.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 4807.22, + "end": 4807.36, + "probability": 1.0 + }, + { + "word": " be.", + "start": 4807.36, + "end": 4807.48, + "probability": 1.0 + } + ] + }, + { + "id": 2254, + "text": "And so I don't want to be disappointed or frustrated with the way that the show turns out.", + "start": 4807.62, + "end": 4812.92, + "words": [ + { + "word": " And", + "start": 4807.62, + "end": 4808.06, + "probability": 0.99951171875 + }, + { + "word": " so", + "start": 4808.06, + "end": 4808.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 4808.34, + "end": 4808.46, + "probability": 1.0 + }, + { + "word": " don't", + "start": 4808.46, + "end": 4808.62, + "probability": 1.0 + }, + { + "word": " want", + "start": 4808.62, + "end": 4808.68, + "probability": 1.0 + }, + { + "word": " to", + "start": 4808.68, + "end": 4808.78, + "probability": 1.0 + }, + { + "word": " be", + "start": 4808.78, + "end": 4808.88, + "probability": 1.0 + }, + { + "word": " disappointed", + "start": 4808.88, + "end": 4809.52, + "probability": 1.0 + }, + { + "word": " or", + "start": 4809.52, + "end": 4809.74, + "probability": 1.0 + }, + { + "word": " frustrated", + "start": 4809.74, + "end": 4810.06, + "probability": 1.0 + }, + { + "word": " with", + "start": 4810.06, + "end": 4810.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 4810.46, + "end": 4810.94, + "probability": 1.0 + }, + { + "word": " way", + "start": 4810.94, + "end": 4811.7, + "probability": 1.0 + }, + { + "word": " that", + "start": 4811.7, + "end": 4811.92, + "probability": 1.0 + }, + { + "word": " the", + "start": 4811.92, + "end": 4812.02, + "probability": 1.0 + }, + { + "word": " show", + "start": 4812.02, + "end": 4812.28, + "probability": 1.0 + }, + { + "word": " turns", + "start": 4812.28, + "end": 4812.52, + "probability": 1.0 + }, + { + "word": " out.", + "start": 4812.52, + "end": 4812.92, + "probability": 1.0 + } + ] + }, + { + "id": 2255, + "text": "And so we're going to take some time off to re plan how the podcast stuff is going to work and figure out a way to make it so that I have a high quality show.", + "start": 4813.18, + "end": 4821.3, + "words": [ + { + "word": " And", + "start": 4813.18, + "end": 4813.62, + "probability": 1.0 + }, + { + "word": " so", + "start": 4813.62, + "end": 4813.78, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4813.78, + "end": 4813.96, + "probability": 1.0 + }, + { + "word": " going", + "start": 4813.96, + "end": 4814.02, + "probability": 0.99267578125 + }, + { + "word": " to", + "start": 4814.02, + "end": 4814.06, + "probability": 1.0 + }, + { + "word": " take", + "start": 4814.06, + "end": 4814.18, + "probability": 1.0 + }, + { + "word": " some", + "start": 4814.18, + "end": 4814.3, + "probability": 1.0 + }, + { + "word": " time", + "start": 4814.3, + "end": 4814.52, + "probability": 1.0 + }, + { + "word": " off", + "start": 4814.52, + "end": 4814.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 4814.74, + "end": 4814.92, + "probability": 1.0 + }, + { + "word": " re", + "start": 4814.92, + "end": 4815.14, + "probability": 0.01953125 + }, + { + "word": " plan", + "start": 4815.14, + "end": 4815.5, + "probability": 0.1727294921875 + }, + { + "word": " how", + "start": 4815.5, + "end": 4815.86, + "probability": 1.0 + }, + { + "word": " the", + "start": 4815.86, + "end": 4816.24, + "probability": 1.0 + }, + { + "word": " podcast", + "start": 4816.24, + "end": 4816.9, + "probability": 1.0 + }, + { + "word": " stuff", + "start": 4816.9, + "end": 4817.18, + "probability": 1.0 + }, + { + "word": " is", + "start": 4817.18, + "end": 4817.3, + "probability": 1.0 + }, + { + "word": " going", + "start": 4817.3, + "end": 4817.4, + "probability": 1.0 + }, + { + "word": " to", + "start": 4817.4, + "end": 4817.5, + "probability": 1.0 + }, + { + "word": " work", + "start": 4817.5, + "end": 4817.74, + "probability": 1.0 + }, + { + "word": " and", + "start": 4817.74, + "end": 4818.6, + "probability": 0.962890625 + }, + { + "word": " figure", + "start": 4818.6, + "end": 4819.14, + "probability": 1.0 + }, + { + "word": " out", + "start": 4819.14, + "end": 4819.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 4819.3, + "end": 4819.38, + "probability": 1.0 + }, + { + "word": " way", + "start": 4819.38, + "end": 4819.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 4819.46, + "end": 4819.56, + "probability": 1.0 + }, + { + "word": " make", + "start": 4819.56, + "end": 4819.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 4819.7, + "end": 4819.9, + "probability": 1.0 + }, + { + "word": " so", + "start": 4819.9, + "end": 4820.12, + "probability": 0.99658203125 + }, + { + "word": " that", + "start": 4820.12, + "end": 4820.34, + "probability": 1.0 + }, + { + "word": " I", + "start": 4820.34, + "end": 4820.6, + "probability": 1.0 + }, + { + "word": " have", + "start": 4820.6, + "end": 4820.74, + "probability": 1.0 + }, + { + "word": " a", + "start": 4820.74, + "end": 4820.84, + "probability": 1.0 + }, + { + "word": " high", + "start": 4820.84, + "end": 4821.0, + "probability": 0.99951171875 + }, + { + "word": " quality", + "start": 4821.0, + "end": 4821.24, + "probability": 0.97802734375 + }, + { + "word": " show.", + "start": 4821.24, + "end": 4821.3, + "probability": 0.429931640625 + } + ] + }, + { + "id": 2256, + "text": "", + "start": 4821.3, + "end": 4821.3, + "words": [] + }, + { + "id": 2257, + "text": "", + "start": 4821.3, + "end": 4821.3, + "words": [] + }, + { + "id": 2258, + "text": "That I'm proud of.", + "start": 4821.32, + "end": 4822.6, + "words": [ + { + "word": " That", + "start": 4821.32, + "end": 4821.58, + "probability": 0.0022869110107421875 + }, + { + "word": " I'm", + "start": 4821.58, + "end": 4822.04, + "probability": 0.76171875 + }, + { + "word": " proud", + "start": 4822.04, + "end": 4822.22, + "probability": 0.98974609375 + }, + { + "word": " of.", + "start": 4822.22, + "end": 4822.6, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2259, + "text": "That is also helpful and informative.", + "start": 4822.68, + "end": 4824.56, + "words": [ + { + "word": " That", + "start": 4822.68, + "end": 4822.92, + "probability": 0.9931640625 + }, + { + "word": " is", + "start": 4822.92, + "end": 4823.44, + "probability": 0.99658203125 + }, + { + "word": " also", + "start": 4823.44, + "end": 4823.8, + "probability": 0.99755859375 + }, + { + "word": " helpful", + "start": 4823.8, + "end": 4824.14, + "probability": 0.98193359375 + }, + { + "word": " and", + "start": 4824.14, + "end": 4824.32, + "probability": 0.87060546875 + }, + { + "word": " informative.", + "start": 4824.32, + "end": 4824.56, + "probability": 1.0 + } + ] + }, + { + "id": 2260, + "text": "And just go to GuruShow.com for more details, because that's where we're going to announce everything.", + "start": 4825.640000000001, + "end": 4829.62, + "words": [ + { + "word": " And", + "start": 4825.640000000001, + "end": 4826.080000000001, + "probability": 0.89794921875 + }, + { + "word": " just", + "start": 4826.080000000001, + "end": 4826.52, + "probability": 0.9326171875 + }, + { + "word": " go", + "start": 4826.52, + "end": 4826.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 4826.78, + "end": 4826.92, + "probability": 1.0 + }, + { + "word": " GuruShow", + "start": 4826.92, + "end": 4827.22, + "probability": 0.537109375 + }, + { + "word": ".com", + "start": 4827.22, + "end": 4827.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 4827.56, + "end": 4827.74, + "probability": 0.90576171875 + }, + { + "word": " more", + "start": 4827.74, + "end": 4827.86, + "probability": 1.0 + }, + { + "word": " details,", + "start": 4827.86, + "end": 4828.18, + "probability": 1.0 + }, + { + "word": " because", + "start": 4828.34, + "end": 4828.42, + "probability": 0.99853515625 + }, + { + "word": " that's", + "start": 4828.42, + "end": 4828.66, + "probability": 1.0 + }, + { + "word": " where", + "start": 4828.66, + "end": 4828.76, + "probability": 1.0 + }, + { + "word": " we're", + "start": 4828.76, + "end": 4828.92, + "probability": 1.0 + }, + { + "word": " going", + "start": 4828.92, + "end": 4828.98, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4828.98, + "end": 4829.1, + "probability": 1.0 + }, + { + "word": " announce", + "start": 4829.1, + "end": 4829.32, + "probability": 1.0 + }, + { + "word": " everything.", + "start": 4829.32, + "end": 4829.62, + "probability": 1.0 + } + ] + }, + { + "id": 2261, + "text": "OK, well, I certainly have not seen any degradation in your show quality.", + "start": 4830.76, + "end": 4835.36, + "words": [ + { + "word": " OK,", + "start": 4830.76, + "end": 4831.2, + "probability": 0.0916748046875 + }, + { + "word": " well,", + "start": 4831.3, + "end": 4831.44, + "probability": 1.0 + }, + { + "word": " I", + "start": 4831.5, + "end": 4832.02, + "probability": 1.0 + }, + { + "word": " certainly", + "start": 4832.02, + "end": 4832.46, + "probability": 1.0 + }, + { + "word": " have", + "start": 4832.46, + "end": 4832.68, + "probability": 1.0 + }, + { + "word": " not", + "start": 4832.68, + "end": 4832.96, + "probability": 1.0 + }, + { + "word": " seen", + "start": 4832.96, + "end": 4833.3, + "probability": 1.0 + }, + { + "word": " any", + "start": 4833.3, + "end": 4833.62, + "probability": 1.0 + }, + { + "word": " degradation", + "start": 4833.62, + "end": 4834.08, + "probability": 0.990234375 + }, + { + "word": " in", + "start": 4834.08, + "end": 4834.6, + "probability": 0.9990234375 + }, + { + "word": " your", + "start": 4834.6, + "end": 4834.76, + "probability": 1.0 + }, + { + "word": " show", + "start": 4834.76, + "end": 4834.96, + "probability": 0.9990234375 + }, + { + "word": " quality.", + "start": 4834.96, + "end": 4835.36, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2262, + "text": "It's gotten better and better every year.", + "start": 4835.58, + "end": 4837.82, + "words": [ + { + "word": " It's", + "start": 4835.58, + "end": 4835.8, + "probability": 0.9931640625 + }, + { + "word": " gotten", + "start": 4835.8, + "end": 4836.2, + "probability": 0.9931640625 + }, + { + "word": " better", + "start": 4836.2, + "end": 4836.52, + "probability": 1.0 + }, + { + "word": " and", + "start": 4836.52, + "end": 4836.7, + "probability": 1.0 + }, + { + "word": " better", + "start": 4836.7, + "end": 4836.9, + "probability": 1.0 + }, + { + "word": " every", + "start": 4836.9, + "end": 4837.26, + "probability": 0.97998046875 + }, + { + "word": " year.", + "start": 4837.26, + "end": 4837.82, + "probability": 1.0 + } + ] + }, + { + "id": 2263, + "text": "Well, thank you.", + "start": 4837.98, + "end": 4838.98, + "words": [ + { + "word": " Well,", + "start": 4837.98, + "end": 4838.42, + "probability": 0.99951171875 + }, + { + "word": " thank", + "start": 4838.5, + "end": 4838.76, + "probability": 1.0 + }, + { + "word": " you.", + "start": 4838.76, + "end": 4838.98, + "probability": 1.0 + } + ] + }, + { + "id": 2264, + "text": "It's an imaginary thing you have.", + "start": 4839.28, + "end": 4841.26, + "words": [ + { + "word": " It's", + "start": 4839.28, + "end": 4839.72, + "probability": 0.9423828125 + }, + { + "word": " an", + "start": 4839.72, + "end": 4839.96, + "probability": 1.0 + }, + { + "word": " imaginary", + "start": 4839.96, + "end": 4840.38, + "probability": 1.0 + }, + { + "word": " thing", + "start": 4840.38, + "end": 4840.82, + "probability": 1.0 + }, + { + "word": " you", + "start": 4840.82, + "end": 4841.0, + "probability": 0.99951171875 + }, + { + "word": " have.", + "start": 4841.0, + "end": 4841.26, + "probability": 1.0 + } + ] + }, + { + "id": 2265, + "text": "Well, I mean, the other part is it is very good.", + "start": 4842.42, + "end": 4845.42, + "words": [ + { + "word": " Well,", + "start": 4842.42, + "end": 4842.86, + "probability": 0.99658203125 + }, + { + "word": " I", + "start": 4843.0, + "end": 4843.04, + "probability": 1.0 + }, + { + "word": " mean,", + "start": 4843.04, + "end": 4843.2, + "probability": 1.0 + }, + { + "word": " the", + "start": 4843.26, + "end": 4843.48, + "probability": 0.9990234375 + }, + { + "word": " other", + "start": 4843.48, + "end": 4843.64, + "probability": 1.0 + }, + { + "word": " part", + "start": 4843.64, + "end": 4843.82, + "probability": 1.0 + }, + { + "word": " is", + "start": 4843.82, + "end": 4844.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 4844.0, + "end": 4844.18, + "probability": 0.1158447265625 + }, + { + "word": " is", + "start": 4844.18, + "end": 4844.94, + "probability": 0.99853515625 + }, + { + "word": " very", + "start": 4844.94, + "end": 4845.2, + "probability": 0.9951171875 + }, + { + "word": " good.", + "start": 4845.2, + "end": 4845.42, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2266, + "text": "The other part is I am tired.", + "start": 4845.5, + "end": 4847.3, + "words": [ + { + "word": " The", + "start": 4845.5, + "end": 4845.88, + "probability": 0.98193359375 + }, + { + "word": " other", + "start": 4845.88, + "end": 4846.16, + "probability": 1.0 + }, + { + "word": " part", + "start": 4846.16, + "end": 4846.36, + "probability": 1.0 + }, + { + "word": " is", + "start": 4846.36, + "end": 4846.6, + "probability": 1.0 + }, + { + "word": " I", + "start": 4846.6, + "end": 4846.82, + "probability": 0.99951171875 + }, + { + "word": " am", + "start": 4846.82, + "end": 4846.98, + "probability": 1.0 + }, + { + "word": " tired.", + "start": 4846.98, + "end": 4847.3, + "probability": 1.0 + } + ] + }, + { + "id": 2267, + "text": "I've been doing this a long time and I'd like to take a little bit of a break.", + "start": 4847.8, + "end": 4850.96, + "words": [ + { + "word": " I've", + "start": 4847.8, + "end": 4848.24, + "probability": 0.990234375 + }, + { + "word": " been", + "start": 4848.24, + "end": 4848.38, + "probability": 1.0 + }, + { + "word": " doing", + "start": 4848.38, + "end": 4849.0, + "probability": 1.0 + }, + { + "word": " this", + "start": 4849.0, + "end": 4849.14, + "probability": 1.0 + }, + { + "word": " a", + "start": 4849.14, + "end": 4849.22, + "probability": 0.99951171875 + }, + { + "word": " long", + "start": 4849.22, + "end": 4849.4, + "probability": 1.0 + }, + { + "word": " time", + "start": 4849.4, + "end": 4849.64, + "probability": 1.0 + }, + { + "word": " and", + "start": 4849.64, + "end": 4849.82, + "probability": 0.87109375 + }, + { + "word": " I'd", + "start": 4849.82, + "end": 4849.9, + "probability": 1.0 + }, + { + "word": " like", + "start": 4849.9, + "end": 4850.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 4850.0, + "end": 4850.14, + "probability": 1.0 + }, + { + "word": " take", + "start": 4850.14, + "end": 4850.24, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 4850.24, + "end": 4850.34, + "probability": 1.0 + }, + { + "word": " little", + "start": 4850.34, + "end": 4850.44, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4850.44, + "end": 4850.6, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4850.6, + "end": 4850.7, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 4850.7, + "end": 4850.74, + "probability": 1.0 + }, + { + "word": " break.", + "start": 4850.74, + "end": 4850.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2268, + "text": "And then I'll be back.", + "start": 4850.98, + "end": 4851.3, + "words": [ + { + "word": " And", + "start": 4850.98, + "end": 4851.14, + "probability": 0.9521484375 + }, + { + "word": " then", + "start": 4851.14, + "end": 4851.24, + "probability": 0.57568359375 + }, + { + "word": " I'll", + "start": 4851.24, + "end": 4851.3, + "probability": 0.63232421875 + }, + { + "word": " be", + "start": 4851.3, + "end": 4851.3, + "probability": 0.394287109375 + }, + { + "word": " back.", + "start": 4851.3, + "end": 4851.3, + "probability": 0.85009765625 + } + ] + }, + { + "id": 2269, + "text": "And like I said, I I have a vision for where I want this to go.", + "start": 4851.3, + "end": 4854.44, + "words": [ + { + "word": " And", + "start": 4851.3, + "end": 4851.3, + "probability": 0.23876953125 + }, + { + "word": " like", + "start": 4851.3, + "end": 4851.44, + "probability": 0.919921875 + }, + { + "word": " I", + "start": 4851.44, + "end": 4851.58, + "probability": 1.0 + }, + { + "word": " said,", + "start": 4851.58, + "end": 4851.7, + "probability": 1.0 + }, + { + "word": " I", + "start": 4851.78, + "end": 4851.84, + "probability": 1.0 + }, + { + "word": " I", + "start": 4851.84, + "end": 4852.02, + "probability": 0.0247802734375 + }, + { + "word": " have", + "start": 4852.02, + "end": 4852.78, + "probability": 1.0 + }, + { + "word": " a", + "start": 4852.78, + "end": 4852.96, + "probability": 1.0 + }, + { + "word": " vision", + "start": 4852.96, + "end": 4853.22, + "probability": 1.0 + }, + { + "word": " for", + "start": 4853.22, + "end": 4853.44, + "probability": 1.0 + }, + { + "word": " where", + "start": 4853.44, + "end": 4853.64, + "probability": 1.0 + }, + { + "word": " I", + "start": 4853.64, + "end": 4853.78, + "probability": 1.0 + }, + { + "word": " want", + "start": 4853.78, + "end": 4853.96, + "probability": 1.0 + }, + { + "word": " this", + "start": 4853.96, + "end": 4854.1, + "probability": 1.0 + }, + { + "word": " to", + "start": 4854.1, + "end": 4854.26, + "probability": 1.0 + }, + { + "word": " go.", + "start": 4854.26, + "end": 4854.44, + "probability": 1.0 + } + ] + }, + { + "id": 2270, + "text": "And right now, the the return on the radio show doesn't really allow that to happen.", + "start": 4854.56, + "end": 4861.46, + "words": [ + { + "word": " And", + "start": 4854.56, + "end": 4854.92, + "probability": 0.998046875 + }, + { + "word": " right", + "start": 4854.92, + "end": 4856.28, + "probability": 0.98974609375 + }, + { + "word": " now,", + "start": 4856.28, + "end": 4856.72, + "probability": 1.0 + }, + { + "word": " the", + "start": 4856.92, + "end": 4857.7, + "probability": 1.0 + }, + { + "word": " the", + "start": 4857.7, + "end": 4858.48, + "probability": 0.98876953125 + }, + { + "word": " return", + "start": 4858.48, + "end": 4859.16, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 4859.16, + "end": 4859.34, + "probability": 1.0 + }, + { + "word": " the", + "start": 4859.34, + "end": 4859.42, + "probability": 0.99951171875 + }, + { + "word": " radio", + "start": 4859.42, + "end": 4859.64, + "probability": 1.0 + }, + { + "word": " show", + "start": 4859.64, + "end": 4859.86, + "probability": 1.0 + }, + { + "word": " doesn't", + "start": 4859.86, + "end": 4860.2, + "probability": 1.0 + }, + { + "word": " really", + "start": 4860.2, + "end": 4860.44, + "probability": 1.0 + }, + { + "word": " allow", + "start": 4860.44, + "end": 4860.74, + "probability": 1.0 + }, + { + "word": " that", + "start": 4860.74, + "end": 4860.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 4860.98, + "end": 4861.14, + "probability": 1.0 + }, + { + "word": " happen.", + "start": 4861.14, + "end": 4861.46, + "probability": 1.0 + } + ] + }, + { + "id": 2271, + "text": "So I want to take an opportunity to to stand back, take a look at it, regroup and and do it right and make it so that it is as informative and as high quality as I would like it to be.", + "start": 4862.300000000001, + "end": 4875.5, + "words": [ + { + "word": " So", + "start": 4862.300000000001, + "end": 4862.660000000001, + "probability": 0.8759765625 + }, + { + "word": " I", + "start": 4862.660000000001, + "end": 4863.02, + "probability": 0.99951171875 + }, + { + "word": " want", + "start": 4863.02, + "end": 4863.74, + "probability": 1.0 + }, + { + "word": " to", + "start": 4863.74, + "end": 4863.96, + "probability": 1.0 + }, + { + "word": " take", + "start": 4863.96, + "end": 4864.32, + "probability": 1.0 + }, + { + "word": " an", + "start": 4864.32, + "end": 4864.46, + "probability": 1.0 + }, + { + "word": " opportunity", + "start": 4864.46, + "end": 4864.8, + "probability": 1.0 + }, + { + "word": " to", + "start": 4864.8, + "end": 4865.32, + "probability": 1.0 + }, + { + "word": " to", + "start": 4865.32, + "end": 4866.0, + "probability": 0.99560546875 + }, + { + "word": " stand", + "start": 4866.0, + "end": 4866.36, + "probability": 0.64892578125 + }, + { + "word": " back,", + "start": 4866.36, + "end": 4866.88, + "probability": 0.9990234375 + }, + { + "word": " take", + "start": 4867.06, + "end": 4867.22, + "probability": 1.0 + }, + { + "word": " a", + "start": 4867.22, + "end": 4867.36, + "probability": 1.0 + }, + { + "word": " look", + "start": 4867.36, + "end": 4867.46, + "probability": 1.0 + }, + { + "word": " at", + "start": 4867.46, + "end": 4867.62, + "probability": 1.0 + }, + { + "word": " it,", + "start": 4867.62, + "end": 4867.76, + "probability": 0.99609375 + }, + { + "word": " regroup", + "start": 4867.82, + "end": 4868.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 4868.16, + "end": 4868.64, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4868.64, + "end": 4869.12, + "probability": 0.98779296875 + }, + { + "word": " do", + "start": 4869.12, + "end": 4869.32, + "probability": 1.0 + }, + { + "word": " it", + "start": 4869.32, + "end": 4869.46, + "probability": 1.0 + }, + { + "word": " right", + "start": 4869.46, + "end": 4869.68, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 4869.68, + "end": 4869.96, + "probability": 0.93408203125 + }, + { + "word": " make", + "start": 4869.96, + "end": 4870.24, + "probability": 1.0 + }, + { + "word": " it", + "start": 4870.24, + "end": 4870.38, + "probability": 1.0 + }, + { + "word": " so", + "start": 4870.38, + "end": 4870.54, + "probability": 1.0 + }, + { + "word": " that", + "start": 4870.54, + "end": 4870.7, + "probability": 1.0 + }, + { + "word": " it", + "start": 4870.7, + "end": 4870.94, + "probability": 1.0 + }, + { + "word": " is", + "start": 4870.94, + "end": 4871.16, + "probability": 1.0 + }, + { + "word": " as", + "start": 4871.16, + "end": 4871.96, + "probability": 0.99951171875 + }, + { + "word": " informative", + "start": 4871.96, + "end": 4872.5, + "probability": 1.0 + }, + { + "word": " and", + "start": 4872.5, + "end": 4872.98, + "probability": 0.99462890625 + }, + { + "word": " as", + "start": 4872.98, + "end": 4873.36, + "probability": 1.0 + }, + { + "word": " high", + "start": 4873.36, + "end": 4874.08, + "probability": 1.0 + }, + { + "word": " quality", + "start": 4874.08, + "end": 4874.5, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 4874.5, + "end": 4874.68, + "probability": 1.0 + }, + { + "word": " I", + "start": 4874.68, + "end": 4874.82, + "probability": 1.0 + }, + { + "word": " would", + "start": 4874.82, + "end": 4874.94, + "probability": 1.0 + }, + { + "word": " like", + "start": 4874.94, + "end": 4875.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 4875.12, + "end": 4875.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 4875.24, + "end": 4875.36, + "probability": 1.0 + }, + { + "word": " be.", + "start": 4875.36, + "end": 4875.5, + "probability": 1.0 + } + ] + }, + { + "id": 2272, + "text": "And and hopefully, you know, everything will work out just great.", + "start": 4875.9400000000005, + "end": 4879.54, + "words": [ + { + "word": " And", + "start": 4875.9400000000005, + "end": 4876.3, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 4876.3, + "end": 4876.58, + "probability": 0.99755859375 + }, + { + "word": " hopefully,", + "start": 4876.58, + "end": 4877.14, + "probability": 1.0 + }, + { + "word": " you", + "start": 4877.24, + "end": 4877.4, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4877.4, + "end": 4877.62, + "probability": 1.0 + }, + { + "word": " everything", + "start": 4877.64, + "end": 4878.46, + "probability": 1.0 + }, + { + "word": " will", + "start": 4878.46, + "end": 4878.7, + "probability": 1.0 + }, + { + "word": " work", + "start": 4878.7, + "end": 4878.86, + "probability": 1.0 + }, + { + "word": " out", + "start": 4878.86, + "end": 4879.02, + "probability": 1.0 + }, + { + "word": " just", + "start": 4879.02, + "end": 4879.18, + "probability": 1.0 + }, + { + "word": " great.", + "start": 4879.18, + "end": 4879.54, + "probability": 1.0 + } + ] + }, + { + "id": 2273, + "text": "But for right now, I need a little bit of time.", + "start": 4879.76, + "end": 4881.28, + "words": [ + { + "word": " But", + "start": 4879.76, + "end": 4880.12, + "probability": 0.99462890625 + }, + { + "word": " for", + "start": 4880.12, + "end": 4880.28, + "probability": 0.99951171875 + }, + { + "word": " right", + "start": 4880.28, + "end": 4880.42, + "probability": 1.0 + }, + { + "word": " now,", + "start": 4880.42, + "end": 4880.66, + "probability": 1.0 + }, + { + "word": " I", + "start": 4880.68, + "end": 4880.8, + "probability": 0.9541015625 + }, + { + "word": " need", + "start": 4880.8, + "end": 4880.86, + "probability": 0.9619140625 + }, + { + "word": " a", + "start": 4880.86, + "end": 4880.98, + "probability": 1.0 + }, + { + "word": " little", + "start": 4880.98, + "end": 4881.08, + "probability": 1.0 + }, + { + "word": " bit", + "start": 4881.08, + "end": 4881.18, + "probability": 0.99072265625 + }, + { + "word": " of", + "start": 4881.18, + "end": 4881.28, + "probability": 0.036712646484375 + }, + { + "word": " time.", + "start": 4881.28, + "end": 4881.28, + "probability": 0.71337890625 + } + ] + }, + { + "id": 2274, + "text": "I want to spend more time with my daughter.", + "start": 4881.3, + "end": 4882.98, + "words": [ + { + "word": " I", + "start": 4881.3, + "end": 4881.4, + "probability": 0.1103515625 + }, + { + "word": " want", + "start": 4881.4, + "end": 4881.76, + "probability": 0.92333984375 + }, + { + "word": " to", + "start": 4881.76, + "end": 4881.88, + "probability": 0.98193359375 + }, + { + "word": " spend", + "start": 4881.88, + "end": 4882.0, + "probability": 0.97314453125 + }, + { + "word": " more", + "start": 4882.0, + "end": 4882.2, + "probability": 0.98486328125 + }, + { + "word": " time", + "start": 4882.2, + "end": 4882.4, + "probability": 0.99853515625 + }, + { + "word": " with", + "start": 4882.4, + "end": 4882.52, + "probability": 0.68115234375 + }, + { + "word": " my", + "start": 4882.52, + "end": 4882.66, + "probability": 0.998046875 + }, + { + "word": " daughter.", + "start": 4882.66, + "end": 4882.98, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2275, + "text": "You know, the family is important.", + "start": 4883.2, + "end": 4884.48, + "words": [ + { + "word": " You", + "start": 4883.2, + "end": 4883.2, + "probability": 0.371337890625 + }, + { + "word": " know,", + "start": 4883.2, + "end": 4883.4, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4883.44, + "end": 4883.6, + "probability": 0.62548828125 + }, + { + "word": " family", + "start": 4883.6, + "end": 4884.16, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4884.16, + "end": 4884.28, + "probability": 0.51953125 + }, + { + "word": " important.", + "start": 4884.28, + "end": 4884.48, + "probability": 1.0 + } + ] + }, + { + "id": 2276, + "text": "And that's that's where I'm at at the moment.", + "start": 4886.0199999999995, + "end": 4888.0, + "words": [ + { + "word": " And", + "start": 4886.0199999999995, + "end": 4886.48, + "probability": 0.99169921875 + }, + { + "word": " that's", + "start": 4886.48, + "end": 4886.94, + "probability": 0.9130859375 + }, + { + "word": " that's", + "start": 4886.94, + "end": 4887.22, + "probability": 0.64306640625 + }, + { + "word": " where", + "start": 4887.22, + "end": 4887.32, + "probability": 1.0 + }, + { + "word": " I'm", + "start": 4887.32, + "end": 4887.52, + "probability": 1.0 + }, + { + "word": " at", + "start": 4887.52, + "end": 4887.58, + "probability": 1.0 + }, + { + "word": " at", + "start": 4887.58, + "end": 4887.72, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 4887.72, + "end": 4887.8, + "probability": 1.0 + }, + { + "word": " moment.", + "start": 4887.8, + "end": 4888.0, + "probability": 1.0 + } + ] + }, + { + "id": 2277, + "text": "And the Patreon support was not nearly enough.", + "start": 4888.32, + "end": 4891.26, + "words": [ + { + "word": " And", + "start": 4888.32, + "end": 4888.78, + "probability": 0.994140625 + }, + { + "word": " the", + "start": 4888.78, + "end": 4888.92, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 4888.92, + "end": 4889.36, + "probability": 0.95458984375 + }, + { + "word": " support", + "start": 4889.36, + "end": 4889.94, + "probability": 0.99951171875 + }, + { + "word": " was", + "start": 4889.94, + "end": 4890.38, + "probability": 1.0 + }, + { + "word": " not", + "start": 4890.38, + "end": 4890.68, + "probability": 1.0 + }, + { + "word": " nearly", + "start": 4890.68, + "end": 4890.94, + "probability": 0.97216796875 + }, + { + "word": " enough.", + "start": 4890.94, + "end": 4891.26, + "probability": 1.0 + } + ] + }, + { + "id": 2278, + "text": "I'm sure.", + "start": 4891.38, + "end": 4891.74, + "words": [ + { + "word": " I'm", + "start": 4891.38, + "end": 4891.54, + "probability": 0.8583984375 + }, + { + "word": " sure.", + "start": 4891.54, + "end": 4891.74, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2279, + "text": "No, no.", + "start": 4892.68, + "end": 4893.6, + "words": [ + { + "word": " No,", + "start": 4892.68, + "end": 4893.14, + "probability": 0.96630859375 + }, + { + "word": " no.", + "start": 4893.14, + "end": 4893.6, + "probability": 0.97705078125 + } + ] + }, + { + "id": 2280, + "text": "I mean, you know, I have to really give a lot of thanks to Mike over at Perfection Auto Works because he he went a long way towards helping me pay for the show.", + "start": 4893.94, + "end": 4904.58, + "words": [ + { + "word": " I", + "start": 4893.94, + "end": 4894.04, + "probability": 0.99658203125 + }, + { + "word": " mean,", + "start": 4894.04, + "end": 4894.24, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 4894.24, + "end": 4894.52, + "probability": 0.99658203125 + }, + { + "word": " know,", + "start": 4894.52, + "end": 4895.08, + "probability": 1.0 + }, + { + "word": " I", + "start": 4895.1, + "end": 4895.86, + "probability": 1.0 + }, + { + "word": " have", + "start": 4895.86, + "end": 4896.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 4896.24, + "end": 4896.38, + "probability": 1.0 + }, + { + "word": " really", + "start": 4896.38, + "end": 4896.62, + "probability": 1.0 + }, + { + "word": " give", + "start": 4896.62, + "end": 4897.0, + "probability": 1.0 + }, + { + "word": " a", + "start": 4897.0, + "end": 4897.12, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4897.12, + "end": 4897.24, + "probability": 1.0 + }, + { + "word": " of", + "start": 4897.24, + "end": 4897.3, + "probability": 1.0 + }, + { + "word": " thanks", + "start": 4897.3, + "end": 4897.5, + "probability": 0.95703125 + }, + { + "word": " to", + "start": 4897.5, + "end": 4897.74, + "probability": 1.0 + }, + { + "word": " Mike", + "start": 4897.74, + "end": 4898.16, + "probability": 0.998046875 + }, + { + "word": " over", + "start": 4898.16, + "end": 4898.36, + "probability": 1.0 + }, + { + "word": " at", + "start": 4898.36, + "end": 4898.7, + "probability": 0.99951171875 + }, + { + "word": " Perfection", + "start": 4898.7, + "end": 4899.56, + "probability": 0.9609375 + }, + { + "word": " Auto", + "start": 4899.56, + "end": 4899.68, + "probability": 0.67626953125 + }, + { + "word": " Works", + "start": 4899.68, + "end": 4899.94, + "probability": 0.98193359375 + }, + { + "word": " because", + "start": 4899.94, + "end": 4900.24, + "probability": 0.873046875 + }, + { + "word": " he", + "start": 4900.24, + "end": 4900.76, + "probability": 1.0 + }, + { + "word": " he", + "start": 4900.76, + "end": 4901.56, + "probability": 0.9912109375 + }, + { + "word": " went", + "start": 4901.56, + "end": 4902.16, + "probability": 1.0 + }, + { + "word": " a", + "start": 4902.16, + "end": 4902.28, + "probability": 1.0 + }, + { + "word": " long", + "start": 4902.28, + "end": 4902.5, + "probability": 1.0 + }, + { + "word": " way", + "start": 4902.5, + "end": 4902.74, + "probability": 1.0 + }, + { + "word": " towards", + "start": 4902.74, + "end": 4902.98, + "probability": 0.9990234375 + }, + { + "word": " helping", + "start": 4902.98, + "end": 4903.26, + "probability": 0.99951171875 + }, + { + "word": " me", + "start": 4903.26, + "end": 4903.5, + "probability": 1.0 + }, + { + "word": " pay", + "start": 4903.5, + "end": 4904.08, + "probability": 1.0 + }, + { + "word": " for", + "start": 4904.08, + "end": 4904.24, + "probability": 1.0 + }, + { + "word": " the", + "start": 4904.24, + "end": 4904.34, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4904.34, + "end": 4904.58, + "probability": 1.0 + } + ] + }, + { + "id": 2281, + "text": "And I'm very appreciative for the for everything that he did.", + "start": 4904.72, + "end": 4908.6, + "words": [ + { + "word": " And", + "start": 4904.72, + "end": 4905.1, + "probability": 0.99951171875 + }, + { + "word": " I'm", + "start": 4905.1, + "end": 4905.78, + "probability": 0.9697265625 + }, + { + "word": " very", + "start": 4905.78, + "end": 4906.1, + "probability": 1.0 + }, + { + "word": " appreciative", + "start": 4906.1, + "end": 4906.66, + "probability": 1.0 + }, + { + "word": " for", + "start": 4906.66, + "end": 4906.9, + "probability": 0.99609375 + }, + { + "word": " the", + "start": 4906.9, + "end": 4907.0, + "probability": 0.998046875 + }, + { + "word": " for", + "start": 4907.0, + "end": 4907.48, + "probability": 0.99951171875 + }, + { + "word": " everything", + "start": 4907.48, + "end": 4908.02, + "probability": 1.0 + }, + { + "word": " that", + "start": 4908.02, + "end": 4908.22, + "probability": 1.0 + }, + { + "word": " he", + "start": 4908.22, + "end": 4908.38, + "probability": 1.0 + }, + { + "word": " did.", + "start": 4908.38, + "end": 4908.6, + "probability": 1.0 + } + ] + }, + { + "id": 2282, + "text": "And of course, all of the Patreon sponsors.", + "start": 4908.72, + "end": 4910.48, + "words": [ + { + "word": " And", + "start": 4908.72, + "end": 4908.86, + "probability": 1.0 + }, + { + "word": " of", + "start": 4908.86, + "end": 4909.22, + "probability": 0.9609375 + }, + { + "word": " course,", + "start": 4909.22, + "end": 4909.52, + "probability": 1.0 + }, + { + "word": " all", + "start": 4909.52, + "end": 4909.64, + "probability": 1.0 + }, + { + "word": " of", + "start": 4909.64, + "end": 4909.76, + "probability": 0.87744140625 + }, + { + "word": " the", + "start": 4909.76, + "end": 4909.86, + "probability": 1.0 + }, + { + "word": " Patreon", + "start": 4909.86, + "end": 4910.1, + "probability": 0.978515625 + }, + { + "word": " sponsors.", + "start": 4910.1, + "end": 4910.48, + "probability": 1.0 + } + ] + }, + { + "id": 2283, + "text": "Now, as far as the total cost of the show and, you know, the expenses involved and not to mention that, you know, this is four or five hours every Saturday that is effectively free for everyone involved with the show is I mean, I appreciate the sacrifice of everyone made, whether it be monetarily, whether it be through their time, whether it be with just content creation.", + "start": 4911.800000000001, + "end": 4937.42, + "words": [ + { + "word": " Now,", + "start": 4911.800000000001, + "end": 4912.280000000001, + "probability": 0.2032470703125 + }, + { + "word": " as", + "start": 4912.280000000001, + "end": 4912.76, + "probability": 0.9990234375 + }, + { + "word": " far", + "start": 4912.76, + "end": 4912.92, + "probability": 1.0 + }, + { + "word": " as", + "start": 4912.92, + "end": 4913.06, + "probability": 1.0 + }, + { + "word": " the", + "start": 4913.06, + "end": 4913.2, + "probability": 1.0 + }, + { + "word": " total", + "start": 4913.2, + "end": 4913.5, + "probability": 1.0 + }, + { + "word": " cost", + "start": 4913.5, + "end": 4914.0, + "probability": 1.0 + }, + { + "word": " of", + "start": 4914.0, + "end": 4914.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 4914.14, + "end": 4914.22, + "probability": 1.0 + }, + { + "word": " show", + "start": 4914.22, + "end": 4914.5, + "probability": 1.0 + }, + { + "word": " and,", + "start": 4914.5, + "end": 4915.24, + "probability": 0.91796875 + }, + { + "word": " you", + "start": 4915.32, + "end": 4916.34, + "probability": 0.95947265625 + }, + { + "word": " know,", + "start": 4916.34, + "end": 4916.5, + "probability": 1.0 + }, + { + "word": " the", + "start": 4916.52, + "end": 4916.62, + "probability": 0.99951171875 + }, + { + "word": " expenses", + "start": 4916.62, + "end": 4917.24, + "probability": 0.99951171875 + }, + { + "word": " involved", + "start": 4917.24, + "end": 4917.6, + "probability": 1.0 + }, + { + "word": " and", + "start": 4917.6, + "end": 4917.94, + "probability": 0.62646484375 + }, + { + "word": " not", + "start": 4917.94, + "end": 4918.42, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 4918.42, + "end": 4918.52, + "probability": 1.0 + }, + { + "word": " mention", + "start": 4918.52, + "end": 4918.74, + "probability": 1.0 + }, + { + "word": " that,", + "start": 4918.74, + "end": 4918.92, + "probability": 0.994140625 + }, + { + "word": " you", + "start": 4918.94, + "end": 4919.1, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4919.1, + "end": 4919.22, + "probability": 1.0 + }, + { + "word": " this", + "start": 4919.22, + "end": 4919.36, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 4919.36, + "end": 4919.5, + "probability": 1.0 + }, + { + "word": " four", + "start": 4919.5, + "end": 4919.96, + "probability": 0.99853515625 + }, + { + "word": " or", + "start": 4919.96, + "end": 4920.08, + "probability": 1.0 + }, + { + "word": " five", + "start": 4920.08, + "end": 4920.2, + "probability": 1.0 + }, + { + "word": " hours", + "start": 4920.2, + "end": 4920.58, + "probability": 1.0 + }, + { + "word": " every", + "start": 4920.58, + "end": 4920.84, + "probability": 0.99951171875 + }, + { + "word": " Saturday", + "start": 4920.84, + "end": 4921.26, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 4921.26, + "end": 4922.0, + "probability": 0.86962890625 + }, + { + "word": " is", + "start": 4922.0, + "end": 4922.28, + "probability": 1.0 + }, + { + "word": " effectively", + "start": 4922.28, + "end": 4922.74, + "probability": 1.0 + }, + { + "word": " free", + "start": 4922.74, + "end": 4923.12, + "probability": 1.0 + }, + { + "word": " for", + "start": 4923.12, + "end": 4923.34, + "probability": 1.0 + }, + { + "word": " everyone", + "start": 4923.34, + "end": 4923.58, + "probability": 1.0 + }, + { + "word": " involved", + "start": 4923.58, + "end": 4923.88, + "probability": 1.0 + }, + { + "word": " with", + "start": 4923.88, + "end": 4924.2, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 4924.2, + "end": 4924.4, + "probability": 1.0 + }, + { + "word": " show", + "start": 4924.4, + "end": 4924.62, + "probability": 1.0 + }, + { + "word": " is", + "start": 4924.62, + "end": 4926.4, + "probability": 0.80908203125 + }, + { + "word": " I", + "start": 4926.4, + "end": 4926.96, + "probability": 0.25439453125 + }, + { + "word": " mean,", + "start": 4926.96, + "end": 4927.64, + "probability": 0.9990234375 + }, + { + "word": " I", + "start": 4927.64, + "end": 4928.48, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 4928.48, + "end": 4929.1, + "probability": 1.0 + }, + { + "word": " the", + "start": 4929.1, + "end": 4929.6, + "probability": 0.99951171875 + }, + { + "word": " sacrifice", + "start": 4929.6, + "end": 4930.2, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4930.2, + "end": 4930.54, + "probability": 0.98388671875 + }, + { + "word": " everyone", + "start": 4930.54, + "end": 4930.98, + "probability": 0.994140625 + }, + { + "word": " made,", + "start": 4930.98, + "end": 4931.46, + "probability": 0.99853515625 + }, + { + "word": " whether", + "start": 4931.64, + "end": 4932.0, + "probability": 1.0 + }, + { + "word": " it", + "start": 4932.0, + "end": 4932.14, + "probability": 1.0 + }, + { + "word": " be", + "start": 4932.14, + "end": 4932.2, + "probability": 1.0 + }, + { + "word": " monetarily,", + "start": 4932.2, + "end": 4932.78, + "probability": 1.0 + }, + { + "word": " whether", + "start": 4932.98, + "end": 4933.16, + "probability": 1.0 + }, + { + "word": " it", + "start": 4933.16, + "end": 4933.32, + "probability": 1.0 + }, + { + "word": " be", + "start": 4933.32, + "end": 4933.42, + "probability": 1.0 + }, + { + "word": " through", + "start": 4933.42, + "end": 4933.64, + "probability": 0.99755859375 + }, + { + "word": " their", + "start": 4933.64, + "end": 4933.84, + "probability": 0.99951171875 + }, + { + "word": " time,", + "start": 4933.84, + "end": 4934.18, + "probability": 1.0 + }, + { + "word": " whether", + "start": 4934.34, + "end": 4934.56, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 4934.56, + "end": 4934.76, + "probability": 1.0 + }, + { + "word": " be", + "start": 4934.76, + "end": 4934.94, + "probability": 1.0 + }, + { + "word": " with", + "start": 4934.94, + "end": 4936.24, + "probability": 0.998046875 + }, + { + "word": " just", + "start": 4936.24, + "end": 4936.62, + "probability": 1.0 + }, + { + "word": " content", + "start": 4936.62, + "end": 4937.08, + "probability": 1.0 + }, + { + "word": " creation.", + "start": 4937.08, + "end": 4937.42, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2284, + "text": "I mean, like Tara every week does, you know, scouring.", + "start": 4937.48, + "end": 4940.44, + "words": [ + { + "word": " I", + "start": 4937.48, + "end": 4937.58, + "probability": 0.98828125 + }, + { + "word": " mean,", + "start": 4937.58, + "end": 4937.6, + "probability": 0.99951171875 + }, + { + "word": " like", + "start": 4937.64, + "end": 4937.78, + "probability": 0.9990234375 + }, + { + "word": " Tara", + "start": 4937.78, + "end": 4937.94, + "probability": 0.7919921875 + }, + { + "word": " every", + "start": 4937.94, + "end": 4938.26, + "probability": 0.859375 + }, + { + "word": " week", + "start": 4938.26, + "end": 4938.56, + "probability": 0.99951171875 + }, + { + "word": " does,", + "start": 4938.56, + "end": 4939.04, + "probability": 0.99755859375 + }, + { + "word": " you", + "start": 4939.06, + "end": 4939.32, + "probability": 1.0 + }, + { + "word": " know,", + "start": 4939.32, + "end": 4939.56, + "probability": 1.0 + }, + { + "word": " scouring.", + "start": 4939.56, + "end": 4940.44, + "probability": 0.7431640625 + } + ] + }, + { + "id": 2285, + "text": "OK.", + "start": 4941.679999999999, + "end": 4942.24, + "words": [ + { + "word": " OK.", + "start": 4941.679999999999, + "end": 4942.24, + "probability": 9.775161743164062e-05 + } + ] + }, + { + "id": 2286, + "text": "OK.", + "start": 4944.82, + "end": 4945.38, + "words": [ + { + "word": " OK.", + "start": 4944.82, + "end": 4945.38, + "probability": 0.11871337890625 + } + ] + }, + { + "id": 2287, + "text": "", + "start": 4945.66, + "end": 4945.66, + "words": [] + }, + { + "id": 2288, + "text": "", + "start": 4945.66, + "end": 4945.66, + "words": [] + }, + { + "id": 2289, + "text": "OK.", + "start": 4947.02, + "end": 4947.58, + "words": [ + { + "word": " OK.", + "start": 4947.02, + "end": 4947.58, + "probability": 0.89208984375 + } + ] + }, + { + "id": 2290, + "text": "OK.", + "start": 4950.24, + "end": 4950.8, + "words": [ + { + "word": " OK.", + "start": 4950.24, + "end": 4950.8, + "probability": 0.908203125 + } + ] + }, + { + "id": 2291, + "text": "OK.", + "start": 4951.34, + "end": 4951.6, + "words": [ + { + "word": " OK.", + "start": 4951.34, + "end": 4951.6, + "probability": 0.91796875 + } + ] + }, + { + "id": 2292, + "text": "", + "start": 4952.22, + "end": 4952.22, + "words": [] + }, + { + "id": 2293, + "text": "OK.", + "start": 4953.78, + "end": 4954.34, + "words": [ + { + "word": " OK.", + "start": 4953.78, + "end": 4954.34, + "probability": 0.9267578125 + } + ] + }, + { + "id": 2294, + "text": "OK.", + "start": 4954.8, + "end": 4955.08, + "words": [ + { + "word": " OK.", + "start": 4954.8, + "end": 4955.08, + "probability": 0.92919921875 + } + ] + }, + { + "id": 2295, + "text": "OK.", + "start": 4955.1, + "end": 4955.12, + "words": [ + { + "word": " OK.", + "start": 4955.1, + "end": 4955.12, + "probability": 0.931640625 + } + ] + }, + { + "id": 2296, + "text": "OK.", + "start": 4955.14, + "end": 4955.16, + "words": [ + { + "word": " OK.", + "start": 4955.14, + "end": 4955.16, + "probability": 0.93359375 + } + ] + }, + { + "id": 2297, + "text": "OK.", + "start": 4955.32, + "end": 4955.56, + "words": [ + { + "word": " OK.", + "start": 4955.32, + "end": 4955.56, + "probability": 0.93505859375 + } + ] + }, + { + "id": 2298, + "text": "OK.", + "start": 4956.44, + "end": 4956.78, + "words": [ + { + "word": " OK.", + "start": 4956.44, + "end": 4956.78, + "probability": 0.93798828125 + } + ] + }, + { + "id": 2299, + "text": "OK.", + "start": 4957.16, + "end": 4957.72, + "words": [ + { + "word": " OK.", + "start": 4957.16, + "end": 4957.72, + "probability": 0.94091796875 + } + ] + }, + { + "id": 2300, + "text": "OK.", + "start": 4958.02, + "end": 4958.12, + "words": [ + { + "word": " OK.", + "start": 4958.02, + "end": 4958.12, + "probability": 0.94287109375 + } + ] + }, + { + "id": 2301, + "text": "OK.", + "start": 4959.04, + "end": 4959.24, + "words": [ + { + "word": " OK.", + "start": 4959.04, + "end": 4959.24, + "probability": 0.9443359375 + } + ] + }, + { + "id": 2302, + "text": "OK.", + "start": 4959.72, + "end": 4959.86, + "words": [ + { + "word": " OK.", + "start": 4959.72, + "end": 4959.86, + "probability": 0.9462890625 + } + ] + }, + { + "id": 2303, + "text": "OK.", + "start": 4959.98, + "end": 4960.18, + "words": [ + { + "word": " OK.", + "start": 4959.98, + "end": 4960.18, + "probability": 0.9482421875 + } + ] + }, + { + "id": 2304, + "text": "OK.", + "start": 4960.68, + "end": 4960.96, + "words": [ + { + "word": " OK.", + "start": 4960.68, + "end": 4960.96, + "probability": 0.94873046875 + } + ] + }, + { + "id": 2305, + "text": "OK.", + "start": 4961.06, + "end": 4961.08, + "words": [ + { + "word": " OK.", + "start": 4961.06, + "end": 4961.08, + "probability": 0.95068359375 + } + ] + }, + { + "id": 2306, + "text": "OK.", + "start": 4961.1, + "end": 4961.14, + "words": [ + { + "word": " OK.", + "start": 4961.1, + "end": 4961.14, + "probability": 0.95166015625 + } + ] + }, + { + "id": 2307, + "text": "OK.", + "start": 4961.8, + "end": 4961.88, + "words": [ + { + "word": " OK.", + "start": 4961.8, + "end": 4961.88, + "probability": 0.95263671875 + } + ] + }, + { + "id": 2308, + "text": "OK.", + "start": 4961.98, + "end": 4962.06, + "words": [ + { + "word": " OK.", + "start": 4961.98, + "end": 4962.06, + "probability": 0.95361328125 + } + ] + }, + { + "id": 2309, + "text": "OK.", + "start": 4962.18, + "end": 4962.26, + "words": [ + { + "word": " OK.", + "start": 4962.18, + "end": 4962.26, + "probability": 0.9541015625 + } + ] + }, + { + "id": 2310, + "text": "OK.", + "start": 4962.38, + "end": 4962.48, + "words": [ + { + "word": " OK.", + "start": 4962.38, + "end": 4962.48, + "probability": 0.95458984375 + } + ] + }, + { + "id": 2311, + "text": "OK.", + "start": 4962.72, + "end": 4963.1, + "words": [ + { + "word": " OK.", + "start": 4962.72, + "end": 4963.1, + "probability": 0.95556640625 + } + ] + }, + { + "id": 2312, + "text": "OK.", + "start": 4964.82, + "end": 4965.02, + "words": [ + { + "word": " OK.", + "start": 4964.82, + "end": 4965.02, + "probability": 0.95654296875 + } + ] + }, + { + "id": 2313, + "text": "OK.", + "start": 4965.76, + "end": 4965.86, + "words": [ + { + "word": " OK.", + "start": 4965.76, + "end": 4965.86, + "probability": 0.95751953125 + } + ] + }, + { + "id": 2314, + "text": "OK.", + "start": 4967.16, + "end": 4967.56, + "words": [ + { + "word": " OK.", + "start": 4967.16, + "end": 4967.56, + "probability": 0.9580078125 + } + ] + }, + { + "id": 2315, + "text": "spent a lot of money putting this show on and it's all out of love.", + "start": 4970.44, + "end": 4974.1, + "words": [ + { + "word": " spent", + "start": 4970.44, + "end": 4970.68, + "probability": 0.5048828125 + }, + { + "word": " a", + "start": 4970.68, + "end": 4971.18, + "probability": 1.0 + }, + { + "word": " lot", + "start": 4971.18, + "end": 4971.5, + "probability": 1.0 + }, + { + "word": " of", + "start": 4971.5, + "end": 4971.64, + "probability": 1.0 + }, + { + "word": " money", + "start": 4971.64, + "end": 4971.88, + "probability": 1.0 + }, + { + "word": " putting", + "start": 4971.88, + "end": 4972.12, + "probability": 0.994140625 + }, + { + "word": " this", + "start": 4972.12, + "end": 4972.3, + "probability": 0.99560546875 + }, + { + "word": " show", + "start": 4972.3, + "end": 4972.5, + "probability": 1.0 + }, + { + "word": " on", + "start": 4972.5, + "end": 4972.82, + "probability": 1.0 + }, + { + "word": " and", + "start": 4972.82, + "end": 4973.02, + "probability": 0.6396484375 + }, + { + "word": " it's", + "start": 4973.02, + "end": 4973.34, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 4973.34, + "end": 4973.5, + "probability": 1.0 + }, + { + "word": " out", + "start": 4973.5, + "end": 4973.74, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 4973.74, + "end": 4973.92, + "probability": 1.0 + }, + { + "word": " love.", + "start": 4973.92, + "end": 4974.1, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2316, + "text": "And so I enjoy the, the interaction with, with people.", + "start": 4974.6, + "end": 4978.86, + "words": [ + { + "word": " And", + "start": 4974.6, + "end": 4975.0, + "probability": 0.90869140625 + }, + { + "word": " so", + "start": 4975.0, + "end": 4975.34, + "probability": 0.99951171875 + }, + { + "word": " I", + "start": 4975.34, + "end": 4975.98, + "probability": 0.7626953125 + }, + { + "word": " enjoy", + "start": 4975.98, + "end": 4976.86, + "probability": 0.99951171875 + }, + { + "word": " the,", + "start": 4976.86, + "end": 4977.2, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 4977.24, + "end": 4977.46, + "probability": 0.99951171875 + }, + { + "word": " interaction", + "start": 4977.46, + "end": 4977.84, + "probability": 0.998046875 + }, + { + "word": " with,", + "start": 4977.84, + "end": 4978.22, + "probability": 1.0 + }, + { + "word": " with", + "start": 4978.26, + "end": 4978.42, + "probability": 0.99951171875 + }, + { + "word": " people.", + "start": 4978.42, + "end": 4978.86, + "probability": 0.998046875 + } + ] + }, + { + "id": 2317, + "text": "And it's, I really try not to make this a, Hey,", + "start": 4978.9, + "end": 4982.16, + "words": [ + { + "word": " And", + "start": 4978.9, + "end": 4979.08, + "probability": 1.0 + }, + { + "word": " it's,", + "start": 4979.08, + "end": 4979.36, + "probability": 0.9462890625 + }, + { + "word": " I", + "start": 4979.36, + "end": 4979.74, + "probability": 0.9951171875 + }, + { + "word": " really", + "start": 4979.74, + "end": 4980.14, + "probability": 0.8603515625 + }, + { + "word": " try", + "start": 4980.14, + "end": 4980.56, + "probability": 1.0 + }, + { + "word": " not", + "start": 4980.56, + "end": 4980.76, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 4980.76, + "end": 4981.06, + "probability": 1.0 + }, + { + "word": " make", + "start": 4981.06, + "end": 4981.24, + "probability": 1.0 + }, + { + "word": " this", + "start": 4981.24, + "end": 4981.42, + "probability": 0.99951171875 + }, + { + "word": " a,", + "start": 4981.42, + "end": 4981.6, + "probability": 0.9990234375 + }, + { + "word": " Hey,", + "start": 4981.7, + "end": 4982.16, + "probability": 0.9638671875 + } + ] + }, + { + "id": 2318, + "text": "why don't you go down to computer guru commercial? Right.", + "start": 4983.02, + "end": 4986.0, + "words": [ + { + "word": " why", + "start": 4983.02, + "end": 4983.42, + "probability": 0.7685546875 + }, + { + "word": " don't", + "start": 4983.42, + "end": 4983.78, + "probability": 1.0 + }, + { + "word": " you", + "start": 4983.78, + "end": 4983.84, + "probability": 1.0 + }, + { + "word": " go", + "start": 4983.84, + "end": 4983.94, + "probability": 1.0 + }, + { + "word": " down", + "start": 4983.94, + "end": 4984.06, + "probability": 1.0 + }, + { + "word": " to", + "start": 4984.06, + "end": 4984.14, + "probability": 1.0 + }, + { + "word": " computer", + "start": 4984.14, + "end": 4984.38, + "probability": 0.95751953125 + }, + { + "word": " guru", + "start": 4984.38, + "end": 4984.62, + "probability": 0.79248046875 + }, + { + "word": " commercial?", + "start": 4984.62, + "end": 4985.16, + "probability": 0.99951171875 + }, + { + "word": " Right.", + "start": 4985.6, + "end": 4986.0, + "probability": 0.474853515625 + } + ] + }, + { + "id": 2319, + "text": "I really try to just help as well as I can.", + "start": 4986.06, + "end": 4989.2, + "words": [ + { + "word": " I", + "start": 4986.06, + "end": 4986.2, + "probability": 0.96923828125 + }, + { + "word": " really", + "start": 4986.2, + "end": 4986.58, + "probability": 0.99365234375 + }, + { + "word": " try", + "start": 4986.58, + "end": 4987.04, + "probability": 1.0 + }, + { + "word": " to", + "start": 4987.04, + "end": 4987.16, + "probability": 1.0 + }, + { + "word": " just", + "start": 4987.16, + "end": 4987.34, + "probability": 1.0 + }, + { + "word": " help", + "start": 4987.34, + "end": 4987.74, + "probability": 1.0 + }, + { + "word": " as", + "start": 4987.74, + "end": 4988.52, + "probability": 0.98291015625 + }, + { + "word": " well", + "start": 4988.52, + "end": 4988.82, + "probability": 0.61865234375 + }, + { + "word": " as", + "start": 4988.82, + "end": 4988.96, + "probability": 0.99755859375 + }, + { + "word": " I", + "start": 4988.96, + "end": 4989.06, + "probability": 1.0 + }, + { + "word": " can.", + "start": 4989.06, + "end": 4989.2, + "probability": 1.0 + } + ] + }, + { + "id": 2320, + "text": "And if it's beyond doing something over the radio, yeah, then sure. Yeah.", + "start": 4989.24, + "end": 4992.12, + "words": [ + { + "word": " And", + "start": 4989.24, + "end": 4989.34, + "probability": 0.9990234375 + }, + { + "word": " if", + "start": 4989.34, + "end": 4989.46, + "probability": 0.9990234375 + }, + { + "word": " it's", + "start": 4989.46, + "end": 4989.78, + "probability": 1.0 + }, + { + "word": " beyond", + "start": 4989.78, + "end": 4990.08, + "probability": 0.99951171875 + }, + { + "word": " doing", + "start": 4990.08, + "end": 4990.42, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 4990.42, + "end": 4990.78, + "probability": 0.99951171875 + }, + { + "word": " over", + "start": 4990.78, + "end": 4990.98, + "probability": 1.0 + }, + { + "word": " the", + "start": 4990.98, + "end": 4991.12, + "probability": 1.0 + }, + { + "word": " radio,", + "start": 4991.12, + "end": 4991.3, + "probability": 0.9990234375 + }, + { + "word": " yeah,", + "start": 4991.38, + "end": 4991.48, + "probability": 0.9921875 + }, + { + "word": " then", + "start": 4991.54, + "end": 4991.68, + "probability": 0.9931640625 + }, + { + "word": " sure.", + "start": 4991.68, + "end": 4991.9, + "probability": 0.99951171875 + }, + { + "word": " Yeah.", + "start": 4991.96, + "end": 4992.12, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2321, + "text": "Bring it down to me or somebody you trust. And I've always said that.", + "start": 4992.12, + "end": 4994.94, + "words": [ + { + "word": " Bring", + "start": 4992.12, + "end": 4992.24, + "probability": 0.98046875 + }, + { + "word": " it", + "start": 4992.24, + "end": 4992.38, + "probability": 1.0 + }, + { + "word": " down", + "start": 4992.38, + "end": 4992.5, + "probability": 1.0 + }, + { + "word": " to", + "start": 4992.5, + "end": 4992.6, + "probability": 1.0 + }, + { + "word": " me", + "start": 4992.6, + "end": 4992.76, + "probability": 1.0 + }, + { + "word": " or", + "start": 4992.76, + "end": 4992.96, + "probability": 0.99853515625 + }, + { + "word": " somebody", + "start": 4992.96, + "end": 4993.36, + "probability": 1.0 + }, + { + "word": " you", + "start": 4993.36, + "end": 4993.58, + "probability": 1.0 + }, + { + "word": " trust.", + "start": 4993.58, + "end": 4993.88, + "probability": 1.0 + }, + { + "word": " And", + "start": 4994.0, + "end": 4994.14, + "probability": 1.0 + }, + { + "word": " I've", + "start": 4994.14, + "end": 4994.28, + "probability": 1.0 + }, + { + "word": " always", + "start": 4994.28, + "end": 4994.52, + "probability": 1.0 + }, + { + "word": " said", + "start": 4994.52, + "end": 4994.74, + "probability": 1.0 + }, + { + "word": " that.", + "start": 4994.74, + "end": 4994.94, + "probability": 1.0 + } + ] + }, + { + "id": 2322, + "text": "So it's a fantastic show.", + "start": 4995.660000000001, + "end": 4999.42, + "words": [ + { + "word": " So", + "start": 4995.660000000001, + "end": 4996.06, + "probability": 0.99462890625 + }, + { + "word": " it's", + "start": 4996.06, + "end": 4996.46, + "probability": 1.0 + }, + { + "word": " a", + "start": 4996.46, + "end": 4996.62, + "probability": 0.296875 + }, + { + "word": " fantastic", + "start": 4996.62, + "end": 4998.76, + "probability": 1.0 + }, + { + "word": " show.", + "start": 4998.76, + "end": 4999.42, + "probability": 1.0 + } + ] + }, + { + "id": 2323, + "text": "And highly professional.", + "start": 4999.42, + "end": 5002.2, + "words": [ + { + "word": " And", + "start": 4999.42, + "end": 4999.84, + "probability": 0.046295166015625 + }, + { + "word": " highly", + "start": 4999.84, + "end": 5001.5, + "probability": 0.9345703125 + }, + { + "word": " professional.", + "start": 5001.5, + "end": 5002.2, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2324, + "text": "And there's thousands of us out here who don't call in.", + "start": 5002.6, + "end": 5007.26, + "words": [ + { + "word": " And", + "start": 5002.6, + "end": 5002.84, + "probability": 0.31005859375 + }, + { + "word": " there's", + "start": 5002.84, + "end": 5004.36, + "probability": 0.943359375 + }, + { + "word": " thousands", + "start": 5004.36, + "end": 5004.78, + "probability": 0.99658203125 + }, + { + "word": " of", + "start": 5004.78, + "end": 5005.0, + "probability": 0.99462890625 + }, + { + "word": " us", + "start": 5005.0, + "end": 5005.18, + "probability": 0.99951171875 + }, + { + "word": " out", + "start": 5005.18, + "end": 5005.38, + "probability": 0.99169921875 + }, + { + "word": " here", + "start": 5005.38, + "end": 5005.62, + "probability": 0.99951171875 + }, + { + "word": " who", + "start": 5005.62, + "end": 5006.18, + "probability": 0.77880859375 + }, + { + "word": " don't", + "start": 5006.18, + "end": 5006.84, + "probability": 0.6669921875 + }, + { + "word": " call", + "start": 5006.84, + "end": 5007.04, + "probability": 1.0 + }, + { + "word": " in.", + "start": 5007.04, + "end": 5007.26, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2325, + "text": "I'm sure that greatly appreciate what you've done.", + "start": 5007.32, + "end": 5010.52, + "words": [ + { + "word": " I'm", + "start": 5007.32, + "end": 5007.42, + "probability": 0.98583984375 + }, + { + "word": " sure", + "start": 5007.42, + "end": 5007.56, + "probability": 1.0 + }, + { + "word": " that", + "start": 5007.56, + "end": 5008.26, + "probability": 0.99169921875 + }, + { + "word": " greatly", + "start": 5008.26, + "end": 5009.1, + "probability": 0.9912109375 + }, + { + "word": " appreciate", + "start": 5009.1, + "end": 5009.5, + "probability": 1.0 + }, + { + "word": " what", + "start": 5009.5, + "end": 5010.04, + "probability": 0.99951171875 + }, + { + "word": " you've", + "start": 5010.04, + "end": 5010.3, + "probability": 1.0 + }, + { + "word": " done.", + "start": 5010.3, + "end": 5010.52, + "probability": 1.0 + } + ] + }, + { + "id": 2326, + "text": "Well, I appreciate the kind words part. Now, unfortunately,", + "start": 5011.18, + "end": 5015.14, + "words": [ + { + "word": " Well,", + "start": 5011.18, + "end": 5011.54, + "probability": 0.98876953125 + }, + { + "word": " I", + "start": 5011.68, + "end": 5011.8, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5011.8, + "end": 5012.26, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5012.26, + "end": 5012.6, + "probability": 0.9990234375 + }, + { + "word": " kind", + "start": 5012.6, + "end": 5012.78, + "probability": 1.0 + }, + { + "word": " words", + "start": 5012.78, + "end": 5013.1, + "probability": 1.0 + }, + { + "word": " part.", + "start": 5013.1, + "end": 5013.38, + "probability": 0.471923828125 + }, + { + "word": " Now,", + "start": 5014.08, + "end": 5014.44, + "probability": 0.9990234375 + }, + { + "word": " unfortunately,", + "start": 5014.56, + "end": 5015.14, + "probability": 1.0 + } + ] + }, + { + "id": 2327, + "text": "I hate to interrupt somebody saying nice things about me,", + "start": 5015.28, + "end": 5017.86, + "words": [ + { + "word": " I", + "start": 5015.28, + "end": 5015.76, + "probability": 1.0 + }, + { + "word": " hate", + "start": 5015.76, + "end": 5016.2, + "probability": 0.9931640625 + }, + { + "word": " to", + "start": 5016.2, + "end": 5016.34, + "probability": 1.0 + }, + { + "word": " interrupt", + "start": 5016.34, + "end": 5016.54, + "probability": 1.0 + }, + { + "word": " somebody", + "start": 5016.54, + "end": 5016.82, + "probability": 0.9970703125 + }, + { + "word": " saying", + "start": 5016.82, + "end": 5016.98, + "probability": 1.0 + }, + { + "word": " nice", + "start": 5016.98, + "end": 5017.22, + "probability": 1.0 + }, + { + "word": " things", + "start": 5017.22, + "end": 5017.42, + "probability": 1.0 + }, + { + "word": " about", + "start": 5017.42, + "end": 5017.66, + "probability": 1.0 + }, + { + "word": " me,", + "start": 5017.66, + "end": 5017.86, + "probability": 1.0 + } + ] + }, + { + "id": 2328, + "text": "but I have to do a break here. So when we come back from the break,", + "start": 5017.9, + "end": 5021.62, + "words": [ + { + "word": " but", + "start": 5017.9, + "end": 5018.06, + "probability": 1.0 + }, + { + "word": " I", + "start": 5018.06, + "end": 5018.16, + "probability": 1.0 + }, + { + "word": " have", + "start": 5018.16, + "end": 5018.28, + "probability": 1.0 + }, + { + "word": " to", + "start": 5018.28, + "end": 5018.4, + "probability": 1.0 + }, + { + "word": " do", + "start": 5018.4, + "end": 5018.48, + "probability": 1.0 + }, + { + "word": " a", + "start": 5018.48, + "end": 5018.6, + "probability": 1.0 + }, + { + "word": " break", + "start": 5018.6, + "end": 5018.76, + "probability": 1.0 + }, + { + "word": " here.", + "start": 5018.76, + "end": 5018.98, + "probability": 1.0 + }, + { + "word": " So", + "start": 5019.44, + "end": 5019.8, + "probability": 0.99951171875 + }, + { + "word": " when", + "start": 5019.8, + "end": 5020.84, + "probability": 0.98291015625 + }, + { + "word": " we", + "start": 5020.84, + "end": 5020.96, + "probability": 1.0 + }, + { + "word": " come", + "start": 5020.96, + "end": 5021.08, + "probability": 1.0 + }, + { + "word": " back", + "start": 5021.08, + "end": 5021.26, + "probability": 1.0 + }, + { + "word": " from", + "start": 5021.26, + "end": 5021.36, + "probability": 0.99462890625 + }, + { + "word": " the", + "start": 5021.36, + "end": 5021.46, + "probability": 1.0 + }, + { + "word": " break,", + "start": 5021.46, + "end": 5021.62, + "probability": 1.0 + } + ] + }, + { + "id": 2329, + "text": "if you,", + "start": 5021.76, + "end": 5022.14, + "words": [ + { + "word": " if", + "start": 5021.76, + "end": 5022.0, + "probability": 0.99951171875 + }, + { + "word": " you,", + "start": 5022.0, + "end": 5022.14, + "probability": 0.166015625 + } + ] + }, + { + "id": 2330, + "text": "if anybody wants to call in and say nice things about me for the last 10", + "start": 5022.14, + "end": 5024.7, + "words": [ + { + "word": " if", + "start": 5022.14, + "end": 5022.28, + "probability": 0.99951171875 + }, + { + "word": " anybody", + "start": 5022.28, + "end": 5022.56, + "probability": 0.99951171875 + }, + { + "word": " wants", + "start": 5022.56, + "end": 5022.78, + "probability": 1.0 + }, + { + "word": " to", + "start": 5022.78, + "end": 5022.94, + "probability": 1.0 + }, + { + "word": " call", + "start": 5022.94, + "end": 5023.08, + "probability": 1.0 + }, + { + "word": " in", + "start": 5023.08, + "end": 5023.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 5023.26, + "end": 5023.4, + "probability": 1.0 + }, + { + "word": " say", + "start": 5023.4, + "end": 5023.52, + "probability": 1.0 + }, + { + "word": " nice", + "start": 5023.52, + "end": 5023.72, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 5023.72, + "end": 5023.9, + "probability": 1.0 + }, + { + "word": " about", + "start": 5023.9, + "end": 5024.1, + "probability": 1.0 + }, + { + "word": " me", + "start": 5024.1, + "end": 5024.22, + "probability": 0.99951171875 + }, + { + "word": " for", + "start": 5024.22, + "end": 5024.34, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5024.34, + "end": 5024.36, + "probability": 1.0 + }, + { + "word": " last", + "start": 5024.36, + "end": 5024.54, + "probability": 1.0 + }, + { + "word": " 10", + "start": 5024.54, + "end": 5024.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2331, + "text": "minutes of the show, you're welcome to do so. But in the meantime,", + "start": 5024.7, + "end": 5027.64, + "words": [ + { + "word": " minutes", + "start": 5024.7, + "end": 5024.9, + "probability": 0.9990234375 + }, + { + "word": " of", + "start": 5024.9, + "end": 5025.02, + "probability": 0.9990234375 + }, + { + "word": " the", + "start": 5025.02, + "end": 5025.02, + "probability": 1.0 + }, + { + "word": " show,", + "start": 5025.02, + "end": 5025.18, + "probability": 0.99951171875 + }, + { + "word": " you're", + "start": 5025.24, + "end": 5025.38, + "probability": 0.99951171875 + }, + { + "word": " welcome", + "start": 5025.38, + "end": 5025.56, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5025.56, + "end": 5025.74, + "probability": 0.9990234375 + }, + { + "word": " do", + "start": 5025.74, + "end": 5025.86, + "probability": 1.0 + }, + { + "word": " so.", + "start": 5025.86, + "end": 5026.0, + "probability": 0.99951171875 + }, + { + "word": " But", + "start": 5026.1, + "end": 5026.46, + "probability": 0.99755859375 + }, + { + "word": " in", + "start": 5026.46, + "end": 5027.12, + "probability": 0.9873046875 + }, + { + "word": " the", + "start": 5027.12, + "end": 5027.34, + "probability": 1.0 + }, + { + "word": " meantime,", + "start": 5027.34, + "end": 5027.64, + "probability": 1.0 + } + ] + }, + { + "id": 2332, + "text": "we have to go to break because,", + "start": 5028.06, + "end": 5029.4, + "words": [ + { + "word": " we", + "start": 5028.06, + "end": 5028.42, + "probability": 0.99609375 + }, + { + "word": " have", + "start": 5028.42, + "end": 5028.58, + "probability": 0.998046875 + }, + { + "word": " to", + "start": 5028.58, + "end": 5028.7, + "probability": 0.99951171875 + }, + { + "word": " go", + "start": 5028.7, + "end": 5028.78, + "probability": 0.982421875 + }, + { + "word": " to", + "start": 5028.78, + "end": 5028.86, + "probability": 0.998046875 + }, + { + "word": " break", + "start": 5028.86, + "end": 5029.04, + "probability": 0.9970703125 + }, + { + "word": " because,", + "start": 5029.04, + "end": 5029.4, + "probability": 0.75244140625 + } + ] + }, + { + "id": 2333, + "text": "because read decisions as I must. So we'll be right back after these messages.", + "start": 5029.42, + "end": 5033.68, + "words": [ + { + "word": " because", + "start": 5029.42, + "end": 5029.5, + "probability": 0.0270233154296875 + }, + { + "word": " read", + "start": 5029.5, + "end": 5030.0, + "probability": 0.24560546875 + }, + { + "word": " decisions", + "start": 5030.0, + "end": 5030.26, + "probability": 0.109375 + }, + { + "word": " as", + "start": 5030.26, + "end": 5030.54, + "probability": 0.99462890625 + }, + { + "word": " I", + "start": 5030.54, + "end": 5030.64, + "probability": 0.984375 + }, + { + "word": " must.", + "start": 5030.64, + "end": 5030.8, + "probability": 1.0 + }, + { + "word": " So", + "start": 5031.06, + "end": 5031.44, + "probability": 0.9736328125 + }, + { + "word": " we'll", + "start": 5031.44, + "end": 5031.6, + "probability": 0.98095703125 + }, + { + "word": " be", + "start": 5031.6, + "end": 5031.72, + "probability": 1.0 + }, + { + "word": " right", + "start": 5031.72, + "end": 5031.9, + "probability": 1.0 + }, + { + "word": " back", + "start": 5031.9, + "end": 5032.1, + "probability": 1.0 + }, + { + "word": " after", + "start": 5032.1, + "end": 5032.38, + "probability": 0.8427734375 + }, + { + "word": " these", + "start": 5032.38, + "end": 5033.26, + "probability": 1.0 + }, + { + "word": " messages.", + "start": 5033.26, + "end": 5033.68, + "probability": 1.0 + } + ] + }, + { + "id": 2334, + "text": "Thanks, Mark. I appreciate it.", + "start": 5033.76, + "end": 5034.92, + "words": [ + { + "word": " Thanks,", + "start": 5033.76, + "end": 5034.04, + "probability": 0.99951171875 + }, + { + "word": " Mark.", + "start": 5034.16, + "end": 5034.28, + "probability": 0.998046875 + }, + { + "word": " I", + "start": 5034.38, + "end": 5034.5, + "probability": 0.9990234375 + }, + { + "word": " appreciate", + "start": 5034.5, + "end": 5034.74, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5034.74, + "end": 5034.92, + "probability": 1.0 + } + ] + }, + { + "id": 2335, + "text": "Yeah.", + "start": 5036.94, + "end": 5037.32, + "words": [ + { + "word": " Yeah.", + "start": 5036.94, + "end": 5037.32, + "probability": 0.08062744140625 + } + ] + }, + { + "id": 2336, + "text": "Whether you're dealing with hardware installation or heaven forbid a virus,", + "start": 5059.42, + "end": 5062.94, + "words": [ + { + "word": " Whether", + "start": 5059.42, + "end": 5059.64, + "probability": 0.9658203125 + }, + { + "word": " you're", + "start": 5059.64, + "end": 5059.88, + "probability": 0.9990234375 + }, + { + "word": " dealing", + "start": 5059.88, + "end": 5060.14, + "probability": 1.0 + }, + { + "word": " with", + "start": 5060.14, + "end": 5060.36, + "probability": 1.0 + }, + { + "word": " hardware", + "start": 5060.36, + "end": 5060.62, + "probability": 0.99853515625 + }, + { + "word": " installation", + "start": 5060.62, + "end": 5061.02, + "probability": 0.99951171875 + }, + { + "word": " or", + "start": 5061.02, + "end": 5061.5, + "probability": 0.99072265625 + }, + { + "word": " heaven", + "start": 5061.5, + "end": 5061.74, + "probability": 0.355224609375 + }, + { + "word": " forbid", + "start": 5061.74, + "end": 5062.0, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5062.0, + "end": 5062.54, + "probability": 0.071533203125 + }, + { + "word": " virus,", + "start": 5062.54, + "end": 5062.94, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2337, + "text": "Mike Swanson is answering all your questions one by one.", + "start": 5064.879999999999, + "end": 5068.08, + "words": [ + { + "word": " Mike", + "start": 5064.879999999999, + "end": 5065.4, + "probability": 0.94384765625 + }, + { + "word": " Swanson", + "start": 5065.4, + "end": 5065.88, + "probability": 0.9990234375 + }, + { + "word": " is", + "start": 5065.88, + "end": 5066.14, + "probability": 0.99951171875 + }, + { + "word": " answering", + "start": 5066.14, + "end": 5066.52, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 5066.52, + "end": 5066.78, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5066.78, + "end": 5066.98, + "probability": 0.99951171875 + }, + { + "word": " questions", + "start": 5066.98, + "end": 5067.34, + "probability": 1.0 + }, + { + "word": " one", + "start": 5067.34, + "end": 5067.66, + "probability": 0.96875 + }, + { + "word": " by", + "start": 5067.66, + "end": 5067.86, + "probability": 0.98681640625 + }, + { + "word": " one.", + "start": 5067.86, + "end": 5068.08, + "probability": 1.0 + } + ] + }, + { + "id": 2338, + "text": "So call in or chat in with yours, the website guru show.com.", + "start": 5068.2, + "end": 5072.76, + "words": [ + { + "word": " So", + "start": 5068.2, + "end": 5068.54, + "probability": 0.9990234375 + }, + { + "word": " call", + "start": 5068.54, + "end": 5068.78, + "probability": 0.99267578125 + }, + { + "word": " in", + "start": 5068.78, + "end": 5069.0, + "probability": 1.0 + }, + { + "word": " or", + "start": 5069.0, + "end": 5069.26, + "probability": 0.9990234375 + }, + { + "word": " chat", + "start": 5069.26, + "end": 5069.5, + "probability": 0.95654296875 + }, + { + "word": " in", + "start": 5069.5, + "end": 5069.76, + "probability": 0.998046875 + }, + { + "word": " with", + "start": 5069.76, + "end": 5070.02, + "probability": 0.99951171875 + }, + { + "word": " yours,", + "start": 5070.02, + "end": 5070.24, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5070.36, + "end": 5070.86, + "probability": 0.9990234375 + }, + { + "word": " website", + "start": 5070.86, + "end": 5071.24, + "probability": 0.99853515625 + }, + { + "word": " guru", + "start": 5071.24, + "end": 5071.8, + "probability": 0.2484130859375 + }, + { + "word": " show", + "start": 5071.8, + "end": 5072.16, + "probability": 0.9951171875 + }, + { + "word": ".com.", + "start": 5072.16, + "end": 5072.76, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2339, + "text": "Tune in, click in and kick back.", + "start": 5073.08, + "end": 5075.36, + "words": [ + { + "word": " Tune", + "start": 5073.08, + "end": 5073.6, + "probability": 1.0 + }, + { + "word": " in,", + "start": 5073.6, + "end": 5073.82, + "probability": 1.0 + }, + { + "word": " click", + "start": 5073.88, + "end": 5074.26, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 5074.26, + "end": 5074.54, + "probability": 1.0 + }, + { + "word": " and", + "start": 5074.54, + "end": 5074.9, + "probability": 0.921875 + }, + { + "word": " kick", + "start": 5074.9, + "end": 5075.04, + "probability": 1.0 + }, + { + "word": " back.", + "start": 5075.04, + "end": 5075.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2340, + "text": "This is the computer guru show on AM 10 30 KVO. Why the voice?", + "start": 5075.46, + "end": 5080.38, + "words": [ + { + "word": " This", + "start": 5075.46, + "end": 5075.98, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5075.98, + "end": 5076.48, + "probability": 1.0 + }, + { + "word": " the", + "start": 5076.48, + "end": 5076.58, + "probability": 0.99072265625 + }, + { + "word": " computer", + "start": 5076.58, + "end": 5076.88, + "probability": 0.9287109375 + }, + { + "word": " guru", + "start": 5076.88, + "end": 5077.18, + "probability": 0.99658203125 + }, + { + "word": " show", + "start": 5077.18, + "end": 5077.56, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5077.56, + "end": 5077.98, + "probability": 0.99755859375 + }, + { + "word": " AM", + "start": 5077.98, + "end": 5078.28, + "probability": 0.8291015625 + }, + { + "word": " 10", + "start": 5078.28, + "end": 5078.56, + "probability": 0.9853515625 + }, + { + "word": " 30", + "start": 5078.56, + "end": 5078.9, + "probability": 0.54638671875 + }, + { + "word": " KVO.", + "start": 5078.9, + "end": 5079.64, + "probability": 0.62109375 + }, + { + "word": " Why", + "start": 5079.7, + "end": 5079.92, + "probability": 0.97509765625 + }, + { + "word": " the", + "start": 5079.92, + "end": 5080.12, + "probability": 0.99462890625 + }, + { + "word": " voice?", + "start": 5080.12, + "end": 5080.38, + "probability": 0.99169921875 + } + ] + }, + { + "id": 2341, + "text": "Mike Swanson.", + "start": 5091.400000000001, + "end": 5092.12, + "words": [ + { + "word": " Mike", + "start": 5091.400000000001, + "end": 5091.76, + "probability": 0.884765625 + }, + { + "word": " Swanson.", + "start": 5091.76, + "end": 5092.12, + "probability": 0.99609375 + } + ] + }, + { + "id": 2342, + "text": "Your computer guru is just a click away.", + "start": 5092.22, + "end": 5094.26, + "words": [ + { + "word": " Your", + "start": 5092.22, + "end": 5092.36, + "probability": 0.98095703125 + }, + { + "word": " computer", + "start": 5092.36, + "end": 5092.76, + "probability": 0.8125 + }, + { + "word": " guru", + "start": 5092.76, + "end": 5093.08, + "probability": 0.9970703125 + }, + { + "word": " is", + "start": 5093.08, + "end": 5093.46, + "probability": 0.9755859375 + }, + { + "word": " just", + "start": 5093.46, + "end": 5093.72, + "probability": 0.9990234375 + }, + { + "word": " a", + "start": 5093.72, + "end": 5093.86, + "probability": 1.0 + }, + { + "word": " click", + "start": 5093.86, + "end": 5094.04, + "probability": 0.9990234375 + }, + { + "word": " away.", + "start": 5094.04, + "end": 5094.26, + "probability": 1.0 + } + ] + }, + { + "id": 2343, + "text": "Listen and watch a guru show.com.", + "start": 5094.58, + "end": 5096.66, + "words": [ + { + "word": " Listen", + "start": 5094.58, + "end": 5094.94, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 5094.94, + "end": 5095.14, + "probability": 0.99755859375 + }, + { + "word": " watch", + "start": 5095.14, + "end": 5095.42, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5095.42, + "end": 5095.58, + "probability": 0.63134765625 + }, + { + "word": " guru", + "start": 5095.58, + "end": 5095.8, + "probability": 0.76953125 + }, + { + "word": " show", + "start": 5095.8, + "end": 5096.14, + "probability": 0.99365234375 + }, + { + "word": ".com.", + "start": 5096.14, + "end": 5096.66, + "probability": 0.8193359375 + } + ] + }, + { + "id": 2344, + "text": "This is the computer guru show.", + "start": 5097.200000000001, + "end": 5099.06, + "words": [ + { + "word": " This", + "start": 5097.200000000001, + "end": 5097.56, + "probability": 0.99951171875 + }, + { + "word": " is", + "start": 5097.56, + "end": 5097.9, + "probability": 1.0 + }, + { + "word": " the", + "start": 5097.9, + "end": 5098.06, + "probability": 0.98876953125 + }, + { + "word": " computer", + "start": 5098.06, + "end": 5098.36, + "probability": 0.97509765625 + }, + { + "word": " guru", + "start": 5098.36, + "end": 5098.68, + "probability": 0.998046875 + }, + { + "word": " show.", + "start": 5098.68, + "end": 5099.06, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2345, + "text": "Welcome back to the computer guru show.", + "start": 5100.200000000001, + "end": 5102.52, + "words": [ + { + "word": " Welcome", + "start": 5100.200000000001, + "end": 5100.56, + "probability": 0.99853515625 + }, + { + "word": " back", + "start": 5100.56, + "end": 5100.92, + "probability": 0.84033203125 + }, + { + "word": " to", + "start": 5100.92, + "end": 5101.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5101.84, + "end": 5101.94, + "probability": 0.99951171875 + }, + { + "word": " computer", + "start": 5101.94, + "end": 5102.14, + "probability": 0.99951171875 + }, + { + "word": " guru", + "start": 5102.14, + "end": 5102.34, + "probability": 0.7275390625 + }, + { + "word": " show.", + "start": 5102.34, + "end": 5102.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2346, + "text": "7 9 0 20 40.", + "start": 5102.56, + "end": 5103.5, + "words": [ + { + "word": " 7", + "start": 5102.56, + "end": 5102.74, + "probability": 0.63623046875 + }, + { + "word": " 9", + "start": 5102.74, + "end": 5102.9, + "probability": 0.10479736328125 + }, + { + "word": " 0", + "start": 5102.9, + "end": 5103.06, + "probability": 0.99755859375 + }, + { + "word": " 20", + "start": 5103.06, + "end": 5103.26, + "probability": 0.9677734375 + }, + { + "word": " 40.", + "start": 5103.26, + "end": 5103.5, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2347, + "text": "If you'd like to get into the last segment here,", + "start": 5103.58, + "end": 5105.08, + "words": [ + { + "word": " If", + "start": 5103.58, + "end": 5103.7, + "probability": 0.99853515625 + }, + { + "word": " you'd", + "start": 5103.7, + "end": 5103.78, + "probability": 1.0 + }, + { + "word": " like", + "start": 5103.78, + "end": 5103.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 5103.84, + "end": 5103.94, + "probability": 1.0 + }, + { + "word": " get", + "start": 5103.94, + "end": 5104.02, + "probability": 1.0 + }, + { + "word": " into", + "start": 5104.02, + "end": 5104.18, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5104.18, + "end": 5104.32, + "probability": 1.0 + }, + { + "word": " last", + "start": 5104.32, + "end": 5104.52, + "probability": 1.0 + }, + { + "word": " segment", + "start": 5104.52, + "end": 5104.86, + "probability": 0.99853515625 + }, + { + "word": " here,", + "start": 5104.86, + "end": 5105.08, + "probability": 0.99609375 + } + ] + }, + { + "id": 2348, + "text": "we only have a couple of minutes left.", + "start": 5105.1, + "end": 5106.1, + "words": [ + { + "word": " we", + "start": 5105.1, + "end": 5105.2, + "probability": 0.490478515625 + }, + { + "word": " only", + "start": 5105.2, + "end": 5105.28, + "probability": 0.85595703125 + }, + { + "word": " have", + "start": 5105.28, + "end": 5105.36, + "probability": 1.0 + }, + { + "word": " a", + "start": 5105.36, + "end": 5105.44, + "probability": 1.0 + }, + { + "word": " couple", + "start": 5105.44, + "end": 5105.62, + "probability": 1.0 + }, + { + "word": " of", + "start": 5105.62, + "end": 5105.68, + "probability": 1.0 + }, + { + "word": " minutes", + "start": 5105.68, + "end": 5105.82, + "probability": 1.0 + }, + { + "word": " left.", + "start": 5105.82, + "end": 5106.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2349, + "text": "Let's go ahead and talk to Tom.", + "start": 5106.58, + "end": 5107.56, + "words": [ + { + "word": " Let's", + "start": 5106.58, + "end": 5106.94, + "probability": 1.0 + }, + { + "word": " go", + "start": 5106.94, + "end": 5106.98, + "probability": 0.99951171875 + }, + { + "word": " ahead", + "start": 5106.98, + "end": 5107.1, + "probability": 0.857421875 + }, + { + "word": " and", + "start": 5107.1, + "end": 5107.12, + "probability": 0.99951171875 + }, + { + "word": " talk", + "start": 5107.12, + "end": 5107.24, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5107.24, + "end": 5107.3, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 5107.3, + "end": 5107.56, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2350, + "text": "Hello, Tom.", + "start": 5107.62, + "end": 5108.08, + "words": [ + { + "word": " Hello,", + "start": 5107.62, + "end": 5107.84, + "probability": 0.9970703125 + }, + { + "word": " Tom.", + "start": 5107.86, + "end": 5108.08, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2351, + "text": "How are you?", + "start": 5108.16, + "end": 5108.5, + "words": [ + { + "word": " How", + "start": 5108.16, + "end": 5108.34, + "probability": 0.998046875 + }, + { + "word": " are", + "start": 5108.34, + "end": 5108.34, + "probability": 1.0 + }, + { + "word": " you?", + "start": 5108.34, + "end": 5108.5, + "probability": 1.0 + } + ] + }, + { + "id": 2352, + "text": "I'm good.", + "start": 5109.72, + "end": 5110.24, + "words": [ + { + "word": " I'm", + "start": 5109.72, + "end": 5110.08, + "probability": 0.99951171875 + }, + { + "word": " good.", + "start": 5110.08, + "end": 5110.24, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2353, + "text": "Thank you.", + "start": 5110.3, + "end": 5110.68, + "words": [ + { + "word": " Thank", + "start": 5110.3, + "end": 5110.5, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 5110.5, + "end": 5110.68, + "probability": 1.0 + } + ] + }, + { + "id": 2354, + "text": "I just want to thank you for the three or four years I've been listening to you.", + "start": 5110.7, + "end": 5115.04, + "words": [ + { + "word": " I", + "start": 5110.7, + "end": 5110.74, + "probability": 0.98974609375 + }, + { + "word": " just", + "start": 5110.74, + "end": 5110.86, + "probability": 0.99853515625 + }, + { + "word": " want", + "start": 5110.86, + "end": 5111.02, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5111.02, + "end": 5111.16, + "probability": 1.0 + }, + { + "word": " thank", + "start": 5111.16, + "end": 5111.34, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 5111.34, + "end": 5111.56, + "probability": 1.0 + }, + { + "word": " for", + "start": 5111.56, + "end": 5112.0, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 5112.0, + "end": 5113.18, + "probability": 0.9755859375 + }, + { + "word": " three", + "start": 5113.18, + "end": 5113.4, + "probability": 0.9970703125 + }, + { + "word": " or", + "start": 5113.4, + "end": 5113.52, + "probability": 0.99853515625 + }, + { + "word": " four", + "start": 5113.52, + "end": 5113.74, + "probability": 0.99951171875 + }, + { + "word": " years", + "start": 5113.74, + "end": 5114.02, + "probability": 0.99951171875 + }, + { + "word": " I've", + "start": 5114.02, + "end": 5114.24, + "probability": 0.8271484375 + }, + { + "word": " been", + "start": 5114.24, + "end": 5114.34, + "probability": 1.0 + }, + { + "word": " listening", + "start": 5114.34, + "end": 5114.64, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5114.64, + "end": 5114.86, + "probability": 0.9990234375 + }, + { + "word": " you.", + "start": 5114.86, + "end": 5115.04, + "probability": 0.998046875 + } + ] + }, + { + "id": 2355, + "text": "You have been my early warning system on sort of staying on top of computer stuff.", + "start": 5115.08, + "end": 5118.9, + "words": [ + { + "word": " You", + "start": 5115.08, + "end": 5115.18, + "probability": 0.98779296875 + }, + { + "word": " have", + "start": 5115.18, + "end": 5115.24, + "probability": 0.91357421875 + }, + { + "word": " been", + "start": 5115.24, + "end": 5115.4, + "probability": 1.0 + }, + { + "word": " my", + "start": 5115.4, + "end": 5115.54, + "probability": 0.9990234375 + }, + { + "word": " early", + "start": 5115.54, + "end": 5115.74, + "probability": 0.994140625 + }, + { + "word": " warning", + "start": 5115.74, + "end": 5116.04, + "probability": 0.998046875 + }, + { + "word": " system", + "start": 5116.04, + "end": 5116.38, + "probability": 0.99853515625 + }, + { + "word": " on", + "start": 5116.38, + "end": 5116.7, + "probability": 0.9921875 + }, + { + "word": " sort", + "start": 5116.7, + "end": 5117.46, + "probability": 0.99609375 + }, + { + "word": " of", + "start": 5117.46, + "end": 5117.52, + "probability": 1.0 + }, + { + "word": " staying", + "start": 5117.52, + "end": 5117.82, + "probability": 0.9970703125 + }, + { + "word": " on", + "start": 5117.82, + "end": 5117.98, + "probability": 0.99951171875 + }, + { + "word": " top", + "start": 5117.98, + "end": 5118.2, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5118.2, + "end": 5118.36, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 5118.36, + "end": 5118.6, + "probability": 0.98828125 + }, + { + "word": " stuff.", + "start": 5118.6, + "end": 5118.9, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2356, + "text": "And I've,", + "start": 5118.98, + "end": 5119.4, + "words": [ + { + "word": " And", + "start": 5118.98, + "end": 5119.16, + "probability": 0.99609375 + }, + { + "word": " I've,", + "start": 5119.16, + "end": 5119.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2357, + "text": "you've helped me in your shop.", + "start": 5119.4, + "end": 5120.72, + "words": [ + { + "word": " you've", + "start": 5119.4, + "end": 5119.96, + "probability": 0.50048828125 + }, + { + "word": " helped", + "start": 5119.96, + "end": 5120.14, + "probability": 0.97998046875 + }, + { + "word": " me", + "start": 5120.14, + "end": 5120.3, + "probability": 0.99462890625 + }, + { + "word": " in", + "start": 5120.3, + "end": 5120.34, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5120.34, + "end": 5120.44, + "probability": 1.0 + }, + { + "word": " shop.", + "start": 5120.44, + "end": 5120.72, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2358, + "text": "So I'm going to miss you a lot.", + "start": 5120.82, + "end": 5122.68, + "words": [ + { + "word": " So", + "start": 5120.82, + "end": 5121.12, + "probability": 0.88720703125 + }, + { + "word": " I'm", + "start": 5121.12, + "end": 5121.94, + "probability": 0.865234375 + }, + { + "word": " going", + "start": 5121.94, + "end": 5121.98, + "probability": 0.96337890625 + }, + { + "word": " to", + "start": 5121.98, + "end": 5122.0, + "probability": 1.0 + }, + { + "word": " miss", + "start": 5122.0, + "end": 5122.16, + "probability": 1.0 + }, + { + "word": " you", + "start": 5122.16, + "end": 5122.3, + "probability": 1.0 + }, + { + "word": " a", + "start": 5122.3, + "end": 5122.42, + "probability": 0.99951171875 + }, + { + "word": " lot.", + "start": 5122.42, + "end": 5122.68, + "probability": 1.0 + } + ] + }, + { + "id": 2359, + "text": "And thank you for all you've done.", + "start": 5123.1, + "end": 5124.78, + "words": [ + { + "word": " And", + "start": 5123.1, + "end": 5123.42, + "probability": 0.66552734375 + }, + { + "word": " thank", + "start": 5123.42, + "end": 5123.74, + "probability": 1.0 + }, + { + "word": " you", + "start": 5123.74, + "end": 5123.96, + "probability": 1.0 + }, + { + "word": " for", + "start": 5123.96, + "end": 5124.14, + "probability": 0.99951171875 + }, + { + "word": " all", + "start": 5124.14, + "end": 5124.36, + "probability": 0.99951171875 + }, + { + "word": " you've", + "start": 5124.36, + "end": 5124.58, + "probability": 1.0 + }, + { + "word": " done.", + "start": 5124.58, + "end": 5124.78, + "probability": 1.0 + } + ] + }, + { + "id": 2360, + "text": "Well, thank you very much, Tom.", + "start": 5125.12, + "end": 5126.4, + "words": [ + { + "word": " Well,", + "start": 5125.12, + "end": 5125.44, + "probability": 0.97216796875 + }, + { + "word": " thank", + "start": 5125.54, + "end": 5125.64, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 5125.64, + "end": 5125.8, + "probability": 1.0 + }, + { + "word": " very", + "start": 5125.8, + "end": 5125.94, + "probability": 1.0 + }, + { + "word": " much,", + "start": 5125.94, + "end": 5126.22, + "probability": 1.0 + }, + { + "word": " Tom.", + "start": 5126.24, + "end": 5126.4, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2361, + "text": "I very much appreciate it.", + "start": 5126.46, + "end": 5127.48, + "words": [ + { + "word": " I", + "start": 5126.46, + "end": 5126.58, + "probability": 0.99853515625 + }, + { + "word": " very", + "start": 5126.58, + "end": 5126.66, + "probability": 0.99658203125 + }, + { + "word": " much", + "start": 5126.66, + "end": 5126.88, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5126.88, + "end": 5127.26, + "probability": 0.99951171875 + }, + { + "word": " it.", + "start": 5127.26, + "end": 5127.48, + "probability": 1.0 + } + ] + }, + { + "id": 2362, + "text": "And I,", + "start": 5127.5, + "end": 5127.64, + "words": [ + { + "word": " And", + "start": 5127.5, + "end": 5127.58, + "probability": 0.98583984375 + }, + { + "word": " I,", + "start": 5127.58, + "end": 5127.64, + "probability": 1.0 + } + ] + }, + { + "id": 2363, + "text": "I'm glad that I was here to help and don't,", + "start": 5127.74, + "end": 5130.84, + "words": [ + { + "word": " I'm", + "start": 5127.74, + "end": 5128.1, + "probability": 0.9375 + }, + { + "word": " glad", + "start": 5128.1, + "end": 5128.36, + "probability": 1.0 + }, + { + "word": " that", + "start": 5128.36, + "end": 5128.6, + "probability": 1.0 + }, + { + "word": " I", + "start": 5128.6, + "end": 5128.68, + "probability": 1.0 + }, + { + "word": " was", + "start": 5128.68, + "end": 5128.82, + "probability": 1.0 + }, + { + "word": " here", + "start": 5128.82, + "end": 5128.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 5128.98, + "end": 5129.1, + "probability": 1.0 + }, + { + "word": " help", + "start": 5129.1, + "end": 5129.3, + "probability": 1.0 + }, + { + "word": " and", + "start": 5129.3, + "end": 5130.38, + "probability": 0.607421875 + }, + { + "word": " don't,", + "start": 5130.38, + "end": 5130.84, + "probability": 0.990234375 + } + ] + }, + { + "id": 2364, + "text": "don't worry.", + "start": 5130.84, + "end": 5131.16, + "words": [ + { + "word": " don't", + "start": 5130.84, + "end": 5131.06, + "probability": 0.99609375 + }, + { + "word": " worry.", + "start": 5131.06, + "end": 5131.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2365, + "text": "We'll,", + "start": 5131.26, + "end": 5131.4, + "words": [ + { + "word": " We'll,", + "start": 5131.26, + "end": 5131.4, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2366, + "text": "we'll still exist.", + "start": 5131.52, + "end": 5132.26, + "words": [ + { + "word": " we'll", + "start": 5131.52, + "end": 5131.78, + "probability": 1.0 + }, + { + "word": " still", + "start": 5131.78, + "end": 5131.96, + "probability": 0.6328125 + }, + { + "word": " exist.", + "start": 5131.96, + "end": 5132.26, + "probability": 1.0 + } + ] + }, + { + "id": 2367, + "text": "Just,", + "start": 5132.5, + "end": 5132.82, + "words": [ + { + "word": " Just,", + "start": 5132.5, + "end": 5132.82, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2368, + "text": "we're going to figure things out.", + "start": 5132.82, + "end": 5135.0, + "words": [ + { + "word": " we're", + "start": 5132.82, + "end": 5133.42, + "probability": 0.8154296875 + }, + { + "word": " going", + "start": 5133.42, + "end": 5133.8, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 5133.8, + "end": 5134.26, + "probability": 1.0 + }, + { + "word": " figure", + "start": 5134.26, + "end": 5134.42, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 5134.42, + "end": 5134.64, + "probability": 1.0 + }, + { + "word": " out.", + "start": 5134.64, + "end": 5135.0, + "probability": 1.0 + } + ] + }, + { + "id": 2369, + "text": "Different format.", + "start": 5135.06, + "end": 5135.76, + "words": [ + { + "word": " Different", + "start": 5135.06, + "end": 5135.28, + "probability": 0.787109375 + }, + { + "word": " format.", + "start": 5135.28, + "end": 5135.76, + "probability": 1.0 + } + ] + }, + { + "id": 2370, + "text": "Yeah.", + "start": 5135.9, + "end": 5136.02, + "words": [ + { + "word": " Yeah.", + "start": 5135.9, + "end": 5136.02, + "probability": 0.91015625 + } + ] + }, + { + "id": 2371, + "text": "Guru show.com for,", + "start": 5136.06, + "end": 5137.18, + "words": [ + { + "word": " Guru", + "start": 5136.06, + "end": 5136.26, + "probability": 0.8671875 + }, + { + "word": " show", + "start": 5136.26, + "end": 5136.48, + "probability": 0.9453125 + }, + { + "word": ".com", + "start": 5136.48, + "end": 5136.9, + "probability": 0.9951171875 + }, + { + "word": " for,", + "start": 5136.9, + "end": 5137.18, + "probability": 0.998046875 + } + ] + }, + { + "id": 2372, + "text": "to stay on top of stuff.", + "start": 5137.22, + "end": 5138.36, + "words": [ + { + "word": " to", + "start": 5137.22, + "end": 5137.52, + "probability": 0.9990234375 + }, + { + "word": " stay", + "start": 5137.52, + "end": 5137.76, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5137.76, + "end": 5137.88, + "probability": 1.0 + }, + { + "word": " top", + "start": 5137.88, + "end": 5138.08, + "probability": 1.0 + }, + { + "word": " of", + "start": 5138.08, + "end": 5138.22, + "probability": 1.0 + }, + { + "word": " stuff.", + "start": 5138.22, + "end": 5138.36, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2373, + "text": "We'll still be here to help.", + "start": 5138.42, + "end": 5139.22, + "words": [ + { + "word": " We'll", + "start": 5138.42, + "end": 5138.6, + "probability": 1.0 + }, + { + "word": " still", + "start": 5138.6, + "end": 5138.76, + "probability": 0.99951171875 + }, + { + "word": " be", + "start": 5138.76, + "end": 5138.88, + "probability": 1.0 + }, + { + "word": " here", + "start": 5138.88, + "end": 5139.0, + "probability": 1.0 + }, + { + "word": " to", + "start": 5139.0, + "end": 5139.08, + "probability": 0.99951171875 + }, + { + "word": " help.", + "start": 5139.08, + "end": 5139.22, + "probability": 1.0 + } + ] + }, + { + "id": 2374, + "text": "I know where to find you.", + "start": 5139.5, + "end": 5140.92, + "words": [ + { + "word": " I", + "start": 5139.5, + "end": 5139.82, + "probability": 0.7275390625 + }, + { + "word": " know", + "start": 5139.82, + "end": 5140.3, + "probability": 1.0 + }, + { + "word": " where", + "start": 5140.3, + "end": 5140.44, + "probability": 1.0 + }, + { + "word": " to", + "start": 5140.44, + "end": 5140.52, + "probability": 1.0 + }, + { + "word": " find", + "start": 5140.52, + "end": 5140.78, + "probability": 1.0 + }, + { + "word": " you.", + "start": 5140.78, + "end": 5140.92, + "probability": 1.0 + } + ] + }, + { + "id": 2375, + "text": "So thank you very much.", + "start": 5140.94, + "end": 5141.84, + "words": [ + { + "word": " So", + "start": 5140.94, + "end": 5141.02, + "probability": 0.9990234375 + }, + { + "word": " thank", + "start": 5141.02, + "end": 5141.22, + "probability": 1.0 + }, + { + "word": " you", + "start": 5141.22, + "end": 5141.38, + "probability": 1.0 + }, + { + "word": " very", + "start": 5141.38, + "end": 5141.5, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 5141.5, + "end": 5141.84, + "probability": 1.0 + } + ] + }, + { + "id": 2376, + "text": "Thanks,", + "start": 5142.4800000000005, + "end": 5142.8, + "words": [ + { + "word": " Thanks,", + "start": 5142.4800000000005, + "end": 5142.8, + "probability": 0.74560546875 + } + ] + }, + { + "id": 2377, + "text": "Tom.", + "start": 5143.14, + "end": 5143.3, + "words": [ + { + "word": " Tom.", + "start": 5143.14, + "end": 5143.3, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2378, + "text": "I appreciate it.", + "start": 5143.36, + "end": 5143.98, + "words": [ + { + "word": " I", + "start": 5143.36, + "end": 5143.46, + "probability": 0.9990234375 + }, + { + "word": " appreciate", + "start": 5143.46, + "end": 5143.76, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5143.76, + "end": 5143.98, + "probability": 1.0 + } + ] + }, + { + "id": 2379, + "text": "Let's go ahead and talk to Charles.", + "start": 5144.740000000001, + "end": 5145.96, + "words": [ + { + "word": " Let's", + "start": 5144.740000000001, + "end": 5145.06, + "probability": 0.9990234375 + }, + { + "word": " go", + "start": 5145.06, + "end": 5145.1, + "probability": 0.99853515625 + }, + { + "word": " ahead", + "start": 5145.1, + "end": 5145.24, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 5145.24, + "end": 5145.34, + "probability": 1.0 + }, + { + "word": " talk", + "start": 5145.34, + "end": 5145.58, + "probability": 1.0 + }, + { + "word": " to", + "start": 5145.58, + "end": 5145.7, + "probability": 1.0 + }, + { + "word": " Charles.", + "start": 5145.7, + "end": 5145.96, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2380, + "text": "Hello,", + "start": 5146.04, + "end": 5146.18, + "words": [ + { + "word": " Hello,", + "start": 5146.04, + "end": 5146.18, + "probability": 0.93701171875 + } + ] + }, + { + "id": 2381, + "text": "Charles.", + "start": 5146.22, + "end": 5146.5, + "words": [ + { + "word": " Charles.", + "start": 5146.22, + "end": 5146.5, + "probability": 0.99560546875 + } + ] + }, + { + "id": 2382, + "text": "I just want to tell you in Hebrew,", + "start": 5147.84, + "end": 5149.28, + "words": [ + { + "word": " I", + "start": 5147.84, + "end": 5148.16, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 5148.16, + "end": 5148.32, + "probability": 1.0 + }, + { + "word": " want", + "start": 5148.32, + "end": 5148.46, + "probability": 1.0 + }, + { + "word": " to", + "start": 5148.46, + "end": 5148.54, + "probability": 1.0 + }, + { + "word": " tell", + "start": 5148.54, + "end": 5148.72, + "probability": 1.0 + }, + { + "word": " you", + "start": 5148.72, + "end": 5148.88, + "probability": 1.0 + }, + { + "word": " in", + "start": 5148.88, + "end": 5148.98, + "probability": 0.87744140625 + }, + { + "word": " Hebrew,", + "start": 5148.98, + "end": 5149.28, + "probability": 0.9951171875 + } + ] + }, + { + "id": 2383, + "text": "there's an expression,", + "start": 5149.4, + "end": 5150.32, + "words": [ + { + "word": " there's", + "start": 5149.4, + "end": 5149.72, + "probability": 0.7626953125 + }, + { + "word": " an", + "start": 5149.72, + "end": 5149.84, + "probability": 0.99951171875 + }, + { + "word": " expression,", + "start": 5149.84, + "end": 5150.32, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2384, + "text": "may call Malamdi.", + "start": 5150.5, + "end": 5151.62, + "words": [ + { + "word": " may", + "start": 5150.5, + "end": 5150.68, + "probability": 0.357177734375 + }, + { + "word": " call", + "start": 5150.68, + "end": 5151.02, + "probability": 0.022003173828125 + }, + { + "word": " Malamdi.", + "start": 5151.02, + "end": 5151.62, + "probability": 0.85107421875 + } + ] + }, + { + "id": 2385, + "text": "He's quality by all my teachers.", + "start": 5151.68, + "end": 5153.86, + "words": [ + { + "word": " He's", + "start": 5151.68, + "end": 5151.92, + "probability": 0.994140625 + }, + { + "word": " quality", + "start": 5151.92, + "end": 5152.26, + "probability": 0.67724609375 + }, + { + "word": " by", + "start": 5152.26, + "end": 5153.04, + "probability": 0.88623046875 + }, + { + "word": " all", + "start": 5153.04, + "end": 5153.26, + "probability": 1.0 + }, + { + "word": " my", + "start": 5153.26, + "end": 5153.48, + "probability": 0.99755859375 + }, + { + "word": " teachers.", + "start": 5153.48, + "end": 5153.86, + "probability": 1.0 + } + ] + }, + { + "id": 2386, + "text": "Am I made more wise?", + "start": 5153.94, + "end": 5155.1, + "words": [ + { + "word": " Am", + "start": 5153.94, + "end": 5154.2, + "probability": 0.9931640625 + }, + { + "word": " I", + "start": 5154.2, + "end": 5154.3, + "probability": 1.0 + }, + { + "word": " made", + "start": 5154.3, + "end": 5154.56, + "probability": 1.0 + }, + { + "word": " more", + "start": 5154.56, + "end": 5154.74, + "probability": 0.998046875 + }, + { + "word": " wise?", + "start": 5154.74, + "end": 5155.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2387, + "text": "And you have been a good teacher.", + "start": 5155.3, + "end": 5156.94, + "words": [ + { + "word": " And", + "start": 5155.3, + "end": 5155.74, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5155.74, + "end": 5155.98, + "probability": 1.0 + }, + { + "word": " have", + "start": 5155.98, + "end": 5156.14, + "probability": 1.0 + }, + { + "word": " been", + "start": 5156.14, + "end": 5156.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 5156.34, + "end": 5156.44, + "probability": 1.0 + }, + { + "word": " good", + "start": 5156.44, + "end": 5156.58, + "probability": 1.0 + }, + { + "word": " teacher.", + "start": 5156.58, + "end": 5156.94, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2388, + "text": "Thanks,", + "start": 5157.700000000001, + "end": 5158.14, + "words": [ + { + "word": " Thanks,", + "start": 5157.700000000001, + "end": 5158.14, + "probability": 0.80126953125 + } + ] + }, + { + "id": 2389, + "text": "Charles.", + "start": 5158.38, + "end": 5158.62, + "words": [ + { + "word": " Charles.", + "start": 5158.38, + "end": 5158.62, + "probability": 1.0 + } + ] + }, + { + "id": 2390, + "text": "I really appreciate that.", + "start": 5158.86, + "end": 5160.14, + "words": [ + { + "word": " I", + "start": 5158.86, + "end": 5159.18, + "probability": 0.99951171875 + }, + { + "word": " really", + "start": 5159.18, + "end": 5159.42, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5159.42, + "end": 5159.84, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5159.84, + "end": 5160.14, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2391, + "text": "And we'll miss you.", + "start": 5160.700000000001, + "end": 5161.8, + "words": [ + { + "word": " And", + "start": 5160.700000000001, + "end": 5161.14, + "probability": 0.9755859375 + }, + { + "word": " we'll", + "start": 5161.14, + "end": 5161.4, + "probability": 0.7275390625 + }, + { + "word": " miss", + "start": 5161.4, + "end": 5161.52, + "probability": 1.0 + }, + { + "word": " you.", + "start": 5161.52, + "end": 5161.8, + "probability": 1.0 + } + ] + }, + { + "id": 2392, + "text": "I'm sorry.", + "start": 5161.88, + "end": 5162.42, + "words": [ + { + "word": " I'm", + "start": 5161.88, + "end": 5162.3, + "probability": 0.99853515625 + }, + { + "word": " sorry.", + "start": 5162.3, + "end": 5162.42, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2393, + "text": "Go ahead.", + "start": 5162.48, + "end": 5162.62, + "words": [ + { + "word": " Go", + "start": 5162.48, + "end": 5162.56, + "probability": 0.355712890625 + }, + { + "word": " ahead.", + "start": 5162.56, + "end": 5162.62, + "probability": 1.0 + } + ] + }, + { + "id": 2394, + "text": "I just wanted to say that I,", + "start": 5162.68, + "end": 5164.0, + "words": [ + { + "word": " I", + "start": 5162.68, + "end": 5162.86, + "probability": 0.99560546875 + }, + { + "word": " just", + "start": 5162.86, + "end": 5163.14, + "probability": 0.71484375 + }, + { + "word": " wanted", + "start": 5163.14, + "end": 5163.44, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 5163.44, + "end": 5163.56, + "probability": 1.0 + }, + { + "word": " say", + "start": 5163.56, + "end": 5163.72, + "probability": 1.0 + }, + { + "word": " that", + "start": 5163.72, + "end": 5163.84, + "probability": 1.0 + }, + { + "word": " I,", + "start": 5163.84, + "end": 5164.0, + "probability": 0.97119140625 + } + ] + }, + { + "id": 2395, + "text": "I appreciate the,", + "start": 5164.04, + "end": 5165.02, + "words": [ + { + "word": " I", + "start": 5164.04, + "end": 5164.3, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5164.3, + "end": 5164.76, + "probability": 0.99853515625 + }, + { + "word": " the,", + "start": 5164.76, + "end": 5165.02, + "probability": 0.36962890625 + } + ] + }, + { + "id": 2396, + "text": "all of the discussions that we've had,", + "start": 5165.12, + "end": 5166.66, + "words": [ + { + "word": " all", + "start": 5165.12, + "end": 5165.22, + "probability": 0.99755859375 + }, + { + "word": " of", + "start": 5165.22, + "end": 5165.48, + "probability": 0.9970703125 + }, + { + "word": " the", + "start": 5165.48, + "end": 5165.64, + "probability": 1.0 + }, + { + "word": " discussions", + "start": 5165.64, + "end": 5166.04, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5166.04, + "end": 5166.28, + "probability": 1.0 + }, + { + "word": " we've", + "start": 5166.28, + "end": 5166.46, + "probability": 1.0 + }, + { + "word": " had,", + "start": 5166.46, + "end": 5166.66, + "probability": 1.0 + } + ] + }, + { + "id": 2397, + "text": "whether,", + "start": 5166.74, + "end": 5167.0, + "words": [ + { + "word": " whether,", + "start": 5166.74, + "end": 5167.0, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2398, + "text": "you know,", + "start": 5167.14, + "end": 5167.48, + "words": [ + { + "word": " you", + "start": 5167.14, + "end": 5167.34, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 5167.34, + "end": 5167.48, + "probability": 1.0 + } + ] + }, + { + "id": 2399, + "text": "cause I found them all to be entertaining and I learned something from you", + "start": 5167.48, + "end": 5169.92, + "words": [ + { + "word": " cause", + "start": 5167.48, + "end": 5167.62, + "probability": 0.880859375 + }, + { + "word": " I", + "start": 5167.62, + "end": 5167.74, + "probability": 1.0 + }, + { + "word": " found", + "start": 5167.74, + "end": 5167.96, + "probability": 1.0 + }, + { + "word": " them", + "start": 5167.96, + "end": 5168.1, + "probability": 0.96630859375 + }, + { + "word": " all", + "start": 5168.1, + "end": 5168.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 5168.24, + "end": 5168.38, + "probability": 1.0 + }, + { + "word": " be", + "start": 5168.38, + "end": 5168.42, + "probability": 1.0 + }, + { + "word": " entertaining", + "start": 5168.42, + "end": 5168.78, + "probability": 1.0 + }, + { + "word": " and", + "start": 5168.78, + "end": 5168.96, + "probability": 0.9794921875 + }, + { + "word": " I", + "start": 5168.96, + "end": 5169.02, + "probability": 1.0 + }, + { + "word": " learned", + "start": 5169.02, + "end": 5169.22, + "probability": 0.99951171875 + }, + { + "word": " something", + "start": 5169.22, + "end": 5169.46, + "probability": 1.0 + }, + { + "word": " from", + "start": 5169.46, + "end": 5169.76, + "probability": 1.0 + }, + { + "word": " you", + "start": 5169.76, + "end": 5169.92, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2400, + "text": "every time that we talk.", + "start": 5169.92, + "end": 5170.88, + "words": [ + { + "word": " every", + "start": 5169.92, + "end": 5170.16, + "probability": 0.9970703125 + }, + { + "word": " time", + "start": 5170.16, + "end": 5170.42, + "probability": 1.0 + }, + { + "word": " that", + "start": 5170.42, + "end": 5170.56, + "probability": 1.0 + }, + { + "word": " we", + "start": 5170.56, + "end": 5170.66, + "probability": 1.0 + }, + { + "word": " talk.", + "start": 5170.66, + "end": 5170.88, + "probability": 0.95556640625 + } + ] + }, + { + "id": 2401, + "text": "So thanks.", + "start": 5170.96, + "end": 5172.02, + "words": [ + { + "word": " So", + "start": 5170.96, + "end": 5171.22, + "probability": 0.986328125 + }, + { + "word": " thanks.", + "start": 5171.22, + "end": 5172.02, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2402, + "text": "I appreciate that.", + "start": 5172.18, + "end": 5173.08, + "words": [ + { + "word": " I", + "start": 5172.18, + "end": 5172.36, + "probability": 0.95166015625 + }, + { + "word": " appreciate", + "start": 5172.36, + "end": 5172.74, + "probability": 1.0 + }, + { + "word": " that.", + "start": 5172.74, + "end": 5173.08, + "probability": 1.0 + } + ] + }, + { + "id": 2403, + "text": "And if there's anything that,", + "start": 5173.3, + "end": 5175.04, + "words": [ + { + "word": " And", + "start": 5173.3, + "end": 5173.74, + "probability": 0.9951171875 + }, + { + "word": " if", + "start": 5173.74, + "end": 5174.06, + "probability": 1.0 + }, + { + "word": " there's", + "start": 5174.06, + "end": 5174.34, + "probability": 1.0 + }, + { + "word": " anything", + "start": 5174.34, + "end": 5174.5, + "probability": 1.0 + }, + { + "word": " that,", + "start": 5174.5, + "end": 5175.04, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2404, + "text": "that I or the family of KU,", + "start": 5175.08, + "end": 5176.88, + "words": [ + { + "word": " that", + "start": 5175.08, + "end": 5175.4, + "probability": 0.94677734375 + }, + { + "word": " I", + "start": 5175.4, + "end": 5175.68, + "probability": 0.7978515625 + }, + { + "word": " or", + "start": 5175.68, + "end": 5175.88, + "probability": 0.755859375 + }, + { + "word": " the", + "start": 5175.88, + "end": 5176.0, + "probability": 1.0 + }, + { + "word": " family", + "start": 5176.0, + "end": 5176.34, + "probability": 1.0 + }, + { + "word": " of", + "start": 5176.34, + "end": 5176.52, + "probability": 0.99951171875 + }, + { + "word": " KU,", + "start": 5176.52, + "end": 5176.88, + "probability": 0.88330078125 + } + ] + }, + { + "id": 2405, + "text": "KVOI can do to,", + "start": 5176.88, + "end": 5179.0, + "words": [ + { + "word": " KVOI", + "start": 5176.88, + "end": 5177.74, + "probability": 0.66162109375 + }, + { + "word": " can", + "start": 5177.74, + "end": 5177.98, + "probability": 0.9130859375 + }, + { + "word": " do", + "start": 5177.98, + "end": 5178.28, + "probability": 0.99951171875 + }, + { + "word": " to,", + "start": 5178.28, + "end": 5179.0, + "probability": 0.9658203125 + } + ] + }, + { + "id": 2406, + "text": "to,", + "start": 5179.0, + "end": 5179.12, + "words": [ + { + "word": " to,", + "start": 5179.0, + "end": 5179.12, + "probability": 0.84228515625 + } + ] + }, + { + "id": 2407, + "text": "to bring you back on in terms of support,", + "start": 5179.12, + "end": 5181.7, + "words": [ + { + "word": " to", + "start": 5179.12, + "end": 5179.62, + "probability": 0.432373046875 + }, + { + "word": " bring", + "start": 5179.62, + "end": 5179.96, + "probability": 0.99365234375 + }, + { + "word": " you", + "start": 5179.96, + "end": 5180.16, + "probability": 1.0 + }, + { + "word": " back", + "start": 5180.16, + "end": 5180.38, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5180.38, + "end": 5180.68, + "probability": 0.99951171875 + }, + { + "word": " in", + "start": 5180.68, + "end": 5180.92, + "probability": 0.96923828125 + }, + { + "word": " terms", + "start": 5180.92, + "end": 5181.16, + "probability": 1.0 + }, + { + "word": " of", + "start": 5181.16, + "end": 5181.32, + "probability": 1.0 + }, + { + "word": " support,", + "start": 5181.32, + "end": 5181.7, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2408, + "text": "or if you're going to go podcast,", + "start": 5182.080000000001, + "end": 5183.68, + "words": [ + { + "word": " or", + "start": 5182.080000000001, + "end": 5182.4400000000005, + "probability": 0.99951171875 + }, + { + "word": " if", + "start": 5182.4400000000005, + "end": 5182.8, + "probability": 0.998046875 + }, + { + "word": " you're", + "start": 5182.8, + "end": 5182.98, + "probability": 1.0 + }, + { + "word": " going", + "start": 5182.98, + "end": 5183.02, + "probability": 0.990234375 + }, + { + "word": " to", + "start": 5183.02, + "end": 5183.14, + "probability": 1.0 + }, + { + "word": " go", + "start": 5183.14, + "end": 5183.26, + "probability": 0.99951171875 + }, + { + "word": " podcast,", + "start": 5183.26, + "end": 5183.68, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2409, + "text": "if we can help you get your files and stuff,", + "start": 5183.78, + "end": 5186.02, + "words": [ + { + "word": " if", + "start": 5183.78, + "end": 5184.06, + "probability": 0.9990234375 + }, + { + "word": " we", + "start": 5184.06, + "end": 5184.16, + "probability": 1.0 + }, + { + "word": " can", + "start": 5184.16, + "end": 5184.28, + "probability": 1.0 + }, + { + "word": " help", + "start": 5184.28, + "end": 5184.52, + "probability": 1.0 + }, + { + "word": " you", + "start": 5184.52, + "end": 5184.7, + "probability": 1.0 + }, + { + "word": " get", + "start": 5184.7, + "end": 5184.96, + "probability": 0.76513671875 + }, + { + "word": " your", + "start": 5184.96, + "end": 5185.34, + "probability": 1.0 + }, + { + "word": " files", + "start": 5185.34, + "end": 5185.7, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 5185.7, + "end": 5185.86, + "probability": 0.9990234375 + }, + { + "word": " stuff,", + "start": 5185.86, + "end": 5186.02, + "probability": 1.0 + } + ] + }, + { + "id": 2410, + "text": "we're glad to do it.", + "start": 5186.16, + "end": 5187.22, + "words": [ + { + "word": " we're", + "start": 5186.16, + "end": 5186.56, + "probability": 1.0 + }, + { + "word": " glad", + "start": 5186.56, + "end": 5186.76, + "probability": 1.0 + }, + { + "word": " to", + "start": 5186.76, + "end": 5186.92, + "probability": 1.0 + }, + { + "word": " do", + "start": 5186.92, + "end": 5187.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5187.06, + "end": 5187.22, + "probability": 1.0 + } + ] + }, + { + "id": 2411, + "text": "Well,", + "start": 5187.44, + "end": 5187.78, + "words": [ + { + "word": " Well,", + "start": 5187.44, + "end": 5187.78, + "probability": 0.9794921875 + } + ] + }, + { + "id": 2412, + "text": "I'm not done with KVOI just yet.", + "start": 5188.22, + "end": 5189.88, + "words": [ + { + "word": " I'm", + "start": 5188.22, + "end": 5188.58, + "probability": 1.0 + }, + { + "word": " not", + "start": 5188.58, + "end": 5188.7, + "probability": 1.0 + }, + { + "word": " done", + "start": 5188.7, + "end": 5188.88, + "probability": 1.0 + }, + { + "word": " with", + "start": 5188.88, + "end": 5189.02, + "probability": 1.0 + }, + { + "word": " KVOI", + "start": 5189.02, + "end": 5189.5, + "probability": 0.85498046875 + }, + { + "word": " just", + "start": 5189.5, + "end": 5189.66, + "probability": 0.99853515625 + }, + { + "word": " yet.", + "start": 5189.66, + "end": 5189.88, + "probability": 1.0 + } + ] + }, + { + "id": 2413, + "text": "So we've got plans still,", + "start": 5189.96, + "end": 5191.58, + "words": [ + { + "word": " So", + "start": 5189.96, + "end": 5190.22, + "probability": 0.998046875 + }, + { + "word": " we've", + "start": 5190.22, + "end": 5190.8, + "probability": 0.986328125 + }, + { + "word": " got", + "start": 5190.8, + "end": 5190.92, + "probability": 1.0 + }, + { + "word": " plans", + "start": 5190.92, + "end": 5191.16, + "probability": 0.99755859375 + }, + { + "word": " still,", + "start": 5191.16, + "end": 5191.58, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2414, + "text": "but I'm taking some time off and we'll figure it out and get things going.", + "start": 5192.04, + "end": 5194.74, + "words": [ + { + "word": " but", + "start": 5192.04, + "end": 5192.4, + "probability": 0.98095703125 + }, + { + "word": " I'm", + "start": 5192.4, + "end": 5192.68, + "probability": 0.8291015625 + }, + { + "word": " taking", + "start": 5192.68, + "end": 5192.84, + "probability": 1.0 + }, + { + "word": " some", + "start": 5192.84, + "end": 5193.0, + "probability": 1.0 + }, + { + "word": " time", + "start": 5193.0, + "end": 5193.22, + "probability": 1.0 + }, + { + "word": " off", + "start": 5193.22, + "end": 5193.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 5193.4, + "end": 5193.54, + "probability": 0.99072265625 + }, + { + "word": " we'll", + "start": 5193.54, + "end": 5193.66, + "probability": 1.0 + }, + { + "word": " figure", + "start": 5193.66, + "end": 5193.86, + "probability": 1.0 + }, + { + "word": " it", + "start": 5193.86, + "end": 5194.0, + "probability": 1.0 + }, + { + "word": " out", + "start": 5194.0, + "end": 5194.16, + "probability": 1.0 + }, + { + "word": " and", + "start": 5194.16, + "end": 5194.24, + "probability": 0.99951171875 + }, + { + "word": " get", + "start": 5194.24, + "end": 5194.34, + "probability": 0.99951171875 + }, + { + "word": " things", + "start": 5194.34, + "end": 5194.52, + "probability": 0.99951171875 + }, + { + "word": " going.", + "start": 5194.52, + "end": 5194.74, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2415, + "text": "Good.", + "start": 5195.46, + "end": 5195.82, + "words": [ + { + "word": " Good.", + "start": 5195.46, + "end": 5195.82, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2416, + "text": "We'd love to have you back and you're welcome on Liberty Watch.", + "start": 5195.92, + "end": 5198.02, + "words": [ + { + "word": " We'd", + "start": 5195.92, + "end": 5196.12, + "probability": 0.99853515625 + }, + { + "word": " love", + "start": 5196.12, + "end": 5196.24, + "probability": 1.0 + }, + { + "word": " to", + "start": 5196.24, + "end": 5196.36, + "probability": 1.0 + }, + { + "word": " have", + "start": 5196.36, + "end": 5196.46, + "probability": 1.0 + }, + { + "word": " you", + "start": 5196.46, + "end": 5196.58, + "probability": 1.0 + }, + { + "word": " back", + "start": 5196.58, + "end": 5196.8, + "probability": 1.0 + }, + { + "word": " and", + "start": 5196.8, + "end": 5196.94, + "probability": 0.8564453125 + }, + { + "word": " you're", + "start": 5196.94, + "end": 5197.06, + "probability": 1.0 + }, + { + "word": " welcome", + "start": 5197.06, + "end": 5197.3, + "probability": 0.9990234375 + }, + { + "word": " on", + "start": 5197.3, + "end": 5197.48, + "probability": 0.998046875 + }, + { + "word": " Liberty", + "start": 5197.48, + "end": 5197.72, + "probability": 0.9873046875 + }, + { + "word": " Watch.", + "start": 5197.72, + "end": 5198.02, + "probability": 0.72509765625 + } + ] + }, + { + "id": 2417, + "text": "Excellent.", + "start": 5198.740000000001, + "end": 5199.1, + "words": [ + { + "word": " Excellent.", + "start": 5198.740000000001, + "end": 5199.1, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2418, + "text": "Thanks,", + "start": 5199.18, + "end": 5199.52, + "words": [ + { + "word": " Thanks,", + "start": 5199.18, + "end": 5199.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2419, + "text": "Charles.", + "start": 5199.6, + "end": 5199.8, + "words": [ + { + "word": " Charles.", + "start": 5199.6, + "end": 5199.8, + "probability": 1.0 + } + ] + }, + { + "id": 2420, + "text": "I appreciate it.", + "start": 5199.86, + "end": 5200.7, + "words": [ + { + "word": " I", + "start": 5199.86, + "end": 5200.08, + "probability": 0.99951171875 + }, + { + "word": " appreciate", + "start": 5200.08, + "end": 5200.4, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5200.4, + "end": 5200.7, + "probability": 1.0 + } + ] + }, + { + "id": 2421, + "text": "Thank you very much.", + "start": 5200.7, + "end": 5201.34, + "words": [ + { + "word": " Thank", + "start": 5200.7, + "end": 5200.86, + "probability": 0.9990234375 + }, + { + "word": " you", + "start": 5200.86, + "end": 5200.98, + "probability": 1.0 + }, + { + "word": " very", + "start": 5200.98, + "end": 5201.08, + "probability": 0.99951171875 + }, + { + "word": " much.", + "start": 5201.08, + "end": 5201.34, + "probability": 1.0 + } + ] + }, + { + "id": 2422, + "text": "So I want to take a moment to take,", + "start": 5201.820000000001, + "end": 5203.22, + "words": [ + { + "word": " So", + "start": 5201.820000000001, + "end": 5202.18, + "probability": 0.82958984375 + }, + { + "word": " I", + "start": 5202.18, + "end": 5202.3, + "probability": 1.0 + }, + { + "word": " want", + "start": 5202.3, + "end": 5202.38, + "probability": 0.98828125 + }, + { + "word": " to", + "start": 5202.38, + "end": 5202.48, + "probability": 1.0 + }, + { + "word": " take", + "start": 5202.48, + "end": 5202.64, + "probability": 1.0 + }, + { + "word": " a", + "start": 5202.64, + "end": 5202.72, + "probability": 1.0 + }, + { + "word": " moment", + "start": 5202.72, + "end": 5202.9, + "probability": 1.0 + }, + { + "word": " to", + "start": 5202.9, + "end": 5203.06, + "probability": 1.0 + }, + { + "word": " take,", + "start": 5203.06, + "end": 5203.22, + "probability": 0.88671875 + } + ] + }, + { + "id": 2423, + "text": "say thank you to a lot of people.", + "start": 5203.28, + "end": 5204.84, + "words": [ + { + "word": " say", + "start": 5203.28, + "end": 5203.46, + "probability": 0.99853515625 + }, + { + "word": " thank", + "start": 5203.46, + "end": 5203.82, + "probability": 0.8916015625 + }, + { + "word": " you", + "start": 5203.82, + "end": 5204.08, + "probability": 1.0 + }, + { + "word": " to", + "start": 5204.08, + "end": 5204.26, + "probability": 1.0 + }, + { + "word": " a", + "start": 5204.26, + "end": 5204.38, + "probability": 1.0 + }, + { + "word": " lot", + "start": 5204.38, + "end": 5204.54, + "probability": 1.0 + }, + { + "word": " of", + "start": 5204.54, + "end": 5204.6, + "probability": 1.0 + }, + { + "word": " people.", + "start": 5204.6, + "end": 5204.84, + "probability": 1.0 + } + ] + }, + { + "id": 2424, + "text": "Most,", + "start": 5205.0, + "end": 5205.36, + "words": [ + { + "word": " Most,", + "start": 5205.0, + "end": 5205.36, + "probability": 0.9970703125 + } + ] + }, + { + "id": 2425, + "text": "you know,", + "start": 5205.48, + "end": 5205.84, + "words": [ + { + "word": " you", + "start": 5205.48, + "end": 5205.68, + "probability": 0.99853515625 + }, + { + "word": " know,", + "start": 5205.68, + "end": 5205.84, + "probability": 1.0 + } + ] + }, + { + "id": 2426, + "text": "most importantly,", + "start": 5205.84, + "end": 5206.46, + "words": [ + { + "word": " most", + "start": 5205.84, + "end": 5206.12, + "probability": 0.998046875 + }, + { + "word": " importantly,", + "start": 5206.12, + "end": 5206.46, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2427, + "text": "the KVOI family that has been,", + "start": 5206.5, + "end": 5208.18, + "words": [ + { + "word": " the", + "start": 5206.5, + "end": 5206.66, + "probability": 0.99951171875 + }, + { + "word": " KVOI", + "start": 5206.66, + "end": 5207.08, + "probability": 0.99755859375 + }, + { + "word": " family", + "start": 5207.08, + "end": 5207.3, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5207.3, + "end": 5207.64, + "probability": 0.9970703125 + }, + { + "word": " has", + "start": 5207.64, + "end": 5207.82, + "probability": 1.0 + }, + { + "word": " been,", + "start": 5207.82, + "end": 5208.18, + "probability": 1.0 + } + ] + }, + { + "id": 2428, + "text": "you know,", + "start": 5208.18, + "end": 5208.5, + "words": [ + { + "word": " you", + "start": 5208.18, + "end": 5208.38, + "probability": 1.0 + }, + { + "word": " know,", + "start": 5208.38, + "end": 5208.5, + "probability": 1.0 + } + ] + }, + { + "id": 2429, + "text": "Doug and everyone here has been wonderful to me.", + "start": 5208.5, + "end": 5210.54, + "words": [ + { + "word": " Doug", + "start": 5208.5, + "end": 5208.6, + "probability": 0.927734375 + }, + { + "word": " and", + "start": 5208.6, + "end": 5208.86, + "probability": 0.99658203125 + }, + { + "word": " everyone", + "start": 5208.86, + "end": 5209.16, + "probability": 1.0 + }, + { + "word": " here", + "start": 5209.16, + "end": 5209.44, + "probability": 1.0 + }, + { + "word": " has", + "start": 5209.44, + "end": 5209.6, + "probability": 0.98876953125 + }, + { + "word": " been", + "start": 5209.6, + "end": 5209.74, + "probability": 1.0 + }, + { + "word": " wonderful", + "start": 5209.74, + "end": 5210.12, + "probability": 1.0 + }, + { + "word": " to", + "start": 5210.12, + "end": 5210.4, + "probability": 0.9990234375 + }, + { + "word": " me.", + "start": 5210.4, + "end": 5210.54, + "probability": 1.0 + } + ] + }, + { + "id": 2430, + "text": "They've,", + "start": 5210.64, + "end": 5210.96, + "words": [ + { + "word": " They've,", + "start": 5210.64, + "end": 5210.96, + "probability": 0.998046875 + } + ] + }, + { + "id": 2431, + "text": "they've all been great.", + "start": 5210.96, + "end": 5211.98, + "words": [ + { + "word": " they've", + "start": 5210.96, + "end": 5211.26, + "probability": 1.0 + }, + { + "word": " all", + "start": 5211.26, + "end": 5211.38, + "probability": 0.99951171875 + }, + { + "word": " been", + "start": 5211.38, + "end": 5211.64, + "probability": 1.0 + }, + { + "word": " great.", + "start": 5211.64, + "end": 5211.98, + "probability": 1.0 + } + ] + }, + { + "id": 2432, + "text": "I want to take a moment to say thank you to Tara and Rob,", + "start": 5212.26, + "end": 5216.44, + "words": [ + { + "word": " I", + "start": 5212.26, + "end": 5212.74, + "probability": 0.99755859375 + }, + { + "word": " want", + "start": 5212.74, + "end": 5212.92, + "probability": 0.9990234375 + }, + { + "word": " to", + "start": 5212.92, + "end": 5213.04, + "probability": 1.0 + }, + { + "word": " take", + "start": 5213.04, + "end": 5213.34, + "probability": 1.0 + }, + { + "word": " a", + "start": 5213.34, + "end": 5213.56, + "probability": 0.99951171875 + }, + { + "word": " moment", + "start": 5213.56, + "end": 5214.1, + "probability": 0.98583984375 + }, + { + "word": " to", + "start": 5214.1, + "end": 5214.36, + "probability": 1.0 + }, + { + "word": " say", + "start": 5214.36, + "end": 5214.6, + "probability": 1.0 + }, + { + "word": " thank", + "start": 5214.6, + "end": 5215.06, + "probability": 0.95361328125 + }, + { + "word": " you", + "start": 5215.06, + "end": 5215.22, + "probability": 1.0 + }, + { + "word": " to", + "start": 5215.22, + "end": 5215.46, + "probability": 0.99951171875 + }, + { + "word": " Tara", + "start": 5215.46, + "end": 5215.84, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 5215.84, + "end": 5216.16, + "probability": 0.99853515625 + }, + { + "word": " Rob,", + "start": 5216.16, + "end": 5216.44, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2433, + "text": "who,", + "start": 5216.64, + "end": 5216.88, + "words": [ + { + "word": " who,", + "start": 5216.64, + "end": 5216.88, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2434, + "text": "who have donated their time to me every other week to come in here and,", + "start": 5216.9, + "end": 5221.26, + "words": [ + { + "word": " who", + "start": 5216.9, + "end": 5217.56, + "probability": 1.0 + }, + { + "word": " have", + "start": 5217.56, + "end": 5217.82, + "probability": 0.99853515625 + }, + { + "word": " donated", + "start": 5217.82, + "end": 5218.28, + "probability": 0.9990234375 + }, + { + "word": " their", + "start": 5218.28, + "end": 5218.58, + "probability": 1.0 + }, + { + "word": " time", + "start": 5218.58, + "end": 5218.84, + "probability": 1.0 + }, + { + "word": " to", + "start": 5218.84, + "end": 5219.04, + "probability": 1.0 + }, + { + "word": " me", + "start": 5219.04, + "end": 5219.2, + "probability": 1.0 + }, + { + "word": " every", + "start": 5219.2, + "end": 5219.54, + "probability": 0.99853515625 + }, + { + "word": " other", + "start": 5219.54, + "end": 5219.66, + "probability": 1.0 + }, + { + "word": " week", + "start": 5219.66, + "end": 5219.92, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5219.92, + "end": 5220.1, + "probability": 0.998046875 + }, + { + "word": " come", + "start": 5220.1, + "end": 5220.42, + "probability": 0.9990234375 + }, + { + "word": " in", + "start": 5220.42, + "end": 5220.64, + "probability": 1.0 + }, + { + "word": " here", + "start": 5220.64, + "end": 5220.84, + "probability": 0.99951171875 + }, + { + "word": " and,", + "start": 5220.84, + "end": 5221.26, + "probability": 0.99609375 + } + ] + }, + { + "id": 2435, + "text": "and help me with the show and to try to make it a little more entertaining,", + "start": 5221.28, + "end": 5225.06, + "words": [ + { + "word": " and", + "start": 5221.28, + "end": 5221.94, + "probability": 0.99951171875 + }, + { + "word": " help", + "start": 5221.94, + "end": 5222.2, + "probability": 0.9912109375 + }, + { + "word": " me", + "start": 5222.2, + "end": 5222.44, + "probability": 1.0 + }, + { + "word": " with", + "start": 5222.44, + "end": 5222.84, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5222.84, + "end": 5222.98, + "probability": 0.99951171875 + }, + { + "word": " show", + "start": 5222.98, + "end": 5223.26, + "probability": 1.0 + }, + { + "word": " and", + "start": 5223.26, + "end": 5223.52, + "probability": 0.98974609375 + }, + { + "word": " to", + "start": 5223.52, + "end": 5223.64, + "probability": 0.99951171875 + }, + { + "word": " try", + "start": 5223.64, + "end": 5223.86, + "probability": 1.0 + }, + { + "word": " to", + "start": 5223.86, + "end": 5223.98, + "probability": 0.99951171875 + }, + { + "word": " make", + "start": 5223.98, + "end": 5224.12, + "probability": 1.0 + }, + { + "word": " it", + "start": 5224.12, + "end": 5224.28, + "probability": 1.0 + }, + { + "word": " a", + "start": 5224.28, + "end": 5224.32, + "probability": 1.0 + }, + { + "word": " little", + "start": 5224.32, + "end": 5224.52, + "probability": 1.0 + }, + { + "word": " more", + "start": 5224.52, + "end": 5224.66, + "probability": 0.99951171875 + }, + { + "word": " entertaining,", + "start": 5224.66, + "end": 5225.06, + "probability": 0.998046875 + } + ] + }, + { + "id": 2436, + "text": "a little more wonderful,", + "start": 5225.18, + "end": 5226.48, + "words": [ + { + "word": " a", + "start": 5225.18, + "end": 5225.34, + "probability": 1.0 + }, + { + "word": " little", + "start": 5225.34, + "end": 5225.46, + "probability": 1.0 + }, + { + "word": " more", + "start": 5225.46, + "end": 5225.66, + "probability": 1.0 + }, + { + "word": " wonderful,", + "start": 5225.66, + "end": 5226.48, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2437, + "text": "a very special thanks to Kent on the other side of the glass here,", + "start": 5226.62, + "end": 5229.88, + "words": [ + { + "word": " a", + "start": 5226.62, + "end": 5227.32, + "probability": 0.99951171875 + }, + { + "word": " very", + "start": 5227.32, + "end": 5227.52, + "probability": 1.0 + }, + { + "word": " special", + "start": 5227.52, + "end": 5227.82, + "probability": 1.0 + }, + { + "word": " thanks", + "start": 5227.82, + "end": 5228.1, + "probability": 0.97021484375 + }, + { + "word": " to", + "start": 5228.1, + "end": 5228.28, + "probability": 1.0 + }, + { + "word": " Kent", + "start": 5228.28, + "end": 5228.64, + "probability": 1.0 + }, + { + "word": " on", + "start": 5228.64, + "end": 5228.88, + "probability": 0.9951171875 + }, + { + "word": " the", + "start": 5228.88, + "end": 5229.04, + "probability": 1.0 + }, + { + "word": " other", + "start": 5229.04, + "end": 5229.18, + "probability": 1.0 + }, + { + "word": " side", + "start": 5229.18, + "end": 5229.36, + "probability": 1.0 + }, + { + "word": " of", + "start": 5229.36, + "end": 5229.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 5229.44, + "end": 5229.44, + "probability": 1.0 + }, + { + "word": " glass", + "start": 5229.44, + "end": 5229.7, + "probability": 0.998046875 + }, + { + "word": " here,", + "start": 5229.7, + "end": 5229.88, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2438, + "text": "who has really made it so that I enjoy being an,", + "start": 5229.94, + "end": 5234.24, + "words": [ + { + "word": " who", + "start": 5229.94, + "end": 5230.08, + "probability": 1.0 + }, + { + "word": " has", + "start": 5230.08, + "end": 5230.5, + "probability": 1.0 + }, + { + "word": " really", + "start": 5230.5, + "end": 5231.98, + "probability": 0.4453125 + }, + { + "word": " made", + "start": 5231.98, + "end": 5232.46, + "probability": 0.99951171875 + }, + { + "word": " it", + "start": 5232.46, + "end": 5232.58, + "probability": 1.0 + }, + { + "word": " so", + "start": 5232.58, + "end": 5232.7, + "probability": 0.99951171875 + }, + { + "word": " that", + "start": 5232.7, + "end": 5232.86, + "probability": 1.0 + }, + { + "word": " I", + "start": 5232.86, + "end": 5233.02, + "probability": 1.0 + }, + { + "word": " enjoy", + "start": 5233.02, + "end": 5233.44, + "probability": 0.9990234375 + }, + { + "word": " being", + "start": 5233.44, + "end": 5234.08, + "probability": 0.99853515625 + }, + { + "word": " an,", + "start": 5234.08, + "end": 5234.24, + "probability": 0.76416015625 + } + ] + }, + { + "id": 2439, + "text": "I think people really don't appreciate,", + "start": 5234.26, + "end": 5237.98, + "words": [ + { + "word": " I", + "start": 5234.26, + "end": 5234.54, + "probability": 0.9931640625 + }, + { + "word": " think", + "start": 5234.54, + "end": 5234.94, + "probability": 0.9736328125 + }, + { + "word": " people", + "start": 5234.94, + "end": 5235.26, + "probability": 1.0 + }, + { + "word": " really", + "start": 5235.26, + "end": 5236.1, + "probability": 0.9892578125 + }, + { + "word": " don't", + "start": 5236.1, + "end": 5236.78, + "probability": 1.0 + }, + { + "word": " appreciate,", + "start": 5236.78, + "end": 5237.98, + "probability": 0.9697265625 + } + ] + }, + { + "id": 2440, + "text": "the,", + "start": 5238.5, + "end": 5238.74, + "words": [ + { + "word": " the,", + "start": 5238.5, + "end": 5238.74, + "probability": 0.133544921875 + } + ] + }, + { + "id": 2441, + "text": "how important it is to have sort of good chemistry with your board op,", + "start": 5238.84, + "end": 5242.08, + "words": [ + { + "word": " how", + "start": 5238.84, + "end": 5239.08, + "probability": 0.99169921875 + }, + { + "word": " important", + "start": 5239.08, + "end": 5239.42, + "probability": 1.0 + }, + { + "word": " it", + "start": 5239.42, + "end": 5239.58, + "probability": 1.0 + }, + { + "word": " is", + "start": 5239.58, + "end": 5239.72, + "probability": 1.0 + }, + { + "word": " to", + "start": 5239.72, + "end": 5239.84, + "probability": 0.99951171875 + }, + { + "word": " have", + "start": 5239.84, + "end": 5240.04, + "probability": 1.0 + }, + { + "word": " sort", + "start": 5240.04, + "end": 5240.38, + "probability": 0.99853515625 + }, + { + "word": " of", + "start": 5240.38, + "end": 5240.58, + "probability": 1.0 + }, + { + "word": " good", + "start": 5240.58, + "end": 5240.72, + "probability": 1.0 + }, + { + "word": " chemistry", + "start": 5240.72, + "end": 5241.1, + "probability": 1.0 + }, + { + "word": " with", + "start": 5241.1, + "end": 5241.48, + "probability": 0.99951171875 + }, + { + "word": " your", + "start": 5241.48, + "end": 5241.64, + "probability": 0.99951171875 + }, + { + "word": " board", + "start": 5241.64, + "end": 5241.88, + "probability": 0.9990234375 + }, + { + "word": " op,", + "start": 5241.88, + "end": 5242.08, + "probability": 0.74755859375 + } + ] + }, + { + "id": 2442, + "text": "with your producer,", + "start": 5242.14, + "end": 5243.1, + "words": [ + { + "word": " with", + "start": 5242.14, + "end": 5242.42, + "probability": 0.99755859375 + }, + { + "word": " your", + "start": 5242.42, + "end": 5242.66, + "probability": 1.0 + }, + { + "word": " producer,", + "start": 5242.66, + "end": 5243.1, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2443, + "text": "you know,", + "start": 5243.14, + "end": 5243.38, + "words": [ + { + "word": " you", + "start": 5243.14, + "end": 5243.28, + "probability": 0.875 + }, + { + "word": " know,", + "start": 5243.28, + "end": 5243.38, + "probability": 0.98486328125 + } + ] + }, + { + "id": 2444, + "text": "to kind of,", + "start": 5243.42, + "end": 5244.16, + "words": [ + { + "word": " to", + "start": 5243.42, + "end": 5243.6, + "probability": 0.98681640625 + }, + { + "word": " kind", + "start": 5243.6, + "end": 5243.84, + "probability": 0.9912109375 + }, + { + "word": " of,", + "start": 5243.84, + "end": 5244.16, + "probability": 1.0 + } + ] + }, + { + "id": 2445, + "text": "you know,", + "start": 5244.16, + "end": 5244.44, + "words": [ + { + "word": " you", + "start": 5244.16, + "end": 5244.32, + "probability": 0.99951171875 + }, + { + "word": " know,", + "start": 5244.32, + "end": 5244.44, + "probability": 1.0 + } + ] + }, + { + "id": 2446, + "text": "make the show run smoothly.", + "start": 5244.44, + "end": 5245.68, + "words": [ + { + "word": " make", + "start": 5244.44, + "end": 5244.6, + "probability": 0.998046875 + }, + { + "word": " the", + "start": 5244.6, + "end": 5244.76, + "probability": 1.0 + }, + { + "word": " show", + "start": 5244.76, + "end": 5244.98, + "probability": 1.0 + }, + { + "word": " run", + "start": 5244.98, + "end": 5245.18, + "probability": 1.0 + }, + { + "word": " smoothly.", + "start": 5245.18, + "end": 5245.68, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2447, + "text": "And thank you very much,", + "start": 5246.12, + "end": 5248.22, + "words": [ + { + "word": " And", + "start": 5246.12, + "end": 5246.6, + "probability": 0.99560546875 + }, + { + "word": " thank", + "start": 5246.6, + "end": 5247.14, + "probability": 0.330322265625 + }, + { + "word": " you", + "start": 5247.14, + "end": 5247.66, + "probability": 1.0 + }, + { + "word": " very", + "start": 5247.66, + "end": 5247.82, + "probability": 0.99951171875 + }, + { + "word": " much,", + "start": 5247.82, + "end": 5248.22, + "probability": 1.0 + } + ] + }, + { + "id": 2448, + "text": "Kent and to Bob and Tom and Harry and everyone else that's,", + "start": 5248.26, + "end": 5252.36, + "words": [ + { + "word": " Kent", + "start": 5248.26, + "end": 5248.62, + "probability": 0.998046875 + }, + { + "word": " and", + "start": 5248.62, + "end": 5248.92, + "probability": 0.32568359375 + }, + { + "word": " to", + "start": 5248.92, + "end": 5249.16, + "probability": 0.99853515625 + }, + { + "word": " Bob", + "start": 5249.16, + "end": 5249.46, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 5249.46, + "end": 5249.86, + "probability": 0.99755859375 + }, + { + "word": " Tom", + "start": 5249.86, + "end": 5250.16, + "probability": 0.99951171875 + }, + { + "word": " and", + "start": 5250.16, + "end": 5250.56, + "probability": 0.99755859375 + }, + { + "word": " Harry", + "start": 5250.56, + "end": 5250.84, + "probability": 0.9990234375 + }, + { + "word": " and", + "start": 5250.84, + "end": 5251.24, + "probability": 0.9873046875 + }, + { + "word": " everyone", + "start": 5251.24, + "end": 5251.76, + "probability": 0.99755859375 + }, + { + "word": " else", + "start": 5251.76, + "end": 5252.1, + "probability": 0.99951171875 + }, + { + "word": " that's,", + "start": 5252.1, + "end": 5252.36, + "probability": 0.9423828125 + } + ] + }, + { + "id": 2449, + "text": "that's done this over the,", + "start": 5252.36, + "end": 5253.52, + "words": [ + { + "word": " that's", + "start": 5252.36, + "end": 5252.68, + "probability": 0.9990234375 + }, + { + "word": " done", + "start": 5252.68, + "end": 5252.78, + "probability": 0.99853515625 + }, + { + "word": " this", + "start": 5252.78, + "end": 5253.0, + "probability": 1.0 + }, + { + "word": " over", + "start": 5253.0, + "end": 5253.24, + "probability": 0.99951171875 + }, + { + "word": " the,", + "start": 5253.24, + "end": 5253.52, + "probability": 1.0 + } + ] + }, + { + "id": 2450, + "text": "over the years of helping me keep this show on the air.", + "start": 5253.54, + "end": 5256.76, + "words": [ + { + "word": " over", + "start": 5253.54, + "end": 5254.08, + "probability": 0.99853515625 + }, + { + "word": " the", + "start": 5254.08, + "end": 5254.28, + "probability": 1.0 + }, + { + "word": " years", + "start": 5254.28, + "end": 5254.46, + "probability": 0.99951171875 + }, + { + "word": " of", + "start": 5254.46, + "end": 5254.64, + "probability": 0.99951171875 + }, + { + "word": " helping", + "start": 5254.64, + "end": 5254.88, + "probability": 1.0 + }, + { + "word": " me", + "start": 5254.88, + "end": 5255.18, + "probability": 1.0 + }, + { + "word": " keep", + "start": 5255.18, + "end": 5255.42, + "probability": 0.99951171875 + }, + { + "word": " this", + "start": 5255.42, + "end": 5255.74, + "probability": 0.9990234375 + }, + { + "word": " show", + "start": 5255.74, + "end": 5256.06, + "probability": 0.99951171875 + }, + { + "word": " on", + "start": 5256.06, + "end": 5256.36, + "probability": 0.99951171875 + }, + { + "word": " the", + "start": 5256.36, + "end": 5256.5, + "probability": 1.0 + }, + { + "word": " air.", + "start": 5256.5, + "end": 5256.76, + "probability": 1.0 + } + ] + }, + { + "id": 2451, + "text": "And,", + "start": 5257.780000000001, + "end": 5258.26, + "words": [ + { + "word": " And,", + "start": 5257.780000000001, + "end": 5258.26, + "probability": 0.95263671875 + } + ] + }, + { + "id": 2452, + "text": "and most of all the listeners,", + "start": 5258.42, + "end": 5260.16, + "words": [ + { + "word": " and", + "start": 5258.42, + "end": 5258.64, + "probability": 1.0 + }, + { + "word": " most", + "start": 5258.64, + "end": 5259.06, + "probability": 0.998046875 + }, + { + "word": " of", + "start": 5259.06, + "end": 5259.22, + "probability": 1.0 + }, + { + "word": " all", + "start": 5259.22, + "end": 5259.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 5259.44, + "end": 5259.76, + "probability": 0.5810546875 + }, + { + "word": " listeners,", + "start": 5259.76, + "end": 5260.16, + "probability": 1.0 + } + ] + }, + { + "id": 2453, + "text": "right?", + "start": 5260.3, + "end": 5260.58, + "words": [ + { + "word": " right?", + "start": 5260.3, + "end": 5260.58, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2454, + "text": "My patron supporters,", + "start": 5260.62, + "end": 5261.28, + "words": [ + { + "word": " My", + "start": 5260.62, + "end": 5260.72, + "probability": 0.99462890625 + }, + { + "word": " patron", + "start": 5260.72, + "end": 5261.02, + "probability": 0.93896484375 + }, + { + "word": " supporters,", + "start": 5261.02, + "end": 5261.28, + "probability": 1.0 + } + ] + }, + { + "id": 2455, + "text": "my sponsors,", + "start": 5262.000000000001, + "end": 5262.96, + "words": [ + { + "word": " my", + "start": 5262.000000000001, + "end": 5262.4800000000005, + "probability": 0.9990234375 + }, + { + "word": " sponsors,", + "start": 5262.4800000000005, + "end": 5262.96, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2456, + "text": "such as Perfection Auto Works.", + "start": 5263.540000000001, + "end": 5265.12, + "words": [ + { + "word": " such", + "start": 5263.540000000001, + "end": 5264.02, + "probability": 0.99951171875 + }, + { + "word": " as", + "start": 5264.02, + "end": 5264.26, + "probability": 1.0 + }, + { + "word": " Perfection", + "start": 5264.26, + "end": 5264.78, + "probability": 0.67529296875 + }, + { + "word": " Auto", + "start": 5264.78, + "end": 5264.88, + "probability": 0.54345703125 + }, + { + "word": " Works.", + "start": 5264.88, + "end": 5265.12, + "probability": 0.95458984375 + } + ] + }, + { + "id": 2457, + "text": "I just want to say thank you.", + "start": 5265.24, + "end": 5266.64, + "words": [ + { + "word": " I", + "start": 5265.24, + "end": 5265.54, + "probability": 0.99951171875 + }, + { + "word": " just", + "start": 5265.54, + "end": 5265.84, + "probability": 1.0 + }, + { + "word": " want", + "start": 5265.84, + "end": 5265.96, + "probability": 1.0 + }, + { + "word": " to", + "start": 5265.96, + "end": 5266.08, + "probability": 1.0 + }, + { + "word": " say", + "start": 5266.08, + "end": 5266.2, + "probability": 1.0 + }, + { + "word": " thank", + "start": 5266.2, + "end": 5266.4, + "probability": 0.6826171875 + }, + { + "word": " you.", + "start": 5266.4, + "end": 5266.64, + "probability": 1.0 + } + ] + }, + { + "id": 2458, + "text": "Now let's go ahead and squeeze Kevin in.", + "start": 5266.68, + "end": 5268.38, + "words": [ + { + "word": " Now", + "start": 5266.68, + "end": 5266.92, + "probability": 0.96240234375 + }, + { + "word": " let's", + "start": 5266.92, + "end": 5267.2, + "probability": 0.98583984375 + }, + { + "word": " go", + "start": 5267.2, + "end": 5267.3, + "probability": 0.99267578125 + }, + { + "word": " ahead", + "start": 5267.3, + "end": 5267.5, + "probability": 0.99658203125 + }, + { + "word": " and", + "start": 5267.5, + "end": 5267.52, + "probability": 1.0 + }, + { + "word": " squeeze", + "start": 5267.52, + "end": 5267.84, + "probability": 0.99951171875 + }, + { + "word": " Kevin", + "start": 5267.84, + "end": 5268.18, + "probability": 0.998046875 + }, + { + "word": " in.", + "start": 5268.18, + "end": 5268.38, + "probability": 0.98974609375 + } + ] + }, + { + "id": 2459, + "text": "Let's see what's going on here.", + "start": 5268.38, + "end": 5269.0, + "words": [ + { + "word": " Let's", + "start": 5268.38, + "end": 5268.54, + "probability": 0.8857421875 + }, + { + "word": " see", + "start": 5268.54, + "end": 5268.58, + "probability": 0.9990234375 + }, + { + "word": " what's", + "start": 5268.58, + "end": 5268.74, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 5268.74, + "end": 5268.82, + "probability": 1.0 + }, + { + "word": " on", + "start": 5268.82, + "end": 5268.92, + "probability": 1.0 + }, + { + "word": " here.", + "start": 5268.92, + "end": 5269.0, + "probability": 0.98583984375 + } + ] + }, + { + "id": 2460, + "text": "Kevin.", + "start": 5269.02, + "end": 5269.24, + "words": [ + { + "word": " Kevin.", + "start": 5269.02, + "end": 5269.24, + "probability": 0.98486328125 + } + ] + }, + { + "id": 2461, + "text": "Hey,", + "start": 5269.84, + "end": 5270.08, + "words": [ + { + "word": " Hey,", + "start": 5269.84, + "end": 5270.08, + "probability": 0.978515625 + } + ] + }, + { + "id": 2462, + "text": "Mike,", + "start": 5270.12, + "end": 5270.28, + "words": [ + { + "word": " Mike,", + "start": 5270.12, + "end": 5270.28, + "probability": 0.908203125 + } + ] + }, + { + "id": 2463, + "text": "good afternoon.", + "start": 5270.3, + "end": 5270.6, + "words": [ + { + "word": " good", + "start": 5270.3, + "end": 5270.42, + "probability": 0.984375 + }, + { + "word": " afternoon.", + "start": 5270.42, + "end": 5270.6, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2464, + "text": "I'm going to miss you.", + "start": 5270.72, + "end": 5271.34, + "words": [ + { + "word": " I'm", + "start": 5270.72, + "end": 5270.88, + "probability": 0.99951171875 + }, + { + "word": " going", + "start": 5270.88, + "end": 5270.92, + "probability": 0.99658203125 + }, + { + "word": " to", + "start": 5270.92, + "end": 5271.04, + "probability": 1.0 + }, + { + "word": " miss", + "start": 5271.04, + "end": 5271.16, + "probability": 0.99951171875 + }, + { + "word": " you.", + "start": 5271.16, + "end": 5271.34, + "probability": 1.0 + } + ] + }, + { + "id": 2465, + "text": "Thanks a million.", + "start": 5271.36, + "end": 5271.9, + "words": [ + { + "word": " Thanks", + "start": 5271.36, + "end": 5271.58, + "probability": 0.9921875 + }, + { + "word": " a", + "start": 5271.58, + "end": 5271.7, + "probability": 0.9990234375 + }, + { + "word": " million.", + "start": 5271.7, + "end": 5271.9, + "probability": 1.0 + } + ] + }, + { + "id": 2466, + "text": "Thanks to you.", + "start": 5271.98, + "end": 5272.6, + "words": [ + { + "word": " Thanks", + "start": 5271.98, + "end": 5272.24, + "probability": 0.99755859375 + }, + { + "word": " to", + "start": 5272.24, + "end": 5272.42, + "probability": 1.0 + }, + { + "word": " you.", + "start": 5272.42, + "end": 5272.6, + "probability": 1.0 + } + ] + }, + { + "id": 2467, + "text": "Thanks to Rob.", + "start": 5272.64, + "end": 5273.14, + "words": [ + { + "word": " Thanks", + "start": 5272.64, + "end": 5272.84, + "probability": 0.9970703125 + }, + { + "word": " to", + "start": 5272.84, + "end": 5273.0, + "probability": 0.99853515625 + }, + { + "word": " Rob.", + "start": 5273.0, + "end": 5273.14, + "probability": 0.99658203125 + } + ] + }, + { + "id": 2468, + "text": "Tara is going to miss me.", + "start": 5273.2, + "end": 5274.72, + "words": [ + { + "word": " Tara", + "start": 5273.2, + "end": 5273.54, + "probability": 0.98681640625 + }, + { + "word": " is", + "start": 5273.54, + "end": 5273.8, + "probability": 0.225341796875 + }, + { + "word": " going", + "start": 5273.8, + "end": 5273.92, + "probability": 1.0 + }, + { + "word": " to", + "start": 5273.92, + "end": 5274.14, + "probability": 1.0 + }, + { + "word": " miss", + "start": 5274.14, + "end": 5274.42, + "probability": 1.0 + }, + { + "word": " me.", + "start": 5274.42, + "end": 5274.72, + "probability": 1.0 + } + ] + }, + { + "id": 2469, + "text": "I am.", + "start": 5274.96, + "end": 5275.78, + "words": [ + { + "word": " I", + "start": 5274.96, + "end": 5275.32, + "probability": 0.99267578125 + }, + { + "word": " am.", + "start": 5275.32, + "end": 5275.78, + "probability": 0.99853515625 + } + ] + }, + { + "id": 2470, + "text": "I'll have to call the shop someday.", + "start": 5276.06, + "end": 5278.16, + "words": [ + { + "word": " I'll", + "start": 5276.06, + "end": 5276.4, + "probability": 0.900390625 + }, + { + "word": " have", + "start": 5276.4, + "end": 5277.16, + "probability": 0.99951171875 + }, + { + "word": " to", + "start": 5277.16, + "end": 5277.26, + "probability": 1.0 + }, + { + "word": " call", + "start": 5277.26, + "end": 5277.46, + "probability": 1.0 + }, + { + "word": " the", + "start": 5277.46, + "end": 5277.6, + "probability": 0.99951171875 + }, + { + "word": " shop", + "start": 5277.6, + "end": 5277.8, + "probability": 0.9990234375 + }, + { + "word": " someday.", + "start": 5277.8, + "end": 5278.16, + "probability": 0.990234375 + } + ] + }, + { + "id": 2471, + "text": "Website's great.", + "start": 5279.240000000001, + "end": 5279.82, + "words": [ + { + "word": " Website's", + "start": 5279.240000000001, + "end": 5279.6, + "probability": 0.97900390625 + }, + { + "word": " great.", + "start": 5279.6, + "end": 5279.82, + "probability": 1.0 + } + ] + }, + { + "id": 2472, + "text": "We're working on it still.", + "start": 5279.92, + "end": 5280.86, + "words": [ + { + "word": " We're", + "start": 5279.92, + "end": 5280.08, + "probability": 0.9990234375 + }, + { + "word": " working", + "start": 5280.08, + "end": 5280.36, + "probability": 1.0 + }, + { + "word": " on", + "start": 5280.36, + "end": 5280.5, + "probability": 1.0 + }, + { + "word": " it", + "start": 5280.5, + "end": 5280.62, + "probability": 0.943359375 + }, + { + "word": " still.", + "start": 5280.62, + "end": 5280.86, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2473, + "text": "God bless you guys.", + "start": 5281.320000000001, + "end": 5282.32, + "words": [ + { + "word": " God", + "start": 5281.320000000001, + "end": 5281.68, + "probability": 0.9990234375 + }, + { + "word": " bless", + "start": 5281.68, + "end": 5281.92, + "probability": 1.0 + }, + { + "word": " you", + "start": 5281.92, + "end": 5282.1, + "probability": 1.0 + }, + { + "word": " guys.", + "start": 5282.1, + "end": 5282.32, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2474, + "text": "I wish you the very best,", + "start": 5282.36, + "end": 5283.32, + "words": [ + { + "word": " I", + "start": 5282.36, + "end": 5282.46, + "probability": 0.99755859375 + }, + { + "word": " wish", + "start": 5282.46, + "end": 5282.58, + "probability": 1.0 + }, + { + "word": " you", + "start": 5282.58, + "end": 5282.74, + "probability": 1.0 + }, + { + "word": " the", + "start": 5282.74, + "end": 5282.84, + "probability": 1.0 + }, + { + "word": " very", + "start": 5282.84, + "end": 5283.0, + "probability": 1.0 + }, + { + "word": " best,", + "start": 5283.0, + "end": 5283.32, + "probability": 1.0 + } + ] + }, + { + "id": 2475, + "text": "man.", + "start": 5283.36, + "end": 5283.5, + "words": [ + { + "word": " man.", + "start": 5283.36, + "end": 5283.5, + "probability": 1.0 + } + ] + }, + { + "id": 2476, + "text": "Okay.", + "start": 5283.56, + "end": 5283.72, + "words": [ + { + "word": " Okay.", + "start": 5283.56, + "end": 5283.72, + "probability": 0.7294921875 + } + ] + }, + { + "id": 2477, + "text": "Thanks for everything,", + "start": 5283.78, + "end": 5284.42, + "words": [ + { + "word": " Thanks", + "start": 5283.78, + "end": 5283.98, + "probability": 0.9990234375 + }, + { + "word": " for", + "start": 5283.98, + "end": 5284.18, + "probability": 0.99951171875 + }, + { + "word": " everything,", + "start": 5284.18, + "end": 5284.42, + "probability": 1.0 + } + ] + }, + { + "id": 2478, + "text": "man.", + "start": 5284.56, + "end": 5284.78, + "words": [ + { + "word": " man.", + "start": 5284.56, + "end": 5284.78, + "probability": 1.0 + } + ] + }, + { + "id": 2479, + "text": "I'll miss you.", + "start": 5285.18, + "end": 5285.84, + "words": [ + { + "word": " I'll", + "start": 5285.18, + "end": 5285.54, + "probability": 0.9833984375 + }, + { + "word": " miss", + "start": 5285.54, + "end": 5285.64, + "probability": 1.0 + }, + { + "word": " you.", + "start": 5285.64, + "end": 5285.84, + "probability": 1.0 + } + ] + }, + { + "id": 2480, + "text": "All right.", + "start": 5285.98, + "end": 5286.58, + "words": [ + { + "word": " All", + "start": 5285.98, + "end": 5286.32, + "probability": 0.9951171875 + }, + { + "word": " right.", + "start": 5286.32, + "end": 5286.58, + "probability": 1.0 + } + ] + }, + { + "id": 2481, + "text": "Well,", + "start": 5286.64, + "end": 5286.8, + "words": [ + { + "word": " Well,", + "start": 5286.64, + "end": 5286.8, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2482, + "text": "thank you,", + "start": 5286.84, + "end": 5287.24, + "words": [ + { + "word": " thank", + "start": 5286.84, + "end": 5287.0, + "probability": 0.99951171875 + }, + { + "word": " you,", + "start": 5287.0, + "end": 5287.24, + "probability": 1.0 + } + ] + }, + { + "id": 2483, + "text": "Kevin.", + "start": 5287.28, + "end": 5287.52, + "words": [ + { + "word": " Kevin.", + "start": 5287.28, + "end": 5287.52, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2484, + "text": "I appreciate it.", + "start": 5287.64, + "end": 5288.34, + "words": [ + { + "word": " I", + "start": 5287.64, + "end": 5287.78, + "probability": 0.95458984375 + }, + { + "word": " appreciate", + "start": 5287.78, + "end": 5288.06, + "probability": 1.0 + }, + { + "word": " it.", + "start": 5288.06, + "end": 5288.34, + "probability": 1.0 + } + ] + }, + { + "id": 2485, + "text": "Thanks to everyone who listens to the show and supports us and brings their computer", + "start": 5288.700000000001, + "end": 5292.08, + "words": [ + { + "word": " Thanks", + "start": 5288.700000000001, + "end": 5289.06, + "probability": 0.99853515625 + }, + { + "word": " to", + "start": 5289.06, + "end": 5289.2, + "probability": 0.78173828125 + }, + { + "word": " everyone", + "start": 5289.2, + "end": 5289.36, + "probability": 0.9990234375 + }, + { + "word": " who", + "start": 5289.36, + "end": 5289.7, + "probability": 0.99951171875 + }, + { + "word": " listens", + "start": 5289.7, + "end": 5289.98, + "probability": 1.0 + }, + { + "word": " to", + "start": 5289.98, + "end": 5290.14, + "probability": 1.0 + }, + { + "word": " the", + "start": 5290.14, + "end": 5290.16, + "probability": 0.99462890625 + }, + { + "word": " show", + "start": 5290.16, + "end": 5290.4, + "probability": 1.0 + }, + { + "word": " and", + "start": 5290.4, + "end": 5290.76, + "probability": 0.99658203125 + }, + { + "word": " supports", + "start": 5290.76, + "end": 5291.14, + "probability": 0.99951171875 + }, + { + "word": " us", + "start": 5291.14, + "end": 5291.38, + "probability": 1.0 + }, + { + "word": " and", + "start": 5291.38, + "end": 5291.5, + "probability": 0.99951171875 + }, + { + "word": " brings", + "start": 5291.5, + "end": 5291.72, + "probability": 1.0 + }, + { + "word": " their", + "start": 5291.72, + "end": 5291.86, + "probability": 0.9990234375 + }, + { + "word": " computer", + "start": 5291.86, + "end": 5292.08, + "probability": 1.0 + } + ] + }, + { + "id": 2486, + "text": "down to the shop.", + "start": 5292.08, + "end": 5292.76, + "words": [ + { + "word": " down", + "start": 5292.08, + "end": 5292.34, + "probability": 1.0 + }, + { + "word": " to", + "start": 5292.34, + "end": 5292.44, + "probability": 1.0 + }, + { + "word": " the", + "start": 5292.44, + "end": 5292.52, + "probability": 1.0 + }, + { + "word": " shop.", + "start": 5292.52, + "end": 5292.76, + "probability": 0.99951171875 + } + ] + }, + { + "id": 2487, + "text": "We really appreciate you.", + "start": 5293.14, + "end": 5294.26, + "words": [ + { + "word": " We", + "start": 5293.14, + "end": 5293.5, + "probability": 1.0 + }, + { + "word": " really", + "start": 5293.5, + "end": 5293.7, + "probability": 1.0 + }, + { + "word": " appreciate", + "start": 5293.7, + "end": 5294.02, + "probability": 1.0 + }, + { + "word": " you.", + "start": 5294.02, + "end": 5294.26, + "probability": 0.99755859375 + } + ] + }, + { + "id": 2488, + "text": "Give us a call down the shop,", + "start": 5294.36, + "end": 5295.18, + "words": [ + { + "word": " Give", + "start": 5294.36, + "end": 5294.6, + "probability": 0.9541015625 + }, + { + "word": " us", + "start": 5294.6, + "end": 5294.72, + "probability": 0.99951171875 + }, + { + "word": " a", + "start": 5294.72, + "end": 5294.74, + "probability": 1.0 + }, + { + "word": " call", + "start": 5294.74, + "end": 5294.84, + "probability": 0.99951171875 + }, + { + "word": " down", + "start": 5294.84, + "end": 5294.96, + "probability": 0.83447265625 + }, + { + "word": " the", + "start": 5294.96, + "end": 5295.06, + "probability": 0.1197509765625 + }, + { + "word": " shop,", + "start": 5295.06, + "end": 5295.18, + "probability": 0.9892578125 + } + ] + }, + { + "id": 2489, + "text": "304-8300,", + "start": 5295.28, + "end": 5296.16, + "words": [ + { + "word": " 304", + "start": 5295.28, + "end": 5295.76, + "probability": 0.998046875 + }, + { + "word": "-8300,", + "start": 5295.76, + "end": 5296.16, + "probability": 0.9990234375 + } + ] + }, + { + "id": 2490, + "text": "or visit gurushow.com.", + "start": 5296.42, + "end": 5298.08, + "words": [ + { + "word": " or", + "start": 5296.42, + "end": 5296.62, + "probability": 0.99951171875 + }, + { + "word": " visit", + "start": 5296.62, + "end": 5296.86, + "probability": 0.9990234375 + }, + { + "word": " gurushow", + "start": 5296.86, + "end": 5297.56, + "probability": 0.8076171875 + }, + { + "word": ".com.", + "start": 5297.56, + "end": 5298.08, + "probability": 1.0 + } + ] + }, + { + "id": 2491, + "text": "For more information.", + "start": 5298.08, + "end": 5298.7, + "words": [ + { + "word": " For", + "start": 5298.08, + "end": 5298.2, + "probability": 0.043914794921875 + }, + { + "word": " more", + "start": 5298.2, + "end": 5298.36, + "probability": 0.99609375 + }, + { + "word": " information.", + "start": 5298.36, + "end": 5298.7, + "probability": 0.99365234375 + } + ] + }, + { + "id": 2492, + "text": "We'll see you guys.", + "start": 5299.08, + "end": 5299.82, + "words": [ + { + "word": " We'll", + "start": 5299.08, + "end": 5299.4, + "probability": 0.990234375 + }, + { + "word": " see", + "start": 5299.4, + "end": 5299.56, + "probability": 0.99853515625 + }, + { + "word": " you", + "start": 5299.56, + "end": 5299.64, + "probability": 0.99658203125 + }, + { + "word": " guys.", + "start": 5299.64, + "end": 5299.82, + "probability": 0.990234375 + } + ] + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.srt b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.srt new file mode 100644 index 0000000..66cbade --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.srt @@ -0,0 +1,9972 @@ +1 +00:00:00,000 --> 00:00:05,060 +From my heart and from my hand, why don't people understand my intention? + +2 +00:00:05,700 --> 00:00:06,900 +Computer running slow? + +3 +00:00:07,080 --> 00:00:07,380 +Avoiding. + +4 +00:00:07,620 --> 00:00:08,360 +Caught a virus? + +5 +00:00:08,660 --> 00:00:09,080 +No! + +6 +00:00:09,800 --> 00:00:10,100 +When? + +7 +00:00:10,880 --> 00:00:13,860 +Does your computer seem to have a life of its own? + +8 +00:00:14,200 --> 00:00:14,800 +Malfunction. + +9 +00:00:15,160 --> 00:00:16,240 +Need input. + +10 +00:00:16,640 --> 00:00:18,280 +The Computer Guru is here. + +11 +00:00:18,440 --> 00:00:19,340 +Thank God you're here! + +12 +00:00:19,800 --> 00:00:20,600 +Call in now. + +13 +00:00:20,920 --> 00:00:23,820 +Now, it's Mike Swanson, your Computer Guru. + +14 +00:00:24,900 --> 00:00:26,800 +Hello and welcome to the Computer Guru Show. + +15 +00:00:26,800 --> 00:00:30,600 +My name's Mike, here to deal with your technology needs and treat you like a person in the process. + +16 +00:00:30,700 --> 00:00:31,960 +Give us a call if you'd like to be part of the show. + +17 +00:00:32,040 --> 00:00:34,360 +It's 520-790-2040. + +18 +00:00:35,600 --> 00:00:36,300 +Hello, Kent. + +19 +00:00:37,600 --> 00:00:38,680 +Good morning, Mr. Guru. + +20 +00:00:38,960 --> 00:00:39,900 +We've got Kent here. + +21 +00:00:40,040 --> 00:00:41,000 +We've got Tara. + +22 +00:00:41,400 --> 00:00:41,720 +Hello. + +23 +00:00:42,020 --> 00:00:43,160 +We've got a guest who we'll get to in a minute. + +24 +00:00:46,260 --> 00:00:53,060 +But let's start by saying there are a lot of things happening in the world, in technology anyway, + +25 +00:00:53,220 --> 00:00:56,040 +that you may not, you should probably be aware of. + +26 +00:00:56,120 --> 00:00:56,340 +Right? + +27 +00:00:56,420 --> 00:00:56,780 +So we're going to get started. + +28 +00:00:56,780 --> 00:00:56,780 + + +29 +00:00:56,780 --> 00:00:56,780 + + +30 +00:00:56,780 --> 00:00:56,780 + + +31 +00:00:56,780 --> 00:00:56,780 + + +32 +00:00:56,780 --> 00:00:56,780 + + +33 +00:00:56,780 --> 00:00:56,780 + + +34 +00:00:56,780 --> 00:01:00,620 +We're going to spend probably the first hour of the show talking mostly about scams and + +35 +00:01:00,620 --> 00:01:05,200 +ways that people are just trying to steal your money. + +36 +00:01:05,600 --> 00:01:06,000 +Always. + +37 +00:01:06,520 --> 00:01:07,500 +Because that's what they want to do. + +38 +00:01:07,540 --> 00:01:09,240 +It's much easier to steal it than to earn it. + +39 +00:01:09,400 --> 00:01:10,460 +That's what I hear anyway. + +40 +00:01:10,800 --> 00:01:12,800 +It's not like I have that much of it to give anyway. + +41 +00:01:13,460 --> 00:01:14,180 +This is true. + +42 +00:01:14,280 --> 00:01:16,240 +We're all poor, poor individuals. + +43 +00:01:17,800 --> 00:01:24,740 +But so we basically, this is going to be an interesting show. + +44 +00:01:24,900 --> 00:01:25,400 +All right? + +45 +00:01:25,780 --> 00:01:26,760 +Because Mark was talking about it. + +46 +00:01:26,780 --> 00:01:28,040 +He was talking in the last hour a little bit. + +47 +00:01:28,100 --> 00:01:29,600 +There's a bit of a buzz. + +48 +00:01:29,680 --> 00:01:30,900 +I've been keeping things under wraps. + +49 +00:01:30,980 --> 00:01:34,120 +Mainly just because I haven't really known anything up until like yesterday. + +50 +00:01:36,720 --> 00:01:41,680 +But stick around for the second hour for news on what's coming up with the Computer Guru + +51 +00:01:41,680 --> 00:01:45,480 +Show and how it's going to move forward. + +52 +00:01:47,240 --> 00:01:50,040 +But just stick around for that part. + +53 +00:01:51,020 --> 00:01:53,620 +First, we're going to talk to Jay here. + +54 +00:01:53,720 --> 00:01:56,060 +Jay is a, he called me last week. + +55 +00:01:56,820 --> 00:01:59,380 +After one of the, after last week's show, was it? + +56 +00:01:59,440 --> 00:01:59,840 +Yeah. + +57 +00:01:59,860 --> 00:02:00,220 +Yeah. + +58 +00:02:01,220 --> 00:02:07,500 +And basically wanted to talk about the Microsoft scammers that are out there or tech support + +59 +00:02:07,500 --> 00:02:08,920 +scammers that exist out there. + +60 +00:02:09,780 --> 00:02:11,220 +Now, Jay is a tech journalist. + +61 +00:02:11,360 --> 00:02:12,260 +He lives in Green Valley. + +62 +00:02:12,380 --> 00:02:15,500 +He's chilling out in the Green Valley. + +63 +00:02:15,620 --> 00:02:19,040 +And he's principal of Collar Radio Communications Group. + +64 +00:02:20,060 --> 00:02:22,140 +And he's got some old school cred. + +65 +00:02:22,340 --> 00:02:22,780 +Yeah. + +66 +00:02:22,800 --> 00:02:25,920 +Like I used to as far as running the old BBSs. + +67 +00:02:26,780 --> 00:02:28,900 +You started Colorado Snowbank in 85. + +68 +00:02:30,140 --> 00:02:36,760 +Man, that's, I remember seeing the name of your BBS on the national lists back in the + +69 +00:02:36,760 --> 00:02:37,040 +day. + +70 +00:02:37,080 --> 00:02:39,780 +Just because I used to keep track of those and I have a crazy memory. + +71 +00:02:40,840 --> 00:02:43,260 +But did you say you went multi-line with that? + +72 +00:02:43,480 --> 00:02:44,500 +We went multi-line. + +73 +00:02:44,580 --> 00:02:44,760 +Yeah. + +74 +00:02:44,780 --> 00:02:50,800 +It was under TBBS, the breadboard system, which was the only one that had multi-line. + +75 +00:02:51,500 --> 00:02:52,940 +At least in the beginning, yeah. + +76 +00:02:53,200 --> 00:02:53,540 +Yeah. + +77 +00:02:54,020 --> 00:02:54,600 +All right. + +78 +00:02:54,640 --> 00:02:56,640 +Now you produce news segments. + +79 +00:02:56,780 --> 00:02:58,200 +I couldn't be more secure. + +80 +00:03:17,280 --> 00:03:17,820 +OK. + +81 +00:03:18,140 --> 00:03:18,420 +OK. + +82 +00:03:20,120 --> 00:03:20,660 +OK. + +83 +00:03:20,660 --> 00:03:20,660 + + +84 +00:03:20,660 --> 00:03:20,660 + + +85 +00:03:20,660 --> 00:03:20,660 + + +86 +00:03:20,660 --> 00:03:20,660 + + +87 +00:03:20,660 --> 00:03:20,780 +OK. + +88 +00:03:20,780 --> 00:03:20,780 + + +89 +00:03:20,780 --> 00:03:20,780 + + +90 +00:03:20,780 --> 00:03:20,780 + + +91 +00:03:20,780 --> 00:03:20,780 + + +92 +00:03:20,780 --> 00:03:20,780 + + +93 +00:03:20,780 --> 00:03:20,780 + + +94 +00:03:20,780 --> 00:03:20,780 + + +95 +00:03:20,780 --> 00:03:20,780 + + +96 +00:03:20,780 --> 00:03:20,780 + + +97 +00:03:20,780 --> 00:03:20,800 +OK. + +98 +00:03:20,800 --> 00:03:20,800 + + +99 +00:03:20,800 --> 00:03:20,800 + + +100 +00:03:20,800 --> 00:03:20,800 + + +101 +00:03:20,800 --> 00:03:20,800 + + +102 +00:03:20,800 --> 00:03:20,800 + + +103 +00:03:20,800 --> 00:03:20,800 + + +104 +00:03:20,800 --> 00:03:20,800 + + +105 +00:03:20,800 --> 00:03:20,800 + + +106 +00:03:20,800 --> 00:03:20,820 +OK. + +107 +00:03:20,820 --> 00:03:20,820 + + +108 +00:03:20,820 --> 00:03:20,820 + + +109 +00:03:20,820 --> 00:03:20,820 + + +110 +00:03:20,820 --> 00:03:20,820 + + +111 +00:03:20,820 --> 00:03:20,820 + + +112 +00:03:20,820 --> 00:03:20,820 + + +113 +00:03:20,820 --> 00:03:20,820 + + +114 +00:03:20,820 --> 00:03:20,820 + + +115 +00:03:20,820 --> 00:03:20,820 + + +116 +00:03:20,820 --> 00:03:20,820 + + +117 +00:03:20,820 --> 00:03:20,820 + + +118 +00:03:20,820 --> 00:03:20,820 + + +119 +00:03:20,820 --> 00:03:20,820 + + +120 +00:03:20,820 --> 00:03:20,820 + + +121 +00:03:20,820 --> 00:03:20,820 + + +122 +00:03:20,820 --> 00:03:20,820 + + +123 +00:03:20,820 --> 00:03:20,820 + + +124 +00:03:20,820 --> 00:03:20,820 + + +125 +00:03:20,820 --> 00:03:20,820 + + +126 +00:03:20,820 --> 00:03:20,820 + + +127 +00:03:20,820 --> 00:03:20,820 + + +128 +00:03:20,820 --> 00:03:20,820 + + +129 +00:03:20,820 --> 00:03:20,820 + + +130 +00:03:20,820 --> 00:03:21,020 +OK. + +131 +00:03:21,200 --> 00:03:21,320 +OK. + +132 +00:03:21,860 --> 00:03:22,400 +OK. + +133 +00:03:22,400 --> 00:03:40,620 +And there's a certain demographic, which I tend to talk to, which seem to be most at risk as far as either the age range or the technology proficiency that we really have to watch out for and say, hey, listen, you can't just fall for stuff like this. + +134 +00:03:40,720 --> 00:03:47,740 +And like the Nigerian print scams that have been going on for 20 years and people still fall for them. + +135 +00:03:47,740 --> 00:03:48,460 +Longer than that. + +136 +00:03:48,840 --> 00:03:49,320 +Yeah. + +137 +00:03:49,320 --> 00:03:52,860 +Well, about 20 AOL days, really. + +138 +00:03:53,000 --> 00:03:53,420 +Well, okay. + +139 +00:03:53,500 --> 00:03:53,760 +Okay. + +140 +00:03:53,800 --> 00:03:54,040 +Online. + +141 +00:03:54,200 --> 00:03:57,260 +But they originally started out with a letter. + +142 +00:03:57,360 --> 00:04:01,740 +They were sending out letters to attorneys and dentists and stuff like that. + +143 +00:04:01,840 --> 00:04:10,160 +Then they migrated to the online world and it's called a 419 scam. + +144 +00:04:10,840 --> 00:04:11,480 +Oh, yeah? + +145 +00:04:11,780 --> 00:04:11,960 +Yeah. + +146 +00:04:12,060 --> 00:04:17,160 +See, now, I'm one of these weird people that I actually don't get mail, like at all. + +147 +00:04:17,800 --> 00:04:19,300 +It's like there's... + +148 +00:04:19,320 --> 00:04:19,700 +There's still... + +149 +00:04:19,700 --> 00:04:24,620 +At my house, there's still the, this address is vacant slip in the mailbox. + +150 +00:04:24,920 --> 00:04:25,900 +So I just... + +151 +00:04:25,900 --> 00:04:26,580 +No mail. + +152 +00:04:26,800 --> 00:04:28,920 +So I'm just one... + +153 +00:04:28,920 --> 00:04:30,020 +I'm kind of weird like that. + +154 +00:04:30,820 --> 00:04:35,840 +I actually know somebody who got the letter way, way back in the day. + +155 +00:04:35,980 --> 00:04:36,320 +Really? + +156 +00:04:36,420 --> 00:04:37,280 +Regarding their business. + +157 +00:04:37,620 --> 00:04:38,120 +Huh. + +158 +00:04:38,160 --> 00:04:43,580 +And they gave them money and did not get it back, even though it eventually got reported and whatnot. + +159 +00:04:43,900 --> 00:04:48,840 +So, Jay, tell me about yourself and what your motivation is for... + +160 +00:04:49,320 --> 00:04:51,220 +What's going on here with scam and... + +161 +00:04:51,220 --> 00:04:55,000 +Well, motivation and my motivation here was talk about a whole... + +162 +00:04:55,000 --> 00:04:58,640 +Just a little segment called scam baiting. + +163 +00:04:59,740 --> 00:05:05,080 +And to go back, there are actually three types of people who are at risk. + +164 +00:05:05,320 --> 00:05:15,700 +One, you're talking about the older college kids and also people who are foreign, who don't speak the language quite as well. + +165 +00:05:15,780 --> 00:05:16,040 +Right. + +166 +00:05:16,120 --> 00:05:17,440 +They are easily intimidated. + +167 +00:05:18,320 --> 00:05:18,900 +And... + +168 +00:05:19,520 --> 00:05:25,340 +So there's a whole segment that's called scam baiters. + +169 +00:05:25,400 --> 00:05:29,780 +But to just give you a little bit of background, we're talking about big money. + +170 +00:05:30,380 --> 00:05:36,900 +And in April 26, 2017, there was a new survey that indicates Americans... + +171 +00:05:37,440 --> 00:05:45,400 +This is just Americans lost $9.5 billion to phone scams. + +172 +00:05:45,440 --> 00:05:47,080 +And that was just last year. + +173 +00:05:47,400 --> 00:05:48,480 +So who knows? + +174 +00:05:49,320 --> 00:05:53,800 +Who knows what happened all of 17 and what's happening now? + +175 +00:05:54,160 --> 00:05:58,560 +So it's big bucks that they are making. + +176 +00:05:58,680 --> 00:06:00,480 +And it's not only Americans. + +177 +00:06:01,340 --> 00:06:03,560 +These scammers are all over the world. + +178 +00:06:03,900 --> 00:06:04,580 +Okay. + +179 +00:06:04,640 --> 00:06:09,260 +So you mentioned scam baiting, at least the phrase scam baiters. + +180 +00:06:09,440 --> 00:06:12,000 +Now, there's plenty of scammers out there. + +181 +00:06:12,620 --> 00:06:19,160 +But typically, the scam baiters are things like the ones that are trying to hook... + +182 +00:06:19,160 --> 00:06:25,740 +the scammers into making a mistake or reverse engineering the scammers. + +183 +00:06:27,140 --> 00:06:37,160 +As an example, there was an article on Reddit yesterday that talked about one of the, quote unquote, scam baiters + +184 +00:06:37,160 --> 00:06:45,660 +that basically hacked his way into the scammers and refunded a bunch of money to people that had had their money taken by the scammers. + +185 +00:06:46,200 --> 00:06:49,080 +And so these guys are out there kind of... + +186 +00:06:49,800 --> 00:06:55,620 +They're more like the 4chan and 8chan crowd that are reverse engineering the scammers and saying, + +187 +00:06:55,660 --> 00:06:56,120 +well, you know what? + +188 +00:06:56,440 --> 00:06:57,980 +We're not going to let you get away with this. + +189 +00:06:58,280 --> 00:07:02,360 +And a lot of them are just wasting time, which is great. + +190 +00:07:02,440 --> 00:07:06,300 +Because if they're on there trying to waste the time of the scammer, + +191 +00:07:06,300 --> 00:07:11,300 +that person isn't out scamming somebody else at that moment, someone who's very much at risk. + +192 +00:07:12,240 --> 00:07:18,340 +And at least in my line of work during my day job, Mary, we deal with this every day, + +193 +00:07:18,420 --> 00:07:18,620 +right? + +194 +00:07:18,680 --> 00:07:18,960 +Right. + +195 +00:07:18,960 --> 00:07:19,140 +Right. + +196 +00:07:19,140 --> 00:07:19,140 + + +197 +00:07:19,140 --> 00:07:19,140 + + +198 +00:07:19,140 --> 00:07:19,140 + + +199 +00:07:19,140 --> 00:07:19,140 + + +200 +00:07:19,140 --> 00:07:19,140 + + +201 +00:07:19,140 --> 00:07:19,140 + + +202 +00:07:19,160 --> 00:07:22,320 +And so I call up and say, well, you know, or they come into the shop and say, well, you know, + +203 +00:07:22,340 --> 00:07:26,760 +I let this person onto my machine and they did horrible things and they gave me my credit card number. + +204 +00:07:27,060 --> 00:07:30,060 +And now I need you to fix my computer to make sure that it's secure. + +205 +00:07:31,700 --> 00:07:35,700 +So there's definitely a lot of money, not just directly like the, you know, + +206 +00:07:35,700 --> 00:07:39,000 +the billions of dollars that were lost directly to scammers, + +207 +00:07:39,060 --> 00:07:44,860 +but there's an entire secondary market where now these people have to go and have their computer looked at + +208 +00:07:44,860 --> 00:07:49,040 +and they end up spending money with places like me or, you know, Best Buy or somebody. + +209 +00:07:49,160 --> 00:07:49,360 +Right. + +210 +00:07:49,360 --> 00:07:52,980 +Or somebody else to try to get their machine back in a working state afterwards. + +211 +00:07:53,480 --> 00:07:56,900 +So there's an indirect market or loss involved with that also, + +212 +00:07:56,980 --> 00:08:02,500 +which I assume is going to be probably on par with that original number, right? + +213 +00:08:02,560 --> 00:08:04,280 +Because they're going to take a couple hundred dollars from, + +214 +00:08:04,360 --> 00:08:08,680 +or up to $400 on average from every person that they deal with. + +215 +00:08:09,180 --> 00:08:12,420 +And then you're, that person then has to go and spend another, you know, + +216 +00:08:12,420 --> 00:08:15,280 +$150 to $200 to get their machine fixed up afterwards. + +217 +00:08:16,120 --> 00:08:19,140 +So that's, that's a huge amount of money that's out there in the world. + +218 +00:08:19,160 --> 00:08:24,220 +Just because, because people are, well, on two sides of it, + +219 +00:08:24,280 --> 00:08:27,080 +you've got the gullibility of the user side, + +220 +00:08:27,520 --> 00:08:29,200 +but you also have the, the, + +221 +00:08:29,220 --> 00:08:32,440 +the aspect of it where you've got people that are just preying upon others. + +222 +00:08:36,700 --> 00:08:41,580 +And you're going to see a lot of this with people who have like regular phone lines. + +223 +00:08:41,920 --> 00:08:43,660 +Like if you have a landline in your house, + +224 +00:08:43,680 --> 00:08:47,620 +you're much more likely to be contacted by these types of people. + +225 +00:08:48,040 --> 00:08:48,420 +Like, + +226 +00:08:48,480 --> 00:08:49,140 +I never get the call. + +227 +00:08:49,160 --> 00:08:50,300 +I don't get the calls anymore, right? + +228 +00:08:50,320 --> 00:08:51,620 +Just because I'm cell phone only. + +229 +00:08:51,780 --> 00:08:53,060 +I don't have any landlines, + +230 +00:08:53,580 --> 00:08:57,200 +but people who have landlines get these calls all the time. + +231 +00:08:57,400 --> 00:09:00,020 +Cell phones are being attacked all the time. + +232 +00:09:00,040 --> 00:09:01,500 +Now, member card services. + +233 +00:09:01,880 --> 00:09:03,620 +Yeah, that's a big one. + +234 +00:09:04,820 --> 00:09:07,540 +And before you go back on that and you, + +235 +00:09:07,580 --> 00:09:09,060 +you hit the nail on the head, + +236 +00:09:09,180 --> 00:09:10,680 +what do scam baiters do? + +237 +00:09:10,840 --> 00:09:16,180 +Their whole goal is to waste their time hours on end. + +238 +00:09:16,260 --> 00:09:17,760 +And even right now, + +239 +00:09:17,780 --> 00:09:18,780 +as we speak, + +240 +00:09:19,160 --> 00:09:24,080 +and you can go to YouTube and look up scam baiting or IRS scam. + +241 +00:09:24,280 --> 00:09:29,020 +There is a live stream now and there's a series of five or six, + +242 +00:09:29,040 --> 00:09:30,540 +seven scam baiters. + +243 +00:09:30,780 --> 00:09:32,460 +And they're not all guys. + +244 +00:09:32,600 --> 00:09:33,440 +They're women, + +245 +00:09:33,620 --> 00:09:34,220 +they're men, + +246 +00:09:34,360 --> 00:09:34,940 +they're old, + +247 +00:09:35,040 --> 00:09:35,440 +young, + +248 +00:09:35,680 --> 00:09:36,900 +some speak Spanish. + +249 +00:09:37,420 --> 00:09:39,020 +They're online right now. + +250 +00:09:39,040 --> 00:09:40,740 +Real time scam baiting. + +251 +00:09:40,760 --> 00:09:42,180 +You can go to YouTube, + +252 +00:09:42,440 --> 00:09:44,400 +find it and listen to them. + +253 +00:09:44,480 --> 00:09:45,320 +And if you, + +254 +00:09:45,320 --> 00:09:45,720 +uh, + +255 +00:09:45,960 --> 00:09:48,200 +if you're out there and you've never heard, + +256 +00:09:48,200 --> 00:09:49,120 +what, + +257 +00:09:49,260 --> 00:09:49,580 +uh, + +258 +00:09:49,920 --> 00:09:53,540 +some of these scams are the Medicare fried fraud, + +259 +00:09:53,760 --> 00:09:54,020 +the, + +260 +00:09:54,140 --> 00:09:54,520 +uh, + +261 +00:09:54,600 --> 00:09:54,960 +oh, + +262 +00:09:55,700 --> 00:09:55,920 +uh, + +263 +00:09:55,980 --> 00:09:56,940 +the grant scam. + +264 +00:09:57,320 --> 00:09:57,960 +Uh, + +265 +00:09:58,180 --> 00:09:59,900 +you can go to YouTube, + +266 +00:10:00,040 --> 00:10:04,660 +you're safe and look up scam baiting or IRS scam. + +267 +00:10:05,460 --> 00:10:06,680 +And you can, + +268 +00:10:06,700 --> 00:10:07,200 +uh, + +269 +00:10:07,420 --> 00:10:11,540 +see literally hundreds of thousands of videos. + +270 +00:10:12,040 --> 00:10:17,400 +And a lot of these people are creative even with cartoons and names. + +271 +00:10:17,520 --> 00:10:18,180 +But the, + +272 +00:10:18,180 --> 00:10:18,180 + + +273 +00:10:18,180 --> 00:10:18,800 +these people are doing, + +274 +00:10:18,940 --> 00:10:22,620 +and then you can familiarize yourself with what's going on. + +275 +00:10:22,780 --> 00:10:24,720 +It is a lot of it is funny. + +276 +00:10:24,880 --> 00:10:27,040 +A lot of it is NSFW. + +277 +00:10:27,400 --> 00:10:28,340 +That's for sure. + +278 +00:10:28,500 --> 00:10:30,640 +You learned how to swear in Hindi. + +279 +00:10:30,820 --> 00:10:32,600 +You can learn a second language. + +280 +00:10:32,660 --> 00:10:33,740 +It's very educational. + +281 +00:10:34,060 --> 00:10:34,620 +Uh, + +282 +00:10:34,860 --> 00:10:38,640 +but you can see what's going on and the situations. + +283 +00:10:38,660 --> 00:10:42,220 +He's scam baiters will call in as an old lady, + +284 +00:10:42,240 --> 00:10:45,820 +an old man who's on a low income. + +285 +00:10:46,160 --> 00:10:47,720 +These scammers do, + +286 +00:10:48,180 --> 00:10:48,800 +not care. + +287 +00:10:49,360 --> 00:10:49,680 +Nope. + +288 +00:10:49,840 --> 00:10:50,320 +All right. + +289 +00:10:50,340 --> 00:10:50,440 +Well, + +290 +00:10:50,500 --> 00:10:52,720 +we're going to talk more about that after we do the first break here. + +291 +00:10:52,780 --> 00:10:52,920 +First, + +292 +00:10:53,020 --> 00:10:54,200 +let's take a moment to mention our sponsor. + +293 +00:10:54,300 --> 00:10:55,520 +That would be perfection out of works. + +294 +00:10:55,900 --> 00:10:57,020 +You can visit their website, + +295 +00:10:57,160 --> 00:10:57,460 +perfection, + +296 +00:10:57,520 --> 00:11:02,160 +out of works.com and they will happily get your car in for a 26 point inspection. + +297 +00:11:02,300 --> 00:11:04,520 +It is that time of year as you know, + +298 +00:11:04,540 --> 00:11:05,160 +starting to, + +299 +00:11:05,700 --> 00:11:06,800 +we're going to end up in before, + +300 +00:11:06,860 --> 00:11:07,120 +you know, + +301 +00:11:07,180 --> 00:11:08,020 +it's gonna be summer again. + +302 +00:11:08,180 --> 00:11:08,940 +True story. + +303 +00:11:09,040 --> 00:11:09,280 +Yeah. + +304 +00:11:09,580 --> 00:11:09,900 +And, + +305 +00:11:10,040 --> 00:11:10,300 +uh, + +306 +00:11:10,320 --> 00:11:10,500 +well, + +307 +00:11:10,560 --> 00:11:11,520 +you never know right now, + +308 +00:11:11,600 --> 00:11:12,060 +uh, + +309 +00:11:12,480 --> 00:11:15,160 +cause one day it's 50 degrees and one day it's 80 degrees. + +310 +00:11:15,200 --> 00:11:15,320 +You, + +311 +00:11:15,380 --> 00:11:16,080 +you just don't know, + +312 +00:11:16,600 --> 00:11:18,080 +but go down there and get your, + +313 +00:11:18,180 --> 00:11:18,840 +your 26 point inspection. + +314 +00:11:18,980 --> 00:11:19,880 +You can also give them call three, + +315 +00:11:19,960 --> 00:11:20,120 +two, + +316 +00:11:20,140 --> 00:11:21,220 +three 8650. + +317 +00:11:21,560 --> 00:11:24,100 +Tell Mike and his team that you heard from us and you get a little bit of + +318 +00:11:24,980 --> 00:11:26,040 +prioritized expedited service. + +319 +00:11:26,740 --> 00:11:27,060 +Yeah. + +320 +00:11:27,180 --> 00:11:27,840 +Cause you know, + +321 +00:11:27,840 --> 00:11:28,560 +computer career show. + +322 +00:11:29,140 --> 00:11:29,460 +Anyway, + +323 +00:11:29,580 --> 00:11:30,280 +check them out. + +324 +00:11:30,600 --> 00:11:31,400 +Perfection out of works.com. + +325 +00:11:31,680 --> 00:11:32,820 +Listen to their ad coming up next. + +326 +00:11:32,880 --> 00:11:34,180 +And we'll be right back after this. + +327 +00:11:48,180 --> 00:11:48,200 +Oh, + +328 +00:11:48,200 --> 00:11:48,440 +yeah. + +329 +00:11:49,200 --> 00:11:50,040 +Look up. + +330 +00:11:50,680 --> 00:11:51,200 +Hmm. + +331 +00:11:51,640 --> 00:11:52,420 +Pop pop. + +332 +00:11:54,600 --> 00:11:56,080 +Your computer guru. + +333 +00:11:56,140 --> 00:11:58,960 +Mike Swanson is here to help you tame that beast of a machine. + +334 +00:11:59,200 --> 00:12:02,820 +Join the chat right now at guru show.com or call in. + +335 +00:12:02,900 --> 00:12:05,500 +This is the computer guru show on KVO. + +336 +00:12:05,540 --> 00:12:06,380 +Why the voice? + +337 +00:12:10,200 --> 00:12:11,620 +Your technology guru. + +338 +00:12:11,760 --> 00:12:14,600 +Mike Swanson is answering all your questions one by one. + +339 +00:12:14,620 --> 00:12:14,840 +Yes. + +340 +00:12:15,000 --> 00:12:16,640 +So chime in with yours. + +341 +00:12:16,760 --> 00:12:18,160 +The website is guru.com. + +342 +00:12:18,160 --> 00:12:18,840 +And you can also tune in to the computer guru show.com. + +343 +00:12:19,200 --> 00:12:19,900 +Tune in, + +344 +00:12:19,940 --> 00:12:21,360 +click in and kick back. + +345 +00:12:21,620 --> 00:12:23,520 +This is a computer guru show. + +346 +00:12:25,080 --> 00:12:26,860 +Welcome back to the computer guru show. + +347 +00:12:26,960 --> 00:12:29,540 +My name is make Mike here to deal with your technology needs. + +348 +00:12:29,560 --> 00:12:29,820 +Andrew, + +349 +00:12:29,840 --> 00:12:30,720 +would you like a person in the process? + +350 +00:12:30,780 --> 00:12:31,860 +We have Jay Melnick in. + +351 +00:12:31,960 --> 00:12:37,880 +He is a basically a journalist working on stories about scammers and, + +352 +00:12:37,960 --> 00:12:41,560 +and all of the sort of nuance that's happening in that particular area, + +353 +00:12:41,580 --> 00:12:43,300 +trying to keep people safe and doing a bunch of interviews. + +354 +00:12:43,360 --> 00:12:43,580 +He said, + +355 +00:12:44,120 --> 00:12:44,560 +so, + +356 +00:12:44,640 --> 00:12:45,660 +so tell me about you. + +357 +00:12:45,740 --> 00:12:46,120 +Let's, + +358 +00:12:46,120 --> 00:12:47,280 +let's get a little background on you, + +359 +00:12:47,340 --> 00:12:47,520 +Jay. + +360 +00:12:47,620 --> 00:12:47,880 +I mean, + +361 +00:12:47,880 --> 00:12:48,140 +other than the, + +362 +00:12:48,140 --> 00:12:48,140 + + +363 +00:12:48,140 --> 00:12:48,140 + + +364 +00:12:48,140 --> 00:12:48,140 + + +365 +00:12:48,140 --> 00:12:48,140 + + +366 +00:12:48,140 --> 00:12:48,140 + + +367 +00:12:48,140 --> 00:12:48,140 + + +368 +00:12:48,140 --> 00:12:48,140 + + +369 +00:12:48,160 --> 00:12:48,960 +other than your intro here, + +370 +00:12:49,120 --> 00:12:50,100 +what is your, + +371 +00:12:51,520 --> 00:12:53,100 +what started you on this path? + +372 +00:12:53,320 --> 00:12:53,840 +Do you think + +373 +00:12:53,840 --> 00:12:55,100 +on the path of computers? + +374 +00:12:55,420 --> 00:12:55,760 +Yeah. + +375 +00:12:56,240 --> 00:12:57,220 +I'm always curious. + +376 +00:12:57,300 --> 00:12:58,400 +So how people got into technology, + +377 +00:12:58,980 --> 00:12:59,420 +uh, + +378 +00:13:01,320 --> 00:13:01,760 +in, + +379 +00:13:01,880 --> 00:13:02,660 +in high school, + +380 +00:13:03,240 --> 00:13:03,680 +uh, + +381 +00:13:04,020 --> 00:13:06,160 +an Emily Griffith opportunity school. + +382 +00:13:06,300 --> 00:13:06,880 +There was a, + +383 +00:13:07,000 --> 00:13:07,280 +uh, + +384 +00:13:07,300 --> 00:13:08,520 +beginning computing, + +385 +00:13:08,600 --> 00:13:10,060 +and this was punch card days, + +386 +00:13:10,220 --> 00:13:10,840 +right? + +387 +00:13:10,960 --> 00:13:12,320 +So we learned machine language. + +388 +00:13:12,620 --> 00:13:14,440 +And then the university of Denver, + +389 +00:13:14,980 --> 00:13:15,420 +uh, + +390 +00:13:15,540 --> 00:13:17,580 +we did programming and that was Algal. + +391 +00:13:17,700 --> 00:13:18,140 +And, + +392 +00:13:18,140 --> 00:13:18,140 + + +393 +00:13:18,140 --> 00:13:18,140 + + +394 +00:13:18,140 --> 00:13:18,140 + + +395 +00:13:18,140 --> 00:13:18,140 + + +396 +00:13:18,140 --> 00:13:18,140 + + +397 +00:13:18,140 --> 00:13:18,140 + + +398 +00:13:18,140 --> 00:13:18,140 + + +399 +00:13:18,160 --> 00:13:22,660 +and that was the huge with the raised floors and air conditionings. + +400 +00:13:22,660 --> 00:13:25,760 +And that was like one Thursday every month or something. + +401 +00:13:25,980 --> 00:13:26,380 +Right. + +402 +00:13:26,920 --> 00:13:27,360 +Uh, + +403 +00:13:28,160 --> 00:13:28,240 +college, + +404 +00:13:28,540 --> 00:13:28,900 +uh, + +405 +00:13:29,740 --> 00:13:30,400 +went into, + +406 +00:13:30,540 --> 00:13:31,000 +uh, + +407 +00:13:31,200 --> 00:13:31,380 +uh, + +408 +00:13:31,380 --> 00:13:32,560 +it or whatever. + +409 +00:13:32,680 --> 00:13:34,020 +And I was still punch cards. + +410 +00:13:34,600 --> 00:13:35,980 +And I got to be thinking, + +411 +00:13:36,040 --> 00:13:36,200 +well, + +412 +00:13:36,240 --> 00:13:38,560 +she is a computer's the way they're going to go. + +413 +00:13:39,320 --> 00:13:40,780 +And it's just programming. + +414 +00:13:41,720 --> 00:13:42,160 +We're, + +415 +00:13:42,180 --> 00:13:42,600 +you know, + +416 +00:13:42,640 --> 00:13:43,020 +what's, + +417 +00:13:43,020 --> 00:13:44,460 +what's the downfall of that? + +418 +00:13:44,600 --> 00:13:45,040 +Well, + +419 +00:13:45,120 --> 00:13:45,680 +the punch cards, + +420 +00:13:45,720 --> 00:13:45,860 +well, + +421 +00:13:48,160 --> 00:13:48,520 +it's a little bit more complex than that. + +422 +00:13:48,520 --> 00:13:48,520 + + +423 +00:13:48,520 --> 00:13:48,520 + + +424 +00:13:48,520 --> 00:13:48,820 +uh, + +425 +00:13:49,380 --> 00:13:50,800 +let's take away the human element. + +426 +00:13:50,900 --> 00:13:52,880 +So computers will be programming computers. + +427 +00:13:53,780 --> 00:13:55,780 +What is that going to look like in the future? + +428 +00:13:55,860 --> 00:13:56,880 +Let's before PCs. + +429 +00:13:57,460 --> 00:14:01,900 +So I went back to business and went to my, + +430 +00:14:02,100 --> 00:14:02,300 +uh, + +431 +00:14:03,120 --> 00:14:03,940 +radio days, + +432 +00:14:04,060 --> 00:14:04,480 +I guess, + +433 +00:14:04,480 --> 00:14:07,660 +and Denver and doing all kinds of stuff and TV. + +434 +00:14:08,340 --> 00:14:09,120 +And then, + +435 +00:14:09,140 --> 00:14:09,340 +uh, + +436 +00:14:10,540 --> 00:14:16,420 +went back and saw the new thing of BBSs and I liked what was going on. + +437 +00:14:16,500 --> 00:14:18,140 +So that's where I started going to the, + +438 +00:14:18,140 --> 00:14:18,140 + + +439 +00:14:18,140 --> 00:14:18,140 + + +440 +00:14:18,140 --> 00:14:18,140 + + +441 +00:14:18,140 --> 00:14:18,140 + + +442 +00:14:18,140 --> 00:14:18,140 + + +443 +00:14:18,140 --> 00:14:18,140 + + +444 +00:14:18,140 --> 00:14:18,140 + + +445 +00:14:18,140 --> 00:14:18,140 + + +446 +00:14:18,140 --> 00:14:18,140 + + +447 +00:14:18,140 --> 00:14:18,140 + + +448 +00:14:18,140 --> 00:14:18,140 + + +449 +00:14:18,140 --> 00:14:18,140 + + +450 +00:14:18,140 --> 00:14:18,140 + + +451 +00:14:18,160 --> 00:14:18,260 +uh, + +452 +00:14:18,460 --> 00:14:19,060 +the Colorado snow bank. + +453 +00:14:19,200 --> 00:14:20,100 +This is 85, + +454 +00:14:20,460 --> 00:14:20,940 +84, + +455 +00:14:21,940 --> 00:14:22,380 +uh, + +456 +00:14:22,520 --> 00:14:23,820 +got laughed at a lot. + +457 +00:14:23,920 --> 00:14:27,440 +Cara snow bank cause skiing in Colorado and, + +458 +00:14:27,500 --> 00:14:27,660 +uh, + +459 +00:14:27,820 --> 00:14:31,220 +tried to sell that idea. + +460 +00:14:31,360 --> 00:14:31,740 +Oh yeah. + +461 +00:14:31,860 --> 00:14:32,200 +People, + +462 +00:14:32,260 --> 00:14:38,300 +people's computers calling other computers and I get snow reports and road reports and all this other stuff. + +463 +00:14:38,420 --> 00:14:41,060 +And they just sort of looked at me and laughed, + +464 +00:14:41,260 --> 00:14:41,860 +you know, + +465 +00:14:41,860 --> 00:14:44,080 +and had to take it on the road and stuff. + +466 +00:14:44,300 --> 00:14:46,060 +And then over a time period, + +467 +00:14:46,140 --> 00:14:47,500 +some of these people who are laughing, + +468 +00:14:47,500 --> 00:14:50,520 +they'll unveil and laugh anymore. + +469 +00:14:50,600 --> 00:14:53,300 +They became gurus and then I was laughing at them. + +470 +00:14:53,480 --> 00:14:55,220 +So yeah. + +471 +00:14:55,600 --> 00:14:57,180 +So those of you don't know, + +472 +00:14:57,260 --> 00:14:58,520 +the BBSs are, + +473 +00:14:58,700 --> 00:15:00,380 +were bulletin board systems and they were, + +474 +00:15:00,400 --> 00:15:03,620 +they were effectively the precursor to the internet. + +475 +00:15:04,060 --> 00:15:04,520 +Um, + +476 +00:15:04,700 --> 00:15:05,200 +especially, + +477 +00:15:05,360 --> 00:15:05,920 +I mean, + +478 +00:15:05,940 --> 00:15:07,420 +you really started seeing the, + +479 +00:15:07,460 --> 00:15:11,240 +where things were going when things like echo mail came up, + +480 +00:15:11,280 --> 00:15:12,040 +became a thing. + +481 +00:15:12,160 --> 00:15:12,640 +If I don't know. + +482 +00:15:12,820 --> 00:15:13,200 +Yeah. + +483 +00:15:13,280 --> 00:15:14,320 +So where you had, + +484 +00:15:14,320 --> 00:15:14,600 +uh, + +485 +00:15:14,740 --> 00:15:17,480 +and different bulletin boards all came out. + +486 +00:15:17,480 --> 00:15:17,480 + + +487 +00:15:17,500 --> 00:15:21,360 +And then you started communicating with one another to share information so that you could do like, + +488 +00:15:21,460 --> 00:15:21,540 +uh, + +489 +00:15:22,240 --> 00:15:22,820 +you know, + +490 +00:15:22,820 --> 00:15:26,340 +it's kind of weird is that you used to have like a, + +491 +00:15:26,340 --> 00:15:26,660 +uh, + +492 +00:15:26,820 --> 00:15:28,220 +think of like your work email. + +493 +00:15:28,540 --> 00:15:28,980 +Yeah. + +494 +00:15:29,040 --> 00:15:29,780 +So you'd be able to, + +495 +00:15:29,820 --> 00:15:32,580 +to log into the BBS and check your individual mail. + +496 +00:15:32,720 --> 00:15:33,720 +And there was generally a, + +497 +00:15:34,500 --> 00:15:34,600 +uh, + +498 +00:15:34,880 --> 00:15:42,780 +a series of posts which were somewhat similar to what Reddit is today to a certain extent where people could comment on and have a conversation. + +499 +00:15:43,240 --> 00:15:46,280 +And then once things like Fido net became a thing, + +500 +00:15:46,280 --> 00:15:57,680 +then those same conversations were then echoed to other bulletin board systems where other people could log into them and also communicate with that particular thread or send mail from one server to another. + +501 +00:15:57,980 --> 00:15:58,740 +And it was, + +502 +00:15:59,000 --> 00:15:59,760 +it, + +503 +00:15:59,820 --> 00:16:03,340 +it definitely was what the internet is now. + +504 +00:16:03,620 --> 00:16:04,140 +Yeah. + +505 +00:16:04,140 --> 00:16:06,460 +As far as you could see the, + +506 +00:16:06,500 --> 00:16:08,000 +the echoes of that, + +507 +00:16:08,080 --> 00:16:08,500 +uh, + +508 +00:16:08,560 --> 00:16:09,520 +sort of a Darwinian, + +509 +00:16:09,560 --> 00:16:10,060 +uh, + +510 +00:16:11,140 --> 00:16:12,100 +precursor to that. + +511 +00:16:12,680 --> 00:16:13,200 +It's, + +512 +00:16:13,200 --> 00:16:14,320 +it was pretty interesting. + +513 +00:16:14,360 --> 00:16:14,560 +And I, + +514 +00:16:14,560 --> 00:16:14,820 +I've, + +515 +00:16:14,900 --> 00:16:19,220 +I found myself hugely fascinated with the bulletin board systems of the back in the day. + +516 +00:16:19,820 --> 00:16:21,880 +And I spent a lot of time doing that, + +517 +00:16:21,880 --> 00:16:22,060 +uh, + +518 +00:16:22,240 --> 00:16:23,040 +even though my, + +519 +00:16:23,080 --> 00:16:25,680 +my father was not terribly happy with it. + +520 +00:16:26,120 --> 00:16:26,600 +Um, + +521 +00:16:26,880 --> 00:16:28,020 +because at the time, + +522 +00:16:28,040 --> 00:16:28,280 +you know, + +523 +00:16:28,280 --> 00:16:28,720 +I was, + +524 +00:16:29,280 --> 00:16:30,060 +I don't know, + +525 +00:16:30,100 --> 00:16:31,800 +12 years old or something like that. + +526 +00:16:31,900 --> 00:16:32,240 +And, + +527 +00:16:32,320 --> 00:16:32,620 +uh, + +528 +00:16:32,840 --> 00:16:34,920 +I kept tearing apart computers to, + +529 +00:16:35,000 --> 00:16:35,460 +to, + +530 +00:16:35,600 --> 00:16:36,060 +you know, + +531 +00:16:36,060 --> 00:16:37,900 +make a bigger system and, + +532 +00:16:37,960 --> 00:16:41,820 +and build my own home network and stuff like that. + +533 +00:16:41,880 --> 00:16:42,060 +And, + +534 +00:16:42,100 --> 00:16:42,340 +uh, + +535 +00:16:42,340 --> 00:16:42,680 +yeah, + +536 +00:16:42,760 --> 00:16:43,180 +he wasn't, + +537 +00:16:43,180 --> 00:16:43,720 +wasn't pleased, + +538 +00:16:43,800 --> 00:16:47,140 +especially because computers back then were really expensive. + +539 +00:16:47,640 --> 00:16:48,000 +Uh, + +540 +00:16:48,160 --> 00:16:49,620 +so I mean that, + +541 +00:16:49,740 --> 00:16:50,020 +that, + +542 +00:16:50,100 --> 00:16:51,940 +that time I broke his computer, + +543 +00:16:52,040 --> 00:16:52,440 +uh, + +544 +00:16:52,580 --> 00:16:54,160 +which I've told the story before where I, + +545 +00:16:54,180 --> 00:16:55,580 +I took apart his computer and broke it. + +546 +00:16:56,200 --> 00:16:56,560 +Um, + +547 +00:16:57,200 --> 00:17:01,320 +and he gave me the carcass of the machine and then put a lock on his door and said, + +548 +00:17:01,480 --> 00:17:01,840 +yeah, + +549 +00:17:01,920 --> 00:17:02,940 +if you want to use a computer again, + +550 +00:17:03,020 --> 00:17:03,920 +you're going to fix this one. + +551 +00:17:04,820 --> 00:17:05,180 +And, + +552 +00:17:05,280 --> 00:17:05,480 +uh, + +553 +00:17:05,600 --> 00:17:06,420 +that's sort of where the, + +554 +00:17:06,420 --> 00:17:07,840 +the computer guru was born. + +555 +00:17:08,240 --> 00:17:08,600 +But, + +556 +00:17:08,980 --> 00:17:09,440 +you know, + +557 +00:17:09,480 --> 00:17:12,020 +you didn't want to drop another three or $4,000, + +558 +00:17:12,020 --> 00:17:12,320 +uh, + +559 +00:17:12,340 --> 00:17:16,120 +on a replacement machine because that was quite a bit of money back then. + +560 +00:17:16,600 --> 00:17:17,600 +And even, + +561 +00:17:17,720 --> 00:17:18,240 +I mean, + +562 +00:17:18,280 --> 00:17:19,320 +by today's standards, + +563 +00:17:19,660 --> 00:17:23,820 +your smartphone is infinitely more powerful than the machines that we were running the + +564 +00:17:23,820 --> 00:17:24,760 +Bolton boards on, + +565 +00:17:24,940 --> 00:17:25,760 +uh, + +566 +00:17:26,080 --> 00:17:27,620 +it more storage and everything, + +567 +00:17:27,820 --> 00:17:28,120 +right? + +568 +00:17:28,180 --> 00:17:29,460 +It was just so much, + +569 +00:17:29,480 --> 00:17:31,940 +it's such a quaint technology, + +570 +00:17:32,240 --> 00:17:34,420 +but I look back upon those days fondly. + +571 +00:17:34,480 --> 00:17:34,820 +Oh, + +572 +00:17:34,840 --> 00:17:35,540 +my first, + +573 +00:17:35,660 --> 00:17:35,800 +uh, + +574 +00:17:35,980 --> 00:17:38,780 +10 megabyte hard drive was a thousand dollars. + +575 +00:17:39,600 --> 00:17:41,440 +And also when you were, + +576 +00:17:41,500 --> 00:17:42,320 +they were all, + +577 +00:17:42,340 --> 00:17:42,820 +they were all modem. + +578 +00:17:42,860 --> 00:17:44,060 +There was no wifi. + +579 +00:17:44,440 --> 00:17:45,380 +So you're tying, + +580 +00:17:45,400 --> 00:17:46,540 +tying up a phone line. + +581 +00:17:46,700 --> 00:17:47,240 +Oh yeah. + +582 +00:17:47,480 --> 00:17:47,920 +Yeah. + +583 +00:17:48,000 --> 00:17:54,240 +I had a separate phone line just for that because nobody could get me off of that lucky off of the Bolton boards. + +584 +00:17:55,320 --> 00:17:55,760 +Um, + +585 +00:17:56,040 --> 00:17:56,600 +I mean, + +586 +00:17:56,620 --> 00:17:57,280 +at first it was, + +587 +00:17:57,280 --> 00:17:57,520 +you know, + +588 +00:17:57,520 --> 00:18:03,560 +somebody picking up the phone and then you see the garbage appear on the screen because somebody started talking or, + +589 +00:18:03,640 --> 00:18:04,080 +you know, + +590 +00:18:04,080 --> 00:18:05,240 +interrupting your communication. + +591 +00:18:05,340 --> 00:18:06,520 +But yeah, + +592 +00:18:06,660 --> 00:18:06,960 +I mean, + +593 +00:18:06,960 --> 00:18:08,860 +that's some old school cool for, + +594 +00:18:08,900 --> 00:18:09,160 +uh, + +595 +00:18:09,180 --> 00:18:09,800 +when it was not, + +596 +00:18:09,800 --> 00:18:10,140 +you know, + +597 +00:18:10,140 --> 00:18:11,720 +basically we were just nerds back then. + +598 +00:18:12,240 --> 00:18:12,240 + + +599 +00:18:12,360 --> 00:18:12,520 +uh, + +600 +00:18:13,040 --> 00:18:13,540 +yeah. + +601 +00:18:13,860 --> 00:18:14,360 +Yeah. + +602 +00:18:14,400 --> 00:18:15,340 +Let me throw something out. + +603 +00:18:15,380 --> 00:18:15,720 +Sure. + +604 +00:18:15,780 --> 00:18:16,540 +Go for it. + +605 +00:18:16,540 --> 00:18:17,440 +Get ready to write. + +606 +00:18:17,620 --> 00:18:19,540 +Here's a great site for everybody. + +607 +00:18:19,840 --> 00:18:22,540 +It's called scam aside.com. + +608 +00:18:22,720 --> 00:18:26,160 +S C A M I C I D E.com. + +609 +00:18:26,640 --> 00:18:27,680 +It's a newsletter. + +610 +00:18:27,900 --> 00:18:29,300 +It's a daily newsletter. + +611 +00:18:29,700 --> 00:18:36,860 +The guy is an attorney and he puts out the latest scams and warnings out there and it's free. + +612 +00:18:36,960 --> 00:18:38,060 +You can get it and, + +613 +00:18:38,200 --> 00:18:38,480 +uh, + +614 +00:18:38,480 --> 00:18:40,460 +you can see what's going on. + +615 +00:18:40,640 --> 00:18:47,540 +So one of the things that we were talking about when we spoke on the phone last week is that I, + +616 +00:18:47,540 --> 00:18:47,700 +you know, + +617 +00:18:47,740 --> 00:18:49,600 +I often don't think about these scams because, + +618 +00:18:49,640 --> 00:18:50,120 +um, + +619 +00:18:50,820 --> 00:18:53,360 +I have insulated myself in such a way. + +620 +00:18:53,400 --> 00:18:54,240 +They don't really see them. + +621 +00:18:54,300 --> 00:18:57,820 +I'm not exposed to them very often other than when a customer comes in and says, + +622 +00:18:57,880 --> 00:18:58,000 +well, + +623 +00:18:58,060 --> 00:18:58,120 +I, + +624 +00:18:58,160 --> 00:18:58,580 +you know, + +625 +00:18:58,580 --> 00:18:59,800 +the scam happened to me. + +626 +00:19:00,500 --> 00:19:00,900 +Um, + +627 +00:19:01,100 --> 00:19:02,440 +so opportunity, + +628 +00:19:02,480 --> 00:19:02,800 +you know, + +629 +00:19:02,800 --> 00:19:04,420 +scams like the yes scam, + +630 +00:19:05,020 --> 00:19:07,220 +which it's not necessarily an online scam. + +631 +00:19:07,280 --> 00:19:08,100 +That's a phone scam. + +632 +00:19:08,100 --> 00:19:15,460 +That a lot of people will inadvertently fall for where someone will call you up on the phone and say, + +633 +00:19:16,060 --> 00:19:16,560 +um, + +634 +00:19:16,760 --> 00:19:17,260 +they, + +635 +00:19:17,260 --> 00:19:19,580 +they can say often little things like, + +636 +00:19:19,620 --> 00:19:20,260 +can you hear me? + +637 +00:19:20,300 --> 00:19:22,240 +But they'll often open with something, + +638 +00:19:22,320 --> 00:19:23,120 +you know, + +639 +00:19:23,120 --> 00:19:23,960 +useful like, + +640 +00:19:23,980 --> 00:19:24,180 +hi, + +641 +00:19:24,200 --> 00:19:26,780 +I'm from blue cross blue shield or something along those lines. + +642 +00:19:27,000 --> 00:19:28,440 +Are you this person? + +643 +00:19:28,480 --> 00:19:34,120 +And they're wanting you to say yes so that they can then take snippets of your conversation. + +644 +00:19:34,700 --> 00:19:35,200 +Uh, + +645 +00:19:35,200 --> 00:19:37,080 +and over the course of the car of the, + +646 +00:19:37,120 --> 00:19:37,820 +uh, + +647 +00:19:37,960 --> 00:19:39,180 +conversation that you have with them, + +648 +00:19:39,240 --> 00:19:45,240 +they can then reorder that in their audio editing platform and have you verbally sign a contract. + +649 +00:19:45,960 --> 00:19:48,440 +And so there's a lot of people that fall for this. + +650 +00:19:48,600 --> 00:19:49,000 +Yeah. + +651 +00:19:49,280 --> 00:19:50,420 +And basically, + +652 +00:19:50,520 --> 00:19:50,820 +you know, + +653 +00:19:50,860 --> 00:19:52,140 +you have to be kind of ruthless. + +654 +00:19:52,260 --> 00:19:53,840 +So if somebody calls you up and says, + +655 +00:19:54,300 --> 00:19:55,880 +I'm so and so are you, + +656 +00:19:56,320 --> 00:19:57,260 +can you hear me? + +657 +00:19:57,260 --> 00:19:58,880 +Or are you this person? + +658 +00:19:59,460 --> 00:19:59,860 +Um, + +659 +00:20:01,220 --> 00:20:01,960 +don't say yes. + +660 +00:20:02,140 --> 00:20:04,940 +That's all that part of social engineering that you see. + +661 +00:20:05,040 --> 00:20:05,180 +Yeah. + +662 +00:20:05,180 --> 00:20:05,180 + + +663 +00:20:05,180 --> 00:20:05,500 +Yeah. + +664 +00:20:05,920 --> 00:20:07,620 +That's a manipulation for sure. + +665 +00:20:08,160 --> 00:20:08,560 +And, + +666 +00:20:08,700 --> 00:20:09,320 +uh, + +667 +00:20:09,640 --> 00:20:10,360 +I just, + +668 +00:20:10,440 --> 00:20:13,600 +I don't talk to anybody on the phone in that way. + +669 +00:20:13,640 --> 00:20:15,000 +Like when people call up and say, + +670 +00:20:15,060 --> 00:20:16,620 +is this so and so I can say, + +671 +00:20:16,720 --> 00:20:17,780 +I'll often just say, + +672 +00:20:17,860 --> 00:20:18,540 +how can I help you? + +673 +00:20:18,740 --> 00:20:19,280 +All right. + +674 +00:20:19,320 --> 00:20:20,780 +I won't say yes or no, + +675 +00:20:20,900 --> 00:20:24,160 +or anything that can be used against me in that way. + +676 +00:20:24,200 --> 00:20:24,800 +And mainly because I, + +677 +00:20:24,820 --> 00:20:26,840 +I need them to authenticate with me. + +678 +00:20:27,120 --> 00:20:27,520 +Right. + +679 +00:20:27,660 --> 00:20:28,720 +I don't know who you are. + +680 +00:20:28,740 --> 00:20:29,340 +You're calling me. + +681 +00:20:29,420 --> 00:20:35,160 +You better prove to me who you are before I say anything that's important or that can potentially get in the way of my conversation. + +682 +00:20:35,160 --> 00:20:35,160 + + +683 +00:20:35,160 --> 00:20:36,520 +You would, + +684 +00:20:36,520 --> 00:20:38,600 +you would also mention in that same conversation, + +685 +00:20:38,920 --> 00:20:41,760 +how could anyone fall for this, + +686 +00:20:41,800 --> 00:20:42,560 +this stuff? + +687 +00:20:42,700 --> 00:20:43,300 +I mean, + +688 +00:20:43,320 --> 00:20:45,840 +you and I and the people listening out there, + +689 +00:20:45,880 --> 00:20:46,500 +how can, + +690 +00:20:46,600 --> 00:20:47,000 +I mean, + +691 +00:20:47,000 --> 00:20:48,560 +it sounds so ridiculous. + +692 +00:20:49,260 --> 00:20:49,740 +Uh, + +693 +00:20:49,900 --> 00:20:52,620 +they want you to go to a federally authorized store, + +694 +00:20:52,900 --> 00:20:55,460 +which is Walmart or target to keep, + +695 +00:20:55,480 --> 00:20:59,280 +pick up a federally authorized voucher to pay for, + +696 +00:20:59,380 --> 00:21:01,660 +which pre-paid credit card or gift card, + +697 +00:21:01,720 --> 00:21:02,580 +gift card, + +698 +00:21:02,600 --> 00:21:03,500 +which is a gift card. + +699 +00:21:03,560 --> 00:21:04,600 +And how can anybody, + +700 +00:21:04,700 --> 00:21:05,060 +and, + +701 +00:21:05,140 --> 00:21:05,140 + + +702 +00:21:05,140 --> 00:21:05,140 + + +703 +00:21:05,140 --> 00:21:05,140 + + +704 +00:21:05,140 --> 00:21:05,140 + + +705 +00:21:05,140 --> 00:21:05,140 + + +706 +00:21:05,140 --> 00:21:05,140 + + +707 +00:21:05,140 --> 00:21:05,140 + + +708 +00:21:05,140 --> 00:21:05,140 + + +709 +00:21:05,140 --> 00:21:05,140 + + +710 +00:21:05,140 --> 00:21:05,140 + + +711 +00:21:05,140 --> 00:21:05,140 + + +712 +00:21:05,140 --> 00:21:05,140 + + +713 +00:21:05,160 --> 00:21:09,120 +but if you listen to these calls on YouTube, + +714 +00:21:09,340 --> 00:21:12,320 +you can see how it can be. + +715 +00:21:12,540 --> 00:21:18,620 +People can be intimidated or the don't have the use of language or they're greedy. + +716 +00:21:18,840 --> 00:21:20,800 +They rely a lot upon greed. + +717 +00:21:21,220 --> 00:21:22,680 +How that can happen. + +718 +00:21:22,840 --> 00:21:23,320 +Well, + +719 +00:21:23,440 --> 00:21:27,340 +I think there's a sort of like a snow blindness that happens, + +720 +00:21:27,440 --> 00:21:28,560 +but it's tech blind, + +721 +00:21:28,740 --> 00:21:29,120 +right? + +722 +00:21:29,200 --> 00:21:31,360 +Where you've got these people that they have no, + +723 +00:21:31,440 --> 00:21:31,920 +no, + +724 +00:21:32,000 --> 00:21:34,120 +it's magic how their computer works. + +725 +00:21:34,220 --> 00:21:35,040 +And so, + +726 +00:21:35,160 --> 00:21:41,480 +So when they are faced with one of these scammers, they just are like, well, I don't know how any of this works. + +727 +00:21:41,540 --> 00:21:46,580 +So it's much easier for them to just take whatever that other person says, no matter how ridiculous it is. + +728 +00:21:46,980 --> 00:21:50,220 +Like, go down to the store and get a gift card and then come back and give me the number. + +729 +00:21:51,100 --> 00:21:58,000 +They're more willing to do that than to go like, well, I don't know how this works, but that just doesn't seem right to me. + +730 +00:21:59,020 --> 00:22:03,060 +And because it's so foreign to them, they might not even understand that it is wrong. + +731 +00:22:03,660 --> 00:22:06,660 +Or that it's not something that should normally happen. + +732 +00:22:07,900 --> 00:22:10,220 +And that's why over the years, you know, I've encouraged people. + +733 +00:22:10,320 --> 00:22:15,140 +If you have, you know, somebody calling you, trying to scam you, send them my way. + +734 +00:22:15,340 --> 00:22:16,220 +I'll deal with them. + +735 +00:22:16,360 --> 00:22:18,960 +And there's even a new one that happened just last week. + +736 +00:22:19,060 --> 00:22:22,220 +It's a Roku call. + +737 +00:22:22,660 --> 00:22:25,640 +A person calls, says they're from Roku. + +738 +00:22:26,080 --> 00:22:32,620 +And you have to now buy their premium service to get Roku for $200. + +739 +00:22:33,740 --> 00:22:35,300 +Plus $5 a month. + +740 +00:22:35,780 --> 00:22:39,620 +But Roku, it's actually called the Premier Service, not Premium. + +741 +00:22:40,280 --> 00:22:42,040 +But that's a new one out there. + +742 +00:22:42,660 --> 00:22:43,140 +Interesting. + +743 +00:22:43,340 --> 00:22:43,780 +Yeah. + +744 +00:22:44,120 --> 00:22:46,140 +Well, it's definitely not a new thing. + +745 +00:22:46,240 --> 00:22:57,740 +You know, as far as like even what we had Tucson Electric Power that's been issuing warnings like every week through the news saying, you know, if somebody calls you and says they're from TEP, they're not. + +746 +00:22:58,080 --> 00:23:00,980 +Or if they show up at your house, they're probably not. + +747 +00:23:01,080 --> 00:23:02,580 +You know, unless they can probably. + +748 +00:23:02,580 --> 00:23:05,280 +They probably authenticate and have ID and all of that stuff. + +749 +00:23:06,340 --> 00:23:08,840 +You know, scamming is it. + +750 +00:23:09,800 --> 00:23:18,600 +I really wish we could just say that nobody was gullible enough to or naive enough or ignorant enough on the subject to fall for these things. + +751 +00:23:18,700 --> 00:23:19,600 +But they do. + +752 +00:23:20,860 --> 00:23:24,580 +And we'll talk about ways that you can protect yourself after this next break here. + +753 +00:23:25,100 --> 00:23:27,700 +So stick around for more of the Computer Guru Show right here on KVOI. + +754 +00:23:27,740 --> 00:23:28,980 +Give us a call if you'd like to be part of the show. + +755 +00:23:29,240 --> 00:23:30,220 +790-2040. + +756 +00:23:30,280 --> 00:23:30,900 +We'll be right back. + +757 +00:23:44,040 --> 00:23:45,960 +We'll be right back. + +758 +00:23:51,780 --> 00:23:56,340 +We'll be right back. + +759 +00:24:15,960 --> 00:24:16,660 +We'll be right back. + +760 +00:24:46,500 --> 00:24:46,980 +We'll be right back. + +761 +00:24:46,980 --> 00:24:46,980 + + +762 +00:24:46,980 --> 00:24:46,980 + + +763 +00:24:46,980 --> 00:24:46,980 + + +764 +00:24:46,980 --> 00:24:46,980 + + +765 +00:24:46,980 --> 00:24:46,980 + + +766 +00:24:46,980 --> 00:24:46,980 + + +767 +00:24:46,980 --> 00:24:46,980 + + +768 +00:24:46,980 --> 00:24:46,980 + + +769 +00:24:46,980 --> 00:24:46,980 + + +770 +00:24:46,980 --> 00:24:46,980 + + +771 +00:24:46,980 --> 00:24:50,980 +There are some ways that we talk about where people can protect themselves from these types of things. + +772 +00:24:52,200 --> 00:24:55,400 +One of which is, you know, just be skeptical. + +773 +00:24:56,040 --> 00:24:57,180 +Really be skeptical. + +774 +00:24:57,200 --> 00:25:01,920 +Like, don't provide credit card information for somebody who calls you. + +775 +00:25:02,060 --> 00:25:08,980 +Now, I mean, if you know who you're dealing with, right, and they can properly authenticate with you, right, + +776 +00:25:09,000 --> 00:25:15,680 +and you've called them at a number that you know is definitely them and you want to initiate some type of payment that way, sure. + +777 +00:25:15,960 --> 00:25:21,760 +But if somebody calls you and says, you know what, I think you need to give us money, you should probably just say no. + +778 +00:25:23,380 --> 00:25:27,180 +And you can also join the fight, you know, as far as that type of stuff is concerned. + +779 +00:25:28,560 --> 00:25:32,740 +And we've talked about this before, which is waste their time as much as possible. + +780 +00:25:32,860 --> 00:25:38,000 +If you've got the time, you know, most of the people that are going to fall for this are probably retired anyway. + +781 +00:25:38,720 --> 00:25:45,840 +So there's a great chance that if you need a new hobby, your hobby can be just wasting the time of somebody trying to. + +782 +00:25:45,840 --> 00:25:50,760 +Scam you and take as long as possible and make them repeat themselves as many times as you can. + +783 +00:25:52,780 --> 00:26:08,260 +What are your tips as far as, you know, what should people be on the lookout for and ways that you think that they can either contribute towards the cause or ways that they can just know that they're trying. + +784 +00:26:08,360 --> 00:26:10,540 +Somebody's trying to scam them in some way or another. + +785 +00:26:10,720 --> 00:26:13,320 +They just it just doesn't make sense. + +786 +00:26:13,560 --> 00:26:15,240 +I mean, what they're trying to offer. + +787 +00:26:16,020 --> 00:26:16,620 +Oh, yeah. + +788 +00:26:16,640 --> 00:26:20,200 +You want a free cruise, but you have to pay these charges or whatever. + +789 +00:26:21,100 --> 00:26:22,360 +You're listening to the show. + +790 +00:26:22,760 --> 00:26:24,040 +You've got the Internet. + +791 +00:26:24,220 --> 00:26:25,760 +You've got the power of the Internet. + +792 +00:26:25,940 --> 00:26:27,080 +You've got the power of Google. + +793 +00:26:27,380 --> 00:26:28,680 +Just Google it up. + +794 +00:26:29,080 --> 00:26:30,840 +You know what they're trying to say. + +795 +00:26:30,900 --> 00:26:32,140 +Oh, what company are you with? + +796 +00:26:32,660 --> 00:26:33,620 +Repeat that again. + +797 +00:26:34,880 --> 00:26:36,760 +Oftentimes you can just type in the phone number they're calling. + +798 +00:26:37,000 --> 00:26:38,600 +You can type in the phone number. + +799 +00:26:38,640 --> 00:26:42,160 +There's a service online that's called bad numbers dot. + +800 +00:26:42,200 --> 00:26:43,220 +I.N.F.O. + +801 +00:26:44,240 --> 00:26:45,600 +You can verify. + +802 +00:26:45,840 --> 00:26:46,400 +You can verify through that. + +803 +00:26:47,400 --> 00:26:50,240 +And if they say they're with the company, take a name and number down. + +804 +00:26:50,740 --> 00:26:56,520 +Find a known good number for that company and call that company. + +805 +00:26:56,840 --> 00:27:02,460 +And even as you well know, they can really spoof and social engineer just from your bank. + +806 +00:27:02,640 --> 00:27:08,400 +It looks like your bank is asking you to like a phishing experiment, phishing experiment or spear phishing. + +807 +00:27:08,400 --> 00:27:15,720 +Even spear phishing is where they have your contact information, especially with all these numbers. + +808 +00:27:15,840 --> 00:27:19,640 +And sites that have been compromised so they can directly say Mr. + +809 +00:27:19,820 --> 00:27:19,980 +Mrs. + +810 +00:27:20,120 --> 00:27:20,520 +Jones. + +811 +00:27:20,720 --> 00:27:21,440 +Thanks, Equifax. + +812 +00:27:21,720 --> 00:27:22,280 +Yeah. + +813 +00:27:22,400 --> 00:27:24,420 +And hey, Target also. + +814 +00:27:24,860 --> 00:27:24,960 +Right. + +815 +00:27:25,120 --> 00:27:25,940 +Home Depot. + +816 +00:27:26,160 --> 00:27:26,880 +Home Depot. + +817 +00:27:26,900 --> 00:27:28,380 +I mean, the list goes on for. + +818 +00:27:28,760 --> 00:27:31,200 +So just hang up. + +819 +00:27:31,500 --> 00:27:33,360 +Call the known good. + +820 +00:27:33,420 --> 00:27:34,920 +Turn your credit card over. + +821 +00:27:35,040 --> 00:27:35,800 +Call them. + +822 +00:27:36,240 --> 00:27:42,460 +And then to go to help the cause, which is time up. + +823 +00:27:42,460 --> 00:27:43,440 +Don't hang up. + +824 +00:27:43,660 --> 00:27:45,420 +Is just talk to them. + +825 +00:27:45,440 --> 00:27:45,820 +Yeah. + +826 +00:27:45,840 --> 00:27:46,440 +I don't hear you. + +827 +00:27:46,460 --> 00:27:47,080 +What did you say? + +828 +00:27:47,200 --> 00:27:52,040 +If you want ideas on how to time up, go to YouTube. + +829 +00:27:52,160 --> 00:27:54,220 +Go look at scam baiting. + +830 +00:27:54,220 --> 00:27:57,100 +Go look at IRS scams. + +831 +00:27:58,260 --> 00:27:59,660 +You'll find them all there. + +832 +00:27:59,720 --> 00:28:00,720 +Hundreds of thousands. + +833 +00:28:01,240 --> 00:28:03,480 +Some are enjoyable and pleasurable. + +834 +00:28:03,580 --> 00:28:06,360 +There's cartoons and funny names. + +835 +00:28:07,200 --> 00:28:14,740 +We have Wonder Woman calling with a voice changer and just all kinds of other people. + +836 +00:28:14,880 --> 00:28:15,140 +Yeah. + +837 +00:28:15,140 --> 00:28:15,660 +There's a lot. + +838 +00:28:15,660 --> 00:28:16,740 +There's a lot of sound boards that are out there. + +839 +00:28:16,760 --> 00:28:17,180 +Sound boards. + +840 +00:28:17,360 --> 00:28:17,620 +Yeah. + +841 +00:28:19,000 --> 00:28:22,720 +There's one of them that is just, it's a riot to listen to. + +842 +00:28:22,760 --> 00:28:28,540 +It's using the Arnold Schwarzenegger sound board to respond to people trying to scam them. + +843 +00:28:29,720 --> 00:28:32,240 +Or it's asking things like, who is your daddy and what does he do? + +844 +00:28:32,760 --> 00:28:39,940 +You know, it's pretty, it's great if you are, if you're cognizant of these things, if you can recognize the scams. + +845 +00:28:39,960 --> 00:28:44,480 +And it's just a lot of fun to watch them waste the time of the scammers. + +846 +00:28:44,820 --> 00:28:45,180 +Yeah. + +847 +00:28:45,280 --> 00:28:45,520 +Yeah. + +848 +00:28:45,520 --> 00:28:45,640 +Yeah. + +849 +00:28:45,640 --> 00:28:45,640 + + +850 +00:28:45,640 --> 00:28:45,640 + + +851 +00:28:45,640 --> 00:28:45,640 + + +852 +00:28:45,640 --> 00:28:45,640 + + +853 +00:28:45,640 --> 00:28:45,640 + + +854 +00:28:45,640 --> 00:28:45,640 + + +855 +00:28:45,640 --> 00:28:45,640 + + +856 +00:28:45,640 --> 00:28:45,640 + + +857 +00:28:45,640 --> 00:28:45,640 + + +858 +00:28:45,640 --> 00:28:45,640 + + +859 +00:28:45,640 --> 00:28:45,640 + + +860 +00:28:45,640 --> 00:28:45,640 + + +861 +00:28:45,640 --> 00:28:45,640 + + +862 +00:28:45,640 --> 00:28:45,640 + + +863 +00:28:45,660 --> 00:28:55,680 +There's the other side of that too, where there's people that are taking it to the scammers and basically being destructive to the other side. + +864 +00:28:55,820 --> 00:29:00,220 +As far as they'll get somebody to remote into their computer. + +865 +00:29:01,300 --> 00:29:08,160 +And one of the ones that stood out to me was that they left a file that looked like a Bitcoin wallet in a folder on their desktop. + +866 +00:29:09,620 --> 00:29:15,380 +And, but that file actually was a, basically a Trojan. + +867 +00:29:15,660 --> 00:29:22,160 +It was a way for, you know, he knew that the scammer would snatch that file. + +868 +00:29:22,300 --> 00:29:22,600 +Oh yeah. + +869 +00:29:22,720 --> 00:29:24,340 +And take it off his computer. + +870 +00:29:24,480 --> 00:29:32,400 +So, you know, he left the guy into his computer and he saw the guy drag that file off onto his own desktop. + +871 +00:29:32,840 --> 00:29:36,380 +And when he ran it, he had remote control of that guy's computer. + +872 +00:29:36,720 --> 00:29:36,980 +Sure. + +873 +00:29:37,080 --> 00:29:41,900 +And then really started scaring them because he was like, yeah, well, I see your background is this. + +874 +00:29:41,940 --> 00:29:45,640 +And, you know, I see what software you're using to do all of this. + +875 +00:29:45,660 --> 00:29:54,500 +And basically started refunding people's money from the other side, you know, locked that user out of his own computer and said, refund, refund, refund. + +876 +00:29:55,000 --> 00:30:00,220 +And, and, and before they managed to turn the computer off, refunded about $20,000 worth of money. + +877 +00:30:00,360 --> 00:30:03,040 +And that's good on him. + +878 +00:30:03,120 --> 00:30:09,500 +Now he's legitimately saying, well, you know, I don't know if I should be open on this YouTube because technically what I did is illegal. + +879 +00:30:10,020 --> 00:30:10,460 +Right. + +880 +00:30:10,520 --> 00:30:15,420 +As far as, as remote controlling somebody else's computer without their permission. + +881 +00:30:16,040 --> 00:30:18,060 +But that's the same thing they're doing to you, right? + +882 +00:30:18,120 --> 00:30:21,300 +Because the permission that you give them is under false pretense. + +883 +00:30:22,360 --> 00:30:39,980 +But it's not like you're going to be able to call and say, well, some random company, most likely in India, took control of my computer and stole information or, you know, took money from my bank account or, you know, the biggest red flag of all, asked me to pay in a non-traditional currency. + +884 +00:30:40,460 --> 00:30:40,860 +Sure. + +885 +00:30:40,900 --> 00:30:44,600 +As far as the gift cards or, or, or. + +886 +00:30:45,660 --> 00:30:52,480 +Through some type of a cryptocurrency exchange or some type of not regular refundable cash money. + +887 +00:30:52,660 --> 00:30:52,840 +Sure. + +888 +00:30:53,860 --> 00:30:55,480 +So it's just be on the lookout. + +889 +00:30:55,660 --> 00:30:59,760 +And if you're, you're right, if it doesn't make sense, if it seems like, well, you know what? + +890 +00:30:59,960 --> 00:31:02,560 +I don't feel comfortable, you know, listen to your spidey senses. + +891 +00:31:02,760 --> 00:31:03,220 +All right. + +892 +00:31:03,240 --> 00:31:08,540 +If it, if it feels wrong, like you don't know what's going on here, then you should probably just back out of that situation. + +893 +00:31:08,820 --> 00:31:14,940 +The other thing that want people could do is if you're a church or where you have relatives, + +894 +00:31:14,940 --> 00:31:21,300 +older relatives or people who are having problems, challenges, I'll put it that way. + +895 +00:31:22,040 --> 00:31:29,220 +Check on them, make sure that what they're doing and inform them of this stuff because they don't know. + +896 +00:31:29,700 --> 00:31:33,480 +And there's, there's a couple of other ways that you can sort of passively protect yourself. + +897 +00:31:33,600 --> 00:31:34,420 +We'll talk about those in a moment. + +898 +00:31:34,460 --> 00:31:35,480 +Let's talk to Mike. + +899 +00:31:35,680 --> 00:31:36,180 +We got a caller. + +900 +00:31:36,220 --> 00:31:36,560 +Hello, Mike. + +901 +00:31:36,620 --> 00:31:36,900 +How are you? + +902 +00:31:37,080 --> 00:31:37,480 +Good. + +903 +00:31:37,600 --> 00:31:42,300 +A while back, my dad got a so-called phone call from his grandson. + +904 +00:31:42,460 --> 00:31:44,300 +I've never had a child or my sister. + +905 +00:31:44,940 --> 00:31:50,020 +And this supposed grandchild asked my dad to wire him some money because he was in a car accident. + +906 +00:31:51,240 --> 00:31:51,680 +Yeah. + +907 +00:31:51,780 --> 00:31:55,400 +And my dad obviously didn't fall for it, but I just thought it was interesting. + +908 +00:31:55,580 --> 00:31:59,680 +My folks called and said, we got a call from your son saying he needed money. + +909 +00:32:00,580 --> 00:32:01,020 +Yeah. + +910 +00:32:01,480 --> 00:32:01,920 +Yeah. + +911 +00:32:01,960 --> 00:32:07,220 +The grandchild in trouble of some type or another is, is definitely a larger scam that's out there. + +912 +00:32:08,000 --> 00:32:09,880 +And a lot of people fall for it. + +913 +00:32:09,960 --> 00:32:11,700 +Man, so many people fall for those types of things. + +914 +00:32:11,700 --> 00:32:14,760 +And I've heard situations where this one woman. + +915 +00:32:14,940 --> 00:32:19,120 +I heard on the radio lost her life savings over some of these scams. + +916 +00:32:19,640 --> 00:32:20,080 +Yeah. + +917 +00:32:20,100 --> 00:32:22,160 +Well, I mean, there's, there's a lot of money involved in it. + +918 +00:32:22,220 --> 00:32:28,100 +You know, you were saying that, um, that Jay, that there was, uh, even local people have lost thousands and thousands of dollars. + +919 +00:32:28,100 --> 00:32:32,900 +Down in, in the past few months down in Green Valley, one gentleman lost $50,000. + +920 +00:32:33,560 --> 00:32:34,000 +Yikes. + +921 +00:32:34,080 --> 00:32:37,740 +And one woman lost $54,000. + +922 +00:32:38,700 --> 00:32:40,060 +And that's recent. + +923 +00:32:40,320 --> 00:32:42,860 +And there's very little recourse depending on how that's. + +924 +00:32:42,880 --> 00:32:43,380 +It's gone. + +925 +00:32:43,460 --> 00:32:43,700 +Yeah. + +926 +00:32:43,740 --> 00:32:44,500 +How you deal with that. + +927 +00:32:45,520 --> 00:33:00,040 +Um, and that's why when you use things like non-traditional currencies and, and, uh, when you're dealing with, um, you know, you're being overly trusting, I think when it comes to a lot of people, uh, you don't just take somebody's word for it. + +928 +00:33:00,100 --> 00:33:02,100 +It's definitely not a good idea. + +929 +00:33:02,200 --> 00:33:02,580 +Yeah. + +930 +00:33:02,640 --> 00:33:09,100 +And, and especially with the older generation, they will, they are more likely to fall for the heartstrings type things. + +931 +00:33:09,200 --> 00:33:09,600 +Right. + +932 +00:33:09,700 --> 00:33:11,580 +Like, like the Nigerian Prince scam. + +933 +00:33:11,640 --> 00:33:14,500 +Like the, the friend or a relative. + +934 +00:33:14,500 --> 00:33:17,540 +That's in jail or in another country and stranded. + +935 +00:33:17,800 --> 00:33:18,800 +Or you'll get the email. + +936 +00:33:19,420 --> 00:33:19,880 +Yeah. + +937 +00:33:19,980 --> 00:33:27,240 +Uh, and it's just, it's, you, you have to be more cynical than that when it comes to the technology. + +938 +00:33:27,420 --> 00:33:27,880 +Right. + +939 +00:33:27,920 --> 00:33:28,140 +Because. + +940 +00:33:28,760 --> 00:33:29,220 +Exactly. + +941 +00:33:29,440 --> 00:33:34,940 +There's a lot of people that fall for very, very sort of obvious things when you look back on it. + +942 +00:33:35,040 --> 00:33:39,680 +And another major fraud, especially with the older community is a Medicare fraud. + +943 +00:33:39,980 --> 00:33:44,420 +You will get a call or something that says, oh, free back, back break. + +944 +00:33:44,500 --> 00:33:46,680 +Free this, free that for medical stuff. + +945 +00:33:46,920 --> 00:33:47,140 +Right. + +946 +00:33:47,320 --> 00:33:49,900 +And it's just outright Medicare fraud. + +947 +00:33:49,940 --> 00:33:53,040 +They want all your numbers and it's ID theft as well. + +948 +00:33:53,240 --> 00:33:56,040 +They want all your numbers, your insurances and stuff like that. + +949 +00:33:56,200 --> 00:34:05,960 +Don't know if you even get your back brace or your arm stuff, but they've got all your numbers and they've got your Medicare number, which is your social security number. + +950 +00:34:06,220 --> 00:34:06,500 +Right. + +951 +00:34:07,060 --> 00:34:14,420 +And, and believe me, any of these places that if, if Wilford Brimley is saying that you should probably check into it. + +952 +00:34:14,420 --> 00:34:16,160 +That may be okay. + +953 +00:34:16,240 --> 00:34:16,860 +Is he still alive? + +954 +00:34:17,060 --> 00:34:19,060 +Did we determine whether or not Wilford Brimley is still alive? + +955 +00:34:19,220 --> 00:34:19,460 +I don't know. + +956 +00:34:19,460 --> 00:34:19,840 +I don't know. + +957 +00:34:20,060 --> 00:34:25,000 +But they're not going to call you at home and offer you free stuff. + +958 +00:34:25,240 --> 00:34:25,540 +Right. + +959 +00:34:25,620 --> 00:34:30,100 +Even the thing that you see on TV about the get your Medicare approved rascal scooter. + +960 +00:34:30,380 --> 00:34:30,920 +And yes, he is. + +961 +00:34:31,120 --> 00:34:31,660 +Okay, cool. + +962 +00:34:32,700 --> 00:34:33,600 +I'm glad that he is. + +963 +00:34:33,660 --> 00:34:35,720 +It's probably because of those diabetes testing supplies. + +964 +00:34:36,080 --> 00:34:36,620 +Yeah, that's it. + +965 +00:34:37,760 --> 00:34:44,160 +But if, you know, even if you're going to get your free rascal, right, that they talk about on the, on the, on television. + +966 +00:34:44,420 --> 00:34:45,680 +At three in the morning. + +967 +00:34:46,820 --> 00:34:49,580 +That's still you calling them, not them calling you. + +968 +00:34:50,940 --> 00:34:56,440 +And that whole, it's just, it's really sad to me that people fall for these types of things. + +969 +00:34:56,520 --> 00:34:58,320 +And like I said, I don't even see them anymore. + +970 +00:34:58,600 --> 00:35:07,980 +Well, I even have received calls from, oh yeah, we're returning your call on your medical alarm or your alarm, which I've never called on. + +971 +00:35:08,080 --> 00:35:10,380 +But it starts out, hey, we're returning your call. + +972 +00:35:11,180 --> 00:35:13,960 +So if somebody is confused a little bit. + +973 +00:35:13,960 --> 00:35:15,540 +That maybe I made a call. + +974 +00:35:15,640 --> 00:35:16,320 +I don't know. + +975 +00:35:17,020 --> 00:35:17,380 +Wow. + +976 +00:35:17,460 --> 00:35:18,320 +Praying on the dimension. + +977 +00:35:18,940 --> 00:35:20,000 +That's, that's no good. + +978 +00:35:20,100 --> 00:35:21,000 +It's no good at all. + +979 +00:35:21,400 --> 00:35:21,840 +All right. + +980 +00:35:21,860 --> 00:35:24,220 +Let's take another break because we've got to fit another one in before the end of the hour here. + +981 +00:35:24,300 --> 00:35:26,460 +And we'll be back right after these messages. + +982 +00:35:29,120 --> 00:35:29,480 +Bye. + +983 +00:35:31,140 --> 00:35:31,500 +Bye. + +984 +00:35:32,880 --> 00:35:33,240 +Bye. + +985 +00:35:33,520 --> 00:35:33,880 +Bye. + +986 +00:35:34,500 --> 00:35:34,860 +Bye. + +987 +00:35:34,960 --> 00:35:35,320 +Bye. + +988 +00:35:35,320 --> 00:35:35,500 +Bye. + +989 +00:35:36,300 --> 00:35:36,660 +Bye. + +990 +00:35:36,760 --> 00:35:36,960 +Bye. + +991 +00:35:36,960 --> 00:35:37,000 +Bye. + +992 +00:35:37,000 --> 00:35:37,040 +Bye. + +993 +00:35:37,080 --> 00:35:37,080 + + +994 +00:35:37,560 --> 00:35:37,920 +Bye. + +995 +00:35:38,040 --> 00:35:38,040 + + +996 +00:35:39,040 --> 00:35:39,400 +Bye. + +997 +00:35:39,660 --> 00:35:39,840 +Bye. + +998 +00:35:40,760 --> 00:35:41,120 +Bye. + +999 +00:35:41,120 --> 00:35:41,480 +Bye. + +1000 +00:35:41,480 --> 00:35:41,480 + + +1001 +00:35:41,480 --> 00:35:41,480 + + +1002 +00:35:41,480 --> 00:35:41,580 +Bye. + +1003 +00:35:42,000 --> 00:35:42,360 +Bye. + +1004 +00:35:42,660 --> 00:35:43,020 +Bye. + +1005 +00:35:43,560 --> 00:35:43,920 +Bye. + +1006 +00:35:43,920 --> 00:35:43,920 + + +1007 +00:35:43,920 --> 00:35:43,920 + + +1008 +00:35:43,920 --> 00:35:43,920 + + +1009 +00:35:43,920 --> 00:35:43,920 + + +1010 +00:35:46,600 --> 00:35:46,680 +Bye. + +1011 +00:35:52,580 --> 00:35:52,660 +Bye. + +1012 +00:35:55,540 --> 00:35:55,540 + + +1013 +00:35:56,560 --> 00:35:56,640 +Bye. + +1014 +00:35:56,640 --> 00:35:56,640 + + +1015 +00:35:56,640 --> 00:35:56,640 + + +1016 +00:35:56,640 --> 00:35:56,640 + + +1017 +00:35:56,640 --> 00:35:56,640 + + +1018 +00:35:56,640 --> 00:35:56,640 + + +1019 +00:35:56,640 --> 00:35:56,640 + + +1020 +00:35:56,640 --> 00:35:56,640 + + +1021 +00:35:56,640 --> 00:35:56,640 + + +1022 +00:35:57,020 --> 00:35:57,100 +Bye. + +1023 +00:35:57,100 --> 00:35:57,100 + + +1024 +00:35:57,100 --> 00:35:57,100 + + +1025 +00:35:57,100 --> 00:35:57,140 +Bye. + +1026 +00:35:57,140 --> 00:35:57,140 + + +1027 +00:35:57,140 --> 00:35:57,140 + + +1028 +00:35:57,140 --> 00:35:57,140 + + +1029 +00:35:57,140 --> 00:35:57,140 + + +1030 +00:35:57,140 --> 00:35:57,140 + + +1031 +00:35:57,140 --> 00:35:57,140 + + +1032 +00:35:57,140 --> 00:35:57,140 + + +1033 +00:35:57,140 --> 00:35:57,140 + + +1034 +00:35:57,140 --> 00:35:57,200 +Bye. + +1035 +00:35:57,220 --> 00:35:57,220 + + +1036 +00:35:57,240 --> 00:35:57,260 +Bye. + +1037 +00:35:57,280 --> 00:35:57,300 +Bye. + +1038 +00:35:57,320 --> 00:35:57,340 +Bye. + +1039 +00:35:57,340 --> 00:35:57,360 +Bye. + +1040 +00:35:57,360 --> 00:35:57,380 +Bye. + +1041 +00:35:57,400 --> 00:35:57,420 +Bye. + +1042 +00:35:57,440 --> 00:35:57,480 +Bye. + +1043 +00:35:57,500 --> 00:35:57,520 +Bye. + +1044 +00:35:57,540 --> 00:35:57,560 +Bye. + +1045 +00:35:57,600 --> 00:35:57,620 +Bye. + +1046 +00:35:57,660 --> 00:35:57,660 + + +1047 +00:35:57,660 --> 00:35:57,660 + + +1048 +00:35:57,680 --> 00:35:57,680 + + +1049 +00:35:57,700 --> 00:35:57,760 +Bye. + +1050 +00:35:57,780 --> 00:35:57,800 +Bye. + +1051 +00:35:57,960 --> 00:35:57,960 + + +1052 +00:35:57,980 --> 00:35:58,000 +Bye. + +1053 +00:35:58,020 --> 00:35:58,040 +Bye. + +1054 +00:35:58,160 --> 00:35:58,160 + + +1055 +00:35:58,160 --> 00:35:58,160 + + +1056 +00:35:58,160 --> 00:35:58,160 + + +1057 +00:35:58,160 --> 00:35:58,160 + + +1058 +00:35:58,160 --> 00:35:58,160 + + +1059 +00:35:58,160 --> 00:35:58,160 + + +1060 +00:35:58,160 --> 00:35:58,220 +Bye. + +1061 +00:35:58,840 --> 00:35:58,920 +Bye. + +1062 +00:36:00,180 --> 00:36:00,260 +Bye. + +1063 +00:36:07,460 --> 00:36:07,540 +Bye. + +1064 +00:36:08,900 --> 00:36:08,980 +Bye. + +1065 +00:36:08,980 --> 00:36:11,500 +On AM 1030, KVOY The Voice. + +1066 +00:36:22,960 --> 00:36:25,960 +Mike Swanson, your computer guru, is just a click away. + +1067 +00:36:26,240 --> 00:36:28,480 +Listen and watch at gurushow.com. + +1068 +00:36:28,880 --> 00:36:30,740 +This is the Computer Guru Show. + +1069 +00:36:31,340 --> 00:36:33,960 +Welcome to the Computer Guru Show. + +1070 +00:36:34,220 --> 00:36:35,900 +Give us a call if you'd like to be part of the show. + +1071 +00:36:35,900 --> 00:36:41,860 +Radio 79024, we talked about being scammed, or if you have any experience with that. + +1072 +00:36:41,960 --> 00:36:45,100 +But if there's ways that you can sort of passively protect yourself, + +1073 +00:36:45,940 --> 00:36:52,920 +one of which is please stop using Internet Explorer or Edge immediately. + +1074 +00:36:53,480 --> 00:36:56,900 +And if you're going to use another browser, such as any of the WebKit browsers, + +1075 +00:36:57,040 --> 00:37:02,260 +that would be Chrome, Firefox, Opera, any of those, please install an ad blocker. + +1076 +00:37:02,320 --> 00:37:03,600 +We like uBlock Origin. + +1077 +00:37:03,840 --> 00:37:05,700 +That's the letter U, B-L-O-C-K. + +1078 +00:37:05,900 --> 00:37:07,080 +Second word, Origin. + +1079 +00:37:07,700 --> 00:37:13,280 +It is a beautiful plug-in for the WebKit-style browsers, the Mozilla-style browsers, + +1080 +00:37:13,440 --> 00:37:19,500 +so that that way you're just way less likely to see any of those pop-ups on your screen to begin with, + +1081 +00:37:19,540 --> 00:37:22,560 +especially ones that lock your computer and talk to you and tell you, + +1082 +00:37:23,420 --> 00:37:27,160 +hey, your machine is at risk or it's been compromised. + +1083 +00:37:27,600 --> 00:37:32,960 +And by the way, if you do see one of those compromised web pages that come up that starts talking at you, + +1084 +00:37:33,460 --> 00:37:34,340 +just close it. + +1085 +00:37:34,560 --> 00:37:35,040 +All right? + +1086 +00:37:35,140 --> 00:37:35,880 +And a lot of times... + +1087 +00:37:35,900 --> 00:37:40,140 +Sometimes they'll say, well, if you're in Internet Explorer, you can't close it, which is true. + +1088 +00:37:40,240 --> 00:37:43,920 +You just cannot, can't stop it if you're in Internet Explorer. + +1089 +00:37:44,600 --> 00:37:49,340 +But if you're in the other browsers, when you close it, it'll pop back up again, + +1090 +00:37:49,440 --> 00:37:52,460 +and then there'll be a checkbox that says, don't show me this message again. + +1091 +00:37:53,060 --> 00:37:55,720 +And if you put the little checkbox in there and close it, it's gone. + +1092 +00:37:55,920 --> 00:37:59,580 +Just close the browser or reboot the computer, and you won't have to deal with that anymore. + +1093 +00:38:00,720 --> 00:38:04,640 +And also, pay attention to what you're going to as far as the site. + +1094 +00:38:04,740 --> 00:38:05,880 +Most of the time that you see... + +1095 +00:38:05,900 --> 00:38:09,160 +Most of the time that you see those type of lock screens are because of a malformed address. + +1096 +00:38:09,460 --> 00:38:16,780 +Like you inadvertently typed Googled or you mistyped a domain + +1097 +00:38:16,780 --> 00:38:21,380 +because they will go and buy all of these common mistyping of domains. + +1098 +00:38:21,960 --> 00:38:24,440 +Yahoo is one of the bigger ones. + +1099 +00:38:24,900 --> 00:38:32,980 +Like if you mistype one of the O's or you're like Y-A-H-O instead of the two O's, + +1100 +00:38:33,080 --> 00:38:35,140 +you'll likely end up at a scam site. + +1101 +00:38:35,260 --> 00:38:35,540 +Yep. + +1102 +00:38:35,900 --> 00:38:39,280 +So just be careful and put an ad blocker on your machine. + +1103 +00:38:39,380 --> 00:38:40,020 +Make sure you have... + +1104 +00:38:40,740 --> 00:38:45,100 +We like the paid version of Malwarebytes and any free antivirus that is reputable, + +1105 +00:38:45,660 --> 00:38:48,960 +usually something like Avast or something along those lines, + +1106 +00:38:49,100 --> 00:38:51,500 +then you're much more likely to keep yourself safe. + +1107 +00:38:53,560 --> 00:38:55,740 +Also, just stay on top of this stuff. + +1108 +00:38:55,840 --> 00:38:57,960 +You can, like Jay was talking about before, + +1109 +00:38:58,060 --> 00:39:01,440 +you can view a lot of these types of scams to see how they operate, + +1110 +00:39:01,620 --> 00:39:05,280 +and you might actually get some entertainment value out of it, + +1111 +00:39:05,280 --> 00:39:06,220 +because they are kind of funny. + +1112 +00:39:07,580 --> 00:39:10,320 +By searching for scam baiting on YouTube, + +1113 +00:39:10,560 --> 00:39:15,280 +it's not a bad way to at least educate yourself in some way or another. + +1114 +00:39:16,100 --> 00:39:17,820 +And you wanted to mention the sites, + +1115 +00:39:17,960 --> 00:39:24,240 +the scamicide.com, badnumbers.info, and scammer.info, + +1116 +00:39:24,340 --> 00:39:29,260 +where you can go and get more information about other current scams that are out there. + +1117 +00:39:29,440 --> 00:39:31,460 +And the one thing I wanted to add that you add, + +1118 +00:39:31,600 --> 00:39:33,800 +you said about rebooting, + +1119 +00:39:33,860 --> 00:39:35,100 +make sure you're not... + +1120 +00:39:35,280 --> 00:39:37,240 +putting your computer to sleep, + +1121 +00:39:37,360 --> 00:39:38,900 +because that won't kill it. + +1122 +00:39:39,000 --> 00:39:40,280 +You have to actually... + +1123 +00:39:40,280 --> 00:39:44,960 +What we have found is you put the finger down on the power for 15 seconds + +1124 +00:39:44,960 --> 00:39:46,640 +to make sure it's all the way down. + +1125 +00:39:47,560 --> 00:39:50,120 +Yeah, because sleep definitely is not going to solve the problem. + +1126 +00:39:50,520 --> 00:39:50,820 +No, no. + +1127 +00:39:51,280 --> 00:39:54,280 +And if you're in a situation where you're an Internet explorer + +1128 +00:39:54,280 --> 00:39:55,680 +and you want a quick way out of it, + +1129 +00:39:55,720 --> 00:39:58,240 +if you hold down the Alt key on your keyboard and press F4, + +1130 +00:39:58,380 --> 00:40:00,660 +that will close the browser and make it go away. + +1131 +00:40:01,940 --> 00:40:04,680 +And then you can properly reboot your computer, if you like, + +1132 +00:40:04,760 --> 00:40:05,160 +by doing... + +1133 +00:40:05,160 --> 00:40:08,280 +you know, start the power icon and reboot. + +1134 +00:40:08,420 --> 00:40:10,060 +If you're in Windows 10, if you're in Windows 7, + +1135 +00:40:10,100 --> 00:40:11,040 +start, shut down, restart. + +1136 +00:40:12,900 --> 00:40:15,960 +Or, you know, just hold the power button down until it shuts off. + +1137 +00:40:16,040 --> 00:40:17,900 +Or if you're on a desktop, just unplug it. + +1138 +00:40:18,080 --> 00:40:20,760 +Now, that's not a good idea to do to your machine very often, + +1139 +00:40:20,820 --> 00:40:23,220 +so please don't do that unless it's important. + +1140 +00:40:24,100 --> 00:40:26,080 +You know, like you're stuck in some way. + +1141 +00:40:27,180 --> 00:40:30,460 +But then, if you need a second opinion on whether or not + +1142 +00:40:31,160 --> 00:40:32,880 +something harmful has happened to your computer + +1143 +00:40:32,880 --> 00:40:35,140 +or you suspect that there is other bad things, + +1144 +00:40:35,160 --> 00:40:35,840 +bad stuff going on, + +1145 +00:40:35,900 --> 00:40:37,640 +give us a call down at the shop at 304-8300. + +1146 +00:40:37,860 --> 00:40:39,840 +We will happily talk you through it and get some more information. + +1147 +00:40:40,720 --> 00:40:42,380 +And if nothing's wrong, we'll just tell you, + +1148 +00:40:42,440 --> 00:40:43,500 +hey, nothing's wrong, no big deal. + +1149 +00:40:43,680 --> 00:40:45,900 +But if you need to bring it in, we're always here to help. + +1150 +00:40:47,100 --> 00:40:48,740 +Did you have any other information you wanted to hand out + +1151 +00:40:48,740 --> 00:40:49,820 +before we end the show here? + +1152 +00:40:50,000 --> 00:40:52,180 +No, you covered it up and down. + +1153 +00:40:52,600 --> 00:40:54,520 +All right, well, thank you very much for coming in, Jay. + +1154 +00:40:54,580 --> 00:40:56,560 +I very much appreciate you taking the time to do that. + +1155 +00:40:57,120 --> 00:41:00,040 +And I hope that people out there have found + +1156 +00:41:00,040 --> 00:41:02,260 +some type of informative information in this + +1157 +00:41:02,260 --> 00:41:03,840 +and that they have an opportunity to protect themselves. + +1158 +00:41:03,940 --> 00:41:05,120 +Or if you know somebody who's at risk, + +1159 +00:41:05,160 --> 00:41:07,440 +like if you do have, let's say something + +1160 +00:41:07,440 --> 00:41:08,480 +that's a little bit older in your life, + +1161 +00:41:08,560 --> 00:41:10,520 +you know, you got a parent or grandparent that's out there + +1162 +00:41:10,520 --> 00:41:13,860 +and needs a little watchful eye on them + +1163 +00:41:13,860 --> 00:41:15,280 +when it comes to these types of things, + +1164 +00:41:16,000 --> 00:41:17,320 +you know, help educate them. + +1165 +00:41:17,560 --> 00:41:19,480 +You can either tell them to, you know, + +1166 +00:41:19,480 --> 00:41:20,920 +the things to watch out for. + +1167 +00:41:21,060 --> 00:41:23,560 +You can refer them to gurushow.com + +1168 +00:41:23,560 --> 00:41:25,200 +for podcasts on this type of information. + +1169 +00:41:25,380 --> 00:41:27,560 +You can give us a call down at the shop, 304-8300. + +1170 +00:41:27,720 --> 00:41:30,780 +We'll help you and them learn how not to + +1171 +00:41:30,780 --> 00:41:32,280 +get themselves in trouble. + +1172 +00:41:32,480 --> 00:41:35,140 +And we do several, + +1173 +00:41:35,160 --> 00:41:38,500 +several talks out in the Green Valley area each year, + +1174 +00:41:38,540 --> 00:41:40,080 +like at the Green Valley Computer Club. + +1175 +00:41:40,260 --> 00:41:44,380 +We do some at the Up and Dove Mountain. + +1176 +00:41:44,560 --> 00:41:47,460 +We do some other ones where this demographic + +1177 +00:41:47,460 --> 00:41:48,860 +is likely to live. + +1178 +00:41:49,080 --> 00:41:51,440 +And we'll sit and just answer questions, + +1179 +00:41:51,580 --> 00:41:53,060 +usually for two to three hours. + +1180 +00:41:53,160 --> 00:41:55,900 +I will sit out there and answer questions + +1181 +00:41:55,900 --> 00:41:57,600 +about how to keep yourself safe online, + +1182 +00:41:57,780 --> 00:41:59,520 +how to make sure that you are not putting yourself + +1183 +00:41:59,520 --> 00:42:00,440 +at additional risk, + +1184 +00:42:00,580 --> 00:42:03,100 +and answering just various technology questions + +1185 +00:42:03,100 --> 00:42:04,140 +in the process, + +1186 +00:42:04,140 --> 00:42:07,060 +making sure that we keep you educated. + +1187 +00:42:07,280 --> 00:42:10,120 +Because a little bit of education can go a long way + +1188 +00:42:10,120 --> 00:42:12,880 +towards saving you, what, $54,000 like that later? + +1189 +00:42:12,940 --> 00:42:14,300 +Oh, 54, 50, yeah. + +1190 +00:42:14,620 --> 00:42:18,260 +So if you, I mean, if you've got 50 grand, + +1191 +00:42:18,320 --> 00:42:20,460 +you just want to throw away on scammers, that's fine. + +1192 +00:42:20,620 --> 00:42:23,940 +But I would say there's probably better uses for that money. + +1193 +00:42:25,920 --> 00:42:27,940 +And you don't want to get yourself into trouble + +1194 +00:42:27,940 --> 00:42:28,720 +with that type of stuff. + +1195 +00:42:28,840 --> 00:42:30,680 +So just keep yourself safe online, people. + +1196 +00:42:31,180 --> 00:42:33,400 +And be very, very skeptical. + +1197 +00:42:34,660 --> 00:42:35,020 +Right? + +1198 +00:42:35,260 --> 00:42:35,620 +Right. + +1199 +00:42:35,820 --> 00:42:35,960 +Right. + +1200 +00:42:36,060 --> 00:42:36,680 +Stay informed. + +1201 +00:42:37,020 --> 00:42:37,660 +Oh, you're still here, Tara? + +1202 +00:42:37,760 --> 00:42:38,020 +Yeah. + +1203 +00:42:38,140 --> 00:42:38,520 +Oh, okay. + +1204 +00:42:38,580 --> 00:42:39,180 +Just making sure. + +1205 +00:42:39,300 --> 00:42:39,800 +Just chilling. + +1206 +00:42:40,040 --> 00:42:41,320 +I'm listening to the conversation. + +1207 +00:42:41,620 --> 00:42:43,440 +And once again, thanks to Jay for coming in. + +1208 +00:42:43,520 --> 00:42:45,540 +Is there a place that people can see your work + +1209 +00:42:45,540 --> 00:42:46,160 +or anything like that? + +1210 +00:42:46,220 --> 00:42:47,140 +Are you interested? + +1211 +00:42:47,660 --> 00:42:48,020 +SoundCloud. + +1212 +00:42:48,500 --> 00:42:48,860 +SoundCloud? + +1213 +00:42:49,040 --> 00:42:49,400 +SoundCloud. + +1214 +00:42:49,400 --> 00:42:54,120 +Go to your call radio, C-O-L-O-R-A-D-I-O, SoundCloud. + +1215 +00:42:54,860 --> 00:42:57,160 +Also on anchor.fm. + +1216 +00:42:57,560 --> 00:42:58,140 +Right on. + +1217 +00:42:58,300 --> 00:42:58,800 +All right. + +1218 +00:42:59,240 --> 00:43:00,720 +So if you want any more information, + +1219 +00:43:00,860 --> 00:43:02,880 +I'll get your links from your card + +1220 +00:43:02,880 --> 00:43:04,120 +and put them on the podcast. + +1221 +00:43:04,140 --> 00:43:04,500 +I'll get your podcast notes. + +1222 +00:43:04,720 --> 00:43:07,320 +So if people want to check you out, + +1223 +00:43:07,360 --> 00:43:08,180 +they definitely can. + +1224 +00:43:08,700 --> 00:43:10,120 +Thanks again for listening to the first hour + +1225 +00:43:10,120 --> 00:43:11,040 +of the Computer Guru Show. + +1226 +00:43:11,180 --> 00:43:12,980 +Let's go ahead and talk about + +1227 +00:43:13,820 --> 00:43:15,420 +the ultimate sponsor for the show, + +1228 +00:43:15,480 --> 00:43:16,960 +which is Arizona Computer Guru. + +1229 +00:43:17,320 --> 00:43:19,420 +You can come see us down at 510 East Fort Wool + +1230 +00:43:19,420 --> 00:43:20,640 +or 64 North Harrison, + +1231 +00:43:20,760 --> 00:43:23,200 +or give us a call at 520-304-8300, + +1232 +00:43:23,440 --> 00:43:26,260 +or visit the website azcomputerguru.com + +1233 +00:43:26,260 --> 00:43:28,560 +if you have any problems with your technology + +1234 +00:43:28,560 --> 00:43:30,000 +in any form, + +1235 +00:43:30,060 --> 00:43:31,080 +whether or not it be your residential + +1236 +00:43:31,080 --> 00:43:32,260 +or for your business. + +1237 +00:43:32,380 --> 00:43:33,320 +You need a new website? + +1238 +00:43:33,400 --> 00:43:34,120 +That's what we're here for. + +1239 +00:43:34,120 --> 00:43:36,800 +We do everything under the sun, + +1240 +00:43:36,940 --> 00:43:37,480 +effectively, + +1241 +00:43:37,560 --> 00:43:38,520 +when it comes to computers, + +1242 +00:43:38,600 --> 00:43:39,600 +except for development, + +1243 +00:43:39,820 --> 00:43:41,780 +because nobody has time for that. + +1244 +00:43:42,080 --> 00:43:43,500 +Ain't nobody got time for that. + +1245 +00:43:43,580 --> 00:43:44,700 +Nobody's got time for development. + +1246 +00:43:45,640 --> 00:43:47,100 +To me, I see development + +1247 +00:43:47,100 --> 00:43:48,280 +much like interior decorating. + +1248 +00:43:48,700 --> 00:43:50,080 +No, I will not move the curtains + +1249 +00:43:50,080 --> 00:43:51,120 +three inches to the left. + +1250 +00:43:51,240 --> 00:43:52,060 +No, I will not. + +1251 +00:43:52,380 --> 00:43:54,400 +So I'm just not going to do development. + +1252 +00:43:55,640 --> 00:43:58,000 +But everything else that you can think of, + +1253 +00:43:58,080 --> 00:43:59,720 +it's very likely that I have someone + +1254 +00:43:59,720 --> 00:44:01,140 +that specializes in just that + +1255 +00:44:01,140 --> 00:44:02,480 +working for me over at Computer Guru. + +1256 +00:44:02,840 --> 00:44:03,840 +Thanks again for listening + +1257 +00:44:03,840 --> 00:44:04,380 +to the first hour. + +1258 +00:44:04,440 --> 00:44:05,280 +Stick around for the second hour + +1259 +00:44:05,280 --> 00:44:05,800 +of the Computer Guru + +1260 +00:44:05,800 --> 00:44:08,220 +coming up next right here on KVOI. + +1261 +00:44:08,400 --> 00:44:09,760 +And if you'd like to be part of the show, + +1262 +00:44:10,380 --> 00:44:12,040 +give us a call, 790-2040. + +1263 +00:44:12,160 --> 00:44:12,980 +We'll be right back. + +1264 +00:44:14,900 --> 00:44:16,940 +I say a warning + +1265 +00:44:17,820 --> 00:44:19,680 +Live without warning + +1266 +00:44:22,740 --> 00:44:24,640 +I say a warning + +1267 +00:44:25,520 --> 00:44:27,140 +Live without warning + +1268 +00:44:28,960 --> 00:44:31,000 +From my heart and from my hand + +1269 +00:44:31,000 --> 00:44:32,540 +Why don't people understand + +1270 +00:44:32,540 --> 00:44:33,680 +My intentions? + +1271 +00:44:33,840 --> 00:44:33,920 +My intentions? + +1272 +00:44:34,260 --> 00:44:35,520 +Computer running slow? + +1273 +00:44:35,680 --> 00:44:35,980 +Avoiding. + +1274 +00:44:36,200 --> 00:44:36,960 +Caught a virus? + +1275 +00:44:37,260 --> 00:44:37,440 +What? + +1276 +00:44:37,520 --> 00:44:37,980 +No! + +1277 +00:44:38,420 --> 00:44:38,760 +When? + +1278 +00:44:39,020 --> 00:44:41,380 +Does your computer seem to have + +1279 +00:44:41,380 --> 00:44:42,440 +a life of its own? + +1280 +00:44:42,900 --> 00:44:43,380 +Malfunction. + +1281 +00:44:43,980 --> 00:44:44,940 +Need input. + +1282 +00:44:45,220 --> 00:44:46,880 +The Computer Guru is here. + +1283 +00:44:47,040 --> 00:44:47,940 +Thank God you're here! + +1284 +00:44:48,320 --> 00:44:49,200 +Call in now. + +1285 +00:44:49,520 --> 00:44:50,900 +Now, it's Mike Swanson, + +1286 +00:44:51,160 --> 00:44:52,440 +your Computer Guru. + +1287 +00:44:53,140 --> 00:44:54,840 +Hello and welcome to the Computer Guru Show. + +1288 +00:44:54,880 --> 00:44:55,380 +My name's Mike. + +1289 +00:44:55,380 --> 00:44:56,540 +Here to deal with your technology needs + +1290 +00:44:56,540 --> 00:44:58,380 +and treat you like a person in the process. + +1291 +00:44:58,460 --> 00:45:00,500 +790-2040 if you'd like to be part of the show. + +1292 +00:45:00,600 --> 00:45:02,900 +That's 520-790-2040. + +1293 +00:45:02,960 --> 00:45:03,700 +Thank you. + +1294 +00:45:03,840 --> 00:45:06,140 +And so we're going to make an announcement here, + +1295 +00:45:06,180 --> 00:45:10,260 +which is today is the last Computer Guru Show + +1296 +00:45:10,260 --> 00:45:13,120 +that's going to be on for probably a while. + +1297 +00:45:13,520 --> 00:45:14,900 +I'm going to take a bit of a hiatus, + +1298 +00:45:15,920 --> 00:45:19,180 +mainly because I've got a bunch of reasons for it. + +1299 +00:45:19,440 --> 00:45:21,420 +But if you want your opportunity to have your + +1300 +00:45:21,420 --> 00:45:23,660 +sort of last tech support weekend + +1301 +00:45:24,600 --> 00:45:26,340 +that's available to you, at least on this show, + +1302 +00:45:26,500 --> 00:45:28,860 +you will give us a call, 790-2040. + +1303 +00:45:30,240 --> 00:45:32,540 +And there will be plenty of information, + +1304 +00:45:32,720 --> 00:45:33,520 +plenty of updates about, + +1305 +00:45:33,520 --> 00:45:34,640 +what's happening. + +1306 +00:45:34,680 --> 00:45:35,640 +There's actually going to be a, + +1307 +00:45:35,760 --> 00:45:39,420 +another version of the show next week. + +1308 +00:45:39,460 --> 00:45:40,420 +That's podcast only. + +1309 +00:45:40,760 --> 00:45:43,420 +Just, it'll give it more of a detailed update + +1310 +00:45:43,420 --> 00:45:44,480 +as far as what's happening, + +1311 +00:45:44,560 --> 00:45:45,480 +what projects are happening. + +1312 +00:45:45,900 --> 00:45:48,820 +But you'll have to either pick that up on iTunes, + +1313 +00:45:49,180 --> 00:45:52,360 +YouTube, or one of the other podcasting platforms, + +1314 +00:45:52,520 --> 00:45:55,480 +or you can go to gurushow.com to get that information. + +1315 +00:45:57,700 --> 00:46:00,520 +It's, there's a bunch of things going on that, + +1316 +00:46:00,520 --> 00:46:03,200 +as an example, my, I mean, + +1317 +00:46:03,520 --> 00:46:04,860 +I have my daughter living with me full time. + +1318 +00:46:05,020 --> 00:46:08,780 +And I would like to free up some weekend time for, + +1319 +00:46:09,580 --> 00:46:12,620 +yeah, I've never really done the whole like family + +1320 +00:46:12,620 --> 00:46:13,340 +weekend stuff. + +1321 +00:46:13,520 --> 00:46:14,600 +So, and I'd like to do that. + +1322 +00:46:14,760 --> 00:46:16,080 +You need room for activities. + +1323 +00:46:17,000 --> 00:46:17,440 +Yes. + +1324 +00:46:18,000 --> 00:46:20,440 +And there's just a lot of things going on and I + +1325 +00:46:20,440 --> 00:46:23,120 +haven't really had more than a couple of Saturdays off + +1326 +00:46:23,120 --> 00:46:24,460 +in almost 11 years. + +1327 +00:46:25,500 --> 00:46:27,680 +So I would like an opportunity to, + +1328 +00:46:28,140 --> 00:46:30,160 +you know, work on some of the projects, + +1329 +00:46:30,200 --> 00:46:32,000 +have some family time and, + +1330 +00:46:32,760 --> 00:46:33,380 +you know, + +1331 +00:46:33,380 --> 00:46:33,500 +just, you know, + +1332 +00:46:33,500 --> 00:46:33,500 + + +1333 +00:46:33,500 --> 00:46:34,740 +just to refocus. + +1334 +00:46:34,800 --> 00:46:39,400 +Also, I've, the show's sort of been suffering due to me + +1335 +00:46:39,400 --> 00:46:41,920 +not having time to properly prepare for it, + +1336 +00:46:41,940 --> 00:46:44,000 +to stay on top of the subject, + +1337 +00:46:44,100 --> 00:46:45,340 +like, like I would like. + +1338 +00:46:45,740 --> 00:46:48,760 +And I feel like the quality of, + +1339 +00:46:48,860 --> 00:46:49,980 +of the show has, + +1340 +00:46:50,060 --> 00:46:52,000 +has slipped just because, + +1341 +00:46:52,080 --> 00:46:53,000 +and it's my fault, + +1342 +00:46:53,000 --> 00:46:54,880 +right? It's, I haven't had the time to put into it. + +1343 +00:46:55,500 --> 00:46:57,460 +And so I would be, + +1344 +00:46:57,480 --> 00:47:00,100 +I don't want to be disappointed with my own product. + +1345 +00:47:00,580 --> 00:47:01,860 +And so that's, + +1346 +00:47:01,860 --> 00:47:02,240 +that's a, + +1347 +00:47:02,240 --> 00:47:03,480 +that's a big consideration. + +1348 +00:47:03,480 --> 00:47:05,660 +As far as what's going on with that type of stuff. + +1349 +00:47:07,000 --> 00:47:08,000 +But, you know, + +1350 +00:47:08,000 --> 00:47:10,640 +we're here today and so we should probably help people. + +1351 +00:47:10,760 --> 00:47:12,140 +And we'll go ahead and talk to Annette. + +1352 +00:47:12,240 --> 00:47:12,600 +Hello, Annette. + +1353 +00:47:12,660 --> 00:47:12,940 +How are you? + +1354 +00:47:13,880 --> 00:47:14,980 +How are you doing today, + +1355 +00:47:15,100 --> 00:47:17,260 +Mike? I'm glad I caught you before you went on vacation. + +1356 +00:47:17,880 --> 00:47:18,280 +Yeah. + +1357 +00:47:18,360 --> 00:47:19,620 +Or hiatus, excuse me. + +1358 +00:47:19,940 --> 00:47:20,680 +Yeah. It's, + +1359 +00:47:20,680 --> 00:47:23,220 +we're probably going to take like five or six months off before + +1360 +00:47:23,220 --> 00:47:25,160 +we put out more shows. + +1361 +00:47:26,220 --> 00:47:28,820 +But we don't know how or where that's going to be, + +1362 +00:47:28,900 --> 00:47:31,220 +but if you go to goodreshow.com, + +1363 +00:47:31,220 --> 00:47:31,860 +you'll get the information. + +1364 +00:47:32,500 --> 00:47:33,460 +Just make sure you get the information. + +1365 +00:47:33,460 --> 00:47:34,520 +We'll probably come back at some point. + +1366 +00:47:35,040 --> 00:47:35,980 +I'll give it a shot. + +1367 +00:47:36,140 --> 00:47:38,060 +Cause I'm, I'm running out of gurus here. + +1368 +00:47:38,620 --> 00:47:39,180 +Okay. + +1369 +00:47:40,000 --> 00:47:44,020 +I have a interesting problem and you've probably heard a + +1370 +00:47:44,020 --> 00:47:45,320 +variation of this before. + +1371 +00:47:45,720 --> 00:47:47,040 +Give you a little background. + +1372 +00:47:48,660 --> 00:47:52,100 +My, my primary computer is a windows 10 machine. + +1373 +00:47:54,040 --> 00:47:56,500 +And about a year ago, + +1374 +00:47:56,580 --> 00:48:01,500 +I had a strange issue surface where one of my hard drives, + +1375 +00:48:01,560 --> 00:48:02,720 +not the system drive, + +1376 +00:48:02,780 --> 00:48:03,340 +but the drive, + +1377 +00:48:03,460 --> 00:48:05,980 +I keep most of my data on because I'm using a solid, + +1378 +00:48:06,020 --> 00:48:07,600 +an SSD for a boot drive. + +1379 +00:48:07,780 --> 00:48:08,100 +Okay. + +1380 +00:48:09,040 --> 00:48:09,580 +Okay. + +1381 +00:48:09,740 --> 00:48:10,760 +So my E drive, + +1382 +00:48:12,520 --> 00:48:16,920 +I started to have it a hundred percent disc usage all the + +1383 +00:48:16,920 --> 00:48:17,320 +time. + +1384 +00:48:17,420 --> 00:48:17,880 +Okay. + +1385 +00:48:18,200 --> 00:48:20,280 +Even when nothing was accessing it. + +1386 +00:48:21,260 --> 00:48:24,460 +After a fair amount of hair pulling and head scratching, + +1387 +00:48:25,300 --> 00:48:29,020 +I replaced the SATA cable and it worked perfectly fine. + +1388 +00:48:29,540 --> 00:48:30,080 +Okay. + +1389 +00:48:30,840 --> 00:48:32,120 +Which I thought was a bit of a little, + +1390 +00:48:33,460 --> 00:48:36,440 +but now I'm having a similar problem with the same drive, + +1391 +00:48:36,560 --> 00:48:37,880 +the exact same drive. + +1392 +00:48:38,060 --> 00:48:38,380 +Okay. + +1393 +00:48:38,980 --> 00:48:43,720 +I now get a hundred percent drive usage only when I access + +1394 +00:48:43,720 --> 00:48:44,260 +the drive, + +1395 +00:48:44,340 --> 00:48:46,540 +which of course is frequently because that's where my + +1396 +00:48:46,540 --> 00:48:48,040 +documents and everything else, + +1397 +00:48:48,040 --> 00:48:50,960 +which as you can imagine, + +1398 +00:48:51,000 --> 00:48:53,320 +that brings the computer to its knees. + +1399 +00:48:54,200 --> 00:48:54,240 +Right. + +1400 +00:48:54,320 --> 00:48:59,400 +And I'm wondering if there may be something wrong with the + +1401 +00:48:59,400 --> 00:49:02,260 +drive that's not showing up in the smart report, + +1402 +00:49:02,420 --> 00:49:03,240 +every drive test, + +1403 +00:49:03,240 --> 00:49:04,400 +that I've run on it, + +1404 +00:49:06,320 --> 00:49:07,880 +doesn't find any problems, + +1405 +00:49:08,740 --> 00:49:12,320 +but I find it hard to believe that I have another bad SATA + +1406 +00:49:12,320 --> 00:49:12,920 +cable too. + +1407 +00:49:13,440 --> 00:49:15,000 +The drive's fairly old. + +1408 +00:49:15,100 --> 00:49:18,060 +It's got about over 600 days of usage on it, + +1409 +00:49:18,080 --> 00:49:19,240 +according to the smart report. + +1410 +00:49:19,660 --> 00:49:21,720 +So any thoughts on that? + +1411 +00:49:23,100 --> 00:49:24,500 +Well, 600 days, + +1412 +00:49:24,540 --> 00:49:26,140 +especially if the machine is on all the time, + +1413 +00:49:26,180 --> 00:49:26,580 +then that's, + +1414 +00:49:26,580 --> 00:49:27,840 +that's not a terrible, + +1415 +00:49:27,900 --> 00:49:28,180 +you know, + +1416 +00:49:28,220 --> 00:49:29,420 +it's not terribly high usage. + +1417 +00:49:30,220 --> 00:49:31,880 +It's on during the daytime. + +1418 +00:49:31,980 --> 00:49:32,820 +Most of the time, + +1419 +00:49:32,820 --> 00:49:33,940 +it gets turned off at night. + +1420 +00:49:34,260 --> 00:49:34,740 +Okay. + +1421 +00:49:34,840 --> 00:49:35,340 +So yeah, + +1422 +00:49:35,380 --> 00:49:36,060 +you're probably at the, + +1423 +00:49:36,080 --> 00:49:38,020 +about the end of the lifespan of that machine, + +1424 +00:49:38,100 --> 00:49:38,680 +if that's the case, + +1425 +00:49:38,780 --> 00:49:42,500 +cause you'd be at about four years there as far as age of + +1426 +00:49:42,500 --> 00:49:42,840 +the drive. + +1427 +00:49:44,540 --> 00:49:47,040 +The a hundred percent usage is likely not, + +1428 +00:49:47,140 --> 00:49:49,320 +wasn't the SATA cable in the first place. + +1429 +00:49:50,220 --> 00:49:53,500 +It just is probably more coincidental that it started behaving + +1430 +00:49:53,500 --> 00:49:54,120 +afterwards. + +1431 +00:49:56,460 --> 00:49:59,640 +You could have though a problem with the drive controller, + +1432 +00:49:59,880 --> 00:50:01,840 +which would be a motherboard issue or, + +1433 +00:50:01,840 --> 00:50:02,360 +you know, + +1434 +00:50:02,400 --> 00:50:04,980 +if you're plugged into some type of a SATA card, + +1435 +00:50:05,120 --> 00:50:06,240 +that could be the problem there. + +1436 +00:50:07,320 --> 00:50:08,600 +But if you look at, + +1437 +00:50:08,640 --> 00:50:10,220 +you said this one does 10 on this machine. + +1438 +00:50:10,780 --> 00:50:11,220 +Yeah. + +1439 +00:50:11,300 --> 00:50:13,940 +If you look at the performance monitor and you look under disk usage, + +1440 +00:50:13,980 --> 00:50:15,780 +does it tell you what is using your, + +1441 +00:50:15,800 --> 00:50:16,400 +your disc? + +1442 +00:50:18,540 --> 00:50:20,480 +Have you been into the performance monitor? + +1443 +00:50:20,660 --> 00:50:20,880 +Yeah. + +1444 +00:50:20,940 --> 00:50:23,900 +I've looked at the resource monitor and the performance monitor, + +1445 +00:50:23,940 --> 00:50:27,280 +and there's a lot of things that use the disc. + +1446 +00:50:28,060 --> 00:50:31,680 +But basically anything at the moment that's using the disc, + +1447 +00:50:31,680 --> 00:50:33,820 +it seems to be hogging a hundred percent of the disc. + +1448 +00:50:35,200 --> 00:50:38,860 +Some of the things that are using the disc periodically is the page + +1449 +00:50:38,860 --> 00:50:39,220 +file. + +1450 +00:50:39,320 --> 00:50:41,460 +And I expanded the size of the page file. + +1451 +00:50:41,940 --> 00:50:43,400 +How much memory do you have on the computer? + +1452 +00:50:43,800 --> 00:50:44,700 +I got six, + +1453 +00:50:44,700 --> 00:50:46,280 +six gigs of RAM on it. + +1454 +00:50:46,300 --> 00:50:46,620 +Okay. + +1455 +00:50:47,060 --> 00:50:49,440 +And that's a windows 10 64 bit. + +1456 +00:50:49,860 --> 00:50:50,260 +Okay. + +1457 +00:50:50,660 --> 00:50:54,580 +So what are you using to test the drive as far as whether or + +1458 +00:50:54,580 --> 00:50:55,260 +not it's good or not? + +1459 +00:50:56,000 --> 00:50:56,400 +Well, + +1460 +00:50:56,600 --> 00:50:57,140 +I use, + +1461 +00:50:58,160 --> 00:50:59,920 +I've used crystal disc info. + +1462 +00:51:00,760 --> 00:51:01,560 +I use, + +1463 +00:51:01,560 --> 00:51:04,460 +I use the Western digital data life card, + +1464 +00:51:05,480 --> 00:51:07,820 +both of which reads the smart and smart data. + +1465 +00:51:08,140 --> 00:51:10,340 +And then I've looked at, + +1466 +00:51:11,060 --> 00:51:15,440 +I've looked at the resource monitor and noticed that the access times tend + +1467 +00:51:16,260 --> 00:51:17,020 +to be very high. + +1468 +00:51:17,180 --> 00:51:22,020 +And I also looked at the error logs and the error logs had a + +1469 +00:51:22,020 --> 00:51:23,480 +lot of caution, + +1470 +00:51:24,320 --> 00:51:25,020 +caution symbols. + +1471 +00:51:25,080 --> 00:51:27,240 +And they're saying address was, + +1472 +00:51:27,280 --> 00:51:29,240 +we tried something along those lines. + +1473 +00:51:29,920 --> 00:51:30,520 +Okay. + +1474 +00:51:30,520 --> 00:51:31,340 +I remember the exact, + +1475 +00:51:31,340 --> 00:51:31,640 +the exact wording, + +1476 +00:51:31,780 --> 00:51:32,260 +but it was, + +1477 +00:51:32,260 --> 00:51:34,500 +it was a desk issue in the, + +1478 +00:51:34,580 --> 00:51:35,080 +in the, + +1479 +00:51:35,080 --> 00:51:38,880 +in the error logs and it had the word we tried in it. + +1480 +00:51:39,460 --> 00:51:39,900 +Right. + +1481 +00:51:40,880 --> 00:51:43,260 +So when you're looking at something like crystal desk, + +1482 +00:51:43,440 --> 00:51:45,460 +because that's the one that I would recommend that you use, + +1483 +00:51:45,480 --> 00:51:46,140 +it's one that's easiest, + +1484 +00:51:46,740 --> 00:51:47,620 +easiest to work with. + +1485 +00:51:48,020 --> 00:51:48,460 +But, + +1486 +00:51:48,640 --> 00:51:49,020 +um, + +1487 +00:51:49,280 --> 00:51:50,460 +when you're using crystal disc, + +1488 +00:51:50,560 --> 00:51:53,580 +are you using that while the system is under load or while + +1489 +00:51:53,580 --> 00:51:54,680 +it's doing the a hundred percent thing, + +1490 +00:51:54,760 --> 00:51:57,540 +or are you just doing that like every so often? + +1491 +00:51:58,220 --> 00:51:58,860 +I'm just, + +1492 +00:51:58,900 --> 00:52:00,500 +you're doing it every so often. + +1493 +00:52:00,580 --> 00:52:01,320 +I would say, + +1494 +00:52:01,340 --> 00:52:01,740 +do that, + +1495 +00:52:01,760 --> 00:52:06,900 +run that test because it is that the way that crystal disc works is + +1496 +00:52:06,900 --> 00:52:10,420 +it gives you a periodic result as opposed to a longterm result or + +1497 +00:52:10,420 --> 00:52:11,460 +a historical result. + +1498 +00:52:12,040 --> 00:52:14,460 +So it's looking at what time, + +1499 +00:52:14,480 --> 00:52:17,960 +how the drive is behaving at that very moment that you are looking + +1500 +00:52:17,960 --> 00:52:18,460 +at it. + +1501 +00:52:18,720 --> 00:52:22,100 +So if the machine is under load and doing the a hundred percent + +1502 +00:52:22,100 --> 00:52:22,380 +thing, + +1503 +00:52:22,480 --> 00:52:24,880 +I would check it then just to see what it does. + +1504 +00:52:25,260 --> 00:52:25,740 +Um, + +1505 +00:52:25,900 --> 00:52:26,960 +because oftentimes a, + +1506 +00:52:26,960 --> 00:52:30,060 +a drive will test is good as opposed to smart data because it's + +1507 +00:52:30,060 --> 00:52:30,960 +a rolling window. + +1508 +00:52:31,340 --> 00:52:32,340 +When it comes to smart data, + +1509 +00:52:32,460 --> 00:52:34,180 +or at least a majority of the smart data. + +1510 +00:52:34,740 --> 00:52:35,220 +Um, + +1511 +00:52:35,460 --> 00:52:39,600 +that way you can look at that very instance of what's happening + +1512 +00:52:39,600 --> 00:52:40,940 +and find out what's going on there. + +1513 +00:52:41,020 --> 00:52:44,580 +I would probably guess that you're most likely having some type of + +1514 +00:52:44,580 --> 00:52:45,780 +a controller issue though, + +1515 +00:52:45,840 --> 00:52:48,720 +even though your drive is probably too old to, + +1516 +00:52:48,820 --> 00:52:49,140 +uh, + +1517 +00:52:49,200 --> 00:52:50,600 +really identify that problem. + +1518 +00:52:51,620 --> 00:52:52,100 +Okay. + +1519 +00:52:52,500 --> 00:52:52,980 +Um, + +1520 +00:52:53,080 --> 00:52:53,460 +well, + +1521 +00:52:53,580 --> 00:52:56,640 +unfortunately I've got a lot of state of course on that motherboard. + +1522 +00:52:56,880 --> 00:52:57,920 +So my, + +1523 +00:52:58,100 --> 00:52:58,620 +my, + +1524 +00:52:58,660 --> 00:53:00,520 +my theory at the moment, + +1525 +00:53:01,600 --> 00:53:02,000 +um, + +1526 +00:53:02,940 --> 00:53:03,480 +you know, + +1527 +00:53:03,520 --> 00:53:05,960 +my low budget theory is probably going to be, + +1528 +00:53:05,960 --> 00:53:06,140 +uh, + +1529 +00:53:06,220 --> 00:53:09,340 +try a different state of Porter replaced the theta cable as well. + +1530 +00:53:09,720 --> 00:53:10,120 +Well, + +1531 +00:53:10,300 --> 00:53:11,160 +you can try that. + +1532 +00:53:11,260 --> 00:53:11,540 +However, + +1533 +00:53:11,660 --> 00:53:13,680 +all of those ports are going to be run. + +1534 +00:53:13,840 --> 00:53:14,240 +Uh, + +1535 +00:53:14,320 --> 00:53:14,620 +I mean, + +1536 +00:53:14,620 --> 00:53:15,940 +depending on how many you have, + +1537 +00:53:16,460 --> 00:53:16,860 +uh, + +1538 +00:53:17,680 --> 00:53:19,220 +all of those ports are not eight. + +1539 +00:53:19,520 --> 00:53:20,040 +All right. + +1540 +00:53:20,040 --> 00:53:20,820 +So if you've got eight, + +1541 +00:53:20,880 --> 00:53:22,840 +you likely have two controllers on that board. + +1542 +00:53:23,460 --> 00:53:23,860 +Okay. + +1543 +00:53:23,900 --> 00:53:24,200 +And, + +1544 +00:53:24,280 --> 00:53:24,520 +uh, + +1545 +00:53:24,680 --> 00:53:26,480 +one of those controllers is probably bad. + +1546 +00:53:26,780 --> 00:53:31,080 +And in which case you have a 50% chance of being on the same + +1547 +00:53:31,080 --> 00:53:31,320 +controller. + +1548 +00:53:31,320 --> 00:53:31,320 + + +1549 +00:53:31,320 --> 00:53:31,320 + + +1550 +00:53:31,320 --> 00:53:31,320 + + +1551 +00:53:31,320 --> 00:53:31,320 + + +1552 +00:53:31,320 --> 00:53:32,700 +Even if you're on a different port. + +1553 +00:53:33,220 --> 00:53:33,660 +Right. + +1554 +00:53:33,840 --> 00:53:36,240 +So the other interesting thing is of course, + +1555 +00:53:36,300 --> 00:53:39,100 +is my boot drive is theta. + +1556 +00:53:39,280 --> 00:53:39,680 +My, + +1557 +00:53:39,800 --> 00:53:42,220 +I have another data drive drive F, + +1558 +00:53:42,420 --> 00:53:43,060 +which is theta. + +1559 +00:53:43,340 --> 00:53:46,180 +And I've never had a problem with either one of those. + +1560 +00:53:46,240 --> 00:53:47,120 +Only the E drive. + +1561 +00:53:48,120 --> 00:53:48,560 +Well, + +1562 +00:53:49,380 --> 00:53:50,820 +you can try a different port. + +1563 +00:53:50,900 --> 00:53:51,640 +That's your low budget. + +1564 +00:53:51,680 --> 00:53:51,840 +I mean, + +1565 +00:53:51,860 --> 00:53:52,080 +but replacements, + +1566 +00:53:53,140 --> 00:53:53,700 +you know, + +1567 +00:53:53,700 --> 00:53:55,180 +conventional drives are cheap. + +1568 +00:53:55,840 --> 00:53:56,280 +Yeah. + +1569 +00:53:56,400 --> 00:53:56,680 +So, + +1570 +00:53:56,780 --> 00:53:57,040 +yeah, + +1571 +00:53:57,140 --> 00:53:59,220 +I may wind up just buying another drive. + +1572 +00:53:59,300 --> 00:53:59,540 +Cause, + +1573 +00:53:59,560 --> 00:53:59,740 +uh, + +1574 +00:53:59,860 --> 00:54:00,440 +like you said, + +1575 +00:54:00,580 --> 00:54:01,020 +600, + +1576 +00:54:01,020 --> 00:54:04,820 +650 days is quite a lot of time on the drive. + +1577 +00:54:05,080 --> 00:54:05,400 +Yes, + +1578 +00:54:05,400 --> 00:54:05,660 +it is. + +1579 +00:54:05,960 --> 00:54:06,360 +Well, + +1580 +00:54:06,400 --> 00:54:07,040 +good luck with that. + +1581 +00:54:07,080 --> 00:54:08,060 +And that I appreciate you. + +1582 +00:54:08,320 --> 00:54:08,720 +Well, + +1583 +00:54:08,820 --> 00:54:11,760 +thanks very much for your input and I hope you enjoy your family. + +1584 +00:54:11,800 --> 00:54:13,340 +Thank you very much. + +1585 +00:54:13,440 --> 00:54:14,400 +So we're going to take a break. + +1586 +00:54:14,440 --> 00:54:17,680 +If you'd like to be part of the computer guru show for the last + +1587 +00:54:17,680 --> 00:54:18,280 +episode, + +1588 +00:54:18,480 --> 00:54:20,460 +you can give us a call 790-2040. + +1589 +00:54:20,820 --> 00:54:22,740 +That's 5 T 0 7 9 0 20 40. + +1590 +00:54:22,820 --> 00:54:23,600 +We'll be right back. + +1591 +00:54:23,800 --> 00:54:27,440 +Cause I'm dynamite. + +1592 +00:54:29,500 --> 00:54:30,700 +And I'll win that. + +1593 +00:54:33,180 --> 00:54:34,960 +I'm a power load. + +1594 +00:54:44,480 --> 00:54:45,980 +Your computer guru, + +1595 +00:54:46,060 --> 00:54:48,860 +Mike Swanson is here to help you tame that beast of a machine. + +1596 +00:54:49,080 --> 00:54:52,720 +Join the chat right now at guru show.com or call in. + +1597 +00:54:52,780 --> 00:54:55,360 +This is a computer guru show on KVO. + +1598 +00:54:55,420 --> 00:54:56,260 +Why the voice. + +1599 +00:55:00,120 --> 00:55:00,880 +I'm dirty. + +1600 +00:55:00,880 --> 00:55:01,000 +I'm a machine. + +1601 +00:55:01,000 --> 00:55:01,000 + + +1602 +00:55:01,000 --> 00:55:01,000 + + +1603 +00:55:01,000 --> 00:55:01,000 + + +1604 +00:55:01,020 --> 00:55:06,600 +I was in a V club and Glee club and even the chess team. + +1605 +00:55:06,680 --> 00:55:07,200 +Only question. + +1606 +00:55:07,240 --> 00:55:08,300 +I never thought was hard. + +1607 +00:55:08,380 --> 00:55:09,000 +What do I like her? + +1608 +00:55:09,080 --> 00:55:10,000 +Or do I like my card? + +1609 +00:55:10,080 --> 00:55:12,000 +Spend every weekend at the Renaissance fair. + +1610 +00:55:12,080 --> 00:55:13,200 +Got my name on my underwear. + +1611 +00:55:14,540 --> 00:55:17,280 +Welcome back to the computer guru show 790-2040. + +1612 +00:55:17,340 --> 00:55:18,400 +If you'd like to be part of the show, + +1613 +00:55:19,020 --> 00:55:20,180 +we'd love to hear from you. + +1614 +00:55:20,220 --> 00:55:21,720 +We have a caller called Paul. + +1615 +00:55:21,860 --> 00:55:22,080 +Hello, + +1616 +00:55:22,120 --> 00:55:22,320 +Paul. + +1617 +00:55:22,440 --> 00:55:22,840 +How are you? + +1618 +00:55:24,540 --> 00:55:24,900 +Yes. + +1619 +00:55:24,900 --> 00:55:25,120 +Hello. + +1620 +00:55:25,220 --> 00:55:25,540 +Um, + +1621 +00:55:26,060 --> 00:55:31,000 +I had called before and asked about some error codes and you asked me to email you + +1622 +00:55:31,000 --> 00:55:31,000 + + +1623 +00:55:31,000 --> 00:55:31,000 + + +1624 +00:55:31,000 --> 00:55:31,000 + + +1625 +00:55:31,000 --> 00:55:31,000 + + +1626 +00:55:31,000 --> 00:55:31,000 + + +1627 +00:55:31,000 --> 00:55:31,000 + + +1628 +00:55:31,000 --> 00:55:31,000 + + +1629 +00:55:31,000 --> 00:55:31,000 + + +1630 +00:55:31,000 --> 00:55:33,940 +so you can explain to me what they meant. + +1631 +00:55:34,460 --> 00:55:36,100 +And I did that. + +1632 +00:55:36,180 --> 00:55:37,320 +I emailed him twice. + +1633 +00:55:37,320 --> 00:55:37,640 +Actually, + +1634 +00:55:37,680 --> 00:55:38,420 +I never got a response. + +1635 +00:55:38,780 --> 00:55:39,060 +Oh, + +1636 +00:55:39,100 --> 00:55:39,240 +really? + +1637 +00:55:39,340 --> 00:55:39,660 +What was it? + +1638 +00:55:39,920 --> 00:55:40,320 +Well, + +1639 +00:55:41,920 --> 00:55:42,640 +they're kind of long. + +1640 +00:55:42,940 --> 00:55:43,180 +Um, + +1641 +00:55:43,440 --> 00:55:45,160 +if they start with zero X, + +1642 +00:55:45,320 --> 00:55:46,220 +just give me that part. + +1643 +00:55:46,360 --> 00:55:46,600 +Yes. + +1644 +00:55:47,760 --> 00:55:48,160 +Yes. + +1645 +00:55:48,240 --> 00:55:53,780 +He started with zero X and then there's a six zeros and then eight and E Edward. + +1646 +00:55:54,160 --> 00:55:55,420 +And then there's in parentheses, + +1647 +00:55:55,420 --> 00:56:00,740 +a whole set of more of these zero X codes and they all end in different numbers. + +1648 +00:56:00,800 --> 00:56:00,980 +Um, + +1649 +00:56:01,000 --> 00:56:02,760 +and then there's like the first set is in zero five, + +1650 +00:56:03,100 --> 00:56:03,580 +right? + +1651 +00:56:03,720 --> 00:56:04,120 +The same, + +1652 +00:56:04,120 --> 00:56:04,400 +you know, + +1653 +00:56:04,400 --> 00:56:04,680 +64. + +1654 +00:56:05,200 --> 00:56:06,460 +Those parts are more of the, + +1655 +00:56:06,540 --> 00:56:07,800 +the specifics. + +1656 +00:56:08,020 --> 00:56:09,740 +It's that first part that's really important. + +1657 +00:56:09,880 --> 00:56:12,760 +It kind of gives you the what's happening part. + +1658 +00:56:13,160 --> 00:56:13,640 +Oh, + +1659 +00:56:13,740 --> 00:56:14,040 +okay. + +1660 +00:56:14,280 --> 00:56:15,240 +Zero eight. + +1661 +00:56:15,600 --> 00:56:16,080 +Um, + +1662 +00:56:16,260 --> 00:56:19,680 +so zero eight E is Colonel mode exception not handled. + +1663 +00:56:20,000 --> 00:56:26,220 +And it usually means that either a driver has called to a spot within windows that is + +1664 +00:56:26,220 --> 00:56:27,480 +failing in some way. + +1665 +00:56:27,580 --> 00:56:27,960 +I mean, + +1666 +00:56:27,960 --> 00:56:30,200 +most often it's going to be a driver failure of some type. + +1667 +00:56:30,240 --> 00:56:30,960 +Like if you have some, + +1668 +00:56:31,000 --> 00:56:34,020 +some old hardware that's on there and the driver's no good anymore, + +1669 +00:56:34,920 --> 00:56:36,680 +or it's going to be a Ram problem. + +1670 +00:56:37,540 --> 00:56:38,020 +So, + +1671 +00:56:38,040 --> 00:56:38,540 +uh, + +1672 +00:56:39,200 --> 00:56:41,560 +almost always with eights of any type. + +1673 +00:56:41,660 --> 00:56:47,140 +So zero X eight is somehow their memory is faulted in one way or another, + +1674 +00:56:47,280 --> 00:56:49,500 +either because of a driver or some bad hardware. + +1675 +00:56:50,420 --> 00:56:51,100 +So you're, + +1676 +00:56:51,100 --> 00:56:52,320 +is there any way if, + +1677 +00:56:52,460 --> 00:56:53,520 +if it is, + +1678 +00:56:54,360 --> 00:56:59,760 +is there any way to narrow it down to which hardware or what part of the Ram or whatever? + +1679 +00:56:59,760 --> 00:57:01,540 +So how often do you see in this message? + +1680 +00:57:01,600 --> 00:57:02,320 +How often do you get it? + +1681 +00:57:02,860 --> 00:57:05,840 +Every time that I start my laptop, + +1682 +00:57:06,580 --> 00:57:07,100 +um, + +1683 +00:57:07,920 --> 00:57:09,260 +after it loads, + +1684 +00:57:10,160 --> 00:57:10,680 +uh, + +1685 +00:57:12,460 --> 00:57:12,980 +well, + +1686 +00:57:13,240 --> 00:57:16,580 +for lots of after it loads windows, + +1687 +00:57:16,680 --> 00:57:18,280 +it's okay for about, + +1688 +00:57:18,280 --> 00:57:18,720 +I don't know, + +1689 +00:57:18,780 --> 00:57:19,200 +four minutes. + +1690 +00:57:19,760 --> 00:57:20,280 +Okay. + +1691 +00:57:20,840 --> 00:57:22,040 +And then it does, + +1692 +00:57:22,040 --> 00:57:23,120 +it does this, + +1693 +00:57:23,240 --> 00:57:23,600 +um, + +1694 +00:57:24,180 --> 00:57:29,200 +blue screen thing where it shows these codes and then it shuts off. + +1695 +00:57:29,320 --> 00:57:29,740 +Okay. + +1696 +00:57:29,760 --> 00:57:29,840 +And then it just, + +1697 +00:57:29,840 --> 00:57:30,620 +or it will actually restart. + +1698 +00:57:31,400 --> 00:57:32,120 +And just regular, + +1699 +00:57:32,260 --> 00:57:33,120 +it just reboots, + +1700 +00:57:33,120 --> 00:57:33,300 +right? + +1701 +00:57:33,400 --> 00:57:34,200 +It comes back up again. + +1702 +00:57:34,240 --> 00:57:34,480 +Yes. + +1703 +00:57:34,480 --> 00:57:37,400 +Every single time that I turn the laptop on. + +1704 +00:57:37,540 --> 00:57:39,040 +And so I have to reboot into, + +1705 +00:57:39,120 --> 00:57:39,520 +um, + +1706 +00:57:39,520 --> 00:57:42,180 +safe mode in order for it to work. + +1707 +00:57:42,460 --> 00:57:43,380 +And then it works fine. + +1708 +00:57:44,320 --> 00:57:44,680 +Okay. + +1709 +00:57:45,940 --> 00:57:47,880 +And what type of antivirus do you have on the machine? + +1710 +00:57:49,320 --> 00:57:49,680 +Uh, + +1711 +00:57:49,700 --> 00:57:50,180 +I'm sorry. + +1712 +00:57:51,640 --> 00:57:53,100 +And it seems pretty good. + +1713 +00:57:53,400 --> 00:57:54,980 +I couldn't hear you broke up there. + +1714 +00:57:55,100 --> 00:57:55,640 +What'd you say? + +1715 +00:57:55,760 --> 00:57:56,020 +Uh, + +1716 +00:57:56,720 --> 00:57:57,080 +Panda. + +1717 +00:57:57,500 --> 00:57:58,160 +He's in Panda. + +1718 +00:57:58,340 --> 00:57:58,700 +Okay. + +1719 +00:57:59,080 --> 00:57:59,440 +Yes. + +1720 +00:57:59,540 --> 00:57:59,740 +Okay. + +1721 +00:57:59,740 --> 00:57:59,740 + + +1722 +00:57:59,740 --> 00:57:59,740 + + +1723 +00:57:59,740 --> 00:57:59,740 + + +1724 +00:57:59,740 --> 00:57:59,740 + + +1725 +00:58:01,400 --> 00:58:03,540 +So I'm guessing that, + +1726 +00:58:03,580 --> 00:58:04,820 +and what kind of machine is this by the way? + +1727 +00:58:05,700 --> 00:58:06,960 +It's a Sony Vail. + +1728 +00:58:06,980 --> 00:58:07,660 +I own. + +1729 +00:58:07,700 --> 00:58:07,900 +Huh? + +1730 +00:58:08,020 --> 00:58:08,460 +Okay. + +1731 +00:58:08,560 --> 00:58:09,120 +All right. + +1732 +00:58:09,160 --> 00:58:13,580 +So 80 on a bio is, + +1733 +00:58:13,580 --> 00:58:13,900 +is, + +1734 +00:58:13,960 --> 00:58:15,420 +is its own animal. + +1735 +00:58:15,760 --> 00:58:21,760 +And I am going to take a wild stab in the dark here that your video cards overheating. + +1736 +00:58:23,000 --> 00:58:24,240 +Cause first of all, + +1737 +00:58:24,260 --> 00:58:26,120 +bios always have overheating problems. + +1738 +00:58:26,340 --> 00:58:29,720 +It's like that is part and parcel of the owning of iOS. + +1739 +00:58:29,720 --> 00:58:29,720 + + +1740 +00:58:29,720 --> 00:58:29,720 + + +1741 +00:58:29,720 --> 00:58:29,720 + + +1742 +00:58:29,720 --> 00:58:29,720 + + +1743 +00:58:29,720 --> 00:58:29,720 + + +1744 +00:58:29,720 --> 00:58:29,720 + + +1745 +00:58:29,720 --> 00:58:29,720 + + +1746 +00:58:29,720 --> 00:58:29,720 + + +1747 +00:58:29,720 --> 00:58:29,720 + + +1748 +00:58:29,720 --> 00:58:29,720 + + +1749 +00:58:29,720 --> 00:58:29,720 + + +1750 +00:58:29,720 --> 00:58:29,720 + + +1751 +00:58:29,720 --> 00:58:29,720 + + +1752 +00:58:29,720 --> 00:58:29,720 + + +1753 +00:58:29,720 --> 00:58:29,720 + + +1754 +00:58:29,720 --> 00:58:33,420 +So it's like a VIO is that it's overheating because Sony didn't make a VIO that didn't + +1755 +00:58:33,420 --> 00:58:33,940 +overheat. + +1756 +00:58:34,540 --> 00:58:34,940 +Um, + +1757 +00:58:35,940 --> 00:58:38,300 +and given that the time delay that you're talking about, + +1758 +00:58:38,380 --> 00:58:39,380 +like four minutes or so, + +1759 +00:58:40,200 --> 00:58:43,580 +I'm guessing your video cards overheating and that's causing the machine to shut down. + +1760 +00:58:44,340 --> 00:58:45,840 +Now if your CPU were overheating, + +1761 +00:58:45,860 --> 00:58:46,640 +that would be a different thing. + +1762 +00:58:46,720 --> 00:58:47,900 +It would give you a different message, + +1763 +00:58:48,480 --> 00:58:52,240 +but I'm betting that the video cards overheating and it's causing the machine to throw an error + +1764 +00:58:52,240 --> 00:58:52,900 +and reboot. + +1765 +00:58:54,020 --> 00:58:54,420 +Now, + +1766 +00:58:54,520 --> 00:58:56,020 +after it comes back, + +1767 +00:58:56,040 --> 00:58:58,700 +if can you get back into regular mode after that four minutes? + +1768 +00:59:00,440 --> 00:59:00,800 +No, + +1769 +00:59:00,880 --> 00:59:01,140 +I can. + +1770 +00:59:01,160 --> 00:59:01,420 +Well, + +1771 +00:59:01,660 --> 00:59:02,180 +I can, + +1772 +00:59:02,400 --> 00:59:04,240 +but it just shuts down again. + +1773 +00:59:04,320 --> 00:59:05,080 +It restarts. + +1774 +00:59:05,100 --> 00:59:07,080 +So I have to choose the, + +1775 +00:59:07,200 --> 00:59:08,480 +cause it gives you the options on screen. + +1776 +00:59:09,100 --> 00:59:10,640 +Once it restarts, + +1777 +00:59:11,000 --> 00:59:13,180 +what mode you want to start back into. + +1778 +00:59:13,420 --> 00:59:14,720 +And I can do regular mode. + +1779 +00:59:15,180 --> 00:59:16,600 +It'll just load like it normally does. + +1780 +00:59:16,720 --> 00:59:19,500 +It'll start up and then it'll load up and go into screen where you log in. + +1781 +00:59:19,780 --> 00:59:21,240 +But then eventually it'll just, + +1782 +00:59:21,340 --> 00:59:22,180 +few minutes later, + +1783 +00:59:22,280 --> 00:59:23,180 +it'll just do the same thing. + +1784 +00:59:23,260 --> 00:59:25,220 +So I go ahead and I choose start, + +1785 +00:59:25,300 --> 00:59:25,580 +I mean, + +1786 +00:59:26,240 --> 00:59:28,140 +safe mode and then it works just fine. + +1787 +00:59:28,260 --> 00:59:29,640 +As far as safe mode. + +1788 +00:59:29,720 --> 00:59:30,260 +Right. + +1789 +00:59:30,620 --> 00:59:33,360 +There's no problems as far as it shutting down or anything else. + +1790 +00:59:33,880 --> 00:59:34,280 +Yep. + +1791 +00:59:34,440 --> 00:59:35,940 +I think it's your video card. + +1792 +00:59:36,560 --> 00:59:37,360 +So I, + +1793 +00:59:37,500 --> 00:59:40,380 +the driver for your video card could probably used to be updated, + +1794 +00:59:40,540 --> 00:59:41,560 +but I bet it's overheating. + +1795 +00:59:42,520 --> 00:59:43,860 +And have you like, + +1796 +00:59:43,920 --> 00:59:44,140 +you know, + +1797 +00:59:44,140 --> 00:59:46,380 +taken an air compressor to the second blown out the fan? + +1798 +00:59:48,520 --> 00:59:48,920 +No, + +1799 +00:59:49,060 --> 00:59:49,540 +I've, + +1800 +00:59:49,540 --> 00:59:51,000 +I've taken a fan to it. + +1801 +00:59:51,020 --> 00:59:51,780 +It was total fan. + +1802 +00:59:51,920 --> 00:59:52,540 +I'm blowing in, + +1803 +00:59:52,580 --> 00:59:52,800 +you know, + +1804 +00:59:52,800 --> 00:59:53,520 +put it on it. + +1805 +00:59:53,660 --> 00:59:54,300 +It does. + +1806 +00:59:54,380 --> 00:59:55,740 +It does run hot actually. + +1807 +00:59:56,160 --> 00:59:56,560 +Yeah. + +1808 +00:59:56,640 --> 00:59:57,000 +Well, + +1809 +00:59:59,720 --> 01:00:29,700 +you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be + +1810 +01:00:29,700 --> 01:00:31,080 +and causes the kernel panic. + +1811 +01:00:33,500 --> 01:00:36,820 +The other weird thing about this is it has a sticker on it, + +1812 +01:00:37,600 --> 01:00:39,880 +on the external shell of the laptop. + +1813 +01:00:39,940 --> 01:00:41,540 +It says NVIDIA. + +1814 +01:00:42,260 --> 01:00:42,780 +Yeah. + +1815 +01:00:42,880 --> 01:00:47,760 +But when I checked in through the programs and so forth, + +1816 +01:00:47,840 --> 01:00:50,500 +I couldn't find NVIDIA anywhere inside the machine. + +1817 +01:00:51,760 --> 01:00:55,180 +You couldn't find it, like, in the device manager under graphics adapters? + +1818 +01:00:56,060 --> 01:00:56,580 +No. + +1819 +01:00:56,880 --> 01:00:58,280 +It wasn't in there either. + +1820 +01:00:58,280 --> 01:01:01,440 +So under display adapter, I mean, are you in front of the machine now? + +1821 +01:01:02,440 --> 01:01:03,120 +Yes, I am. + +1822 +01:01:03,220 --> 01:01:05,160 +So do you know how to get to the device manager? + +1823 +01:01:06,460 --> 01:01:09,380 +Yes, I can get to it in the control panel. + +1824 +01:01:09,640 --> 01:01:09,920 +All right. + +1825 +01:01:09,940 --> 01:01:12,980 +So go to the device manager and then look under display adapters + +1826 +01:01:12,980 --> 01:01:14,280 +and let's see what you've got in there. + +1827 +01:01:15,220 --> 01:01:16,160 +Because I'm curious. + +1828 +01:01:17,860 --> 01:01:19,300 +All right, device manager. + +1829 +01:01:19,860 --> 01:01:21,700 +Are you in safe mode right now or normal mode? + +1830 +01:01:22,180 --> 01:01:23,020 +I'm in safe mode. + +1831 +01:01:23,200 --> 01:01:23,460 +Okay. + +1832 +01:01:23,800 --> 01:01:26,080 +It's the only way I can, and it won't let me do it, + +1833 +01:01:26,100 --> 01:01:28,060 +because I'm logged in as, oh, wait. + +1834 +01:01:28,840 --> 01:01:29,500 +Standard user. + +1835 +01:01:33,100 --> 01:01:33,500 +Okay. + +1836 +01:01:33,820 --> 01:01:35,080 +I just got logged in as administrator. + +1837 +01:01:35,700 --> 01:01:36,340 +Oh, I see. + +1838 +01:01:36,640 --> 01:01:39,480 +Okay, so I'm in here now, device manager. + +1839 +01:01:39,820 --> 01:01:40,200 +All right. + +1840 +01:01:40,280 --> 01:01:41,800 +Under display adapters, what do you have? + +1841 +01:01:43,820 --> 01:01:44,620 +Display adapters. + +1842 +01:01:45,700 --> 01:01:50,200 +It says mobile Intel 945 Express chipset. + +1843 +01:01:50,540 --> 01:01:50,940 +Okay. + +1844 +01:01:50,980 --> 01:01:51,480 +Is that it? + +1845 +01:01:51,520 --> 01:01:52,080 +Nothing else in there? + +1846 +01:01:52,300 --> 01:01:52,880 +By Windows. + +1847 +01:01:52,920 --> 01:01:54,740 +There's two of those, and that's it. + +1848 +01:01:55,320 --> 01:01:55,720 +Okay. + +1849 +01:01:55,760 --> 01:01:56,100 +Okay. + +1850 +01:01:56,140 --> 01:01:57,920 +So you're doing it. + +1851 +01:01:57,920 --> 01:02:00,820 +Your machine uses something like some of the Alienwares do, + +1852 +01:02:01,540 --> 01:02:04,320 +which is that they use a video hybrid pass-through. + +1853 +01:02:04,700 --> 01:02:06,940 +So it has an onboard graphics adapter, + +1854 +01:02:07,260 --> 01:02:10,800 +and it will have like an NVIDIA sort of co-graphics processor. + +1855 +01:02:11,980 --> 01:02:16,820 +And what will happen there is when everything's working the way that it's supposed to, + +1856 +01:02:16,960 --> 01:02:20,340 +your onboard graphics will handle like the 2D stuff, + +1857 +01:02:20,500 --> 01:02:25,560 +and then it will use the additional NVIDIA adapter as a 3D adapter, + +1858 +01:02:25,720 --> 01:02:27,900 +and it just basically injects. + +1859 +01:02:27,920 --> 01:02:29,400 +That video into the stream. + +1860 +01:02:31,340 --> 01:02:32,620 +So Alienwares do that. + +1861 +01:02:33,020 --> 01:02:34,940 +Sony Vios are the first ones to do that. + +1862 +01:02:35,040 --> 01:02:36,820 +I don't know how long you've been using computers, + +1863 +01:02:36,960 --> 01:02:39,300 +but way back in the day, you used to have a video card, + +1864 +01:02:39,380 --> 01:02:42,020 +and then you'd have this other sort of loop adapter + +1865 +01:02:42,020 --> 01:02:45,140 +where you'd add a secondary graphics card for 3D graphics. + +1866 +01:02:45,380 --> 01:02:46,920 +And that's sort of how these laptops work. + +1867 +01:02:49,340 --> 01:02:52,380 +So I'm sticking with my original hypothesis here, + +1868 +01:02:52,460 --> 01:02:54,680 +is that you've got a video card overheat problem, + +1869 +01:02:55,220 --> 01:02:57,620 +and it can't initialize the second card. + +1870 +01:02:57,680 --> 01:02:57,900 +Okay. + +1871 +01:02:57,900 --> 01:02:57,900 + + +1872 +01:02:57,900 --> 01:02:59,640 +And it's hot, and it throws a fit. + +1873 +01:03:00,660 --> 01:03:04,520 +So I would say get the machine cleaned out. + +1874 +01:03:05,400 --> 01:03:07,660 +After about five years or so, + +1875 +01:03:07,720 --> 01:03:13,500 +you should probably replace the thermal compound that's under all the chips on the machine. + +1876 +01:03:13,580 --> 01:03:15,620 +So under each of the heat sinks, + +1877 +01:03:15,760 --> 01:03:21,680 +there's a thermal compound that helps transfer heat from the chip to the copper cooling tubes. + +1878 +01:03:22,360 --> 01:03:25,600 +And that stuff breaks down over time and becomes less effective, + +1879 +01:03:25,760 --> 01:03:27,780 +meaning that the cards, + +1880 +01:03:27,780 --> 01:03:29,400 +the cards run way hotter than they should. + +1881 +01:03:30,200 --> 01:03:32,580 +And so I would say, you know, + +1882 +01:03:32,580 --> 01:03:34,120 +either take the machine apart and fix that up, + +1883 +01:03:34,200 --> 01:03:36,900 +or it may be time to look into a different machine. + +1884 +01:03:38,120 --> 01:03:38,520 +Okay. + +1885 +01:03:38,820 --> 01:03:42,420 +I could probably go online and find how to... + +1886 +01:03:43,320 --> 01:03:45,540 +There's plenty of breakdown videos for those, right? + +1887 +01:03:45,760 --> 01:03:46,640 +Too hot, right. + +1888 +01:03:47,420 --> 01:03:49,800 +So if you're going to do a YouTube search, + +1889 +01:03:49,980 --> 01:03:51,900 +which is probably the way that I recommend most people do it, + +1890 +01:03:52,000 --> 01:03:55,480 +you'll be looking for a, like, your Sony VAIO, + +1891 +01:03:55,660 --> 01:03:57,420 +and then hopefully a... + +1892 +01:03:57,420 --> 01:03:59,180 +similar model number breakdown. + +1893 +01:03:59,600 --> 01:04:01,380 +And it'll tell you how to take the machine apart. + +1894 +01:04:02,380 --> 01:04:02,740 +Okay. + +1895 +01:04:02,880 --> 01:04:04,080 +The VAIOs are nice and easy, though. + +1896 +01:04:04,220 --> 01:04:04,580 +So. + +1897 +01:04:05,400 --> 01:04:05,760 +Okay. + +1898 +01:04:05,920 --> 01:04:06,360 +All right. + +1899 +01:04:06,380 --> 01:04:07,020 +Well, thanks for the call, Paul. + +1900 +01:04:07,120 --> 01:04:07,620 +I appreciate it. + +1901 +01:04:07,660 --> 01:04:08,460 +And sorry I didn't get back to you. + +1902 +01:04:08,500 --> 01:04:10,220 +A lot of times I don't see those things, + +1903 +01:04:10,300 --> 01:04:11,580 +so they end up in spam or something, + +1904 +01:04:11,660 --> 01:04:12,380 +and I apologize. + +1905 +01:04:13,400 --> 01:04:13,760 +Okay. + +1906 +01:04:14,060 --> 01:04:17,340 +Well, I set the error codes as attachments. + +1907 +01:04:17,460 --> 01:04:19,900 +Maybe you thought it was a, you know, scam or something. + +1908 +01:04:20,080 --> 01:04:20,580 +I don't know. + +1909 +01:04:21,460 --> 01:04:23,420 +My spam filter is set to absurd. + +1910 +01:04:24,240 --> 01:04:26,820 +So I apologize if I didn't see your email. + +1911 +01:04:27,660 --> 01:04:28,060 +Okay. + +1912 +01:04:28,060 --> 01:04:29,680 +Well, thank you for telling me now. + +1913 +01:04:29,820 --> 01:04:30,460 +No problem. + +1914 +01:04:30,760 --> 01:04:31,900 +Let's move on to Claudia. + +1915 +01:04:32,040 --> 01:04:32,420 +Hello, Claudia. + +1916 +01:04:32,520 --> 01:04:32,880 +How are you? + +1917 +01:04:33,480 --> 01:04:34,320 +I'm good, Mike. + +1918 +01:04:34,420 --> 01:04:34,980 +How are you doing? + +1919 +01:04:35,100 --> 01:04:35,940 +I'm doing great. + +1920 +01:04:36,380 --> 01:04:36,780 +Great. + +1921 +01:04:37,160 --> 01:04:38,120 +I had a question. + +1922 +01:04:38,240 --> 01:04:40,760 +I know you were covering security for us and our machines + +1923 +01:04:40,760 --> 01:04:41,700 +in the previous hour, + +1924 +01:04:41,780 --> 01:04:44,240 +but I didn't hear anything about clickbait. + +1925 +01:04:44,520 --> 01:04:46,840 +Could you tell us a little bit about what we should + +1926 +01:04:46,840 --> 01:04:49,820 +and shouldn't click on when we're on, say, for instance, + +1927 +01:04:49,920 --> 01:04:52,980 +reading news online and we scroll down and, oh, + +1928 +01:04:53,120 --> 01:04:55,780 +drivers in Tucson, Arizona need to know about this + +1929 +01:04:55,780 --> 01:04:57,200 +or whatever it may be. + +1930 +01:04:57,420 --> 01:04:59,740 +Well, if you have an appropriate ad blocker, + +1931 +01:04:59,740 --> 01:05:00,500 +you won't even see those. + +1932 +01:05:01,100 --> 01:05:01,820 +I do. + +1933 +01:05:01,980 --> 01:05:05,100 +I've got, let's see, AdBlock Plus on there + +1934 +01:05:05,100 --> 01:05:06,420 +from the Mozilla website. + +1935 +01:05:06,860 --> 01:05:07,060 +All right. + +1936 +01:05:07,140 --> 01:05:07,980 +Well, get rid of that one. + +1937 +01:05:08,020 --> 01:05:10,220 +Put Ublock Origin on, and that'll help. + +1938 +01:05:10,240 --> 01:05:11,140 +Oh, okay. + +1939 +01:05:11,620 --> 01:05:14,920 +AdBlock Plus is fine, but they have a rather extensive + +1940 +01:05:14,920 --> 01:05:17,120 +whitelist where they allow plenty of ads through. + +1941 +01:05:18,700 --> 01:05:21,700 +And basically, if you have a decent ad blocker + +1942 +01:05:21,700 --> 01:05:24,140 +on your machine, right, and AdBlock Plus isn't that bad. + +1943 +01:05:24,240 --> 01:05:26,160 +I still think that people should be using Ublock Origin, + +1944 +01:05:26,580 --> 01:05:27,200 +which is a good thing. + +1945 +01:05:27,200 --> 01:05:27,240 +Right. + +1946 +01:05:27,240 --> 01:05:27,400 +Yeah. + +1947 +01:05:27,420 --> 01:05:28,760 +In my opinion, it's a better ad block. + +1948 +01:05:29,440 --> 01:05:29,880 +Okay. + +1949 +01:05:29,960 --> 01:05:32,580 +You're not going to see much, if at all, + +1950 +01:05:32,620 --> 01:05:36,120 +anything that's going to hurt you in that particular instance. + +1951 +01:05:36,860 --> 01:05:37,420 +All right. + +1952 +01:05:37,580 --> 01:05:39,180 +I'll change my ad blocker. + +1953 +01:05:39,360 --> 01:05:42,420 +Now, as far as the other things that you shouldn't click on, + +1954 +01:05:43,260 --> 01:05:45,360 +well, basically, you know, if it's blinking + +1955 +01:05:45,360 --> 01:05:48,960 +or it's one small trick to make you learn something + +1956 +01:05:48,960 --> 01:05:51,300 +that is obvious, painfully obvious, + +1957 +01:05:51,900 --> 01:05:53,820 +you don't need to click on any of that stuff. + +1958 +01:05:54,480 --> 01:05:57,140 +Like I said, when I was talking to Jay, + +1959 +01:05:57,140 --> 01:05:59,780 +I was just like, I don't even see that stuff anymore. + +1960 +01:05:59,900 --> 01:06:03,120 +Even if it's on the screen, I've been looking at this stuff + +1961 +01:06:03,120 --> 01:06:06,420 +for so long that the stuff that's fake is so blatantly obvious + +1962 +01:06:07,200 --> 01:06:11,780 +that I feel like I'm almost underqualified to tell people + +1963 +01:06:11,780 --> 01:06:14,120 +to stop clicking on stuff, right? + +1964 +01:06:14,160 --> 01:06:16,780 +Because it's one of those things where, like, + +1965 +01:06:16,860 --> 01:06:19,880 +if you do anything long enough, you get so good + +1966 +01:06:19,880 --> 01:06:23,580 +at spotting the stuff that's wrong that you just ignore it. + +1967 +01:06:23,660 --> 01:06:24,000 +Right. + +1968 +01:06:24,040 --> 01:06:24,400 +You just don't see it. + +1969 +01:06:24,400 --> 01:06:26,980 +Well, I'm aware, and I never click on those. + +1970 +01:06:27,140 --> 01:06:28,960 +But I know there's, for instance, + +1971 +01:06:29,260 --> 01:06:31,880 +older folks around that have no idea about that. + +1972 +01:06:32,200 --> 01:06:35,000 +And I thought maybe we'd pass that tip along. + +1973 +01:06:35,180 --> 01:06:35,460 +Yeah. + +1974 +01:06:35,460 --> 01:06:38,280 +I don't click on those because I'm aware that they're just clickbait. + +1975 +01:06:38,500 --> 01:06:43,180 +Anything that says that, any utility that says that it can fix your computer for you, + +1976 +01:06:43,640 --> 01:06:45,200 +you should probably not click on. + +1977 +01:06:45,360 --> 01:06:45,780 +Right. + +1978 +01:06:45,860 --> 01:06:46,160 +Exactly. + +1979 +01:06:46,320 --> 01:06:49,300 +Anything that has a big green download button, don't click on that. + +1980 +01:06:49,760 --> 01:06:50,200 +Okay. + +1981 +01:06:50,260 --> 01:06:56,220 +You know, it's, stay away from anything that is a converter + +1982 +01:06:56,220 --> 01:06:57,120 +of any type of software. + +1983 +01:06:57,140 --> 01:06:57,760 +Right. + +1984 +01:06:57,760 --> 01:07:00,440 +Like, if you want to convert one type of thing to another. + +1985 +01:07:01,600 --> 01:07:07,020 +A big one that we've seen recently with people is the YouTube Downloader, + +1986 +01:07:07,020 --> 01:07:09,120 +where it allows you to download videos off of YouTube. + +1987 +01:07:09,480 --> 01:07:11,980 +I only recommend one program for that, + +1988 +01:07:12,040 --> 01:07:14,600 +and it's definitely not called the Free YouTube Downloader. + +1989 +01:07:16,020 --> 01:07:16,900 +All right. + +1990 +01:07:17,080 --> 01:07:18,900 +The program, if you want to do that, by the way, + +1991 +01:07:19,000 --> 01:07:22,020 +there's a program called Jacksta, J-A-K-S-T-A. + +1992 +01:07:22,700 --> 01:07:23,140 +Okay. + +1993 +01:07:23,140 --> 01:07:25,100 +They would love for you to pay for it, + +1994 +01:07:25,160 --> 01:07:26,900 +but it will work indefinitely. + +1995 +01:07:27,140 --> 01:07:29,620 +It will work indefinitely without paying for it for free + +1996 +01:07:29,620 --> 01:07:31,660 +if you download that software. + +1997 +01:07:32,360 --> 01:07:32,800 +Okay. + +1998 +01:07:32,940 --> 01:07:35,360 +And that's the only piece of software that I recommend for that. + +1999 +01:07:36,060 --> 01:07:38,220 +J-A-K-S-T-A? + +2000 +01:07:38,540 --> 01:07:38,780 +Yep. + +2001 +01:07:39,240 --> 01:07:39,680 +Okay. + +2002 +01:07:39,760 --> 01:07:41,440 +And that allows you to download YouTube videos + +2003 +01:07:41,440 --> 01:07:43,220 +and save them to your computer if you want. + +2004 +01:07:43,720 --> 01:07:44,160 +Nice. + +2005 +01:07:44,220 --> 01:07:44,820 +All right. + +2006 +01:07:44,900 --> 01:07:51,500 +So, basically, any type of converter is going to hurt you. + +2007 +01:07:51,700 --> 01:07:53,060 +Like, if you want to be able to, + +2008 +01:07:53,120 --> 01:07:54,460 +because a lot of people will be like, + +2009 +01:07:54,520 --> 01:07:57,000 +well, I need to convert this so I can email, + +2010 +01:07:57,140 --> 01:07:57,260 +I need to email it. + +2011 +01:07:57,940 --> 01:07:58,380 +No. + +2012 +01:07:58,700 --> 01:08:00,080 +No, that's not how this works. + +2013 +01:08:02,380 --> 01:08:05,280 +And people need to use their computers differently + +2014 +01:08:05,280 --> 01:08:07,080 +when it comes to sending large files + +2015 +01:08:07,080 --> 01:08:07,640 +because they're like, + +2016 +01:08:07,720 --> 01:08:11,240 +I want to email 5,000 pictures to someone + +2017 +01:08:11,240 --> 01:08:12,380 +all in a single email. + +2018 +01:08:12,900 --> 01:08:15,800 +And so they search for some type of converter + +2019 +01:08:15,800 --> 01:08:19,040 +to make it so that they can magically make it + +2020 +01:08:19,040 --> 01:08:21,360 +so that 5,000 emails can be sent in a single email. + +2021 +01:08:21,840 --> 01:08:23,000 +Right, compress it. + +2022 +01:08:23,060 --> 01:08:24,520 +They're going to come back with an infection. + +2023 +01:08:25,040 --> 01:08:26,560 +And the only way to send, + +2024 +01:08:26,560 --> 01:08:29,180 +like, a massive amount of data like that + +2025 +01:08:29,180 --> 01:08:30,540 +is to use another platform, + +2026 +01:08:30,680 --> 01:08:33,280 +something like Dropbox or something + +2027 +01:08:33,280 --> 01:08:35,940 +where you can put all of the files + +2028 +01:08:35,940 --> 01:08:37,700 +that you want to send into a single folder + +2029 +01:08:37,700 --> 01:08:39,640 +and then you can just send a link to that folder + +2030 +01:08:39,640 --> 01:08:42,760 +that is shared specifically with someone. + +2031 +01:08:44,140 --> 01:08:46,900 +So, it really comes down to just sort of + +2032 +01:08:46,900 --> 01:08:48,740 +don't be afraid to ask for help. + +2033 +01:08:49,140 --> 01:08:50,340 +Like, if you need help, + +2034 +01:08:50,400 --> 01:08:54,200 +we do five-minute free phone support at Computer Guru. + +2035 +01:08:54,360 --> 01:08:56,440 +If you call up and you have just a basic, + +2036 +01:08:56,440 --> 01:08:57,680 +basic question on how to do something + +2037 +01:08:57,680 --> 01:09:00,420 +and it's five minutes or less, + +2038 +01:09:00,900 --> 01:09:01,640 +it's free. + +2039 +01:09:01,880 --> 01:09:03,840 +So, all you've got to do is call and ask for help. + +2040 +01:09:04,160 --> 01:09:04,740 +I know. + +2041 +01:09:04,780 --> 01:09:06,400 +You've worked on my machines before + +2042 +01:09:06,400 --> 01:09:07,260 +and you guys are awesome. + +2043 +01:09:07,680 --> 01:09:11,460 +So, I appreciate all the help that I get from your store. + +2044 +01:09:11,660 --> 01:09:12,400 +You guys are great. + +2045 +01:09:12,620 --> 01:09:13,440 +Well, I appreciate that. + +2046 +01:09:13,480 --> 01:09:15,180 +Okay, well, I appreciate that. + +2047 +01:09:15,320 --> 01:09:17,700 +And I'll let you get back to taking some other calls + +2048 +01:09:17,700 --> 01:09:19,480 +and enjoy your family time. + +2049 +01:09:19,700 --> 01:09:20,620 +Thank you very much. + +2050 +01:09:20,740 --> 01:09:21,460 +I appreciate that. + +2051 +01:09:21,640 --> 01:09:21,660 +You're welcome. + +2052 +01:09:21,700 --> 01:09:22,940 +We're going to go ahead and take a break. + +2053 +01:09:23,000 --> 01:09:24,160 +And if you'd like to be part of the show + +2054 +01:09:24,160 --> 01:09:26,420 +for the last Computer Guru Show, + +2055 +01:09:26,440 --> 01:09:29,700 +that is going to be on air 790-2040. + +2056 +01:09:29,800 --> 01:09:30,500 +We'll be back. + +2057 +01:10:13,420 --> 01:10:16,240 +We'll be back. + +2058 +01:10:26,440 --> 01:10:27,060 +What can I do for you, Jeff? + +2059 +01:10:27,340 --> 01:10:28,040 +Jeff, what? + +2060 +01:10:28,140 --> 01:10:31,680 +I was reading an article the other day + +2061 +01:10:31,680 --> 01:10:34,780 +just on one of the PC mag or sites + +2062 +01:10:34,780 --> 01:10:35,820 +or something like that. + +2063 +01:10:36,080 --> 01:10:38,360 +And they were mentioning something called + +2064 +01:10:38,360 --> 01:10:40,340 +Google's Name Bench. + +2065 +01:10:40,960 --> 01:10:42,140 +And what it is, + +2066 +01:10:42,140 --> 01:10:47,860 +is a DNS optimization service or tool or something + +2067 +01:10:47,860 --> 01:10:51,840 +that recommends the best DNS servers to use + +2068 +01:10:51,840 --> 01:10:53,560 +for your home network. + +2069 +01:10:53,940 --> 01:10:54,260 +Okay. + +2070 +01:10:54,360 --> 01:10:55,260 +What do you think about that? + +2071 +01:10:55,320 --> 01:10:55,880 +Is that worthwhile? + +2072 +01:10:55,880 --> 01:10:58,040 +To look into and safe and all that + +2073 +01:10:58,040 --> 01:11:01,220 +to find the best DNS server for optimizing speed? + +2074 +01:11:01,780 --> 01:11:04,520 +I mean, in a home instance, + +2075 +01:11:04,660 --> 01:11:06,620 +I don't know how important that would really be. + +2076 +01:11:07,280 --> 01:11:09,060 +I mean, because DNS is pretty fast. + +2077 +01:11:09,160 --> 01:11:11,320 +I'd usually set people to Google DNS to begin with, + +2078 +01:11:11,460 --> 01:11:14,500 +you know, using 8.8.8.8. + +2079 +01:11:15,780 --> 01:11:18,700 +But I don't know how important that would be + +2080 +01:11:18,700 --> 01:11:20,700 +on sort of a home network. + +2081 +01:11:20,960 --> 01:11:21,940 +I could see it in, + +2082 +01:11:21,960 --> 01:11:24,880 +if you have like a high traffic outbound, + +2083 +01:11:24,880 --> 01:11:27,060 +outbound type of data center, + +2084 +01:11:27,220 --> 01:11:29,100 +that that would be super useful. + +2085 +01:11:29,500 --> 01:11:32,680 +But I mean, we're talking about shaving milliseconds + +2086 +01:11:32,680 --> 01:11:34,280 +off of things that take nanoseconds. + +2087 +01:11:34,320 --> 01:11:36,400 +I don't know that, I don't know. + +2088 +01:11:36,500 --> 01:11:38,920 +I don't know how useful that would actually be. + +2089 +01:11:40,440 --> 01:11:42,460 +They were, the gist of it was, + +2090 +01:11:42,500 --> 01:11:44,680 +they were saying that, and you're probably right, + +2091 +01:11:44,780 --> 01:11:46,020 +it's probably just minuscule, + +2092 +01:11:46,100 --> 01:11:48,980 +but it analyzes the distance + +2093 +01:11:48,980 --> 01:11:52,780 +and finds the best localized and fastest server + +2094 +01:11:52,780 --> 01:11:54,680 +as kind of a tool to see, + +2095 +01:11:54,880 --> 01:11:57,020 +you know, which one you should use in your network. + +2096 +01:11:57,120 --> 01:11:59,120 +So it sounds like it's probably not worth + +2097 +01:12:00,060 --> 01:12:03,100 +the time for the speed gains that you would get, if any. + +2098 +01:12:03,260 --> 01:12:05,220 +Yeah, I'm thinking that on a residential scale, + +2099 +01:12:05,260 --> 01:12:09,180 +that probably is, it would be undecipherable + +2100 +01:12:09,180 --> 01:12:10,120 +as far as, you know, + +2101 +01:12:10,120 --> 01:12:13,520 +you wouldn't be able to discern from one to another + +2102 +01:12:14,020 --> 01:12:16,960 +as far as if you were to change the DNS servers out + +2103 +01:12:16,960 --> 01:12:20,400 +and pick one that is, let's say, faster. + +2104 +01:12:21,980 --> 01:12:24,680 +Because most of that stuff is so, I mean, + +2105 +01:12:24,680 --> 01:12:28,220 +so close to instant that I don't think that most people + +2106 +01:12:28,220 --> 01:12:29,520 +are going to be able to tell the difference. + +2107 +01:12:30,540 --> 01:12:34,760 +Now, as an example, if you are, like in my office, right, + +2108 +01:12:34,820 --> 01:12:38,500 +we have a couple of fairly large mail servers + +2109 +01:12:38,500 --> 01:12:41,960 +that are always sending out to mail + +2110 +01:12:41,960 --> 01:12:44,720 +to a number of different servers + +2111 +01:12:44,720 --> 01:12:45,540 +that are out there in the world. + +2112 +01:12:46,040 --> 01:12:53,720 +And you start to see the delay stack up + +2113 +01:12:53,720 --> 01:12:54,660 +when you have, you know, + +2114 +01:12:54,680 --> 01:12:55,540 +huge amounts of mail. + +2115 +01:12:55,580 --> 01:12:57,340 +Let's say that there's 30,000 pieces of mail + +2116 +01:12:57,340 --> 01:12:58,200 +waiting to go out. + +2117 +01:12:58,320 --> 01:13:00,880 +And it has to do a DNS lookup for each of those. + +2118 +01:13:01,000 --> 01:13:04,480 +And there is maybe an extra 10 millisecond delay + +2119 +01:13:04,480 --> 01:13:06,180 +on each of those. + +2120 +01:13:06,240 --> 01:13:08,220 +And yeah, you start seeing something + +2121 +01:13:08,880 --> 01:13:10,120 +where that would be useful. + +2122 +01:13:11,420 --> 01:13:14,080 +But I think in the home arena, + +2123 +01:13:14,300 --> 01:13:15,640 +that's not going to be a thing. + +2124 +01:13:16,680 --> 01:13:19,440 +Okay, real quick, what's your view of OpenDNS + +2125 +01:13:19,440 --> 01:13:21,400 +as far as changing that? + +2126 +01:13:21,520 --> 01:13:24,540 +Just for kind of to decipher content, + +2127 +01:13:24,680 --> 01:13:27,000 +and make it, you're surfing a little bit safer + +2128 +01:13:27,000 --> 01:13:27,980 +in the home network? + +2129 +01:13:28,540 --> 01:13:30,460 +I'm always down for people using OpenDNS + +2130 +01:13:30,460 --> 01:13:32,920 +or using some type of like a high-end firewall + +2131 +01:13:32,920 --> 01:13:35,640 +where they can then manipulate their own DNS + +2132 +01:13:35,640 --> 01:13:36,300 +to protect themselves. + +2133 +01:13:36,900 --> 01:13:38,480 +Are you able to get around restrictions + +2134 +01:13:38,480 --> 01:13:40,780 +if it like falsely blocks you? + +2135 +01:13:41,860 --> 01:13:42,960 +Sort of, depending, + +2136 +01:13:43,080 --> 01:13:44,880 +it depends on where that block is occurring. + +2137 +01:13:45,240 --> 01:13:47,260 +So if it's happening at the ISP level, yes. + +2138 +01:13:47,380 --> 01:13:49,300 +If it's happening at the browser level, + +2139 +01:13:49,440 --> 01:13:52,100 +like Google is checking on you, then no. + +2140 +01:13:52,320 --> 01:13:53,860 +That won't help you a whole lot. + +2141 +01:13:54,680 --> 01:13:56,340 +The only way to get out of that type of stuff, + +2142 +01:13:56,400 --> 01:13:57,700 +if you want to get around those types of blocks + +2143 +01:13:57,700 --> 01:13:59,680 +at the browser level is to use a different browser. + +2144 +01:13:59,800 --> 01:14:01,640 +So instead of using like Google Chrome, + +2145 +01:14:01,760 --> 01:14:02,740 +you could use Chromium, + +2146 +01:14:03,160 --> 01:14:05,380 +which wouldn't have that same block list involved. + +2147 +01:14:07,140 --> 01:14:07,460 +Gotcha. + +2148 +01:14:07,540 --> 01:14:09,280 +Well, thanks for all the good info as usual. + +2149 +01:14:09,560 --> 01:14:10,280 +Well, right on. + +2150 +01:14:10,340 --> 01:14:11,660 +And stick around for the podcast, Jeff. + +2151 +01:14:11,700 --> 01:14:13,220 +I know you're listening from, what, Seattle? + +2152 +01:14:13,360 --> 01:14:14,000 +Is that where you're at? + +2153 +01:14:14,140 --> 01:14:15,100 +Yeah, you got it. + +2154 +01:14:15,200 --> 01:14:16,340 +Yeah, right outside of Seattle. + +2155 +01:14:16,420 --> 01:14:18,240 +And I love the podcast. + +2156 +01:14:18,620 --> 01:14:20,100 +The sooner they get up, the better, though. + +2157 +01:14:20,260 --> 01:14:21,980 +Yeah, well, we're working on that. + +2158 +01:14:22,220 --> 01:14:23,600 +But stick around, Jeff. + +2159 +01:14:23,620 --> 01:14:23,780 +Have a great one. + +2160 +01:14:23,840 --> 01:14:24,220 +Bye-bye. + +2161 +01:14:24,680 --> 01:14:25,280 +Be around for you. + +2162 +01:14:25,680 --> 01:14:27,240 +All right, let's go ahead and move on to Jeff, too. + +2163 +01:14:27,300 --> 01:14:28,780 +Hello, Jeff, too. + +2164 +01:14:29,140 --> 01:14:29,940 +Hi, how you doing? + +2165 +01:14:30,060 --> 01:14:30,660 +I'm doing all right. + +2166 +01:14:31,140 --> 01:14:31,960 +What can I do for you? + +2167 +01:14:33,180 --> 01:14:35,240 +Well, I'm having some problems. + +2168 +01:14:35,920 --> 01:14:37,080 +It's a couple years old. + +2169 +01:14:37,220 --> 01:14:39,500 +It's 87. + +2170 +01:14:40,600 --> 01:14:41,640 +Windows 10 on it. + +2171 +01:14:43,720 --> 01:14:45,380 +All right, Jeff, I have to interrupt you here. + +2172 +01:14:45,460 --> 01:14:47,440 +You're going to have to, like, stand somewhere else + +2173 +01:14:47,440 --> 01:14:49,500 +so I can hear you because you're breaking up badly. + +2174 +01:14:53,380 --> 01:14:54,320 +Can you hear me, Jeff? + +2175 +01:14:54,680 --> 01:14:54,680 + + +2176 +01:14:56,960 --> 01:14:57,520 +All right. + +2177 +01:14:57,540 --> 01:14:57,600 +All right. + +2178 +01:14:57,600 --> 01:14:57,900 +How about now? + +2179 +01:14:58,100 --> 01:14:58,780 +All right, that's better. + +2180 +01:14:58,880 --> 01:14:59,380 +All right. + +2181 +01:14:59,380 --> 01:14:59,820 +All right. + +2182 +01:15:00,240 --> 01:15:06,260 +Okay, so I put in a solid straight drive a couple years ago and never moved Windows over. + +2183 +01:15:07,060 --> 01:15:10,740 +So anyway, to make a long story short, I ended up having to reimage the whole computer, so + +2184 +01:15:10,740 --> 01:15:11,880 +I'm back to square one. + +2185 +01:15:11,980 --> 01:15:15,960 +And I wanted to go ahead and put the operating system on the solid state drive. + +2186 +01:15:16,460 --> 01:15:23,200 +I've been able to successfully clone the operating system off my C drive over the solid state + +2187 +01:15:23,200 --> 01:15:23,620 +drive. + +2188 +01:15:23,620 --> 01:15:27,680 +I'm unable to figure out how to tell it how to boot out of that solid state drive. + +2189 +01:15:29,380 --> 01:15:31,320 +You said it was Windows 10 on this machine? + +2190 +01:15:32,380 --> 01:15:32,860 +Correct. + +2191 +01:15:33,160 --> 01:15:33,640 +Okay. + +2192 +01:15:34,940 --> 01:15:40,420 +So you're going to be in a weird position here because if Windows was originally installed + +2193 +01:15:40,420 --> 01:15:45,160 +on a conventional drive and you added the solid state drive to it afterwards, the boot + +2194 +01:15:45,160 --> 01:15:47,480 +sector is on the wrong drive at that point. + +2195 +01:15:48,760 --> 01:15:53,400 +And it's increasingly difficult to move the boot sector from one machine to another. + +2196 +01:15:54,560 --> 01:16:02,640 +Unless you just unplug that other drive and then boot off of some type of recovery media and fix the boot sector from there. + +2197 +01:16:02,700 --> 01:16:06,840 +Basically recreate the boot sector on the solid state drive. + +2198 +01:16:07,600 --> 01:16:15,880 +Now, the other thing is that there has to be enough partition space available for Windows to create its own little special partition for that. + +2199 +01:16:16,740 --> 01:16:23,380 +And so if you're already starting from square one, you're going to have to do a lot of work. + +2200 +01:16:23,380 --> 01:16:23,380 + + +2201 +01:16:23,380 --> 01:16:29,200 +And the way that I would recommend you do it, you said you had a backup or you cloned from one drive to the other. + +2202 +01:16:29,300 --> 01:16:29,820 +Is that what you said? + +2203 +01:16:30,180 --> 01:16:30,440 +Yeah. + +2204 +01:16:30,580 --> 01:16:39,660 +I cloned from the C drive, which has all the operating system on to the solid state drive using the application that came with the solid state drive. + +2205 +01:16:40,120 --> 01:16:40,560 +Okay. + +2206 +01:16:40,640 --> 01:16:50,180 +So here's what I would do if you wanted the simple do it yourself method of doing this at home, which would be to, unfortunately, you're going to have to reclone everything. + +2207 +01:16:50,980 --> 01:16:51,420 +But. + +2208 +01:16:51,480 --> 01:16:51,920 +Okay. + +2209 +01:16:53,380 --> 01:17:02,880 +So what I would do is I would first just do a clean install of Windows on the solid state drive with no other drive plugged in. + +2210 +01:17:03,160 --> 01:17:06,280 +So that way that it puts the boot sector on the right drive. + +2211 +01:17:06,500 --> 01:17:08,020 +So you know it's all on the same drive. + +2212 +01:17:08,280 --> 01:17:08,800 +Okay. + +2213 +01:17:08,800 --> 01:17:17,460 +And then once you've done that, then you can use your utility to move Windows from one drive to the other and then unplug the drive again. + +2214 +01:17:18,460 --> 01:17:18,980 +Okay. + +2215 +01:17:18,980 --> 01:17:23,120 +And that'll likely get you up into where the machine will start. + +2216 +01:17:23,200 --> 01:17:23,360 +Okay. + +2217 +01:17:23,380 --> 01:17:32,480 +Now, after you do your clone, you'll probably have to run a utility off of the boot media off of the Windows installer. + +2218 +01:17:32,760 --> 01:17:39,780 +If you can get into the command prompt from the Windows installer and there's a utility called FixBoot. + +2219 +01:17:40,260 --> 01:17:43,000 +And there's three different switches you can use for that. + +2220 +01:17:43,080 --> 01:17:50,380 +It's FixBoot slash FixMBR, FixBoot slash, I'm sorry, BootRec is what they call it now. + +2221 +01:17:50,500 --> 01:17:52,540 +B-O-O-T-R-E-C. + +2222 +01:17:53,820 --> 01:18:01,760 +So BootRec, FixMBR, FixBoot, and then RebuildBCD, which is the boot sector. + +2223 +01:18:03,320 --> 01:18:06,400 +And that should make it so the machine behaves the way it's supposed to. + +2224 +01:18:08,040 --> 01:18:09,040 +Okay. I'll give that a try. + +2225 +01:18:09,600 --> 01:18:10,300 +Give it a shot. + +2226 +01:18:10,420 --> 01:18:12,520 +And if that doesn't work, you know, give us a call down at the shop. + +2227 +01:18:12,540 --> 01:18:13,180 +We can help you out. + +2228 +01:18:14,220 --> 01:18:15,300 +Okay. Great. I appreciate it. + +2229 +01:18:15,360 --> 01:18:16,520 +All right. Thanks for the call, Jeff. + +2230 +01:18:16,620 --> 01:18:18,140 +Let's go ahead and move on to Mark. + +2231 +01:18:18,260 --> 01:18:19,120 +Hello, Mark. How are you? + +2232 +01:18:20,440 --> 01:18:21,100 +Hello, Mike. + +2233 +01:18:21,580 --> 01:18:22,160 +Hello, Mark. + +2234 +01:18:23,680 --> 01:18:28,760 +Yeah. My week and Saturdays are going to be a whole lot less fulfilling. + +2235 +01:18:30,360 --> 01:18:31,460 +Sorry to hear that. + +2236 +01:18:31,720 --> 01:18:35,640 +I'm going to miss you. I'm a whole lot smarter because of you over these years. + +2237 +01:18:36,680 --> 01:18:43,480 +And so I just want to thank you for all of your years on the radio, giving me all educated up. + +2238 +01:18:44,120 --> 01:18:50,640 +Well, that's been the goal the whole time is to try to educate everyone, everyone that listens in some way or another, + +2239 +01:18:50,740 --> 01:18:51,540 +at least entertain them. + +2240 +01:18:51,540 --> 01:19:01,620 +And find a way to make it so that I can help people be less afraid of technology and hopefully keep themselves safe and enjoy it for what it is. + +2241 +01:19:01,700 --> 01:19:11,140 +Because even though we do a lot of doom and gloom on this show, as far as technology is concerned, the truth is that technology isn't going anywhere. + +2242 +01:19:11,300 --> 01:19:14,460 +And you might as well use it to the best of your ability and knowledge. + +2243 +01:19:14,980 --> 01:19:18,600 +And so hopefully people have learned something by listening to the show. + +2244 +01:19:18,800 --> 01:19:21,320 +And hopefully I've given back to the community enough that I can. + +2245 +01:19:21,320 --> 01:19:22,820 +And I can feel good about myself. + +2246 +01:19:23,720 --> 01:19:28,240 +So are you going to come back to the radio in your five months after five months? + +2247 +01:19:28,820 --> 01:19:30,700 +I'm not sure if we're going to do on air stuff. + +2248 +01:19:30,920 --> 01:19:32,520 +We will. We may. + +2249 +01:19:32,960 --> 01:19:44,380 +But there is a plan for doing a podcast version of the show where we can do some video and have a little bit less FCC looming over us. + +2250 +01:19:45,200 --> 01:19:49,620 +And and just really I want to have fun with the show. + +2251 +01:19:49,760 --> 01:19:51,100 +I want to enjoy it again. + +2252 +01:19:51,320 --> 01:19:51,740 +All right. + +2253 +01:19:51,780 --> 01:19:58,000 +I mean, I do enjoy helping, but there's a certain amount of I've been disappointed with the output or the results of the show. + +2254 +01:19:58,420 --> 01:20:07,480 +And like I said, it's mostly my fault as far as I haven't had the time to put into the show to to make it the product that I want it to be. + +2255 +01:20:07,620 --> 01:20:12,920 +And so I don't want to be disappointed or frustrated with the way that the show turns out. + +2256 +01:20:13,180 --> 01:20:21,300 +And so we're going to take some time off to re plan how the podcast stuff is going to work and figure out a way to make it so that I have a high quality show. + +2257 +01:20:21,300 --> 01:20:21,300 + + +2258 +01:20:21,300 --> 01:20:21,300 + + +2259 +01:20:21,320 --> 01:20:22,600 +That I'm proud of. + +2260 +01:20:22,680 --> 01:20:24,560 +That is also helpful and informative. + +2261 +01:20:25,640 --> 01:20:29,620 +And just go to GuruShow.com for more details, because that's where we're going to announce everything. + +2262 +01:20:30,760 --> 01:20:35,360 +OK, well, I certainly have not seen any degradation in your show quality. + +2263 +01:20:35,580 --> 01:20:37,820 +It's gotten better and better every year. + +2264 +01:20:37,980 --> 01:20:38,980 +Well, thank you. + +2265 +01:20:39,280 --> 01:20:41,260 +It's an imaginary thing you have. + +2266 +01:20:42,420 --> 01:20:45,420 +Well, I mean, the other part is it is very good. + +2267 +01:20:45,500 --> 01:20:47,300 +The other part is I am tired. + +2268 +01:20:47,800 --> 01:20:50,960 +I've been doing this a long time and I'd like to take a little bit of a break. + +2269 +01:20:50,980 --> 01:20:51,300 +And then I'll be back. + +2270 +01:20:51,300 --> 01:20:54,440 +And like I said, I I have a vision for where I want this to go. + +2271 +01:20:54,560 --> 01:21:01,460 +And right now, the the return on the radio show doesn't really allow that to happen. + +2272 +01:21:02,300 --> 01:21:15,500 +So I want to take an opportunity to to stand back, take a look at it, regroup and and do it right and make it so that it is as informative and as high quality as I would like it to be. + +2273 +01:21:15,940 --> 01:21:19,540 +And and hopefully, you know, everything will work out just great. + +2274 +01:21:19,760 --> 01:21:21,280 +But for right now, I need a little bit of time. + +2275 +01:21:21,300 --> 01:21:22,980 +I want to spend more time with my daughter. + +2276 +01:21:23,200 --> 01:21:24,480 +You know, the family is important. + +2277 +01:21:26,020 --> 01:21:28,000 +And that's that's where I'm at at the moment. + +2278 +01:21:28,320 --> 01:21:31,260 +And the Patreon support was not nearly enough. + +2279 +01:21:31,380 --> 01:21:31,740 +I'm sure. + +2280 +01:21:32,680 --> 01:21:33,600 +No, no. + +2281 +01:21:33,940 --> 01:21:44,580 +I mean, you know, I have to really give a lot of thanks to Mike over at Perfection Auto Works because he he went a long way towards helping me pay for the show. + +2282 +01:21:44,720 --> 01:21:48,600 +And I'm very appreciative for the for everything that he did. + +2283 +01:21:48,720 --> 01:21:50,480 +And of course, all of the Patreon sponsors. + +2284 +01:21:51,800 --> 01:22:17,420 +Now, as far as the total cost of the show and, you know, the expenses involved and not to mention that, you know, this is four or five hours every Saturday that is effectively free for everyone involved with the show is I mean, I appreciate the sacrifice of everyone made, whether it be monetarily, whether it be through their time, whether it be with just content creation. + +2285 +01:22:17,480 --> 01:22:20,440 +I mean, like Tara every week does, you know, scouring. + +2286 +01:22:21,680 --> 01:22:22,240 +OK. + +2287 +01:22:24,820 --> 01:22:25,380 +OK. + +2288 +01:22:25,660 --> 01:22:25,660 + + +2289 +01:22:25,660 --> 01:22:25,660 + + +2290 +01:22:27,020 --> 01:22:27,580 +OK. + +2291 +01:22:30,240 --> 01:22:30,800 +OK. + +2292 +01:22:31,340 --> 01:22:31,600 +OK. + +2293 +01:22:32,220 --> 01:22:32,220 + + +2294 +01:22:33,780 --> 01:22:34,340 +OK. + +2295 +01:22:34,800 --> 01:22:35,080 +OK. + +2296 +01:22:35,100 --> 01:22:35,120 +OK. + +2297 +01:22:35,140 --> 01:22:35,160 +OK. + +2298 +01:22:35,320 --> 01:22:35,560 +OK. + +2299 +01:22:36,440 --> 01:22:36,780 +OK. + +2300 +01:22:37,160 --> 01:22:37,720 +OK. + +2301 +01:22:38,020 --> 01:22:38,120 +OK. + +2302 +01:22:39,040 --> 01:22:39,240 +OK. + +2303 +01:22:39,720 --> 01:22:39,860 +OK. + +2304 +01:22:39,980 --> 01:22:40,180 +OK. + +2305 +01:22:40,680 --> 01:22:40,960 +OK. + +2306 +01:22:41,060 --> 01:22:41,080 +OK. + +2307 +01:22:41,100 --> 01:22:41,140 +OK. + +2308 +01:22:41,800 --> 01:22:41,880 +OK. + +2309 +01:22:41,980 --> 01:22:42,060 +OK. + +2310 +01:22:42,180 --> 01:22:42,260 +OK. + +2311 +01:22:42,380 --> 01:22:42,480 +OK. + +2312 +01:22:42,720 --> 01:22:43,100 +OK. + +2313 +01:22:44,820 --> 01:22:45,020 +OK. + +2314 +01:22:45,760 --> 01:22:45,860 +OK. + +2315 +01:22:47,160 --> 01:22:47,560 +OK. + +2316 +01:22:50,440 --> 01:22:54,100 +spent a lot of money putting this show on and it's all out of love. + +2317 +01:22:54,600 --> 01:22:58,860 +And so I enjoy the, the interaction with, with people. + +2318 +01:22:58,900 --> 01:23:02,160 +And it's, I really try not to make this a, Hey, + +2319 +01:23:03,020 --> 01:23:06,000 +why don't you go down to computer guru commercial? Right. + +2320 +01:23:06,060 --> 01:23:09,200 +I really try to just help as well as I can. + +2321 +01:23:09,240 --> 01:23:12,120 +And if it's beyond doing something over the radio, yeah, then sure. Yeah. + +2322 +01:23:12,120 --> 01:23:14,940 +Bring it down to me or somebody you trust. And I've always said that. + +2323 +01:23:15,660 --> 01:23:19,420 +So it's a fantastic show. + +2324 +01:23:19,420 --> 01:23:22,200 +And highly professional. + +2325 +01:23:22,600 --> 01:23:27,260 +And there's thousands of us out here who don't call in. + +2326 +01:23:27,320 --> 01:23:30,520 +I'm sure that greatly appreciate what you've done. + +2327 +01:23:31,180 --> 01:23:35,140 +Well, I appreciate the kind words part. Now, unfortunately, + +2328 +01:23:35,280 --> 01:23:37,860 +I hate to interrupt somebody saying nice things about me, + +2329 +01:23:37,900 --> 01:23:41,620 +but I have to do a break here. So when we come back from the break, + +2330 +01:23:41,760 --> 01:23:42,140 +if you, + +2331 +01:23:42,140 --> 01:23:44,700 +if anybody wants to call in and say nice things about me for the last 10 + +2332 +01:23:44,700 --> 01:23:47,640 +minutes of the show, you're welcome to do so. But in the meantime, + +2333 +01:23:48,060 --> 01:23:49,400 +we have to go to break because, + +2334 +01:23:49,420 --> 01:23:53,680 +because read decisions as I must. So we'll be right back after these messages. + +2335 +01:23:53,760 --> 01:23:54,920 +Thanks, Mark. I appreciate it. + +2336 +01:23:56,940 --> 01:23:57,320 +Yeah. + +2337 +01:24:19,420 --> 01:24:22,940 +Whether you're dealing with hardware installation or heaven forbid a virus, + +2338 +01:24:24,880 --> 01:24:28,080 +Mike Swanson is answering all your questions one by one. + +2339 +01:24:28,200 --> 01:24:32,760 +So call in or chat in with yours, the website guru show.com. + +2340 +01:24:33,080 --> 01:24:35,360 +Tune in, click in and kick back. + +2341 +01:24:35,460 --> 01:24:40,380 +This is the computer guru show on AM 10 30 KVO. Why the voice? + +2342 +01:24:51,400 --> 01:24:52,120 +Mike Swanson. + +2343 +01:24:52,220 --> 01:24:54,260 +Your computer guru is just a click away. + +2344 +01:24:54,580 --> 01:24:56,660 +Listen and watch a guru show.com. + +2345 +01:24:57,200 --> 01:24:59,060 +This is the computer guru show. + +2346 +01:25:00,200 --> 01:25:02,520 +Welcome back to the computer guru show. + +2347 +01:25:02,560 --> 01:25:03,500 +7 9 0 20 40. + +2348 +01:25:03,580 --> 01:25:05,080 +If you'd like to get into the last segment here, + +2349 +01:25:05,100 --> 01:25:06,100 +we only have a couple of minutes left. + +2350 +01:25:06,580 --> 01:25:07,560 +Let's go ahead and talk to Tom. + +2351 +01:25:07,620 --> 01:25:08,080 +Hello, Tom. + +2352 +01:25:08,160 --> 01:25:08,500 +How are you? + +2353 +01:25:09,720 --> 01:25:10,240 +I'm good. + +2354 +01:25:10,300 --> 01:25:10,680 +Thank you. + +2355 +01:25:10,700 --> 01:25:15,040 +I just want to thank you for the three or four years I've been listening to you. + +2356 +01:25:15,080 --> 01:25:18,900 +You have been my early warning system on sort of staying on top of computer stuff. + +2357 +01:25:18,980 --> 01:25:19,400 +And I've, + +2358 +01:25:19,400 --> 01:25:20,720 +you've helped me in your shop. + +2359 +01:25:20,820 --> 01:25:22,680 +So I'm going to miss you a lot. + +2360 +01:25:23,100 --> 01:25:24,780 +And thank you for all you've done. + +2361 +01:25:25,120 --> 01:25:26,400 +Well, thank you very much, Tom. + +2362 +01:25:26,460 --> 01:25:27,480 +I very much appreciate it. + +2363 +01:25:27,500 --> 01:25:27,640 +And I, + +2364 +01:25:27,740 --> 01:25:30,840 +I'm glad that I was here to help and don't, + +2365 +01:25:30,840 --> 01:25:31,160 +don't worry. + +2366 +01:25:31,260 --> 01:25:31,400 +We'll, + +2367 +01:25:31,520 --> 01:25:32,260 +we'll still exist. + +2368 +01:25:32,500 --> 01:25:32,820 +Just, + +2369 +01:25:32,820 --> 01:25:35,000 +we're going to figure things out. + +2370 +01:25:35,060 --> 01:25:35,760 +Different format. + +2371 +01:25:35,900 --> 01:25:36,020 +Yeah. + +2372 +01:25:36,060 --> 01:25:37,180 +Guru show.com for, + +2373 +01:25:37,220 --> 01:25:38,360 +to stay on top of stuff. + +2374 +01:25:38,420 --> 01:25:39,220 +We'll still be here to help. + +2375 +01:25:39,500 --> 01:25:40,920 +I know where to find you. + +2376 +01:25:40,940 --> 01:25:41,840 +So thank you very much. + +2377 +01:25:42,480 --> 01:25:42,800 +Thanks, + +2378 +01:25:43,140 --> 01:25:43,300 +Tom. + +2379 +01:25:43,360 --> 01:25:43,980 +I appreciate it. + +2380 +01:25:44,740 --> 01:25:45,960 +Let's go ahead and talk to Charles. + +2381 +01:25:46,040 --> 01:25:46,180 +Hello, + +2382 +01:25:46,220 --> 01:25:46,500 +Charles. + +2383 +01:25:47,840 --> 01:25:49,280 +I just want to tell you in Hebrew, + +2384 +01:25:49,400 --> 01:25:50,320 +there's an expression, + +2385 +01:25:50,500 --> 01:25:51,620 +may call Malamdi. + +2386 +01:25:51,680 --> 01:25:53,860 +He's quality by all my teachers. + +2387 +01:25:53,940 --> 01:25:55,100 +Am I made more wise? + +2388 +01:25:55,300 --> 01:25:56,940 +And you have been a good teacher. + +2389 +01:25:57,700 --> 01:25:58,140 +Thanks, + +2390 +01:25:58,380 --> 01:25:58,620 +Charles. + +2391 +01:25:58,860 --> 01:26:00,140 +I really appreciate that. + +2392 +01:26:00,700 --> 01:26:01,800 +And we'll miss you. + +2393 +01:26:01,880 --> 01:26:02,420 +I'm sorry. + +2394 +01:26:02,480 --> 01:26:02,620 +Go ahead. + +2395 +01:26:02,680 --> 01:26:04,000 +I just wanted to say that I, + +2396 +01:26:04,040 --> 01:26:05,020 +I appreciate the, + +2397 +01:26:05,120 --> 01:26:06,660 +all of the discussions that we've had, + +2398 +01:26:06,740 --> 01:26:07,000 +whether, + +2399 +01:26:07,140 --> 01:26:07,480 +you know, + +2400 +01:26:07,480 --> 01:26:09,920 +cause I found them all to be entertaining and I learned something from you + +2401 +01:26:09,920 --> 01:26:10,880 +every time that we talk. + +2402 +01:26:10,960 --> 01:26:12,020 +So thanks. + +2403 +01:26:12,180 --> 01:26:13,080 +I appreciate that. + +2404 +01:26:13,300 --> 01:26:15,040 +And if there's anything that, + +2405 +01:26:15,080 --> 01:26:16,880 +that I or the family of KU, + +2406 +01:26:16,880 --> 01:26:19,000 +KVOI can do to, + +2407 +01:26:19,000 --> 01:26:19,120 +to, + +2408 +01:26:19,120 --> 01:26:21,700 +to bring you back on in terms of support, + +2409 +01:26:22,080 --> 01:26:23,680 +or if you're going to go podcast, + +2410 +01:26:23,780 --> 01:26:26,020 +if we can help you get your files and stuff, + +2411 +01:26:26,160 --> 01:26:27,220 +we're glad to do it. + +2412 +01:26:27,440 --> 01:26:27,780 +Well, + +2413 +01:26:28,220 --> 01:26:29,880 +I'm not done with KVOI just yet. + +2414 +01:26:29,960 --> 01:26:31,580 +So we've got plans still, + +2415 +01:26:32,040 --> 01:26:34,740 +but I'm taking some time off and we'll figure it out and get things going. + +2416 +01:26:35,460 --> 01:26:35,820 +Good. + +2417 +01:26:35,920 --> 01:26:38,020 +We'd love to have you back and you're welcome on Liberty Watch. + +2418 +01:26:38,740 --> 01:26:39,100 +Excellent. + +2419 +01:26:39,180 --> 01:26:39,520 +Thanks, + +2420 +01:26:39,600 --> 01:26:39,800 +Charles. + +2421 +01:26:39,860 --> 01:26:40,700 +I appreciate it. + +2422 +01:26:40,700 --> 01:26:41,340 +Thank you very much. + +2423 +01:26:41,820 --> 01:26:43,220 +So I want to take a moment to take, + +2424 +01:26:43,280 --> 01:26:44,840 +say thank you to a lot of people. + +2425 +01:26:45,000 --> 01:26:45,360 +Most, + +2426 +01:26:45,480 --> 01:26:45,840 +you know, + +2427 +01:26:45,840 --> 01:26:46,460 +most importantly, + +2428 +01:26:46,500 --> 01:26:48,180 +the KVOI family that has been, + +2429 +01:26:48,180 --> 01:26:48,500 +you know, + +2430 +01:26:48,500 --> 01:26:50,540 +Doug and everyone here has been wonderful to me. + +2431 +01:26:50,640 --> 01:26:50,960 +They've, + +2432 +01:26:50,960 --> 01:26:51,980 +they've all been great. + +2433 +01:26:52,260 --> 01:26:56,440 +I want to take a moment to say thank you to Tara and Rob, + +2434 +01:26:56,640 --> 01:26:56,880 +who, + +2435 +01:26:56,900 --> 01:27:01,260 +who have donated their time to me every other week to come in here and, + +2436 +01:27:01,280 --> 01:27:05,060 +and help me with the show and to try to make it a little more entertaining, + +2437 +01:27:05,180 --> 01:27:06,480 +a little more wonderful, + +2438 +01:27:06,620 --> 01:27:09,880 +a very special thanks to Kent on the other side of the glass here, + +2439 +01:27:09,940 --> 01:27:14,240 +who has really made it so that I enjoy being an, + +2440 +01:27:14,260 --> 01:27:17,980 +I think people really don't appreciate, + +2441 +01:27:18,500 --> 01:27:18,740 +the, + +2442 +01:27:18,840 --> 01:27:22,080 +how important it is to have sort of good chemistry with your board op, + +2443 +01:27:22,140 --> 01:27:23,100 +with your producer, + +2444 +01:27:23,140 --> 01:27:23,380 +you know, + +2445 +01:27:23,420 --> 01:27:24,160 +to kind of, + +2446 +01:27:24,160 --> 01:27:24,440 +you know, + +2447 +01:27:24,440 --> 01:27:25,680 +make the show run smoothly. + +2448 +01:27:26,120 --> 01:27:28,220 +And thank you very much, + +2449 +01:27:28,260 --> 01:27:32,360 +Kent and to Bob and Tom and Harry and everyone else that's, + +2450 +01:27:32,360 --> 01:27:33,520 +that's done this over the, + +2451 +01:27:33,540 --> 01:27:36,760 +over the years of helping me keep this show on the air. + +2452 +01:27:37,780 --> 01:27:38,260 +And, + +2453 +01:27:38,420 --> 01:27:40,160 +and most of all the listeners, + +2454 +01:27:40,300 --> 01:27:40,580 +right? + +2455 +01:27:40,620 --> 01:27:41,280 +My patron supporters, + +2456 +01:27:42,000 --> 01:27:42,960 +my sponsors, + +2457 +01:27:43,540 --> 01:27:45,120 +such as Perfection Auto Works. + +2458 +01:27:45,240 --> 01:27:46,640 +I just want to say thank you. + +2459 +01:27:46,680 --> 01:27:48,380 +Now let's go ahead and squeeze Kevin in. + +2460 +01:27:48,380 --> 01:27:49,000 +Let's see what's going on here. + +2461 +01:27:49,020 --> 01:27:49,240 +Kevin. + +2462 +01:27:49,840 --> 01:27:50,080 +Hey, + +2463 +01:27:50,120 --> 01:27:50,280 +Mike, + +2464 +01:27:50,300 --> 01:27:50,600 +good afternoon. + +2465 +01:27:50,720 --> 01:27:51,340 +I'm going to miss you. + +2466 +01:27:51,360 --> 01:27:51,900 +Thanks a million. + +2467 +01:27:51,980 --> 01:27:52,600 +Thanks to you. + +2468 +01:27:52,640 --> 01:27:53,140 +Thanks to Rob. + +2469 +01:27:53,200 --> 01:27:54,720 +Tara is going to miss me. + +2470 +01:27:54,960 --> 01:27:55,780 +I am. + +2471 +01:27:56,060 --> 01:27:58,160 +I'll have to call the shop someday. + +2472 +01:27:59,240 --> 01:27:59,820 +Website's great. + +2473 +01:27:59,920 --> 01:28:00,860 +We're working on it still. + +2474 +01:28:01,320 --> 01:28:02,320 +God bless you guys. + +2475 +01:28:02,360 --> 01:28:03,320 +I wish you the very best, + +2476 +01:28:03,360 --> 01:28:03,500 +man. + +2477 +01:28:03,560 --> 01:28:03,720 +Okay. + +2478 +01:28:03,780 --> 01:28:04,420 +Thanks for everything, + +2479 +01:28:04,560 --> 01:28:04,780 +man. + +2480 +01:28:05,180 --> 01:28:05,840 +I'll miss you. + +2481 +01:28:05,980 --> 01:28:06,580 +All right. + +2482 +01:28:06,640 --> 01:28:06,800 +Well, + +2483 +01:28:06,840 --> 01:28:07,240 +thank you, + +2484 +01:28:07,280 --> 01:28:07,520 +Kevin. + +2485 +01:28:07,640 --> 01:28:08,340 +I appreciate it. + +2486 +01:28:08,700 --> 01:28:12,080 +Thanks to everyone who listens to the show and supports us and brings their computer + +2487 +01:28:12,080 --> 01:28:12,760 +down to the shop. + +2488 +01:28:13,140 --> 01:28:14,260 +We really appreciate you. + +2489 +01:28:14,360 --> 01:28:15,180 +Give us a call down the shop, + +2490 +01:28:15,280 --> 01:28:16,160 +304-8300, + +2491 +01:28:16,420 --> 01:28:18,080 +or visit gurushow.com. + +2492 +01:28:18,080 --> 01:28:18,700 +For more information. + +2493 +01:28:19,080 --> 01:28:19,820 +We'll see you guys. + diff --git a/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.txt b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.txt new file mode 100644 index 0000000..1620a62 --- /dev/null +++ b/projects/radio-show/audio-processor/training-data/transcripts/2018-s10e21/transcript.txt @@ -0,0 +1,2493 @@ +From my heart and from my hand, why don't people understand my intention? +Computer running slow? +Avoiding. +Caught a virus? +No! +When? +Does your computer seem to have a life of its own? +Malfunction. +Need input. +The Computer Guru is here. +Thank God you're here! +Call in now. +Now, it's Mike Swanson, your Computer Guru. +Hello and welcome to the Computer Guru Show. +My name's Mike, here to deal with your technology needs and treat you like a person in the process. +Give us a call if you'd like to be part of the show. +It's 520-790-2040. +Hello, Kent. +Good morning, Mr. Guru. +We've got Kent here. +We've got Tara. +Hello. +We've got a guest who we'll get to in a minute. +But let's start by saying there are a lot of things happening in the world, in technology anyway, +that you may not, you should probably be aware of. +Right? +So we're going to get started. + + + + + + +We're going to spend probably the first hour of the show talking mostly about scams and +ways that people are just trying to steal your money. +Always. +Because that's what they want to do. +It's much easier to steal it than to earn it. +That's what I hear anyway. +It's not like I have that much of it to give anyway. +This is true. +We're all poor, poor individuals. +But so we basically, this is going to be an interesting show. +All right? +Because Mark was talking about it. +He was talking in the last hour a little bit. +There's a bit of a buzz. +I've been keeping things under wraps. +Mainly just because I haven't really known anything up until like yesterday. +But stick around for the second hour for news on what's coming up with the Computer Guru +Show and how it's going to move forward. +But just stick around for that part. +First, we're going to talk to Jay here. +Jay is a, he called me last week. +After one of the, after last week's show, was it? +Yeah. +Yeah. +And basically wanted to talk about the Microsoft scammers that are out there or tech support +scammers that exist out there. +Now, Jay is a tech journalist. +He lives in Green Valley. +He's chilling out in the Green Valley. +And he's principal of Collar Radio Communications Group. +And he's got some old school cred. +Yeah. +Like I used to as far as running the old BBSs. +You started Colorado Snowbank in 85. +Man, that's, I remember seeing the name of your BBS on the national lists back in the +day. +Just because I used to keep track of those and I have a crazy memory. +But did you say you went multi-line with that? +We went multi-line. +Yeah. +It was under TBBS, the breadboard system, which was the only one that had multi-line. +At least in the beginning, yeah. +Yeah. +All right. +Now you produce news segments. +I couldn't be more secure. +OK. +OK. +OK. + + + + +OK. + + + + + + + + + +OK. + + + + + + + + +OK. + + + + + + + + + + + + + + + + + + + + + + + +OK. +OK. +OK. +And there's a certain demographic, which I tend to talk to, which seem to be most at risk as far as either the age range or the technology proficiency that we really have to watch out for and say, hey, listen, you can't just fall for stuff like this. +And like the Nigerian print scams that have been going on for 20 years and people still fall for them. +Longer than that. +Yeah. +Well, about 20 AOL days, really. +Well, okay. +Okay. +Online. +But they originally started out with a letter. +They were sending out letters to attorneys and dentists and stuff like that. +Then they migrated to the online world and it's called a 419 scam. +Oh, yeah? +Yeah. +See, now, I'm one of these weird people that I actually don't get mail, like at all. +It's like there's... +There's still... +At my house, there's still the, this address is vacant slip in the mailbox. +So I just... +No mail. +So I'm just one... +I'm kind of weird like that. +I actually know somebody who got the letter way, way back in the day. +Really? +Regarding their business. +Huh. +And they gave them money and did not get it back, even though it eventually got reported and whatnot. +So, Jay, tell me about yourself and what your motivation is for... +What's going on here with scam and... +Well, motivation and my motivation here was talk about a whole... +Just a little segment called scam baiting. +And to go back, there are actually three types of people who are at risk. +One, you're talking about the older college kids and also people who are foreign, who don't speak the language quite as well. +Right. +They are easily intimidated. +And... +So there's a whole segment that's called scam baiters. +But to just give you a little bit of background, we're talking about big money. +And in April 26, 2017, there was a new survey that indicates Americans... +This is just Americans lost $9.5 billion to phone scams. +And that was just last year. +So who knows? +Who knows what happened all of 17 and what's happening now? +So it's big bucks that they are making. +And it's not only Americans. +These scammers are all over the world. +Okay. +So you mentioned scam baiting, at least the phrase scam baiters. +Now, there's plenty of scammers out there. +But typically, the scam baiters are things like the ones that are trying to hook... +the scammers into making a mistake or reverse engineering the scammers. +As an example, there was an article on Reddit yesterday that talked about one of the, quote unquote, scam baiters +that basically hacked his way into the scammers and refunded a bunch of money to people that had had their money taken by the scammers. +And so these guys are out there kind of... +They're more like the 4chan and 8chan crowd that are reverse engineering the scammers and saying, +well, you know what? +We're not going to let you get away with this. +And a lot of them are just wasting time, which is great. +Because if they're on there trying to waste the time of the scammer, +that person isn't out scamming somebody else at that moment, someone who's very much at risk. +And at least in my line of work during my day job, Mary, we deal with this every day, +right? +Right. +Right. + + + + + + +And so I call up and say, well, you know, or they come into the shop and say, well, you know, +I let this person onto my machine and they did horrible things and they gave me my credit card number. +And now I need you to fix my computer to make sure that it's secure. +So there's definitely a lot of money, not just directly like the, you know, +the billions of dollars that were lost directly to scammers, +but there's an entire secondary market where now these people have to go and have their computer looked at +and they end up spending money with places like me or, you know, Best Buy or somebody. +Right. +Or somebody else to try to get their machine back in a working state afterwards. +So there's an indirect market or loss involved with that also, +which I assume is going to be probably on par with that original number, right? +Because they're going to take a couple hundred dollars from, +or up to $400 on average from every person that they deal with. +And then you're, that person then has to go and spend another, you know, +$150 to $200 to get their machine fixed up afterwards. +So that's, that's a huge amount of money that's out there in the world. +Just because, because people are, well, on two sides of it, +you've got the gullibility of the user side, +but you also have the, the, +the aspect of it where you've got people that are just preying upon others. +And you're going to see a lot of this with people who have like regular phone lines. +Like if you have a landline in your house, +you're much more likely to be contacted by these types of people. +Like, +I never get the call. +I don't get the calls anymore, right? +Just because I'm cell phone only. +I don't have any landlines, +but people who have landlines get these calls all the time. +Cell phones are being attacked all the time. +Now, member card services. +Yeah, that's a big one. +And before you go back on that and you, +you hit the nail on the head, +what do scam baiters do? +Their whole goal is to waste their time hours on end. +And even right now, +as we speak, +and you can go to YouTube and look up scam baiting or IRS scam. +There is a live stream now and there's a series of five or six, +seven scam baiters. +And they're not all guys. +They're women, +they're men, +they're old, +young, +some speak Spanish. +They're online right now. +Real time scam baiting. +You can go to YouTube, +find it and listen to them. +And if you, +uh, +if you're out there and you've never heard, +what, +uh, +some of these scams are the Medicare fried fraud, +the, +uh, +oh, +uh, +the grant scam. +Uh, +you can go to YouTube, +you're safe and look up scam baiting or IRS scam. +And you can, +uh, +see literally hundreds of thousands of videos. +And a lot of these people are creative even with cartoons and names. +But the, + +these people are doing, +and then you can familiarize yourself with what's going on. +It is a lot of it is funny. +A lot of it is NSFW. +That's for sure. +You learned how to swear in Hindi. +You can learn a second language. +It's very educational. +Uh, +but you can see what's going on and the situations. +He's scam baiters will call in as an old lady, +an old man who's on a low income. +These scammers do, +not care. +Nope. +All right. +Well, +we're going to talk more about that after we do the first break here. +First, +let's take a moment to mention our sponsor. +That would be perfection out of works. +You can visit their website, +perfection, +out of works.com and they will happily get your car in for a 26 point inspection. +It is that time of year as you know, +starting to, +we're going to end up in before, +you know, +it's gonna be summer again. +True story. +Yeah. +And, +uh, +well, +you never know right now, +uh, +cause one day it's 50 degrees and one day it's 80 degrees. +You, +you just don't know, +but go down there and get your, +your 26 point inspection. +You can also give them call three, +two, +three 8650. +Tell Mike and his team that you heard from us and you get a little bit of +prioritized expedited service. +Yeah. +Cause you know, +computer career show. +Anyway, +check them out. +Perfection out of works.com. +Listen to their ad coming up next. +And we'll be right back after this. +Oh, +yeah. +Look up. +Hmm. +Pop pop. +Your computer guru. +Mike Swanson is here to help you tame that beast of a machine. +Join the chat right now at guru show.com or call in. +This is the computer guru show on KVO. +Why the voice? +Your technology guru. +Mike Swanson is answering all your questions one by one. +Yes. +So chime in with yours. +The website is guru.com. +And you can also tune in to the computer guru show.com. +Tune in, +click in and kick back. +This is a computer guru show. +Welcome back to the computer guru show. +My name is make Mike here to deal with your technology needs. +Andrew, +would you like a person in the process? +We have Jay Melnick in. +He is a basically a journalist working on stories about scammers and, +and all of the sort of nuance that's happening in that particular area, +trying to keep people safe and doing a bunch of interviews. +He said, +so, +so tell me about you. +Let's, +let's get a little background on you, +Jay. +I mean, +other than the, + + + + + + + +other than your intro here, +what is your, +what started you on this path? +Do you think +on the path of computers? +Yeah. +I'm always curious. +So how people got into technology, +uh, +in, +in high school, +uh, +an Emily Griffith opportunity school. +There was a, +uh, +beginning computing, +and this was punch card days, +right? +So we learned machine language. +And then the university of Denver, +uh, +we did programming and that was Algal. +And, + + + + + + + +and that was the huge with the raised floors and air conditionings. +And that was like one Thursday every month or something. +Right. +Uh, +college, +uh, +went into, +uh, +uh, +it or whatever. +And I was still punch cards. +And I got to be thinking, +well, +she is a computer's the way they're going to go. +And it's just programming. +We're, +you know, +what's, +what's the downfall of that? +Well, +the punch cards, +well, +it's a little bit more complex than that. + + +uh, +let's take away the human element. +So computers will be programming computers. +What is that going to look like in the future? +Let's before PCs. +So I went back to business and went to my, +uh, +radio days, +I guess, +and Denver and doing all kinds of stuff and TV. +And then, +uh, +went back and saw the new thing of BBSs and I liked what was going on. +So that's where I started going to the, + + + + + + + + + + + + + +uh, +the Colorado snow bank. +This is 85, +84, +uh, +got laughed at a lot. +Cara snow bank cause skiing in Colorado and, +uh, +tried to sell that idea. +Oh yeah. +People, +people's computers calling other computers and I get snow reports and road reports and all this other stuff. +And they just sort of looked at me and laughed, +you know, +and had to take it on the road and stuff. +And then over a time period, +some of these people who are laughing, +they'll unveil and laugh anymore. +They became gurus and then I was laughing at them. +So yeah. +So those of you don't know, +the BBSs are, +were bulletin board systems and they were, +they were effectively the precursor to the internet. +Um, +especially, +I mean, +you really started seeing the, +where things were going when things like echo mail came up, +became a thing. +If I don't know. +Yeah. +So where you had, +uh, +and different bulletin boards all came out. + +And then you started communicating with one another to share information so that you could do like, +uh, +you know, +it's kind of weird is that you used to have like a, +uh, +think of like your work email. +Yeah. +So you'd be able to, +to log into the BBS and check your individual mail. +And there was generally a, +uh, +a series of posts which were somewhat similar to what Reddit is today to a certain extent where people could comment on and have a conversation. +And then once things like Fido net became a thing, +then those same conversations were then echoed to other bulletin board systems where other people could log into them and also communicate with that particular thread or send mail from one server to another. +And it was, +it, +it definitely was what the internet is now. +Yeah. +As far as you could see the, +the echoes of that, +uh, +sort of a Darwinian, +uh, +precursor to that. +It's, +it was pretty interesting. +And I, +I've, +I found myself hugely fascinated with the bulletin board systems of the back in the day. +And I spent a lot of time doing that, +uh, +even though my, +my father was not terribly happy with it. +Um, +because at the time, +you know, +I was, +I don't know, +12 years old or something like that. +And, +uh, +I kept tearing apart computers to, +to, +you know, +make a bigger system and, +and build my own home network and stuff like that. +And, +uh, +yeah, +he wasn't, +wasn't pleased, +especially because computers back then were really expensive. +Uh, +so I mean that, +that, +that time I broke his computer, +uh, +which I've told the story before where I, +I took apart his computer and broke it. +Um, +and he gave me the carcass of the machine and then put a lock on his door and said, +yeah, +if you want to use a computer again, +you're going to fix this one. +And, +uh, +that's sort of where the, +the computer guru was born. +But, +you know, +you didn't want to drop another three or $4,000, +uh, +on a replacement machine because that was quite a bit of money back then. +And even, +I mean, +by today's standards, +your smartphone is infinitely more powerful than the machines that we were running the +Bolton boards on, +uh, +it more storage and everything, +right? +It was just so much, +it's such a quaint technology, +but I look back upon those days fondly. +Oh, +my first, +uh, +10 megabyte hard drive was a thousand dollars. +And also when you were, +they were all, +they were all modem. +There was no wifi. +So you're tying, +tying up a phone line. +Oh yeah. +Yeah. +I had a separate phone line just for that because nobody could get me off of that lucky off of the Bolton boards. +Um, +I mean, +at first it was, +you know, +somebody picking up the phone and then you see the garbage appear on the screen because somebody started talking or, +you know, +interrupting your communication. +But yeah, +I mean, +that's some old school cool for, +uh, +when it was not, +you know, +basically we were just nerds back then. + +uh, +yeah. +Yeah. +Let me throw something out. +Sure. +Go for it. +Get ready to write. +Here's a great site for everybody. +It's called scam aside.com. +S C A M I C I D E.com. +It's a newsletter. +It's a daily newsletter. +The guy is an attorney and he puts out the latest scams and warnings out there and it's free. +You can get it and, +uh, +you can see what's going on. +So one of the things that we were talking about when we spoke on the phone last week is that I, +you know, +I often don't think about these scams because, +um, +I have insulated myself in such a way. +They don't really see them. +I'm not exposed to them very often other than when a customer comes in and says, +well, +I, +you know, +the scam happened to me. +Um, +so opportunity, +you know, +scams like the yes scam, +which it's not necessarily an online scam. +That's a phone scam. +That a lot of people will inadvertently fall for where someone will call you up on the phone and say, +um, +they, +they can say often little things like, +can you hear me? +But they'll often open with something, +you know, +useful like, +hi, +I'm from blue cross blue shield or something along those lines. +Are you this person? +And they're wanting you to say yes so that they can then take snippets of your conversation. +Uh, +and over the course of the car of the, +uh, +conversation that you have with them, +they can then reorder that in their audio editing platform and have you verbally sign a contract. +And so there's a lot of people that fall for this. +Yeah. +And basically, +you know, +you have to be kind of ruthless. +So if somebody calls you up and says, +I'm so and so are you, +can you hear me? +Or are you this person? +Um, +don't say yes. +That's all that part of social engineering that you see. +Yeah. + +Yeah. +That's a manipulation for sure. +And, +uh, +I just, +I don't talk to anybody on the phone in that way. +Like when people call up and say, +is this so and so I can say, +I'll often just say, +how can I help you? +All right. +I won't say yes or no, +or anything that can be used against me in that way. +And mainly because I, +I need them to authenticate with me. +Right. +I don't know who you are. +You're calling me. +You better prove to me who you are before I say anything that's important or that can potentially get in the way of my conversation. + +You would, +you would also mention in that same conversation, +how could anyone fall for this, +this stuff? +I mean, +you and I and the people listening out there, +how can, +I mean, +it sounds so ridiculous. +Uh, +they want you to go to a federally authorized store, +which is Walmart or target to keep, +pick up a federally authorized voucher to pay for, +which pre-paid credit card or gift card, +gift card, +which is a gift card. +And how can anybody, +and, + + + + + + + + + + + + +but if you listen to these calls on YouTube, +you can see how it can be. +People can be intimidated or the don't have the use of language or they're greedy. +They rely a lot upon greed. +How that can happen. +Well, +I think there's a sort of like a snow blindness that happens, +but it's tech blind, +right? +Where you've got these people that they have no, +no, +it's magic how their computer works. +And so, +So when they are faced with one of these scammers, they just are like, well, I don't know how any of this works. +So it's much easier for them to just take whatever that other person says, no matter how ridiculous it is. +Like, go down to the store and get a gift card and then come back and give me the number. +They're more willing to do that than to go like, well, I don't know how this works, but that just doesn't seem right to me. +And because it's so foreign to them, they might not even understand that it is wrong. +Or that it's not something that should normally happen. +And that's why over the years, you know, I've encouraged people. +If you have, you know, somebody calling you, trying to scam you, send them my way. +I'll deal with them. +And there's even a new one that happened just last week. +It's a Roku call. +A person calls, says they're from Roku. +And you have to now buy their premium service to get Roku for $200. +Plus $5 a month. +But Roku, it's actually called the Premier Service, not Premium. +But that's a new one out there. +Interesting. +Yeah. +Well, it's definitely not a new thing. +You know, as far as like even what we had Tucson Electric Power that's been issuing warnings like every week through the news saying, you know, if somebody calls you and says they're from TEP, they're not. +Or if they show up at your house, they're probably not. +You know, unless they can probably. +They probably authenticate and have ID and all of that stuff. +You know, scamming is it. +I really wish we could just say that nobody was gullible enough to or naive enough or ignorant enough on the subject to fall for these things. +But they do. +And we'll talk about ways that you can protect yourself after this next break here. +So stick around for more of the Computer Guru Show right here on KVOI. +Give us a call if you'd like to be part of the show. +790-2040. +We'll be right back. +We'll be right back. +We'll be right back. +We'll be right back. +We'll be right back. + + + + + + + + + + +There are some ways that we talk about where people can protect themselves from these types of things. +One of which is, you know, just be skeptical. +Really be skeptical. +Like, don't provide credit card information for somebody who calls you. +Now, I mean, if you know who you're dealing with, right, and they can properly authenticate with you, right, +and you've called them at a number that you know is definitely them and you want to initiate some type of payment that way, sure. +But if somebody calls you and says, you know what, I think you need to give us money, you should probably just say no. +And you can also join the fight, you know, as far as that type of stuff is concerned. +And we've talked about this before, which is waste their time as much as possible. +If you've got the time, you know, most of the people that are going to fall for this are probably retired anyway. +So there's a great chance that if you need a new hobby, your hobby can be just wasting the time of somebody trying to. +Scam you and take as long as possible and make them repeat themselves as many times as you can. +What are your tips as far as, you know, what should people be on the lookout for and ways that you think that they can either contribute towards the cause or ways that they can just know that they're trying. +Somebody's trying to scam them in some way or another. +They just it just doesn't make sense. +I mean, what they're trying to offer. +Oh, yeah. +You want a free cruise, but you have to pay these charges or whatever. +You're listening to the show. +You've got the Internet. +You've got the power of the Internet. +You've got the power of Google. +Just Google it up. +You know what they're trying to say. +Oh, what company are you with? +Repeat that again. +Oftentimes you can just type in the phone number they're calling. +You can type in the phone number. +There's a service online that's called bad numbers dot. +I.N.F.O. +You can verify. +You can verify through that. +And if they say they're with the company, take a name and number down. +Find a known good number for that company and call that company. +And even as you well know, they can really spoof and social engineer just from your bank. +It looks like your bank is asking you to like a phishing experiment, phishing experiment or spear phishing. +Even spear phishing is where they have your contact information, especially with all these numbers. +And sites that have been compromised so they can directly say Mr. +Mrs. +Jones. +Thanks, Equifax. +Yeah. +And hey, Target also. +Right. +Home Depot. +Home Depot. +I mean, the list goes on for. +So just hang up. +Call the known good. +Turn your credit card over. +Call them. +And then to go to help the cause, which is time up. +Don't hang up. +Is just talk to them. +Yeah. +I don't hear you. +What did you say? +If you want ideas on how to time up, go to YouTube. +Go look at scam baiting. +Go look at IRS scams. +You'll find them all there. +Hundreds of thousands. +Some are enjoyable and pleasurable. +There's cartoons and funny names. +We have Wonder Woman calling with a voice changer and just all kinds of other people. +Yeah. +There's a lot. +There's a lot of sound boards that are out there. +Sound boards. +Yeah. +There's one of them that is just, it's a riot to listen to. +It's using the Arnold Schwarzenegger sound board to respond to people trying to scam them. +Or it's asking things like, who is your daddy and what does he do? +You know, it's pretty, it's great if you are, if you're cognizant of these things, if you can recognize the scams. +And it's just a lot of fun to watch them waste the time of the scammers. +Yeah. +Yeah. +Yeah. + + + + + + + + + + + + + + +There's the other side of that too, where there's people that are taking it to the scammers and basically being destructive to the other side. +As far as they'll get somebody to remote into their computer. +And one of the ones that stood out to me was that they left a file that looked like a Bitcoin wallet in a folder on their desktop. +And, but that file actually was a, basically a Trojan. +It was a way for, you know, he knew that the scammer would snatch that file. +Oh yeah. +And take it off his computer. +So, you know, he left the guy into his computer and he saw the guy drag that file off onto his own desktop. +And when he ran it, he had remote control of that guy's computer. +Sure. +And then really started scaring them because he was like, yeah, well, I see your background is this. +And, you know, I see what software you're using to do all of this. +And basically started refunding people's money from the other side, you know, locked that user out of his own computer and said, refund, refund, refund. +And, and, and before they managed to turn the computer off, refunded about $20,000 worth of money. +And that's good on him. +Now he's legitimately saying, well, you know, I don't know if I should be open on this YouTube because technically what I did is illegal. +Right. +As far as, as remote controlling somebody else's computer without their permission. +But that's the same thing they're doing to you, right? +Because the permission that you give them is under false pretense. +But it's not like you're going to be able to call and say, well, some random company, most likely in India, took control of my computer and stole information or, you know, took money from my bank account or, you know, the biggest red flag of all, asked me to pay in a non-traditional currency. +Sure. +As far as the gift cards or, or, or. +Through some type of a cryptocurrency exchange or some type of not regular refundable cash money. +Sure. +So it's just be on the lookout. +And if you're, you're right, if it doesn't make sense, if it seems like, well, you know what? +I don't feel comfortable, you know, listen to your spidey senses. +All right. +If it, if it feels wrong, like you don't know what's going on here, then you should probably just back out of that situation. +The other thing that want people could do is if you're a church or where you have relatives, +older relatives or people who are having problems, challenges, I'll put it that way. +Check on them, make sure that what they're doing and inform them of this stuff because they don't know. +And there's, there's a couple of other ways that you can sort of passively protect yourself. +We'll talk about those in a moment. +Let's talk to Mike. +We got a caller. +Hello, Mike. +How are you? +Good. +A while back, my dad got a so-called phone call from his grandson. +I've never had a child or my sister. +And this supposed grandchild asked my dad to wire him some money because he was in a car accident. +Yeah. +And my dad obviously didn't fall for it, but I just thought it was interesting. +My folks called and said, we got a call from your son saying he needed money. +Yeah. +Yeah. +The grandchild in trouble of some type or another is, is definitely a larger scam that's out there. +And a lot of people fall for it. +Man, so many people fall for those types of things. +And I've heard situations where this one woman. +I heard on the radio lost her life savings over some of these scams. +Yeah. +Well, I mean, there's, there's a lot of money involved in it. +You know, you were saying that, um, that Jay, that there was, uh, even local people have lost thousands and thousands of dollars. +Down in, in the past few months down in Green Valley, one gentleman lost $50,000. +Yikes. +And one woman lost $54,000. +And that's recent. +And there's very little recourse depending on how that's. +It's gone. +Yeah. +How you deal with that. +Um, and that's why when you use things like non-traditional currencies and, and, uh, when you're dealing with, um, you know, you're being overly trusting, I think when it comes to a lot of people, uh, you don't just take somebody's word for it. +It's definitely not a good idea. +Yeah. +And, and especially with the older generation, they will, they are more likely to fall for the heartstrings type things. +Right. +Like, like the Nigerian Prince scam. +Like the, the friend or a relative. +That's in jail or in another country and stranded. +Or you'll get the email. +Yeah. +Uh, and it's just, it's, you, you have to be more cynical than that when it comes to the technology. +Right. +Because. +Exactly. +There's a lot of people that fall for very, very sort of obvious things when you look back on it. +And another major fraud, especially with the older community is a Medicare fraud. +You will get a call or something that says, oh, free back, back break. +Free this, free that for medical stuff. +Right. +And it's just outright Medicare fraud. +They want all your numbers and it's ID theft as well. +They want all your numbers, your insurances and stuff like that. +Don't know if you even get your back brace or your arm stuff, but they've got all your numbers and they've got your Medicare number, which is your social security number. +Right. +And, and believe me, any of these places that if, if Wilford Brimley is saying that you should probably check into it. +That may be okay. +Is he still alive? +Did we determine whether or not Wilford Brimley is still alive? +I don't know. +I don't know. +But they're not going to call you at home and offer you free stuff. +Right. +Even the thing that you see on TV about the get your Medicare approved rascal scooter. +And yes, he is. +Okay, cool. +I'm glad that he is. +It's probably because of those diabetes testing supplies. +Yeah, that's it. +But if, you know, even if you're going to get your free rascal, right, that they talk about on the, on the, on television. +At three in the morning. +That's still you calling them, not them calling you. +And that whole, it's just, it's really sad to me that people fall for these types of things. +And like I said, I don't even see them anymore. +Well, I even have received calls from, oh yeah, we're returning your call on your medical alarm or your alarm, which I've never called on. +But it starts out, hey, we're returning your call. +So if somebody is confused a little bit. +That maybe I made a call. +I don't know. +Wow. +Praying on the dimension. +That's, that's no good. +It's no good at all. +All right. +Let's take another break because we've got to fit another one in before the end of the hour here. +And we'll be back right after these messages. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. + +Bye. + +Bye. +Bye. +Bye. +Bye. + + +Bye. +Bye. +Bye. +Bye. + + + + +Bye. +Bye. + +Bye. + + + + + + + + +Bye. + + +Bye. + + + + + + + + +Bye. + +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. +Bye. + + + +Bye. +Bye. + +Bye. +Bye. + + + + + + +Bye. +Bye. +Bye. +Bye. +Bye. +On AM 1030, KVOY The Voice. +Mike Swanson, your computer guru, is just a click away. +Listen and watch at gurushow.com. +This is the Computer Guru Show. +Welcome to the Computer Guru Show. +Give us a call if you'd like to be part of the show. +Radio 79024, we talked about being scammed, or if you have any experience with that. +But if there's ways that you can sort of passively protect yourself, +one of which is please stop using Internet Explorer or Edge immediately. +And if you're going to use another browser, such as any of the WebKit browsers, +that would be Chrome, Firefox, Opera, any of those, please install an ad blocker. +We like uBlock Origin. +That's the letter U, B-L-O-C-K. +Second word, Origin. +It is a beautiful plug-in for the WebKit-style browsers, the Mozilla-style browsers, +so that that way you're just way less likely to see any of those pop-ups on your screen to begin with, +especially ones that lock your computer and talk to you and tell you, +hey, your machine is at risk or it's been compromised. +And by the way, if you do see one of those compromised web pages that come up that starts talking at you, +just close it. +All right? +And a lot of times... +Sometimes they'll say, well, if you're in Internet Explorer, you can't close it, which is true. +You just cannot, can't stop it if you're in Internet Explorer. +But if you're in the other browsers, when you close it, it'll pop back up again, +and then there'll be a checkbox that says, don't show me this message again. +And if you put the little checkbox in there and close it, it's gone. +Just close the browser or reboot the computer, and you won't have to deal with that anymore. +And also, pay attention to what you're going to as far as the site. +Most of the time that you see... +Most of the time that you see those type of lock screens are because of a malformed address. +Like you inadvertently typed Googled or you mistyped a domain +because they will go and buy all of these common mistyping of domains. +Yahoo is one of the bigger ones. +Like if you mistype one of the O's or you're like Y-A-H-O instead of the two O's, +you'll likely end up at a scam site. +Yep. +So just be careful and put an ad blocker on your machine. +Make sure you have... +We like the paid version of Malwarebytes and any free antivirus that is reputable, +usually something like Avast or something along those lines, +then you're much more likely to keep yourself safe. +Also, just stay on top of this stuff. +You can, like Jay was talking about before, +you can view a lot of these types of scams to see how they operate, +and you might actually get some entertainment value out of it, +because they are kind of funny. +By searching for scam baiting on YouTube, +it's not a bad way to at least educate yourself in some way or another. +And you wanted to mention the sites, +the scamicide.com, badnumbers.info, and scammer.info, +where you can go and get more information about other current scams that are out there. +And the one thing I wanted to add that you add, +you said about rebooting, +make sure you're not... +putting your computer to sleep, +because that won't kill it. +You have to actually... +What we have found is you put the finger down on the power for 15 seconds +to make sure it's all the way down. +Yeah, because sleep definitely is not going to solve the problem. +No, no. +And if you're in a situation where you're an Internet explorer +and you want a quick way out of it, +if you hold down the Alt key on your keyboard and press F4, +that will close the browser and make it go away. +And then you can properly reboot your computer, if you like, +by doing... +you know, start the power icon and reboot. +If you're in Windows 10, if you're in Windows 7, +start, shut down, restart. +Or, you know, just hold the power button down until it shuts off. +Or if you're on a desktop, just unplug it. +Now, that's not a good idea to do to your machine very often, +so please don't do that unless it's important. +You know, like you're stuck in some way. +But then, if you need a second opinion on whether or not +something harmful has happened to your computer +or you suspect that there is other bad things, +bad stuff going on, +give us a call down at the shop at 304-8300. +We will happily talk you through it and get some more information. +And if nothing's wrong, we'll just tell you, +hey, nothing's wrong, no big deal. +But if you need to bring it in, we're always here to help. +Did you have any other information you wanted to hand out +before we end the show here? +No, you covered it up and down. +All right, well, thank you very much for coming in, Jay. +I very much appreciate you taking the time to do that. +And I hope that people out there have found +some type of informative information in this +and that they have an opportunity to protect themselves. +Or if you know somebody who's at risk, +like if you do have, let's say something +that's a little bit older in your life, +you know, you got a parent or grandparent that's out there +and needs a little watchful eye on them +when it comes to these types of things, +you know, help educate them. +You can either tell them to, you know, +the things to watch out for. +You can refer them to gurushow.com +for podcasts on this type of information. +You can give us a call down at the shop, 304-8300. +We'll help you and them learn how not to +get themselves in trouble. +And we do several, +several talks out in the Green Valley area each year, +like at the Green Valley Computer Club. +We do some at the Up and Dove Mountain. +We do some other ones where this demographic +is likely to live. +And we'll sit and just answer questions, +usually for two to three hours. +I will sit out there and answer questions +about how to keep yourself safe online, +how to make sure that you are not putting yourself +at additional risk, +and answering just various technology questions +in the process, +making sure that we keep you educated. +Because a little bit of education can go a long way +towards saving you, what, $54,000 like that later? +Oh, 54, 50, yeah. +So if you, I mean, if you've got 50 grand, +you just want to throw away on scammers, that's fine. +But I would say there's probably better uses for that money. +And you don't want to get yourself into trouble +with that type of stuff. +So just keep yourself safe online, people. +And be very, very skeptical. +Right? +Right. +Right. +Stay informed. +Oh, you're still here, Tara? +Yeah. +Oh, okay. +Just making sure. +Just chilling. +I'm listening to the conversation. +And once again, thanks to Jay for coming in. +Is there a place that people can see your work +or anything like that? +Are you interested? +SoundCloud. +SoundCloud? +SoundCloud. +Go to your call radio, C-O-L-O-R-A-D-I-O, SoundCloud. +Also on anchor.fm. +Right on. +All right. +So if you want any more information, +I'll get your links from your card +and put them on the podcast. +I'll get your podcast notes. +So if people want to check you out, +they definitely can. +Thanks again for listening to the first hour +of the Computer Guru Show. +Let's go ahead and talk about +the ultimate sponsor for the show, +which is Arizona Computer Guru. +You can come see us down at 510 East Fort Wool +or 64 North Harrison, +or give us a call at 520-304-8300, +or visit the website azcomputerguru.com +if you have any problems with your technology +in any form, +whether or not it be your residential +or for your business. +You need a new website? +That's what we're here for. +We do everything under the sun, +effectively, +when it comes to computers, +except for development, +because nobody has time for that. +Ain't nobody got time for that. +Nobody's got time for development. +To me, I see development +much like interior decorating. +No, I will not move the curtains +three inches to the left. +No, I will not. +So I'm just not going to do development. +But everything else that you can think of, +it's very likely that I have someone +that specializes in just that +working for me over at Computer Guru. +Thanks again for listening +to the first hour. +Stick around for the second hour +of the Computer Guru +coming up next right here on KVOI. +And if you'd like to be part of the show, +give us a call, 790-2040. +We'll be right back. +I say a warning +Live without warning +I say a warning +Live without warning +From my heart and from my hand +Why don't people understand +My intentions? +My intentions? +Computer running slow? +Avoiding. +Caught a virus? +What? +No! +When? +Does your computer seem to have +a life of its own? +Malfunction. +Need input. +The Computer Guru is here. +Thank God you're here! +Call in now. +Now, it's Mike Swanson, +your Computer Guru. +Hello and welcome to the Computer Guru Show. +My name's Mike. +Here to deal with your technology needs +and treat you like a person in the process. +790-2040 if you'd like to be part of the show. +That's 520-790-2040. +Thank you. +And so we're going to make an announcement here, +which is today is the last Computer Guru Show +that's going to be on for probably a while. +I'm going to take a bit of a hiatus, +mainly because I've got a bunch of reasons for it. +But if you want your opportunity to have your +sort of last tech support weekend +that's available to you, at least on this show, +you will give us a call, 790-2040. +And there will be plenty of information, +plenty of updates about, +what's happening. +There's actually going to be a, +another version of the show next week. +That's podcast only. +Just, it'll give it more of a detailed update +as far as what's happening, +what projects are happening. +But you'll have to either pick that up on iTunes, +YouTube, or one of the other podcasting platforms, +or you can go to gurushow.com to get that information. +It's, there's a bunch of things going on that, +as an example, my, I mean, +I have my daughter living with me full time. +And I would like to free up some weekend time for, +yeah, I've never really done the whole like family +weekend stuff. +So, and I'd like to do that. +You need room for activities. +Yes. +And there's just a lot of things going on and I +haven't really had more than a couple of Saturdays off +in almost 11 years. +So I would like an opportunity to, +you know, work on some of the projects, +have some family time and, +you know, +just, you know, + +just to refocus. +Also, I've, the show's sort of been suffering due to me +not having time to properly prepare for it, +to stay on top of the subject, +like, like I would like. +And I feel like the quality of, +of the show has, +has slipped just because, +and it's my fault, +right? It's, I haven't had the time to put into it. +And so I would be, +I don't want to be disappointed with my own product. +And so that's, +that's a, +that's a big consideration. +As far as what's going on with that type of stuff. +But, you know, +we're here today and so we should probably help people. +And we'll go ahead and talk to Annette. +Hello, Annette. +How are you? +How are you doing today, +Mike? I'm glad I caught you before you went on vacation. +Yeah. +Or hiatus, excuse me. +Yeah. It's, +we're probably going to take like five or six months off before +we put out more shows. +But we don't know how or where that's going to be, +but if you go to goodreshow.com, +you'll get the information. +Just make sure you get the information. +We'll probably come back at some point. +I'll give it a shot. +Cause I'm, I'm running out of gurus here. +Okay. +I have a interesting problem and you've probably heard a +variation of this before. +Give you a little background. +My, my primary computer is a windows 10 machine. +And about a year ago, +I had a strange issue surface where one of my hard drives, +not the system drive, +but the drive, +I keep most of my data on because I'm using a solid, +an SSD for a boot drive. +Okay. +Okay. +So my E drive, +I started to have it a hundred percent disc usage all the +time. +Okay. +Even when nothing was accessing it. +After a fair amount of hair pulling and head scratching, +I replaced the SATA cable and it worked perfectly fine. +Okay. +Which I thought was a bit of a little, +but now I'm having a similar problem with the same drive, +the exact same drive. +Okay. +I now get a hundred percent drive usage only when I access +the drive, +which of course is frequently because that's where my +documents and everything else, +which as you can imagine, +that brings the computer to its knees. +Right. +And I'm wondering if there may be something wrong with the +drive that's not showing up in the smart report, +every drive test, +that I've run on it, +doesn't find any problems, +but I find it hard to believe that I have another bad SATA +cable too. +The drive's fairly old. +It's got about over 600 days of usage on it, +according to the smart report. +So any thoughts on that? +Well, 600 days, +especially if the machine is on all the time, +then that's, +that's not a terrible, +you know, +it's not terribly high usage. +It's on during the daytime. +Most of the time, +it gets turned off at night. +Okay. +So yeah, +you're probably at the, +about the end of the lifespan of that machine, +if that's the case, +cause you'd be at about four years there as far as age of +the drive. +The a hundred percent usage is likely not, +wasn't the SATA cable in the first place. +It just is probably more coincidental that it started behaving +afterwards. +You could have though a problem with the drive controller, +which would be a motherboard issue or, +you know, +if you're plugged into some type of a SATA card, +that could be the problem there. +But if you look at, +you said this one does 10 on this machine. +Yeah. +If you look at the performance monitor and you look under disk usage, +does it tell you what is using your, +your disc? +Have you been into the performance monitor? +Yeah. +I've looked at the resource monitor and the performance monitor, +and there's a lot of things that use the disc. +But basically anything at the moment that's using the disc, +it seems to be hogging a hundred percent of the disc. +Some of the things that are using the disc periodically is the page +file. +And I expanded the size of the page file. +How much memory do you have on the computer? +I got six, +six gigs of RAM on it. +Okay. +And that's a windows 10 64 bit. +Okay. +So what are you using to test the drive as far as whether or +not it's good or not? +Well, +I use, +I've used crystal disc info. +I use, +I use the Western digital data life card, +both of which reads the smart and smart data. +And then I've looked at, +I've looked at the resource monitor and noticed that the access times tend +to be very high. +And I also looked at the error logs and the error logs had a +lot of caution, +caution symbols. +And they're saying address was, +we tried something along those lines. +Okay. +I remember the exact, +the exact wording, +but it was, +it was a desk issue in the, +in the, +in the error logs and it had the word we tried in it. +Right. +So when you're looking at something like crystal desk, +because that's the one that I would recommend that you use, +it's one that's easiest, +easiest to work with. +But, +um, +when you're using crystal disc, +are you using that while the system is under load or while +it's doing the a hundred percent thing, +or are you just doing that like every so often? +I'm just, +you're doing it every so often. +I would say, +do that, +run that test because it is that the way that crystal disc works is +it gives you a periodic result as opposed to a longterm result or +a historical result. +So it's looking at what time, +how the drive is behaving at that very moment that you are looking +at it. +So if the machine is under load and doing the a hundred percent +thing, +I would check it then just to see what it does. +Um, +because oftentimes a, +a drive will test is good as opposed to smart data because it's +a rolling window. +When it comes to smart data, +or at least a majority of the smart data. +Um, +that way you can look at that very instance of what's happening +and find out what's going on there. +I would probably guess that you're most likely having some type of +a controller issue though, +even though your drive is probably too old to, +uh, +really identify that problem. +Okay. +Um, +well, +unfortunately I've got a lot of state of course on that motherboard. +So my, +my, +my theory at the moment, +um, +you know, +my low budget theory is probably going to be, +uh, +try a different state of Porter replaced the theta cable as well. +Well, +you can try that. +However, +all of those ports are going to be run. +Uh, +I mean, +depending on how many you have, +uh, +all of those ports are not eight. +All right. +So if you've got eight, +you likely have two controllers on that board. +Okay. +And, +uh, +one of those controllers is probably bad. +And in which case you have a 50% chance of being on the same +controller. + + + + +Even if you're on a different port. +Right. +So the other interesting thing is of course, +is my boot drive is theta. +My, +I have another data drive drive F, +which is theta. +And I've never had a problem with either one of those. +Only the E drive. +Well, +you can try a different port. +That's your low budget. +I mean, +but replacements, +you know, +conventional drives are cheap. +Yeah. +So, +yeah, +I may wind up just buying another drive. +Cause, +uh, +like you said, +600, +650 days is quite a lot of time on the drive. +Yes, +it is. +Well, +good luck with that. +And that I appreciate you. +Well, +thanks very much for your input and I hope you enjoy your family. +Thank you very much. +So we're going to take a break. +If you'd like to be part of the computer guru show for the last +episode, +you can give us a call 790-2040. +That's 5 T 0 7 9 0 20 40. +We'll be right back. +Cause I'm dynamite. +And I'll win that. +I'm a power load. +Your computer guru, +Mike Swanson is here to help you tame that beast of a machine. +Join the chat right now at guru show.com or call in. +This is a computer guru show on KVO. +Why the voice. +I'm dirty. +I'm a machine. + + + +I was in a V club and Glee club and even the chess team. +Only question. +I never thought was hard. +What do I like her? +Or do I like my card? +Spend every weekend at the Renaissance fair. +Got my name on my underwear. +Welcome back to the computer guru show 790-2040. +If you'd like to be part of the show, +we'd love to hear from you. +We have a caller called Paul. +Hello, +Paul. +How are you? +Yes. +Hello. +Um, +I had called before and asked about some error codes and you asked me to email you + + + + + + + + +so you can explain to me what they meant. +And I did that. +I emailed him twice. +Actually, +I never got a response. +Oh, +really? +What was it? +Well, +they're kind of long. +Um, +if they start with zero X, +just give me that part. +Yes. +Yes. +He started with zero X and then there's a six zeros and then eight and E Edward. +And then there's in parentheses, +a whole set of more of these zero X codes and they all end in different numbers. +Um, +and then there's like the first set is in zero five, +right? +The same, +you know, +64. +Those parts are more of the, +the specifics. +It's that first part that's really important. +It kind of gives you the what's happening part. +Oh, +okay. +Zero eight. +Um, +so zero eight E is Colonel mode exception not handled. +And it usually means that either a driver has called to a spot within windows that is +failing in some way. +I mean, +most often it's going to be a driver failure of some type. +Like if you have some, +some old hardware that's on there and the driver's no good anymore, +or it's going to be a Ram problem. +So, +uh, +almost always with eights of any type. +So zero X eight is somehow their memory is faulted in one way or another, +either because of a driver or some bad hardware. +So you're, +is there any way if, +if it is, +is there any way to narrow it down to which hardware or what part of the Ram or whatever? +So how often do you see in this message? +How often do you get it? +Every time that I start my laptop, +um, +after it loads, +uh, +well, +for lots of after it loads windows, +it's okay for about, +I don't know, +four minutes. +Okay. +And then it does, +it does this, +um, +blue screen thing where it shows these codes and then it shuts off. +Okay. +And then it just, +or it will actually restart. +And just regular, +it just reboots, +right? +It comes back up again. +Yes. +Every single time that I turn the laptop on. +And so I have to reboot into, +um, +safe mode in order for it to work. +And then it works fine. +Okay. +And what type of antivirus do you have on the machine? +Uh, +I'm sorry. +And it seems pretty good. +I couldn't hear you broke up there. +What'd you say? +Uh, +Panda. +He's in Panda. +Okay. +Yes. +Okay. + + + + +So I'm guessing that, +and what kind of machine is this by the way? +It's a Sony Vail. +I own. +Huh? +Okay. +All right. +So 80 on a bio is, +is, +is its own animal. +And I am going to take a wild stab in the dark here that your video cards overheating. +Cause first of all, +bios always have overheating problems. +It's like that is part and parcel of the owning of iOS. + + + + + + + + + + + + + + + +So it's like a VIO is that it's overheating because Sony didn't make a VIO that didn't +overheat. +Um, +and given that the time delay that you're talking about, +like four minutes or so, +I'm guessing your video cards overheating and that's causing the machine to shut down. +Now if your CPU were overheating, +that would be a different thing. +It would give you a different message, +but I'm betting that the video cards overheating and it's causing the machine to throw an error +and reboot. +Now, +after it comes back, +if can you get back into regular mode after that four minutes? +No, +I can. +Well, +I can, +but it just shuts down again. +It restarts. +So I have to choose the, +cause it gives you the options on screen. +Once it restarts, +what mode you want to start back into. +And I can do regular mode. +It'll just load like it normally does. +It'll start up and then it'll load up and go into screen where you log in. +But then eventually it'll just, +few minutes later, +it'll just do the same thing. +So I go ahead and I choose start, +I mean, +safe mode and then it works just fine. +As far as safe mode. +Right. +There's no problems as far as it shutting down or anything else. +Yep. +I think it's your video card. +So I, +the driver for your video card could probably used to be updated, +but I bet it's overheating. +And have you like, +you know, +taken an air compressor to the second blown out the fan? +No, +I've, +I've taken a fan to it. +It was total fan. +I'm blowing in, +you know, +put it on it. +It does. +It does run hot actually. +Yeah. +Well, +you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be more secure than you couldn't be +and causes the kernel panic. +The other weird thing about this is it has a sticker on it, +on the external shell of the laptop. +It says NVIDIA. +Yeah. +But when I checked in through the programs and so forth, +I couldn't find NVIDIA anywhere inside the machine. +You couldn't find it, like, in the device manager under graphics adapters? +No. +It wasn't in there either. +So under display adapter, I mean, are you in front of the machine now? +Yes, I am. +So do you know how to get to the device manager? +Yes, I can get to it in the control panel. +All right. +So go to the device manager and then look under display adapters +and let's see what you've got in there. +Because I'm curious. +All right, device manager. +Are you in safe mode right now or normal mode? +I'm in safe mode. +Okay. +It's the only way I can, and it won't let me do it, +because I'm logged in as, oh, wait. +Standard user. +Okay. +I just got logged in as administrator. +Oh, I see. +Okay, so I'm in here now, device manager. +All right. +Under display adapters, what do you have? +Display adapters. +It says mobile Intel 945 Express chipset. +Okay. +Is that it? +Nothing else in there? +By Windows. +There's two of those, and that's it. +Okay. +Okay. +So you're doing it. +Your machine uses something like some of the Alienwares do, +which is that they use a video hybrid pass-through. +So it has an onboard graphics adapter, +and it will have like an NVIDIA sort of co-graphics processor. +And what will happen there is when everything's working the way that it's supposed to, +your onboard graphics will handle like the 2D stuff, +and then it will use the additional NVIDIA adapter as a 3D adapter, +and it just basically injects. +That video into the stream. +So Alienwares do that. +Sony Vios are the first ones to do that. +I don't know how long you've been using computers, +but way back in the day, you used to have a video card, +and then you'd have this other sort of loop adapter +where you'd add a secondary graphics card for 3D graphics. +And that's sort of how these laptops work. +So I'm sticking with my original hypothesis here, +is that you've got a video card overheat problem, +and it can't initialize the second card. +Okay. + +And it's hot, and it throws a fit. +So I would say get the machine cleaned out. +After about five years or so, +you should probably replace the thermal compound that's under all the chips on the machine. +So under each of the heat sinks, +there's a thermal compound that helps transfer heat from the chip to the copper cooling tubes. +And that stuff breaks down over time and becomes less effective, +meaning that the cards, +the cards run way hotter than they should. +And so I would say, you know, +either take the machine apart and fix that up, +or it may be time to look into a different machine. +Okay. +I could probably go online and find how to... +There's plenty of breakdown videos for those, right? +Too hot, right. +So if you're going to do a YouTube search, +which is probably the way that I recommend most people do it, +you'll be looking for a, like, your Sony VAIO, +and then hopefully a... +similar model number breakdown. +And it'll tell you how to take the machine apart. +Okay. +The VAIOs are nice and easy, though. +So. +Okay. +All right. +Well, thanks for the call, Paul. +I appreciate it. +And sorry I didn't get back to you. +A lot of times I don't see those things, +so they end up in spam or something, +and I apologize. +Okay. +Well, I set the error codes as attachments. +Maybe you thought it was a, you know, scam or something. +I don't know. +My spam filter is set to absurd. +So I apologize if I didn't see your email. +Okay. +Well, thank you for telling me now. +No problem. +Let's move on to Claudia. +Hello, Claudia. +How are you? +I'm good, Mike. +How are you doing? +I'm doing great. +Great. +I had a question. +I know you were covering security for us and our machines +in the previous hour, +but I didn't hear anything about clickbait. +Could you tell us a little bit about what we should +and shouldn't click on when we're on, say, for instance, +reading news online and we scroll down and, oh, +drivers in Tucson, Arizona need to know about this +or whatever it may be. +Well, if you have an appropriate ad blocker, +you won't even see those. +I do. +I've got, let's see, AdBlock Plus on there +from the Mozilla website. +All right. +Well, get rid of that one. +Put Ublock Origin on, and that'll help. +Oh, okay. +AdBlock Plus is fine, but they have a rather extensive +whitelist where they allow plenty of ads through. +And basically, if you have a decent ad blocker +on your machine, right, and AdBlock Plus isn't that bad. +I still think that people should be using Ublock Origin, +which is a good thing. +Right. +Yeah. +In my opinion, it's a better ad block. +Okay. +You're not going to see much, if at all, +anything that's going to hurt you in that particular instance. +All right. +I'll change my ad blocker. +Now, as far as the other things that you shouldn't click on, +well, basically, you know, if it's blinking +or it's one small trick to make you learn something +that is obvious, painfully obvious, +you don't need to click on any of that stuff. +Like I said, when I was talking to Jay, +I was just like, I don't even see that stuff anymore. +Even if it's on the screen, I've been looking at this stuff +for so long that the stuff that's fake is so blatantly obvious +that I feel like I'm almost underqualified to tell people +to stop clicking on stuff, right? +Because it's one of those things where, like, +if you do anything long enough, you get so good +at spotting the stuff that's wrong that you just ignore it. +Right. +You just don't see it. +Well, I'm aware, and I never click on those. +But I know there's, for instance, +older folks around that have no idea about that. +And I thought maybe we'd pass that tip along. +Yeah. +I don't click on those because I'm aware that they're just clickbait. +Anything that says that, any utility that says that it can fix your computer for you, +you should probably not click on. +Right. +Exactly. +Anything that has a big green download button, don't click on that. +Okay. +You know, it's, stay away from anything that is a converter +of any type of software. +Right. +Like, if you want to convert one type of thing to another. +A big one that we've seen recently with people is the YouTube Downloader, +where it allows you to download videos off of YouTube. +I only recommend one program for that, +and it's definitely not called the Free YouTube Downloader. +All right. +The program, if you want to do that, by the way, +there's a program called Jacksta, J-A-K-S-T-A. +Okay. +They would love for you to pay for it, +but it will work indefinitely. +It will work indefinitely without paying for it for free +if you download that software. +Okay. +And that's the only piece of software that I recommend for that. +J-A-K-S-T-A? +Yep. +Okay. +And that allows you to download YouTube videos +and save them to your computer if you want. +Nice. +All right. +So, basically, any type of converter is going to hurt you. +Like, if you want to be able to, +because a lot of people will be like, +well, I need to convert this so I can email, +I need to email it. +No. +No, that's not how this works. +And people need to use their computers differently +when it comes to sending large files +because they're like, +I want to email 5,000 pictures to someone +all in a single email. +And so they search for some type of converter +to make it so that they can magically make it +so that 5,000 emails can be sent in a single email. +Right, compress it. +They're going to come back with an infection. +And the only way to send, +like, a massive amount of data like that +is to use another platform, +something like Dropbox or something +where you can put all of the files +that you want to send into a single folder +and then you can just send a link to that folder +that is shared specifically with someone. +So, it really comes down to just sort of +don't be afraid to ask for help. +Like, if you need help, +we do five-minute free phone support at Computer Guru. +If you call up and you have just a basic, +basic question on how to do something +and it's five minutes or less, +it's free. +So, all you've got to do is call and ask for help. +I know. +You've worked on my machines before +and you guys are awesome. +So, I appreciate all the help that I get from your store. +You guys are great. +Well, I appreciate that. +Okay, well, I appreciate that. +And I'll let you get back to taking some other calls +and enjoy your family time. +Thank you very much. +I appreciate that. +You're welcome. +We're going to go ahead and take a break. +And if you'd like to be part of the show +for the last Computer Guru Show, +that is going to be on air 790-2040. +We'll be back. +We'll be back. +What can I do for you, Jeff? +Jeff, what? +I was reading an article the other day +just on one of the PC mag or sites +or something like that. +And they were mentioning something called +Google's Name Bench. +And what it is, +is a DNS optimization service or tool or something +that recommends the best DNS servers to use +for your home network. +Okay. +What do you think about that? +Is that worthwhile? +To look into and safe and all that +to find the best DNS server for optimizing speed? +I mean, in a home instance, +I don't know how important that would really be. +I mean, because DNS is pretty fast. +I'd usually set people to Google DNS to begin with, +you know, using 8.8.8.8. +But I don't know how important that would be +on sort of a home network. +I could see it in, +if you have like a high traffic outbound, +outbound type of data center, +that that would be super useful. +But I mean, we're talking about shaving milliseconds +off of things that take nanoseconds. +I don't know that, I don't know. +I don't know how useful that would actually be. +They were, the gist of it was, +they were saying that, and you're probably right, +it's probably just minuscule, +but it analyzes the distance +and finds the best localized and fastest server +as kind of a tool to see, +you know, which one you should use in your network. +So it sounds like it's probably not worth +the time for the speed gains that you would get, if any. +Yeah, I'm thinking that on a residential scale, +that probably is, it would be undecipherable +as far as, you know, +you wouldn't be able to discern from one to another +as far as if you were to change the DNS servers out +and pick one that is, let's say, faster. +Because most of that stuff is so, I mean, +so close to instant that I don't think that most people +are going to be able to tell the difference. +Now, as an example, if you are, like in my office, right, +we have a couple of fairly large mail servers +that are always sending out to mail +to a number of different servers +that are out there in the world. +And you start to see the delay stack up +when you have, you know, +huge amounts of mail. +Let's say that there's 30,000 pieces of mail +waiting to go out. +And it has to do a DNS lookup for each of those. +And there is maybe an extra 10 millisecond delay +on each of those. +And yeah, you start seeing something +where that would be useful. +But I think in the home arena, +that's not going to be a thing. +Okay, real quick, what's your view of OpenDNS +as far as changing that? +Just for kind of to decipher content, +and make it, you're surfing a little bit safer +in the home network? +I'm always down for people using OpenDNS +or using some type of like a high-end firewall +where they can then manipulate their own DNS +to protect themselves. +Are you able to get around restrictions +if it like falsely blocks you? +Sort of, depending, +it depends on where that block is occurring. +So if it's happening at the ISP level, yes. +If it's happening at the browser level, +like Google is checking on you, then no. +That won't help you a whole lot. +The only way to get out of that type of stuff, +if you want to get around those types of blocks +at the browser level is to use a different browser. +So instead of using like Google Chrome, +you could use Chromium, +which wouldn't have that same block list involved. +Gotcha. +Well, thanks for all the good info as usual. +Well, right on. +And stick around for the podcast, Jeff. +I know you're listening from, what, Seattle? +Is that where you're at? +Yeah, you got it. +Yeah, right outside of Seattle. +And I love the podcast. +The sooner they get up, the better, though. +Yeah, well, we're working on that. +But stick around, Jeff. +Have a great one. +Bye-bye. +Be around for you. +All right, let's go ahead and move on to Jeff, too. +Hello, Jeff, too. +Hi, how you doing? +I'm doing all right. +What can I do for you? +Well, I'm having some problems. +It's a couple years old. +It's 87. +Windows 10 on it. +All right, Jeff, I have to interrupt you here. +You're going to have to, like, stand somewhere else +so I can hear you because you're breaking up badly. +Can you hear me, Jeff? + +All right. +All right. +How about now? +All right, that's better. +All right. +All right. +Okay, so I put in a solid straight drive a couple years ago and never moved Windows over. +So anyway, to make a long story short, I ended up having to reimage the whole computer, so +I'm back to square one. +And I wanted to go ahead and put the operating system on the solid state drive. +I've been able to successfully clone the operating system off my C drive over the solid state +drive. +I'm unable to figure out how to tell it how to boot out of that solid state drive. +You said it was Windows 10 on this machine? +Correct. +Okay. +So you're going to be in a weird position here because if Windows was originally installed +on a conventional drive and you added the solid state drive to it afterwards, the boot +sector is on the wrong drive at that point. +And it's increasingly difficult to move the boot sector from one machine to another. +Unless you just unplug that other drive and then boot off of some type of recovery media and fix the boot sector from there. +Basically recreate the boot sector on the solid state drive. +Now, the other thing is that there has to be enough partition space available for Windows to create its own little special partition for that. +And so if you're already starting from square one, you're going to have to do a lot of work. + +And the way that I would recommend you do it, you said you had a backup or you cloned from one drive to the other. +Is that what you said? +Yeah. +I cloned from the C drive, which has all the operating system on to the solid state drive using the application that came with the solid state drive. +Okay. +So here's what I would do if you wanted the simple do it yourself method of doing this at home, which would be to, unfortunately, you're going to have to reclone everything. +But. +Okay. +So what I would do is I would first just do a clean install of Windows on the solid state drive with no other drive plugged in. +So that way that it puts the boot sector on the right drive. +So you know it's all on the same drive. +Okay. +And then once you've done that, then you can use your utility to move Windows from one drive to the other and then unplug the drive again. +Okay. +And that'll likely get you up into where the machine will start. +Okay. +Now, after you do your clone, you'll probably have to run a utility off of the boot media off of the Windows installer. +If you can get into the command prompt from the Windows installer and there's a utility called FixBoot. +And there's three different switches you can use for that. +It's FixBoot slash FixMBR, FixBoot slash, I'm sorry, BootRec is what they call it now. +B-O-O-T-R-E-C. +So BootRec, FixMBR, FixBoot, and then RebuildBCD, which is the boot sector. +And that should make it so the machine behaves the way it's supposed to. +Okay. I'll give that a try. +Give it a shot. +And if that doesn't work, you know, give us a call down at the shop. +We can help you out. +Okay. Great. I appreciate it. +All right. Thanks for the call, Jeff. +Let's go ahead and move on to Mark. +Hello, Mark. How are you? +Hello, Mike. +Hello, Mark. +Yeah. My week and Saturdays are going to be a whole lot less fulfilling. +Sorry to hear that. +I'm going to miss you. I'm a whole lot smarter because of you over these years. +And so I just want to thank you for all of your years on the radio, giving me all educated up. +Well, that's been the goal the whole time is to try to educate everyone, everyone that listens in some way or another, +at least entertain them. +And find a way to make it so that I can help people be less afraid of technology and hopefully keep themselves safe and enjoy it for what it is. +Because even though we do a lot of doom and gloom on this show, as far as technology is concerned, the truth is that technology isn't going anywhere. +And you might as well use it to the best of your ability and knowledge. +And so hopefully people have learned something by listening to the show. +And hopefully I've given back to the community enough that I can. +And I can feel good about myself. +So are you going to come back to the radio in your five months after five months? +I'm not sure if we're going to do on air stuff. +We will. We may. +But there is a plan for doing a podcast version of the show where we can do some video and have a little bit less FCC looming over us. +And and just really I want to have fun with the show. +I want to enjoy it again. +All right. +I mean, I do enjoy helping, but there's a certain amount of I've been disappointed with the output or the results of the show. +And like I said, it's mostly my fault as far as I haven't had the time to put into the show to to make it the product that I want it to be. +And so I don't want to be disappointed or frustrated with the way that the show turns out. +And so we're going to take some time off to re plan how the podcast stuff is going to work and figure out a way to make it so that I have a high quality show. + + +That I'm proud of. +That is also helpful and informative. +And just go to GuruShow.com for more details, because that's where we're going to announce everything. +OK, well, I certainly have not seen any degradation in your show quality. +It's gotten better and better every year. +Well, thank you. +It's an imaginary thing you have. +Well, I mean, the other part is it is very good. +The other part is I am tired. +I've been doing this a long time and I'd like to take a little bit of a break. +And then I'll be back. +And like I said, I I have a vision for where I want this to go. +And right now, the the return on the radio show doesn't really allow that to happen. +So I want to take an opportunity to to stand back, take a look at it, regroup and and do it right and make it so that it is as informative and as high quality as I would like it to be. +And and hopefully, you know, everything will work out just great. +But for right now, I need a little bit of time. +I want to spend more time with my daughter. +You know, the family is important. +And that's that's where I'm at at the moment. +And the Patreon support was not nearly enough. +I'm sure. +No, no. +I mean, you know, I have to really give a lot of thanks to Mike over at Perfection Auto Works because he he went a long way towards helping me pay for the show. +And I'm very appreciative for the for everything that he did. +And of course, all of the Patreon sponsors. +Now, as far as the total cost of the show and, you know, the expenses involved and not to mention that, you know, this is four or five hours every Saturday that is effectively free for everyone involved with the show is I mean, I appreciate the sacrifice of everyone made, whether it be monetarily, whether it be through their time, whether it be with just content creation. +I mean, like Tara every week does, you know, scouring. +OK. +OK. + + +OK. +OK. +OK. + +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +OK. +spent a lot of money putting this show on and it's all out of love. +And so I enjoy the, the interaction with, with people. +And it's, I really try not to make this a, Hey, +why don't you go down to computer guru commercial? Right. +I really try to just help as well as I can. +And if it's beyond doing something over the radio, yeah, then sure. Yeah. +Bring it down to me or somebody you trust. And I've always said that. +So it's a fantastic show. +And highly professional. +And there's thousands of us out here who don't call in. +I'm sure that greatly appreciate what you've done. +Well, I appreciate the kind words part. Now, unfortunately, +I hate to interrupt somebody saying nice things about me, +but I have to do a break here. So when we come back from the break, +if you, +if anybody wants to call in and say nice things about me for the last 10 +minutes of the show, you're welcome to do so. But in the meantime, +we have to go to break because, +because read decisions as I must. So we'll be right back after these messages. +Thanks, Mark. I appreciate it. +Yeah. +Whether you're dealing with hardware installation or heaven forbid a virus, +Mike Swanson is answering all your questions one by one. +So call in or chat in with yours, the website guru show.com. +Tune in, click in and kick back. +This is the computer guru show on AM 10 30 KVO. Why the voice? +Mike Swanson. +Your computer guru is just a click away. +Listen and watch a guru show.com. +This is the computer guru show. +Welcome back to the computer guru show. +7 9 0 20 40. +If you'd like to get into the last segment here, +we only have a couple of minutes left. +Let's go ahead and talk to Tom. +Hello, Tom. +How are you? +I'm good. +Thank you. +I just want to thank you for the three or four years I've been listening to you. +You have been my early warning system on sort of staying on top of computer stuff. +And I've, +you've helped me in your shop. +So I'm going to miss you a lot. +And thank you for all you've done. +Well, thank you very much, Tom. +I very much appreciate it. +And I, +I'm glad that I was here to help and don't, +don't worry. +We'll, +we'll still exist. +Just, +we're going to figure things out. +Different format. +Yeah. +Guru show.com for, +to stay on top of stuff. +We'll still be here to help. +I know where to find you. +So thank you very much. +Thanks, +Tom. +I appreciate it. +Let's go ahead and talk to Charles. +Hello, +Charles. +I just want to tell you in Hebrew, +there's an expression, +may call Malamdi. +He's quality by all my teachers. +Am I made more wise? +And you have been a good teacher. +Thanks, +Charles. +I really appreciate that. +And we'll miss you. +I'm sorry. +Go ahead. +I just wanted to say that I, +I appreciate the, +all of the discussions that we've had, +whether, +you know, +cause I found them all to be entertaining and I learned something from you +every time that we talk. +So thanks. +I appreciate that. +And if there's anything that, +that I or the family of KU, +KVOI can do to, +to, +to bring you back on in terms of support, +or if you're going to go podcast, +if we can help you get your files and stuff, +we're glad to do it. +Well, +I'm not done with KVOI just yet. +So we've got plans still, +but I'm taking some time off and we'll figure it out and get things going. +Good. +We'd love to have you back and you're welcome on Liberty Watch. +Excellent. +Thanks, +Charles. +I appreciate it. +Thank you very much. +So I want to take a moment to take, +say thank you to a lot of people. +Most, +you know, +most importantly, +the KVOI family that has been, +you know, +Doug and everyone here has been wonderful to me. +They've, +they've all been great. +I want to take a moment to say thank you to Tara and Rob, +who, +who have donated their time to me every other week to come in here and, +and help me with the show and to try to make it a little more entertaining, +a little more wonderful, +a very special thanks to Kent on the other side of the glass here, +who has really made it so that I enjoy being an, +I think people really don't appreciate, +the, +how important it is to have sort of good chemistry with your board op, +with your producer, +you know, +to kind of, +you know, +make the show run smoothly. +And thank you very much, +Kent and to Bob and Tom and Harry and everyone else that's, +that's done this over the, +over the years of helping me keep this show on the air. +And, +and most of all the listeners, +right? +My patron supporters, +my sponsors, +such as Perfection Auto Works. +I just want to say thank you. +Now let's go ahead and squeeze Kevin in. +Let's see what's going on here. +Kevin. +Hey, +Mike, +good afternoon. +I'm going to miss you. +Thanks a million. +Thanks to you. +Thanks to Rob. +Tara is going to miss me. +I am. +I'll have to call the shop someday. +Website's great. +We're working on it still. +God bless you guys. +I wish you the very best, +man. +Okay. +Thanks for everything, +man. +I'll miss you. +All right. +Well, +thank you, +Kevin. +I appreciate it. +Thanks to everyone who listens to the show and supports us and brings their computer +down to the shop. +We really appreciate you. +Give us a call down the shop, +304-8300, +or visit gurushow.com. +For more information. +We'll see you guys.